diff --git a/circuits/circuits/merkle_tree/only_tree.circom b/circuits/circuits/merkle_tree/only_tree.circom new file mode 100644 index 000000000..77c3421c5 --- /dev/null +++ b/circuits/circuits/merkle_tree/only_tree.circom @@ -0,0 +1,5 @@ +pragma circom 2.1.5; + +include "./tree.circom"; + +component main = MerkleTreeInclusionProof(16); diff --git a/circuits/circuits/merkle_tree/tree.circom b/circuits/circuits/merkle_tree/tree.circom new file mode 100644 index 000000000..21cf6cd24 --- /dev/null +++ b/circuits/circuits/merkle_tree/tree.circom @@ -0,0 +1,40 @@ +pragma circom 2.1.5; + +include "../../node_modules/circomlib/circuits/poseidon.circom"; +include "../../node_modules/circomlib/circuits/mux1.circom"; + +template MerkleTreeInclusionProof(nLevels) { + signal input leaf; + signal input pathIndices[nLevels]; + signal input siblings[nLevels]; + + signal output root; + + component poseidons[nLevels]; + component mux[nLevels]; + + signal hashes[nLevels + 1]; + hashes[0] <== leaf; + + for (var i = 0; i < nLevels; i++) { + pathIndices[i] * (1 - pathIndices[i]) === 0; + + poseidons[i] = Poseidon(2); + mux[i] = MultiMux1(2); + + mux[i].c[0][0] <== hashes[i]; + mux[i].c[0][1] <== siblings[i]; + + mux[i].c[1][0] <== siblings[i]; + mux[i].c[1][1] <== hashes[i]; + + mux[i].s <== pathIndices[i]; + + poseidons[i].inputs[0] <== mux[i].out[0]; + poseidons[i].inputs[1] <== mux[i].out[1]; + + hashes[i + 1] <== poseidons[i].out; + } + + root <== hashes[nLevels]; +} diff --git a/circuits/circuits/proof_of_passport.circom b/circuits/circuits/proof_of_passport.circom index ba1f25046..e1c452dae 100644 --- a/circuits/circuits/proof_of_passport.circom +++ b/circuits/circuits/proof_of_passport.circom @@ -3,17 +3,60 @@ pragma circom 2.1.5; include "../node_modules/circomlib/circuits/poseidon.circom"; include "./helpers/extract.circom"; include "./passport_verifier.circom"; +include "./merkle_tree/tree.circom"; -template ProofOfPassport(n, k) { +template ProofOfPassport(n, k, nLevels, pubkeySize) { signal input mrz[93]; // formatted mrz (5 + 88) chars signal input dataHashes[297]; signal input eContentBytes[104]; - signal input pubkey[k]; signal input signature[k]; + signal input signatureAlgorithm; + signal input pubkey[pubkeySize]; + + signal input pathIndices[nLevels]; + signal input siblings[nLevels]; + signal input root; + signal input reveal_bitmap[88]; signal input address; + // Converting pub_key (modulus) into 11 chunks of 192 bits, assuming original n, k are 64 and 32. + // This is because Poseidon circuit only supports an array of 16 elements. + var k3_chunked_size = 11; // Since ceil(32 / 3) in integer division is 11 + signal pubkey_hash_input[k3_chunked_size]; + for(var i = 0; i < k3_chunked_size; i++) { + if(i == k3_chunked_size - 1) { + if(k % 3 == 1) { + pubkey_hash_input[i] <== pubkey[3*i]; + } else if(k % 3 == 2) { + pubkey_hash_input[i] <== pubkey[3*i] + (1< { - const passportData = getPassportData(); + pubkeys = JSON.parse(fs.readFileSync("../common/pubkeys/publicKeysParsed.json") as unknown as string) + passportData = genSampleData(); + + // for testing purposes + pubkeys = pubkeys.slice(0, 100); + pubkeys.push({ + signatureAlgorithm: passportData.signatureAlgorithm, + issuer: 'C = TS, O = Government of Syldavia, OU = Ministry of tests, CN = CSCA-TEST', + modulus: passportData.pubKey.modulus, + exponent: passportData.pubKey.exponent + }) + + tree = buildPubkeyTree(pubkeys); const formattedMrz = formatMrz(passportData.mrz); const mrzHash = hash(formatMrz(passportData.mrz)); @@ -27,51 +47,79 @@ describe('Circuit tests', function () { passportData.dataGroupHashes as DataHash[], ); - const concatenatedDataHashesHashDigest = hash(concatenatedDataHashes); - - assert( - arraysAreEqual(passportData.eContent.slice(72, 72 + 32), concatenatedDataHashesHashDigest), - 'concatenatedDataHashesHashDigest is at the right place in passportData.eContent' - ) - const reveal_bitmap = Array(88).fill('1'); + const sigAlgFormatted = formatSigAlg(passportData.signatureAlgorithm, passportData.pubKey.exponent) + const pubkeyChunked = bigIntToChunkedBytes(BigInt(passportData.pubKey.modulus as string), 192, 11); + const leaf = poseidon12([SignatureAlgorithm[sigAlgFormatted], ...pubkeyChunked]) + + // console.log('leaf', leaf) + + const index = tree.indexOf(leaf) + + // console.log('index', index) + + const proof = tree.createProof(index) + // console.log("proof", proof) + // console.log("verifyProof", tree.verifyProof(proof)) + inputs = { mrz: formattedMrz.map(byte => String(byte)), - reveal_bitmap: reveal_bitmap.map(byte => String(byte)), dataHashes: concatenatedDataHashes.map(toUnsignedByte).map(byte => String(byte)), eContentBytes: passportData.eContent.map(toUnsignedByte).map(byte => String(byte)), - pubkey: splitToWords( - BigInt(passportData.pubKey.modulus), - BigInt(64), - BigInt(32) - ), signature: splitToWords( BigInt(bytesToBigDecimal(passportData.encryptedDigest)), BigInt(64), BigInt(32) ), - address: "0x70997970c51812dc3a010c7d01b50e0d17dc79c8", // sample address + signatureAlgorithm: SignatureAlgorithm[sigAlgFormatted], + pubkey: splitToWords( + BigInt(passportData.pubKey.modulus as string), + BigInt(64), + BigInt(32) + ), + pathIndices: proof.pathIndices, + siblings: proof.siblings.flat(), + root: tree.root, + reveal_bitmap: reveal_bitmap.map(byte => String(byte)), + address: "0x70997970c51812dc3a010c7d01b50e0d17dc79c8", } - + console.log('inputs', inputs) }) describe('Proof', function() { it('should prove and verify with valid inputs', async function () { - const { proof, publicSignals } = await groth16.fullProve( + // testing with wasm_tester + const circuit = await wasm_tester( + path.join(__dirname, "../circuits/proof_of_passport.circom"), + { include: ["node_modules"] }, + ); + const w = await circuit.calculateWitness(inputs); + console.log("witness calculated"); + await circuit.checkConstraints(w); + console.log("finished checking constraints"); + + // proving + const { proof: zk_proof, publicSignals } = await groth16.fullProve( inputs, "build/proof_of_passport_js/proof_of_passport.wasm", "build/proof_of_passport_final.zkey" ) - - const vKey = JSON.parse(fs.readFileSync("build/verification_key.json")); + + // console.log('proof done'); + console.log('zk_proof', zk_proof); + console.log('publicSignals', publicSignals); + + const vKey = JSON.parse(fs.readFileSync("build/proof_of_passport_vkey.json") as unknown as string); const verified = await groth16.verify( vKey, publicSignals, - proof + zk_proof ) - assert(verified == true, 'Should verifiable') + assert(verified == true, 'Should verify') + + console.log('verified', verified) }) it('should fail to prove with invalid mrz', async function () { @@ -122,7 +170,7 @@ describe('Circuit tests', function () { publicSignals[publicSignals.length - 1] = BigInt("0xC5B4F2A7Ea7F675Fca6EF724d6E06FFB40dFC93F").toString(); - const vKey = JSON.parse(fs.readFileSync("build/verification_key.json")); + const vKey = JSON.parse(fs.readFileSync("build/proof_of_passport_vkey.json").toString()); return expect(await groth16.verify( vKey, publicSignals, @@ -167,7 +215,7 @@ describe('Circuit tests', function () { console.log('proof done'); - const vKey = JSON.parse(fs.readFileSync("build/verification_key.json")); + const vKey = JSON.parse(fs.readFileSync("build/proof_of_passport_vkey.json").toString()); const verified = await groth16.verify( vKey, publicSignals, @@ -207,9 +255,5 @@ describe('Circuit tests', function () { } }); }); - - }) -}) - - +}) \ No newline at end of file diff --git a/circuits/test/tree.test.ts b/circuits/test/tree.test.ts new file mode 100644 index 000000000..cc0eb904d --- /dev/null +++ b/circuits/test/tree.test.ts @@ -0,0 +1,165 @@ +import { describe } from 'mocha' +import chai, { assert } from 'chai' +import chaiAsPromised from 'chai-as-promised' +import { groth16 } from 'snarkjs' +import fs from 'fs' +import { IMT } from "@zk-kit/imt" +import { poseidon12, poseidon2, poseidon8 } from "poseidon-lite" +import { genSampleData } from '../../common/src/utils/passportData' +import { bigIntToChunkedBytes, formatSigAlg } from '../../common/src/utils/utils' + +chai.use(chaiAsPromised) + +const DEV = true +const depth = 16 +const zeroValue = 0 + +enum SignatureAlgorithm { + sha256WithRSAEncryption_65537 = 1, + sha256WithRSAEncryption_3 = 2, + sha1WithRSAEncryption_65537 = 3, + rsassaPss_65537 = 4, + rsassaPss_3 = 5, + ecdsa_with_SHA384 = 6, + ecdsa_with_SHA1 = 7, + ecdsa_with_SHA256 = 8, + ecdsa_with_SHA512 = 9, + sha512WithRSAEncryption_65537 = 10 +} + +describe('Merkle tree tests', function () { + this.timeout(0) + + let tree: IMT; + let pubkeys = JSON.parse(fs.readFileSync("../common/pubkeys/publicKeysParsed.json") as unknown as string) + const passportData = genSampleData(); + + this.beforeAll(async () => { + + // log niche exponents + // for(let i = 0; i < pubkeys.length; i++) { + // if (pubkeys[i].exponent && pubkeys[i].exponent !== '65537') { + // console.log('i:', i, pubkeys[i].signatureAlgorithm, pubkeys[i].exponent); + // } + // } + + // log ecdsa pubkeys + // for(let i = 0; i < pubkeys.length; i++) { + // if (!pubkeys[i].exponent) { + // console.log('i:', i, pubkeys[i]); + // } + // } + + if (DEV) { + pubkeys = pubkeys.slice(0, 100); + + pubkeys.push({ + signatureAlgorithm: passportData.signatureAlgorithm, + issuer: 'C = TS, O = Government of Syldavia, OU = Ministry of tests, CN = CSCA-TEST', + modulus: passportData.pubKey.modulus, + exponent: passportData.pubKey.exponent + }) + } + + tree = new IMT(poseidon2, depth, zeroValue) + + for(let i = 0; i < pubkeys.length; i++) { + const pubkey = pubkeys[i] + const sigAlgFormatted = formatSigAlg(pubkey.signatureAlgorithm, pubkey.exponent) + + let leaf: bigint | undefined; + + if (i % 3000 === 0 && i !== 0) { + console.log('Processing pubkey number', i, "over", pubkeys.length); + } + + if ( + sigAlgFormatted === "sha256WithRSAEncryption_65537" + || sigAlgFormatted === "sha256WithRSAEncryption_3" + || sigAlgFormatted === "sha1WithRSAEncryption_65537" + || sigAlgFormatted === "rsassaPss_65537" + || sigAlgFormatted === "rsassaPss_3" + || sigAlgFormatted === "sha512WithRSAEncryption_65537" + ) { + // Converting pubkey.modulus into 11 chunks of 192 bits, assuming it is originally 2048 bits. + // This is because Poseidon circuit only supports an array of 16 elements, and field size is 254. + const pubkeyChunked = bigIntToChunkedBytes(BigInt(pubkey.modulus), 192, 11); + // console.log('pubkeyChunked', pubkeyChunked.length, pubkeyChunked) + try { + // leaf is poseidon(signatureAlgorithm, ...pubkey) + leaf = poseidon12([SignatureAlgorithm[sigAlgFormatted], ...pubkeyChunked]) + } catch(err) { + console.log('err', err, i, sigAlgFormatted, pubkey) + } + } else if ( + sigAlgFormatted === "ecdsa_with_SHA1" + || sigAlgFormatted === "ecdsa_with_SHA384" + || sigAlgFormatted === "ecdsa_with_SHA256" + || sigAlgFormatted === "ecdsa_with_SHA512" + ) { + try { + leaf = poseidon8([SignatureAlgorithm[sigAlgFormatted], pubkey.pub, pubkey.prime, pubkey.a, pubkey.b, pubkey.generator, pubkey.order, pubkey.cofactor]) + } catch(err) { + console.log('err', err, i, sigAlgFormatted, pubkey) + } + + } else { + console.log('no leaf for this weird signature:', i, sigAlgFormatted) + continue + } + + tree.insert(leaf) + } + }) + + describe('Tree only', function() { + it('should prove and verify with valid inputs', async function () { + const sigAlgFormatted = formatSigAlg(passportData.signatureAlgorithm, passportData.pubKey.exponent) + const pubkeyChunked = bigIntToChunkedBytes(BigInt(passportData.pubKey.modulus as string), 192, 11); + const leaf = poseidon12([SignatureAlgorithm[sigAlgFormatted], ...pubkeyChunked]) + + console.log('leaf', leaf) + + const index = tree.indexOf(leaf) + + console.log('index', index) + + const proof = tree.createProof(index) + console.log("proof", proof) + console.log("verifyProof", tree.verifyProof(proof)) + + const inputs = { + leaf: proof.leaf, + pathIndices: proof.pathIndices, + siblings: proof.siblings.flat(), + } + + console.log('inputs', inputs) + + const { proof: zk_proof, publicSignals } = await groth16.fullProve( + inputs, + "build/only_tree_js/only_tree.wasm", + "build/only_tree_final.zkey" + ) + + // console.log('proof done'); + console.log('zk_proof', zk_proof); + console.log('publicSignals', publicSignals); + + const vKey = JSON.parse(fs.readFileSync("build/only_tree_verification_key.json") as unknown as string); + const verified = await groth16.verify( + vKey, + publicSignals, + zk_proof + ) + + assert(verified == true, 'Should verifiable') + assert(publicSignals[0] == tree.root, 'Should be 125') + + console.log('verified', verified) + + console.log('publicSignals[0]', publicSignals[0]) + console.log('tree.root', tree.root) + }) + }) +}) \ No newline at end of file diff --git a/circuits/tsconfig.json b/circuits/tsconfig.json index a05d480d5..a4502b006 100644 --- a/circuits/tsconfig.json +++ b/circuits/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "resolveJsonModule": true, "esModuleInterop": true, - "target": "ES2015", + "target": "ES2020", "moduleResolution": "node" } } \ No newline at end of file diff --git a/circuits/yarn.lock b/circuits/yarn.lock index e75e63bca..78dbd274b 100644 --- a/circuits/yarn.lock +++ b/circuits/yarn.lock @@ -2,6 +2,348 @@ # yarn lockfile v1 +"@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" + integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== + dependencies: + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/abstract-provider@5.7.0", "@ethersproject/abstract-provider@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" + integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + +"@ethersproject/abstract-signer@5.7.0", "@ethersproject/abstract-signer@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" + integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/address@5.7.0", "@ethersproject/address@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" + integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + +"@ethersproject/base64@5.7.0", "@ethersproject/base64@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" + integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + +"@ethersproject/basex@5.7.0", "@ethersproject/basex@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" + integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" + integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + bn.js "^5.2.1" + +"@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" + integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" + integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + +"@ethersproject/contracts@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.7.0.tgz#c305e775abd07e48aa590e1a877ed5c316f8bd1e" + integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== + dependencies: + "@ethersproject/abi" "^5.7.0" + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + +"@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" + integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/hdnode@5.7.0", "@ethersproject/hdnode@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" + integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/basex" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/pbkdf2" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/wordlists" "^5.7.0" + +"@ethersproject/json-wallets@5.7.0", "@ethersproject/json-wallets@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" + integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hdnode" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/pbkdf2" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + aes-js "3.0.0" + scrypt-js "3.0.1" + +"@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" + integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + js-sha3 "0.8.0" + +"@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" + integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== + +"@ethersproject/networks@5.7.1", "@ethersproject/networks@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" + integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/pbkdf2@5.7.0", "@ethersproject/pbkdf2@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" + integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + +"@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" + integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/providers@5.7.2": + version "5.7.2" + resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" + integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/basex" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + bech32 "1.1.4" + ws "7.4.6" + +"@ethersproject/random@5.7.0", "@ethersproject/random@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" + integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/rlp@5.7.0", "@ethersproject/rlp@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" + integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/sha2@5.7.0", "@ethersproject/sha2@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" + integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + hash.js "1.1.7" + +"@ethersproject/signing-key@5.7.0", "@ethersproject/signing-key@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" + integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + bn.js "^5.2.1" + elliptic "6.5.4" + hash.js "1.1.7" + +"@ethersproject/solidity@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.7.0.tgz#5e9c911d8a2acce2a5ebb48a5e2e0af20b631cb8" + integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" + integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/transactions@5.7.0", "@ethersproject/transactions@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" + integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== + dependencies: + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + +"@ethersproject/units@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.7.0.tgz#637b563d7e14f42deeee39245275d477aae1d8b1" + integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/wallet@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.7.0.tgz#4e5d0790d96fe21d61d38fb40324e6c7ef350b2d" + integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/hdnode" "^5.7.0" + "@ethersproject/json-wallets" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/wordlists" "^5.7.0" + +"@ethersproject/web@5.7.1", "@ethersproject/web@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" + integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== + dependencies: + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/wordlists@5.7.0", "@ethersproject/wordlists@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" + integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@iden3/bigarray@0.0.2": version "0.0.2" resolved "https://registry.yarnpkg.com/@iden3/bigarray/-/bigarray-0.0.2.tgz#6fc4ba5be18daf8a26ee393f2fb62b80d98c05e9" @@ -27,6 +369,11 @@ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.6.tgz#7b489e8baf393d5dd1266fb203ddd4ea941259e6" integrity sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw== +"@types/circomlibjs@^0.1.6": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@types/circomlibjs/-/circomlibjs-0.1.6.tgz#dba1b9cc68ae4f75da045b8b14c50f3444b31d7f" + integrity sha512-yF174bPDaiKgejlZzCSqKwZaqXhlxMcVEHrAtstFohwP05OjtvHXOdxO6HQeTg8WwIdgMg7MJb1WyWZdUCGlPQ== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" @@ -49,6 +396,16 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.6.3.tgz#5b763b321cd3b80f6b8dde7a37e1a77ff9358dd9" integrity sha512-HksnYH4Ljr4VQgEy2lTStbCKv/P590tmPe5HqOnv9Gprffgv5WXAY+Y5Gqniu0GGqeTCUdBnzC3QSrzPkBkAMA== +"@zk-kit/imt@^2.0.0-beta": + version "2.0.0-beta" + resolved "https://registry.yarnpkg.com/@zk-kit/imt/-/imt-2.0.0-beta.tgz#7bafd6c2d211dd6f153f97378c2993b2248c76a9" + integrity sha512-Nu0eomkc+EkjSouna/b80B2wlvq1Ng+ydfFZUjJZ7swJdwV3bmq/katrSYA4cOohtornl1CDQMhZwAH7yo5U+Q== + +aes-js@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" + integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== + ansi-colors@4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" @@ -94,6 +451,11 @@ async@^3.2.3: resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + b4a@^1.0.1: version "1.6.4" resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" @@ -104,6 +466,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +bech32@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" + integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== + bfj@^7.0.2: version "7.1.0" resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.1.0.tgz#c5177d522103f9040e1b12980fe8c38cf41d3f8b" @@ -120,6 +487,15 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +blake-hash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/blake-hash/-/blake-hash-2.0.0.tgz#af184dce641951126d05b7d1c3de3224f538d66e" + integrity sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w== + dependencies: + node-addon-api "^3.0.0" + node-gyp-build "^4.2.2" + readable-stream "^3.6.0" + blake2b-wasm@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/blake2b-wasm/-/blake2b-wasm-2.4.0.tgz#9115649111edbbd87eb24ce7c04b427e4e2be5be" @@ -128,11 +504,29 @@ blake2b-wasm@^2.4.0: b4a "^1.0.1" nanoassert "^2.0.0" +blake2b@^2.1.3: + version "2.1.4" + resolved "https://registry.yarnpkg.com/blake2b/-/blake2b-2.1.4.tgz#817d278526ddb4cd673bfb1af16d1ad61e393ba3" + integrity sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A== + dependencies: + blake2b-wasm "^2.4.0" + nanoassert "^2.0.0" + bluebird@^3.7.2: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -155,6 +549,11 @@ braces@~3.0.2: dependencies: fill-range "^7.0.1" +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + browser-stdout@1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" @@ -165,6 +564,15 @@ buffer-from@^1.0.0, buffer-from@^1.1.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== +call-bind@^1.0.2, call-bind@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== + dependencies: + function-bind "^1.1.2" + get-intrinsic "^1.2.1" + set-function-length "^1.1.1" + camelcase@^6.0.0: version "6.3.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" @@ -177,6 +585,19 @@ chai-as-promised@^7.1.1: dependencies: check-error "^1.0.2" +chai@^4.3.6: + version "4.3.10" + resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.10.tgz#d784cec635e3b7e2ffb66446a63b4e33bd390384" + integrity sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g== + dependencies: + assertion-error "^1.1.0" + check-error "^1.0.3" + deep-eql "^4.1.3" + get-func-name "^2.0.2" + loupe "^2.3.6" + pathval "^1.1.1" + type-detect "^4.0.8" + chai@^4.3.8: version "4.3.8" resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.8.tgz#40c59718ad6928da6629c70496fe990b2bb5b17c" @@ -203,6 +624,13 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== +check-error@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" + integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== + dependencies: + get-func-name "^2.0.2" + check-types@^11.2.3: version "11.2.3" resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71" @@ -230,11 +658,34 @@ circom_runtime@0.1.24: dependencies: ffjavascript "0.2.60" +circom_tester@^0.0.20: + version "0.0.20" + resolved "https://registry.yarnpkg.com/circom_tester/-/circom_tester-0.0.20.tgz#066227923594c722169646c685e72ba6e1b85939" + integrity sha512-hhtqh3z1+/4RqhbAQxQTzekDvANFNd0M0+D8OdpxM1Ud4yQXoM+1n06AhJ7sULfCUD+LQrmnSjK5GD783KRSxg== + dependencies: + chai "^4.3.6" + ffjavascript "^0.2.60" + fnv-plus "^1.3.1" + r1csfile "^0.0.47" + snarkjs "^0.7.0" + tmp-promise "^3.0.3" + util "^0.12.5" + circomlib@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/circomlib/-/circomlib-2.0.5.tgz#183c703e53ed7d011811842dbeeeb9819f4cc1d6" integrity sha512-O7NQ8OS+J4eshBuoy36z/TwQU0YHw8W3zxZcs4hVwpEll3e4hDm3mgkIPqItN8FDeLEKZFK3YeT/+k8TiLF3/A== +circomlibjs@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/circomlibjs/-/circomlibjs-0.1.7.tgz#9f5a7d9a23323744b11ee456b05b0cd81f48b554" + integrity sha512-GRAUoAlKAsiiTa+PA725G9RmEmJJRc8tRFxw/zKktUxlQISGznT4hH4ESvW8FNTsrGg/nNd06sGP/Wlx0LUHVg== + dependencies: + blake-hash "^2.0.0" + blake2b "^2.1.3" + ethers "^5.5.1" + ffjavascript "^0.2.45" + cliui@^7.0.2: version "7.0.4" resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" @@ -273,7 +724,7 @@ decamelize@^4.0.0: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== -deep-eql@^4.1.2: +deep-eql@^4.1.2, deep-eql@^4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== @@ -285,6 +736,15 @@ deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== +define-data-property@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== + dependencies: + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + diff@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" @@ -302,6 +762,19 @@ ejs@^3.1.6: dependencies: jake "^10.8.5" +elliptic@6.5.4: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -349,6 +822,42 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +ethers@^5.5.1: + version "5.7.2" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e" + integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== + dependencies: + "@ethersproject/abi" "5.7.0" + "@ethersproject/abstract-provider" "5.7.0" + "@ethersproject/abstract-signer" "5.7.0" + "@ethersproject/address" "5.7.0" + "@ethersproject/base64" "5.7.0" + "@ethersproject/basex" "5.7.0" + "@ethersproject/bignumber" "5.7.0" + "@ethersproject/bytes" "5.7.0" + "@ethersproject/constants" "5.7.0" + "@ethersproject/contracts" "5.7.0" + "@ethersproject/hash" "5.7.0" + "@ethersproject/hdnode" "5.7.0" + "@ethersproject/json-wallets" "5.7.0" + "@ethersproject/keccak256" "5.7.0" + "@ethersproject/logger" "5.7.0" + "@ethersproject/networks" "5.7.1" + "@ethersproject/pbkdf2" "5.7.0" + "@ethersproject/properties" "5.7.0" + "@ethersproject/providers" "5.7.2" + "@ethersproject/random" "5.7.0" + "@ethersproject/rlp" "5.7.0" + "@ethersproject/sha2" "5.7.0" + "@ethersproject/signing-key" "5.7.0" + "@ethersproject/solidity" "5.7.0" + "@ethersproject/strings" "5.7.0" + "@ethersproject/transactions" "5.7.0" + "@ethersproject/units" "5.7.0" + "@ethersproject/wallet" "5.7.0" + "@ethersproject/web" "5.7.1" + "@ethersproject/wordlists" "5.7.0" + fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" @@ -368,6 +877,15 @@ ffjavascript@0.2.60, ffjavascript@^0.2.48: wasmcurves "0.2.2" web-worker "^1.2.0" +ffjavascript@0.2.62, ffjavascript@^0.2.45, ffjavascript@^0.2.60: + version "0.2.62" + resolved "https://registry.yarnpkg.com/ffjavascript/-/ffjavascript-0.2.62.tgz#f508dfe662a70181598ec5eb8ce5127eb342f624" + integrity sha512-uJ7MTrdzhX/3f+hxn0XhdXbJCqYZJSBB6y2/ui4t21vKYVjyTMlU80pPXu40ir6qpqbrdzUeKdlOdJ0aFG9UNA== + dependencies: + wasmbuilder "0.0.16" + wasmcurves "0.2.2" + web-worker "^1.2.0" + filelist@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" @@ -395,6 +913,18 @@ flat@^5.0.2: resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== +fnv-plus@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/fnv-plus/-/fnv-plus-1.3.1.tgz#c34cb4572565434acb08ba257e4044ce2b006d67" + integrity sha512-Gz1EvfOneuFfk4yG458dJ3TLJ7gV19q3OM/vVvvHf7eT02Hm1DleB4edsia6ahbKgAYxO9gvyQ1ioWZR+a00Yw== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -405,6 +935,11 @@ fsevents@~2.3.2: resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -415,6 +950,21 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== +get-func-name@^2.0.1, get-func-name@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" + integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== + dependencies: + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -434,16 +984,83 @@ glob@7.2.0: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-property-descriptors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== + dependencies: + get-intrinsic "^1.2.2" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + dependencies: + function-bind "^1.1.2" + he@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + hoopy@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" @@ -457,11 +1074,19 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -469,6 +1094,11 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" +is-callable@^1.1.3: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -479,6 +1109,13 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -496,6 +1133,13 @@ is-plain-obj@^2.1.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== +is-typed-array@^1.1.3: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" @@ -516,7 +1160,7 @@ js-sha256@^0.10.1: resolved "https://registry.yarnpkg.com/js-sha256/-/js-sha256-0.10.1.tgz#b40104ba1368e823fdd5f41b66b104b15a0da60d" integrity sha512-5obBtsz9301ULlsgggLg542s/jqtddfOpV5KJc4hajc9JV8GeY2gZHSVpYBn4nWqAUTJ9v+xwtbJ1mIBgIH5Vw== -js-sha3@^0.8.0: +js-sha3@0.8.0, js-sha3@^0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== @@ -579,11 +1223,28 @@ loupe@^2.3.1: dependencies: get-func-name "^2.0.0" +loupe@^2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.7.tgz#6e69b7d4db7d3ab436328013d37d1c8c3540c697" + integrity sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== + dependencies: + get-func-name "^2.0.1" + make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + minimatch@5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b" @@ -591,7 +1252,7 @@ minimatch@5.0.1: dependencies: brace-expansion "^2.0.1" -minimatch@^3.0.4, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -664,11 +1325,21 @@ nanoid@3.3.3: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25" integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w== +node-addon-api@^3.0.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" + integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== + node-forge@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== +node-gyp-build@^4.2.2: + version "4.7.1" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.7.1.tgz#cd7d2eb48e594874053150a9418ac85af83ca8f7" + integrity sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg== + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" @@ -727,12 +1398,17 @@ picomatch@^2.0.4, picomatch@^2.2.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +poseidon-lite@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/poseidon-lite/-/poseidon-lite-0.2.0.tgz#dbc242ebd9c10c32d507a533fa497231d168fd72" + integrity sha512-vivDZnGmz8W4G/GzVA72PXkfYStjilu83rjjUfpL4PueKcC8nfX6hCPh2XhoC5FBgC6y0TA3YuUeUo5YCcNoig== + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -r1csfile@0.0.47: +r1csfile@0.0.47, r1csfile@^0.0.47: version "0.0.47" resolved "https://registry.yarnpkg.com/r1csfile/-/r1csfile-0.0.47.tgz#ed95a0dc8e910e9c070253906f7a31bd8c5333c8" integrity sha512-oI4mAwuh1WwuFg95eJDNDDL8hCaZkwnPuNZrQdLBWvDoRU7EG+L/MOHL7SwPW2Y+ZuYcTLpj3rBkgllBQZN/JA== @@ -749,6 +1425,15 @@ randombytes@^2.1.0: dependencies: safe-buffer "^5.1.0" +readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -761,11 +1446,23 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== -safe-buffer@^5.1.0: +rimraf@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +scrypt-js@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" + integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== + serialize-javascript@6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" @@ -773,6 +1470,32 @@ serialize-javascript@6.0.0: dependencies: randombytes "^2.1.0" +set-function-length@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed" + integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ== + dependencies: + define-data-property "^1.1.1" + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + +snarkjs@^0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/snarkjs/-/snarkjs-0.7.2.tgz#ab719b065fcd9867d9ea14bed92f3acdca3c766f" + integrity sha512-A8yPFm9pRnZ7XYXfPSjSFnugEV1rsHGjb8W7c0Qk7nzXl5h3WANTkpVC5FYxakmw/GKWekz7wjjHaOFtPp823Q== + dependencies: + "@iden3/binfileutils" "0.0.11" + bfj "^7.0.2" + blake2b-wasm "^2.4.0" + circom_runtime "0.1.24" + ejs "^3.1.6" + fastfile "0.0.20" + ffjavascript "0.2.62" + js-sha3 "^0.8.0" + logplease "^1.2.15" + r1csfile "0.0.47" + snarkjs@^0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/snarkjs/-/snarkjs-0.7.1.tgz#c96ecaf4db8c2eb44d60b17ee02f37ed39c821bb" @@ -818,6 +1541,13 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -849,6 +1579,20 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +tmp-promise@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" + integrity sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ== + dependencies: + tmp "^0.2.0" + +tmp@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -901,7 +1645,7 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -type-detect@^4.0.0, type-detect@^4.0.5: +type-detect@^4.0.0, type-detect@^4.0.5, type-detect@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== @@ -916,6 +1660,22 @@ underscore@1.12.1: resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e" integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw== +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.12.5: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + wasmbuilder@0.0.16: version "0.0.16" resolved "https://registry.yarnpkg.com/wasmbuilder/-/wasmbuilder-0.0.16.tgz#f34c1f2c047d2f6e1065cbfec5603988f16d8549" @@ -933,6 +1693,17 @@ web-worker@^1.2.0: resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da" integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA== +which-typed-array@^1.1.11, which-typed-array@^1.1.2: + version "1.1.13" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36" + integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.4" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + word-wrap@~1.2.3: version "1.2.5" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" @@ -957,6 +1728,11 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== +ws@7.4.6: + version "7.4.6" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" + integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== + y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" diff --git a/common/package.json b/common/package.json index 5de125cdf..2bb7f66bb 100644 --- a/common/package.json +++ b/common/package.json @@ -1,8 +1,10 @@ { "dependencies": { "@babel/runtime": "^7.23.4", + "@zk-kit/imt": "^2.0.0-beta", "js-sha256": "^0.10.1", - "node-forge": "^1.3.1" + "node-forge": "^1.3.1", + "poseidon-lite": "^0.2.0" }, "devDependencies": { "@types/node-forge": "^1.3.10" diff --git a/common/pubkeys/publicKeysParsed.json b/common/pubkeys/publicKeysParsed.json new file mode 100644 index 000000000..6c7a5e625 --- /dev/null +++ b/common/pubkeys/publicKeysParsed.json @@ -0,0 +1,134756 @@ +[ + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21696836289075323556108100471952104489486797041537967653206183698520554087335089638422293107013284359155712149349831673409996392882617610268290055879357381265455950454105447214938879717273230049026505251264506131742193088285350203829167578667594998511147083085068586808763101567820331859307270256372456356191592441791663299204476590166268134290876733856007256034894763997867041481082695812271884328649074026149026002362717168109319651999995062696819236655794419693536639419374782400009668423521088136515940721723647050330395724627025508094547904893255294829564301909526782705766800962237628023234014888817945684899569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27296383305142783656136491198013552102668729650160982340435915967522497257070192629113908255587953741268441430051192434845776030700344209501879717742012533998204413028524843222309633211372575247982259460350073886659724197377417875144470869972316454639000306762276601737140312892574975516132208635537556702321922307069254821575066472563751923173415636916835155268515475552830532096434615935038354800445291890695281785069628774371368515424027040330516526087900508675476447426366094485840083204475969974331605669823923794623185815700497338636824424586709404224086051975530177227936106840392456377631803454570434007033769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21302705781629144851914612713089355905990604665168356081057810435719803333342368560474889268123876422927389634056435641966680421568021701817755581473016298812920234445937157537958752450416844543663070984815667021158715682797369249138644217005004734761900442968336831151230193673694721761309410324473084228479890259717251666873438297695215995168121444502065255412745370515358745298242292673950757915965019822922977370998924017452759401808956486946614901199387201498912755341881755669733905015378990006320220934190597867014992225652203807968468185830040513734104974079061555929505174759505290269984979718146531807062937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26187784532160924747711420705819565697971856025874356236845384473726431655066327307997820040110628662933514004630564334552145189448839723454429791265630500436737477049667068378970420508249340213341389694780750897561003383421704429044886153213665749589686106670122075588916946374239345548885432496250097922252606664870510594704011125043230313096733141158311139068304609326926742563895981046812385117262250564295634920522334910928654844155948115232096945012168773011648881153443913680848263552688424650840804081728358132813773134881457446022655990190101018935625608519790474025303507606838434640766838532726289046490719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "30982721117331117026226382844692458292814284843098784780179380336972331858678709228428400277681872451441862485788812685711676631013689003043815986143750834291000095075365523351681659355884104343282428849298732472238524329834311614970318045177640571361468725452580997659954982590183434454668042078781393373020354896294456672993373508475381414732250969345774377426611636499056510435214631205259116937542486063579493405797276699269896159245763789432506203252954718375467967908311715903690417303308776109372513589904133767289566452481992638505934695055567740578060648532540046131470930039896406452185488806822099363700297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23455074681585791351135432546821952151790111653648396272509190659088909779568591338897569452717676118741532048792664432578812146541555662544349717518296169905314421566934629625788767102348480500250881519203591292351045327814381204956714810599879631444096361228144201988255096862917831915741497374540286397594997582606662847955354510641943661089066187493640266490260790772757421450380354085079082760011767253786194011468740420386669902048317130476014201873243007249675800031912113433800881255161114226151802630665435450991811866192824871533480540671658410660882199001825584143374350833898423280823955143215196296067451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23864302518458310098942158921204654520969089357813622874495516046866929540369382882136401700421713710280246558324333457200146327717560975187914755535311055172471235921801243020218238422859024055038403295770737973559697188523063568532548875004226080171678737894456817742051694208334960147474368903430873485776149819109290667160135136579656661993440140581357100945734026137868837615871063470294679597863952020568691160730766352703926536828452708911967485758485817498120853248215717482824123448802577444930974123356054695321085328972995377361061332081603664946455800113623905949243726639471717624092072796449547981939437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23990923544260313546999414144506193988455642275124625116442907774224522675057564190438475632517937274492778318427198755730456845621261719174741296757471427957707229411287074343528522708569049671426329247380702796930870409328568207882026983702174985803811274546409888494976250693797219546281281688230637459788665289171243947964296325449874889587700701038320403351727901390085464981711127427704637735358070593434604272991107595884054092714144343034563701559065768536179784235403749284489858355796218087757142299579265216694694516969710289230642716193605051664073742106584746702601368787342551761157955649772442987931639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24825799338412047502215037393615967758916947132839221926376781517464656606917923758819578605344034609348653499081813910307245601041529426937092661016622644927984610702230429497639806051700606739794647900901495585547147926439685696786311598082546665240188808952938894729824957139856337059121861739729745337367316694412473015035437529898782888327205431453878735515855473252996667349075593386921011350246265807655685506603850304996577378543283533823059850999080660813630690993800307284065047564166718127932631752556367438367762475063090081773544961138486325345685961983995426003009625649080149098176906225235792532180171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27343922238575510648241504800864943939824766750371490776297118846196186807730659714983137688339614898940361374842694783370559190726448694918071444731589672419967474348236424064613392484315168476985683864171218648966475259876980651668846098921031684941876817264163754939858249102017770243018966698105541038985601864818557948155112636736284203713406652701128744661771555857984849759282268128762330892542431516806268228687397625482641374152746395318634819753139788468280331150231957400809678337035732116415736425411205188424320616848253914210433998714077023629731132865650855739900466158238138980388282599291021448750301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27845425105461000360796253390230948423780080007203554436230844146465997471191555237952111252542748579988859112349056465712776406736311171162945082774515899764861266919523904356433068788221341013321311506909901418432682124373144274945327648800379018498973496778086543588179558830398237475440991976131847262241071068710899422648199271503928535872154337335305208692392661502025667703367138555055330254768519426913336820065054937370302428830391511326812942671240442067660686392153759070563027781019939395916139427966063362043991839332315853625879118094025819559259879844870957131614947882401368198997395452464335403443667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29443278188799137485430885203353133385493926623463576052857720001456775759483775863402746300388471056131497193062227911161416820818611240400147763088201321957825234586212551935626639223698364057445592558061653270800144867253766082221931304518838262820900339143908069911036894615855524537086676151186133459305822797192973116662933631354488030767944882486235089409124760838014724356029791484793733093433334674192759891904958104871411407673311448063041634315274502180206706531980983851551172718246918296849409274190927606391973316094119345011063156797893454188129992190451253316672733145324683702154111718567789990255077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26086910745831874441599301927564068624163106975937798506018876061564691762127214556547563266511724914955268012357699364641205164323882520887463883660569830048562494516664034910188400444109806843244696290331982313322059700203287104716396667797328466932629635982509570729652027375816686879563865353407324453747087317224948900325290170763958095076072468630898527905131053695796628203254004030783108633168941442607061834313020785170928074691850957452629130256499996692862577200179400917686630022146398781217628966236793523448942774425358552516886737020358470730739255826371289314097677872777866180891353136308381772437829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26620142505625175566692403829763523264690156676309783203874585093171717643200442842815099246595561189465823404924327053503692838066628941548598529835179639245403055158036309227098920243249698342002209272569253562336380519207385140015668513321437306510390390594610428049293933596188090173173295255751299718344762494971785980329046206739863879351625470431173357612121223762642847277949157707341977933240132773878684523820900856707694207487004515438160067233346794659393052287574035283555110823390277043733099770935819469374681510279598039296575926960239929466114377967104105775766812973494744198578346955495367815598437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24028395794571112919010281943301211194267788408355327773416856813585815856871838507194383978454340282308421175559391250464706257277823659666985389931214295363826987692413074958500427929861452634249082757300920279720619230832547513620826191122915457980045360159455752770796080801417091144280077897334710104190115673153959977592826992541531937753277681174370374502699674441734972144030887110960703364914429464677931679178649022478865237254767174095667740491896261083420852966971523638349822185414915842697007750791829253468925199874984911379740743727798136214650787829982617215094120564112511481858341579209841095834351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "18883880002085622599553989316416734087098261818384006508216246176181144046845329928602492835015959378060521261901385398881029987592768960107837197289817590323614622232141663141375315463898448141128778455208061204383192123358450250872979772584591360793044341572031598694366826975468853344770425200457594259874155387939408661122573834441866756997707110801026173734574110902079506857338046569371138465222387295010153806245772275975803620898649996752625970575319195891209351665788095780799011663352425383758597545999662244017649643682960520552417927081975895348264598520108330999925326762929492147245245966562233241905799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23430625388445433534909241054934427665340319178132050536868011956709258438450708666326874949094142025333851398744588355206839959829864278099863811772866158670892516277597988301651735462482086305569542608123484232021506217947409875547639374366442239339896814197292575250636708752196669173791126768335035163709537208928291123811877896917283646198734708614954616283173126509932539468265172001649507245850737712959797894556168949655984561574121025997815071447646112550242079144200846558046099254871226821570465675097697814784875348935925338652542043847163270641978178017388537610352337328501348465025641452205743583231413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22264598242149932089257745323724646490025107485026432155743466714810007031526662372097839331670157460885904435856436337969357623686043918961828747294989205247330719518694153850969542582934533189647207712936169952802018185349871817563779520498842809761965780167381225395714965342808640261800761236120529028349914599604920916568681382678479905253692739956614435466771018235721779959326337949004787772281087463798597994441010866324566867106806246833772091852182475291067774200026142687180267077506739259401715273102101801101459570881416627531897434818100573699292254880560286741342102626000060976602847096143636639775271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "30794283670675526662703228054842530920039121368951811655287933204869181505179252187292029738564942384422830999743847458949897407573504651568336906364709158345160076461951880826193007225055162260278398980818211172744280372064381124477661187762100140335089534331395903708663652263391055583104368527112569427359419712832961215006617604475700659464298968889780531130497474014906032160083560274597615219596083892717875799989423540055676246495517858587061779559537203106933773155893147443330441344457077397311158242704403150241373684169255142849255732212193133184847388174152980204799378660138967760563421247422643986822523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24431110567624424860796729230626219069814882633436084461882430125336225351636950982599144199200750793323486353176265275174612206336003068036823259089859050446581599768332442500933196482371365797018599261903911145069906083641096757195922325684466299686088302793050403371596113364554279575022946495811984985598750374462003114676414906392445079298229500665788093330192535643256558387043236294449044060601695232553051332871885036097477829742350546769786332119979277206752088322990403353027990875333677915107566464581405553289406269742947920113979352774338450724768057457621230114023555978813535125078859637676829751284083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19475269754973759528945079341409751883840480445484288120683826564511592839269559258976763534169082180479378046797335166785246775809030822021704160388948085246272792001460840361565945763285683024581896393103498919618447234930248256726496413785891220927867509742174788161277569622976627077565655573436510478465624899648664181411230596634012661717406400424734732659062145326842809739902621468832512482378096411615307679875068485640482252030101285107766645571811559820936595166358104927175179216543283413407725948342024767944313571582649548458511339792971456660641006760441724309048534546495182282068288493558823237675003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23032784478014739797418487309642386235731987828053982522686291015627811845595874634770745179159095178356951008212478528738290659191991557064940035635808444149809905604328282720257705998911299279701987106425132651117737679099115931528878943834386662370634132990791982283874834169293531585305881869630987894937315904247068323743404725597667954961060544575553309819339716307449728930283537924667661040860937970435248213620099295766370935065470099931260089376429769359692015278934279847084146145483263906858448055606904052386198139582525297730903967153206819208620841381939040447609296249249536869240754261581676045839361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "20918995481436648511450787506664645446992870742863714075056524017685526497986822366457437967243443194261491558959546606715803794254195909447507472252140798147347174403037143448254917899746676002088247465772391294475548097500407235656837664320709119552075041300788330889140409550045561647173702060667371426593277640839447926870428117470664636134945699833934898815074396793876464792294022292341245002747982067853031381075219732372588696913561439449915730267057456449210439001583842378903634709492068470118004728545361054686402990320079557022094422240768233798137337323173948229192071823550123362009105750846499274892881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26143252585527705723060121404803132935798572158082836344617016350359827340115955940013848424313143086664610375229329473968761651401454043551020641359190881761761315417178393227588529590272876247431166218195465801171050429481366391576845783730025228322589752993349712927416429770235251316777283416577623328530344882280791850053445088530851175590588030427012648644017565433602278669714003320074237339480781548226675708086781222951566706996984697404155505254974644558805014614431232287691615990855107216932559302264541593383493289861691748708417652179822556669672976837625762431315312673363681691440047050129570750686953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28143914291655853572564542129044270448773390019987523956963905560572881423187822264853936067733805094351479154154273810927446390798541079986276764188184684170472923730036363536497341343313306835879409909900136762795417600082431780871114840720241390389145672715199780165042901410671217857142491573914919001973938559310871630527563396483209542503888514036376195080912703192411835638116056964003958005171550603843161783720353741924767693208290014095564703351602302773040469018427487686092737938496731211059196330113409726981614554241947173976379633524635595605877601709225642330654163493682277200379582879578080429826309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22233203350435918146847897963839116241338479513992538636504645259865459798467552868068760309750498885325822502197629106260011076369406574918823329092099597606887539467979047018569457158618901309898345395976103775937400704544013842810737688173182047530640353424750233069406298625561061839679811678040647100411341738122403050611049496039128748207728340756982803637797052420882483121512313704414544217499492950561860286828031800847388854272903050724176120104721968083537936994028086897702536638080937478180582756571046135937288727119100258034023949591902040137913551693254201600227964018214805244499855489134306652861171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28594048855780587169960361330756401983325842766264929127786056309481561622916114706840854909407260941924256984154804308968199510173352211206642801361903638196919086993584809721822758308127202825816211029175952828939687845809324875836215923532755662467210687172423553272313674780892604819216007174908326423646889207015885329286214316895191607503790326176851386630033085675866378650281158654636450187873517541812784446668476853110976320684675761692284476656246038788794588359139211026593478122300697814183055695377491112445056066561058530667734630751652071156394082237646042954045493823492487856377645136036543335335923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23210553849922041007948362411141800169547678281916962399983187552424616189852178685263487349025542417066177026545819898566399735139937496876379265022494261700211070306250784536341111125990370493817222031911260044388484153408390505636719651507557676075250458502704360505291209359303142426823635534378936928240675057197340693336990636701827813669897565733606013752256951494578398776666897476908957529636316503138427232366159615659981790660632709003045254021666103860229190960680691315668760712724780772561384633705379771011927035439464908733257162003949829615918025314724288606270032221913016273137409836583949179426813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24854951369086006920418765641834259262046016235324382841003275101240729417347491140761604710828874027798848440400333353021703465248806647269802173422266101034341615850093804834033168949352973053027664838010134441664496057476605962442401677887776614103562862523552083923552897764132137040774705755139812053041372614303197437129832983649249960219978685154972923818735726490154489444720477962071696329897013051047433946131754834006413453882714057368867558930850908963552165054405930682018496239095360386890713122123494642247035961060781252332379146750041897409289438976019206258708764018292340043120834707198942608006197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23174807790461910593810969306872347733425269264586376297379244067981201983135039991715885025501358785546975656698079687539579064701850673097869068271454412610147864054074437877466971115137219297490244942587966439909093134772266928057457060139815782800017106094567608656322953774462545453802285753109421961449351942966833809711004199466314185893766174571530709157441276829710298176611636158256685278280556045673574182377370052262222414087398106719505263275006720888419959068907102955543407940179310350012998501910653851544877989538257463330964473687706422640721260328504654029105572413157292498986764506447210648480169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "20846550661362872723672008973676813091976959784874753256597144755920932706393298549760691259924427057563404123806384150081937717217947502098089444310680082072112463921754943325022156402891752673612151779560943762446888575924015466893119591957428948636302515607664022101049488307771526765323158553183639946901085081615152208892086608333109978211774452949479207495046817235676350389009403106332409479647400060186626852921269301166465484336270197472728386964273461402449527186569666043216992897728896380569089141092179029365421950945429609592705279728451439984644294653073089625769562043181182725105432050646362214408339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26104929622514455381143101329671440206721333050467031549115636262320445548963406686292558963792259130205624224257115890575135384620258842659125423283915494387990361388333788388801206302407870117478379810944481418376739816918983717929389336017792698758675985041474368557435481328175227426696587477996771574534897833648224276826483280482619084556703486003337572659480975568772880078644222409491104691098877554967004999489887103035735391292662322977736944143521974092986011121141936953668010610461779961148570778154133205779621873138374552906650842065612978444421275902872024808942511002976110010869455955819135471315809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28358652140590680514472141435122333310532419166359472528184564664947381438436865742314737065625713831261910873219499389566026056917661042796273401623446793811149927256008928473228815135255414682097778149464203273051879109670002474474235411957577227055773499919929031146632023744476463407519985795789352147044487359908576744681159253340818384948939212212439835537550546228701583820917407540600202077840354866976295877153117562502042640573098590151516533162857671361797642443847768105906478695661213264686622208716954205627537927565426969475490264028968094408428967209596096920654637206349963968016438330312558645529993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24679258490910153178134424835401134943506774112615066881338860441591619089810289477036533350977895467123765528630326923295363997698083825231545469337233139589769893050026390637361941070600512211637198789187837681315309570851348173106282005361110765644417146041287311657568842545010812955899611921851996204965312122060229709666991613764432301176434731928536666757080988854029878509958562829677408193916993589043177842862602665791606039501940808408975442056911936930466691624382553659814000557124108817633263831608522997507819495410834977364762631454295892789581359241582525530829121792983536508002550393053620939836379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27190317177058848709540565680965095264633954830902313076747884394640233850996506363394002344255196635896369071414818184816742113011157346438384383714859531109219404547969891982619356631989105034169000295000643491705358558266340085963249060381876246257300461711277682226286655027762163323267249699409301415379575329474820685077827125542235946243291310797214653598534299789195552992737341745769089153949993690298945914274468949979341515823587616052650463340192904225305571067948530301582971589441765911444678076318037002209402531361888781505876733263998268112627616998937796858930678144445363982035644061834404452493201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21497612535863593392861499110915850878862214582928333004208700645083223439337760417691207225856462353910805912534165438533881381995832064841825818240760653354605425262883794607684877151692636462082581384052827147926120412088477592063861565485929827162926861777209598849226713358705613143501383993832642190461438983512618153522291939713144045889895518930260865692872015111844416652969880466267227357495915762415487130181702664327201424321638481286523149690550821912712249514496805740353298915705329626674025425600058934929982448390685397291764661660378126747018485093420506038952665510984676675202877966964484589290691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22439110571008872997093185834588286949823077016187218710148824914810669188669995457994528282948711594892345073460690406916784407278717583478745050331805120959457682697694696501314080368961501596505490523043976673535728858887761174383111683540001298078059920855554658661944795784679384626876175200072643865684249173340387363107056164013968071492205477880579046529902468437012393517945972146250236957091338083980099943663088475259786066285879564025882008381109654751589894564409557364726454063629371670797800391119594726065607358274414822577664439547631934637082934201737582759010098983934066780038598111792250001009649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25391360952094115042687525781407927484916447755381016991145553370260726236738870247768006438557023638553193821642264611727463558908680058591331061404213556337709447014301203918377352557785558623777838913063439027746769169267628701833011693806546098534246997657088494006267476456726298115815712083799947234451106931907458799541655730078779452383704198366623827492830009107033199771336412340110559272089025394496161306001377191099732972006693915253351764423690169838544377766134608276608868048480394062525241895450824895167144991011672067721662985271213183064659505987375866803038459135056446711287586401438535050401233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26179928128803475406542973584372728672470521716431743834646725944835787672902101218508317263398495809588544447038550261068778162084795212822624010110600967722897428682598970793547575781135417778833605181218446584500822149429708846574945057838351854395456690561532051071803090823293971414834498784285183728761962576214794911102290595602277460800070838717951469779758809352140309894528696047092850077693549125538964687886721418524761074316586106771297121438632754961541019929403124557561010865959176265108427688461727855879896673701003287439634487841242156764860660178142165983971835644041617787429349057791305658895487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29672789986649388263880482395713255749114149289828183188506435438709046164289550393324674348758735595173381271019868088707099604159634434374968714644164907255658998842483685135909585195322893222830534310205876620701996820565839317112611440360694341346917983782723318129500477163631121875109931128211146557675176783562382199745025208305034658297217033024386485643582913526317815801974403139915183337801695576727659627360024712290711462793151052071318711593279824718298751125301753173879971193746396527954176916818842712249063511873533807885714999899431358476957577612667284844220700366618318131247819593174449680585753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21250332465183404357129955530485737640972018715559317266532488890092894198625045378275881807026208463642680984499591350204497294972187888627148086165497789291567866023854675090110347912161255458091227039228305877898319476933597670897428217624825831195156571020304109199092892076096163164835282322559870391033565769031000995961590266645120752338552428598353620699095692074020846050425308593824610946137302876123289158620785456389951545155182239056280487519693244764527848111155626367944976011954788331728063382479121136129954735536882357339351532885246441587991170556251312264037703668863131760205170506386004298515891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26409448134128626782717459413665755994336370022342890424833057315426506677713295888296398271481729743184543002112654685876835387725425085302014442919409342947030562472376680514644394106777322465623426525180795288080678766117002066811097932469766710681213442068579921247605096898925445599207580829462116354378436943122852781814413719200441767798428905405781914704395858603211804218617085842859195498826261853430333645929363832528208997016068290087410310189446427190487330851122201244443663879616164352929283121683443020553103902892851829232815937394371907925722670805786798632923541023307007863607145075289485205829759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21032601398533314052577456973521740986703015286653223177297555706673588269721639576538165952035341373874164816078646918434736768312655187011527939393317727731812026403463262505331680749151855501637036624205728106350211363814898309297569847228175076653870832209737707589357853483488978446522698678878640930358510271422683214138815988628883202776917118192974786207804984057464827581007775911124918191904346845197596148645192069527024032667088828301538783056011881227534578819909006589383790129944172660752858446221262536539833923462670051035074940602124582203334450831050252725415418356694825313690716124342011563851893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25122757831879925378763603908800279366494674518123994486511254882635215494729226339236679531111819915025223468567483500855735666930048887607356837450146602183932417930944197216949235314244639851270245903070417342340395622163539006021108712124830846313064605188014854201248338459445999641919299921295135101305705798629305791040915749414640110329341597820551514006489828021242758626854136612159849896877960830993816564859578733208732053202726098575868980493652077694309388805758690872740561013819069639324404507350669260013817569342161090235322730811747417740717823363444574937166621706005502201188661888383739171834277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22299322902443169453156728118106860801056494857377332023249309642259523789555011485222988775924077999607782314163547854795953403833282445430466841402009610641933594121876872289066883415678858784614857551962778480561668176556550042460681703778671493405717314206102884509853365110056663160927229958288319983837708160095085729884778305913116157016744413702004349954211998464104372547365849939653478667238947829595831164077973414573497300086667278963305491158769862808846644724303101252899677032785596649088528618071013800140106997998651747016027477877542166635342382029770173720492955611562978405274370054238195548649829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27967003027222297094783309438456567757735544985366516979972007770071168624997787504137717848643607221463697393205862974353964873386186489917529664743953087822875519736154547771686219622740484861738104359402172035977389390686105310278236705945257292372684914022056352052742544372049804733092439150399491589256899059834009577101795629338565322188500263598704101569052530105013983612831595640783154499039241367994872597751631469549194497473280789257525997532281286529900267526325648723072732425099903830656094905025379734282110879569275557891193082035138564977467075422904539182781492063120561378895248847116791677618971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23698709652976484773621342213654933143262506876708551808178924147798899348616978844915469927047727861559592685022337787313449868892674706007941114365585941590647143134184828704678468491325314932157756480114685082574486291000325296418801272291832795512998353971621296472937162929879664477594770419918233625220369089484981149966424315145127308572980974176306803423048939461901847554063156941812136307202263774680915527126630179360762802773608893710045561956393621934276951568805033677015456246385293387617827178269621212136215914425223139606914569799433576059697519098652760885186206441323431300917179185327990661883859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27173446535636816154902879183668553378165737634007435270830307940853011128918119318317726556309930795677801702090082325720172089070129057301036897451064766542038123926592466349648791827891699950793039377280358706608731584609856680771624985241019267700529289045213366490087138263508490551807290713007005183724107732917439894841738815016918848361652186348458148909555515988203666261481932618720937210775399930524398290020477531770847094550264299588486434311672017088516335836292284417925479253369018992816107734954963581298338275149335019864430795525399538223832046263124265476676020982648244533361583851745142929175247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25821736386674488070457841768384280421142710849967058972090832766531801208115884438910772537549480041301692952991723016383638792945582773014605665107473482391140952713841135694492633071470384228859164446684220735354974461460586874351361906881327602037277189886820527118622105015552709911507572422173393931733420543747366649110543451312348344366807820651522819943853161190796255500712094589960888224841543966282138333993009266516475520546421145983310689326240467454038658015452089766843632417253039955135164415804961806972281410836110741371054949979200136703296737617846574899899339598268672275865586622430322603710183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21300495575219426947383365231050360683477076387012139607500295699501185886727972375498696707311236901564058246507853619505653215714868801903734305435721440956162008581690314020827895556158814081288691153293635753613235999644403676166259525902078516250974759079016599973550372419308277388854287553050149815642298363118307816182977205900377195735886462320679062334460839185419521351676119622916677169104124818126907691528231541842664031554852201639874299798882002979965428788522139502359038862772590313929684282922644231825392327154133218006332778083872327436971499548318029093070182977078772001007402091909319213489679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21910106928864905862089781233643650122681905178063404704100147464426781175128940388057351891490850105245243875001142660303022425207774071200372438732665652555934858755942593802327852978772262269672553602333432379002922599847389261179053198881178517156198637437666023991590534617190489682904148210338149547994800933182684867299233866462325832989500531187226093938779654822147202385981461103704578707405963534617645810248069191724752450043675078736619579691578506837349919993189989382086874749520434989259137931015609691421286418244303328945015941128011264705797856967421634108180357081591068190438504741774178343874523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22171226549490890041229433645723296146268972866148356068968800201533902958042335419521720194713059174675009437173405979260704207036213701475300967230391900922087731873714947118836004534838411985299833492683708972058915659125332498133045610186936468489629481012610282821437687483829693147457583266274841084250964590484457225963777299818256856937447074762833563943037661499960326980890275499053205858359484381956556029645073754349621274257828490519282120155809305220394606662205942416545092124809179720316951997131930399423717119404370545217121599098352800287569861662443001248835205303994581291046474892570463882332233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27451335841799788505503640491077365931094282940343707158095039832555968594427483326901290718356611292628032546122757672195056211034514964953452993382470889463008430221709188319914912432385658768628100213083755550063480604126075410914193518713956431492658827477300437105560181235451469408928498263390825866515269076905595748084534389850527887488227745560137049345276897731963942524577256193388649729440434419230693356819565405097156936843615512805636022526953305466511773644809632610467579325937680665402764098309668015132099109576294457346748621505391154348010935513622314668422938709376790759026829945704404272962713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "31828439748632385717859032737837232674302366331730585046586418458882838419191756456897944858483177795421635930637868781346636676434152009465179268758690136224061187698789189970650992187542407744983391032739566998469699725568116774615212040332124313923933656134984426150183261441421044551845906441906137366361184433551110065050570257835422462177553947365460603563529976428487566012919502405048909765425327047364774562149498968924897625104491685529875542198276205016857161732005390513862166398536626922691844726928410227330118461642243917909513498969569841139564568522975570892481300502748766808952973975944106202945493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29222440153637406914282916647740041545279003549034538008665500179683868133286807097494701837146889124522064687591014271746999435308817653875123662442318987114792222608038964460420980201295383032467736352696692916635451899194508581309885409912519341539593534071498671512655506954178618458630430921829357207264824295340115248624384038313688137844220339472594568613258315323551211530204844228845345679692356612995502258483535628848477719420981148444553044523262444416353460428793811332563466521754109700334714244122325246554467928644780758216971678441409090918896986540457066941526133021872107382470839245851540036930297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27713623937372450808978914969408105018374605318555575461622864382473307597169070525084268140663512083446801587399427691518378896182080600059434834678233548346729921800102402851727162631077704328242114433242461198251287775695074440467258274275959698657428247071426276106997321950244141229271161901567881657855576177547418231511508024547517613381135860954224289797574593588474502356076842241003591395982773612314540927886869427903231816462964877666433578574794592193920325335759655798215611054255679581442984205067095393701746256482398329348861289835933486229048936017068936502963332977733762282660010874805416201913031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25807001393018187247379491217599865120974935798027578144564580930627538383850548163831728110778150381527447158374257875130185180959090162765036088148854340379286855261924480486866144919652879154411956171031216815476030948309668250357912174811856541960794358482498475428526570861290633194711906298479405664047243079782407493369518718777922556203123711365855757930821797749323004829309554978318340366643640147728374101853849641668522377290312131044483801497381647292798999090584566429411652659906360530535078832023208524430522860182295976071492395078875692820741654918303534076209125643639604373878909323345096797284283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22310982888742800201751496006410175429604791372931144450973157499833531185391028377580560216250908564323873612351990623285957171846167557248485242510589159002553958260141916859094042804291278703055512174363466598233585281706063641765816544239907852675588352048875647586054399178757555134794248092953009092034085123384924049877743318965392833467733015823624729722180824680823033212876204194566340653221050553848985299639077445884910631159944876302883953188768249330264308548211195385052204245110173349825749478741234631730182280211325300197175035819572713480150840948743595327508176426118788214159736508070846001634857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23565495593634278991859728469219949503284505232637133592641528293468653763884497778543474230778820218717412498076313454364524612684062208837869773711947556891765551842501353086105410459959069293685933120802441341935601523031269771208670841027921554549587220484012822300240560459732931750037204545413605469934190440774993950363043992706406860521158215009672247264233832117134965513287783213559178587128941058543058194198810404398774380130389941099825485537782623958233768114420782060871559232034427539448650076932747051656808549705181785822847325939936501364052481416694311287954371565458644048666492762631863473698349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24142803492544656884216607124636892288257704065711166160933794449823131591887392420833030560843865975451874908646354512680538192382149699552140244766941950528750666333342695439692602672604661255809979143749030776791740302206467788415545150789295007964386103086163070117670708895289748169936435193904965867541606631436339313418772322380847105201142723181826920308608233780338712397363168698147947444670040520077432447261491894280628455432198110955014870055698168736707470679772599884583804145307465100782881935386634538681210188379858172886592585625682866999898816422469677021479653616074854117182971456380587304665223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28221310341948731061385043439762600659988354718137493478983836757931992727463569702351149141429132585095376071043280765032979433063537931999558564817675548340732143823341495102646741967629679516191913876957159066121353006417321628184277211495261998400010679529571779669308966037099804802258700143144450380839003414184559185135776458004597631509640489024174147570277030496717351337258372810113232049195833140562216732641896409723277268395077159556469513925259002536433310827819386421415559023489828302203984465902873648155941574366500508363049387507294369431406642083801553619073856056754723315810529482129287113953151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24303431584036842138478045942361783672915378834539590486393612609279812227807450423590749348886634664594845117521844985064768249126461875326518148003916185896926739330979512969455072283562736341744753036323137371551161913524842599300076653679629837410492942674794697107861001496271428733112074380241508524188673912105060557843470058631307215125392761782164536251943636125867683567907380129818629445114450726623459410576916631171947699659982411808337126614707504321402762937896659395839621227976644537612770664537602870410371084552579763008399591730512808011898127257876518282741687324329289755044972388385793156371679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26260004729782312553723247865640655095869734052633219182891419397786159768131200261715082695096022279859632071519956413412918562254506260625446495105572008407252198908852236342917164441579569389410936367464204638342187324743672714443097947754974950673111966491924876659628561079707405935163952048792695038612988333505837950320299549409623344877194689311438005734469370945049705356880690090024768640349706625100747818900793534251010405307204300292103119439765660530017366679176523199002526423701500732783321179629120964472175820941504577957739120119890939709116775335253052649758397696924685760432934320966062436598459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29105446746564103650151509648415935951688286760671669278664807046016277260468649087918312256089960734165420437854907760794411369418273029521437441507792369795029158573479809290967650692020881016890807684336152149585616019506660027716204470430566644139774861737068924023191384058995901872237485024525669881611283453088969750964163997250544607300026441062120997681841372332074261366597852744955845190618982836097903708890068767010518584957757942603597553229201612514184052812342648478788303102723099008212170869923773285564866374926376968953528755902889069674146039486121281505333289642957523716085162911883517827654193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "20862623851275870894255714136581315087181602953049373120708840483912441318780719807619847229229982554325372669171463111799168214926377723232468390493278857800900884599719320964754199768237522298291012122598212362101382277199867165341784418746453839061015831745141715594573485159454304695547977577776981171774073821494831486127210088804967928145588922675271859235140163037508228557841522569304073776153603997828980563350291790196338903097795965919718880213105306473046756756715070936953347224125351282586012744545639808063061927880335780441454818415445600839062977053679528943843569402828649534013466810352242389222843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "18841038528174983296297435557449747448430387480927916945559019718232694958036363311258475360850498645061039103010080610962115777842251332804738240188969265121621051981305989903409949249395839827161932410278297906316535761215870017753337239231818697108321453430246621569295702971052640471395506915187816203891641571635013822442169957750220416523244668185563427534198393677462628095624166200632457871309520271210387388510741881364735497614653443897407168495008819789562933585077116186837454211827808319132758577050032000212675305066400908264548175046747595725159149542262885730587951120075525446246709963197058785685521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "31323394756387342132693794950702455411074815273124864657084868637748078382470148665573916919049788511781969163155687517234660703847158937772362976932927261388603662104281199071826670594281520126012701715408700821379561781471811010801968888021727267249344308175163144816581323003568914710100714841846039512205210637683495042973830509905181557714460197535377696513979051457194478428899008844441604381073009836382051187211342978930032799033924228600806557394285318580935153296983215539852931735051092254000746472609530034633930504058574881142362009872349923990131083556935667663920088836763928159776949241610396013336803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22868775734644908076283224072921302794420249352558469985881696348344688674984823413592093309160364133416908780510197614903533424384252512142358801828454074654878525861876815171775795054522273337387349450125295776517210061379946297644091512327340604215402441641754953447262797508005669310657106903060532136289749074857785220238246199348327027977593167995287939195031322357457564323449936829091896537783474063264225248477963531625609509566854667179421303541843244385100085332193642407930728858612459340675748991653650538205173384106049333698815585216922955773888908699308262231271838098343363377038517511300026283640533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23055668082602324914246651953832071243462953063119372467909399279550293074891631979767665907553228403405153747517508317266316486255610534197486769221247843242769782422889707101060872184161698289182704546496500392228432405792498141323337484999880898204999118382959909732860394471419852401986830247237099070640578163874803444335953479117979460174055024704413468824032629530377734017591894332871126144956944763350792839903601252957207828208985091811998671498197322701757255343132505282789552699442864450720656912548553151884766833746407180536157271686153815063846467467684980746907812818624926671801822075443125193083111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26719757101586347011883910517338200866011697661566997751446267975817627594874106753927480026129740756514493942455331986275214041652482937157307623312975391664125858048744051548737835822139485095219029049039135593502530879681892587963585888342845592402003799086398215441813083479827999770788224013098287313704031682094358530364408582990741069876280817000526995840384367877720391022367743198391398297490766854376944688719146869271167628412883479544143132925988877408237374867320701952041097307051381938258384464594867297023494298311822125984638719976437693665438757600597273752425694379549277677277310219538103299211827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25444105637269435593159899935027144051572241311379812881305240722354608695278409809940749967136581082916690096967259066088131816899708704305753077528398150453818449414681100010968184814024418371535633297925513304615397211612724970529167170885132271655960933517410017864563135572301253698685871504940498965392907202553516429551855250178214932028548393846277563989261575711932514873448170883022376580636720987292847186829585252248696951696829086296176226394521797193637744780792739616644091748583108984853005610541784642805073197732959765709740869712906537599510341530875714665873956135532185001383503073516972772513527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26445300944599310055848141069291192528197565552590421945866631954139414709637391000568898712866130137607120756476854948582876156286030472285211400515295155995921227155578889752142360279487960671586259214928918623148792797860500868093607370795180706210895018670471191676572293412222847506769134314099604028263455576565187434645826685846369253409831394016147977338549666155725610638558419157159257367584599641709585912802299858061192612750118600359986073300029041582736037284866804200929730877774420183138971699856308115151646794138902842956469053241192266351516428023601723864144284859209463345826574990711629182137657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22117024145151809609645682689765361913960195762289930717781418690719970579695755607526635532639104768473092133425219552727346164055858915797068211322682878875710197597010627971591117391308810884796779013350857490024569376265530673459498227828044548241365481444732327440623332428810409627749531588281517160841286147715645412601676244834819885125732389455644386008912725296551693682911154647122845689615965788997824149466983889678712494992724187780080102739279887860594098118261584643111353465619385127013761714975916021304826754473475474737393074248470779899988732872710019995845355172936441935360268394841582836213109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23974268244425161467747403588928100857327410152370369223731097666848326047982430770419213847315698843168526052470368288935357524592976556862055422388264344973199473142850546022262778140111196774476082615004414339881546592700179309218248780885573945504364151995283600037711460700837484199042610145172707431073736118782000956934434200579050663392920995808863259763494068369107090351911003999089138973474913572258367005257090998868870215980160493691652376686399628551013686971619808516204788499914238180440783600538927319529546394411249371480796554675803708038571482350605593454258651962914528137346183020621144643015929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29412945004518322754881715348282992219658620215636166002207681553819094806452079233745227011329726164986271770994598344141207381258024027850925350440236720581499166941260285314783279885426481604454368017361314941588261656102605870932392247732460446859275328315778063419794915376127170788446713734832098327549091005986540895851987668396590944180016228367233847302138197378035576892494691854694115740333977474740792329370937692456847862532251045879640198651677911403893247390473232154664117108854031026143588330316352044290346984541506459730631882879997507564184987608697417353575221212862322369190816191363857929805019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29761729491720272825145948810725288602263866245737728792598429681770518474454307133307291486721710027553590516113993928998317731035793819148943391359743853307365812587134866277469384650738486678717969418012461298330387906643184586921869284223858999961739354101396378304592055343651788627547966171982295631137417935102209035587982249269284571654021913479772739386994958154770791160753927895251434129094832801040736301697838705787768530859241582198131843715439722829049136078048849131669403420623850589825775338135805207332970089734388309441301884605515511753227196516094914143568128027821850120218457562906998577748933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24069116508873784395065630268443968971183304119236968248489253328670035961401545271833526481410262160375778756649360338341290108475516717597544435365035574702017805700577959334645921667449407054868430457196912020327010110378314982666915370868301683232521109851296588525006565835362761983856965144420048690483791427473894242072181233134657906258206488481952621370282456801250070757116006673830453735422858581905509461841610273851655844324418596105785315810589607837714895506793882532675218153809388695794450460370667375113706161464903307459406612887795063458295346134005353695854991420832673536879318894786554656815773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28865888150070362494514382449807957378683447447751835779431714323655496151297180267496909854172105602178920218343588547984717142362840263714838983159872858195819299452827789227170926866386066942382767313778362976023312721282357203484869648298107519747422761641753935173516412402750598652648217605938972314014932421427234061922067778107223781558885329906509882139885841913112502175475840113102258675248962964807593837733971902307889962808360066099094641558346183774600053261814427830840177279039904333368234918841270620857073025184671384141278671117191418059910222689345798613319421458447093203486315007592198641566569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26309664531948065274101267403402524672663996317318889360967548070880869202347417950785917430948952178509011827113791698689532123284057253932717847774599337722619697868014781639184968074775912063172809214204036185513735993226000329436357844259567576962484612386838895279130670877133513465026039059540744348999721729395094004891585774342945852873282863168841823578050696805050283274505522401752389848913215412443011139383599488033889433456896177626816309637015621877446386040538599866828671459936013579193887429101829274601770200172585462310200266636135591090919588672362492647582380575416125320928880444419751308348169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25600114334218449390423683845594109853674308918787222100413745015428541787946077818886391924766599353062510365060887373524225048227184400674801451588948533856048172137495126631235416953611249474546001415855053065532350708219703260983668303549928239361503224026251589741881107598125999793363348109233645316556950588778545402529752641743205752301550098775313927693434264483007917165420106134300282712374740344052740035167740309639287025911441801952294020303967512072858029205870892936098011995593451921829226363332450616647450310604411499652987701905944304974480447009613312709443141161203769935880002067950094876071027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28302014552991349164660781331676806117445932367609421112744964614908944648507959471060200210803441543944981749193831752705417271440029549301759745289093394125584763333318594047169377268184921984962743904392874156583660479610189001743446891365470480601502251240157888615448994713829228668504647038604872341837287410991656007419106610589490784618445358395640389152774984958910428407280808470585089653621928313858154516454995116532283844091122674779666120599038123807945242205622184569525046875705423717986999162153339256928869243997606412188697579654406352034571308771078631547391493101232056228082859850223065536500863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23365650435353884048197452903998687848688145565196545563621431091320495966282122876313922629691314760281373194791136964283969326469560269913573054085842774053093144501359367427555006075344095457734965639895848292428181928672050952435899917966209288792292162678059535528748473353210879929917868164198026615695538243494614419243519614207065575882733692136183755884919581820779303334315020245385240737147642363604058077422115789661471157359497514314582284598974791296118113217970261666895714986346980390367504812497450885862767567311640075273821170464321330086128811739707355047955889799629527548901369193984046124230539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19535799407073691636819333150637648045275164378188326378566868716938023204993909800976577087256211703380060374840425563066776671878498759239941727087545710492441811566453047141264059643181136010137743082732292559232418185334676324798514369479014388924725217721815384414278836225947260748876661098480091866695668068552367300833795179062644046066192935994925133775082374172807439904320459898440756538017525903772720423385192558412054114451983640866036830331440588918831690368027754463069473384553989816073591084145997078872658011794237154906051623691451691038320208939890789169179441114312504156243231702455290557780563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26567849751513658003524295269901347913380851570368844452083815361085032851131574316906490804864644407872127280520312315078127308711147897505378360598602844238641665982682405986043299145342189679722078251176651272359701012247244860210957360379691705057245004331669150304706821667136327681514663499852472595120036037609174818015681411839270151907667807306793948820352918567299983304709369558995576350684774751802993635220264598951126570104772944376748913416003551985051285453234306835137562344768947024200777422741603083277491788107705173394434908046059892507084397559412962750192034496772964956435219125660846391583373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24654090479046032622780915617096850388311465878685869233841476736930645183467286671017766909456138352880787588298061433732547357517778649899213973142747331836250316919720644250484367125986776433409503415058547660584941872235590075273944353218872542811436561971213594302663085027585102486858514492277225226565174465357646700192734100456635212728788828340358635718059328160435658215245846067214613401079974498218726040913339167563697163978618277249379103477264188780203952229863435480573552871979953773667991083824402341635255014294626225230471852966445560199563580833334221640953940786420551037854348458559595022043511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25042522428610755694514617556107910094364981876298954525474553736700173646177861249910597630215944192510201168164948248824523211012279118133597287392469662599300670302978025835053182300918141298169832996552440422913243793984424499050087328002348841004504054056685408798347197489129858949413828251823353044082915902645055727438733712708941831419696419714399656941510532325831457161095150478463100082318275365521043558877674269434635875442997588425099790334506451607739725980389595274030319490412941004273985796658617724985054230141965096967685149421410614755805060388484280603296890346701609821609662737522054685004059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28124292977384237752312114202889614686189335455806256802724985297378623836816415298715462000671403242230488493449296510475821799125229561497486134431355769263524418835903261379894858457084533289914781151505615610040162165322531750491900537785529977409209973456869112013406488661255317526102987145339966434650604352516790944831003337286583926715476393393090838661518997101439420525125031223216945979180380135661740583256916324737602063443608234789335831753758932166229273116408263379920521133130159033162288077731641359994722347436365820127903415807565633080715038902022347938631892824849546675301247834018620532167861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22500508857637376359110493588024571961281957652404919336433928484896161371599119172449038624308019257876964972652819950804733577273869471431905553270867538855384651927215519782385896814244455662180573153710219461975675115353929524589877323605249774760796886963954418092057540517031731227166724064830136614636188308355723863551685736264601664632907101942604437108505741918637619275274086765683352675146446880203159653684984465885146050630507703049552557525037340734325264488089309169957868766181458104142259292494205291185552393873530758165653109064296005504738617860714484816289639021033041738031565213107437933333603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21787022198760431930133264414513408673135661059398617177910357104149322785371115329491087382902375739253219846424191005190268526135044435664885429348613059861610796379109805362825121080693423220202968595261499249545042655985528037515418905298136880314064216312955231727914395302686567435749531154966898248932147675751234313829357990676799918996466659791378587014738844610183487706002808606298482476850516352951709234674441889771522450835553363569149952868192626120745061713770324618169313755843216216427976252391219100981418037700840003652160403595614207782119656940793993511726750111080547446611684720672921153150731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22952807268749746267625911081372519596036513897356339373664358904192093691743672054232522083209248500168072895388571045885876700000965845663121500936817862671533365779927304332773779819473091901137025708589194983075345745593650082064796903766591341690934235127428869042205448109053972114932872680212695651863935206851276881503962167340525329455733291960679612376095589519465499394118061543338824197920113348844175126369012163906101824920739247875038419169372077146998969944523646015397836094899027339662023945818125838430503098402321659341220296496053541875571711804649424546771128334634918420600107674341310892903843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22738317832669902718060102467738493967317980136466672022044543952960006683055411248737982940353995294506789776938459970882707558091804110210037908330195037044044770787077383675119308895644186903827312921719232893777099982723650510954910549353869925957568989542500025528516825837442083061504070815609616394672567852751489946336247027088826392567528548418598600695107837473876682784588302115082273322757244944556311269060714295576205969671004111123729331416644054302500572915012339709393960675354563402555206372695134401540605797622249547012524558208963077267021983252510465189688343537341280320648555155031497082399331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23793375208548753393919254227446964118233647512398209517204911802635222012758192470029775407956735929893243055856313588834275317731213554925490786188989799991949165915826412326218037087821681544723635231107112944677917283812924306436414774854363073138595388838775326790876224883226779187054947226363467437928274588852330483278301661957807502687450916944349432307244992107577900272336684770483119837307659841896797907935907107302562245572157871101037252516188470809478920218762883530402835003569157487261282557319825980540351362537793032623675045468286757010102189642450353032275015189178020912643772567716076406076533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21171193268372388258378176638724907850444073698044004724504097149431830548271881820070033309225931974629623396906906812914009178708982709523722945490258802101176130176257833844113271352059676351351971384664635760368933750745130594756617120097969684542728025850018157471096387673740154944564863973522847531423217729478898191444962956668589560966936354411546926996666352302137557374679023594206771710832555498854946955771054588043177279891243169336583332393606189044936588559053905543581327124512166575748777343889668327509883319373277640121369067702660793741595686960600514867750423709157961566491223209572918621853591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24552529453413115885748121899957612198991708537140970730236220681607808860336449991402990302359362665464865192927760028109471428560988108189590336068420324530168233151906576789238698453781037823917693198857503199744647806014151343370597967637910512671322599033689667972037982743400483253755922047489281474122509279318237901170879797646724147355627671228673565969808688363501115464480351110245258423415317958785749773701880295835950156727644834611389916713212180954285350805660748039848600647866127834610834145960239567989700366492949606518913000689081633575599630558665692814912217397221597635375535321847323657797097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27203644588629246878054461111695906512453183453247696804395409275604451764064454684019291500293500630733958634657618196180378093055963930953400197767610896640833124990968565119582229185615219863638848876193535920225987724768729465181565396542251547840959109147281407788477428863759164625462337227936889949605796786145163751593383185720798971235772951709308690902857658608257180441341694108283945615038492135107903669751781654382503497513780520478137676434327991963164499753476024495642582137833653212528988952249875423864073521513849085000080757386236596765453704404715877863109267310025187562747040963881255085451761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28462184566519170294386697623713274326146166583657811088477101292395486573682303235250361737277382752468213241984814551701546446309835909947962791131239817802991288675393454909075809214072907406517004587383816637051716803309367639860271823606875472368289755554347127117013663868055776405121829822595071747962904340272913278312557518954233182979160414027806800649874251802743449832926902176551790676052299111153759330491661374959437364161349322678281412198591173329833101436154483560765092044591133003716232324696968006976109045600159412550376885361480553770898720468296689137166732194199673782689089896698196253702607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21832246378139909400751093875953841413111756740453782422314915010617736601686022421601899657680668578730125518300934985484276028375447468197986627727932626748673973879256711968756855219992587927101872720836155579734052969060489318081893961830636526098492887436636550615093722531202847819574186891064819097315665563303945859292840972232127415890289623897544678715128414855389992347053890730364804377134607336723079758974574180132753377485741033357840026817011209519937103013682516457267405009124981905852546475211211259346972322431722976952592689168805379741839567739124582445653408891249650615345157280471013178043739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24233997285669785003499657351261964421872004110274055449597566135255092150686702558388523530250220525791142718800426274249825041484965083594937811055612114574328633849827564411435377316507924826413119314734574038596464116905036802851699310735191008629735367636033372708699837441338655679053086146887110318738908565159383359683214750546825684804601456232145879188178695426808801859001645442882262715171324340269642375693203709896442665565404846608527600793110913804733546173788527224883139527896462376476824211968413854347858924990601984203030117338516640430101426223583352729228412173978122282222193224433250105193421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23237546608812427284967801362660573097905583779064302494427486586870465132500728403323993576905623119706273411072018283492867105321094666456000247746498563803460137190818102879238524182006983414645347962827383421910511450200019237420145602157388896497332613449761183679952495772367298707180062798236312352888042983027458843826415178202872725068499736646304415820508208371905566709316810419248633845586257109075186001585502017623265524232203610560188591521436608861591941061016918025296296603119624333853063349082030072151456762152927259244660570809987131760837330908408566715106191488675628994594745319695310649594091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27807928880234763842592821676571420923584429064672378841950215075913803388727289019382158919760892793008942826561913610722996225078948969797812760554770098036816134708016245055270570386407445648443384809685437469505699070854270511767265759195825221796342301457038432109214839528963566302129712847138695361872633450481706182222541823337856939201018056609309025006291325932628719436832167868621725987026146800651693494974767706789813520143695128902025487474677728880411333824983389283961959014415604620717601210648672363605713885318450299903296270684866270149366993688681071788186931670927607726123143388567467335833933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23709854974658295059524976485684187516462638771669728117687712864257715495705427739463858444033463668821656158758700957246710495152049547784748370687673691925727361839387207033492843988672949220145445200584055052732468759879496716350018645527597649357574299323178369699908146437484686724175759395634938662224802010354967255280804434169974059176418058404011552591275371401318860205319148965495104175094226331189501331396914041787197615684999030990276612475514762903055188531205873655468102523540988455375188830962266760266206715201234816998506321188828293501897487266980658287792013658137738665799280115771228799367559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25585282810897075852335426905734801904133866180005911778751461777289292692054379141017345733100978077401990456394853036478052248329083533770274803653751054635188165968574483623475009013335011018940476690659140976155437375715719793775601645345979708157430788890712946445543266078020372573627217927904692568234574125133849405878804711268318503290078710711510574104569645975658276470266359291925862664526128808882574137231756260887032969121284149709879296739511247280326187679681248450398945796113283808958013283897768474085474037234281097254572968384323966512922275921216516730652900576598262177050670726342382740544691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23215273044906791645171602830438096117104157486722482768102000191998582228445566747847377274042502449608378616624340075761562640664462446920286430492353969754068496655842243566640371760869849875356002666251011680634053165693590084922202883402436863024789215549529191323746898898308768187679780601427754772395891159517709785930724033605858217121121572566393974673728486622529212143474471745154146521121933645947342775230501180151527655868515467591461673569652139967430101561333503829951313509552548805654494566715067274247113135757559155391603488561083002656599058818237586702465624224668560689611895753422372502438897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24298496428075223480028501240703640031368148158870854146927789062990059978819945558034370332011917288017808856079314541251948201032591293291485203840562339608820089276366988406247139341011964951153796266926586736472948607123437305341773498512028917895073451639872452323059487667529521823578207074090563684802841031734755975219375633234879304047608632920808562373032461321672844724963009409713650349225247015847432607650503381471168183517824734070455680717039672208016673313647292446720833309583857310506725451465943290323825393186632421606229213465667733316270631383154618196196322936616433269462758331265901024090731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21003792827369837870784538911860189593933269818469874433437273944076875520338482483092867358184000257522942472214204838079769113809557822346547413778285759865397281998590696533934795890316147091638586260283367774146669537993056507298499675420311021134183667018232279276752637070671462993307921662807894567032073344050969001495126062039964220077421422024522950044555438239442050616424508154657273387607810729589898233988535358887588311502808624667561685100848417104062461172448463950453734489530911676175768850929977249524722767061646809899666229458500615585192059711465019979019509635483980615237696834535857687307127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25469259188256932131491049520326329166547657432658450794338739908323833315546279493696585163542767281559682767551374030174423228473489756457967484651373527596090802417770335353612605877204998554623782346028240117418391364283206089755155616500518964846155352520590484399971852324639717888600011213484273087844287237485824765861407261961956478469608655865400166989648966283743463608999141403314222407955065000078701913808460407017655096424265841134005868491773942801689203633603440760360232398038995681380488743121078696812146333105883797663099415333262725860579106745998555967428096847458720635832586356299199985432931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26241228189637352501266018147287864472895082836028214584435958702287766667392877988260907244240422838436225982832716684471533474256891680360817460538119142790399577332731120262357657973186944294550221755138829236524736361058201504579790341627783000766114537828470598600164216435908481521262601022297842924903154653330473775211148323566133832759592010713652260195689921293835820446134399621867803253139415388802085695288957038540589329807400597723767847286432288518458602921760719995742579155040461744565529095569382862453349991758701693350118664426581789512689185358599106907753757200509122118259969661983214449041577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27338716891087481552599432510951402145689324562630125326110482533226567039015118491801837266703616061194608080257980403027190365194776511353012367050101973737332356940759245227649372384857954914923601006769334392525979335078055835738869105041893147997143383655967061407577200264737805107240862520849901504653229317679443809863870939765447619740018786584492739355019544342573729267362368743497756845567422944074966172260548249008898570670767944575266364516078688254068779111267222802958947754762245163594276256416595464170020647023806802219042082979089594519342768589590859384034440336954877701959157588188946720102853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22532211216867056642298742088039985177942139704124681798252552441629489417016875488067472146357319408081014968187112246196432591556702442777718356400700869641519443098665540131533909784299290116504937453235040331452722469087988042247558066325767251121455764569961706137603522827554754866748145038197171525298826540203108535600723866096090049009238709830505346807330877430091749654728523818080409705287550595311186814746515302545821978882660711798183377984604507325845798945786520598450652162229826208672568171869835882082829634314961895013212416344481168221434607121624260730485331409092058365177777176567392080501693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22826878129340293929790899857855697365127400047115472372007915888806239245139226844786860432908142125261962016631876099597421303315225221051857952181832363729862905408692667372124717561154043758226748336813789015987621757458945039565053973333000631031960476696389496012367924796919222191827399291487806521048928260249982239165424035822423153053401866282247611020805803594316608865348472337016992517419209245296340653655825044160396587198891282349979103649148766417253547721099302567696865455555275623518978728088739365475540311329103721156237904024387975010117715762654847894414414389868297882323877181323864887321437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27289582573145956924663802684851078278162025118994771702176277890402137419483708681756203376214707304595717876951963456907864253008344227345946245293376597747189347261559182862574095012095734479321845432867654425570007975203204773529803736489131783012881800223876158110249569075959505769972923542236624409937767549754439707616056294916317361221005448348327276696202705844345437642135000233001239164907681982617730575204438418800394142889697082860537210732922163718652612390888633481167053236014652473776550623218786201188732876683876973141868373375152974106633659718629845885031349172984258045632821679139001371182227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21748384206177287364249993275648446104735727762520719876775221698616192628678681985443449457619663128877802071962717114348386628789025637026316575879131725111554093875018981497241956045511218567026936452120052645729188049082574956137998690478817008499774519361755291246164429277375438537248747404878054614940377618617917278442354890950433943655936144272891231609246736402549367189257035954956019833938683849965796483142900278474601665799810881801725063690970209559410450161985421205812703825898395958844878126356953429840146363010932939473236977755207245894468534077604470040183085069496876930744437725649114695690439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "31512422829616328996385394144676164210999306283799230233963544813638308885276017055464023144067850739749325098630128123127696586974377688973044150958736880637674409830029411542090280044335543686240205829602625687362688616055345421819227293515270667175475848428951925191671952987264314030056929237718830422757121827866238638507314085230419178900204273539413151917804381727970861848710732527728887347123202243251422536478192723964207006947432814090644070242700988859099740949887149463770706478354039099003396059727554829197797141481260870866423202025083998069178940442444115971715123285711244399211381497172289634107359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19129459362682776485274591001935712505763616027112914572373372447944213539834248824129319872230389394300688487464561200331960004922778914948100949037636323675215945043848275953333439575597658453759870909110438511843211709434877097694818669630168678894421148167098750986432098490164862525718606230905418883699383263401626671453280500869827565344223680286126426450194453147993107932129904131257752824876891847217776837211443885346036815478215455729081484344585749189700626903479625871750775209564049140139967726554960966752275557248105977804740741333182003760302856417788148103106074856091922469388854013736098729483917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23921526178243894018633451660274112623978771882221604716272405433008178633453466013890718980375866667462855092252290083175650700170655589244911341901328535822405810812334371255015108533854929237964482423080358069431218283588707606512546043440502053823953873836146046593331965497134260853259791128906313968699107797922127857744040049580805907209546153400803159295214609158673896258069454958328142184206418322440037568031701205693333283685563047037380301748589552740703721862612591457627633792227481472199153406301002742760380182399401092210727955670114832401261022888696874631333196241029678469251912063259670292952681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23803519612256437019852057008230053660104943864647622747683802187491803748983662467204767853773199640190004526846874505800658076561545666072167325418039323177653035631918074978126235654461672594856507527298401031299399077842736812418938319648462676877401154386291088253937642925903805324949516692138145991819290464784504270842676652545727648814027047520246078330721520190915132095431269007887658539244112501803250329786941736284646457616738366928203270175054561773513656485414679440941100732045000150714753451550568320317418249462794973318256932304339479509915548205837134412166449968807880278807199599078498033165161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22181248219237201623877502033013516174829714928717519100706184856321213676500303437324626539330651885191128803963927633036591907279513651883422843149701387079828285967073106077557149537290951353345814306420115160066961010748529188197551358979661007955112389008951009246361932709309693239952777260697754365658876368931248275175742979911256006848166800547553429869463269544102451379502630525189325833742803757364373392029652396597570235083015399402746552152990291579619477654296582178230428754146837546643222415853249552220234617237935710032344425124484736966972906457290117105131623940491373991030963726424488231162433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22610012520161886500586540486695955110015110907625989319012264411368440257579377890567378883376736891885257344893755137444253677078227907497910666190366680183716979793050413918056589176689470521599891587637712606920441492131836688511170730520431626982131634749427119548632733152643818423168271331417827644290681581579968124726969603666826279888660369908695959942028455952400571804671950842032054896779674385119145810964194690700872017544268744085047879578385584239993220154302914581578423394138093846792493799626991449422017859012647701293377434709203907061915380763387776467692946271195130000872090177485141776321641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24681156818059273784650944930359467812175823405710422378729392588287724616123790674270379548438993188623344946306909676768560365213671386198977816750424910506461795709400912477511804581583025292992756522367294553277709495856443779203940428916750774674251513286541425284494011085649906771260543394616114633880795646865179291611880402598670493890897481431144159761609239997702996363946267274236927921000469896008572588669983548027349307107956743619912120111738601015973652974475983873747116021181760105191380032382773441169780027737375179307861381657716360233959244524026050015538149696944496215232562389534668974177809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24420996986681125980595656454328975631810692419633165981003589431851308434650480870146238884958901337889810960748805752216625236742259780687084886927694148137588843424583692003448210288321610299043134397162825258856848596095398582900727320771211714251435680561490171581982177320518487588090372162904792785066270144392446890434140552544483397361389642569071099526400504678343374033778647753514370116730379832093717666402254689725434257373624622708861952463059982602916559015196013166353740500942599791609764348512044191512463182283353073062099687114758226785912345267269421906085220594788695944756729823428323691420123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25383890032033661182868391337671258299487735897191538796110816191204982784299715026735989963994596373607325192623504180682755066083237173882201192188084405264557117333425886609506112403646577073814019649152193087506437073858683082761282948607718246506553870380260287388134297615646500724107202117643232526757066519184509333425351753359959260694809537708443993437511327483979503328000429613857621485261983160121715386581398145972471871601219990653824171277917842272659582643334063630674536624501457744450473457672232907909328973525029296905258306359108213074563608762387328327746140649378210581473592835132691084208181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27482529689312757714957823883493136275358066371220743055549942602509418516376209296104755471289284796091109594439561418070995563383150416627969794402702628329050499376080267782949437889582387535239684553578828331513274451079911400522014446538971804132072944300181271293712465632713294228784269633356876700269146761979722706102521812188774907493837237984214600688073300294802502840773444099138887540649960773533018042473870515003783752484252182113454320824382971559153415393924322202082898876591435853290693936478839203841984617941561618720992358317526420230967857359005766642995409726463790968760728960708657822341337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "18943506153717536683584074696821912523343803706186419908863626822164810926790535855134064629591656703796871855147999721358301152300887738169534417440740731140546753826040057231448862917510634615234759669003543710840447973228889857023177392881081666264388280845542807616695666712667962048556603378576168522064798039851100150806248943456576512641981488104181325459610895929647176479086128470351795164519072427257932058621974253964403827257653623982534290164446980843895627925244728871068291417358857070604778212761419428839213857519367166552698145733711658247740442179385940420128970136081668122790238529382629103867959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25101346362680996585855846009203598011002346025462436998933421252485860105686491178078340756373991218788147967574736707854047591405189648754804585569064531246037490579610198267068851032667446936190378005084611082222260145328178955771081230470974436155765308512620575623266988144014160488347346051051634346011422807892393684800621334983969315077732002936473525392183526083790340756909011946471559323684260342646770673857363216275739068556233058656651769761145611528838498192605592027393616724480144815634271910051284446599259471998788176115865549098416067032630331825673319199613750745284794791105081769271997323212803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26566700309696975244611705047998091146718552697249232660341898862568671499981132574684030340536040315438678368075494043400013684019803078344262500274310117260626255271442925441676376135077050406077419707915711064337878712966498439326759061593704733132426146315845782723254298153529662382560393615919969255666544662263880904142952299115507080211535190191613570515254208541975289971059379278288936054621517475783012432715587335860959258214123979150308883374165096160583548784816410664229419047537047580935781880920484736710399996669079352325978466058114673746716474951514741271285376745686679598408712459308864809902029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19675737476370312751208146129683530839509495296028927019490366319139466233347376525607454248768645967117888316405956813774065906606033225942746547520246184748036765586956054938573017709706899616762846806812710390048590233501204386337495950701498400436713032083697952178576815159765480479728207628154186078048567642934035012941716458272993635859787929494082229859209963908813490561523836966837453422375796439737698215667087795115623855173921300537506548141990667907075919592472858250239410632890101920511123094082680717244651202567959488280673483684207795753933738107608150570487511538218740841494041165381021830310823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25815721183477413373705065348566078838457916013001553477368313384868201538354344987776979198947537210271035612213697212221754012678971601578763390451833003303374129506115517620085540980387744377665059049335345900368927876710911667417940647836255440158598926586214044127258501376888244811505976133238096764929265678396847661505872433243418331614396293291696398535191383408251901418272340241530365107185310733464507983677014013691333990236977815436069507173025667304564609158174596544780942847306696219384004141920366347808531580754355852732462428468965647596798302347544682131620664712271161844113816814487514642289407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24299033518209704541123328401032553565249679202638137760892429968919050297663379092322298946909282970496563902588462449462180374009227330286171442852428354280711506201868640739393073583193699070616881619213626765300117671667907269414803516025435069957672542617072940594783810872112663773163954397171762727911265840499989145997991329605235799493874159019766309021473801095019980470702954210496669751541728747744306601036001811818705542690988845210809263977519236835569059124863732523976401442718069265275639935174651111374915517115914209143582053530636755388304371777858355554415561901426991663083697050065056581578257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26095412011825768956408129092874312104980699778497351410779255798789655997553804931856697284030023023746007996331493095796221124323889929201593427216174698042352601419037321270432853644946673199503774840547007173605588050953748198276422941921275298291131477113397426435553038258070449830148758705472355500577082221976468825878626438284301367862423863333693108231799866876563811311529440085178572506963024772333634317010889505103947393379417961488851030600109956699157580137087292594235787230708021715050206421952739938772191916423805311322849349439068807456725135090019103480418519620297722243900559767851115357212229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25779220087341489033950122491904332851281159172956957823919788321505291435531777303720026123681603981852553172414005572438752812949430977052792768937691416826192458762699229861732266501936786020616940029339116348937743494120739104692257463713668608786312879445896738168601931947086905973075001623500118117123704087147874932222096291116744338110369496296685404817662751860109290379939932551545573122926631989797947801621742281535172550933012235347919645985642552526192941822852672963411751931794005981438458132747572299950831700243917524824690954940428048194520326868879412393176520639886847463866869001740580848648179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "20992224899649245854581878157818351984598041880560059666646292138514549610804004858890197785461392178866240871571361985452497227722495517005619682679914154801524221721862594999272017521673756689602996502830912467820266240367145255906734538223741582009981050550507283507197790468514599449870002408525839080565962555684032617550305821881285733986027650478188230255622227121454226073132450834881635607170582977043073624865699423614222968082333942974702498909056024808025903292038640882160457121900185036215777508552032087412788481094050895594112145311082450333603718088077298426349235549807156043759506324991150670799409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25847971903282220492098082984308123687585840929255235673003698874524460728690740611357716457560925760974957004736460665324248174780634056574606596212524613229308193855098999197732357743637624989367159792774120013581817463135554437324100227784381666958880324801072085619833496253506601686040719767400588265086636214424372147385756131768155274808337860899000531894810222235162879832221011094732364356854653706593370683530879134199680383159454714037507681114292935883386121568458304280444479965192215561947581894676887798208495133619184481734191013037751727442476661454723309090592433175624516535571343665974480458631197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29214866506652094351127973346532332163429154004573904053800713793307924239381006723868507833389034017678551570277010105963972089096110543439925390029260361453928437199845219004917564165566218480299451725671336067761267845400800239414917392606261169050310543941019192423581572966725698195815631928275891581089917238875445474812495636396786091197137631736771771675069522895214986228506988239078755362461814338151512746721352838570280805101355095446794447055903309611909079152171279268645357470235813377973197551772222828126299758533966749217973129881451393130767018692769709694946767176383494308489880238228834668276097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23677984074932335683540811375622221306974693432214054493729919793548782593686822521986907571887983993652148972670310133999546162702383251127132143056267721871265286923739737368037032201821153848363035063749011889901560668863223911828039809998947339467952616688759374529203035884530757418149057214666309540724316469168322690356445592554751980813384144092900610358419221055703335662566676025976469691085221575151196494160964369084961487322073286000067157287335768664288311313386396969899819712465687713451852995287141284627809398446595641100953333781769902891929418862424288909511852865683759438269431289499055596150479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22569780931785317248808948628874406140699058425591547851037771349449400477315910350906742824654948098501372847869181188159194262901403333076659880671328099262175408377493077813265823607427170492625131012426550753063450280784610064110400470971177050992095539923420516504872169248203540905283325697263727426111869711755255025984208041273482276474410856790575707394183955335060877326143767190252020421379133031318818780865175458754690283478575442921767277238202671486596069863029487301705054822256950271540937124985858741728989690999767639452782725102788976654652919707617458189425980530142726875594442645639302928812499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27525972990289984275457022730508394758631740650114795412411658106329219502321963407579758684810534873213106950601145754082565008465368020178236305715266846960101607556483704322446139167682112701647380309306231446437370704414862190009507392497486641158106961200470851912281734877397428487461009010564371209139572288414675192035505613408206733115159751507694303961895048464831486078977340496007689529185714369800676850215418396697512924666509330730718444547658307885067104062498885575014062655725330495791938845773891544353489472375017686420144501594879393979702005727730218901722806529651562003775998898200353158357801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26624356476115319863634299613323384453794458033007227461234300818600357059604860122134556535255302688681777797909137755049843181754500746875601581831396123271347208857735758201445941334441046442141169034190148828286443672724363254499904320343967577897780809280914409607026722961487717010551756890998494400199882386950444536222424141973474797505671279463471515625912342178187311536913811938297234193853223611009260560086195903509482490240346858800592419754237668830499273239483248729631083469844040971623338837141652922164998813823579918519712550059348603598953173131696793716591058455022219446840837610444304370695843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26446593036292876213515115055144024858888016597637685572551448760068882924951607796318410947325159201722317215692738880594678504925512491778667459147535025354114547491678169883200714402881515608796819879042184287802297487675304931134026903778863983150638788489818809783821387788100431947492661745582396571574689853093863903446027794879850475233498815466764489103982502586971791669116986259973611890121998268794968524758858699588172459651735495132639801917837643178500655475382718060802852137406060145347180046522099095175256262703921450807716032871947184777774616093280115917876899383826383539436626312996724096468213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29486119642595859255024917456535110199725624611226661059500880130549473204332971160008019201090150891431171820339096240432198966107074944146531387631565719112594216400254682473664816106947089019712425661262204484003697801838931371140673697477985713667465517852566285909334994162473683654348505747197631901020791316084560857550955220026743728470144501991865168081054652489848913468124484019255969425132849490384772248314934044152542186549793779800453395476288828778485290511332092588782485447081714851590667049500879896983628000439921361255929496478525508997657734883289178694929940773740843079520780571364223100868763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22309016179851746542092285068725945895629406534321014271523265613302571120968557279390963258622140528478241724330517123895070126215363422662924386523743557975068787954545283556098261490365784838653881617438187655161187213741066146603301658493523359125236444530808701219539127647960236470559768784032163025416483927976328418592297020863652370545863738050314696420210139108694929738363093874644403698675787542872892988755201196907583302714095593598170633905164492138721067695205694777294934158919377508696606914680296379721072762340297564891770680750717310316566974814927014221466049092306993663254194839363056632867291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24806743923258276035043273787186037472417619088391010697865960589129677837833216384281603138798868298558853938405121574313765202203112111232034726262317441334286831494685063071769071022972804654666614288142360836248768974824621900415228099510195825987364479577525748535370640482840556951724052531975096124250498644540234010179416195444585950023183204193750480942266078865747414466259337945109114612960803121556726843295937835831288033165248912638310965297079446098715002856522475615370067346077611399023786864163542953791748165750501420006254541364228651617756080205013626487015237633143681884758212784637648661002637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22869111433193108471625240272355704404589220222430589814378959391916294197252949881196392278042856695970227303667106936277335924174658317769444217012491650139348608490555710642477951458760548570683958798775005442958703428853377342722227391258997350411001408096541996705247156250420299690061637661972415872200745705040863511158313370368952006587166986694004397364758737842484861748868188841014049464004811774683889552805903902422521779562914421591763676610564173865656881306483351999773511223664444873942070162176610256156028538032982714426371078175630878496136212659716096968944312676632283369787509882202205123815547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28970771067924988392592326912531774839391008244763933007749999734140786774129655236743965046482427743393045939265038708007877877100334591236986024612993967812172989755397164251890307070379321988378873868175182893264257697250535731805732097895671840010638181399183796247183065452501600309852430687071343132281563344603121138272056719647640939866968868950405664855611535691489613981284540259700385286413166878413896503522880069756824374587581595028696664622868566739724142483485797936497805127271462611718867918201227021419703564711685980698825745030173229281507657091869033874839315247619166937983912769618576286734639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23936097164702115574278779083570488715932659158609063628119730239245180674465821150657979880490009675204941899212691779276191705019504211988239001504360393677869530669595312386841371343173058502792975630026238379867208422864790397412115507806019669606125116357917220453197727893083184190415728214931622841463457237614632580126735910481689724677044258184227100001891635109911878870591104580219346900363434670912018716612343602458618300971871682996555600266625634860143741252567877274901332208684603058945075607399779506377336738064004830149812886101795342307424952589006869012841457945363161654751088453874817410584103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24415728904263592560734750085456002209209929190712807861863631845437651951413342646359231617962225519610645112027627713229846895899152142362393022445660889501772662988873377586796067251522205757950926421439621488381437256823196700353228289704003011611927986785847267346770750545245231590734767355861047830507710375369316818399654038883902244364355096372576959613792291395985028386089619895758200279187726908690223781599457193651588846247199106337296485369474786135346163768040491174426865941000261799262049305975245272193641865030400627353014034274813513430537112999674204894872278625530826141900042095382597625895787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29359430944781105485927545163077390855086790690246895830599959067146574821991528142676493220600568400850880936871264848778932135164112220510920263374291726635082794390357653023856303205648697004063021523497147894554251732603628446237060113650346596862054903082101137800853358520491053609093713016488109210882455748197950432056681022226248742351151087061273491306201345545363707950306919947659081684584639447473838842512601632698046010186769988030500539677802977129728055039556804091498555932580650051369507728003655448206696815608277414831504130880829938650157269526356526483850860021129718673415937670440902613113199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26818186910785156693019948960134236895528338714292068843100424261415392702238729747647432170486201178662436508314289733440495557169649806509876009689262963257706426212188961341874058135106578258312979507359040863388313678660638402978567603829404514795016993990078537942583321953919856379547651014169980180446299300059567259866227686991660598975274654874221434441657998527360672061764941227105448954614936839239596324082407228352077408925403673796176253391296209581131631599659411055276878155835539720851924372861534698748867144110114365822345359233134995833901639630127720359444511834102723216568319809334089122764971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19407034026268108212942780969101717790669078811229749389640978161655131701603669678359023258005237635470095407186672864886004224148160017433830574070767656761708395450770590416835564006147090468944177598678762802639600188543561228380056409085834791849727851149295437520284059186288400450687584452661201936722893284930679993899004585772347569342289711612805372328788075392363710425734881192603041329476393318726527888475133524271557812299014991758429033201319777159410622283133931835088326292735828626348170710273731733003725125964357697376181882189483290800234663193964016091521401615144405091299562143263915553173707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24277128967131144743272870990141196319213165196879283305952791571802790512224591156456574906063258340658981488851713958277492218340180834435067357642946305902760796557174386430851339229412299514918340931378940793719245161741946177292608775477632438325083311986590442672502991443542997489613937552985318384429925002707628111922961014880362479447479904441041623309366951503221332006310417569775277779047325596992984567799610698596261445966692213455278680714365022370758880790524827897854294125473006907380645233986272353791782228059095588370948068924595347621517159761135953943559007115425626501258842795093083792195447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25371370923961057530440050272347494960397193519263723402240107467356486230553883659705946397153594539608088660836162353476489800136554418783132054987096181148687188738740083218577075819926036112568532615207804972843864100939738048999283136454273559032426901125393138348833325718589023612396259884047227635437847695250525338441649071575497066623670007602752388100297060175692636909496900871329347271123150826195406594765269916177695537758789949058320175989739417561437532406018845706369893326877862391882592264784801744764069029791230684397637739932929918976232908689642699772124261504245257355773485683280098182039537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21864994400474737186214798984281999369755251503122000924275215977199700441291095487586406024957401558517930839979695035938916151514258705968778619734560610648097310878058504315437542545080902843153914158191711702318850000312803841570379420679397800539788679284125314057284126400294707697157406234573581885079758768842842016942184730602037025600477951631072455881295107032696044934410564168785060617604888235171748266411625066968946331614128092682211148290196596814909930368438243139987815280586129478110916524959597017171181890247137264548671329553363305000959230979684771446380043754451555971064317899531726770282751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "29227656822960636800216982789792162995679798621822002877221046652303814890994526464781849393487969473404036763563835965953943099446822813588384748780586855337085111200427559287123597845698718250616733237946652578217260764856973088951548222339603614620850376665258136209393028584430597437852977283921667714608338049632201813986724926956709420327775620646284240546098611611721470963196275138928961569196738162903349535302964838162008462600905083271958406834201589125935459678264240877800032555522358135528152150121211271730032283164157116690156994597730509330175841266396098826884829472924788098510187108056978475927227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "17085036585152664666325208289689061404571529319034110247212324293837122056858996412299907914170208745072060998833624986616043029518789069413936283467830886989768503392309944857335577249736583832587610074130566857316976824178697944892608092189693920471227920868259025137399155666391870571373230469138010976557127262979021343540826846918674949159762978001955101090274579455131581673035983140661820096188189585236208487939977863029333545158347597321496794608625540743804308876760351445343818674901511973222144855763838932250427867900710255530191325190462101896405530136501973353235247863276053006466911203825541755336583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "24883582305684082844672517008560928177130056777571764790064995060909367116232581557451796882180664945057771902303044622526044537933975642347771324794353361208991332003667496891357298022734708952206653310149011077238014924560114464172534557115592390766141785267368747308307449300832217862543271942252591931299272479512913949341667650108805939486006890074309111506304346136110013253714449025458251378871851677442620724732777451997236603849102395579952392282401489117650548724181525621313882612761252830452818076750679894590161858576552619192506903412325389908334007837727547593288429035408883584397034101468854022041177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "28413616577505569770523723773988214484384185213170001020446070721557797322165787933293910070828313690456074319144080340456671052608113083075846817218888822469716520310130201270321805084995771922365936871280079558998653230252824529053503963258988628652240912510443698010051686534002513373213707314837501764129108902024730416650654353290248494666645741141642644345213159833955382506409055962369871464702151597654651009968922658419730963343550055390831391483305984225279666818000056334303666898165020218876642333354208781749693758114959373715764562998897963990924055147979747903315313710778877971730732438324034312783571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "22773076216789365858151967157690035288233967913509377762532679609505419088900094312721395582922706213494929710049986310651380714457214422002593040231592381841051486365291124430611474729249101060139906437247111483304780077972850534314644273917007324143040859951850914961448440336222289184670724600506918981479637514448946298802632486160839631674469987745841519935381412626476188206770785204102461668213259399407862466187966698587873162021892998514993179786556892637980625877319842484549835089814482479210018684025470792306064185774278396834373450643413645169551138060326999879794881536874639813315170918849713362062759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18398795156179721821435469609484603047438310384607144492140576658598469834724180498312108461682077221176729475839613554151235301823009406667978228419385627404686108239091602964297546224090879321398393105762518675954881504215473776452500661223143979618489987359400041096535931371513084517593473388733175334321167596925611371727231513967939277634304460014319727006610697098264857389824709753628055965528845543769062719851952582805957140668111263797575075001105896149151986232218162734781401075688292940252565503920423695476640107196735357156013436001409182043334614980537198484281574900998275113544006771394280571648407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18448573073475759834117620730968974226505988275764699913948566052368373308745946884798546791294100280168323924086736891523799700130374353530363517874239445352305946930723447967484800014940717737607698875842454302651359688763078910814303628407710534524316749917093173646871432357977807657755866685753487604038189467902452249570823388567322563241833627913293486782695312435536682188870982255518405327398208629995745450363084942240381396611182108682436085059280627728673379237622051444401023364881446889391167398456078656758313997137257064316903024247335517432911033246853920705608848428572505838783959029255372654808571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "24697144241501412874984596396537738789682287731535941916119911300641931092992440106554918411902177569419911194836399918703197453416047584969217974241464918283016559770642743868929220518528278623929088683280441513666119043798600429342584786461510825905941557520238600070092367924389667366563488076789881465376494837698696838901114185804731429737829245254851051754222620301582325304678757734371552644389725331658155706713699879971608143762147727291389306397697102931321877603812619121186195293284686697092460798089508742270663532095407814425160262137601312394207689301587602199681444814799275789516308826593081890529791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "32027935529971055990894296630067087403138524147886480595928927325686700270269266230486340774304554310446241862926268710370938916014277234236423693987932369644356558524419113405514967008633526160793779068980019671449126985301323360351524798451536000701449527686069096733261200510531920350806360165255895869916608013851562954337188255541515444987977871302547826550467169589685286519757022050654243123764380380196916201505885654881179620210613266863299698539190270093733082535027449160756867068635832494712758347779912127029953247468809096929008221493549581163972205339336366209216824758849330604395921412953300083151063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "19771976913539847085607228625312464264990518613114024082581374769549033546942382246718425982046310325041994069532952395338269263584929279477868554405691141641958067962460020759887339859193869022483087690087702813277659055300496347759968867700953113717542086738639217023657415367490489411779205847543041690643155871327833910875774220765836102459915622954270507778000964007801882601818569015068245401034972086500032671037393396220333739064484042281184118375434411480510185502247088370582640282467478485914649863839203428368695239426226095443532282983371742491907610461235442605055039697568491901738099024913669842603523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "16668033119138572861748832825378284506979185771420465488687487157369267388328064640095824806306482633093256931814793360297521976312199201393402129811861934122867166850676892841072661335495382995900710511686897024709973524841491020516189364253628600584416450676369251723866417603471369513747612599701706053559534418498622950561781657450840696551274120412904442623850027729385933684772466878610283158935368681485124984232477955629588695769475134153401545711352084911668437602495805480782413540742336824365167894286221169813007973456650777668149732893374073232208334059119200057340925309928273803222571769231927178269021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18626822980700282744335700136590303039007197492007726435057220485406456153656666418865570405455426114740208284372680182488457155124541511980848235458011132673017833972817466818809380636530088225924568240087732713632653030046838245404394073774626933531569668973986939244575838262287054901307252904008448631511513583376325866635649481906157306222463559531767150854474778942947287489004400063401481545284482112494847725583814105344606976254239642952709380830057124211725293849004019617710573709091688392384348059849685268765716131992095686627860244699198596406340111836812959534564047776501474745799380700029563727171693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "27704886592979927008761457248878424078345240257454951112613714513745667630617971317626935963768856561936108395015423123582342639359777820296667754766729447454317468768904853244479974114721350978965832765255937383235131122301699994864144900636865625510348967371963568224245669197885748595984060499165922283715871037956087711153563888197290074268011582380615987918094954116423032866794479648804063176772216074792919622337526928743064327212983513998657281944295911897171705522679631980388683025155603427241360676989843594216585319848519079829600800461079231157302601786210321438577253306576237027109970177849989073515299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "27543030547610764120136618968892695870563619520666105022032228627722713951376169958215125214645105090354240377170751553771030355169408418916552924719313234927623524647458656427895928289146906878421317074709222160686489970886594571719604810683165088353813956415816037306188591694106307586556943519519440533487775748307927968638271437929118402973424062258135601436888539345246149364457429232549950845923273073590657135292066407231908969766760322658291295285944082544914650562258358224621664318644240063666848246087097144983880809490545549684050237509711084346343035417794863448463082670054123753046513894702056236406463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "24068941130476728334033656578614276228059306113814368861646786909072402055755522845065966946944776330846155610892618680338907659436351529050397328466133305386484328692035884065677808446520659810033391366841479490010892946827435122551083650296641521495691274145181998005981297316667944197378154368674240742916989508500884399852899365029194944186570229562994067133341321578532470827662081844418880849428379360824817139414700413492979782501098169639405292626970044647725985316835034720450104915404044834791741401806660864610679811129493968833979205789588467038386781914506850595583627714305001469552519590566609060931593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "31406582100679774706009542107600373344453644028433965869347409199697738149590948374813626907312993287108653363097353851091975704464732341116963586419768574454531221786682397659282449770048350474253818228581759286116968589123915529497644289638533893912249006032763546977652188305443885630547919869208194175571312552052871855306107695209118934137190488607995583954174649356567153852366676469079805373028437769069624904718399391682962796921552177130708096197804407834674062214820905215462235223537967594781336240125025824018655259376969264630927013835667034882656399916083596080435763722208977251997989473178663745250463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "30819448173052622071644800951745153853320797510007469463158378767697727235798121183845991055913019803262665334388203629177206943642885257040665529967729279341253699710285585216006707210310695809763666518674116995681205577991313263140230985047869082912793693462787148573981299157204502697323599176507361280938487120476898190274168639840053999565336994089365246472247865230825340144248688978051810586209704191538679200761772296334482281492946732433665218980353300246603785682257111266297008528204032788760961806328935607768460829606988715471012955931271961805776968213047127429540229048543968099251850303274257814161847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21789112812387479780192315912967090277378504508489302624861031364507563676554912630026067296693006951946912485300297060680654067136944270705532225573374333986479938769259515747874861380639783164893680726281818680515749296080613248610715333365796643089671256585321027109744639366358929389472821333155107441983290591249731042181592621990306360287107413233417075158649333280228554089591991438969966665080802907674183567377039188863309280083215871916451203762850612342353668749358037140226323636830262113972791981813515911300459417034780654906557021495202316233831897868436926689746865171823078336999470610623158581507449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26346967989720270446958826421375150904352256732423533515510295328025078812817063359764563259699115928514902472081670416526531215230576604216421587180570590191765193714799679070351112341802825751064550693545105928889696309598040693279962282367238129557997281492915070802177348525261103617174226373231685103691482657028459902595472520427136264608572367823881033496933484239232716119367137694527836692557730162886197627920046640183275435469564800281568791549910538919988820870323051066556152817515949205200788862517234369464611721424685555910762569963025105730246342420245478169463811754213955873709986235760466693693813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24341860660955830817389196492916058449508690333635277314121742039027860692600885957842275331245180342165388867605926656153191503974979273442026870432657154152278026607669608290370383135720415056889691426187154156777563089106796649997732369444180624498751138070699464163644589094353659933265845938063647442990785100511410764194948673586009204145720530493757025285654362336638236580033709993801806478030792421431961641331748435706532663306108785838370313372997506185599635898858049920025351496248552921522581288066818173424645159971645446114346514352441573853103682500322090659155957703690076213144131544827546840627041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24951406214403789814917872474977920186458095247201430913122182593411765835364205923703692437030724678879927943504933804034236819692406825738856455771114871728080993010531700739510284787141798147571378899720476810061490170736314773409717422851309582281443997325761028565090572721816568425311162576607823147476529962869428164158592194774450610611979649569072527493979420408481225881952553534987966904676539290329974327263923636791212101969129306594765795866222334841055031922614218993248093231783999043993623748460785714525515772639505137226810569699138658156610753854654662159668163075194180482536765809003193637102849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25599086236334524359760186007957860510822170302047822569820758566294634366439942324868863155332608380958503071003222329413701374701596953519528348503310400856726264603069202761140840441583530358443419231662257884284106647140164085063733371291623497047576481357429092909132685863683318107009156781920899272083589641298967814853930325339136973909545099812178997315937055644566795804912972013465695863705879935629752391935281630570410070826399480040445460610269589379482430339705094433709253837656557172419088419350658910658885517651560419296700427358164077679126086886285701573343728549453790210907418022457278582047509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25506382829869111924769508633257633803401867413811830032843030048524236691524158359799777630796336605327046008943095514559143246752165634680885917074193206090899497617660294700242872456491746938708679300428958326514083848701442976752966006629437393533240356892655095508754727751775349123090792163522836162628167387570873126826231631069484244277658150344473721732031016566970742923234143989602089793987154762907540258143859842871176033513985614472161465247515874059585772507227137752433220824847073225335897791828977770011088291828740537498465900838956016266040236688523530186474496727573433369299561467886660321261769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19705812010920366599073695397837269826014217287240679260237088694199644091625888975299903772436247495530630791794954243571613281470843963836346687886159427814604423787565721824347412270803608306599444596004961261398684883274231330155230625545917549542827979231373748996203521360507347887241774010963786150981765323164097159184861310706901692622514943966394418792279794813258977545669002595018955567511563529109248768507710047918432169298252466231216059860889256481782821718032883482217897824540147328414771985653524813471859195213830620902359374627579524782073972621167403328912417332079172998406957294832453499258509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18542766100273768554078505434729601241748656047492741728700350500954944229940234341658832231894326415411052665896501378136078996389273752458013675780799017594953000764632624627078461788430203893357142686169225333287892851554535428404496156399203552514066071111155139837493202449280465617659974823421046097404565694122440610704690806113769138091361262275621010097872651553722563340328118958292622752374762382801178509943087110936521856828493256893638274180442374984124214055830094343700580471154379367136674878994542300590232476444565766531356237433978170039477053600534936964822821230672859197177399479340887015553949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26212810600581651928918817489731005669541017900147997226760225157746087695887081117368105140281494143817588540000444770249738015942399366138401349349679380768303583964593732664218578860895629327101214241275592737518692800085111896165078788950076143542061141018714670080770123585766964877297659613742854605874108012177304408220277919867890512526201271339884250806632689410347672509753015555422932254953746896544904236485055085956724731763600114231078406944385228540298108064658864504314157378760787578724685411431616068878693807675843653429652061854592834126330376038151195950955316116319197415010954945611285723497773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27861757699852001448940604981102635393803312094721785437128468739301104037677644205702082647193918637659789493584564834462875118104334815137911004396737330121761945085982297928562182755917352546474167604680354131713476316081484631958983587495616315805989000606642131839790125196106606498443937813354283328197967473618262803184610794176653560566249958995232527527143241546575572312578412384704210360870094343680260952838851953431431858197978547507804435979463414516521342007876140511707145057981325415256350997560138492287303159996353370776578515524131544412424235994804907261392024548612680305606504841964477800625389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19232689314427057921381366999155771224613561967550694612914443087017167571396416493227462284801763975104415202353728442525441929747302950679197416611316502963676203553743982726649156306284599562774503439306930877437199802385683054708010849889418746840371325038282996230868822607306904258854921747621571911644528623793378211388723657671526704992001084931309364171350923816674866255209586332140247333909193993056424039306772695343838432058693651113807453438468115755419530075701098817430147175627906386655516672045408720112481549711105990964233958474780295383876150171474882283327412398945084390571483045775875133230761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27827299810867862183308607921448848521206177705568178145894778110363414431127863959075446178526135789315198144099298275384807127041568055784768422594225354281784113151532034548534186473677586251341258492876883051717326947031465547816999202031731839201298521125324488230184501779132712256212819660088405330288017129599828749226557495694442728899165740008505851887175820166404379668245294564457146753182328400539827655015943195876838847957306750611624041233058401266896348600742634692116361966433778397214689196941120824525021517676497539757777709539724556530073877291345613475301678044287208430294463445255067139374221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24146575860835996826129466850892371278048875391162283571340902311338238969395983534820158346896723246212159811237338784068301541635065662367805931474708609528741658426168479432963693404409898582893871223777832918365922823093242824067840853355716629159060561297123192960771100055673585226895258833087423718804666321446011989321629786927132199305648672534499938288518014772675231422616829371382720263466053901960419770479595069785792889612829098647313675497054726302598103889543258483810539976306689453645326191054451877691249463431031854477805258498402479462832473095655130442804038088004706653567450988647136711081853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27185106433614491453669875773879165646963320510489905041921062439960173438643544159211592342071961548422189982641029455061041373806354370900359081070958847675213713488764060901683578177766934529397257873112183532822086292713284624359000161854781908993239459454201531344647318858046251177225723813157890673590340817528487390906944342327254802411827686988731737884955551945694732077458106382526129239722550737960175280512506038290683234876439996648758137707550408890980030773559293436824660354556288773863829060226267790978863090049200430708941615359809099389896995992019217321494758777232828439350750704289705728272233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18459529107606657953702848902519015376351423572748725945718670314809597598746638558020842091676600094296433982037555179372126377222344609807960683992697726575169830898449635351307319694529888386760801931462844794409151156026199033927133587087433218756493866208524907857478612924292506582325272925813006683733968098183854357007001229341839459538486789652525484579582819618473086394753137476920566281444999528797578681962151748931139683264937205966888241527233816438673529619154759575676036954015880614230854018616594403030220422067959772546003785447807378155199494470303584107284431204899406407957576633489619193945269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18809760589213181684868182131081394257963157383882727472454912719756811725338492597696066471598218001184190815455485593326610700590399689868711511309124015544551613102942026814581725700368743741673697219127933880985761367036031474509370080829487045649746429228372620502539821319670240699960659348570775655073833281966349213233890328285089090714721138653116147455322246942881584787588138325379395520781082475387646645905562606440704871375322787314535126553721076666206622090970223783828903569216973423153283281277208570879164691263235130866066471144482077257683975796381237111764457470108398215961172845094653211837857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22688864711827280930914904798406460665722243415271185447653858251882348579984684429851660455250518399050104226937409929202584064831083890629200724396412958273789459836429665856950031387952209107024662718624793207459117125329275372281759217835247852836818588132390507460633953862253778896529452559833410513346578279556804879512864276085393891801491012397004163655257591802863572999295253313273433953043464418365882173801263539447869720645950950892946516407550472266576576384309342424066155949440414417783802405256232223050305419075164420894031277054780027088328284006108863969231594924218024744919244646193461940268053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19245358509917531504141979338844826948501296114184493646347868431907470178592461644250067808741252857895162261700932650530807264384050779276324816143327527092237328353541661034929829515301666739926052593843318598985618470664056442324571990274286840516733513202876988454685994192263690112492770184845514186436426918290181362283197725412926722100837894669616949375066691815118429336508017953079233582715743799076461284836818981791657980397581784746428145496787184883244765141768947445408978191816929375168576483049132735095367544947417461017757412252761233674739420698227777685647440857258340560816638900821987153325361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24367938778115054905357476313987154329421000527332411406305857727652881862825697384622791954177379656724129401993919861855492204886426667612285304641849324533061360042879885007645106321897830742636574337102748593013573322703637051700338148663443242660896352132458653886972400814327502584592166098297688861830784746822023994447510991295557231267015774241503340840019727446507016636852779118443827195960274981178534342966326589874922648887861882506689061389835463164781220682652626178613882208956628003642152136300021327246386548609136339645526033395813196032031082629339770896909438161607996482369832520822574284492897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20432377398311009173956157888946738956470044507138159957640113610585002802809732909549020782065050070205241024044196507594827348452471930019294678657415160417073659457199219750541557569193780664338962189734494498398362191612345165544666356203502875809234933425859021029617929470518713076654455434516027573005280512692110469662525514133189815227357132202382544813276473314236345580438931652766969137030539236179804636008481954808762650000964488091271979884138871577901962621350624711429334708165629900569806475138385785423342946724208174847089981972769587715510445927331165498838942570283290240674426068552901327721541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19508898014121603160826487762259191547970092515065033125402650999288937303820660086012347823872860886159225400031084572555842996665453374045014424283066311797572430078902231223484738774300163165224752183570929120611022621484325856939920592440039706158168872416966768857528441633132909291340584038283357623591900327632982859698435242042117218165773656024466901818174843393303837329760813191541816473949029516841629998966188916073237719242969683610708611385175558138749799169512890571805513082552803206059729179099733543466633929830425309333815499968662073624995608344276638847669850913729741296019944499081496491927117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25319121911016809603989086308943360781056814386862100329250219391513381944336667556322454089456448707849557932103554330978427583883648954884428407518460667629440327006356034743240599625116531029786038810561782702587787356689271470392363642900767158692748590885456393924923907630114271557541991359698097774515860752531521623502773478226613024984786120237584459978152228459813153180616815104429810838477285988671507067548589668240864661918111205176215038335892114988747919504984915523632874832811079154879668075544455382537266051835134081752961249065901731437189684707275069522876098100033788990955736537805327860519761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18641625547519479400544908540843993447019355208676171710730886106580282905217550146971331844052947743267277175786831221207815300634862619889395921593249123134289893006768683383753506301119660802499908919666779090360429701977470312344440618353690949919035451245946533504772521001207422296277585531370332495127317047387087906182226280525126742534666584738292253588514539203706496485016004420538637791928931002997706456120597321106199404133990773671965898752653060673984137968927515515120160476181781123477330062978953001766665720179294941876713293817531372310315985856088787436618754813762522372704396860183890081709069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26539561154735049173989964083328812816776144018610282921131351838130513458917385992657758412782419813036050380270885676831568062708062046075318077918653504955257207615756669230421135009274346024727949968790571677262253653000779415803615848539668317428029163985523111763647423658412654638060952495292470620128136339046907094726229841072128824626277101937463936854773819789047880079438697140826141168473641749565984795323064758333645759665566443986131673665214026193365749024874181201148719158347182370826275968334971281079260470660542032180445973600899497027653832198853673230286368877968797523569288760006632666597017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22387745062512181237180173959499272919714882464737490652191610432981963380195983100048500300729965629350142103581022058946794270775659665004616639404059187594925849069723951007799280013870725627138323033365999840757978927085380541916725422053777208764982002582030260365184669414992848831221888439644835143960604982051436482055371097520840674675114332750788176657632999419638406121776920174433097285612975104398822965273794387213361897698055885072876425950289890146835922864109767854225976239093941486493566730708271847257844125522680251134981565963736034691589162872655550575485091790011185591278396011211686065496837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22588791419576403651391661489642304797985119126847965589023116657414897710823012891679947204421176668686734463771355875008478711535121265571656211070625074837860049410536083449402665478445628964480761279140749179591210745165381756392377959259560081301645911455483333288737149666293534582512945597731674434635169626259672896563910965042577513013260844074956852479918874886179425578864008989729592826816886350903979868982776326693192986557584689741926669853506469106058931143395143364186620450713991045125557376253859112720553568243807262826200700609868808831266873859509596669267998580602647452198923110738220849546441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24856396681345641663187812796227773815413244553801732137185573256869132995669218465560902869379532641495348165058492802057949667176519263090671595592204905105500061220374409582306393339978710400604032456994681699010286863163081272887621727713088553869248352346352364708832175913484827994122664775861695511068778056423423826279556324628870070724214004789858475225642996022578368637443445761936815814739267272396629796862980002578888810720414077942194133987429703503120658889040697634785062305903811175938719742014298049704623574616645873455054668618430071440340956484625173190624288201071023105418356912915789695757097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24010712189848170723182793363942227834178317613901081242533627972200847699281933388043055717402212997996475600087874044003487988041766969409144883747456971895257902500701426490504834415836790108369427446754865202015722340832682122091120411429463247840937638430251630365332886061866313804181897535816935806634414676301987529877057851348982882075904385444048051887364272932257954185307058786694266668207054795471059488977397671600662330930147213523815237842479756063779768488541935181538952539770049085955529023947874075807679196418026215350946351748386619592533306777448983139526918678743016775517174039482644255561329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18470556008862988557703739545475444423965128677175939166363785870532112088251744747235091207689863388007473461276626199241483623330942553078354957847963102150587626022484288779724082981313890481989389964121141719950409529608388465285268393483241358510206016871696850890193546933954528638683342969289316676146731764810976200251505801984357161476493772097732088150929187921453097864077844589453865165505883995311570227405417361295051007156208593740792164526804289820642111023469478522267390772894420844566073441874787398284587156991902274930958341130966404738149215911930840995514048645228579964525108161178679618220261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26549712132390048109121648126857984031683246637828138248692235573303719447004913879825681046826091631288007899318307940942050809038967041906955385845691797551574354771750557773695506932787824935028236834968323208651502825056127525603219511408326447071525388800505967081953811068476138195652935799876866436985435200660809432131154788359288933654116289824342057869922543088881028527644998457166512805025489234761878699674702287803927746953530722593079455583945971656168980585552681916428588905321269731891313517020646037685765692391464239121670527398644059309422577849618747669393175528804382923004710899134456028266621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24162624773559861434003494963209316782402099753406844699693824621346663799641342215730666284335136934057110416511680721518240036394111598528033441553735418140331013961351674399519462373017851696528006808781685492578090826181139091306326747519355110652287607482119031648003222174079274816569107851038658262933202666607505680564168580187169752450797071456714742490300895769763565488889149411623034117522999017418509516472248283330010940148735514919423131335561042258094830070398251891741643517489370248902771170337153934416649277211806753374176725767124594632808512834236430592023979937938108523117445431089817911558049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21357500126848034180182216546981898059638955505959809116358462449970036782081084417698195931234600327490987577424294161039167902350817823756379456306069049180476297387064029312245503837856446670225614754911646347389398702812451518140676134068762316552084954918060126788246437036359814795980371739998300136088695121123591837958975109540360252639510083965604559243833977958104911319203653391677898750149181271266743295724740525845762206703939515985783722358459854095625950137450737184779858501511370702240268643219717058782425074608895584688565730068999479340404580256341738184245969463282131900503992195046021966282453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22413712881282578835029494345071271197391544265963843238549925056552838900599392682569594093139800847028184771115761027253153763082296645025612823457905583955182552809064629737105087936576053292058790756759135119307699959700299960628176114049692653802649564575115907273575669517881537631888030489434713283709462841900659234652564131095667716299626404057076754728873480777586129966070682684322249716718986314315226596523019953312115153313277403088913162521536378801589836370335402847873373662674003143709935720018798702650898167686273975808052617779818919688562798787083500793043756723751772091594221613597565429034829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27731398259084823136708305634934734283679414971227720735100107743525993530616238175323981835087960079269710810721504306894846735561569345252130516543273375347121877091766161343235211504364287647456126164643499931172818870496736696285271261215884155998941768636005712247060955270956556165776828785400808114666237502654535639963891698221766721684861302755716254875961901388220533467900990799812521364425357562762722195926557103889914300531325549468133296768204650461542203471858668933398170304072842132409151792725370944591603827737347735825240629911489932356435526753877073912126007003656149052784253168454362817950553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20583570530400209194706705328552461410917063142728327958462577292038635780626305770149125231612163170235789910205023408122186002196177076234060937274591316112071912142181029425251097640773849593845041878786680846950438690893806507341197848596162342043837616306831871003912573737279519479247656461584073606420079260532497012912819943095300686312164807913364899634316700103378334728588995950331631486877621301179300674359176308999119687098013145581514482447129418644796889104400864734168309780800457948416083534755689518406307304811739208394471187141844015024089479264610431070866776134143968010280892298896741927629609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24407252891358478458936767785281932806873458078323535094822133560018353573018981076072685734965410025110444226570131633568162436872328415778596516869641708773905352704330122200688236096843792658214658046523720689252099304510869244305475278806363452062937070071839402020173891443105170851731042902299916172420870974689855160175355580299936424072612868486419569712715276573568154246327813430343693386944329604073812175719661041041974844058357922949529776676884037607836807909717408490827821642147428360744487694792246679615339877167717964122248586616344060529390004252147961715370744168381366691336553131796617986053229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21880834696424096918361301634442882591202447213473804817361523915111097026111396964329263382473948701228625079594372279871017809572343524685646115948779872450376691650452935189184721202566865057637840801179122347455413578823857739040794209986108839445651453717689773829516559479192558861705659592839431614070108248163691191596289212831264008536497840800547607082088869859892564609278318580168097538250491535593247381349776540006237325541823326765635074665940969706921078015563369649677815378866526202530500752258383354259048426279735584665893580867675230896732208300029897966933643585976356312559094411203039540035057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18945154834473067837295964628745785705266113580897666942418541139151730799667330386953984117858832941004711622622974264393993643481946696423272703688729300361498335364789660442020120513201594680270941605768381043152131627343188230007469185427778347894788867899251813128347518349493324515748924145588258936919559659037833505155077751446036826765933942803392839148871752866905968072666903416435617792357553074766497849471286510194247724470814335959123237834867027813519798266656144002996537385804136897467211746148195024770127489132151705280310472147810211134672865436732058374105464174703200635071147526048744839855033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26144384546211359562488814825872715020029081128793896864678859930192021293061723820524753881062721254088584051230005529006893272200251754668994836766133251393987415091019488772254171001650094632362703232024800724530473143274155601739642176616780996291149262204599877865484491552388297367155844524274109340636785185588432867515765600523512165068986292658871697355256128737777318744857763429853955902876344019211605364358954112159374713859463460279879220909761055882730984385274863828265410140209938022365191089274886525922200157279045694438031497302132232233281969493919772171818046042537551184561287482749130170829021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20642170577766635317103340300286836245107316933886872090733179354510839994731463494630917748802734858510422280340414695747173771653333018341727405946434399079486259350216917910612372763464720876351902422528502887570629690571168611961240287014792832828660357329018823363904946370484102019799092881618750956521108390528547421985884627429935197612678527964362110570044558747524818808423197298442902193776920981560877440608631074957578907832115477019111043753778672122820719494123858544323415939310237394957648360063257242511694707731935189616576283270236398264945347536133120637566771151532705027134302251025317533228177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20210715783068801509423008930548796831251873655020706034913816562287681134495622553553805177269179640467861733232233814425819325231510907643762024706443747455293224662114709212166529548702023644873570161141402997778038233945892568815928262324832726156878328168271813801243771534262407217921954703404513192639089714842077337766296379289080713417719515761594533824524504467798761820060575477986798757918411353171954867885788999637882623466192782248148660818757018815757123332314772198788161919578096455045208481762628744662627153095322541709763826241141856677307135104126431446527829538225364982291304918606319059562901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20310963604984192797657037996489743625942882043852312940163782229918253875316596304671292070524792953169723618219091369053758617804793032183675396733396362002341636913607813340093360330387409905942586030381644030052573881395218146228952331173857583378002299523690596561721968051081488963907370151077173342550928059476974796152643592824105295107098670663278134448218771103518289722116882608050083222451621692588939267625912778995305651401070056318718019481241274648477537552052359528294488898145945155632530169110227777356404973911857064410361378855094067390982774130779705235402995654228094865568847920283417355628473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18899799263079947651235886269285715224981667361077978284327443233535855060985174563737988130514838296497386902562271838437151819308796931475966576627912375287769538265979258554850530801693218252650514208467461344444114926096185561165080418485094829351539429424656624866772063239445604437315964578347991236032461339738744204154656696121007636381046547689854964073973404553449799489831187093785657799560560125492861964423441242817789365862187543354392393319364264222244939930203633502679247942539328172096328665532261354116207076776179994465247953391765776972084866603635209460452692579158817259015341697420612908768637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21494377767141843573880968626468237002582986849609146788195704462557850495595035572688019962010700306918073129345817427211861363836354563288026994281200263496635775262843060116995323089353560843054163164646398208868455130402005578920960731099911636496210218806684645021577225966844879500215536097689502222300421045438225113031495871787601979704443291075857979811394482765477029892946529872041032171875718567689679209893506304368032672899559227320854046249159105021645222567512272911212881039476688371268826073641275081325817078584432513712092030701318254103551135638326876245439382634820115180572504621423006512924477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23635988503973851565520136761185132381529124634503563071591913355918466585627409113527589733490339525598368171281333754029308056742408613125121746836004838596556534037367049324892446390543312408654725106539615074753468504266697964099998228730408592392902156162613334188412176344594973497531837262074626974137151310811183019765947334378598549816451507984309890161756658473658144104646562718689872557067946580474445771107996726920535708032801556020552643851764291234202533686490101653907538576960289646810197771596480181453016586889786483924788927792136074141268463700701967118144325782021909592266455870785777329517029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17650647645595862171366008275882552935202822273485829018676143615204093985604392391768955588436300971742177321319382867064454216039664751377044675938002462836007409859539595650520055501121823100708779717395630866475584205955486340097784252427176612350922640025532691322285757935840461049931677269418377190843640000625429539029955538987003787559139440742291346612558801402507640467475395648466006360852705691033075928810796878876269989579372841304017970093907029930287697609017609975817554189549213529434616168173671875553620962298178732331981887936496138340041582904671307654089725963146512846602087280831177278653229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24841899077863591674634008302100854048115771443943164228497762456085444073783547036218176306795437586066404619930881322667601235339462127737127543898368525474301430210717209478509591360288270671351758953967733224743958042793363900550826569045820769097631739010572767171132235870163734794673073373529428792420438560488851739385427752510890697301619271531920129367326516587247056832377063924307198059953629728815763950079291129614000170785245709170305773921505160067243629257445933977484202172418680556924045362207743052337219231346393826756331817949474827568944148713573950317620595505579541603819745704359593914272493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19318765489014765988480768596801067118542876996248456322339508607378972124057936108697858751871483615601111996219268812905878941138109849815316735191043724299301663363200330333612245315062434063053291779972025038700576081088448945537581493897696622347022693878567745078486199072326555481350161272351619026032579388952051112593225301069781120590660843153013209382103887334932076448042933766373617562670099518414827499302041174122041144165738496261377575327652685569871502064830826095275567094252699035942944025962894987668845465706222096716707386888915566316938779047655431858631483490710355993054985099353839830672281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17033063124190967156852683666147258014888891537126588620921414846838485266659665960562457272622818677574312116598592182668362119349782859802816684476478059752357215453220325925848883557613854517459535254661995685222210635889601352241245123979628997571582771466866044822207886900530409037802542405990365825140617600271955901925479968926557015490967679437341741854895369983247028116333922665272152610631296800684652233842989374240375587273185934260788456280881847262483715665965881944623085430982843114068591693709111566718917608658659983034975370466817120694331005846502021732871458717372514850700812311200389929664869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27311611196968245116622818875363227374698046481887391235377071269668431801481515550197925941374740871070345337517836587092814986308336466322625275441961249633233720327891041222862565817090888418716360294248214705944721301083385610059816328748026734691988001202460184793601442048031675906347523114187062362588774322718137040733330037940942713922779789736517322997119166175080774642249365708510211109361796548627670556158251892921934301353022795460211081673558427082187418067001728347458825484470393356637922307489361611144626233563501478801586582995197902558282660062510654865304762438283115390398523423091423239886833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25012177668416625502680777297200532596916059739133549609972515373549134647928885044397383220352292533350436639335023892103992162613764360704660969288073256352791348255941641261713337435684022088517107125007341014541521759583746354149861812829230838118217960237813500897275653069999379418053202885926659229578660468286786731936176298834397329484354218014810510045259459760725425890412612097367212684557491365320530525184472542193018498595352233916039728211151087742547536727063479274407670977297190024527516282259476637530073855689698248499605055648882396600836635181907126675738050641389123304410887665654112823680773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27956949971023509912715048024696554701273473787835487131902137123977566896944372173877041103076279614604116051158296763222975432696926769428744953047878599447987671692228626305513643883537952409960148082037231899128729126295884780472725457616625909416353983810747865224376716499372632596919535518050511562925750396595010966476167618390214671138555585973578595505374118876670452819122325889924378768106759001778657049996291219933193591436695190069422259326201409326572806881596256907467550214398963034055769561256358940416515013872432376485290687996397797472136955781260689379508955515311558377883319775236844157782141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24986941359117652445740970888002843929294650953113816883827065966032063783656553719680642981117161508771099464470001760201946393069866587775749777037994243050586202850870553706687581528210354950868443674038788359236818763171161155367922989925636945487283439092362108660471234725938229199190865583638963643058716910461524733453913742175358973144923481906366010679437420794302737935593611251693648786115963776276555699706883221815867101379975826258813764450770718689213009051023882537193232840909519446025672841520905325172045154007145213389147895604129625588047438450816678413866986769078066634824727109047334555050913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26053800845898298127395450552276622610156214550789670553205438357964134508197624199248361262538427442154241630466461255810302867702310939223279347077270013349165888886949714074636702535327616510089894013152951988819951099369055260491426840046166764035686266008368684002726940300557555627339876210193497542184629952919950808851247829539679622846869053850250538301491049382144120395786724438826196203832218928233218112092704521743856246000174099488465480094085096655557310133648949182094636805080842157741384787895254000081316876772272773980452021676489782067409875222753404802582655989084133635664034459629982508682457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26755564349297947428980763676156147119454614626601689593117429678376158208507659968700066443225668635009748293329375680910794308785323739770831444727575123603142052697696657180287637583081149792488156414529927947895498361270818706206655560360003879116918240679930484724893133378870479617302284871490688818271588369077562214723646429902296720005716195759565638819485330812552352347874982127016139822939253859020721365892721728477615566335409546506483888400815039241313454627981312453940047267213007459530883687043696771309429107150244752050149290514710083436950363764749406980101432011902371143743764037819602030621709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26778175474257763557781141040939966104515427203188717631560980576718316640248901108219743092782496257570658535256534290677913185025654556310409287371019837776402668089644250657244729382236522981130697746331173893554301127220483418321645028116604385098074603798410191988864015573002135840763088101056389241055459720011061733758493296117381986023881437118452849867877307160596521602282862030364761656950507717168932690722536721100484859384948005541438186423709131834869517671935374013204262324405184619543691341924437883331092351687046057763171153986984501525065096394304257052972384321366095325514412455906456834101193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22108357773899699013410323022953733781291609007830339350936285993862217629144997283970848434150565339802153910270680846930391343562171924332331503551463478742060825100663438341743004754067019602230259157687577490721282413187304075811104710300082230779928357951203829267609936805663929733086054908115769464419741285662795547347836166468050458209094620428196165308001491494137016661190433312920398318003077939066457324049922985044746239661091948521485386949832722102251166932446263563581050258439173422905238073957829632108890157456410346442032914458191634756232057214922610251180584787091704808026967949635969149342557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24425854007341822716694748475564649087814718377571562301462858609430690335907249632008659834666206003086119331268691576051209473373624302493400347563237126277994785978452007957666802770580040587959856048388151075769806127869375141214568826633283147752933605427321893954056103918668523994183768945540131514116965280886872307525290417344048062373808491344020684799839696219260894005649739553721896723828029183774604224047199787148254418615820279592366010233432434384489417673391133754989993316907979846594133957617822425948783919411813906761736737840075290320036693392358019961394320994107174531727842582922469930865569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21592016800553298626431897278390061132968319684697822494972449037144206021837826223575808081613768217081295362073091203853364904055481743210651738331536312878973184609518451551535616979313586456409571693490177653475905410585458081899677089934871534714010671441945434382189795887330905489751837665089153285103915758048570525148914358490917709539364595739906658454932016618664160619633666704429076356909065788236594884881435878947684142054397536483570742031743742838055182452587451030331094900370656536680154854294069865106519969645348339205783953971410163692112915992708947529307159572335363002152066899987419479595289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "28938532406703994468431368151977521904237409617854369007443712823800466335326732217457718150471676709522998571896919986598618859874065044770409094228777262463147061454074275449576248030806894298302210244211550326155828343815376642034364944467819121187087801524176266739579563198232764272028189523836170819385026509348431181775790586675848931314391176759864981984584894169518600463032128814099823160433288348751834631606854843367967938554783985104411050863121541723750555946218116635361853267049912585664114338289243883452900794626160186544771810651466085166485480543827425830283809443970789481902010451147225426492237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26348176088127709105619615437630448592306881760107826575218704614711410756765715437803449285881776214539305019771023151956089331957375734587036127604732941843738609026785955065159032232606603113548160590293628932921313118130936989346618774012636187017070617214701920175998107686194481424909999850819089199794466776440928370574861466209809878183953066648777740807640365884091692623173064981970598850030946772899492316470398010859334539207093105051165518857445689786864903742810355405388081397261051414032828761715200415771375342138478999080806407235594754615834667232294839268841945774304083133484430686745889482106017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19464757711510523439943281920841201842739608952548936968057932802872017073628300918634537729606747890779563396200682935025849373679744262030949591145332121721056658357527939624783930653025703706651118417522606232021218023317501961468633146741768803467763190231640730992838617033971904619136895337047659394360691147533302192332612974068156298642938228641151200128800473910705896581692769021115662471124135172719104016897919915701480310673328783216661920490751852350438304643099227769582698699584418851535524361616020715888692504370320536998591271562853708298188851453055346875365644004836280385174798142668960158905201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18658748157165230633338453992036064033207256887335857883049966417878938979675088014390153176304791042596124215601128964260433316899521756129801743152578040409687313916853740867013275144357733747231104708583715688961193020422627368908927183456930076005713523209141666979202720201734622157288582634472505288215271631865400958865230416232925376443157488627264693824980553624011826603436819057896981562840779799900869673576946891081278396001638642352631723279996581351202854937913492443006683923797214071107022432332757523348018385787956194693722504629046352173408719341328890637690925321608213698293736497790107623537341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19284282366979966408235530999288510112951872550350518965672979163362337885831924182099301320623628647334642835909623565669701042894748162549194040096958593916559504291271467041560383637017329858225977525415779347444744481879623994119959127437683303430944397600354889392849565667988944008270719447385243957532769579644851004273708428078664132153070066498164719501545134951174179100231513271053543229495375070651388374887362376246034613609671953771328943048620401952540456017393799761611264182603341909547619179097311009580602152912563494742970753105470761580077501441320875873104273156159183996567506358859000347971341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21516645097099983598795749837075718358551278653698238145968779814043364950585578188748158183620955197548732536611554169295500558793225740875093126665580668224140888981702726365509908050204520388840890463681433405028117357299381085004433098545129186017151669370693656753427529408783276608401077648634652267792918195432730254857132360868881891838607195233796719703958608603742768908965575679549511725377304023437503990908430777411383073380576912886618235539711554410893170019671656189046234658581027958125652787096378735125414329547873422409288493911457099773387669205861952170706985439927549770754006154301664724164393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21443953694677677036080511148151727448982722027491498489682694377665543643651600732291155376373279593624720724502170716576836464174376322100187877620988265622503775938546855098015926171605627241742351208252558002583305261874667969279199504726568603912361536954249117070081637494439901206379335414810998279535137221772311671083630149732713430788059923393605435120480143851443650785903299738871237939122582376628399080696043395339761946611234059624629023813893933829037513790156099259512607959382748261087063105681739561727117744524935469654632094563332816429771289978809431358894335229624527079712381204791506909766777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22798145978049441944654981792068466440754749266593940862430025389666406895560470579576224382031929480345274420236459166332542084691602792151570633405318498096586849456739810445997358624961085275172563078329228686665134588065304979248922159938234295936798411539947534557273863807349123859100006701646022325366933057254085361005295219692669101042685863392806544453220232793573583220689652984958968627670795839689382854964734011710218946651708412108810845693099745215695161770949934233228621593868396259655949668903590305286064258356670173826321163597680815284463854756417717758743200463693303127758294700770163557332709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22047262152987460725707587364776817315224502712986634480487674846808996060050468118290087751115185981264942210959887150623919782515096036207542121642748942212348691073975032574551144475311290630649641504676535832125405481702772009663161541219505221720468389874950665429217097220125464378339117454663489551379064581261360613910264718746728969686990001620404915543326470629349594085874075612872267688069830886769758206619907850634065508860578215440660064607999759645560414291762285408549379626723017465879546242031768593517667749407041274350361201367412067194016887220005711967135429249515357286838672767148647423586689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19832901375055297953942231621099181380029876534795743303906955917296189067323549626353596345056005999026087341007022544398763842653667798668171969792559151195351750135056976049640165470905260556178205078348736338270161275327849595068216099735617314433604018023698081271548662888070075234618575075045596268153818601503726386078345125632133139646878392297919673997524271607006712291619427596905954648881968449775831231661214227167009657747522180813750905558075135951531308551813537057743234744423970490923874500045799127961424351651728801040595266291615445967481310919137389179250812011588387735756097827412493213406181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21877081508902842141234874500356122556184250936139634538483774498278220437142049181838654819784014944458585751781680614118003852987918082457078929911823902066264348970314646762843662581046011028764592614037653449712473686183131406578745909912331155016660349524491954762679623686956859933085693166588220534666678363319927448011568280614509035826400239336121548568645820041366689253961725900828543054502816296780304648079242653238870369038534907570092085906140431148304979454195354843935609798480783889137115538419295008663187325938748170864797682057285808548391408598061783495276868978770781094709020117556648094754817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "29483142234468861761130383856560498312233356258883838402555814067623158769243808634579917398425877744912506348869924072261007335594245928565885887691842192462613970228951884267065139868911581883159626136566474104200101093838585179397447458024155611539809266914186068269507762600995107130510201231138499829407280535460746262147369145549741338279962803539154378201326519646103086534607575104581036610976980265154080499213876643291908484919732015036645605185785299938008611183182845171215700591411553164231724448860355526081270341658627239362589842643070783098756652092650329815387459004794215444278735664219690324749413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "28209677303236381719666136104456290616999690660374558910224450196647194770061639878616318978075025861893739802258051969545105043287692900770165031568580411676015799675909318491415747159607268455083275017242417968484898761053515698823966680021605475521751722948311115190710079917440963014592004953314192685886127661075789841592834732178579123573793687236022695581353977388050754081481059885177759021905157783958878389495931013241840534484258721119712136159011260353614908110936280848279310126056943001740537761589421615001973878740544495176946278597724712222829800096971941452512583660284459164007920482675291371465809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27333181051830410482701773230521719486365644433075127626654807235841870008575381308332182045354539969614268594499493227218463026943447373262597143807502375411628170826879398698140050419767480303241667680689254075845330381403820110212811312965190533251042201025102885298581910916750305283414244407952254028074716676991491420123103621470675102448038221606200788517021533835010970238006133508854795069585742129794716514120309361657949840777091153497983703760060696562373618447781822337543408371943463149132085439250998421097811324346469920523709821355965611714297026063094767600612558076690521021153983970507650237639429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18050570040688795857656458618468626339185060673951479759087867063219027291380010189259766953319526968126089290779042155630658457020044534141595568986164348098489107218804037453814181509921645418321772409919361845206947747547699041806978511042650437034210581490655842019951946614018509336870742470793582000326346860012058790582503176995459025608863109597438377919190870612942112017470178664685164760422211555091219527212640435304396941512351559359631921508976554459952476890588764197655626729357257615672732905948104461903530916222530261398152013209230704455392743238757470578595947937456916786478411516130146192212681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18225988128425446206813945018981943460577603029665710669814654624089387174463904021287356760340453458914609608395715222629368705974353663857406227010082661761466599616095826599038928042945736997106041169027834589605951472695141468664903707366429300531527564969145022253959678235394500152267722450017128461445064178135096595262812395052714915754967819939704863122156988870735720451052664050084058208625649467430482547752845584667558063393502261222619572992753304740931575340013795311753562061365284696785914234287472428874068399524838486867696468645334573631528098523983617305094750851560249272720379366780400654641437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19763135389279523789305891633765857664565328792402072698281308318613772108696465512413721172508241031354103744765058535057841223133771956254371156808518343457294544436225168940712539278749687168039733134114634985707105141978618406414716589903669641673525427823627138663775682688671262723881284473791942344973697245942207242685798860018538307269447033077252974437418831348038492674628726632036868199029162371080601990740379615863448429454292189927278084447801940095002866233077029123436867089449014326358297484693107426154222423524617490878572056080264074914118896625463432314783229363653999543081681544972456562364833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21016209179568683968960996913601610486082812537793837629497638662349310320004825181852350913497978969407793609486771761276192434055529444223749890773892219901277553373279323015977744057654761198883151018650577888812646711768083865682728185957468167463957298984778779102341855869601832597707421058405898375683393100377724039739563635955863454565903158760924060003027927662605006873904303381765915076108529824952018031908997552250984115330678827788063077935543248737341033789591020637449030785454761523049052141325330038454995166783408891006395162858802383955805845250244860326448355639127652501549071263846578770878041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21599758949977115721823415882312592669201998428808691235588043716682559326107312302444889220168026450574027256667773015538380378852862752840241351673849592665642723506281830813000692519141024598975651203589266862076395972744514788498341496343749796280793950560462253338810231183910520629336934002340143867020572007178600782863191083371957957043943341767789056361211094354312406159433990874183913008483420697384635362510250694838278932039731016255014758873863298912796186538718936681420840151210665091222216992002508069442416306009870456151055901213679348949126069115086476708594893449028456932481277671358426295795421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18466427407202985482308638441129161479156813473314836056933399193516571780259813339186795441238354343666391952001604893349414980148495938472055183072172513701314637549683611358077121485972422696098465323838608920980094704745612471856960176438448203271803047742938132368110557681265172373848316981306867583818423208798922760115046395590107437076988606898244179403614725782008720380115057883833896925462516565089425870966591314986237419566059794034508371672532398496264306517691827605020613444474135423832910781902311050358553356756630908703361623170607343550099137140309995882748284548155846454119330678968877300757709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25322885265616046158985046168947701925999561547928784742066502666785074162959799748090415192106606059562409317671501377369389448280266492628644199956572123517786358123701217193900135088699433575281301949992244071585013835163059194705524645100595110130693966486378145679973907382834171751782487024216791091626110185019940150263529294497641628369699827633824388789036120805925509804133256063020883819522963942077007315286384675676361508892998869085069906276723147093928060932332061398374940053918823473727264154903996124700865112360055265519941553884329356631714707807558992317210594108010727019148744361634787382383309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23574072330806589102731076544627204078472419347981707518130257027862317735454714384713203110396906770587599961855831016092987153765678670270059110312965060620498997588356102486765868527743591490842331833531049901019635640155746184644371249935396003391407970539727024032279881115772516878709899523622528029357989277736225690175090829421550786363399376142710360677236490533787656894620156976811102103745033545877647777172181225817863782497558085271803501936220773982830832037079998843156245619021865853953590316419847795120305224543903207787335446543355690889354610707209812245608763214072799893784210834943238979436081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22452664044702098930521308798967382975444367228932557571491328679987284437032536925634868910680305509234006962058535534220562753621495970019481003743565255831558244881748337216447984620983335556017262686620113467369364738387532913171711975360528239778337415793056603908829499609578896410729828628664164031830707997665966428832195588754988048258626848769927134697816845035636323400238588865227043835987276225869868232767865774700169337681725446429155056048668899887515868753968246061392794254127047990708207369897041920118297623964072412675501045686727757330340968009819985457358620227154694972923880450510123815487573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17040422320285142717483246135628780491607452309471364058122417006958389289470270275974296904010027504384426344101807943464797580028009557563240886073990663887420124223463862817674450754862718251089329716983704511004000804792310525169948323234024110706920867723794620253205520544055549707923683896060409082376871233130398733597700967190561441123122227548536005857318412981723008866667726305129076386286117878334010682353931845575374906155986425624708739728386312317445919131330566746936925328400691278701093802787439358265550782224952105859070266087216049920272538996410801959984608525080210287635901158968496135436797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21850640328462142997245484780636729376738186529005100657985975799130243030854713754720756634714356243199876518269944200422272151440599139711732417878435546698646620873220275711441713475745696747591099923837744835455341304862117658491541656635898101719157400491863248591717809803991112667054031459431615005732907760920545923236762654965214070379153801617097953647773024317630042253961062628373476463302149309336985875065171182616487389237629604293666477039220091191051727420659247072490643849047954587837014812622683131274817811778133903823959280876784120599345787225534194042626804011403856154998457303263397391202917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27285541787801107473232249581127543150812125684898259719882854515113590691658538101800026536722933951321896089028309665032258848596252954447695983240187573536041983843633471866693309042339673903967625011217880046151390683803632986404813342426836997746150536451116546973188701740151994189533671267362454602205088825036803668712395331248139431089456667132058518768549605735429955087000336733220089674078627706176977076765066287530318966008820209431094931743726202747504509373781097142189836682144498536919776277764231858948489920156349433461456398842560042919902767272373084105067896293341612283256170200309831449526681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20094567573882931007326521382315622419157326083666913856060228951324718322397132963468781313584997692358156046619049910339232840624805181183936653943239816432620292795764396959067598379439728971504041096003721037498537778614719266139908497451865551685484925581759320754034931793029742274537186819906528747122708069887402614730052724398498667045180702038586316278700616821725860250716786613662628271048519048724645953994277756139238786118765255306218577082246741080860719071754853254267453239587030659921956729082124277866492638603953916279192485010291294381879901588686874436379390719540942367119284583017128433322169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27780993704678630156384145719782506087755907724265553018839144242683338226622323142776223084677574896120835999589154826692350782083679021610095557572176385639820512515332951478945847600215380038589313768573358450666381646204843342810868959868783876777690852378238594458958303310785060193421843338959670582460601214078369744024525331155799776322271909099907902858932718207658931818419943483186401972288004179097046544476131574263104988583592917135713816149621330164404774639703228619567722675281789326094970778815615631896743413030293488306184237462495910203291890013022737517112221661920759570770939249882628856974969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21728576028122175635610486637513178437073891067333517127037442551025541968209235046882940928541769109213537810890419103686185035245780095042872589280419873285368162625546142956081308004507535278104160968373527705325411439176731891014103815693452520228367458395226844806625019934191907507178965478478678488284918381189569342176649218597806493909007574392128092376351036266661238539684271354896864030546909251179548845389320378200168303632557074298642545478414701275503515362689939574903621685147148428222231358329896858570181805157886857327970645554910572623722298253082368004464527998702392411872420724069004751240793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20339306254624582805469535463387357377555904298749161439662324635594207588263341010237457870589491357758382364761204982036179668551861328035477827069738105414274526247108542169651176664433112099842460326810838226868182931430392198860620735191764935122149855808631398340963950654332683016665232876270396605307677985715223675479081026630070449125814231750747898398846783465347523351831097923292136014800694374175516987285091801005645387460857984746564599010356016736685765661486567086311701632157271905522447209341722274894098369577073699515956765879474429216838909877203495631867762996167622238346492638309197285865157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26816984925043204816812779098236359930639548531928039011018922146910405996301399550660728720543685610650710666837730121810462211910029966057680862482260160670188408238527398430597754348967462619501094918811971718553967587143935246321505427267533456057401123475835670381490359793214365446262972003687144465325487506274917015418002483168909092264503393314712694318952234508090598899421188243185772924482132975691138155650400719941735444168847718692883233553320902837828239270663029999627633536050477118374672784158937538631993572245604129972570200346952449432014948646976035633339397418696609860660748155507028125303933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19575105902173436197497636515417504192690727043627006283453482384630115303551304244481205089464394051963740733285201967502564350267799339098569525732291528480169253359312810566055681862997513340367306926699191457889671705992903512369321369161644999207148885536758780279568234551648461440867706194274893449374682488407953114725850628888141905857564965944312000682602096219938255964748640014229853534290832998283611608392826088052490914463597207157347439690000967099115657783462665187241314116311376682531804309167463116495966337656219261879997206858329159674465720456715895355671877894496278235172312400664535714693989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17854429506898254836321487994937707857465785020567901750612710046221232518226332831324661439453224916911628768643956159785582703461778253337038030340107013200232441477862014470256044015972744646336932404619172585073724893226295201067252481268125811081472211506794849605221814190888685157223676289481479355638453562891797763020678536749748782537305475463011940324837606535783547897815968488834544334046858941503116974062122178455694706790044201230530986438627750819297740114274497286361009175728319777567174832051284893426735113870127681848532992664198035057760008865690636107017496681106676866430838990485952126324597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21147607532692166143906310140015686431928380041244028449242884585153349671054105603479710359425428092557592981437773596461501255851139299242612358141801838101999561950627027924404531058781041789558579441849499644431431225338417855597762411202733741503012146076803979754683576938438865605259636552976877356045660007943540391044913706373827369444774282346527807873412074005318050149661103754935061676777046642619895490783314533213722539254885533941573047198547728667891459379698734353835220498959595949537384700409503394500919160073094001978043118559037311808675693885306775034093093386392590661852160050004465779030893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18698851649776703875089428465068115251770749227394538900429440823766755089858136524640902762665713380714118399538267890796203674269544673295245580589013654749533589072932912440682296974280186279683331824126789165762518842771525332555135889032861113919568961475778246317333523349759680794415539938330026781118971953806733393199202440552372759412093366389886062644770580252210168720201638008677892842253733718812472700079760368257240866819695564379044041192001955179121602818374858746012135077045449668007533529989190071895441043443826199423370322513330595999966481939683699881239738940072825750452836939502230744209661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23772284335834128390528180802887143500166450723678215498030491390066834515365736831208161470212883874954282921839641285594286116060389048530387303249993941930205233364227315927082097874698213094456154733420030885659914107541021497085710001928560533240614496468877705522875427514350844834694571483024259758777265381093585492185531097204159001076643132681542627172512178155865901084296197588198541225155867572397512279518448860596739428411909263233000973929115138606145995271931382034133277555087963941566482536974450338602603206897910095058968885514544641157888764003312923816337502352003017123926011906563937136414969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22378915139339049518036994992807481349405073340459710958240550769793251815181519922398969184885284852872026940510069152828222450811947117165563694532203244435619623880251000599350198483918417732769682823005138709976453473969407353359159494400866941162657611943535860433717964519000174369044472130496361635998085178473945016324357290501957671952507986708215845804828216148887557271258574270006888894764325289182072557278572098612170435735290157682348767978422543581169392798667756056668262228872091776769783354447433749822630796441837863090620656649165820303400727056167935293906264360112878409261684515382050225351497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27280169299548132591661543086863876490300432021166052861532320123085319299583203688343354143688213190383258246394001524782268387001049945555742642463925687038913589565171692699896446885134444934781839366092735177702838133560799809296887567151536641396050184195782792017757738267534889808373663618954873117374912156542761704534574270836405030954867065999716711505931279759212617363503611342014933519466955883426061614015960607466729949803515985489421817138332445526016461892141178890006244580797873251548012241452010804771434753989496769599430483658969763285830683731061664020320198682436318689008314949173309644993077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18361802162398203039088611546027033227610537021761999050518552206142710790837379440724309529501539386741953752601705026072608340505462653729220481732911161868816059169319014967890620811688171672397884170569069164148176176912045184196413996870726048499676923531239190204903723520473261906272579344412972034995230506308980219176327231360590776621407018933430102188541045737808125455495890121904771183847254362900753751630987501966132146967575879220670500088760917760089601202844702624623990399896237327863767908734408928221391615459443817864393817417670610619183697023844143287586180739410391929427635503686636194322597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24060787698759185228866589392284172891540148725516965199622717434224967583216325074768888477846106855501405486788471290953354565431672861893411934639120137941221916038401297986183164815100401336429654640289038970953235442176446134382862416779502136349373704281811173048724817071850933845205281047541501123902058357548451571295992102557873217283265756304914459108355419619811201683772567119289841710828680205536394985065684333778943936755205940646955294957045144469471121872626330045753963360115305925698366475231396378202020249578441825257234850432760821223290109067946953699342416360916747546565819505210613283237157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "29639172547358241301497742327757784723172957508515358628865326078325407527150873697217817234023669621851665708851797058783828792027468289348241665215386679496288728154144915977188569016724123971158135835472564579811492534560945635151294755205829242354633751938129638269497895210506838140564455575118549263104605743952001744242798691381227401038655695372267363626670703646455699285374506071447646769549689613081474678064467388226527031000352696365770179078723149155109164329853046774763939896971432128312327761627417803695458450108311700646069954589388660778410403132471958804053005525352201947132717703534857042187309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20280206633756161111383744049561822325006538966986146597273618268492190010369987177392912337857632668180930806106019294203130113362631142005702407652528633421331582857241190191970550501968484203552453906685109689194986801984450746853862426188708520627611014507828080204784375977623714411535708980312338946073015556100998296429671216246259238400780396020575705611651025678821760406491655872834018048162391273693428613088040769874063992106432396632190910519190834324951543503059370693332295130891201608596615976470103737330150871551649996366383617198250988292107374331234663413704202827183061068280557430725695840176797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18570994064485801724080228341037458013475434901310867081869372574980185000787982231138205951527685479418911157966563655218884284461533680353512418471626907493007348862210194915173948044781673112447277069004639110054721415368432912211497275211637541997893649344306031731537409715025406792182756583479664096219743468547483494957545044678423814269162075780206253751276407339141430319140452048244454224852247636851951049129549137494677989004650309686872027065068613581230362378032862076944049300826022075056204347440460352131498963524143695623800797616794582608249613427623959064967192080066118934593098832176031604669517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20053601020116146825837059839655963463195954385826300409893885107465964397384814740312410323349468101525828150785074633496934813757153389749512393699511161276026141242809994596744890565178326514555635464147076583969812156728356195077027986303949543178740589366238902680272016839528473158898193585138248968855989876389914498427612727210407240153380391491819012508840388255626814938796504425173329505135420557707019248191364363416286034988370554543323729849298459136718274892417021641114500522822487073794655235555256707498342915012330830114545851918709970303057898087629638356320322050384915087333955321963082057539389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18888894096999615522231489235834174034926248276053355904208611488812146142657014706510021052223787948218806934577940584921694823430190161820671204079976800365839555325087017253991190738707143202279062346531581549241162987002960433453509681932359779288340218465677742221532515362905487745947553367797840156282159885660726690959427589521876612712617306663384518384719658113371043121259257812812379534457878649736624934609660394142582326707134687235444001572541835663340925756219714483160802894882854071959024520887847840657661552983785629198102313856873764481158762109851993616016950765121756932703824841620086736399601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25265349364393398876880755696034079060427027160082324966509219989789013680844210384109466904106865505619361755403793844957676455727472841427107855651921066419532723609176120886311914197374079355800224389095522886053456336023851555900995795323741351653398384866034645906338986180145448441952818077812010258972274831103063951728416052111807316794711896869136662284366248171155873644365443955221225510345448068388262856200901324464732299151407856380350756667390501143229488546809432946155618295857247661159612029749263850123356883239502942974863962262680411318034776914979211072058503793883871940254619184101831918725769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18974017713967193141068831052715281751025666369936650318254347727122787418144028753261239055358806571394452947158983403975441172902263248240955764679604714554171433438862886984253733174932489111764920159862005382737024148273427523282777138328653559914599207533238223928585880064203226692071793509359348041004459115801804038284942030415044237443935017466323528493951188313147642461243288098695925124062942706144811756191609992177490449620187994612660201800985026375157710942298875360963206257712980688321232787451650363318167459278872117232312877609378700518835492002096789686143325097977154466647213329494339427787377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20403917840493282684092972958868570541374457999243304688231079678173028678225634209687573907571246901307638025547587533476939488810243005519632773507240118991888185813073504962623188783935444288420411228550672077618097024577876640016320264984481793004780262806731665933503883134548891503598349211341300577366091714597933526376683992310033694638052552536758121114470601449021335125923034469410401358823750462739661423655439522342462042131813652929240504401544551145193934150513501451140200914609216382950761073176145932312675587874315538846340438862078314701260250470762497600609611215920797877568427123063010274303841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20276650389203075117934719640792621455912694022421599075877405989842428648603140239407151143176981800578655436509999239250743297289753043146965449204325005503652086307991670633936075884499313888582651394269074010672100108078495883117241062285011577959772328188765743401080164271822703903991901954786642364314174043505161439164106778516605624434105211445607402297734204265788122034376044308322079994586457784260764090358044197605563661408957819348334406797627058066836617103766150553730417820997047868505138663880056237052190123872189754152397539198727213287492333535616044876151188704457175025854776144024971779949157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22445935398737359575583422795767769798603226169088703811726507967303686199263078250450076765692561668326173559421437096715968216749314857088524350033425263600240461922204281030514340503510424531602505497257310498664272714990452648756701574168245523370048825483782083163516865939637618046036027230256768442390255136067346129234463724461531093797041340174483656024682585143355066006747708367675446161327127944148845701191829219644485898471924190637106972788946015916714538468658170241642534128945953608165918821172722053665745503807945634546094610806567579569949134703456893632231814097618542930241925813989203271996473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18408421984833624539548539217857792771881536554632354682656852345159215675945555972891376729280550260058939588525242617252013499684638938063631773727805476053289621681900104353938998518989205702965455658505563283784711049223225541737887078339581504311592372611174618373613968584680815746848791562335010338176081664592896953473396560230299244821257228792960369334047862511960123917320450816190879318776877080362474328375969991212508397149045792769518740518482534748709392493703928002863424316382846170916711709394238096101605749182016990212842671042526956543135972215047410192853045367924044050572869270532662351891613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27421126718969056902817418632972553999889718090286176717199681785018190473910203378472951939297542435934264830741123264061393393704684550420361310094154234483515809055238751892482100962436356476690724021352922284654781423805419037192961111550194444657330689773793655034615753591593950985653645879500048447093505237333790194394890950908333641897404628853922623883230627427719208236799193680261871603236911825451978431502344717164933120859738594058058776781873345907226472707916334225811698235362325187047623437135232571558535931052689301133261875871767663566168007677304276774201100211616699645946761621759436119607013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22270709812521962558834085640470730885332576033615267114255276320011861270753049938212327219178463128393978036922921214130887489713461013010167481048273027634067391109817066603058094143561790277450313593514973564772986978082443149545819437691521850815733108283180083292059928850199416550458364002161464163177539117851299850615531202228975173829023191878414331752958191559744766100588347965977293405162495351064384688248161655912450369719404000880959858041506629080958251873149664815625189843756350029597228668226344078349450223380743343733177331917823890252835736507449575823182458517795062160544032625362474631454017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23225706437338324954318006270021201160948301457447153655524337033286763230667571682061061511728263666674703979124819094292668862511118466401728189189331065717703287214194926424273470944935840416151969586544324581848467047598869078962950156717804632385724552138224314633301979401659650819141130143081414262810810183431169959305997790607039236828636479158900824802836580967160579575108392186845345111162335608664540683049919003006561486727379827920294126546688328067081853974717916858745568905574139994989882339355125592039157363723837045031587768748296114916035877596684010597227544270805731036737118426710647234654389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21846176878142126299278460788087154634734521665496029068927601726996184773969319728273830045093090598055971545633819802362059710430172121770173151204502398130379355952688464847666573383036415033662699261302401509168787085285529239305259302641581289101053972457868857417425604823298275525984060163599883519864845160400793328461136943023292540441758128642436845960104453499490199224676442035504496519936826619844941916379906246136433442350381240487202996954148421510839445505418174750259790608503582245722574050277014132542736590026573340401913755402450470624632901800534855571085296688882047622294582501682062156303193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18910056734383064324802570727459079577027345364712013022715553439411663860909479002839182776754506729509741662963525324408376240480183366691176991854496402190797701420751910542553912202232445381822371123478998123698603825079405109539118383589448808235986621573471788899985424305594784251747886056243966820365915273576139224641353708934321666926530900647076846835077784812076923727950065595492335423279214515312577986745720646509111396077773117472522976623557382676393826762690332477257757737955194752369506449102627574059330272596464686103593102153448077689034937466169037960000189774011186439854080708994739707766537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17675524311288564919643368396550755481125297338232203752856447087644828362735507995529168227070374794378571769755979543903393917491295957148419418703999484125269008675407468409911675138044784018227302388972067795550698377814238401613743414658868566579073683751904777211958369879933282200960102923910224749129003353779988113535467308077153544687878882863764337768916141804541854456927167424199406829225943869862459606975738229261129077770045999937002150032853710136585029132266991712361221188169368760125458182375130762721382808061205796188452905681582209215987318026745700063018040703108384251868331045913667673577081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27222666174452186248661107570638144682722096486469011896719029649610333817910220622908246946653514980354650033508922274796039951310128167085450071272384042664020593565513640412124737433911757325627913480461348752319734761660062637767808705932477307857201037438782177020188869930827114168945754521087089482944335420748691169180878390910730232486392023611058657873708160644377910087404000652378524556057048807916978451579791391973382075604245399397166476086051864690036688289102451384940674019261911465042562990156984063444042765901485326920865344356982683948527104842455754052631101255414195595950216402796183005601913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24161768745057379949359172061553183339390886408361561516863416000299414597124232948149675898134577933184572668575081445972990318782605093107207196569001652063172989516961768126794623736817031554773348462995061083077890269389109097469877172380683311169623412681857460707254010763262887144185696352085277606438500579131281631424265469484505741956815131599258123007529928543746723519398946493256178031410965701686347446344320103591778546518408321840330014573987427956661254449364387891406211909892744318846738318329050237421596949440806894108718409697089843612062742832570996410168092049692844966929355730131066694498533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27350331480612528139261884463440939865050328553157979346788132843768123551684442311146524621310711390042797407642006407627229962196446287996252884796106132609144373674557360447595059933769848965297859926300398020381136292143459657040999755638294490519417978180326546984831208156593517325146807692002118069858785705986787553748383771153774859415839859057831235013146253890311149215618733350594307045268667643901699846207416797710822033775827821531954651666623659296009480634064891243375074261639735549873438080930034416888086154546012704358189914539318112611636160082052051394759167235543912047824313387329955640770701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20012508248080422876723180638927924552603407211610179843364140915893075765381696759560237867440298875946952190242587626262651768659266533766524987609179421851219370916005099154798969479766218926564526564878400402936880741856809253134741202856626893646142652401089820617592149102351650140829397023051352569360925712217067636997261678836849207701066529222321313191833848218048224232525678648484000046473375773119955381468671590351271311389497431925967191679907723215597181620468615307235549350223470655382966492830779393947624148397923771913654481571009584121732643790049310383496111013735795463586878542558103621833713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24265508705261572449515177186243869415434734346642686465495161853622019463394995651061704681664647319255084745175560250930900013757356712824644090056582146009208652705976631265332434321621126011774035312030615621958301588391887696907478823395896013130387658302639983569994735402471803071512790901066848522973176365715620233086829211943183923440496686660637874478097626856884592750002007264578523144950714532682875258522838084506957906051183781711615978811091321023714140686469450738256792062023811590976834490274652565812188472941599130873152442608908873375977873095447244885333209254884342177199147587643471156081933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26620462428394469825722780777824653424167983927321483332587351056536066533510947268366472826050038797563954453487094925868688979719443288553793190087924504253521365992645723109433941491482443518512055322846013055591975538113453460440112273045672942823734924489319255765204142142062388495345882775910414159948814852975124579582306093393787092907578721847796359203455814661061264314118848684996713617984661040189923034796826008863546904027176218061722177732966018511403545179684246492605690998912029851190802306028365724683699872081154398653047217580176418767847963694583406901199584385689031820582034179542728580147097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25298087553733064938431824452904560110132864022738284811748397916211698541486114896896161766417432596306905242150197103150786984695694101702854102145706557582106711842212100638612800568443515362500680412857153746461817014895667432180597204999848313925258091923111818605840476959266854872756619741349986428373118812897339252994711012851465785654516580061229814463183810636345588981919078935968413762170891849983466838295299974312995397846758020844907161012884527215448242487938232935099083192028439551806407208710433433273945402639879406763198783260820674972776223167654279753537579811192215253956116260124406788081413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21046941458921459876711510208662751673840414039062640432881265110748832128164048817330940942003482715782940044699302608669622595958758881355788356252535694954651309971838303869057194949778420251702177817694135178537680910806496005967966548081547271919759803373817046441833110407074771079973429765504211899174388710232742811764201552162074162777778604762735578494531009194185075212402075497173200372553835902290562487166261857408626243221109022795244965575426821863938009790969105773423246553911557305292892166160824533967960062745066785601793997473450631919224295528767195004816838685483225181744269311403634739448301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20487887599799644733439267493306730021802617703693578868818983163569641455966282016945507938111162293189273278245619510447751557914975489778816618130792696637958500229155766805744738528102957133665482186332136382809726213233348452006593477505138336541753224029832619603524589271415200264185052002901856861004891003367012547822832714815540950840514068717059575898547829495750695711593246419000400071313551482888687580270702185414085048988728485395732432758637046777548446709181399178023250360747149599746064146294964495685578419252203986066615203760156027219254627920207938890783568601316447323676220320419659166513757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17755043184743877562295434294735936863270778930011317663533533599067533035368643119393185641244892938265052708691591762487806958330687078777901057026595894156878361804530592925793237228805857083471235187863876601321298240778589307693339535505835211041327995433855991218391881270719358595514172955617423320728038279994524637554691694248204493814658076689121219397275784443433867155257024195310979908536229652289516868964435836681128335878141596263453079178947095150014239248229337290540117901479419999622245720081492917869434014487249035089146058341793237552347191245525627720955897778016771998036953485682916058739253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25469214893900166101392054160705464562877598362802514721596732324683856421919793284097825591891594306776748564869212706264948527584771098078583699175828942980381416408362724109284455730834715439058839864742969911130553038753184468274718297239337751255296770318469997322251107662080399925026587515509290240712093583412679789846834163358757966879659717775598507398691013770249635459223772260281166556935182331724395144563534570041969258073635608480558351163850650236797642881331808818412986227080124816199885309586911297614126652716567005962856382110491640719427700596177863010596793987944640061000683845486095033271257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17128685243409392250406900782855583806980468645822864742791570921275718237761109007477897229363556116511709376211002524337564475707742320458547274604329988530947079826552069449179563465196146749693981602399850620253410650810537516648788459331965703707501119356754958325799086742650201977986111418451059304487088540942311455152503640740638443122383491889504204796145870542513457171336553742521184962683417403685892435771661994450486267742792393980913519978818411180727528430472520460243843757305727834723940098414206778855780421570344860652751952585884926848911043455354915797244356217583699057273271842013948028164597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25761378929865297797869136907744060069070942056215096412713802313754846733657934934813632134613146173169476543312472951614842553143332767499665651881197493935966816692912528420197545001560120853437255486760623866011127057961485531861996277783275949395900388537080008683966230354433041752130660622966462071668983278358430244186267786333476699372051014962720609343112699405284475766815263528252706151915436460310287752414141403722039761749877331561253215740931169039164384738441769832623765753764499782952167381403188960942447140738300974864442656976869830684984692491986535260426873156627934944710084059771241129623997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22224962187898307965233451404933337273799165161985880603494854336055241480251285299401189107039017855102853005150658757348073149090550365039887755105961569195783750841711382450120873487309451884791606046877557990134341806668440764354525028129046083945880866013390411828796308705853662658258166880614784853495669300735323043903269701719302073753140675196477040303307844997117779329094878013535024409626039952952147706914984418098048074403353156364309591350306253195216055864640845407729057203017017077620730935726400361453212611193831442328087263422909042888744053795875873614468849295690415285689162515481089004079861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17711954678942865132900355722670366113522281695481230616023305747862430517935839595415533455644977828906879964197736750644598561417835169390658437948725513656699163977477824365718193731160894365573307727721707732461076693693657584288360851384700035336852531742301158642963276538156835410352681464902046993100258984991804190473594418625726179052114024289911777711402931718824320400978984543985265868419495928989816913585760929956497256109419549943879029196416089394108340320406109200076826246229599975459861588635273347803071537686608358232047193055403450106093409368809393390032822394853537130488544206013750882440397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20436410794594467445150103513574092583907441410597278866024939268361209428077565253028660558445276418886008914867383061497551376666716759811074306743111701968168843287744380470349083068135834869190419798389209897198230856873769192575746056957165845780721022062345818167685734597840716730492060129140450641369117478621676539438370164460617142363295479865876705504628444045706055850874601415767672242766885030876110680451678834342606995359354321856831980585862633787606419712514795560181416834039358543157288423756418785553493404900209509435168357601933613100624629214925812575443340814110645791263939054538368512771049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24734515997402566250636186767713468895617366290149907121542774974369740778160558952501998790413239681121078125522141469920813708693899976174094268317057238368841100131715415954398078197229802830973815644474186616569890464416289467405673899658262745599567563050684562210042546414502176294965071138382781774093061969527969414576920045654402282997095861178462141239029460691638483937700827289297785905318247465621208671508876178551463615515021623571580661038722013907695209439600872895569340208290021291375092687953317916630005318138743531391375384703465343910797810545706881131932053469035240600234484995780888307427817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21152975512807397071008882857145366599224791801665208194663053377041178632330098697914616683435839327090301361549829150661373181693548736503273767551034843080652008937241997498291116620763707949026841462699563078664456024226883218067981726008704794440158254536749779497943458005421652544982261821768509591567331165260368805496540657292343161985612939661973416809926905753456212219355346413637280802920111485215880454565245314985414313493985430024321526614783363875347730011823232956966028275188886808602794675900751733228056734510931366305673769074930811451376921482847447155993131451807837658028969117930712526606937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27510063970728297166433656119893359755407114061193694995497940707006069726304178976744331853462057329934271927182517706310430826587107093154770803598447620890013421110340549933380872085062923020819246644861607096808190763613232020932312257499894911994698780443083238017903161169771091202630099348983644738881720862125873450288567258699760908231625651678935434352683205787507343848414550286104148689054000468190937214176219439584164723931185146086042530517841009543557461185684884517664804630165072574652015804846446160888371951323916003537348503289653129576407810035505042567308339999107580044916624800199858552502849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27222303498315957882649362297145211903314696197622987328570426282716651375937380894247739784256841931380549533165995499630960395415396646750642368410171889738590847067875940104822491021051385174684101466573709963493800227137139618184287816461940729607367454371254191914866307486770951257536435711116521431137663021250373451332421854531180041208146820237236115013761265290967127868446578415794795049228063793581571902475825993094029442519213184233942344007384037376845698637217848927374646176729506688720288124152953768983075995704820997892924782845387080109185632908029114545798421048285853168955067712331114958921317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27450140455371171826911211656331098479025487397976504758530304077714833419017043745828992663810010054877938457283775933201480453607648863434175838759921875343949723406085536453333131251668913280978032562145648354226901477564864079600657887010206025907081831122814160907371599666312077753866544260921294772567319719229825849764827219747564360282264335775244781260926558130321979995379581636318553191244432173974337648980805742701400434781780154997805041622001417507015935240606351703724264961240496066122714728336958697853081146651387839045862640408798084920471377857296579638326705473407939891284859154060763256722589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26079546213749098112433380278316817634777581575425432158333764868494454521753891842987183229740999986976672746671844958531411374871237217587943411384253280992836362291115480320341827793436284361358210965135230546099744396578998787288909648757985964950217137233229919632424472362006810791585490052329110760942865909539887489276829389118176425430309778153179797530326152947153652489540648645760745793456542896744373441574843065521118935615480941335932847914313167502302942194223157542416314325924555637218139907869038392930000577951770448096057459264518402824926951685985293278413481914186019192680890694592541009986593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23563338178174433669963948134856515970304197583193107228824256096708037581826632650889149777225565339313890508897463205759288771095542692467363089181068534903282618457387996475718448038245130899133983220084914832943391204043385544595960904478269412444562646886233040424479584799656033472198604354870950963338691611424048660793047755370588823642547962244215868107995744659547124593868180836984701083107988548707221237724825317668374778400813776318511730562076402094627771677409037880694700008800088647490330174107647864084003993052794408389602609428413020365508713718133602680136230275119350737441457209088875318195461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18706797415692538178668767985000856516735352691056898072664344142752571140982987288677067971589536084791710050205468803898226967569500846485845384589883044581755603764966626939210412804889240646342913105444635701655024999236718427355517290560681789248353627310106961103554884031555561511072337897942704568313312715861750734407295548800827630914667055499002544996937671105755020302946449733446930184831768210890027490442827036588169729023424882675005241665822940566854711830789783906796056162099427845939106922290034358838657444328344225608922265676213559333091883510589657087566979121105852044654064562709643623001837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21776134013504203807733711238845535669380038563534044343267262137896726919588079657770734633885433164408685740762046539075720175661200464325863515041063142718900180255887085716762220148007761183040032342615024865386480930955488287517167175158222489829664980187165281839853718192383686647962305541555467144760265309039838315232812179390245644203110149212458889903509343296499402177728389690090223215177195628357026043188218381739067070351026834225078742169662011578460815687255539514817735644166171416478152945961081009380365756101957383682069324727296529285271316496268153180709734399617883171268225923141136046526221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21610435660205758244482866305457951038294848702132819229324960240553165289879032249817587173713910127960909940558102934438880953357052385826848123463917700540263402836992672528911823776790339938518084125593338638905381955446784608347521762067064683276765412547734474231592241645735264788729703723848727309308632783553207231410340105891414833670244389507908411704261073936503527495774717697580075897153433622080129228332186068044124742889641596379113696378880684204697826349506230214225438774418736515343732571530472030136079547634022965342180524274580783335164225209600073968852373912956854076802241926394304406666301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17780458066377552003672866802676964573877169091677784924117777650238286117329216527836203817135790146259187408755462183328186319678946389015944982060490599540666388045932461646897681695396964446636411813091743634466849656461423495608351124497114312331745047112473680246864851254892093120803194041527156429380450205113386110589143050263929785931276590088876900127021731238892112525760268726026222735442265940694239983647710374280132645451731347848422882759360308166705157127879683209228339986616036701761949066196147484026790818380571052594382434198606925846373016985298387361388797158963137478879512544876317445284101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20141648785442190890577879599619617272498022319377629827001849731315796874694614212315739857655069337231923244848245300741204292881671435354687803660294889465086153355015629482825832465998374606273610371321719681739588298387680915784394325307184528417969841853829639750731182984674002095326697736950495798527080902784195129952415213838488867350125087226428681804306374026472967749932756883687816678144006609086411556265673699421835211380821348329776505350619565013088141537479842458194201300527976300932288354784698939077033956407401795991833195700374740621211403853116863676690569574256504813343642927440134199962421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18092835677305597966847909774746425289305784791573600510466193610340176084215866076866634798464789287146291067683164334782584476732938932380582359326224282496441050502989911960986432693510331648982563659952132683211588372325683444482570536870769982028275359294584658795055824815722288375027014726746078328390756182648653573529633012437409477396508238441259606685620421407591841363099172677200374049776087187243234694937067898626652384088007908531208052013478266052744375416041355773027829040143671948750347222071513024040631584059437069976168576421238864691919600308232693791868460711971657349741191332675123991323217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21411141859317488237994896510581518635206281639578672965865300412280876435030038847042826724676562237166639873872246081129041207898724182165265557256714348717285319819890784872401100099167479272130604677026189193248882613718821362515147436552971052187864760803633373590344803682373036186216601089560381603877781732206583781456240830831205689307214639937802921254343432956849667269148840206236393976313252926432108226034314640945528178894582808676242029913033252294263860891947153989254796913863451663317928043382786604355511626526205777708108607057622934567160823662925226883726712344597547837234635300497653077962041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22355942986614364640640445060734398321874645032894434774429625269754458059615373306425132659742844325808321903472197550453513499294769371247763948433456257771465599782334655223940726772923499346720728919624682618173430723213433044889767880994034344342367238001380165300534052230293173904849177673714697815600054479309533180107408340456527691737565489963011879113701529119386710230081250305973829005650987754339405574264735167292644473964486928293507346601578720315453362267671820151038418545878090760746853770856935741852215411067538850574936304091925825551383714082313651869267575267505458601682365656541983665587537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20078133166129162124730919706811469155307120426628360663031871192015923826271062624891852639325925181284142503333702683401866667070256219223008965424518263729808583284839632183980545751548121264606795647644064354522492409059007379277965811154450249002822622933713211915241806157424027458216408373894960356964336631649573394850838338622647371725592481931372377151773466165323234415764146231269595287660439589480271648483947990253637932413270907263813284262610265399691627172327126442049374165588546527802008779771246393371483161246567264476818084314702727083147439403950631558266592989173510593887189469956021956475721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24674507439933431067872327084885294506994824988616339381880337964964655710880987415937607595027713921003308335884702615058525329793181303575596285585073998762778632873996637367910984017488023087311764588702676416154127823364954989317523524320928533397890802889247117193400633321898548138930973524223914109654381067461013822014056825400354676341267068319190047558552305898211043349537762729809634739611275580994738919701139032055280061150144180027902167751139905383475548938481016676597196783172124115424730436714976068839445765886031222974068179508959000407009117745071503022878385042569952615557993461096191823776333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18044918652042649448970069036255312865173431968804907963382575594517534728757257006662883823938483124441905926632969067409778584962686533158404338914805554184338595609620178253251377388693109082603751112419832198586743179835898616513929747233505828460863966306449123907725563288854451942737842246551140285701558429314343032243333470524012215720490472922121541205660536677725353704471192248736063692790861787309680065375796961408462807970622354213953022679248826264358780883982732128527176381950514140378833484575841553202463525767781749680843012625258830437713525263256431470538882739442393535395132609969019907314661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20094002710678558431592663654612402102519863411539984208283592630899098024732397846536946090167930755308914360162608136296886958426843356550001680898476842385219729329926010995600301598824420857930498597850219035466076889086006844912089774991531605128905859437481150551946222493080583513272384370116695039415106044156163968356841116063173375218117683958546238346515689615792768227907477611912576164814388551302107117607450013255376166818698297119933761226432509536459642842043182084094929236410180116335418355381041116618053184817461791987736835567037274472339640417443338014192239385256544695474582793419894593691013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25678174972811456235353789246982116319134904113545130323697923290524285251662429431335555833584944352778885183244664521873718794297862179615024556766738166099408608703289549945686706486262100686720939931280419475549430906049123493651385173810740081594347532205143622128706984845813464261557161113328720903280539545104336984232218303596379269732253195902091607887527945582356296076891663805529251944365483388372290681226841132238201415972876758943841998415950030116833244534183790688181450425215522515830421976648522421661202107771022384336512708229518370794503401100805680718583359302397317480410216853093330583464589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21656982827824442944357530232290398630046517011927090339793789063990929751837992975833125368809351709567471776234529654526161957295248737841792861352084797475269482572590994463063947519713235919429413037340582264144519924702418118438830305867544235701100850863760989377906793950552375628816844987497108579457564212738046795547664005284803071535018315836201130704676290155783576928236753118759019507647921973016362565062328807928902776991328279024626010191321413249320268452673297436182447743811405462165954121361015891155995471302487480446310426683376114275094153111871872057263674068202845770163655037624917778534061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23958617754467200175009740644290269867948323769324158383590193347731789041762582031829779392441130881436652842952771234826202241971912079581459138641199747757298627261453358192329733307548918814248066485125373775238367382138172533393261638466092120629172687785035566610584211948933501051163957018735483619995980025194908852445569895572584621786222467951888181483462541903280809643489247320950163913613684573652593037142190046600165191699808078172856870361968099800468601144639455360626039642108284549467344589039976780248657728524683682730966220575042254608508707635299800985825807220268644334836751815213332074328041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20768129575177592893430819445213303581458025280593709424865423212306855428668358203679894142885603156436362462016236356124178646647834304279043345914462603791493925020766567043778016729934146332391623179034180359590532054954683130614883248335024074592688531846342559080989959055602784418974841546890957454372070688300708840129120771794531529921258549881831119253365769569741587230356265146002955376096931941783441844746117803813353632952672671332757564197906418430681259133671842242679736203735209582897910821979303410741779367215247121163122822240923360507417023049321174911917811405843498182934249231968631468739609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18419675491793777890689753245151091761382551671714446430603386461401212785166287560009143305368640049858778182541716044522019565688015010968003866077071203491344564461373735156303415189588511031071911789446247223867427619822765063558559079924922282699827476617729982184635840580570309237413565557930630230681920627180986989770719410664318695421480403077655711303046662325274423910887780697947510351853129090826494077610361438435840283006337776547214777288015070799695850349983262800441654714461290643966722259464138458220022987417062446079735876549769675060418556781808895728809707774952085646330569896265505332916541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18338504097964910951766814357747562125542475456163232676671581112774204413629833286036922127632607999040568087192278701482944319652046123023360978774152221658104658357570529701610488386512135227611903005979613891280396558516505057848367154384492783163613616466694017743220346008894291823647243671492744841260441504353388394520322103407367203121768680973295425911107337501415808863211677499224536586617546178667097537255428070011754259223296104529825415792125267512247141022579254949388779991220280095486168773521048091862588996484189466001422853378109031888338055591383853681340689765092672942958129462585608895491597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23219968971661170081816929996792555960450440230387345543994472274698097081918389266547556364580388387283989560838453942144828431542698197811580894859709866191012244848061677756081697195674507756815977432310355836599578816303038524311336681095999356677166456093004281724604269292387957424086683863866814424676307627051042948029302974165542242473279544644992694691943473249895477453536873257534758101821473203301237249593068046787084493644199428423317982186314742981192276115098548056745643978357621385383124567743706911842049541936528770623968192363288485851681872534090984435562545585320376745400222802769414500656309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20303555323154409801882420045250995848433274700384532959362106050551208660063683719737369580535777415737501033339946555973735835532128506364234543033587268028255482146937651155372734060342355150006830339629382724092521309479212033135597948112935734354355396741089319862921900402930867425118162810376170598802111022747670500618638592477824997634770552196448356701007594607570039711567072065707274589663217214283667104204028349026171437148950274291131059373386819979676052361272497568041382903838270652130123149533929966308262325047260499738955275077596240510681196119982982614851765699604600418387052139804953601040589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22097694888867272549124371354094337375631339094069676092250908963318803700787301591925927630237568977544092050235220963768555263830904895822552526206762693007123890008549233755612519905623950252495452905254824180250776704823978476624690782764675657596916220487636756634524028603375692827445412732161882025194008528778879552150968443695181693692650367891420555623876275700026308970045200612088669248767217856568134700543378216065285545315300203179978842054167421522801873536642892974094875156623364470078549416833482913188263990911816641399242110866575153407191704281523884575000950337887611096501292171881847740300273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23463133833040189420844931231416079348218581287042121969591389699439717695424520538080173081764356166193685896021708018080047448298531734792562222201399855597697882890138355036296170643089969876577906168574295207316612260837201887550635231519126179078066588943874200371888799930128162750087210781438739613103549523684496568030218540570870286884414834267364647269363978081398010676315566936700680596273008174779826087258323612014326652326538583761399718807700488463435650310185997226603137569319494679881468223117576680263943643084713349153459666624321507946729651984434428084991590744965972565978040174147832204338441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21844589044492819947906615473058564332182382911883153318895677591485751738664501961056758845164201197593184745868832178525624248569957891067056224640751996583781756401043073699472213355501314894671541447183986975006163603239334920506031844033854404022126180352094216461140262428173697958137601430059518287011582254493777489135867726047598803919310541710099100283832445198731954372513320601919503419984318630841900015564727280238434631867074800162280359802218418368509528256617584433732092742064799605838088796830103295807834623843600129071082640167063492260371429034383742483031310763538159003363666218565419293311177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26864096619582526224270726809125143408703696938266792089881392850775841622814649822100619010017165935016610939627925311027993845737571140990843411924647584465009664905808610782919799950362656697554237437557684072359498347082590162688481124851244202197602547341590750239719033431236476169555022009307751910424716928991436824103178838178898760108282678272694223004678595855798543065549803082164705401745474745445622423169520741278086830296705285300046554525079475661268839569891084157756694071099130118823718972328545095134339142609780664756608522896673681362778078233982303312951784403668531784287204668926244892227921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21677329454622619422709386806739548067127423358722082644664239733420791882293416102608611659607460584827263635686935083688911414365726195996766951465475561738046416799270696210431089262809100418792845436343933560077523911711990100878810136731241025154533254821382913402947804307551774212402975180244836053442566232684455058860036550280316474569414596199335658451962418500624464932454332196540125436625943389366577318371895251570332627828536630660496419974280434568946412699866812023121984577573474091196720582671189348422974022991888439968770873958449214721856282478684009183628257194220791682535768287037651746635657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17067703677244330556692268541945661428806720791819922495225875086473709721604205689130010737441753774466327147910269240283063751980081413800509349954909621315414662724318473061496960584034695700353519671012432065227461462943273974101306250493550664401650543524420124654872846813394560849815139805448877470684842835415648669607542860388526211745854064022962619079372191633319938629028715663494939054416893700726246637298162423446142398953665001076265645806421096416089366806093705472108144806913107377541409383272927532763667859174496073982814307687066556963345116067306141934883862901619501949693715983821811660670477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20372700413007704943430095498363947726175177575127434725924142499404010242125248427633958988426420897659411977843744450666938630247166552144541191237342104669033806514686631188116071022433168660178272538634376404577268297614494113883432146639766153937488527826395679282719097345851713332384590709092718397790718598985904384517938966328570562616167973074710709685679130892461556245151945707310192107980322333266526207611716390124176350630123883956232262446972823636801041263517562959357600171483191163527008181601099089972478753798763846278402933906649918763755039891645125928603609023901694234642281163977959336698621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26071468975839876846214932898863934885868137991239942835251578943553524819348815685667123762028863714097841178574000186040919327807888777587572568050404725815811962345575735596672974197907427143428473142388782822831760591735647228931517389840013127051755819363571500931229085902989343006816783088938777694876787094662984887756448543454420543400662179812202011796674486062553487115761169149042892197392038915089817140913215849336957038777722961215046053632996149635007491615386645463046399119731654946801423251702675205499916842624417421734964916469350806008021265948972466721545523281481308593085441269196938435040617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22057357997836842869036838647274143797017499943232495153240255196319746237620224896442543458201159696177008744835477795928818630291800817013272881666651664404665739089867846310055674828204178497312042456244616225142162621537657227456138784701768663817249046805852638322355448580163108672786200931343541588105960517645671152199075690876202432791974243338404342398458737713568714131727680753382439985398264012994520706545713571249031847650979036907337140742065572991428646875743043793968199261644553328514801797059351303030682960732091612653797548521473749912158537761688856870863408375949041509645963741338164544547777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24136987814488401640757300220630749511348265372449573846912693143662787125845856530754149932606392638512144473449813190286203278478166889214016856402609241370930587158723447910351867973699706614820484253622148419016355049682005681407620201427658104766680736605795233577356991213589428544141714200035137740323714681708142319561093602500586606865018172520466198050152162555605867353647812051399695211392745019517247210395883263922818316107629219691750758904413604666890405055342589253208348927601703978384026707624341974142615207023350345216318449595972225214912704178682662280512170059743275435810993606122771540914121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "29631145380514353672961697541511541476712265872397747367144650395192944368592186385536894927362122331012925030105358355284914269348258239413408159767953212892520593081065186703661454729133523249080338972340332544863436854110875031694681328851133737732396175196659046784131345452911994323487964246586145344586794227491597747546264137385692618957789628790484435949964314795927329595911499237737769479949192322968980415617870195808623307864691994383116091400115677956690378578922286236586643893561782170753513607930783572890458218297643530858535136546039460951019848047396668487638962666501133342718864655227918248883369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21138891896441344425999199101687012018109879179308884106524081055817905794598089040996837510093478109889864556521560603131852022922979657577011819048667887728570756164914599642844616383353135485989739562705913302869030710429460495968626182193247189577291044538998086064421954673861778883668244788270681981706648382048514182678159590244873274269109557911226126265974300330150797124001057877433388589537713603086024256114199018054840253036844731371456314127876259524041316874898014939813278274690146183797762110405187283270381568545511212565438691531244705261444328232778473678870211666351043848736946459121389517778063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20454492781396501940442102641216566952639117286389373982038224813897955969240842119670349257348887233250167208836542200101891343458365006850939700243704788847142538370444598702717340666555885487374184240949497916695136093384997820186844881506447624518594461544863146276451872983247116727667016180347521213743235331197789044284109864232248683767960258053644410324278404786907918783329707821888684643654683722989450231673488551639181496320726959579607978956150535308023990632729204155100355422135422014799478940792528069702299838736165834052889451667099616174226440344290079999734037276579663496200836468753842879502583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26297349004547866955035633437981489609204805338519165373721469403405428745804563744573706630043308771203552692849093357395270556373428043141912463272382372686777021585327818805002899473500173754875539414323636018385082825725795775735994882545040601946879751759280220296562480921814882497415991934227778870765170064747269520838213415178932842225259783167040712630522483582146407409625934637449502836885315896961802539418216363512231381426033627113859358431763058082811984251719295244456899995691681553247117014567150866734526079062024463483110532208372576997415414444940952889958929522179762122239161992979724631864613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25389922860457514531939361905410988729920097336571503695148683002521065774341116000296501828713206939639285557472357161732396178794201488059225356300468217652981738800573913962361912449119000772847076856478330592878683281381246019804374891464192081258411351401196957679090979240998688626700361554623684224076789523924774342345489527436073854321346437907080100421272450454571323001185670097407500258855882958077117481876909679483178527335332378295813221689207822760209708957000243650869719645259041678970486245252515042485763399154318561001327466861397879329014004359129271914293579554754316607923672050468705475578467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22646884073151557465999508941289078698009289345665269985736772086045000260996648138383328309018993749541187078565073522107280196358576308288770945855330573686203441883845105748824431076247398314885456887982166859370894534489494001485649714169776023964324105456854287976709196262225220222675362767356871089578383990875900970577637626010801065098690502503735301971933764662723809318166135102443808164362546239009769408703516590784341736044653090696243889319018645777161322302720586573199751587251136207800097728002244729179472018082471254550588873234668663481214272914919077282487975948704045549491950582669812980824891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "18646501433530824950155466185090323637150434568765897805492192539001024185351631343104654760152558744274232409508453834186588692621492741922484315409970668289678253628240588959692719134273651389081025834156846518876180682748983510378851919610032012786683473255411025190932239428037376280012949312644133319761008396634478814379243916024554880107511086945205490004565291763545388523580635430357481719117623609959253420109526716300760129456408972064320621785008521405335291619658863119979698082076706958683826447945832219390616627633724889219432773959274856217133101853277804515004929257853333317675515244400497357785471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24690902388264044182666519857696134207375625076897350826735118379150712616897460436466015272302507010646836309717250740971165668687302285597586839882949790593106742166846746909204937663724538105246917077532207048117244416774296553304752296436423707462732530454025023869905933055929694162999857746898904254750436422114850837033346852443071516926909012956948566651546478576099140883272614457365371297484215243588182412784563072836918920873555352455199899459939320744562088785439886378735444550295099625134662290615006545963073883325615557196627884941444644083454848996416077233486753812328468381279156218882056637508291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26020292304135933137874323096731940712477026272807577521068745175619439126502767804791567695602708076293039519610587563930208198689945622227660845503559689853226382171852422942150251326953563848892596156398008937336938311020447857112150829688601560101549919255045787183034722279740901427927183210753823358530060541440993502936718235143200033962742200074684644748106488538888047501286657719317241966161645646789948765026698642917936929289756756257506203021954949049759682292903988674579720987832577980354904188424637937773677260502793005241716094060108245640767280982327182410725414989300323531341254992997604382679213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25237273812155164796875941752882892060363226173480109471299582945591451530639566805078664926267811571940208924444332009239073487446727803073016480351792672901319199138495359638106721154480141745662792930541013344610474530812482563104564024720883931713398473528445522894646263637355950271422908537512466468413602458256783930963175631533867945334191374982793612366256117155586937523779267357509061924132829163042408724772791146036474054071996279969447681685895026646270171670763617882092214918811784438102517129334491850740586858528070087339130315615219566023029519886645223640078102481691267700871417704751891232860279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22863774792068666761117672070228911613913074116089015770750974261020083765489937422008976811001094649159867621696544674739833400609168116808127710112271381662832940538031825708110541226406022169458376989389440397777429418547761517555323183006626522746475809098620104342756637930445092250988623638993350017921296034460912556102421240173976768972590126055704368265358121930739573161606890302611869724973016394014309627582779967946335456420720927232652008036751344266067928064397840976537121992293914497761957183160311134932415461280128842830679131275216271757584136633278539543173658520140185778743463433425565589523737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24920421657179277526359482761954767459918262958891659087390553604782257211861093260485135723972883176189434757839953902712481000802479014691319088296572568564639816855493596471744168361535447758814698484231197013126784380321061572831874398297653756011580525226658786570698357264190053280556154219126024992874324280467450824287253757651074863715438021544916218978563879234871236102533067236853178468912512651979917195870169968846832196403406168190134973928268160754273257539889093359825718883864761808843225810505756787549026676622562948475286457521397632241003365828034451453610717538995570104850599635647934398416061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23878006053459490991356051628886649991478121247493797380539281008756613137023759222411629515577023393061899762185712284637820529764609356838496305458369676761475712734382633471312492509192187707199084770392724418552801208385785330855563377913179884905704811499825051884552240414401640683268208398034411678802519301712584576526459723941070358141016928035905786535366140890976427903616406739815595558001094744477897864910924886450745636741249611639637274015215046759236938018516047094025756721163243821934942837181765209192804718553589113954369112208945049555142953927722647957988085620006231624489560502277694067922917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23674724962993943479293914686112895848798917766338577751524029816546735340593809170429176583756327159580699548137163499723356130942828721634609032627284131880975442958879889859174685175530549708243975364054316561567358386423672102764870199340339726219234529577236443526725730796652981660176424584656887275215112598737121110346384438149651487004376102138435717459218930947771193196606018074832408368656700629268341077540242637633011679700332331291226389543708079260748697308022460535903718735310117409722441517576293569795811269546503970395723187437541278044719841173797148873670211953815931588754129063371294308972601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22591011972224214162176377503579203408510520187790723550700366779890177454312990908442483206657916942016407010505003287112315698944022989507693359686992506855319561288255919796522639347956740034640593070033657347161088508725231096927296420531862414722898642002017422895308079796787728751284093039237313257033669808852551679781206948707452876074308578925413979153850111794381877801050890090063935727732414725829331252928135615351678210294965729978922049290592142937583826726004635162727833486958276990342332275342835720353164969320354820320437412643339395304999304666979377164475171759690737842856327153856245585655043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24722736426346065306716444249857935961983007983946717480762470018133514720282981299280362318571181221874697273186277644909759324288894375914651431598417749251726639677873451691109731028705133465429422306520728765489813465360779171805215820637462550063100786555202525918075238018292622903522547594127028509773844387760126125092145911399014532244814044003520568019965866754186511127282987674416167753782186020236379226368402322906756169635604883277995880633391123311596011361555204032773395944073179076094320721574333333006703725002576545273900430158851097835712409421529309448168913571502226633409282558433252666198899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27889143159062321084135607203757443278385066107592122923990822281084757119445660668567157345097046875033310096395693454079985674515363344153547657194370259431107945930275109916218905521792316814842308802681516431832122496532437327657291708563826816277699037410224832647634847557412887573438447722595272603903686253690774761266647655578801316755536080897010884640104963546936830335750067536452612309925092721292559491468515572241372353909446375749056270643277991593235033042553670597575635028982289721527084297458612778319292418080747773710522975565781206226269504402312433181990676677246444104294020570278834901901823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26282928251949734021837816585490195889904823166541918670842601189255949122169301271297840758407136668495698448352221484746604009083734690156697062610398113467084757259410218530725641792336517356604290351609997610879135411335839789643097881259957959907419198442409307816041085493907457652713173246488684101465159898543984250751786770207574158506597335129517598882246105851545150272654797782282385155927894459935251105563164349663923764189065211772314861526369581433416824220450317664013269480878199970945343426674551001627426973317502675861062528716729912022409708180070512545117874193453715464874399724828994221041183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26754490380595471033510654625316822602577758958484247386946270411373348249251265493577403714364623677769853372071195260795585228007677153731671050252576722416309199240367227345552900949262414965681202898999630664146791701136877469716100660243525421955107098054744804834205225731762743155164849064651964375367018156738686059317320000665720527895600562199337776291981424886216084320737361164268161807234165436345792936153393750349817651102293894191662145753060596440199308903542144340955936120238729229876357190979349302835011295082891544728927349722086392776862722980340647741753308680238211148514764435022713045521073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21096769327488521043289568873977724845553901256198518951689564896869710282716705724152695754093536381554401957380687447645215942047623804629953231689309838936579599680443468776662166930042247556160807934377947563117441009234732891013079107820063898474257231563908181587937543378980749096403450341278858909966123214683352567329885932365885083712162355037384923561667088215340039789291015531463894734049211520538203185276776150479141017485687528319464999032492105763436934779993433033486449505929404772982575383353485699439771139380882559336897140108020148228533593630749583460745001055538113270238841457183524884377551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21322867570028927016873820259258260704942666167348845571666913527723878093028842821445941116245659764620857421045210487553137078215271226710943708707991741347465321044302050125629631248027162054990290013321746177531833414726985578365417533628227099255542594793075522375656559208217439326185918670330423633314426988470047221876257952671035517396810059230169490423088593670555125364730118469948689892003077326079829122778208253929928264784218850930872049070272888866590208461173470134949083536719898649250305977794891721169188166185062141144620534758138383840101212278125529842278754801578037643039081088524604915260241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21270706487553274508773361818065490938383021463808366991170255162975186449264554813628029627838118916883699542062008462290299722595961847278665289708619518856104013032310192071344679485122145813480224502213063081520011005573473004724919300760499201941659754388284122053251993486726887520924469449332920219248787680124892547066692051016452251420509208473550517338254548183278665079107821068360915443338465870668280732765060864062139926992263421867095752796132359486733337413800172328477162680617164051913561109799299971784157212582566206084602690719201407574995608647048710982940953738519712064140613426241376736416063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24352064071905094997614613564953243024915974986350785839012308655408973819396773605118881094247301783937388138898677880465858039711754833401526448667148953118167811776949755271033118662049692136303991846256700632021538239222414073558759354679457961565059231154019176530889361733626556957992134545882089220684934655003259135462035838578715008224161753337496096998923942983735336440734227291327133950586335127615620229279145990266447918918960430747901167800732227811072830004771163809190975466085612371653705917006650467984417205616079169623824746403285920401808209241635088318405728303586380130534516460959368807020129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24275044549141999086857759684979676283276091671370959249275211020422809969232992016045645941392621084460726572554286069028542317046023011977416980625467473010550779204275391865100608321998250395622698085229518803530425104926941013381825431958044377860800081994802926196868881970483385210936224979613046033417902385036397667265140347197662947994205083555665254020712159175652429529159460729105413069015274549352509378398115472998422000547352586029102336922452685754305256113613566824498465849544998130068349424691270896694119372076775769336363705552043770035511556185895536306610269565029990707519571439131209237648517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22048784818104032832935773604690663113531637562637307418025494051585044744561554108144233412933026283925710847524412902133320707183994037925307576209599777207926121629573683013441207258970226067877281844571759152316611738504797869499831097082820501334585286985294538761005277180599439586143013932514167424616547686769263962222063077576320316905917748777771756544758308903831136974298988092886765932084401120714514609952698400812366377801554279958389249765015059020470054510476703857495529114923649949343865918384308689635687337679630010949882356693323596431369584865239117548156615020408138120657830263595093250683383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23264881976385965698234127842196179395183248925040648901280254573004595348848533205704882541482765236684252649834813404830987817702257647108066472520133359696027786210932295457773067016102176663731265072645489611998321813034487124795224642175165242338128790307913876108564368119675784043526828942395733485065614344166257907025130724460543351666783514254564017216745910626445720669318765520495156381439574159745840493538330517210558861360890775632439950291280391206399569994783567028948811723251456192874815802159977971180253570428253745125352671037880926990836375604778644539655780596341318749505484262710156122679197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23928336605544435145421823541705716502317276367524856247976968857867944735395108586661408974499001229354156820393501696682466037366367386677551512060765229526655499094593146297355581726561660803823974679403666849904493808358128460602667053058723394342586770583484318149293775390826962006066421591098168973264357412377792329395853935376559774353841163361626311307417768708622416485036242052044062850639877074588031844083578257025017581412724340738448064403237517360615519503481929715671289102294100425167380908387105886803580962044873690256898883780389923512056793141246927678168595270951823590131375796768554254097211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22815811281695572868046371892397531513956429695420467579469254410066966502442181697430327322324494156348588170046447631913263877508312330313587734031108670956173311037983955697220194930283594587803728635597800936913768131012987637015574758896965930530949328377105764772859659639912401390741705343215447052157024137934787672126897070989622510036302676048277813635305612556420664360294810109163253024114844463234397045001015628040727676869552701830717523128193985257858479249052940577963245616998912246243702216427080395253020657635607173227253282875762325303876657516593586767097938947013192979867424436329502069110921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30835850084229312578004628689393733360468697358072098160572464503374126778044708832372597474250238344493763111985628088301533962518653164381892100308883240699185138534007810587586876993095815414273669102469672913787561827114388891467343889051072338016976920315629910290900469032684284622700764791165365201282604389022662226448355243425386832139599951525408931749413166442840188289905385152433254960864125357813591212944293755358079017371307451277196319430826259352283176111789876430795862126350233479664123897462459393150261588294380177039248884494328928362883240380083287062346430278001456760746502713622860287258519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27068817316806828639842305368197553241462206486959877082509597703154904397164130620140872052555077343930709018586625256172310417789435403404126938727818976165560187117280225141306164843475514995535959801721774070991044226817795574107651872425030464620371544656532266592415202254114947870278930061835450902016098100335511525505391413787194827449452571641012434090094246422096552246340537594820284192806318789250319849189666990487104195426606523088819573728964548072432007323257339327674616713963696909004521128767747227145187503377410523194004523902516830030469953547639231713417943817075090765880479180367180109028557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25466581260223392587270362929615906670889434195625895919712995245308165289527294866703148854464953973633173944407445374968525464705509268630299876924877064671506062946582464332078081839205043744875530717924576287782993463007007640698389032767282652450975366168796417876343532686282484677006616000749282884081438263363613224790463158273655813915035341635443930291009680797473252727192503858464671644353435548624487643501009660738908188317885471192118739221935740723583743240300206148578905858725277491473824416125119572790986349465917261300862058916887839691212846864294070830604513491911621383652670321576891813927981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26748789499574974386199612024727019789895160131263051410819321310860551710081257632282149698326206887847916471817085819446000695970097943104280694585728553843775864157363275040715494559441474439760330931824568018049517502655179867092625687448348637371996919816643608389070757899205436237824722095809095708314364967517116550433125537222623011760973857334371011365682699419780002492876156819812534252313836644801350793498277691106930296898650486990482320261027704233550332612842215657420067458118893721643513726199969204197714396605746533616093987498858627152710959949025579920721453205262770655954742863923536277118637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23153370899592281245435871969739649749912002712865401554059255167342078784586965640179587194910533764201967269489128281837428331468640186539046629601714559490120292815070630481056413884381900905116576955336260220260005176362636737018014440014560672343237854907453545279603053903664196840375491352017837906153148381937807988189270040630628987124461996985984805270518815701729399719399663802679216255009390314503108312677845506402412427589555798851614196586503154519545911298030806967769884186651295504236635400528445342836640079202817454040172046151703331043274184312979633973147479614519706870308103939295633262985617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "18690666853385588776742147292087418375359617171781405705636776496861101794633950178141256857929040604584043212762395420222361388928252952331676856718666612333005657316680097675901717871910662847781912868822480333465379184052247726435118752496865013415486979138513199237857256476029125332230660974753463481793184806739471458494346551344434199710445779566700560647831034143434549259926444172298867227516330882386824773725357786483050851873535169718606011781712489512595853476366822812772345279611441111758531125783375587345888012861246143552438289965786217501032351082339227764966760621693671448742235730549363862551917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26968676503305922880534119750803378258247739047246340972771123748725305977695992519257424789714100416545127357732837721471939922495633719525924262872905947375435737973694852073462384052244743286215978603341617241186708787549001914778727591181294183880225041717552520797520808423177566072036867206630809601614404428363150813911850139793800699135259508251279137935117918587784846873926516192940337134873211654781662285094166552424965070537160019627857173635819403009920727130763386173406519247861205801936431163528715948178614041737602114083943800397681801693010553748075092975920897045756879393137170459184141614951481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23185873072487192362705938354855885562858702569842396588831546164286186489620768483685321172906348502502889865926201583063239338401876609165616011889531654643517620877787117941056641820314145335541810182137614256255774068962363232452803384084244660958088540250899051189696303160178994272268450007886429266712180009915191377469049203916365110434838631717140686560126216727636311928758977216732725599351545822569771384297171601332908690120856382946853627456804245556459975775040853692678893260190108124114898629329239222226550706367920095057906790651674817029714600494194996385380246399704053292823548165892205525840309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24824915096987810153007924074702960985446919563038186550908444908418454272776315974344977737324500580114941659079648970649189804828004905334004384671308087577118574198284751945578877143920552923070076571691823409523374600593434687974815726953185722644222482669110510046622743562761910526232648804379897190262173926828413757784621230303768728511726551786293044026237684282479531021855581624143232350782769461913548561906566878038545122259013489868077336031760235634253186144500037535015820432520263277753565755141399666777813389914340803862261293761458212633939976701383939906888107388263276687420518094465815704602671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22950646938615483128535142963673255275167396060059433749867929874380369796289783063240724699753350070620659755606748038965484588896685470727680031696552685878495709352084014844755752248436563508231645752208460991060478876000660714971106676870422591322933917175685003885168350806579228610497533627081029979886088309435782598479593321198667572257438941048532898418908588061542599287786900398231813641131087155149369332359213353053855206372456013705409495714635691324660213975635076222482862394140061489930912725300935082055422635653483619174465809717681733478168948164527065479718358416243759738684106482404833022602529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25832345288178919867616425758986454589977552420909688732739375411090456006609036050540420796537473229723879827008265145708700412971566236602271345742498394169665313811754839503822425668806253041651318366149526076773999383002838626641624780468166202299223521940395920639010326073336822105961803503646636023417700762456117321647421834102160363080849933417071314997178018755411428723139953779953795174513566457579010441230497802568676827204229431719850453751273363708413125290189778092506719801403919187662263808970561283432200231444508003933241236330796724339887295484297379544613993414293382596187050739143330834553383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27395707354232269870560820946615303919681217697978455105050138579176946796020425311606523898843458779648224601964915933542931328183284208187204754013452936927945533270691846213027823950162901676953495034651663731201072881031632957932439066794466083070572799413458152179707295371743507874176752567302964659792183264542220699237725457730592947793969710086509882103965231205322810376880791581669199267921730360406865336920744422485987229210453949340407924490747051588337214582787994622524641089144488957424977485169379346410085611350557780123622918118779595332685887364581124717954061799149464591331404351761991209955259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24007129167206645535185502147957547760523921545603967524343856146535764014672511280963294503948910507579736541840093948648043346756219152596325790723678171136452967060262383876232994231411649060658196140343690564100673323047039957567004971001990989431049082463400909173242319407740264350568892751574517628824085483612870276251766361814869095156808846197987235610840823779323110591124394929548084289150914261496280825186180828201600466566297267991610948869262448584757718494565618787004690871809498321621727824497153748613366754622883001666581234836688125989216745855367780256606155246703235852374294303418877374693623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24145410488412505341715378140650553209676868737032739772306583510248206471335392476907088773805330777868106233042692144552871980581273282657896195094203580198760710703500657625933982043236872076957447275102333456289798590726995554769537305286864845074625524501176939881682984759302724326369573858852025554060003230782981925737687894148831882812925952009913375809337336970046640290934854637441144718923471616874868091706693394506987594494218116372931148438210312081360520408858136562806899129395950116334492154098936031797918730651890353991403663318955339961432161093609749641615220871206976493524780544210487465195381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24089302259804026951415394514392643766490517561856515139835466956693605869368837095695674060212692334995066583495089402010560788983220897921034369366222074213397794149127703897660281774499096860016487473466747537302419007693736974034171687449453185334967374314887020892276532030140593491947260701293948409982496907715420349751949882296687768445361119943699491705181444142704683828859053696862950317145559905956018641609908826354606580643860842940018587337709431596748391998536579411129753935131153929494277530554117717084157103816735774363420806254286703081483463702523695777243717513329446376269975443308629119251629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23730505936115991067803990795694859935461229453901646492280054128702357707083013729217062576495100161169912026358613583864333443016190539072008524455482682561059635079690393703195345313749832240028848068142257391765477113564889418335164898917969145004543394474574358644067216954647642049225445204787808056184495380186168012980073844613201301596425804448985563599465222422590513952728480251279354023367698913789378634170845044383349144707235003406314434312304158491030868111576190220875180902346349606006842134241746676241841299179134772465052060659087340879862114682438195968153922955649817294056430618207841675433061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22687427420453496106564172811110077561854727753539447445656731383373362192052991804078740589063003126063327169796541009272553514518315814986468035695754052917643425102844030275678683694618005932951599384059548025445786934919009138766084345719714508464033036569186131321377941908508766100182277814036078726987961721049213235956917654627493388364069977721844382055700659954811190380915520363990276907659622651826513458451059193190971515406468366041677489801629072555602343300559926940894223059525976297002062683126502969791416757573004267362292079567031161304095305722458410507432390381433011230093640431870410611658757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20381397450205427460298492244466007615977366952968859113119064467809425611398758395803063480003034483995706041031656666976973657061880206127806489508961062322726023745224254785887951622288615626713356920550861430301207122008908791529962012133226232657859980663511578947310771700061525105204903849874939574035281059613594383860843083602952108825222374285679082583972876403313219851690866373300903420563962352154762471627713575703257461752059960936901461533717154352502234877097027244733634334614692285577965925768574786037519483646479104625323526895461389951340528783824709536910833772247681499620663432635126726644067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21590712094196240250533172494948419848079918301079950861766834564806845726135808923690360973234539534136615614912260491772984718131691232651816181160620481828934791125907267954921550664349326600537526163345137051250240989204766988957376076029897045681049440247153823997515171499882080706122370163040928979412777313583626845433687303140101045958249531859191675514131922650479247584124820531810532026976012289862802459859363167785677263613254871386646278851803591248435199005285818279792271942548620459243312174775226064362846826010675955321928419327536641809830493627178946771648203847193012950827555125601994497650431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23273585560516990356410589689669112529133803229618642123689869910830182326620964092654148708061296196687039569091289027763489204933150352500356490731798530455854662002324945499157873881401808296456906168983861702403888579464883826660496518065768706715267490820125741861338970945973318764257602610184885288811081203016984776395062364836353377330371083947089872668751322293249408775079833787940455241878219897594733048171344263268320400246072706521414302465581562436236331247720054186038263976979376383253665429390927489309633186149767435088569377295397135144108211625275441554391575316410021533370533681989017835224427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25587709747683422632839401411633994664438868682926443054849835219539176041683500462561834945093915084958885316014668143007134444818864017744413491911555195849322281493404402538142413310002646654781313624360927065549008032488993729217288366240988595542056641872525820511242538635664571847238482323921572903626790424155936159412171360683915030950379765135488301906435678840738545759675290138215965070040452722167235495086493172056411943006481832599101316930557268223115288286537591140946199072326485654828791530227541236180100928312977513003235650648493052834955957455662866107414436709560476498851000856789061742760841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25671176482653951857614419217681105190717448532654388189022251845951987497434332700116061830470555492573681022339374952035091725127688126020065213603992828616804724058781289948052414087308284239894083342014473597381021344210906588145685196550401574632749276009684351947571246516207713092943703076800959305497732221053964457533018944409872059292660239801570568678343313520606371606036349669048967306497396055110639626819340709422314979039593300732332904663624892175325973360590897803505513365197180798734487383609945285314143147207844040005101185848834792136359728576336352919600677948452006063575834320689207896962227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22068459424141444506050536680969893719674406670907451421420709146897103564190652542372529180437507539594044613468962784960560450454359244208892577319744268764734414194287120789204909833544057819860944120849490869992205889401819414706034274287680069247762743119890054084599955463096499797713730737376029554888360844092843999099988471972139645070849727106522690213646472104205928368822871003038169505701057444957704430433109032137465670672319014720522022653491934185236520904094036033894154448677160594258683406634532602064084163807635148214750250272711655201848119697011683015035267599253253696451701168158757583667619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28398884451825426572246220933686630733611757823414864216752633239193210724224762507722766081036781030283803023571642153016009768187579300462717547274587095417348196346941635450388844251371600896095996776539095960132097169662845461624609069890328080839679017547297037261675879018081986901842771001240519273819085027264350454758438225143072190387374562192211440660048053144507476137664408650209613627954899360076210364134049500933673504004741727158014396713800134352071878819365818339915315264555158974849547236147683938372586373682646597452811913529253711861983020015180267809064172156748349575107403235064860193243907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29857045456107850997378197805901946431785890011883741214941811030495972631251159836986013840565825007438337509909000126530381748583744785663845406701019355523053495344655324900248113276871622251117921728133830472172593170680115461027983659909059168408064436174332792016852956101345527061622310269445266052547648283519832611947814658871524537028025919267631728273996877190397027738308468343837797169079325990358427999621416572300909241070703412814630919435278599051288364611635471084426976512525639989935942137014383351512264444876543123459807823318775889922611691524740349801629962899872736287460477506023819742895773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30583595121270253223430831646158681883275558556525580340538792915286141058627080616034407298549109069237682642340247586372917410370590119356263032466099208813151310947678558424803681110433487697729501668517918633468770638864629456429677768995781525858659666327002283222927230843976260256220558198619462580769648097683874443800946490943955827289283272827758523624302363581123929500547802515958037754392178374195484697870744845759239649695429419755669270527116375580876801437456434691737330302905103168168399225920963661601339591824332500726651299659321701264481397282326620959379748242073419336943284649561305558531109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25533732779539612092043702205452400430424738918850241115961164973619436750825617243547378691586008181579732738424266073845661169387076232292771033560958704339299414583785283895171751638848908295269942909475795217788273653760594878517072423972778007323825941502945462968608477310832531487784655864583501876212991696367912893919756775410915025167198930565344109906551421836817575795504131561415518176860254188662910289277601488342960847745250113352782575655550442677914175918029105395863419588350306542562620153175393965267659547236552095760130998348812469209987930219964518745555659929093581201607250775837667029400433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24473868682008368659437592126455929924095083147306758871607358046917996256898814161167272531649239644378151649478525290571313500204222626207050445020501517089158949781838526987242149189070128706238060421553594848911701475943590619621126917526243804645069421167295706791440050784143413026207866913317437899026126522858003527550082810611419440324581639859972528562929555487464101082744679971270559828010347941523880398705696713493511265192701474345932283029139864569855548484390928591117540331444729772463612540351565395045178820055001009575515898283258026739124414296012528433195020658243408907246121732594374322070001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21624404519330393544006909878729078364400783940559486529160010934067190703996222093837123447289375098893715257631667742558830907032312986348372048264513910103655673806595253749087520278911683141423702241119852040060178893317342140957354356371565050842415817633538559312405800790425181262162011015827184316482303068796547896166762976483100421119182793278191432505340572849780901301555779652760402065385780055079335458421622869915964397043524497572391648555190604339000675220961785802742632322744728119603879775410525297855648864677110170277758485772651985528858415595493624251873654533401712500272384293741329918616131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26267228194954099268804815955436314545675524537025627362715858167702992026130208986814532392341533081014025473752515774479515620587838943695898147766770895164933843606852492815876133483964656855473477637497674766244589009767319996868938897122054272506445388475533531135102140144969233695127716986863577625305456653320704381541804732214145012947931010223417610717570173908438505382824413966375763363956026825457947172663925297693313124911816399648093740713736897949456361549973597989795617196959830122878125127177252743915413992873744974998408686039334476385022621233905103477408169133622864822525487504580709743378249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25425801972159703057201966139987654714900021543784140741055179555834965635756066263149218363424070675810582480777176472322087121608696597964178130967066412464119637350335174047625380827708114707948924197269756167634895132351090096141378883715184589844566713836906615356590335140358270873863015908960919583761355309353790176452526962458915317311260375045634171621041018828925637525459902628299080213472640495808464126953910362783426330917870223322368167533377141288659502741483279527011656194726955086605306910182545675694484137668540821711990979941440427630955944326249012587458424615465147454633096084402908118454991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24269997556594480114638712534853468646158163832704053489409498152650999621740566752815667417353730206088437107094635187624865231647555809873973418902686455089150965677477505333682116385224205796618464074193264242156899383825164442475398435328595544064915472457597362773090216043381901562823023934401750411951854505738894442756514623473220586360654950057419661064550221539560394491410649100827779974072706486657420925145124693501247139161474609975080906110576606932214070372042850503395176223184783465524510548220843973293255536153153621660151090970100626366598199714311024785312316437139494472614924146436470613207259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26558398112680979839534970290867640463499391056179216135904995328974602772827441586273563113821190535673228656770424480302623083562257532060817545897231454321920775974024901238373221291160182130419029282106487935375002847396009089054467669683541788506083329985301637524412268533255147004950854003390364159709715919244409059412897125848289615304235818855175804817510910172076071392539602825275479221822584161850010425125938704876385490425019080852889590755044625491350801943540117476644983333196403020419769469695865784794479985714661485206534289239384839771980382248986830790113713454629996201424219338096406044694889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20725475660388658264032846441551047907394522118464408216864784581546250956875371369751595173728437118711355795521096709035052717412139437150932855606950474604210523824273333206514175875739893974979858977321286633646660108025906650203657102600594237713869433192356328131424866135137070322453647521609294714857994792475210960602085449058941593639792833313581143378822494176962781382482196563304539211752477774625791533039710385693064091175025259500128916340545904057070950001372513466963368662239184586771190066438379882916820999112427976070738794395053621985013677321559143318692096002666548600797621087160377373492237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23326420303030882819667149990845187948068584445985420620947475423922972223234626670648432356326326606607113214604716414126744027639125470661727748299216246602996860236859518992205841297745808772487441158716632560678666759690584214716764140514936711008218381177953193699317038839640249385484105022476690207862795546662042719152077751243445550828150212379186053289067730745358009069774920373271815869501253912757294614596223094563418565222346912067116240790695607612157049532492562718235020519721104469533272568972395641094727030240943280466088518209118937346918873049519691851956350636077128714017870853154003712728523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22519120298446269092978371816387959893870566836255355809574984690506882069676799545708886507322187922528227268468249017277357420655422889605125955556496800933760079055299317274475879005690104944744525509110536267574932547324952729411201172801818825643718516892314241500708506116610111584799570852807356228232188068947702649853824545077766966135780323875349591748508238450916137962160505018560888539062264959216164335391630960659194748723862636113833614232007948144566564021909268546329216226704131462583055439087873987201480988771139395662660815031424451675706955638452274748504060279206103561377393010698556729720021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19844670156708859521279750374699697862028900171576264828046862074483024719902224055263113045478343453428945971352415057548066347296893523011996654332036511338671676231771015624470287880968815569280341439906344958498847262659874991312551077155561856212174239859915918484703811581620467553618509455783076393684727614270229036016662857998596096814135684775428221266426736753784462397491432164171671869826106416416456457616956456720907241184770966618908933133622783830761271767706648815117224298797240612087080267625082358356319441003364337036791756331019449613238923764481646527892441417603488679698696483841454453313369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27723790476813850236199851394915620885159290781147949445471292199382564887822509266730012442955505988450028019664759612499091710318169996060363188988412243920423529767121325348959279827414133855096252552010740217481241258470246952566277663372242710942716613489605441351412259137925644530044016625025062771273210576581385991586831915151935307190342489409292030548565837883885172911609729212241738758958958217287980557911973695714588866403360808613162259593446902115854286967013058243249429052857179765380753682422606257152445906179061824480091612674773411642291844275330813283657407595258256214755526404702944598591683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22604815056647092044550797048775445280875668224339709207085747412862401672578420777031147529491588474468366228295320510217406348528264453689822757132871906462486802611902221753186399162721413600424404934319428342064152110759141217414049384260940501608962844856936078922474811912633965521740798858321873743849130953984566109310164854006084237495183607377729532283502630662737953125717751790354338442174156682920573862176369697639633610057409765879231379056463969739857313113894276049286481486160472227267941313913660178047859429478858500530781098171330901693294742784694366276256794153385818251643124156139205328088451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23986122396167765193556240687007394414784364649828520178444691956450434324040682184386727760045604488042428465732870332690840374630741171546151640012277718331136562093354538658860937345769835352199556235399600304579512794324523339241439032195835557240987465035671264397154997323700529128556395596409695795633862615285443213327025648784198353308015835204594536954313149825297743830787060724136061889334051313859399788288152611373767953634265205415441323088561973527104628521792546163574891934427313042855547878855915406809010832045886962742246718061802514411062885789248028227200221498061334782174911624118048455173869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25250871412568486550002452878256156561142526675787683587747064878224568757420377493979207226339334804555101456791869361978526040030138746339819244236113000154143502622457078709192725594740195139826771981169631997530963696397152623476516218825945684481646453228602793035493832834133624314682285325993956770228556929686961269463563341341312402698479016380078803011036549673670357076115526058773989224407721795215098233555180793283156734544637339674673403075489504412791127026048979208510248899043772243031542294734411706728915327833312804305684767252872576702017376355642902523008935927016503630128657538159239117018939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28248429296422326388059426684062211497179480459959935238587821793419695925063167744867735749269713094859416643755542174503705104440107152870886177366338871536183149134309212269297587148544446265211843153834790847641599261900538378104445459207248443281307545242860812263743039807861103534433611087594141336123843237840702371550827702565912114053722551943265063406389215123797686038245761608157806235140908638755284341610493717683272678500842939269260640847463068015542809361082910801984743187360798203391817505049904741056996504941061873757488902912565459699993382291041334628893551735580765456403402044275600070762003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22033375825799490673656526721452833025581733986056527954316159728106747423714476572872234845321540282701788544991086865990909290748531463848284893989467967669737177912902684169473973102309845764527001957199873031254867493001194701699662075462679522965314109064991485180903954737291632012591642828065398766566413078213663503007255773594567083181321386275397759067527889464114801227072010217835355418146382335130769969295837033403937584984962169396435294483443261480249935924502799689291518291906050264708427583721107421262130920488854359552765356028486667031819031208195455186931774159643229972801565646453042169348523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22358073169323868247216936620367073652306454913081423325457941687389528380645185856933232096652668128976923564701981904738433550818170447581902026886924712074177520899128799466384267217423403211061919057707455411200700309178558198878572953252729378811261131409347369318544036869638556748736314136666233957817772074432963511771076220195957428719569115941656441452553989950296700066162357942953607304666259052769838464316038337819969502307539299664089065698358866101252901873626208854957967484881421527398418352305555103759525983056166384608152587628081737194003474747238185883430119262529575280414315830784176855391529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21387038086661420067235841425859234894996479963784037578253452678993612727599616525429653983760572167696654741755487794746751431778985294819452320787768290520820798418336379888681384352270133669961223809242737285989216961121150243982867153724233455499958863613450029769388195819040627404565334722924491068553254886736468852074696178658650357003246054639808281730162607336858402651295963087148248146138705634669679730054326290539798768795003065753942501588052967908369305402963085413900722754598633591031515365316002764122367187719801480386524509972609055519124484873411673546593249874922985550922010456680692760893607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28211078057940958324519766574069097658977749985932101343419145879097567062099222119432265692908561508215614698755803732169379305999771929632315934484834345604192215044120711400230913065041996689236845395679804953914200349758167711590399803672520869698742742407209182439571414670722046702497660524593779099015586079884967255217648585334542288556546692907623409346591746585116612955870177983399228359938672599610612797521914936439359018325959671767728687264661526105006435333994861237396884592174588786720426229561917903302695253105292490709554883316300275310793918365608765655346689579574628363776055593036869351480733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19899162022915652176467568615645816896097441569500188064478690206063022181963313257664086772050918653205393427938939507662154357638032407706464081743414785223943330577997825846502284574004011178859562758285434294530704659188011627216959008394022422749588287311379920528326418823735834824682920875588677532157053996453249119630488675715179986521238143239538878607539463209348681365009590049302670283093948435756517507746052873137566185397282830050772611497008782462073839254189389852689697220675102860726468066974977195359627048678272209587699506956528504186756750172610861341315024619612251276755467374724452496633739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24159621280863510202410893095524091054025269573394935150822280902377718283940916877086129873440937728734229075082186755382797784345210892326716630743352137071982984160327447562340760849359494670832713923079689382214483052964260488409095331478738363011804046451895152508180923744853743521917368821535492604645670820285231931946840550832528435183940137734478031044931670574034954337680133291574760101093145866294087313561595786547116358181515894064990687143844326805419326761067810537585440229828215234998459505315628280044519457028930805488261779700545784760282128544112170346067985263202490269009963703594958362592533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24966535839653452179599920315520743943049041307947232825972172201449595375968740251307190862639119687540345104416391658244613680422625285916687624128166791847407085948429429813698650516690947848794004134369555867174800461033072786590883716337146760263339376737523470658883389302506677327065341590016945810546487677968475474165943407108525365237346740136207211955495610531742398153286548404333477919982244949896640044323141819183925116992770292600948264936889021770404666968222718574127723162763177001079582967600560792696115377438662845223711558002638602149879639112002116475548871366201365103112117964988888341340667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22653191674687602077889391837698625629784255675011417762566480263886987926602943860356315653082045833605265085591231019473835718957986052454152124088464179009125165825955692533743774497185623788956749716140182696919413980516416039596604633256771539697364622930856196908738507656784531900577461349961199778073887426188289900608489236064064244704645352675901979342962591357528460815164712851939154201161823612672242375306668662796102535058088834320211790768632668855475521798504622520488833057482382949932981759883486564978230716832525490093933408659217432822678943185686859963056714936900510869875430941322245456980689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23731227220619763740502252265861513617171912123154003440991394830992762018882728119354323799035950868640509885836860872649823576137167326120101817969891767157043127005773485595588975960079090648749230398928339365243272650492740740900663327704865893576351622063938269691958775259770309703123872617066683050653265662743876448534848796703484990113669163974239305608294919081786751128347462357524302467349763587389129174081679391373211862613880162246820864660679441541414312320792688313732414960256259789533606662359980416670979833238585066779528469674294435094350467202540550695006323835763750343948385612577580310611033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27888098829107751607932767878314302158055411686754479724205585970559929175867278136701068103052206661926624699559472035003951730546454676071384204830571296953568244739252321194381780013179773363570648893375015725624804477025418976969046481060429717923529003582839650165317699919042942596589404799693079807200563302847132307990163983007081961464429341195540302472610493990942519158069528509781239141727841607904954056838987745429645913315900883289464461831475117640584659899822897443616999615785875357034102029948968888061997155176109631846437666014347692875280826923910443105227809540073701854144726377983837252118731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22320979295627080367310505634309094907516292748577894941217247168583880504887961445692252105789062183182806335488852079615186537924652176434240712416952002244977823331505653114637191079788932499024729070470294069836970092858967531980483461172247761416500702188984849133145456711764853469230394189100855392117271567852274716398899412894613522356918385399278466910190873592200871022884703011476541125238570203167929600711433442654899249405185753691501364369966871256523203406795455278785075115855459509864088218063477066160369014536446270711327526760472596874311580136587115458183625624746587589434850519596256649374937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29629113397814596457870055639317817261720524009628909108323637055402852445539825508535531269999679580537093065766422039904702817699653382628900750879034531263305250065658469154377959481303537151073327709303769232965442762653317719599280711818573700700392720334411811493514129537527071442354331542625960404936734254051678409113770229103378158011039665408967903814798468789882110686014970345331793863144715371958823108760790642167370508939742759545746856369245400432150082267606970321077635600387791906532968536501383063188586747839283818054155131150282831733704684447614407094223760160114929058689230079458528886759323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28284545801630519959274524555159128716492112000516589847200817213235654873967430582741578659243175583753339279986560628095379109913796183190189906410418751648648570922623382366509885160364858248727862539022659830467618774481300466085556166871743043032744874954163005907340881588420137565718244309301571731570491167756326109353089705338434887718760945737236596279157667563085117045189078521216277038851487355913208529478640080567122266046756363106800719967556088409105618778378577312127734567145308373487098056107784923254836207271809218078526558707668969217757540458511909334056207490785502136769045250945323993087929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29034969647874542364925744841562841230943678098927224505689545848073347616411296401012024836542701021749983372784567314190291115106571866316452362866220139550235090699362934268921783965213760367437744604553098718097322059268093772125225581428525205476122470547332968050028054016753711767194800729295498309525078314129967853204328920737368170719933624848612260872012060126845967037861860848083223845177914406577658141888232518092877904120507216576545163334930627844073753323093031984761608284690956327057267387858334917928338298274056921320189100139139227190197986213311960156997020248161457461791647312493351379292451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23600506075109704080161413332901903336666117559928138065909552468189637056680369202750097158439605388780415189230996655435330951041318044477374739358387597350334174216252803135086501968989226212765382409191798059988314299882709937188906597319125288394367502567340269792260003788609940628681319099486263797019879428753593610441547963123330474656644070460750355248714115012478318650463714438470571478394530731852650761746219176446544214324607313851328194154312550377163702052621204888478247876134902591916703230943337151744972951929449488256930813883409818329890881537161372165860796701191919972507827433399691933416323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29494241283106718349563244657783776969140823616701949670604357941755581608700319089884404981303811469414316604199164778871904558176780450474968945176414922141140978845185956501874967464234948117715513103243913011184685479468705284528633401248763420059401717093134667992283863329511809610105297708134160241971165582777010271813217380748792315621695051424120363192704133982752667392747537460115893123412597020777173095948799128835914480592664389421482270180062808874535604921631228592010615954050571682912916195742062116813187466238518938055670732596023776471833462898966377142019825381900467369566083659971840714856781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29692662329373267440267363858250875777010128418975647803514916872777063409587907685266789940161236045729086352052878121279629485325666214888795402957035540178691572995747183979734455642559501358129620667538953951924864699211459420421447217047821345057484488381938856338289870196142019630105097834384868396071858450183296205434834729027429943979357621251689775667828366655051746517713548922364024540570006541827730894914554003724666279059302436381110668399815140908588565688841054883504844794935439384890082529229012813146223846241082411068887099585494039485087535040962049249376983164549259778091842830667673630920699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30930137467806846383646291744107615029345550255239105138243878892643951477229682040896081198632986960281821272794037122673515330714621571670256059581606638705751969119643517989022391474182974815885884704290956020223770675622856509919786609644990284369595143688758701469138300707491425322017687213629578739809347748858250289239500064854692221003879655096702770470968492131323894563230101593208848916253872549328942159412624436453790662022204851978884856800124366537212130511639897874666803115466900289560866383562664564214535738383427086602087144534188703438512153627343123546637991992661387929985783705925550037557529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25223542331561728790774799045597586738807973955244707230875849293614250925087791765108277392798806550866282698235119233139961203384218326239209404508941995396172903717231311070340247965496555041602753719691759684029896349346660991833787347574671968807958082099058695552435519156083815721928879683930311336255023297325716853569422122527528067355020195039721857814110354201634041495648445336602271900886656126994744353855706322989075214580963082297798959136333875909492062102702200919680112137084717353283745477592459925887451797594857279352260424401760901081820717011683496346679426002033132315680000634457266075713929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22248939112543208050466740158144185571986904417709286641504607757225544511708215171048685731420521076462827538291854662983842287227147477365595363532075699829752770891794756608573867700640358560634374628929053995120718583573252657714783015099638651810303438455671114880719478471282241845726392840559183651400981801630481353968715598174304681532741449105934295144867696466374393445210851946286575995077146079647410164847884758192394744734935495407686989959323868282019154632871674809989138881756190329061551763377700819385274682261470548020606374947968133989930867768035778005212471311673751971762933069368978104772629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23475354162851816538820718725341431506111852950095475761717388454853600686829225245502411702299769211897085311506699901515670109160920676078658697563635927451123837380777450578283554663801971516214337403430099146298968039763868762911310001279603715991401263592873015635206386746659428684085686866212569416183828672095659690495539164123594250735255895666135693885715495757621684204716216323441205176178268773888327896941185957062852764884743749594532267242376798897669150593738531900739143330007559560790295675416152518828569953227822765528890352095072347186085949019237611862319175032806831434477018178413211868904373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22811483921692003108340352248681895400394504211882644756188688473530798833569090213047804185520189274013567513190934007269136174483519256623961827385557042735253887464426270672008422855616061201893996142825140231255697986663821745131458263507330430113349650637465356192994803894650270319862913374722362568331989700147846267666853831955154858035940482087698468211927849072453994983731945398282041251777590512314648463515815491785129936818879083676318378410322381383975717323012270585970331648218023578552661060755752902541983925047275266531445499368690747851306293846894306588467774706775796275305780069383890165028691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22347533186483884190075409058141735071262642523238626263112226276519908177109796178907118622511418524058605086320328395620519113928045620373016406115760754664524713556365237569743865914623445100265649592070542873593687749216703479043778140298256003012607381631193326575327192366865336199856815117381178752975434777064627048205000900536655042076093640166981487706362344863134238372538891795811577170022621138734118984216446840615727801606966078785309392003001746880471973571655523213326522120792214526020232558046233106820975899624512819927472404956001969983695426306419800699041855073537583144025022130297825983583299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23763678151737857006527932716027657923653177678118843511646159621785118523112774714128595659838181898347338567251184054212465515177714188786414494431254335042077915200512507155668983270739100626609901272408256984288115290286366725477062753058290797203652953997992733110768671481908938168615961245843872771842337734887481508772596646831456296753419648491871950757059405370668666717399437974324754490697230445156018268932150153621380298819727086251868305176217171745216234549664491692464405822829878109376888105816352719954967340976084841745170343753506951848263662671101540147285203234561074197466632753029537046043321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23622675642023761199143052165389494765498518031756837446775705789876066155616615446736067382368120828828944091401818313329467844557208878328828223156422123695884299300210045048545544336309252009382821605554141551318059490348492292342574125710546927412550705880937621439225540060489343979818807462049581149296081601846442581503025669209729431873980066942711968444336573261819607112125565874592747898868930377982268223021423835951104080107387241648545791147069187955888455302384802852220769227240905161431730962637221686140874351239268281218375243708527860238826606302215054852697869135963562427854721357141238258745481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22908990244068434914520181226903489396944971511882593581060597336067271836462370718216901748722764924187487890425130743711331147655711610156826043521757655237231039664772659070892062210064168087050181792901064453899025102579864530769503082341918683904253940906940699979332694181693882456358795008677003186189623394016708090086701344218419200079381721973517641398436422233948687776218212893206102570089595865625035048150337278303801833862338155642492427133571377416387714342858319923807070277868383358585019812982500719459423659622638868403111451721685604977326988286008493535488059802073581443984814336564248973817279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29297436975831606185529400735737236905989325751577812795283625417811472090682472565657016974967561223119198468404401291240667608409199843934303696930571304334446189730123957526380868032813953500214991750220441028015630353439624852768987740045863581002438451494861137198882172533210902544516493969488710789077370817213376533435460421700432282757968649989419107812294224637906271745485770054822840881368480494426019984842528228442725653705865513691883015583035639074016949628870591434059690407606957477607430585816843443372123712963528464480117669869531105065423683604094910612128307490507202507611615030547982722778087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19399388509275210450943729017961348342265570655339869806754881778125412517410699524766199624606115656971328129753157906792517666759640214864739186823360346237483172414210774021682909060984445041335967926434758467606087651492558684826523894320718395967186270030132377121219829134584195493582447484699111881365575816151152542867170506771738097101274261698464425179724977597789896189087850903256013753598898483741226250551279408776106227869028670264367188297999894384621755640131262139488170750172397619335108409818040247039776504038495902396208627376928269094354776695555460243292169124913685593088632070909757261328331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23869308635892966506944979019734957696252643093482475111070532738547003382403350297809510503526500297601078691795075370353139236674147973199605201062491924685525818193507425271140467704846096637382190495019499102202401404605024157824922524525819314801409480277955784394447932156097632165965828545506025783026188841636893295146963105834351905085883965646560530365552338578086103922932919770035533597320044249234135051357716038558320551290158200789672155767002278236381614086696144829631876758387347785813514298581125892038054182780118348722609840724191393075246425971991907648646224407843068393645497037264286177826839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23261415367042067069209099141567909988554326425607214702573530642577696170401665353166072933502390279434445289845590488158735566963203903484369782715843064327650182737911425179096114241716504236534443980015495276271385295091192448295650758220269975598095199521677624682011503473394262247895988604563709114487111310789009126041905251536768563577538686103660582207787241449147861634037161407954244492252617879052923727897196624275855335265166170620365237677922662722735382798906277622470875897970441270111385282844642591095015218237304419886600842859628077007211700811094756022197538960007341994313133758582273664915499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23319754606049159536875861648076730488567125547963444250861508946512111429090873793678592617604122584824442743760585134320042586690895136906138148026939635437441267673124011693297066919027081882212499621500370257557639760554480552222188871291829512714672521384922286752626801578975550658430793806196017597405404871954227773031170298901852007958039514106698458271000339650608439417653793353697185345425171803089079954780923580574689168800437737745653585441315126962065041127825940882570861547130106199742745275045180221565641294161648470076109288471198207020730037884283713800456530332416289814771396648021171965435143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23073147048868217322749304837733403667503013530805040296552429192075296311953994485411959433700248430780593967433085848470151839794696202691778337320904821528601732953659635563545356702660561645476545154854968846068802885759315424817556514157362858151122995536215935360371593520882419392388351499036052761295998650669374957702823974495495355328030960018573845469552483132171732454309470073836870909702752108403727738072272290630729085380524384617166663590030057559256450182117570248534772687687214053531224220770945692244681342640551529119019624415247460433780421464053781556887280217837814943042434784399289413721157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21978954402598411828729256507193356344215898883425022231435589179249927984972105734987243175365322958171251069252432786692964349696379009257053280555181439813389657268336900281363384585594951714750141565710283494733240646926049576692867054998608380722918306064049101703459547494082808515980909669553699299222456438094621935345039303499475935660127865085851302373247147454882008065111420832152894753740911873125614704078383319601432637410089044505997720751756425661298197859102489361870877751510777435788805071013588154672761479766162246876048478967126447658463356062237193260289332260830842479893663516514272843514461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24025089584037292455613128895777537558163142376528090578844999357235038582970054968355731806384315295537127730788251903447455064613146750300642419952954860984968059802905182056573759732236034219061661211413676835888541251246710269312436650262433244037510383859051283748126891461729078103364490331762467353125683128122746327671240201230592537126696438397901776343855366307945332089743728007375107933288839289980414053099796969153885480791939403147527463575642789010520627654149450776793156839359752989515616407527248792027187776570780218849776941316208376549804105787178978266323719829643572856275280526399933884688079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24375116618707389680002923739490250484565485214994412276208893359243904820715580915805373683997261633565939018900446809497145796756303722496182581034579560054864590723206398333413557843052194010916058201619547280476426131864486786304543148293099236398671185701868488056790139787617269136642346921219331049385183107574903274843373092906822310373002729400621447420218913736487520242924972806469532589492414883535681889999203004206918931255191935252497551970695845842218103185648811499585969716897310171418328550183768829123014832373979622417677017880346690978005118356342335252362212118301988558603509095629776000863753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21838100856461501976621373098028888934104797531113323902732095356682447072911936169049935031307831783801052537289670060978271930832093539246725073510091646867168157240223503164996469721165778893300236576774526462858302506404472320792027946086171395250048850209373558437702092824664197740402876987366046851983766380798396674567755856051686134951936094199043463907750352483653978717414002804750938725498260586845649123020922689297744851330124221982001280040362397377665649839717584648645582394082368370261124549391989074461118466487022258286966989433432470762862864024306965792033243853158564943464785008556967175999569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25490844971983890686441004421150517650466375010678788670302172505335044426852547515678532259284609271243041440841315610651446571477131741142118493684638464061342964092956545231333270554530761038501090022879860483426454488898800717330597952325397220889331643906597375659808652367103381174281375690000211771100656197331372063680569645952477484734833244813980873497610547093020748862949515644260263074913347482334262695659036400574487641159115826630822623279209135170718833237112670018324287130912519268694434205049745903443946011986165170247074163174671446613981825714866973123770232692732300505414927309712243503256991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29740918796846317021240589874533797013940898496317473995533346459383818062552534969518244795193825241870824680550288195266000384545258279481070675975930833438963237915077173397964410707403597332297618114078176818857405774422775151725396629708444061258003881360842858773582748441985423714349532778223476736470961139588984532421630022845614730112549818216292506121346611181814528304898848040803403511605596769512065274137928880965120853172730079454137850675445570620300583315731698940150701922607096054556950524815620765245008933278665316650501823309338824833137007839029406734717045397491781502320925162131125853718907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28303537382079960339581840766388925500670066574487752497106181258610524588071730669567193088644192077039554870374431609028299009162622145006404407293288290988316062700207710979066941071326276471397273322232450833671654776610634142769944807922764003562763829218363196292691972459452284462110202872010491097437016487878898436109925409076658221415719475423077565884638261846752824641539441956247382198914167706653561867709682408408898905276477084018511738267292267648197225683386636369237541497007824282092782654303741548214761196384598740131566880330527838699665092476273721950163203202267785164732182356755086758727907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25224245347827510730911094599297504507206620182891095090235374736615298282764003816682695697111323158516745653434393507373032305936709712616987770078263393467466930638376809167760713447651117351869731999855824100467277265045972450830793937741925121002125880673280242206925798761848573282811799026980802778110567792377418654681285388935828770617676392560671258074948172303003510303329512151998543893010578705727895624747325690983563143647294548918555284553168271010422761653099238997478071740810153668439425407769053183212399186338396634979116321288952277504712897883138657072938431516744555481256613319427139880945679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22606692208581345212499466430094769343523021636958599351648539729228706652009149077816754964580966661618535328922910390347676696628817319306992312137784922843985544585646906061122782517792324648910131782978211141475951736987993939545534436922333334101384525952223900231450603450316631152928728347522816067230839578338020491665038912809194930128089854260009996898750686867389853617965852164232155243381632368639790759736135892178830368249385033254038357066916655807474558630840141637071868880045253856723619963645121737262833735664348917614118472516569144050197664448183934722277532727582109158784319856717459374300597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28708041946925175531950396882607397968051458416143402342456843089860683067484626617360134208812075414761228754954548834974835136177617086556531809028028964382552775182312868199656520285319134744860141847142944354807752858404281347771019142349730243403941915842116869651129707267168449849676236123062239415629723803911629224832946299954421227794280265137373613599055165998638659989801362574401021946283692277200783387271831893984381614898254240529671010677378269770529265658015015102403198478822420765480737297816112874114918085862889019724137699849190026030908333612306938364462722216465145442772635765952675481679153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28140452889808940645080654324540702763477404939582015342489189715787496445405674905521400210021318358947263816163935277361618732456802924001915324570626911849206818004250808275574374221253254683069979501414685193189770532794478977239398385547282498674270648349058470088719527847128779965401221529187839352688200975498077133516219101726986057135235245539717597920985182692941581112845865584267229385249901247677669898821353548393458339827372869672381178538761314558468654196944286736178768136623566315585882019689061226155888638302776620693084274291090860792033590126140389503025284112540379276375494205247672570921599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24754727400505222972349560905486358783795087468215434066543509350380075523636526710751928583683274415084881189420057331200866399968882847321291108720057044255166813248897207936281473920637697341911411160907967132481118184941547822512237642219446214741628430370774369672454520434005420335465935934453449214474726244466768740752301640857081758244942579633324818194664266816456874413248059080770141746317451775842586685598596011386383430216187723007377255601050979965764177544827421382979108981083982175546659954498457774427948449432593045057150882302906300934768394980279395224409623579834172122155036862670180683097603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27054577241458424370237570606549540076685079734268154372321755180003118096300727615965817425049985091500042981203792828724923392806308490215004808284987769361908642293100550772502777855855588237877268703921124878943916225712280705476882908216434385635014962252417004487641234169353308609325463858280929349025151252290433921129864483267660017255815499553970077324023881798366448880605642271256276382925388364683245449430491983084484647467647662126630230500713046872609782246938754077583646957523033463017734863926451173762746827096102161452444890399297371861686375676463607596602800933860069569686474608521498536687461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29130541078883510036618620730403737976568160913322777931262734274500192937562834099215658644505867604802926543963640051924355595445686991696553348400314131287705043164300401000392781301454886154191125224298565903565529696025361146368939340262611941474749549652440842087317359480941274216247597335647965294055905985394192197348068616721397586533525812562107748420445397164697182558799846735763356928285195929653206652062395550982557199739140565074467664663824502098191645993365873620673135830856810527227274050960051753941514439618633648892541624963524530237186764354832492963569085434090638010883866596304851125658147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23173844025405088114963079999580696064049240836003522686790008733692704966203365176597953682715034839225421965464543617557690642697527658099351118460200597357567040635685576832363929680732924124130823128453463872706027543984223810905182662215688106698703152668673331757823529312082604173396158986851194410732550038063003636838582980296364691047169584636397281233322252614375418515900394600455411599041080556518224255839793956197503305075871090372724723107867752414551581299657774924620374372464335683750383429464725955225768282087969797724652610110944812994999341620470659403878626105494415194392726006589393950785497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27017281172355186884467603944537576335479307494243705138539292978494703867021481103329218680371755083757413355230243835368071820685903363152661663055950945031802398367669178844567524940612681752762617232228905199559198155512527406480614702337121788011705777807061410255416931504836347843195586771563082170172977589086894980095342683740885852125762146676776703750567378130421965530462598285993294888145597124523423715053779893522368325439298758008198849643077496358680301354494025743425433103959521553225076544916144319570747450064631970925457342103549021688157635842884708075810568485368110474251280768496868271643809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23237715763507661234456068384558294220680994891963724140984763247796447090601080459212176195736501832784586433879035794396699512975870008733584519860686992225490593073721213032297178064269996251469558933583773841087257714974641535299486667361799077442316797005696899036781479061773834026698247060316766972774659077430196467280378768447174480881838871422798925709557667895868746177602371587673075159415063836675975390027313255288503605543170440274174469815195539033865540073961168025789328788501049670146132578467449699579478829084486993497950679720708790459698054699298595085904730686025314258945828794654614664926797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29882829476337784204823054826057144945602715458069555468579788176579690162928398671254064016876280893949394738211239327922626622582357952314886512428148654605347532493430500388088748945916040022343003300907770839414256156049443436523235398841742741865490387498409791691904411022793013530319277866425878493031751275217500696964389378744778418431652504798553397974128474806637702183873558680937484432346614247126986511842597186028130882218017428161760977681684728610918203250377813400627394148597477054740702579957744654758327706528450576928627693195675892968401051481227073042136791573887292480929406885598694674218551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24907257876882368982953619630342765263022221515966396432053234675187200542006349261226700909990779823899776716399870336102086271177012292611622060839261055171330684014749026241792391692569503967566767636691477470755772057008017482440464747637861242972601416722819758132396696451114966125281146000437658933156439723533648516418865070562288168372306607409349851762622592758900027942693458196510924624808617288791887697597550604834661592820428264034855777141033280046304036653316210330754570235461771127461168772336658314768075618453356490911946082313063667242590275558890954273007486664606544337397973921979795338925333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26605058231354246364053599421017911698694924062340974505172968645538609160457889224304115858786021755644834456903745321199259206604098289017018321600242126421337025502593342377915959265784813405517396797515983476463935060889097866663738336154696178318978455640913258002164988704727071898441617714473917833710558942359868384047589158624562428484507773524544289559162947666333655814708276304913746183128094870320714918608558057811601209749666698877058728470146898419369176993404986980642329537858500774740257549008834488805493181426637257193450987020498457075027567972661102628735837214656328623404438524966108433652997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23328056405000018743593125201793880400223626628877058271865180424920885753764692560179918307776594038783372159457770041157825864389597857145148907916050143011618615398472187840251098255570311965348259755737512916101563626863932132520584402923740716638093724126677321322800260386052517067105237036995031012617654692813480869789604893928720060971217921697767551853573276645903486382979556606492380563498389356505126611269125181689644530938806222327021768501174379340781683645842436451838433500898900992340464884721578009345717449116781876768229874990765961133462506652227721014016714214957029392651298991352879464620111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23520394205769550579135106678310425754742436640452477911823256048533565253877212505660023986975780450034472960945568618100732194127853130560406751990643295198991014899573957935331925716075188570664758867290419713915581417779945968760525658387672458133656361814049294187734309297676852370087274889982011600973766472152077138266021766838243611288145941126977350741332451118465369507009100419274479197182678610515444820126447997236558817153057170079423769972455266396359072824042417463362087971547741183380934285299599445664459714219395194353079042338259486783788983992353889320474070751003340207689478420004126337458829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21511327040185719048617596234729374194422263903630824998270352433833155159357823721849687084447270675847083046612885574912157914758275904644767194906704690460562205895026744348997097139414453977549060191020638729252131008395357366238462505485994085375232582290459604992385615337878627948805487407119347226769895141922407943926306895830823973079401664584264046914643810111806064038851640481412372489228325587650359334908338740169383978565196776161960782523241462666560764847073435712771459113176372938936513128063915144296553531866584043454202381790629739892494973402797068808642649710840893845313872855057458313029417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23405149937515944667632936914129096764376720693892117846327246195045431336087779593563925190061039995877120260453928525738191920317016329979430140182248750767240273668570946067878707043218386631387092677488192760680732392799364474111512417069512810062659438285358744596634402233720819313320295376100427186560064784225047450148811930563030768615984213428762301165048709024097856969828441759230937000987268951136189803110785064712271580601495070909071854395679550228788960137086818174327911714299218604126700180136386755200996481648091007950138583314638944081466603379699066541063157861214891882722474837241370461415699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22448603419751710886017750853646311593023987267509999388178142310534008197899536677999859682869290555404444351564204898299431406586387702703774253363240686699131145630183881078795225264078817229934117108451863817858833363630155385252476413332634614567662228451638151341417898014456071697199130440848212845051547431000951366351538145556922618856453039483831853185983706644965393330922749918438461146368723731637154299752882860975239598292771391652768412394921224702138257963105097032971136656020248760300419255548321120359905904077409049931381734648613667765120568943235778019542052701225614518184727223204517627805183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23758634786814589029789519749075160020624962836428147120961426436570152025915526210570961883367364554703323994422112207605210916344756798638901971927886233058769275546530494354288911471595421612064024732144663359485628746974407886882461133562424224367346295363733302824277240870381967579689623200383206011084638767580370105140719105809261331466965169184246888333502911055741667269484525263518936074638806922737845854649745588874800455166043694089994985432090912782537934063196612696725695111055723091722381601216467523607095818604597007902575441959588539234055596322612848579037009551599438082546789511145600449019381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24653305390129722662246567106309769105921771063612689982204538722576293155090973092020675441573820617946270360353504440345501855088246356221177506097854692459899183062760120167299669391361827741974366840680218689754489375554097589105184851806223633005461674593191440801745591809073863611119076960453397146310088123355240192062855352836967693608894179757522773074229416730124405567386838486698851584048083365330493484509099549091464571471119670360975547232323682790791005272829728135703550765090398796298477017355970840436159204102222369176684217612645426433602910206298889860778414864852134112295439176791086450993263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25955593966829971436035889927958163174918411490493734456333320949402655967152302890681670754711852780307939891470389284291506946155530809375659937009906294889086831599210462606545521892046908216720068654023568572807287512770606338031373518179597807458803452243861822021149454836508494030478140300720198263232717217699637564122514035091964061475431709796614763645851300483096706881654404599849779390674021439228535408068143268977908506288036393239203218811147346427998291421765567117514527982995582495150499855984342341304324131050138484828743932751297289706915387203941319312820505482711935452747177687145435984080789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25927128464113392060917817676369260937086566086269902673630929894000373624855098539401667609267032463362594283707698178792436504242638240115447780172446871987182162329744857577468742064618987320457608202445881481578513955357946338310055254986701089796210946575830924569697692438004571031309024223019901793388846622432485631937914283020484234179650853918945680164098272756936106506329131092966534174856998301927712665851796391280036479028692757661800114336265148833250341516824367983904231483368697770229982961262260696626778816790007411275348519232303735167942233696995851232498902753843811526993959850887724738813547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20766876591955557897267152274073871915332005844948270659093030350485395413585556534466056796954399546276073317468577444675813670783579404905745790516277822766999562859538312923973274042898846370703575309762938197780261400812162971041613860126762225808220916073598411376827196202471614274572522139753097509835174409010352466816039710542152300955825097395505083704803139264525790892977873518470533934795665493038578290584453124144579008135174403204604750588377122287035859870269291602210702581794166888571250363654343629071562653450329074106172336681413294377626781713825618114227440617872480998049287322310284058236249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21147800552468850690320276109117183874760406642824368260697028228745496930149870230003180546122462266958791776115141635008999617591339214413951133415205393427010347439762020798751582596282468332551304952006607898141858685493812193502861055433085247627815053745416608750160256115461403202275856026543424283851297299417083664259049086447891674092650976632490464480531679471820873242656578507878737268357055663402011533677525896101817954888297195520112835912115108527319297845688077086926694219203478672843973086175214367969807722505807495731815954253878603918827139978302661126035719468763290305348565665287862966272243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22251872458067926095067925445433602099694247639328957697535962638813853775871703404442276903848518179876736326183924245639217399900949099661050786740007315746359162870414961561377473178736789614911580839344288354382909553695097124735848731468232281051205753997335844075178940245594747623305593054800942931466249920244817813299366885953737237070036053748220094813309362919597796453002805966849039715190365026520941049071584782375449250677036104430452275825657517758974254210682088078846115969510578519083337634844908652068462737937311464157036684877548029084484116717368643531149377702290528919757078272021316529620193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22679831059662539105499711639072353910889964078148019059215786066535612563031156723377253799737242413688648647608464296820767101765995961965502676003580855028776626850749245342689113272425044547716214147825367359846379214981915289978005804871645610948556742244848419134233159405174009588210621650242521948173965557442526508702982360181267893113722497874577585665406033299042473013411697489456178258143729058567523733478802679404374719892504185222762767758003844363742601187785490614094214876287476305816842568233200576800402014895539624822514589965933164497858043913223360717637110532294073269405196491301563602000517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29610084926758902255242464754513444460589291182634259682082627083413306872662585629185336279568451073058309881901750790796622806989147399472056840124055421870924096646923408991445727303309254223626931106347000301158581093029082257230208457022883291406927751303932095138192747691494958486709655211746532101089137154912648699202957181246739194705091688054973587402892095452449267857900344969475010743117560541442406752296555390691551101986150437936818122947294864657980394162581679107761025680438832891071669502362122408290309049086307680688791959346386636720339625645830793227268958550182184769318864866287557770375933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25431711624906013764091991420732774961697628173544166811421428732800240043329461821451292162757064395218608657756403113068009741128022504826944671453953869674773763436050378259455236156196014222473998114029550265859384752106557248861001016243361146430696614446179622361183333062784312712032544528134993136438534027625408812571694050192044492798788679064108578623806293964656129737546223054727996790069827343566308570112816588343548399046255785672464058272185780089993046182297274314607007326158844060612715319272300502776874101373973035366094099029841329821455793078426048096944635480986707052345589291140353145569387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24603405350649847401765573861995175482639527984339474519554868568366737375614708497475766908720838040234971589170990351825508490658683301912936171430652114558179995083576753360633512836662227491503190817784547725808450640518384403356724455976556865736198665820582950371865475004461755720911162570256912595316684012434363597386700871584851903499123124484970659780556300909065966982982035850975224119440999320485279871832847632980558655053251989059080623113501900331970579287020033934550767866075138502293097511989731931566571676115590554433722857244761390066081950282246677147079094429095648214892243965319201952722871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27898249735169449780954486388204813555792604016766042211780590141711672156708446674999109955990504560834879947466484768160587465895823366335746172437734462758337945998803364291271547511598071603088806009958744488610845394006797518389219801777236689099239403177004649029673176899639354391844992217871221624297071164893323673788733942641439787507949910607002431378865165433170822349287694934364533967593486506307266341680231458183481607625571562272867003690731588746318946795080687604391123293965582777650489168809156243579674924960582742728240237869327638597512484281630007150309706487670813443130190933785766940084691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27728140520824740813044640934401513890899757888305993895513992207212105755979440501114668622483970516372353797351762897751877021362473488625637738124946870982356252946095649741977928636175202692675090262007802017256499040561586760836868853776988503122655982270855107612416500374767337067361883148300111793027803761656588171058297443437974264890564040332808349251944103466773048309447884401485458062171366491159258481411082279062110411068670483516793414228852207536859654119949377011680726511394146762627681627502131916030570071950422110952607442412578666556636751479626488691694782362632211877678061636052063931076183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21618291231340301621447655094767910182109916230397432300601565447208335310996297414195045711783623837891450009646771225355266994407168203927145938550970105702501765432513588957067251160568444480659760707117271720241209032563222613022156416831992638730909926250957964757285061194875124138479637062011274801915880512493627765883652828260233617194878350933303572284197223840355900825243384377346872968815557480319304812829292418937663678828530991083853125584566481287306027755415889281686971425795907984215806127927883289403943952355708981341611280368561768185134210162498132588928196124612478046051823776568237818649643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28907937107139182099318750945190558019402504347034783195765968989143202831506743986796980034271632012192801535298116922401075485485117218959517239912372927504401220343954359135328203565407488656060184865352486511172603897926611882585202958247008817630333303360623585206821727059880331891317048797427412066326252870743857213097601036524480198376069723044354364811985112291314761065949883804551441557788121773816443794888845924480113528213614050477680022028210287341310478022230301726111309148834517058541097642525982362999794875798027956184736100089088681164028676149606328694526569986295018206207590174889196375777019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23043229360633809254378732325251221239347607469208021353226340676407384649166795284908835416575026295429123584922283911066828962991545234335436456119572702059339258248942855635777126713678134270654217463605693802242486872922645637577455099287643346959794966501346086526867672763977770758096157390549697066644908667073160530550188360601854599310993174770575907753505638308123374964528297304072588001796981128768255185946911767367330474704562392181735089712070475859585312110384858601443258475686965597331278878808269962375654144361509162851538148000051399701247034418722641054805470713590586670877193363434436698385143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25235136901866846488296809599259315320774270725156087159064370708353957054551176904670409159293914767764718786239402046234774753315392079231476974654318906605518285927172390064461057104230198552182163405739969978981776796209951889255206708916612834586258416986613626514826458697063502802189875793694532661934351352924123180643319968873066425359230510184226875470630718305353971257888043568735496524211961914744941003510299667338731215308595007399430520376223201807481029711898976761114922752358023700719722186808307268753324878534632325776966263225795658056998182166708017541473063695477548107608266586243463407378371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24307525328307084474381412164184599307909880648666990500260793922617095059526744284962932020497930842736160070781096156358982663549439907019166201334529564906708313163620604799920078559629281914278281190628769027489398220822706767179379144614516553490526940181224163256840805868043588953505318522964226290413268685752679254077720572503002166832353219193414326120083224282265660497610857863365623889658797824699013615010827501246160531766752165444424405129176298410347980506345206785425894641203863114954495196095014446972805257186088028775211231265754454213152795072438887757498191083797616580564571866113771199219973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21176138973216973209232426378359430950350938602941050040804389113816449225561855468594004419332912966339151180736184660107216924222975687505563012905192344211004534934741286975438160794401774033127299528283254104984411937313061576717712582515803331014784798162413921545040036562545129930463425314360914038088759090924061733214090699574877617412451258085484895851193919002085040196264215670811112558764238018574222145479878528320724722216622047920960295535641151706260635101870221172402396868287965667917869474331737381813116124561393350559349298697974372742371841938719299752291157759969040736857458836512113632265547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25010160150478845039391731016164295775892367865541690356123307958748871367008234284807594740765661252853259398626596307484526027226598258691120388933640826132155059776302777886681140307173865764941485770793336473751752187702079170960441489531739825567583511503594783631520755858121304612478314684143306618886251564936600011714080045798426664737921857730581840390413187934137944323641698339689293877634867853503100882990777208730391327311687403775020451893343620651690165096339275794526166408613512028722413557445167678649295579887080662529140990629059467764999251371857586451591126721291046314772974710261857831762731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28838790141634182852542751705361404418866081002157248583885918103346425674597822404228061689494141362601122252384311499501888424701851199643855407049227474321799996448344361272475777473236159160321456162986819877822964084157182588735531317013864609474194247068758974301934963379851972447877102330956830003529240595567388742817079112271378087870068565954208577255056829146243243529137793791437749698494974297773941382031178830299101662967441177267729341810534788882948855407288998235038024223437429571160665843009683900096371175505095574586207038305659050577163685362112132770272694495996895916313270890684598268892083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19966819084364521591549251021791650869179841862377307773319573543116004327247681205379756568530237249347254625515148881644087404952973191622123151020737623794353697844415800905049345198851820196690719137793257642188412996424767293390581232007685834634166405203912495721187664807094462861281306417248823399393267645813264279290724688540913566435327105437231191435832645341835087299977637569446773209181598744957926862009954398414448273171617480721775542305251670832684214096876867359151958074814398103674397868604464862694541241441926181364014219875411850147352591247685327302624764807519815979220816328795600985193057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21703174967557844823889034256338308276223268524788834279379996466845245816131133669781789863053292747010954243480659126291450082360880847183403716677451715440088671162233045433667652955623079121400581898952933503221012179697194144853749708359632590555420832444917849111547596506227140073518017336412711038409437257808377348914101668897756761487211601993305123172303544162966422247371060234902425976511100663030582833645704954076402348741310726712359573033940335055142823310080862355034377006759478725208479350396139106235727563639517751307972572944899172019721228271156924037871062701430695469946001800989500453703027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23308243608935653284830066450184548909525092305316425246389406163283195577628973687594982994421241286347044130705089439280644361435224220968852061268302207452737986627331869721413761680406457886472743863181652465875423776482817603923670020655398528378642409600890920994994089344637072294009278211008079237448812683910910461215368970050955490943371647599759513095257416531115983326282852448111152246749567923904543431834523602275309141955758398464951836511715551884861620530248589387444485677890509044286588079287101692420499854106108605735567402158674356020231592156982264103115606414177214029414743284712225853594759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27054083787765963994930607812299567441695501215890687836866047890874671529023427932082017758520764395823127286766432740437982970697708773679772575041781403825395798576855458281030091924798934739793372676065733627698629052715773453172339445885805178923099204590787003128091540385148239098126643413505006306801686512442043377750021747765661182419622440735999043587917266653463784375364108444805260197203403204318498779210876018628719465174581074635630749193342737793693243492882136218052622240930082376576446099440178983787314997914819059693292188451611717868849743815785799883161702929690560463841655599785599041705897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23287714463409052053524066505724022760925617207808949758228815632720130631725566307587087618562235308662755535391799257384885566530338851410371365404797427107148415275000516292949723193165336620492708319526564169260001835470798562052208719398825526460052403772508618763250193711035550296634173967861294441952106252929116574162539899759064648849676575594923986819872773687470041556895663815898553131859452132704490266116710656008979564232609086264951032827324892513774796225695627177242051736509457935283671518072485837225742582608318350658092880993086241814836575815692641661791325370468775298841211352451764693933211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25241352373987324673060896738195386381616079578356784808027058932699839101152500555611441734662994790483089484232120374499114815924420184554742659104403330215181946382560590764676424343048621104101501292835766546185490183747453397002118460419930141815617677117152862290494414096818818461069028430236299492193428246503968242890991162054652802998254991750153635394610062996528660225199269598072564847065440481462214596987193849243579681543952148130192400255375933290134814652778701159036330143645348868964846423938695959987001083245820879614559912645672145677398252109544786424266070196310666074978860909899581219628839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29883376801511302984625314524264409224109730197629543269498133178511729817243848202280054057187387128969367153946766348138775980393098274529916859135133160058462639975488359478944886399419920658589559409143460392837615466982648313291501617807773979982537288725933075470707520630135144539369983717067816143864229969161938840981566552710250846761970723122965927663140489943306544685447246518342903540470291790303828435992984145773081696095092007969001449073614871283143568083641472510017435892818233233996475136852908007408248657603055276242016382938983973012345026758704427223787313822858089127305001734578955050586843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29568350251846187845577777878754100012678691943568436616232955183592878231119975592054346481668678476992893816385568744357462020232295197619306624444869832234487971162219400948122767710909110705171296006824003439548202257128152859967132190167924657435454556605098828065711788479212203131662970040254214642296031313485698124204634195873641431062041667271637757534524257796860804165863728320561761389436693219299502570061585208310220711287592702231967510596826909073024662945106760353918099533042788466247623640879627955779291204051008179919924096346642010003500935935122087302421291972233103845334517521276272933193773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21773802874332607929165707185406250187250759237294027031831511482711939823449004541683350400298954904283210371134005150671739708999250265570077841011333188267760333098131544511474442735924344643571230752615630871765449877784258232923800282597328989672437511815034272134762547793610572232805881583588939939292516882866045533552890551257472282781889781296120300256029468332970285673979550615749268373391035173846094164554223227773515219729974878074640635241512569113641364735436743959128534343031378865732723872043178279813121030446654531240454837200821402182945554244618882998373509992823296689186531407121473928382223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25291428993128291856786944903878053136555610843685200527122429957428297869391325657117769912332379665138170380200357875209045755615232254903305944199285577948887700427859167775939446424544440001242451773156716788461468674554086474324026409162566584870623285803847975079600153614719684736866257290168836060963233234336816359982284343865676534001243163530351943425748920395035346615186919943464760188865722540045092050364976452620563127896907123721140336029741071018355727123544958485056823629479850668506829234590869678166859196830412374343131178751398490032494149266929725332258062955570167790821800375459040798119591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21808285717903126445670881551537097185188285944978622992469537139804441509685018559837171793840885002208097715938973043637257047269728409333907455259711444668323837303099058164062035671778936552354568908365065452709572925371422716562558407058371360374989728549470840443474639458734860041096938456460107451165390183124970994469640210220135938516952565246857069777900349531392653932622041739719438521756174247588416438890701700606870616511939834939820291183811222127332951964981273768477733401564903472351440994736530917394245058955013762284618565767156450241401342710540993963326116089426785252377976931230383319755551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26322640018685823710784062234773993223191654221552712734168642345534223209034514321795301613095274561841763736972695745318014982716441535881633419210861654590218654481587795588045742664779316576330265926099994000829976686934680871482730273038060253492879881436442517288051438326881975797095354363600920007657768587150429950131393023683580448047927222572902466816695643271494643020506755595186908153163780479910793109088291407133819235080470133198216077903925391920553968648692101076654783903386803250443480755674120260771204137697494155841024851688866928937213492820869631265976361584729364473139003255620460236596561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26644482232484676850548029824255134466895571044871056062102347781772391296055377597789447814291738497528022472519607180175245207486220648884761607014470243609498215052480067767765601276962287742457893970167510643770279057125064425258038856967133133895550102629087393610178632875600341190232227063080952923327549454926037929110849444955169873086897067956460478232788527914870119121358063852131829598417196223530976924497797481913930191990283941076999310460166804479667647772981739258685902516093444350854613950477407820009047202231824630730250054171176775113019227176668197613418894730303438673445165525223446187247079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26858981055819770759121375032335154945512150885205910557539018599336148867200625583350026410601743218366218659100929635527894525597287316619301527421428511296125813080291676269382597335607456481360414935671863133761319661731230541812118263725779393665962004314401419251882857166952223081669026758487300089523360385102191308017543078702379384433730075890416943567848614861071034541337443468426044932543910371950520560714000758867241260275124196206046546576047806924368102940802009974693739841074917977690374089858113224255756956602820717334944727542768787506036240207779473994621629106769313519660220000683380549460039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25218835869263795256897968644897854751035665624912346392747008751988015509385177558175068809891053886095043421783878942188455889782677490602673323155347716724275039656011228962123265290343665728308675536705233151140361486329918333462159477186740445477052097064651022159895283885808840918929431557397031163989616505228108370920024160120078499688126588538314586560356711421923575648026739935022218503076570203500086910727466497144927758144704898387628522384010233904144044972827409649401340835790236064692253494789721808753322362513856222209476899113470943712576364392334300380123547349068347237900241030950378245119689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24649825554239312769759931993740253969122473981649506510075597569172696984140378485200023853310675645002739551459229762737722087926170221451194876384684501298207984345289443381011600300859707795721164214159659708811835716035772553984283236567924782545355559486110961241829911667351611731018764118966602407777239632069230228162864320919493591043533377555140003709119771581856923006126539820373991114651548734984036406395771167408863032909569200252790997121587339087387239729241737711375583916786408700364428054997049663547729252084191247753269682080903975865007713075090899970722486659214030062595864236648596732681657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23256510660109035620763591563402264854068741040119131231560563224585370349297006188035890499259661585436338218462369479830575905798754461321827690810322200145143576805349224795377099699965426380486293766923826307654048258496298323053436235661331161413799361022391807440038474885371013503117101608835129053253325147801930906546419979302890655663092600045823353824974486088370754392497515986098558387121734896606147960901659740896045318847925464421015479557400707491786184847185147154496830166924786169299270183325193344407693421008125711595750239800022934287760163408885680160153494958044340160475418486259501481268851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21229276487352251063611398620599095892056830035945581042351798151169176701846420494297159166278270864850942049085928674657290038403013933089803159431677464804118474895811740192312869594099232111205713550615886799372989538386005940848773561552211410352916906168462179399950114299373360014822267974763163037909365746843530695779827298976582213791746439921497296833084632927625464318295912913664290277073262193870790763295456772985864414491050344373920566502794698430218193203507955093075681195811308113252865863912270680477289976617870719029335728714227647961798735175560540744660199095564665010890726626223595544437111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21517319296818702810037084334444020082418470133815699622764730803778357603718868671583396204741571980887550253945779382613499751542036534866716172574179393800749252667483401393161342611751973393340270214130466915730001817917543277962759184341749651812061971722346847269183896570622299001748916122454235245828166961651491021140168719710010112512898993709128383086407109187598779243332835693491790991067672722735403709237935010559463620565666832977342314743362837928907536072289486914472153561451488902041296906342309484837384312008316851958714462020220292580294212718648001912205538553671124930335324151941947799399909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26487409340703043500277342284975680354111268620236288956106653909664059371254826008565819278061601784895225528792335269370898689246852887511029419089699232425315526755006263836765978433349718966910707222449430746699865968540466808418068808503416191632448040356851740844575574128657842749075012481294763501127779009700683832567602559345925811288903423652410296493012582083188297424871067708610289777685413861778152831243248969072068203269500580976891670892598137428938769026240824978745982489508640780546213829016343424844636553182176476619339388389160954595023604951130107238154165719812110749242147055508426599386741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27965854843675133839861043861305932942664771410837082336037805642121235998380388511726494265104151943408901292514728995397387041176633023853592702235571187969730825893132840178121656090230807428606958940566375059940716495104598506832595831163266873368241055523466659456636550126228495932142976628225354196359614915162687552881812947516551118029786538523135404638545915081537200696270852051307208280536855481071603099168638841323060183249787095034339582006220185217358686333100013864345751934923401898110732619779973379606777626645602623074760132318642271372398523494553163056254293134094191824452077518458647747661243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25313468653508031291234599325897470391132719831657361504840766339984756394244976502581585526397925955244812694040119774668217523619337526323216024416995802042530762220704815772018086836922713829719207689889012526374393949353442696268718663560751536460150395630472491943247942002465872720936008932104261661995606567537221072842429090286759593822784652545278774361775887598033262269841730274799356808552097328489460706601338726008948210155000127837179481083743080309843896705319030725346583875277155988930962439049738190285443486848405619503407418454633909855576495032736269156167222619731100198519125494135494815578043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27982195596574438689076564299499117189160751827516681881970807719630918985651957833097009310663129570192913799117821352111200329378371009082694969346094220443138849024423350614723133580033711495746375086926158760725547021227995621710900451017746422874438600195649344623186183938182527628159740031037209608454682655297280510982553766784077761724135279979375336216773800463513051858412591530956955103604427449413303825449845073253427887920498036944279588309663281884500643192422894917857525180254176012230843174400600245823426676097602220205874566918539101308262662676639088929729056305976498089480207622434018163616201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23918876003963313506508808644256795902831562375042376830190762406937739229513558799809886597592272005804474169095243358101682450686355897683835248066265749292617266636884625569623203301282185488677709057132422770990979687373307227281964705206432706588364772978970331552937558595478033032601075958632587512160061356581464598604393353304777776654996176204784752005571809161902255354196130704286190166828512071870634899396072102594421797284707401321317616263078531445920122027811479485575310596132603234313208433393870741063613421285065138275863262156964581137297495409615415179524186210842525231818201072722736719172587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22581725867498982849600946016350203218181197567536088829545160796418505309318012076548841000348119457632417389314569274603959751990376262341349412830113846565632101283879418361499747150195098610099591749153849775481290711894031280349997413743772576973022535934026237352011236947925490355463630343251696140407435324358334682550219850764282981284880228476812772382831624030679580339546817846713235105098863163961278895735984329535876665674919252388251009699524592579810696039962991826174429970705335665035407751646808738006563803298977015792389731855135132388848944090185708263348897337637129366508141971965621024648673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26504405183090802510688802472212376305124258018456499645544964863684079518822424519321688364353638596756624598101309232709522236490637857974594753407257041409711100097597076036743046844023277159852925583639091132284359696721530671461024234302037243994311539624605570147282737126970298940000849890921588918791894138502922761684174242366271096096026387842007673467887481020665813109867878621912875044158921542888319354984622722279158566276732584387216109200976053749323898037171648690407977054992625642881084499260269895260932600307806744492540223333224422431768133771128359267412576620050515665035278867003885247962861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25266897526106885625309136034828090890418423625201768406294941595224418746193761529987697062745730863666798958096465318392855090811867921184560462883758562934814896588069078786206589713002899383311858784874936836748213561903814175109430366247485039054713428372474861626445265645675901337045700305349174997652846406663909246862291429152594052276002119236947823984773154279579401433252410698800506351336660035152767813442597121650006312752045431019412514569384848535607812337325421757999593930808081612746511548058885518268119965416897282987289335936344938038896524854871340492474503667382274033112915990557789711611679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21994304819159265121375918252679798523717609489244318721739692827433509619576909468683263269495449186739074452404034256619413443128928678433646649693756637342649526715952769017001024723602241938795730577616810276293738528508081696000632804816546062158120404064309640549991054238433649678508521168738986072698693725229607338966816318690992195165772582384330516150728087627224449208206664055810543923447329432783653993499685877660882365033152439634552694021131642889612533884673903343253421809223080796977700997098611769593008764806320722428345751225040775229314679239524636320941443832596736398163398541422407538338153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27246613947929116451304166032701493636558252377332778230044076715367452649232004994203070036582578685498583284088763941539013956431382931942912895007575307991486402391254648492306593487383545446361690669962390060285344764275316487399665839019776253648503607280307292719504787132287203135433723278171234261967953192979564008250765203708239996422422324804483348245614027851951533735068154752159612932151855110370222635447723712521086088340473961487110430984502717875014361030868801849633355363859844433432844137118593662125377881667680161477076542843906390669502145784438397671030255077079981314944645334370518176361847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20750432694201480122625321183739823077588042380436847086865788973592966123589655051358564141667241571272946419288588112164134605575414784374568967518621848608885814741461683013775398757915628678375550455539398446744643090912518965927707545747243138330271729151700305632820765695089812726573339709873764622312181079880153599916613479680374543319142779617309921820787496145214780075074151285894033309929088545634846854674058368226398335595400074331339522405568792715257125862224269903076679034366332124279022749582975192705675284321652014566560931762546446612016210937062349170782107903955404921203058146694009675192731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28118620904962562674526328357816816573842227547482730921000538294299821944278222723833358163439823338418652198481323760594475120152475105943951051683934745185262582413065789805933992582959495172421928278179223543938789819126711266441003174486122811614171274962571789959905835776096206958909129816638448686574524068958737292881529385877639714981312879454038296519324284046451024106508078578117170511060027195578709331761799912141568601278726237824891435793529473196312013756574903928518533782810028508183458865338065366526569340809980059755199130693492973113301809831813994548750563820694814728132169987950982732066947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25414238319066187727659360155211841422987141770037478936316515924148476492376678266398875215766911272533213939466039916994763916305291755828664226135264587599041077857969693661602216997431957027351630382727768058716052868062986343567564171757065653698045612165457407403636983574346318494118888486732520886178036922330604194153743201892804614548618606085508056952246284133927288398547202264405240734452424304354954675208988639564718025329546027140988993569542099757122016812727662245415730634491985577290348092811456984536431913916750944027246902019880605445674011993207225084273206009963494703457072408374275429742389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20868856954314718736203025935670360800232332231914933361905825972853455070878817462876078615690032036181877145392700865020334599315693716468372072709691794342223442017116256841441984844155162255575074342043680565006329967142439768943525867415653611441285265807916550029118750687306112500435822941583630160775320597581021217512887361925256268457929031806864518851733916309223555314565247656204249532208155947403245691054650790504188978708892014816754506591550461072364814418319710623901313052226306343251143764178911545398139234046336132303235704326870631435911616129616090206833584041646681874772909324071133488119869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28976917175320335628766706118796197584648081319353993397277640985340186671720054782210129458536416089439035486543905254374742821946100256028595759058713049428196324333110272065114807307564493094457360238823916659633189950190050601564327841676683005145576283549027843091888521418780952708932481447126662692368118022649131757112263974793156791101415999069640529155488400587884837866615329546231742708468584797619638774890441504192641422011215156978782766785518041787446827396448305708179522185927536869584660507098050434977319870593665065938712534551874542480659652529156962661039981666025755106056903150646287852207621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22949000111684559020121440978028440632094811408048740620058445641609204405435927831516673387971560042497344421577982210178862343072212830919491592263721795057580655294202051154752048606746304201109853459160393296111719908284202938852364354240364100956426147839434645347669395853751750573139355165782311457243765865447842757913587951460140925419084084312372474049943133174944978725627137971820289656659752318419617244078680213715339360662443024677133490263384421667854983500821324238053293203638205933084337092230454113361478671098531407085896784087369461460007811132913041978571950878986343818292190030998281525393643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26364534411134243305785114392404384678376212150977293685024361265314420699897748802820238052947018834913810091180066803462705081115648160302439468300914440504130658169844347111013385492293634705410549864120493137605468500159748962148817756367757219337064998029655087830256681407352674269803478270714317376428292420052407620048374101470166598815812494003114866097983092248936074084698238071639501652213767180354956862498733046066322784796132174948295017926843065769305353633382947361754304810856658609337983155566670171738577382741260655228693002856659725438988511889394379339323013684352079004442835785105706836782233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24006094295781132000451499600701653859532949542032234837193929405888708103506975285365440883915675452172233756547376717709637291998146972265217067546369530337761029310144207276186027976499939551518969680632450619161475462248936990066858285854784813886266582314834395018943154904743952631360223815230362067176465601590157156502576707460132167043677113266149090528904402741912531309774997223181679730132423059603115289385713009716210293537105211734883702766662059007324401799591282545583787727488178862888799072519474579792829348073424869568159051630988167125453268411323980676234678890485931783072751340976883275752857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28784498284801596822289446379737939980063717551322678831100636218592573085681489772773399123313457620116775428598722061277402941389320725084442441289130117108938798754199162880605208710974319871235080949970128164424610623212741701682386082351823127572292482074985796710124410707493077368323763973559456292961245211727881153956397079340506767022943917689797190173311459869047264060328854613189003941712184240830811928786640830112039828270256609988217481394420645840328903222618781143141113022785945799919123409507431227677430754682157938432403068559764622970557452183457901543518971546866938261091452340533716644072557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22457469011459283961199959466153580956434289683450969919663002231251891055741974102980587926557611267468816437512412490915263437353393639266661929288128251542275758189772521685452063284332859952836686240261002229936728084639106761802076836310926055826529069762143247994276386080722153982892318160154312090069735668677862633629794900561353179181725018793021060369865146247231207932162650872817294842560552069891843960975123128678356303178297337675140563157152781817176148993756682708570668646796924431113010097299908832355218943583037082010526504491346186988908169463553760026518526288082508913931592191660582381377457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25231236172362314075493944233871799116666132826279274612409734462107354977058561275633168671217417676297035665223280871511756099458020128628430805691234323666165237005129547777863665522493567732647661564455646572173192252159143911046311712615630951636381971595413526301713256328005731998995699977242170599102976099676956882157551919706686800829905866032436712178623943184692259304674342049339444957766814328585045092809507277570088073656337106331799568670420743287423889552451458929722959968129817553136486851119534434885823781020573205467918147063899068645333465331207177027254164468599492193861565088663446541183953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28041944286237325060677952505043745757804603335515484176945469511631594940900182086813598712203687697315227466135653582338381760145666739561166032759376269933022637642245555169454085114222065869241561917764547967071684831327694579961739899655180455540061425943417831343630767192735477237459510592209381143124855510954173235633429589771679981252843222908812119760437508028150895025002768666495496741300742973245993688620423381379424875494502470062179909748239314152472290287667311015761088438217591686236044632862068759512062174346036602210093789716732781210669083023263770363646338181036708977833536331682749387311007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21325259322906134984808945583708196901796299057742823213098928657484395067336573442418856988432079657219343680791122379961861126770413956762738007846702232843251370962710487690033913078365646500100777758151012016874827876431769839177704218531173967966272351462493093348913604271793615781097376667341167648699329307536751163251974680251459996531352880350585616830671484643450394038057890684842516499950269840956981877392156009911612547885199904349007602077143695439519831907282111512623923431460756543500596239466717509247099692305979984095651905146253250890754033483943732921907425627259311634914761773596123536098971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21507621194795822913564289146874147411380619442500368112218806949554490307653795840012916028513307247725666138223386930274579218018092323591783920087043315897958382504507600592947206379049531707303920827948261037585425593643166878019498296960867583871493786163490725205326587394967416571131631112346005064916742736632975327640006156299864602430145688230325048640484828353417459571930736819856544427689839584079425391844887354799943051466281669477490719268202086418046930520134571023413176877332492907276335165296744189519893062841039465212293428661196878362092842453059707527925595228829320966161994889531097672232471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25449608707115171255927497103751217262634344173720789815877747660987281503504275873353824875072884195972182058657779473913235355094781645578219326124839324935737358602789906371704097682039541027116069264506371782365451037593964501264486332843947224673963916871261958833163677606057754431215619051348196098069223259198814172967797062314774990970631428403895494983366000350221510327098017713390484462989798651211645629738076655169894731275805642256391232855554092924465405257629047707265604413462325772707228320220407931179908142334961435652882413437149737991600287747267618598795763599129742846629554647221232301793781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26934837791303610177872312263465383931433716426409645327832257472700874988097650906726140867888119659404489545706873550589507805948565856508526448506173762027315629396125009733844632573667160853375271384429950870418930386923022807274969523755327872285826818144007451112854366580509673457090778036258201054057815016062172889210642228906142533057688559915530565558143547701158855213588465099332671996058229715403517854974734487703938364889897845150565723056162094037920276826532288401717048797989472885257939316570408222634075975449462100250252678291794915952304890524236276801323662710484914247747755366566911109267199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22496339255243515925852483993998297376117583086510334346215622063527971121445126846436050431970680134194984571895435800785677701524639149401299867601843322798467519576232981227608555312616957993914444190957883883746427632611141548855862078116793542275268925916154896833116695540433827663266110350960489056309054168496200606193334918407686344884082347837154466830398380436866229277403545616005511012926515074905917697027007529133167786806693021369356973397486159243100252581815257843221539698491341409001668264403582319854223840566884025739633642021665553629274586033463622966145381249212624596894482894844401166499897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23319045700533498836209077414952249294069958654321074164588975025307067632241832852269838049588064346752861132608851012112324005100604905287274212295813131261748522847585101006654167802105152307842816477481932382048796337116974443293362594284361450633803774430741227259739801103799735056229379509562278287355751733782661132193472979941447016875178610578048420991667658799909543951684504096920453496251440774594431110478976294692952673275741890955007977364524634651099547911400527088959818759370176142870954450980013294424723800748306173350465460477181790898829084341644725807832069917413082171234821520531717266048177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25097850790491886931684751726415769221667698324008740349721426236332947527892692240012077147276912387975305877009544429109905663866270392916865191761686814701300407474148730708365130555714271297297250406295520087925410360792612917157026895855115103093208523493275685932169577546565608837616172860488866077233843433774601775823722124887913704652379553970000919240639688726961291801483281286550332358853415420345782049804769408203488188804869654377042236427831929126723646209911018493254505646085278353952451365845750845089410526524185013977873566749837552511139057395566838332165469439828305317741187746202941592356477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26843929137253944053048705594460492614196671482253814424851838097673867795001108851989631034202192913569855631400599327878679411234098837169284258831637124793061545822999349555410734156850165164358710851142099744439188938791742777322364530548214563902547962539955743765473081454092684451180175196431225814390028250968136369186559060932315019969654265150971729735322347320518787702663807165081415150220147875673691428124748033837158930443138860961447320694710239783263459934758211184938969705743368578623012261123016065701052494066315522499439500528266668943487966253171686895702069695683682826438697191004091758210217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20865759786484796619134426940009292967319178002440634709398164773998474515254725539029835630461276156038844042073154760450359468353179448568685466391477679145637994298168006409409883764003961043161598626491647949142099596387420705124123758330834310565185922973083966683031088624110926535090398531872304056819209104552336032595648515901740322518257388833801476466309735735003632474509890366512384324969899450756140588378400465566310769264000301135875622936230579094681480736392478821777705933384595476327377302649318557045961332627305372206248309058644854781296444993765053475927358208905898776259048051894573624317589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26414384283161688574348882660391099912710547874061870747826862302029844968634008040950582095832334713360144699118559056182766335760114012703837575526703128339193196816602235436302534687853716031992377888880300185588104156410787084874869773132173447574600032833857962255439520129694213970351206739677459809218142759534308369663964641941405414362078062342142050735750140140141041448172920292408729949860689171893951040183388411558416377815099881305938920126480015623057279975394774310309605796163291029229002306559713466850266018131228767359068041539813790021565223855657556607921679988139116484852420124457309531105461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21475976356040585799656575618856297595882397040386725447922826708615677993685017309317353991590070808095279737406877082555659857312845486444669604234029664550383860993200189361766058847208634586069995758332380595803617832392549636494052531162557511321590513378016977231720821563855605329739567388501591512370284687087955952117639311263147357342789038826952914501312100941042878485580428277149114185989273091723031549298183039849140913148979622400437844125527416885866541722620889153822484943061928585009731258037988536002413927088394961183756147879088617458806624708985789606713504845333029479270999044549679142001863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26293045450970860260684961491350790975779875180860676371588986312926821015056816478141172565763487915243145009427629599187497478748475098460202960022254917139963542680624098839085066475764389406708583352814601819111819116390678413596813533296761796130990479998515357382620464000082838251010815026743678708741343418147325461540505262696419817054338964827259449966729082658435839376831449082995611641421638950866576397397550227038691336130144861370422075983662452668639592279810076474245629945044808030494246997022371043664893873708561887255335102960368913479025142014424627330955782908410178749962542065505898959583071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21920659962040927328914668683000521755991471565103817030894897082553673279207683443821766725871328456957144899053691741377731264894559110948402360162007481719290659726137620854420144424911869015098224560829029359336131333527154206268566547513570096766596179081614735626677799279123487273416689950075595434214907323394711183645578291864851806278697545572481162662801836434049798659886632469744923556521734267744489324343699685408133757241984738103582746137806566774070019387060654373962767879443399298717282338759300697248870751456862941949012245508734147226322830735567621953463996730854977542920098867032599937298943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24430616969198597251891527842759408923862147530357024503662745172750478011138434926448056090242570018134627726134095337075683012639375184515409076036946549669679533554966585666230171760796432873457207976504163949669633987233489721707002502819684368658610158154890726266517665872757567521117824003796300677893349403313443678212460492653733231398540634678537773839006588884048248237474737132911267432068725305796901488503099594413193939543858986093687554989725661504373853628577787857828295955026728979327338213171676828613255641428167546427485157924473930440527697850300793286581379516397042471238221359832919893022047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21431584765659821651127297885514617275622880118326885769055498245386262042195580876450089597562315266541173486202855591899954365546886860796715919125782465408726946701623218036625726032788695419514683593694401901443759018714216887862343579475796277629419950522240911432072067178882018282722946430245843764763492816563366154993622241796885039528929018290577643062238252777231915868262554840886554648012697171076060493882739375608710207432097433222474069541431059162781329327473774148554684051627738968164926800410103748506805208569628881865358879769414767761648040232316809612351874475993831608359868724760663686251671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25800494462942580413274453837095292830636673499760158076139721077065039841933038494682180802955420942495115392039671299312894763668469137739144493322203771257362340236529419146094938589022741854953812036942569665146345511249924695172627628012179338950811771853909084304103389745236620227160221266082311240721501918724089604079046513589730822640624825520072455267965236917284628415440363339703503854717650386360265413998785137433639509816839464983738144054055711827498383559127267016973197919113442199764226175066407255727032279653228745264246784434512634969454374522082378692268164779682191706557150065215881306183089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22406841162335777543027251361645087289970845681439118964445523206768519681789099550565345619035103127488957616142712102766637232479730752879358651002939521889471771545515303735458324189017051460769801511599875338317453704263705330308037644592626001453997147789270899393373469229952199324646429546846840837148345743969833471216412699950014116100924280721412136517976924744973188260603713078848924533173248873664623424109653628393361013001830317747134662666422615921361889051742418641660050940437432846537995598858888932749540592296774796716510613657870618505913234733426500057536516944037300783527383085952441651404547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25576509299357423495255879371565878191149998333504934572763030728043350594206578560748684940441499463755597367502181655346065821605093909114344042393703709871054486399732154409286009181544977287422193489373943970319770315055082407583326832520986598137371739437038736578914816351831092312207604385404284314759233594172049375240887344138123486383678315926726375003427245744856967681899775896409755805437321861883712985761205449994433464834529404828192600418765663201420933679738443709227998800735109620408173332216128697736194980913009246222493288858834527754680827250468572410237570184892480159622552743656103568436213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26005229675483361198482915431406354000062012764741150123485811554722604129826026180393054030422483807293131901924234877355701677416335812350359395646606331765227251710682078740597107484195936029773944843670536452509938411207142779613445813593009152290588393447983873947616884881619436957794183959037578240760891209300838465139541038971824897154379794109820004962017771763759406837515480193670834973545526422275112527260636494105214190392789336452984159354596434677672839711986977698166030389972128027426803085826919010987717234718892749865986788130085751356824588013230569276412177654441211322133507317108064671884923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29674439706507692162309827502163449888507435794791766928791517353152163206567689027834166261700897491908039291833467142633422847305564222520516166211467450878218167601237501530581378857060091286964980906941802912330396123443668600060188341500441890347295595312017103160007244091838079839166571382975580816719794379814575869103494532728263032901752128747980816683846655698905976887194396841758804562077540108254517984769098028180097959796439607690878816036303686786861852582955985317845336131003844636867675698990306704945107616869226671613548855033959329501724283109667642474733307929466323196733267134218470159489937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26143285186952748474872079804274535884270126573953164244007630483683963556240293268266637519995769584398634093505704496140122789143859985497183244837953534464073142801200485966415863666924038786879690492116659615240880716605028075371966236565940391992530594459524463624553757281737443348754768510796232426866586944435919604289150317061900077572970466164195384624820615269787174627478559216953688595307248045331692346576403842895852902482672307045707444348614760071761431340594008041339809659127686003672676409538116782921627619749446697803661835563045050603604919244054480450676553277533627716045371242271770598615949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26074593658318301164833035645637053046551285319586519802479176886004153507718622576419588916701345035277580323884510652800656560729644279199423252880751877255235901439243494433969988737150194360486022685788235079492251382547737655547065890219028480583071029775872302072629056303968794255877101942739541563386366683834066341694759803850568335701494566384370818169263552484424968688376063441824952710521309917017955426427871097761692942841194727276249959685309176085110718253009226861031248550148531790369920022795430837461832592662259966899317117034029387768534662347164241909872002267940778571646314135932731024073361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25750696457234828124529418528201501161306864952635191218942484442897206834653000931554750472898009504362244657196500689411746071018544128367991186279342787548214480926963900923006555032809669000437691181213458097164866712810119981964172690206824984826318325180794391891723649436084095601007945351716948824122788926432540694481024415182004212079896171235395759861674202525095145646053800102032323767733110821931680200185622367678388979233545324198302636558885187361649818553955239413304929525456379896309742820117610233219667543892352501179172846168121156316929763796211419144341693354114800510261466960443112085495891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22905813315526491911264521959269357832622265429628517580236566417470565543498403497446935882779546658168611908307150838080191806582830586416504176394975158493308499427539418758796536668959534980397231437893798152637173570570821617069119572540797125751322912660465552131888616591026595440054961892468450796507341768216231951553305883569698821883049548466651493813161341744043143615378456774255317951664946018967552851269704261170628290718311240097601177810532389482397142997953054505703730261844532416950147244300714716825171482491760163481090918175888292447203802747826111580064595308632660005045837941309236600723187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24727735836888653838974743481968918162667497727253787557469347373301260627008901381140297842764644474635533336721849845927070020952423403504311840271727636506125923545262348509813605109284229815327264942797576888534193646112746344087377514847458680945205969993377618766348533484905899861678603526948008494415935785678356181885412540147980486968722712554904281589824235316467213753295579403301341315845273891897015197948710251944948331803386649159282389880888058995025437063771707469792572399231839317006286518195351523342057133799388271351438747014410216587440848874402164664272523346135709871105482460727968322766679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26782360610926651122854050080351254692570443791295731670496555253972044516805040540230859829018131031650031543240651255293558374430432562454959429107358338041885805051044698323852943252878219441015010133381696741269243089172976197011120760158901645124429760663565850001709949494665532759101626843049422568082035217467580304155084527998011960191510865838744655628069669499816103112813085039731875108985404767755615403684760664439471722451109499208392962356315119050638680993327416266939217515763284687026493661978730130752608389083892723243061689385885237379536793123415992083404765412462280880271236913396534375845959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28040048495006640579701044365684116243261363788309002042356874201855814042539990082523470127327144731246538998405854266690443703559795536857394744875721535473391724095796924839066155097242219399788774889654618586079717832359952035345801958844235282040118772110777362266273193340257630309171776964082190935595724252707130535018900502708571419046644019576477090491627902823384272704019375694445518166654845131256278549706779134969641130873062062189990567594029531222653286889416676101486842233266966842597906448707795419220116309308875448930012413698267496015020431504492891886207370309199873823556245893214485226981547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25083616239707627319282348267698708832054528194523716505597304763685804930687215827692475067737244218163345674161617523580261061168083906120052670262504811646327836917787474226323173545047256489749907051667675814067427938183988739353547488676306713721326059054588983074297338665820714639148724167052948250927476962697924933075480961124027325828032673214327077942296805735110567966551098808391196509987058070928757530578968330237977798915842640519158623198980839931994735008389870872303982756052335872058825000494510084405561757521868368533865526690328922627596048335631812843725738371654045373529738155975711345089963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23807364834851238740313729259600779609898496958930780983815306226731609520249544222336556774619690559140936069664755999775314279726283051127733418454479605830755255626292244724741946107399646608059515867048869459583015762838413499991439339995652282077805308701296343681420887305050752098251275467914147115825137185679433141429630671379304574125905779710452523810493113933501432939371968962660122642819362406745096205657468641304046945229137348229968813594233829524454218825837752488326226611836548478205694552633150617505551667339032493190501802766901956132226141601471916509258333750463960869086036454477383711692611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21241005931565364210654262758432697792902003787930109166298672025839344527779268368218871624453584314501715238323978687105342279165016375641989660550723285401965516633919653665137904277818680078442448184233593982317552682879161849303310529046911394317864949842241453594692275392069961679006262561201612351339180238904668295472784903627586935864642341122708112436674556527139572642201172784078148235149819005895804377971180079870041092974390417855076955194411746563057910222092655559632033627738764123043869540760556162988487511161159213746017067587553456956810715912572399104629286120433333349149268733929976016210901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23588556969386904183656948565975249198741469688572952938649309491472359134291056327534099393280331537163311227113960814262196912999600735635804576201289210485685061794418255749632281308194173727984135525034450936330284657387352139152980734383249933526554151511813322471792601643419676195790401138080747262540309158191292645447444285879214402884698635188090924881704192131427348561999957560145347207929281432754581105566360293986776174047633734474955547999971256391329814438089749292806488110411136484238500293657846602416415545723459644971373115152530682449698760866705704243895049178965160357278862547554117033744903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30137615386840806603625283314994319123522096332959365473626784397831641858535019848556523290652726117353091260165324558802681041085339053794418978373662427053177960207916486894958260173982481851802259147901598829248322602835963763046170594199680541251046983869313393617053957799620355371941352804907321083393520264530398097826809420497587511639101590668286973182238753740546718168786788977501277930338879793587015562969827778898097397152264486196866862887394839895103394151114513585412435022070277019645456345481241078389246241992570518765862614366442792962017984421492508639468288907173286359549448525266341569194773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26890488322598303246202585422381751089654188216379658973210562059491999662334618453200746918099891482427724774545389710900684694023406301416400736243461405814132768589514133363416012779604920620450057112681445173137498542814259438836669103859053788492950219145002284736149391694068041899366656528339382486028442923670340522564162028894633844535224188240494176307693539963658912659746016945305042101653492735401973677629823256914709965678177046549333535006289001077943872697690255946341494686873052994873064561598502937368335646858210382633600106656752224126426623807512790123186739184280502837573673051128037910422393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21685436210824992184816584973135111660415046177504761372183678023135409583410006205457633298319497864555034902554793664961013045737253805527402898946355777766913920252874525761661933088222078599061952405947453445932178835126913228912032809432300726560268714674676518757443068672221797437337466735182397817597265399297090191705222244742052286895864677881360130145356738709415086091516456476243832191603006113254606920497606792301697176362262547951005197658436562743141679594798611126724236697098984368940223361198751831605151192682090067573448040891249157832953546611355797168767559855462881407139850731979762046879013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21749846300565155972272327345550178975145731398135047673757292572047406255008689769032557676632582466873857088216370794936633142267988466157977086173526782435404275395294812408887225462345004064355737638501528861209885561968217329055860719289474008943025670414853950209918323106803131340811153859478622421844627405420597924439738365062284282898974762382303064317690305519216634456172269125459472668688781068226614797657796487626150622675204661684180526356242216663676730173775368540812260972490767881807594981032044085216207842061132429095757916034871877512982630408981007798807525285895429583389154592509824142150797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23285307523357614481331017800793999534884566049290460276786945356878206032072519530635482589829185162967087072251989691026505870514242525113342495064777775845767233673074808251939993055223633009327268726466977288421850382330045043635492853517408719005680630654464411888396746482718627194159687567036472597161124032786413524725818143375774751833233577997041884559428297333831201514999021475045041624951433849378016296596686003903692305949462452165238670208431282502748963161643245191782962256499385635007250685349156478861109448404377420164519058696739712770338394289772724467956741266740621729812861549692522023774059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21273293548263808337665390061501902289050244973280165190198751900832445876956543428167008281520257692306836381930015960548723585145605241995537681241818371550929741356572552808046030923716893634330030717094629649878333315311058677198592334468284076237537963022154397126108061648949598545761678032714357456717006679561319569392001866251471312535733197133753560203725472793066010550843037118316764848397988160361925304044915750768474110006759953304330304812553711197954510400080099022406020859889031017553275874081317250833315655827670478612814484171853964853366536423673647411602516073206376628817509334718754547918327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29019200770241104489032679053977011932632585684051451827866772564080674350578224208255562942159629973466397968114597702691063250703052413190971900616319113496587014717930808630024051390540685501196742727716425583346303995655742099189231255709436414686482733749886148665337325847600204605686152415017821811048626190001898718433138057023600827650283340064166686951762119171668170142450138161041299521324595006707842977540159939255589966185585481854078802040625658670422748582369632578351113434705582643725246173662605888635776848121505097058121871764626900027754777776369964478253313915311230523168535045227531025169777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19860821069898371596876100482170586675489031581176321970947644408568979737315948279800303967737132667585766463185915095905904240018471178363971171575508889524777129628570485089271804719478404068135892854715585409072608563719808527682272074564877631895098124309050256341394191492429800930682281839207793667220691763495624351113879429186078272473501496558838026701771578317347730706548032964893917291155032805533646963655750981022612578086793695653748992738299198838143736307981811916648354600051580191177351538772204484108189382935947553238947508204495110433423986608721668619341600868191721282493053885278617024501767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23757369980369442976295832861559704284584899808287905834792190771022202494238213823954501895284754682142777547386536714271143625160548260304176471406876072825447766540830979052937446436917998256082290600786601831905354532727502164857023244120544588372733517489147773264979254300586426730910424803632700079381484101329477627315918685981427044452654732459142187665349636393989273310930670685025570048287862752705841549119596154580317549628266284494657195674733565928923880296416358571053904532471548240715608706707407157990687778753409364896866077831602958926563801951881243652460229922925344907469448673274849732554473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21160508942836497643079051482025611641043480685649830607296808181849472655037576816804148609238997071928792386995106750500786542890187486924770521846307159384869342110758479235291366656016641250299972546361225267042816844823976563391932508752343916315862946845697237158124152117046949421924580241235052743035987534339636185369458137547652094780857217829685146563092532692525196107875223370856835431696705476718742979627355465781812497635397698636003160757540247834480309174043733486724297422928527668918729840577160986791698629325589017389407411641243522047353827747602497556276074481739190785946254420164219294295137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22081933764105193582860555235505926149842767720226813622947263761351216825498625231862270220323707919907980497964423388808234166333231864868293690874522235403592932363214910379100684467943958399023376442009745401576526805645128339145934243978234502437783901164702509157514077196652651542185860164136113324444183586954346876880397536309173803170102528373252031654028095333370271803580158430274079597203901960835499286962198900966386130782196731520924263117266717226711875320355242858254900458330413203274941812663281170728204428495283463113504349024365427945914683071164866103394796169523778541857240571218182508278171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "18943936039836699597364045305374504075298296096037806334200373660674388749957352012266614061147683880218900089355451482028524911486769685046093772629254042543902080648910719656058679360495226671297353615465156597552149853229149588711444959706696149584037315668287368111502965985479495435899728770710120198500784988520513357322726491128372795233954090739020497054400600238621675998027634327015430774924419207021760803739105905447354138083570183976252419285403213062120124307649134597831068395230821304826391966965785890510135958565106915167548175988621577481453524929929054760228669260837883697563260812734352156230729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23115560820279348507639609907365344368277670194051355487268290616296095965094706703251433255035696527061852450153680731168405692367647134235754313957058942328320382802934691423528020810362882450126750498437490511400452992497204071297178352154322484356809479364285200247328888123949472906876808263332527058482246527299644388642786782399601617322124265668292728249529764258286009672384928474748671600896298179728108043955963434781316380560432647377518153714041005554686841016468423889727762466823212970475623119114354344027053186968528150412830460829177028371576965733801860667717067127867480563027636679696256458348313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20564490601827781065734206712587798002716293054246255400309497459344132956174974891059571975056649456771920883415250411016340789818772533243400213210508125860342013648983166829616120496821870555797742733484770303245383393743619713098977616091139287879694355056156866956104701827084961201161383591146300126924407687624992691595902926317078285429261413781034313563636248624898621918745455888560933534619708603510595698472945101208712940886975478772006456049891041944566553553679672676866735593391145296768905906521517465871845679750564513800918353684058209398473209540585901360353964862771868550558771358285226242110959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19604960751618515610153535159932248853583049574596822225264367203873942272617236405830056153862717930896233231454937145364198591787894939166241017751778639129317147643044054921925700256624007167805352545773730828722032856932667279686874620767970791044811753474326323778019013430108277587270753647738664136794544637552353333161922481994348444486347255158249590767947775123772383883680176053667503891108688659613568748862980369685887337803548844887249867626115662541996467580421948648115181098325382989536722745221831737875817230329841510640325718125587781977258086408796017029376483962361235033059953266805001516732609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26669972829509507194098733906241569631227030052869408504397035202963502080594276398335246376668727750754488344888533905783430188950053497199781027484243816692088000416599615569021950065112130127773375175634109347920410783594263105725163354993821553308585584906652879682520606809230084300197726717766623559202205814919068299395501911909807515450981302122692952097043788686455203135426469994654705640008220711362640621994054136352807948821843388141987027434622575949354554583853512387541369364917660133911254271897330229623876068365382919169041228754036440760964810629966832292672269986924723672534793441334888953734173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25076602436776351027615546633329753561247961373550296775774574786214822178130192616406362020318492853403881952492804775551072854302406118281817152401705885884842905501560966083165191274542563089552331658676846306090012413409072120801490295378361575666210565940356690640120736321412095868912035155639987849270891069681756121068601128290761685396243406485429260766645889483112655345732467166051604538618524783821216341715068138968774989914969888045073422728543044385951842317970491112647403517148511297893660912018927014011587598183033384012705140903130030365839258095913805045039848953240603579246109055471543291952191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22160965460422191007795956346129688597921817825038163557392673074450498065507733735240136173185727552509194893354138167137250259904614103019002816409137302658766212361034154769826933573301421196048345940189570355642173336414407738681746346619487919397375746881642442388752198368158945188367841878644808435653731297760921214719602622762142335672286232241746262638115767861194634160761950165961327461349238507618534633038696168641701110000300465593152411253145554616813511919703335074330147334369910826211769063921531920832612782864386739722526095076120886001991868092871135792432276694301606502404803297429863904292291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26632165659855655236773440796961457825060186365524165533051773515979461518053165281197684187404168482348807135447687184733965982157921218292872504233513014565641209863767018511779176102902139872501267166322153700967652875858673120479773623692744902089393514263501672704343551913130197026911214717483499018476478709721358405021536223520156222867556930966762367130283309412061555723119876110317238998054612288139809815349236933620985714158050115920773296919120001833808499452209131779005549245610654065013835445736392895671289820514269743945397855490428286636540271764032257906051569366388946325682203564913582902556247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30271357119519215430908536065438795610052490154857791113441123126229640099306631073011923815739796277074309590182623095895517313995774317805731450283428974762053548224068470895863656925264683782436826719241210684961550726405944350872640575291513487997949368485243949082808259621739298371823799200904862761559716625380517626598151396395284203017648828690689174118936994383689541022426777589366117760344091108510664483014018757573397337215893576271033161512800366963120285707580081429016323756329513264433935897942472007449365386348412360948497498643492752778699083206387643376321784040837789474178521667540917360242321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27779259698291173783567135950171870898023687333903828558898747053292890434335793996527042212030460049915254396073221911450204068363980392230905368636699022684510010669558149982095981116819702763498210370772660879729460862132937701134886065442941865315434841521942633141805233640799648876229133870030308411573133922627622501339705805961993439853567528145627970713128984305522044859873466128620368811558409357830304772910528168567044811663169789350031963124062974995937753561920995496383669879003940701747874995079660788230543609520343123440010662111025669181367395756892447254264937276591846524506837569506923058788687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25968269139307750716913237769911292681682273370189630725354060981301461574917811761313568923500604169041573523498981343427198506224714244040372643642047992886635384490995351991200323391886657662420965741526630287759016480003012324747003474932334581110526336530489411842423975662472619018730225189916652330189193895020310641188058074044501362239303513163992826321531349884090007818197575970728704853408289878559060866501627431444579878766973686872816079498962370945327178877510199997316163055439738830457901250442692337808815245737268005323593630990240499664592846117507196724813749336540676150581847123549717644656761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24320790588657248933381076497899786108115964249576434826747749424096409081599571452024169122087058505611258340922805316722471188590913800737145828548948189512945860966590841697401130536597149829992086145073660227162692135461597497596075650030334744216519584537613191626255943513230073869986972084443651187306377219147734179889251408550999171006392168952061037237929867699756475466589899373510479049755228977111251282208889705283848242154106331334719351643459366719615637512948530373855189060441151074081829693578284358681055484467683894064322036448502312223723690035464697787468759258625033746362684322366078557392827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24274811795348627466925486332420998821287484077314241837343838907168591482256993054972802672796517332339165529817954815404165100026520930306025913783483663911995464727667733410877216263317706562709225203644853601350605271968175172784498683959294874045333599355106797564238052503384665531813919695186886361738814404593720062253787656405039214811867468557401481503339344555504298441935357705267152865813461901525320900633476954391768443613787891350601980330045734187781817614990505809685394521018107737534745779488970706054910133115457593509386424701957825232508337049262239408344165101466007647228062692831766429901577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30101170682651935767030801597881821395633576175544833563389626029486994542880177192260115932237808501524240770074940229949430416590503287512415694979522013250557704046008490438482397203989830170882077244260279235239751959568252972419497400401335751881031928543487319681277777491346247826131792643288773033471045769499715288382361767329141472679022344654401748016977993724773011765555931642732119538101561245204187654087121668527146867733736461623762660935358370828198230194105636945969360018635630493047488129952743327030860090141893402502282487771093356741259228804236667783682576681783999720177996138738042082087813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23651433216801201293366309253453409008016193297270121259943541203749986189492095343754546782361252323447049770205994349627988986811112248562299669287272720422763930594849337492611878952686114803446602496055483500294369829194643108195111554032098359302526947016329873356962914888809566746014211543499223990700714029866175252182795698935607297387130539052617769264817903123786745239256833177613304431712212187791979526637876018565559036596141262007934698197300803113722061216581458022744160486172284039783610343732872261589040295826050341890986646552226680705858988048028672062780192495788481487138199100459746193824497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24575261748915169450041503401998265996697091847728167098754141732822956573245229303819626754477042475325072239662097704390457278459973576523359501926094704369252980555435293968116112718274391499413900012275648365146058932838270069906622768715935951447216538411060179499660665384160656591885893386613204431721737167014424546004249592614302868361851254679920287508655150976477454314899811209690380253623796845398911914559797889649859708317137416021290608813646007407718966301112117269431383558012158516809703120361702180742144819827104842315139347654546731552695389269442788485287519630504066186190788978840487989242467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24482724875826101816399167409756433188443702968427317983181609974666179824872661235190093768199258697466662688352043558691714234978212541938378431598486975926103913589547071378366756768489968454002516366685838152825220233798095327078555905303591620491099557431037564266489049107815507823690308851481439840747326783701307499280398643150555800197003740414507774011158019555430742173417348741733248058729953074785828415602255692293008652231206248472159715337702740121471476781673336411608867793219529115424448146052208068569155598307835996970216813339340570038874076415170002024232157049932666266184408438865777032278471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25240307800058925509325512906959122694755835879535582127068127633174927797862505281999097140165426746229544259101103149294073859461309427413439001314362117050273237680928183818041324027127680978355653005252980487072767095698552058402467741070043249397106819665373000327299630854034808691963552738577958719476531088670372668827310397970133311498333469749116441816951214931735814560239884195523585335662911925843515894774953906573994381832193114043789478974671557370903156134293624902370495448522595771635657613491188949623504894756610799019483512756659955297830753517110329336669548161968782482552961695267493646628921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26425302217931878182387476187855745513782244576828613115263020625100479871788758821656126245542906202077093621193842299097626393014678464910627733074719627315003591105755204306083283585024504998078218736995422219701210484935295844225653603041536256600863215128325348467145634819617732917795928140104636981558267783412698404667070883744339666674145583480995879871805299075270986849051134180487805184349270921286825378475494837544136951573429536281699591186777631438145224199271774673058426846806360368704120789237820118889031080778461205012664598087655530921052734061254720613962852291506400978530176679651330240768129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28361602341738533845531692292483407817822038904234157678952479767590882363588964848661837667299031737226119759900085081462738429211003937805168179249790348161616000205598153410893841285868788358818407437150514964050230169561972622245440887063224113287132596847831183471587022766858731204657615279482181442349803599582094319078470225176283228699667456369205102102385072894857945223337670196861168192318850928980205819586743545830670773559048840604319334899885231263124291140198755960972573847572328767278509629423883717526043624114786800679452449674461403267772030699638400143123907732357265964499653923215310610070061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24558539607602685061770202961637388140793219888763969094962510530428115191596023141296045443670288908883528428657681716762765133443547369237389082113682790301872160260815479211510602202009793165542129371247605073111942139878506167900290508507760558818421229574217231801605249257198242652700635114812940357274492051933472957668960876110984424954647601538614683955431524842876575451939361035274896771223021284471569682846396487574776275084633546339858758199570995110212472250676713505140464110326960321392341807200718188780921907502106358677439426883677789355299063788839214654789823128092266056118314842691306814229619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23948219300047552331833549151220914319223397817277997082668136358840780809797405709301839693980013221241110547731315173423572416210052765775266573128549475181223078263235101649226294068770010921415649938453855473920202050760478683643244863172560809506442928408357347205560615233849667804603585523247823634057521591072270805107295648575788279505720126447834270439121252840333941227574991842003312385992191398014850069123736851450844499689066145457937502779898130710663879995701298173852312817659841625091738537128196591989480883591839273127036830404674296923719594827914224710131762532759306486571296185146678068001867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21392139348136968228622565614587589825598451991642214166091639821788351695203099274758925580130880033166780228960814504328117615164923131528105877153294248114129323098453910636722299313882798709930708828372404184841747953214237941168409940688767055541895889665169816610304090627415873526842871650896128672644011268137913856686372043374530174051990210692054564786396945604486741242951520395021039085299530817025101243023796312334139438608286957026815282904018072685875489825485123536077447335766575635703508568928795574631868726188688277233479965140462708918560731331232480438753526295924749593205895251669389460615747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26545894043696230181190289106315257440982026237534527006201780695014774638442365472378961944700572931941647673563733996114553154685169492273785667974414228511605449414715857632618160383547197145552919174224502541680706924391505432590229257308576455792714267265839374904459324942283481980290257936405365118294904934551017722476691010390793862093084097859060525968419860265550852826606681936434880593947909892749206692394938076145969669566393734544313012056806403555322327487759180912751186924046578717637612975575884793962033550347692294827640138177264737809215539139001996891296515442891108585291685810434448424175301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25226160175576676572349233115621619083680826987497877547940250511864916296740056992661215988886504838354886832183033456680890521887386639699809544861735293020640061853298078676754608053016678639733631852851176934063667046401985106547824889298464459652364243896009918842905597979448101666107008641613848081021000630724876990540134188083404431438407747838334152662937814235668732172211579878251610036233038871084836328820664608851276652794200101127965226646460410291200439364126756925607582231339779127013605281760246098271815058742200276310301094313589736345371012350120750633176851102893005431026128709874374127955111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22920537488715320936700119635008672166941741085391220563109809369057816956864290817541225350845636286268605175967711948604417320093114154120391356580625557427426007922396660653113452744905569865636447193620556094752929209833703605596343674858706896658258643745896872056481656341737869026314842884066958408931273100961678232169585424721181670140844683032428415437585916230860953867193567427960282910421500851520308156931945542678814397428094297423202370938151270157427535415918406719315860768402713255129718554764554445669175715221279312263381247462204197895582219132118604056899025956332983584351815063978101304129041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22859459483024982244143752829641731850313775693963852309204474605269867309462392166847662428600615544267462236778705264427200103870495296956322650655312434967841973015221227104601903997994708335906079095271444654372181297585805068789869857255163627404681139396014076821599002357202167934482228392481946975729142949911130741073925431426358392760218650749550377924591252969647703728673153281352619175668269130050278032603971968151520111889908773816817538719264881076318503917382283556598713273051242537120324968862064748402985331149625638164522035701493955024717606042497528374448550670532344285008953412696062285792827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26765511983197475571803672597730840912922403116018234862328064985124633509994082312897853685522120333220426128255023684587411413375444488908692880632566814645280552550708774644818976674789978795906051254737017544548915881867335407671321342117867734793852747143857153047179097955673660319079186007465825088127568503080179669906393242729687691339618089860195251917345912007361242439439621395450595903467025426546138991051048431946824427476532083332623170171888887497234410308598134619250044299729524416224098813787304612498166214665405573540763081945275818943038925432504674545650618880540833309594054519036576480861213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25734768669297055113245525250824208120381559222781447495154373332372820656880702009444062759338421437825029472587888058166012440418696134164035149547925020373931561364589313101445617528342885505819546858341037175607231942408002768144217361887800979238118409123089172028886300659266663340005977230380991339329541025249931687468792431308288713331015463453755030144723663064279139558501492725666289712167356590053131303971845206072550247906673717391449928125900127187033668951912176814030840641141498918171228222341082424464155163338558825676688208401865414912873843894801587688119760667586645375120814884183869038974867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26566697721330528029436136357983517413311451137890524594500853992981992126351687490983567176430539505259898450462649772072550246502571066423537982629706941040805083453807098667564101443417048060155021358962064243031773010416179518630838000356613677709868969164124336695326756929489073516326259258216340388059599472583585182857293275496844781707554135915118444025336364274209324135532479844213137357818575208231083836875576709825244614189175863848218381825678548145470332936811464065884199734670336720253389588424466599125543509085328333817639563194368250664531714049615336532552652991979886798254733966678957699131399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20674796755769371054579770459928944432140846670676203448965425155879939827934137849688658183177419205825769025921541033487279145755613693601005619241013102788772635143725859338603217228804795721462998708714159267320550774739177723771588872338273975784613745842789256069804793611419312124025295201817469426657875523209447433673024204679044641674951112796002315583672052126325202862753342189482639498130076397703040858551412982404898267057163295668079757418291296090497734255016384987583180873732402279346968464057537976683898887360880171207448589447315164646763885202700291373969368770680629099045365604935151017143581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "23612627114530880511044149567331682026383644352194536549533383450971569982306060535587644394331466904214406411054442299061018520172598664506225948501626663923792153709141158455126329480750206638337727094831687793510605609789328250082881942263866865985504540470106352837584835538821626195777267865407863841733185082772943765889504189599852394696855400753163778548628482084543510655073172968588137192182737603715235513838354772712105106437875539742734552404294811559568576838338604768711462520345255720887416535958783593790279600599745139227129211444941908263950116660441586788455000017630835246388843792970438523817461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24926278265051366825485905274388067953338797854858828040362280202594251278729147998233280130639506462906171668964515748951370200585776852386496091434789084675602592083799061703553448364135984090025213402205138557377019092365635298955140100548391354736931921403253455251043117659333219018936721837932894627593439639456758322675790171261550801297326823512687071347594900302134486342753114483101023849340640376149252712495718301449714692444205491282349329635190716297718948917024656847592179547000022532779289405774096549595022614524880338195543993579452020157130974871784290550204650467802587685084687383711162064433311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25903379245894577846993192681338238209838526616141669869158213645147811384330858644998873062113087917218236230630075534882801196857261127526462278655561601513273025339954326374137527820992404155806431939981578524133465244381060702938609633676797714171359156556798972264680821641904154182987879692225059711978316239625610662705886820309532598171278630827116518653059913966531448706160941913405505335960259848788880092860813672322561374450902191208158483006995550322003965095141513161446434836345349025986147204255739636432093105954078792813540119071140451128453880099469601885362897318780045775675941896133688792672257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24773382523956312770792207006891296108905712056993097770547198016525571403595444155005257057758208744864543145704175765458977216074701451672874207752586900658264222898602557292686032894015792263071634630789245220489400822121695277409523932145992706533815639566678381738237695089597599167760453958340543776640558058613693727064607184182926831134684188455743374950827909639076185435034990165943113611115914830469410977524493189486690349132324685924253262039773377778293982267902948905922228730934974683546379124530609948893711389030674807431461163551107414383133678889472903756253924517248200251968853747635019078277221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "22267982134468588774321789967589233278878753343658089139749171544249635346633272018845051769536233905135952655810394841515057932470714409474070140626910716923633915477970228657478221196567439130668598199694984016385299691128596006517209345095487718500325129044653899418541865461049167710615007393839147861569509120256082955942275750372708190873255525407824342039269088696113400647976250478701955161834618450340094636306166751536948307076839874582522762721690453743324542059780849616464883190809714310237848250382039331501254712473745735960372192529493542150454169364172659661570708027702386192055277979351576852584969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24345332271402428146890554962308201201658691313213091557761662751425837456606665862044228368533680621475614216603217155634703249725894339295671543782792975323365897148166602463540452112850237966621403436610826794314282190202473688362832805886736845730319579649702875704428197366794871019338659455593371916011703449617520763099525329706431199325965494366873658785358037765968003901274937251956301223778759169066999006312969393583364243776256568408965786312976848248324464932526293503989652242961199334575462488437001382267172683664024041453131468983970460144273272496298740869780536957574469888010764447342933074328253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25502819252393368000605179292781708734703215259021436705904032947084811662762918472124791859118761584904119601979963446148182370790853737387577098857766349586997970090221300085406136645371781826547499300305115270542749332089684168249081043973546621615901240303006819317617962822944557901358970864007582737942999918893562512383827163991663086909231951496106502013712080203402285582427879984931062971609182819950001739352343496521620699067545593821002400513050166224824783906615304361681841948082033523948808330527777124065914490045032224315542824180410991086402784438987513670369777119922784399786285812396716803508223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25654334767845140024280278521486162810245967992425903832738355979396528787121912691128928931015277486596564509876151588609770930110153933062996764642332955352998546215795882870775831322971822284978260117203288295082070018376095704279435553765513217890220763754640587579977572080981957664157082193087894144359581640324391255858272013745491563110263540891378111557003969981125411836815827210916520918916560505008249008712241912354298616894475501832964921749100499484855423481051858599494599313363525730120543137853008482739397362011965037602247254715425186415453811822104872746678952093275421201311913207737872478512931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "16826667514440076425420142306245491840889586171444403612383943298139451282099001753084991969744762439369821547537363022918637793378929982091652163346161897366380683553226706182270129869227628952996492564435191282156667563475212298079151220482886138714589989678531659330740617668689454563307976152142734947466783911127653663073344374965283688844982498702780444166362412887075692023539066550693597394765036165354431906596296045258081188054534531361137906605469853465176578494100092844314454387703223565971092408169429613190109291741008814868211117057110530364365728832349518993259261837249132908609828020878908928710759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "17019317774973293765302725866546647463843975456226978987792026306010378956474054942986457560416231407400836874263957648631462135874775617094132103950941264870755533043157595825889362911526688663422480954515852767007056812586783303300984545112019869512404590433803682202580863997546662764312973421675851649787066540180855314898937233420997108965197964633499075517983023259085292612667831204504490413093431428335163502332366973416946177966643316370423505597812731941713951002393076786944671516914248240166227285210154150356437211699490726611523507708971771593335863142788399710364725939331064064297974681769402632756979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21804464565417746937625878478425728300344118663149223600157313580892240877121504441997690361452039787213131340443474523966598640568706602704783717182226332059480788078481525553908601232575890757765636526088152407912107002086646513498126356360419477803812046717097282899358535420185895032519450342597911616850400611867624150142066912961303382317923097116865217028745419643623065170950682378369082718948460014662628455905456058129341501783663511610624975351180643542694327770753881490492647013303998226241836227920283406555375306671720222971609272977144676386100077964324903326725818412636442447251551962989671889110143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "17351360170425227192327923007515509671385801738930814377622016128689376579302735480820437658972408510994945470445587654412876836038178482668953353066461794262119734175241403702337524979245398892176002336628474529305286403036491733255087772311956496488277968647920325754958224443916604147254274869943203668396544766540638895513251950870086825040757831775489045895074259911398657178567595085025740361681274377774523479764018557517363656311823578334535045992629911059961524405941798655672291624551074504517156744230708041279355265244754563554365538388290167373307460908871484872105448584667315418861886707320058007690719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "30454740929724362230995579152031599471880915775129329286253734584358963048769784806438256127579823575908758109780481419129294138146458505701541058114223728559012094089204749514857983839542513714077222664462908692532951280894242607614465844528100626364663334999847186406893311251726269433831469039598900313735057036859714171468617770294138658736170045164194254758682317664173013697479817825550273997594575557814585975801113208960113115553068425566641078726744546302346931307207652281445243926123914074533693265985376353033273498836928253775865031862676858738409705668026345479890109780703964035196619130316933697432587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21947716016595195044576016119113766365239452943481456541955849193071040595029360379758759487124985763579260269930394245458793941220937084537689903878237796863938034143139719116723626293708949936299372738514981404979014902505142412503221340575003844712951409341192233459590478029529044097489824704661917904705197357540885343947816869933160042560588463625666328359987163699830622023071459769079745217075117235373186181198027293044077160160867794021060188212054954256324297671757546184373392278275462318650212402626163122114875926319995675415515610082597905328919866830167031251612552901934152246489817047644346493189347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "19838447790318609952424360260702121178033773457871941899537417977917204711292954760621952285116326062207841249572022298389990610161966947216286913827589137570516104088854214744897343808719871603828347425065279862549087987518643153467296375307311365465712956877581537207462663555121770175639926542848837300342904810835492265474863168142466451815959391370795191298885118761976493142143979841697628245588816192426036195332626754623765212609866363390479059533736548491037350709678753058585964306543617776470907463552115534660747670265747695683564771753102519702492871101007676593154129477870239041167331264843753908791153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "22453752014629291757020613076904362307740519431034868642935400789628358562833732567355046761192622401901276832155672170445615381495783383890421432127063484483865857214555996671795399016052065342363104285908424230669359119963597405043463111178811416492915594068224810364540344943457410596195345543234544043460758877763736571737640891970328557659305528183336946187439044060455449763295345961206326090081455935283141210110768575378319732376197491514595901021068161143138099239236062783512474976552551875704468089940510231118856721271154653134033126751631681398756426335607455540342254035127852612832927625868973017522497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "18093126687804105810516169730833055358507739845123877801222750162799840068516383744748775557296020265494326419618418353208654553034499934193657272104958506076416624035907916975364276297665030261708969662900826748604504308037449314705918588481834114120383443382235448884568075835204586950705288684871987658714955183733784457198990452354103803319305897911148494448500510174907694823805481551580130403185415192646475709306315639062010287873423059449739837055718607717616828093721483660155882665083700469702834578201050162678502218540678843319405205231506282689322759531363392559970057482458456857309071663318561745341251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "26201139417778171770885790381136446192410283937724495721249072510433577894945702065061317228211430607245749286517160642509861848317436762905808522440989220314757175479153951320032209582168352416364429134961917481712420548997935432144090052970018775889875080027598571829533993343316552989562189475286899048938821537348074425899487791615669264637318846910346295008749588149819576856497787051826498767924500245874241134854206607633000747656478073120764268975248463405401803688198882707394094484473846549082106735277218234747584501521654591921881205805300930374268523690015956528135041683417423911557404652394102949267781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25802179012978896406441947913791782872189090771617380939935978470664874054634076246762685390224365590153316279463034531869753055847419947871805884229346029784615544267815708575487745910006988530549658379993539455218566183594460656446284610943252972635578018272266703741225467911791731669897981594689174601942856864926472666551508057433945107282918620032938294325010088863188001974086989970350858245635763983213644341579454581430397244792470195271607801433652398426222989943615070046935583586988748891253290378590639141804627669487819014193888652865497491128594361928315495149309817890949331247665485935227898756332903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "19553407389326387275914181543529835500337764564585719492050531987499047980132652350956854240585924855480764346873590436190801567776112684548512429942271737914729209755498975359701996537038701093856114991144113279911744470134628598838811091740310977792398153401392737249614787004710631126198245614155848242537841475211419651957375892431709305610820495819443230313454709805122818889456099136038607986693154092963638226706748155975150554141622383949502935308127433198198939410468037894612030901815410931424573657044674064448082351686780322560575860415053938177187902886506691959102751252957224312832906176508907345817029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21559982531378901968340596460360919871126668174782565993036864446205752854082235402870893888330154662981327861015299420269837624170133691943383420029716844823933312168709134414879025092813283855510046614136933373489377529522685562282458547160555359588494409342670688752388933599867457972537627159399793234185861576344415375257155709288443118845344393685562613852119333082976654621801329910844383751185673787298564313122752084803266660908850657486694706848933054971676609152655125040821039424773450240613833814583967770262301335464721494402160345664812856846094708118481747015527508628837653643489409627665258952414277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "16873268140092897756403379056571065412345931967819852238355177370217443391451326952968478827442997952201933180404864701472516138317770132485889356978555975471552943337545999770924820599499997347607950394399257601341670607686460537152084916068117570928729649600398212873873747805723792044866986303796485803568014590780236074472992469898072340699908153037574056811565589190631691977973296549871549961842506018899788137965251669116786510705692412174778659242022198980439601685666774362238820461669150891284256013962757088629954625559660134449033429802984966562446605525198373602992955013309374767407033668956148934219223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24929659902147443884025232416632316483189300832803968028147221505763491760332894629736133107825757959920983361949507654659737431971582455857597737467197507790482214607099620701320434856216086426041743184709213430700987402681263447168723187457807599007559431876429454314648868126467875061711429176400137324267947331515551234796303172827081356301641473729688517173001376664504911656388536789335029220301405881893566904708181077545237848634514866145545863497582939174137998169092193394817910892034847029858072490423441538797690573838374812440113405354876619368469876501784126418279262242395771366084078625090636034419627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24614734156474616944198492543824098870971395863151824789538595257384532582245584534185937287492123467685317996942016109489567454115790282303780010273018122631522365425626796629120919142755258594178281683047347892296986576095720928403813567023290349199642978525553160848344363780874850833531429271716754114324863303878196053967291578899110347699279122731297116888680572261727056947995227131357229325976189999542720610557626761986993101173086535105272784383536734910356675968258433453770795252015271169485283117518939189098393883054407148889871130605005428982552804775881690114781284844320654398526066709441000003839153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20468126025878487123297383770665085780020914395649596166265183837678060732755481134724383557143682091223493182098322846181174925385618550073915678263740273076057337420695550381060716379726060468760766388737146057665765581965794927125716188179186651771852341106943487022132645598451438350731874610274710125450762901349434455408391357399510994187858858832536785714106199114257031713829221767735201209500663959716543374198268981475634904634902784965750196126558722310663995229587255583872901383490603471403930338632002784783467689619260329454571615124748572696305162087666846045123738023135137642676646603864129455169837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "28841418110069121741687941470653980907761952783815285460978335468935711358624449657122343468790220437970871461238747882135833880275668365270362938830915395074094645661104918878551654996610968543853497597609385121103747685169064534262823412906747075809751292308684773502707322624493484952234770919754507911090602041397576826793447208105769838757065352851903576861999910551661105752322036846898791986565224604259581345255720628775310456418030687157462558235290179230993406259286033291985760998284501602697673004744278050260852969379051993728125176399745473367210456319104107880506599479942410048399245772194339386958281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "22529941858221222328725268315302305432508576757977988235278498320730878423410075976755094447694068536095629760967695931423356133992493391191155692245239026094484852549909443883158856549325891445851475600169663967461552623588080115442621642686387706369441503604391728851362025187652336860444648724768146991624143934457510563247486675045959633004082733678238847468244662597880640770376574339089686838069977236456178997014018807320110437727453724872540276645357178158056022489156982078339345668441479669174802357477440664480585771202337379803605865156754352511737112163435918710435005635322035108492792513155304593114083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "26199958686407830440491192425628374116761476426671422229285852791173488523309518842750210820443719359167065186039398760112765176122879522820289384041170786197842372976196606878863190092506658113212513343388543517280799787934329279152621008402064425929315405598683089067794770650289670976516177103831303670573659505628413627373079390412053304905475646211672291315339432462784304492840646963998843669398515920900814801473835314741730303124104995712535189448754732045707645543568690535576250005521072179255168243621216573404627032426298278538614314193265043046747833012902882302075387243948929565526841223206055476410969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24140528460542967705634738102255648745041897727570431048385430127724794608296651673749441441996698815808808733083097199605497106292767853449661292684326182005256534263043622796762250224355350004886564034749396908198274378002023374440886352877717931626583053744781823775387244390075935755620308550041483304901200546233829209189764382719408976115663636812866203350914827072439563506285238269980758841200423211786618967233506086935743889241527782674872247709458649859076822054987795737108874787496528792623314225063177787639803561147134017315432573634087708557382828439804190856906551972632362855684065042530911186105189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21261246887390932478600315672568022926042317652842513629863553730617572495684842826029985332600240676984496589092559814017490262815846061833958131254268874511998229061814629062276939360135168053808925350765283609556766945423510111468327561173584708444697872492873717149906817384229191575058339445767580392434074162093480604445441688517808752400129304988695242755786458613408436973051091851875746452204600204915087701786538983819382147934468128938700347701383878476144601015381358492009916010659062995580483406818309053451563830521418674712660309787874989210729189061760021259959363192425129789187864272308111862531091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25361999217350434987183870168444898517490568716755822767923808109306581717529164476021173774107155471247388472112666577842439082516696429939042487179719024089483572722658173138819779815400731474536242953005378791119613103863473670823955543341623137946890720312739243021330105891763810624483147470156069612917267651015887455127339102912208889831978155543875837608123574435566391892132664017914336415914455354418740068407272648571279884940917202947687318876139835273270989524008848595388214038227877452648762093580904718951233993717035493905443815097436003871392351376572264713973083880788435514746802602986626397355997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "19828240465867501164118851947053486382171212754048902607440613338488433514860311888863545802643261652749827216373089707407522289877066600756609367868549052552632548454820949387698466613598128994072202378021157404782634306581866300310513190008906565151712234016209591172765076315182489713811679644755381121019817649987782175449369190877382008172408317422855496527106380014762115200232769979659799164847667117058810840289759602160578485930673250953326341502472408341151488454552400341053698819308759261443629063774368893255342721905761059510634021689829351418015555977541819625044654949587222542036003963535159131630567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = LU, O = Ministry of Foreign Affairs, CN = \"Grand-Duchy of Luxembourg CSCA \", serialNumber = 100", + "modulus": "26400151135849388812892882481709817301700551574959864132384597724627960817571769213870092556019677204459771489201768625747500070150753937269862643824119378019587186459733016020790319621877897923078603512950964350304541236594157712744324907437177752806804919944683169075099550941091243084662866389612666784044544057978341842492469298084328098181369108399272015886764744098763312272742564504914045440058141518397966561131868354028983289575943274512472937550680934312410740083808112947007450762356047625528813413151904432728620192864540157397788633814244705707264610032821763876251545732703464015108433272265401488370937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = LU, O = Ministry of Foreign Affairs, CN = \"Grand-Duchy of Luxembourg CSCA \", serialNumber = 100", + "modulus": "22860604792613003119865687435593460512379788765979501014378446188873292057168056183808695456867548485963551991690381767582850297407319771544073773664296165823045856686082341359720768916228627631078657361586755261619787519063866075776503691341620113780953370398739344586136790046243419665405132280381394232496426501829546743596177703165075686021549715561981133064334360583813875964592485854148379423877260460128684589276797861375815527186564948120019750039316630253055806942662488618959740504058836810215809297646753905674929374831435665879260388121899905836357221177546438941283457566882071183559309511615771119546759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "27578923369864852988850303157494039764736577183365115427627762190765928314738988056694054132407220263265259525649026161992131937080047464286083918250996259944480555681848970574704447088533723431148748565173726870909550370212251934707752325557283958303864603094367170808198609987981572533960491827657579629476083208858960501789434164950402462660686219440005665795756670606708957970969644431332733504001168387338661583368773302007933653085356424298218958989448622294528331244399377131748488614150612031473440261294708174538915420577967034291929900184719594616546735424607189886657381618435200157387594793637136712121337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "22081425073672762411717084083871548906364611667561762787063751646268962683459326309815975703609841440417932177328623459117990997233548417350306217739490621664819913581378743801651959675520707372827855679492577575672763033005603977609349376635262929939479861873731738945625635384745543208474656705659891886317346641437149654989300441836152975091372976882964956760287791608015004783502044032919750848101186869483903689568385184085835977969405610775686673850467897243531325197424486264688792711356698232119996439481186915919160779704894900385893249840361925013558797114308846145981642813906324548498643853947987479663887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "24475615305005619742976022237574289248101018134499876894183491877241559192537987904611627529282039268020668011172720813544053214169227161703164355166266914642761076084715993291834956164031708545228805782266634321740619593044921540087468095075500013375629566796900685588509652115394323532398783024046686952707928246960569302407673750752590393738437363082780665828581052455539239456247138272278658076277127078383920705442162110922340363943606226698328419007606571379944046563626866193404294544241630143423142863017518568508403832704348937806733071497072515542571384439567564635232427349515350552497153739366961762323461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "19857345538080191788752393084156832132546108279300038550509972113897399459283656611004265811224268975597239689864850956879899080607749990685799403354070808716743147519680100187488128477057528246655561940297596746954031857921552781039734988151577894522052061943151164128804791067416031916852866778191025705597125722705070551323500685534293274663463067236685662211400561136165015654381978529143763474295326505120202130337430203778263839463906938062496733061691836885364858459804520899765318965342878706371757388748328459546111971000999944739433065760264402671634233107105469385582037145752249809498784384785056346276979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "26512120075027029063778360646555000720532449537660279406708715550759947899985561429876903689768282957471862210556522549812343637795521896660154514689538764431415372546993719945829974434871806132868156124673753572308694444787135724603164639525786320035012030439405642215651352694958380458399687994787259137010200988410180964083648156253814383054506210996167566395237580521810240519474365930801128931547666647093427837785812489203804753842727863206524640283518873663452518249251750319565832022883520166730461939886740942767678281734522622585691579179146598938955180077947774259244156745024102180760896171513493053091659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "26539285531184620471276816188470622182130027739361056695044647360675025163301693692960647045496306147040390385926124928469199664509708891543538882166803474156625312075876975559881178529054934854562673439230233724300161885021144126600004056317264002149914423110559726548539640149836542162617580494379765799608047873105214033549497938482645257036646183606947701368126235438476372907597912687299825265296523357506106437255843945375479980610209639604391585137138652369356742099633162933867078612669779968691710997320230924343702558928456515487049808695062174829597585890972360503571915941221218816326323140594727509833961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "22701186955349193147070834338562588113259861626262946862142913412463212036649283833397736317809487700980767192774631322012920016036540217235830276321173536808622969403319086950293606291077339910148964983123963063794575878181741722532722902267446655183422367791744859904749548609498431011877839732430077540364791457704278768248164590030667043866692948362157982964712427202012100470508223658121206891566470718813908592860834804043519819155705992818698348550201081012241849204713422809063676680192129664484517199852803908843360425962750483652909550590036143265508482667370229004895551849483924534410779200141598557108269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "23408134598162734623452576569105505025205070385582597611131324643988728785514273601609070548170561598748346274446466416687091719232571676327408531220090030303494952098407183135766331213241750891811303977967971281343054369689109251457219396562044949314244169656047384495342152140654229345322081344458897552531655305094198178785173307197593491550383424893267173323148691369173151887144930354896861866128867552449160674631083401130260719949064669890186221841813298334805847357457040025085395952477607977370951467774466831302847807307001870464440171403624477763809555946808202787560013023130140566284147158089626477839133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "19328304822797194278207688859360013167136243426440605477209590873618253028091709941911537922501931939229423437114893889882276764671613235208786623863467428591100983808323238498430369453935296040098557266644680095948594928228823311542426844770562251767604563377050125267544013613810070813053877739239821279792497214569569950600556498029237702692246480164140785369383114901079786180372209745487501923332086535154306531659805048531185022386109004140009610525330523303473656894256639896195078905645138625034825739462844146820067596528700392569264272236268356559774591329021171157675685685235022682692545486278047615312173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "24263756768000774258395881066344189896945654697280036804806999095317680856381414619468843058992821420524024199976891993439753868195184238779846466025675776509165030693934458054556086485040032197805110764946521234900509922713264468656888055953504196260888750637730028515236621358312436295600786103461662342486051857420421742937599176263407543785755918225739454911070069424741879088756140889563256500332058211210894332527059242069762521359139705183165611682487902771725378090374200673877105513399954366629480513851143475996370538818108311803132648832321553296601971786610946093619278912957075989072272566318838398580797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "20209493691468719964953822713272905627792680351496770681418627693397725723003835094689177592568187390208143785026056742109165119753819463887768580516888752061842762627764932916066208624673688167091069243097050228315671488102452506798554008768448782762172627569120425697592194911326919588134005188341862574396946079239182514789964372476366514521401050908930673430287114227475680269685815501483114303050960864891837336778091417169766502788052504333837056655343105411304842907632376192048231374483550434956913896904189897303562770299602206961867283072609037494481157578802140813671067005862931715136086683812579296632397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "23880518706867160142525793760971647696324508405763270886019011018686776303929511031071173252215676187536846735787764198464118282890256052807878623021702469544628417746613087433405082454944841866788338235454744952520780548008418080564624703179384356179805607618291312531948121476000651686776939966671566948049848332830434802407249876941545860529692416679329499235187074180341786732264560230159375160754511091604921933139208463848554662870257973296118778780273123229080512877916968604370265176716788316144688950461101549989631882302736010088109886936549529466058631566885820153926146378803742043431322007342919627622631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "27711741104257532459997681652492091862472066705025904781800509365866102413016620912518957269723828336575433676396962180087508498316964359505210706890953583713227963100760673096778936100035521378529401249590443960377617957680496780849682974518915928852608516033538075177617259802586831856652216161162581534736318598474738084310967914973534952377902945224990742252716624730650511242406865273297281983914971995420841340805418736490084608698196663721756795280543922950048621845651208813854394888464303019487974466867353605695960183547124600168628110337169513506130178908227220054890181997003829952930189543842619503580711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "24740092732084577949814163375582416409377905272009795447458997237342498339058286284808508193607028628282289202264703531490135123487723339908410391699734498817158299629058574010094308997966812260295349470995365596540448172330129586984691530390260890166024651660085525677190356016755509532637018337381416614659521789035614092306354430816767790077319982809707447003692588043693362614797874940554541809371822135823468903371631901469785602271909085641438507525446720036520236960486359518169242423033566459493109875886838854629190400024811002135402996155070195779141698259091119945987230657741966270075667683394923973399531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ar, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "27706871747092923647360614822751586280360967265545558935860832213980588849912302612806105869044996164853018867741752471051677464552929579503815013806895854364242575451090450628029545937636920596822396032341096209428334935834210832599106103085863367840143220315734670120429569025704632143050582281507705774106192331459365651143807624992123610311843990810634937889257460022169655848142681539060825334513313598788582018632665783046876098104853392948897405946443019598571013445408327989045206821891093881191799622822093768598326304500446318685606949497837454051176097486049557247102277288050689074508859302751702388902063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AR, O = gob, OU = mininterior, OU = renaper, CN = capasaporte", + "modulus": "23948796711762218222618360500998463228684911330241793533473482803058909697043406911685153902149022004283679578322138742732615225012734449358930760670944214352889505124562868142436311894777227224805633125350354792594688154983920438061002490245680941156434757737354917565859091503860015736515093982712905963620240733132635101555607833423896781467495052698552111540128893377180499083115038682438090293152289008059996385504390683656554575188735724291049294273202098850189523713657812284087903896106380589416329305696529864410652820068837210927442915021000453366296788487928714082653705822757215876749186467650729826788239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "744607117486128321727910982247486455277333629249632847170252306789751452609040969369227466376986924049692428364302540568164028152380287413436974182461070200023654724356002562343386164799948896309296429955364216164668643364156133600233196511898001262790025887074519324625930260829092939137228557811618812225569169240031297745064050011555408663873394852963747892044415883845207743177563763928211215379260125760607493966531165404361760807654556544651750686616652269289749895397103217257285467642583483080519827885830839614245901960708925880608959838477845430287756417234545748725957797164346089738534230727774643191993128312028690944921099451719600534778574040049753422638773782626867037421244695864941458528854336653099471005908147541290453569405358889572821374366967294176344416504842875622580280294535216279128532030373470948908972454649374162924646277293647380377901551738792476570123026970015339839368435693617646308516907757501402997907503380062396335338119499433469155926135065980463406402319894487326197274793001365210151545388430035612916646439492015200910778406558590036912291803311210665551163020891104475375977227855050199842677308980545151619350780506531510333841805005115091484126941129974617021490857681676098194118895019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "998537476319622306768811412454352445469135125734873052592184421085803415118983714590717745257275810458829531327455636882998791495581433329767129797513925220020564176026080118836806730333657567296244196878604016695633346428546944090759635657020342489643264018820898006556751392799440000523282572398957186635124416136517852462066195569618182350668771313518375590815195946139392932023552731926241450517249836201989268212160065409455370799027965496149104540195990426673135437673911449073805262520374129276460372654107775530874134427665309984822413117152739376480209927708011149937181375842060621799747985523133762381956950228644766527400170134681177468689674395090420912985184461227932650712701974884863760238371897019157622742230189251089087063234182731420653797433152512608416636585763493091123707372110728909622429137817921752950077272851344864261063093935304984478522649050816698152407340278450474389450140739858825318897832456147864348414051565983367973292430510099237872437750641161412090652081244170653393325365604542359241434660741323766197072673395722629306197464148505098449977171296500804078831936096632231719424161501712643431683799683046009930883354044965517834773216961200800868866558156744272675712158588652587608482980113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "786763380804109595174540945985321730430674129229503955701565113380694478932113158836037316454634335378089047427537650038904641280154353865498189812473567987963652612240333491266108261117840500038120429347821756772399400101963785993257859723945299940741095822405215293131257736527132975623494133187996072923289939124859322699511058254169146917877799815685053391989910360132300163115347655792117863529851922632831404368561520827999083046786195500514368273873500637034321545438177486777860257057479091725750172481951855546146616596759386489878156867736546509906149723191075770022220243706426248054730279475860498751889249768477595660659862224846218815171242852310923283620174410119293080195602402510651525259952912804149588490251913195311877766704656055907700493414964823169171448468043116970039489213692653241740796241237638213437147820861519841536603571095012277878018266675398021973317693150781562051304076636690937946530545624396396144612107037297541323256165367332526966981473442243208221051595199127975725363835276371188808742937059921938720853531175858570276935058843678859478413391925964167158318308240833944477026226443646628184857251709191100736494412679989131333492857002391052557984188365223577005762861826095527115216778457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "786307834716490599336083609574410625561347768843320295099174539482617566929085774279718401717008373559875444389214181047634760056839714732460100710776996646245524264800817650246627180659634085735576569746590897324862275559986249688646212345220931161430797736892657662592320317928509472084366801291546900568374567707676900915354283907092073858834104059479273393412130162089911318756974639825425867608607505527314178034079948807319644085006723817310950539372273602396297688836543168230177799661979762064732706264884388352670702178372185132472586282257771785436871478061127749817044892138875283353169085644979459001203944311866350700660809206814129121590604032453241917978903583261739547770590158703049472052940301869252344539929210769524654487117105051231159157870127070541629526565289674002882245506221842619914566937459098879438804157833031320345845370681389972575498890566973942160493543468632875784779545022506178600233053859139542561586915782499277135738366227490112929226112879779899963346781988688536856864254125435670407919992445166838779480651713393428079635587008440173714359942910885587304551738609429071128065157060398034434828604093807235233950554570697478968910266420058533193812074429658701273173384362427503052193792349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, L = Kyiv, street = \"38-44, Dehtiarivska str.\", postalCode = 04119, O = SE \\\"Polygraph combine \\\"UKRAINA\\\" for securities` production\\\", CN = Polygraph combine \\\"UKRAINA\\\", serialNumber = UA-16286441-0001", + "modulus": "846051441422081626777362179080439074808463583564255612006516906607707603364637279237151799346791134853899835230427832499868798665619797668880396530572975627631686059366305965186696379672256554312714591499279105314625979392040103660667310570244942964134095217960098068457578308957524630204891904258724484266586365051993470378867439445529727060119695216345796536571071759173288365529466535997826179998892316741132399401717255486000888130826576329931674672068942148794147114411614900713403228897437313149480969366283369762275234311937535339858826586872275083035693814513661968732193277323512923054686961247278880511784936606208965801525639230423325764619954118148979750072023010840656700865594157902694621918304015170011514651881854680418162207635878510919688995463746881262714553943542100657818588203946634130482332788781160725197278702134533579822772903996916831317460126077532939021251781516038735822447774822533486244803007578410127497623796420876069294323488507083893192201198749485165844330055352817040082649251724986384542875655081715390438848505442152497905913517059627007820580206549608910024031436528145745542075070956445410484869849880049544064639392960629660945134449212034632110868977394866687218093513433113231498065607121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "784165612419508741410719005889419874810380802650296242639656537296615301076572655773658432161415301596058801901449123441358204205620056438636481986147687505188852242269350521132805917642466169085670959087996084642933437880433993859499997280435774070188966931087680633670343329224837817998261193337660090176530351825461754185957061833273393727781413459737655554767209887858749192750495520574722844160229682950495397891377634133018189297415364117154387755043931223333004498262270162274107312691494547535216166198038301405800076897241818361716290888153022499792761395945411475234288042925300398589186834673483801905409525556920806192500532748772511260440584376719873269914241490147634227234725516017466923834586336022036246119483497503050341816077468502932941506363699124547143652814418449828202106984205145435657618458145372371086459060566365643498834474398612057709286929498005549091559529859331405870373044982882391366009356452944773670302612829724823015909199254559827797037703755137089386148862036036373620384536518760583316401506905519297407993399003512063131461402235266293007279871388481385334378195448928476792495373571547750259257280336245016148497594284809400685892773157076684294256198542695521151808884701331250191750060259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27939822960437139760552716953319649490708910131487361670496479357786741799545275073872684413472364141975028998301233891895220892054212925854793181356573942168895270524544035584698079495065489120223319077166832495706164483392807374507148472078830281490728886436056272986715762545355017190767348914129925974128356152881352637675823495303451215573358211899860973120459261110842775228701666220530272092280833349613963127188804050821360071131373601818687815334088420470524731811700013623064952509368063953749718977882729365190366436725520188830126209277622693286957382977956705542562585697612722578512832313456668373574393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349278815441764807717684861174125912157243257569838452204618179035308652228799555045123987773453480508046594610007108478614129604191458247997743367541275078406859517514357183823926856439764668296576337018566064147207642021166329320941507701710529230760225275681036778221999653311963175549252240347267758391582917624448762512749691775833363761836279133576389818568513469451224042348901514725409695317585972897416957611169569062594430731775094905497941110339861951636156000882215020121563809253156883404058116420664318879420233199043272109560303536882042517085454469110750218238962637498477628405961270322161844980569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17085135101183294026412082342014374085340733807782130667145354837133852813514756743911769435090483443347567244091754017366817195310902853283517992464017595348966377546411119495540328780586643981040556304957931899648063015828909207104714358329373882357991293198407629202064340824442388591107944892211494108458372782714860945467681670048944670056498835526523190616080173531054099688187188433163850444104622716643194306158933988644460732068661523792561380981558733877547717343596055297807633351687517873331540406100413687222904921952331541566598773319985006217105481375974374520681841050497507863160163748837963652262137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296106691073207122215829311206572737790381865054164110743051949791285104344764764636106566526153387380746171471408502414711115877097741021698088818658441965618350362892427502278590977888187426655743726993979960879206841396111840448489379413406496798597361845342542171983110097386398749643265950654305025249075069087819822095966170455973475185427042747109145020012995352375287187224992683620353849368412267444742418787773309479645579494086630760247791332014292995011816838391983743893175370797958601792995648207433128842436018238877094092520918523582430984868021590957290041271337803954447213301929148328225466964651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16364603936356829004903905267706703855786359211164855630367812447239842963108317942070242013987330254316957441112910973795423985292249158517631599779765918624535333815901224215772385541009783779367720526296896218310966872823722525377900157231781800492987567950122039790385989746227247281437838401511005809208467006606330362853758805922763565146692081839774315376893225019198390168897831816674041780065130987962347167361730768454515622201254256363333256774670803781733265661168001171007350417183322313320927123922896560472273787030460974839096834670577355285509934426945287786692033140264017175903782249871079328948173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20119785417497761340419533394402716355256829453164239151334282805885873974197613707520921620340882957870777404022743186770453861811411189927532031188636476335662904733975918727579666482762737588916475588534845714514480879344826702561058539861962644621713686362092472246943650591313623922683153255113596567053008274847095115365471994334993662871274425811097257150461016385623761611703690435500593249893296125753837132676036252123618859990793408046174980122087241550467906287342683218349513860516895756806551085675990185496530697547329214372220065768919463576303276670879658456812978288356073912041864293546651661817077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18469244177171783121872848809056789583302634162532982584062557740540587216415177505553338982012586336306405213366151968660750390058881736763589032046635705808801986615861675817091842916081879244380543180014820770682213568776176158877488687959826456590670557112817175929200263997305421413247270598856888085801698574291680042810345636615347237384499810552688344530712479442182709089147798064862583718893915011001391296127233962328780509789813365953018109694669848834388040864819928116861134111141051619107496564807502869585970861071104487187184170795251869205355523875031662482052844542269208568222756657535136550817453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16308381963155912917428992300443837691609646559722047831909314216645989053386703128635177320105042479181026326496881563953532944804036556622342901168326616330665660550632815082857442555992069120618355414702251788326582521091244670496219167278761659989383594774646867587244901330296038371406466841235079375536666830278694539781275482045211114806947474935851326242259454591050169420466005584033676504050260753831809006346188819676730120400365958335298107401763753234122074679959970401368930050950737952485647048022889129722687160052875740210105865693081560706941694208252103489584178303748507983467599715225783862994911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17325616878763205498040417637209626059547713424849108822457987704345819784057510196903025627753804844220578876870885076361574029475033405057474405552396232030257197979733533431895237111507742459970812893109612467180244372189250021217693058631590434702268943797835017995758015809379556588737276155124645640608881049150785645046139790516550104232913571181203094413575431460047284863588264973237813023414513933208180112371174138225846055100339362224157630579034597345656128766052979946575078613340528539741640448889024579093389719681460280751053083622264632145457044742691591659058122217031452860473864567274106391034967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26075385787688645080635501522886604776372919960037622571961339083423829108322349504242901712838918038927677960657497113376252382723488309052276612672871986536923977690688454537121490610482331930408036649844274466970344112549113802331068517570633267239836720975224106820957475792038235308029759801328145884947833051836447143317110603614250609734446176838117652810527749279729842567501506112097335966686195336247656530571496995694816906865066667153218369744510835051211283807340226208476647715998211627591715820863802140088821712575381270409207310843991742204325469859142784203678089545670115794582346321137100282989343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282578912032779786313151082313233843975543806487410851240835492313521632515132127958557659048177854988339505194851610937196414111355996994858236147626705779228413632742947517884239087962930371921428677515498975264101021143122378691318802250335621891624895630137528709495687660001859750928751917954670625344183202803168426458971134912103239690999942350560634784086822977562319720993183229360038729032935065815997118372166699721163765076321726301263109747197126274667602107299541536828687670417725064533418012723883143623739088841658139742573158194117612468624604567070836766526428629870643593327095360953183222143327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26526101616640550857320521596013330337370199675457691378760836488709157890389998479815764076741630241252764110626969818651580780568581883682495224609042400609807749971938955860638320157355818555255392148492014124095800528161552652116346570952132531445044983253409598822150738905099930591869152528747664296599747950636675901705578843302234442138098431649987987624242394186339377379264491966488577027869850305086404014034134556366284503527843928175122023000712769754485240174387833346041203750713698062440290661616072476837615015161240075465335752969467592356863859754610938474000811485671116461648578335405223274236149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28724033495415138265315701490621167063017692540847364848767886299511274396079786677729318488786865633690468239424947119138418023046496755667512796874430801565712344566083949669373370565416255815196870550781101980195841044975181637922330716463453810676676041665660031464837179148466100729049296937485312769748070750075355978161268206487895882827580803620248524502408120684639770121532711400648926532495039759025361835661872972042996566207775566514397686346552156928881805297758683432755214323544519705588554089391194578605396870423362529158925430242231476978688341603603680640246396529815786870927070068508499470648589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319694189019423089148187932069956631112538596108309462496026067547789949103213075388309388015681520001689260984940648241951262642741977911714390141809077677533569927871597785166985808685034880441333194140385002401307668883413718226047780419915232793186682259849009056027516021706935434058196630155333275282514931239164741500928709067049351627776329991315515798921624896285619973475907663685457156175997537842062559215371148685521231912119869110045637795774368986046703378707761424013625068957379840602193356893239439323948546965451820841207673517568877263554276750335663576345492166280326682695449103781797365765723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24391975219763757483131080398959592003243970499239346493599209837116316757392235624785970290169744206911403360813993691393185207630225614763965409649110147076997126686045950937360041928053328548700803122459438095890204198734919614948656387422710056167102704349932979794976761370687091686801260961416422375404705900485420507259745112323103964062573288803693189625807138480969726115900561117818536817200966818049439010920880146798936563491562357608691782116885544333460817273512776718410604968373813671529532682460421442382420519264774634204833751248986430052009103764479373131381702701653020290372206805328764464887027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295066324746711607242965446857369032074965582429549510079541521861386988732590891795403163750666245858212761757024429761910611912444271865527270246373792328220152128457257743259932916707520796976039726428473692675015891113785582633627914365186477712350381872602838420035624657536895295221026074621869852913068417131468723051425053576053819840973971011525229133845831637686981773065131116115520224636007281273919382371599280868548075376696253385732371342286870471146348719216719382744269084751591274970525645255023113461349991784518864965669299503542700150243964567387050702694411319437623665367611007695856158893727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17226697499215898985011726822610802842683359290946458677618005973889118966273471002835984897964375141416801857295109094700733056671391465552961644723534386952103510256364092725929754475411040097044359574551543997263281839655967740962405615668479904550508949090353370580799494567454392614121744417045708288613423730938841033875623467724292831545284814660059782623155526905613187381642866021306507200391827698542380710040401157836230101420619367893623279330729507288323085878883079202628212679312690173458737968307938419712899126573560540841936034317495599904577089440819487231739327657034562982050314325322539027277477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18921420420824666887747149712792887271053934754697877346011773515607486659952394006369391249697465924555848316650926042131739486388260850585058750795263440626706996298379520757175475124709589491779378558274304139990605467139572565771343649977839693155787750763587170591017755921978703700056674296740248228093880180190481127466616065164645938448638962060223769229918805958708718834484058815160801150274253864367047869371269483656862369022863029145749637416309383970869667257182252150663495028130341000771613853216336407142070882834568488206749975234422312452876120237702667949728399228546882470803043154459547663132239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17647901775498360578593085942585133120589916424526268684000856091074898896603178142929726240702753156597279434904177975383208419311182323838958897472578555196540924458483059919719806966599787449650734862953814500203625133036360020297061031573204862512788950863529534612152100242019947371112701141581547226557659898678372368817077823176321254064391458402717719062295224868176617290244185432822800612279050545684974554270446493160185118991350767583842492879883552485207849549847508587917057395765366465182974680563369214886104974247528088885857284411278068615968562433055859878090485478052048413470864474483779468374103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20065320120417060908902466274843580093872115976488807452321815508407786014895833656072251235218154482225606323776840092630874052377010203430749524540065816160843479310909988207553341320858062770008982162187627221742746726355825867103041792456679408904240158670490011539405361087947273427031178594282690356370225328243279420440646528418339415019000232700780028836089330637072991040808385630359070306432267987000771390346995331340101272533424369033041662826318301837572233394347869897795429902553340025868068422815982796899370231686009009520191024533708440591026661404066879851560894146739676293204504727769538899225831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17865835565662865143130888881834615365271329960243482763877983633384531604377903528627984182698718595910571743348578503415176085674370581501380958656892171135396109727594444083806757417621919331097403342072453685785812265479483845162148609235025873302769563442456432172235879198051324054854626755912233473864048366597352571475014600411655318290241843095248123754505931423452345636225599737471050863554637722758425017977357346148364687027556582628259111197662163213802235759699801161584078693920791488797626519647128802320577882171687096768218306157862419877799167537296680644287923975541549824292815544557469664910871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17033713739800222192900202235247524464279428523347231161932517649122164353125784978843404076163401962992470686202860972046735941775943172050877472827648009765298711663650696852793583154977074353310007796127214944780273440541142879200492011272667624974222575887505185736670043067285953181917962480860233723368732958515109319866222687737054614070680949579947063165672708630961815113910429185840402920059377678638567519341050253516296232085064255878234785476236718599495446178932264659931726532055935436145384115289358774501513904316363734830598578831784950259067359990943815748580130037282038080395885789156270098125207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25078338601244123387738657707419611642660713203677470020594285826928837566128851744285566378553966562886725983446517140437602981804384437658392426714275882748127871655954381588076860899221885599843384352827707296339734799024588077645285134222657976266482890338886588564155930253214554567161971780261297919717858285505282358789543983128922570471173415907166716003862282221302126365975203624429695300181820058870011925352673315471438617070328912326023132560171678335254636589189677316229308060824657994994524914413890650880320846917586499566126256284452615706393807446824210445224237206883978962609842215577419488644369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16243834155730451193716618680917804560914512338720016159827075267795846739344116468859893291635814123313755867125106408866437776561200603192516461253663676701088127655611470238859720240470290571983406538251460098209834336563921198077844180150841301824111165227718275768695121688105518917045376398915446145755168330293636063083072148073963095199311570303526900236361521910480966904972832064460294292772358077907150513813260595386061256319344405932928842678066188645188106676795822907744419435661912077123110875693495797470506780508479442719958909635081165529605443363116124266361532054112431563227673471286093237003097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25639622257401991869945559961186391469972631402175620160846033984455458408562053276844925742594987848278403009190712472013004966762926886054407877486018891685848367791929236860316763565075027773075505012465041669178486356697774952508837605078530521576593366214262112624024431889580442595228275884980411802303380461954522497979838447590522043665547164236552833095849631715032265962348895264023613594852426282762201612028275965468938547719665822868879330477987527786520461927352755528078743288947504216259680605288765389244566147384731280318483290298561203690170628008176234478090713614698548530357529999763626416932957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24920837132884180289089264201308089092719221044069847924127646241500421000381615804149450910950392098363584780173263700379544073545312065488501884211212711622559263402212103408533333554549443774900885811431035967135992716914086452222109902721698246658738091621025569391608363119814735715225111071041958255751094051460651489198652703824246758343930357391786124688814610721835069462669747484102452691091904347259928568021748322845607974099703616265517085344352313896088657854951368588620334258210901291398661903409753129611639031345603889648167389655008347283765800662797251436934613030810034992960344689809401070290947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26248774206653801120873899316827155831322141745130800279332472308143843725755248278717432349666490281485052620534326308565063806270247164635265806718125006896557144565185402739372991624041094409297388658033969077597683373747246558679204452043317604351278425433915138991513010350095947139684872440638000932091720222112389691044131093890087174463547135038590228884505914925755597102245108398215334082401954995736767075604268252046523389787749545007421111257406292131175642693926605115528218243198014892577795011535690028497904548966921476341430538475261241221017560871304139130133087759624445422900971715577933698320953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27567871757673356325220258181340736980522869112359243227331689539402903608777379898500874540810962476285853540222872988152715726402781094299782579885376872169335101564971196863923316439528810094285020392970749888440235951798199188186853426222791632697346350390074297886067369759564757326058175833806047453292251215378626982490991526181745399516709773056112466763312243872504686969759655204105227049608864582972544663284732095434869446835652258107610305891161699529617987712713892783066359301860852975409589641493496453641320556360572189101287578727130023130798345348648864240323556104552034303070499402274921699992131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21304037713401305719713158044119372492417243092131366538386860186791809208864982749309585762183545869716244187973068047300520704934760152385655156210283548882280781042796818449702767846932110172109094263610897811756676805523021184390577502147058702743706062949048393536692108869268113983301241978894299662175377685689739249512077412620912803071210639163313027869379655919841770536670998071096949499288232204968550965543721231041058475680442798922697793403451741657510208715671847651309152978940678990843969568850635876625535193807504759728946673379084489931836798821737300084496096248202572547824230162032745409680739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17643278353388517597867331695450443620386349744226010551605471303273878946273071931918567464189026593580511644017225488857126271445725320601053494266914999935856808484400415102926738605335427318140345015965532745940786727346575366463077949598041976842491429514002605136720062136192411011031890549626283818926129154622541478731090538211373370000282231586576731220384971425796659149298239751092784422866748494897089970911816776700692881873236912550071417891173464747086770869894147188761122529647817994596728400463491849598444310103728012021087335552570001951915561796038300446743244754409925552363577053775332773085041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19808105543798419326880444733588238938470090168719890400654879122866150709557102907775813599264204434047324122993481543465351305957036205045492294797475643570351104572681888888227136697942308551361952117758404932415136573554966055970151779477253980476168741462833457216275349684712958615290523705984438991166498539930620564583309269756901052459057193388845541423012131850662418726622164286284324743308473668127975684827340296815545867643857924056364150473354617963271338837485589229322424345400924316946638363682821626842754966677453756974156855065833643893440918121471836940044166051968350956086211816475388120218831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25707748954126223128104474004841615579782354336869697714814627576657413109292458565083008096844625090337079039615482779453397134418728594377988952366839916973055535495418874189162696942410736655199772826525732984107738679023427299450267899011640811175417276242689932953611768070065211335045674426050249362947665321281150164527699549814368537577648797206046308383372459024329263607381028618699560240693059749775723356487807913953532367637976869828420527599297762402443745087866461641763113613133660476888274209610448355897233593267185701564382557128965349246639159945746650691485851331147759846753189227797166601524891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18092722266711984860574484609995126271836040290339886871733714835296531872488585202059443237619029348390326491987104692212532181004898171431675909875346997547707671038565242609494970012331570981747204597970241086278663003911406672917685498142505685745675522558942806609009084256984512811899705167064128126034338238523501532649813425320685618906390276948945011801104801504449999451017207981319065184041940901962892198862640561947433216369709138038067300109024792020877947528519452832443224519329251210345687298329880560441913932938492597709246883083785489641522053174907414592409081521229838144943678912580784331356351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21795730139786928091882087063791132944070855128367611437793885061390121802142597333631751232878042017752621332857131550437786284245039097863069382669736176389596926516378998794775285268416861659738014725342389062683062055538352399236236115774057148816186197694549527365435439260634886284935208303072493822329683812506695644271702282372521629964835590731070714159780797287538565748355135860861511836736550201076873390051062916705614390574426722891133659074734683890229013536120229039957685043482448324637216463657747544028093511523318055363198062798058755144887785587338581110950713205367031714288760370801299285719603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20606518080686774499318606468526388528384594242018716890997764307710576073478553983725913497861312330541278153678322082582676278616961177160577104587860930875932387719940381474427148929834715894175796925274370029079841102946206076873517160309475136903328741158956095987562488866873993595561112608840642987613627909880390590571291494779824886519114406992498187016164293078534292899637167667453712260324235240574719785505535506965978842328999233390802432088985125419153440682324736898369173082360432748646868169568409895214261479682922220318779824962729227770060659258937451581581921020578448895372017891126370581584017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20486968356649118192770921197922450930824315772679180377815448668212222196985782388676216969240460430497398037242658779613659133407757098432329467335295435050247454496052967781230105471911613378931125839469521146978901327851547867293425277983114568330325545188614291643939505805338396871491886313402597371610192564656404833543754074014200698047010335567488395453598370042349922531788827420837440501164036145351184791683688473992321864260057686985302076328556680656012337808982968603827913734625182951289007832147536534459754273656748129009504829443600972476456237071285709391549201012690186038651163899596848502551121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21055963683738033450620627847491783303621828287749720024608980718397746817087234079001736876052925420624086147860319955700533544469876852365949707699253536629390707693272636626213413306309760652404428174944142525660696396027389531357274051282641039121600219958148992452976630640240481959715850355198245838714295667590824106951265192840110717572079124670503665448868737651611840101472608747494199846510341480715744371899487758500990513263703470527832708189261716195012764664756642332358727126240521949409082626999568348755274535202541526029246231683794906011780235429621616220903728412162525587921861842792804218697921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "17623632034836367020488094481719260394665494940749256279570584856591008641800209267803700567838915125786354999719326318843506764555356943253279332902331804683640873737812321768253541144881292705815163006063290486449988400171678203584577462685777660792724470524123418131834904729507751865171603130805258869691248491149122203605766598838978367144097729474838690284850281654731167387781191886748923136105072848891098094282318464846037071286995468922693673677631465382864985371034216601536384159971348648146376555133695335284330628328422567868088933569558023026841455458241127210443618055687309461655876248981422821154969", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19854911727555556586432144696085470859745882980120644689048233396110321504618403185547737550188226308576899951149645381183614302160106328274247536443213440788219414162636350408305566477422336919156240511279640850271526748979838242999275305997486041971033667146887437911292167466317410139692446961756218478410660125957646829775282020016419725242662011779727232270179709106871527329283672572975776146940725839193298960536477070493756098399372859594294142441300793055495064687208301680578787026054388035534407974011232769204856295559415917305593133724336013553940031060643780789750693539285219354489773077651958276880323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24931585849800722352147568436229702805242879350273162025229524084677358396602022503693638270024393480667016814072832616632940119362729219467498381522178801730951570775462611744008027365584501961718838131370251561280545923188529872598677913682499998931277685963857099642271215254395460181078159615080541432182295385073459895791509201786449215778997225929498113728479521581672723665147936768596373117638419234674705172432008048039554008723817653099638315564588533084511931178780206033659515388650391179482714887177998843281974366169123102797519237874822359099975605754761843959283729887300397755554948804996138304113029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28834637367376209135115125748635807047580619297057989559373654937283063521789152475339928346539126120566336925103207317789313889654755208405905661274945199826736191287519820543024701868094543989626892180216309793436646127965153993785780692631227115790102168774852913247216322287369788831065819756059666348542890730981303653803561026700185244390350102751448787957473373743827577218163550372120346964082971012132975297422789303168921235923101019095103248686043496785960204016886054935938845560260184339318828290604604431279614211683053553657441903546297945255587727864390905984070996525118937909476787980934108761383487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20647244084522436307714004804883928717464359348758909786366045692149857642608065817579134857138210134832079637550921356705723520045255755880234030639172792714053687888109764419920571785714825278453999236168954023992162053557823043328459852865125886021780782844508679909441563158202232635879337111409123587868329685001809982435002368042753955852750841904735611152504316660098641907296045820486435968990741665394914781532542504745014553090452610851612399075389470540983671972582220766876177956703229848774465052726137472943839969157666318834146809915897234392581645335688065681838226649917893107954851103694139499759079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16237526056520722900852484010140961513503449834160693470476496032521516665660892724389539946947222467621167836113905907614725948762266043068660517745705456024998532481335065857132912596787610948649982026904540364368421381140327696268040384283843184197618953451970754622817479040208978256418573093955683100649081898979868150322006439387415553999850395043550123933993689361093262344988463286422493690332357163127213684823375588572158785870586747013047139243113999072998073811303254049766756079647398726282284074768480100783752993825565546146830762973432823767068879614524353171897465542755956588149575327394644790530287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21503339272975756007137756268744248474519103612326651926369465332863932770387593369606804922539706791489275791876204054888877885225713327765537771178718112781146950347724342176441249205793513509799516566351932208908247758977595609474670356609740949675144353672780817700313092415845108923503719284414684725219877354915297682998322853659422279977691114161347975601170774949548879049143611264279185799845654101353654300142808615499840308794009717783236836591508923241197504976900945343260988843887923220325615010608224640722403747899933816664288382504744100351142825322187028322464809455609958473908558734520598036866739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359593459857826105261018127116675701985496027933027533813860415339580433668611093005437597043243898514173012741522053454664858950925312842055947480536488814439512151344445583414391358776861986242300863184766190363001417626003558995637742980828458889136837831125731508858709266688109118614226230144462096925735711199387340968527527765009738941028895860497009249217827077391577176872561042853784163331968284029766750667674915436534584823366023578383669696847675243421993151790073210251402644365213975399219093255190820578171149448409343448147188364970388467316875234931381472875866240535344721197256620754858173291183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16351663231723767464885667051374964490697849711281298959335956542453630811456456431031532218074864547449174119006673505035071372450311227533771179222320004495319570922953907421748772948635936054383396249280073599273088440822493611865794676364345401399665396181080894962193664625203977734966897000648102317788819849429745727949787114871343851993790792846929975421854560510225754431110137286542030167036359306015424896343975082769537855288453432585995340200535923395926220140586376535950786250949047058591219426648325073019015975791743204015276383327930408666615420715139139216817264907806439833714793687880579843065337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22460317595405859635676441159178488545744094329028776930700736267172806551602583024168243471216678821797930096162328326383730378338307888762629109646969486056209138656180234406713595642903247323184189855853400974276206494742283201724060004871008738312198382233927315482738557351347493691385667604733186112188860410487669619430327044529625372911979466283827862555613512223235882217744136037080991219773483727907879535711566740470357005824246782476288364974228886195329826340577805775054254727773925947313587815157795137394079657115827409386042095120016826627785881821320402225455105982122263706827836603817654798159053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16219316194395396959737579864993257273990593442540591170469268485965890590297656462115324606656876114467723867273870939544209364414837065175938837581552878934751126900000355630381824884738426572146913605301653587320577754073812757637956797442682469112295017838503676999434473262250007669508919610168366950818594178734651033763431920070177175057182809745446831846345794322658191664424103544848097546976887002232942409775484633378652837572553130707910703118136248122884728530829261883058136175515295992754926276523167006870502021335838228944107468376319656249838522944556117918183665200675724177237895972659502240569923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17614407387950783431849329482004454507894787979610760167147838568854294746573060457992982458325820090713116239320405152046070972320247920419114474988244986477265415868669109756513919364776792496140657386314802373777237302554482970145646645851401282203275538556579169152774525238786958052077894646903710843718325250611506574597049152516742707866801400717285269997489265816044966390099507048164473901050331309059441087969186119424562126387828914756373511103257858746974408514138172523226396942509706379964845952800167555910258381226828873491250898582901525071741250434393656614780191127168026830498745228689619496439741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19728584684339743104115213520179555599524441183430953192868055272976950105974795999105739503607360217064342541892509077653992492939741076183402294831450031463852367373560080383037007459595549122155951534291833519551893941384677148676615013890467800872404186881260771329514622574221527010987383408490541009704124650464804049538528464759842025924818776941406535909669647910400691614333028332959569509705688309057771499770191815479877755778140205653008689309906494973257862291534734890281883626312051633376435410147961165130515510965699853957476590374978247058558979113672582366401998421077795155407387366468734070825971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29504222611233709193099731354359820865671591163369216220078829732690815861902653887313967518030207645525379648009313912486962061497767194741841416037251917224998222149827556476297812368407751986759741320354876183720187197439982012978679056713730288980670933019526618187310596682155440713988164088845147310938289416531569412293084331918709723371878931498270403980218679619661805848056185976393970999520076663603644485687462140421287263177708497543999776932824111729132657436404043835973385194162391016640231946919416304565603867613551670697636194543583280885661641554969730646357212987288323204388486441228207692060789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18679728992076443622476303042493733343729484751084287475608266907766609754275893756828524444263040896303947499580686562498594386110840340874721994723861146352299847243433108178831101977318565135179105343533796239959424670131839203355124626004654480698279356468586789433994029255800251714627634656758545234354806692334433924504058673046364120254328096958401519449931961732221681884978134923878370806983587797003637999082087215111967859528921410777731924405717621950809607634517809571242914296960389139419205627256850420648898256486946472730834566655635755055548269915791604704269074497167832720198896945423799107902949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296237156041779236655131613038707297483370353470381199542385457837597696866579041747136996961393333469070261707463101984450146389338893005886913950033142701009323712686220711066434769587637257028736899056442892683341837057009054652869135765005824532540187326720282948225885525135997249084447600448958363357489146259126471868754303728483402749349278631822624119820319907401121641038574507918249755843940018773730839511855612981165887400095781956442562822277934878488850040360845912488962327550520297341418596585687186502134168884804689150626867366403598550213216973986627589169777143406989645745092263471943889715861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22249120609205520759812753935941420254469655051690602515993286823843047944366837387711176210449307355462312991356096315772919588153148482590401034934199942824320028054382000256978655038999211703957017273906555992483613173247373256045613382796265391912357977136568969183686589685904739061511662090258591296831299504325378901710253064494945214607749134466980278973170856603948881329369597753555789477109357843813988639503021602604483872340057211725446395051055241449293517877381598307450603525032705980822250215748522011960098801446610633355037830544200228290796370815444246586169577763775396182414489523459403805728791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16872685813658995252764691005348484906053921085656274640323092211541601785837202964585282252088304751230995464985580238853423362182281098955480741929756537846126896407687433120665676075083691412009388530023767885108272202775925022862391865579542320669897762937264501828514436269878891284649431596911953171494179208323079380094309309521776538030850728606853878958025972482004783812793991280142415004693536170471343524511069424474875821587991485397466388756764848180131388365682393161184989870570160061853734231002495544432731042438335292101325100946188178682183520874913050639048541688043879103627780565292281794315709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27251339411618894218991504262113459160097821233357048167896361630911312677356848221626507740887718872746828152826606869529636703117975969857566175737459924362840626742825320819795402250763679194155538258413359263396615120817730181737105613211281113857311957552412291830098838462706606968003668428940820547274251565581976016950800893059792290641950211511485290883133079223131189262229268977878256597956062866108160808545440100581604709783028183384312463777873220125701850222009371928281256298928355734540219536912091812182755197460050525690808422301109143661736297174389522180312738902971935842334345205532143115167101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309892117644689080811375294138882304161862453088891297332371466673470376739885583358367158193152165382187624100651708607673853057735167795791020230760608903308614794127472256106339066109897600696975148212980157888022371113908164350510321978263917306517075630195058949202239212638349532296328769459074560918575305741875036508614358413418245093342908242739339208378302622685694126372366891434869737213794340707564899769969563231581758245925799467807103846761902901087180199984486089768675537412820623813033399921420757518616952505547729398833190334820364265219679270242944167030662576384507213073288923815749247673959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310837203439894158908730400464331710520164230957999717852144677177613262312888017031010198592979995125767380953467285916556874618236302049730245960116272025764572026397536122081447345296783697259155598345368453574847860639881197946571667360939912461269832189409540142167302887537617720173804415683312085680225921260436911620740334178689093643097525171268551724086435250387812115644073130048129242881122784568158709343505744868716318990627503290952010275812743569959585167823872030707208706843059721134672276189697305652331472400151471560279598710779610132723707616637884082963113310904208858230010814544099503296911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16465049245670552006338957310733809113384718767422570023509136919930727875319600447039774152534600326549354816738467222648383687203740727633514970328102545012421898802761987212957720906090277344829520579748466593178249793952153538868565546782508086941789785879075854688780397774120276320720368027278200750321593993598159066524339347208890168379781750982874007780923942675865007801780657603759570955870584425086903370307217812089613916966806299811106914908056330046822211736774035237632569338726610894080067894145152231802883483491384090756665007620137287175020982364077257490675685040184260665037594756466366024317993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22359008034330306059197697104260388961487575076388942177607817372304253942791348477174620788552408718270512915317319060757091947910236358108669430431744555995003531179632193080887154981648016158397065536984196910509381819731456103654558105243996554710305704329983255993396769823315427394380573340941111412226313883384882517151746913356059246561223713266960589138626380984032421432953546838573796025864644509743730424764882660392566238578143562888324382608550529634559072934167105035076315802535594314430378242025179140117489464564329119526192469344917845320441985104085385148825517041530457601714018811946730744385599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "16439895693769379269782089511777551778677865700839592420440455877038895044455452584570172962243998926918832184933566965739291993887873105321816096205845367458680934676513038907102619320359461729032986753614293505819746460895823577702098960467757627389195061675883036553721339891223809419439041802424774772355928862988212653437131352895442482752886464420214641832312327812286544729761985919808126719012202916331649311750925725301221477250014403181474043883089525157655849013600941245346946278538554010767986262493348317163597916185901883219263594088869437562285972769867035565196117694339878096897795157223037718236291", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328374268026195700900720370464781151727464172730706180269206273757958619515109569350189671763620609608605701606930081387543249051373373160094490771679487826070556755882371470063404636794899622317774482986159484478943385095885393170130998794779119898888466424784149924666729966476008069153115788667928496547782537599508741946589214582432182262261527608857852381960208897377255621317409455046239061998713830123916894533331151709303349903020893621159120082928811901953286723151024290034089340368172845593115084932634878625638357982302636230207707995183220568861595175135015227752704934694056448420402769954370036154689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26536728794426114736372725540059305972720485944117686664076839267989754546972394571403548796392394490637938534375459495438435406141494236289973407901821616457863503747151657282242044023049171696098276044700765570424633147227082938062719720929550380392366113999504154680730028070116462543778380821824480774206222530727583314087546863332453638075071668128193952528074276333817063799907927718384785841899162115826446864473439200628504675462822842743054314679770048277333965760926374364157976537328786441866395802950828228657122858736287694080556465457122480150337882664243362696896891414875537500793339559862022358887549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16597965936036088140010408194255910231149008473790791306372245572857638890259103353511440734364111798629523203004320302804245583502830158188970153541806292155729055998203550027036448923989999910629339987216089528580971044557015274960953817493155987294545197113690783055650264576955937530167828090623547790112541052191913183834108914799704053778250261524526022893339293343180812073433046304168493777317208869592185250205834403896121015954622674617487730588441036005105799183063229592533639536433019931980795682265550602076884289094654491522756236399270656153671130794203124044087283118985825666259575859983772739001283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18214558307867053390226183441297472172640418466075636786160786844456687705375104491858514962567366839353006617542571498637426783449791301714140313651527283477014767019450560016441412265992744299142158052203919162588375397485087968584961500798328390300271721631444648748256528754975891661972278219706497300336433299750844721622185956969766168630615351605136746642619936136882394509686460777765165023380216275952732154459010562707187076003089392132625921637515270435964041143483564996257531608475243116187467440218394147423978737193179784311694624238983212121033319991886612200298099267783335412983685286825338821237897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290785631224099144401017888963104611150313806464840474497360187933345734050567823075503337519968407706044980840124073001303311962041996256505826226846947260161364600709594901753577236052116894645484513429359898941955493638717026097027318034750607375974518700454327540621707460586675086807476213629402392532349888017399911425781420262893223345031682010784682982068477767047286079239411335856649555426863288755166701354485992169982481447697116377488918567526693441557976336428675961136036989265527592647131980174440318004412171695876154128598346484517380167854936768667036115850278911713047413609607442029852573983979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16387849303668543949594348429388787607875688496412691703539201408469877223281367343869759383921018502630210252460586827724177966852218846721602092221466817421027518506429769131967462274045809334639008282076420265647305379483504677510828685125542725365122607122343225038124934572366543091451781230669862550676402017409200749155563782260095994196447960307540256425221469641298987435269239546024189195148697327280247715108598494583176082608083957292307762348227090305112500510256229452785542711211267160989650519947649785848664587261383511058540826983567523060177710166482607940086016705945551642606104455574914524122739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23242733952162168611848923113898190757671608230366903755069915056063900438150324722668018291778062168119745877179915165065913973977689276381039630619897664618251955327373545822885284462219811063591248728380836750127330864353616504539964497503436769743152776861170332166835302457815852020963052596080436599697384975118521350013961854149407787095466088146461506459194667523675287554619336903721195180665397691268088050974248623753945818586328278301804173651402579764924364621637803784248390411743014852865315719508735814853203701873545452841273123918996852479998220548905575180936191971852854257538868918434757341528043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284860158167525390732641503171484604179643272127327693097026197152596031220325824948643118647988120552212668456186591909212421629857251479974646114371876676181278745636613854045599518115210459934555039190444021581623006241312453119706679006338917012587945275160136916756268365200546979118242592420578727824004619048090583686925964380679594544805775717603612391457727608131657237513925541250706097129826548314729010247486776011770549691762686629028930359146220567319946183299298278298727744714344037662459747757972920854657351829739856759504421207579889207887451831113327136240100597920759700364937816821480151092647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27724652936382253268012538570764075298262967094958011589133722221139533269659899419682459092407503569608166980038691580212147111173678480653449418834785270339712349344145130850046382662286627544474613109579722291837132387220523786304592076164287816768140644305172831500401325674339888606489435641193282390498070365953158091785045870240082384904426514360128388153354659077444001730649713234176390369853260542992335025304259475432515820084029628298723871737585847462399194991894976552125447572191942687284359729831899033793588585926440404044429053426424701670794760548608066101641435332874789476229127706149993281578523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249474591402871870627098948746236777063945381617911340362791178356572848072785975266376040070319302914857946391558451523544338198401557682671506800459048921415558695986165740436909559273050692311413707302242869990327405678905978279419745241283183193232769973945058984493944950508650534236940630656054784562983177708888785986321491217022242212602683402004150834597596361009454127840426851634679876541935750789776699101843056309303295921089399329824672773679529588236629964604553374606949287939060535098586652101842640652185052399845234477135381096867326089457279640975458750115805487098942663965777018352136673407121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256701155509376493108866256611321013379034345204485854946804339303563704099052518962282653164615314601240528084848603121272478926143989253597620680274057742112827261056542011234768252157552033482317979058163135560363018322270771872563060993896178608549031773060002180655577043339471980262118269896250570113128813063414825874250728333122732902244162737049081699445813950350547729597574079884109381250189442465888163032318847987756574862949467755258287550421669260560144988303058857660331833615798565208102641396934981920249356592074766780038367627676601617342943534054338784179203416483246889269643579533453350294303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24445332128305422484279688618650719846229822604258488481819682082520503270698557656313777041059301656326394032354330888074548269962033536588215346740713443218601193991033357000927806478943131154166545998437167639960392344011191590693719354891943339251305233608813134377848625268437321599149135902711123455661706095131991727897013694565308286587699264106020336985836849050365812471843204338905962029411256244636495379389173404875915776557259454470306218041603664794100178059123855777181617321114662490345056159484121470129342094587093451236482826466924683430845136651646112083111462489799197372119917755852360604676261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266661183001900514953181225025413190763983645272105851025984375417967175682091695252350481698720467269023274496976944366384715644563167012578430769345897528255753580402474385307368254764001360780135183841868787915548573088532870718173729828539257588576193630137631324783189399049573049299253379435927192923688664117920300763199589486713913032811632209130840269398510351395305838580317922835831746831557776550444074790383049137645063242275631314315715978236805070336826401394985367239464985296568911340760143345488947912242368177039011956377269315133797956785801006049126509861785072734163994454230135438621448174901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20113583726568427171042434840753157901365636286636322591987662518738814314868816434388920779908499889077418041793848510595271940649318343030494721905771083116444270439679107693203712920977927221118555415601298753074811720637998461227912393115965026778633968600728785603725733071877998380180069671325211119824062583022451233240605740261120044272577490570327129386207548586540500474748380844965517170062199702111654923783444922646467348117808030319048372895762482389013603169275525348930405537642871210500457786063152908038949731209540003237183044180332518697987302193009497256511645729198403050145153733896458590871731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311131041242906253928105279418281918401264160392898461185046551408106794084316433047240521077590408113864536745106890694664546250333613680835876493012696603658039591417696343628189039386061762757892378308813542329994936356052659716007737129553950492369585674694198343323276887924470418484037094555915411237827098634322930051198681638828819740813554643265839076132684405325949923877474709917487172866418170350631108917487692092968699675289792631584454765988020400638716598335012263435588649671242132764471858305994183992685541626983179702902487904582050140705549464471642992267262884960842025697696994660695251515071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25460655105091098467136393433391756364711281416660555693846516674661743433579489834844729265197434880417760136657099267696808321752334180327299593695661860141540422723471351063174157373846500130308037208143139045843486648530652271138614143488371348224228667389106705349080818112268465168169338343241402807382158793836518403153036439634283024577069070900574963978807603073146911642906604620048322054968870578213207979394536637321868112840185843458648835461790398334902996902871031032391609458180393636292336398186245898988862709000940562215886518007212946001792153850434521924315219159616124174449375696358883532184591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28462941398356154650082659372568618050451015124790303436814470567610274657550463409365562460200803843708289800736295002591544275868910777367050692784229427095333822743984351054648046870641475956608624183952596639525237799649905864400128397275814258803420534727014502937756131705203266575536249215779996518615214699809668304565793998575713117785157595312107493707304487521363639311785156473278780884984402127341869249839115839088013178827152981110293796541018155567942926937042000032895153963494478751245892352951537676161373145094627619866689102632713184825111262582286760126541262382075865620329793821753699604056661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18576159501968834882638164309093189279438246334467791372822930301208649513544630982620671411776316786204998504286459480514692130353232099458234468884904051407724652554227853342014734978872621312868213297485036906352674120384307563325448633279291016946984897188068766931979872541027192820310856554821349998526230086302427182424319079978771440134536074834416667000526022218511072487555239319737111222103842017021870244244351604498271989005577841876693969617329006673294295391156181075399071236699347905409682865069077624514925951404620767910262244458648829512915449669453906897716057656670263131032955650943988217118277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18692166397352385039874507621001295609500662302843586856217123339060947965628001941660679918484100986075840805376977925100269703629086462904460574568253845316241069242595859646282661776579372222834800497096415143136248293657206395851126715519445579528209750105699314620966562050686909332042897034283155008797578033598843498081066829121174907762476273365999455125926910615410583495684039613232881507567420653141556664202811123152850417358538821156666544304405190252515273708566859624929795010847298370524766227445557178669034772250743508640806050612306663051464911787907373286132667666213039174152801018537929878206237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20976256684233672779838295508285070621898978081703050914558857798692153338427448309279011435573729388918457437576604785004979303485592975096632520337746307817228823734552950768777271160057581748798905112696299327322921072601179153206196521291963725575362903159628857020175569841976247630991571539570487942523162095757700996624688078926643973842868445772076314547961693546122984860889427085550226655371753681992086530666888393474787233186596412950952849686786354772735469429980806698126133277146424048364653405743427740427108804077047915624633390865295003566763495312321249442808300948187594606679037192983570639848709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278044350818611385766048894762566894800843579507658302446958351230578635533214041056639600705872379277662950683915825709401951684400652800571822809596705939143466935397837595750930876632205733338793028757032249312107849468168359490751310802245954704814672074567714994514558715839393810356871086657376630406958675532400412799431448451954968955077996647930864074543656736085219849576184191057078818160136237020924575163825920446560831689021053154050248886924544917270377970240757841014231596294182953965206882440190928111469552980058575512604048484837998296041549117248334946631527785088484577044782337742641538244401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340954714887881381994381153319578603065178052009167476020995205108523285675811259023750827541037774336913942318513875769142721092032097844298922158501104714207853339185167635906023841322219351053159026447308585883717609440819233485116622051244399358543500083074726358204215995350411842106591647733002113479731169193684368559719760388956784200255171378191715519335684148608402728750746427455673633996971163691737166676502298265868899738538106905759631740331992065638926129081350846504780755951245931998805509318347071528493776986971752418470966579802400725783529416192486118354491375456204506119243285317580778151769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16382091359194502504432356149445547146870779372347502147093425699001404215665845407401284707644046717487761586009759562713986446340840784385143012476172106914492673723524417018799932774147974217865882343986623268059831318141308734219096125709640762586359360893279873411594919096840941665227904587350777710502494687829333148654735136153102077236330600987331432904933973278120052869542145881420590899739061808905432021885244161263817795443783263571789628677641658144745763957733003721104862344410727544265650388363423114956014796738163308660765744776902646482761216327642723307072625724316743673706144216172898566923329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19085159597773969316933084048334441226894909640678238981684975585563279965442633703767692486346982734590797897976170325885242045921196531944495960444757621729312152239512678842123088197162436132715560786010122063753001554509195182427188867502161050285095227706420961680873739985123609374923932547935919283545965476270801837497637759252355219644367546125596023422829252949635838417111784220826084340743618903168167055907379211082834966033411531819845261369793001804014980507421991592339052700305281137409442525446894025876308373103432693325240776754066769575163858597929256653772556897865859326651959549628360952647499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295916242934149040668536431243512369647389035485006702881950569754854921299269002453112201365954415907753753487093996796118255613673576404681018533854327415074330041525212978817900947252847123332084761928381675013139469687212317738884525329500224232003867093256076022989724986870552764592441655666960210947471943437375260221698854191921474637027922414430519097170031509240106982803632152168057715901163121313080534227430489585921288023578136165844595540269704547051534717123977594149947965376867597517377966402002150037258814891988191530124050392524391295533949117245890883400820898303229222467933709200881937510593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279573552461811166751144914219461189263311732714943134142505346324422598982395166858656186415753944757394676766876189917323177014172813701924727780075264117716674174128811172262804913248360342145625319617676183954706031374328772651141659684565065515102618416139525835039858798409427584761943290525930955189597531697841673511904003722594601610496092135837122538311709826877893256581269025834235342547603099117948742238997189014926353276526637835183331232325958036181978190801764052462979342280818792155955099046521077597559293001702694540962088449229817483796755171393328538448108057332786535392254821535674260450049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370686423912044421548121009780166650003756144505210165982483648145028232382855494901068703108364804600827282101831891635207768940694191186204769626452465334537058805839354360666102702680408060703735389693484260665695525491970502443786934372924824517832588715796969675762515501963328183045564706980393687441177658685700060805208758304668782619819327378842422953536503104795445562954806262138312271664206082692193948901090464637240025286002922595052563176343517422868172280846087826743355053904457377856620264422558800581048469445132367461744103778541294753824705257530470882714342031624514277536540999795530837024333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16409976540489017901977259739663256973566678605121857189859781205064392563692008195926639967745395128834265979622520957739499659920757682725453965011859404754762602908018415456910326471117827637059544840178112978609844756726584485425992902495100398083044324766456621749521743539372844287033317094842388354046329245654232507677153038636677569648567785517600266062874786342201596504789483969650170302160121669332602645580618307062122629918898313095473757259527266280561675083265795867097126650944178532683797438531417937354650857328035902333482139621325135382121787093292587441328724337417483016390280724648485764561063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17211129177678099284559787828827263430920223148467930928392339290322290216968888945273088717538282598387438694626210080852807711735434565830794680737588191829051267774096968012651328202224697267930269411375671702029095746728916454306353852141752881374709181431661859547764875500750322592063934291065075438491844828305737492283529533246372316619591074206224013846380371491428516824091505839499507296387421448885233299535284180600373861420544179782253616734436117636066783564514368808744113037926501995044030386703572783439726094517822666753585594494007531651033979090862741374432825336344099526306047824258144601479481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16380496450327435969591051318344987203088471227312153940225585301339108973606426345136878753763562305544282271728118410984754764904715215432594090241660704920095242327792086924971903599060178965430842030147350697494074827650564808288305899653420756081110703327504631509379750570178208795077396863074602461843761676171364622610091051498649782029201590549550373573342415341066062600500984968950788490388127490308017717220795732828776455059658382163431035622303886001279048188430051991759531567826490394949982418246458800002774241684119270341228943990172482312389944173079897909847355113045174796545374493381241483822099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20512440478254716306858758411493540386046720846252517484164448539431199510711433150040947573011717032048671729414815281256980308558306284575813471930147337934042422671018311786881813695408432621515979269004394906659700718500543423452124911510197376416524046801646822066279788836662221913025944822100619649455712413983307686467995061486627040144202815302139424778964775367336925358692274528340603113661411755781444005663338415494972884618560685161074353117914996803771221616200729908340561662268409962628043969602071574018947604153661301452282565110150586764526851187214847274053607405376297600595804027129388837110703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19238565534756971241564688494881169506123383218874834925650450550795156039655452040839249392853363141896301955770835788431014820151675757888765230991350063112702904802982130123177580584489425851856680368240859849359055421749199822514989753284792692091453774768968033614434485621175114661757223048424460627904202299122858919993066894488646297581003338258869458393822128329308659668581929038022214541077864759547889523642987895235785681326909957524166464717947963009662482898335500049323602991284024168600655679281447953075038152758359853845271784297984368731375210704334732772974938706449218233381509171798537897490629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21040509654423280431921530841802292635202888986376322512574216595101994037057748552792970633680783282548923998255369099154990873751438671806972415306061201252577445103333753860515693821580504223581514864831815171779305273883540003480821591344989613676351524078742827865181553106105748695573125375987082894158191122602033496081338951195210773335254351168400042687169323163174712106078140675334504840472119302066750173339020704493761990064191313790896051833888622692772955839490709739140590818654046563024222385658168877113758686403981567879123580516313300525510012905309907639348551290467950002637120142588743773332693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18912974734143789098129614189838022114814897972862949739340350578070386130555379537649535513000675234949215213312531558360915983505887546696703616084684259133198149156152100273912276141969572567130689441711829817162130726420254837847603475591243575209864315125739600074493676645402982064976544822282682760859213601276482503806196591935625261399388327741641281030206375051093124668688210488818358837627765896284826948095477765432178806861102887312646673393613882933110372043918392410798023949216429191381569100033727219510143130495442886098239743613550970879427810808882298141986566097308805263641375177814561175490373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332652254682557910913978944275535768060878695646869595228575463857345714739298556910240548267268588976627140014450283640295009936246402118243208911884847013471688638514944246135620525776246469992882455355279981693937604680031307604349846098400677613544420366894438389548379703498557440963992201861035333554226939455292204636567207003472456335843756295995106142790465954316609514378367078924732490326130632642309193348076342468238126031814931718758370012984783684932178061596473553652275139881951518073043251773215793566465246969398731535302221900510778717010888655856682728869064190003330023793054660535093382127281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24894302887060459903887879546433059770405308717461034116641454741230671194721506201022188824538045302775520383924614973643828770066172952902135905445640242268050238272330403368719512155303199996003028957170031258218384656952910332826695540303939393101117517192566646939528080565994676777866460189170740513022463136974067972293558708150953161283746534445776201290421984524776757620797880804959438435089558170251550799760753264632980256476262082049145213741062549252021101170971263968727555565785142870915218114747298739408949984642538012730201638439111606201870561947513912695254424218379520023516656847150112025432469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22328643682327778107837354961647444131756729514694578809176584644817965805693837582939017331785091316714944345916417361522574145687547010384368901703763660424211541519249860224303347048168528543035692367292311328005256207150328639436548828738284185263825415400872403949296033908367703756603213845292565935888905090187652718390031513832050686328360933889778228391776180714398525190445936339479599719970492505696240188702416096537387615678592322258927968611257392399904257494559999339365291902609543692460386404743444051276428246303343945828724110142710507246620332927612594568767149607112020733235797606176755975257797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24534972021132318986286716032518333828153611123403131044152926789023906255482312855249206185017597163863562172544889609622151109715007071538164287436061602408627326077255046936573422639877048531554216818968228613418605101742901123789646569134954336741798278325265177676793166045347424913143993762598978405077855348323834363292611700364429824142346701540840680227314444344088711931274073346903369374890315178569661535056995188303130315131597903429152204682271369608105625214948549300166645148701430955262202246262828556964777532850651783318997463516540135711945711835732114335520104320637130316484392066103401998090677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18537477958589201582991258903903541857445587434404825140316217534734524030642150320038351634355301182307431776637043431119105306349664564362224914429131235807604822844589166816548149817815641658105255383261338896642825170416696960846559437445377220652969474098939033849263755531096501718666037788889081427582825566556384655465410590131356682574822506692124303507851974246194303280524017853723758730025699473216614842902119179816012579499150752205465859552947679495992399904712940276574853836023041299660583821763745082614427832719996886308573466581763523029151670109918842792931200314661883787744494625445492638754007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332388926290641908286664063880005437521245262446329984021415110646677221693579504683463961984345829319068774959441996211819426088376728290359042013032780398493632545170082816401805844001273183139908156146408405738189707270819325149730685965982749066491016058163576603155240642632422651990236089874803470764749824715914764556977655809818617714238291474247186253838559004840537101379065257097989032274534774226290415329809572232111506066846241965969098263642080065607198148869987354263184448714966458516892928329942950437958621521497392999094472143180339651598235012220227989053460395947799537728136074197463769190023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24956018577656883186252968136697842993750175180180021636289388031263467590058435451367532454609956148760168274280182887708043491327200368688068727296125482504074796272076239771818281673758291579713402409445558994460306264306493127534205973279371171589705076688482283735914018536601290743003094232942120124947080470838735610204996251307660533071008744670824651931352690282343947852905467297057686299565017713758758216254729635162988282950441519483798271243316806037701195034082004396609342121151414899745338115080826764030668114927577231373536175022459130523278950875524015723392945708433655888406841466415508161450551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26106618166015810152521466580027593249724637213075356087303458966154531141678191919149401324191084434346142861314816836659488747067176636173049668665774896265746758993120921317959897267845119991222490932124785505349722925388110828159967442638577116000360853554984973445220120623138180300832608877583592627142945583169589364116661049170651237391572679144757442369944776164176878069100918314091667519266848097115091094162856214035484498366853028004699273184385166880783222278674393857655371610113695626808031999963161867103309220523950538929770239990097771221803805464706143600648618498186399527728140151988985979611637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17857833733744530616050916971502458660081330059461275170274870664602757825098265939909811956516845478024108314437882003278634107546479378723016710633153520514223066175071038119644822817901173912357199145999909372406121395285618948143541942007256975861648255608248805225440775441869616310000133907752516628148397142605585887103598512100397908484832223651443811482986498029018713897678201211922092532309658802753229578995516426909972448187686773616823204116608438107293194349513788915557086089313036183367062509321378156568120082495913772765804403708304241353999777585103678429765700129347766919773935234814517136464697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28459602288977499828974225447520254808031760697024640957815743757899818055037906803354362058019703586664333282011129520490237920593630812804413215545044815216813360440322544391823144644408209125336362623177996079131401621720582682576290110299905841058042964222523437560473571622763008195581763171928652185345696312127535134596336169676405805812274596772804002471591260370272250035010599676842771359969372784442304054622172850206383763501078531322545717179949618457211399375128437071812983069582614601960188911156446108304997139214457257970184587895252913506826141321304989372551940241442678608623984985713536453418217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349029284492918962192370582979427643535068938861659408729447985389405637071615809543003500714109087429045337772162711894175551428683856846236846678499336334025941182052193724472947904010081529569011163689748514838863393729129138997662892072067599747298556766636456656078076927265010651327604346293639677989597881584062530919330837425386625678825759398354379835898479500058635420531375687268308610790408801843293218688221607475602136105766793424202088261156949360776031438035656086439627834415172730162628489092593819986416633301560238584843733248154172420835863825913877487433757505822338988522823000101604650424201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19942875640278696179820292370047941224812336838228663748356322811858335058966496541736467192896521822059530596771551585512150349975970430549395110116498218537553600823077047175741504948672057590464665395733247114875694704654298913425134503813371476604579083450513384961140830364666629131378510311655728600092523433071821982460284853687142240170027442888783797734898008785726395044618147696322956329718425944392700156578951185432303886285018832017303725295721828291440648686183779862863854038772127178471778700272616469907791003400545006914091343771855374844656536428901343808440007480431365305079180265272149967139343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17850253201418291163939210228330331406189481574337064074223447549173340164947592921002287601122548643741725228933053965242888950130351589859029267785351162937278001629703972746967749088064358135444550924359051639595097213203627123268914770141557206675183697815095604026211652103989831877950023506386048807825137635985399648521387425137939238034965510832736135052484533204763207068587285657069250122082313247455785418953880643823206153877504899946226240811848787366286371517408781265427325703652127859067078323887630686030398244492234989497485052447695425823103352684295518390037792365509270226250641715836316572679523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23543370501501577140325287816867158611241213576146814221454770419563487505699530662489701966473944125350567558335604257145471217907721402562433483346346074427140099800543265778980472110128141715393608504515976445140302151654797362967773035779741739026367360134508533017422326578714944597828597973506483035353493517121673320346568789098568224280004712341358217147063425568439859756764091470008307877008353906632287396214776448625471916882110709243835583649829022468562150128871731360579423257042643402462767136002352673487333833971023097299818668766801476794733623529104886468144353471718204082760393993681178472030379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21917375481356036868149235635114054543566103991148950649427638577662739128945289404196043319262102554774383326622040458760613259759535389807945076489489795086968157612983373895040501880962934018443519657408164673619528354942188579209378531372198366255823091034917421799785501943915851209072857538067512777895873139696616366253152172866680855537318124973496630346305395281404258817386526804815167125306342252972495523615555181679080242047281254878004220280960300839671651302711251388312736104525329142621648260595340461749930028447159870091416393057022838388011865990764706771067100645109221077788805310919841591836743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22110526913022149802041286828229080859898857542981751129565011737611198988732097138747243260467162376666190928456670954839564366442869204116723514285806663094602144819277555382797039045612368110121168129071572481281382602246678986450677834727639069463342623713965824434434397306837674540114074713630106602676877721559990962708982104009528852346640539709379300163441159242222702304997794325567792931369529335462465689665721808378029654377184370228704331745115339001550585494406805788643015805379159985532547261819666392638468313899364202496261722642928676815668768482939120030818282013217191965259465686685344867476657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24380102284007673791740356728811941655393996978463047542415198960607550789995893327663321072409720438298577019682687046819195315802252229726566776909707832223236781719894566705650941981837746858188852896237858741063043763876351601007867172344474598701731514333056657148449535318022959377342861763980599228096315554518373438477365438951170416909311949794070250533519362509379528030393421530298608307380103212726042194246883411379933314820657906037924413594151106371114408119413256046410365481319709849287812468478327322639298307375429877074719552240019985423367440766316112948799088824224543226889571449266968039385921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16482357135276239962013491868901223815153423837992426509728121866560900358519381819268846149520640459598848864785268276750938116017757220187552226238485844895156575108282053501843254909014378751027511341292965593008356607982715125527586536754866648531937192636574216618178691350106941675424209997310807677884779205485973239788107077214931342104121265617357447873378496110207807527144399601638720367187077512761957067275629123238978318788054251316706769691846738531165678092727992926621553523386980505035752851823632609275965785530682328506942852864760097668281922326139619352112237461539783810282938807190584516541917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293398062223267009883869932862956577686498722168216044239125204680899042501108146915802985059296903258540980923516393241300411314938444135626332713086189591856032482787488965821890840909642543424098269852082107022899854535577624532262945326123948805196385740885760488413597929588297077595106435835963571147840023726567916000874620725772920051474970998987541574716625913253374739891406852396580283210624992707496829129152576100192080737108307974692389992182300813920171450483343283540050247479476271729926626234729941454430809077532807737245272272431720413964506999026025821446868178891294527530456254041008475658743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254029387614282887340317900387918982749027753695853337164766428656452755005196846153736371689177816503661930318445396821453734592474768107928552080889365773055976812506205004189295892515519913865293276505302096611396161832508661846899738879900020889409928290705935808213402647146579931259243530007025101663197064424612316035396468764588342353455336720477612492932644872695235545509921906359451975530727444093817557039840101424060147567388340701994111473332239370109324208751646912899870867362743434213202739445529654744704773343217003286919760036880466134417128371704042930650976975993662077201910379242246683965011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265000196663949041183599943290638806319402011959836875964453581341188963931914574158381143121030156275622735509512400305314735730773099219798610513897276442605056112761700682065113345983689442658192548098695248067049492220375508973004642137722837433559979129443678166566723448049273560218132778162244381782096841000327273579217716165531986328903409662573085512431680073681231895815413291595566810476978283157071959112597786445239384256378863273767698751250651863245015606606129607570489758432801135032376171230802286724660683747701306162580279068348292260273712304831692364360747450415846451657508234301832546824349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246486756754171203656785068508180918443217814061580057685580615083238868450541850446171748932785820966167251321690718030734882959981581216331357744772301393508750820442524813120664555336965208745079069532033014005007601761078860248006534313005310533833072157447908841122530862864598502541509737294074374287072145371449512455606043452137717477535524109823976890770370632526168937244337848234695774115487833153016660023232615054607831246327775664797794619904085845813502049729863682730796352233127396104270074507698271188677939085336478162472287172475008387211791874312614258614906649271981821309942437813521307675049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352466575501435147421703255445158069841093186563731519984146142484393604003903007576995446845477114781497433043968132909923826828501815998113396565284739567795724643189086303178000463492458598936811519224750178823898438084326895107509348150944637240381387747231278031061044591245792926317031829270769289423430707238961858186487266068771161126438552548277117963406840992117577756341608621608113559229119627444467301465167472009396349090775838305636756962385940290447618577638289459507600669402203787563738384671231701941445170037449065608577182974441279824301607626548256089571200996757133975801012803493416284835331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305475264558514492961544671039377315097962965648906232638258404435979636050447009394990415592419919747690554152942930693266878040259166077634756800237071178539663622003971771029725148216126488772867755685870994607140969887397256707388107600911283803755996638410616320093625285430253008843567012951411148399949577254792687635282423875560777686948022218703339410711283526054060089041081201172791997177603707425549299954684338713031383101215019069808878781257160364857818783800364421692103524719035040586525244551810571907356826804712267459693230018278596994634020472675816887085031924367131404177121717203767729017239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31887948042443318166498849487603725177519070417856551683338080183821004167692214385837189769203396512758896447746814597655189461654082100892991742396726921407366271833630598143017302715068024048641644141053679662031396618196723556696547699014151605908603984156487316872326937976013830397224741025326733797283935623809807686425136581919411039520248497246025577770711493513528741209007291783769672481303148080736976404128894989140626885622392026109725816348633365703449473245231040353395988492502412115368549228062828362853023553477981889096992684051573074541821804514955791915177596657465600851837291373174278509114283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16386329241478423177055738989508373579757791170174437560091935226620378972732177757250986190646759187971396730852330558237255713061996598148739598623495118089119322885673288451472954600612000458174048889766367886220371103818813234661293142618041537076475376695404780256928321683264129378865588689546898740634083393882238041915980393837323731675775557859525650411971177225984444930103060835661057247963165927321513619286825241924846962820954552323010142612889787628910906671078203610895622608951213224078054695574144226633240521587118110139242104637494786498409622142332224852317575251650534172446425118742573173842903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29516603322053411851155976080140460300304872267609120065646757370835330109828241453341456023482426873972683342965725199866386438969659439073853449516186153573690293953043294022821132444361020523303456757915723944018247296318285275020907756954761552768132742639477832756524883739299155096682874103984847488060429774705921277718865514944481566400982397773864182294478039912514161080247819319421591428775209640334598342616395339830262911481206853718261893356759522424051768322903645104515236434498153545632580045593915918959924523331522416775528292176053199743866948761455736946623864369712604202603746896452225834769447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19166765557445560692417311249117849916321371398115895885612757473024582121489518590200865188682796150562890500670020339696207656306878288181868235638478102047904687048963651484800512242601467753922801166156774633602592657630274692123824159644539307974616225992909314039305249111097259370449312201494032633698355657214320276070609236915836352183837068325905822822580241747643568485902341559763632240094652306806317585468768092913767390190862990741956177989332115593890775665738003950914845466817683918653825139273775574412943288150611931257950190897598467630403072571679762426454099061104956609275846997944597478135301", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20329558337736210533702867105663716797077464246006787690435141475587956409464685614779549770207812833242900803449020830716792706478447684901625208438287702620984924164530167279877317196349773013701186784804572972735374796783366105474445627993217398776737027316473929842788892598345307549001663341906489677628374452203075945570075737719563167194691944103634266800218750337715591252403120601051309629048668984592091406422637696044624262282133133844243524538252581869198852541134462834988973553139230363870948180229719289780813626237069910240276077379599756576631804679089531250928494979632507339525976743805418467898213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25869076677078838820440523110319131571064993392453997158103418263303878627148326218768884065162416494638844648245817031163383729853634506664991422788342240489202025011977130256368327119548165842980534424183644347670417159897907976590199328322293192764349953114640080774887769789622381466753934473681888233917251711294784865625289729448823939408371438273130310904583404942927469806088681323309299316969418328038297152185588019917457624623329932850497770183027175245047599662892311088805473192441344225282412600550305283436475866074127803089166592318198858788431898539366957514741723315531080652748834172796792569922289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20191616847837667196823018936860793061459761737745930435890053189743565202565675831423179116077333134583030423754087985378296684256447573154523663673987627733818479197574996196425416373465829233789603719069723071008813144002029071563307456859726271846576728647961175141568618033202876659948494731086183238204308594932315554527508981948206436645733569085376215119398715915593803086673269817672020046387857482885306031739263979142728015697250620792449458494896470983482383854580787095331947773222477893148502603748047810740028699589015787767429407090676187375289014079026120193120373304283739000386551680492965714345059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294428397582369080165633130446608979860798942386297082804489663123096782813361994842442773696361932083984632128360555335066982212516476671928782371791963472925204004034573165558658359671583145113683848784474586123312536019680239447085737094260824026296313622545230896170830618130485187708625191388596850216204121555542334662957459349943604828636614452865241649914639072087561682334904548096677068396133927062579685329587169279204700217908232866303744600450457848658016997888275931754476919475854767258832840534495995090466666600186325783017063386506862377719508260371744874416611860808227197840468041766682031152097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338405381563204618085029192286906331077164110040062959303122482771980192677261762242293947575239095895620772150868089865679553697642259378768134265521106256954188882792609219173683554507765717803379617988354572306835067503839002550677026851370992951900321552171450495683204462470290250838303902220928290331149755849530455999738181558772981650906358335931967127762298507789808180770460291624640666712296662906118912761020764629735526690863057168381994038856861493781370850404309232853358960954652430854587402947891382551150829186666017542897887394352644765745480969554166796359583852329595188118992745801008378220021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302184697095626797362000914063757115117369078520298668541976542811793720574721382926253390181849709864619729856093662078930530520849228426850055636959529542096826994890797476800950016746611019844167731733361000949865555238562995358298158645763743193733047291275544700599070917690034345017049657019034123290272337359008373203794313888580493915139157683835294876560234981508354178177834934479317833282579495358352366196862293920685026442826103990743811019042912355851205665186382254630021607208393401537114985528510453863245892470309643138595023735885185803882457383808813854916883051484688697828311242711348464370373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18668854317667039356151474369254757364085396612402895344594025974650785696041548602335182299263200541042884619913988918259693535631850451072654918560520956179205548599987503101513336611174719565796603968850754484602676027520924048894443859595690569577527882912690219109576385341036603680154661943696741872696365889188970484346346970721428547270431846267452753260282007715186376447047887778445000862218154724271563561155164572356336079105168852201102704586501544293445001349327410058113852873908556356057836314141765282252535388033486805269519501632171958631770327901283608972526469316423843232601989989649471611310789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29032060355818184787861783092219642181041131690076702683967772682220804175887426869421369390427053933338109182439686248583638678946670034966100638618064907689724825581264949375843829308380557876937829617006767759746982414299208088587891307839752092736297281869923194107915389254577130389394365281383839304642475979924907552241941086468284700515772444451277558372012604701737070771493732778105964235880025883705795726017184406446012595961458405871683613273997616605588265340958918465643812381011358843846046714971093847538372538526975783325382277072079363349189697279697680338265197634672376052283018299596896102109009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339518459102371597211053581457214757822755758296764612267925869872258126128589132758285884457494989192686149558676972763915624115592282091798658995483113442837744519624616307239767067957277789196348127687566269578750182356752026638018819504060777537949595039707753136631434561061789848620389933817269206680673179100873003226765273713591664865447485481541481538938650426684927632260304398371145190464349850611634076238062822711657269646244435496811064300964256438832332092248234325578765265947336723654876678874313005884025335270536273832582117042556649971251048810096076120832273771417939294265931795710750506459561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21643954692851243723686485284102065168423540543394110827575840195659810572170667980079414447550394573126610062130375383553574072328345908843689371284653157216156639352781301575156368986179325428799971085066840203451615693336305307441339161508966979370544337863128939118594342889100429233113037776572012968478909392546269691832719800502710052592473803030991894953701647956020251690841540958619463012783531458220094451851752948708975544343541726384742355054592827665628119696365734552548884128982291151876504980542002563400154566518177334371080502531151915904962483306662934595621931465849703892286238033296046712313763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17915998872376806796241497847600783963763489760853866177394072045933592163147609404700309155654731974436194671268631933369440354458800765237195796755139795305609007885758986610815286365187195153169313034551471060195880435301792671618305594230562638950784854304576959248278953595285084733664725186899750032507905419295671601561529257192035284677829502654540669825859105458412129088190873628916543925847729203734829664324685721893955444616994322740911809100888723742257436376118460054045968140324525700139675370485508643900905161212995812674341335038149867458577402136135354307248541409166587782308705270667100407416727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352940321180331433687540471412166619401789094232387525262758488665166170293895123804912374124459778187731163213590162621530719974848030293817713622527429302036945385367758460623945934114901908712451877175781715500168733375040909136534593300835077795889253050757924126176798319428612919558210029428753421346674561585297841316211415537360406640213108521001962217791089315191650109423309629180104824525129126080613085168254593807980733356365693018466906250211445827995918145199359615105926891960995073394621787401574660912411606399949696501427476840130949440404492539907099974677663409301779725342027933794617264287293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22433157314348531678490915816808725219349327210008620943816040804933900304834639199919089497981725407704232128284826246692998936512173099169798588228232120181313867288522762288606702425332081790185298199657692855693888402078711350568184786869521432609764784419796560272106794903685509651383620806012503064049478699990317899914284059042607360790420388065029042414186466644820459835361373506215911141917009928460745348506817355700749641956410298179452541096295780362269202815347465031616959019131720494934748162388208105406811280091232726693232919561505745130753309927958020200346094875136595895928546196103757900055929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30620127205357852637690821953424884152709036553083681426838840784601526290586884426869150399372191765433730818235597818222412624763009109558344871065411122872304770019154628961830788356568524810765091108402138051950302104434809337272202353279802998487252513055921407162656349771357361444069043417577571000643764267376650248552179678650197671405743670764845143762925160324326001745823568485598131496274171367273119902864834106812387691370978000742201309678560744653654454150386084736028474785346883627847952975207513230232573303344391929151807656347220005463732113705228567713607497883872559686483283125352114286669163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29054353690384059467250237452375449356502008869039198775288545658412964074248109255251752095001953640523773385887263687291372000938706592479946945405218421659365606758628126548951620789304442897113781005557496042163304754743699523390512754156934978453674418447431003414580814546191948906038807263376942585573316641330285696374366958338961681047311583793265505931719607205225835800251536168767585904062325266356539791846120286996897970667327499361048061716651843916890913786392381790607704013692057149091405648753588196426891585337782752197007197674379026657110331003639139432068956040525025630375897479460301062218841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23875599256949095700778014286091835745727007190503401731908745765131738788389956773462304389900916201891229603303798726239306583125970483065086269215620248358004669391504740005295180437273790771733957108614328139502091329030163542637625146071834266936833305730296215447297214905176637888639329886774773632851831510401500927443939304378250128423341946820405279372206765686113826824769733848449548503908421412871969038382387145577445538707475197989297664141237099863645355669110683320771182861801328842559277749829495913034955224606836760370951574556715108595735820382797452725014625051997087582144122294446634266533351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "16383231753713478753664697664460503250002315526545706952207659432281457715950228412380712003257623876629843126085050439808853236168049687622599111364732667569684467417307352470797762413021688671503679099881239555273891848805620807564345728843846287680242699365598602561591962547025591694137028753859921547800787715638003072936091067702715851416531167506214178126058786278970687191463305680287073998416715850077048310505916725735672130886810833978469765600719727741294517502013472675839061462082724422967076738335512177560489780063388795612122891106099514675277039287316732131535347424338733311620260418915375313756211", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20988091457689392707069529197220033207041729224459672222668777931754626316085953702207273303539238115880104757000716110446049030395405995881057895173762432473742165818934290643702310106085587065699137634506644767563408514436203273601404357335124676470870088945778530486079905029839331853147862866247299509870918005897793722126540670804950855346550284825163179983955427514258902749453052383109614245677316776300225810883862610935916184607239888552279761002074289124725042844875816638289765349027304827535910767438236570045361523290297674797613232095047022978300616886771466910788062491707225668455836453246322405313109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367639392330695876668121745722905011109112060521740038269626575552318978383588768874588178251853854798003400539178360606059792307436825659638242347141182394580255108060992453377082266919241541855039873330635327891374329594029905913057924299257336269307054803788618680413502770585093013262265775086480611549008884979942847424498449420958734721102350351987138897653281519141717265680724709879583338600588812295572693498442387257591697579293143576095442216580584265338246546377815715016686319003921188198963585675984454753209894232653000521693693954564654574409469704994423804934829739329085769573048824687666993496667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256616500029783087967236056205925753871602238490936602270428845185981205691477957301505159032419947179333498437120982885404211882057766281487752158637049075345469560841150626719988366301514111528770363020204389880174565114668604573567673008510357699792267595741430451783806600665473250766603766935888175422302430155003829139132226873952728017748378640841818545620624544408703097046786594241327611078884816583258729701645579663677106194254486930898079359154559095640061217284019173753427434557998975340820430903209319211015113666719310157224353308170497498431218719684640537169014507874876974481226151230382644288919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24200222012991420669805388228307877048133628324662103801465092776031648273844709309582198269843675873298519314377808894446649341610971925954359656720955015185975302680795263177176480670128430247091960575910137661044521903254022899103241041702551574400124736706164683504166164267327185829072918229927181207954700020041639450721663586802732502416669049578207275513340145525369675981036705218085845059462523637783654437630474922563985990474182847113804896439375846774696210302740635839555685990231722893007537686405714944950089180306540044953025353755250932284744953346645527167372301134227106765964979112587903108774757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17501212763467107297317588841537288543280262071574023699310009031732344706908294860400912091248718497314242768196903840265402442784197254756435752377137544323951879916392786737571761862922667659371800144870489153191270232343006665928992441024522141241377420537428364390991206523859497919633419428186980434529254629948544190469028936130193708192308670596127043778418628939619489814322872129042792474651225621708441726403912801553125779361312774771671102486792620594123872062776469305836367236036154827839423555523914975455130703713587628619359542391763779950151159734239804168859161503070214198114241871878393740761239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23770976708810899627177727999414946074831102274536344365234905889928405223176608233198726149136492183199746144870806223011276495605510115929267445384907016014001028492225589424481887210823214489283440984653234622931640335626923707389778593005063682967574007625242781841729844857825317516193044265132202758655034401484837584021598579790418218126254315263936511518386392888088758758558573039411659587204824703262257703603533816800330356460437444558745854650948586997605583052698228059703677764211861776003427475531011823430144841021510829736825879522286109647138508512215534365960907246511949030200717773435214822157113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25880893108748777792242633992149978482218815717449160279738655496868127905706235015960889135362279077571238506624940531258767578474047302810584449410150718220741130748146893852679752240695990410624326625701817603788272104294154407501966682483333332564450849133881536333883225764286003811036296199173468970271776211755596769738619789166736914888951622890505260792547928751759940045042255275689432392229092925412778214731003279556073953062918256297178195164894707304689069901790084434885067615869074764315430477297686190184578314263890808263103765943818679100322771301527398521111905477919024507637971200101054157897227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24717330940954138099843095090622213580572322660108213487927754531434362408710027694696716543684193199541933659344518808648201716627597343770052537777989109304944511115598074402062960971736355816777645895030365168216800156459242691463810733611793614611534179062197020922957969157501297841417026367385770057144132658547767990370616275273913484493431400902073666591795941278645872473109716108984060264285216493609316971585762785461810326199230557477814827354944942791728350102421052587761265078794342204388981248681009930797139613088657183344989734873238667491337857490383443572314276184794097832100605384640072465577127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273295628980083738811797498104636753357674834565515288254519306911653187465906073769839358639306777391838837218724687375686149777394450446485464701093948244365407410934575174215691815446113537958981720570722676379354160080325173190548371692248108802597664079508209128493190897116945041296985940503306326786470378165878320939926861532088963220124098446695988537759780477164485685590313437268854986128021621742488968422920686365959585422922109618915602269866293853682757139735145194696517080541477361869532703904284564498335025273103219583354560699745140526900332462240073555967123479201450639737771466479834518833127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18310083042130169125195226517008729686231466615337929192124916646730813294301126775142129207645681853718991913096598468031174921806860768978909839857301086052057456099532563166649065113427783365176840110280925139075017199880280056250226187666650895670216669539630465814252842659083606622759450236959555568568379297947165374708485267584066300120164818775989474640138667836245611973934598504086655341332592792768299789355855659564310153127735764112210689078239790443148917670411284022506056829772207247967519818704522748545484968650078930528401313770170723430176906971675218512841999484490244684515770388587128549128697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22261770065276973087728669445338392803067879640659078102307827728446411273141370298120673736928587286717325145184505911233269854244930997161004502002929794408262699087576426899298865798850722029203969616877333551622628913572379791270161268685760560066142699946596632607387941529491474434771508445986491482014417833944276543661382506716162284805250386430101049680564814845128532335645486876378787758491235852086037727651419584185394136129268995609977197818180707222127651986150916944449881646904565441394033736834433637254007821407969634647895146392371113497033479478671272636149782501854256711837104864415108276474441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16197106548598005965678616787798413883073957690802245455949619321729371789775634939765107833968574276293225535700666984861380300148628386237602483784210061198294141983777868801409943668002640271489415947199463902689570872386110489841597594138342879861744032262705575732920890526764507804335484780982318080560690446567381377400751010980936434178072731758339779353929455893234081741320776739231924874274279723355034176129124670886552226097592773557065669083943087929148201894681032677181213889579460988429006188081191518103936909916483949206393886443469565834260392955760641811272017167964537677282187279220192661573021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18672138057493168877302707063382314668334497180909393428200403286501558230373541502738773672112914766087559719709980951423482402899378003357272799017823299906370517864132593992279757282303016734694741836649492494828447012352073630204418392841329543293891008798568902693112136876830855706747497014878548490727686551246646412539580195411132935048874706528046008755954430700407122809725784206866921959519202721077049604854234877114020041903216948842433089897277233844981022675645900054283146207356456416057694444170334217586667341208456305804635970799438389914001938160488386395616911733009030388447419500162565543685949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312521537405652125360021314039827986545158766702280361363300141020261685612730572736982358027255970078321913895863230367147001686131438813597663680413398219568171559244767405726553498970518640647431640489725886817253995940045627743734232967094819335296182785148033117405188770080869642175219326750611156979270251080137192657748585951097654621384639788340113161996209657958018923081184937160267354261092927357697648462820750462456443355170047816068577818967778056037930727374859237565579043946653536837822030790831519226063673146997178046399038114262793493552775336041921471828649264673710215956483466530138144056007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27042259679984295687269604238966303074215798289837180070736344374534768034158596224128852938570539326810075303324295495129820712975106976908327930371671618085034564378872221242924058754999622725540765322855044091217004480300806529641951222143081703953519599098714562239437910356015975096929165753358525642265729955086129883831660826273617823482883655189421693931121356147779720950368938278555570551513913858617019277470748384748602556557912344063642243469348298526509402471433841861722114342185588276369227166701072276131771892303950480682229833231710080234094243343477372614873049421792719376759565387630200981348763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29850573439310514333333274456967556631492003683849651438866788883721910887886644205059831952839941770879003111061416082789313144382366874925228181497964219466661479703926704730438463484442893779976030868286327216305106878021310511310608147630664946744962732669870886679042488962498461807096125135251395466443041651092065680002771879286671794934062362486169821202328889046800266954354708391067982941715172646701584553749972667419616570828352860660601552940351415227702473865128026142975895952127595737600249302119667255335129751915449220020197472712298749935306789736579060085698594507312512759233056195948374495533471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21098164653368126969819138487437425776767164812367738473545436724016467539590302953353175517293419015088759561450586840538288517711899202637114912843920581754836810794254439615893013148020513345545696139640073962951753103381019051458177984805609039916789750353066467584041516559814232705237539825662327819683072875030394277223359263667292869531067194222801582931526108388764483892215881492114067524043440995217615999020613730476887735594242398502750747193604943172745612825368254162610367097409048710059850406875875849991641435199513714499706178570431427966806532990179527173389732142158265120267237910820925009566451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22492013383482071479216571701637298850960290852643093690125365132039275489399348803700774320585622353983305537743091584620205912883153529321485397580485996783063759903302728149364967296520096067527363324192633588673027281636848056653154142788317713026095112346374727144654673604640080982818270364433250320507999065025292160352785850142109417268817110403444606072999973128269158096544823295400945758292150060365177337430288391501575903383542054516093251921377082698308516249592226011827968797580791504883878264185976106635737932094905258393880924125649912979187222018145024178423216206592730714857862443705977506504159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22031751773154915310587941280403580950627709698164759756443222742305969933331497298706043096480875890172076952262600150071111489484698065178682001672183530212554141559519266485123087191797749088779391420361264922492484776265667648439474425621668411676470713360657825581749452381842291734759422224695330862985692477907969667381307554264007899059598030417653975909737460057090015370024336602734780888289451538739910698051305972294173349391808599271580028518388197787850962447152178858430754447199353935780353538838639696579571993902982886159926246980541686402762086149238469618606289626692990831531303259035610529380269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28408931428784371062468217499569816079576728191440495605884930359519190315978774597989638998641311757855970954011413947094412080145764064690293252357645174838199782355991889205568559744954785524676179786692828706901922088333793175482783853734723120899570387216925687603503516243811197139096602590718013964655096257954306476368189466883224453668692633755518741133008434181105143291791946423862621643535353766515810169783003172043296116118225441593448660043139875797291633770359359415094793837609229858725668733501554659002892816769405047170447755299962633560030926610305694298879850703998179579696842765525560081690447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25680825446835525445192574533251020503407623367905942087807098357363125392240418895622880396512972306322339223472209199774326544525371556787283073545850355272614517788129186757839921444819581173023978239176073137836745822260603535573286801663617527741113080073580314305425469948643295175250783051787339296808600285360908018363672141796635994851534355981805891962161017360814123013273462977576385011135789824821918307453209944598840223685769144942407008046928788631103430289029153131959536218350634001595887338511339970968998993493431327455960332450863580628841331784029631842732384659790683091906127323484041226032673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24004616566476581217347906958758724528370950266582473255892355183668988665041950918685700593547942186262298551841329517096380221876740328974270026750236270033845673568002368959136153303214291688469564402617603716062317987342316984925316709085473454056067444384863998720842624100321671639344254230364105071684917906840485227799474002235843269837688253358523063708798932801712937209751787003251295449042071184435187922859939597808899860735175823521635688597772543529033595218282508241046051517706757609307304875732052749269397371540738873364787742708433719006228580205016657637741128591136555894659991804078972226041141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30979495641573234549707268324775948077582240081743290575162934636206900587187980566370499391762628174075742931109541623440156733427732575482398358330973011574350772713256586924268172026818907564473881168945985717835665691209878645299538690171297815136682578702675847171072507768960625363702054806263575723194957915321613037549172552411370625529883611611940770000556704743238671208657836659603110183983973892270985120262097727475571736916739115577488216691396696531757056077546819934944467692242171953686145366062539249594076709137314470497404315452196760615350439936309682837074080909904217724625118986701816178354837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16403474645518046906151221447488736474179274898406378937806554998973017221345636040943457093316962400601553353330162931975761638401388628317390732843268994616832037091350508156513067317558634563594604275209474142688365569402294009974224392956687015514895695142685055934978184236635990507311212685345481496226779485540109881183369011390238857430323072541998182947314814154095131315798557690210588517696851528789279327757713002782933135604825487279270949044525891894493810152638561550108665253120942139498950019014637160978228623578748919517078365404097309701744115955041670408747709016237625793759484442157503595796031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358535410732833991849653129441881649347397652341578066599450808893502273063774980337095010325575647063212957839789782848879625218691633268550724896237025777769287981879539371019518272516553079864901552024682779331528349801226842392296964710487362407323781306512400041162458035818760901228157618965715923363443120200398519373650129322067614029830105821895534096291987362383519963487028530127003277665181843328865421545004784591949482668201902449182096503581106486318691376345324274145598192858150291526782578083504757396307152348944358528249669038019903704079124692346712303621962400358968714867134024153944201338159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27613150285068765061988191501566103153198781831596057192766631721190288386292826151651269696735787052744458583222291930414978327716742714286837503792906074005351965344818749363338160384458739980795507893813248642865814549066834074772530410206352712424896747648273726257711875226772389862080069955781295421692427403626334569223031890964516230631325887468511229354582394886171666389880011541283620570299928802964495249906625745269263818841778998041121796980298608415340093658667586805220993279342475489775146397452863818547628071016388340359949151607060154032579011756046164589864690934235923071661292049237774358532169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21523360584228841016887602545681137900719659907789333130158970974887672462206363717851069330377881433545304239221131397442871344413414501145462965026477486536298008656542794908646087405358940659275670083175073866952277685865274378997397299550420025964659643084203734474074609464448903045380261733051040319351010854363784113946835450824474725266144910561384415110281583948775768768105559886247756169015649088527194172593138247323437904134016307396830242013660471393459629455544455472937657443180999321065051882255792208596735706368773029083427690537831720773858564277588510497786030237958337514966708980782975360429903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20881131974568013419472945117070961679990646569780955747536315439122405752380629754626385283347552814379376916001100567411823848077732141760585740309996428169742638148780949625724624530720469794584247566731959552339609494176423904384534232221731180223567573440994178045608416296371454615047594077706059007300333897278171307453171820010132763912384479925303587644387692222174229893058661644762400232859651092104272260615422458309182224520543233276433620712446333886629325210320256247022262015632539571202367316698723382606045769334819576933224349177411292430408186700288416551133408578759839246649507229864247040173589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16735811401169327945780792644906778944407289453868072911864497126002314190398236212446111173554547771829158417568134071499037778675093595505718411894472192649764848191544170763216704614253277375348957475881221696830665966264519912766755293484806599891060592973605527626150979948400194494436264710016673625358415909806589267223578685692728996102737735747000346151256616502766984155431246147069679987836696728545960667283724488093677904947267074571662372538428635924957433916625860830752114503678924333228734440269416197715021643645301998729503745388415570054215608481805836048777533525731351268223825493319866402099631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25394313169611339237269754949870621926477486285777092483294576983561627726241651705406109112745004572052107962233305743468470364176798465811022987648665867506587982551152522354870869783964055893955447819933345488846166615561817620384635008717881493337542773087191918185724303205314833808490967319772657377678135534688396759990012940382779674096193851956622910893748114855438300468933069708869125106610381040946425907721996040728696930638569355972378039458009870621717997997555246094553349512891109992246808977783995936237625530268371700839624468533850617591424024718436963930589498457856997255234563053675546393528391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17455127575646222869316098989562150839447746049477490627591521304360259758795062518602896771584501531648013919181029736166793100760126831997979624762268832499836694524677856040409313627406070038770833926880509926797375031169753563438977330225924619624971800714661411486992985266957610165073167208489922880346386410045934626285778651436188468928719531335779016570753288403507690174372482500406636372074324272419292884898206524388927814879501708414825020298027357217898721799468080039401401161348437586237165506048984810356427803237992643425566691474998373623082433121394554013316458140059741050290823584583910388078821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347964073514858009562943287359225888881780497881808190730286774691265521378308056673827741178008920222539650047934477214214490913338823173648375238514192623454982642874812057521534022061070279575413395307964802053554234709989366940888948534574931758956611841121283817868741512259846032014428206415633191361662769125754151189790994133755159363696843528543800715555618478429627088458433321864613625041649061644828703203158628233851552084387723382920642032501231846232177331483962171066467662409575485260492603574803793729455764404046092688004160114014715916868269221531168265760903634136324249030817787422611614389113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16221744397582403510654572827945011128735058090840009281878552381609711690942401639054140910888218711981207701303284909310718159518691051721824338570075351079140434647051633506100105383893823025554998129090788554819453901896813022088699246130049465531203930606281225576432654827820684069211049722121103658465431149782532669037596860922784644221142389458846294489611942166379672588343721289419002868930517066336615003552476520794306212191780086942432747840879912228550422751245961576106838916072817492322050356395608275446072495092356539442597278294886152711158611994997922069055880729716311879281334012850030016346559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274449706532349672054774610793950054087498074519558018460498891148989518368841736164409086390112902637154592712867072142406287631284142433088286863223512487902025223406749053034854286478928943906537344028253485611307744108009850183453105931412348125921295124273970308897914710864656211814438299699570973132005057878422036104842352062176340992088951106742555377674814510561283886797387664862248136533184293285245686559178281577616375615732684488435315138792217183161829696635910435990184084459426935984899058508814142200952653539234934661090306505257256763655877322205428389837801032348743628883219825806820414053571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21901262967917091432838718792898751994392138842266275466750048694038553897916127551495957351838480062606451317844550401893096970460199645772896543747563785246764441786740261330631684312604961196234658140001975241986868727264554497517033199474920518508304919913442333218296489082646378160943182756155885220356390227936830045642622792651306705512802609240479414808537528480378672864710216911532083829179327362239699651028529367451841645026932060407504954114487940167359376611195989019282854357109448542872309166314178565253817146922739032294465018421176954133925929162597253261067265085390168961996146304248372377257597", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370683790793973370048775782646230235091940442950941223081603190454231628140520552989071909015582541087967333974707251558572249652316677914370166761557542125278316470004815359350687702235681054880097324031533072745630042189718266189760468076249242614851868501085496331404799315156537339021712104626552520796346619739810339735746718798005899307137648605982632891433667359329614289674871331144322411427297152354312374396708529296007494824283204670850998373354529580822962059575060289780607603140325116633372225158222676922888226227878421871731362972330635778711180397385388937021356540531504056959116260734560218614017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16263875466643659350166074531910249348718260134551236376521568845113945955345370924678168301057956837946850366360151283058763358305929269871119435020906806909791068609493777095568392144528038480494917601021803209737177849561415827155791606325695414274467265090658971529345792052815534800251389312921517988577452430367273080349002619664899071943170551384719727140116018613770061570388645978472301647195665944425339181049389162381712386409196805235631557798503830922971273093105336514779296116132162962955273176336845794312128391714154642525877164036666170660212193692435018302335612619304937877364998186906737439977287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277735838718203176422699372669303823782404877241806442595150828837541680805632392241295313787732791473881989355061913345754496206044603527432248940233578431651788369522408845860369913292420927589468070706616992940710754021588017210280026631641019613393969623727384437824310477549217817121926096816744296970271448317811664161150570700797836828606640368450835861756972665748457488157551326633013946740486464964351514525024307488228570536214064011302413341609824397332753200522877908791501258114761399659710599500782940459983607509539289247078600856542547208181188172981624751106323152806677164120314678362523548453267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29177478533546108027270919057861845673745196259163669173000819173158532559027264022978152183935864852845957045299457890070119084176652614368892412609726949215717904892505869538652009878203856947491674563125399464727540500510196900764729783361029177846729658826840939251937899538468629279876376807077598504735386173711529634296702687763169687555473850645162536853439799834753300180255721102370794841067551423229578319251092919153222973655331030897573309299197978067234274963666829799761579967057371406272347683901785205326552176133379389542253299187950690802416695992964015952126172709515186846649381381328780706441817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21170691114841065055211529305314612933625398113479006637141656076559306304743136732473193939642333758316644962905594551522864785800831271752274456600869108155051455981428558453176752000003836494825153967944782203602548971508408188034106993909686100480611100026867055224611794475889069464943490913282298194480877062558671481601241952892634652239079520406955926367348619475847241627838901960316647151157310376176737109402402561213705456302688167866531635849129315035949854399490906727646915438800767359932809728898361937012627381238074053785802257527139385794272845677476599211881031475137921822621818799301515005980801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31545818006857601315552989303571285077059925513002122654940265148977533382069471374507382721271208415525555755853313675199065162923981486264421488875883238449240535348109825101438152117885627290250488270524855799942821578878411183773775787274600543088756744435403272379136152706558724773208131441466371349971535404880147169340434084768653182642360548607460149914029991568871195202778428185001999942047698217389529615645874625694619464386846072639368979648012965692493247812496745406282141989096071178494728505601812563845658029047345006902092983115050518067478829283192838879143428758200445563761865488658362202129383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254230678591270600158990542383336852376706713104617744833506464611248969948788465605032100793798033595754056727124021457250730834253493793496289872082602178918646068291223902357392205861952037834256227946148241701945953382285799004248889048722212143055319738594048295137091923209856595916122971948909799642704369999792737951432563648699414546395836216965010336039793464934096212032011428791139146777368929218120466655186001053171400279798705614281532187156304225183420515932991392452548027800147751223507403458875053463260259505174660238383058190215570270034669321284506675328613008371846302316199519259958280892431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18510758883096604780948148162230729035363631604319196465796675962200501108308186455333395647947957539296323515526889212819542124154847368624021734705422447849012678390780032355157844193058925348399700024770121399330035765006814248479161260874140299976675128078496176360162644971421122500581789616099316412379776429725618369340295519415484292237008665505930178805672148588251341847021727272420830903961589421685806625873011094676881029064574218451048152486555512726132725198050403532154411393860475314673088114117805021116919382856088590333414399194083459504321374865508573250417810127508936487535029559667184999550109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23673134681344781327870672163622940931557073000855395043684408879397529237803970338246501693747424055318616994594034882426380651722127310663369063096578863454925247173194049129987596485996741775799655773259172381513171415139194741936651504373981542321759887065520557350945014693465770137297859379769572254630893833688893000723570540828879149338081716448154522894977127302255305618709218652328660799691826599403764420101911967018842439635975572244268112348042382724706756940593881293651534278465085971121617277732320690927594801610433616664734184987432227623475739757185394815509523798690520856649063100865289790957681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27994846176989971605057139258585845999010522650697803677327499139133286572474071876327458851857401935898337177767596050804368884213417699085700514491869321804037020262668459163386872518547413985086441716179703406787091024888225234467861188104682348060059275659367363002644546420467658064738709902400333470861380653005730012716937906396088801418808122724767040039443330650301431247678670830983574116408740507253942099349480173251201131370929318684888260685204321793449290789016442125367145019034849062609644206751277447751900173021732256351853058172007627066505763625791711211552615795907188269968446092737143573613043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18780464235310287630258342631773303787763546261875098403219291884949655789746414325845379842500709823569125711274914381708896421987963558547743070722421518934861206830814672489848422216895967767114956866051510804665705314390016309655949024254198950600565090788185573442016118372291695858665237935865695984872578879751067597504198461733691217669387339002754322600598062833288774948422307092003586557665182558247193550971537750009655512807235985769749210742517660157952213940768472983307962328270591183401825964093883657281833634637497258625567799121017435094116307045094029677676677251074353409193794039483173172073827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19411485521193452473388069473326397656618322529437752858106126506166974145201657986137607065747356607345437685393532085602233658923679577812365564764098135596337661508381132692570452643800637230530814673740161514886930951577823376245056883281176048824332065773840754976587820079442806674636629438850865004942530587049870138322841586779659065547686430670371886302694816691586829672691485800220281069817093448635361223492764935358644563881207505905089520001612585420772131546674407746692274352695060883714717498172907906024668719092595662561517799269873958903061257793097616350527492915467966771032461226473057136525981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29495568986658271905530728306962844003844147652750722821091666643976987553127567552653441697268321363950841348666566466335604231963919646296751813498297724807696050447319926810639144316350112226825802898587280851983960895600651414219636926828043070702732922299927645437685873204652856608116827799931669183997308358230192806568142664055288108119765057526400912471658165364475906051017747491881337380829079343779595284367802321557541160433605560751383663284221811792173579116608770020074272879491028933907492088141330434102191197067345601239526990614837812802501466722720740610928397269398585289827252056698729672331277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16514505041478295496223970331815769846613729898656259433285245803977824982301532952980461534945532290633002489546175126160026004384493596677742618887761244276472307940922902334520217873780568168620999117459964908151436957740010183556661640728232431195688149246681431984487379524337070590394760486750826045416168424560496810675161709705644083994389513987247867601191175966043243276012455634931445433716936859380218924670685206496659809986534910684424331468619455001436269463802349603999432593017538853633183288075784548699907080762804228298109269145328141218484077950310849567193774639351065593668228515296000344034969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16366429747215912981258553889632851376437618332085198038323308934155781942546154849873233841030124213698284068522677072598243855485809631227633270170414412976761901460023756673108700632736521543435939089464955125953882452199913494865282280610426887350297062112892353959742499366203201851467983479291324330711072826394718755209805944425212541082390564753223502935772922132382475486242926833997247478571495934761061939354285729519737275443248393577984354394343525723633171744611417283685008437578049244735627639757679996819170703975743926175943740315979343713540590450757504747792590491511877879634262583041526022011929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20570291659212274707879582946926807909420205382261398657160612176940600464040042309961621757443845788218353934329936315830572830629262160359571227882445852158788329718913159697230808157492101257987547679754216239940921530909042895221850797478507027977890786508694240235567772564860667113847587990584796059266782423962770382679289029813515400583750501950946718639856287024107098401301143964135825163885399761810820766376646618074578391352782455928875555807235770292896417380753890542429655706403143344333129392808844654220171685991047510735419056885287052472466122377458687401168434713518323579014775051110458504343079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21779444554102874439569491677220594165092288127211716670035357782773554127397031161393814148838014773246487942355202795067908466051049059851867452643732799643818691178308690421988040099261429654344598160101668340693670608022299732724506163408671075048862292531645821409817902682375547675987786848358122579452494787660184697021600083651790397975892690847465571033618202111745232748208625229592235350350147318608016202573612159068274038678872954496724953302464012606672377570878760283127569685224691196522259960405012178559891394911944028530717730709724851666109827744281281397744566018079807928020407200305699297813863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18170749829709918480648294468656111609326601662200974958115934479259335625656996090853742237752445088135056010634755919705926423822136816067347463550029431090257841718562590992882250776789461588944028909689420517367183537231150573579852504855382362866947223253249886308669664297285798755989055765344847276612824263044086109662258966187105966845901566477891666405808040532712196792647547657104458454413485601737237940653898450662959774815705196464742494689533079157007886453366853812886066821342134612798994736667652146079878847413107950584002569160951917417267014294376841374863567571880979353394590994079996774432419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16212709879972108896670252945767059174334215734820872884173183237993029522150370293889575804892704758213126703696537470087750772970880737492073444681176371018107494075676963975542325974762398036308428363021004064051836846776730430294146336704046410745159467779939769076242297918519206118673132019066670020230255517827450831077038220335303491890126057871132714322406012221516080516891600353342111333160925482547345650836040956341723879189663687816219366843212366645817890895026742099341793915635963813200507067037062785986679657574788062399269734002860353857519614843994607461027394388290234972991461059334385322537361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25090688717041152228749282068138576823001284230656941459053184839412163170820780600757197923386884612652147688902212462927106888060978829199031328358825799891644018562844110985029205186564270888591182672525372108923121589326044987362928453249940514517070449546182478164927957630742504648518566969286749410211250213910560752377717994970106736777742423143289919356832997511579306270663322116479445059932016659153594541483281599535822203129954834656475505520857160913406970530195540944621468157577315094319563648945238094628313708278914530046068137137223044289890727476555648966716480404746349159355618191460339744377131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18771100371652740510012091571962022088663226138016455288035838345261207898230510050167662111689289265082721531465000357303966643186548752547780921380650453747154719101516710076305628918435093563963365158349228626668563898427039847367058812219270277023108503064773371297597484487452841142483295036442229706259423074285672466529515464884023153489811638812981367105128577843648133533195745505436921198038429836966261312500087798478472333809251692963143480200220804286695906277617736568110146311687491061901040993946221155252298910326448217626752336510483520466078604204030137652854774235407115820411167248529822774410163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27395386232833442702882219821150172939664803527205990311317012644924205702204999098887593739794435856159676829627692279037160461033890943848347193243340084242291088004654041538152651400084840729244600606173454625951717083554342106962460057599788836148677637443195212031280509504523349092169250391051279931182979472803074404827306105818766133089654557989093372773757154943082665043457730529084848679074111261672768157956068507504219463333800039139156917348405757659054038564451938201085269201095701330280126636658248692922223014462423674581937068738009275603171538931103610105065920355512730027452397385960220403934437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327058659599279710119920021569657698858717430170955646986807055866411171782562101254682402798516090135785164869909691733779232171088383528165873034350984017134012537406775754675438332123118380037800614962991172208771740416212168411168959057912567610049333583729556956786197912970807769366186993895403258676686544897629593845616046462638107761596950284382561784924469880326245051567419399309080205997004982744289324521251905362471615349749549509546923960516580292257778717218099949030776021906691898307032434321687126125306386638063368450682804464104785627326621212498457826261108867355327134959552165488681826641353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27264058008811350207647949455595597790900851081343041227259760066989007910934024296497940422191468088076819320984271509876199460524391815169737549269531130514916856871960505131118061339859023106973575402085534697170295537544731565832507505797484070755295014810995941474806224303177871421434165051609093476653817809242605813648486433413108907014474406082464084127734495252322411668719616874169626970835119390913777890088144322436146083133829057523997198254661530770994381894029841178315507805422307249723168457841813304808980949183091350481642090778163477668298244117705051575211109541175592451763916386730495872333511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18820966677237156936003909379855312011298718530559920040294106146704010257404035531509971390246003386384691998937160381158270374326304445175814186346702277320363849850266950635774866432359155468168764611808623588104155907362523340007551387860812076047543412077571718528936270665852426559253132673052616713866757214566596522816862330853408959974140687854727113583647042508878041369694642505815828098133733827598210169602835019227855332511220635044954608183788642285642586334419709736863148837356982941084304124562557435961441134719754639016584292726046047735102136051407935719307155661303081895449201510209015277809703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334876863951797931690805399434708651846763491986440027638646688128921955533482658629859310345126634994899839873667674259986271002631759288227909605333422564029097985796548881518441479945053657076346649587561673875307163838157909138932861967538759162852451730018889095688272695221365540634088112320148063174029839017752276528368048340120944144378671967062668020361109886163127935530441991805757914837051586360751140018232908305193692655163855230207492533421015260982953114392522491716234296668545483056436353036288023553170893409176546379805190829461917920469950458296645585419891785076099808004022164101076843550029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30458818979711271047158282028388878043589511576978899069491621771033259736758189967128185733620231200261455656515355160567694820237524103516826614945350091116393949633021452230086371204104871086984658995382663154237991529373305565128020865398397815300151051867153885120377328431510636970937654866170308851472505557647384073684299308344403876102102984576286109920332017425693200186162164515896436420396091706943238188372176563016626853465744147329320509674039074368585090721607693808798121568844432722690174230769115568550087199306698510544956990779937715371974284973326032136204980149394565904067611766409894921652357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18352086758205876767935278817112991914630719452371147510303441623565694008450738167417891914755615236057958113796305720588975655291843702303373857240783544870526118592316585192386905682295941196120589004249037555930538451376485215033955335222862345885595333318016593520268928896881520994055778004600036656986095601995899896272727479753634275729699209499952964347490837422354677230045637762210866479246571981527772336858687784011348518931068065045225991896162149250324277087045385470282457644522202838064904529309618692648362163536009612759990644725373675261112634749679216230872176320440502711112406376956301232768617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324741579707770954044289709469935480389429546055839846441094433791710746631711104872495371271905565327007007002094959857351269927324469643641320889211329683648553586085939699979418343894791351329482142680805538588248375109562769014110565134320798038982186380613255078519332954047831409257826138350028054164801464599945704788795662333485456112077784216199771277465036305751453423752374727973746232078067671124725948102636056744149114525691739709299523217931292804008957415647978111472968982650324956150763949571804696947694488848978410298880815292638551615182063991203980028021201841743871243016990101848274970297561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21691716221405453666283066642896020093398691414941211909747936253074498672800657960949017543395335711982297745050798292130109685314044433937510300810721854931229666883568358136587092540137824890032956866146068701346828369556226365934059691220847267857077265676638999687778667741365917134511760520595637993639002991828996691157627444201509029699666349015822938962335114374963253111343488892449055172099143693132441879949293624419763372316068071162870752970885320410070153536107175426211736645472341703187853000211805728459125645324439769185123599175596953877937301901910354402841525617201229164901908927092389219579953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283661887838871790476342830678718803245292880728121251238058270034330573986691433386530376335615209004026416700174765971493642868593269301125051393068974663339477431702702221570641877815156023045527630961298528146685683513727012303251407681613596083653678147531521956770324006371160137660757900848502599463759456448252464885174517728203886246716075374323903844872926329385563665748807520316095806836258324364200881630055368171215128408887422974393369834308957681001475060516146035174251322752450045568232710124536158270794528444644895903068025176874999469313684224304790956480847959303059287486454820869232719982659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17855306756752528017756293139787390342616049134210173152757863331564067038288340797106585988767646138174925671815387984259157449955567935601321421506928002481878990992388591243607483435322739803543932260429564693808894729436170800637953651137753692884391793987919830715731213448835245651802656559288258068974711918366417710938570689926647623056697084314167720418008284065048657257340793864757312240888390958383607899084635858871112432823994800713182148054057267932963455310067796747604117213072057209515077134991940692816168718550115140794468314979908550875828621347033407248839554011603804230073965026064945373282051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17162355081274647897273648581146760649842466939108786311531044597372264263133313641267801216611472626762025527766937293736782441634613198758469425168334576695364974818626647672344074882932652871833023955160381461268275532390258037106449879920766032145015993373417657645807673144939179186739967915739461535839281302436089088356793143765484156678991033960268713535070847139835974023653359033296985656734246166771141444074723771743009774213293205881251471589077695661714141764191733391816164481186796290974498548921807084420770767874208033146956247201735207438191701916373657182289767749799455625612888941151462820100579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255608029760500759416047074729232470411305300271996691224213260620356391087704777202196833266092445376825980593076443036310778959034299961569696180525353209067514085894669024058654965287860523210140292005892622115318270339290800854451768080817125378671184292865397515476845322264046587142711200273992522386550272877521746523508634220736778234336843177148476630413563132097357992944788571158962312045413789943868278259582214231862209816417624758247574602361481499088873672357128054935254588821513051479566271149977856796475233350306253932593778173223683145610503002721419990498623237713130742703538784902544008396877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23356769372026312836476963928398509653272916562446092838879887649964410417889667005905636811589184147297363525735200219382781673325506787920406992040610880675081111757290050124903402040066069980696861322994193903505294822058450442778916998159796811476154618266434823577295599789995985474804591537059068269463649529929056659981675250609425651339919654273951202058658660050439523780780964832820353665899218431387873628684713534334815526355494862246707552702551631528207310408715113028039174381559343548037475461200476782795033109239548589015287900210060581905634527525292750328592965525944242147044449303910448000799473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21071856203839865250618664161142547373858540268910927649429527142259589043591958870322624468716447917947824235827996858067403308584354285241917964969934466297684433331469974787620907191206432052843310641359578462051596899305975569169034620307510670197819061390745603955804836649387677853175269356960205719746826355189880524620136888051909903577722178330058491893086658393606235743093770493449063531868785100111979798060943017662827403215804022278260160783728668125221835448971089321591472855843917566058674325050722164027883578264773749336683056929612154899802105719555904922762319693954130845479015840594901314432367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352893940747312754124126291068737211323201410930249155866279755488591660965736353629738313424617241582692299677010451055619973610045170066388142362797891709360439638017417820341192562529632075409712470827720975644101919221743516077892998883648123714686522067129464838896581288637249921733433212203233796137317864363911069068162497894664055034006332291790347809363532502036082343582006051766865987036773361570853809346777738043095345411463682277717333268649042022740520407576893653909202534029379373924337013400971635156582116068622695847000747233045421869268817809333330556714913826621166304589036371553173751121809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "19364283043606816952566539107517145465838447929256976462698439510346136296999255799982849947849128446017395162735683340453808677100255953446403817101993800114996860767836970272815303590300323783982199891533618543875796605799492286309029441495552859147013228677506089220357622566346196827163466019239933101221204558714320190809372836250832551405736535305876428419539967645046416812157205523198571621390437812053032124588312666729428108109546078915596759980642150326434541539507884276338944406044126970893115959796634131040917722924805412353183492384977475956858653330761376474556173929182574680643511579021365862004419", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19824817688983786168510556011829613582064076859423584345732492347769978654339197557932565117003041737523703457917085869678009224363406207263606807264414855026993538863629344969371371856295695146414243946774605297708043409252388415494585961421709249082743027680493784182251793942580625539695553824013200229036647198401873089969610626652638920455555165304411861505511767464119007171763915188830783429545312805934792272258722942474743595696697952464045037873333755379637857438700415067758203025462767506913613511202732037514052843371105243609637581851279537501380681847517704048662517006694825342417211420748011295365801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18598852052413441498860611296031179944275081382420335866568090628203389533129606222512575439386272822346282635255814060618910609749074301187262747718286106195134771694967413576389936448754051341526669545092274590953249811515056892921538096227754215206953011842735918037206990648308343840670928923888325558048852906248352746734990668725761544201983611663948090044022573049061078798108721791474824047334515055482551060083654776595893879806340052167475732038617897711210263761607667225662779817788051930286455272882133013845227042383311955380368554575147785731312985508715732891867937831914874374655074319744413239286331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23019623351083568034683011890828863947623708416264560732200914101016966466178705740684314781444447340330449239340550795012732005323910560729959613659706000259778649826698748580084768925085642167586732948306368671119195668370027084546380908180077454471208500734662888943812180894355933044501272630653516575770161857457342110947153778666348109152689390522532856276783878154903389214692032227075301171625028294959903152577162221570944438401111447574483642108114307408462373175295134403335268287731970200250290539837242892971035517121752044479101440209505404973810207438907466205933951159918796586322396813809503818001583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278174250101571861482343931585652368264484178642853351824499280447231103812536839420555501214365939283660355822524461785837490812433382355523058337109030325166505944248049373424252402708602209104752085944874453159640307959186481213915644643417258942228559623958898785326334216419737624549421158318896023078782447954650197947941744738804255082368414980312300269504552520575516194978896966238250578811109770379271938803668294445754711207785765166742822591511905018408981032799064480478273805924961474555588477337190783958454825676913947865243603104547257523369900781841393065945144926699444537120238087096442215838983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17411587663607929761546647913237262377309840123356568040887980674272851930385019440013665700588524063735566065131115524317958655160410326737963732835916296294459475823783365432850964792879243657493884639017323017575069151293250622676411003806567965686182340280233315158813260633943936765427427657687513127542464276903608997195370332239855053070130687062982170030159518353026468841041073391636726246730588864601644076025857147876829105617852866074320435422364606628464452534458563722978517797524933966206643537806250421546284502480449958967938159971522508640558603662486623084321297813909173076498623411494112193601193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18980225061157129028834880318473695886088714586555908474123562420609374325850097771298798870863153961413741219307735681610424277869325403929755076960835386542861194131557620086804561841025698163196686858759864621237212221001238151761448559727759192588087692327342065560988444334227314553933192718026499608495501985387748661068054192377151417132466855903966640583622009470848738066824848304374779159176363602460659507434108729585301301015251249836762210813871056149276774294885655369877129608489398191745377269753618897561208569199683378848624554853760823313362390734753118115144027019155834991900938225811685402651901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17399764656880562172604742473941417410460058592219610640297034546738765248231967741257887579185488858870845210828453230032482178906863149206962212730706170207414062809461809852481698166410563169114751387967919138206834293003624827706792023065537861285358119220138516810549262690643359191241335942798821721764473221435573512090520019286891239384190379514962433805354889288540364979347139852080104575856640082861974516079826113046433765188879393293971880240284084002476572105735618126411111802836531995109451292196468646640072493764363914093017633247278680729193728332373742760325879065465287942697108420727671333942523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24801483553144562652482747609315481392763907508254453188330131979439313311408642117995062505180982582320966812795698067177005748117250593682105197800660952460580641120877165778520557618944190683769468575791259833193089285745335453399989126949236617406269297771716712930333055946369184497889978592450115077863753490538777055917080442894997334731614349795507511292098462662637868067546766983121749566002351828202961640285465657413133262234924692770488173562708092029263810339017661759634655368851135584297273611914801055876208439063549477913249397982175388147213363558464198450772212826033750154799157169257687527679501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24446663467768368926692185940920392283455568641537296326918400599865927385472424201247501251531612514786555626583111733425909094827030256802130260330883045671771285778463960378209991806424029603111670806795126267815514634839545058463925262279273696818135206457233560026894739532958716301324024386086806261146441352101506854236968008109956951416793551908562009211945555399313687414284829192616918732658211286680368698840046480755430470000922767177914471082290721605783147445084363312026758639420358527882190435317368968847244949220015057994009653916242130920516519790013436459459698121495673923937239030202519711046549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23166511782312988320203646990882875353853784044400603272537789137339260055187589629430382407140208710963599949473312808709929561193722073752548423441915296602651428083745895065257973250710059535108068411251210206326457587978663818258437771806568217428395513532789637590930819942482851543062911687218182189420487559812892969512556977378928342577388100229729213194086934640870410343627972862629339959639397064192262007528004045609678001240681504288050401563116598980749575209754983446484955333690209726263336657342465263571394971034627237041507724689287534987708509542398489348367880065350196104570144878999677350223667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16877705568627163614774042553413743111508771155480908525998418618446805184411874577758228068132589514116781027369816834353561323990256217993715169083649137638789952491132811003427512043619007482633247338737047766664768737244105229727084110272701930551868794607623874109173825943663863528677480200901661777490607763222287419984334261667478294714608170666296161359769764819831247784337051467094461224879362830997101671678356486989477858629367661177838586430518131444627814613278624055868610027648963114937223882128509565250107872229602665761998825951185764486886486448820662088063331273448058381562644301660550272453821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19055863494888673763265299590599704551301038947632026090304260615801401397360695945468181837878840318605390826150475885793153771480450426104191219674299197251169528236151348264571346282288339456789586786949756331357208679223624703346599886399446635836815491068671949749696980059897057416863737435909447508433622423579375569667853525226180997428466902652817670976282281102136044620168813833300859642367587949989627448822334079929003562040691187575266031704651463562607053400785474999718527166936920376493593743729850837087467994472420756544774798904359426028031657876017555747790022763117324224806546722764999258561363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31857624667000397249803135030687131527194021790690432463271327655075491709485499139554742331554908195042797294371175185450592942588907511039216327500138625685070783007086386972189301538318021486724615756281577666327113713567521231835832493851060972518192591790674987170146105937245813975549587455412483384841574304938518251694702279344258857485206578000417035393759720666846229164874708426913355635494160144677285335333084706425500006674766049477325658880397430425120808758485894633969621660450519789889083908025382788589553467117589280651168491363701394874737109432068976821707904275778433100884977696001594157895311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341132879866554045619006782934533130849923120281656916405201469696779807260824746185375407610703391128625138046414309714343295969737891017437948067705199225081246309839092688511037630589460413427434683244153399766396321289071550972312811540582650287974152955021232584159315726861752517189515378426170144205809647282055106186668517989941357359595490972481515384913692039160984734599136519517116839167096555162710676504369591862828675186412160915492711425832052622191166969984404802547731960727377563176208257963032976006546145302033919214736032079013975157034484999852024895037256481289287031955737470548735344597327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28186558455023384023195273119594290197068231832924051650825852986331083467112526341744806763348044749192776800194211359082739163872151761700751017203465631592602081159016646134001823586785938640880456563366223986973753457568099326949286822111675931532299750833108413616244728031931804038403451825303469451914041720246241559316721341273206007864495842985035741839754609238275160625267679038024126151880094346378115511410579868554871592950798594091122534293606134461991801562083349451200528213681927558430768932796028153488906246240967905817097282745978638549488658085699010779581581513861872844027554569211223063587663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17872256125793231306704038288539443798818450257530272154538383897949431399163276046338687249949254056244679352289806552018591472188367438782953913339605950105993666639886249950349414912461886137553625995623821155387677214365793143243391402987304527014920540337747981380065038980282245981657853151307691357667897830094114675811385266083651089315192314690247722930374220680940099696495804109303648089859457644740442326092403437057818000145988932818077934697499177912314576965767765917184054711366565863444249103287135562728994925436870377706388245443070647913415905867291172551238273641924009070329268479551318344480849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17661630214034630950527767205532375359572639367996117625661747623816216411792344483827954051693127149974257968114106840579687580809543629643554764872982463041254548475121045685442282468169223168488641818548065680205265793089219195838056460505666072658500676480923099982927491824234950788400764339418336126135141271619019767437074156189721219961562463139335685289382630015483787781889411693546944846162022766803533530742895870272829716677085820812029909307431896293356775027503548193206289341938439020344867158704403164458598249683986832131669074200072499505161753513085569942496663858485986045159614504423371429072993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16382915471038426502401584487971257826185866496287374974818936066381941564220218810702398041752756306806030296472489859521303212442728738315867759889997274197898923284320355002656830092778302473462159679975244605117094958047502473868030905556801899444594039674563534064185959136295757213690894479277169066494986833228467652025648635733147049046343579108859271606247920630784830835753668507386132704867926330790614662130772773731411564307904615378285547003089848286922853946736562655017548290516257769478412637334148166587560286643355111807123558046880405848960207372966452417461651545493812616038096762247423698480001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21682159561279247975027097468011862787543291344478520823100904168132039238345410810031298496083446134210512690944454707260766504513067202374212381661391063449301321544672250635678231834767357229371985721003308193169830037815686043024021171479874916378888138888366177203853044150364843521020739775454106539309092502396980361810673403578887119302664315277106265986155673979198854884652106609327737888237479704741240459412924771394509975724290066104839480922690827757813699692344789564648711666114105298177831747820201070213872087784222865698556429329833462339360055714389613110596130237410968037488427188831653736006499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17326734908213630924622922316160078438954984638003909359054045549674324981193525301809856772231153048308872002765082772476991108865119617952931119887341640047199875262433227877130793158959983552676245360081751749454420870004400527809071610153669108896618472811700974521433172389567474678693957952948499643733849901571864577884756665275723956015512263087435852875463954484841187285035590370927388326477722785667996779589308540708321168614056780520068506448677359685991568469846278072747427553577814060962623533943662096866582274932144992860462553530638807378983643734040562804360453210062757850349541138753591267010891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17208565906330544635145216861467303641020087651027725518257975035035418656852129150782413758089641819281325088421510796033563129999174652063897199374202388417293445861124417982796298152101116197354843831736106949829690351354438075964743825015123868407762795580079714775351264831324516824301403532937655522080852315641611941753515574813678952628190509769394311048033007915828012456420688036638040762585292430169916851093698417232252317981994466527037111119560493151419263857973330218432188420799452278076042510459689030358788740983666861742391414416710839122068550599980727072053374048765292924648585429513282798311769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16618020314823043188334681746287829619912919603581425077783984076676674949913937131258999011779494645781819390373659184255411506131476394968871524040671889623672768161809133826543192987648835140692742665803947102923361319981172086281283276603817117238591129160205504501330390036472370716694650185731821993078313032083583159580208172942893543980519209148817555746798037257246331514969621489753325244919250506681197921731483378847134644978173885523841842271849590316761249279001108237831868162708781337404662536292168945112861297178252754217796900553737605125787500772733885953825780786338473660248664793129230480584897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22752340696006001366967222668208261850475041952288615085983163616313503608550702432852555322091838910860404390155674354125493170684594183288125131302052922268078812635476043442566147777974322878035377161226274399038868315479093796673317752680191845138525547432258761111329218559203891486190851321984541113785732000238253162691490287912382667340290123190725948053737967930281104011345022645847337525965554836250834088215756829872913966913510783076557526320844810026297012040849250130884923328680118646207072184240199344131673704302124167381893294362936778586710782566911607111316910938529673807117324879792309024173409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18864357824301431448883989857521985736047030784625813006382872158583196298011831525260134203492091527528554140021908231355735545106346765475589974813304411759048643791479210551192913257948255780103491624116541019177460685569221851488944325469188847341014158083498778351234435661047412140280224213840984916961472125507469944212212810143141262885950184571020348130609564598776204468286316300956843646719013948596064187734233306067739361555714388539016713911806543509686086152671837680716824778898111265436084352396739119680315123308851620127124861041195640392310542543978056102937348814195643911676000142865500178521949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24514952569654443785028710340429461319703242291235041183741014069820854647263051302756242446489687085330252173590729442766183075437899574475865644456214460412484187978481069043331892895297507169708121138568483971244213868183694286672845565371372162536549281083293247659129592450264043366793407340104440178420668698736793936534974705538605361607980436275970899394419836055016714573025084177895356844024532052183538148810057963835495183540997187811959448782354747988934010582728127207893469948305165914101221547123548819957332037203758316365855358567652157856376667505496890909307076902557441815300273922753899864487651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353960404125585364830464168968220342991509987474134412504195518329218495741030937961538511602346867309890229697317956449125289028425810930126929232231373795497502086703311629020750528927528789561377590043568216320546681812793986486534758462370555236137621087130203063195209238129307792597873732317904293722723990657992203557034908249889493665804683465415959226441759293721375297310643037011599402474502508899026807648865891657537278847107928358768000449475776956237607223746625341511879758106700571472804580206732121419359801564821737654682448137214714994440728214852520917756031439183306324341705845128741240532691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17563414672586228094263904531153200786025192486057366364398441943930871257718648672787527910149621432566989784964773291457936045889240179330286386366141301135119482699267194139940492685025938820343848678636243624427683417715321572345432594733177440408577765518173951622037342143915816094672573824783400647233598307102019079057150104149957768484422415051544691201525315754499290934126455304665374826873524906943665601343951090212084024751928503691526533809884208884640794938371649875845196722478336123723910861356234838019728925007093922743022810638483874566414123280190832055257092725011002947490848424723048812300041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17505555242687408761335848127432353950479477737014121771272389380883199926373092650811263642820580322164401883087404696691035816885478621689500322502770573446809287593099348460895103815991097346199453678353363847422254742834174220572887100524621300637032596357080957290152773976852563147728141299162313637046486905150784953495086587644885682852110981183544579935398747655686196044682603004475659675271150499191432337132509548260648490611102447710010526493353922653713774902635328963759950881953512882330291382245395162061751889557089208614928659445037034586379385467817587282480773389508636559903075896182499642351577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16280523604471923403617075029546664718057705922945763951651794437754501974690039064776275408022475553561731999455253511440955521974391017768819607426802122630366012807881389782004313372435927721265981357081560559689901665552761047061364197763066442713240293606102151634972060611942672228333106696851770113295379259643521944665180509721223789041490128079935251032029229941711902238053758055900631596596122807120645551491217912941087642194742093053561643424004745809459440403478690566932064133944577844790896680387492296898056704943264102355644437203177104061879955471198007110946338541239849373694713731213686246258171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16223076554772006227009472506951546478618308750220547144731445375174957899936043149127797572019045961646548054908317113190192465253564338173455580510710671416398378915020541734144560125973024073159648258262700425667453059711504196136737847000078481800557682139899686714017046025969971354708683345088565496043254001524460610372656876231487851532642663845677312169554697660373806312436401145554972039949650045338373753350051722269364712666363211355556348399865897099982880326157918441872123932345323557573523221046132924541834098903884633170428215783859639838051642905505275109146357819690680338856995288798908328194061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20676097074186780309942892194856940374534856089737780331751875766952621551439154181886438179504715641946518153697948922340040015886686994570852166979716839623361097756431055440018497482273409684021947143375133960350201451141360959166898848375122470207028138093137163230578216508123771611427075005627168365695396046204649714717650382879819826302557605716118363625389057785863351521263432971198314878170364564919475272835894033303389912028627177079752347979285797698749245711556764622010590561504663066218852457289304067741388502990441537077880079161219811491266297653225118394224506087697902535197767334767884431144853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23792729435944790497610132982241570765761272483443452076705190068077884734020884852653664944984420886389443041467349197923995884564187717492768812128334936568474476819313823447113505248685547869550666446272746093075143554639299549068991567694236956746647605200031271350548361375763831072800068635071360837211493952548762393989063991428662831139480040607105999474970414246343097598109863961198261102743281461844368170221343649049829449240148151021731372597708166151821384131786464840881664390446357967197931991921017508752681000143303282872042977369402093348169866534803515757615864489284649633838490033782683657910059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270890928603014444576666908451357798147659126806184956164975482293460687522129907730185911381487884048339124468214641628844807535472365757143559538102022578787313100736475115660947442564920313324366823357701211541996973656581212547978234117535766489887769868877039605054548174332679664753290163376435589264289445744340552275692891749015478783513853296573066549472657729676669598815879399309113172787995305178148619602527449977888700918044684571044956178715906219016585814492399668010399013672762108131800569220429637800440560910117044943955376052289096055348195434122958331630612428480458240154426300394023910697951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16261841974536608500844283232026488649264576483891193762666849818049350998572210185237505092916697349637554090735750862935759542858459483772136536501456326775248766201646472792085384485199822031723534656485911218285510874574288617318260070072220419267969490985242983862859058340808732455376782346484128142678188202123208423352643271316074648606742945358974561606059713959693937831481252971305975085481363173334399925733665969502517168512973279021893762764904746113870772516298658037203458081802373642784745241060797646104067466306145796760363194426434047473421280639063837765358406533212138096651344149756604612579381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24719742461004821903875673718466112921293393758710764476297545173371039993410173337120396008816838384395770375228982567019769979309085809048622331084683630475622457110619611241629542289581557968864827504279559374951687557911171917733143885367985026461651803475233938628557528862944499781025348573224244034023726154257741702771596249119168936379463404855872092391081157867397225480784979766489446720522818395543307758941375892801420292181294849078980626465760089040714203207657004701668645773017749323945082669407999978112726704305885138727462940036862452615706891589477067729097281662957567196320100563332410695115377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21473727541058114901675854152631542227900840667170595405483394076735520087583634375139997462547786201926955729711848826970775949725755891504588147748790910109670412514617155169936095499551781075819154220034532740005346861403044630451562776238827545442735553837086534945570564363839839518693087747534749603269667670522963474102268229936144389516913283176456008703425356230145825991090214227508424587376079989046282022894941938986529214510082437762564606925973639345305054508048236283649614302393476197957428698459316015081049496272623571179485178325997854017575415743143301120894695755749613277807243230991047128100747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290317790347685440098483402208006515045705102883123278605786714203246665299781679605647314446090614929652272328360214713204132282330919225992515900654360157544762675820452682445742404563990242839685316953113182048678780512330146384530790169421633715798882508137218295395561360753384635777963932080259272461144325759362864283368377842461166047505611439194051196440959364726910666400761582713070619465232484422669971360495492099042803861005731432536082325420342361999650150704658646665410382304406673367404333043083030847207674965859821936669516350718698249627401221126752273945075267045654787523818700395126424225913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23538805160508089778117726686172368810390878741291231916952288984740166722918701709285717052715904321748134439719988822533481189017938658839294507078722945374104788057645234469279283556849939326829557048946785051101736718387802911607699272099561327710918553447579320472072597949454580527505061661389054162149859703735677613468990570103979383461387679069610025109340031213867992624327388027343194173400541527324089130814374869634957554271862541081221201501171768147646416766318335699055449217656325424128727978616017482728579951210149050288268501616648876836505777993970821580039995525742418989619567594481496665096997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289678129392115069620031346876816747326118141797327630723943390665859118641821828340916700595323089999024065067347924729586045605163458848106647635641727652172799258497079548500366462352206174749163167422327781686298074780109760412065763185317015480433742137720936265189182652404891826925226892121864424679296761740075167962131263353548728741253880023027030642274447968839091431990926900869778903131344995304327657662677116779285505965146406669959162930123836004667444826854349916819179768810981765089999462237146625685858176787954881192755657183913011415023475306191363199263560665438601947666466354550519577863899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25678581779735648328285363883151206093719605257194006738319829015773975638201007375003877970729105325704232664499915135394697009187350904070855905388377868390988890055819489548584401124437200809698897360481551968076163818574302178290619916365799499620800588958684111096951420152884716149866438502594224703433416464296055573385233714277913514179638483131154286445640785877145478880340872842682363004829475466008445253439359155761285238937096049244450521676380390988469917404543099918210539464104109261673287300174540430418403042319458595301448515449861540858575267472586336272680846468523137111340887131086767493491577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16259413539236895695476772781868677196727512486858922116147787863705237830079918082150755982365798180465116682088485109840788496863142558564324480095928204101841207123957692972161176951197916644262307102204400679569363400063990595165556061430642546166432728814535212880980091296209088948422210004105050754474609195021299822064930958199457400731437762001364465048393159508159447598184054265937837025364449106855498274239142600032958696989218531463510779961209548996530931249877821687915074306555997264856670820620117649399798508214593165344780946537939642233776895613910961386035532752212187016182396042208373337254999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20963568834416244657894778850072245725051607902581715335446197988706101653533849480977877631138236568665418616805677300426017016939317950656302344118547059556876347827229663972485901241990746598577805651683643745101164159906440410391073843154395054151525397835437083062945769846852925245516337102380924789324278023846638534911660450752560588029959417461483684186250134757197552477333533152852793526468304207108918365846468595330458886143258713833123314228909467689139103340866185203218735367469288217019650285700403095463524941149536798004487159305046002217434653933913910684816970783019929192662723148154525731131883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29312638882665930145867847137992868339405573880003332990740060769384939732500793963353886594156891272646960681864808895790221514634890449685791240463403445374350232112010258865391121236721942928146553948894977393070636805461206488309237686329157894454411086515268211633836097190792917742672124358179156015981022846149684970792497509956534496231178184741551738256202453609685405127078738045515188486388938905397016660787963996096064300720976070972717421694333007444082766215270574859727549336643007850915690245132387450175796241763863428547372929076011944311488373753518255112033009609647229941117023899320832606311683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271645410452396438561605148525338221623208269671956729372144341235650533764310609105768192543437255115102824891689397069953184429163830810503035444483093193137801676579665982588596157431324545123674838653292357184779604345825983148261755735918070653615588893318175269483376431445061844881372758014817343830350179757804963608415765526993256848861647192239028161269678306917001127896511707374278885582719802783406875002874567043471095841339475750607919277217290259276589342816058630569906438142772612458511970574374901955419204762636293688190118210841593593481110362188254898575064040629009024069388426873417474525673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357734908074388528217549651392652112142097313326871298897702368567204545799219477854105959280849628892624516022276300936421684830302318300119071888555186840036040458871576324450268509231894268611370964197161945715217198986457202616315097078136345190959335928544419700159102968688042489162124685483792574580559892706461086250121937579113170710029538756321096286808653434503256758951822982685219000024638406431119923030224355256742079227847396884027634453044054930317067133985758455804005759167106505621662341395437631343020651727722429497736743992485550914866500092099176889625703546018451759457999363589072714480719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24895130272471675838481921293585288269100936143636292922100371898127564055314442542340386915006091682317854998408613463853862784090685991476722560939814882029618482630598174974744384937376109040528567852043630154312064432451932153453092828559372370545155690162489500748986308980681321162452084521024078674647893459748937187438281446229014617113383003743475860525132037052217726868545970813268899729817181683784178490740973081528431933659210112620474692798674314402149835166703200474398367751191969098051393021741840445376833968685350210521616322353720202659801726663865042355720655681204792190678510994824468808351919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21503549144100425637475436802447536011347589770902544346351790799684293577072568899427832242486578874739602583397571437562284359185348163442725442792615124654467639599097978355578228442037503507277126921132558785009504278652701922423159932983189360662685722278832450610602393216116977465809170446856497699671666193123181184465422656427208990253232132881552603502593979433891474021610733604363645922548491180856137015820588683635908105437368924075207362492684447581421323686874393083204555209658404695997600910423661815650976051906396945493340618670654090723393743313666186898811482447306155161659200832338364485911241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19795042223684209878741670412813450570339537354395924790049683090167503797794441598843833324536966681828329485060452484393279742670254984802946542967137444151312172047248911398515608007558572682841808824271075346072665758025361005199886013132190787601126812510112507090679147936280576843539653123112049337291533345758809273043628765390246932356612835680782432238820063767295137975681059984245355663976621188879503105570179618836231989243035335929192046291496163376743899484923912045079391665007700058604653158772956395961082873108004686895805135221543108504428798688643017350759257266663306337999907325698310014111139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19229935418218012932961271212218322779402732252266323961417572327223756219597512133543115715765917888898025267652411572518098997072592264667882496079134041746772175665911894790876744384335174706159990610596143725092903934529421193856133042349928136260798420955760658980984413798419325764311449094755031972581256671667080622913311817300556754820970877085818714009213412941709194808854635675548855931406275030516686836311590510365252470017434387752116510148348349556052298596021309373201901616251730475471488715165811109436814962084667969295460394441706739915088265350511033275985892664156127514525478105171838675587297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272180656549943168741522352183168456955948629346508784939385236294075428507628510520257536017569013804588602923375366939567826911521597998373879153703334690162753549250658478975670223122890147826174863329279062098521720484933445177094975162751944522047808760556692672196457498270945140893146312649741983437868516053047750613596313403194990304522736559928566727064099987246274225060268458515975965299878338019284162559068966234719585031625792073727982377585944383034650160140081300902715653648467370743516187828909332603163672670145304900259930810264263800703266127304991353581524700535066141946882241756324888942269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21226702844904327526328655912850907686091789596983738841050159207861896265903156851097954815246036077986571312232476008318516314267318515443157711973911949786651087886383318365605373940680452058633446875734904844249320952706252973044728211193260822279817311840514633290589963135576913334541078477405394514971874199697315680429347351231054187357800271224673818172498300648355330181323414806951645481778334803280147764350644559831303219037506144902890440653137120739770303861535686557547799073356201956179311248503610802671989764802016379556711187460408537226518381241476899783676260941322880116405203129578256823705361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283048618429665511416101849349278794501942304788198962634274575567003266549504126017411427477228505916724454582000013872033089891130460934569611368148051903302699574025329857959517559995676381205387734728925532208431248176912399068980495733805955792411676367124623259658831943062741298142223539929754616398777749890002480249295668637528917377177105631855945296368498411876862447656049675377426039182701745233728660000358092902378545473836001028444557768478752734488211578878321399113539387177609923554129028933574300910516086881651688358945536168099775985750454111116960293555089683393936867637621520697272030238371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "16440156557587317476717263997183153328837968050865361747681056892556590071438020214220280395621675879195672803441334550863299998258759735530697436292883384201725741744280842792800145999519801490383090811629310643260974715006196306895029910184238427524381716947537242059590058907633741954712179979788030001418317405148498619516932833722483545890123983230719200662895547227969462329356020330239041524380655094282123040879671741342324579168814851737458544258217011071014088637394018230780294624808415894830925100435058364878004523114690756312174449217959575176505989860290288162850684454648217204117520645057676346490543", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16813709718243065037391677664987329167701792281283420879195350301551618222039868027397460225722231892323415936304992441697588664913445650114953115558417443142196241519490529560400883350230190341952062253523641503972566542570102396273146500064310652559425578866216072547034369838242475419087244355355554244144319128821757597595454338802089888621348155006582875130237460893173984682839286441310207235760594772597104412400122384816390272791604615987866053380546024923398119535523457242168686255386558633888162128952802434473544384369758029232384524931731071697424646511234725659875419230503351233488820009717520925776619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27523507849722329110614615827775869435806764931099557294822435139310024774444666931074050511435399393466427532648167627103536430158948342570032467529763178830465968362448793089505976523674506494182737800856042988190087057667063214550291521601809050493513435993171191324799170245506085216691606580861328807852524631798952145669885543243982338049416654912521849216753022534656869044524992072126523515577153725111271963379762546699848763244736829208610578752946926190135320629778314848032139688012721434655857029219628350013049735604219799384645571293802227914404059973952723689599065842039669047583076555118287115186069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18985437817173652050304218122641701760046928745058040840250200234019334679592643084121160913568901664934889641797896209095574427890177713573940670856655632018341629614692419409592926046681761414948363000661650352593230990396178348591125295999292658027940351377615862573144809902173494610838079862786847100208149424409971197841598636906904406585219663681971540298171139333339147953827753640274147332794413522480199999254419645765611513451976804690030787634297905958449246877207692849756082243819074505558265404993827187686993575275202478867124054807343866323882472622682333556487789023150615539010747893443757936675431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17028100409807396776347368894673854048797495895544896031016132847749106261945584283136762828275999967356109997164955009410065029604174684765706906434653369274895430659664232413834660894671803080333962455867197743151823263987507540894333215765970909123564986481699255522520482555331731430758778385535088704453048800581691628516503649776507297599596760531293224602998304373573279390277363086801150885439030578950211506660600645668781867135633947926489498006258390817909593397702076014360987851038491040122834156220010431921239026215927930502952854979419436095256700851033213393629244354774709150788768591900494230364671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326832708290557279379014925423673035129399129887097601813377103344459317918756848322448527195148356979394841920098069094278866172398245004521521525422692059314315989998754110671230791177588710239394039736689762470187654163908348462360226349972316669472259045680558225801793543720006738420622593580999796435031424407436600899901633758325113327667898016703318579440181284689524307141603614907205940268726514366131316468588815750196586724559792231970079084194875991533342489663368509441676930374696658885587647607843808604723643015375845807049187454597600740956850395321251571375180361279462321330164434217904035154527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21070316217402799332140009159825999098781625547603346597039220328007197353231825134544490989743835817468560177782965819661187861005010674392317995088602146278984447827364147859720574341472155683412841214885216991058851116942802027934784007361383975895057990948329414815483552765137333265130720787944966968878887563934129883687217854860256564726531172968256742007073624123232348923970892039978230013465416760000205426538301259235102029455828542767183746707082588795848060734706303482702781839261007209176489808867293046485158794594979745517110545393787998012352371831737100737117029177382285624802891569985766517984409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16390548294427564935011158724835653569122568798452489056605497451737747368864127563869137387665258484030231383393106459658386074685865844824862497797035545349764061522089606968710989356797723850021731789214746750717813211657129694955206385745974887333582786792032765421626678781213233158633117380829137834874212268692541706372082397191172145441277295469374211222403618988524910466255510082418060919972733574661947478919443931709935272717450699933603736565528590620253635604415507752364852335844374424255055064267945507497600989715672033594541140257688818211553521393501584950385090384709662257140946569358137848547809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292597740764160934495412071816129003952550441370273681036475150733085807986355295621621683139257157940737465979724182075011802279076540839107549177374322263487486043667134289170404557042647579008455521151868628485144940094982180208454011647734777154946582818484256987937536815000695942984904505941244632203313891068596759056672418642582938666327107897497061006015784210093685922215476698888042004951264586936644607032147258621523077586952095490316264106723308811198735989778034994733505988332206050450242003276541753697293584497469075023691919178457305973210173097923690317797002620719881678126670408824408624035573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327835608414490985722601039287152701377750655444189895169991804999538785733470257665912646573771012436474516597641424249639418491711448462197450975608893408645031719213294630470722645038654928304505311959969457628535238630705336246001706186333184560845927486935762937682125455020952242704002644156099388710075666346930301099176682050799408967396527758657501739877423728389810167464297998169964772804331426331418011690840295212903139817832929717163527538011412285502151306595312760759723971067370744647179451660054747216511572470183579711608478652831888196221395135963505739952579659134896576415723060193276659886921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19604181689767552249201080554414960256397713918194626217439537368773345448180114989818974319644833791543966896767292859842100308907341884059444430578268469728032673904686828758564048190527491411034662035798989499703900706193689287834398236609234665197216590201194645550017085107051007967712996822970589304157393222973758984909912777996374637808706601996462087325947215157958996988531318854239044902220316547076522464308415548669358122793222406661819384303997078567365256280500551081232525134650637538861395657629108762304621842117440976855503307659310264412445326074478432720660362588154784928122635208144952472302339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20708893224480129113998409924279437123133258084484333087899368118345866780694044029970046838521839123444956701720108797858484078902633248994640711597668697665405291921158942715775983050295341858393147062736886033468177502596058559922269941904319442559289113176734257355880276551404306712171384395708714889367121443108080711521380495388343648559481923136361804250261016426889792010082946450067749726187165314065556291613263577817117938474728246252141160857552232834137291043213026718379957207317609984403345446052830795617970893408361972550688859918718512805384782345516858846741197093482677772716557182717391865909779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18848918202699822586650785815603419876263646603804082984259774351481190670052795278779342520235764542493861300891972642601312214992288646786082872010927783013838146393017555952438179215445366116195581961733094579006682270384263595120963460486638903741433919766792313094101464068151505109275440343300593182892220391863048208076626699437105732162126208770053633876499655911554954068016219159562736600362886075824888006504822471206596130567055848657509620254954708816424970594778078000346275098791053372784946116212176921287123546176431665175816122148771383168051347940935457197728499513297359278752921487403895695636739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22916760988255586448681670038014718193796713850657172540532567798618320873639258971783188541330353155006393017961079435675302587595910351700156851630279497760220756381080278916089311540355456827958747382234190187584046544909214385550341090334905729186988709552720504521991948699331166212324588728823186963416831961084174865735071079636957029958281231354335875863439003233253316897209252766252866172671599746934580571324482234030241101076149958820074196855005258997432890801914001568692665925503042038812540378101387454172062022888162965051759909574852245958407421967316009177525581495252847938696735627580050361383987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294379781062742427923098065218449662357912111944718762649601618760932775219918555705563707991597446317267932210703586722766066549160970511140327424287351775365914092365552783777206615694943626325530745701247906755639743673637513580540064621211560842856806337028173203443022334092634431020185337293066063188374938190782029988992955387722488263044778373715926994218051503784301535526064250688555199237893118134645633332453380847700731863682945504402216887965298676767649172933468084554182100428031965467778801946646891611299082350253365592998980507445578066362150860000276031967649124476237391542386681108652689032141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21925670367547162361942890352960200961308577410242729971040224663539283619971998038608441087246898126696884571480471763763667106607490376012318267165788105092047072822987291041183615129197079785648544889443956805120720248028466730085282336001817573770922069865449633536733188647003233102783362881306652578706540341584925814398918060482291054033919743891882848635679311503570674297190545155235577984663721320105013347438444320423213698998689107937382522869766862101453725239541083366419096937645980851526270808742087477857300257614457999682231189837626042179325956873112339835577121418728649469974036067432421813022229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24837841693312290565932344823533877833822653703991358463453592560540387903759155709973892303991078557853785274093205145915802814721194281918371352245297068194855927098397198572493404670062823232108822912857562155736195303914278863457307700508787100621602070371529392863116806371178110708861140280258326724022556775700975406948840179941850785109078809687742155874000240768509695765073580083362215377035279981041955225127768523575377855663001602853324721531341661010253303757010110271860923213261700357927359049551108495784170541816333711470744413136009067969228970711312823026204176688380646836816365584388396819571977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24795153446949504208162975802060329124257159535194889935354522981866308541052690585139613525123481934709255916331494604143726591560073559160614498924899181726280400485115410338153980204594729959604956230592636236554803870467684133624137603771691090127542452151386535887426098108708817464240585026813480868814143627040790795909434665565019124075268856489276261067496941214625940586628905905176853708212366561065618396395478772970025292273300848912242670235687904693497953324768049556570011438665934386379214941187163409010767222531037790403635053642540220586704047821965440163580181646310431914748196346460501808814847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27963204753952748551846952230714066237332343668794372907389777662407872946907745228579457592853732436321400989585738719409414131439447211321450825299957440387097361712276825474457902757912032123147430698641097891574004868781015806777340532915701778350666889893899973661232326884910766224888865148825000738616452292756274915291007971173557616083262736344372726208749514751840344764339951076735081318819263446114801780896647082567241307785550341142746869469925611209444246148121146724672631534711026464032294944045317210183919402395956171768033173290965893580048664624691359886465807504132743438384969042180033359439581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21964357280643982153640887440495251901046595731975577635097005470058493965634247057120647467089373018328066557514167026278398834551748270022950983401529614567831254790275277884514725071692964603023894538761161860514177146695904473069877856370963502579388917767676699569715171034995955537333751750160328854608097645012524753207755955133380389885471045567184819066603517593676229375580954107762860831811276324122506498766484662583891434021775833158628299652335260642800815311123930621527888639514489709803302335615114133717770191450572744623233802565258763337481220189822175232794199913089386385192880665777963427214209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21343690906861638296728619233473378946715804853403230566664783778353251471810036333511506280032757246735136563829306909678106328088964292366149826658632786423939705741897159122812801578685338395208897720134878550199433109738400239981748896563241381137146851692818519843918413272998445569079550296847909072678379244320290141136525061258159518819688459194223683289923828470469627709034993599379090508707147266953268442896249691033350940643679721068112029259210526210675467223729519545089671887876603886218163853382678702518075694866397799259955268648199964562754525617295311232464422072925603006812424537395594629410817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23859416835181415979427285975524927675020061333439947328224295138183387349450218777594384430687580834851475028348517050089958814615536786921924331971766778416867169199700831404591273269488623066680332208366644862015270646302792389935171755073936587909464792241227061364872537751617209451171400819760597240859614514477694393087042309558737854022354441704006536393304933331443847757427142274763037493175412268338645123450090005544411018126557296636960956237839791850138145593129415196410233039234862228779301036654291988882359629402523558216384665790666891769018680992898506980160189756653567839288626852059339797282361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314451472736567105444634423737755199930252762364996589431136391729251636844938066144058145253127517723979455798057485560865264335832213219979202682087361289462276665094489215871597509223164839403720871282243409061935870749565959412639310394143468686493164509259241273433978855731303275803718207877724093879111298471537750379100264506959002833680837304925191748837545156345086125334327926012421241512188717386340265924728851746547791939073264138573547376887734243840299384658613471979730558558653103838461205345743103121605265354861614315582203987669879475167113849891165520232041571780559532962888050664167549615371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22466402393185090138621665734565597937912649159532321243982037902639661599057705311447857029665646669849935701399595007254973306296457784815213007541887235100535186719940717784060695218550283170564751527661291528077584380643890959468299996909384551840711941142137604698303768245664574749065833834245997978732942829571932220987096138960790166020922191653895512252630919945472287826497395591977380039628359166131620779185268037446838631319337426415538266863653450033097499086043213838388794357772630520112611858325697678323574059455611310050017600620013075760171704261726251888736187936708011018274939684096511460065763", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16662983963560107909983265192864686668067083848314257101391598341345540087463863295926740259114621845447348329080558893388142461646376101262068109562707378393271272835674485644940671136048455879191831973694457638318415585689258759529123801550731687482513181221821371689655145214671085861155072837187905100555957826505616484440495658970217786121296098558035106556648202589596704533075271687295315053755125956159362384266006675006623059646752464948660303445033257801749343694341738275431879998137149579532093175341140129674856746355054841218505336124040786698033402923063016893647096270758219893310148961318253585611941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26511117908638699267271031327894010592855129829761224537529283771883005737676540324615398093791644867152751352399377148758022056570143978108594397094612819727947698317895785022555884798246223300096575386150765471952566333745403823845259805225418919865680982742229678617834603355474291881383476206558286197892091765317108313236144617959552782143876306282310598803314391402191893967207146686218298652052191598581346614834612936546961434712034308185409311938095457707535861302410077409469159306797152131667469586297637567130185747151119930732620799858822834166669034314958432159379855621261229418537964501172691339837223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27561696656267758928126727694883310412947648417523572932145102663130039878645434024771606143396970784261996142282912456010822239975119255045669620696926499767726109070462259638187914975519120845626205276756338337726658957796424002610345305482055470097611319368274916984324507996840583209846716189374077109340794008274852842669518314988836091297103043688619114323587167745034762560418610519465378619513614162883299956903745473769502892066961512211724776835477336514381979644718752341510582961646405363805143463882409164008963928304796251704364815260668670329259721795086140731492447348705960204401815757538217421117089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16678407968388678680574920989200361096811791542171978445803613430408475483468970969697760788502616787420273431275003128814592866381065499013863026373008782386097312594636809462878236872886248027670193177016208933778017186048920897326813331805740423615950747221021336293529024256929568966701497930986332772041584048164683374115528660586099177954091610297147833709144775623222440561535672177164575221953077049138916114466136142158471928362336995827753467290055433057589653829294289754172322397291314369808853680633069664185861334077577651721812295383316387896815761781663677322653479597798215245752284952350084853607107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310626399034250754457216517151873042098760520628982981458516257163185803223629569996518987780906859754548601539468534228881444369278247155940823174574131420877983846124640951920240714280647305999116185671116481244971396326722620770148031980676622214908209372017223762807149429221443416134426570849146597363248200866680958794380817349503510752544320881891151401545923037255177303816745749070274585984692124668184502812333790102690233793946333738758519920950349168971180268559543352068599416845602862335872582632582298628654668159798124500967482960088635586541223347043630287205219279981531421300811733561179484582693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16918545889845246607299642546715521276390050248597679516827829102951176631709689885477715524471748731966126775792897335932504078164964626333182195054650799755355871191734047114548055984925074124447227478749660725162031807051342660057751632945894712798740797276783917662827491915712088053466155314258590802389002806777343221246275906489150493073445550511634908426660772264811436768790220578304479439306967120320670910544421863685929149840938692951237851202391170703365576193562667894934230601300384434372422310814943304040329769130698383482715699461028268490731402460678008088187130209831067395321904579370898258224043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284867558335276575612537525813286662149719396469888772783556309357626981659654612559363611926795872673912006820755918790435432310137110176948480327402016816112355917821092502968872445760244905421217480860170549805974851382318389662185569572078688579193926835873757688696765910079448327508701179022856301327314423456060227853606924144571472056281377741110210794925995876908377201837521613391560795366210805808023001984964541789284457982304059328524343214192253181199690264145960836192213731771710103632178968389192196372252692638532550503269996393369348861922681497152315067562041025520010818277456811631918848062353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17375368670080759712166970664360265895237147397339037151526850441991108054939008349922043694001056141735893348498963097444433431822600336570937838866790009019104069884664287723173475964500716865314903175882788298665705781196353498245836315913241005206676451323650649904142046992398904564008409816905404629920372343289390778656938292017991019499746643065030901895433353099393624493801171732821880396949170245788865679634528679758990868364763575513669242456816623323410015483742545463007780510730346928181364416037251390074380314282584600271503364286012018121150645618227542503804741715549994166061729027041928781661311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16375783990030030309429129751809844257082007152438526096044382319407827155393554051246366883297535384169141703580387740055132980597464253353549535267886538650191868429364803690252387033837043096634105329346907875492992402772490537864285564142078462780917667146287762321074332082663345803124785829509829018585601142215981434144159330614797859443859311627082903820213937176682260865664499939764307016140888535144018593873795365869706232681589288128539305361239433363665853326488212313286005416501054577473502115261313818066129989780246106259689904648936714568136696010373830097227166250666907914165122986190929272876657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21196154540711616735591305874926218293871725162857597756225918543879734313692161923509909105434413631445189075389289910804940620576872082009257275756123988440383763665039877807191985646311876713528510352091589641853853287091712010835952736762667218931329735471524373919613279602108812828724169305238290991066197457845920847609348356867913613913880708346567679355197464971611020272038826684689831823212632891989055222258586736913445768699233728084634892716882109061113676626121831652610061567463868145449098476117602981967546387139928070869278050106247958846627725864496067111156477484778179232043880077071186008832829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "20136820956279772319876329854014940360350663500516426539750144643526559493601720747041957154488347991602739808603658119452032643445604596875422574926901879447316477285719067987901451880824663805676637800703812979418576623535376006065837642732328838102367263996571122561059954273896984242300111847371549668478247513093125637385883673277465324546021486058402280049032432351996038706629301975084303100940004803349518107811296044614224018901488621323916228840432772332443287116773816283045622429118510756680494915825368420692029172287977035970782496672504487236774045991177207430684444858915463949008529994602705727814809", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271930714566198397848960367745835643302091998193091536760036521979573410460061598054557878311748601804867711404173359717018074872042398648462746251767922436463753482906173844409425602486420196396532946435358157389977092091101060436083246429869980794419847677914424351556758986069589764724785981727826881208316049129731923524997766715387443365333345003685409663521588203265406076491617085610914842534355916317113001499112267551969405952707218217690561462210124754733627848216538179860800874226581522644996637743835103219483295349479298322528579134020015678611026916285621210110148874818359908070832441559255932444043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16630996953171187527188453004999408310894898887703015263044464123786363603581846401056250932945816836301765496509636417551181022125800178354128237736164803099228090738934585280449625680421519367837028333007964888275833179863766068063514889918512202702876699896511198179569003519082447736795948109001348140704885136527740203681411246633046363271327674242077999128205676153070054067155300001820571410073749506135128932127320290945957855000547806285579072131672612787211678100622243388304157255780590224000803621576632751675644089379710300841684222403256450843271156799481139775520994287315258169955301943789138267415231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17235549616768056812282668406749970899656445979218521402829711886392357923191449567356390201936871791665435687172749632367197105467863743969596180649232119078533875257086789543245887022126757352044093793124002142266347190560323999152966535734329942503794200689591934678216762578927727234235927932612067800895168992595623466676766389235814995584561919538069538043945724707281982461422403148695537370099246745982458389390521206361535906051243808128565151626363002652218411511614748529378279912206888957154077431917222453928155848385579486544226569093031997716925843269967753061404553833459288988271837126743000759637571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22865886379493805762765435681133754110904963131467718003659076238632922421979529337679126372089486478202313995401309523746252377118160386145831498380307910433590058643714424000090679981724478659396414090827892051290229055393797583122369767159614784247729085226537386928553992900160530084149576430812662173691966962086895268151645921350895529511550688178889168414429307481886085314020955743990736860009096158383289199156135978413144040444811560918910874490444720963645011189647144684819804137339525592488387347720750904514096418278040968029741162251086629582163491412315696073120329338455054566015632987050475308237573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19387457874109008170074158463357357355731331244743184785618686863095505391765488057166051194779959342375016074201336607052624482741077736271757493048929609411661128318501095983107306807226044673806520242862251507044121884081805106190689607837007709027958585856588929305151778657730209506402958178612442370053854725918398997764931541820311464091721435505036293700101307766748793045990145863811986803655319161809692919394786431075974801377760863207187740482571870807123496677498171435048031941784400832233396904463284793837817598680687854338573919266599209848699152670266953382349867405766955739178724194416805350019503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18016965823686764821534136056579217094735703971158822740979472883291166371768826311360317439347565122668774325403667990125941486959087733880579855704100546288869046244249213351459466127199690970129534543134215817773367920549196449954700385365993694989849253193607348732708594963770490698064962038572909992645520320402701612770886663091810358170508561889328846392084875745402713677267626783292652787691222558084201760978749289647816495079412747042115229829713205748926689279536367406609191672916858414111787423051620682650614764923258006121484836172276943848408795742095847823557837126457092434358692170501464657226057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267354255843126077535248556809876896409145270789015624771883150787720208856572794434972002814125982317942255728008833729758475405029322407669387215476988316042279088081741940370926171003596346004423877134163554509137683923244672625432231770307467009326043523420036376666227699998783209493031349231434386181212559181640880370567117657935825480114043147675621894189358159720744677273213041614603382694724539164578335998115470551911738270006446013325798174833702355996776859500894340431690772117942322618823549678891534203512681590467963601007212828601470144708901126086726344766613545945628318382353699976116939919447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20176554005524567192626283555611774606975520728515246985059859843043231018101848094853972972990806027827561382023757942023163622955539420563832311618398718666121487517282740163267109888907830443704891618910290117238908453210335889302942243943951588193744736913543945288195622620149099235316638163446533095212185572208372029354936769301891716035936121131794260099934013823030581560535239320352561054969872717533087442671103147159225255032625095323786126802132031890136028828141980186492535350057857351258045995345515701437705175653066732904038793267137026839539785906495880731329782019789747206863755783525882685189351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16558267652282079125575412751021375472248362449640973989616579480689612789941594577740138751523284004049936354610161078788990231925002291662381373011293599918177985705519133287847825707100280730658762160883951686793441443088069903664072309396416285980171658950879489263433306726697747021349707954754386506990457499150321655995871051872718456827345201836461477397361920543299043206376124935747184722578918922430677655730107925287815288252977629685312016304947161445654542635391414700387891396607632602786749873718645647667811040333767237523095920510908024349507367389352386578158284175768625860631611254175280292672313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22331274409516215236633590058298457794560609283355200076359218928912745429465825601498323064543416416445709120868358632554190801962735179572267249985217530484507726568209362514867138370589579979627617874984545300098888135656520109729474063460372004123957538203014661646458522799377042628039473083580214622541978623037465978150233757296043081487988699490086366219475606147244477534855248564947149574364869667944371964039480432889571832488293585668569072242903372863445399578366878045091888213477738110301093107036474408920603499094695470949703591688361193559111204598669086328247292757259408609635407556584419142374011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19304589494919292105231926535307419099529511093993403035740154355566102964749862027602108429184967350873238619455293187819016434695875687258209862885614266463128827859059383088522789116367268196233453445004667862705311727276551120477854616501594516376774470834345663351916710850778474148808569609520449855886766898695361555452647147921499528651408315095301381973407382264022950725786398624734822571547947011952837091304771478813434324359036739422376646923844751112518499929067034440041448207860331052822090742370115174723856251747131491267995967150630979629128816175564597235423561343726864462236798278266507608806803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266343634316778828250755199164183474854577642679777114530337217388157479006953516011392402488079271660476080796419640018595167405476056047239938987916755276784306004968976051793643236606983865301508108313756837702294870483696068485471115254376907143112394335687447468710897879900335220744710656435960363046416677152499968644286983837319134038555155368630043185829518904289786352443015596834053394083922972405680883784455121858632613842310762195385416703355131439458114934015710645297687959643337670268264027831556213131597508558805727108581911635950184828157367537468712965807045708152097920240743392853973014839879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16354784354219660867321221221927912661306311641655356954723454940736931032297165242892125891110945042285769346307521182313953132735610638759450028803803301612624142553118951788881559954164620906025395107401522660218080822966428396460085244045881026529513075761526397937348144954787701632164877438140394941382046822645155649151470514286187581243670675255828938377569831611335633802155173156284917326639543662993357364800056383233516756433249576487595316713614245015428236964098726820909641282221016072333216400303638208123172729296219470118730500657384472855311315177415231272551423404984746139846971817658667796850759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25122759496453479185441355807385872526532233452310890621137070344292428412043121407705350690388594329895839188046390090009302215608466201541354023450206050786727449384466465138239615575353448827102660262763495266824292500106841781708918622200481767276451516796676388681461183186829334515802689125725559940449515625866143197818414811377789447859826155012250920655998202521957070494774999471476985716440910657102115680117685573005696621651530015236985089522613460831447449466456425935502967053104084872644776379680906958333606517061292002169964803316441690257279710519681010564384617741613734122392657889789619792910133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22501781272055821708073652850231705315337259847461810349895443100612062874983059845402873882104218070981065782904049827442577527087057296204680478624175354776087169362184858521169319017644683886743362899069567444554778884774560717186460560942298827997398129737840908685363339159062672927658303842685324247526583273657019559850693085016046690678146384748206887996612082620963649056802497613124003081200651210743860968696737121655819760913875002399907322797227406997309561311062252872795920995552310006018887126406115077373065593110324699818226615652962023813291718602650627079348454783397957691638991244963130698286731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18241303071729551592218039142300515446558487723648088046077654398986320050600441277672639329606244088716036169602624991988524194066762677267418376148307566816197277700014631417880349788224525720452446509472386784487967299658276792535590091343034593733113478097720248962340621552959386534078565382982821529306799736559586146416876479362942646875436539907983933615627294755199788261858477358155691772154896893033316684257033249400603234764318717848738282339602177303687097303487730559739561073873706070984426404786025222019023620659711751701401990410151042936025127683369109151563322119344705268811949062379771326334459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350520784517081759167403276943999250099417745207213881772261900737783777955194321558721449124348279609921502385351222848840656195947979509849817871518846573515139272132878836988964670256137227397619453358233694846993221492834867172201912160754974132329101561208959783550232009525764556128486147328909752004009075566862453781490268928081451745453798547845266407862636057015039342366000964782588183622027116064758276141342992140858035284015176213710161293565560762748114519826218005527530018205942691988817082336113685670464063817575877828092437850082165205510214934318023479837747760830921183933994092203020823305961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16248793722578652427767173396523205578704191289882997708182404259958120492896580178289145876275754320434584721612233845347512693306682327283561129818496537960415414692585276107936349543707805935398050760786571285417553167778647589702124578313899659923484651226909661892536749102387969936490071316849614453590355683602324437676865953026992425340397566761181951092198212078633120610770651512119418507578512716443573412992752554085321823416072060019908621267352633051726799202670183862832081254896468037344075743677922049762135803066050609672076174031540605968828584030847176856904942132756235017507513554032361895889173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24124747357521012547993005904173329149974205209439652135287664484911410650485061563305995857680085260003173454083254229873597375934557771202315923479643691009313961712947214175705464797510004035962200143623096383273815398124299874979858261226089072051646068677046672281214469222821659893374699786128750315907866428450536306318818853458561029014248782818848713497438951924229104635147016634075986821177027408421655786892881731116157639984437821031220729207430600809042793317859284857315391135843074207799120732749742936245865714120646883757053394018747160313391117493197415918601821674298913975507333796862240172097481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24981403076713080697491079897850891040611454672554767415217217394207656094749103583949656248484025480351276540133414516151028513200485796823212958767688485200449893171467386472031977309826326390945538166211109456164878483899971462240782901162388560977296298505068002923548423229285106321284728485015945949879428891396935191916418263179745667160765800559117915672095205675310231716808699528303985939460689645466707321250463682915844491238185780013995295085026348051580151449609027965281865739257788086669828935807997652804455620207913251351821470440714512080056664682119653599342760828789665738612345226473652143443333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17108023351571295342539283873404894767223109645122817561884636310439939237148086478321503059346919680751799860022793391648386323077851494958498896656233468235981904514010813657564206764891428349375164245776830601411654494753108376914841814375296158958449945698022322684203472819850221747704862165951191171634616329331647610423119832915385056089853190212219635448639384646693108484538174719127023316296931995956262452630971441175122475728064434312281440608808717507074479674047060536254713757276034052073164343107884303206895879541758877711517169660895914275873982559817977495048310688199168678155661026147549990529861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16236121913112452239273731987590382996446012905325290553318676137851301515011334183184574062407939045651932175682138007281904287787138001701272947686108617766125944813513198508950779176778208119793113782251855804835708492313353383719993352081288545569448177181119292823750707695345540388990837199176737201141673930235346760945593087567335006983486334234008020674144558780333016422334091567097875818209452515174072114775529416585138188603770856117988788116298565501713406597201602915955239034264417380145823361725643185490617172618420677739760878852466794568124087765938432623871529477862415636183760757345923885444801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18767161052891989571825385456494673589583127939637985739077751204059489783107224946769977818739372549684251409755344464355784296192299698260460283926075749126604695550558645957018340094709819762208024980435194348742833757846157606083406556000989976327075284789437269619150231865990217840766480978649679213438187240519825989857572597007044297842830188173714884092081972064657415115802939420226408636256385083605918739110992350192880797358037213716871906801823966632082144744625135774434575101976332110440511167796371838024059327657683800306369541954243636815657186210630970441995908171987623202340728697212776725628183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21041106734149161832803118007222828743796658210699685765974818379617309520878836763623277267471217107549272894353090645579023636229862096820166791302342707541972256316048260490648385673221248924387979004928226784046813725821987414089912264570823448163708303792380523601355784701757202480676700423328990595781510357303814403070678420686765526138598861474706377509025095247310477741758794673723279299798646502117190068233630757044517329415216023762900446278133608318643435876548389498685815109623535726043187900183842818097164376727855458068710266559735568287519127991405432980091536786229659580019189659288247007029499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16239907622799461565232545795887924373920698378503216882631810018876221337572379905640949189471621622989083850535192794308396755912699814702930317108722101094707477963797947695750648668912558878822942633940021624195396551787395802681272643635463160099595261635541345958891364535292161180580035469914338581618942445303058320505323133000458716516846517622805959810877222357660337570981466661182025522714231724429995702892509822445023068013348180289563663030840203583471483848024215194631457586001336293502886460185124506168184813141045438695499467725723696550372023195726903957128608328464812551472598585293119097626787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253124924408853999898893900052066820523439300568208793039026495792445410073532414756589222909954609549299473107958507133433345384451570030971964365108378729573665049486324633032014236855049626071595956704769959510918061359662283245192034365661703905348759800213277207719579330419411038270247376873902576513213506208725169913458185073466990699682495819313222544462836953295944214567176717203281355938132116388307313996617643070092869183640086947006459255344010896665554059590462522123811885145859934652209041039621291215774989711153679245000620391648315902457930080893738927190836846181565089445745387508868991894031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322515540226023786562077090542227505864129496075147411126201016154758890444267225261483714683797521990177823209373788703119267853664133158733810568218700197987189160476188159321384076616064337492445630921785414887702200639342945904845704672193408142514644990820324635535923372419686233968794514338535493651142396358923799272265009719232637848005492005234001626459485439493141130040575971375706098846362266751722698649620917023512156455730345082135637549798135365423318440815090700700223642589626928017892369160199767404583020762382481311613679671085697889765944304704058789385699232775918389227920585067021778569673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28093685206325532901355489648534565979036138063244920825805851391424736463989882832659511567833528219430385957762442712443276276915951356755033560876257938830161512385856321435018393557741181300346025003764974725174828712851744023654766804432891290389042686925209262582626236561311905733994912593658925276863091472099907699992689618442124573151049978905407078253806414768379947821262622105043338668445495135180863878045268784559817931505721526594583900800563673798706564192232552544038770800957048683713117261337315680502805852279005168874089639762703327172313366956147899235744726562409648332822379751318609480943171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20447389693370892097396020818428567475844558458841647196714097740036798370831621125306032195016650027261381684328129213475770655150958452936018680294379063380067733311335143659636979505843301793661004690455113520247250685945115417227103376244361343745762246077313912341209482652133604642315720653164752176120707234018962814788300444177354002265997072513471196212453399083737432851538157564551494434137593669469363892058012797520737438517776186524087603471812142069071745240801549772613338492271509421411427435784159221833299028079694701174146272344611238514929117407529563066125183248780631775744933410432133168764769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16180724060834434358888906107495200156243582759629668895273953919190030115801424363918276692870877599254640714652420456679597750759418795332478541088615895136627604605594184617829273268479822015080167782346471538459529671317965269078419382623753624058226249282713967850957995844843018406412068741480193473679598893063243736007244218810592955696505643248313398872387832129462300930541426246980231198892547767468909905006653205345046218065641910693506618350758310363415483875378947197403190284314476909668619978568309579096827308656992910785099714986182613917188705579296497898855980492917288555131498458864726618984031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25772772570488310814855647954452411462435446610385435748321809296118915368054820634212005376355815098749491792316609277681060562480973862659927419363299546075228938731837433478286459073528314360746736948974846295332632092109124970850035759654932876400393875995389235470408566262381895662469302260691949543186468004185447586026955982508842337172476286415997374577950166874712612177607947164160317273993765507055394079581262893978890918598678551753553254997565831438264753310725682658402087828905928737222359400188736838749645117413229455562744339952371329146336771280239927108840771976416130328290831125754548015049221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20159594148298242361879459362421800589012848997879879638788907235862692658041462469066351163539980405005607350676659182697779305458041965880884662760120134603750368931162950669657145187563156913214204321735470661371600550286748303052891840809776766404214957077889976475900121121798000463444894883580156224781476860409119183347852200193324348580441380689613160501980299760752550106475544719731443650944911669473149429592390436734802316139714734508113447399513538870308763918429513381299378909477678632141515258482035961761283683105237662690149718335902789241763038420695893648113776143904017980847386152708332946748301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16552492772753706114526989975884985030761251365436802731051743319599401238880991909621701942852406258203329384938440399675446716081513511214886625201728260043509161029838915200863310119435366513769813009027458037627313591768740581643961614694591787741881118204211870189305557890489676552379071874828963374682078853859232996684037195256879515479311755791489047452499818616778641591860368786497012698849405263301466979268492165841761055654519519079177911560535743414517492798827650530574888772699346117109315604203824671524612324925892908166671623123230763111703179676815676254715053308171410028696025065983057329480813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16243453309261875720185468004733133562530739124564089842547310749670093012142355628070823127251118854459573474647461346705956013526035791355336498519718492592713509203771004218092179025315527635829462084548890852580757499183029607104783802495445252396462701008633274738953894062722558959457102949114841615972287517634022093048791390369013379666404213812298033474430954379436353473660985818390593407215980982921948842742022492789724885397808724808777364990072634627207611073286072810930640675291933831512888324613170356483266368739954089705157222781191057464722765105433991653495481522469300145394814142232659002235881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25927846238386127084044683679817472103346389359144301265524514069449369995549218253231247571242106343663118916941801718022293831387486641800874394614397588607027007037190006073100390212442829136278379205190293521691755295323314414418871954664440679659997953531999145012348937738090390354843510507648673544293847412065318922156337193367213708858142630206208810889361920889055697148209954843021508660719287967319788858045376515261303361176994495679644434708328231436023382200174275377233336605163844984454262657391198848488760103102743825469497137619470851605288464593808691169409073780407037844128972026657936789372103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21510074835568487512196921379166026563495441402161094624903442573989089667777756214596476203207991158473209432436309987331193281365957558177249664883383069096675516835340862090911030848668092251778355491457816784284558413762133704513816526271939585182347870642792729361830181744624882225743732001584915108769131331406573819432020774309536957085753087207255251132432003351553263543403760800656788046562336410279911892300213825142614229007129611386689882002283489470643216037017734816404244037066195254062821992165217923151201646423036082390294989270696630058374283512981166207955225361752797272413588572730728989567963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355216099301293553595985492321746418094514515848045698918916965539405627020798201981399215040829773944878609272859204176749486477690004218298082920063454557873389781178387106180922894803027492778543144352009350334245145178074027190382248081969781051438945187403661695769241165880865280237385636435333880430579669386595630998141984324891920929589248087673574656745135444871365924531154469725582587812814663496717071195181806045040983344187356960272704132406926983068821316361929095669234180676225747906577418117772252612842284939954959531375662407841368453638356217317377843551580019953835561959274339483337277583893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20644523101848086730672815791880447895720110878847068604405854517858994910201908269860249965309440588121340119005111648322538276088427860414386198001593527400124086766713637103645640307603370881719327853125184027025619865987953169139158854537382661604916888254578108255870506148983658265091850202300186267755279828781050147393862091591046771816269410185251461936894024804026091553396080763891270388862633361362681525245821722295688704699352487059301838039668405782763954449893472729728218926794858916417312740922823613641663126349055882024545324162581508947637825532788689927996022806418557528753286958692038163917187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247363880559069396219099324970839406703126957046528246874909413835154320284612857130351810860638958379678395437577447366794928225581133462736052454161362445175820886085830015283130019700887660686888995864315913141449323314036912914373210786946811626590810574980286736133608307494064736628840764636431931107312498557371261516335513280028721975765882754905619288164645559782259102835437717965089040332767543489166962618425098038875261026521559911514103389910035630107482250037762011324416820418097369524777700562259025402342412710264305449035656965412679971320876487487662936306210134345449334245459278223212354081311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21484816590059665696009863280530031706503058576663523269687441320876121311508055150641348990965438158198730620397935716327637957442120446376292785183836586369235949614808271020903415538691290697875978746964647061107864380521808917330612464824417726075917174654620509535061278568705882443067590933881916840541343307358961098856339882836878269841473008759528584228459797462656421310772166602171314042005067923398720843162315532567716333765502682895954703820326332193613102286012725931736677357573285506999466474836559181464118013979379485679576938704057208233013380511136393723347326100486653334094833709919401494296079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21208502215654247244032957200028564117428062708096591045234527875844823713276890733492995801064133244737292835960186748933280532510289741064793863142633974938480303246033830824667719078306746445586108168750807131831404192654375519304075023796967633744032528072123220841034884381963015344003774203199641100587704918808210489885634726617397806749795227728045498314576250663443273342030194523943751118718078193307386103113128283415446353576130464685606919244655469990816637705802123194882410498517897717908862893715355602487141230126867341646818038487514225331272780672075253586820551999634411778203470047599715469674539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358689827332026759298247185869741625573312647563216421568732014431355997126048275068404433883314429849681397750701797191458237175986079921818892797041054558724135327382819476076648473660242753534004824305787412967174445349415013989334651274057814938287710452570480950262928966785622754288028513278737633225136731423877808430777034199413986735307735283752485492052454786912458173158150718948266336172175848668049529093909832934437999716668449344228279539990998744311907408352930713565584202355956217532837014300275519183752882986778058937916962655525664292192463863996085255588896491584986231188382647673244766754723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18520484356487589910664359115103716606233941516559027599110164579729302202975630499176525897292313024911823807603206617195244975718619276867014722758483316888896840622765765693138640328077209694933890975757374351115625721783106944131373068413560217696876768833333543066676653782440854763056824983432753631222920686904267476818394506076273624875682967695888320880677823599815723307746754212396134711842825446341234695779901904407392918032281202584950206228998875857079458378370473731624132429302245699246648565113327252409003224778458231028708723612263330993691927608888030226934797968860605237413241630474899600871619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16421854627733755863875937950683906184881032671158042094298628771170167429657817973566088480221136926875233011325801744606717257786060594212551792205001147833641205718731726688144183193215505285721387418744832366182056617220743641772607116073868946033548118057407424710782866797463840824401305830862371437465912210487212560404552474326095745800627804419521998156461659441374322398667986703579541849797385617857659959767278066198935906047178205305070391942928854628606242249955001000573017632211138782865242842500146450843041234690976224286206306870546374899824245998034796865825551441273130865465303829180235173475993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276211909897704126213999368312615215808731583662319682361846287391632210912441153490672074493305380442197607175952078269650598400121100433950890178746778833347761116367958782606531130055547526008518558126610198867709519091976359376200430640533414691695559444929157014189740329849752901118997681819443927521318964295558905809706536580566208652681543246078920297744591864372610444738529975089669083600766714840511078458953245941128376756999754875537667183310204717879798555367279134768358108845098436783036678643331779924503877809183962764026727426588578262082062994646743504493248138471598503145055095556442070721827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16914742411512692517682140739655778579259814406267709170208274055961712695420099310576990482153185069642063387722656387473560187913453483479101396611516015889989049968473722958232664250303164777902976827804948184403153964004548866624950273878427898080205633081128894908904750331102242736897932753521007075152285146272190364991616553716910181044791118274205175754282518763166333736947591932105384285600113630238405595273573714760204123852935162612725327017773332740740919973812360160104644054537861169497631998326769324138009008005921949340506031654834918363157158494230044313030777407186693203380105863897641620178809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25833528082000630906239619379263862153016914957235455295695647299595767543804091086217339612581178494251541753003972523457097665343723067555308205705655126706667569575100899410060934594536570514797430055532241974841322071956286841712971727674236740054725981402400781856771004237093072306245811830188177309249473824127692444442302874988009670934777192974612992808001801499479305327085967415259031510828262287481052037177116483218688168146260499906596293879053491475166135248446779865166005255271218765161018925176388880531481966858908396504454663255411437858110243610601524014064222849056925103109802446028436569029141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19723633631872907651002003848752485324904275633067847195232580008770903696601012684532814466848846722146994774882592946224191323516551259037304135849500698668984358448312331463739202056328960635978315516686286848533957184899652727606688336274656208758335668053902464287895145732966015785551331484652025003889365147262308854132689720687381375201929726194793880749874162466606489800969187288437674104010330831652860370938069657654700013954610218548035014489087417546926301855296415474426196973848503895066952965381962147635696126165284407834761841030160283160011662770187450995800281932085010236321952677203181005500153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21154343503667783486099892009048902223687114436330604684858906532082385372955502107522129267638853008185288088095728589021405905847891974947176117133237792473873237945053184149518490074727129027057472403337036022856598893509633274396252198922696156666730185078929415597133134105153297249481731682889654178836172664103340667949176265140935647945077893303761191633969372476006860052550324668515506100151184378994950505810062161660921071278366435696979254725742341262387745379207433338658403467889616212374089226488069764180065982580085153632212195450683331317487645808422911722431644506985423821427530691927648598577731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "17629940159693480618246966192748510923784159747209846002107138686510289635209362948675483560149801417395970436531462892713744499271705363597073587150048716803100891799232418533169354476635870416571168350760100550432661968703368676956167858497567201325963481678227177514987631749451421978154968292077719549182070241270007278288828327832764326964420555048380559702226071222152572564358135888521694488525575945193423018869272689262294016090505196908457042584990253185857971187389735524517027383027534776893697520262165916413310744645175537693781450376204598378757882448032189538843814593621740449557029409465487143395819", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378951324066340133757350814455976340872131096086448619820057613320122011862728261596969006776715527174910307520792327428505530214873324799456935703285005691826820174122956456493817090826276686035503542424122932102267414274696904552143098409259617930754289999659692571896465018283773265015023813422611048971513260455468203434349873954511243015623232989829996731017542357495247050958742082474279689403536588783319153770618372898198164366048743361420667837247520152786580413530905089719200183978477654955122479790972848205636303925403965503614425556402593891519207258997068489152905402760530560760358279544870349767003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19994623717693703392158380728232523129860631454605172445612615303099435796412027198758516077840178737457894604483087705889324791733647799963590282498592372693650293568200682915819973345662488488536878085488198255448993106420477071742530042231236904658033058283576627788933102788639163584057492698841636222292708878906151093660178207297769447181558339398870715656570719977090305976082727357063197455511906242375697591482227843916885733436811703800211672079832653453594631461792972873151389786987998788058458396723042913660276108225059744739832316308677076003627544167683586032356197266790953074794720409444229760394863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21654528579561233510048445560914539071247740376061851931182021250634801465405809751666438182458331141174297243161092951380384475677397931991044839996902038909885443558783338464076849779979727055727938933081300728935044633524584675070345619822892747209163472578836355502623856860781209363643357507628801344591209156252785907726650217962765455021091034533184994862596571471899107858279241206975784253090219412987775984011167199759948207231254495873045350166170936977408285904935678024458417216557811414010002278715674460102599970257323731247000464101579974388713679143266828296097640002385792601432870007113525085638437", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16184081347956021656292797298837022906861519765425894380441000740220458953275078794587459751596351593288852205715317405072545030316655580419173628108652983361284287743223925032075010374186068206716495630065210530085886921234615241279040391865833716167568784435003022652155241179263058441044538487937393028279986962006098204157334798541774120256451747321780737711948759654044826576694920952215937265713081488619844528108147141019689368095489362905563250398433060936248036145653163168856996675688523613299255066451463631408060814245808881915082694656448411009416627457835488346526200237165609446372224291141431486860897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28924215036538405112720071996289577057261563189424921612492720889565349360940727746280606747902712712093315354290050215142877220729129327478892203531372838959502707105947453071061775238766240137505866905508523261654497449836846678477986781963655995037867541764981416994011592769918076059318169652801991351538289539923723993395456491890518349766994946500968324366073360672774727696400829861944997446674526854350037863573588302179368600985170760815048139104591125629991430173553212676623609225684367729457989161755018339559804020267515149167727247507512296201553892583517540408232416590631336453641879470229803877050841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30783239773213117055465661743677263380549106178681116676175926084610990663600162057591982729555488673010114927285925297316761287490483766454445432675066381950083627286289310173853152115098433536657924036886326456957242109713278789607701476300971669142621382173002467359727520485732771107077801572249234150604446780019226147290827619841361506273630528646860056592046676779509820864641101862388013972370643404247864067497172987069836673961394562172575246252306613710656451089256102319273276261629963065565118375237496011179065858104165679721504130460494205654212896740097884124560455062253099938259014658246875428731213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352799391863779433059617711813101159413697111158824122552229103561716606562468708159204655566729217045660803781342821747516563048992980358760502414284501508743173162887989191485443396130154728286903660872930373827269267061253683960107929397881804005303005180414057305015860861611851029375139466866392392915591864002894775743068160624913074000407127398239433334829427194154478446598530857100211163911217005549163279230754377270045504060893770493092062655437876129222613715825291442857494304524593129462624245326688967310261791711682952038616408255931688506301155679433028799024479380800248084041976246270668268188467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345016796491348397720875605146259103606633632503336896182803155606332350383450587654875675881840975005163198176939045627731761553610466498403307309057534508397785243033268401114904224237585414279818744730192966300101503840885919321263250546539033634330247793862780075515279458882215533302105788648507753623934928200348975590821421273712820713571670196264508667847370618224853319596122661346979560041594309244256385187349563249503853270307131058811204378091696231469213048898774023830583771785280753585008253215746748359893028403895995692405392024165797938691859421738634790144458620333904370695449411759558080404017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379419732211596786581005544059695334588387099270151699852502362227096162876496418648088223790419633711518112788229832234882518300287137552761024777622800556851771884317207023037569084381609173166074327779359883295814188040146505706504399122853795277861225446132620960606046130240159529953338286299467093458212778486462270467104498848570254629764356399381823941498978405616278880818258956410677100634554942643329801995581979522706851872006771289110576529773301611975118002732253811261702143247752615946211947569670175792389826369599222146412950296694252814798069648922368289003446117717463693958993760884344873853309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22532765901060074079614704067502330750565286557606067037601760055914596685886581883291328012256552345598169351597555021415670008225191744570004686861322449409850049933598349398980070684228227967588112898254477125209458333938512482515333601895263739846967925125857100985266674691372736549770334000907531838369826504242243049780922101372763706851475128110800231878880693897101885873207203106456819537987750355490129016809986574944598014782827669648792825871934076060964796331097481290891734858956431001185013173051716075534730570861086794967259047201655746328079144191857562243364307365951653980396889457703214127357251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26622850561218527643664487965908591920283609403992039621528404884903185772474845380577040148962473015674732308127331960582416614463665095581883999904382493679232661350288728731123742023126186289402779015415306610761490044325707936099729336066867600759933995623770449585898706577727809708123799871945053954126890228246602828073802300735197645349256881002670447939785082245760388213026381993990155448165549121534005315389443709390400740074898733268240669585317834686986263975315925467979443266952108689719658084401293938931032663851732653391633299414582287845059684341011061488074881591736078693308832926797229779079193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19551457719877192033422987769928258561603900657876348656542235518491844990212122044132711498578531042413825845954039577406296964193377310899942037478499768494937450724780372822412753244260388908572039301237794211732785762037459063885913958666904673315993705419368813240721547625758441038046098227693077647033550350970602337836964152063554637045522887280346724605308924775821046942015889703233308930467886275675398863862416544449391115361224111264951013422587705894936755230922310949705415879742402655126958672344392109417721151451419947869137177915797032114390249389417778652920241093092300612698318359148391184208461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250293002614079885126307274452345135889552410873429935631773359923081360177275622248362423456847274162390302744466973631737759009028000099729325642045501867286967685711263023963903778538942793996819628903610621624713895821072647013639737766439696546291216711627742960258954325140009081951553076928275827653261919378429203092722502403881876159927632804006700363439059774818469279621368578485933189506352597884534568008641479837916536290822711780120300599037725610941037572244922694190454983833046844713158560506984200585648657388693785812039114695062141322895692227001510776553125654330116033026112412554902341307989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24058081619839869581004458878722440024966367083500039780459867189853261900248032187713074368390568230596304032592288348279244336219449184245794790786157931933903010304418665787346866950302862671189670034777128442363512232445653242084089628273634653099361827275599816524690895465567090381816120881367708007138983759539703801076440634259031790689687692648595682931115734461988167123014829860422619751509480217282894905202667348498273090708077143681899425636624326918260940564613722611815472838901683205962984558024319293284260982217942459636979139952243340223288188477602687020854398125355555059721358061855073992664667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336287648903800919360326557999177780484730492022592714598627633828289244766673272790209825247480323706544928180480851212966431303119448060740793550571887957379815040168448257733898385741985706689878870245207598464500304018936552853233026246102746153756390408800802712843300760554266489486264514358619488715547424776770633009471444745314559147245498020316195120025264884431750478856030146234567843705098377378167490712191424359604618705258051208164971900950761485629087154027534784955938433138253963876711580650909557117010255944130206823262270233686897439642872190140432335016572866383799716350402929801694634007169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24204716367022224099425484884831291234670616982419711943196325187673236760984499549639270540038787443552055396110085028889337032836258610742575724501713490549558592401997578369939536597778984428620329846458888119762496816157055402359173220372830627548463068872472919453477396961476261771121373331783278625964465548250751739693143088297007888164925064852693435896242659542631561937783074393301544617410875765088455483383893642015768029608398676364298834281569333956722028883247835596516969722795082403480783896767076884573199032931253674607883477337469999883996624896095909480137482136471347579870716925107265326784047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18016565213856221503164798916353877198583678671066732602742740070824889792300565961646994088547757765495110493400080522451187437638787137849602316481939759662533070632600968959685436616030561278438258429592564560986907443594007582318995350891501886101808019896558495241204407172480148189956546026533171913176122945741519312335975612708960313197516418637921155300761584040667192533480159918354901128512836222475672431392868065398599960767735356280968489533016939456321402743502273037300889241693926849242331987679177682129148146640616861550345739332800979233244270757991801565410275768540515783311530411217126774125297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284962891322031081351547946352058397697548490461358338962646330020826643837157363510853256928800941210744449869171306666789009277337770249277190387681192181985424773947079182670513533359032980913520662903294805502457087108716138063489389377085077445407107717769262906203777879001719791368597292601764957802767925496313820064680368651029453209336819269452466756734258408822508420757338701382721627295508687094052439095727146471678012896887084538793265082247332469742029824966592565198814820753489874042014069743531767267203430094913477078419941686023140652308259783959335298503316601184571672536624894891503894684559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21602635624233116677919384141711989374582527473260150979414544266022378723494138766665118771584573889291781174581460307345843888584207358220033333818830047919565723075141490025805853577179782788144994906210392550021699240756109761183248783775406371718827815307263342014257928708809862421777481793390049181933384020288595369184533910550289804743060130698934337513749591972192003027595300363413512562212503164600083572363112391854652527383179179569387235541422782992360534331392700584984907777806523925629653336418123559606020257372971319198237957716495878927231244430195631862428014653695729861232207696058282492160893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287112189984526634249510383966698381590328415821024162302591702794682349507201012297574305507371747217815143322404718739410684446147442805220960675955608941656680351701917931188066091791224075046865393727220310730024909460303329550772445588740395858261740207629133576031613898532202427155781350442539030605124894353775899694040885554957917799228562350868095738881584652963225587413508329335221511632051238876306407254636229141583199904512474230376089558238662823816980252722306541560785647999708755017622372896648355522370187742615081309201934094293494831130253734623093131339864018682630354208670229454203432367607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16603637071591975312768452060618916163673496466640891403697000642767605043533297182333288934114560599090017149959977454166939550976473891954254252519879386255879235803913538219790520382621767619864488131415068969369394566887080990342648605086543313360661491374171672201960254247397201401884291012640245307461149333127934864128758704919991551597529815551637413205950263681033722227325243879020926830767628564770856147665657159272090570741659360921312886487941296901421202487691952196548459458816835355088671277812946505132695862833568303180151941369046410043511003388267182202407272595742115788556757191510033796053677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21414924474565807746627501140175437717887566374100752746842917332094541991633867497083768088234449669093934087474114884257089500734543771920951644110964005895598320922701399820528767489271967377182970748458487560777912350342316565259581322450318293418367087848880109112862532703058535871974259266929881675783597170768003642342793444127610358020326526389312147893899847257842169865534079890096837079868001962918294100155600984895941961982882739940387931683709523393535378128757731109823866971650507520518330135647961288819039632374021782721660726068601806963013985814798441154891699834246611773952377634196626866582261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18976371948167146479027385728603799152539889761215311246674188993086770020671458967524085451175216050959963789821253258381118715652807916924142732285587150832793878361203254898760118346098096725303358587503559030133855182361565063819851014205328279490856017972826101712847237674127736933615694223180391300340397718838794492265529802647677556106505608767898372368833361626433955372944960552180463529592508436849098480440425648492859793701028133507985122735862299454955594388513912060639759077116452533739082436921827660542636974373052536226228167532575447443744397173716584782386213446632679969196256446792057281068449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17108543788639266416883566962905457222215141350609677444574225526012218992166073246372290331333883654635286941023859223922409414437705074718099165834050625844537479461753314352549862242643076897369769650556417825425665255474463101771342835866215008745708632147157014895934640311903726032889036128667592327172380194208646505191933322871328917191688312812091362554854600780377560189454612132904515135575782671113759613536167445174033254178192810120731093343388183175706478963983559531046794784223477206854544290481337358468973264531809874901514053485453205183807310772631903001448494896396952162803348068467106551667541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355822711577261661911225177834848400112117478489421737394891216400829337030860679255911056216693669297378824654618157516608772494333565452368916062645263162034560241699420414103429967753152514881398427523444961003781762664856063701499885320420642582567283662506504102594178086331311189845648439086457387190964981612954653569426352165029062027316249205612457091727064541476954578774020517542668298559358592760830471184469078501064487499445931475985481888131196001999149336862521391074601441784931977495112287072728221247454369451118559939500485004234193910383946578926577123691748847457899337712915018725922830254229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16380151624214841101936325629147474205097390025891565224252717701461050680159546639049015092098724718095931328812041349115504817946816537115242634123001253188617538004650943975823450461422657156229030128033881981643549310967069232067911504241412654355090320098230999988393811656901646414175304252695775372958885023692644453483293590647526601273049914533636735643198726825885750394380933931380951736719876395329604661927718216423954243979729534131169391812014698941360506065167067208883234390357139652284783353302462845460992976741565726547957984584499096184877963931454474634877842567551998920273605406990019707542579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16741727762816148360122874736122280371466401103438108133850149455879863869936997883959589456888365606287877153599907662641952536539258987714357132215153308991776682250507593584615026494252329775066534685697288340340205355785939557411424824430559605914651291452212100122406688874511714578565176842287697592739670196116781942303534243208626446028664910128076921116586933240756215759325555709021599242676845554688136492311480003887008832626151187378990236763667619638216285188426097412956019806762300409061119972091171880532241284114092351594915252637623959836830062923217454301386749528184030889940193108403682643000301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18192103075674945559751118784026750698300192234824669679962439486998158565012179418097744774716037801375625375785361124386989671605728402475383359367817766803006908748496363135364399943935429591059228534588601003714568780593579335307300259541134891374475010149008700438079903326487029033681016914599857244931918903149152842961837862333920912751342501412589783292456453343199300302732682557585056827352931567720592248697408021078657969468862329740866714617387132990613350744296944891653442749568486730940353891379333783964701468670395384804844685548689482360956965413359257310135141861712070822419585807825658674710873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327108663899998240037851911769636446141741401598671792105965018979640371795654939046185592419460587935864699603409388811446031906813429812503640450049297375309344003315885418530720274690813620999567957628834672315891792529527119422501064567840393470996457271082534649081856594343664485434031553548296981096530007114993382443582206281301632442151961830813124606608847345641279356816378367515858793801801089593818599454747780730803819512159024183862755127182366159782097407904738509385786443349633050100403883186504487672849584134351218427148279118725409266252637345156741416807675239389550054759555765903860325601229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292380488075933597139110129444583536770879978756790756325708226499806123292637979173704862664355470127853142768931779468856817784370656296677461098512147177636001819989326448833373393655301068492419454939604354201397049139832465814909849936992619174744858204913327755212460909196480507427868433506853640571501077967345400474542265138609988248172930330940187301769811808541344954167024343084160959673202417263623765141662591994345385888521428746437776126893024037331530810045914895934089196582910967963025035741750034535323635466666413193085618942618241913256786702193786948339310485932919260457272892757283464048047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17295823010997070186567943333308811253376643026845800690731460338131155229474916841665183709662233947256917257725203550782444384285596434360946286074459567488475257379005612816069964641406951480888991399347247659700383268645238779989300898328885434486189240851031975829501348193430422012454468982137053999545878884160816931611509080433757013032944392838671808780682240859511285839120045326650789617189223579529359335495781307504320470535150524864553892304940527693591728006896775746746960729270056332940746762668358934681211256459901233542967012779140242728004777534735767359278775981165827477198173530209950757051121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305206180329853752973263784004159468988935988007593903816002414322750043662091413576455781924694045861781037516870585528271165597998807273887371261485201459311417857111649444339835646011830310073385118391658589504730122909180177442662746049537646070893581560512573817460517903833546422620029744270713968760290756759403929144578145634484085701764558158281495132807293591590032361868800975024685333228154233814715028457020851767923123818583710315940916403694518771501487944283875095961312963841070241684162927257948022873694184074350178819935726175310377638597279691172621874039413263975399100320525296337392017779653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22201955659254280982832466657826351741229637979847623911354242607533801147582701556563513142317056834631109090629427559733582717687432895316373196125860145630167264318036944908710820166265256780184562208183061815238640636059368757547507038630068532177167088152429690347245624918477754897762058220960176227769848515335612814521898054165304788892452982263297908073171581148081046029022032458823257988204473762471562944630583138150940890071883498586856541771769954205841921546629733972274240358311812285185398208514708734459614827222189533095064101259504558774107196961178701875169846421222965760444554168339573331119931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19392344214271415394065990949638268223696416707072643555532834348670009214661313673504174497078977500812775632893378474294568443598173929287695480998384953053776485046733917355508079501169133835936607169392168421451987581875255997111458735872520010122409911833081825063225469374471902168519995346512013872470850508023701119359146582015939991653352998148835749684000906002758363782769203699340741301716244020780369660887320376164857331612572056019256280659281068507197351378857412774438785862412720141646142939679366975700349980748747947703573880910476630109890341314024769111504096434792624830603948431889047881031107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17277044372399332745524976286770335834950560331317029093228059677175388608103149782594665712931556707742516887161003052527419555838213659792406523125053546465960594401009827945606095398791515073175751323930023211709384375826763725826263216898987723330964193552479962996422873183230882411827136577656210444514565668693949503012203336582757873903265073500396086777363922177655629293147337478868270303286835273661075429435655829760835167313453094071512173200070519816667069056797631508911775074472326780836702776597193317909950388799291818205856724612548152685236625771583761913335192345123455659359458369140210327077847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318783032722221226154283257984201566015868009686747484922702673192896429247600272800961451605318479161698448871399077024640990632908661317871551925755397902058433502458246277460245066706927104693645141732328778633474025136706485958572010195210303730621760650084298495094801614053295181729082016134562511493082150427865716285045865015769006618180858053628458873326716002133714436082470044873673254103284062741079280160574226238647182520407987230508020994828385275640159894664741516865143866937935280160775172880385831594190774291966968926303551778754161604569912509686008306755534321813104421823561470647917501243263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22744374428132903965827046964107785145949796160495127069302435399417726796285923643191963013058598815719995523118592641485134320177863375286658045230965558578261208150101967944654445571229683107533702921953881118737352397790532146700777335357255178268806766732896805714295167902558803224918282122858004099854605199589169975213329819296783441863783120283496524388454695141485920389973469269388829626833492944222466779126392990810358916217455384668222779100508028125505915083403278003450715103543660196373594214052463896935066781853245450603679951372974334160206851949479880232534777903624597635750671354802833826264017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16384385374058279761155108000497618818675709770981486586172887135555768577894320364067639435420343924338889611087021424697045957328425663681685564653370300863751373772348215430455561676562587152985299652872880991942606100824717640179667282333591823748408738236356243485609092989614674483283783434394329151101888310123283319574770383460039116893983877755398798347780843768983491081762906332956097432716088071933268431727006739834792989775473753091098617203378841719551910813909099733554526686271244541445744150468120137075306097694982203137669448937084330353236221783364377905471058482452288494564770204072017427421321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265915398140312278246701641583238182022845606448808459561783674397843574459651802515508968138004405697578600137710009799146708399314704934619867276730464828867007070347226266896936079736415305439702252379415744039914390763430040257676090927859547730748960010118921859035980180784140621716651903233456955146932808555916076129614458420580287839159724013197453612563278088659170148893350743135452002238675366423652101462191347475992697386627705851978861217273415671077580240172673021320425085161021758249964847663001559939238916005092298534617492810443158670959399083698770546803817339392041753093191351245611983133943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333911206219077307267344618196969006888778253380821725811832363016372673183620951535593365403744919201490788502939316402675156226048774824713818016828481518181069122643390789386015090255261549863518316042162775217524258028362906933096617911943087116614176801294998940091386985121219583770605350708216777489268593224187894547472504409356206274442825938988100601191001637720180822663645745162291860078512990439357600371421299630021194874230900788272328803285718940926724101813116484098665358054392285877113126110845278426883372667816572619314595801333926010323494513404858612392162397703527678569480157827625152749631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18019694028633076378680090697818394608091428709723417217978257484232353015752347049438304508024216994457891906901107231742236235660915639110484502902058162761395593395888327392365660716324051723279713906140234236573828831810319386320674785516051397956969270412886891097444026525438384148954663089169414713898127829666372116742415583038537715043250646373185984579584606585462000572216024949600432687434792447500559113982159337201393603148533473417751450023036487388782598893414585716022101110445812103649436330958041128997799050292221343022887857017427894851686568074415447951563380171978577786292947524370463284679943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16186130947245741529696279399456289163955455013634086516917983307374794150908984214896399999003263602388795988408307135223444211500209612886066483430951970910216368341266669625136882952728184720190833846137875525694638326082529546319290063133237911428511158423047481411274496751661813983594203863196683153990582056185269424018955268222049035545306482107068869976070730579491669531044643778641704911860767857641983413011818496499566796675696877624958375302080868758806303721051098204398212539397482782506154556589752724377950416606172576065689591514453718049338565476209931792484328600539767993915828962202269886755413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355171534304756197748804895270335124035245969408436941506492309657013602718603290335326125906900370771371212046458443042346197629865338098884632293001856898050203845160134576345903693260852344068012322258986802814551085208675381030482020974104910260978643622587081864145128384858177475490989696759050417453524552857779535537279128307322401649660612771006565941169193430153112661147206372884679672875795760887164525981256510693595946400692270198863377284230848148778399071133580131647955696585174841818757174487185736875893946104368720770568175314993574360602243867597717323229966540442191668873675584879924546051169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16240740574113189996783910390562777423573592162771165315765506989239759906748214884999929721875706953436098316234743510883160599540325480951465555115664446875754186883099333322868621123265009698631308351532420572782404491466822756377032236027467375504452418455318651731149949902132155950654799272501536198248696445882715607550083695130084975829170896404608965184550708208355829450825773250675430865632373568834290607900815973258046461041481168781999041958763173597549274760658515685820956550463196705436027356259767609124631552962576814560544040703919305102367958264439184031038436537482788386577038700979659069878369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26561266257545205745374453241554880518650670625260897660941175222633417007861907074409597927159691047436100609790190675013336158496398899048325258686289985921129686014092973159627753152728201811549946259247558957601834262339268361279305984402131879065826466328664417395884764214499032790111897719631126274876535470805153594893719448127555415779193326596217637590454406057381379541406472017179125576110167825236949029447018399694497184299988794637121534810810525478330702393791904620078808314314326273655242746106947453362930882450163761857790628280328229065102981711471287739956806502470548818590998942235940761549289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21882104605859512214084451536238766428766054490438549300703962296343540672191953465291344142734101182576201388741778175062079708573084233321677678391662968291605639217798003714232932919464850009328104148051291520006918364075283036670887212581072865655925944111325735166108223263787060180919461864007270619436572643316174994011472629050615658038481762077426341196454463512687284721089828305898598330593974677663581073984285238996470281575114785997039508634217919966189975246304037538002979300353574488134111452088926678712729063415909534201524690554680734754328893664434531411472848299792836275400992762579739993807023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25912808017588754681293204775947847979103599590463620386295481729366335215131893706388833760817840177738933730436108197757729196798009172157572503263388857975254216010416922417132052334010374676276411192534008854869825257155414475024190197604373672064971448607453070924021525514112547719600981048037467994085625034133055027765551203190983384503449809678712385210700418387673036247080607382659667160460090567836320613285217905200982055559538767663352245055439326553641598461077269780945144424201084164141800082406407151891637355619341067661577094028987646694836772836626554959143488240897019676274105660259674811310407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23536591062703420404554384484641854324674400169938613672670320996937958944292441207618442847075812997813139237132915339235638785440425054576275120840335363557405527697994499400087251710848853857205624525968282819956492887108473319541299694246754288083180781201394948089315923341590619940375817867011764150121213531018690103907659148911193461813072831236837510038698838653817696038615177412851639984734260607215266449535542137579373008516506606565210242594302302775531565927780728851740573918509546927389903350708221379175472925492886613945059468245543153412194137354726952667786692979782279767206299430713428639428357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286013356300380288769118136291727416467203622191640228360175067144338353271274971587518148729137491887324733067057518022233499960461927633651998262234954657441623294359529789853587191030777893133488793403820074203661587697100152597806212452183650729969760646803396538653364742437690314282541783152289159029648710402092616922685701431270710566860594964050736476855649406897799236661771367984076668209496790409870999867040137890422162236587673217234731845216599112299741397008633970747777126312639471860274572727529454342377102035719211959895488937365199982242690355321194203406162426305625778665737664085628123881209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278224791321558106392495805815188795001417070269371252077259347715881430209119037359260726853075530510346389077136053487379979053722579230064460658396155281032202523254775479074952653225871743509987728200669330397582522827225014296053801536443153883476281450404451962640161746375775634513795389218281859034027695084318367476992699718552444709821516993755391412899801096903540269916389985593986830464118770877370121351475489481236229663842396706944359824194429066478585823127109623018227180320138637703617395614569799683616774889182179115667921733332024235625225149358911493886084783272048684209764698090480227036323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22672042165510476825384452205190625441338797070653369636248304599859690524720292563198231607186511631916838997912866708733468998514095373483448776180157900008957133522424965437277148206611324874852746191431661627537285466408545158277213918091440906170678046545539223506543261028034590129241229018095954080305459257908863321932123739637683583331118104509331016876762775069202209267290334554035732765292555405593373541090569124526977056524840319787272901846135461602687363161169848428382516881663517219322132108562154981183989519334838959028000147379531876987291656222158963295370885179313301696654567691101444051198431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "20711966660856189267579964955269002050694010974701222563938659844585064403191508400123936987354076886362499483596249957633362321618452902608385497915574423290711980059784650736166865412950894173593026274209882411919272228544259242401807815878666396306629849865147860475127989040874788182734637178110057953543835848470037460487642126105767719133483072174273279904728130755670573219627255893932199879349083765985796801047426723713119480903098339075336749217187296685481496666160937174171038686679590261139993817530618334789420363740738801617712409730275286741310945507319373661732095167020905558503132287276954067387491", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18341321461314908348979094564444053877368255634461048043728091739909120877640658849722141832326206974810850413326812849037243417405610452347324238977994754063738630604289896150243014108037753368284370932394687782097619060144331315363051387226489430292111366878526476239773951961042089250934789776805093201846336459740063905923019997169294862732497131350676386454115032434033522966817583988778759141298169544047201994944967549051483780303410240856404031107726785297745018476749155973709941251242868903879951075877030343995395001539802687546185528980370614406988193068069531918490446058031160754925300817618998905651869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18254891083410335033385731662420874630373667839923282545969049168486991004398534477602304691191992699200234917752612565863908495036781126037646180432497327765334888096222906543730794036031875873635084420294204070403139462556233288522108756361532551672265307561885929743443789667225519823253912490215330217656793595901380666968266904392943609044295380631875330700433985771127182036838294983232643723622431580205427141245214236501922443290981326814166902326139281756245039755269589108539519844871663162201183548930198808136394919480506727139879628322401518454570547906533358002435151410031585945738369116612665104218461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "18400202587651800738937870186178492588376556541241916264271535730334458694594504128164811494605064388188185223480200472189677263488565720064720321328996485247875696676500543264240830440486246014631619874058600645431238137690855875315747573516215587790140532739976654714055037415269982499539099466111012464802403513715450775863511496311875064793427485848417349179477691049835511297016722822494466299653403120511528090060504152143583766681069328336005694000223785897680431737899255622055242495715937014523717350221117748517362294175736780244438817923887356270836999635955196704253033091015753447866541888662944716473699", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23642906330149683574765807982012813906460306219616020807190178148510363554560138572636813221522882180987025781074883114006730370314768017807498821990696172607852916849239798937700428792965425118364191512269951040274261844127063988006362281526264213071116960653331826723910274885510034679789384485545723946376295291856553140652141663371800974387772479871427312064027708947224884915897808346024311686290560883663599604220422794534215108841798253342930637369946497861919131078622993823537505048181081200811088824796677453505310177030114164672249997183178276542735813539575852974911834840209732880919808214237989643414713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306775256580983388232911604973849852577521715172420956953964240375462482796861315547564765396777259856257378152211713265791306094461572845178372053555450524023300774948113155751028140962256058207323211072040853473623353956694380910770402795029296897074475919029993856541606618452473426364855016373287665406288054821154517198920481305879815265195372744474480762026804342219198692157686442517021230116647494558525738179068413347641734032294338428481973888805886503385495104363507578896177021438166826663202232829997121229311967749963097538329993102824182226604977755637348291353949508780633864570046335365261696709871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "19727891314873576555637589009904228315679927525448968440619480154414157691391279317420392558774528556864594463102767550564751787730655001995233774137075880361379247210441071054096832877057816712762969327720522845397188070035151004038304281731942976845858607160882833905642620231724000820567709179121062762231787454464666780479912059422330526834767502913931264705557245706362325783055314128126556832997773719343106166734063544432275975652914122589274875182953632857490365723709973876984038605725702720449812671905815735724145021698410581817544292085012135326442402379654371278940428663738371285532196660653719884815401", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24510200342680061725552669692526039576125365476623261134443820377869528224348193815634076497380720238814620997487898543657674453737297452388577619665565819048373163253359234277211244299496994928187364842141361066544059168167122369556611912954707823468377806039596754344252962367076671448183064640181015340548740385759526931283364743592070023455819010616526305833418704482838051391740937606240594326502344254820359762879152437266300786716629752680381528171946670074554278722276674623023211647018658201563127335239123986121633878865303442416627252689905324135303225641299712359742973887801260372858046157768405624654143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249070074326818287767329309541802892287330217264547032271193418379447518287268565990468823694350961496669206749770746318747803063287314422078319585887223950770620362397166922110956223002111737231605141818900307988251363522595777417917341000083798384210547506966054129478337058506604680301332591915420186771069773279374267116174129619989273949165981559907237241755717297620363580104248231002111883751525057402404836951832366435237317751824571859724376527373020864563957626164040650992261943140916195567190938494809865832482294790025015172969802295035392987736749762940972250565701858548792951849761690079706627244101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17071307058942171135888999740804574126959590122391588279791325285424604524054420499408478686876903952959261226675103634174736579000058489754565088346221748079656085345646299078284909048933762446975047766504365059897910630581195632658970712979322767173451767745787966616645753831127610498452869578445359388593943008324241797502132618064559001026817509360130425130091728301826400981323400705323645688609437434430287013236306688161411872420803549122064038565489906732038917317341354472943126660858942815469342994377674907927421445129068228876129872137452930021445091526629912979233255103524050410507781586010431088929297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18921718029528341324454031668680717834586751646363791432756179332693904693930700254904857554410156440824791120812033337531514843186437165372522175448999073690491999742619110117276064496670492092893130112767746888547911691919700926876440750641791425155072909061156002210746707797985876328114530646844102934301395284938070619042611161967120578142152164168258403099886632357299435320152901680830603631427767141961071081910068799819459183573944770482237673707378735205057256341064519907233668508404221623077037426814835502103458768405681729540554391968314555697071504625772345562545273674703794448844168827840636435752649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24742168568957397201709000104963750606301769431534921712548283990711855069836061398830833418623117517175847072601626212934702682119883221475375108421485264561525304038782162475673427739084577415123529349600502663651107711607557423270134285316782768101103380352111598452692538494850674200227051082175670444020102698424869922204319699715954534721933963278073705146292738727203560327808474828826844022346872310976388486955876920068567390575283797444012336754410712116313925964722579882699738374404330213473906898634804377200282625982380674581595837734265609229188641377257654142156864512889824885579590997642798029380097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324715970445546405467772013271065657967370859181812207506727231825035072806581087357433671421770239865481754879066760415156165172476784505711142787049618269559805913495732590485272079151656228825604401367631852696569551721142498341870639388946424486631454565247019707936174082276960958643426050658803112976085631837607444846829502839218507256068724834333726533470781335064636286686909335552448437975625741016600177292184889326886378346919052853464621348368432412177050927077796405803953137041287105388501258664483288631306937020069288826921323592611244288868446227283186043621250979742499711751569468795886286435081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298409090259750481426975118213798496017933287938729297059683201682662181474674092628672906996807029584313141951603881275947333779549867120069212332433601421254620502938955427597579698051741974007752305169159669280924189990792637273722678089950056147496776750673198088357052047680942889850830316330265925182019553566369817841090284535607608857646763502719869816750875259036284923149507016564643609730189815516238436946447825967341515585123226260381361188239508719482395178407562303168657752443802170739075493014185659397297139536599760501424309767877254680041827939925121611358290550013803307251488967242827715813839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26792936838750263028327037590255249728148358328782600535417620216940405998650958200866677196872571621527951297819627207452651882444586777329202397190997865582334085742466184771111661389673430842540553212240795265384139877048470862254309625989144297329512047238305874161079650260086823378004016400936915832693875546495670421294486669547320691439406826741049404859563015259565205462814220020698204585830933011810925263607587374831131450725988920404860320261672936528588507061671634951918100565513803568846970763684757657043774337152509066073231548345473980932997410762650995921005882917573561485417334493995835713651319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28830758223403170954209778051101131982447193756427501097094048060267475448164761300798629400758687261892131864109490277159937747782232684364986768700368510463595217021329957573021929533432336295739545825609054862675215132630189542109712140142173677719523943005305685457921962051718098836158062059158486761530033655168425265175928635349231039625566319565989123910681261480128060690625524120930091593599662457699331585452571370494728038228096131046134528774562671707227986462976925311067554896040611249064183075514486036244911121854490452262684363733517246570166255262120523134981313280720215105727017081673858384752551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16995978047105158768362486430563718494355817254416031332532106951708088417542111171314630555054793717521435065383650544942956122757196761327881191353309972782329037338396386781543920281830967365019345619091221702023333078124674527581704823338130968664566662936017804097100608526677298925509233850327219058894832943017869474286866242765287204530272454140064182396910002355116415748374318071643574292466316774015288415085231577990722384737407856706165249803875012788256608034103829794136078130646242301665510882637036122442406972002636265475426659932116797668622650971061036051727907095151095113608380816853255496256957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "19997331644071661813051932183497371473166128331820387493122348153525920298553690583892534241234928560598795887909796599323218924321666564045165421609687031914726819584577279504673910572496004705221100897633808542870708071698160703045712049725907256220317150341882505820956176719178928211246484749245802369328194646094622376211940504425642355632270546448978317809291490111934268575867000900799882473634570167364319493867520689335668687608305722106712810689185666914112111184071807972737381956747221612789502417736059616707483974512050191242116378198722812903518612439964327836940936758299484484265700116134314689996841", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23124424380548246776337090880880605613922938074034015336141693331510034478607498608763427794031963763335176968631049730321860334266646430928881153881424002763359051669938046492634758509362716462526491328609792352289065670766167888046034326673729733107813319869734027770319000213074083051682831027671892275516477812286173831342797986295833165199162121193661403002281351981447944022278437489609813054132294977604343178270381217184301418451513778374759300840822750085939852809940540010581885919823961762012613122494298929898096132174175425547205622077092560434155136708457699361043111381432178713626310031875264415183179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17162960333701899506597050389752990393631790714013006380054851205208216190634441026054030821651622455022733221217315015268763304023618576945982388276169241325515569675380178519549129908340256332495821333955291478243994763051023945503422959751809715789363422277272044550123401542997401200651094163625999551075980440817198842620572803935869623538548913922572580815526223610570692051877942021083619103938440834252793658807333457765638524759275193914652410046743088927528533965637585383711970593351926704114496785045275796492199864172683879163033965974425391677741770034476958739079409066985852718381077604952529777079311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271526780972268013302835317834243477491672815735648808298717889294364038208534177205044887862355845557181054855480777359393464731040753336344165864201010421694728935081128334791039241291846775105732454037951193934611037514291051437486095362908097554531349441844123573377153367865313379253121546495956540850016600333087298748473556398076475323454324024340108846497353880154684920416112928817021686704698163924018948526816020775051248641827710894169500248486327327263389081879250312342836635967620170900247247071695244739119871782022374372978225284391042633791914968509340912455300312136864604514215948258516717289661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16218448801644533489293558627285180918085834899653204339663717857902187249920596195235748547496221535203587019277538070471468939855495948403660822965436518108387485178487449578627660406337529855425067050446904693102958148765590797356477307281157271855362316668320882778737571804772829653905191808594162663681662403348662544569249610845853664648701043125254098039758560034655561395942354307193045544494827451591257307365026786262286856142802015579800085612678615119767009893656889099086930492035427710025469470220165110493277585988195514181909571707909499785996881117659408153964251350972829637493757022283885363081883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300408789851138719091401232425340683989851227778950952582011219298547542818531364800561308792998249008191603042971204676849384223948455723874204361685774875071062875797590082065763135335457768528662830061345948514151837657382393298186668057472432895815318255705218967731186224811334988455999902454470019318299944963722307855203157580060095705391329807968789411126403438164996586306015514247372416503851437633139269273493343793407621555224804254075642870138407130210341217221374511162134936377565462783502279564586113189710514764333151237112094265174265689616526460794905205237612730195060654239189623124874423556141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30410812539287310045711362251378892515033812542460838107330710803381971161483137034324975646815341619950343285332823016758343035916356252824207822047108290811465831220069255276814956826861476832267720064549126414078555261359536071456816664153300478781302355127103416394244207581808512005377568496533426927034498275173996617183109508609809594584918862243722642905935877702723549161920612070714730687150634681637272892831997233257408726889243504203606975248085717515491404438806453576762958399511926242010457186659098020739116001375813608685663380282606815434581660014183648808424510860739247397580887308475844251154603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357856795441102988041385897428071233661009803516768266849952810320196458007948333838808507764217429775078695938126369820848390591592852471276177156704603266662383451876730606229021693680759061224613301119696206172490426194544844182179278166839420400330013840303943058153563153098465095735267427564034845164149462757987169504855998826302757301740250886156569353676705223024287362635193562825231834410151688089621416150711262505154693235558345443175642357579079019978384557129186982791138789989239547451299853920145312112776202439087480307883608258968499238169383607177372665847208714821632096165641283293132961536249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254398715305859993680025274338273686910445064203704873997110049401487344480298796965574452650005483741569746785763323912404547477907076456188643942149507683559855232135480008496098886432431748324562160843022701367271727688498588874049506845326524631941993460964323107570864051050019255049177095372104117417884840819759021292751183200928751099561286440652685182011447413992572122938955362085373044249821797450194270210756778399757893230295188324322725665261921611481955977531901982037168563379682456493706460377169517922601126383822160830520122064376573969552203964819395056907245978520718900241347820969669392720913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19061042986440947452063918826242219681434386712182176744449519641522463894448892060338602631692850591944406390795419403479384833701272276528140260164025930377558140303078603494562440108017182340706563750542993473474982945030365320166676027504750535141301575669455918057265538134102560679653447428454532758194005796614238780048145059540997349250503344034905749355889301987243817379497398690465842076214425558913672037603957452483498788214418985003417622178394316328240232201077712775431072267001430137065120500023273847593780420752947831142663896761534807627097108774464897643727635392720577730666544118186004010803019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18475209023483589859692037547418057446859603753210956719914943968199927515392322518597201899195356593697409122178215938640647324939774260824145282802842606660311940487703871499004047190658884318964745558198620330986609138709794687872363395773142887053767229466928889355174871252642917666001783797760793222387146616269474790048225789755226365208054873178735447439652836633641224241135567690354176885153515687159152802010596289039974954967324617839479187153145091197906923858707007372502893531616768625347827162471816403508076054042901274815918553825655063768588873611452318838623931416352916195679201164710037965971523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25737907089335905643262129464921652480787529337611635711337170892625376265481363703732832789045886185283516132393519798182486204720472430839936691210047432025450758885333326665501262192161156603271731564728337494624517319470082871336677135468382975047036995764197949708652827972465907353311403145447263382976494762035119738965391152467068744721788479925833664085602908688046880660963708374207390902881550927850961441477398435096718166967783011731417481784920715345535500803361943468529453540582772368678233184333148244542474174632292564836976906328593975399855330184463141074172164411602736755829272467344343095136077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293325403838734444204221535766479903389468307096680433782815741754401524440560726439358350252497132744081692012909965087684336860692758060508964366137489022262251574136261120229450009548172845184987384236487969889048550608577171363291673896279959195125453905960952666018817603117937534052149409530170279609496744272518039141335945766587364241475230833813656508196164848430410158302139410843185218007875466733711366944980413697241310101140156110155180130301342902261727173927920089500591511614651173192715371043711376053797569744738319243767251728923812233163469678541210622878180731499012727660485473642791132282721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25678731123873706073463512809629888842238837985259297405705777262187942131011137459157150087986463708586554085760967760674364346540136912131385677460521189389292368477964945115693997671452891725432910183876282442929945068690367106558767769488616831775310819410390989637548918220683820952078793265239060626351646057115570260425220435522257268127229982082669731544146145536860399130976991283921989410937215095964588199010261989335847983252243140166872303708591901972333459587090141010110614193415806038935267258101924893734200054202018344412114652028708686205930609658692720992375140548048904866987858168173330419557533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23468962917199154991306689903768406922510146609159015955704230888227971641216221037888414344210526483669536527613614634006193614317749945792589909020516252174453720137700855395881494179574413879529779575624262611196267166014544709154987450980909122106660076275951202148901992758931364103382489871435956791742660642665745805852283103216031676391875873472825459548788354039442359441580669844609419920984688808537726720514480232867436519224864275779360685232272029961765866980417825609493288638883860118376458589640300617883520963972925997983202184160446098108290984865168247162538055006757451011933242900564244368662443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309853294353074561087460604559817286689452562617279712982602480710256505827167507714742653973012406675712494659067117087871490260269941553393827091720679019315445177447386849049755732632211886826556005689014614321267817859006869839038420837258474740163162007076407846882669424301526606322501587605521486929369866034649756318496966584243335670036102305326301973885660420952854697285694596875549875310738445719607289774282227442647391453977043336313937061522810628976194436609320347325078911865597101855040063891340136129235953268199499953256240179005362058757542734212258850087380644756515215334063022460392628039071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16637673328261807039962000790231168749765351082447217549021559095919605659033044141594926882531748542140949938547586245646370432942879349430846342213154304487418927755609554904021923277672552163667723634132153111844584301907464315061634927646074590294584592046075749355936518033369944098324992068232986232410857881158166480299876339665473825019746662357225760175115427176083332574060817225155623351869650594952922763544031800644086224466708170051470157751176430930283950712269735385143927533671977657938122313592346594596270215672211526491517508810858767455528252217269368238516388383715090580086359547237580358774689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "22976625694165722434432782365544763999851241579678248860898358144633587677036972961090287169750423370222881983645984307039865802092519983182180961163204268048048470806344531631373137236454504325898342495849160287801013539554145637297831083594443530712798813054494551741041776033349868883465836282407630826637105441775006800935369940181289902493505076473225641239969258900445071922365063023607929646950450237413588048945337951412657022786777525263719455124670077052915924318847550980574366430004779455460597517709450284385294070772176931964328067465423015003817170747697661026065593708809148226269121314022999572021881", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "28143403134896957406549227020403069227560282307215033126850240581374669524913274312871776215442057900192081649435976109043746169673868922908239543059716137829205974312474324874142301098402188682609528669204714007416486275089267107183611011459032980985304627667979674082787483091166946708773822422724220179322395373353984924334381070823069163183938094324914142329345874532330717012520532364281665800943729341763725394760927062940610516703051912614026241440028772343660357279271760164383724333479911982717225863728834806946987791949362108576863991470291386542098160434472074403982294864079306704657049926938077347286821", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277433153452880899494465466837022134417809816786175859482575658142843906381479671427844161682768698472335422017033943383368553961810300164574293202058811220082330717470394052661863815157843572484023177766846206054052364765874691026284281910411463770192276797158892321211652655120710081255453717210754240600875133878687691595767415787118833011266615086861726296227662401580163721002512762257519367808724032212231614774061793946716799050336424340696718783325135854381344858760441352040471798820023832303179085791724907668675506438361719650209704886383968364317884538198629018698842042876492815764961324241218039111163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16437439662263087120199968133666693438087449687364978334489642619247117594967686679412010494990894271090877108301368166346647422651541599445711918152495665852258847002553453987814535773472198658275675371390450697333030858613336538923102854944954736212321356592282443963495468607759656842708504754422118321917726191580910800920986333175512404625500861156500874232640054236755862892240747337803393031270310953818951147206480956128045154672889581649632962164250290169793979130153342600966908568085999524523000387231622241746962312707303102437898624354119679363936071539341310124927505260818903307171690271214056108027747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18796741268446021462859482876690002001590463055456725529466498782093052775121372467006903382130460228072118210050932302708516499818387686859836346874829788628368442808009876418063073444609709313759123182102175312365947637609220756266724874319522883253806965736785094041616596392834170286464203392952061710232804659025744267708543732530114035013242189527363338641228633671722301509242665306487701839657314561757648414006613970411144606985875836235407889462503684191725539297465888881178386434612611079057434092123882541057378238150871601631589538271720107274388139613771343084693596982824173707231968477386747050133169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16557701613657517594153106060858569049580613230294551470277644848391506175924892077814841261648818712326934152182136412768775799056666830970954697870161511633283062476001994145271938208367005218719975851875882468486292924702759865026644639671326013556789152561005343325956551441809116463251391787916442203442753697246200488352588883935033587512494454767369165306162538785379637665335665112568987737110800235021091277726088150075352992740636151889705808184781753318863728083075678340375931036090063420792294261503250179362530615655081107172429475307398220508110108583925792652421031977389763137792900166653780516459851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21926175884244527738533423772498675307724523990207121211048356126744466503901616090385906076008466282438931028000506054455861553051334377186583053742285194365039290916228152175422954251450471458957196808164789823459895563863881621518094358997825941920450072633698807257789341284183727429097488746998699102323143268411787351815799316943632171606323180325552378482714448510977002634077086056274835602950160880422103988419836536247625438830058715737087203614739066620743718467715366877651634480427483852970946788511621417755792381276400298066569642198147575163553798974178215009613674141948470726543373610232823509170477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21466752081844065653800877272925611687019098533946176240745226829020750139509116674050351067164388909330785185821599409302608268426427781651458098960234985144261061483619254925382128263459560269037924786950818248941402720293489270791972458375829658550493711910690168889020728082096859882600028648753306904812977607970830195237152941654207914952203501321508545815063506953743806375111309004771524239348529719811385082429902224800294217513982163848462425650378738540929295136364871823282477333607349196121325309112115077214869310620172443282451671569327423953897631463472844970878778486775523084405009700230970532811913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16950467195582933770764187089119738582081546027489846296976985860929262285589914924946986482536567544204556646013286327814178677596349348644934897271212953556179333446233455663946782509457345896141965212193942331921048352020734632737236845199559917646080661940124697371111410255298485323312537183949865098306512555690491385796386753531790800253153957560566903372753706738341898873311187358961197031081172683085255098072371957224865140179250341036475463386621360982120278036338651505385183365243098168668119895826917932796061735832077390698852470516707973875373922706368376327682843778921105146626424314386221650480061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23858752832597314825888156738935513587435573269481879099658776948247536687979311228521914871638175353707896244221433788933752783445980850147585845644276208964298008925835189752822438843089196036162215312197705158258277739658369332510372808263186475656013331235912636198834724747460682654082815423317420806721644289130538418944907600128165407459082434269363796149992939983241787967695276685363376751597981254678011233198322540551428600594496293018678135033699116673411001436729128214627917988037791682689639767466693598160605107947907730937067546509969120981316711872786567896128526229649362899110125554130055877108651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361092804705017070048257891494721829444373812389150680689815186994035969786233181263822976886873408414623474845592309458944158007440180541114326361302743387944198783817537765198858560501647855974772303210975424206492475094553759473895073578882604055798252624018512008234950369106457615511904305365337383043114856583404116993274965921326281106777162957950073030279339292298983589940036683899123936640150757211636035583957218649296493151001160327860830898729016803305614047943722680415918082440808874410935386999190599071245933263042661556706944080765038350249957423385688340580370345879333326104783652491303499620533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22672158453102692646124373952564085138124227829438144663975388604161403971880955192729972233811122848329790888987624398864073140487199591003963674898945954821971769023674451278504832851856427990477741425705936531591348763058402923953366733307077806925207400048714477789557295634377796613194322614476728982859103451785690629011060205934011364190435284106348871547510003783536232613916368833035984121991361741029302881167897064695638813630257542386656799540277706298733900988520177598507481287195988815555759133476485400710829925443809760242712362991930118234663346818021819128560730870321826441625848006827915685657239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16437074970622955973788115089876465385832321962961252270093180649345001221165772420181017100140706596554309445603844003494900109190175642821085498286891562915199515108054574247266160830732724503834747508116183858605734961855212084817708292255410669013378591187288653705394751008917342553409095563427086754180156253006273868174172015556512560291564758371743013337477548578092335575674957234894865079677083448959705710447236335492409902262175164809656772965248165638802324006548624321110883379384514065820313228612571027795392750084170264312269971667956058305745791995135637464060248695640889089562498988069483088049601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357455901176753251920069831854669067311632580300342885828121094420662126032334031539802728725922143254108029174879706740593439783716375871437674212902962737636205664513501212457611252036099892485066868123934739377437366426397383561963519039133959864165987516249689616537418360511897257941092285410971180317251923629622878089170811577325789740440777846028579634229012842070135175325944752917455356107491973234792979722654991586066241001060366033943741815083734732497328550369920413496542836728210745057488861585328420963422884155677698340934674318827779505123660330549208858748521162308795786216996178635050627068167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320483061577462885747565363531453067827098101761988927783361579073034391130692376266961884232492300929879397401915519987984078406559449773245564263597547082570062114411369668059623711487896231215954860867887392010811966438762687184883796965328194945928697687921309572730270598451645339783356198133509082638164788259488238163065603477655197612527770784906709945242268428361690336500122617829843489611001264552632280234560090597540701808313426458545275183714336244165291347375928796187974537359734311094789832176877041630931300158071541631449502776919040850476034748060000265257066488140368215055510090456054420491957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25452176371530493692227879175135312817368762113841173553174982322030676010103554320957062984917911974754985038552566789199349886539939845820030310402677187910049725275963056706931122141525324181079853435989385391246860102543880281089803028121434396433342771690944030771553665226889358497629820298374185111602064071084308520277630674169917941971155838057250615053907319892971798062806810313152100490106044042123585219139962528591249927160628850419456131268679043500384588327331337574545440191246900925006182243053654887176453363640572379614142662903847243127823377659584361523614076695041593544703536014377074142793163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21043071608253533913074912456357443583946154803780594090324168808676791672236607448654747329607060229121299673597312678062567254190237580982434467220849425644751829742903531223196265370834675545245468785283240854778507704961273494377790982267617290605144990784939250627795607783427853355912517343359242965166898348733611133812695701255479009328522105884949793356101920275535679173798913192119168051943535390421897584803261347695136864193862168539578630178176802149780684225244212214738770410121516164134678140875557869617175304327285715353821669349948864787310607207431542997834145098947792616514463374352307993896353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16424563959916679270685877734912779344745280000885071135090796643672127522012026927083438480152779193245510553463451248442111788540318121179676568343737165136980921603037713527834217907228182490106591264539781504362026647454148826948964039193732943543443841812427617936207509991255111269939561626468704115325669285244242603931859211487808973644288973926366564329638437427440222184177530432012776220575763195046601643361354582432035066403454596082842639233604758199691495554774590884472569898964493666290781996883761044705958634167632597671171677241481109631894548302882329703086734153539553588487966136349276528630787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20279734877495680928632383484434244347193119141137084274089168194353264287741377426878106461623652013169175331824861645195251613857092862400526028935774655315586596975701656288761459475414633566986722195740661661748034284703993501493570638062240540011364684107935782908536405107869841647224130815513571182515932594708746497070167015648713607255744255338195080281764819195715928135588970344332528108715805131191905023298458638845938505340838026105929123894639802888086090126129367169239173688925063128512589796048384425043814449943520599826776368899990471519769766992837699508030948964120147404726727450510368172899649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16988053724581590348441948417749880323089611798622427172048375752822390021948070352688281803644563016188786100599905057287333242302825000180259204128292355792441819139512886990892603543309853584533657444721106663702597876320988790967588604061731825957648806174810072299308123646023679108780675579337521153738555185036506715638785918591147381672125735364661427998052529452209212821558736303512539989104155098640879698931175136607753517969391842745678003421969439843658548848364250422616923951895677755386776239350648983713188846365494873330470690914154943275163183985669196257537415003673629672314873315008596452560553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274276203763021190917660982086145525923308291181591405135275466896178679691547343724202904059172930128678710424853773943213918149771556718727979823875877293586097185884725161215580210726338963761121528485704993731615240723828668936617550677764396666792196637077869077408304516379676048017491401142278085920486426928448979498803487889190306908211758928821382765842387916164875380323726888863381322955859476503132198455905195954930502160744732741987241820210101660730925514647993862863531141654689994867490278476563705374491892189692382169866865440051801828395054042487946648114786582366530751209130509429976942863401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293041119301680044161026925613858520968592290545287478238389557137210229172397992264945972788335077960015915081656375979453712303806044832493549489715004391191205149236182884550034381157051273173324050563146723548045607383962721104643498113209130776852984093518499578143846914632926910065809141985500778130667448634777169555277961763722854785654494323889867964842069763736571973060852443476580127152795745723579705621395389425059224917328611338897557501281557313587024276591366930862453476977742960759154774793230022258254252592249258876509786485818439386693527902005785979488037169523636737886373867532936764873423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17585805559655257563351175185532085764619305713313278278929392348288317399366348952603944076128026679215917318585133772024691326944059516367743924639737778180455040550898999587610944318935386277804703616691559420340108169762044259661292503411059202511027126931181594193093346189320796009862824167437215880484806748139494849223386970265257028308883908989448122940453545283845867941169257611843831717234440112096212417338043878946672205527178085336208516057984248547732054529012938306697093338068748749095260325181013490244632591367443614549572845191289200234929932309466105607231018785483387540415220909961502107429583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "19707047653225539134207749559490892606116240369853200904998152699524965877087267565322727763923677899977521322711234360901663084498464071873307139316327720828107944942817087472860479332251913036789564705444282438772086732588590344259719866539832895880843408289287674135129172322191699379676957298164623550092358627762782405546270823966064580670949593215728854314468418354449760096833511659025467909886086225803361523405138131978072074135244565751675459578969768582714786230334052845577528425536355756047106409081184132309762326007369248945901861388073183933930554547283201457321699043754083590003472500712352059036593", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16356498367229674190529491774508481674937467803940163783004272228407297990831333952102839278901234832207272934000189660992990791438636706065352575327416911182876677237453693258197925970028000397235108804827053746590844723962902475463548593437891003761644849084570979521144914875114540173396998628388086865817135744701994839080984063270193279154164161424756132370417583771322547064187358284514436535585925947106041498987778676529612223086693957990120554907885482539112514622614941774010316077663440869277931147834432097951382051227499240707107245483222217993286136382383596870963958736439304388934525506389151080582659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28785697424236119067666325619278568992293011139317655607661867298027340897373142343761250717759401957446761892276164841964185994537049140280629583162481575411394190981422280890434498687140371849616270441323607353969727517015705305096873347783894712439033122866974409847923799898066219372667507013420017943235368515366683747504071210023879561043210554883794404724541562029725003986928680131043168819243923166129794011444791349235095793714512620080043101343560952495742821525220027895927101494198231830674640218272825750331461004542354491721265662896655544357149104053553675881890936163814025165686799269590851648931179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17096818840001385182579490374564075885228656363969787068027018681445815637363751388647966688108306232098074355660767677182871501088987855491022202568621291125260100055059907553957400519152920015275452606364707541988042146027171968029087260232315620021998612989194823397875305127206842474566892050450738226563904053550692852309054595891410175986558526189120731930500687628549035614742294121921010129305747676646974076702396140635762011458660730475789159176090922310058118029957134668927546477436977196706625785715563205211975574476543195128245966472720690459907664011084502339079914185123233666623466163597098017886971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28852826658572237901721892544185751215693214540646415370173835710428980543139835464853084736804268694170140598552888707989845778729353074037730958489961278139790428745814747737693560983351511072544822397543296197315057363926325724547410292964479864857420068254881627929980764611809540758117953162175503644822856955961292062911842969870542615969764898740854630426026279940881891630529989199160582940102326910111542317418332797594850374906012235817377291186905614868326773553817722549784018999955856083422613359447521969556198129991215190739170795312476743846130044372942713115614725817489238783327224741978728406624447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18297527161646776690786221087280044096945171977902027709542729422598173821869385695113090541781287540423579742709478114088310171730396164949996454149009188551363292085480070033121353362112513195723215879618904893019102620048578289151261355661550744976317656623073589335574557213289144971708263834752997503332744321227867480517434943491390659451740053867817032726105004404772639583224757630299276912407383773953060134415801386613084376610530302627715664059513512965757347906074060046529850672071747631675678252579102916743924226344959316172671846561017253827427456124375844307684118403876715678423485732599484817548127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17545251762197345349900831406965648063341419068310738017917370183151913176319857656736372514004416993588499952172752262143511801586437644325605937455781883242849029359351235583172470619273176301426024999509174636911585223820392343369340284140193239070596223854560656143610467443362607515869564712345043651246359816077315875337324555394006884334412805752515653223486795673225556928734157122763231403576649299216739247905905126579222186935531378548745737735126682491721523075747443328499876372630304006573296298252258829473808488595037799077934157368021101649495126434122151540163017884394950327893603092527340617115837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16848506619035982735981817705900011910674178405305229961186939297462925601978611087993059142556212632638260883725667059518366977469697208451637550003820461123687946607851202106892557873345194184074606438370037825734051460134653783936721423210731421137505616664037870123721934790247053447926975873393464878941013314569314101774615855295294430093043482641018165051667928438668783917215999746971701788511247924898620066360618090216441816610454536734324983576497360292191686407430121855668333134591074043268066242211043598857943455816073336407183442487342071017993807703689622823185114653948611043001399040611374214304561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385997406031659848887069773541372114744359670977862995860561601799809141374194358006042633870430708335203768078513901057621328630760340688853422525854087619995534805277203537484890652801690330287698011901187527815858877495333587199201456584746926580602796676272667162399200259154509558912980439994766102690793908670047400809715415817980694628654888751853460336988080470399590539651050215627835813245908619510877911795566792612962352662426611885377366529433270154485487922412170434207004348055485252518726586372652971712934432113123935704629064002334743610646411523142241134069223990889953993476024118837298031576243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316480585210970542058271396936334634149531003936866312908883351429246946700495098765229582763818903257261819713218751755857049738827203243693987079568710666855320057888470570800422790332572366254765791643650148503045038605469777833905515400892596931784861942062142747346205544951961849034502977883065640723160853203836455190797277660789168085101005514513280154207160530927094595543353785853525373190034998127822427509564712421660046072737700274501932580322275892741160953727287180075539844911996339491255241580948359629145800645440215152412682414806542716103439453920156632210713290962986269969034910886719020099001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17152503244020923288266244333602742249657954503949043367406734181260649237032216795323715114781902273155944004043522652793125981776766524678364408670262974584146812241316828211804072357488998359081398711463583248527150549633624741926087083649148039901130352377816014044628030839701862278768558489056184870485510122355478572286712510778860637835223495505568411437068890084975531363447795582570359153799390443094635034136569287111692357344536871947143127084683736212600037270996833963209552399298219710025240675558231463315981026223354357504011036448090616099135425493349455717129716958199151889213484489731516507020871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25386220127803751927277684754359469879220790041560531106957613045964626261279001126679393109978226475229475814477995360427399588027593337828179435559965397655747201445570261958587317839540558493209452354934874780953334429513673123965708652970334195570219412875731604714287858981306956020174733091009449017783323823150509254172153057496940200526067033655706832197219748764000920797124705025907886558686568243395041195672478380514839133013504824210913025370817549892213867577354825694382297756535078263832539493889770306007795800624196667726001521315945799430058938246240131598899770095997431579382106907439426900740371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317433129281121962492175571845790865272186406564077195620628450708985164188856701248055672833999042951171385154887884174232388560572144568131950157692204065159734030640434178955352382001080085128746670471563274148579462843385267986789527967071297530842563163099608711512289086809019931543583572946782001819158374801552324527073764564457603325277235615777871493664780363203918628924029042589008209580255906754499640661313624298776110087393065290130667985363885989649443812023639634157530362024710776432999074079225806708190077900700601018087898317093616800049022396194850279608266174408047349882973617690466334160919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18042182532944922821568474244594820422056733269520149972607417986837650609241653542797691679540874290165118735754094339602598921217641983933960097447638288985801692025753004547656948612802132728420310592614402869076077195190127075328946513348099165322432205203618927108905591490786599046990873558952376638734236669514932407469482152046720990811741091937458599585414846471506115820090676770113621260016320558100390067576253990554294045991493161307098447374668918758534884780258677825024622750768926103963506153334732946397249076312172718195645431122720484562391881810730710617992702059993332574539705806093358747266153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271638132748653675248661907586892712571805186405856326463519983018916654827446004925262232224201703784801837685400072313642358505464927061543723698457140904762344432504149719233643115316230550113976396334960240701980020509682823448388751498338586207454141980408778207434396129810179237007641486877709854515642852372913559010104568037667193358375319464374822806346981453817618851700972805106818658514202786216995439677478711343173110245683671726182642971282380490281001451346751847776112452876005585728704428778990868910091277264669747592055697136565701081571000931195667180576042798624319318939202096498780123149149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24083224750600509176205868385385792945999059792414523378480834372404662604959217165057089861188024353601251680762271766329486686420352291039103324544305640125046837180294491128985932410557236904682716826278515569569600665972991638535537798122373863731588274854483742068310386112285805231443958324170410312708612433668322401929619012518256534197461541889302739847172500329979763675744922940609001675878904467175296115431628189615829232943177194340973678865567922624330588173564662963625117882041903519297534869162342438340398069583724170727813405152584338705203491983382224985048433788121968287934797211010979641168061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "27691539434515755538746168516476549042181239035923707638745503937189255383893504932005495835615311022680276778431324507189418649836423990838434594804164160520047090748097959030663818162867828413128730568908986432216220428689863959641175705550170574723615552152831833667551158776170093522230578748765887764144339523846710568269720859924425467692552804326118933852155051258612656217834957123695454850117664158478374462296018425022330791333233669662500421335558802233380803160353900101752556850839360253076572473174168489330128895909656392011960574657856717599381819215917133597308641464233246019848338640422759269668823", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17551029344828020166402835581319380256078460666515129555654959197869675934654846613562648380550445442066843530190172715954025106279379188268901536140469625189416005832594687180200426045357694136547641785880413841959787453184747279789543606832793986463215136311331140372820160133503223393379201520097688864214852635407716617294818302645272788408232397516693495512933264962125155083049847371062696576915795167960397009597540426303631306951178052212451084017852624512601438074647577272004042123293857190381264364846587434677059752672695611864592027970738725601252990506072378799196602253357773544981376581770487062356771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290996768211303735798413647340130580723100764064474167323986955309632319980152760134301314677667832142236163556178601641353106230349484830215943637242795164615737074463169133027146916399321311657078893122288404429342925037958225278651108578896727956899783431096267734227695559760698088344116297643513764885715884625988104705485501705181707028535861792037054787003887808551804954185068216535575960841071576704895924952230522489758771035256687629488789301909778542093923871380165495663839257363169924949692744934126916329257689235749883922721949887570817602491849713440447811783281294623847392355033324629471642131209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24682971393428529749693584723344662800855299800722994864837935829745719240944563041596147987103819607183433026506065344310141997107648499746649156930844065054192308907214378484527693442141926278487330346805734918226303530999419381469723093436608588291125665887539356530404459472513177542013704507270220412612409745432463761589095763836813636946502935516849158952866530157444193324173463774788326160613866697240250719024345978047510886151952781830028797132838982277390788328722664955579079478098260897656542626527336946968745420564539206317517800006366553641666004811612053104326693098192546762277895207849629263107701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18473072087134126896121195831782795439913502281054366795777864731416260438289274827739555179223865645091313200682400380135627653379967667120755556854972394266398553625354697053255463437002306410545877815874828772801193983816841383529320097795930339650795500975103198744628115625259819433206813850648120135990016823223853861776479969139416356945069914532259319466224830333108870289090501086300715394398489780438845868573803014101460331682253679663571155572086316360846921373567956382644833943378554314173134013150660382565535674604343700960401645963223537491460853697467499376981924094792796330431081389810232760021683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16387287123222678523379203790544734093003342326584651789427809932145882537449812720119322755055819561647312885655790370899310061052414797528892934173563945926509929910469820839418380782831107242420925135479151571595520970875166073745417780364964109597680538043199575088666726724112163072454861849460833072402343096039185544527817495779993422007114938775369310586282228574791761310446881608783577173919736704921229066579551235901347835925752963412669639352424492848170101916813776142552120259639004184694720452231088518159101155002693968625516496617977426726933903877477484923736512408296972829723629307054520633761237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16368282861625798665085753607105979760030030878884099083876567604943683608746542271858042829580076310255234359248803507401984391645734685437027887843746757309484206376966224708987546472863000938459394472364155868764211428745820269619875004400469896701966662745461156279907253545076705995473654273003180594325201275118334797187809172055877517425731659330662165377628988095416498843358814415467774403380289230142724994321098944226643253170734933345674865219481536418018983411020762159208735870791845241404566335501124070807575984549770058968419631143851696700587783161003797852107031081353910056187755767391745521287927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281933456813012912712490765198358900172357472317623506184661697150820053615242792027681348724546548102005536999041203786144873807189960935292025158018636211739474511481345761708995451698188472249596506036687011326494994117074477668845732896098214604684949045699673808091061282215336645860747621780879453735357127654307709570396759578574362993266505566850755512943465174379677644646770110321423597691657815962841767924025537632935312523363691401026812808642970614729963650102792222598068271364960541172212453324131315721793680775215140605162854085057884909296041857850757952886346512986524525939144343321237379213279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20386417838246591852456548443800941299070247415120722214015433918776335411731812190910396203038929542883730743650102405996371812928877150625928437193983216179020088388257007809052217115373589108746528865267524902234396312863869250489491708567010186393132344692380751956507831520160750757986680163351408538310473468701238861180082179145555322517503434405379572044098597875991981025507009728767492376927185164753318991909158739464924214977865126839946896660381676096464788784794996485069765552578307659104007686786155491640330720121576808836805273007597461914558445881348515812602146156422013086402191483743628183840363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266673446042194702978960104025542982312199607354879305230901356159871918230137486982650750572198157752572606437063594322339585072119732870920081884126328014473947159468655569197290326341747973648160121668610405417842511990230582244864026515545857335669092657886560224577211805664342798875510626043671984075514477856909231416081258000285940580132878695710303617053396919722294506288672257844713563036117268554799134710116295058212424329044485198525427461979240732866922901046907381402199859311801566904011876422304834247034211008820837507986185036326541121876852857335115703866463013162005866665643453450399866198687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "17217001202470180765530702947412558831421490510980010941767832890081885746485812191951099585399401499593209648367566757922634056455144147205310026889833218924817054330243882249197037243627001475908954545424269298861325713771308831667543024702176079736431585658434840529356983942192151795466214022907717424675501133252743584714552188360337673807511633940176711184030986322194123197258904524376235133407295104731966278917885587573736035386171046121621810339860188868329410615693448158854632671711052021559712685408015888965870397767419738547841494735336828792411112860421869595743502047797889386317950230960626137617823", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16208686258987564363303290959198583969534605834287790266841700680199633104215847026521187408920729001811778829189686634667638633966785668919107974256251726180719745091308593380332720378694352807981819360135962801466887955808645610445882995348585155401688504607491971981820459267916192343474074190057585686976247398083048512070261648485551294226332039893220605154154149112067295090894338728021380563164055160882933952300558810229303579449064374422446755843789392299609884987871627380661803262159939772316168700704482610134185368614215806292934130972222654928726008990033954923085544702567479677281900646574375139482823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25666618059801488567619691282185301543011455796386775269245977431818041372691484462413478174715487760159570605452470354616714691381840316025556457664773566147134960589446918683632957163683974571252583187789941940192198056310026942482108393331292635646918646573257606261691152638658418780374801908838312512427364461913419046603679862305724616054845767942407401588080701877187768165978549945233286170998428803162315201787433803381407911632105706611932284981889875471986854815843240574782340708105568957776800808791608177855203686680751290368612123589460765846951048936897598007588079892475325635161035254914503106336639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21317045923094477995154106611599834431790239847590431961935103621704534936431411252266723259311635235121291434776555720560165478614770972777771189557915965438345512756348022101137082113729118515016379133839414638153424826471289671730601282035911026743949658191797736043317085843433562297471672853197136320071009383387789243275537776387393849241959171693231492627347048607597891333443573666358882987976712002514793054912620649059982984044934073909621302857274389751381418634668911149198937319320369750311547204201916453788528773112071641037356291170602161018126188131188147041040662352332448705179460690024100559944617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17184092666025838005071270228089687210415365192624849323417757384176074479543601635299843618656841951415264214437806618438757923101930181443447567913518830770545299445645237903051804179234051759005221686723915314528107988820785578110800267013595464751674397607888269098694413992489945886454405783143178230386926638510222853000575301181922512425095830044676669671453920672551140724747475028111540863757533445261805049402450904491383255340924947667931188212490508993383978455902041581928679793222304286326657392062355280665940841950354858488109186746163254933174655234536745129637537035288996985214899430292905541919869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28408931428784371062468217499569816079576728191440495605884930359519190315978774597989638998641311757855970954011413947094412080145764064690293252357645174838199782355991889205568559744954785524676179786692828706901922088333793175482783853734723120899570387216925687603503516243811197139096602590718013964655096257954306476368189466883224453668692633755518741133008434181105143291791946423862621643535353766515810169783003172043296116118225441593448660043139875797291633770359359415094793837609229858725668733501554659002892816769405047170447755299962633560030926610305694298879850703998179579696842765525560081690447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25793046036819323212359671752076372439633987133080115660741032888600949527811417321241982663892921886200717579066313474340122346522815547293998860350200228260679961418841062103879443615727887944002970624770624523450291730959401282506247849961856861816697223652010845904645491342660252656470945791679210894940105572438529270099739430604594201608113804858733652156567520115101420231438451664708970056053592115588175270074363235335115037120511298031483010663111279923538510041849884041198466587535670308302203901898340348945491934464308308869494393922267309995797713036977770660961697043737826729619618038996056149967667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22301826179755678865589160710494369804754292412197042860997000247395894375982889164991893338386913015491522657516123229136540230575839684749993888223674633038588165242257106238544343901875954534440049740048082281316352542091943568989127542799147182230351252556731927681395305357295019000272131651903203710434788102006000428712205587100279124606526851259916583850601293016702851811898456198423032422051151733688908997896141632556901815735539439525568362153726539194786283834088058177550467968326434368662272676779480839420802000766292105573578134237081946485046531841453856052731807840651076978623720968613117572103121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318714747443312518294205903858551859976312814093767699100186822648582933296821666688908879230627169542746431431934162192497764602576326460222692865177840532862247469198745941280238605131293123933224853254939835197882308887556563057785241895565062634211990029260787658210519441756319451927173833301668341278749064368929261729816902309557668795167430512469407380793436705508639776364423667061062523224820707893140895509424738159178481079429026089241176267009530714747410966987049169867459602268051102555450473408500723782574341607198486244448432124774304447497653629520235093148577381720664476180284080444311717758019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17908118767010631443308049534155477084063239088507721965020110559056733471379485102789508906634437104444531586678383878351969361560063431557307052464277939210508229980396327727920264141819240667667824373752591145819292657158747123233207617426020330373409790791586182571601316367418283872620312500387247244850676265691744746339784347774166435433073417297092300380689813890172319480925571811308134923280257059067056227383474067324752296777133907920620420745351498409571475864643860185344052539599334154431554475328056141620584004207413193483054098999402038096107421269803913044872496275558001392614802362378965398331787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273677070984761824512555261152586504899971116708028232509356596409317279243217474159403905786161159254276069144039689570939770300305679628124243590026186823504765729613705940699016539324362795270349773835410570494045671452692630702237007959908172591995518597010335438208661755455851574452048498807550503728156894559202735886710333653309779779833357062081091051577296741185062916866410648402954675589629406996340143119002503300345508611521516714291872608366582315929865261156000354975790568519742993927562836483472725654243743102002001741718536976046806047648685766374812571079374209082567167339410228902826993066283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19485018870318177469229877296712475228368992387818480564604065683310954756254376445199493361471201594723744654988558405429699369681252603031327767550438274472241202985716973793795340063522540994960820298136949777495829586646376039664902026691965257005110702530034541369324054783520145399739323756341301609366838012422526722340307373040128978285693843670244941682047544810998381595577132636650022352728218285936441398977990156479364052299911049444095061882523121463898080840994801613410522176242801660542941115620474092282175124644058946166649339198320452871507187169606211566721875301816180004379732904964582889674317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21994402187687510961595839514802751061411436260908381152751395609688037546730980889738015631873565012625439752674380374179650584334342082511427081846056177017259365474642132516474523646643714929970562647140465112291687759808810512990893510605617128657057792490670591446944696351708690545882090919913379130093045009100510602115749534651888772258519973058902875621553606381438984972659545066936670566390967934265088826778496332316735316732845527101869554381305138134615813849201821391736950432471580134013652716186780082901485012560295993496045602891704731080503067284430850297473455519413450955274319627527352445707217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20132088744025729054907353853888898861725748004610072189717114571610886500891599599128702193976300256798638597528830021491204041418330297320058254488604658367008099703547168962655026217851195803373606027054398899154594148159782818250565400924549155423858958365898163237717245350169442962341689333957373634675672364273750930553607555838706685084411817260975094298795990945490659113261573786216404204137030763787934426199512053364595489924260162201062741010895115901404259859816818477645350962418956872428306494078289860646095232294506040660221894034299863453574902127939867325235533290123293603898039338642252341862051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278462458099543406455562984507160964164723992170605187599313735065115196232432622613997187674365417675958131490253889103789942480329628331785649973757013410324843804211435431263794971433215585442905127450404410815682295187679364440079487340299921439725958735668477029221204647299330797126731735146954651172056273180282015902562565909690700999628297482773352512570185509977876230268969160912985130178295464533197480983779250278011340101394750597223146543655081296459528145237362301677771336407733324558137310835140489028969593273414291318020741333043005379699851357914356586422260020994816949296075532227519110138221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298217576407808001977005517540023825458994788738616531044219051891896051379139316833959815759339882219167885451565555316392312062809983988931933475063836961615467295010081061252287758789909253411722068349302348116775628780352980430594247966106220166320804494110320985481525152208898687448518327736992148365143169296422412546856541649747521621767609290431450553745536474249605805930482260861377355211437110659208375292074513552570194411654544872793265969798935765924261179124467661073615369040855993919490358499891336161631770894943974734308647943852336179060241151281171120731807588175862639092617083528425988284933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326870269689163607502652959362071557972450156504893173003395279415277439605604309724697422132130061972148758282017728425758297794549103193963823310937607936830720641280338565120583557132290771596532284394094829999936132980753326951366106746825862329427060035652542249308761775970683405075032772794105974150800529319327771682911490001522937918929384393322612773090802914218278028863991046246624311508130896232859675414617165309499510651545938628755620216590238116187526932518502352791116447865951092762616149582105215143964641332681105207242946730858690904871323202196716622158750314734492929321685764135864942289917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23630996903304824478199525667477352982747934155691735227021205780700009091843905432186886439361492589182911439294474252585642499879479982159881787096474587715298795540552210688699187000759989161851610163507232978987945035012650702475373050869532402450277418306670285190335186266736889141442615075254910130100769595326271418090136103178981510925393967887758095261997809388338083230655555534915476057430960600915163463223935576484749796841607244200290304744454741903799212776689962893277865074126972161865142689293966220831670485482102854027930226405616742217382216420129103882360180341215340902209162775392308707333127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317986674748085908324944197983981167737426040893700749257035218942430080947610869365822823394617905178747173650844858598058644614241137132071339616403885525238328595615877530895353433971795614092807457857566692088867704245662944333151851031285620460997922553778187617955365731047340165482783934824114108902302043278439870922004430045662941272565775557350260076213847845508319134397404579941113213055142483943912101705958873861601870449558519716575951126849230375607939985043176182207041615503848071055915595743727412099883690950725733050312175578191288904473069176749488410010377787805189752378534920232026352400013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22111723175139210556046285688522545421985807027543707214430183687776579042537797682506163995186626131010831153260990744993383663656571125587309057359459101643217506487039872607391159684817492842879326873975498594353271056676044965376944358308594134717589227082879951992491371913371125249830400322774970604819572311361369085995891545596905295586847687213263354272621090758970642440762952681083409406634749066026784891790457705755402013414366290719594748761731157285126637261737915902590599287290121757878612050585076121825839647078829821549361860279203222220009908781070922986124572582784258344099816509434037120474727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18169550433397499969191305250465230848000323155797668753813297038395734946186150967814100606459198352044350167158186327826961369403115591472011500299343818211415419091084408451682125248245896945045899932147911849361021320883610920101742605317629752731816944710070260026505612227725066687269274151567608206341881819633046941934597023284767376144835083444335465342945048210907348501822912725708440491415076207845154148421339736766169410530659471134027022864024582882412291694050137770262831019063843024721955692867667320042449264027146063945546757754192940477949221638680340208263641516824833137250007334898619866541273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269538661728579727377641133214079442105244083723742223471214304355239874240774197978190369333749584581447314878488044755472870881118203709377821442846053813370236220123220852921680851556222185828769895529634020313556437592005149269207867843867146642073190292657453885837074118811951687364725324338791586480642175148290939515072967614742535391412399533527672507525243109640963055474895359844786165046348439385028806562143868386182227888804127728905122507437988064305574720845522852748602473581706045856742094161760495498354001922547203885451907355787559785501677352505749067829594281155225086875124179404569030073311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16220219236523669434279550648605113346999167033363928164538337642168600399535010846007737480584452305997473222634510308508114340575663057426682990352714741985698957353876975024316490756060365411927529837554243513785794320824538452318093898883666571992129655759945081579489483779866859175894176720547264357081985850015646030238023767267304946573216151843358469689705288322894842185645199952958852160787301866952122054064202283243969706223063352880996597818933848275338270937362901832050650466068343795058597283643424013923404828558380525943948723507605967341657513326060001914522594322338903415164000949289107287199051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "16173909811200568119547337784355788177494895842677783017446185383391162794239894294744265971731462058812707938077887467285918439032156302079340711477214719285610231396512461032685555173590444114575236203567226556059476422842042657514042654300698731511181328365541937537825334983897767241220338206136992883046426558789649285285863391378413986258983573244557960804111599791268663457544291701216272322406271577624628127409546517808298322185441232950230186543332035523295019539265475426308565128514647391641397336491418484162146106740670982442269427275191535140216076759586745152545844731598745017501174524931930235392903", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29778386979334588085085529297443338961461402399804649860004413669233672866996340108473109457972526191540279105149196560552073703483265090254737002592484602919171490511578644207154524600902296714948561800172097611312527883390626946903200028270086934504367468088391828244938064528775441549633269425178837157425800215925727203406912842249390756269742711144524059535241939976108936739051896203475555922199635102767038749717209025392941208042266626080777837873766479357644587537820152406879649591922049898383415492313363703521968539526350060441294424305791282245182912447423734763340440048130112838128048047705314663668781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277650175316309224890660926349975581039440433758324980452240201482581702927007939775789301441883805726727812925627388211096375442074738382483971814951240572336886066248674938280994049848102202944742067272752240382563967534281413161492763208697202328662749702247400211497068598978676391482187059699632720714075703297934382917861904131112892199803472540575761572015938171628148322225698122154646923465032467201117831277106737601642684727316154307484772107760926528925867303174071048339225210990745272704273707120535638971181102402699214350413435729577082165603772332338989897136242503062475633572120909420697992467843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16368047585518572798502071435719054403007401409804960382722183733451214548769656417990729774201846561527522835175764973384367978559635191723041453379360079035356402004571531512046241723607105940311036385457912835906989122283889536297512803163250737042805841206749666797726455282397579701394888545753886528950420440664432833288611605416516299043132342290466578471034251794788969047564895230688982726821399322843199813107153486552588714429011734716357909095673579519701795230768430109079099895176097043253625575744526994901431753292230636725299062118160453590616330617886337840047943408949752029557199937407141157916681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309008614066931933867893431687726291855463208883957942582704732913560596062233690182581842750617039131341397543749677581359822347079781150000734494092360827590244310192343397486073930759580548184849198012546811619950641899237855685505899369964757535770990372122142881731062460504041839149044458357507127006154886329503119943437020110458383899768311020750562864149975717042099576366234145550838802494861369065013666970313700403993429644318013514077250370636480729445252695576100077573853366276192198715411429267721352396035826633900429301652291638554770565637625435362471007113928495370151026089964817312769883839159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250043665709217660362490250067756743375190629287198871304611463204253971576358276551683853185154188818136047141684318182556809946891647450702198850318926249159634701822311648384373505887655553624423869502084898492435780898163269156948548270201696532528432846554330398273251816416557073909088108613492196929478219242328615694187168590211772734013430677008621726041601493760216465897030495529110664662761046126584204664683155017411363020794941121314544488254615512694106008688513620147261343632200449625418237129934009613628543566511847922940156030340508768028768601853512465606475706368075905087511489943830866009673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16348191835579424897567565304542074497293136338247360121393948113906745922910270256698454364408623123265547748642677024356496385864070641220940393514466363240976008395462903105272281962116220481776475901630269749700002283155479709948285653393034698916783604443391307757696776382542066576585273597319913192850477577142277588299103826088770672825507582984968871040131365439686235198041321408255615863570303461364346303499175500200773916584420643559169551798110997127813424361939840848403223189809582161688249319024602368424510167369452987377031149530769354260931437690537816873482053551346458423606741094120890872795383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25919907708320888534456652576182493001191895933670146880028661418951138688447562942032591584430052509150906073771381052399314824380659420769544467775035527705945017608796639997239317386685585670748808765259749412475147409358476710860524860749556951158181572764552480015886819932944393399296751565163598752235492233532734393161783196289377347991862094906269549329172142933148387701298990793942842309886473077089513380140837350639856610680856618397544269942380325768693669638125618788391653704973141194719861809862821778827871671588774543908069667502198789480789587535720128200212896023163703270593816372960283678213819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29107621534678659675705944046012948595645275170887886292069446825582970868585374071227697032598459972135636028474052867766634923256106881172937766164426375918607989231449014170025933449791824801966685125667715090702090435622401382992512136942680659398337307047492442924606769682753270513870993751888184229395664410382998264035715422068732668611647865593977105063368681562014210568819043520312985726480381557154715615167010445931888023838135631153474877826732058475041895980689047756120877311290180292822210732266080919300678868766911247140678392079772471616967167212809856797558417151917193699322311031189970852082251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16223277344064385983883816367330932809313400651536388207611777531785340478217916792011215303600610746314786381454385210711140914436341442508590857575594797344892682021709486936219956409621017064943931727366083876185639700832775830871571434070622686795913439741712220564294052105766789253120123163904786287456575978750524985038707425753947443214634349407614836304655637112316728061822091053648196246046786586165002131432904180603375722426958266706794240513184957037939330124100852174802946003309661772949413371387217169186157218000896062657066426197907188148950446629239483476267676085961593583637332207894182753693871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16376719426772778853616193140569077092914255562196966143750183069203610542778047340638631725206933731214294483291959646771437649950982107009834778963815918774936104762029349247943432655203352366716471020670416652935019748330563072388781964939290571112010201921826602794282696003166424224095998467295428006732866423735200041618624282223728474027376722855567809713926264767457710613183847919054439000271825631217914750685805354714021589055624539635843987060029171126345717902841892635943836594735343084463266408674965528029264949464452103536932583079588233662852860406294841433523810634908881222500966172163628015388287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20602341198341115804321088225862345948763323207009048472879715365999947815908587096718396100823106489458306952192435958835412061571483632398930865307935742989278720842270376550766037505196937453672567726936169800493768359638629461059565427821307617912436673978104951347268601807011358302660123690223619529124810322264662623950792095630376130195148045781605063328144957912622703724385073152247614078007892114448005667962357871933233971875955833884274653771889998417241131809371617699694095361743402383730795710619513221899829418641042695737925726671063951465008554026589218314670080146430886458318165814525548534035403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16363780700614014301904919644081749002388760561776741027280088657052339129434772045195624414292416024250844271441358635645683148047732671072154230390917774905700847794637625090270576618218102133362260511425328869678413691557345282250014324451563690910195554554000366260675427416369677347459804320511143394504356963233001987123599960807630781865017212341190152420025751656324512131488575176242952805474974669969979990393034826667468661664649001975691958490970392974140956407456991945069244758681001312992479760078608988572114839525929493802736864669841209461116474669914024003661043235062159363580489244783079748813443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18059423040107222516698763686358906197663572448273586747373381835215458496101576700803064778290480292060611203367151627711893107536593930129376564912332257863567505856387820510508845629000305732525295150763590015306760719927167847636043212594105516295492147382773310357050821196806893964342974909162163447545585675891483748840041181584727382777483912392137060423621074853382286334117717623062249629104683107934360474856826851372246422138380078233392035648966595851374114714512179516174602542979132610322808106707230093328160893657640457597650932369394225681035432566838163918494527739408242958233861242399456965574279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317882325293377791086248735781019755410326900921365759133222448961175150518135710376849932844119602302388841868602884798270187558979106767517104272508522865800398309857861496723420351908038124608593819881846477233792327979375631512542075214418159090886063428030063150721599762536440757018607229465403053028994844561603465348432568184736949917263033555132442945548851730926123986321304695923556987404422670282188625729432936252117082916724505143162807546045368287707116249609226015540379860436763738416563451995779987106925501052766631487384428633629370800780184512794709934061951758276425884059164014397402102060921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24131341911376148576172733058856356219688942168204775182846875924411156867322546062132322198798080786948614869487679400102858737792839430660779708293393915319782324051008734007643947281060624146157635566564933349720458565967703648759387016720329205679167927089588144230273452414112195783595527185165845446745655300864871450944891463974113913989425867806826524454407898394693186837235074274236569616989190636704225141814136854794164351702477302474878298037533634042614867351198076952639947253897443110437620764177425823734367312123771235206016208697428376681203564591845367973751027790671364507245349447534773476847469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347235476285784987564946007678298458142819205532439402277193657314494379087150039881791138615304843989746980991025693914581432044946639277459649435070629942306178710992776658715424636209654128489756498759485339625897713107122129304021561499988573766700936276965729847610122144853866753737565607319749091733063375861817021262980141911163605106844387851571824367477945534698031090107097326618295283691891091040452914938935750123384493791712060823236938711362122999402242733126968307159283272745676425477921434200269088710145762315081514355713930277456211647021687141034306584220779059697214871728783086143920220402871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24605452133602002060328433574231029165771288310315813637134423178987639580256943965352717952331916828867495502391353963311858783707027814622507686449251745006219123253489263184029288097117728836622778528627542570248614494729510716155127830505261498593459106426525201062480119517132283436523983098715889876491951560332403278588976140059470311238292018415227453593468098995114986451573294197720919064057964123276762365092414223787413203436654683084190269154106644962963656565338158004740636058577919519440803412100700820207890181382310473219338706638305399593435086814844957911492736797813341697699643595590978140421909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367301815283125138026077213375807898647887125277962244035210189487788669388579718596729194931776130165595045399601266266041182944790097997445226592712205822607895935026319648103708201117054104673242994148949881372214175310646791398539223212870801473154070615512716794141257491749586168839434736692691486777968672328781865529064550142842194860347567376004087186022151350778004730308446194415065144701476788845766496867204256269150692321554087886604748501942603512972479680647489924733843721033203047288741742655644326101476756897624319238036928458637680744003658666070067222670755003162069771057466350497910048329893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18047082119910760040020626350079785894794358119159998398400605921824218643914355495059453875590493565998532177240799376272863726050650276675111343909614169033438490430974038150849604313635756951389694094937289380060260779486195125753764361288034757395920551891604591229381229873264226593669321685125207121019471028711603361366125501660981669585658661648056340904084412578883983378222542131620467053390872583004087855226201032820470898375943277342349323922632975246164621083929331312457899842775613745291645915873596979241622000530252260448624336133759750250649292198208731840931595044441581532277795728121184082889373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341234545778464497074110562154010877891788370087292686468847515701070106380384694562891035921141254808312291655575631538643875323668280135069413293501708458825668315950027956771773424855729751176557332471561711905883190129015276015516595145370867384134393274431333854660295224666872102076475293332642078923624805041059948750867883565775228989788515400782523096494698062199453841912983080673743104548669162132995689639619253638023268967068063017964547904094354268757475605662295472234962143710238500156735472583363013880658552759591049843095683347108545241278024887075677782653583243920692552973766804474422466843657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327014700536323705917086568980570589546465914683111721920688930198484947278275765614094139337561307228126598847430946327069534354292932982426981390888031750872531878994629393732697866842782841208385994803405057212987210270537826890359575614529088751026751651522270204580222892330217128486236845633895818385223733610668531332714025146767075370926583683060430364575075010015768435129111720183037276029765187032006828404256365208206477804302067805963405894836049462475957687944842181352410226769754447859007248983970517875740267056425142336488712893756049891528758352011211148039525297385019830995953724142651434889193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279040575726789406389061071906888048753487077462113252715678399990547592915206849480766886024339517516695211986818766184893264755622424739350032791003249048239814511407922298591598381953517862060080959719063486712643568117999102041013277813881021019530303375273771982584011590994240726151179627539052737712449270836160443245981084891984736894685527428398071375407443049204073779440581542095834177863557949362019057431526479666216556092310962120460207610762130094577449072684717396452891794279901467686553055793633533666943961387368261096909675935774972703015179143939153159784783490936779943316492265497016271580531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349793240742202623970845195001384886828619206123008229694877858354375886721025413991556421865206722253210341944604114684049317974948653654113459239194877069930574250666794639008940081037270597986365598233566384297242860916898132525760658134596472612577359664286011241028764570807108247763166885340173208716592421155158379446915128194998265792595134596117447331686529166117617651415490222080850868590637497558755910624296015292197734367722321729801795875464155336618602559671396982860822361191565102228651985726081712335539427359220242357499178890030859277591481132329748249009569930720916946441110587076153959080469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18623833605297999616769701783422643298107616175307161158198520535405912870641999708549591435821096440235611028524905310494146822911940318491995103819239975355570355064630242964168674181237379674936167559950524864973059031889090755158643251758669026432760546248190895191125848642295764235508949575680811348453466010343887838977888147488857139594867665059453740341827887630265076717211225626981789255414529716813746335009236337312399506157327806978338444518131228265228958638096817895465686384581942359704844763363711773699050714545128900041864988628611423516476715480379665284667014382980368055517937128668478087681269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18930463940830306215761571431797146427568044541834335291028976298293130280830746153066298357931024615217764160902396829328537874706307315063536551074877437598215093944715431123587835937911879510658754867554473142212991573198801334389045359358579183605106365448566040455576855615854440195163573211800847248295748649170743688944471371465744274957256367062676245421677950140913459582267870808102779723401150957502467472781314063781832251399860602678954139404464695845769262056241293753369341566476775612381983474258526474493606760204980095115199417316670863048812011691549332220169568503845606771229556504028451371313577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24274793632220148022775271351503524035261313664904330273124306761449983345613738750895448019527642130493520265419923198024962621111352568776450053237429655363344036238333670868761924217766842040162650947510790221976537936934611763006450216612192243475509591578721696019018375804193470094613826765246807460081415239608188160696692871619203487108682620123264301999405339811311501039352873486169560637649515548271737093836317266438093211120964619909661144124382534579383840347822050724711654433307026727131987474780036462548334464150233639867723186021358712411890561060601279459863752002069331897892330144527805589449653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16356306002231992993366577123318871639960658208664651546919439058324547863867846193807398520254543139762823027644816786406991037522353092837944589160828181676810190926218637583590505113711472748019703321982417434245065263809102360062742971434179391701497712018233181030413892698041125728338887937829368953629367439237470105682754980909214631687060580964224617976240568908393299992003214209801571411138699835291787265308410056107229891966073074505956063747372738128420578925161371175655000729643790175661229604062703357335221876781536873421714588865556696490851322662996608822493076200718062079017454686802639976124029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16818737038173488683464624621233307035552829651455322712392059443279913783773078253203113977484409826515607541435231126918851771783703765769854412474021839757821754435260816348545080014656981527240211003634131424827871284742584791218214512803697981195683904991532083205180072439689224331259881046664139728425505691561327730942511638801609356478174549413986389506556869509213343500837304069708846026481640920040126328423797410966872886672120038589114131626572030331692178118005728081139389522107354476844622935674692766202018478792001475668340140112300656188944430800269922493736553017767392622747334391180434694925399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25369266114229155520093924887633919362462348150205544004010324336957623221811061431631557039912801044189263231280962795416055279144567931374011043603245011722216298715054114329970863011826099613916206580006232524045972026590322156243816601836122164537102120222638844864275399076764231794729802806578643963390782468731221897921342036393310539780740932031299666267188004604156700178193822632845186634474417088836480483688988026178757629315278362060553169510585452743898518572173684449633425803292611667442528745367223301677175729151543668599456855910740426740851873969741201100804586677665948365508615768206977126673241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17415006039128845212801383416511199573056759775986128258924377340102630232218853494467653535597834845413074304574032119351975786751281030527066286205775567471588541420697222678402165763801837570643686008234600791765955305838962042141743347681520794814487743219015423131401193922361750548441427796398132499410899937964554313825891837250445778481688707325874465842941204135876189936819047425266860433481007352956029021660023068911364781550193425792570051122257126685936287526900563146313719471182345835116953974193511510323529878095243808793418262158579885952115811118392100566645396160443976166646574604655165559776923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28320426553428653238518463139022987166544824664954298001796516736558482526418534691071092978771858540177017195317368726324318221363913364812047753982730702783479702903141611077885586373549161804744102588826833063548030319306382052553479407628690023478521777547239476838185162811103741712158520913101431195883346847280730975235916941763255191561695896905675314236378295542575538654983699501879374399599873658372982356258179475251231709980159375293277046473491956064554644664966709918581008519536566680258853763687219325749916553174464714848565160991863009458392306120183920413836666729689820574271496164939048871909473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306941275935310804124672515211210689831984013451390062393193394638504646043680249859991347882226420886066019078366656721892132990702735096700555308132175572389105316086910526730949994092433328078967204462235120411202132794319160724108455705128758514641476023652729757635169633396223187796444166929667574414164305268879032160251677553684258924335239142167169970035974667113474803314729616785258659729402466836418885950009332595256373001466750476963549302170890995026468800534353304996368351757914046739423447128085230517737441090718348793978798776805278457221194691657267662954628482546070876790305199120328663866503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279038465381030489700079399460940488678522244955900794236531835690841531616912268458262445437690089337835095157915040446658787263979308326040217803481749739200282378492271258269196822980832828238254352074913772741906544710609969520830468340912439684718743662511886608906520955599635595934718252482982765858967585187411031037328625734159889481527109280458776421467478139980003899670043720693466133086037799393191982541167690194596923148459458014983496081426193195934377331873793300913754578913558259425266152520033624857867232644865790061939184406212246490816271337496466585663424064796533439336613148696656326956611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19077585529100585954443818426268673440481787272010093182510395243916109118526903749640021815033267035436976987975073788115416977326662919472873096882477528157518093039827199384525541525319475819294261733060853163315561282622305324133457346666029671735473580678148733803046243080754885991222317642762194167215993593759280802220258310086862440132771556413095183601222482052444151926622958971926300341177614348293770225431394693688325132730170250656086377102257966399815948705426920880568573257846064014942760415684120549633394016747974266741483647081338945699803898789238305467949880057728786533613760965371118899165719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329504685587623563730173142039341706681979157158669326775745977450918363255673859680995507607038234704391880571201586438394895942285850059198386020275766766098992585879698704856610207966634839687770808429933262904111998472875651897324951450679382094878899369750382304278464401175690069474172432233774908463595784399100263275291138926827356642105593566615224504152140300433424520401300507474728377612302481118204421969466423775575570951028934081048564509095739908933468310004727506538735198245916621150124737596090418058201329380125526468950345194680804471653234866385055330027915762979734459521752415742936055459071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16604545347898541495211145302296945106974016239229885035435342141536600262405324462404326616524311804872000059905289651294465952836961779449422092931123542058412891979984819038457451623584561670982316148775714802615586896358136488009507701776186583622153977368081833676940389580385176154928905617938433492684275594663263788415303164445423262640712629154121190868759939194453305692613005970136778592322980907791088531905016154133887537101570428926636044086389962636757403570553999051808947124492597218274331099025505334833826757062249542319545560233651711064301541391932423003591485196723656913831031444117805895358057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28318785730383412869928051403660104635681962107220425129859563831429710574832423974546188534458435211001535080958872866846203559991269656675285673333340609450460702239986108813028670437550144557465268027294692746733181727663599759472716259043898278519358582114845076780930002370022733144957461466615740436043937240544879108767429032205737750211080299186457915798867790154520524193627639978127447489813007518488317494489495770926008068732756729877565198501682602221468525108221723977109490333214392917414470737092706331234526813018929698512431003934402211162743842910362436037611373957647681490658011861971391226584121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18772965838907294744765845429367885801561980748686728310630106661227158894298948981459999227418502933729502399837105606671802168519907492513110934871517228304867446045642271250934326842027034328869187716933172306719555641726572664077366602608048788524180891559696983373213241965736136019330230286421251447360931951968799827413845543587486808951889807379837604597627761848668781926457582569444861023178252327965257448021163188238115498068633663551732453148676537250772252911739984107305564487776130491698574769896543481508560805508634383323130080843804149414316778794350657801875125460631037664404320269138479735606591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18889578714717859689778220260560273086938913615305172802167698763216567014882465752524209599966676756069642887274971307622248495524852651259377831501748643909743473744912790565554600244518180012132266871602855047333231070216845048325398953291293670516129175027999491806384612512568496163413611435317254565100582503592540029248250940147276237687342907246547873180862640125746487297210836741219397925280946305610038494522556614773097211221970784853568221351607804429559832228291979924435101326589171248667803948517188621814456950775646459115460779981829143658687138414224458872184359639633285488708894795920888593487669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17017429698608354074808409941398987753054191467665007915930457070888945646023107285656936355168714102987370616292552351536478565952605847148894943145570939519939673312265481313431879179700827956330156771545666588986962760043107902999048414154770765966260334678723520323963542833334485009481916244229302629695141051353280056091174992153630562144448888008169747357643399001188773962739123380887779474207655552601753291103669873896106466756723489984606150363250705302734805095127062697815677724165430764119003395253924960202020401478098217507539587621135671101922936654448343485749694189817440456484994925809183521557037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21349583615409127705759929696949605939858209564420952779617854731707797330820716794449111424332808836142896327261610770681557352310070360812015927963995623653008808661321497728293729400169004388665058291241178373643155419281798574770686921593405566205180966711381301636131582788485998012722447698357816073280372380167206473522203297287958354632373382765797548023515085348658869527365329597339680915375956304524860980612311434962014097403037024358872272254287808254690934790953498523427901427752033515052552821926733257490675918551302430275363271353050627601059705087250168971201496462440795959738951850306324550431427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328638535429368585109709303889432343882359183472054908988324899296946515620385677987474257751628367900777295238245864177593460955908265087674648444998457185949158092767813395533346721441164937397182866149697579821920777771062453583637372776628286941058269608479007852959518452517103238328215461528134459664636762934356065622228318073698235590954226009117898346836544273267098033186536473985041225047205010056618499303695932165716671710718210966656897625562366561607162106318334408794569695304203558746746476963539579039140172908728418331101504859107221246407401610341043742983039592263883967470861943205805409737819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345701730148605340066772878741874734021246323868408358355072800157616306865653652663871895243532207045125525645742065922632807124540270937759889446668085938883580429312117239531140781592246419175199650690770997848985944570037210507230939148530054342418061625494991995092543428273558219254454193796144345714545938642961758530200548419571889546591156487131293404489184324604489391684377888028210538261584946960744442843854476251340897891683247891434513201179739217138085876980523363110948714714383310973770075615743287955532581352711532437191419113927678582854405500240352787967493412841705532768992945287476653732169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292390654515225661833623440251620989609844824830461265349871447002852715866555758137929215274760036636325717342815938141057830125452374719518861398409216149169694942463053355348438557237315716427076579378254562666763388299621913801846630922868236048117350776675990332619494317098628945251067184988173556302136793672793259260250033738233430133986706735930967014267842891022907371606451144950044493102849466756877372214780542168586240768378825879113166648582496544285816973946318112905760237024182449982294163344017769668136042265756745946231112710706658806215761397315602481055697352010646235960205794642755625207571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313232703004798393166582688015547765412131611595781344621447064476986584470557311104484203183671876667437244438040133855555455194893681084669497278063280982174848542383959189147894532605493457051659783655955239212736764048580643955036827705566610032330318456638870869299873595998955256576627786620925252687168237813538384453344255206583799051244105360369618506390038100586143823661053686250848297177398670084392031318361986797308332254939494578435522335550820374323752468945192602836578431433424037704792133247324256224687315606480782715198208596948645970579184719912719167145448917885771273689770906184934765100381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24119702591356806153884076819645048489164166553588459195131156477418887019786558945373388973943036919013780452522116463081331830802382268377067336163568525934194547437370502297261956884901917661797699797602486710642686857903483794287951716345616473264878358422482232510302968451232277068724318585150499899782324733272417581196627550182965822798633340174907188603823586387895811558094824582220382615782631524122264277608113328509656450372262803163368469499646112283940533311660401109409160296205718778017380433779029816885800969568627199144521418807764901386862934598866877300438577690611069398035393665635317596883667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24988104182553818425834305552527051080265623832323844573195634065732641150749784495569996116809862712816231784459676338655535265756933374015844572090925631648509432899793525949834721342996921447730804221543511603624285418771297660968347741726136750369864019848313837888616729799379432207091563522754802851558882759451097900343021181950881020064643787970006963209811455861166707071167637232786579617362447462949262369165367478455731849864406699325583121725326682245504123098778827218769890258651918616078197938532768686381754022488623320473929973887261417536982935648326623546448688323364474718724572565838251199065027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16913572071960411865868623598250112846352202473077014679042858729101855796084261517734777442197454115520183226420353284739213729558209619392025880684540418330847595886139656371687417064822186100441336890834493338028468678710832739557745641001602231540867640368231754034227479888010485145347612446519210126769343236076791552755793703406978808444855946357999486973091726794963055376375668000733938035471965743472943264102018625713853701553391130157173036709653227236472633989972600289247702946524123304374025795881588053570282089810717890773158997407653294876337480558834173732869575207843703341036178666725700506731607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337512589695478443370611638121871057303856579592388310055744685045703367373880145725750772239631878044878281701073655941848121465664569616880899983996719278266928143238345717020389233470475123303127887882091997753580508269748668399010040377880713499920533051251045074038011170452710704138460921080363968455006831469343647518529958367632915795769172952971001516444354006261545316038910374236987604482124026167793728882157888374826962839725325230312398042586065703596177254783760988006327009890383458886528177704431074273220748984789173808887112001602040903030981635112925338998059606885131291277657321886193336427059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17545043295121792399335460932454067575102180821176550757805999302675542799057251617255041022015921950855440529942225721604222549541626508523226778570298614803085593966617925772771185802921803771867092704168724648456161798454766211571011274809275592232494226837209390822724588084357397571235302838802299621726741367041329486462407711391638620166095246811543409309840244781275421381024354978558007032062861233519353390204816484917002435651219243171698723988588222261531551882049505918816449743882896452337982357624793981150381589746813584410139470312722545034486664476177483665948214122397208428400807567027872223523003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288557431705814981161419752625894801108023312889798078629147311409571038067139519082795894528781049303461415185511295038312622589132427132762258693083411511337431337847795949978581715500794516174733862743767314552016028357753988075453235921949271565398345789398383797279793289225772619473310832757305203781766716837454180043402789702969903207967161630149530359670076169215902815558804616065835640063427638459662021535894587229589863241061117291019280125835037494943970641989777463119677148269591213528320385422868588491632256293730322281776377348324350058786710704033702431459378015011881705487479032699938711624207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19989387791510483764995233732356353533272710239994299041737626153016332056336065523225107246774913487202333080298015662705937857287297819017979923267154513460643515717556613489898114070729100111139395724317320759802366898022360895130994584640490495899329535146028233785981337453260826413099146627202583451418634204329882848048410617560094453398809366133610453585293293641420413797621170752457424382567985340235169286582097447995892969476416011251680336421151056123417915538158570756639563376623550921081073335221139985603027816962638963710248431173710026273341710502612943720348524585297885676564789578590327906907989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21908404141389780514692042932320796252187745789209543808947260122295299344371262287508651348372701703953750363856870831535671989084435311636719764781733466338507313972953156562265894875502211626087654183151222246892994617469451399647856257014830100407178984179358088570050733730703529677912397156158832801885630914233461718472744827654962055177398342718930765011281059915024780760926553396942448649429110995137029602485876753461915375134696370592486393043356923317276128722519888499811396034759435227200437957898368257483551913884474147059647456363201128280074166604105534147709241946394002555841843463074819314585637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347972719885878087408713836714726868616611871857083665573332550477791584718434432891122575345725593996678180356871501582668685174201819414332708442623889298535232850857399105862715297373005113897196390627705822891779177965621040594730476872167389293311414645875364080388976323431741011680338339662560057400359240966107533728912775045572917517309339234288825733469589497954344285587929819763400830689092732249647778948747506532011288218451226089209870589459148781454986248255488437628732371939726282227061168041518697163719159772170207024469991058791060045102240329486349751787585073670832174674957987799633716763509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16344821796059637850430947471933232397822920057998798290794267777585232276221706360072895173636468819763277255192416508252024245864928171334785847748416171477746942118513538329121341385063819144640028260818215188577180311943584733965463195793246247526807104023415985797322274248654176807745085250828398150520877111743125103218635671869270868522029525242124836216121976202944304660232107327330190846800928157810583838124311002393642350796125215613263968128356692354229614782518344913912902935032687126191530810779966863008626058091138298703027811015807222541858772624580586851046244879580455967217811077134235241170919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17690111273413208040746153834860547004136349260141218274944618006598376196959277037513684468354806543520238441915471492408046772195801505270239599272936298521105451184798849299671480074829194274346586868743459136670003775308684455775447893382009438438901662285494371601269743020928830700443841055982391030667247583864059991687464262350260174982623218993210836172243182177207580338790181416628352377414782944433918911207200965643274643995723123908496139794302958991503180686996788992055111303204337975538700901620298600109397794886327716843046759388022234447540729789536463172964497110685675473591247385317656682132989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246505171419828561658867546320006802120416868577335795094349499472633114384313836307732827931571859205151996968067270828571989272224155456520679584030616543691029170106969018764033457046397060496942770970942659716525721254089383196093985738185861229879288469612814095254108152227667776125251736850267897190161200257234660393819109632497882026457876347648199476477985719947221391267222806848919549484184915040075973436025273202388163537181533028330521391620224265299565179524838621123424262963094086280927240537593604833348995319891646806050444154989074908451732870544597842467375811174681321029181429724919621111613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26505871782401654189660536528899554645972529578530632624932692268423346420400187230819767242548482736647654955408092839773944429527797021526474982059999270111920738403650224072032364766803712144757952007461857039142114537957523247129142922733984184211153542141878458002208702618764684957649876745693259967287905179326734298424185502503061114268683058774669059586421196786361645196611983564636163029934875572496047064383824559107424144116857581095564892230019602153650125172886531828075916406328062429604451953522003595548266119558239255002166168556105453385525325358252605285807442753051041177764309192032513556129669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22099802715728856129681004657065723477286276015345840178409209820435080005493690419775521995329755103528874859883333180254293917034560417206419653845730330836347942921487187066251658585752308115576276087148408727321266978301224888664335906163466857410482654764916484382087883366761177857462452341346105270462544784310940411137156073496446456430403295712812528477944431203228088272603145087188481496756139286576872211696644833141600594248154523624180919399886061997662137859011931943245464362635342540695334830460314451851130165795441975651298267854921327016718340915515802272596783490836131821364885239577874607845871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "16599760030060894622495395369860308202138430717554428737814172521444977467899465069113610415133795687917446465648405579325390380629943782276423818644595642693190474487743629815339937892250417180180420198710381590651811433017726064610187817257182454491131931678715201713522962639022408424625722110189477710222780510362461211042831375249851986813630544500289670058962974904997276544946310054404045925455629507279752417106135377098195231464677058099494290123276990702649592948689497808277763601222343051725258520509937986277860504226192156119671643151251364823103258935184104420529607963655521943870729515126797767565407", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21297801142775444532137726275375655078973142311074455363723470994929768441599622909450777967963060476961159747501016830134815729928500475035497303124543624504732316528041528059533890697902499699582052347096111163282794974878327879513314125614137317187396917497678473550141358188351635619602493783050791257179178762066325343014360475434297624267697415726790738244391252605947117639846103459754278501899512120608156738407021699069260749681797415998467632514178936484751351336931239523219956025498455918988723312101976012291412508655084739854653871109637568021487591425596288970143314400351781778877427948385453409909171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26169278476434643833935797511928942699825897478997193412357241027297758223567702505438990750263017354551243537686923595862719061565758356471413411077321775235887349318204590253283800890278031379184924642341207347701985985032430243027018941413489430137998353831676697076517941571167943682082860668757991767645501844989632962778306835804991545986528739192971631075405629180989803948558726282881332361160015962942975866327611728215729584896880333997179912140681522327201716194163712663317358276262730353442619991963046484803019036714596599896613065357838391257013549899870392036414567772688026364345801023331898987923517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21264656392506253363808978260280334714637053188321244335899488707563758897524975403716225618981879138478429354630392240264984552633171372113939785644463016188587050524269900516082881667809997677879344917751989865724420374672796863156271858663405581919446754687633723767039013580520942425056107142307807046593494478274744718514006856606413084154128375460156115622187356505384725381352495503032349736411959883302151029140255819905908367884599857577952279760990055014492677840596166577500150064191373781824202624841603349492616113374234076559116543326919472207401301180378474623841664265741762670636190967445269383254819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272231450638480486704450031576619171111242837502903350767310098831125462818934663883821448434215506585842862165068191409583438798193325772214276349746691189660814057188354761191957852515445510878661171561385324845804221203162515533279533812110694452524354234314048202077964863533730182253416324774389799214072548366742417942876981405473266683703263709119008440726512398371387501418169925872438048581646904779053335576511927340769894690019384069009358747315734489808006824678022259143324475538652993254849855989532709536685521286975282836700766417040518077753239486477781496465430983148128531849326675811409322705961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20020697807854314465165227518291597396646140157115647195007184442544196133409149629321609425657486097026933379173427270850069004405794438101245577316199714414773348078621511045956672807665164350577343050358891566297863014398597074398207064128327276851238427165559835973966914864538106449701159614282084780332507790214643959224523502359947222083199102462019532566437935945363646615495975712533719983305227740505557664347665691360322221142110780936732945495797547540364713154939653466552920036957171153242822799600935709280396834050470369511581507844998331900416829396364046998705175777699445175727208350169560027467159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16244426006842887929011999384417129195504173416453492964585698375844019934443018428872997602199606117563525557931114417404777500844273103896374100566854547873539961321409135219417023206991251977205575382865005654024810434044361254054119632730555334908644779303055112734494710740488155348310733477496821929015944988340441180722862074878655818262479164408486247820245655476303340180301579033718423314325795008403662720141634968942191284101331314395929268022091370589705199675923725536892864920766993649145137475493458068178865208673729125935061423128722907279082143070604435422849005386728584225064646350093121587387613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23212305276801991289343648497443728772407025140752089471893622245592047146230650912740294489154904263237940656217705987039629433203709812300879241040255131414524444833899983535759129235971441349106834843819621874033629449663820941739764815937557046662733520380366408372524014731226975529233659255797229319793696819494567663586730951353090122642769190550675478996102144961244210055829214368189900165643940399197269945319853005566838429413854407062209013484901254699777937738415117695281041148253053506269132973764821471835882922891863974907610965760185353100148594639811383568093119567504968129372562008719169775289763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22930631620579287972565759360880293256489113106925730420712515200426517722630549813191886433788439093705435976535065660451239905147908985931667841055867418068921721425501970609005712013965778147238135210033283997619851737107634502161162783400667997050616077218270146958791934645030457057018710899744650203411772210860356166895758834587353966479656177937370453821050536224663667520133081047132383511473973689352147655480994845870071503401331968954395501770678595677361537734460053915748072436450602978197849718822158624495464411388178054576773727308364650478340412928870693401906581400119494561459916659710547026696023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19283169041414495511545271122093346317629177190142822198378176282980763279779295621754872675588589105608799874876938462199507791884754134654608158504879011890650024672201008023703312144350309704342247285981305526380869890021071382257966313829258682403002776456771649144934073925465085250493900246881716657893376732679438765126687590900747418485351330062631898326370598491128219223310361056737253351875357339202986591603850439729895451805840642250664350339298749925039462852972667754804820388350969599626471177410968296001447487109534412437481811904239915947370717040587355837941548274437711484007378749125548118773399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25741178806208235977146441523279063733676051077383310045120081621583655452169196303672210982476637349471485653459543180137113153124348997549295046057768050704255329851734766186377163075868273423760196211772903662720548042812809107347672789267150007248547885115279474342018288751790234374314615264169273652775439042843706874724820596127822445272829213533631078349092136308143777064917461425523729071155096000916127956235917346397710493245135592996170552159212432547458837666201629268190504888097558655189776062729950350947118571247419150375871566513978680126850287595802841921787535915676395780474584977563107317416809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19006481539912251848100604834431520271100342815924745557232887589070616566873701667021746447469169960073230473530266196908081389319968597382641846033063076839091945136936974615641590974983924454091208860534974677252554763893089282006870310916798213205046419330964642833753087031059942420297469622171161903153310323979137068280284059059156550752141448958556618735084980620259493123131906787789622572556978450163741230442526582376158923102069520659538501047085161961735711214585018529750480538368818535221337632399424866495081302460700244452436019412328509831673471543491504003748567440348936489815561938598704259981211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20777235983131948197879097572014953453934466327524292666230515850194921965227816111847839031071059392322621750624924423409118720364403476901333351823848200214349868078532563517492551075655713846224248415414198567643368173170813005904969184180265770578999621738843785635669141335262876689397822286547747825470919150409954793336450497979624523572359726959720147398809819321160555198045569078741877304123668418860577860930768861595889431217921814947927947187547536897597746140442751741500656634521885937900154381108010970725844591570942330679364202157896469138817377097554488915216015798573208246184074231861328736885607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19773156364739158024401685325495843746502901107682281949858596363996886058304800062628718731238617878157633210334879040124941013936908785867269739867546069900369215680089471870541762611083175819877434326395171733273670491545968861414087543163769474081022268593826083287101372842571878613795906202804740450509148357443068352023857226534596284376921015992125837127979526755391675344584838871224646463475786139049002822016222891587894992451045873840709504521841778252215867466090681765892585618840974426460935949833025551574261097738960677406838539285701186829221624489402753941939106738289801626071250801392114097511491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16201879798267190633486027873321247513391983749548619763894280769699998418731516999739994360574357521885384594395197557675197511002068707940738189898443259102748823293254936005537032267713671285638802553751209199423090754039949406216060522257796937014672080353743301559238916428987723239997429174108534882215481288020983228444688402495001977648451504755527075591222610618332708595885642289300040966246571460195768885968087686350923496817145666922001299477107176961729392720489713917327625976964504128769822616607962863214712513645417985333534242833654033323711254454901790448197000355254154048123431933306708327569061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24586434822903603195170402414352132150340724334213246527000169442902038645306517051299469037514238659862326180944088387788097509351982549394708993181794505441787013437818976194396373911521738150849622053752385796632249744080998170848460509914324239444698751664122245947597553441807649131077612064014841554114434553933027594292417560095102164826146720062225024341634582117009852999540220288700151749522091133054225252710607463949529614215194524092653289168475392994336767923739315570410885077539347396308981354637797306427636877014190283542009040200262155313653089567177664960580779430903272356755726733784359568031039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22778338729798798256457032153333854972198988491702150675795378561389275895395976103821724416466033356468231046278004317229497986034332028004663809641780194820902304750639716012334159023977908921107515462546520185390616881372120875138490051016748053159415460724868315824184588900442043981802103965246621768778116197174979961801521831079505619382048727762751368514157003194651355940874552018808652433793465884703350592061883892389362941486039036412441945166203658955163517033319668834293956472387529395484598405334673661031850764469465907104568357398134802771397262534911927032203323324429984097235485289712317415962371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299560049990543528779633878881794261695588879899347801653273725115929263150203821539607403754496083536938826404437517713392909206371810976384355889159273325642566112913401342697649364810793685320235292968533350608006252106067504819627532002318635397997369957621262796374190082782969991410183538198523681298117535075997854780111277354212204744719100003274614984832837893578456873065012924600344259405000412799201537418584407728526829910414280979129184868163628098721989126922184352805620401229159170250287934168814172005261776998492524204151859750773990614348235759038962301836553776434442736233747783001719352225589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25151680756700235076399358392914793047301386935480151736787072493207232748393048273854898526872460294612183305948329683775412499115385455509963384427786571521429056543084966832172514928599415831155129502872856878128896012835504532398575267334446558785938362348137563461613407624398165766594072376431154307614080636167270933635796279164793224365354164952550576564915506379382566021595438002249162617993900529470524644920323118584319522891207159612369669638802902051175579603115736826983050384270051422212484766362563982006784767899190133058075922846946424306555663743885052741161287417272111489810600452926306613183183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253860585649394480956384133232922532892856276481148326247681425136530847659573925644149148762627289120259403164721443742555961994074056006954215223440419192806525702567324237622344686254481052525852002929519112562359341469661440500505771719054992284664183941726398674313043261377500545315548758421160627905376524677576263508062837526975188093526809701829642610607194856070146679165946122662758118472724437875091041533010673968945571183660202587840974353896368404558336208623697526775955589750489457078802663318171162699339844859487658035157905457573482206735470460309950620258866120935988882661303659462037130968559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18646391211247184438357010282483011453935086599263162299596116606415820905753008712210737999876106305531582517866996494231039299253832543741351452742099928740771379245153382217573376260281504187404763816639470691003358657800043554755817128459163839520794475708865411039278265332729542552879821097302368022494324042546775438844652518405247097838517167538623856679676698281375553511453789650251950344689023484012580849137316260817048791667211191999787769134788243037378697542381935327472953182797045513203720297787546798480496216658082130481719165138576850041417763854296057290950439360918680493616112669881853534581291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28799532650129274245430898853930550767961703377600790048509034089501660862710736995592977723216715090925769999640064965423619465335673084037401958540618226529014689400090497797904304129706505223928603689035705949370444255144575493180320433754152836065641389824787295299548644442843414405937301974343661913446318007716731837756426098111164858554812078747561548511211374246083089099766101559885298399976983023326648334575204619158346932232912716085992428104821018733338411603907723277622038724826500785443616024145517072133747698964088011562281188969860378071083725432839013006126674060773959279177550650256183549858451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16393260159516290947997301938582915241555819801499885577011721197295084030262780954117864344787173462073493796563070391455788800470818829938185490618504248153202682032005677064236745069381865511755614399416155810951142858250943550610722833929127229824031961594719343844238484319322491803559443642968452697777166627805494168881043065421984374992862259232352247956874077146589241836529986166189928514642597623065655345186371710585053769316492800417474002996303010800611209165921800063735715764353447802519646159544731670274396485092201881808026448183843651551644652976198331763770478753911771216347610139236861569742137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26305861369528316783282228233524701512904946664180530326300487456658705756200316943476887829494460318743304316802462732401121813938475080184777918969246869848177931958618585996011115414721808179457170947980785792667746685181346944135557267046017964055261317434611377501666132147228328945921750766362328785912848674605606702348236321073626476450034650368273356600687497967635787270934664522616121303052039340721155125615838139506035689101130098132901816380843641282928997681868802382048853987139218926874962557111942344580766240718165427449188406399055814369354734441098651527237370684115638233181813917228613257050023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291730265336500973321074262815150517054958936067816805531940067192443700571363064394682374392646681775699183563524974637515729750140152650502267420737219154242940954268938729589073128187400152685097458124402583008026739507593426211043508647069388932039131966418094395349606989832462439710440543766077552467034948490230912971659937098769779620550887599474514718926109487492549685449215711718552368339807772927663360895385040053246345505601583570247147104111145923151411004786241928997370297550300593454627103328256584179215470942491789431567982807690902116831283865656076886153356175472328371522397197817184767996883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23580283020155501198157129541496341184102119222946534408329069205627092242130599306278421091597663194040891890528835428325912485410219035215660723557884262933519280687807186378552611368404726594307848647339339628162862182514557727044827188091589623219028274626011727119349480743099815561756709353141773589709300290627785643061669174611190507322735764076374271704449487827677639928539171155880963088673287161010383887766070933005052140284497881610040424064484326907219834810853296134373515003343408300810192890964519137874963858773875580980206112073156916296101920857203000343744693508712788855447942953982879415842899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19020333257533681924643837410233757559390830910460319446830209421404456381099037970034109455217857059314196580982588127423373225992174188748890699348554960556917410691286610244377493432517467310669088633286317160378514842973228633864949079316655396410576990499100277347269229838152516507779025054940327593747598814404243470176077073598249746858987914919777633374339187438516647149622085637193472836318111517356829707315144507401929413765064202120312614643171048384646143988026444528560569700127437758561328809085572243089634982883998584652362828362308318404177664769413960232447051927090465824980990006473852703328601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25584701677410885831282556129466931671503233813737719673380112586151222918691038265928354789364282113786491342243316546009492516476627363072709513062927773080035673433958874894142467343930950876863402799142852120465328720939907651476476832223936126713726651373082658317963230470066340011917679745993589967164618190055854203268453296832134532181089755346690142949629444211158121351409068932118891491064977214802482722336935683016167629884517640391658325492794989921892480172643632247436562722741342627892437657932972126463551348142132598732591043829194103267926719509533888306405941029006023277495455735862459558087427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26950430952596398965124875202392274049196545634692197214916057366004139313982165725131881946884835001871094060399174472506225321058552298654949918515780903219272389868972853588877893019340580171968786127597730023590976386044296430292795264528784644969604458917307222775913525779782233338652602515075612500937228589675006274720977901850343629323444552441586554340650658037446882236424499192473553982336348761743675280706069431853185345861544633136681589778753622005109876756517844493204694555489607643893010586686010053928749582006105839208676603069939968378573811720237782246125422478624572771368003341161362747051439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338213817869484548449987781522510406179215467712148735169107844594840820083936598242053942519425885406005368625551751107237475674543468270356516891795615180494293082159058790981784078230031839763076628275553754673703449329532175071100151078720462176478546004222609382538622442425935730409643763568226744558110641755354431617613529663913385034763956396421956475413174154682969039473383289736877434696708899603925677839669705520730186751090045073562735138364539439349314219437457218516818456310996773535093225640054192079946754540335134643973293616341753803324217812184175439158530681315577375473773577862331788728291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26421639499015203619696371995201806137125618795442302246290840753294765433527087890503014676784414021159799628612226452918446087387370666172638033044511223666871829091551811166658998243976818111762222152249037258757617856200849543293844169637705329609358558145205903445789789897123032276740982380265119045573552083958548425419644405623627838197525308042113167502247178476176477864799341528731757677379759879444938844681034861976550796023101998461606009378126577735957578371825187498264131569882292916620571447319731260338901280173941754954553298336919344295416635180312995971772342054638583858225606082550833256912493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26405084075883298020048769640632371272519229325290295516890693727497864170169261724211058300341855402532358777831798714654054281552504508479818982803822974625389717822832630770031505312454319674760410897653282854274074459516368163415302050699426642681074547179343162025613234746367935723652162477901923328878842933916909439599668331394375170245835874077471345450753521904134939324492383216543721387904304027285772015455721502732644501443142979698993829569449971469229829231158815522206923020781003232300407456755840093105312803510367208908074721779285086675398805531951575598676556761445676456488883450460623464416233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18564417077973450199458546173925918558958373468728764391784515380298113029229638810864765155515679023163236653582913781211302131693915605071218052765734421826897623291762902655723641626580600386925562082084156957262016492074067182309277235179525869605575024528386179707954566941005533105179652256681999079983439244265504076498611639361100728505463910587728316352521698081101959328593626038452446389747366995143433117772996895362763028388071105021479752531910942313568568728860605600137726618096119517377137722928889675060096979988780792864931865469659527176147640438372414696457253220575317216426029242996234043897009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16733316037863162771491677462099692601017844774198419918812480785802940387945433112017658522886767188160344803115497217593378836939163298938694811932563761341345052330455958566010356043766166137686724263590775781395029867343945630812372170689420695779575155419026827468631269151844836467053659302557632009374026490904362216577089705653403521604656241971166341929035950243433622062474402320229322163443126346503027435865542189193651546196957058139177368894339236273037837377292771257145181517086431680836787462058669667361018612490306420077960126133319076740591039917927710589769216302869690779245866928910451658266601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23367328972753629069034189976779647099462991868088594967341027314757086166295709833908417606288817333504541775019060527756570570332719832491346665177587062933284537639673823300322199036430897328898703338340585303380475060396882536653330150797300918072565372959383302224421699309340704038538384008177083537553254541610579993045901276847359361217195218800155432729839132688759488398494900530216431437664379726471612120934697349682247124060827392073185583454076160210223099843977390669419586690016822328373958656710720458904149275482421988675779651154709009801323729839518613856205012867258690164807647856592535983652003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316669082356895929111844975187801613586457616033781752047249613742548681302164677606147503916319491070577867638090645552878037029572125866972433978709158112595612930954555852419772168915018126975720888637427006471764882094132138615467651305996557119405150340538054093026272262788022635714184991762293056315474313054029235585141839313536900569736576556572289396842670924616849990109680892197300454266941191939152266671089154611717103418326460849597880114468434745453033953346574588116783038760545077358769091354222687599331213905371487075735638918307925149947167044983212014783226222454106659028009832668806784895101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258001282757594018149609902756517542052215285287737784786375764142616574287467686032093451955964330326066393084371434680548009892198304494098002133113004631705328061228130725793212096171302232103387738537126873658090605034231820256342152943628750134065242623646538881294606115479525038226636626985237525411989039481426405868383634696336376080877240901832290545085948860644678109682856210356599945665989476723233263435427113120010174176925134840446811550833782693093154845656651518326529166859906485551106250035405575179545182194236760907320185738246678618138137539917481724690585694249383044934286564096364413821313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "26887126542090438447016605618202837519925708087597220843089355162634171964500209852738898032091141998613864385598627361811393893114582181232241028661339212159554166053063858662438517086712075966147276747990579226579843765126237918291454484118143206968087376198263669189102808455049949874610290955805436538163159853597037563201829425805153211266930048581436454428960898391993573407901345217731903984241965851457091898160579177212152589552995231474952026929735922164019546811833436182876444844567039914201763605967360031665476412416132510817014202944088430285962400241062768590125264626348042345072797732827486101388037", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "27630265639282959830157836553560184782031917094997670321798637946312781751365831674757452305892194072295790317841021783408612431098357803130538030078868359492727784965372672533744252417384709329047372932784274168061133043200790515066718704914064096485892426502371099810494577967822783746541130277744743095428200101704046449760153100963944745405741465081354889034246256617349807816630133619662482155079644222652538662919738823011826963866222101896731435249615068752971792758383179986228668896200150949432989442348831780872656890823747666345812460493714773147746635601387908403874123205727577618226735828144911222174867", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26089497398538771472687492843756553936194442852350691106457398514871442509665254741297422351358148600268894078280469668244050034005983945803916119404187087580793122611751463012829754746141148234575330957301091100569994770206190947836604460744203601054461372305223491463717277458344670289386993856893880054106074283217061739395334902722260560518641883472325364112351569537816954849139127442661779845890885432708281162575534350625169327824582427115461312609329993809867954888570183616175459645983342477275816449539203738420291638449481212956299266095709431974983709530977000521109783367843914195809884457346485767830133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18174075736944536089102469447591746912417523077964476642851406207886092565444429435795485209495043325150040477889043931389388563749743176060540981570335707853868316177012453454777627774268439160350673734754460318110789929657742830423976932693229720543673500454844335206338914964934634040259294596138345262162441458980863837801741396218321915829488230273473688063514666935890347077367441382837112109834737619140120509193801310546012181623383321918469068648226052269917266799522433650788218550029265935195773312156739564865917374143122857481035913915493949538076854127371483995450641665915426131834098712309319450698867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19706493688767116467467667236378835265255029197994758233427459156349962803705740027153440921230607969999085547601440146574289450342344920052463189275338056136861838419388548017623779080835668038084123706761689519548540692530075970959522703381974158668864253732151462091048832749253704222609526949785421862213828056270534533258151446760466066618732546653477697585410454342205667243312687041534482917468315835235000311122072563673438384071503456114224528353185106859220718858002797188498577399298238003635039203033838721746321712466926463562729061814586703945631187379549929067684564513648545909055741885772094069182201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20212852732783287768569319521346528821579444615007048494555361929783396235272844937058636961662115021600449684298506452204479201354837854588780045461222895428745165133448491102705681916570717020574091591295175718387234041192417406682989814687412786857359620735607070648578789321353311101022218621600326920903708643586096610561026373722923616267470519722300810808580186525146320527089109380844420915194420174672643475732499476363499404224957055559151007914044739603444662468382005402516716605984336831326561694119889219092844696051227657209865969354135520647412738814557928040526942559613861640419747604701639358017909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20378353542325565047469152331214050353588106125926852784776528927942652995614201496231107224728938865567552991636395363709565150765632993263945958651424028531222344361435298514206045688986919109578591105570924742279519623157059727721140886592267839182347003495581616355231838875549067039190689665569120690267272546062189588877305809904090671642798402184107588315329310415495217922041610726950462498602327852208284464285089547661818731333777845724849917642951969239230395213495495933413106910529040726513989246001745147463771047270486057585344761454020795811827096867643234743867586769113783011452603717669288011320153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17321540869826612212513009540427914107569300535248074834322606244592951895112791192277352227152889027636279940361648734534904747149934145553301124047674275940229961001822426910409514405171764817900315736162017087061733323501970281195262520679565854479226022548514707387762800260788258507445595240580601759328320596283200742878513401669323990830094892508673952821055223222092248849154357487920033652705903032441789381245051619288986905662836637116640796141125217349351926859650769777913497169839919742881428024589627152494016981344611209637218488591286987773273765956965607829774152671352938170159405006281263946454291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304025156012853270470077882207753791805432583952339688030692823733373847481174436201510598729353724191023643426493759775179358600700995160805079242938048623775606505734066210200381974934939741161622645661990330772032950668175980825779709323158257975101899390779519859555599794324137250078366816729925865731577667993911764047202389074813559963698387408186289949416065124531129788735904775527607043720518698332066752726592232936581676882993703180593335732686118378523595643066422645850277322665106709515337237213075124240470453172045174315218190319485504600980070449363350961758248027877852590012491440774421467442223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26253085531392512114890390924372457052295230773055800194186662688136319788932436048770978463139400616152428236583576000298079133066238602351090645405011230212421403254136294630807913371747270368664741091578151789751528280676257705571115030111394038975175356514761250217938147211388918574447577189802814192383832329982440417110127061821773786258169698931101590805677045688871570501216535831985910529115257442505173001163462877877731482854580246229411483838436397387929793088500261056616412911667724911162201601303751001974129535777370061667644288133442093730387514385513799345971784798026926583374421923603913232960253", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16344090936222130575888814025974473688749185353226969222876007183974816332732327581644473671843529843602998035098442673473998776453883149298532764633661351383262629799143520587476367454520831880309103455907132125827843501942877689485252396786997833763305033693884068096269997076819565190877303159180181416576428236520898094296838575728134342141441858775246951338350918103176733184290895189561052345509877365950168106783687170198161286825321829830225920351109359789765562303981829511951199595417779468940979617614816013319358790009537472068765024582161621400262781638115993176889840640037280217442299535634693912539989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24116670910485052020138224316056522274689400551649399192508067803480091569151307456073956874906426938362475963407488954871812621703882520033506990785329700519699674930036240030939874888063568355192595396630480087976125025295630302334394019900539782559491851002376202578075902532443341925836542926737292695915379032765396747692307203112886574110024252528490139156989552294657949843544705091962507877453791204320189671846798762398197703600513073597775976454845745182664728465538527433758115249174033716924408892973433445954218383392051414348570358092048834930426470190556379764861353175208577571854138882363109176228279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21865137671378446355372467755179507734859346896403681096957170339115200069849942710449908825624386136836438911019627758608787320827826677936070170673283259608435769005940225141746394953617186627348824435315652584165444666709981814014168522915648205844801381519041675631518482485456082296793477888169793074611227375248409553376101228218340582366240245209824753173641391827591467926027956374510162772497036379388216581519346848344317614120527110346196775234828106153985631716119461360828709722768484528255920739956861883651797964019656013844364123981477082985419720899793368066604628682234388140525039907037420600553327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18658044022417815660043258940222341462976496112664249001232003077124080607752552208601966113347816266919620503579495349624254399588163501920739866697319334043560003920378303544839936314845102148639730120427129948513566842781729255047612301677691949264426706473495386564576326040033391972890699611579299730860557768900850470785771919061554944511677103047607465148890660295104152033279116242233080737875073979788477117121704124759081065099132049360298228388290953573667675461024852805824514512949856560183789148835027475662533183618845747405556706255165503861347838682188517203448194806893931075127646909525120874868959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25020888885807105848429648503630190312553482718051216972636673017149208596093310482586156813187181080836074427399357197551496267112512675645615468991440275069351470049484187611158810354255677931284910686622867907409345291736226423556739405771508373206849675489093193514811405115134352410722157297448355359655314929910199327973603701903208987957305522278461409527976957396007000130043530105546194076226535326961896243035574624916292439587239073460031520476592555822142146942910742927053171775711177616301132776648717482264144698379210778399764494910379227281890437448531878021783902122163879051694243673269914111817061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23416647994574466154657254648346084048997503986242528952213238385253517387643776884313744571885500535468495004509099308992689453774380072226846466940474004622359268903211600990583704068706472793446132899811094969648537279973507553104245776311101461203960678466300517759241858342962605362722525457463466767853974557454152824817547889334338551722367057027374743411102823181857083224580669060957794612517287529513703108113111110335006541299186716408720376865961904074599426968730998952349464189418864324618259193320336415575718829187931373880715875766203976038991406791436295258378076843886158596523349296010239886936301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23641679595907011844368864199902511148498843159001517144555594109269812715418795317232792629430343122969648024072117384452363500914464733419534372113591458795956218955716791322954464192549728332373757125564363551367997662855665564786410292029899089697820510824307084160728602607119426245240834240082462306666198305552479803924784529527581301422002627220038726480182230073873017791584344197394402246512578894595947892203025128064652577681579764813902219282132894694968047803960225308943592180282568861896184729897501310115128114325734730473712020407968136534064659882530388792690749316292614130989920192874912444083617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23614507009091536456606540163007888813365448469700757769753914271264012728100656366788573692945035962036448544422298367385111368466260075946906349138929943179351171553241716795709496429377189653681433034305311318242828625090727527357757128093084285365785122294209342645376103502961347612852801658886539449809357314815277139596389071549467071640706756910362510119071234657321995638949658744102044981346125696842365131772382313058133928954635028793076389080688916763384430592631535415134487448301797669226935065824651891706090641020215377919524046705788035463517298845589779553171001002358624982395803734218190854323089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22842472846228250680452465852774390459022255615606098115698019404710394972209380950503948009081293963413004997004364686879232405146789706787737294705896678967600993429982065457470682700634482942238187952717476342254348431510208718542965091916222056250366556075520510880162658140547382026286296249462563298919988440078554724721195648458976332301017438085986520958285492104321383083628645684269337489497914430142533496360838245165943545167859380524773842033747683398977542000793247082001460159150845819410264468369527648516572153296135958989758048720163503129909090093769625954977875485946426826580161184926297417862679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25194996984128732795418920259409708944847104275339353267520660277689708813473088679019178799944687276180621707150050809048095501802541492632739555518542005284489523045023275488763464992997452860826661199707514411829018399836904166860101384142138799699244297153590573319917354567289325302385833579509978693072508018193266187240633520654257208555365651815534206771300401940414554406216276496849896728441202900663962724013046743194459376798857819104648429109805691735981381987559866304200038105230631671178435933220153137527066304352851234649031840905227132116266881233793701895188435645084560288121803586364682540666999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23302834564283274140545742476693366802273074822312839469300477514985740154282085026628470548603707128529419590859868120363795783496365029279173629868060314735228289791074382190249912073334792071646455423250062228381581524741616886610488536344940295879303087343083033111563164738067456848228992476744705071412319018007822327550021372677972960468213166765988494408696716266198282043586632152439663429350246386211683068242572703081516131972727066036781101511464429024571697510764089936134221864380619318864662573591973921287448128292659573406080355091858894820976417257163002079654132895945019861535445980121262714696751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16380712568072516861944124802996816206878681596921866359577720749624964328840928050439716906703114336691117147286096420113942822689319376286675337196076497035217761203326160106954852225513631929319965065685053262729569060677147226565796941310419707121065122573390998008712813005445177419464768569481543982249240974584223667927868462843889555691494222092983779689166299824463636949075162514809377431317629201977891761741417630503729536238761487727399090999745051103863647320054318275032945755799825967742015280125580211290836978861989407585171516035890674601757098254242872385587442672285070131408071300114448969857381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18914628073984758609594129600857784208864748360187754677076405805818439725784084814715044344004858274084945794441944166311144774656224771338020933740994167631250292980823700587462221680339719861299946177057264796064767365223304271042099521984669320515374562902689897639157067223515868146287199630840082108350000114526460939666704046171219438882322158393705099152097662205988195381172147368994422350206276129616266210568381156721036200258912871834840703226642997578785849862707679211334701978948298658695229310567487162561516059262508042006263680888372038799140555336890204482532434093043698866296185264784648474647517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17912312916122942174051840844493856173716091540257416421618353374832184745669524034069236902192930649180784160450324037287020334455019346573215742789181700590296971311664076917076699449474707182477255892059027433353531523787748714294966833785234222810338652895313537865701860238112728357023124891783407389904146551949206973093619480338123885191026221292718806379497410747133661480478307335178934253644241793620372136611046844230452647362876569822612112956360956563940575059131480670391553832620688693211979215820967973578915155109003422930874220033356057442119836004535479429512915963767209859404055612511977748001747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19323969640720072782262293552359896730229839158143473235394034502636643480216149750728855497540909702210016408255049960666938059903469973252244024272469582367513964993962788956349244088288795022320394897008870629299149829251968748858650286357879048904685862877431237099381967065623356507899391006434883767175228344853653507140553808965451664497807389905919957473206890695751960967578294941434955114480510797364490872248249881406236199251564235071534229314404945060129935713175037115780664053318418558414249073529848171179126209738589206420860749309616222285092039228553365279310597792552480457470723412523188084078641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19885079329339632347190465953479309967939284963048924447396833112471435536066958183929430842899660016879510729981746239677760930682673806067594483928663889354523817500780176732231196757387639907683114325060619875487841788429525945914680885592165304391796155650538504476525508913757814554077917281876724432945966863296185657832938586526379930746767135535826659132523091366382169767862085053221453490758767954208463663333863416617044725054473493719230435017793083404415204879974278766117407439772157858855510683053976200498478720633298319620645797932218245483999247742726303144946256066192287808445024087215437365157581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329349377090790616623432757856608326301837218600659551525523377578586075768993539720091355662142019181438250679382267997985884928845807683417150785991854564691501615108891265977426120057194814777779381389017011524231749836090682730853041338988191492586274097338495782680859457961328202268241469102398507255585757923334788254450601387434281897961685142042751576275202272445304850696345965959012699852577321115677904352814749414545632854039674023076842330068923244058335649307817490734539001257753582446963034476394066029186970370011663847206241543663718710510757663282952884423995716432060715145373036949613500253211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359842622502891202685230389042596294192145606420113255504848172000246597488755984102245792579210119608608044017746117317973307138409996897718362711752191284866277637416661360049926761887672629245116120008079623483988234769453759594962975121392817144487603981403635383814052436229492613779678856433426155907765311265498823382465686600894192008469005145189352023439462233838691673758768340717621310400100900012732251708629421687571547262721773099587010880038313618682649802167369351079331430329640277729961379108463167402803410218465936967778307844324447857778466280888340466737949712888211971831763008519820909450887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20899821516059884681456772513864581305262578843634628687467917286292111622742296641449699894634271168708739671494736842726111008985170179932353494681430959158644948237749539520050427064022664158352019087732777924071936967045744256048337952286720222962626178688338230081382133894097959630435790581420350291273973389299621220775653900781152406968722109932919792215676773516581187662331804099337007920759893289777861123949687686340932547692553570318681470530557279193628653855137233723694093499550768755253283170007781012949625034128556515356419111759816878090687393570660485120737107143137194555805382679356906266098929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27346149686916153725134206140127045202288746728965720198295074967909140357560959970541372769601104240859667681326855838019077110603036419329388332180752701863723092803059627567826462741730502016435921423623837457678985072457568927141938655977968240814053291839678712766832654630412591196665149994088121096925909066463376533412710044630186844839102996283055878447056446801867549372532981368798940311356097204224548484641054522698560229476839175155340088248628078742193010173912509491929730027460905578591323733689304786788230590495088173894298482360194298513432023259729112001314424258941655879373072974654550516785677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "31319757661929356478624879222277022393012484259511890464367257208055375142205491244185680426310794114197432550729138244150422403329498728332488286368586953730642357785960958734860476036379586574015010041760481431053849176866176180300058225651092825375194529465232344791691895694271054413220231219196774359576944764619832925679272751577510599453610827196423897399762944589605904956597284281894345520248185928567947475672360992631616812174914189831744259543770112088180666534824432121972019607075804516852068999364849190521998381908401871675797378139666686399979717963428342901100880031808085003723555738057227067516757", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369574876169460730048716736905632420918380795219070234324735859091974612085651300463272789771848897587134506924388561491089131335132639960713679063881022752354006927693150842922020911872401454391104915756831392049504454114938501066615254218286331301400203898862328081125606365174601316048087325666877220132096359224762778768678167459837990278034706175051511105860911252079376011093071698674144697601395444028141107890426044392049683722671203881837870178966411445862487313541407550749783610514391683541843460873087536631040110606879369173584869602797759042721483106683580266251365746067643635875806335261095410146283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352531807452386304018476842385346459430272642561854778894161290429258042148602160762358078446556121789834733477124496748724328212189836611273299136053261775597623601700053891467566576586119721167736182178472682453403482051572406766763786143370728378635424874545795089215067166916473523792664575730516051379113719312769988380017588504849382945839949237151644787042408879331439639742593698890766107637429308012906536887871334100379128038457831797785737671134135556635230511672154039450439302818196031328743326886306584927582064698844785742667061436974155550827681374360513642138749526278809845660363123468390249689741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294483411660931487761541472154048529647541889178139916055400620362268777125121851205393447694411578012421976860000673659143491488359849571708958038878982636836451012118614797684008740923824786373647488960372558567527347370707577789663039951971804699718033677829808087652632125207980376291607344443514232896249780300365079994348243876744086194615315655706679909663460230089379289885044249161832004474536874964287273676081712088680603054025061753653621993714678320710351958057473020094239546383041894602714889046893649530758556094077776845048244512516938728969005759467187245112508911085568864913947213091896359661779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "20321005577875790942746338859706706164775883901461429829345501672103553974833565695773931609795206643540100293083641309779363353516745216327539114795207453869706499213526073249047404691224418683946070827359501695993882286685630663687524888411666192710684107386632929005041695073788987189164572500511188268942001705113526236970756248705317349538873636896550762430703126179658423784806718840754519547960688188543325237188154595367661314613290204476944981970994396687210273833696211837256147469731735563746432716143209176724107259396326527227733983903841563341580931161387909192212335473832644222194779709063171797629199", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19241707553115663094468912662400202946923747158110128557170723682782487944384380347202020993222348572646110241492956981099659116069030374675662740225868491230041022779956360988767267454011733807478885070110988533909815916779508137765899675697996492166937360004498858668081067014972889427580851423118077981726885644865439259378674201592773568551491465069033110377830272454346368714585198692970320972105542942538876796696223298831743009710661483980003357932801851990744343940013057606127310512314605268209061956138778487522679400737203172308248862070338695457132332474871746098935054763807631764738735485187509290617851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17071209047345009628566160049123035571852299633554156005197802757164728610946674077533508217691453111825269915034975684572789742101288774649991918231741624500195397671114053955938154137171230014504330380735644035583644324550951730784432768966247128989761691150675292707608916430631279742983898817452815013941631434065572860600394234797055577656331103867744393677513146561329801191540458398885405196757908696363779550461169325529208577862030693086456153177071786876318218057691212655119083462323470964577389081481991932259361041530958554101016179118720813276591909710011261951438492284127762237288819851659547627558741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19547279386513823291403225707752667214028713388340808296888786349495800924381068174749825821163723542717551018797973465319179096659662840265712789977933480101507519193602955891545298182137057836042511744960277491151594259738203927144278367389188172596660986913310109496021108606073563101427006006213752353521656051852820469842139376547022581134765472825962847669207792718510286131519662564430785381285575184509711359042434074284547082980620132593993469878004607557671582223523781063807614497972537982334562880122521197238953026680633256629900172249423918168920435260006185209378827647955971749696543939263634410677457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23452125135763766862435091554098238497441331278232381297264812610121319199451376801872541737823174527515744685376555649724881055793723278271740770991978052801393427973509054080813083861307630958423875786022515677947858425773855748176418165962628251766371392553072870388700223681992486487953586191363577469573767733045110931383389008578639098184624405517055056474083618937995847524716269801048287405581008592263856415623561495225625926615134343827183270177210868810522599131573919837633574227977189429378032130992978319094173627196655257257327244143073289397457074551698740401617525245977851535242985495752423592368497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16354267928180061751785064305828901041931191975655383444220682252126466263431438754978375346068278907547491634969122098804159072808867239658609852097468770787953653657379709052803589334899109190254987110815629343417362598836362512420219837996054829505623768944863901938453856473154214188737433013139771203403183946523250297349252963797706169051517661519267208165118497205262138226072255607838996762359621532299464921805927826106522409220485169085633013490468333650923758803025930084228538423631767543958168554095962841728546073057319896372095917826153201961966679043718633394584147229966114904397439571085305084165717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16259898441612778912630902644317292495286176285738729128430452637248445103247719815171278035363934686561908526764132363718566667557116788974289462306565439415085302656970975682630888890730118180443054933216678704798885600716714528211077590687273063010878773684195140429063816786666901050725337183784600571643006831532922292585781512974318876703707877660837876956444487194215642690188722696172207340190407933569168678152861765426595609168942068840664062947959500019127484747303651545491050951261781115988010699775501557379849571283394825170114076116096666882960421401691141919568803390403802159671554066621173905224651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18263890715920578484383935724323843052990840589701544421838905609562735266591929628232474377564915499621417857331035957128369067750760098907635863295677846458125493364705530851511757361604594141242002501678888654556046222536157881989994307455647957663762632250177623548591844150071046924454709533320801683000433105620864236415110488721044826274592870065915770781160070023144437838548766119048879140724358040768208842512687676028579701137106526970167946569694068949696264228120521488333100387519506525433660155329717223704256230785385035090346906090285797853411396865132834968047888354018272491010217752312215408059363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20094017760653659552180907759801344907332188885798021798462122535073277600715853331893305036658046159140735177532202711337127308170331629437726093140222078591322180805222329112160587047915134031141826192275091770823306267720282558850156453397596802714542454052189756409695846644404327361546941003078698781438938424489007058313845106227067369741907533104378576998035877632781336902741601548388001665561118236140805405684803054991400303350762668327550226456260865010704085238409389089801639863335786244997552408295159881732505898141753294516824762729244982054545091150748109406629222792256142310670371332319733448171479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290811181510010355997827008112336306985735827791513713095040309164303343854257018894469505416317915619788423893918357655541266365307736672208795762417121741613166598730562204595942466813016550147018730924348510743585870385516222378580839322200824373997990581836424459747088575046303387698860240001357728481759500855347307803677631180749222382987623998454126045486956901513447272859332533591187512722774417957445988305043579564789268438735980990379226469819038946734277770313680445140272725224586207114474409450383048185773721299264025601444484927736561834373438520385428202803482670796669463393748737980874038638003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22247839370880729700280199695934256136692451738270315836436542108570067241998100870988855792539452315707477085828286227104893609707500197467332616534121718714987116383000317750658497790619727482827854603485392700377517723277538935408574762173695757581590173864960717725913723848009383862357516011444703891556094921001385012212229112906969344441260402471240129651177977921323515163846959500031368967991954197407449740798907550817896328914755645280845076209734135286341249656507550535082598794590991872375314393631955103785770336026148649324768694194068526072700356790773703689428034105807232988764601595685826453068421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17315232258706931380844209071492886862819292084189148956939688412449389894711557954769274831966348950176797851828366321413943771076222007297972760448848767745866197333761833176559145647635806846408715996880948637702128103738119273259206015179121447054813738867635132412406622261284486541058200718037637155992052438706229385153036163542228800281533666386499031081714631769605151017789596866903279594442535581326068925463646274673872333156299904600691679195553749410371220521572917519452220285218698863391744937072293416877278442269592591630799941489656944595095887871511131733299674813878521417162937827459670236759181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27319265494543829064447222336750285812029393653250298813622325064662108168491923755135049845120099859936621764341819105201072567328899503265113734916403452478472895882939365714774895670215280624331623210270023041838097829654138006402640315364005302818940027703441649886071195016428175261932397488209956085399590716207382011454123807325040497589788351797151025350422388331960829503293520093057054449097095550190032417969062865239397634365892053104897304418573783091634680512832003276599637483864848301540058507450297145146820006341447311765528879992698623520176766617212597846148957652224159981313288057156621478622071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21241436964704320526913365528784450025053115786682512249430286676775622518526760623890779990808711912165927499587469608801150046192569655219599445085954291055572634324946162063328792183170722426628377116796755019062516151284639758861251729766777304282107086425604840727531707569595812166120721242604791150549380188612433248964232608603654467839161563454493765057914285884208401637883626039637070795789253541954661558309569201569082854129990499171278761104815067064611448163606660190198354473726708852676238580651327036732115067400764714729782807266602058718604002235271792192737015132064582975496815253230131629216953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316782777032734172399537218392905747643079184528155650058595805662682689372103182879811919203510376777383964230233423608522552066141839077281931004754942432016291845225204111874363790264930766806419808840848318003141461550799663168290938595108015523036101749159034484755168462962621419090896565667325553093145502018240642837169493499581956601791563341059570087677117982061036508043023760770943056114960960387991520534591943442507423662707520342770253884170477640109536571701034816930652769291809658897202205710969810343719842833290399590382354105175143755892677018730996818756878546610059058983320272883486602481589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17382364678115234011672536634690795277874724258898281360089903485934226017902063812456188855958767657744136398999521338032346100382611191752719068055729099688271783378154153827351651316305805003385233257808733963017395838775582759438681445017224457270296311893809896646797883948553298705097005758432995152746324361328354575288700469580561655222245401851930904075469976766284086214004893374913401231253248123217549604993623793052842605676106145847162549813159337955694462657951540322134080581637235716202312699354420308589007795165347143955669848346186574464341622859828330061068619034309774280613241605390631624454097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23931226728660137671675688023515981934735891879094095740341181017626111898729452237822490316648376256215705461225484712454868268852664590009757391922252506233651409133782364578269262395250060191806670738752434628559430126388854072289081139501495173271683034621371722012021805199683900966040395529913252389636681341955005383955258304866068269193777645458902741053884049112170061053585495766969920130777802332114931894788339146132323280045988701379971225626069119654509473877472973960219134351099152812173136541300114528695342421670286057091472567986832381156558655598714924321539702985816218543537842119585658152047491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256940627221794723047543900742170783286060783662750036232368354893537086207181143358347142508614618465644400767042951417641871842849663921872871570925570364653899792511869545034915574897053861084721823683277737713753548767741058506470472401534684177318068206354791877799334514909191625027320134071962586733461641939736727309377369787889518271709765550973249338199193109354585814946413409261431421482197349467194442973079688312731407201326596167293206603861876706787552268786254534316868933902911663943185806623486952127734143792243368225361051893230357327270583376233458573736462735732158892406444272343852561111933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23126218015235717160402613212307960125919891225050153088755266732836550888956182961683931254728016756551367538116662438171663812985829981552611142013708996905107202229241003344473285537717222171511160814467069783956680718079184532805388866309742113840082840343816017623786343644011688753924300412971878537703835509275631174223109232852592292967053249676118969550842217476533279923997712642345994555433822326301259024887105482538297741054224353608619180529890669373093261363587544505368122419814973980014891763773932777819450747620322532812451294137215303785682577955797076029142411418916297985634283700141251335272477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20403856521655416743336424042383113236374609437826686959597814764521905174081134743935507445517537345900967595024178607300340957146206371515881544443497157933529850008867929278669854332940672485556128676384866903657288381455115872898982502165368555110296763770968096069076755464023720212298639656882854341792357802887981241172245175287172994569973933187860086841709219932201397636596118488018654528151826946693334209904352085485889168884639232006150583377990506210466944785769155330574164221513995188008448691293207045521672357542727027000245180071042653569417542606592770598801157071355686009111963462475272151781551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25677239551630051761621274323640906152962678049457434423379526911837020115637060844754991552960404368472377174353089656351578273598889869331605293997421611416057467339169806019397467523185793867534534157184949482100189409344014836650738422633284777417449960110740477037741975056884463935717759346951387500009795840784295343798176699721986032669081299700431277979270409478654583858581761746132830837426780730798829019238994692757696110089114755574369268844257522681626398387274244935402623485162007034713758942798187702516279654663439957326762621930215813311536362749128922802744979545552776044478435493520205429475077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24000177534656211458489203441559827265379075328538987550270564016811796937077377575495044318201013541861923020200409471116698280597704655399632772638834456991199204504410495680042654925066718008402649978898934861672888399407183713345218442480075506039045585639347903290573845971840244339992783107832401381274473290104744839393772598166626311323116698796723087734777737109023958158636817211699068156364490119773694191006820200298961342745417722777897308759592207010686624927637888494825638019747047969540347699768684681923125598773516568537237362231946460226766167259823862811104376908944940977328502766401471038376409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293636476246727900776864810815055371423274754913080304935366879988479313746757606730467365454256945693283408362898440248778901560942521582604474077762227611506870061802307227052554354309115490642058070958343659603089870681299727492217802697537712353304622309388629102686768194309042156905946598927625406931778085737846527596139793461659433499992410446796355466212094761529393828201488992239105908930300591246564821620315039482861127304020431108750513549823435572901990775192433374986921014553493818220507340111838743528502693209660140183148764688341314159952138450206633020397432311785950393506285443098517720328029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25911071464942514915033119812459802427786777843548453127923323637963164781956166032666060887741296605971407433664847640684296144948415134165885059394275986736226868458260560512983684060893464039672234567431124273033540464140624346402510368053987709248328006110760624090545622486665358818199481450370480628684981054404455557266432841344234703596445746370189204686785992908535927446152821542821243113985662316107233318966119935139456732484564926246413863296574876941499448742317830184379085518767302653521827132362173410588038190191390900235057021481088809764004870470761412458125178363126099096400718344907461837271621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "21772757812860207082845746474178192982463356498134444390795372186407889386449189181723372560716719552550286264668065412725501365476343432359275413621591285066283500909181067927260545694796928758973499736154121420532764002860110630796051353728805494698609798312023226825815428567499873351456636587419678337122357364643475892098739109383952888972934989133648289615874898552845940680785795703305393581599818804528646845922998429973139084082753720141389804970005973238944934642503214363367684404975291184274297432688703910499963580223696788847777474155655479075423968658266725803238178861877072695775952735903484848562497", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303448676278871855403731497039958253096116567148804212068894303630183360563299530171783491171062983075575343220313025419698410350542485075130618128216143548299350840042297297029621295008507026806454493461812147123688282101444661461809253851801646540942856030100140053001785175179999193233294182954070973160648875626726856980329968179765044402948114466969773989249649256032766468270431931452910861031791304675393205914067027110438872735337836243316647435124218325634636360645883993173796653542781512607016073161847855558678731163345920169076481919342308199313119189640909174357176362153786128463847887230997801551271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20049119530546261112417865972666292176925133842631191159643574581866821859629097766559552525744112080979822660504851878262721684827086872638677446304375119350129733807212578372486135210971275315902159980694806059661430426175315015794676652717610901924400264466915053031777832564650997099538906948212889553282616848129203132566514928417327450340238812756651794780798854148845897703612745875125553107565918419279057916809682159375525860478371311471046836298372662170943199619714018839794586523864170129859202394398056933009191689124839989658311587707992837715081793276603113486940277445468264277467388130445084243387397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16774034918894063815009923188504609719396535724501521722354444728904226958136188406453205446601934671352002345763574021574527212993624689675335848058052967557079875676445542594361879583710755960445831809251240950353410080975106109336074119353748646969438031238401873212755460058212061633244119254288365061651778268110766229589865340888286119620969319388355822288800242071141996292522690339534871235834977486488834669250473648897540669540144099041208434396088545103893298734213456386577336557667125840572071425701389298592383224079418095855149118816049838346812580996837222479682498208483461890965788055696571571420623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298635465744814830914323978912511841873314034214150791405540606927429299598012636859412465062418975335126401965356847080472757121350429282276072291333700820841220474439832424305794882770830536761153549124509006979628317484713838359561244169574244616086770902669528947751873669050724400214080855445629436873269794997101481819027461314224671969438371025312841164967314649378620447173516415363730259228816542697557560177032342228929349606791465044746316352768293128732871593361584804467473511650107774441472189311453434817854196114091324963635595427908125842933355031248276920072016775461531923418574160115910371768061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22922897201832936735386063241704472747459197038513918524020019506011898049495587765010086989419415787582702818568384250236255714427045725969584763713220115175791473890213365594400041119158942013829494839031871616147007040193094616463998053588506777557756121372535780564585228742506174589238935552873618956602732880750327576962378341329866004273038113722052040747549381367877498009624832478276204406635187929415898962973561494532980762760299293270661783033377576555738750955010516253326733562421784757695232668819739916066762720026672373562077177685312430700933444635839666288953264534373200593611731418418287961452207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29504222611233709193099731354359820865671591163369216220078829732690815861902653887313967518030207645525379648009313912486962061497767194741841416037251917224998222149827556476297812368407751986759741320354876183720187197439982012978679056713730288980670933019526618187310596682155440713988164088845147310938289416531569412293084331918709723371878931498270403980218679619661805848056185976393970999520076663603644485687462140421287263177708497543999776932824111729132657436404043835973385194162391016640231946919416304565603867613551670697636194543583280885661641554969730646357212987288323204388486441228207692060789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17361146599752138844492480221108911128936896597485299918819735415204074187046592931311923513918750108155196513209403200579282893801973472813426004651371305248105949131430894719218759153811979912226829245520714620663516038627058017503393403315777261530335021366895068774082287300404825480442197418636150123453830478229752986608877823413105608180432252459005246659261084812967423769055702612003590138472126524023772849010546834461581618053027835503857778838997038882090866442880754021700743050870412550030935123901587204749872070512275157682498944359084063955988334195276680513320748704190659233495663846126844456850601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16418869887901351067494706681058757253702542749197913720983131787525496565675516981568944384862872589762922238929555972617458692802067419628236201937673825096641634452641192938765381170981201112361781959106283088466230924014430734131546275420003755282047640982113527325928708490041686293613321206627246750617662825577900417359624713842009129816418220605941948761878734573119651861379137252800027033472090230211770922284558708227435297451395677767710392529313048396391300692414626550191697666929031359641020148787082930719310569466933033805889322943780906677060826748059610869378123563212247753303327872501872277188017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270128536172473862845697095447364404773710875353392840176377350456788810031506367308088502718792852892626265618995936572717316935303398301915685692883472922350466031757350792965201517498094785400567017493613142786756523647026075829619050956553402951642086902834628396719362887680425526263417202324571134620976587534684990961785042396943544297986379623141341111091718459732925387706122373613902036055300736806518194965872033627411588545596248741256231934778700412537253551670895053057188913952791471078697999434933675459730993317048941968991291064734856751551370425279302438732926366542093084900332430616893292460177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353958404285967708552029234476945984065141061297871788454512451135120236461471812570103269956701959229626157772963366745877363116298725669628211573524543708269569935595687697315937678234248031804304865834677489900271574726500082760888161432331868169610309824447078887670861347499603724440658956308335521017652571720815978828381362110466085134874764190598045372795267440416025574579902877858968097695879932042083841046348054238845484940644715759791472308694085385291903095685295916158770556736120438358543220942875411603472709662828683273540548276278618271259589719594496351310804265088735928082720881469891465461063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19577701086107436825285057311404049645677879627605852945729507676092634663737427139361118639325201514210881757076744553078670649979244981890371095142975919069165489811050451842727316561436166680632519323018786348093269643177926847831894418081203195219302531313109111544463718074570443966191969138145960579344097383985082603163928514864577152988594421527656693473765129088544172548653900834972043236010274107953427949380397535331467375206609322274651455486604442699608538294543293324321083542389390665332835856655419733138696564841177293351289021708342874782160119725751530330860078714164445113137750137083361740496283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306956841976753373697837285363729963962324305793162909567189205362139781849765016898703038785593238738205259105968521063922413720843967281653191902265547077541849287694899880286053507230124587732290768141012639932088045283073731271635580978535949143480353961273309127140778298199643215035887067567974211666172846233930016304537585472305422024181133116160327803908870673467223669994174481507475046190840986511347773025780495390660547375799479584471160582739526101888529537472954259623445755473069536599381632536175030173074206432976342567656899752884164435033174407292952539318414887774299660139575753218649098734293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25351670704823781392920781222312460522817271127055327372377684830450357972700163787099483572997023010796972515527154988500976369254007425007090652126038752675733403247457468087598407769488071746853702773596637225241705986462441847961056761483314188829898832532509647196414177607221316631386378474668555275356915753305079158331038860090073609665400048349002192021771960135816125900426197710358875586890108654411502390233935881550830417333642219411573108365739073135928651425280927014614163109827676213353251825263645944626580733908551610683428485327187248168808960898922014014936375997468274035836062357934279322871049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19651350872298098459119265533479264407018748245697493118047940864498817040041147117540829426010411463308225363599855168012062620026292942435718549925929942064214554782296091952596647186429907357330756072666183612217822339045430215778890809293144691716748189470863958179781343392235535342839379912166797588471567756352150096487494974672442810022023891884509718285259100390837761507156024206742064958586876880031024822567021077081466330047574412979122499804704484631153658548788609666979300071350641644932512137509214548076252664278000846355576521714431694952402798469225293347711258448788350488480258909749362375315029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18507952759689412127933315444658812768821290229596203176693814388013847847162279425027518129998720408004828023114183481386978302715089432812410647453853751411630668175862982320322234490242329762465032290950213625181629721093536859683941180306911980280198882762391319314444830124087049140145405987155689088267396612896158567408793433901148357556987290345596670781249874358920010101095795940061143189720709866381986887707082476132125285304125669147282455054209943911259826427228813382491964137354791814985142330879353464027313676736748460322420939726008316875921991450410158708780718102938854298919380259882317415202487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297807760757265112123737189659926067919795107874795332809317731820278838751904018156883637805234708240309912785072115736245676955523568364238350344109789363331233059396315931381252647668148894569937766288262289522754286062289893832651382261238480740668213853184420508925950564109191365914196912309113335265129704278290599085332111819654756881345066100554998358162100789660013921220692694013999359257299629189075509440881083122760305759016289018035734142943059292024062121308925050049329704076733060164103883892552383660452000584870834203122293253489307750431665939224131604371973919643545505752796316138414577928161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277331777737533317273649806509390626401717667440314242970506995408189673874316130809569261279184416041707678662838543797880541473535937344473021850444509044428487601806339512484208567797024543349897978455884668204745901773821961506375264407344610840612209083892223799303059074669449429754192563063350142504504247669910694980955108642334917475965904625497789690426985906113718168256416585938424008830323787499277987044025631617980235346619674821090983160306880355927539304181157875082601336410379816736776879486827881378982916273044843003386603215256322596508874756798519705917249700984420365192044290925890753579801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277571888095359278255946014473749282141839600339507152418020100784941544524603325096956133372572928073479510879284044659879312897977453096491711891490309320169018993302463160192061238377900730231576868000130962286363054149882650175243957536578481601050382132988110258300721254581900364249691068633141943329512597945410768592565056796135073118245847114718054679242498511829849186879791415092480427587786476762382309231156737737402512158939745366614279930116131886533395928890415966351802204495247467674086737575564460757310393293139558780212274163632769077237923774595589025107835799664699541704695884164909188133323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343337785625242957229617225753668697905759953372842700104133087112705410233841693049440254371287079000708214701301924448640309820856976877119583478257850522087227712485498818665770936191092805794006313488739113304105637890938152469209856821077834564486847090495047633209429721538996139504997991285678879557657558307381361989493682356197369356879541370748543082883200672591354225283322116001520832783932241821159066658520862127272614804739763392095887506972847903488072836491861219053333669031382286620448743205249205791356590923642845878254773129637834659754531400658405168944105448706102743595804682259908949782599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18682997252182451647886925246607327659940892823647375988228165513245260069876265910678797767979479511626524910013668892338651178455529814474604474136545161739750776790433943390191482671691340108086136541238091553709776214414365502415118907438486294361961689239428288615736413183718987358543151234834561040828003563763953107698501787407248909158142486999307030205674492111092889743582111965956693479988412004526807478407269533696308193979579878070285422952730684975630298860793662822058083155853936132405946465401247203299530981746979587197859409018192924338229143452055718953038701212933374100279025193497550408422771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23604433992547142710787272381771290726154094027859491491684000431171517062975527794466624553399301841727689474951429870217488945782639698056638553473718261773635440632253901975620381641943711486939539056688185776280601533258962584906522353896842988580213631035600320186808354719207963980119410540724552688848651997863749064384271121987270000962787895309791680453253885620984528766919665547637878435758325272322815217475713933751162342336052442495935035867138750338324169140531876137146150736214336226913814889763246000270394655445609664969356301774718850402777924580696630245555073820812600582892653631390641632792699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27503049491676018480685558716597817931496257467284112433537176692145209235189888854058501025376314182646366101503578907830901273126864527271406801619618924921082406648231634095858498857361863763882884084349566965625358237816420844585785208351996492195839243117932662830659815631510348750795702839397292011322423851467642511987380756395639293248956733944776336707846330666426591622520082691565764358101868553170854996862980957396387212564396459441342465739149421662198514735851923626740822110860171813799334393584409430341352458287604356129312578208372570619904757134913616440218301887613731670384757505613995757619099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330423468300895999063105215392030761583354626786192814323989329439099167145535146892162502242408953017768743661908791875832850939315394221935933443475812684588274309634868768362315499722735444934899394905534188720706137100705607121538601268902061459517694601293928849275871996165025540720532386436163327626058488039967768937784984836444736467589708439503976309335330875923926292582542034919039530796493112272952619422479680284322844750660133945147063975538663812333312404451747425774510010471413369224741163209554535273344504247600076877331786230418168065513122815007325250208114587692373391879309588033808694527601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25815987776413944418337249599304400018486346805071236482741209179848766229753983781150361991497679497603999872648539085440618782486135966162101126532084218682120851669166603118884927181405378921023095568801334791013448484341189192129720196969289250032278354983916139598061798230739612088060612924531046104416631389972892260049833647584098391279215741071005379275932052400406701988015990032018221234732104274744899659431234489310243231341294488665477886975335664532525875108240924091790705931483562265480864959894589540963165307619066615471007929177262959061883486702493753459920979924965997209733416789462775433623929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20603007493268335721502991748954643754604201976601304807853564338514506971256545846623342720086451702511510142345086970454481805223945817624349121510349323234561122373591488857997243141641518189710226814353569816069995179021854946375473022111520433007496888474025531777003684793838356557738246839066581237305458249961322483504073111764322919176063367957418998047451218669118187598977346393446604812496450313353372106644852196312387225817197171743675724144817141147620191799555626606185823573367741507489688438667690025260634478042485362426553243652405769324463857898626400081633769098749360926455354923210514958917653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19014194490324063674524320663475319102198221439969321392220888360354574427757507925918172636120628402706580127545804608666757283615029999241646298090270170721650552209186722823654306781217341539640110584520962022403761789264348723561194604329171700111978876703003830587573456583625049725671607565976029021097135827284285020404726212609481195552789740099202484530367352391500212994311673785475008268715136616929954301210575874084621368941359127532376937339387395972535509587556011091886049536116070578495658521588890859340204722715991628436773921155183659340570767288757341604372814355769718949704900976717490567214557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312706520806401190224957314302450516448602706650498790116087327255697493728594625852639407055246544882351844485489910859574556108276030779654031338394223996735745523361636604163134227208641224954830470064832800466514679136123283456539268003466617359722117212165179086877963860375602511151858914107482190686883917305470270138838641402730676968388012347598143317828390829290911850387404623530343548799531975339544883554105051985933611834988187012523479768564759923059310645512583905398572351624431393544037107452585100709363042845379061972953178667893326455639628096098794012785301420550522167830509016418697292665807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19744276467231083242972793608913943865542116164261797757845463989801667747728650660319891095556160945718117877572743467622705134406836142412742177442235135831535153722287376446081805600784579605654734464214911021232254924724001405223804153062815588372265574416140042980702416918395408663122745150177498890056402223794964250654698545138920381984578380668086971596669393066411481284977264550737806000164839331097488728755578883403301781313283157049086921111302021095891635918053482535573048588848612784220785101242080461820293874433351739704673846988962501531779845108758676354330101608733278346053962460866457410387447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25071066574833821819501416024673305669586107247266817178317757799601228281164912267729364524606017980488733700716242494114077274619941145078670445402022960555369895016131483702914776782270758276105423558740335662600056458386001962518637117072550915357404863888141709039402551404345180142216396362720181847527060515487530440497906606377591909376920520797332524146045320802556925767725283127665520402461790873390807891506480791024466008952740805708273459701722588715496894674763837902964728011220197901072368277459257490078653529853696470098809000472998625730835012143715358552567739780572556696015521963381687647603203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24490646830421821978591935488816747642771663397219914736599150566813431670813206643511184630449362255969318106506391992538962827027025184641205314652020135136653846884076865503991508297256154204223853636435605129635439628504664796474399038030581727313168972508087936513286958526058312656494807449429463123469868526503488084399865458491431371338274102195337719403645362074572175279147283296045489378090549930883894984418485640745945531824662573413163561779844812332949775113085657116878033994792553804704797663070991246693886716360880188572464970646111000283396377121637041975315623958004273710638503319959271196792779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285641180430787754058807930527465171453138725770709084167696122762831654263278404687522139287104794644643671472099657801716702750079067605704513583384715695912669543050828322909191641948668680223326639517949183228536353430142399988041877656427501495494473526400665897256257237638985035641468369054633365537481763880638645349741073434582983608327253654288210058503737583571249296534670556134506531757470919600261778502201821615022486989282471654046868025528965195801245850083840006121895934809610105128396892865697803392908573039826833061901645605373718356651193943557533260535207346044428193074901547010483054191721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20792314451388764084271400727348714835286392587283664977406613387457606656974978249345104559475173742540992884813814174335223212117123600028498166266443014946067400165709966355388435430069540039802903774644318846950869935121859308411872446474279557763615882862120534727725030444951649312136783439427141255562332160517663496296733238400534249248850602509011390627788894642538099267480067923473709872977967803854630641804106240018406817019148656024455690187169479345144961295982911893094925461930950129065931404236918316828328035950746956637300899159630123281216817357689931495939920849960128668409231066576660743905743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26047534647493367764817768891405087398259673057718556718630461852042304587097054764018350268741318356579797256641704849661933463444994209888932326259594726731928780536820304207118427155721452625883031426842017495080155650652882366760232455326814970667854763118926021784659647186718031872153211111721832045232457670925094519146382523915010711870387027728205702122256449895217346766637851196956600761833217979147587538745126461923248517725000864989316302418872365768592896540947802833210947449200171796477136121299814805858655113050998003448605810968707732718129378560168465516476474290521558670300749486653331860571809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21911924452152960165986084426015951524370293159242568024430584116075646767918210275947719144594953776007623906946369930672755162196631744600152721068242561004201922575901087352822589556091156660763213190714218542993268905851640246088752253847196889971786296927166324728420138908123464179637180881650926857689106073743843968063473376407165894931096792485098647825156384028097040901046203294282592168314151825048298936919458615531171469149931949240119136695670663798120260385368514428882766565475539505041197723028793501959195740573039229411869393761745708725709562595787162867471931888710814489576848818030554816969183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343275925204297541135252291159323619861131444207348164139461137101652346774304247110253309790580919309922529062133025999276224829168838359430304119639860321367677174926131142487646040182398373718723945715181345889303800049738190991595285926400615448698469813935223977902103098076643376954459872001449286144659579792744454047127136549742378796309413561812357484873124513428663616259251704961760094376954196014181000937861181377789112967617352736134374948517293937453959176154188404354779343074426130079959236810706382161731477530548854918369660924502331528995483747046108812225292464859347852280704872689221860898323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18809561452728206856088219190812771551756720939567928490858535504808953315118821455780334347696804835725525122670398195800194495404906640963499106252748956494219371432591507906338806432506315887191760934862271851332305357077271468506525213589442538672313266068481880884354000908495839574273929247860263521311301187938436135284591104639795622452773608196085215006059201359520982604383838935428947577260419283130444918624029040484533204432690405661505551134507739341840111486241479922085534282442736721687801204732816878458105620573409879454030934041368708773584485945436179242978251140066173061619611918816057654910527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327424806507435689172920199068412172787947875885133650606473315491487027545421310782434062906606004612075143869269512133300435970963018692238742395526785327492421316865374672496175474813420853735939820054955220018777836446435544162222693535851081775352877911756369795592308129917333718901538099555985221358834444827592728667156849749973770044637483368324962173601703104637960042206286902404084207063982002723679823263603140815972598491528105919982878359848962141694239871998034075754896291319564746718408073572043670923274948448409701259724486273761547839673169951846155415805940537758328572381542637053063325128657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290643692446155558217914410165824650671776313387754165807156781422033487519993905799457171311069417910063835315045701056863691132661772030252122091934319096205040928674508039030869219396128349522413958325049597100753980832914011594735137149966022660904099477897395481210341289085933057529433790173422367378536218687330002756144191151958997004382304727388364178865884386203820211696248170788177965623169399762551629285687050421398878520282437104779615413327046305887435078157154782298274407735887465585629439555275711351667934250423411707830320742092600808699164763455768002863961087209089603283206997041283648457401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21967124359526935999091617916101445249088594480503188529233946026591959046725871072654316855099353953870474955240528207085771635486261749773950079821305068001746205820076301081037508535071627684217073231748520866526809927452101665067458579287079513447997778482633181208064918215090581483922951652072077964137636879055762676260965390235651321381221255160292663805150288292236439654783160457126070386445394262650974781727069115424594217598806997470368899725313815010757871623527257501903268538918287421968266461330141799857911513499437596576178406294702464750592572441590662615572344745970671873056453104987458196241237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22694678529923761609456974291475159828390108461761880892087957479610717531165908951832002106093531653337474675216546661718201335671066401498692458827020195687867738771145144858223920244877056101378378228068158171759212852813452941262480798693853071090924508443728947845792864892704034176042592357804954946473758755131426538676572196404349042178976412933286471627218284177266286725867179022092944688502669637639281709116484298284326091535066716026016399773748308302480366901073476531979559446248428550768940180394175939958943110900280862790535296452816924718436800906978295876931913215138517878884736285667968954577001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24049244492639556144823682989042990790038265114458635430080982746058637554094147378019780393956404368281261096530588552006987670399178969298461932756932432354960077087756301522975396572650464959309901276808858100499478072199620059576172320218605543350724956006781199578072549720918150913939086917103367895472677757667001052755562358771339594426521019564675889379913988188608468927810247620083170538330520035598854136515044183965395887593268107863658204378548149899238013800448123277724916007977113910029629311710269676714697014172098463831481736243812591776199223036498572217151573268320332695814669414817615189305121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26149794478890329498360908011442832264844981002665772546766151383518205950069277022611656809807747541419170193313243009654020685958103042756860662632810138239455143278417201809188742917985466957596336378623154521037170524808189316544069056056915806522741263824737812884952587560214500347695920515888725119631019518913974913598110379496156528527735245482561839280700836400570316739144897911758377000239326378157853213692113561956268734219483918824115712940548995073416290199526412849176156578146058188915689470294694718088150542030877408466196890403613463303948309204530847674564163426953376432922397359718192728062083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22986339730589193361809801156715686215918573524333235268283466532281781453333079444182019984329327286931637468649080214592731554947829164441732399753689277326172068881478747630324435160463466872662539331707783175823985124222774179446404440583664073614108298958666322711658568142704146470710162938559045530007656612799688867528153328619895035002196695779908877568928143413420809869207011807161430096576401818842086625646848868094256751087202467822112826931620439531580346045162609899903806158965796830749813220665752312511757539964553788054395459639866710389952418458648561669980902763179391591689702042747348639962459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "19062979722029138177032823131559454819548138110493511825770287203272988980602972352983105897645751135198635070930123641418435235545693281221168260886505845419748347498211254266808017556935136082031375952235402000266461074384679288761084266203765850552659596981316221510024224387166070346467396052687564714383335372943156975107723920651612713116043564415380280603694399772472506858342091416907861909641080874353373012390353904455603910825407089516637480109100396047032766907693476714291364252970683734108116710322836562501097025923476493027017521310309770522916874158712469326316367779429415986897624088389363266206283", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28935966647074009108232950430110319586344485856562495500371285772096363387673169234105315074439009249046973043199501213281043776441814875878886355784236296230671885861448631519164696934329314795037839710012755962048504261406287349816662653784941914829777437531838303907060496754452663487857566781752321632056988139520886108351495492760979239922995789964691314303344431127017155907458407895424096374296836265936374066783451184757342922016807023044500083728742733441530535457113556631488104868149516387245762011340509236107083254775264815890873860083782582478649215708395185263539955954131918057422927492380267065281273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26065828693411596524660877719129746065869862469529939296271795921605825131563189422607795559566317336327780833930993440141257036188828114863187598105295386203199694486141249675404695975894156375085344802511703972013690319908336534759495486247594430536988786924884131158763243051179283767217911076550032271347163479741595533844835374027456977675443975773682573807576912893458061660217809105698905973893294236620631526896089653771916778839567202980261484256138796286288847657500408026417243934039654841056956144749706295922540126927711542053773713249813084775395598117678412415434134432517712327475614409874546216087003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338937239775500575831767450867901211213906646713616313746764118229905654994144302798405989632732611510638413227608833549378992012807981894058988973516208114753734898845505619162191139872245439032753869546872706923448193129854172072667500101496716606659531027088484696189437062329588182964342574139614138022407599045501927269296764940058502499973546441349112399546825758606075404335002420402351976274761267629076176253086971986150034965763797072683129715559539629759906726691345562094190777005680286981363913140941301281357362012556940556150723178829914361123794307553670995422718422595357083858282750458000353171183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340070515257042096505597425393811221126806015391676703011791200296629436462237562584078260997682668969945298154344951386599098674080849089525879849481076571502021292233294431464809141747680919614300060566115048850144958511199492248440170003470059263886594126528172183265953656863968747708282312799493953579887055187177216868841749888116026960122552113362834584377231905963383219366148174783896222821995695522417576306497575238269135739238683405803544532605193655955397344942637728126411870797167242973273700252550835662126958872763007472124674998830997375176469025267016721934184024723433020708111063142613709167909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26599917940561516804948611410262361495298769210386340443017058590959939375346213443247949961431431340140857415892537297258358490469023075185188154724754043296074502224617863556366931711544667464056654863836363948232001024455048769114505231000708355687301223183877561057171159267299202226404875592743996973420524654309701874653698551846356720456170443049424810202140561721146945255627477520396323895720486389326331530787745506355788636787591054620090847225140725439126899581092145857747105923712482258032342245140753132315351418916770579048365502955705804040344604788078960630697167959834144773453574043352087483303773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288307283791960437736487555979625231596054175438721551854471949501831905388732996356790607618281584073219104522610257320907268328563624694149740959455733545976897442634539679000097323251309340057760113383458469576753674577035903648891395441450364624655437824664374332120522141073815510615053884466386202037821678635734831897960643158775974796773264169484977708432052869309718463838842430622813361791269610829489453481127182500091110046371878839130006222262095616420087105794648581423675545426303572806453866288647675508888571880034732515003538257729401511928878974391744890902300738895993683892366041019802105572599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19708923080011190144925443757327399314649208527508489598412306988650449241764271753826208794304054814948106481870005105328143233223041661469153961224595407944314499035917109207486342919855515751595764901404405061781263832500257785126622899046271756587409614874958937622214776875762223614711742741227892192868983807701507445500733126009351574623124393594276370087930948509532048733393119564433499307636133415431004887513020464415114958705786737552460207087910006431656832300661416723861791600815832721127162231039845411047423775184762086973607664776106913268869582359675717066688371390166270822774398694710830661907079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18103995016883511079779662163311956993158072745799598464610498664639285781425248095971015023737684492134055406039132447760409912717426043384122904593745206830989109254374396476972558446388979250892815925564749768045038116282899846481802793846659647747338137832850653769794003621471001070348601843937229258027186119517706046334655965012035308774881161286720012813167034118460263673935756307264387067096419237077548098644857953838060895627681865989353022025862824329834236267378188620310511108988303414917413972173979133250369528852007482065986798590111414883280980877924636645775550492844649371705833653364440999015991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284909199961828586043649700816718107991074773667715596002703614812520476569376792049704912144994565593258588735415612031227324982260672388284450926532158294044313731160007185367219456487120118506766272999484982483451331607561939862644396774416896382249815628997341154351749968261081925296136249054043428986758367991243569784568494716247802045525654501782452777753543674530601582374955422974561484654145972269076368413462670952644802501052200209741188701739669303564110713046060076307828877356761601405458427538307338646964881126641108801164447670582205476973934082947649916634291588627731602178812544805314110966563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "20444356131396651972373848499321126759816727501894092042504483781216637192873038166589491314157400357751527749624960021707151320986036007410162063205758105696382414102101255780990016931830537692464254297497708954330333579153336478906343247468828172466532590016233740730296473971951757711641796733928444706956295902806619969552773177879267806550301241841861271352363536736226955829276555626024546627806595898378780811424439176511913356011490458251979776052958824632875898758676577504242183465656065572132580670823823999432666534760704748546085377485093472638467203351908448150888028312559077331669276484967726073772423", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17943770954846208205359936704932303657595341086959161749145131892982255811674258758124895311608793341817164957490724250566443363259121952931652512448232212098431589561995198916077262725331373520990721673169931516746529650874339924309724180191456859025140480225618454600155857256100543295154655094871016963886440178457454956219056636618408230115619015583252945737581112073799441168400442745476998480243612752903152209908248204597157214879595196856946523616202338958127692127389375751020220213168979510816343304763884790216386757270608972420746068817320561754288057887623417826203866765700975766538806298294558888492431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16688692528672254116475530395418046148065581607798650604575798957502718108544454362325269347890138432462328447436794865247937025025547217668856239702806208803972588778792330062621660426480690181738870907440454113084421701188109015706549666569267054720292549139782458500512650282392877347478330017038963330132820318238727725693393558629234610760518790454571931182061357040682366190321645839653502944072990934887201846199192622966615353106877027450343572312946596671901307991039666329426906772732035697634071247411751960800969090125358262736271465986933219570666806237199899216075104247174158667539450126401889229521217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24045769470408717909771870974496326035255460763654727131197436066235113037329856985526543414692398325793055282142864667196138527018532005983913144159844024405928895163101193830037688453403873302988094009049220377272552984985715835747637746079481000606255086634554951632375360203093529694380590627445256576634921633151500960979242080737139306900391834911078952502888296432110236943480827738801199330480893367602526469566934677784785652390690810351950285641668398711239102517803003856707226722017578432640824097253157247357755226539294949717441720773802698327947066340104829305999163493462422232181052291947658515300303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305916554243547922229124743782795048851409877740727492335831737550529505441649932496154601699376671861673408840534941094671146974660555584121709305522930076155118291268064174633625264021305928803900419405412886331912972841807803081176020960664262400973016501783988471659624544922038383996420795793872387530958071112271113725536423396292438942148065905164118929902871540557097697319105651708072658377271731354876395530211481201064259802225745836426837529187055153570703937570845788225260169161327131989313536664113475312642134151531885771001416422382898384651862201998161793886819845989915969086485373310563308388727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23259996393953402295239556779741676085111757950872367002229396551160037864431649777689237685448410770551473343113317156291375942760025576394918077306503929035464751774274291918954798425030331426806753384232469498063474007696411043148656566196950371307407085215897760005859456749112680180513034458902251551059531983048302058272533842818506704211291489481259996973006948273132007163948717128401651379462477902818468318518179250169936142524213121542342334826127295289434017844583163608099597384576182254554080910146157800315882736564533864971233211890704188190588065100790620321462590932249380797689590073719730152716679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311591729881723655356517591201762009767550803695130356831989080541450419133433891865926866302166896828109476684103277492241494523217698563339966773234547659147413504088176244155319023139474382640547988891808169109896522974306742274911834535123861628390180917106792902415049719856419477534694455443089291020417058030036892407067941921154126685671776294164963566969695595364815708378601138273812733852297770688541095227957231563698589808987359810883714250603226828193337046185264451595223551884630883078089783742687566643586058616046886751249856190111775784422934480741114014439093083034257200778262332700342760065923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23318626135128212687319118808872418350473791152523620756150659488905559980729801336581331382197776945379963593953000564165948183328031309605752152876919791776983484001099715119550604433618448150777808490022482474129982250304351985167683437480627891853859519222779102238045113449628668374556295891905604863235760822258811378592857188818324560562602301033183835297576706991869815716107865574634084626330760889740579548052487192879946892625880705928458594383140585595461117793333890047985373999427267021492422526739015413270464693434520840252547033422916615438744505086212256100294580667787483728066278512553033489472619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322508491463290265728816311832182945650063489680703229263960821024140730435057254413801527277567484422192457266269607641544131886376092616097209615899506696655065511997427092640649223477964057173449590284363734062586786891171887848960986000525702536273156012734865014952161796534518459611359417564899974848223777109336748991071920606619609204574322191046440901741350688559301179753067347422040620933150422498898773433679478594737138309554240857617858442604050550648382982119573265391147209905726499907685760775025223530166149793209379780099594140669267135789340334755961237410137931607539038688714869178480431597467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19800531213980165903563910557969636871103385924339479684908239550799359610346307492099214548555191544558185041343234431527012545596002780998274357101576403048895359226635438481345352890908863377765786072240041401825461780341062112041688403427131426059186188660785067357600692231015309134114446124208839625745680713547275114995847896005346339434651075227659947142172820980916277982629969999650962936360941132741387930742777723620997144464524570888912672376622284579456720353568437632461469615641658610828682096161552309918696180109248820187088587722424286380427514912383546036467987210345227220618141423623669717438273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16210383804951611934530682004296097335449819133057853070456587999435286021136197800130956202301003057669691165136738733733330262268045328853224501566621283469818225729877189278005795004028518687920844149979316796499134415170408253072951852075149096246029051663066171630981093220663680409863413457708297218953279844474808273401861917324831602899019534892613521176643308978134191378237041617879136112868750065546784348696893658778765618315815424314267324249192085522116141107191095399981987959119524627619736564928457389056630439452707073743784434965759855924219997302402885779064523901528433868586015241024386346034393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285219865513752287428238492578243248251567748145204135674669828294157655066136988884700748953503511998509250544774930508513229017829667322321719465926157993937846604290373282444031959152119823778829701221626626339918404547932425062129308657502283854990733445546487791747622105309583528943388342407552416559743008708400399393862008394537802259876601685550275603169865254154810953030055916050668728132490845891893628465091677742483183677685126363823023929014619606806906275017121785676507606636554388703172517899252687277624135465368564346234966366066735573772838647144634003001955380733571756756574521619153170789961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17776772805896609719416688982984533643428926429360302675362822817551528193522166156452697998570290162538896050657099751495317259921558219076417099238666056961290883573386994187586851029820389986090595529735193874705084196220769868429941169150075017202396732188348202334745425506776987581380907067767642761265288607950593097205100239914614395615144513931594880468373275010665918854734794340715445890509458895108516734200633569729439722679943755992209010304069525341539850330410385895349447366949934641815313732096039574655660939774053098025878514413770146454172771340237839723835411341650826290625792316638371326719097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29012904669020884246915526141057053057460047660814168512379339998861170580207877443707178197775599532886622333129423416291111706373934219291425281010469115664490574448863195484853460794301673505567747118203263686035575436010763810069359223103480980846277806310735025419574083817441589272720457281363525199518657622105489310757572777813188782686568345857031680554091858148371452302335779282450838226361385188761164281113518281640027902234093073113755003493493415684098343808227802475673200703809199000427201838694823576023103174729291093927603255201761632776510614180237115850833552565713486262175865567926285933621899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23673899272703518489232305044796871824458740252454117044605116988554814836834861716079950796108943471288579684462086462875270259720287191353813859065809945120981985335801927203206297254739622792555979373516350343463475271747349217446770730560596812406717998667593079026367550108266885925994026345539945204035187140039442404208901893431500641722354636216581517734825717532736099765284599158617869310285684594090762980990178195892175531606470157974670697254950745668488591202638579973624685098152260561358677775130664219414189979651594909058240065885778327809020715752128346464705993120613790072145242369660367164768043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285610457667291238139158059853319115464546729308533468327938391941398413241362023831374698089366077284635235642818251253855778785283159318305968262790712186449950702694161271414830440220760290189347579780243397034641386473547142802143462558376697654312648020850751301510269694072864182160967124039395306326353054737345655829847293776598178822118245100447587553833200037638469303976081726853868590306392499384898783991041969806395260984539745495431654032728669689553253055135959091557534007059456139778791247213354706276501132692727218784479725192707719150973264804391340048071609992801964196916612492968437472551847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343517747452679200371497990276084862134668736203736767297820690672426409733242249580381381290305968105457063410319115452843601172737534246405920721456148205266689174328335053394735757969803773634267431102037153793728976743910739053942355547016369066611312361486643230750410448487235861818938261270168354452819891906617537726826229868225115450550987583631212895296067609849419407185391955195152849706958305067900742488245626613954045479956339258045002143456620945914764297850140692414027710751096279899301507829310496582514591636850936753948027796964383258236764748316072220648973273518964016773196908131040177786649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315606810554163290729480121567509886657418292211451227281907127186915144997230501413304989304924848831915246886018292987642008537800546029666805755045719099159753182770091781009085598026362969417178910632032288155014755485633459260091332547017680381495509359318250816509385016689725459648755299254193255534774448500530557203639443903142233893977393310393809060887602061941916582666232782250925054840548587461404969681691417848733470898728609048912222347886325478368725185705990776473322094833848609704035319503612121106223689687536433835497421936599134222581817743965612529608338924059058792559392487079271857177041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16399344534172349265547999470160220514018502118900414529232826933707178296289538440103290264954113697474684299063228573907172664006672817049068837305553120354335804366572055758724283218043541846920756752170451625739946012965687589935070147530677377180975947129775703395989876795837896852057952834016775710837036307987679636380448631683094707067283081606834557077877367795139111990695814378187965300412676162153450320650978960148151561320465848392113201945563319615638642758423020483275520528517462589668291152878246898501506496767796573830369382306899851963129151778980307690324835120463612944328065995142553579714829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235826734016197096380345844122655202789655113183703828995253793142836275498795948442467365843897298866788069418556965481467752711712386772764228023190538339061191745079248359488194121989464494417904934141444028653557723061722120364207241980157824238051092042775474638745680255384781423553586337177333845474730842898264168138180262499827838279426811820513053629432519772070947413189090348068656223201826752125199949778521887005575529300798272278089360408097979667518727542240250090618359132368037947329394681033858524392459922860212832225487241050179670632549765683907766155331305144041510852880694993336820202198261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18764071464758163253972861511999393644840496150288050602087515613433255454743901289975299597699911492657794445232869049322488965464177519502473431090933374489872120476897449504394658687827182642114862729658830460598234763757528684096573964822952804895933843654296593733253499044971123736499591334647967009533618385438794759335469339422232020470188963483783905275581360954587101359488988999450271532652912032183365983656685675223505728181596929001348393699928457036430647936700807409193217773448653623711725751305361297048594857692645955048756376396670418411578893515106311210964724079594773082352287979028065110865577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251166403020427851760186682124342103648026459259492304267102276712752767303531854823268517091642723242383248780839737317086899520832826181398789842635304422572706727017392514118610514013105261500472384633584415081162928661609191771295970492561471513410973153510010254593250539429159730516040299931506721094632200733918161422571642952839177445519963568466436990902352410288232347815139569099369029617760893801135569861140468449222342433685749631317660799454710247686588454472368686511518764891406183902581638572901045808080955779314011797787191503518770496301831031601468085148282586622605825858154185306708226003587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16362218927393280852459852053129495861413571223760130334654203807049329098980226118074398427228960108819322906036300424758703015509772057093686915079620633659700783028321085288046840199761578955286086609021222069037187908573025086819182250038614212112921790310492872843672691382584371999337293138376517801622809035739606990409501204807999229976711966655583334980343134288390885807668926700996472644188453013278047416847738456296426667377783698316596946688766797780525671250020916802429823042912607579144452970434402141098582006755006573410608952239695438855315192789484603034596322538570960865128451971720488705982707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276403121305299023773708572335293309431104652277735110707420445683979661107181761310436412802406832094440417755714176004865562176645969397811049347706317631062170380043031765544337933186873685515590042032436634668751308851826831313803041750228014059807704409939425233582071389432918019729370521591156967819015188583658267601902211149038520815011804189458024568718449789265904655874474608151961775652741804876612870604271427012447007787267014846665238529819724923696910883124658247190413005118586350362225553877554826509801626470033987944747182989279707487430278190496461538946132670100395073272078149334975904689243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309787443055279335660267299854089518547324813585134494458821084361540156760527350707469826237081499750432121957975735120482961494614105235519560245149275028387940951057796594169669380507940510830858731930982224516350175908155267080860021561773733199493707653248028687925488088766975479927676145351118636870913191383048635473761100996607918651221457220565574253665298041767727994042844739524241384767516289044685699404931879776193177426086251512620645390269531609457218077376566181704295306111968524413929918204692435797979354666302076585065503932126779032411605459001264423601253529506690477441639471128509785277903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19196611420325091945403380953924938049444091470443818000778870570362840091595894910512475936824844988904487559074794380800109826261209677749930939386486980036211799800119459383963585435480622151351654960304899015604233141773875842537921403082367935776522387782354766508672767087532046546382879557433806645018618690882243988179845737678324256184689932471753464404555834184881951149415130843332366795157630149227414880934453357147649659457700148475870288850035951780713140500457978642211715171597690040210484979727470451850217250605613160919465354470874015551152912524294109181791981979500149381136157428201800838033539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18262716792856988487363920476140740162010131185419405906336547676157879276747916824625429436319459863994850154199224332187044542992080188101690544861228712012483589155753683467488690285449474364144849464751516400213805328038008237473643604630918265103175293684054147845274200713601349755587773682858988517906265214833842114828316260834245845511608724311117334339072344941498370943456334038610510415299871651345247418423159261464370926141929447997656985112105183938402984841274354904640217631064932514916770130362732527849569817667527903799160890755553916355347970469167587212803181966207848438317528894966553855090267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327375432627521052233572892093151792868516712238815412829926905485857551367181743134865735367876846748475419711939820492908872858848253374726629150374429815189796986738609912362401412991259759400806163296519051429151127752996454748239128278000875615490926901405498560215276539170594172131691250257064607753199528261724785731185047461872442117859461740914306843440019999074520863808078009986853230757853855851184974029278418191292507020926598684242041932421291405726739601253405683868697290124083273336416472883073060129564513152853618110033936074921260748513486916003227416412737041086596735938021043062332274707763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26683882086532557803552436490823941892544869296211980510322822274689838606524436733303325948698296299549901154273528831764190306273343493223733426170110182660402476874962717811758366568685983617180547604340426341470531279302635295048593834791057854923563834196738440400145420013231775792022045751640122730968113582032875955263512553376284461270332282339691875627802969695329017734802828969432343335542611832835946992871251401745299799673911368079831511207089147842606807831477142072720191336504271869908737289502314194770016932743497226545620414269320094197604730587449369228972545239338197829304857897673976824876471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17374158477670206696646084535456892077393869986542311291166570395415962915389824873709473762015708067824795008415622540097396637022203695425913361171609429459122672438550185473408716208868316318350198837057356308806478485271695227564371828733434813363191491988345401043381849230602715347962117932478146839211900036549559843042160657526328718923350327961028548941020141987787154536634734027673438621270139367156089744058308261549875236974158298639041915665708500184591946432719198466615401878314666111006246768824375688235124645468123031615532322189693377172255145578662203223893468124428885890315602733718361394632623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18039122226765923475327086111800488650838287667579295031262327473757250401471465455473841481896805947248503640881654391290330166809839764702623514606000632572078142609420431639422716936141072848499396235918571467770734398867697484011058576002081743712020636764110136813188117622106606207532225715545084260911548392810119516510527930724909768784516940354115885700978169498661041101035118317505742298924637020320223252491189205669482540379150012315685232664797658913350606995097992889489387613275924944623332967222614952047408487888911739211740901977229066632947750597302310139654727535222573203622955242851425448040449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300933861708236717335420127164837935629165746498612377965516530765078630781983748720504583756274712227216165259513583350504172054570070720062185148373368848169792673622510661883456393618114174145706259765336959913744272370576845976198507814190532947863069184515588512379680341808281576121619386651774820699220727697959944494955386636582396579966337245223881895753849934948366575855614423360736463744261650505840430897749860748224016070722057536881705538008685031932411333161765561583205315905710408361269990373754393669716016298711881624826832422517665680635711085973263529732049509900386101362489269228245170101681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16364039785691965078598966822011030565959544463565168188019828232076063740452846153748664615594639703322186797351729908307793384661848039334565158728332047206317370029242211568040284941644027717690812051191017753887407345781122816773868335775933585028833980483049358326986526832480336285358392155651601984640647492808319080724447585687325328810748351413290727113851351476923353983141247725687656590611755119853912117858511952598620473205401138401495961973467831096695574726794758656528383965660679759842655778624077992278390419412800505614040381445289414354146435496561089314231448562503059287214207360767437839661049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17065198908942717670531704660947454326779149118591537200012081076987310215263673234290745538050150120707927606771222908411845250444909846964274739304304614675543636887165253107354934890705024584833321504001085640343582305333795070003852071566473688567142064573641920934312783333065924426061071109371912714750350690956828874663385159264647995174596936197429682394833001002850224778713122526933893462861316617879394164712395851236785150082394455668441150133384805339879608653956033779840224077687808817127663303020093654273030541505238676685278600055471145181665089793260812650890401022416911078955328587503659061481097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21142105926722853155714915020686506452858945760667315072736819722781247393218927912553500948309550243704118638755656121982325691347754044280272576699197732715292017251745396785072399107358915699939004207175188971701516441274076499305712528054969220791173851655275845585561995861896696985513376980057993232083271812836805851062728484861646423358823384310704878346117258165774892343162189435314650693583922011225778951391347827214635504893433338452715370333824969324205058972343254271540326070440406025784561417802357070365866262336597921481754103599373306373904383383757852335481313258346441425394300675543560076920563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "16897169298889944016254818605914167531385122897763801309715067108576334592944427156478779286644052317421833257556369071886777277700521839886120106067329216980237345546791232029649725725225851335348173515990082756365949739249968887259365940920368018048888676389669491790327592122237383742465091889124944467597845349594953002557360756154201515801957034636709901295343939794406080446388316807182643797939067067303979142910533461589342810622630445951379611899904900239689799667502090254853071606362139599429950500163060592934051139453539181019855419610883227770983657808006828515478501280336866691941434636955297258072999", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "25535776085742093182094462556450585319683043465933998954827943578100977424240933595791241936232285326336385151653562842065572430240414674580821001540400652473026087234497031761886601103761970405221703925953652728026955084019167145643363675954638715538930651489517876877013816461458997744122484845347710435465194765773207345279024668344272860955418581161097321758461978670001829589002794240118486196808968163428303380462763076351450522497869128021766293183442881041986206073420846875464443854749875484211788078598879770767533846096764457108773883002636980591218802940387058673401276081534231527285636331597088195892493", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25078968505666264497543554069042685919315786354484502965609584229675228304525276515362694764238030996433715326526940273569424034486601482244976751023213853843803125418647677579245221136364952926892715359074524836798249845578638604311849360305185483692022423670401790088327272435907889636346311396128531502126880077489146598105665705741268118517343578641302490621579201968861779244185066531156259912181131887396991816550971912762271726704238058704492520828251266931991265656244246878958967966317497367191722273639328511439490524406472961574406313035319095641219987381843840356761625121216598995081797053090635519315477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17440482375748563197821942968833368352391629318990376994687275923197084165868108839024036467122567752014885336457835309667199683169781292815521765263856127173604936815372491179475322536193801068983574969966355671948857142161361575220024186183104052290305582651739707375216735602508003650867733712709158626381274252444696872680804451512064356668776172831246763710931008712955200379844380414906440048545621058709558094421066488738467094593470031088642895059367171103482206234563428382497262318939190577989573433737467552887341795289262860669635409504772037212868224032266021840433103141981687013673263169560705932433747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "28494971032107671456844339030678365354435076852834696323007069237075744598461110446975725045397273586119254900741523082471333545530517793434219191277167527211621082741763982163965645137742851257269459627933546872479876680241090650432191467364437154257388278658419983060648849176105099909173700616968436515279628038235600839711451533329310927218525229345671160438731754915011298941211392077162525910528620402292959688511827625595296217562205160496908319147296002560449167930771077402283417735104002395299746211820405581296098477155549681682739880757019309666971647443642023687860339152851391174266353754759445941049571", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25741687863899140801541058802130238405654108397965741328252563632957064745231441345341186213734084242239065576289140481143079762251634170062902632875275284352996384570327425792641269864699065412017760928162607773033144536599494391651724540338458990616449875771417586077444031617076814263165346357012508337639255391503704259416131708159810465025059600502141035840952990690565581151290930219541494930905005249588438541534607530368831220535895352778178341301715577825347043452076830631631959475971418794322419049966523921406567872276865931820473617649996338529954892955251826703290156258876694237434512830044436899103507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19132614677556816561693629647464227119389089144690433708946191120325678495565459221045175397587948868942703430757561345268724623559787063337467223855480883922914653356306511604913570982922532206139384663193884462084238061230121436582026895040967854010351001517830262799892028081675935039893931104616841520603265191966058915012022783941717213413766251812803057455349951491293827874686349479743083498010847250806456852085853965760278299481914937057456443101604891695771426299702573234881960509645548597431050491845106461356530176950988820592695711640745277502233035366657382824119964786317088352582184374950965795216303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16425947220472698405886483138816593279041873125539483377619257480110410448175997257663453821184072386688361168134801870669058195448916110464413012070959984439273315488896535073518714918388590316448161768928003654935279043050268448237939895702194401909717738060718929065353222709653889422700238014777599856436884527765070146398256145428541485329592499079759951657205034595987908809842764518654529898215850646744787733634451938442020162173766019601131384688210552122257908416896324875270119895118502707129333807520936566018831493729372063768897176636281629679431387466207042213007018960103891304167385732203949017648491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23216217647433710828944855055112282371161504531556066784194484170315414375510982184414212345649473996582977149997829617239126068180037215278637060449566043201126075639077944180541318547862391235473354280353947145561527439191492279490687030345488412832134040641728002519925984635960199868411150704184334448295024010330611994444039343708638019460218302854857885873685305617213728912756189937610362486249798810254273070106529245271933290109352559246092253996313002193232616449268979029001005392199020329811248172020281195477534664635451950713141566144146679725720918236156336865316516486938400610753652160480874673052349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16639225821040835394957643844506756726215646300560165339980074126345852594746452480554583636056952387629856328431035635308479606645413077939043716325888231529970129552809181970553580897357543277994024455177313633720750073031450343145883306002443996192394316923344332710187843246641056833862809028204367330670553276320304282162263081668225728050658477204675486079892817741328310994003973237125013104791884434160735129634470649825702767372430431450857428117990546668901731106036050444938704792979119137007833157191563835097990276304631957717794744030010483411242966746728407710242239701327728622468112971123201606258883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16211886019798827169897019464404482324753369480389698357360857645022961079845041385676410758953648361282497991789224409878727149902398486574209946554981394809013924275847157722417028977052750760186767564216071922403980510372670224814101956856029202637360796093557743557906612517920487058725373948017354643163027849210808954415295595852003049310964112000617398256024467716103307255655593946599712956938793173849360841480884883074605608527201267401160441764798435240569144845014331610942541792242416414579991399782481223342014129307403735303241144458000006985397211102968960263491502002369600795881164651150014685495983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29044786403033060661949790700986059890519389461532175589021057173372692293738601847630763804370873382768078989581903644674118413636652159315024715567270374246417642971138629724381783809855639877499223247886776539834477884561239196599502257623369261992569542800727695492686640690380327507983073189143634087921459174021526697648891272742195435635119043383874532128936303309428805839426571292145534968358272847825607979874915183589458560251704816807619943071088690103211280347666326169294387765800299381164669098974503132466354360557624089716926050023595991608222130226763077139910548378198934213363320778621501281370343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310500012501049168048452173269665178218649909351425446452862836224557951579665706835965094720106671371610742828525262119361697813716977958390833363176499388638588243307086171176547733033473862215111518821196120114807496247357404574802935220590415276984773647060954402316053236285820933765045531932808730006367235546530148339194275416155823355787800513424589463497459719613595221556034750733652087463228454034008189460057434351063694257643789581517110229184946856323604465108670831808336493297023188461665828435558537356346860368234303694668561000167530978317869574730529291295582094462556825872225187735186524584859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246589224458110190766935593030898211407949355843996956675164548989494423614217883307535595430627502675632157893587239727647047998422819627960862461248501899547441042246262794141396873536541574752339298538989748822799898372920278129323144683782899468689455240160157937338649610204809060570800820524929274883291422811651075703665890031389260174928066376390139142135369283650346855511478141662070338763777127976870790143542847546168523073425411361117808759620972205497555317785232951437339485994653068822450380027116761764824566020665897789469296195455584680584700836502979983039130629708044431332772879209855324096301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303376451662460575931594048367808368765114265597153854058463987150784892465008018418128695279869182181535250360187936983421141641118499627140953069413700443001995320906088827157505880326344444738324682453479936661672358860740439628289238340733795122304333339139896916837590154400549090456925676464406039535705620519930892190695457797542096395693357861023798239196356581208140605591223132494342246887077534217224696134461629248912856472313596231578508853610656765781508336121618155175049502074785163501551267809970541587472737842844602221557517843217402427604650036395255307941999935596207247166115785175625347759273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312524455770979168384074554359980780470687241450823449847029465923053751496488546185030237236758215314230489105072291431073308919089712491385114905811724057098928888869894022880590420903689953722989797389276712688196725351762451305314978878766023597571771352279199167086192130559374918266712528475024205648705297365464043792015070168531513769986802830809168977217815963763159838507642087344400430244296905497937725919083320178182773123471951552729721181759339480855320184944358374134465822611890352175549182957329922523217708449624576458260316064584960818793463569597080239892909589204091231835247247963777211487511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16386342039645569599909372510054920557346581109713317650702531338912868589498769389134458783408945621287104609247627347522518936394491064928507777203563137361451235337677252743916279821077657895313756059270344162724772283303618284517516876656882915792910340146343216029511514620588371949043795360308768982739569670616564401068537944093322798634767036579029636531510238292076724250364047222915275329815914102004347133201407992433897884279085417902020979632818715069239348888396826651281807042843366271634815670949076001595511599062169454726615311772557296691318953587479972113880014854509032529310187268660243849189603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16374351587338500354489627661482145946172017779516920041719357709518113696967307236517398525344193044132496482691462235446137369293140998662657584113804289422894434173247958789721297495812564351887998847875906184300590610523125075099637990680980071049412813129485374235447086976080497410673535838649225967924755388057298189628789251500731143200855113129397441787018956665692220436710122722032977621678952683752199495519208250122520695537209783019210548536002977814734431062124492060364283409762054841006029594895237853095003037985469772089642738146624054904225092928453105113209888110380467493381018069047660635057003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16262867038263037545295276208831477634507733882141851279870260964737404553673791955999797005822426653294047734518726980944079175052133833858272692545968681749795229476835335328960399025007568317787032396404364408264905655709672986303457159020429754108754792850608352815557997144931357377428442909946649981760173968337807426587867191985838963234488805152420425626339872899670606671417943199371026092112343349659431955258342847726062787671170854267081731133458936057303205272925189204861977922665180502716218751998720717651641275216872883511009135037538453437153554879972964641415768705468712999750042043906798612863863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16233344888629928122734432426405009408865965973276361978200758895864224797487571391203093578229261554170762530237560042000110565601607667405589775291565392730483188481590110795681887951704322965412075616521670705739253889545553885848206658404431954463269818145574906463133132227128415909769355228847701009808288227082212089994121114602309551592407696662055393026599929246183068560962685035707954473972405492299953142556681194022523391638878026131402042405307119748634787730485709954429060809895143121078411916598132314390730515196093208291478473550270163339800660653631967230483656492434999821999226934357743642344143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17396876050283630859920218946000946771317362516489993624186253352242055522667280833513308582547679322492884407193369057536593083441227199340620581422688786928827272368771883307993024775895832261170954448296861900966154260333814970068086903594411641418909467213781850850162419309312463813302596287635976142582779996692226357647033536314972379118787841781340968864533825187399623185246063316799541086662270207627107721588710820380811712251378057580527691804113755325271934378219259449830591925495167431172407670668388510469866966995132755650392473493700598285449375809697131602080827971625969984692116325905840040843039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19928640878371594998007404893086301306938288525626243267166555151808811918278579992573491244661135599933631141630793806780623361533465416997291130938146581091713466186559653021883886231580731029371788287331514497297733588941167423272705610195134560537046383155948982633057006738769030184239178185047935906426895493113076247941290861471006652518681856195103155726518652864865779801140044055737545279923266902674721198042373846977078194887237306301451759310754506603026160925780889509175365332672727611755581259772323200431038732152889734545987054200645210636425234920524353555264575585053669106121017231974810679290739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16922965137261308583829530303659113785692370891780753643138907963489760199957202197938582056241998939389063510610953799572058979891343558267839353504026796619135057422876456509813680052791476598714393701638047531349277669418211460613542065052725732876026641294590921577243344676956262771467268573044768972240738904247747156308100069664266263873591327648911475877851205488299719147596279936782349263071466152769585130696006979175100827005702903948544542568180460160368624514519469709885743371568639225341248592476642194845416956941515556783654252314574497490543658818531514824080017286716287001894703942340577542158663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25244729830086183711963317555906551280683369495892844351398584764119402523327026137561878599214211587946543086858302012327775140577761681343718449017940008691275765160901997934313443484492082645840233157542950236476740582089420575446901162673933827878017765548156383323315236479133942308945902709161276577611056472538506789039347993717054807854651663991131021376809235448756590189287392232995382671749240931920050553599314575829607779970366264442304045913942198982078405349624413417939911863393401041174693452858955530946446555969323983509177648366905641677024907109127933698386662183114865661456792978681635092570593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355549176274103734315967353676361895200818473179172834559574311689812539062823899508846488618122563769148888572127826783763067227551932789802757197667258091752001161133887946800268582727250354035413458671328903956922007622215311954709105888376496996570013253304096283792949143375201380921238119122359435887520014277320892180973530958316130520792183931695307769024938299517671566798714174988457186969679760306592641726366244263797810327578566673204414790255679823523238416383074038084994229064297649720378507861880278131612035774303863345641989459179075960472619938790584372910970314503540106140920499038859014896029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21904346301878042752040020561980924937810413491003464013832584481627852567272973199495637394114546916458677097794560384067911132867838521424676040741736830720247477863790047077661828958947051466278581073921962641891957175774578979363205014613191882111032641051675760169715226417516042998297188209998035435455670972520170100884258573261251340576641364807781485335033821952691854387739313014809356640384951489131016907574665472054064814523657676368149910498686846991490479772691971301504814651079442848750221761540507574047157397417730724682748693097664587222832280009585525437843715463693416296755848963051732219367057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353270251916527994509333636130932083851144836652062736699863210218676315936033755677043352977700258382259369038007250390118930111007935025385579308839491429283030401842414580606866595625955391494866194956821067439424412860786088697223329677311960703182719610214838065257639182547259764785515583012817222349761664526095312034980948503021585609286297334904059760695883886812565157039374638139997007869929896275942388998761812524269189098902573110721718173974329445683355789301982758337833983972369190783251849942585913955630795863368646888223772307737070760808613512810083774458415419067632628790937880635447434475969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26440502218483896744753149302532996410456122905359071062693140142498058459332791275385400652080209056811557090100408591844025409541278228515238516103801006778518476681036904180486085089073799103286579825008819465159872270249356692288138230130916283675095336089139680358121403329812581979882467376297738177915423080867633503699958326174537331846024444667199280591901622450078228060598950519715839061122024091594989845249300322741415312977219716375076580786377062909799424411761466093986045968034394501991001684242037675972039354773452595591035830633487224440603745254085462629809545991771305785847388719339559768518459", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258279825482518176842442345535619029421557123700199427535752236090041233284726740621305175680790677977411459907507707977868174963073768992663946322358205743169976552478552990004108639057637862862351948345418622087108205602445838256365260342638698533735347149777115419260165417624214322768838745308203714927120438634723908618252280642509992990984280148414919539383344138954606513570749532429095976284379688130233541964747475175125516270506130792065118877974726375894250160246734827765481425679745927364661007707432200705676581788303983478718042597127756101072142543883981465665568617644742145536053688681530393983833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288404653178380072787595854666912780160949064797181418278536155684933821414298697699090133705427534775561946416898700218144691442358206182825226059799324725115908929863035548877188688667546049312065512192684459080230467655764398269430627609311576748698616112860290579362165720714886362745925980289747799972058870002927226425611319892088097248341057529931209136845303920949359177554937462616052315093582196354750193668349046043881073434290026989856187645481086286868977662681970423710637876031161699792540828373854203934033494951412724062318885882574148497439349105369034261375769831139966530032615546022956480218591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294118953353433017532398200717142427924950340628466469081493754651229160769096783704086230155729045513611766984154292620109099261612227259215398892583498977447296067983300304573569000905931909161662938434434927520415842230277455438895352276434568864808585520363120637753942442173001860865846099376584760737239445224314671079786142429071426224415154556790574522577439747766545733260577184693448244062258979319422788979414096368338759078018808272563462268020427419597449056544196834237741111563572580697652047858910336120359502098512607923468752291765629891432124298870554844011160017430882721519267629195456758532021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21267663212215471297281880620909932811505371174436077201001923476933998733058200062888688829702508347981475299108154480575840283210159862649319004325645994543283829629569992629790121358702978303280116563165171497563453841160584405009849640838821492871825716284050376721602974189921896199961750842730254764886332977387921676130132473409420004634381958810189700191122960240885935867455185292410536963949902362873088405660653195506661107743029068979685398705066033482827748060894617336468582614899715054715979053410883022750307406760140144392617138582280342566127737106059102704958773360160141913424096653933442429260149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17750383112153447554703058538395284662407860964280246219799120455515275579891704617525260438106222639544286501553965321022949448526988179118707558450074473695607377354405208322619648992975593724384257003317501063757001711075114707378172162931061457410498942887329471596979442558918442148604884919128567093156032119345680461805375774732149866268132077348224502172872888139588849351198700279415241204851420928358615385359635416627589341535346776572177831133899421109711837235822154079250607462568203638040524481122249923385344948861357046038730977851493228458713467674218332511463292046281096521524322603262708883251681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25023454239640244516576448744999889098961562733383934404009346375697941217537918198652176159209225520015168567988745722752506422989453184863029275740444051817081804501628446496514760312579484328117915492850144178959542679711803876021032622850311455337119039339685327820311549771045723538844878045569359926481593785395410108189014700123000004358312158399880028445061098551500337138861329235885132058870023911435516226967043393941303065792800877026688565819533920760759117987585911986006738459651647762683622915890354662104073671101771296481918091096688843653376200982152830697151301116686310382990542892485489242910769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29277037277429904373098302804057229703396436648050650307866698783315987877448765193678615647025469010863313898822400172299149214750614614654383352635991840695164369981792274170808338334121190871581593637499744641415224341617907624276886483425715440372056947927467466682002389922618537204921409030585591026291434878844626697561120618950938828064761247939903621390157621411226004627744707598920201981166177661239793753342646174246682250058169115711702919420452531311918214753891627915183316365572433176050928446096747108877361705209895384163069308799754001793383781131495609734249446055331054400313638573217027121428983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320652676100813092417632830341883483368217759844490230250351322086280188477371430572692170527678442071133848818853578242295757300643224601127211379929906851638957352436915563577554760534832730347476603547780271340845737123031859001187503829198426061548771521319263990484118823773502617144963718591215428598760342660914469692996865815241565961262749258463364701720858142543096370986981626465201205399141657034401292744375100031314064964223051623565743819969376654879020118120455312625530978812302032576761857808740197502607751851184111509981651344230501331139597385703943978487266036996561502270180461554001283922009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21246627724483348041609993248201093761162021366048766484046856264368940254072085385819356585560532560600122589906385366474876255172345291961512190439217210340429101198573772647904706594912318065512631102533634665056893541728821461706605716067842805973441737977043468685404997001062555752074153183200304074934882864890018183003230012138996683082346730419866994042206159139500104324412007226193562216529772758103884726612055221441818238611432397986315502028276779578690062744905810534464320837092994448331350501105918106437381065205163295855644247453607128472840148359150839584424940647370817123451104643427886669861309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272634801349209929993431086585607505129799029963705875036846254034585497805783838719060041407283008899165681838504613035475629749547315835874044034821047099814188202110661937637044357078786499178264023466445407645759774144372068300641648697759408499481637705798262418361043041797712080102831131520560395718619811490259447430010745801954224060268022433114916497730540838902760553763442049148796805456688300601397430234438930122400311014922483354172384992130130055042274052647350818170820300461062849031030142759589879926623608860301684944392891084941151713317006185532445770301878752557009143419253662914731224923289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16407069094854663896549546047094625239068136455146068342533137742050179475058247873202639423629492560118904970213084749895535640208393954919486846262141545837190128535333430601517917070155092168630656060575881575279534107391338284058961296882063038826635268534862537637937749850214123186162389039416558739353141199089564616011276706659624326471685101902129825404140364850657622063865364159393553069577061774219226100062513442695379242013814704350028735968654745887499142073288149841397990301464907003056385417154749136967655548851322227744919237621570667918611360306999461798537100384697272314745540604110418887361843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301124740599818330525991138920842786341881074988092637752050773964544708777011119066744854558950804456904083672220009558429280171870742095583391862315115723255000954530620041461493563140840460012692507353527017108806468583560765503045306964322333053520814810529795349121732269230484219152840220634076780371562365878389560222353526762624983076822074055121368595685541681655401432307825130236534055124465281690051056539804323460689161609395239359391965287162603580990725082685172073314353360685332153378299077880648262237422277850042981808275993427561014645226187652797487470867291594530113400050303913060464089154251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18467251615511759634346528920152750818747131499952004912642859358282386875305339151556774971842662972549518049012708632348562374190537682068310186881788804881397433790650301782369371655181061129799127811827262648583789885831215115834090137660304613961017398422915026984140275325214278127185659397769142000267470280164139672617210609225968652555148783753811995621386428576465694156194717400099642816323699591169966217728884811849484015974977266087230877704839496301971717231660193175880014684524894075386174655090510079888090325347912250883576091248881938459155992800338629324980816886322325790588724737081570260813429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "27448025341146434273126866666952965405894277034409886440665301830574842173699179636083794894117721221285776005311985226243289349323839579792499957895216709623991248848245166989549411801563200406120079058888868770635284345613358844344008304191299891795962965812541040782073120520336909758323548818096389607759476940325837456878359353372917210265620359123546500730610403897813193943204406173626047472282679049217053873645198466595917108222194141546319243017594824217746037690185708017239061372953803059072089567153807949340976747032118235996088013934925811612290767089496994341751070780186637549694168159676010509507883", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311694580667427144423748770347151738859276967997657958823646574818425525741560886682679914362961671965774230495701051683109374362544585465250781203734662461931572116925646302683734061223392613555278917989493049327900945589665374130052561068749475302241344969684513485760416137352261252209552517410203420022597273426594504346786012045037804458908973171859811309865834613002360746682348360062415833651489152959041177905282041681471172067389497348079343917844594837487708998285062251399762516631249074217591792306568364797456848816664406655051122723378205531993488887844808173856413978085473731892937462168252460034859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301290528364342228816344673069188962696252268866135268620465489104399489781718016137620475735330764805178093327973143381109939993122630774875148288522866760639873240557239622891428497029782203670898123367422713215754909914167062233254068692581282696581448011652584000012138291013060778561043045478282147922657485263340905727333717774083481209073973083192480471945616346397783314468228187049761979120339782522067332432827436850476249955727151076089636502922323747119782541204977693504110955252111899314627276909620978567437213588861951621397726070897532867195412914839547452311024181914389134456225870372976730516089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19921225750359067107780098748064667140878167736202626595011182212095760465590350286010674784492419866509370265157444909454708131385734544536493444883783421920934162624429742377873801991530802641025333482427421090918666234621880581418309809674232586212818893607969885652306263906528896517618340758563692537286836208449032224014628095825304422995248465818004234713750119934859223455499709231648260420743809182244684140133806342141230449452531816221970506706090989258887648341753231435752949749846773192052402539120942837895917207730954962528260644836971883986418265969961736184201893450931004435517446889280440673716299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316747343788898727758977889220655721120194418346249801118627304281968097847867397174609879180827468815551205342822353079355130663954660420563798971221895153872789847943558658346922260554731830156197291380091557643851017704715348599633259948760541717414463390417842672007322642189882516931452530520150803049135477350231653104226864069938963592063402856441538804739198818357250467823022201207579601258374823950032967357929943286912369390122606784629298832682352507569628168762264301088864536730405296225272644332436009988517003608717008816294434405992561601802883990638187569400711577429035761127020050297310091225401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292115243169849438894122317720744489320719738383311750629340249225476107096478025856196784606069733997388682154078139132657462364388258639210683806099862336089051435962377202761611794087776882920842458976953645848718196772041697014977435866424808800343434253901192166257662234105121749822451928023132848026450829053281484738013683431542186710126174716630919926287260192297900812099065362417233260748236719860718360502107418227704248488985938389895854322873312375255277711600445245099955068633685364006013277980467250138142885471373174093991295140125238336974368190129351979692561220035683748140823954400890150320493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298637604288715377293205898149789481294724603902326762724114224999961934596495579450988127336020645040571405533141891742672875076782025828719249935004624451651640645410819176262365590080384432968305990287790430949484713855557976506795494670948864374390920571904863824140210138584860567000645588941075436185773104528773913302903136707937327087458413834463279582862477038741447640477771753352795420423548002877511526041272766157855501255173962335682519338834485675524728743126561260303356016273411995454896437247465731258354788345452961985288352958727391525658149459090864719235289014422018486963214686733356824607377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17625711746310595446564984522173263316159993752612253525672878689868300364681800252229100648198091454636781748737441658051126183389856023642195618850799956521891247827032698059344808790199563481005655488789330750616462763287545300879720153517009799409958157356590618493356801439871521265685457330867206632491075622287015887125433547564037370663521299292662967405011303915494494631162438731781364794600520336399857383771537502096171586309163606461237916502074790524349547418861057927726397569515036904286891264682903867456227914430201441584939703712693904755658890839455806926827309548018912047304991493686228228660017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282979073814679534843408891102466443820726246373370542888853939814146710639643230832552880755188119412508997533367539420602380166457984775790448916419823352260249834865892023892184151781253618210095407901974107423472847777011367001553421849037985573573998629000532382251670692791324688681283738486280314597743376972361596550078588425150523510189722893401690511048834395316684448790703230937894595038693632274076383190905451212286878169632705931220762428779980177026698563584964349447423312911033989154209673472910182413921745872770225507081739156018386846327157296599511890080165382810819889400847004792127703914089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19297747216688741020328923663793724646513357600361943794240427036916687267398025095873978487257805766661791832703884599998162426965614779018246668930830424036640302777095067421207438811454368841668622544338904742700971293672015330566173710317405952650157472713979801334481660211194873932105139430811135333331980158680505026878991885537055908595679806311420910282751305467541159074167889415096946677304855985041291903302101330016847492688329142708816365816653130093506336373401468905793405679580672713171123612992299663804776515927963920242269685472704282641057174095655888498526056098301500894500657996106875613986899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357991095790791261850643403698137193506974546262711995354752290395440266394581515063491361557446657075161639171679675963512723336676364401554105050884845084842271140546792574901613435148112380919617456821947901506686526787898827996835702619649818085212187626570148487490260784052127596911249540405192894232220809486658496491855136079727922541890609661828515294502733186661755730785858325909583598071411977261324449903117959328393123516374238430943609854077524899587422459453394089450088656886235467725569782220479407601920411233659413253742547823829493359450887789977828365279681397714686003150271684929309058689717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310592832809302987199716531969201375254816801870538881379984478405403204085667945972136329729522836788887239308032334006291877549413734382587132713404974395952626426677045549929098184954969326417468206133231507766368599253955884880872965788848678258744056801205338800082977637115795096710568999970915892373882041969947118360311865177010707300752714953468239123902857605327635726077915874171059882252907847514754637103823754056230300390565884411816465792424938042719664903943923674973244166403301112948575134843752301112414222307681549103811711943758242606793370141470737849691220877557216737217479677124456051320269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16389937955615855349990873551587246173613454219700039464361674697095943085378350095589522202850755797239089337485323659123105964220535308264705378359464596402442888519801816887775164466039970149226392116682456090499629343547123184309322779571072245689374895740924994060388083890770050388012580498292355878564716697842296453809411324868396537780081639835728625421779748482395840968492660854254259181562917500694365655861294638231864484270878399297115277332890672894814600564603295196306623758064717111080200549881545507339064603363845726772305778460900935050171063975703146187957004515499823882043618357413011226045163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27598943896022087623836127470490230672697747648448200395990719836772080775820722720462376154808326616363704117630541967606277084542310565249694247186272645779590487029744626053349591551219019189961761408347540127945365793643413600466775874958835742874216402716029610916214955352402708058957138229565929169373496158481952275431882586617813322521936607803164179201912220022030833419403439982378768197735218955719773795126362763238510304322663666311921588941407078174564982734101762743882139681745599004890375509498421628657064324995904068486105564380294787812732986450387157461914366975177770575642427134470751755557923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28816557407034761337375649317891443618142368386278822835074724718705292887788509219261389988523603200603500074701026536202381956873407305808198337371246410777183508209702063242598523693307350630930141150220071325996174006217365872979721190262144076002724890037294141842043621839098900606213794384173371772559152631992273293822820761161365930512865350728324569804518157162138347946553348236216819861895339928073487736094681416973372172767534764047584467110233579794420622788921136165995422978513429356164902523538335747789975450155165025653916856932275506575304321222412812939224300224683775638622185641960779930770961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21081964793860920451271852568126417503866309524905022179724378521683876243204093051399242859990534319796948744972849834672140176907294601929094001892000305268624214122259162632170301127562508949298449709700804776528998765521246784772460470494070360205271055337256170465124760291283193079810791413238650096562199480606464031009182991473638429858986565595407973966095850947556678834567566528685354440523165961426103793492572048677479553204540790214564060947615620993789884665760993960567158776129259654688276736287135496857327761948008409514998079254709521466659448127451458697214444393099995091945157938403538286927499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271387631924980047134707649567271878496856922467303922066689614150806114492430595315966853555825518202068890341121118204648429024487647070291584665394539690707256248065059899461661366995041360828528835831298945359919586940739135666720671154572351671691757136854259736400307258090561017985289455230845658841471619288234141181661212302278298307584469128161388728345551318079254178198612381817474547278033404396773168374413563422964444232845201429129650825635619879752117426819862269457980611169496306867803994789254985861404341021059245852663628127789809862988729244738730444769229520732376501609846136645177893570213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20652652148744074778388966008584044017384608200076492089876492841121543536681015463754786763848060545235172250423074703089193818912348557249384785634775581333254170329514119835167767887490949844483497127677818568952399810780301679815488799882052931590216935625287846161427704553924081843342053661827404672591344309770960295433887179304149948742037466316069763036103654236067700321012019807955726337707376935688253995304793325420955137556475872516482769449078848168952962885206765407121296344017935871713088228747308928879106821293780752348210493510424252261344082291472836013941704084290478423180302841666174517504161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25145325076198892266469355625467942533603702174819550106712087310298206748807914394507429829738080690217169016487793576002922631287904020916164409357807615791623555856158710149574841362192362773565895801533923670022171417690114302999728622975128877044770595250159414306877172480203056036760671850856768819411915835109235179736622793584687300317975305558959283959879259952493622737801479798553080997505808079158307834611759931440663799668695718452643862626292199146052473538435386513626855159008264048702971123864884687254565368727601401590274192380610619300548680855118577738564976970043936465592627625984876755154203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25039330029397244873873694485785069221175254492045688268462243877835474912461529907858411446022821003659893427003761600506013592962392630676436335495767072139026249167962660521313049414036236614090196323565540669232734255946521936606105483358715586462912186894491411162374333086904599086584833656368353190151915548763745826228022632540521756879341995982160695228004383282358581526518249170905267509770160509302953670052802445492123959350787989616417799273492403628266948274357005111684549839948479852622757189817075638936639191851359538657255615813901923105898184835814676907385770074279623414048161150155455747950441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28181291313804709249847661010277281839732737879578029881694011367966456507573515013380432365420259628205789688116422088218825800755262458473297552020048036710726306836083830550078910569188598303553172706111168850365461224745533324201676959927724898108876785436089815017313798680749679657809868270305433945375194980386859471428187144549583165469026038494534276612812353953389594070277255245969326991750868995513149659927842152910097390056873764943899220434547998073127135016194208259728391707976828811940037362371885026726011073078407379899624630318154803203082822556315555810688955826429916520362603082804797376175941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21481806516033983368495222422398908084067186846063483046622200972416328187852519537121623950302756164683229364789101431524956492353394988021489291833480107449112170970352805845598351392406722085424891973839455025771036673023715991791142352393092138838792919993381021139995909928259725433467096269586002946608334908749410879087758872781100147520767356302762636791206295349864659925319097096684280064789576349571019210864295634361355371282764418154347332699509148735414932167912479948144889800786893231773445795997374541712808612942153218673198220186430734563174070276175115309576485877731951026115204992554189426551361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "22859917690324366857637770205510062976692223768790186165048411265402978896854776871565551213300536090684517017458722399110410538264731565725930414348761960092441642769401743511128996683373736586112846768091093211279935146957734251887715830796876384939495356512232456337288447158882783172082124721022407011456675954049051290675497736370575804440924328575760066637908898852478738139999169922287457031255487128634605817071018843446455135068740902870463955673221222646361262100962867932749105243183307583981141136431911101848192885523349666961539768542474152480076005612419001032289107694734108772547807923780340609104881", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29290545499314244609527802606961592908978171239654072148698178642413147841422977398927017521080560068516747148612906062138931267103749548273720669164125045278644466567146834733693139225618250476930671343339193761161150829200947637578705000868482896555018158901943749161033025146211965023355867751323007688003062591957940193503536970754456017822742198343073790234653006940183856047858836808882719422949209286635865794710554169000526891239896374512387386246242879059948924494153297987829434100029074335334439625260927942707085549828373862260294369289155457255048317337297590968030953319792734535535183417289460252407693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17912514294376069704465565559257084220700529912828883666751481822947329867130082517479010274573427790260335669991383181300209698207802492957233847843499185219531042453977091956051333671351613301772729363064678199405413785768358855856945725461738447338942291296267750417141200500148039062161098703683445578980167452039047769646800150665876441376161288823771082589000899371932424455627474855504972091392362810813158689189328562122563034445267437900108543556600258418667987058111879898648563079587843398106956916232946782361258463403975375714828249038026841663866497522620422529191076621994054642161315527550344391263451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17810094297418266400767887687152017113344827979999444344482091586354789367927341514710811291733334090520179284026140748287047267786648816897209036681670911434150804103178714566286673372835356586785880660637072889606810780106364594535152644088046021165824596805433344419854343613704293372157538750423684636184860261713505399279449475953098311037208099132319176058863963635251065250459707466420864464542859587064352031816437145271489695681395783270808224574213840699529544555409492818140225178499892033465041049863447054245247048221496246109993451681578212856101490834306931660724955850807515491757669701361984677319111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269532970904235398475409191293845869011904563312858585074062579293604540280578983312809703383545669666781410074080735937293445182294401641976090402859920702950205250365527658318585459166672834602136213414080929416999761467462357226123367633092501758837454438329078933189539660389804425984227976206232089136171838580877551379919673065365921903297856151504903714893565455593708095602028186532751900298357305614839624192923155463562815658579228192911905701724999009659475314020125914223675110174968385405007771165445523341642538255124717136291154934831755919634480574644743110108208919118875798262408292507575985086293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22102147135815153100573499568441693557556240625410886305653327587441645658748434134261540256486149715011849908646875243437152397101951402417028732953877614653445308664457816453691225694820600029575875778818766937716107231039786299939788097936558873204500734811152288332989499530559782216119939866751318902398595973852723923137500179292299789016189774637756356058537676362497029062133769548318037915339736473286037088619332240934740252097553445484180464956392319002564004065273443124083200178440563537967409887164626527930000365404990326704624521196654415660013151393511845506189040206060916761133955133704490049882337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298926399228100187422431588906860534556434935900203292061073228469197971403584077248704337090690174312486218123426376842627089062168928331078825095924235338619111752587632807730491102137522755509988197333130557442950323757960866540826968160921405831559328500002287917390983073975708939857317737504745330344889572977771159588479811413693561236147178025834034420302669981410393546899790503305101556327785787717507466501253259135270673785092889524958380905559406893040851978483173237909515102778541645490506879103861266732831553105979754355295610211350389150167981038767763485839447571044524069726463097067223507125153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331222618275272747329974146888168524257689690767695396638792601786019309060885203633107793485908861370893143225196703982688936564928059910966927048266545857046251515719235728665569880432992764471094362225003425712369817753068972476900473228488099049624522558337568198696012913051888776403173918705832375173286663380717015014374620510079067564781764394094973554747530029663273342187355150379751743705008664124725745884791127675051931378829564028533637689580929803325973350628493417849427703283931891872176843305697780227493877762456888985351839970842528074168473860529785604079041446592196424778815128877705416285829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333457512240196838567181984565365860583784578460288480195403053286564581916403578604860523043257864446653069771367339943345492725891213339637819999972446184230777581054548666591592563260190419204601331415298173924363891558675915243635812786208528374788388659375740964095120795818823950186658791714210278595185464233945535006635879682419391656908927620514649424070315920768815897569118127776051521760891935106633576963672643799154643317869860131086092192340988145655389843774916700902805801419139543841657326701272165630554457836565762700661268525359364236159806749213454871781753135145877237184421336082755243402419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279698953257062657229466077331392726017481319341074303475357548948466703765559995624750288578266820668328907914448987187465397780700966931550085827386492862139300870329079943857074905772625453768476698513739194472290712587944414354195725492516027908223530203657850407510115709272218917508539829997640890114755050336813597910550538826024413473160764670614808301268615135412901657495120258104980566589693733555072780616507182768230976236028152133574895226587126362736154236015102280401371551377909992119406056437589121493819285267409177873609788020790834614513827992892178317483490269056857865564920301738328488262771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332807271859631964694323255645344408137315065253883601649693441536528812531252308155709597052878403719276311547268132603847176662671317506602215748511520656625960131016293708417594551663929065276076380373419895464527533211255529766938031021033364971120266432589019614286818627372307884888186534749172848507075927203904468202523429002048990664677315030782350833208629418864543925474665101335783030267639100714827521217616970876121163881223826093004689505252896037814481616312591251679225975286139434801571466477605470437759237922401286606730854302074121584172552558694537257147629381038227481650471570165828640986917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16213464461704825159498485382306728175880826643145809014481592561903976749628990107835348711056355972483144927248160330406748832022579820538801249504354879738567906967419887539264438581674551585599747263261678150481691285930719326065133992657152459117722299779157551158943364187469656078200109344840770545428419113071207845312509232164558058997605679654711531936074654766893961241114560227886157266476299444512699594362394000602938622898002194089096101151216284575870870788937625138583315060450678900624738289189168286001672014483352593051125395436985290756931373715656307770154896745054116643617410243713862704531083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24101401581622660072876330163281225110833308496078157832001106905640153941728705512715724062632461647954635220932023641819470779138431535831145419056393465655775409801711454037191952113319464849907727760251841156149342826991168881469477004627210409598264308041222197432858450852624472704896553720205234344653475363286672148157926378656841422026207944761595492422935296247602184929080495153150936123207205738526950337684863752540065634751098598616514828807427373007463781842446817192861236388114792289857253289580891617733523698415703761352582735360712633089775419324879684323596312565329512791203906183549657321322409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19945866846481519449602001059264176563158719613810210464972690655258694045204076351897341026230153848082559763055646405107200261180455350419942816084176703388846545068797958084034469184864591317507351952532539684546071248829869033545446671953359348288411928636045404490589379776475307968125181878673540436821242122206965091092938375363063795403889260662842628296712338636992032106317363575512682196693961347384651344692493554189440704789650061783189412383157889489530487458217832523546308434058505606985132032744258578184593812592028393325243118927621536937827084866385812950538174413404512388462577752052777304524949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "18719371678555854464583448036063307248362726668233133486669237561149778820968555412761378486039773916657392850080609604538871102460540015158649025917251862905361776276616197602927755466703248741142464467892206165141105768130708769790136865740537953828890442744534685761762979465203412460174924916727434909497824672079111082663920841469090800169008603830887314371892903307120306767615464249764257220871529680407219069189740063122967932253932736607502528755994639792124419886847328586227963698353224643169505395646685778533757375121063228575380913773425945959816460612641378333222203406974074568014721976945165559627909", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16335872139868345783365660120824965688521842516360208772693133236644872575156027151518949556970837473200081518633277707043667746518752129750067307979411447557541915222076812768540172977872426833399285837091441208757508404079359562225500063530772068336791327397602331950917577653270642537817634181823800076891920742127305761888800660734477223508724425071406626212109542203853522958968188240202226893129606896697391067349630599015540583278132156903385138183793736039836234519188448370174317509784597206909169138021274221054247252497614990508170522504926356187639397802448772628325802095870058102308120213389051793994613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17272085794565983832572182846109308813658991899521730865275667568044906798736401048148750662499934199987903535902369114394659429893568104237289866382811898281013534176009154795388255313772704556670365378840996456836726414147331844668003572685340218551212498852761032118258508244582872151077191553524419214585089500114503243225068969990617410440313520533865520500420295515570617905752181572673485151065245472054062406748253741893440081396004588133549630917127514658810408050121422102718682352617976616863546411970541991059074569666997450664933074674810925596354596820701900226785786677245165334435283363639248284039873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16426520731983778794021072641864033941586239831141228141341511657464196779979263518321131697614546230680503252047888519411862850968640629808772466292800425612258985983718643552323823584360155943477728034440869480120670328599314487576984457238538280303703195969375212755706756545736072807125581546631925483422253702825041060447777337856811104209498568960226502781240486113080271601207726557903509543436422279837069377667523259970944958533804292517584244100178668648322374589778345015088348800981854797665989351148007620562878067153302038886563591796129673704340706785734202670046018174706444087110758091929008459994509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16364422662944406132066811181188423991278793930865069463050651170490579068249754908447931642483255858477606209314173620885077045334975607814327154907356064270146430402193106419171226823537323775311774090339862386946690365055283446216800149654234870375205864989867995816035183883641278539714534341430995507085373432446454385151477934807322775313212753374865871970464059669359966095647594025843808417877098438616569255158370316020652912909334504642848441184928712296910535234513079814659307988773180323164983846676171051125355916724265993637538602989790031843073770960932384043781336045788011322906803053909266239598899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17083752216909220986800154412063492976852029550788051824479363175160096351661894538219484101924086591349618044308500461115893852737181050034720450402044253449927091863582482641459913192614441182517372175092621353138042639290979722665332941041594069547612933484136161000891846809661212872562478631735855721164600733803156565756561800005691590047508049155006019919111534488834307513638217031694160238813995133942515310759984996036732135002299055768175425435099390644355482674276925125757054147416402942919876341550867537216338378869745789479768914582916201269910443532148428819662347370378195504867503332077831683513171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25201476371774462808306404432209644030377795406233867382574127486296903234207836239176861411666900875250850526562600873722609284057408622430736959723301868702002499942259734528457584009347640901814082444193168991993374180004439133059539363404348994988809255743049534549418045099066488366213935366143669814436567577601658551274112271291203574552254598346879039953991858467832854357706491847314334085440131972096677004050737462714441711762648628725423240628766220052404816069919702489507414744836496877966826026124143247090175880685924590926370821929439520337809051882854140223206084544603242638284078715845924046465067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26745135795830914585928833782408282597947002009222397489621489542010005103831367757021715590104382336234845028244099695259095129976123611076473732773789132505807115247808119337543606523928926464223023400554025203293367318078209927017499284581563104860934138190710555897448890162233191157412542767223792883459206747431627353998896753085613425078568873529643616588001034879735726669551352408391343311500219829977149052657061609257356604785603729168041233436270971038491255190545944550744751167400621268626493229104622046780432239742333685423846978856683981804486686179288192039080932858434261612090314291235869259157691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22357118946810635631129070004204895137465894396588054387659998281140451992029071896176511372971344552125123857241116990055076533783172023793561795806191130107458738838841961794135877079041186938112280105440792535236278444536847457438658376972216183341830443039331798671500468624338921949064675387521382329957274007178573094688290859366176882617204637629428624725553359140923017867565872404668717693113190249577727003076478326857945219674060885203649044873373843807169786409050383217109311826848185526338564235521377403856608128509520184013933870329985157045233054629653060971432059322615914610246418229938869331338609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18235359634254544183794929546586857432132791709111466353189868920345361820963903554267885560508394649998950752562053487799138874583324708541363856695268425136629724797122781616183767431765439887624270867554878266081249153496652577255404683825155289160332724956043410298403493760717021036759916924087165584697985055964385844673671245706309275668286717683188810909350029026015992049100611395344903610859343638111765520899267614397273472778907906617821078043207462714441412344809699010841887077521607577721744903247809050197321722764062128544919025548328222457692273020521084905705579057143670876491235302968022902016067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20175293179448020551972983797444267011660082760811956926441388574061466627164233691717974293902888718944577451744650900821186050530996413388208499278661662417146063918000308467678692441020074631906960437862455965917231431650524955128035659737922214397033270262614082133437269735169647679591643176954999962065854381586814798151403548507810822309775275736314583878767017987926611499504420833316310568455545946851851850380998853368697650336687020400585158715772033069506732756642605707847302042474895114557260463710530643928087426414064101082881460165689792970228385697022319304926743947863645862029208998069731276123621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24953727125248695415818268821210487793455082507634397514095526752692941358906036320185846435502288137150091141041120850380425311131387276547684169700629259538444318873448258146172042812024357949456414227408516069334991216459940053756055730374916688035972777928898022815473565504525318082539541744719087434126070892203515262044274524781629557026250447756605178478028453225682958315593514780561015568128317469137921813338242271340205388519141233318851912100865026852129149796048676288220692281090784116435984434322576426219680456474232873128167804662405190213314541589352995811664914299070221015548471747038047465767639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22543266042179033198169913843140735771844588980594951759189933848241724505446464862778034895815491159462389488127594780404970135784027297617898852306067887806929591907639213199090476007304144272794609833023926106054159370551246523778190201544874226706409955559742491447808300009192052982460625576995714545051799315330315407727367287834442343333982734547612252506106137558830161287016357036417682392730556200487615223755541410133703420170158568233833019813750880342862139651317851056634625702393875417732976661865652359334667755101815542470868087988135588674569213118332565135026234961326714610634705957697519277186813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17995138658053062849765912884116576369777337919868551434884077676998805664055737107208491800782030548900761398210360354608912632810618139863424229920510158464860203070330917892548876615362067430935253008278925931431902395518967766659011401468585415904493671294081262616697253903367554781891192610235521998015043964941402813592308206117893132169064336155011432456913658096654869302095190188501034197158720300738062578754616973569418398810546244471748073397202364156994551616739009649620285875120447879974248995430767887950817568758928030959745767696335293245176027736424164937372517454749120278531266304817434446333389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18046832280645803166786215855773848271771736949567851415644243607489690971383004113807226314472605277011971299840264222382695807442435206712255744208076981976706869739171451115677940613572422044194546420669044131691467945530723209850127666563691472738002868267725907060908505937712732993816873569396637247389968366844887697324485751753412328311478670057911706032469323046017816018078562802343809995418029534198344708783964607538607410644767131235501294273420361593238901544703335207652216665243672799044999983603890360231316158534312661890622226235256231784557199105213633604497299707972433258178151773040333274951221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249416112417658655191319045741146175984236532022026259548472274246676140924688365241904634294839626188548112724719118493832211570740318038378051143893440961741336211557960782004183798952371278835857586670736772383685932879855321275158508974635129217123686586686917589033582391470510872811921951089946575968283209570002550551279392349147979611711382805969590795326863811143378654531098891665404986904856640139531700117646356501532570258762546284220138206199106672477777209881783779541386184670538375028041046032228372505070468924641209996418255892532291128584824104885484922561584355891337412968069479291961734111519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296402070088028009935302298724065878064398849857567313614881330088436023133361940260242869403418772133314928944270024302612257438702172166252461308524596382747135580029832375472918397191097829847534358598409065565749239520953149609297336616455849652391710381438725290758793800546365697548425858286937403065107761839707543113565920454776873311587653101190656950763363394233351337884471895111879536774174289327428546319231262769022674416634898636857010156125647340417817648497863969702569281443682419883489469079316141471836521802155585442330587064856306241268181045869688923836813890432799513485404558238736099840379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278753720503400498455609267617484137734044840396212705976969734068451762266862714224410265234204045985725291796416907321638552644269745945629377995854009951311033033474757255618025929098235058547196436609875231924210239003350235057771535369829325251163256827186364334250850419072422774848005594307390009542915214366174327581176381902554641580742053314131414807592979475165703573758815575472825157885320891213803974164751098575638917028667157858876911257390840697976482089925853635623878051487756002791726088579374516742222370281905903165271471259921629247604485873130661660372463285764860133292234179056715855664369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18669400224497904864951496920472253052545517717297439519968442461599049345324081773562389262841996094307715409248176766576191661357078618433447499418946958677507986621247806167676950104138713404157949159278948332088058253817021993060646416738882661935286133301491266595058094234138021393700507763873620888186447168487940988185466138034007229455824394775003995915418646837778517871722897126802140150858232137794503658676123699252783113540845158768239123518766268251005177726583736178203187728319721203274137964522143909037751614857493070198785808335743008772596855116709230398425118640514078565557550658645031148221733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352974335436549516055730964612848810137845977323830698977582400337716238258411740686647142110496680618568086817724970406459245434307241632358409361298065105634442949067097782833138517690912438927376088130919019309786249737303880888742691613047979954442722063807438730176898151408718085626379206030062992159946354500107120376419427145310550536449098739677453360523674571490558765229770050837602057530736058445307548366226375315524345882610166083284261354732725403720180772818935718320650168903306636167836924370043364148064772758075205073851297463517817041636989988445337356760381978705045096388267711936069918499991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21473223867538734914960194353370667922443133294693418155476850813671831292880578899382777123537823204183547810095618631626382184910000395241479297859893039379407489552471941506607478015356919069203863857477813974341627774653621261454546028087620739914487586248742374889444004407835022550986363124231194020614157252070855963685556656921895470865534374218264205667518677700864747482057450811825679869461297166115612932232981026144543682801107174294288705457415165286259326409907519170527769240431291227615218783970950763128209776637926221020484153060914298353709566362688105822828975391799033693600891601844577541199469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23489259248677731978027203655916183129340920332536835813444726871820805072334847950362302131559880748800271633808622263743188682449116209228632168412350362938949118882588656854896517117546751409828399166761258399115753521520970733302371038558694536239052355603842989927039098988243669807483031798883151522559938872403573141862789023905903017054023936545036560576591664540663442207122588563639694298495720612343319001953138658007114901948725889827574012925142785266260853371916580807354911457925456316263725193156053851674085581515623541082793365522041084244455675663419055217717367482477811151210057760263376406362013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "22697802028091185271642942888542056131040513555149148991337991042542209563426447936480039625107944346790547869035018812711819005283401760658510507580163727317010883389527591634021302847819384684585226277043504031278017870409867894547353852859193694783503329411683624045679204578731295857845970416191132778260519026887577553429170641373044048358094761970778405737049158052182215093911577565018217520678216397789964162052086112460424046320070521138312626571045505776018225433235101453694384513744568380330373051301451414458885155001676698366302425768667833413905934164465292224721666533577493444694965146454226096534981", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16865553573636899103873745406774145972014595812187473665226314131156478521341592972570809252423321007393452915454821338320398719749110269915619292187158430229302335395884737532203949258885798601615451186878251523117612643387127861256892643464548082391882366533469420787253344040880202219776951268940958320351299882683898043071254796263826770582036123118792303109260861075754695314198010108713661159396666686610889694717834810922164058548490425192819219080386901160926386719506491248582753678612600185032624040657768074890052418343356677781198316649779747148314605503156297956265019671251352084345859338547049587411317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22772643324945708548214420727241025083417282062475047679349397358391871625214760028380152862309740390420930398906915516128307210989705045155261692041287521229260759441896822284847526674199569657565877425411635394623609433158796469776186072136385691298283089657274982672010753044735199585438031606205882742656201320140008435926157787322567237089678147066730664270067026279837362868277094578059012700808719866739975321346928896894871498841238911429833467515621034044957316498019850714048824937819585097082625190845113601381136283417444427322505182047354121239628672381877216065097151174498252170453632817733850146606221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23540932176654404279116130530087048176099286516747381011334107589804175711059958073422549033775915705651101524999429918086672189776663399379160084144373925554353186381754101763429841113434843927208451503470146055544295363724300658798862870942204360093818919418833552862959679836621427630028136710846192110748196425819845498924094623859564598856266609754192422546755737624107878414766443542655266417399090848751158713185291259912059843206255426416626352797369226209590334063315468867453766927623461223347755214922389393185354279118665905574500675798649705048104156406840562764729008289496048566089554950245254249129553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17286931831496297052386864238013013968338809404896388100160426646600792359653133713482351246116275646768687535909645125853151830843034886056379475816618176309629263875093020208030842467933645501919179134250828776038481303479090901155203498667607727434135689655443130412651751857009987046161469956347440253933247518739546280525714638560276877265849126175132782221480220801938082797562612999699909681302244685240786705721800762951590912154161001357907994581496097590326132267399901589902381459653786875535862979936963993241823411165023249839255284949111205395429326573980369286500050126095705793879367171743331297749029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16362918722302437541924911206793072988610197984082252159029328857682072235893856072038173970631386115515047393777834776877419378973095962211847541636915499159457528023026693630140629873260021059003630286510021106475934631817870175057110170377762189382713945181487477965385957070877600074048942765144150672572093131813784270677697498760620751746312566030367768231579853638084224067459190714455698028157308358883418739229157318119528699022817722460946414635336945150436030729849481280223992173884531004392850712656067658646078121154217320943159250123187062714150255771441509768692532985559358244089502618803488380886643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16224607668992133136961060971078146195646755066449225681605895332048960221554824812716922804623648686558350286908933406895886748638834214007884592360473718796483511625513011543274296484712968584245730497854112098331729346574070881883153429099523977141925935042520085368070472457267773085745735535504584984690062389271510112921447108955183508099011135394581330647677952163327399698358827293487083525530657033809541615011154313095182934873952715444383444105302520762959128449566079896461173800547575211680898086790976458255222428360836321894094897655105375255909993405983083139952847046011547307974408933224011346623403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18083887321735140953905019935316570226681725513791945161616395217935968374293814177653250919101520285363555554315545112230992735450251487335255951649113599380882958618805859665754097329066524771995952148033837865712328336803409442173077000704789256669276830868938004984950231030081140509513893341850618635054368543754956415102920047831494443846348859731292495464088615991650834788360445075887711526048520556128887134968436335781537847991020719284796848192720456155142313827044701017761259805482608964010085874207633544009437036650782663918381404843456656916229228128654915798243117820545915038120017832248275646841693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23048901221951721192682031780761331995549556344489299804997714773878518239371366932907649855563668499580881214223477581920452065376107243423369952754032474594622213320091147683072797733407097867341466159065991123781163557404156036148186199999189534127909637173492285072288968190698813658407807331357698287936206268104497162442686669516942468698685148869956372242745089396335588197424395460566073130321627255353313063355366294653315508587874791183628446898999644896058041679914449932964377851349608804454707397299414745880411912705766935980687249721518929372059576033275238457999851547987485902956269422108671604981451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278924021286494189677642084263677675908429800584259820180280325185586025634122068286488999340603257874505622909727927859615608186002073306790764854006244619698366513872836568532716033683891418607358767520881374483464590053579210367328428262596967341126373161387914787989074808973581634486941814638762723771317940962090513373198037910347862761902261459890960595878141138981864679678958858714563727950373311872908293830359801914759665394182246289654893038279942366432018041517479858128866929771255299560538846311939140479649330290512894257458112396289795178164459187806437236235653125292011943857604878781982934231273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19393119788146952002747107921843255010328149574377432693308374077677930027076392667432106269077972345512178138202372914699742374875238562937042893700136696310039090624377299343784226702558236014684038708112813963954329175874677504527717846582062381501026009773981563093833661574753909637417880116195971738575788063562611174440840215090703257466445705952131397421234433135064302011092344296366680541223482891155784460271256026197347518518150257008298984005202683469509727602599047885857892923475187149552996593212560761491118612893324617195478239545594096894058822621703048275267580615534360013354478615525852651775899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26227184161980876622157052323730381874817950328465334206974906016924426452325165383888841290781264879548485467678925372388812454537401266967884865120670234917662687159249774731040395925235166511296059025063212611358382662544261417632336504701888970373759199466074572874037141769447665509011253949138825567034338803544882848618259852221205109277300895482146481023501866657219892403372746614830690539702659692885473601622658294601025015712139951183205431307833082875720434709940021234426384062626594626486992381990453626728252628187598113458322386839470172027186279621471487525037392614681351438579079351525628983716443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18368035985408774649645994034834004889359475231942856462701275256028515689134626967633150397950067588974354863380629393874635905722109523378010615258545032269032762348334532078306718487678591454805280878683537519725118243393270333633994492469294016490956104670161504965882482653665559078997902538135017089612954649355352563194760911202314705214356605717167167778720156103800192200764526447855818502705741692842588173035908311900552825862553893953297863336880702221913969156536038799930810320309910788166333902117134764889223629327602553038656925268779289922094378976659763381466219413025678525104708937547748296711479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23812111887798238951629027701369789270224798447282057933850711509517029997633034039474450840443408153653388711519458753007084400107767417671636171542774445634285948779034594123498464982954906445681072540084307023531566435804363487759549861205383852157337073199491223578143334961568134336016344196047159097093160013432414670146734584624866259617163020769396211986696337368854157614002844103127415124820412126484350157231640228578941524920688495838589196827189179192760857521415124360978860237367861169127478047849056273963434122274875994136220387386747642019289418378033334039869996461801341950949621349728567882009157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251647798771857999766626431337207927309837148775935659390464721731180779281583035080207670064424628435718119030046024146865976291639849459662015090790593409784613324853450064249006667264790444385852921202711989326218785757282666594692862975635004965646647887839840112610738862225959332089563695957251393149511620281278399930919792474990145812816987023597446732445479531916997681622492155830795845357971963686013561073560608360328561229507386140490550895163821124221460492074224389221472495715961241028795708927136710106154404843606305521573131276871933179971213612884202836508196360139328732627336714578547137475213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26254471296395468598133218321957840271537115752122361007873456278960927761371928496487738304476334890374155033635812563777828130845217301155832825464967704895716713998896319981972145286040442270923418333714513436896070589321868189373468902790947719488984419967331582252647210285637721454207339250885018703049765249601551193228398208169159940928864174820811322806602194933601005677122634273202763944739590628155191961921372839478836573383878421088937634210010287025667204702367850804470360095874812233243578581398485307769530346445176286765159952643309817681053020893980095182558591703646886161944933211100520542355907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19590649642482305339269843798028282320450930707828964845708402558626261670919801212983981557585505210563915449297969582482538558134835798748054354550840637012973468952544163768094720284430998910887693707925603644311222103426951888751617904659631963372103837088269183168742773532246806065406200774042583988424921752565328634311931009664378426353742918962788968472748700191486657147488135874855266112324596237267852997206035381797163565290164808131659888173860435657242132055957621899460037925369670233209675722762818531517330400264880872333397900413944507483017967397478135942160375419969832652073181433495629190730261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309644334534632134327638725057149996401222095519672901351746539203297449010162217607195808474333600807711282069525257419103392341877866218441409528939290315999489663782600828669805144363789505109424067780678962282057884067363808375431874549306450324514758838393756688334858332724021084616840463718204626012994861386671150275035834028360458622276922678465046349634274565735238224455096641973903641769349957169970169510131542527771665038726988647837195453890873763251373862351048948972048746611595373209714790350031453442296070568874435642618520793171612416654896855350079485858937878864493449403654395165182806030353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360196445324679579340619101737342592335776985512415451104234885616147810477339846893013010115501411841355215390630239282234337080468063167448286921265463595288249043133779791142040316055152262297574448991771895772155142124143368759470086672666442340696618745922684120197712318011665931419900583663616683222937040838463867952265070475254686322923136698548220773239866140470222037300087973135613614390848378317244967730297282324190511038089592093506780230648968760641714539349792470767892490923328059922036142097774363313851433161397839076136767403051538380066621299407689138648462958063449996351931238917844135814063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18014153253177996549269127336264547112361214425899034551780745947178415133522860660015008445432875167161155850736321164322613572120092247200764306065120172108966715266506954346431478770296925927788631828980975938559575368325603595923392657437057288133373630598699926359287074608817611674292114207707825740875095606445456935591124121683474311038365971353567776173540382726013266332707848444208959852034794772041737921855923177904191131891328157694646892433316576699686267795870059957863750175417315048775123340672641079285854251878130888896390827201648987591502134847510300442227341638365419701443994892022678944169721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16750758239619640160088108878295473064136759686715685845274457763342403399366579544265834537952013045252991081756931868108463696051806784314837282272026480351285144950016038751905484536805984158672983722657679696414008325357977579382431912676182340816963266006389026420690909903204078790459777288224606334198600588213511324893051475839384244888046218910181116793272491562906467724470854373305384616517363202903051294324204871539295681681068196962066681877038298761251816799036915401767353901269556478183826501000937915073886189025270098173750684064891647391046474532159828599334577734984793044027467216971819008149583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18604868421056222294126931493012821148517677516957652791196712531249129375706353391780675072678890363528294711827637439671953836653303547178127626240507155569167382129183847142910542767856506973330907312159892437754916844654611911908606190530815827160700635635280934558514149321858232371956835473590621241649593350947852678732214336489787347525621808142442898248592321873041436444386903571591582137548375467191998685104980421446776929322841234288972472729465710183778490910331145169400550049771238402361333373321890834762649228089296599173027858902857370797611896654483199983174213378371805094515047632274848741861043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24165332740508955184210843083817807581227672614958500762622555699752791291781675075790785376713946914827545379847259432093322460529796053668940076626525448968516552749182258475188800447182923016419402737238316197202119771438828240371751541579228701997139529578692309752772110883983920785581881158543698571477266530977554258285453957501591837187129320188404730177187298777366695951504417927781141703520226729928144420698111822199469252112334985797853007307542339236558782396826422277264013944985088310490775263307455090849517842910708653021046444823463444282472780714596850838857377922312359822270464719070214666692259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327741572579693758584619758471752421245436372252543247160836673954792217726976328593783085793618584165413083972744383306927242731122105477615477088114838439106906586839105068531491075669212199389218913777691506841918067295995449263883795606321321203003533078934976809940939374431699330702755220312803683433008406088263910235563724330331551286511107479248438396201706417855789585674228998018994614852173195672521320932911979689514003664554961127382331466020439446936583025598385377265086805301201468883146094184934138247283494582498773471687757426946294220422215349044527472301906273899187659817252198291879865357691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19355052120757613790120738283009931751837044239587222048708242470922758983285002812126917940711899253456312020726818853209949556961850747387951819956413860528265935280542915236549215840809024946500480499820179481778550556973185504001861866106375824772025093706267962129284942056215159880265287211490966332573756668343773566057006844793223155764196098841567343249452406023747971781153066804579447008424844815473803799624513409040591966261347848551768601485684825029124860948872145613273883076954867323436741707537695087666638876751122083377352340148734711722308822946318339410803430987857389287921000055214732537392719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246757757629222112922370564164179391084162168210145255278735409229764096095598362581942947499501039168635985325669866352516319973490470854170284381682475102947522882518865856957536512295038955844158867553942107888267021952345947390295846861611745596696319545174295895976670351621461334273940074944487356617882173634219044520395607653593015008741263423781568127576681570829783927403350995366428892229760931649051354690694083242085441118316507527384261566239531122145334083440680991114643307416960737177232168216903083971060329489754232676810834536451896041297121963017868831517383007320385436761043526542002847450211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315671631044947334095529678202368909827856881137366912268643203525746965420437514540176628636019939890804685279101515277485070686857818771735904251474514284408583427720550071558795283308647104845701492613566060843180627898337091556624082342557845060842939420966500814445707820057461129858966256277601520296726378144756738202874992877108592401167363082590542687030506406484688423017555050243127514278034447225008234613624672997697827926612809922648373221835170555710880287841312928100814682138918218610448217698852570223859036276539581386859809724298153878473471225746475719200331311753460595414803434047293906070169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20656010035705795934445049751950011145510831384887297386174977112784076055852108636578979109210812161934099548869190522540795268490033836773961261288964110029653220718842171417954842000783637461414734353365879872469016936916115608969855319152476982217317077854936436658578932507611296181689659342631200478611647596553391486372034375258238725033910126981916351470373959267858504033382516186246937744887411639735209018562092562599346253370922541995858328923181513177990828020190002722553572074397487288657735464397080627268043840245282004136132807051388594868667742263182392142413812103817581889025981736146016157056761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18770675431218986515516838425069942522847028279755825404731050847061280297515825647404454513889562729709354882743805258338545565577812777657308212788969281536146727077928807814635206255437568082037552059812453592966764077819256778140970786711339241297631084039853767432539086438092018532601659003740398895659837594107150675455110917638996447460709997837836068204804514397646286847739227107728921562688289147599319354287851751019679060748086765312071198650119338547263465409476708964015276249104402803023237212782905656603182351128312851555544549775455658541667363679473444587600080206719497439488532216097392987294469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18363586704816274496367585466690877632868147942346559540808216447036513156491827303307832816820692896304369977427214171564187517624541237121747893856282092603156721186833112521061034672618867509734882730051959400511809084906261641816070337137708327073034390950649497092802392108795819982558106534547251830839473977110579552993999477092289874043748311183147114636998910807508046162001463993390971380138526015551056710525600434174769780887103633731188982560915767638557026750031499831154216813517290247698103716257056317096868370724503520683379266503895202434663563434673476851693718235864202010429987861282056964658853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18595881983807648838064227405455439907280764060949274283120671563623436532500930390441702211305619951874198422162596232808648838403764062128742218077955078689316177284173648169302431194708302566965807667316106407798781588307561964115878012346728687400406999313767386765594076714894751373146450286584988908998344241268283358973899337715790674740560674230549018640044540295703979427494930989331163384118802187780238849922472285574756638075786604974410517581370617169699147047981515016839372505020086781165319203931102547745056474238373418457034223372712589853533518621072898549869144003946985130116124932059160797292929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18210382631267153000652120704176116337218916810075052059221969653831240462116418762598487554567758952942625497174745967006472410952547450374128582620566408452026921650858816856283879374780162094902469415697889870750802568337379545404484007877006560836033472035839567392289491919285930196717353986586223949791482103448551937343292943626858878984332348340695193443929008629368566915763919108925972214588281475621477506321066661135321066017019925705457822895891635440961757644260894536381132770946563893162984291007528463924642496113878859476468148645040099617703676007152373356137275446625086442606134566995093851097329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25913208227117102552982985044651871011286708961259527117634668438594727041105414894551660541560169097305496283679758672948096374888167083901224608977038555610106864068187113804588968951898482316832390826787367244355705158399705472636904842977325837193218774707072439525485249234891462317652125897889158298579150513948309424828885998235737771939946597438027482859039906405982455796772795327589811186106089775504510035602304411771327399149462147305121788255386726734851571571754764210325273933703841703716590943035797419920397718575088162188150576518546684398465717494429701574757379045624214824377989562102051480280993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28477549684460012419684741030208030637472247921481252909519402225550025893171816229164970370646266797399312599761114712561461045280178537476928136873443307416188007054121620568104078596027856747354135072139070196770581600379994944373947007271558701678225298962484360993435847902961037577576026663271357910576419340380593819949724565057712463467876160011644590259662930574884233132160030472526727921643851116962709944692485098429635073728198168661318932785259703508127419095165366343786924110352018162659921960883894966938534704226535808155670992412324930990637082459711062626750180825180381257416897626358411706729701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22930882012142750258164285040219016244576764920153254391929737684667528644928454288404415577358828062662032287570854515891231477835353705423924613908383185042779114614462771150078674963189144763036626426375716666181455443712815462756478198572732610683264443377134345222426905966526574643317655830593017463453001456493507406331731163113157833813916143936899715493942876713827989323014571022440547930294844587628995514898915924392288694737148560970828011491278272756336608813493203094009093087748168011569924892944890003717479896508304487692644680336830288323079893376201680725356039497744740146622320671662360227836701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17655923980860989267318899518638888070534589507834019173592759575005348292767007214023397264778487406033688228472334741746457051565063303093709831054105428573856631411559813702990928276050029511843716790553172119131442514327543237535480787868506938871243900084387666306049936346725613904173057152740848116326277429463462254778477163645478294262173426187030249396685685455339152305883775044556760882270237890989057822021037829530215393251081289199784692626338257130730307984855412668865945329344854782439305400350824682530152605812571863934447573064019398797592761019511540172798179983852209868035783683652857135593743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27817213850171493747089385212622995178879625830813297052354445955449282645169600348698534490189658428060928002733753087254528172447007163780441858019668311417399875602569736130309147338366040956840992124574943844408991268194024898551688631700499436992563830207481559571020096997187464662104974970418327930637576990019731096595390293004965699788188477380705364699053704882852346235802665554920738052220450918259991049841569128643569361122582435232415555202612416730278096319048205230910141499672987500360037937301988252442775217420810747354138275512738234024392114250405113505584492080491094945235700869149466068381397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23980452138576071986819653325337140478154940158778458849900699385816507883984448335205703723821481781802073098252299298103598074861668429440032507956255034669292665006692953301774442775739750243340619878291198675659635116379928846855731978180675326365106916805593204554651641419025266056860592999937340428514348271143306322557773779141041543873833557333308377766496461180642766067152657048785202516055077728555415951171348088391432341697097829168700295430554611231403116378958140156445075265477446620738803250132931557025994506523957256442873588719543953905233641852404107355045312251682928443791486646566197883885773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350936545085412247654775311189767253421074207533484039148145619054596475682461920951204000538660780634020647020414112070026249478037912731715900566805994111755697373223681716793359783473990884427114888496489807880998024896241838722746076878569857112799892236271135554125998167994693633057208308394245662017392023439292751388525032588602180217254991929482071881295686694719485889223660509899706477960254800490026407956197253946692967812298673464596838745350826756519766989920141928107845879884075943626569419910692951127570898993561716049512642834060673008944212625083416515675823738099332304664519211909851612888199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18174470864497714287483109030194590820034912732580278850674764242321436036629265997349170619763020128878963670617316717436809443944649016574347445826192613846313875766821287972843197899217057627795631810587299923716590465257340317921427263565089072906665471207419292763293488630015149686697552308110954163242691914301794827864636436567742274639605434766897087204996461982535370302957552705108493115940908300950758525535601016803634517479787852921318081399681062949573646027880912920527184044812897236455011180003242080450039676983189672692070640236091425801000637519274081760471470974256297389479428934509470673952741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19373122751014172360184528932941999602579164988541989855175530476864077860209188999563252780983727488554613211124620609552786157446218501674810500792426926789762574976002856128435899772645913174930153938805162450652001719655444394797000816090592445480555632701499443504778126597488873300644321060786895276720061899927688416395405394060257058212407405503650445935141830784437341093515530791578310237128773445393096528088125597106829460109852397032259137934115885514686859706970797041508691026523646088191275017388994065213646037865069086638722049758011393955465626633800011961958941500929315517143792836107345332036243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319739855547576437561705526109467510965492885954899621138956081714229434171884380102487237338133915118850768593919768900811856022536735838303097836604900705466880758979042755954870454644677995063291625247078339740075040272793610304757156531559015704522296043988419024782940607508821323181446533594690263948912681026966994073996143180243341196646821925138246678751881357844455347276064187568864744171748379426244244724062494290860245544338941162956718534076362322999160748350516121130207167481936518545261989664261414679571825997563539982805070094594770705270558830863620591215764091215609765405709363247187476470377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17928626083996747975185650091207407236868178452552799691003044184170575994125480182184812070321455882873674869448323875406192163662718835578346322634764042065404802526613021362101767611440336015958653908110618280282626624535250476587968957763784517721498522324919898904717018967772670855812392319811346647653373503621591562377882784129710693282199286229165505278132833161844568389129971074401824132155940676977395004779405173189894335988097449349399613407793620996812286973990464598809573858730046233345774392352711945823029691847775606443145021252200453086293163419790123875029235866421025160291812501094863750214259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23047053061987040762853532113698869562808492965466561002741005922636882271551605030987101411412237512649081855065491424541451428457987875956057799116523490654755444185098900928301465375583105937752513912395235390929568344591558437504437305859535747534401546407988304712747225425779441919234079576066203340057108857736045904882166386804559654982793971017411346942122397877556593514347459673029955177522392626843268905477223075693123345197033299311849654772379412950731732146385737475618220881074356590749921802111480233359294610031123212958840612878012007909084258143190157610434171743853889184421179861845269381580191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16356768401448274328753995544290069595995369256446182885745663067166347859527708194932612302149165549042277411251900689092643727845615239918594565414799477322799398928517493928397881505395177943451232465491589052937010053569613572277541265261623530114382533806288889172104752315288761113305675773261751008260238086544839591070480531770005983771237142540602642128715032514926634015033553223117087848575047570153111371497070759870633735197303917321428004171762876864830483208523406604337463028584879148778932322149430817553015028312667482217208415009965627205225213820088231920070371564174415897395229180957306025955709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16384053018085508084328876051144710952383296558392528330214872446358620613725041910074630925318268839457965206862553583744485970345261407932059568261835105904697773797414876610486412690336469248011702515814176394036579283190124129855533805592251761368846911704097399721222838960744609507014194449629795831485615868810310571331298567085604774509373772394567595733446697235495141446120620930713705956433012900763817668767505285668312750677180926060004170690005018328700682584273355307275369692184192008649015699781634891563352714078642081396037138004911143546125279001851796929092200263837364859876241014860602168784263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21268618253005578207047039711583994312409755971830709469309208389447341384853156955986109748996686880906870828859176865916229881567978300694120324291408129511577444141603764410820052265068043392427181726247723626447036391590891660770373690722649774725469335648471401812495906565914453497641962348947309256439087004516418051418022139422922171194435826157220011959085376852330720093096816122604948777531799377556273291850594857466140089326388787413385499643107162782053859576716485501103605687371214747549505285545166969473728939070066203467623150125210837871359644424909022302029373608299567226191416562118049285897337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17325330400332151312996154917788517110258324139295112030567899146134911683608362463526030480336745500717211308850253227487022328478173786806055776983717817240571748521549859651399505874929775291869924383200617490793609041290265848373764567954506235100766555141002841597576847010856153618303995283842824693291652261862626128306344569997557034750970405508081908025083996257742349430845765145704010559105769624626814455007338799597241360756488283761938717089143134205769401150736039868186578101142824726629750090212835880004215759690085514259359879179066259281511509480358012343958384324053088445120417876213005761066633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24434928785864373940850052411469893774670698340846424956367127186176516027947581703431575796023710858043015330138644117818830960621939877429113738219452247293044390678423778087587823074191717770790337420657066598090899434852990731285851721307783769749623110106259265914238990660130137706535244887654156779328925497735668711929192753937166656657230248899979665224192570871212625938386672989883481426001360581190874452305109399870070762698833401370410082768764631639708112482879200288160684895488783014405997183246312387092931789404255530991438272849493386067792898150795281139470727042280841391958067716017118219286609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21124274270537548767913215693770550373040878917162472985920671058438740595477059790892619925331148781347556961267434878938076900346535162376523843628548524059758693519591558747702519674353770810710365260343714734507002128115922129966185152544270033034889371841929133030179205981197007792715206811843429574179200504580951177124551234626235981199421745372627870993885837438401350105502079235807327986555346678745632722004183921041394785571200258029493216243369980530858383772763919728509440678921873261462137724423297094173453328234142472445498147415778738291135541303321295023982441008020539652440622348915383670159353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21180129513534788968330558353496541114757124894487024447059416252147001544224909655599063781275869820619212332460386285939790543775928153323103681265650329304845326300893184132888801034591297135774223221797628011254249640598674152886286639659226509775124972703447862475223163360899887072736494689857052633731876032129942584763347370318930551036991145154796987937980730103027982168146352206876241878641452495522848177767205347506385070605198364155706304957626493380813816258500942774641437792034031094951198206050772468617766766733585181485041306591580779206293649297578872355693913620195338340545133914194816330097467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17732156647841334921473888443030173516425434722776252518026036267679915441422674721711564678397802834068430677778534995765789608186056205112624062448686449023448275875686650930981405071377356655509075380638530358683470290040694155630819665021354680048701709351578363748830545964746148792503129822939040728217465538572791776828762973780908750797760892707004533459589985070238436618363855596198532063710537768109920816057715582013046891809776992159863409010150049086432053141446579402199926070235375005532560435386193146585251118300049925895263916913757116725106054209664875853056055059195797809681072794702241044368073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329706350970331101293583309896889773561234610338187788780894595520941928325430416486740687627852015726126874446055003267804848707568144800892011830340781649385051483467090665478418419828456827796572355617010952024376214051317018763360757253005971003280344412188733687380791575044785691189312701549638516994453353181902296336274109431899187398651645487178565737795947040342765735368294468853561521993050022679345491400998097171770116892035706427358750607971928926071731976894160033613324931171893197406199859683689589435603532670004078585229571729428839888922573583221862060480790778163847348736058099922799606975167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346827844309245392328782928310262628783723084949946300557252101966861119300669390742537843796334911622644652637781668644234196590981783642287017683244555027357131272449169658629567714765005107246673323064418958551341461526152793873776731329125497679376951259791896695143302890052891640084560822719101110212294174531343973019857478757498701318796316828167845656805047852731326737321544437905317071049401046755069306990990545324264720300023596217564803002328044702501118727805306462507474451463315894259419271684541025340839469835344077458493917495132328267052071772171509556704640445791829925679887144857719511042207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17533657419909916798540034248180993972613978158135264990903639328811617437380198420872714781370144779375598489464922545705158833767098231932659007705472755846090321731324335758187676524151895089007365261063409255528368401757210709301404685189910384272455981731711716698856247693074927832703407506113161787119662249170788391921606780801240177372648765659564358648956485381261041138937792528949812122090865044842512551950805431694556163747028915627085947730215363634842646686223181714567229791694644642002391206461768907943049360682669654071879165580238132077902450235027614526626234890017667705702716863789776431808349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22677397550217270901817617761555930235551434726442762727428034617580579189687236302507309199643661438929145399544047393078359518467760770306424757478872503070151444560339243757563803576834701216981537924332313603709922900915547255191874981738624185748760718852008397126440368728652681690131924209462348935593740839773300523952372496328138541548984857882003169671295367486307055443577150495559262943122675806917073357379149216115798166699665838474856923906724881559080099784251784654272329287016411441836511617360899517983764815527742761998063757015310934430074456465239935323267146324949389199097015639517788079010691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350019253382848872138827673102266735369569063974015951491383904757216786878671753330225948550995685325584755715914726020579815903634834224155293353766974450195749123539319253467752245231637873184624731748938372292696372469803526486743193853025595889221531841386472904397590727644969913923951026868918398932928790383736607835204357282701966786179131540147179352851721743184664132555927739021705958881372711275114543758407229150215603809331311688932183857728972675239289712954808172208899431624093088604065146204591244590774422523166957158154107177025523806361256844317083661512772528834768281804402203901823718239591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22496971619229037666098402702913067767602669960608429046086908852140558125891402827994077057588767426665988853474449964048118102852899471333365726999656300841850184748619203584341846424446827828845621353514376306526983136332878874503718937270647036407806813407906545599530854329926131386673437556428625166458271147212992123642785366685035275153775777806677309321733487548353979975089211838821065566056926246492315057706546328826499201321062363514616710650330534259721554916673242579478406305790587670892714079393786849572914783452572823002508304845534870802198795825787626970210944844876886317407395539296326477506107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16677266018482203418898516591689931214933368962086450826961343731891005039771930698028180242426883320862498773614518147583321227079792135147740044227629411558681150979803906057237512339862568855710274541556293082324317524234965257758230171075865682543341088389777829604424210894833156095193896999856526647079900499795537694641737704391793828358104964252975476021740433418200032245664290485099282165042640238173703602390093978695184182748098870127277804307866657093373368040899288504348312386205876114460435774440241643183868757344648077600627663301948711183075123335243853058705212617608506587695962394715498864187059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "19630419267761861719466956293448116180036189639436893261123727623101803727131247216096479392991486171638914881969111863785798889808105627040587813282683449256425188118446321030761159807456711043575097186134261097932396394112916801278905381416062114220628494301077599239485000353832638219695296111513500945000944194283635590890827742252482713488589104941796592553559762852453044297779350435672032628548007514123943598670249168216010218740093389214344973419934225918467264307332013771854881007908690059866791490441282899586775394149253255126075225431908657053594144068653799667998182449554691038695978571531364399200201", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330333008307023871888724900526109987823495391500827933161710978600745367727034168744326893057097659155192859075637029502044243916552356234068195826547200378581551937679864309684495964441174223521111773666209245167421305363015606482949021020764932207654250906096415398266456089323552361045251191590416891410528298436693633429888582723180261079435034264137169545092002401436093456906789272674899055883555881689216127304074783211582461490347948327564245342948797823958612822987618058870009559895184505886758855476960635150098276130819267755434048361304558595628721188924379502415813452488622871010465639112866153626863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17972146731836307490249961129254983175775129952760306522291201957090903412412037746631562908944595980335076116770068241882238366466494287627682444845677742068482280094217340361325918348519829621137615630085156381563510239343338387854038374991384959610686710429440983631853001224954297953391234102464500011790050995511186190115741065856110804814169859836211566253751645336672820545010106533709974970321367822949427906326413907281796434718392125994857886996680592845712386697514124808457045312810989551518223832022477537004324752907494441355254116742037903682723001580820412676304269982187830648039318799647497467362521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251291488745783837729565381029267636350001144849597977217103729125599293996575132198307731437570774983415675101649045297645462120176115501073036513866958007942471472289664957365673011069656575730960204888686997078770201638943006018323782389794937336435000955078705713805487269282312756874609040497640510590647196296403170909525920492280161551906624010106053780021110197114233947530433228938052040426995821028908409063350518298337196660148753438199254839962949759917753354832203106017356667424898885774827793975637102744678343099812362696954359557800064130366420742286992056728959446466977759663866216918320684546909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21190829560843495824961243206852938722950427135908591489108571811255736726205030026078945578841060530768021131622920335557851213848556766281799390553686873550441634028497334679198542726652570780118504772988428616943959998312523188066624702285926292465998694603183874857747929536413264867382811126554875155068117122138224692926721766457157360853877220155394793924947294436737391766161804852914991404227256456676325580882690012167935415478859921148222918546833513633496314041395327497408252821535085286550840132168747320613504464267902317602361565155414109102393464191958943416025861843263720384454840844414352008182917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22601896464901082586063278175485267799740912043183870073518992707174986126553803613153560384479051417159767798477628285218563803449332996446108165303653337912793704813114415713128893202281229486486487975279289141678655278671670185208870210294212223773203093919194476966031142609834654016762486148701255629703816779067128359314046344598378646064255005629250741618944851974106817177280796057521678176538176971506296579172927317014534134332521071297264255932739529784899029732306725739155806556879173032699278925709198347374415353030299976526515582605891061296089382105267059923054117873820572683135155555364478929250591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20807804576447998770827917850405065815096016043689380590268305786746392502316265139539340132981018859247922185383961850267397301202207953313222948233685776084448315503627834638980126700613936667262278569601295957686855092332618707156189651070568086677127266967302130456290506268140265132926792805575345324165228430199897272198460491630583079561272222716248331617800050007210111187357091500227116601967406681229922966095368097562683558166757712099964644398377508732249964411941285987164902257905598091359262338567866287607218826517384482299247394751840152686471580618998945596947344453654101802995216943318604444772537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306330888055656126804390793397540341430103014981369589649848830839524610033290393729684859396986166578588799802922968396036574613296837821545075490818425642225786558624814052134083009664891837621923120917105752600066642999018033258388435587924366398008120836118430138170431908021342410235998535811438910477057251971834457387294865118296295180840672231831016124883791952206875090883489578932290913860887678892845678270558488917562703749825837635793754544614044468507877352063866028309926698791720219553149653384725793932360736071111874976201288245192436246820065054300067440986111501175179179234480567480844497214737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26432591451032569337302616592827248012968720129511438717281020869144366611752615639044046377512147675730354700210388365024966156466973274666770963149870731439483169567979324312474427753825109636434403529704588726896615889673505821816880555871182775949565481998680577486838768640495828179352429935050389130786617103211077885238992872833065414102777594107804270751058904453897710809205712167302963610419730072773734391371213556297619629389532859442334291471161168167538187649232666438128824462165287404236792045824806580876029395021393744249638901299722203650175322974657451852201838581258222283251292487172452412064717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24550683663372228685126177400781341945243527140727680793844076935587024133561458674401157783677729429644886001780568718415799193711011740083093827802723204008997293076323734392925895423230385196484405661982878910252806253642549476472006620666431018225617229942310804892341055982861180483576797570758248499254848533695681399680917893785011002385682293915382820871666230801756834496869522979003427709225533888243655831980728249418144113973627401664212437973606311951299265109817055723258629555849580833973497050939277899478765877074507564361329438826688132664435833992259877975689986768228210993334254018105261588218953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343510580565408122335024931603083442539790152268608175756692581538704513531162365484221127602117628291076521831126634889549214193198692737316852482906712335489927922324152795225319606639151250874899369328398774854106908960357041567232021141061388727972128843528397692387119225149987047107441485414298251178156917868852893948873324342927826356643453552191295143512059721294118772965865381975599386247753076984594862183206088848000135737051605612711900907881951399582036731260491506113462584618650802579057911621516935137263006669044171995373090558465227471769131382246510188698606316286979598687812042302869342533391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304055349917272727892921376960758160327157187797845749992820012295558651072698271924755523205579337411972227564973377108457750317721431974328249957054547700116509302441780848798410899572587880280657662319969848696945854433041001718651261770073806737602193622877919485080391133124077323702376333836447259532584906683717439521882281345618822704020203155490994549575232779100175973174814871535930035657844140870973234377195152673466526212208284343476856334012317614967548236085941478517967045740230454897241875045912152302776357944123091086830924937604707340810642052521034787234752776856304292836804996819336866458399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22666835639823278778474249310864739255142164724173903578785204592791176749015598750969240034177164672380208877502596069325166131613897690020766223068058923634875260940592188288753215966388394723093235845746038615467370791163479326213287045118895466089257745671213171971957497902012034300582476320601815892601253696228155656739255091228936541419976397418133397178596523622372776841185880974195611859240222083445770422880432952253623792783046942481217730983984283159603027426450150203468242060524138370756102313436720831816748650865376212827652940745852239479431633025765139352731849242334032500376959560633921893490877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17328814923710137708256730415377225939200898749160634856483061136302102627170113470916697093279882613368232150187383535137447112415284814156314940378544996500744140251227935985129419246061085113944111381231193899049715671323381404650213184538763207046414896035421793007296827005330321015813628708203361161190511086759990826308966639462616737701052382692341347261099232820284861468904390679218921340952894284874715019795044987881242546510586120968466970379771588839941928471132069479156353002302621942543024339870683670739785181732352993481359385855490212970990120534222489050110135305347764383535230506465063756288277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253279664635895449256151554548854910733164843994512363074306400086376366943335707262856034830897580479576418375899605509854300937801215931171694871039087328855836409778555399285454717308013620254921497738650328238506532342370549111332373731330773908574811087383336706947665142100454581555317082307418247645605556612611328761847542039076626712142047899326698304413626803685064686021085706241338815940441012486498527192512993230092392046458925964761208370908534134247058175929188846739043107614987907502449428390954314089633289207775338684076510290380672248754299872217188448633886181242160939046116417545512215393051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385050975105757619150240329449765230130847917914327850712903265142975527389837483563066051684708117102657950541251734860568653419311844013917334501905892361010162529137992752614024515632351390262863241168752792369280085903084832799945203626063290515540655716212607523720858445653693042946973577199989806975940943482170530225200642393152748498757208734627254669513457588624585060173891526629650087639906847624076624625805466669612452935412738503462759102155775711689544698388234811108471824620469021662765719767253095512235917174576404261862121278390646682857113887491671830141148166278674366715011340118356397861039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27953246316245783525456598990885015530320614137768479423534204202392344126807766926633701951362698557952838975681231232731273659828158483076790956144605915925611250786729139036156781174393289138235349873320541845427506536950000509751676657690600511136486760265901343748624295363045086244973427136153911183440594587563794026482559749251269328700598544576016944295652558131022767888752354261777406790291571446911528589130917596857760819141287338500845516534271024830146205375360504623003869000900083644621260520330882063069542258570597429790397766943163467071575398024251063867724504217439216253751867224870986282420733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22862071928843574001628139905886316972039343320004956583533420234729798113369437679113207015119205172841933177081116852532502232262163610788550279319738236700663587826973565696364177046935532024968227310412930087068253275410241941262058819232081816924177175153647230960792759603839710936557740979681468409296998872742925826151856590659652996238530631295861847143669797766685536486649374994783465611930102885475229902129148117694839806204939614647438953105805158848791641372329164170555176294108182735577434987568765265323446898318007044705312823042493838239067764459768743122229354554396495435363510359214190658538647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20116049637434195933029903025442621539550818681998928886512406208577527450257299905268764842362438169240274137863526124977092398785502950693428807032808755860558107775061051683987329870867749132533752290744147610550889762923447212477474141743599058097408122624130196022276211301865628346572549956615394023282467283910647391367415409933153197755175879123557102662000707528371801123500801442087161627316384559997366586282256868558289593413583668808533951690937380268949145786367710261298986564173258554448538259239545551693693339054176898080720489387370336822894498956470533934483282762889618305631396654016030005616923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19825974399542026395873898534474389146363834038121073490311546634596175954300491668054179200719363485281094114584584873726177312606769729047836316649047792719242389027476837905110384948582903910939580625840024916392206273494763922665274387394130982303005477805424627817451396904632643200934562333761272047517320030410395647986085956718471123272625302077319041162627209075849020973886566035061164126426537875731378463883297603648195555815961510234323452715851506482633673231005639885659975790081205233040356630732877132939554207186960168247895963231768512468896569592596245219871048598577990766778008141234180580622713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17061346531772588349166793989325193228703731421874324343371863911575144073082057855317116646699911104702694530809239992545095511281172408013269900521817994317594483821339528803960449950206872898464101040683003991942556942207924548185721088423739763386825105463614009912667393688128495406145285077515903343322245719959733200456909879038815559644757523890599574933786613581368645812226903883071471083092804283938839085947971576021928960889208916800468653201711676769218382138576527700942079837940416737121684080111780714758894786991683281112681384612755368591014993349856915034437167954969649806367052951286797239207213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272617906115455954061448141390343804074161719633150637440303203556310812481089672040494123801744758910309048490386163629926466401961153110914141362339426495516876536640882587445463337482877685425260483179123949916500448305585857178645370871169957053567097145388358267604402334562994798159100971469527810640762355707306988500830217812295112370370476462439839391748869538924669320336477612526102202799225979403331006238250773848652876652839183456078897954507052020947652158656748078284557975025405519193483988047467578828444398741807221106568194380808203563711169072524112463905684087636678999796933541660244540247263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266263655302947159339359952994180736375470773610169658416156195392967562322650339542975177509070481076926528281092592159658091707311190372735445808219977549467323280846109911284824175159250482967123006485730659035776621023990588762257928861043067168491801405827611294871565895427208249394072546606309211084523470702807262045246571559518314404505753023026424782515172924906206830845380020725428497426790415569650385927772662588559587318531659911944497269771307532648071252254918999289713172545295304872920588743226370588891626859539559228853687674546271886216371583084962564467933053644556874591820571290971906133177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20492330122499758665554347314303043792737784831364720894387443933318451034272000867620593856492821291530835845201471835667733586277289922950204875666307276680422769113235980144123321384224262491175057731860745003008798164789192775727934957966455438865502822209361513427910650249397552968750485981203463467926826436372252677634946288381319447323559651160598670936914866008783352813424656689290895061383829422843107155875013164414904835217811911595351663242318176687929474842365503206060372167774106449414586540495726130339366596500894777830217579629571562605283415438544297909570758598599159373615084761392566886335527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281519743628440125354371684229369435752364077148344529941878845334760598358962522125642936395833803237310649847309439459068049404956532919607016307847021569250605846614014733415488861795080175012281067349362603211495024723302264525605017579492547714561722779635431074689058637678426158863568288530172312180741007787673080689667884990926731021429216335127069747317576650400154288459587705948116234360156902695702571418404160266779849089709356331593402909065487569622780549362709952428198775562797717180924388089970073709577127772918054197545690789755810491144674727239116599638635231192909666573178963704745174138893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353215331714265302567534645476555973994687805965780788904545390692788081482144902381213180761553067425606387704801653114210146942762976708759067712910664372580928022782569236648303590220373918224545405375675909427803700188502461996469142236744842103314487833277550689272697395939931114519600658621178303143499890462553492206000199848999271588115891446836181443923203290052283966500894417162768456883080936391023426443819024666425001367042595116925062303220637032239205503273794932724399745826095215516383443966193459995881468193489175056177021781491741585807131225813328207670134189689799946980943358711068522657291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19210056012891721755441949516951718330678295575253351808236404288673666035720083651848596134343963992096902338630083103194779825399761489657296846093606263897377709711027617989744578396660057859062107949087816027941353236993439894692457401401571401814244040347140322474156177789066228374120073956996401443753499097292557263622654179529146978183743651117921132339995965571549839078106140725241587039772383338187859513204209248328550715037214742379290716902366200929052613365850871569186368103005208756484794010768467480846404669355072752713292782611065981646872291328681264724870534100963885803542882115159620000050929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16238024411391367557521018987723998550369946068231226070887410952849772699684582141465058098517037428728142475240961738183864531156285443402769404854880299429060532248273124159078527324721050639501393409461596144701376037694227291001635866006946480304894409889727658231545583459571281825153454044550041890293272810940883979485662405372148819165584603811545724083480659228086601056999426330331899709658053978661542271909474348961349564386589641216342322293628377232727231398565667506617539024754208684553372343388005536802634167006485923803861042411184698672094990793492582048438121928377573080888630308402867767392751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16708078167431324800674560027844507483571521112998966752555258181378025628607439915066886517845734083564047182044006534087078371791936397002330922729968995608739360763522393778770165126697524722578424950112452524430323038144713546964524311742156875960218924481914046018192931078592352071949948682544329568405940290863334675395139888206015040661960772741834624384771980111015036348956448933255227224307729399841776469072613963330339103964289494596846898003599181797991746991560333331145953966577974907425485567233644682166754701375561155892891802642006107140145473469553469140074687689562815882583734586359527591861297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31354668725449621128992606928219761955417400393498130237441095197816559408000751263964174830094924731803775304918941073629553215420700734982004243037380550810637610763286899502447386308577498769451869684923760621574531412650964893806956842505037404905027779172680097392052311294939844624912994710080997545963727098486321528290301958545940975937816118665854133361000964721427242065280483998681652244589521839818349945692359580656321853369680514512960713599046948907307958220290437074995733758101438151734757114868160490750021558845905476999514155353906030160201269817660235687695300602497447371603123599265328061537097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24599645206802087827216618727699262638544671125196508041738633107343113240657217169300204034010142598672160338343690143719531827652755877462184125770495156077142870351475836942859407854122569676877890945183804649077074530011138200079120062887679606772777470017468622892480313481398446774184355439093834106077468041987950677995181594652128251066414099050280448791467550856962000878238971466978217768431303610656165997006063766453109784700061254688779087350372531480202772575710160212425694306423463922886204093016427320794499901020785005906127841104351308529578381241347537059817732047429245989133125204496991522715141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18110950325917820498218203038399571171081775817380348677823908166431708823570142513445322915846695217318125920089209802207541811502164293635335397157967347704433708163712000043061935327726043607903603074280456092556451204291103775270032311797438475592702537243203906260383386527231674899757337460553722675195761756625943513903900091204534739279310167316196835109806983837296269949707659145570927976767462345261669661593273932196067732328956267867417617712700790331830462150239771010636673895126204748287936448884568236107627737871072226119298825079148002272122003081940237017210191612371005544899690716965145577180007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26561266257545205745374453241554880518650670625260897660941175222633417007861907074409597927159691047436100609790190675013336158496398899048325258686289985921129686014092973159627753152728201811549946259247558957601834262339268361279305984402131879065826466328664417395884764214499032790111897719631126274876535470805153594893719448127555415779193326596217637590454406057381379541406472017179125576110167825236949029447018399694497184299988794637121534810810525478330702393791904620078808314314326273655242746106947453362930882450163761857790628280328229065102981711471287739956806502470548818590998942235940761549289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25056133386846520392632219525436858011648851333285512908770331684284905570456855587989703047364435249421022969746928147043694683988558875598804033651202405550136532035795947801776102228174270648052882377268465049508116957892398330573811919166119582999260500205442223001703535450157235259838480676692361007780094682163961660787350508712630881932508862402240472716795894375639961971460214279285162545604679678725342711259742381132038315250920690135997223251184622278689710097811611657029051536986042072374272859780648546786099502089207803211547435556751414382405780631466418264715449270987304182574786571978456510105719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "30343887596150898025593800984494292569629406209193250601691440390196382669941707990013108253818336725859327975450271466177414176585557238366805312211249480012423483176902650006134814759681060125609809505326125752555721391849491412610934095422874345623742422589753717001655617693065510133265581213556230033864818721834415897021311558094706846532866408529667460830176010044895970168187447328772813344990768468814013621007066090427738948541505485399901598898495632281719852495171388330807548104091594728322776050293150268740422983910393953660704101113298838602095684955741145445603014339044523545074835027584186508058861", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "30111968399478773047332852582244915374729120575218896284314596144573374530425129338786369350187171829530055289908370677346520557468409928496453716840557213522191136828773684657726954391296648780517640655492294516689054783909927406507435902268850293219137493259092647196016156934418864915527527955457041484936308424361712631581496377145363540178122510005998659809669477167405226750850296767528901829348478896152526576759460778723985470304107097388500689459468775677084958757177804188982561030138077138865207285166515391168533338261397545072805785578634882026118958045039793441877268338175895362965515558298115031378229", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22009514266526391588493217653283540529106429366674947085989147177455599603879105658404460401973520783905437863117864242388742982773814344884484802168455449614493360701975938347998847438891962149515769938964733382525429589459160713826742846032320683811961525941977390759329660165656200699355648241172533201466092941632269095062336523390863884348094296470998597730522207322308279473505998431185098251570447947525658613684323202314548503217584811674297111569620638295929188808589130227347866169898625946736104295859610998892134395979835714833807523849035964347171418881819895544173779885766283529025709310283772490960189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17579777462518779388016733031030674114643689813241760559815901269249850100026826219532019394346604532903253844489663722230161280489376505648146324582925849603226997937609804502199736427232448016152969092607608073610331133800024910700010412651092551441726101758687218573845098122268229148392918830764488665738562760148859077775444073765603804814110263390264312608209974690088558159776093773674153391215702533810531333491090202003756025681657049903825718536064347678344326625258215147166928570590386001290114770510799187467016629408333938275818658945557585984587583545729592592050607645458420058429449167866756468193687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310945092676458414836025250911757159849932657484076056314159222054320628386432364527020578525982888255589277753638912800780562185692589820692478559622769723865361476943716363266257615534134595080309815263880990776085929674957141235957582525051003152048439459810853801827795577869111334135502013330115996077855716851373828160436604932438970077930918131801291408369631919402070024710524009896854753938294575574183782317616297277798499468620154023953830668378960869557795255125382227676281669186598361911575805029738854312547185598501633632211104917223546054586742602493258986355640415496520606995707955626534410697503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253611558017435163985474838834221595566181586339006165916722127194290222720680491110894105467359407234845259582486460124806226640204446996982331597724256048369082409950941966677727352721954423221661069693260384327855548674493401768845796939340018739158538820786016181586773470886880939349511024782388430388758714660444164177026108653736075105225357581106784450476776165238391338883300008282730903068843140626759002458335780680311257882764759173526139610635377461329892003423867179233658537886204194502460687592763876751026138853922487455962679203989604183758080526854213608740044957400436679189745880555656225619913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26101502284182474233227699568893309826531027550476430369404598728878773067976270725911865066956417538075900907052276652771553768177583191691195494991902826735955826776678262603844396654335289913588822395559223939461111565507052363353618655459229365526221680569113989283423601872230077184856062963953837453353545881928399854783642688126570633512405528927800779222026011755369094715076502487156773194477986661433137331681094633433639047036117031814070018384095690630875212345457012007941001327674770547920503863090667582485154792465712329771676020913396147070762213653880058148309282546404358620830425184628895045588439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318670893741971649109124361155656586548148876113243463712171873452273344919962480270460875026191662878501659452045029468964251789442291577374157118832524212903149401122528179253843101912115025769255552402544268371151573334133265679314003470505907517845732757203469893635460096976723385995843334535843234490354339456133777077122581466344052680978845749427981178163848056640608251354819716529037497398479905743013977234481289961540956022805237194729078661211631711946818111404187345153649782582289800258697951410428209405587520458762267134049983833118319869751000177942541702321957104800736565915486131205529514263619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21789267971210350217094015602228973831362295157223214640237467698702264134162318229121996271736890483100884935119294674631575548076309480650976529374067263846477884501608874229899927337512906229031217467368500502394527287337620775666286502297696895662343401936002649544051931655740187870014117633046509467654320062652647775702237173477479446738581168143854274953719507727911750509191737873149428379593893634124939839741490276066896283028912033009903951372045711474938707821715217414760721217144513454225223694133182768559406219662300391305070234155259595839590521464851209137654621105472880157617471426314074144457133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18341917263927359630418141789203323181833743890701056776495353727698765170785439506622344006636776792347022752040066417688320206904680615661025533238184387087354749656941528810626203853011276690152899790565857371173246522369943590294274809144101281283306222267885469830781120016053745437661581638376405306941135646691090920232877710610506349539738977248253028701904642516152050208586351867894154218117736400582863467989253817358630922113601824693612507077185657145924183125943709847392744456983782747083539113567205270774294711179418958083810901258006300766022751450180470787189803509124481726940883334103080985275921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254516190630783564998016083950714804811880342264722429585746737923661709503160399791161735169151542106410984870087296916600148880634330720726047648335144067322354893859808730113071004565442172984625826564595242302223006244136170118571273440710890310623651635815870797014588096118511285481313555604330275308319895495346967951368929685423726096586089100774937716265458432232604721402506576487948475906207181102691923340439731395917782443676098777557313120497736444881817912346825287732487185734306915907026775964563051078623073808864397347836516246066629068802070265386307399934363076033753131677931911177748763353833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29112787271507489650617472482765047405559609807976080743038147700481968357310136035230167405409331639167097112122658589409873642484015837582227822157729624020309606898551298382389735944714566347037169160008635721034431549205725820777896387079800610614359567418420870341164602879677660085315461674062647060954409638036412188574531626792755896839965995580366723289211703547068213987072363311292873651344512540192693311911236449687561748339453972433836182976429110359434642959696047698977405355350430156767955169771528012801170183474409513344333455505561788158913954233945507538263460509721426578083840256004097483999503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284219710468402371277283684936979721591330104550538180171870916833719648388824343091837404594613374779152589516393465371393649182646647815635862189932258036106498375460597063622463646009326318046803715161793399370698494933160398686695238637110603520394937377129161560205606400784965453959015813898317780915193878997971624127170100568889898638844086251257085671869407104714287301193123175512782736755740640712949251101713876752912138903312513145169172183970003511463068995329606702097057232640892401341410641198294210188874246765742105116612313226543135369749542758468129442239927909038633197462730539088322153253147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273875807601691553206834620234481860559505204237072285807123464854619434718761567067819550889324860407353245725991894882687878616021073596922139643038143391011113481717701850176252575507205006887122363310498637423005238401699105267882940866441724307811844715880669864385689756889113718011169470670625733963084240653530208144589983559056474435640249610055533936586426039744261855621927861162428515665056516903122019410219690836649120615929836253004380483151672164453614922724129074271731401912935193126074295980185100014603113170465492224295131443767666901349796589568860362172709445791361320709939662701950510190989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16252801640057326092263875923637937109748377505057940448821848035935975372203774125660222480960895168234397379672025197607712366086261378342934299502028458063183907285452094902221517418635383409364395384030554288814269601185081379620851132378877878391765465542078155451128875906437497096138369741161955505396369152994669370020838424772864959166451872926924529242461817004221402132985677140118481239829927365895395184870959638908406105780338415012476474394309407453416449657475041760093628786529470312591130521226166761441009190290895943102069766463177545511649433715493827481088505288691974895275301877974059671176451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16785031499231220798824945096944668526060662459497566939845112150721928309865084457065749527460782870929736917473048520925547876169421407201576599788665407868977247818507530993727604325670109295626853418268506719803312402532074491863158258643580891223723524408417617604147803259820612625387193557836777069608796395944376979159371997472627666858304173013662770028621547856392469231919266376198111074374695081177018611619436596839509645053475888553090946556377309438876795031224262854003294190976216699606569649547926107382282073457890490329303437540974006697631478809919534533490620079703644089358818056230553035205309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25333062852276762184276688421831354415763492351313452024002358538636371602811084343307435492572721321101303543583511652725551947605926985391549954783277338184446000476917677847278310493004640305525584329736801764626666174436002152817513307367136263257511050055193570501985705390860096582922630363224374292320934383234204818010444082862608129384687633988460127399205370618761792110921124589241325054054056260698381481392206759221648245167795719519300373571449802641767077766461186129302297534842996145919000516922046572444389458224644876102196975059046245601738883949829716352390676978509595752101990000958503387240787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23645833878898732841874815301361928032111135812671394574637325449754567142571472666322025502338865266317625934726654153380208796860844097596396925745496616358900690226676047854151822037575652042005659942475723110852023187076539485198737954712059893288495458172816356396122912079136254978112309003181085169110136649245226035315527959846946196859366137612825363497004279966788772821294850387976085002239536510821853190749522868118503799389092234277659827005719918453002957777761248526123008361640958499038156266085975123364327479986358753831671919466046356060287890085607347534914299876736627903782016912256178706705619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343345414032582116801808055249587254918283025361119968599335722629279149265764746690013483943592145786633153485059531174842913469395262868038839591377620241178748756223379140775266713897657136313909043664921724343599393740920964395927796508520540516735479910939713993145710658651456990376167554644620032757490531481116804989563850850386362146270469829605657175508499522874153393024091926780651033643747747351901410254132092265723199156256914113653761569350499474021568402729774636927620313108725176857516054121806379523569911775206857206830069666822660387480857066272678195142152927256971592242821571658712633916811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "16383228669596421331930426030288930729933694535872605765950063693113621827280397579043691262468999981064216228189132546646378076649285165793391737481637818464264982378287489931090702018373908743907709214650309991153149347811611605515218858642647731176012662572975878891644289214014718637940757390531895518318488076809446422268851939233387396951428292673651148341193764025372963856687719625730926430176532760344895633303272406393953910860222731118749935575221848040865983969322999706360924523173738915075435832476098594011616629787186005227219781116706003615879767151964857367355016911802858554387211923367513109248781", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299813880269934667349081454721412503103002489601642862556713601370381284823179800087036840532728929786656668263344837011028139543655738865568676260617914061889627933845061017850923869574282525188969907366249088529967734023769269592496500493796930005420387555259243708886794053411478361327573161725940128110891533435821511169796224496100535269789186003442959122321549576252309559803590714909812248891730695750218961347798711390794816562524061835503692553459407103215319479584308676834078840388932139618658307579656911724310057732858611045405616924543939555147657468738702304600226397709543510926099211488900336337221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350456652986682632977383831690094883691444822217094325449687158369018611459416352379241178308190836681249689998177168897158567236757678609776526978768764758361220514038410100101946202449835561841743213704637888837849154494286610800270360321322735975942727542571519994213768048566117616784205603541344636146176176080051732973343277515668600261219586037460634877990420133397225661061487396023732592781289816764014050772968560980889558404960675266867228569825625880342902321025354258810391312847697908121441519535305417715345508449869082824070892335005656902524870310541499576682635258482951554084456024038483000264297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "17669924754624684965655565111919729773569379655133491938814552693130589051893004812977188590963947219408453381708894616029051150214739333387166250798077799506797143152290855198616003136585498699776445454461156651259467831042638215661356656428184300421821026168511090171999911818591750756863390208708060019535697626653609204259953849795097304502093566884519080421790278594760513151339790621729054350850198628552686303590530000047437026681090789914487019158529989376908898436867062966645070828327171366687441579519226080466475696663901241805419742646822007866446535944617975668702872787358832395520494122623694238315123", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28755446121080798483338331761009140869234867146581989946567855953304449764288951037776248416983615429713113135048522672592316644398007856802960029406807887433851430256555974773138012648327297003852334902231483394997735539739993853661877712173384473043522110767522023049506782489291670905885801384777254063387821521427768551231830426225739771910854579383354274771108557910191193845615416389601122515255302798341772924867572160482000556894526769545198722560675033699897076356707147114003091916606229093217210898736142977627640213750334181317209910331801695120636582905697020584559110748742840827234317693035599583849121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22432888314399880055030739017091816583270327280630205429171633648992187367092616355135190290047248527257476283196452116299756894447307840182295850171574622365560023470532216739229960157365536450074309775666625328928743796796636663937832382383134914527269272754815742249226226632300960877090878751283674890375175252782638798626549271782874168203036617687146219038637325891142978071431453142818199337109496741360118056992581781524638271501989007255595114567488192893833688181983022079566805331798170790621705984315534188931657974526215828334806996170542117876120702740238430781656734672804840715296086377490440825190293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16308946999917964118719807954597924430670710614895130704974135428685808331523787788253056805147392618501967501294283320360397781458077621829553818126988925724269266644489908040850385073346307392877647787383921141380242253479918919379567888652129880709219532132841844239094842916327012279605183666807336432599816448138662644940256332060424200757869208055102231882486202983478782748509299407384340121833146509613673706821350960643451637531242559111776876999239120960485459605349824067659170758420452678392477770467955327805524295847658581686542812396526819099025335694219090933573185822811443988103899666789213666836171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17657105259249718292537909714526695208439258280467662376068331805710626876829370219146664288844327984933329766052999972055856287776940771232106264368411982573512349680088397506820800223358265068022154316610813292489998791875379642249490834815102738660445297179590797192515009643044349016909198917005942996503585401459348144266331316138368512289407109204070925737010288400608998913372411982448149168424422263453295768799054844376397404452905616383087539933069694834127102387109008221313329208787272574426124694488707069820710476034836181491225682643460618421349739119254295664606084331751952494588632131026705242433269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17401121422700192361739516274831614394104539563193991609013236913685755750958693354425128253424175776461483181404978154434232446085302797874989060785036440150826246856863064387782233060671433933443338099288000787752036504282862822099803325525587277960037184125758392563961365362251863356340403961711796903212623606300021796373270684889494075164108457947836209484863550805443509653543242357415297407291437305637755734272537316599434982337928362150847048632498291504674030744130247703955227099145170515385517705558299659135689989884310982550864222793840094045098362271383138825036331434962469190154281656089824995145249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16689679748098926380019998621987948327637702563729226993180068808064733767467586302701763925323769432951974340093058894135770268742315822364636905087418671120534872837791963661123956143477605173874322126851174579737509864102180327214866996514079056321632919494703595807524125401524326843256518841831784755783052416929517198556399436573423916314977341670807560974922799067233144995337797044320615617507568622904810131102072898508979950767201029099647569503453322568287544004361622958975153380715841049740669374513510718621990307450103492524265255493778675451141316683015865890418261984740580598993592535167644270020949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297365269877211066507265062239497166562209473240033506804159994980315908767237471228635411533367274181533494598248877585701039518157382507388575401726160046886937631904518277355813389310056891589379684752469514197783953700136562440455809966557435824675646297001714296891810107989976392369808799592979404798767651600958132114783511044713401103991461409984096764665676233983880887393811032730748291414003358656183796462416060364909333321237176586078012693015242168583178291750775667718400743663509960979261819666803883089558404008175066086673211775294833867063752709563814178953627872876306514372656209015380923394117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23234699638066005871490878257858983172441266706964543251724674599530299139972416750766689772164197509256465624927792548898046442779809457741547064996509830793399504816470620863463783118668571124428373137687280212284311029675515649249169950279290617073746718868520947449962043889123800791153064076974672909273228557992227918961877184379383335637603163519030125093614917349940422009304882115025287705660186931789923696680816298707046816637978264173357996565018064095216464545512240086585668861763495716108504243400612423736039388810826966091264739409645293901307951970347164846987340769128309457581365326081508501019669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313685081819334426910995666393596840751933251452965929477693525258843339989964907178992969123033685515980545970911018270776609846854489681511183319397923364944500184886941331867804417541961409914862636246500726894732525291712511218661320677356219120458427880745093602045260014720827327943612089915627159112931941054034066185190445818233853585117968246644536130861512498181031417128814425909161650542225570077840002253421447182238090571947746333090898356622710714505193390988622036889377712261531007244232573422359926541951303758703493766645211180103763886870682963772385364592809521478548882898601506590515211029793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20325032205432300814722464214688267945086810281918016251827008499732861356981918112686319678255971906600099141551199160959995889464709635400896289662779517312593338422473110479752153517294888271162942661500476574321724865170155366304216235302111723435359871520664129480423043522256797016246995279694119240033596519918682418114467447538298389766141633130959242180940691698237719228110899015888409857363947697682044039905007601920093186821613999834307614398709553282664256766678665314835504451863233374784914975361079128741596019823564294807636464056259441046308858438277663921588667195505485601196529461497393883181187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18226348849368384863344471514440639644072861958202268722052423448889622121255752511296690151338114034932166775942099833340113561126031729721622702540779124474294491371903353323667915692711552500452861209440585462259829543474626424884475916435699839569470963173090556264353119641356299773538015834572627056638204757054445733493578343513589892086767596833952007263412681596515344052402825281793935582457036530334695649209044353776047754092072352429011114759537223570832880306828389018994442718745304769315016504356486380151088720124375626519535802302443252968252957292013184120942780166554234111705646170130568951345759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16252423516894988971067644738760318995685316934507008214094727051775800380526648480792446147474057752264382897204592563135831270160780187110953288859053913704064644487048143501946032876679817654785749903951170798614686518127567161551646868835426809130373807108221985017535752663347084351455505756762712783054792676228192172735377860135895190835666212410290562568777937863239790568270349830476605925534236308265420982955123386022684512088398576697985896379730403301934855673589459103149219199846251557385765048869787545188890878383534021512000981148015927338278131629085504017222661661834225080313799608534383164617169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333718906287485111289790629981785380973735569717301976525408228184217099699490262880395280768990914650516867232666176571174660646700943014945589451277321195951242224579477527864967533820654932550914308731059415298576574437773002430279571496504570511486679951287878611817424812789963615850897005969012967302479126824772689866644678359990572761911688391162413551553428254499551797573820698802795471804415616756825182351497074636318826130510702989787829216604972574753587905611267873501608739739367352481036198410366791361996001654334187060719166515073365602100982067308856248819540452916761426713342317269991027098369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267748806586763168723701213922549757641711324950612213971122107720587955740823718771775764053616096809765718111730289426358057798485464781104215090495510887250528706070483145152207014244317930801996532384813406891993177050420149244581278983181601330835111669351342038396568235764648441853763534952639510721744661687054207995860581965290042382022169206946940499019393761929821296585957575266224779053219060312273406060284210970872071242148640796489938224910828879760494868073075399841549762122877453924126907916765866118339897889478941364593071018214398847139241104551135186081759290827897750260781596470019734724887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16244207439237115698857011553311687910268355695554732960652114858400376486625737264390164127377320857750498443030743574892289555626611023832244812010502142599812448593761685500389807466824274784516311482747819791772744586132050467510910103737285287015428198274230283413523495968606448755557070552628362510551490576054179075434739750151618832443060034672783030699983587697201002480676243179477482457552800700052149423356201425455100635863139118243266471008453425540810965635536000722874261291529378438422731601601248280449293758894182202837625493426071180757040426138993646442330769431040428381723421206471713198897817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316868529420652539131257285164569118587443440486476246660344308561299734783565973305526227256619736753175042071071225798241606280386931753020865959316198500443054465741966799347313486659727029108261402707200915446378188538580663203449820567152940843220567606110758010045311870758490087085275285119859632740533534296513977344342862643307444415378231236432690904480944601047495760806464629626620939425131279763881500232202981982614653619092901327937974354957272617510314990285382406645172449901123622262292473950403518463471094136956322938755299363815669399667147931102765418056890618561941097203575102321406677153363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21949040007382077963234021035929264673216609457263613909931496412227554636484838922775334299147204300308035822799556696729723909839458230211205455248384027417058834506193889363055281438819240004898151530587273936480829652053649562280187920126738969107893199060998570747602188647628907336212442703907189505938831085707379010788672555359579755529106146083733406728525045581945016379950424074840873480184489647426718780920601862781888449464088530283688437733098857870503258077580779586059009327404186354083248405899186886040121783539115776835284351081006315984826668215669020908030679965081498982435955719121681522612003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16393375659395488808409544545160535634768921563994187052856361523771797333189797245852915368553969062026724376527785187990732384225323728467885365518869003380098456123381744887350600602394493100134869705621224090562678928509919062973511947890154634098313209878692117220681271239415023774129374351415321182819972496596307452477899489124474271083559268680203231745410024526372086038604215602911492769885893324267755682615022437531764860936364831986305755329296642962276835187160545408743070656220089367582436201860622366694992760906688243174495413852678328383692646765136392650160937494374312017943168554358713106316293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16228695461818910466998974455919605721035512938103703839947578620982882794690637165160465007471018008057256711998556863742410588689088275795736039374249467404077907371262327732302641757416294593055166916011714116928466451559185826781500748570277826589269179053257988426311650414058470795054142209222552669135427946990311846879042498663616977836911543989009847895218034512317296604284655022264791314928031185354743077430997157435328022987999550577672387917947265627098818159718335841380319296723951270454730819455852950454909198783992256315342208947463816327458862373432420550618282083563354861316503032964534712841391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16887844348828082987463656735355283010703846745719242395524937278362982316007925398793061422004454536439295008434671321006570098854829363082211585783772303639334681348156406815459079918531646522164094165423595520960220939215991852164334206681500653572818867653185933345786650131302024949115482841354082296581810048176130544165691978436417939326659806744184620203735884767793724995021625691751242976718764762693846715720182687385222781344153218085505256862305457608339631927152749707614820090605219756197437235591918945111386905704167847489049192092298988608952219277218661351659389833332118933674650078654136014390071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286254217834721752538151983349354211147959975139333453054998895183937240933694470353798116806319449036828246893506849668209160992955611445443191676800226481166985648520592957990997451578720001469460093954371055514059060213549918390913036281260907250509669577619265249240524255025499917659443083657568163212771062741855733535938636285212319112011008353851149962409589061771623614046602857814248913111067041995175890914992923369363274961218352495991809590256890589036229195966140909988908562375848515013783804937354029942088401893317459211561145909067772937437403071245037033237590249842006326728802430642498117103493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25553425020096917775443759748392111337029326887583363369043625880859178303676157696959814608499081391447000950456814274320418585706913007976171473002531491676242390131957648365000246673017457120769275834014929761241070372311783815581668659631690644775229447575919080286903013219309936079288252787859796682939198293162398093147773773160031264794168928973009251992094691477996880580404476299195122887116835023302034729127950139394157838479074891833397274741162222655418315800310091061328342949320256703735675931640076250523211388449349569164379335544926333709130573826557218832126668425141930699205740424943943700963851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25574161172024352055609115579855169945195415751867023346359910960999792001077300945360299186484283892037741602038436744389391445588380853456334763889371054755102996015738520539050348015198723311535792034596044731813706061380693208319737659365734111664789310479571827170731837734414753286745519987433645238087029681898210493477697655322306882843918372177280052822476797938428167994416875814581925574291761933314181377374766551864125970326837768259452346907121364144214893491454031504756445235785994389096943082374808682960930541552101191140052647054394928526493442255452445861030805337531716286511002496563983084374609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22481415614826239768302120842752874242523975712983286157059473887642402339329489078437187088033678233373418710592264474985086058296922040248139557338007807226821693003202820545215164314777423845714058273522170540672142732150286267150447481034189940959505787757939972522055736575342799844752093130835139549936100861171762302250924781517214069597075636538988492717306221783405587634620524951681401685575964292612133582282195312864045912985141418878888380589552316154368840946774720384032679568719614769726109911394782831423778817023821156198192271416272002696271897047575473382211848649690734234089219071697960085686441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301479228411120807909377816422956405055623529094525197468423196646120546904182542327664485939335661680689151730026194205858424114871927033824401456692227361523212538553200160788763907187620934995812318416176142280038048842249638973262345418876190321599384515363951915796354566940416621368328223399725066170620730793378459723269876346611024817411307829338331700797328957922237617314601381815521564128634387764365829243440513117982380068002300798823141157711859247084961232169235920129511645793657525821242700044180322898945611887211007592191567621105845402241684154129882495001370409622539282839227459389140195469971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23351209119139584646131720537377630488481183371344491721348212219374625561776420538782611981461359002884512690879101077082343702813315527315189357946085278507806866393589317929197923910248644533417952928662038803185296947638370858691680418718211172714749880174120293129938993444240195270105452436822058209006265981551359119324223543984844536203869680534126158279758258315439827742168612448316691403909348742517184338242637540142869403460299141451483565404341795376531655349461644482252160865482112403102282520886483528299541008307096163495896767299425467363577524351100930335782978830140515935668889424577276172846939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28266478255910421443099063178289368105889678342289164160792713600283240561208177533362796716199373091406661969522095158250860394791878075985783665951332546679116093385875280336952067931618209736621858221259238729639439277384893725525052869548706797139275993610423123015686297987057524440564356585615678987985848197069006958127040316855902732447767605783167594482405825736746890743057328137519926787120361064521514994124077288559415823210720024755440401219610970326891425042110298983315106874895445887379914246684129589034853158617083513135566983945972009664584001190887391248201819868752916381151005359734609316852007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20489668039153058458294449388820932134584258536683605048915465692273538091993457761877342692915785935066500051045661701704485451946182547091393300721199901558022389635487767995974169131725488371978532121949818035580174213899070707902631008847320119770659553096574591622175003273695828994770562725182706104614695333719777186578918626040596223867670681090918686447767585426274158335369036540517104622949645491173482095367210151909917700217212959272166583000178064626510329647144883336822333187752269313878481731125095059524693534275337137028119106024545585818022915386773855190259007330454403076284172226854431797242697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16248091086060901221175648404630052169843759856336464765378296600670355120290586107324988592538930991835468970219421417620881187873409221544451927957652511770846719965254097590315487865508359406017510719949087696500543811718290916898636613089010586010507809707449821359125909181671228645501090210338884801335855351225493977872668728612912923049854459539905311049591163298832352200803093158313566604764605867021299357481663064491516232361883360930301890420941409555971515396685702618673622235004927185735658020010431343203401585850215292417905833045728244374767750412585262929477604771627956795961146697608877999411259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16443459625675829548657781635755459110289569569581848498269609379989227174348659566282765925329165385090706529014535387238144896680125712952588311414914541906691646292392226855712566429508319230593827710570305010544332894526617003857893301148432935763689400669966112639177383331879544953111673404284244823126189877628959367625745183506435141924467526569198791258580384262819536353197716394195570130939304632112115881082043567857274307985852041613704717842261897084861513277831869351093888079569294339462808528610994837126745345832210955332135376356122010052043418618286037156403805196846956346262630891120088249518059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "22563793156016222017885124300267262689511888072618559556174966702366679601855715894892068617874381461202647002985369951375423008999828793196392803179320934403019333856559249999376855305914488003831211997417114474387032297050661136389572353980366416981140363668724558687068953523745294537997143084798014753835416584708768144246469640094247705201937339544019733400033501275055104669735262158946415766487477569340800679046873640099112260821224084954853233183824383593673270738282162027656940010245149258990749094699667906944784640828168859566954544175425866296987953221742389640884735750239949761772276742509070454593471", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22368610463439905684933231979556875773260851010308887262326209336664741132064903141305016368345093974247819451317398630691208872147854721788205970493780858256973133857004668046293695006811108927386790568209602363295563074644464960805850970148936134397781412514378790558921320715724513748256837057790612977579989892821942045409781459815285644161562103711644245456662749423730341853842541298041845264311755025090146794468009594011869334653143198929070359998797196985273229410102758174124278498769487672913026254583260936136935762374386088190354601309833992753836093880141899575865271479544980787643437642603504142378549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "21312587254016740903095441368290815756821415829584100822751264262798008957390161356002806414646936404974593691295479581915922994837806672645032186974359907035430561945116590214694646992778922323850090328932911778684028822196048848341926363813284388372652329133826581063923416396976177810661771411597499009458864516171157049983770665995508664377773566757440537909085302028334801829093545125444672380184645301138281748663214523640495495772221143139800079189574187128652362285882660003754246561831963619417866773935804888762251780889388780491866640733986402720653005413568949200473391436856512721431136135918415991106761", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17799894495329553429938230754417610163150184307498742084974934670315128529705647602381963018189381905302597420776487332287610560536262472550876347866227600787262674142068537807961307702578687966411142802888951808750328344084536005241848186134636991474416145813807587491282303632407441993416509316627286499621678663101018688606013374803189988749927641777898909879722192155324667987376435063564508630448125275222128985743410898638926631049249598082831265566828666374574884351588871634166437542619314350965625922972253319313131091681900560247337234503598665282921593249995349937123145475247579859455559879636646336336011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23150522214455190027402579610740240212013090879287252993719718038442553161892879633391554281000437716444600244042244764189335271512725205845142304895475630337758570038966620806275628808061712183806014273687710518855150745822944346592877930310193585816392828809461670610073923603609272859609595204851663527976449794566287019625449053325118457231206170648916514311448130259813605322600193998409368407136872079269705080354065123936516563842164769874675066389090997810954276817416854358021969720741086263711533771655694282629137232856705518204497996914171930631068451321306096899438082055776765413838194616210915960556183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24778977097990956032656467045574104746455936489113050725102778031105863109854871341772547719753239980734776691067602029668892803113371039547372486073593947394297522180417090320833796827773241149626740353074952137299725060211666983459832682541128952640778158699351606861503705735374167716734241932325337347396844777223551675345100646769788858883494967263628524156390930383544367516089404714471792398685006057788175099657912160322700384706222923563547725794809209888443803471586612171603146674504145342336972141992300358269209982850738773229037550693856920418567147808950453249445390957204370103862506801722388206071157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18904065798195386218226649639490251746128507421750148777956718048705027912748043235112116023779926053792865013472215851431186659577286531150310442760186729888974936845575875203380243674257454815603453195239562804023382131987192969598661004437526848815189148186432114182649733303754706547408658359582761226833167076825902213628970272420084342380667179157282646180576392018253097450554516757536148247265716159528952711532174577834517918360935476949931850029665514343559830755111248545943773835923341597948448102691224498420215765990077185954762382163781513818744833894856239951768702285830367607115853471054569523938049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24198801260687887372637898752128648768133318421416356222879108450063890866579245880844697152670975529274507956533237872290773565449387886452405687361847242056593466186694804002040009506461773624121383324569130462978659905715194992491663863222307717805792133499544725117779976470570742348176153572843066479614786681360630045399353822897645734757426495794978236864887430005296592908266183978722914042491863915485290653832171403563927936868125767174351473888140853718749894023444416072768169472381138290160116718239277443085161946620074500890318841206265410418801874598951792513821429665874591922228851232573937780310197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325815341105105785905734728613124876597750130702647115599665817968271607703311748663644406937862371294387814640574879506519724950936819263073620649072595589912901399223944222783655647723772382853139717721677055118465863624121715185223660042092911063927418266153778750786873035679193591304881067819283712246236199858872872006821437882271985072888172074956781717252544863750401096417670580070725774915476388450539551748653223204269199345305918714190355145385586346480798727337905506929814188432420757781529665140541516095363937146696080952461770643462721926910582698938641069297879293004283244265784273073866686281619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25697445300415300318693536475291706409594585261709131157332891956615919908486380986134092244265061029045825196879053462411792469491156138057818354243011876466498537051513629666121423929807156443144386752489396177197029839380696486827601544017527079103014432129081810860755284930164660572035233057550227311905768923351678117093367450681638274441762730477583394029479824001655488553437233819969724762739442205275422325272525082229910123366387139752732888411721758777048473985050643162169093025153416109004443926039157932061088670576470495529441158798394486694766703134341049892835290000237925515586269124717196649690499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18346437183453783516450538625715428763404100766723502069110159804983123594888483720907098085156905789504435140652840267641964427705026219391449779588573094690201248921477158993693419918792328854572296224611262494375697528352538661638155395405756098417191017143038430332511591437697752986068471790131201643882456337705047965823873625559758872025072684951855585492889305768627324999842422165212305825803659414197024945821628834327795171721142488750450651111519982423607335554091551351428755609909240207576716864625915660856873179063999728140446509893538670709085982545585597745394893300368077220952814548829961511815049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16372994299583243136512003431040126899352422301642810852567962677467897102059608683586607543052528630163017940291058151734128203597114880752828812299532628175794244172064752320134335358599460662823269513423918473778512768557167052744232201101394205949113303012851397931393631542804476455270171922985832115063774097665096744099171243784236621650434452194187445174000431497814974819402554857402803727173954474971682895121530987415198326406891316721298895241077248499213226288305113206133553997887140412712262693571320597650252684316279211199213392298676888530614787763279798493584379945029280628178118940430607654986033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18247735001679821506112283623018367396768626999183345568160644659603215343278891448849623214851562720502973910153280427912646414340518030454938527124814324167379339752007844739952027564532893753485131751887659013264447058191585229448413491871394087170039693584228272143043997546055027466102615577950408201533515432679691105107501213205596701200022998422541380627299128422950124532636306052731277089685020176336639140481652279766349004849601386645142578873273969156125498809092956393476374860626852152076833955233926141189678290332569781854375795982686676970790455313574870804890304056894014682757464415602778301004729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20511060034783867983510730808970543992532837198288770196068154401091339281096664481155260530267789168910798095750869571934735824273673066080955879965319744420895559329396199616113859713634324465369728961856240744587780726236304376344339512282862376048457062897366094489217795968599131773409881187263748413375001346301786745631962607708575202601542543875977247044152511005617178522776281668448345512930028638140006195179718678114645024756609921500286145676329319289087420481703124016912022484317445505132289341556471865519161037112790850756465163535669697774721341707957412107885209780762591495784759155972030114130577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301250841746345121988573858678992782740344582137269332623040707656018934437683344149786901959962665402645886679548138258449183228751659934236561868376915500699483473639825799128828248668607421652063465850131194463948993265199310068050899494990200813996459858795696554738042610328996825955442193710814426678026449629977123039682290419005809425783570860252464670268849755805074437422154121688068882883433781266794946823404721322843975095617848086124096222975846724978700044358433475904907144681438088882691049299829281308142885615133989627091024915518630412713439626934609276536987281074521502578729668457646788290411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323260846464323974856183591251867005897707701018124821207875329913788796624934698343787602080416460977756377586136908581183273006022054881707075440978094611800404405607618457612736304334160734023027143817853319509155553361424812122291938508482499357460945699983442882873577267902063954012149514706819079503134452357318891814406690945527890028880738644113863711350006074749814591133372075066985226544022077770342928325669986848538580368603866965784265464172305243321415628178321816001229417981373665605774927799767195084842735640760118335470104664820612847695265136816995477963426870996319467811168286706591691266389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17883023976774765173427745807897572401926661233697057878165566183897353720500394268491723106825915601532309368484981501887594169514685628005873744265902605518958300461765521142629134410912901229279656719289399053706064839668630699255444757682713735427390500513916470579254058837622290129629489006407523266078984938275906087359979590865321255314825095423773552374597055793963008945346553318540633225129985415420245423390089444600133687145147844044947129947699189933087676731727355118328069191468384262177710341934926319564118453224827054455097000183975958167286577245166879697890381563564683373261974362672062810257317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19557323878314379121995992039325383790780861791859137545605091720493440938233491888790037154503559674616223622857808178572901535134474695414483505036171866601212977918412481207132620793062992264699956790881808838054371030805986211663343966719173934374028632124686552573997838717961912603627461873187839719712006750928360761320586478589706323889815620893572419511359228794100051273455522847044803493629285961820529733476279921434578303316497767257662894622256641903951244686890463489743555047660572245310386166728247832968316696715399802161342256083579192870354922393482389953804984784742497593374605055000918053109387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17287929009680043676121276202400500643417844824092086131630494598931835334997268372334903989072912226150161799467422001201394107458953137164794389741271952294818759267058342728810563405067712265218809817333950491422845345484740915458093920947861555622751397997501817061420768011957037377214358239299322509633162898890996292529559912588269593382128956495341344065321709307399922822870685385740770494507543246456190548310446895848468536651432537958372515271315491153773410657444212029648882376209915169698286691813589072326697697726767123824785437279316584769762354571588579722062387496602643106230164551914768090321363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24723062266824973757241970901770327796793828057202333251804128938773572969354522515751812956757886704469852462143454108254157284219941878165178388223687193853333734790344306283085983836362750639338570066230262298029057344271967056294236396679846481212281059625026786972662184445265854870609392268145865730582233431755421297264686506508279633833506490136214385954790865559817119881559477678255828236989237569938681503790366605945728309472510601228334607954654871502536854504187053651735628044361641909073451117103240356767936502309008595873496781798526695945136266094464187380110865600265639460993354407439365384252513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265756469858752972901892660982271758985307767191777774153553878874840750763501913522024734802007845447527677487866697530527047860170765497559731368662634807887012904669592184154165421169831430627431662237901301393771460021468510489227084417867527547717144364832038252413381179845396830232182372301691365588299978553778999027432119913851112432131075702630291950234498961164953353824777215129170496476843212200173293730279006479156735987121049446606457592538787808535270488418621236936592161397233556002993379233184461569128242542769470702627314685800135849947320157851253269931627355274784662292464119560346330642891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20076959302243008777510968500371506576781361254256545806392484622250070630658700868578600942297165012398920039743880221097086072894165159085128660032461631192949709041537787677394024482656387410706667171705172612222123973149410963778324052823846081171968994446243613610481242029742759335315553186980319363939539441268920962208063295763622836704641987830399106202567463615327755012042495343800357083976122962234489094201405537492307672384733260864993449217939037526664400579724740279909244909828647314162282786416715896219989781977039739513090261014084918866866368459219497584207763927835734133196335015135140451673081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300763301621877711091994481059876760587781278470657962696279332328936925952915607117895245327102803388394093459980150981607437834492114829479563399616074582219568492039947906002804137168320034977521675699676940021311996677010235909786255466425298322427302370993238344507737679228532721138122711916936321837437947563008712019456953654134390005821985956110144826364528418152636245464776629052752572027862054367907018892907612437850173247523655408755038318644883987662122280394617535836410875437201054450797061321252244000305751746413846505298961841007503583404858128728587375296061592981182135370246607692235211088831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23997059487125003061343365946908998386753072972298669906946182233416606292147292545191220322666476884200293531167294213110940670187677771692622238311745133345405359200423521937829154119305688148398239464746457996014074291340099360292136736413792512482002622352124475261273401183525548443714319785793015124610428837083315503217105793805814287891383058771526550579041065097690117527210351067238164706481045631804510038378930187452598287557022615340112179626858081495380931091868350103213642668806133903769343922613749178761656240856052886624695626330750259551367491689463812980674558771785124714303674253916404168686501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19538198010818366411119069506596064440484934040884628637862177669802284268413496331563140632615684740912157292332645838801645330258237541122202460465349599119423582219509885021200739886777770018959836519846599770623458382106202947886101714412145328868505392849504794339703878215418406810641159346223602635713784514860663094163288454593177054377451893999027703487061553045776380206652953555757999425429432607913404809512283784639732337317066232254636875874045839800920475714110748917848044628505291960612614979087852353836328583293778002735098532438245564276653179852171094663414864985899171044501240431473480083800613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26466711272504298112135818512694631565296999510283011171951222522169190522487083995455034381002874228446241490800584777231239524498572312253183165137976388995764252557616821097291029819152775189166448318969623962905545315899986591021760408824396720681092273922714319453009210197285106653648672369260512599918016829841829484081226918423952356969927201712204800977056557914310796780641104319977113040316772452033840233617727121181087667384739425454603287881488209098462112512064096275657476250120136940152322131175754561396149095032261344201150667010135262405163038849050705181638322500541066424111532188386627373079969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23671852102406431086343432321128731682815826558125278770514067885835210749405865824970147696530645856833516446012342928548051527171903884400955855835155523183996356847643134920423603058688081935481960129230415554932882191959963439996008669470682949745081171485821013405591894093426607754116498719246271277753196110033728913371144733654699499668704087654105528782042375081446462172796779073330173686077665055384024955988294724673705035704908117788666209423292413607749461590007325904874696810266061266292372573427014284892517248052022695716811075781791273853048620589534251549112648166246065021511746882084503659160361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317489206416060026162428883623010176371885875486487376138922363913703474935026234830611707712729122565208565160486779261557223242550930962308422945934387800663566882464126346549122388333379070646328816310643587328560299435962951251143376063867586406352847018121516037080946088200444260956592803031906966432876514326496413385205576633148693269645281213235810656120689580950825170442761949449057365331031504865981383203550558108858764286885880508667632679149322414224033815597286957399140509555645746783652969751236070089506229027261973856298532159659713615856138571879214957155449404598085212282986358782140924003147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19314943481938223952971155969001607724164339350290161035558747414519237708373297825618155332901454457606232365907497491302511103681753159246009202792669668480513382250061335900039216030903164380674789523557811101423395663745083116883338538551755543255135854177778442689924596812694953813259753454039839465968787358961129722382574514360247826445127935012428536319263552563570565851968379069474599925059291551089378001941622990169422071787543439014677871892389513446313281829428877512825308730838010583017098457057395981226129158740770279676212996211804236577921969849254777556216537266538162555087122560010176737426613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349246045571721779089571500604221294348316629067569626883749723112298724645022726734377024315252462845859524684386971382242108511645317647821550096647314307107149453670531733312327463505721542614659648991582246567058000532668188382771343976717398691982879564381161998739516573231603842495570863502993871479372643782526140004949132078491543048716528682349276262406660929021966854796947524293624788071612859421617466683785478680256036535038071579057483558546992779429736251899454468552217889928330533723854319206328182165082416600124960467550840144600459466309824532690402457706779308941866919078930536565408989322633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18691031471369679634791253570124500414173782073666574184215098470967358818186198770388777654100457182244508261073548276179556578497915313115701087122110995304837535375539718655644035979651090944424752522346849623099284967666096904114420905697424799815972536779479658033310515209800481817281168668766255578200278519258953801230700122410467141541749877811896487932124435431182066822462766556333671935544074268897900495417903961284212368822122385506419605958438152922541248776822910090534269580215516960063247484787442017196540391824382644838084886159806358266528906137305755344054610647601198973195684567987230424548317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26450266893040994789692199993623552125302655762257332312101118880671602654317423276191953548490435063996272332439204287770904506122550109600679494468114780473276272992501480429229479861265414618845255681085244446388695491292926263534137173375163332393311252908506961072297062481035850108452613943903013644755289897685714368683017540956507416900962446154830441102877338354733215745018570025218629305304123288509221620209634696058463294047667214163536766801747112576197982220065401105341259574967436250476199204973540135672458057392198299780911817993937962006274838314507204425684904179784142615224587877031302011246401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19811517181272438851338117656786250228681102892820892193884379865299916585818304971813881669884492258475673143491985930270874968065787995705105543032795818350745209152627916413865078766862878298742439215789693656091669844214342953186733248527784367961286216069471471202784435209933717723010211891480011996178632981673274113665007196340956198310941448456538536225460033562897990731564082866819665970902268955231576598684292473824283720741697046703238917349722644537923001718163482530444157383305422990532120734268895352003549895457508934376756631719942856076255802912216632524242198019557088095783822454142447181419267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18991970006180228753306220801318906372626704497673033979452931811255946676823994242086870998222574689947804566758552823749154485085540045758493649057047194559132751722869773918874862832401743832409370005851630581344126488969224367804367179366451541419040516647853244331209616685679188949526680533532313877273654570330308507995998577048697491793072208353197736872647209651949201925144305125500110751308791024773250542881011100579003708036225646496296804299958401287680712918986922920098261019664920998479859756486869195264427695230293626272339128368310428040111796512789265235144767710098847493885184107267003142712403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "21980105692441493540250495231474406807735019656281769041754122152019599618287533574540437036693175685357787552762480294310773918813271510447170745218219931433798583699693657425287776924213443988405425814368444281072107049659823000545704559797974488451871656376332856295202589430156549689463662809656261084448874459307619851958676167067341200957737165295408446594578347579617516408034062967628645939126488762784327657104986828685328057702891830067065443887991482893936272404066334753456697070229119087506896545949072538539986809917338072164347311640261296286686860059787883307935540429140924621984760461103351914537643", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29067386055123764480814944935574557506900809398887877524641103850855170803198202890036284323439771039562632517814138448046826533264247410174788843320174428168289673624673899777475476861857108226838503367468635275995201487738350954606126943114962220562674580891312794812946212473225250395323761985869382501351425233021907165540446883687205483563640275466384957751674886515249784327743741565137572623358308634747337050088006069077463317447779386323475521522326481082807342420916582993119812844547114326969821982330738671914828261373952044843921977253616246255281379770832805791544785661579792349392273503590488089855919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16363772852403288693948832857794851534387169392973258625300343674518733639297417548114697845145222082826330865410206599116283154635751795431422707194981010202144905058165778692370471443744341265743349285947434840463069845163161504214842606258183206169510325409807561203415682657966922788041457278131720628818991789430032224056120279097310938408173318860200286519920298982780026382194638537004192307682584339425073740987162633227778961858079377828555415937415719880810703901103444754029473995881458761318694884356759213555441493739165246609427663338204364846104952496306474307434578427131253228561246083865217407260719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318550484780650248125043951881214816584089491977688063413910409617582490945033536163460119627570217696352614444274587746140986813397011425043006982269345620024671316933108926081226655088311779879992830251434796277025929575207741559801572447414576035120131620204579483361970028492796027728456612072340476662161590555753096574946086629763541336039466038630811505820916841074540858383922054369426887075914478552292919583918594473172200784764423901364545525397167919518821876842428682827030362813160170631314611946345641735266453479154495072801347842323875914653338412130868611113821737044905506061627488181305572146583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20863168195035105262859981381577444372201841674213054085888522005285979415270194734452113607933562065500759807152163811286442108893289183429432115301500892784824695424777821873799331606041648344951810142286395300730550617581627859220034715166202841580315715568773813757585503962294538382904585404126815431479611689444223393566485446144950566943444794402528450285325651133195101937117849439367509490792204143217372393979502651709376192287152797944778777189217857965013536994756239207800177507680370112277015504467648967767677616043139536295046867139052641402590203324170403371855345774204297691527157980525405522543091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16216873473583740035004957500896053997197950115604886904718562106378806178446205915173296092370365957437872164290180624662849137324189864462042683393150722239300338236645918233440738139519108156520345214696647806250052373554331444379403373408182825060212752793690643887548057291359111489164311069536746062605093866042735391797559594388911741668336667857245636536159759304178947686860856372717000737765013400480419223737335265157639570389419740544064868653152920934095296266583909637243507543002461327322295930046397860096042985488287750524640948264947708026296441412033411593266860906116798586508126070676229414064347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318581583866802405423456593708667645192599308580752238278834856759208962436446922316471002586074390218848740966382561813308487088201409436325198379814277318464533869492001597126498483102339042383245859673097822925886731145529272459771096048173193250630429009185950934099204644410215247828974666512334660677792363233363675906670794041698338520126701876033073050961640882677239916915957815322009640238750590941614249813792495761018954428963671557585282760202912967210562350793648326637271004583628404072564324203914866350886988264514926582571682118591998598551162856510314172462313886614934211524529512711549615289473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21554331018691808480610067097524409842416477606368699218639167974247629025595746760629874962433071418320473217871512503464831008182012619456127058460551711265483504530959195648141373526567959545538075666445059437430057475214164973905427489341848095506824225194107878868542360652977024176852587431019837500957013846866493635592126824157665963518005868963102904622998835432003735892726960654100599583221247196614458022442479610530973357755571300335658333215145118574297787099053464359798548695121672030092187077627900539382664707072485650852778134423203137306914514392579414111232466319165730236340583343696863424648021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23894889528944805995270359186213294237599861954263427197801448074588741904817679267943966543459092882494273139091376442593230386067286777705498088538303448956714891894224908575199939114994304785369562312404712866350488327186641426986972395117735858025862747996903804942217617625310100806643667070433617395338101704408462440911289211090320909214833393870345625245349700037997203586434282304549377251674392040154647428359910316900862894178455392976608945163148226149431194084794563413702196101948317834041894296579752637411128111296808308054173047970886421270177767401923511952530494359163511107529296896995664008414241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29225507248584853749454890382017868593501875010440173684581931368648951188588763975674359270233466317939571165910201911335928792558329814186358572030865809672224954140704476147162441265684893294096534480099838285410012373706441293528827137765812330273929877532053171217135160202073175688539843643256779026985104791381482028462375545139530715643221763653079515953393715360248881827203051346031686097725059995905973234355923950708881558153720920328512317192776226290484938713747266656517598991662479857263897284152117759336346840017689989400463903820761969823974302438234450974134475407625651312828983285960325834458391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17968642629717481534946521402672234835921397682521528485621454922857158743726780748836812208308056243071903882296594129898632772896457647226649802196848652474415456673962854513059140428959006386424691829610316772010340438415619080849683176317624863398929781100996554863756046448317086124924875038387293788302026824273029779632568558750544224129390007001352497703751917094615320689493771559559183097615512585896039054416077624628745270699466672795792916573395060279658184652896078752060079235152913706997646780460828090853610730394375245271929051387463891289816648872112798658478217536797571908014310378257301885313193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260729412523072091201179183797222161622741076533291009500651251134005846497865302682369815116049002509172049189105422587580194261584484603988008913142817754197481248946287261080592685243088277160831818937866632310891546894010642382541291132771275909832560469692997019277053193508049456519621622525230335944273183794634500276736965272495961757221983420837177308386776789996140424640646446137549342296932185619881098511097494465498477556073053784245422404139175643744712661646396463532112258675400029918009497736384703510245595086588035701399831044808170269830220092618572334200902486686279045776685301477083420681277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31962780770232547957404251616442375157919565058441492588389027566682260933980015753516781200160810195611802422408788068427090987094966124534427722849790629381731717530768245360534212553032103034993413813553725323869007191107288585185965307722444533011968612726827207471085265857976269228881576521578728931365726354793191570981648997604143167252297802002731771359087919548857846672663066640546810562741262656724870457511801000171649294912083639959362381298273683677026464558819562436399808416697575919086714654752725554530272947406034252109001642251900516383800723558493037565394312832411079013672442998791055991452301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385305012694107765795436288263493617891457209988945728575340963304768733115753084164732819793394850463983714213625420495198695616298121586012043566376448130023828457712690858669700349340879536150305702117453999478675620390435030083253630486354888924472991204325148812108275064599141446952645859974409001327548577629971748501397287533651212688025397972268236909152337222852798023632758532430048233764654363637180991985483714162331888224897975347878982154587247708173210751455089827379839393777744306310630128872716720952145263851950432969569937020191451667771995184448854791541860207545923491945738164212950050776361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31068040542523503045767606674239960355883449728118949454915153278791438483388549455244720750928299691737725412657870484682096671776189289978236559835298255103785910356320481799445467910928704579848774683005920352468458845521671402241835992280045711693720346941566276917601435438428490279647240103797256292370299155410401262146348691680053606290963234038154888078257655406250244902620195740111821781300852527561300349610997327426128924866010350452229164529974902485100260260942503146117249914592916158124033448257490178473019345307281601791897607305303755938968116878983659886413696340933100008249440639730563708833727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26321967141557193603736480161293910232889302311413100281437642890800382421453146858169536592244447795958934892952255898660499122746155591807595430273996894626307724529947390725664034307111210569127683357864509046315742300006938384042135676009324983732609328248174318399515299618958394580997703536927346869737502913803089196070348702343472747834919574061488569411677592505850525793045359574994270596479934832187934213349221843047716189263051843402480102940089640631818009193818928401080854438925646397053823842728196110909162956810063413396603951576034032591701194140605805694292791870747832817171299755149325028109999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16557190432055575753668033468194418920215909363579990746534003201858128964152394463272908350470899799447151804969392362502891433479949588156315978906132856604825316106017027312137917534333679155814544686953695394264673351497407947828797363853882815494593591058535533909055001697728765691638119665972554982717909728673580620267956710344284593613574880633628347515047690100277165759202479222240319726351228590942156424948143063783378627155000171640535586209128717536808298695989579994002527457104485141071175291630201357823458507524243600573497512281690023053955593141184252752406272705322997407663278080583445956565551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30111210376719185850244813907090808021434113355076285762236380742586546591115203359744797089344507543821574338864743347197826009769698628846450339434386023066455807909076985636002382233136968526131454402176222101874368138889472652858200955948952009851951743640195706127454977964086101305653491315138306024580330229073720644602913677896113670507238517868701119569758480647578909091182942621129645087688030443048768503536939917478061135928429009175364920444092658528769984568112713660583902256767605281686815548279289410502791450935068672057110151923785009654930732642727137803205817006527904941980324141869852992546833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23346281091080517287355427700144287663728308267152993273858669578699945552503478338738839207023575001386321688674934585151764016064064287220743247424344730381608301692678561589532506872485226609223284253570821875383730784912358651146453676902419379614958535909198460880027641665020958894334193841818532000049515818588337155907178117722553400247164609487011114630383302915072211826174005333462380967953809781417663445972930177127084396010275008211376414360463288182329721266540845764164117811520848746480692830773011558421018305672032539261395725580902850723750892526095082635542984717262215057698159618512513173374607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23506531785129355357500424361127277465677917958591100907626305385197608609624963700966102764829557078944504978062359216929404128171378825722848474813184359264780697881610375333847375523902322933148852947087332441547033547867901187696861740014112013396727040566735711992761827034412832519171838609773690632993273983917190486226773472025284923955250742422369811921836877148861000113690220081054186265833002130891047370394373076651180808618046332061127968331908574323542490994454173324875433812240934001353143049993926215679046466287269834407007109541641410237450189619569561485855049882503202700291847441356781617516799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21782391738723749254875253038617634957181718285374280592160359625800831016836665403735057626320919855460501717289967122479160437753955543743169821145437606565367218996889838473005182858387633447066132628746648406108140494436129359543814278831330896882272928883143399257540434480179998458126458848016067608383930128218010585930315441451275546565792770278619400205124839933662827104073187698436296445408102255285603346860680739887979966640087568656553611279688183054083930634399598885789973578690411698450197140776057447299058237116578630734636670425584976772643008206590632248268593356014546084519395844316602422609807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16261223867916494778712788948745049454762583354607376353393932344498509820231115999400290041994842868010377882521714871491963117460997869216945030568623228695503722414510362368370541711932863757249428763478975453620069637529441776551862255745090482950907706465892654697803994163891548729474078092176012685765895556457306031225642854871112412682625479666730414150747946896887025136293195837028682327465142688121815494737227117313404305940578897966819790867337021917221323414653464392594740083825343988829455226970109429727926075047623296152426311455891537795618511499094991753233585075107586119276974681163956814195923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286776255584840634625853764887878951288999915529478450907267462125055228465180211358505341720204316986890201738026266954773473733004553573051425557016904593928280376143123956489063173236243522410473413876705290672469437785150910033331182053421827461666810455706064835007746135035231101799430494494673633136433814470537363785805427801280627928308846892104099407757580345035418992966323488308799325250125474586738547907391071873818668577826336048464116254220988243328750108405373304971944103257253800163893342122337627161051509235549048795774347584281720668981247805982237894608157856142243666099211479359643567939891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19166096662656501503862167566312097761732914991468191601475438890437466550541722914745130600569691665944047665735573866484802657814266373489623384732681751380596518933784184335713974478753106087777132969188196544350140056557567590201341687325017430792684460228712408265279793639684921978748571458214202726089042705554512494225371364143418610698815792368743004037829476618332365372332874924455118830113934000012579983628280347846922959623381663016101761742483529966852252655451504489152261722136197569132419502635657232748441027659859510257558961723899071966395021109275446352625487022497759442667998086682952687373557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25438280236321450950037800741028763252024099754445257942186622815078575559779122742527250220207056483686739336376816329343386794299728350817556819876339943843172007198059617313903210467047950305662155415365178123400464472226523437233335587243595652421974720470371798650563211324148010351126383419293645612473299089496874588636947356805543936236921717469166226249004822437309081434587376402621246090685159754772517448475674604784654083071913576890994459088784875234122626738330553351165914197040326334238332978796813390969771335015060836426432295561935187836139832980820613575340978469241461450745114163495094586509757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26615730943262469160750225317409718200434515581618364205464668881239623286425035197318489621101598820285976743276937148351304509309363970635498308752486512980345347926256240270123218213485842812879818581101783920755104661021987666216416313413266539857637865343964723191985549368898210450226272338963815419940065225161732105294542456764931897740467795262254657044576299832406719237921021510370858013972302583220006738949378282546920108992342135507508587077379845141642243261409631797056358518480142412281179782660103598262138131498303229512595617813631969186250078886535070336345746412940420311413669968659748401787943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18211264238385790389245589913261388213474489164397948188535516575242305635179740100055127868213826229029194163138002728931370274541370563061923313635503557183117085448758972177519850059355259373556483474503769606514895498591084934350821296277687959877271112825203776005797765378819424254649193794318464414372918596056927548532490825188160546436339166448568090144216917112040239864980853679382463958666287820553726395623537070109226770704490974380159360755490282830358080900802259476279183048327842759975183728585323538170573048173038819897834873457576331511780855838566929126500469787579285895903667699743710872652437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16762162303725482513900235162624751829465416509264864145808057807589575897721841555276365540975523237154314219420494520204294547766968997271057024641376422765014895792775858565952127379388154659742180351411168153005712941373291183389974642524057564740984421680785709931121581275031854513774625633658076311845406352612582113351389749822617236538527964171233586663209624908385306111136090344483756390287142703270791861958416920104687705615577033106138993503531875733848990705780510152512530293033765105628027240660108160577388360468470233672225508955567378107029101056769049384472496103492653184562489934727214542226297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20684243842009061110626131564242327707090356294972748765284107435883131046215226240550826555960663087164263025409795504584926961588115965465606525932472025812316894296645217544086763512415495758790391429429349440502482527586554232748908620420554348903710571705524676526920326254898184588812302411712783850237804852081089270055228533465683470251218708104331185827718009478604674883648286356745781596274764336408163851966666600948340867818474278081172343238986066582205431612745275925912917013956757764507824579423016883498855908186434148872644295544650810656093200573821941158539183362382214105087435886663303055551377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23011444254022801237308963438148137834525793359541283783143268426244354071295931775300876918799111959068303087125907031786099932073514494544483455882630669178693686974041097283246281598489337922400107990796054604186705525523354512521486643930619231799291927041650552397235017713339738318435835913168662582414570778319132164164364554665879820226964805082497621135561447367226184353649953606711624103394023611383113453561063675361658860358090284283306196458609076658085513626470021776496018472816525722018959934602523549352024164697607862383539968573953225436460519388658882563768772828364994865961177824049651914670251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302161011906541380427773817782999315088917358957355023623389753966259803432283314137202524671683234417396272856135173652979928839688029307793157718926584027749933559380662826405606163080992396951227360683079391618588037312738762150738844719292508991788095733257442313415753177883316662253582178887531413197499464437707266988833157684294733974709245415849188908120205726906146570414838152975339961424269812852273112991108372192425141360526934253122057080437240262675086447223484757937311220115644190606840745914057459634894386819552648429708540213463966857019341605402155572640311240207852371137164048374537534960653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20901801670404517648587621110133589787918462121338441249611839507861799406464165430966669486931292946365428810064381773465639515834845580805025513535978166287604119397115019708983223694190632813603824107938285354387248119442396128158574399824064026773942014011475434249464600284387853009388019739186170678768529911333610647177331395844713376899885005114006670154254078475587887456448751974088127709484428900063533661377059265917405737427552917384045251155770026258531897384932265601757163995768532549104373338981618248879748391344924834551322798196220360112256632211365927008289041371994939187515639740073978040631781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "18198878015454598830076521268832427210393690510184705874570314213390244473365316185616777842158306338165213151770824764814501034997169452719726952465209745156826156125533532240589858905970728102507132876342206582161035159429707583403293923514062938833938016946121554635438600441499549069466100156312057915051790493648529680273741921792169535632401979180954495799939369313182802660018146409407657890230386851730671594827551360669562316707897491933802054388564084223338491039512397634525603776502482403689886911810978704682089746061072477304557048919881367177966735919788714637195835555210282555466643734538684444770573", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18661676589121049555355453904337068531499935329759516650562038245114658869011654997556577207129257932148267755619523345705676880732812634254447581580431433990671604458201060149675004065392363251579812566295901071784607505298225298678202574908160069710308016846151275821362419299874921788632800131304164347412380983363634159084337591527401115118700974647640557795984445176273840402094170154980495351584012983880793649268726060450343188621081196487542973882804761598709941342807932135260244712963514892706600248252695330907700700375893925314887737360725873806742495861143459483481510691113356800704456581783106084396817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26301896985436671019901857398097968533899346849088756713440158625188837893674928820542333326630102731975574310998508198478773660375860842826540414001909327071736369415118574617109261726929484974050564832781762913489052400853303831314718693929119326852148536489546344045805654734351532268480766865303849549879656808316544703655957491957093409479745892069997074271414149073542390980598004469087367156875766476680655058990219050352558426797357794344943465947440354663302735132592416670337104477710220720732810764569792055808224925260838222207459479111228706875019072420342430900109940194143549762517897459267234748141247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338317287810009146330305120844039549308253348269763248528585964144676521664963770444442229208632326782019509438733730106486729634404938608992986022738700762662993089013923000351593763343300129844125130582062212204009569300406511040440106067900078914458812715838543020015203908855052254838581560224355810508720979168457236995201230330678233615884399982663249732143439558612426287053415675092873456599165475051040206932920039982773185678695435347944868532709699680860812463483748476247751945383072379996241975615848963973772358247818502672145568740412417320195741444623032335859915087058906958427139775064800020949269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16229450301818862808955942306880308893145052331653610409596791017764806091673787227483367663820608065211915907894691014396662229921730948486951722191863343054982362374072330031303114277081834715209749162693250458499956065277621651335532336569836713342628164413878131847947042147370448287805720586238781205787933281159403329346136454991683651353663067040541826469602257215109482833464679343728895889298996513656503579268650299408433030015340325886120033654695951989380843045742096159614843060450118208601593808615203477627561851474678890994641555895573041708083856606842617474183113275683173484676483862379603643631103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16372842281753932914893236117878859369361299063315900330559466947794690671308478331196836637194878830979808678863439069158329998949602247203071610879522649512220916812620623010700619892873920895221034724240523941625543953107555020978329428938794883891441142607887257598349583454849147981771085449371169012868410421397716151434586118740998955721569599369745280172950078348229220222555105569922344848301436955139709687274777955904512275174357472215447001839768792610187235880102070994397994562617785829648671228858167360892891862965389627488688564862780248077369437047482361100526945501696992994347173838511270422856931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323491115388182944483713077355449642603775393312900511545796925282899589906020257476309180815099934932517639480045590919486202720373710599646866520037092728615207666505577921478838058222482151587189645856775138130017166386865679011169663539555875453895371341333622264619091787215182781614332990672378715821474655471174535823588389973272799397059901481474579136852395136808715464483654056944970326489827957548004185688604760209628317846629639975772462531471510967739274530789391768018493262822127618756669026134744153799037685396075950810742120743950424903747469196203674581116042511471906699048108000787929405575047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18827114814036289532388525480314821729878053967101400845160522039674339309733452589344803106506540210039844037426720615085127483887512543888506255762682497234991451891496467081794088597546145324519422097935733693185462266194566636472329419581319083708955659732916176756013818422783694866383901157061327361359391070345990866486075036024645638356438392250467155331836917883744614817848879640588747808862839299998474054544861245487696208744234609232124823343802578464838179715362933026994406083473088354417993044181339478274286494960270645460440184708931167066051793293648078178191029132708519287744648268718405248793211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277432462951307318058872240402860832025066964966087296153068889825212573819173601342146734753618908845285926734797343560797325977642390158852476467710806793988847457482945925099810969773784154728278277352734570434476761507440612064367434428789424622888353826898174667917502476661933810560373764233812504588901376487823414807538577946976962094132758115795875471413156261952826510989054794761021790103229014878302239473695947918949613842745367340203413701204182715244679806551515003573269147160025979974533918041481385606431541067447695357816081108249565906541730232448030256975948160707153391732905458541777855239151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367557561879451026155607234734525238365916616667446666993107275811159736290786008091583052592635375975964400529095283922455002271162963227782776866472451781806851430825292659131212608109421016079700270193004773198361012894985019386277553204677394765911868352329965225837390428798146287486649931590955741396867156716674284395899140387547374773458765440133492008444310450489470270799935743975046842790451350141874399196501845018484785130669269655848586531111004733882813070288568323309568145262846531381885453294309536501767692050664309795334171787100741502426669235123910821383832756756716416942216956771053761661227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333732863820301561623112414576662828764917097805800811102624680179288250310131380792428283049420526179004504073662219004819592644611743642928323136948118732406994566157652191145153369226332981532664496567392345671369542792283256040108316391279063868338357325044763666032925675798937731882899944979820243537199765238833891029436250891118779582359691738046129308366451390741872289560372147952169785705088313301091657769674535849583285487150210273655184327044842756932652078636908029255132049625451106400806807141362429421222560471050121014581847251000352116683644070560363331789063083743348735257447899981755867456783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19715306171145869945963898517256238848571187748213246687221269757656660994874825974658521681177798326895457612801019327395902321865068779659819238776018581657290269920864582775524399316501326097014936546202000109530704033957445712827913373563291425954023916724679387448945638105577700605496095342360960005469621846331944561833642656376664473757243550999448956892105593905404921998808168839578074745931625405755431163034165386443864885232309208305864085821818754548518097429564646294877033563515864332272097970983981896064288839324491299068370077120945162641962012426783594102602035705281537796533253635341507252595231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23346854048434511370454797607747212374215683787359859287087099942739484411209672367349999628131287042950692286121458275423605955931958563900593022761135702461658665391102058964415362021340419833735306416951997999935283910082102536749925896057253268330502777722371746410698765967097850630880459576320936505881862442897734995029418497686356185766992325121005524954736723628206471635024650216708721451643721809175795452225376929995390568686624752109864940910523451517525085290073096963090758844796380671601061396097518495280265047766851481255879887336834691428609547763859680463385914468327372390046344609793047821394753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371604269073907396414240878900918516836181338559804016601740124532584384301069546240076573402066286533769462307044702767576332194575970627469893920975420441024815377775150088876728075648783376740637141891014765004412178552170847974802715793972719826215821693318788131687394078766589622142922240435091219291626906789512519808425657934586068398415559094712099919900990664193973884861868519550411541587671598955189355465264801334196989015533269528834468791246491843162219937451196471063883792231406386903443308366890290133487405173608411905015908519790069517438669661860322693625098188326343888933057956196776231874871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272150887392260880543248092056236120217876244370753561932076015949040688307820408284751025496016142627790211599375647960294848187148268401047633024926620808386619540230933404977318370431276695048530834070160798398642322423095948192924275605550031554326851384499640857954414817028321336148346116938322671090299734757621753112818102281475859065711512003974034988612989465788529905966748758445927146615393656117399391659082298171440348225507294016467739785938040440428861861585984623239113923029019773306656457743822912926701317694077484771990569063714706377898456086962840391316208946416770393396393642769803349370027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319996110356365631818516890186794795925815320503477834233645096982646786121219743117813763532965652243441627523552229211450991129274252141942597967769936696552020467179844379472096219866787531095901905422589073037112142362447663165283288383941600113411032150143321689642589941433156686730929426162228808377373265633854391057203771663162536595412769932979899348364732606800232457878590419195669896285031347122528379209383552114374900313359566858413799565795192662306295751935668521270938376258740809404616116861990282905979821372477080671382349654134505786704726159463638013220618972233156047783765799124122945875093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17055279395746291381315252506518734119438496573805303359441508705118852161134581969118157963150407240114815152341315804776613844984155814734808223873747714125962545127939722502021305224033440616982638547441196852374193660009773172903586034211570250329068918726416173220828535708388612897789613543012429238577968780172355129007377388689453264483835502906406844924741462961994620768040311573219817127546286520745533414451174873834010999003849861078867745424357520354581498075475935809016532297694554211118676696359305487090069541789669550015174829722279877538833845353820681693778354026686469757839866366552954261758971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26364760134495202447103207284211867946080455378028876600820084468061482356584067775277478593217063835178196039897641451567674024532709974078328471971731706181154442614077836140407131682756342063869385979072924291911361193286069665849182692653228166375306741450095028068608978339063120244331426692054183886076545506867487719581445622461969225669824161565083777393618272296463415652496346336327062382177714475170494247807168841691820300963546793543677387886443614988724775535812231950087409606736485473028368999047503100029200240572498020275732868951252875591973089190675605677645593236961870812106647325268484529037767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279495865119877443820764252310318757188066286683635626569417514778084697266864791750969109005127006160901378461040067919598565164207678069554005241301833198285438925351786523315484439403499466115371457497596235822471048461051920834490771773677228912106918076765487628070668415370746259436260254412146465824229247608614018246307444115264254489774906915766123173084820755769664615833429052342062490530075400617301187012550177486836520585976416017887536051903461618843159136230598096101543312847819565742940512412158564776262109904499362966448794407169005523913884292725596783245036922512479918372581587303571456379649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16228100238976436874703002260951623057209642705696442495819325004246583405314312433029976798021920322904447703133402071992755891447486243016093114083121086237458828869743323009386697019734173468325968429579111359878953834462838567169886826797910643929694329473548297219560549476865485297847580117579437761803438858625722626964869860310308804799900013949740112595613095986538578204627706063418543380112300683672550770362804807584457227272763576932180660246912550884077882750350430853643379916676920052329839298173730205251723879811405143784795519002490837406881601398645030113994218064106474439321042225883359431452811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19159634255656297192145135807445702659307606355232007842248875744386773632499026980177608846075066159682651703549044650670929651674891425660521534455922754438879766240660632443049219283492292268772879284077372599466714445327184940556077714295320825297609033576012776255302689905760166148225858750256108014755677897924429228042761845730084003176295988063588047730771230935658082734336466874913962243212410111122875676313800042570408564714100852578522453197994581068698257440751484708459277060017071415387648378828677280179067019988975212735006986273915102623104880884314170631191866326880863016931185189354925536248807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19177289327452183511530898040309376923000730339821691554975662566887237552149791836175526824360500238833444209114263349066002905598704295726697562361256891870109841122144769719766352497866412399584677991208118293893393039384617718789166230033704384240952947668607408736412040613121222245499198497968198245511772051721018065863558750514766551919615356715226596382265272177065151740687672474301475541570452519403322252750432551610665065224884096428349770242588645001022665866268259804453612610320701223473135896769581776795877059782342289478460212682124240405588497491667382194917665294449613965057942678498198210176471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20783816517616971144348057724967277075644388114515281194154573843118280849121769719905399326297080310135903830456594907360788289601017509003604866512561779402750160111272625500849017145879320689729248937080023287618286216836063943426155429721361361785357183772183181003272732686880846085100158032241398129240054196316826046787908012334343403326962588486236387792669585141184058630400195169266895884739439554383390639221032702750867722689031886332387674182566150453862371902500546862096331939847195579411395437472803927679521459643974853524054385071138646464228152725469531030598155273043942396699802533417676346598923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246218196417743108224925068304328174325309103177020560804527234855874230608628298002999299032046726049831241956364629271858673090636983967965202620775859993391612599152953423757648649554007849509473553893622643695412542023888769594002982019775575319192713191446596809723810630981439306088470554872927075561775621213782211850016265590787520175122571958610208918766510070222641547927544252129404007781245238456850078902983583821127161408095092548721840525195956368141674240843311602349619890619500010654096379205793599775741428696884147312495680987574882597232514363427001807707413931530276032395864013369755754740889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20059833310742255445240862615665744512287752101777566049187269297773063573238827477233317824448745578859949252957047248667545408212292989128735281973134213797491127451475507887555131524179504249350652516798854031485907797364215483491792220442693675198825763624186803241162468616902284637893102137173471616132723716038534797991331288051827130023379313363501367217055347741299762463948246314734553264814617971831657026503378379115095225939490559659102394676641632748050505955378320659282223409399608207942265924649782877436667646696670041998821263387828639475430783117198556751983840594289185757510446271360570306430721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16915681399483714088818986433298694247048326849904535622832174942706796202660653081256214652604734344553167396380552513409623406366911939806515435178691954597639227377270867576491438797337980636380262764047837435471447614936437301660693620155885210924933326975485540809355276443800179128591703954122930047901348828814237307364030862553372061000390441418928605302933864179860251437211951893925720094516746930575689829628124741036904543402776564411995122947659790097913130094139628926469233341533995136706558113518212874510278637221864598613913484965879596962855867133260455199076280321530118983680639203843841869686071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235694572087442390156307819730240741578451103192196043771406973569207600437864300675122687669784758176902414096760493512303735015679956792246765484824138775926673582296217505509534117871654457480187182440184925434692741726231028143194619263089694023722458155969526747225670665895405455255952576849218435280003532046633685657820365853856742226760677528317551909452313198657731832984253931843942843790666225683963472496001145215748222963599222463032171551965355910100310650234829368220710695244852536436522551807269756376242289349375552455064959913163092690806083635341330956409898169684746401189097815845696160535979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24075642484212188604308564844847483136917092861473371799647524617909213381240909716817478525943066791672408411436911663644992236353024934324177112914552959935698966815705398902242628022735499517604217691865807423158158669889357057377521000945342303746969019834309974713403914647164854141620254352271465977678422367432891366189093241388806911746925812126423393131474749902803969985941297393479609201506852963994796274790338546906973801509350630419591468091531287925650419433670865125111748502888608823781316321065475998384902895812401757402009923785253784616547237509675552543746953351793048904625285136944169675278191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18796044905691745912968868760726392396606040856522553484234640804479998975783365377505146108285754228168065483403152854918274991245756950584523210024237142538531942945029302439414822002094365130328939889537072220288112059293802908101313311655451853357831530018415803444469129303173064549413107798510783132524155702973708247669431143511972633612347962427472430463103481533139222785420546498388901987773584456358723437978523272645735333316682699272039378770938034446718867048972943937305927366223596382578534265209318954963782469223612264264717248428992769972405612033136907686282431505514826676226096444740113172368727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24668456277757388118923264356307675610671188250093262557167367090773245396092724548894960471885790419300982157938276840108424743810489305801141530215783952984725365008572988850104461853321293575040432593119218150051460234017524068315237231288282128648470887183279081907078318159175708850991781841101068427697063496399620643136793481338392249928339258817907640117691411430736426559608857821581532582568147863757472455861803600725250349634793971934697082018650996169548696723158659263580912128389326804098401180530442426829520420986520582134425109744745651895792159819685553939499767689616327741808324175047063514102713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18460088260773164411993950986750707881621391373619237354645422707561400970337146178908244922379655480147841327565597660929905652967712276135671631117305876435368144559988050030691558431140925783814359817985889808701542814494234485096223342280239970029156705028050512749003811690207414947485355345962586657879074238933611084226358273721972933760159179376588556863103610817025608496316801470125898567715042383943592923170796930446222349298411374604596995903711496984943531608238553858385635517051117350035265530885062715039838750097246658786936938226835787199962525901100551471156798782485544507558652898426711903121287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285730525628763086250977528211029851405430640550638941474647169963509515558401157890354720026118505567338248448880017344229336974330370863459771265903474422703765907515550608087202182363800523791818152530332044552504705970230446599088256745917967236789112748033402571881663741445428173519703549407232324813672209397677381085164900690849742189046967454887926340438734788820783536583402816125063940737123035406736504339267269080895449898621705627969983928549348762860060122747842789647812527824980871381951518785237930243993970587512577082110291407756164643175891143125755595067123705545752271663688118566096011367517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23322419220128961113679711998524018114087972461582900526564438889940796316658310715994058881883141203842087950673376380708229891294485609284503796616405049498217776876134084703914172921878026094852002822633548988444211659072944070503739349127360146265582571887911352761416981031994740755359556577626580918992860307190767802185441372322983628788227404990945660292284813679613573249679559192576021055224631653094955988287115316336791666245471818545497191799284366068413768385116261076513123048293190719043433848681437199001946560214514266759697659365579236200139527344825335350630601431594264614092463602790252475476637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20257745171098309256347093493020864981271394743234726260860571968870539946808559552935794567233159418300072080947217850902046495825938452045384233941645767982356250770225056997073180630166977615119620843124560770387253391832220234079554389546283438608551561539786214819003938257148687379317737453297593704110417472569084965261525387370161847376700177743705794170612446301303902489980681520470506255694867630521187824147437247641585179907629638317177902269188196469330328351670786383233288113067928704321759082951016876051966920771572479447058415432742914875739660363031940094532177203426097483759143432514610428799051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318986802603545127306006080236303617801446579476349399754926792929527039173471690448510342433851073729967441186230683661034308253932350501142222096086626924805130023278932056892148263910826802082295978746418195467099461372810120351918096035027309710352155238538347102866632526089690019276081082904246982871540375171647384986867481186648393385490257036302272034585834406931402122461499326356818125577076398688673863193008687966166650381786413942401839095417982853641231067661238249312104362772075725984255615372136525100919831650817391180368674046670784270578741373818722642696842357056541652073619567750268316408723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21019495985898294907927066763309170179420131048880770909157153147972433832026922724675371699518769978488634230424129905326287948538887805544664373063270846459239651692710085322307006902384054917034766892953300244610208883259720226233573753571096692150835816385460380257941512799062606786706883659331549016554062185921356070950060405917903621019011492110808065291107700764027876717303585182159235471609497914098622494569627854658953601383593215318366541806702029090310954868383953372995308880048226666802062332774870146852281761467345784330898957394871765177006825498963839420571984589237171668925142866840528611801209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "16362212228094172037606534817628083020445456064424959745588731505668520954804550987245698994389255673126870487281327067876643651593887943407392676324419212503965594825391780949256451548440536184792269604114799315738619258598261626269112575704155458302573506716700488763236251264742181094225161430039976138493798381760354041993190317486937029499046031854512303201323435832897383584906129799645533719675067104330339563437384031362531804605234038704587894627636073222524162487196805039037304100441700742167926396750369835663423888426658143922298375658835591450140147105846355895889510985555913117408465197874942790087153", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "30158715330480809083616754448776463210259346743764283836693945864795952971103482517233630231351398589372182718349529481497674065238738985452895047365184554304131311093640503993653881539659478775035226398855514611639354660541613392071967339559335028826842322031941171810319803939919554028215593283741072043290439812772466519948053757521734756926482907311788304922536038377319747692193512818982867390120032800267240601283250913464078536541749313599426133659594446677660003555477778485567332750085969020043224387351146977014670133735215391316331166077107120845219814147933201863894295669282590640454349811437551548637871", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21146548172335182405522017607043995103868930644754834650292705055808692952397498502212570528857058047190329917442190768959129609471821423674394373354021710598361634861261816547481002206051577739972186655771618304990780822465605172710256469639613952075028092917401775758335243632713085713635580718149937270616517698919350208006857812445321919855007090309100386666172788045307288886025292273628998016168539940422872448967666762970054513102251112698159799383825297013435629604708348823231125375787840505796464273389201404103332959747234086961516787452098185360586941784143486680148558345780422637110207777140578200184799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303013666081857085510538769502036718403870732139718438102224789093518268654184834431742864735377062796575149154561663536091681564453581161672597162555858659635120718152683058217513904851005610027083122099585825943317987986078574220361553882799792552767848921837502914330947209493388336986905345957364070925385765550293755666344319103109245528682365449024512910380577586668015778150220834689621498324538180442533133817343600429152366419895143872940241791647967610361334242208261380654365763499283487251421855750773418096302433246297167238266465965894150118228470646784006672422360266060632776670369280009100856887929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28267802110213230657899985552256239802317780441146504384612068248978248665376822367112668612885825639769097136403300958567736642750137969435354964979634634654212417694353785583301915372139943831964777288456260399446199791240605663231016022497760368019568003203458525287862680898056571429335845901685173938102142411024665719462938317926594525884353647045883984337154733550554546544941779883831273167776503033984800835404162883562635382700165487110659612887802336050381486646142669650541042064298598752541369399992874901108238405482071239357234605061938690451667103875411072182170599620095480956264035411922826369063263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346122428848059978497695102658040916213602863009522636484999625407546019249521680920756871494021919595504194500618404330620715240269554480087261672811014098651161245134242865915888965389702666828015972916932162125621070164448352657403990688426936065934374609593473114427335583029672171968729161347666184518585591297956102799318149870428290951598570304652378202883973842296409005317117957246830388564853741741302778953998031652663189471184675244674104494759077733463251902751487563346005786653014640486353770436254560658398000796872032062471906087576812513248127041314034345105052081004444343937945255784598111227401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302537832473229636914342490175411242050024528405446877115913463459184936509355988639514154352307360593276836852480736349733248888423968611517490015669552223654484563301687758053519509715891975550066918150338350800177385058572340145419890537834687862416298884741595581324120314025914484597982413776018191450629777934591499323838375499184272132672380546087725345799893656606478400782870335374606583079398455399802376203584792544309450736059952235110173402564502935648005426006939029183755767689130194657697939841981710119466619115370368428892956953888684701337429254079003071978965486287247384165080011181943290043549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267682679142910269323212392301825060661267064806828948918836431070417395389131177720835267247537435303496116569813916036696469485852538539265328437663349011834680039455847020552326042524027863350275646908226563230195209839085307734516037463876744749672299668706996583119010287281699881574087988653976301851072856519159822744885924201877636708219965312857611814232719166033994172311817735618438356111709233170423317818566070661339303371556657692496893157120598805892309563269369045144053945276693567337704609796559634123135868859220164561595478261570971199764790969216722148404691479840238758448374179760858326072907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "22572529518059288714753453624304034552092694417773763600930788335045303512522327331144419153372278597470103319055689210171929698908406326086890079991145363602849136643509143793956369761702806470105113929535764776605900170297040418224015288389704620294388767042053968211083947613334828755470878072777258655199706878663621440756102316195459469389009884951092352310762299572760001877400565204528000598051004801007980462685562758333752197922695969964630444507397837152045359024508143318854393138200327282997984241854575844097539442394575959378420844459252481992516315302855224840907449090084204016664592818090913913896793", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309330791814037397771329106432584300022801729479341103036657639979120706090432466421609167789563183523725864847819132733104436300100298109688710511477008563921814919229432712014978691782494419774721479747654811036476550723507635166469588944588668444294568702290299031884923175816411536043570281163734058221807693108932955155027608651580146077020376844752701125758781845804263919764454815799263229002007050304900249884086153686109416364616317490660364101541193843911587364077509996692033352139487617104435633292585533036015423932294564338257899634812637456429682337357223484061661478392315969677067007868586366426533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20458089023928859385881607296114087032517777693510297515018797698595244032328688223315812957990186911004256919491760782832614397627386790917354737027882355293008192665358958764658107332074947281294503185043601814244294569854110509026108403744243209501902948234451122356111812587265883326715082810589951246884371962931433158127521113169150772865451107412709858032313309958672743174618945220416977448346392926382362570818135299027252255795809626586549306521020906345225245159680066553635861073403194382447710235202738886044563224602856390183629296349123900151973414368592628288321048060461937991441820213878667956271133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275534813959620346411137911631089605501551811807703078198123686548393774790714711454882663735154937360791463776725625107526829886335914514277939492019148892493033187489774275567150123203302803028360212458286514682766390558615120362136045170940644622949850021446055068780727080621306956103044198648426665667031418224292415493659792490725063757337870773317063543950676937411771737131258364362323306420651117137016733604012562752731321959759728738031472322065540426169124133737689453040601310914468214770136541880133843079004566713410787420131467271572961084865425169459071641284027103448828315963597773159835768054599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16408874148296281510225619080608818077244808529152729663481150102202804726802762552568375944476983475661329620236227046773888229927572151671707786672449688668092084371523402939276643446709085089800873512022062334664891387477816517369648541954573641572658516675621692388161490149927464445681936752040945455916520403611112116631522478984716347087580125871665240712844296263074147431596886341976456438163065461287218646189065313844730593947217721948508223934249810061401255990097358847567382027977429540469537103293501768299721906796358377474396561771781228771287074234402396334040209158102674092071937960448321010969847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16392733844390276692983752250572206577812357409432105820794580832208387175016159035198508286651245276715980410708282477315817093335941140825285056747699431804724839240632708675649218432920913415218596182221791516926050941717655777031179196863845702614514814257641705714220248300099818658113073225401904675688078276871517917046058683691924133342334604379709070002369051566178585946140666249510767195676917072146108258573036180738046486462353384724173623930921352312131628051865547411098063444861537244130481634267867521799725184021794239367500276988226356427591507352161034371439227470680046508806320266389379959714459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20722716949803372072561604337148524279819185668355490643814350934317821327367115820569007593660023481307242806281547785339935708384505068527208426734537405551250282928158266032486845558593407982420167121812396200665521314170831042704574072853355485848953920330926593837100823846812106408431918192910617152241507255275387144200198977879304895117071337261823144165054981001920556353162649780668164296877257044354357140800536065520302599602732716790044597566972675376060043369699988592513232759906409700414083494547597872752902677626214688461944787489760460952009872962241392064242374809928050397335609977202219668368909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26195758548757603114052184532815818950796018726389250266560381768595082133461043415685352701085759248120233238942112105534896683527664251222180791932083855923106780892268903559882297162065343704754351205380368821808890285673733569518738190851372760513253112606267055407546695662642306038129648956573251103597671425430336624443185227748698159681128387759413187062257545046857527789841607726100187544439801817404767540866650478661304977421093850629774197933010126390488000755491645468074806997765411992668568907667781648977892103985477448852486661025322821081790060801610681083355007012537846009669668063091125851566469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329386470221903943060572479686632536961335399999612291130123809127332496571067884724076246296026735337725557153594460534973518486514697449139268852797865076516142736415872863556662441412055672884712582891377016884750515644482745062942683807635084086918459882403633126586395282376739741517054576618707664015507556045084980132285656706021647353634492230085771918841397690535658386487519683005926618740657971789263628591296450448833857457524291966703043365400212596085058286077823963191953799087654761662921932613290524847174692375564649062601285042737383303563322163777936136307723158987059742377464176510188645835997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16464107647596050618635338873159194512677644010134642503860702893008917017225509151627988318067111146801379017706066283793241331802176381989259582068516652924856015616263977028829648398228841390478040082037803500967945246563281977161088433270896506369494178137856325259445066902259230300290693574768009242061373044433995393635128816586200990391328274956062948708968995040105519297782113336529493769906612561428934351334859611359569238954077192145572841930756071240071263766719779103898512162610625364243015792592064814388839684581300950846539328513858930375229154643649788409089308929924605683493620359687439079558269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255326151327313481340462101284417379069475042598663846181776677327692349527743118795530227002447916157867438691154362064737228859275012689945884056191423934885219098358276414234341948707766310534476947234035072251562027198757425083468620598008809501491579631045214869700915234226082276444187182022143217407835362199997344158838569273510850808067124304776444531714272981370236020661235167589352031703397762860088330587081765274754155177327168652929365722069275503475875443031600659884900321146005697198604737889682012044374281336732058316913652339083543632634980274748756383533172431403921387158428121402308171150901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16280527842909978483355601248787972658438513453174679590744734819670534470073968060878244649965176033223028127546675146087848983526550567490336765221299857942315588416146231882571524317566696461034104642486862776184401948237187129363529778275024593044032470970894195446769627366960958204536405811380069204099326296164287955379641002661309144141561457146955461413555613749448310930592376568367087445498858319037075548213540550673131927189287579813450168448305633666328304280638145102183374505227356975709665205689825957370530569186655481315957436306048732617009424365839952694359537333284681740636359031326936319158277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17508630817412849208241591701588826069324546883135490029639715436110305778115687664874127789248530195005526262257623403860856599226542555838505749036986801083644539130175517305955468603403211854799286399703848576097556304580121343849414360034166494100081993693600211730676185096010851765015115993723160332910912087518193286532317807626586142783358827991801207843465482609138118510068933773093071991335162949637134190133787801636455074220794622345523320716439644686074863640574164790065503311230740814376085432834603922467283172690017355709026357332193424726249573688378956394063615657578103218384268657892628554870617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22786345893915564905364373876763650875164386571695110825688892426092746644355485281661700661519038306576439945594241712398547215108896964784218981682246136473773376947421505446244283913347594104673906631270217584025060224801995916512046570562741614950499798801813152703282192228285199130467628304389317729046716935425349811202963867642272198887232696541865449634998116248081733749924874781148970724681480970951624822075143026574928812175813239493289745363808417606374196651679407482167589222388350835437510990151066456289789788173836161107119837593182918723878234100741591872611943826329078406818399647951428559799153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321984184865232758034013858742996891713810124110716753060756285792098762145625647990375169621126614287619777613436138668935526374672840804347688493569227419421473559086545538198132995741581577076921985281750949510742441316970815653006897061594626911565928716534029804410518618512362814162848445531801788882534319398634747836368226854921939749030725093634776603254193646406757779896363356438189658592361724995739909540901332253412124719230135956520584434137121578156835281077884668997148127284525870406866462724807322342562484814628353941440796735144366149813093399006071421920364325629568114414422206669207492476009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271439891781865664308809207963725070949719725417608996030895549163167622069936413177026048179553737222025133517890046416732512529553817726137565368867904166809154212526075107877095083686116313967407092471707160471621724848116911258018784596666290975033856153486748404813877276004246413722977958624985437632709936907424868282940180011674349221581110517591597183260291313648531524206564053634869169568580276066237932358230124281562562745926215253820216671530945901629264383040441931918286051404029011761278666891447808941920613860937988180657636929991544046086018576519168229618344128677402802609932990239267701485313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25585864802208064733977416690985212499624627259247500617932767250648357801326512005518525582120167058776406053550954059272888968694749182941018935253457982871014592993876313792285008505242141991569214427174683284089351339734110856510191779600759752847039214880051798258060198704344844281529448291066060989651545981058315159253995360219238391455911807905413719676525174887548549386810078163333480734219512331322864349980909502946896300982651658748053963341629436804180786670661810866377677952479723986474567358541174893342605221237230650835514195558194015673891538823817013339591213230390275420220275106100652954053291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22386123188436793651146557481525165615924264067242453100337726574435269163518596065648050756252341322479401578978150185036116778214419411264528965392526836874546575402312217964322824370050476738930680453843968215016290029368888229973265326572760215898545592315674052641740538640144750468703154136190888705836739025492423750468419725206192537467500478558589842659414773114952364294026368250631221134126750205738872538142903045933415560084227859880988591720534532797846399018667840021463493991703620395305781563363577343031561273628764624102817234172972417269668572256751440230872078545837102564847307074539440333232899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "25025422690738770938098109025194581166730686394643547866641287798021885767801029192407241378071314991501583711511959639531884954199092259440479969535902682901200489840336150093285418606263697302275104102378150666285868075979494056118099002876027125080819550838606615720149208081702952598953766170433602812778665412598220515250894757062491159311500626580069616728602178820343905975694617456842539594721058568002351729367261281637775035475878702343118131997608485726811203454396154009310269643090089602274972027683096587118741787062445674695861582195985907465419880248602480826523063212260079623527954129306091398968781", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25330974796992341086714015906103268219561002563412153219506133155623705609321712680337952107580417059735098352979037793049867271886575285760347773807500222302583396672869716784775372396573923182030284908836401219978093503519803640648477496289313268215900401206262901063544421177343086432206182694790874358255072576027760420282729311657315064179798596794486841639813953635191947508547236544871934425021078363151553827854390014471205979064008557361532862180056012594033559711228310588857461552632544228539473879998456199722363302627437082056135962675083857597565356076939941412136595255910073379209792282481687375332981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293899379004862460357579414003078868882197780407438333795626683591007635511597277281342209770764692085954521324986549430145947773923322502858385859262385004829432009525754316813670330352419255379174633902496400075981593993713471081673026194736033531033600932163164154083295278440412579645895620688581649844492322806673432194498054293197403730428437152732512306872116388154850469117662487362800447434884196612413195089553687113143066408817070649732540792178621644551906985616302703345652867039395454023513057041527738690333972909383567981827972183823552374428020486026316828041111014396839370156331031730126222340479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16375095786381034679305161480305625119925737363309445748454316039972256597556625412900516042017895986336874744444920631476464797108101807605713752089009930983697198792934190148137704110829607222964348485738130584955809805372020993113385854403973531589273586324562595680933848325344720281244867513599186477499056848059166006133135711103869219243685862647532619792714392082047105870151698990266077372473201403280460557878437373386483998484050258442178160629220860638301195337686648851133636025558237182658928885457031143597896732604298087591715490084675229484716521197935400079962390766116520679126184716146169450241273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260355021879538914834362036166479445155551334148814630410782878576206142294868409978687373985548086744032832172899831627581821786432561795809788962762801228430051217459312688368052697695707952794648523128803214103688914362034064149206540357302450086066394618201095072792101291719532717651208976201933758367410927993902473036463916990016943596088896151422662258709532783847669814293241179982667423713751687846671848329335572083700409197738932408454631508502754952941767988072273395187077125920233146236246589584706802792581207366809272285298568386626514164696020519231912554148586407971916413672549627429817680646229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18756997293656843630684217251321657175943051396073110991233705714545270622252080256780935602216102729538878550547714062299062134854653213397079034567674616599288410330027646401667731717759389639553771746297336311890610648152962088878047092147945465877187860563941873535684014813335804851579111535182127991022766401526118497485236518031403787824245196799941390871975606154764313640206158770531063201643275844436486104829640954613778294883317792010551991979932619843698397446435040695606022313763872203238737087753036984932427928000712207246364745721750038582795813542927505968143461134021563013066535473290174892825253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27202448868933699551286453277336852300421883701342519440417982392999892327886648123913599281624915804020235094632755536468446138982456044914691555343471170179220243442855700810982507844157096762007102779231996272378793230967557123704270080741167952244151967534307148697970972897427120690619604714134401044544562720405891161793312631429397716059032966139830968094372588982049931185601524405796528515781922504384128036637802949874785480473994379354753357098338013148008791326751110625468222184131992914665554905031056075382086698931285817121703898474252496482552408571465733626939002208664021931538090754345193545191161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22197778963172253914123134252968847137323277963901265716259209807559325406626993717417697846464329944893783008598513711363166893305180636010700793357679030333341161417493474704467604346817943929805605467781638897602297523861526691509329227917067453743487115554342230602361607116538801878907757842751195775346592817715217807279926453522310953333415236832350957614001457406016873331346003939186692573934429771854038893289727414086717640923219558326899331553836828660538927547063021057374167057350394377614731305134565261589002913436839005352661430855484839413288856567288165989491356299334134050756507831771688444198807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265307329826207504715189020532237012596069148221901339032602646705656193974210557109599998492842363083029794448349279593262325701798448153021767472923947674022269095929779073323958026840245908192791787146622028068971972068534958267276348687204607493656438177919878951542258483857926878823059662609228388781565757489707781191597172588188678479705573409313519894224172318140298438536876875535257744109405391962956010597853237196291250163749965052376934375411617287873045990019051597433666005568648528058240788292450566101367949981961662047171354782487247201344008061725626392456181696313928333309507520846647174708773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24863114661194597722160420101687511213868419090927458282946262637624663338641039867516107832106400829401851693150805566991976416287629074758816520664311698295614354257175802687137400931120282535180730359560558965363285849869942805991629513804808605933882978546795189782624988504536843079635791971933079761558891562850907482954877578921507779529669466665926713194307531432491216580672661147404365800443494779273517165893773448095789276132304488735454687762331405826510916153487705813315009155190892958121699335625778595458211451090861656679119136748887416219165580175833540027220702764464607597641099570894270722936781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330446319406851955192049267173556987827879784839515412595916601433729827320426089541473685693611036050331886426967976061163794620644611417059515060724143374208691196604803022038915631733693509654180372973791432474613357924564322866166199515623139557144895124491137575348558851589212032370134033259337848422411535821895337915567481986591250298942832678247398804645643645885411897222527659392452591650859752054841425021147514702283631532449885871369180937055771938055836549199373979447540156080877015312654167054430088405949719876783828084392996840266691448610668211997918747802791574528077420839122522458679896994157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328065081392346590347979042274277564591997083103008601081472295664196410405622578841135337850218617187971893871868953274104817726450042011700711456479380136960557295495892424422348804543950570600896195316469923493936009229986727018485780754304237992894865785942298110062761830997532423112317037302941612893701250685687229103380973986810972053495366415562410859164289385808105492164163231603449683475814603078976580763954987807071219752888305749154757456095428193846413058824585421902823163706648821239309853615815586832654584637213202038349822569881045427427288951375640967366515274629616962853004314151901550828723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279079632898842742041027583064524775582358522525167802453867323218465466736841432729342207959205410835595087453194176906468471556167809176173152602593805530965229322939605633966755062472806242725945137185299300170092454303663597104496698245257516979040541047135225108980071838748031795971644709896930479890087340306791366034558327559595168727846451946006391278276205104216965999602289292910945877941755963458883011544406340377974114454879795280644671606921003538556103942819963674423473393607584149674076712256148135001918710643776878937556464162099189504216526152705475756977698936731557788051317772764823225669311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289748275690200378136537163256640393908406938262888575581523678466502871057508995002097632273994808678815102226867274492498713775317124187518163546986735169121347251378411872103540133172354389833578217283300964497389293101876616709496244839889841714161599491510341319825429431645105253347325810503967049849461044780930580478689743896533473645459306936510472652040122784840848139922162233218404279665025100380866151020187199945150464046089129911211337222067245953822566849741569790580718610946469094013404499608339095202297872793299739824877688471290471445039658334472478233041105767850815313240929431683446337641063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21636501817256889269804087453839936234179726178725097457046453705232294957710516751526170829176575931863568061503799549418051102889233751967538560147773144990175965338756546069939243804419568093265959742640803441781603684487734002311405337293534255467122339632205159563355918258759039784186270969531026530205217618296469793291793606089488693817551752000186549775325767435661496718061665146287992243209265347727086234085769567059104708088685769587448491688488979407224298942756821679640383716475657404653672624716091886628284588713993698914690211095606156261725157230435083364206515490163028770791927344768382617173841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285881756145673025467042429818019732689676204128189798407961522921342759366647377832056314927776776544066053923576805236764796976648002343891712010714862325208276848492175146907414324884316853583278029107055241781188086435231327880984341841843357261758805204084851560011141062945136371999756163876279976704006705175849925351772242530327238619134059136667787435221357077210501597149275206976339055087187492620004973065800636978800930553919420284548713809703714718419248553567424347259246179010631364602640059443763246689294851300706635399187933198195515510853177962335439019832137502607361346755603748819994177307591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318152338873362659575755738608380677148302234837850187286375253235639646730311516501118747411781802170242925771065473025631958460264547388381939080849253952102701415401822856863063586139996071404110217476356730600990915204580086551787759425224770743387558163423089183650979229535597320446195327424696947667358761962283206656637520318368537030104179754458262790570252692506150430678396823887389558546504459286431153548928090169403910808239733517961350943535140190897571568876278089591982074954261556098201801738937110718505150872314484992398704584836712184815009348008580111970039218742761555704663216538113770542883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286565544103900182444319160679023105509458574903648872752317281477583363600473163429364304647720447979063166898144004178350770130166028842814214354499078118496943382885186903304318861128094689551500880937317476926777942635410369619581034080163084849114498344653203877188178763634843437460032470067503924644080907637583231410715252030667800515528279104042273571093479072335636083758796547727497765052340148049632290343223262376592360264798879733199868088592849517161398737982850023161959100275461320114742560888122283080545259910969348764768433518425193007792117352216951958920959622244461513627640487460100352902421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294089618399915791878533665284382881424791337784127989131167525323281589536479951149810904018917312106068967220159634009558423007147609766406525936951068100513890697277173111204062843324620049904499492327491555057790730109143074570403988373260907043957472246333904997401769274184315937526969476299421925209688786117136946026677786961646886076381469780095655651350055536792589860214001656406973573704229204626940198291507960466448723234703332069755305362071903173281769199416969618628312025958151377420104614530076546074525422704497795048975143927367632171039029942219565884280675285233653344227303190062068912474463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341060265965455506693304398612954618327715904290745987344978695061849163365836964269893985347020249717500890395760489663404024105512914081720737200299240458651190429863528507728668403228183119743307385702782492271638083447238543893961719788505322783276904230810702777426107097360251083689864775292848680071588667589760726071611753553832894299662066083832228246018950117157865385883381243387679532372974038414543920108286942210536868859923037547449849169931032711441828139087191529848555009256469634255569431626774400824892315511360358120240321644426438190329344586522976804538220613558334729810725346715692964475473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27002245761755702538173448284077571604508411483296504852167680253460771726096556424941062667655885064915550338497829623137445898416534702328350634702124062606149106066038569638849110316270862957107580185417509428236237815595356024419605920840595010969564548203453903787849247114752542836912821652098781105411677384620221175230605142584661294787187180812910949926865819829359517128207854834339127292388531787268920695209213442296349376485231073902007865883904144462770122189239968230514761713752454967228490523411245507049185137826331281093955170069866877916438885019464843359370141132997222674257137554693615433794087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24048895538074458195596387256662735173040600999844379180890750789615420522707941226343422168084216536776000506278168124533584998174584072795175126787831602732625182311324682664066577625854178135427168161153886840531843334261400913756173476475620755475982598403787520832108574091027356092838963091847273509652200260609646672364966544312736069154920837534310632326331057885028084100491526662969666715783955487233443569455826433834982921161914939305029203509451314401344858834585772560305940316457843526966129211812521539368083132436968281843603535119139178708874580608645347534141417443806594245804009638033264402080407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17402992850627465647242381252544796020770989092536516132363854532195995042524361640718530897743543944152272596157043276248786102592116451066325915730775796631170253075103670114532543455000014733457373097083395637806879910175437128698270008279642126616450465283979451408126697345618990175049222162688819288456791003191076283055727760568141371805780594884133168537198876752300818588940335034553911472660944344140957207247047679724577354953459308814226733565186709602045330442033055687653163142203476124643242369394395270398970263070620310457684135780915531817621475539918596843286458911308194731232301496692905310053053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "27248360680368848907085837845241734472507232122182365762490227527884530423455600028348806847816266110719539190059273853389247928440468582239611612501630528814898861483953430761042860868933447829755745143672096071549148261036779940168566565750199171129091645951032923262002719176649242682246369666781891543526215739118591008715390701208820447758084371662090317470140412442291207540834151122851663266247988145246295699995767952523520326045492150365868368954166023945558014215802258342301902304347209790964206063622593920503444373735640590260053494754595265131416578102049223504856564222926770676487267812239664946840263", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23846479689347322959664116785842619808267703431463673955072975412842533368309204578813408628795783032324764452609888810829533630104213749735242770805685724621699778755522946494710363653793465802613634125674027211167186732940246078710388289069505670633147418721427041424117797248263430581215615773208405738799551424423326657761521424151473018660576799199685866553602817155810688114710815446603204126741622647507501386724375863467195968183997004029460601015747820599886115022735546431086462071478513594727221367102227294824961974893778846716348863709861172717959387006096963030129854102897280985235733573241996904894071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "18094527922297755448239694776199628060536796240807875255281268266635157769274753857177490207066714889062143909516595934253480713025854768501920777208913976046273963850195011059379940540084983403111002865858409277954196912042023575026102505438341962619051465356925694498299305289284790543419001663154607721504154756818994925211358607963196561471437484357278260207222550652372961952748576987138440558117900680562247271021388854692868206342942695320949682776766797058096987348071189411869972895388253015771449025755359883432282820549374409911825331564253892158554438644301404373438148285397176953131619481291766961577781", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16344782153453536302384398209637830045025060907950455963879266790434776905862030684491463202550517346337268304977827846594250943711810091980212757165556046304034402471156293338441694095419497431814543508780946424314266458610052708313773754504323473300831641984079313410290927753547939405607766372640322239551411486235769657673141965149719549005913007605934140065736593179728762283808325168898776081950295091860381576801111000021923381329239534791790864523307047112854071180994628596618965707531323847555185016464664039829260719799838398704935534235085305462004952843110965303639674064114028904698178067472968439798381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24021515343716904090297380804108149805175170255698365852858130106677512784305161000757419487185672577522194904659458635068236982173176522422409180192689494982215069485503252376923994017879347917869143186085458898517203633742844697151957946818356221671096792432132452002128826747897247162237818049851755144602731536489425531083357825155292231242252851145350615490249279758048050241536896651511939840105619426351221848367268135168449701839726790332639735366174297037642819728098425312492646758512632665367976738775005574878795268841092050398480741407111953937708254183728931436115338689576039988781788527388350665147919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17413928041777670428273828411755100786917924523529516609944686612515757246237512370050255414626333731634838271224051330976908886733133620234265928414286014244472283392601726800540295480000795349084406794205015939982586066539799119878141491616711994648406767731738759894690818358038258141742319535200284669281692539505681024135390768811409444091853237387092906876407521885777466378238323793962760652053554329632413461599553901214218709284201588307913657544727941066022051888872034017256202933583852112112249876028713599362918738522285688479230831265251191851640404872680374392170470695176091440911349937695584265122539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16242285737839045238249100198725422574778159107524153493524053936055608044898281801534001530332379766125886308703920918738956713150968342469494542191452526628209854867806658551597413342833730010303089580920988790237748367776336443876976239700639298674343904391197514621435907075522363679780900139846062728618028155484248006607084644512747114874462846178341729287057225599592896848470919372727884529301595723317069145988353900518125553653974354786522867943223599780864476381835975072134007292279237159921328324141113495946842889169462451003416998698407442109334113922969070163092982778840047254352267464432286713517339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29446104050400248812874244266324600438089207926928448238643465645103294882023361642198370947923903618929987779564238738086567303559995407885925857664901322867972315063261869943398326764137598988111536309960407672539551471895352300304337179624514561594402122633904093506570152657824044888530711701406976525356665987242570925343364254189882166561475029642219198056998572486325127467067361895691311423463421906011490253050010560597245643526523076806259074165491268359117251864295181856557640455663307611410772464810730005676403390427001311506334423380478244222957964678562071839994775477352640637693401722531789869426197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16884753658493936529307374025737893175913245235412055417901957276573612458824578173878771579031176727122429064794783286698875727929191907553516552280212613115477516682812357755783738325684364050194676823404247739252326679266293040690477737034732058778495203798575225045559391436180956805500573573684389867388803061822827961555034867261272726424170442886592292381396610309771196235998152154896007291222442448733169065597831035019248794087911587357895181160132718869572563556148730960945485536372595433872495969925158055812802112194898524294636781344450072586460992231058953882656949986416638173035320048170802839234333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320494315513560440591160635915901487085106772125795564936247295254662097782531598975562749190320835598336981746879000722399211123552092089400899981352255806655879340007882836513241440675470018629349879811117775208879110759068160101534776599898102478592141715622370104158420596549719977039421611683792739214227916207232375737493101957415939114547733242435563409736315003351530390088775617336811965920973688494524462286043596783253993014973327923323701387525563970049083818656573756224539334745954234533304584044873975020395467315046979367548829651576278052663275954266854400004775175502218075728646021295309689171787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347693442395619176965338811536395920998581063032841181373781226617360032700692364366082770051402548247356161855701765015069236476905564125106806829971112625008309676284193045742777355466388794160311616804697970257412141174467612062056420439161341876715878192233229964004107032104421983163985354577869876039560917435158912689047110136851727061335258388166965476116219500552355238833426033024628748197814719221302838009303146494182353899303767913657768728110422287540125530380444017848440392548024435040829099463895442378144086212836431945050774412869758712476674410766243127831295250095652178266465608694282694394153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17952777460591571255126022384408313794600626173369512356055035258764281857598036462431558092430656152227527429046983113202019994349944408047995426844612521205672022344145081021835955647313396512352081380738909152123629273303781943549493595937381443541563535710439686712847775822844089264150939196199059851729487086401302729420616065758909270065460072996282383817729228391688601004931836794620339444890284488549764246154768397894884108351698767590587782248230359606532606410433870111411190348677140882831120393086128607288314945685121402086259023583442223632269789922014620058491409835511572839232224527980592473547393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357285753649023578280354883869625561753231451323884559049052714591565860284188073843490737130614843626239029952967339668115583309242886650355267214651265492324143976609826564946655673736755028217875305234244599571706657440610858378870175150264268596316175668599551589368980001353458967546521901949283987087195336626625011249104972125444013322955408955590299915678906679820755029416493026946219524112351230901511677408242700972998231828509424982364967454982909861477429046715600926029904447562129249495341786172414108183454845438666359232014744752775597168469855532614414992400120499731276009634899179906346985773957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303815830591090920628945186750844429279157872312249460645055306519704997771268769533167205162133201969495021836482620407739065002988802242256975610178346671338569075084583642845099177889240202316037349015212151867023246430387196875999979292623076469375249327951717970895445223005154180107720287801473610083190111721716427671316146931903822259065556838627058853066957920894201550598465676256043907073438182822215168602086728823543266851037338150911153757278545633509857782790233761694172974491689366440912236017370674097831326726656307488933509919861860355590554252254730177545815853338347708627329724682507282373023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21224881040405315303309148920238587019667618597948069061590407859030297238015726330924351560901828165001406543405979812348174873486429873850799025047080042068794321678930248713748289629735336947183743597723175245999089418684584440799883521381285508463455797683635500276171865591054947248129131620504144795996596654783913420551324010665274447985624819362753548324759981729125026457764858968318889899817791375014009972226430024197030063133739615566440610095200769790443824096762792256047473820511944608117743993090550731251475644482168093152660331730293284972750845124011729591955978959989423472438697941889875682568233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23596916432739358503091085951100933437155058356818759268144546641320784064671356576385822537657403752716667422164440213846868274625217403898640388231134208248345216945643461162372415204562679198579785052894329143323779600131411532657713521967554887382464652272002964460575973388835451470968359609596859602215760900298756910241881415509922291478755829440851437358209662111530053914601032759987341052031755692251916538320037292370124828093746902654301430435651517578058826637416852867891839106739294667431928127207780545821720878308580371649662796630786934683418014309282995123132383082877284979280097981013133873377911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21281133524737003279171166408840874771034207947952497301270843459968880936483008783333252665958202348277521900106174915365109642865959525521886300921350008627796070362051794754457568505225169812670240422499359717912178485877735938162733742654346432448154286709691340210876907857138102007835377334107437977041583976823601261631769792889914401256991242231759455539892384030791188278176371725137605312360628583404342213198131140839469019088721073605651417890306738293888988728371838223835728747577349071096384291534222667269643947510884522006906560735906812321995768269885256858728700319506307763176450351222573714642579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16757367114863330861183523873694786320229111483809435530543033544442018381254076363959799365025311516345591254255468064605348581953064610056392399106503989446967071477701480258759850381983285013318690300967730695496941416206838205102351023898372310533444007972399855415931562717524611663630453307297683730477072700827752143900451038044349289377257233799706249567356784039520868439402522974658557895092886088272613812281940601310052779576789925822690640382365469508538693874566066484048951964526423729877608326918905850690470083019581643667734978261057800089688480256486413387740909512516354095781591686672473111246839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31308705525830496283557283767393135843558923936530870921565603733317951747302923259639677473573648783968950293516679172630136699729348842561909518100214891491231004770797172067248047130241658385781527243908715797453087607331559999645089189122012501034873967343592594756723317334988363491483715797543373176606352201722440280630611473954177269436783296365153752149388566841351061069122632120718578941303067159101402269663576449546324193768856231641990263349088098476719417885130560230282405028843657467848487314006013769325575088344464516348636823825196269855051517064198119643026795366020253197562117347519413872494549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316555268911745387000335363866636874573635128948104311673995544911384524600675953352523768268475676019343038738317598953306739261968691644075600558432684627750322495787455953707901547368041815946168540278027506207286497787486224716269522151177241299030544764346714923628104624710808121475230385440416189890864561573365971909528110372601921293606528005685388923540242149321604087841499757354506867590323684283346585658651062075375359188829543431215811091683169511942923607883298727835903949620842389542212080178906651855287968172063253503081267554982004632486835080310882625824403446002622497158236960652658085523459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16592231522095327446707495513968562653339428205543380287530295601981295917189025895557331831516865624642405868761645974387764336445420258915893454404090895548177166662367943104000810712448606054132332620894161469463117199155499287607822793867130376591384836738661479129544548370749980368105470901617454992485952955557878327440168974134900277436203554866119970038218041945833677578598597267330602721314654257758917440708624513410194129908308089806284785445116385864743256446081274560642441203329173555690657768342906527244468154774620279230744296963792084807392186579843672408054980441699106156282349944660328178282229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24387242513046765293494155998683850955308008466468003339039143474158669794480306274306916192507083572145653366826189895634021534098849315982728846813515581604859405722763686070001232314654463467664829507053657232740216649083628704478369463248555664091133912030433009497217205271073435864098997217188366374308188049032961170678136476621657961750148459906096040915835835288052899343380374229379072098223282587175693708412881729397682041375657421118005848483344231946869300705485303044783822946474921289318015745201766753386238490811916156926020112148928363247616968289690931205513700512825633344700747934134515051403433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28239298928579916364627875588241856008468450111618070853168925091559689038542005754991639099663268693821769182148673521916616313150398007343742922546286692159665775544119791157071071989228618935421663766471378138361370082790502443594640062603927460019543757749131830406325899341774565758863033155185021203127930061858197206438227505474863601616553006142508039506680956502917610640974365559762311192221129827921301514510538641988856153162636365826456118676771508058811947096971508809689892360182868606126144617891178985862689634176826800146344942844919341564326438592185590753584965564943640298865004761055640516681479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18842486431411441988005738520624945878629197524178691173657625440985371159054479075131776797758217380956794595637356708613535580000287797431124071053752207218925049091619105155983304486234786028160307075506456678249951470186368483496509075773608837945417353044960140181453442359677054740088412892322936042805729350306933125580743192600065200477555609823801394068035555521170436570220018371736593170699140498702589851616847617201652944950963750343646981210783882776897092841278794248152559935983651093044548926203743744114338185837142895992650792363937498387250226403076281525618237691885820184403994233555010550080013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29549495830238044650035357292352191170374445338816103573317605356229742317650562696406421210205305259601914012904863895333081459634448195064338795318694258202753948994561028220662701911957349457778169921264074088034957210308661063064592623770091825635394019778549105989243092634603169342897042601361894883953230659474631756064153690393872166129218883859224463177442014451566257207903936791812987384940529052855043443344236725527414883461612861145572201907296898932119336103688920982451230720190649962405115606124296281181756215594028719889008795946732851009643495046496645748822104110866792965669125145959800746787877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347809059062942446784887211189189893958071022318391709137466984192494899972567444949427688306347550411773302725314823393676972505995952526084990902637714276196737676926654957770741711474444074802178645869444315516512490513630351509480490550680640662749180156678919561230599203898587720878147367134034949664413349977885270278679769182184953000901701901892517672535217893968946814685252675020919499296712546124608828131934665552719534551290673203493646776439950699514117248877459413791572299179385828243981013552938078249321915573691950999086867637685722352857480705891663595194245349805203784517644837821896278895731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277193850790663891622154999651562886536169721337069695702293165142249022707063556875424380782546761964952970050551502756711654668110415761812627215391934936383162298133263502982846517308466482483801185674408563526265113531693822296277223629571112739891944606429536152299098491058367356521682246083407973952078146765375750908959315680363821758012759397721897659388791399670006905845241834867722968959534291721319797038121814167217910250972712828835045231757130741454839212022747024471697305027697964202487164865982607249634944275294095980213874682802112136375711200825092016830803368018924784843637225183289640558587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17333410339208674736190719302923372710951414539087459184947089462117863219510734829685079715102066596799164973414516701369286246797411434317853882125058659639126766926149123171841825222790950897683177478648523967478191034677687843938916258628559259341332575603417312481182082418609655078590039140385455471396583459928974512591980279477249972476555602705061336122011403489886396638688209123682752445773458258505207250998939506395621113818623874065301438577303191766491211036472062460220451886099864296080035758522605382300038224516110523327753811696019357034706080976173406203158179643102996639024155111089092256462713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28155751916005286232866751047337344568272762226781930605797372606390419156361191443699689619106709923221232255354096828129435629430281994398635070654562561504251792142613967288432555146314333048746756847015582172797544280373750375775761746340736196911487804662079098999989500632320590526385509117044235394234376231102003136643397716143457615092174678369129966245446872709119813629157147385709149659673051426052885553475052468180903263158570385310802078723041471294756930070931982798425422612665937179426599904986134753049886084483433356044374224310776165333487524274803415985072577481744026566839253978315401966335787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22816277188473075884778737999635705347431494091383940330602280375974732867488179442571926388711653043188666089370145713874882647356682631096766656829403565594390455257575674745727245161232238504632463765607564606012515735884080869751720322294926243530682015900821570044359019921025180009057009252413460917616634535977073963352306211343159654064393986547191448213064589215154450305643532551696603093550647434403592678181045245569275252351031293243692996206509136129238818363764599841620830383619075085253165535105301590716038534020667278523273974957242921191318118348017136345184754105673584646050285406573191057458019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23565687065738206150637891898480091503419504462091048780852598458478597127972986678228640968971830570592187045970154252170258324054587508260108859350262264694853331260749605380810943289313532379078373967807422079550853924909689058063138685324229284914464602086155464341565922188468139132802024352530180044211646498205913229855875783864338700865070341464832035078935867704273357456915884142831289697746878362767913737152014853631506691898134238008523988216722444588411158051009049737380452956342962115572269851224039543929833582461709693739632587663134326212943951182393987267558067778419851317841719558876238675818643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309798673378241866646023696279223718523386858471918822575067223994043767150668908292414291687646873522651831801198160724591428350697151691211105870889634933331153611822258914764987046710788658281735259992415534613957078323800680623875621923805973813829168046858356640026660010315118331089318331081453560319546674351226272695556986862794827778082270116503291627044601985303496736400623541837004511614297946850704061790106269814390291370106904780208314259416759520481710532277376397860898812871930210858395280847204370470364471529039698099072277305856723581828908310983875342510659487198031795926017528502614320739499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16624189900908839597684117384000452207980671512282299109322805294352393990149433421106481094237338341978486972463016969377244171472601485059984283621775473801338626758001074020928393982941487839620501042510459868038056874501840670768683755621143011855218236281219577745086966869865932522959639293684127664145078358758830012660154262992677031156300101519330478900949603540272801447735018810546703531967311247125000493286361850690633369940752326941697599315432421669603590690996892682627185995993028907639674911433958225112752496578557914198646921208647245257147879073847522897406003469795637693420147209499203295971001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20089068683466428854686719908932686035168147474296099820358298690480961546072301828173868067267791781966611843157385433423544736252758197940092358178802151648199465242743569291795248518587306650006817489494612672085903498677605927786660679428378164394479180717932653550494309593237460581311011011571401310833847570368497992541847030848102480628828869797962999848665507623025702408261951379518408367646697901486992132196966113051130594785983241683092138437880302821525538323316126601661341872355017782954304760462940214163563791308990868911848450339006864697906719490908893882188585815086583150207928524391816909553121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16418445443305162110446305559962300617792127526094186077482335143426214768608943091096602105796751728047187996020223937146556595971587322562181881541679208927725898666302987151236960775040530800880557064063352217182574019894783547880540710032564282707807286128285683869620855153254830608974901779791125739335392396623366172637660456373225708387447717575008711344370452368772066221922769920053579564495153029651787591563720680781538530644356815587321633351813545324327572292983876222752427712354582999330449958052426191038724134964956801429894586600969518373416402220687611146454281232287041198802003912844928183056241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23641491516849694395194060983599415809359781687128310780902379626213188761099553004322924142139663293288359452443373381590877025044123951136413129439718726608026669284124726331741887416484872443501964691420731795716477506223894339095636069918145498091281728473578233305111559315968329428677877751407665196183232827001571505857543801880885130700595512595394318980349386708921899386554207848993006173808524918478356685500918364357257819986384169506520422345468833367969034946114575604622959958456736324125145904434842137719956528242359505963835320765261813460756049006939578793844259054000160676555495152056632622740489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299842238981563018368660724401585074959229693106724164129488274120901588081827814067120307125696581333808248281467873275555230522833077964833991730578322635745056127433893373099380424058446780875172100183601686528332593875237695156744687030832254447541510215279641407599801123017936016737734598425053675455946430501295902601295186608981195932967673859846257534601805774769016640782725676359774992402782143481535095676363162571772198416876475328805032774688189045940458696242511841252056781316778639229414044257951277599800264822593684015824824080523454449005728566424411969651951523796982467173059143375688397462023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16583626238878942729769638016737874917672446215830873095783198107472146285216198984976257687586629359192306785482162739750600507468843030120102593973986978201416583895420865277093065818707054282385113579552198749998219668010617022555406111742346853181402230168721036200361677316887573986670722198419851084029166432364502782372805650432578804614190102746057644222563058025790665271195843516306226771207828616760867743620395148388920220827349892404121159797706129724153911056662954250782352960886707790142417474495323652400598363108615740071889136699893428280398524168810044828295551580581145421091462482987997906344851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329455650422446676609662600254267715346433291476020360199544801299339594878305582749362464753392901541917258854290952284883509017852677107881787333695172942884679977046487860584357307170204434634613021721663974371304287665095013714339502345268201860593464962204132501465086595294545262395667957120885893148754467417337419263566405539361786915338619207463096141057923714020275631534048222554242000209854282849729467746578726708636637526614543046959995219650241768568185935826658476489421173086826053702273446115159006244976171209944750268481798079972580372036220649172988159793072117940315389462970339981764985297931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20721346960835461950489398520524720808839185701882491863541541255763061766559880107182315472621698616621496178968544959908002476678289484387569562267583017313441907408405825474935243857024012870247501576755755852544233481275942033776783589016318316747592907419251119858383361005053380603567438990665952391643154567857116092293756271255712920566090856379330775788504550427920276384309752820935643072161153425920562942580512143855442941695690438870091784456558449420455279376294449422637306252215355651601721957951136430418324831805113504671429259183583118735394326307081718829981497130912079831291215531910089876974411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19820049209654141746319903525060948544687470160027204143302931792477212096697728742373975626951482395735396338302406486096373529364852379916788312172582625522306465979874433312003383083700238065980903427037447632547131124273885006132715935733208880931903970881859061273354833739372892654088078656428815448607622181068774567141990867331383551403334465524666017448005075522224551003800225075428777408072564986378073830138748044503736851123597156112184984771974921885067723893582633374011431446098848356657270273119281537810478949742482112429756020174393774551923536015507879366104317942386779953320462167171760487060621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22927084872067467216715812276439968036924564018214183484650592635621376820324137357804146234855055608478769860949207165110492948112758577887100812950305978590110140688149466902760360130914232214468890267494735468178121231755969576923190611130125484921624032184494009159720646486275280482610409118177737278321066142511468092222807911122340309996548216821660967555069099128510666242338498467969155633537912516610888258470773275177158422468641352908322384037917216283063097945424269579671921806020163424837965041461780162232662426221736648797386115850505094368416055553360050888583003467121111533994441154165358703487393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320171816135114112818734408070983149552646143969329261869207510455144853911083792235074894907448487378870921709011172319132782970970506329523712835656258431643225298747159942257424236498880412934181392779507035885187335291125329736021590361736314320742696531911510203661519725573339549627744643095380939270540433823836155654643490202768047864325681473844232515424847221110038227501199443835688990370130422377661496129194473343360282949527322649564854635650069472249896433178136890872404852769963849644558646683378196330709968577788845018222165451991352910588705867345982095487353118942671721371166983378223156389271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16715949264106699928419535109785075843126347500719169404173251298852683391735417303411874439304492069752677375187271819032519181121281222334464101296481247452099736003148469972648310012775162453485900074315645220871657684651185932250907619364390667781969806727067828896048656641372578832594081580423431885635965561915099315727110393124649378755429507303998166112399091243509177777349609581117250026712603162989782337028834520638866914619343971293126647479440218393208659483544770452044341619389526841179588434720877174267148959709549612712720104371279450554294773925725359353513308775778241251908470192673586775333753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "18140653675425226077280322252815991789854791794206111069684043520641132766204030725748842728659103979750636608563050952389666444883964438492729378957397961007550196892655325305483261090842335049896614786561437477230038441328665076312444972386111118943979438250636913563480351810199262690943543540914925045943427533905095738223671837299557619144245444322018313581014776603171136987631262137577154078815203562277763312762857179355358838863507786160483110904082674293869905375744082191210679678413091314656195507709020449037235023881693457012291756490507598536997258454921347984515171498891703432188588832063140781033097", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28311317910564328666480754161017117427215316239967153193302485570603217441100350394161511548196715739259032180754342465467987334728020260722925680188962914180015823577035226493634760020535016406655703688120625920291440348485076153906759095265909467880022937367835005168381702005067613729650239562023121235289810244235935750885984126093727346790825401422387812569894643809114266794641752465771946684308963175621951035132701356756868743382737376852207644590684781033673027566586150619501584915270679504624286396744717109481016424926493061399564775160477169658387192331120927337100057574817081915848657979046596487174649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322659407379878431678632344822983391845333326285396925989849797968412422098225181115533835441771886649421632013483267925822651042147076071329322173623623274876258218825726014212824683518057589479101366436949356774855265876864940673576489230157230790238071889994168461780624885285363949905653198446310953682195145448809479485580515889938269294970401732580886511076111418918381796651788448234577086764469000366331584658353235245705701464201949324272699196054976059292604949061857465354818989965443011019409423216933858005585569286469938788789237571540735874370469103305696054554562493362808715165446543941890267974989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24699724511742566660277985828041398885471747786361675601109480254195238729630346102278369489206328811774390874852367116497539719998578915456324441114042557512629729571792910530691554421227554425829341862772200908464222083548649262590149395911826871325021702872656257051615008947994246934534438319519532165982576652927173474652683314670525337191360990877892518253860241828618308805432112502737019559306861167998302849152261232145019987685533628185710974390428869998640824314333187595587757563151223886125712087830677223537965284171025647061857739119226153085195675688524959260814879815400886361430205282099664606797103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16407323719048209066191359192846247302052133251554395677962136118130896537586958046988624275692517228148706824775440448143759458783689197174766039693271124409341702102521854629574416014802218919639413890291887744059169020230756937855410480492165148857768267593917490637919727525598406625322956466228363615353643461328428143972194129732707468015635941014100353462136299056554315109005046178845444377435182473080382818682414123498068870000801959379760205941969576030842162065231537420021277404664271029711878799592510326043368655901801246832332083994683324136826414107258760031403178653229086549105188005243634487801889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18309547651561002607899094833923988130463169576396464455413188991652520983693433375915713608866156213454078203278228008593607058869252800005228987717703510166804696333037574198160719742387725976705570887411606219537013828585923747536973854798887084916383067355920659004057875375004518440249209856649861147299536038693584350180058528624144830902751521412004125578621951206870397269661989998182811781125530028397874716223023796748778307865466489015787041115900319359993073297433318448652364723690517581078734670914372362475345648202737598072305739913287473106205586724713188879730068582470087497680621342317388463076647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305094678626408152873916277208698697039385009784183431979320561458676090104877938235070583181617336708720215589203383730377751307163716485040017901970914880000496884157595860409418350373107412332488799726992684571605052801048698563571215352756848359778413812877900966737030007841688503128568085789953660162500527825482530300308334151064314007620134921719317510245325705926557723818769912980233446538938112006537965617966058656578160713540373323533476199046179677510113201007081548394390246609439603213594167075022499965925982307252076556123918309292318227991243816015697583816103490255189766104374850001336928542923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357493154357072618436832716658417867754818984231691214520851007316315262908379534121850623247246342145937437429667171825116542129261921366040361313906774993347064278921675791270305087792925347200646714840053812456151286964230168291975402253844505938457574078551296399552842055948815935255425052442830301821944751939558706734688560020440068759525233378290806940852320049070095973057228290727155828247797527105066621487474832817446964476233015704877318511911562310597855196387074506581714864574568006915561333043584667143635320346958482787643345047440905457963024460871888834289522001033820199964298027904826028800047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18111740945320881445127159572749788099122636894880346456894508619653000272062432857363600683936549085676576864563803872102987936857532556493711912689105515744589412410014325857926560995958513105915667207073155375933032469326719509121660474889752431842553704844086799317808550793939933877054029494803988984660514469492051296121767093196159417097842331316407221458176682064603284208283910068519298138384734779795456145135346622924440423570546900916109653060269623907422868789558778124624820517154329362411543691071090732340654379163157110220288850250129960662093584149095821694315024294841766456288688602621774361005883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21213823750524435676123356521577105719975761741084625682587103358712433515674157784538548872211908681242328267300810139530887521993704288054836911535623712219239975896422638131169600835309301993531033372359855443274351213681486408307442689187316563037610858478625582967184522384440250792190697326042410481708822914273564394800882991661843305259161941025169913855066388056049569892263554884347275340173873903026215598325889246008139138333589599210266627569283547579282085950118003710620568754322011461007316893546739841915005472952035968434513104432065372754387820123806477547767854886496475628857477292001482805710613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26804156570196140591273740616821278408815904125138218114750604639233875725145257202943735440431086836483801069911731166830352553818942236510623196077729158439384043406757235283411414036478169477356893819855095850547615653519289248613036385645094289653867881053765074893835781908052671409936419514995412902781605305393489741317329193142275041402660731365721720841383052126143621438970082864193608095737648480886117031302725895156268345766354552095412068357666087546804021574529293963369379173211877011447193241269238955554509316690218998654473362100475345482624479874448811904902682887317965239284754734319163055973653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22726211309328699437849423615855798647886447394520202680912943662594617672852224101565591523924660034972369280674277178178480807269575352173154386006624463628969776319300569349334924804396962619078150986605264580139873132754857991259814226985510782511309780400146942565511225114583209002351874480234059029935865775164413644962812188657415729987026078687998187793973213740948155861757572396578736646475407503908210856344668171128086956645695359981092716318695753850013461090210415535760193679154207504289388184771132079293208845811109063278990608672654341772765885317532733321636602893881027680026098020766481871861089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16764333738355511019387662320804023427122704931541511696806277250547952278451473527769487835014697735798576118722592345513162510477928923941906680147678361518879070694410904919015947971208509696139868143788786560330976951600295331043979551980529599793381732382217983499861272690705464400806999602944691392931899710989697683841617201207450445563346152729726847421040898838464602990411184650584368339977717886987263469014901054564419910266438675002116712778483634395321749922396046316810112717797943679655092050253734814931556856210400856125227968278568334191471569365211143879443921553594155413726185539391635351422433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16207820209579556538261275586532489967563694184963495134933864327442924104832172913479278804592088910401593176660350231982536523328645938934139629803190876130321299119590073197498993964112858656455418745092813584717397743228380211812214802622432089535695537576525290334147622381212953469096056454221393717384679529087801895086183871441777989542508665879118102635179637725491014974414912329698357611964914358715035277626338583288766484160063641656625855570736932045293730167879584708979101218984707625075199085815699699815245140398172476532507090407763900714878393023160954555541726329300542027319369398329621760220389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304776171732086823887634883498861707615593461484363682791738989638721133906233493306221772699962791806195549223149810478588381698054771069859738855265460951929589405463157497673099383229029851040731451796020680739454429180419326087195063456044752913090820003673408811899015698802662843833413182297014418756790866415263912690585428537083553053870356675914486511964340534683723306093886160627759412472494350337337505455100511297434002696768473460640060669908022247678848512233692778768034829261849390613208778231307077360108189904135666028926958665615204833894163923988464564568216914050499570322937138584098910555223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284268220701452471948709784898496831158074332557538492754389098296018695203413607087725384273499698713875338124756315341827452777244354411776197592737714615123870002509643097704225414084775446966790420507873290214382492680891493191159342898378624359725186853560367565861923338147861527752579070501997525678617292989130238580369466019313195197439377094686591268670539917096199352073552490407841860145613107822255665143988386748619367259920918640786250152780387121245391535431424793460537451636113735557225769670869456293112821633180819537191208987038918904217049529669409575080987647040432905435925700071407475274827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341930529434791391460061391623662289753151137144207494105090732675229288974580378718384643783399794939537802599466398726372837794359040014997862367990325618106963706545513525955291687922368607857016669276518085926599432480206573368566898363440592118719497021232532476370458136696071175578250595201240141479218957976985476004772920404700379606049672928663620515198656353621186049555720447476026676491432142271966419588328881880271478921469616201460157169499066482000919721650356941248469853534722976659639384851909211386809186531785451203048736865462629370219467613795805775869581291504452816097031612016628315776093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26071805598585824616416726838257660089014248019711465499533804433950246605113652432357535738009997856090623704289543115589396294013941514541356973808782835382976769736773339192338859602166659134533378322729125853443195668931638550905825028827957614837204081576914113973416576067272125348157293198628241209161905921655688468965916489336894546103296978078958636109973489996794375384779629564363311913979174126134388597314194716981594903456121658300600608435433038972113168780326195362103312175710064123879349065132890746814054126819477702289381204164954197231694580546025310318576607604369302671490481640230986120239503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16381455441119088934587248063800674802675431802314833074779873211707046668435460072185857188832843814247925473392898021079512866331039386477996455951164554462677887307046902341499639447092375030641594600433492837475997524803214649491088769627756803446998147145818125635381940639477283073730921031469448611628371727994788258102933739639964537760150425731531336387285973680825862341560496771805400908563374756401013753775985977388724838684933216627869137527610517589021154927912840813817601134235293531430373068878832753130075330161390775185639615757769775258930346365478133768230136427601995882680766816501473913311689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19063165273757345116755012945550989780653836106754693246774912815683683453233619880501424981529901873353492728140902149598782124219949632859757259303495944318200069332013845238699077500947418848059025343613110567216856413197878103821840004563987730251630686689335080926717542909640778980213477884635769427080827054219282349191892767870291878230201419412127101875426326855507779217510646911410645457961320370388438247125585652669558182382055950576314032067353066414042371231873771902144732747641866401386378747567444836126521047345753278111852406203125768950889645063134835971822578130289296876000898602026026497262781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "25678740139288719225084945186253886406142386666065963241595876916432472271084018307522088563970840412774656317191633202781469497064851334805557417175946390077214622903375630990138444722046883189729736952535639830500569586270284350232796425480168341406476045145282502427016048152187692875156695758480728319857980912346848150053027397623764323787098879253901456636265133149108197811849905670119859718393287062014070439257482806013932403511964049410444119857565746489288728976102399959485968324165236542805762463613463084877555937428934673260884777078852007086111871079350762170849146045594388789453726827411073992344189", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16215479487100194603787799841455040525608505424315736669008521982765484688746149864902480414525429310950854240280422375650353358148485305253417878247440821814573253496403979323837344210925682183439225605618808553445285430681292011158874101702845269954282000120733149132541956703816620604068576910111257964081586551765340928158543549275360917974899441765960668305610287675168257659141517601551719389696009045153102069636348574469483910490119145390771883644163894506236718806067792878567758390249383185444018475837274751829079010929077025135678325946839795630894689271122625816054099210256855465376898844212137905737091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292929043577605023607381216489736743474462326596305890082113058165387487906448905147520330860016726082299172804445737788759760735103552097054599231826050793935976047184619496078532276874644244208253228464152785379431789081870331736166250081907275988629071734891480338179158075606223419015491499460614441077131119804059919593498149178874867883620783847232665098005704540776120174718309081378622928528865618304125604170384804476366453190947166953778984789243424667907182307369358673765956613674404515389040690977262081510479721593696473611074344354735371935508765773910141648010991606540769586147776552351211735094809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260766037448851949032201212268536238304422684612957757052288323530030087290707409284607794362775907102917493959424822579194088992185251538852209677383997138190231475383070760341032552307365629492284426889354386476437234795192663593212957176119692294124388108816402970987563112798874664168805940554856059492544967668117519085265419241398419775721803953647854017323074912139819793867925669058519186000722510949267650299057318711998209713690618897705609696879446694598515679862448886780054411821167414562276116043683036022638416108789208705732869495109368639529980485021867732355773214370340062536173471930433558061471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22188343956217140957458039261171638267478158996312680239841725507637668378942378528866218745823214660180185904706348783484930843337156923681206182368746509279213271844458250723963341037980749387910860474812640900402587743430154593369705257117434253390171022464212636643471714202669049094547625192899181688841164458005103864376387175910230743156959674501225241205044307464396495610031614238168453140094957047586431864539747088521933879823156311953600380986910949219526771350861387385035008205286355425303950818351864989828107134822632857919874734323694332966334179801624292584116547044682292392395431361660291559103497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29985082666499374707748566816055672157798113610559880497605704695612853850790455834796759350680231158510718857030545416068063371257500104576477361636934926300096772493521196557086775789486190593506815999782932988115084122231259430042411583884808496363207307496006347547276634321926966192280845923476677918816502103079349276352082152707535559155520754681452280377431637889358632158169427900197475224810653981636775467149050669688055991082179860393734293910563411845084610660093078189812428569580628624398771246677900146450076720474763908750388213408048793195898958734313482726594213619433508087667781978920576315531097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16381009766409269985297834141953975533078108199577836436984819706511761600245242123925061379538657776802834177487362273655120160052031686825778680224039247960850759154402542071255634565125907748326662860299230340793522836865153886067031692512524827092686773813600676099024787016081955671458455760533172638196540411943492854093165312468805627126781876007459401934736531213623228298615303219502083059916243068335355972901486883146831815548728433358985594806322245751674196919786556131771902962780971968123282458773458849717647249899325142564902475900446483438481836259514387512262911322688320286916574591380451096642379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318196530149727525683813810468000325006329999823252192668592286533957602712412648558127133175816472039984452857800745526636503621203969416035649233857499746829764583466314431822366343907627945043192068789044188696961134155998365422982104982453071878981692350488128321456678434608437011994971242528422021995560875015112719997131013282901072369140126504617328846788532269491861100803523206227318994976366213197005309584100074788438413794633804031731766645776572176272171887473450465336406657186410631995533478550155334172442191272131839437009305332701257049658605611535359153899955308440457926780877034435392845334319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287560284031993089985301239360152389477818572195162919808488875543986928523920827370849777486622721166542939809665813536701247807024395984962773811931932650665913840388212264389853509382529535096525662411751866246870962741936510731418478534329013873078973005424550982966753089433112619510335620776623620734303106698385181881293137598859218086039136601154548105698070307776803996779980093334951868346462719151301934410436036140296877498700182707232115550444582286693069350630532638782686837253871972015097469031760006052086924869901981178680223103419936646350441530719762819804965149231634201500801478461159845950793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321947973396714264213459392475930366740788304551790977190334093813670797139420537622601152564878046570014978015134372009357008893876014326919001132742907884342307127080569925844911877646827847945400121634152735977573692812487776951868928723147017655993515427014284343946405008943250622320398388266629547021894009247844101029493280369104881011525839654861951063836073016696198623496860213446205415863843963376118175809571100464279179998491047288178825357943398182439753461210290533027408791020897512854483329950187168191012542936682404031645543704516849804501986802110589779311681995362937070072447435353313486036707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18875315892906395533892400798750901559673265037706706331127517615480374844284251374039598616359548523589824691044823070410542046511230112595419881898241653467748220592574485849609371639343861838100557677491892377327524807149211513274920548532187307985249281305342523388205936798681838275750269162730643312141817130948863312012186494301667634011873411389872347279516927441881252059845529485963630831868511199397859554635289183392041243288802445259525613251336949667698844479948531930872789314777878108044241362450632405159221454377932948055810654239329621392887493210258783609004274835900007741796006240174855700783509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21395030268608336584079860689251866121891476686682473791708071008255287695380692378467364220530253433134617137649404565922867416020802298988930775313077240328639813975391599379053742786555863638881792062846600786029477745461066577235611803720795088691675563043009692709327382486107391600308759214135328927726136683151158414518609612491983287338990124452675371669890286859593060906983930715093409883101120073074679308598521583078193772200644673472679941918070089751545612997768655726918810738359122066609304749146380924893553720695312496781775832236625329401430413974968581833392353472510655155527820383242730494144761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16393068842230918171757814966661879205005176339640861329851046212401571136073724136842195937378493732156200321171000394543072752001128605166082322783753973002226979518374046188665878451948194014478975858880677810618622251129561029969294460074639322791730026112150790417630188258250597914851229979268321408376891731251599113684682667516753443010270778737937031426681488294308259802413426910809525001455916231668514232574132885951299190593717698896370179358667554585716542653880364914268180663775846105153416247877525884544403377476650691679789263816886432916404290745459342813455125047188997281341167740045824381275163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16261790823662259693016941524338731976599251490992737373301747286312449482557046794848934868499071252601026281798557509829831507026582016667373900970555054583065670668339610306186800920086025115627338263595822384771035269696783566652714797387968917710138587945309158147474737180350416837513507693577965804895127266930851063593953004393049798156850266998585067589158303020370582313642298171138778517063434284729996270073591150634452465376946001283437788666068742269023010858484080553536163564191064602310948121115409028612746159826483660385369564344636830702737355968347715360730221031436505123118030909147607761053823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23894857229925680189005124690289442069640839022280346802268630377943943831295172848164561650478720679201403025949510304257943414713389770790527113174843769152064089520029418939134084257316798635677579987879967880811627728644009511103884313062259193660930339619997936032735356711576037027734505796247394177484450128869762756549244408124503298151769663331134807897297290580358618754494948820425558361770594388805113685135364726601423003870071504847087173447302044268104940274885504356096491235474406643131853497779348859495422542153297625063700949749594986558542209018854510751611672432583266512192775345460222823034609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19909972734903841835440067593453116027227692608490289164139053861691245528182381855654834700428809680228518303860993767924229505785602330943294324213906920805491231505680754437572867851802537066870373576532458787561830992940596645981081987016594654664024091518958674383050668624779495358020539126615838575565078594103538580533972671925917149397693547651668740259499698551252429696734331300016595632847845274624486358878449197302830965751213614102872675854085768666109649563900482629935461251133555247578854852634241181164964798966620823843618095542574897939925676216413097937651334158871449528633553898667231634061487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22554161605851031897597134257282407070888646749916341807686139505809471037277081105231070544508932531069171794837277009809204040888805590616537292673478431007286142875817093669383700504643386650764747436453945263831319420327591200918843686317705258985162862936127718629706921435145303786132359738421476136190107176364770265479748297743718855291475035182414219270327958046081346869001904893989912471858204262112959107136901103392201687609436053226635568630715939242238464159858285388399636803576750702034189640424064518535320640612868707471695241721014265989673560557034261910066990004902665023176827987819891021789557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16356574150857608582600721326485439924797331245972947840269235920536876568487468680601861098446500700587870688129847367284311230195495635848701490679719760789452095247511691048304565731012379006009744329607132373564835865000482864829946185695166694635766716686961590706040462365394862622707325593752596122539976508185411531618994764000878075241225552347500628785915999893358007000829009895733357559860721932043136229301331127185627728213316433421073779553518343160568403014281885894484096712140583198543433845958316996737848830010402805923585084185803116029831465297137173473295313087625346185540729389145321896658291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301816410882270899329417864960101194646523646084175442331785072636931237159627193988597015149468789827461293438546420274021050701492320739493463909124040416042209849749412995436420981340723538989210531089397461354826571977746176567759353328569693789924969279722311998804891432320881911043041364949979560976279453918246757631477949129294444211450760130539473000751331790329186160712849637463771219253721175673133614004124678209573378306495847773397935335563090264489385834050615508169779330326184687713855949540256894930602244453304153820478125471783426295446081228005135423075184562842487109486170154138982190681649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327164984397054220015669404189077434111513668837477150054775783242982474301360367139233810881273528404841420844188628290809592564037162514497253849865176648659411612843508100783621084207824467088626622196696004922104370601246889864573472814826513052673383418853753340822103733069849081427939055359237848471276402738872118458762891337729145878987849932259134036220577581754536305458318911120416557265317012416640832387079352104595032168666465007374934770982716369374630292464378444014922675113366521191013994145445259729544756325711178957522065668246812965498443713075263853392542731088336644437238264195907971403637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360816556572797194214525381124080528880203763450880935774293044043172263892396117719123576766815247756373575626575548509761938876136638296198403340983121142327698543195915109443510364471244817505579545470662838664602272249703675483295072026792026753792926947939569009108660942515675657590997819553636338886882145132842192635625019157292749282253007485550492360270037139238845141812626839273559119458864464280142597665847075504638439440056013430527906191822133465843860874945368039937789261433135193735325151670484885531316275349037772857250657188295447838587606726560352302164148305878904667073664632087810420833427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16263394869631795908562922013282075868250766005988721752059422587309934015389666853952999804357960402081515560756724468275058129241453012868313953015490278074331848185758496969466033789382538610610155106461974592974579299681470899982024143458922042178345916902818648656518042663600612986496670436671284864955610185267195548862553781457928102772816382567869975171388430726386653495566283394989750228961119618317148053407337253112244286540246183089680516892613987952942717848448004859561699411079314055218117132792411572802433401482788479929739108456751648576814487571703542192130921752196110859702174275438359493019897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26348763485736810781602231259218461533067998581826673995624911691395101590856504666852126472925769501123773589253133484586127910542292774216651044797555096265614204557866915136056095612610519944103142180012870804909243268079747773348060146937955127491518313550020979480572646661355173895585294740307991147349514666058460355643866122337172158840532862908130152376007760227155851304846028797390080497104226281242504657017140370034990273196719047854898479151964069364033806572945031851450900264948315302454631330190555964301852714177999545250267207190132737971798250543524001226321220359944824608222163829017923108672787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297785293579021229182768346616373041050287769163523102982292984473247626884259225091675470957342079343087775505209330937572191509348116956853558971117761906750800224313636837042633326244337406688438523375976348834748476748198091621083327122116091751234708882470499519426998225834255721694577311712542071942301780935286242784135992125952587582918512727262365433764672036871875758264049056016218049637763522791151444511611499687955332041516961167448947061355379234524204919791055591966378456254616884406913941889477701668697237107273906643706507513473816406214269138946429120262894195696966980425746910942128057100969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16389813189722357590015721771949934171586044692256368908134545052734623140017264522072294866592893080154512507386931376471780160464016684077081692731957283245783013613877728869036802376471221917407847215296359212358549902142153306237597987561804252754344993621228977952190982094487890396066227946022541405103299771240323921583526610551570658720806421402915285528523004552887699888448828069036630921913736103986698766057277738731626205810321698374778771979050231759795686974754246828162408129763343187612873449123887292922961213924218304148742580909678788455924097905635854923519822214668005106096746611075040450979413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26306771108447522335983495477084805997822030148016388980173444079367711668438394871022095169678619952002281318232680718314832921625450051910799096631222362152811402170278948466451517115159392953571702735432191342184623048887796272218749889261947494549184640336288040757038948673389691058638859681172276796957882799338183791386294331058672924268250051697371136442625857391096491093759700272337087209173825237046115505938961120108060719889834414587129469632234439580608172932012706456270927805893173260505513803263235970882270014689242025593377223773126126183542809093440812332144059597783460248532789001697687894132129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345512034621128561296038813985321049921561440504144496448386684000360904100955064972547284163759704535075653855210046426074037436086739566575912121871184899705397625953918679915880591206907532018979984026906030078695721934976286005650076032765434834294491168226219717482310518250116420454228997278092916085843419493679144974755902958662212393094364261941950253097870345671856837244695614249225816342581890524668811734174278504798428657573106865249836077155526166437514023237689381663065961202049002435417951884410426718033419596429681469216167282052609685624969836485688898823554478467214406501013714913391925536361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29976266585426840226125850073699398895365889355540224438626471819611693899686499684728603745348553272832213583143038181355215390196970206029161085874972495036964452997147711397389322513043492046863938656617074642754355100356121384768920881615833768081269842983786038443559785612181836293008672284380265501485076700336179361939243578410160096960609975815699736156338973544462791807019930333657506816882265453915371723217776190417490580275029370616884524828097307709736139012078173678155712861577997857638615707414420742577550781067365156438647566058163935818857150610383588932947634273026606680556624817781054380513811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281901036022884307787266372665065150791275441629768472758734539959649437718479839819866964887448616867449107113147499321198032296092947943702822267260632219904951711549092646310890818975475941520473797926971370657390763917292861632832453632016296722209209729881509537073802585474736366573478799992236314543277823389267753244402271217167696228754298724804279150467175911805810248983700133747139604298989567185820577630399358484697666524773030590039702495386990385741167570846190056402054711433906650948730133456200180922930385405986148300397346142362225733723813228733265075830544810628994409144885977234849839250181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294668535005108921082469006609383351064862233490181857162591703632135820349374450687107182684008636350229904093087925462632494779309401271620941724278291121932625881578326715997061794526888298705155433300750162817452574489506534146371255222347691649811494344556632858913635233283121815756706949302147674210021335385611869663658147748635495520520905483829665100151351886741453856910861921260546327585621218939738298678013993785902030515516354516718727133874247740408142867849028023264245581285737637950093569894773794411905828212318204430095414910579313551498173980304697925360278905752840243944396376979727483452073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274962276651325776594867623767990396553344016312317016394389316648870384514491592793131604316190621378400568335937206086436655945797422629766751749323987240276934867752662925551653433012116976827168554822407207366211938342023019479975988733273829991374570757811356981898271094975723576424552728845264253908366721110824713352593950792869704090044957494361609570822040581719401667467098952479029319971984126652217114002917063991079329432744176862275281876214912765848823607425208111058859078676570544135033573750809762589931203009178228090359898562120323304320697815805779852317818886567529470831122796601089521528173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21129476618662076433713816430122591056558094615747043583313741874020277749836989181910511048995576208552301357615780901159430012521277947849215384234578910877624569049644856305197507810993502642268422862099075569586148512366891801932614294232868722993525992722806543840064426755614346249218767849527079842751630755312984104099015583904785404744709282833673997590375909952020919115264228241126142129070415464477823091294431281392041576282324639974333263033219475842868870539298077380758911023285473886219897264064902141247309274394926280072376819721780300967250726419479032667205282834325653799751560808613188590354689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18417181787280983898799603186787875922294438144910337304586090496110342227686825165707699403232550103989653539835219709605614443140908354158523535550513252321678339268416538601586613402690042535513057076558580331358750912585096875880157361488197659541107215623486380702080275903317766459024418668106479654720313345294970460936119262251372274336332426139208995947246140028848768523962933966566640070942896469502501885352417221359009891870335006990496915916277768629146078757144621895065343996129002675922247317293532593844567942543875063618923394395855151178799395491482165050022998103821989186395967831778269480291809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322818182517420761648039992444458029618249424777556447091340375190635401641510931353091218310076502732262582223298482653460633397191508341864697421818721495828403699229358993030975089527364115225867570069777294462443264967603386343656959008209496259361885472894889625558632329670193488088516923690868939482044904469869575098125737030940399412756991576586197021685397356025193429793363965227213947228399825871401794050226872529768276438037599627283246493597505428244996797323200310573588512572375675093566846647515903437827589180085108603770775786797308770703252037350379614724183524282369088258965020566418106650369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19134854268029973566276623166901403275750888855582465666128418586309480270039200434247635342241613596546071467946916461926441128275322067204964720362842392174038364079588657197250221094948328619384741008149980665446408909281880190220919460782369930250357467187913956804684480497459842879237867915455769084262399733945097648630110813095372628937929564265526208058351239934385110888220709681195764395500846948420526276954771935369033821759273984085379705646203569480951992938625415486425424201168288542400060629521586996697001921846552479934281662772252183540278273865098186495303095984066406058587515825152916568488219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299822282857208735315742884704128249095110453255322610007859427089565245702785011527428287930492818366447367479409427909325765516558667022530963725550471270084813008360683269366430546676404335852612986177625773301379816887187940666205227623420495225948361191227070984348470447616249748947402030075016796153370102924515759236150424570250073529718593875669507282914990940627661591969346022847234036080423735357126520656300616303140232751718287887914581609535113331766657030132737442028024459509330924537792894970428971417613652075542358384626088166352028164684724156840454307456366487121124126072188439169013109453489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22935701180873154762595682201025588141627712892359443047252187435652800323297488395578235787140803587528464463894050621999894038091781991238684138674445280478737193440642227570454100102926571609005716031186370575826038169809445464767362085694788298286031142184051352159328629352455830114518317772878291619970313017263055601563637406035236770582655851002891441248632500778422974721306648738499294545468022469132335044924915132653229366020533199786859976629052458530445547384090507462445221589621081642272112156035535753995817637611354620100629589922069311296659616640317529448862252908000190404478497152424214331705257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "23781840297308040390809953105741060863943494400860744605978988503322109352356935659178716332007197969917452897881248962557931502910320787807915574631632518095129203596208286436046332921158693385125533490973467763884577846607070983007575691564501789784163283435182626142256058016843126331738031888980581645130481609862177606532081140998165205081355120501317410045388485162590391302216088268932080657196069901139392163024185384261395924970910490278916841411400405766461990394776199762698179942156926960267183728098771604085001937786013227954814085536393971493970357830563850030176854333293497943085124267310209811541611", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "23889899864893886936658178000611577221982189784657184060486486892349760816624015426047416135370797294189561115768882346161394324732006609215645766586820209158381199464574519947708248200045754853933035851647413137273082010517817413502895904660897395174394982751820035331507142941785979492530855541190090329638912851859823651278157270169045964346604689400794693784924958050762365798278491750767567644570803411655688442344661679238724380539812135611944991960476656569715481699653427112904675234864154117637614570591534835419185194572682752432667525527896594453339383322286328672083260035389571814710941382521131810998699", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16221412490171521699286922964717255014106716726172304457687940299781176284767450026060754214705503360267457623302560498422718558511228582151124968131105539301629295720590710316932721570345463132398618297888142932394858769642848543736404687829431413818246967392351981621149788191140273810026643263089852031743601575243904098941735391451248441016811931952592960907321749983478023723196023710383354198525879653935894429449778565963663899954661565098460958232323625248024549700569534518076489383996246449026079465943570678754403951008531685354477454345135993409295528588512022567770209617879269079337816147039366121844021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23779935230407205009849010305648117810538626264898504574810315460876647467881509800561936071099498230662151907719636120935032797664279752366371346129102964119826298771364781467307771459788925317306813475523581869046851962972157663168136988567836847720066344122544109379195422871060190332117860117060423109908702770365734120361622752336844772390788220147665367214213343666393975383469495502891717910702885646137477492030774528817732378145303907533734645749041772547687201042622169345116344631755856560849459860352370606102195142125002707712967185860066376075787687260629811953352518875215799149159374241043930449485717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "20459391207699738376678046044107948916028112501137848753617183403015858284924345537592342971099942697838350716397908358737094744729197308637417893682863719261372985565432517338566995719970624631022748535295894374897340052314353070153283350066290638201444464886653874531134726972927705876180293553696063853294213642318957697737959177480254275903864869454489694383791001847707254475547322050758566994749738389057755958032503655059437677135433056562486339408657026248412777733390012704703804694830697986925752486591542470166148153877371441608786139349340217931429718855046610820637798402418914488757044584078353536604383", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352561294480358996719683503691821957287541442622167001102790452137752850485058667347040817156934132674650239386654593563875045366462378964546953120579237237071333486447289973648725396903723186521417073231271643927857022180007580851053108333347883184225168426408989569707431625858061438100925589830749852927726093279049341136354864682015542655979890925466826489265723043929994873713719710815460963886456797882903976642244501314153124476964484309107305307761335111741995894577134400078147150923556712335316222609777362066972606171647447446152161769585125537647054576848470222098571998111597221107323450939191526540117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339414254434192558774864168744037876568299240599349885409797251602912596489500780823844837009170774158472761133556489095669532735659804136816405232658344483810146298269269019341179848989013288209206297730963188824604319336981434301249420806494073349458733463574811293528589517379365971196027609514043088209553363346300283201617472552183467800079200205143449816390471462028647776252306201868304313658897483965151831582447685713012306783203960859947052142166642882634796992719633350561981067085572933216342902525325024992013613637071263477985625040659896701451247986959080159094194856758214917424217363813430884694607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23323990027301964047081880381088715527680851078785132804798551268655579200986197313851353548403951440723229463004956694132351912353705544740613344523714298128726914385192613223715152607291057630090701120085656376087049650662863262161508840520912232102656099781871816000197055109131332385527172899350903158870170966978985367539346248643297409006706515515360826398783546984977251592616352687754791259577777464791418511116027164651258280261222578305538451189572316998266617561683170185927644906823048079636006185955335654106627109691412709090565809163756218140094224371402118249763573586698381190183628569335782258748943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21022649974609570812289194784207914178300578638734916148922482997056434149553029280230756788145649241090403803579551167380025013418994813041853455526654706023222239191421527334970562071610443264827124180940986863922061648145708419049495849313013757504489301962243243143290032557834365435992594993534905688916799873529916454745728609942264797532455456152603955135798305300410619656738873600637272260969750031532296433733630204148421856586537389022706136099822631077197272759691609637041032072449903770913659862231380386727408169467178377833359001535308349291542090359931020622973703970643013480145422412514714201715769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16364544737342979863791280224769103898541770004995461822391497279119233186987040059068015034740509941006859953693060624418442157229372544183194304745648785575824541169082205758305993445719347416076179061981744867326625080214527959839925662851991892415908629063513270300812246546504086501848777215361625864583784700208918731176200540713848767516502525053571133277764963353580312257267016391192109228860211183717502238034104826126109255900125861212037931954374846238677724713402410221843100429083790152217585461873139935197823883789981524970274415067908136777123497560085645038499586250792102603023243827798612650219687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24542737460684043369266324134877698978780919330317761027817787824276279136035388022803541254400370179790973713029086392684667273719062677895887185953750626402974223102899736497825896801202531530127820077316890576343745399138148529863067146005954720218834210430545022145368877535513594244944219366604433378135784923751033016203257426509765754751813980149694364161659671666288915817991531034132490874797383696368878757473438953282709714338283353597114103123738713775414845111591959473250723675754788786196682320903756588737306671352070858073975303402598115885673681281194487348796065871465292643411687638066284965543029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16264168175663397639289556509047250643733088066458048503856249885980508412286172635885984726278441300757165832880892744476040415000967990909233009516672711910280261377237597018196279225847395921400550402946427200715263089832099914861392570040821316103303294141847249925348909385799056476403294746767267481412101496695906428481727079867251828876353268843727026195440002288896457978344651738776571349865472244182931470496028987942144642145956843322130098233053999578859385814483593715065178704524022261975775120663912833621759816129478181385643086684311904954856585882616633288121631209119054549523400213530651010230969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28582080066593466276803523848814922876640634786340572530012538026285838300898691788655532506841725410480711229009551295326676391726661787641542957047852680496421872616978644792103552711365529730866115515474321074636433890908833557714556330021753484096560249849405702386861362430646435337485125059729808656978683122525281380109901435422368413528773924683506976407422514536883652727065661331603385793969617910745779813360907324453942596100943884135315617395655751255859291571574463577146426236676433400810367111349799038699416261376818285600930999503986195814214011386236204762464387449944895837385097774069343195020827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316345276677692440313053398904482430229206911521050873430108164650115022043718537048699955366179558812429390827086921506523103072151668293519047942786288280593063972691020476384962797016232987978934590931115091717982728203434724010157539818633041251253662771817199385608292782280459522973873715859080959470632093779300554354054825801338341207052351318973011835186797371705375901893311970248309732242951024721260832049916562901642526088443769793668461526590384028117496251101488347631186363839834122128309967746355707299489680315815087693088266323558562785631724229790255641493650050245164774454684971498888766897039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24370543676801342520028601421751685989050932099836172667317786614022819554209419641945412387834592263621803254857866745697675603187918530660341638357019111352332544494020908790255249985680044323885989832160400499454181302535345967171931457193455466619919401111633289231220500665151490757858003182398767040926324916162780068828742473421756004679722737109356308939606724457347357090776648581619069820496240584160112993164955023652070737812886723615885857326938537305766341600344764773430340965916607386196773438972375918754904859679055869274567797629582546819685019848919514506763052098951235119200569852780245000999321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23450148351847156346001204510074253448984553162959958719022003219647872872712839966547112862262068527486377916182126168958322912943164138990245830606753259719660833524194223265806391685084194223301250082652554404954682097587390753729741612943235867768253033231468797974464464997867433281880271929733484242336583774897046413761329775221772375339268854766492452345333981204829109917938722804183803196875596282133640796815096171630645910374886497417022660926549127245426789905995802444167183231024721369171627822539056893490652601337472069596340661964980945200510386933726407894769699631598056742051993987533671881418613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23952607414991496576433075513553284994189280572281805276101810300022052460489954791350762173728757493482176899889187912140447504228809763744391071003745547170474992330748973000044665410020896278792329877020985260156961245033734928664836231745507756350724435526072247191836487121760420032628213725109109035144612886257986541126123919528790129589169930757307706955564864751010833906835246177248607468289311725834136204329935516161040179166243790684785464518242490393554071994032316666698528987935526706835154246319380692431230235851399542105067740554248547714537189335721816391989409358740371467466468081906123451852527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22038626696033497994629199674656278518637491529966072329492714740419650751155201571496563015847349783383332434178795794225452762722600665294775414779843409068052513189595716621333107666057590178533092279595346517854966259328270204316816227281973714274076393639838644319703453834682948843345276009319197024962143484505417232851244795704722672135206119571650357136038058176557400155255941979644031112862129931656968433194380910994544305657384804553398189732376927910883471243601903738506914653688902699881765156283635942803375024381781272274065762459515300293796996034786604575827753436680299435743787156311711319316231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26865211195815542091981891700973069813812145316551863191354872728121867431984901368934132260718407914350575486324213869993718000988847719749917030450873271432135784474683665225127121157601137881581072547676474947834073795675332585467486076297173293845069867492005136840253123053308840936366170286035394630479649784811291573056853346660258037827504351570544740270186498607189084544411170622336293835543191586585037188405947080431863469410126567171524564285147176130734481234333235240331582006835665823264152897603976468648219403276913300126803251230738734573496048036728376062388169712506099032562491840850427896417181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24653636860430330425932590852363231679754905150164225153159231864184545472522882604686665474794202410004204323128651151006524790454882672516580390089268422641765833088468782679608459495103750502311212340188604178029840548560573593732254582067419484480686920722938817812953419804120150906180708474355711406058572726837400431082759585067499307754042014411005936609028898174226390406318323576338258135231201497963992851719176757218431578141835009315605321748836578654294127008889945334996572252283678022251118771250634877299256990922107177477767194320598665884019797445574400555860901944425106442141021529102030194647879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20096233692355183623627041534063657243459770633079814425127973592776547080519209449940461186475043027263132600017683440649577383684840198384404033716118160570630455321121918006692479415486368600642802616356782423175334567671061294406441745517067448499820454794336253002382938912346110003560433790089700723655559945096396604015276445471120477197869974141761638815534526263679525921533856638950024859969767632272969873487008479083271788905257645610916959220420710777087929845996641322215713736453688603419652088099414203196408334596942812879836213972570376101692756384224057102328152084195098741584026086468933055988001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24366989780259675474537641303789709261283013309515139176920042522489752247091052188429365896525386404773032855244057943264599379706305780226866452772590056236780833886497188518937104904116587571627919888299778261241923442478250290817243889978321540798525976947038916790299317855898523499948733872308339852370273856630836987091117567615973114519265370884521861436417747388546929183032640014026618403099480623790169521707383852963335524409587298618141663377585998639958601011872042449916167550228184538039117687189114715557000025066379597187347569666719948820774460512066424456398137278034015215076491847559921388264131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22096388590369973787045496623243265155595997559553784948168560860881140513111688478932834979890015081732054583378438979295605465894594424625495206298899366093786809500228710976510103729384763061685891568967199872619666592831104284279868147646949468557517619556550483121637491302280204392898640658031132027654086323941164866966384686664972505691508474173972949327776225452915990634003091398179667877477627585696614497467707634146782773367739623500824189482441230956051273038266815530364260991073806387897840612254626862473300632793968326104075782402536085057692281298903497285283812042709292899519191356842919572948791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19464791767830279629298146915337770798047372407909685051923185000563251927852216728321569956908958230197787794265606340159153894523809216111074884228382399885117283733029574187791831927332759044394306581107062827739253166935693523356307504117286914422308073880089484954640717550728100353153904421196913923580101931279046401132217316538150929891169436189797427373513909162093082123439125024745984989076975846860321700718854070673488676397431981686858879811568688625320446220466881412659405225639769702274574473132489989637230250162355634946481937801628648289053771887492230260174516981512327872740133739130692433315107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324798872190216878554309345062247713878772785037416427219381537347220111937271412193119504563059423734473149068516098890771779344435913711969493057153502856692010092998271417950906338974420788404594928067832422256433250454443702039604518357367251455179109031068282090397413131958601704179556815430983124348647662479268637333135232567852718621771867326631784082302832605145801932484622394993758297831623497749169934470835268430374243913214176528326686784007952870610394360035588716176229020528785629852948205212242822147747241244994450819034992712803265605984007994719208699773176079442979921878130365150604000833773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288238034554998452889614746925838127650736058770494970124308626193504104332148169279735228912783083956449648414105897516153637531989003695561344988811676912230466477873970347397263248716051335682518719165765367265085433372252614517056009138802891027758920765865141375037663391936500937050881511080764543822442521478067585344919504888402244030810904015028389615846386861118882757596281117075598100307016316249745627851241443330809407159567270041676631699755568934631224991429626105417292927469891241457641963544532607690519189750294113314783578125510894811729426333860140453948710332238062620667645810370825006959359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17223100541583399044643073561869204064833618145312320970192865109941090823695290976066611378672134029378860157650128772387523942237250717090557685861211294744515722390495501480195151732085908493758976994983337464180522064911509001840146291234353924060196295928469310417693051223833614652035337109097798379334900413479036683450248152103562362896150221168119670443055651121647512556455513766105085273836732275330299275607348234126713671261381704429356834732394719971183261605578488195935912969226939397000492130540231292335896417540930729036945506393004741153007800686696667325903758488933935095950580882494751102423459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16574608022933342959899006709466347516577649805152889596028520033715304213593675804652462109995494099957098786629998950099402670279365194980597324297133552976644050478648685197341970942740831343153651619973068160195263834231412926135087414586448692715885038477859657422145902775371891381488794721129156244901791331464709549890769655631686289083815667745534265990804607159300757901053595709674091846346779464350492507366199181020090264703936711237111915480669601592929694624029222938217229356503654476555346654429548133557518170856476365233743637996794718681877709627082083954025997867203729325987982917845340481296621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298407205169926794357972517571000902844305596113715087530148000440028252563013252232754334510570490650155962796405633572552032540557463477984832669144043978928433500994654768477582279773497746004032979200784175954348230432475566307814140435260434088032924417035933569141621776040175386248632314487827514487096377110049046900238465557209831861192731626237315789665260033621393548235478383960471227902653867000836080435809595944245042208792087362380022352455720100202872863346981377589418296194698282609128776274280646696830548791477798607750985546844179434377756387317345310876860580590653304423912628840784714823997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22585626201808151684434237357244997150563387871271457622245436746753330227773234742430923138916828249354348573010168287882430577265640923071498850949234148936046707417578204773627124111169909423281804414067828764121003320568187919734799739218633464808159051151067494560772198787215317493350283364103716360159470999730247185200370147307154940487773976681589223679969429636417885420390000280544401520766303379237672888791706601670695956445760297464507451173356783153438830416162940415232934036841087883103475513702155240725985952031817292592791725585093871580144065593757669606302160408143365662259434318406270860791437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272100198615319875670869427081957825785687211329944848466476730760873816642251009344236646738050966078849581414463777724586842171142873678715209297807408304471065768480033116506437360668839189935350747482961641515638091146160345737209836211469329471403231075999716347108167265986214266732278576607712782148457948516927267972528412540460770246082431997725499103195702972701367621469260111743376323648022766763399022168162811247252336531930997927108657986739016057083419298481668102509302560642775804960700206079951784970526000236776480512118054705741348256409391240247323313897977296177342071380651131185211792096811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17690651499045092259029644362296746795941947848975732377521210187913770582389755928983598922584518061607311174513884034763579408789563583176465500369427592047852244319685824060367392400049057810570181865206613334676626556517151510977017063566168178931647669313361940752994740188564780948916839838125087169382098634641495817996903112011498618917450472955211419290254979692919960328817910507623170046243243437912175292706678284875995277256608091869867015696627321801785916365748870645180436482684782167806692386082152241977984020476321805560623146898214510950143070150557966532038977014280415737070849869559753905888387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26804988477809005427050622335054706008192409595247519647943561820131728746038234406302258166442954681027150238516229680074384562436595733788821747600680032703961671224772967049725524924905385073252761338898694226500518000069300682565409148734848980283717062302921470066054907356297900842859735834842763881704833850744952260988007610862875339216942568758846032796209894703148934440480663092722154293438301475183064847642250910869224966039626973804488726463706557163213036702629678059695539390965469853911433817839344774185864038287442755393773012770146430685245702169374824114588682119427089272317933203002031039879427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250262961492372197219469820568596104403445077704753896587158511114861133460617403154702042408084463392310597050712764008955381780055581018940887988961392713925881060011596191727047779144532359923708850299159458474700793233285624192296632365022644417076669940734904456914972794968148809526706797009337418882922084745237165918814371454178071549769996780998064038778532790402648956771216665294876778990316473242118396521506943433393442064598178247314445524259491279055923916758924891941922138529252766962211159739581622398068103107845454839419781840058530027797385043731679860504446995693564470037241936481978787941773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16743065438140486031256045836802931281926928896453917100791014865886799056981487275122846460739449119708832983794891863077885980028449935720963069883695155664917307746501018333781808503007748741350737266901510929465321209846633528425810168088459952694848088539758504502450031137432344469585455189584086951495487206660667563715829716975655305487910599405183182350498898759087781632283651590046495901216904929869964035776922360167712440529697781049230276922581625062653830479741001950138854608178768399491874845539569767791599531501095899422344087177113973883092162120811415136399964726693858022991533345150151556501769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287880555819455143711677133426011712258944701761837520358232662999412377190988904569798194146697191244653441173707541981838813476073207051282652530285012512098208415721914196514811868360429118758020620881253753147172857559749124936427479422795360754960101083782747263619087345526665769314463303414037866727517594106896088508995434975352756758473925353920240284596531163095591496395785768550785770074536372087880777331099895471257367196319585196320485913689938207412084377258520089826275842907015277384924047773694874834220613728386459406213045790622529645212896281297315872685352877108791707534538860915728381042119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18066855393298379848907070417010785267752876281487052688478010149405568455167323962229362123219645054183519810914521398532644834552954492020953599658606527068127399639008666836367395768615709014797602204411257333423983365553426503962745429333337428059395646425860065292591263523790950375916314434099437054475501828601987867818068894734166549511938406917470843208204231522069701463194467720581823673764273893562127972598591104292954318762522620768037098642246469010983404677741992490756583688322777420951827638452821100562911170460119587205463438046187771949862215241960695867471617992742415153419599433033865162609661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24235361667521063929270187981574358161345437767223212298593819389520866360456826870701190809663377284977054067133184169077342264662354600386354917144626401122661177616305992898402831563322899732104152799618376419364971268461670917728917279837170520447816820854423547950879385166337735863030127389191075051598654107875118023794845478995512341179582523484189991071334433770698897725329299272238185827223066546828985834959299544404689365237159510092491270941375942226018651594279074059240134226193147193910843577705711226311713411941440291841159244750104376762819245409563298863343801635737862715004445934767185088518093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25872024259538933546055195774181558792088482370075495883038212675646789676255823274804517163425257689903376829172729837053036361595763394594955801431445932937816728661892265662422421471032041833874703284053129336889480464692245226711626337889130042162526177820932299692982963246230404881499720778721813495049786939191737460392621544788517774035913224355365930709244078045108778608431841478418224443956166201513359179593126686895628603325410816783273721435705355035725640021569949734207082544320574754197435913792748153710055257736638647425611274363121646451252893056719864652073106006992696114232587307330171863399343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16404651144177189881389294755894927707805011794128230070554304418111536356114852116528080526976213626728643799979696967063718405105019000111385381193633455303586595368145881065431619425156280358419089853600513010787114303330881917290817151270775276844903223771317900903861992883652278802653388756882488908746868205695279135899458879603686430304105584164130928587619658932644048017954796352652683020340386876421291218329484264885191169586791408030208650651364966139506966345140616412188821894524725565420227017823212787302865585486933773001763304623457480670567495230843126651371710794886494488017522391649370019558223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23704726589661896806817598338420834083367339501613049783961081540330403777740208439517117100639500428639959606098734036881186674700205017022345550392014865857466839811586020192201708708423145631356557043801327547880852582711230040624984532620508181708766387301793134637849773809403359759012750143435722161010184090612408809321871798766078858385560431612863287379806887309475001567835155867656554802249927776964731411986286097815141004186942581208484697555104224535620717198757140962765966126498718363561295985417845937380281671235490738757698613221556750178026848656250473309583273260472960028364249436509616531089841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289404669559802477504406575273806860334314590723529940530297294879043129107993651135921463519084115288458688101407526004841010229716335904441281253714940520131852741477004818318692261998371510980695511451548686633247368040702978456493808625493295921456312490992759631331652728282812633543846187566231804686605318519362476713171642632334610016623685650951198094644544967540051450528769312985196207768935344385888915720575392748210205064216384405805046946812285866840212116898209983770991300747248431586730610005067276999322983502902795120353918783875781522494908259190034772909999218587589843007782215341226930206629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23771211174108415658409921130610526484457769085753112273625248877677502278415014485371394670383588137499781457880906441831734873749766933505895061563553887883157433514156684951443911155591821625124536616344371541141540022982687113881939536102509554699373198179350758631830504343331856434144730908624423594844169665387124216459789521142563382321678663691821038300912782666121457808876292055408180751988126464791027931527897772187458041747743183088887009418779063310344057726294119004376974057260404592568431361159071823551338124515560814398959246385610805302303152775334337600825592412186784631197487100920850375561737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19584207848469239397272846185710936302085376343373085582671915722557221972479622143253563653619286260142970276071929985221394429397322173680746392454801141476843776475486919922283284109606981540986706408389345963122593540974766152225254478372158045653396653429852578277387923509961979854833342939829898042780756536513946953587627733157826421439399574419283197836202833115831717638584738952664966646625314926867748995758675589220732605341659004561231809763226595571139056409497792307030106990560585292459704611285310429958669355061666318689272203521411564353356666688191699530222190177208550552869181197097056216388327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22241834440815513076197576944521192748203055815586657637211405541581627713594043318450522755368328738007760482137472416721491730447598447478525124067639337556319204688404962252644201526070494632715968834299590886213811715619450291400785364151791074891725814123976898542216971599536111647328839610456758552887106149483100687373433671306177322272788690859142244450807317920216828855278685840778695037396844749435964307242656271871750001005351617045778921230011375731448071761643984416852790136038854649104609164226167372707150672563551998817934045565358013339061169579825058285307177914447128791421444188458238243427097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277536267537545473134628217875269634922386763043607261809784915585561903586424520575957759210152189830043979868346720481892095816111290394778232390983427988418203310799877226116480984256894935976365132056009573058009722614801667526935097497381712363461002432292352154507985034239913157010581712743913443694695715604699456785843919738172572793373903285214920284190296776835125713825712663450593994919399989242097358442332075028979070766824753395976292240115141230526932084210634021024071035601144037762320226408840292125487038226033241896833012658736521643793888129912072589627174355708780665013741230485670661405007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17649508945900887551820959971432169117761074513818678567806452580497022215389441909317763281390864192388048284151582811976325132404789070701429602072586548615158682071032595117888234192885201915446431554473797387961617826139288992013075427040366551899807861939988619789006467456149799378700443441945264937067728737250166787593050640608174360960738298025712456780559910853701615831448232758377145330496807928471958885324284291923839890673473806466709152678083152738156477850392977541474731856122175496612174771872282644899888879722621296227923754297229250965397387469695365792131137095693318840074679978727486237211963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18780278735235281205584414160157259554409796797726297986670449739772661702489379832661617710392766730607707920847867027299615230836939842585070475339871738365220127844934432158083765052267903898848792098355995261561516646504067065905397299088128056308259048399607281286777283313234454059457953293291830181090902970759705217117128737008983481309290896793822685132898373529027821674390695315626221328099951807498945883402902835756609235282193515192350064647488443671788254765928410866932362876261268899393645211904458322503217608620251381268794064419925587486076305232182075960020010286605522418941222974974842449333993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24492406265179437869416305616309568194676275738672753220789558163552076625984910894372266077864188263717606299430857802910956741128576752738798589662060232056496534765217627677970289202208473584617951961813336378316367967891756394205282325834409447769852860603850576152882360555176232040639755663755427552483323533789430666903834589236840907825218215036172136281943600878372685320526558721435258414446166070460212709145693497197139691779257981926494679200817128348291701228587468862767558893070338845205469862157288809001598857939469859332556520948402016566376854393560007927404195186001672848327964891168493295861181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24619554410792677991306232406208789340073054420038300957048582649317551229069456332226910952084871376687057088971166703866460551395390697880154222735548557362996321179493132013053375634310571623001839814385683707491297921189877040801501962952120398727869806761794735941607130477611483881705128019112895431534222746644169550693105484640519849703285104398077394682939801677651954710074921884445753190734271583139901405445319215618001160291185045597183930170945320430885499768750300260872964673340949943533846586235801365610402756323744294262724406652844148003491326628868356076061204325113561393257265627439525454397779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26195490658205497019743060250417475160701353779487133083046773421697758222779107241515950247644856195409631130972662998667617962461068984627268422471233565531027009070397681062696579217013611097835320018708757668797283927405670384123116897370181279375543556399522224877597240639395856377163875965520652274770412826268441033816581137155039716793459339064444622230652867665354710198559683138126146648152260469736719053976340803698424287533914009061526309256015375531883316556368644285597818839654705444549454790877881508010161467468569016098818280258985352783456898143946973196565236124597476825633490385323763604795317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270383796180503780838500437284425718918558566332661723246778765706792356108668502819598677247628277394626212717051830528608203370167531046868671052411746836678085051087870016427280991985129373734093943337110081396712113215221736096413553067578553791552738168447730903625946957216202894558666659153754193923255944138229859377781754375185906684855534384420172156922145886284876406691860424938137447043027238734464536744984615027921555803936518941109058734540673948184732743014873184918005845004919489240057462254362308649484432391270849911674603102728582518908450976363760101852232910572693551355713392714331968498643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294625179684676323167703133940243754180932675425108420070199465337986207351311838009646297410695535794974053866799218420263166467605345450739809611143575435107202353116677297141979429819417155865300418784736768934970015353480560364477575778461225346160006615104889691978750315744938456738429195070988792951679105877447786091484626677386922443756006358734553109370593935099544804246898543123545717307913764995118788010198949899695698516040976862753238759816376031733132704928797103533926528757483814838578796257914742939793705537802840172279553274002256216066447035494719025868519104276802042506615294320251149349547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345505125619193990538044148015351596615339651796258366533491767220543696903781539785304197584247909689052187031141774240737031649806336364981583358681518487910332993165022224412949838834583635840150523614371948977985301927760767369740203650144197181138239777751469700503448035182906284452295148575960080175567521357358427199628299969162224280131482057961488616740417897073182625943627508984101488271504467441812200717178098474478953150591534889481286670675843494336368053118445345470423224959154998133759155086953060966576987240970058510149691901574292098093735395709025903295434391975678197671424474485271707305029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22103710891544946272439901817815266344176531231384075246407316584913283611981461271303746070865725961727090306764118014614298166278993689417439243381807103517886529573597512558271573529774214542885782433075577168508092083003917505631490969506975481035694971380131210101052519585304105576441161872161005819353695033268063893555646821889397621249673801297441655252938105927654357254926990318977031238190614400824487106465168573009483645533400057969853135637699399731193524700567672216757482075094990776999058870917909995922667582022805745463594951672049104339594745523972243886697598416976098616025409961184409274244847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16280573156976949894384412381204016895558513543868968027661357444972328133942225857051350331219951394927928980170293189225675649515026988385179867473670684899522579177211384218360033946673633546725405125413212304404867365587895847663584570861749760351511236952162989836197165723364562538691583275550186211439222083208840836724881190580288226904940724991198771554400306384994109738216345012541509337152120972196598728256960428490715030136771132712655775758889507567923884222481782110327849214556540209396073307563961633072891516187816578099136007523357305086870408062676210558945593921181564993975582159155217732236047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254820390152399211832074703863804674940731806939088711511859746116831010980162234533166452545612439378211091113148747890691210596319707910269448868659856953071253226866024080030151107885959827350251607976821690195216777590078570272497645462993208943365198837199434129741833610277907001640498670739135691462019867772237914309100386479346349253824774447519760717635597245239779028399497077425498475977614145854234892680246742838421017170427551839019194568295311170204507114012265817805063345811510443302246711549806604298990570525949221058906669798953427830332318807798839149135996420328003692643047200163142120728813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22124927074344401805647684282658883273896142643027233140579639602555830509214657472182769026330395232107684025289472518720961031434756824962096368833696181412417339878159118946050385497430279302992540128030425090166098525760795259558509349000482017011795571363982212545356894132184422042718783201786791259684894680335957519800333992329900216184995957577071541612498794478923855080106199187539965468700963399763438939223810583127196793854661876318117221427588615136394324996057814268888610333891927108713550927488589137481258578002300070104110324403008432525211356379836710104755736207406011662788022504235814423284411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27924771226989547717984240430210726833733299810081780397402175444745862794110404263001873310456777876279192773826377600239785744496945270332292231981312940395895099632529435002698797225856967301118987941619795863031780406026734848527479247839719635142927061663633592798807907831675378676107369390947963841142925872385817906291729627830659542272415054464691402489882135996970112481725391618436470514466903434086819619924000502748416527314886162987629869141300118946374039311556909647022979665013983061985832185525506372315755736894628416012961924575253019034568717530553772924791737171419326346193808754858306651087441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17467163252000122797003598468081117417305163912407279600771375305495817754545146426821493670536711062086673595912060279921857401326463242672701545948864642521083812835566645407855858786068775339689683606208289222187614569731511511387410477017076626095248024744370927773777396931038663651072740463271814289850135978192731847804613772628112704496040082101037946532617002518286652140152483092523287672775945697040077592597999206472736314153077443788894086642247681319849110417751759688436832441553397366540558125361820909127220410250230507760060995396390285656775551576293091945700793981025243916516450511189109023984901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278172110116638826357934527884993151032929873707884322252502345681222438448535288497328548119619625282096846516722574584798132270141974305831553265758905769840200975383574458886462688601082891153712030580942263401824602436962445486632605658888832798340962638560777541889307246255793245608680991806752465591840736920748265580436945533230025439534625441671326625178977552884379370127618465734861874973975083659998862065632986962562130243460734239982815302650670304869886535230537943807851101194355216714553265635699924417846108587388459547170583065420394845826963628950934752915461725793065125672476724941382032068733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19468854501894681143634782358668932745112972142660717678123308609036558061167583566416267562564846985106717672949771496119652667402364599073084643724753810671984662053394742242688244545425721531711272346354484283897826169617699807386944831283113739688434042709776163365323769235859982563711500839523861440948886460176515226588805624398108289564383534291258674887248895455811147605453956288210319906482059462445294623452675436580407172363716934479461280415322128798792981028231206677207976146913372942009909879441163758998341475927749067774651136921255296486984469919295048296924461934915624819634542877400761373730009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17168994860835212397678291959604596102660233935524787859378143775461193528047979958921986193848138508471176154899829931934437895600948583105948380233943518817457661036331328201590108731033019961081670598811567528969788571061569519574852667125296485457808275301345777343514529920938247701531411505355935608813268899408456313347304634421056416387472751760435218241851299584772897114437026161338127945807645422232926523561306519979580408806175712783857588195968644086282207913859848376846197403235953999505227966934539959853025702946338594858840292358497770844955096336459291339451605368048057076767986476755396201463097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21264514535522730807565071486242108817869154264724618909360272182804395092784805231833694063633539528736848448263573045468765133546586557026864135375036011311610793364244290993287871176421708009453864112091356341820213839337419084564311782079194293250822943119098065731540088344638497864383605474189100620459428825980037784373279105629456332647475803361196191620036551333696077662193052914884976062170422039951272129536388041054614712496316313019582081269226313204403647356451254965264898686580079600361441108026838143011598643779900540879704188067454860492326843320194547942588989099203192446512755165762408006115997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22146042930777124073127383207781293398474939906530654438062558468032713514313246324605952393111332758034771751804977411665858567253034614526822023641707443234682228973412873188907976784728951743918632086418914037309915919666434814346897433265131722786213421128977756202874445874867947435936480807276652353319032321985087414794706164574646721316581650657494363241996579619076316903465258267883628141558268401942706519747442325574761892149100172945311895287359377497466633703406269981605988343169146661733731105171881207092218131007366380529291592128616163491529182192457887868943127370102969449074768376746281350317907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19336587353717804671170264079914999976258664376717660621247405680848546565385056302300807046549991136304899125158748743064709831424303341204619779636829881844864858672378091343928305225072752169228955058805154810279691716098175494593586639257385267568848989198863223293339109115378280131770406270031077271405860894759500964589468124257841047554141061483261446820616669257936148215936665652188637076425266038949998502362609266264266337683210453847239618462996989645149779395421199638228186910775443909531021407026212497816783933529167595449662393866444872335898818470091180910960806055521443902256200897035617620815667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29338200404997998345940531557971285238564946901591245261396792008828142906245681549508593844417630542863739045467808963368129232196695298519541605718031329364981478081865812345743533708099662921986362136627271521699083042828648648086285551266790626731205723528582894193719488082532823523983433701747898185447714706275137971554155511332070056872829552682684597261568760488029858268601535231174989071633476378490622514250881719666020718599884002877545666898655139661622542659552652141441718394946168066729533101200533187366702790059974957334122005998380558340218312983102949977455617671478617082034792311216787989127791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21127837843853629197425638235305029882510271153206152567382673469900849832589060673240979587301201189891951864410460185843755267379458300527680625529893066460028315103757320386360840226077201010931721967629155358197851875575068186269370429196661423978014864569113659099768141393455992112466850363999254516560312861895841129719871693277028744021962925649324333980407063719506873897907506326934378432269689578726017006328277123237117758627234117184004672065330969856159236638784655973779502291510955629387019767463418880659673115746229250106047194834823244686222656948590215830133081235365523482541553148298586872953503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23491936674434102973096125454227782218514179935456441597220983333123194569807194807625509669459945438892504404049600058857077680063584183982494628569171541243713060988714511218694284647250819535642247420326540447223872816974682751122349978131855721827091167117107887117296459636533065183294362779755803163719872637213039675027459338133820305331533382597749984974391884926625012683064452538423419002154296050937998415844177710182920505073313149811843612250246036072542226894803924206563015613171105246695916439776486736752926569063051163205063881494480214420446120220777719960157346574036652130807039538778068855834109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256236507108579985191514324373441071881723107049734761318292653030607013362766480822086687630979460408880977521255136823162195120181170252876638666145208917724867274200313480697218286428087028202554981549300200795857590916896556071525127859238595587298539049905646629481051032390322427546343271484290079931591566986704102962155891225613118518407818693151323349303968667111771899259132919241072725950030877877764246669939811937653837927749625319924876375598577421334842308485120645646364635531605900207347015221342390316399216907256294857323358228223654655613267069572674395793385122297401649632886555042689172009947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23869172189400123705758756360212177167696385595615942730164127115879490028226207352320039984419913562871428407363944582422244859476918703264223962812537849830676498348135247384807903115947251819550148680942151526388240045992768003662627438416876969717144479346117119236968148689842750219976764501696072646391460785741028096504346533524831540053756368426194380614598378690586300209596995936269102055023545887037210573552195657543536033384718067854063616282194072258645488367772958950844723823531411104167126361672103917499134418825401827331597173071415246786488213157325615719273307882569894353004777579625359802261843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27984406417986278234267301558042431299530756266546374404310031499709231379151679225425829172062380063976177966975302295917118901503571896468728931485586629831316381561291136034650050334544466445564235908483309929740311978567932963785157736593846913512930567307834722451790787724460124395768733568294752659512433857551954091711734081384189288200998701605090068480876689311136836176872315278712082121504565668832181251482159745205978867402593103384668866748100948096444826500374211642351062361609404949497173481913082959592252102791624384018910927326724119888252719966588813392429345443107673159225769195908137482276503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20633997681385439196199699654633859759172945904485746282426655998666824302562036779916492158864397461035979724015805336239521946587017608905044337606950907141603781635260359760450119906875973393325893968128002966892842810293013076386074884972159193811451060708282563236596049880900907149733697620906327461949036704837237391444009691596975899309987601542662534539578578154636760650336356574693386079123078639989208111840729531577853416735743270344049968073606103907992145400695725207071891357451467304812313992402096488451202374028634190364084891545190494876677168214104689165228046710864109767103989707468404714826477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20920992529276948187594127718400967746859225492066452191673843907614303393968996501517719449322011464480232527718536180038398702479910028894688795665044853786740572304091768126748827159639598263231025850694218315441342873652235125362285855829830953849925586681225311110192187850073657440045200209097652848502525121912924366959574260175574370721745390989087296135894087137315209439917384586796751934730964416251075558276746641772333519016960989955737278756710912104258251215609598447283015372873858006880413749398397858792053311731263359543812885124007441436013138138047760665572567989634095171878175526785521553344883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19351564873837294490794625050033711394724854564738819067493854458073698519903040920991119436899186555985280661334646680025578863197340613121391116702960098929129691297237921279063589478483507528945506243343302398312708693941352590332106593361732723982668377355167221292884810893298886878614906664621379829911235813660673144340342480762825283537101581796140808312089481516969826227303604678984355521110627539848352074207265253382042890493240508210660523139428010935782787169288934060384267131857838764326963754367953576921606595486906785572605546440135458153573394825507663017290940811173908883913280080475629720758799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19775316290244452904516663662487860122345214201161495336668018727291369512587397438103550937102293530510279508535558081466046249633441806381214413429792624162378409327768629286127870614626205685399348642718893001981134194432800954341830662527421386486880645795311620250877782736404816892933795468234263213451125765718214746585279216050884455954933917295869994456826187886415390217836458432925047429228568292807258946513399319919051936331733148560208154535732762341935965461086991339459429625585599070725321024289766531333174779154442769882933959759112519558580476756555856554412946217609631882155021502430464555501983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "18836962826853422329970263175197772216028967284142350437155760475432162774752014210070599724958205852990457725148581612253653835132081281247252110755298256353894928819589983192406109556089386979897535038119946489527798291846147281674239503618913974309595951637602653324659720917711743738655703614830888027666267428070708303781856980290437059648516951478105885943730197096479581939910335949652084881357910442835428555667285312165163135326490293686043033384853386782447026316766967100698884790564437899638502988740289823832675964333248279550413661166647531819671512339960618776250219368148643360602664070829943448547293", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358426065527319138765780817775414501711702910628391773376151053233468744537409768583608125509161395829912971254561400784964318186547336206338959248430966392460814365351890213743197457129340420220885722181595500521558085146091968206703277169387088801011058826249317261875417651022854235252751562685099573422504700755269808732728175376227944044165239650800860191003378026818415985964219515028431993493914490156371314271915381871642948720915736812085343529473694934914933309829464821746528024489998198449422437061898511432849920333568312130447488724691773692955777902672231209409519783399129047576750453760242018467493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21327049756598437877932909458037158759975082039472735771864914496717934401772791032180879639085158526832402058233960648736231255820731062323518616270535578282279072732308036812420480605426037679291357762353457752783487664949667700560320221594230213068674350967510814294355333567665437059075309083001818799201770982034670100462050964572719363748230233169188299514261609073354655051720268565230382183292551163126091342899979977480097940001014888319811929436144212745866585431546222448106578722354445514816575456031641835140456957189083169711958752819178069248747323780561997734136174363986693900333033773178183203004489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23940881643894211815522383439197535999021433858966027207280013777417714122113276515098077313529019992525639642115279280071618510053742199595628825566579616591500849643737608484754416298174546571760187901420350085983284572352531664216006287852475221153402179095786554219858035597025926511221333426929781446983934449643142516148088065706501463513885930966984212071986580232391998317995216917845105030431419018403428899278736896122327937016096494554422210430994850952822201750132082648442120701018274324716307942058973632661736399517553186073291721768820748291220906576229099918275071138093115564592477666011092553425893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20698603639442321625648255957050361805204374881634321416248010752809047502962872570196124613601958357006800611391525789594763673789566825468118231812308913176461791230272117121629764511920734991854635502761545786684761532838562198148381103296202326501829818625060330878469549908511497193369760580955820932567240481579015903918716601486274089795241483371375421048997882003034950038317871026326513727521795408827269237987591647851281878155920010576914696205618898092942224116788169904551871366777102016012684896050646103313044018445667784575341374211124456641294026482349062314615002733504198985465435525342610570952309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18842972033124594042317297219172699404672089947311868527175102476259742801358961294685660713481436455599595600887993370335442357878343174692274437231786566442219739223664678405181917095393778953182346883914362722327984719145211982650193289686371071189503149544493281608091100948612484048813193137679615959115045989298414697071459846946469254603586125844483027893325248527461254107502370527468323353427995186822052397257789883487293189525242250342862543277253346603254986479817353724733499359464015920829872495757454025631843444246841717891822024932894306984782167065957058467552033674755957421876357821412649968893491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256741187409553955276509684153542918277497837091184519886781281624630510447293544743789334042089863809132795772398151657851527641393390566278413515877833238184641465248584050745540546366084654448594936367843525167506401536498503107382039074642047711148097116120517450321310700196474803689323400991726014269039494371068273169639276575442119412536893109500942738213158915395685889725405403066353342952485445281501875603100958427550595257291384441162199122106227784465345016346364461085061404856851122239697860583496531902673087215356259943134096664683208234430764659535070060430483052679141467396913309969628422766427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18689354853578000130034307128530353212613910382019607924261690830684701518210234000077236738851267969914652725887644117600041602248351882077204679402704632352054347739382573359682348780727445449279431979818244186827229936250837221304708079118048971050403801738066194289332324689846120242684610748997561243618646600907108506956916966633785814320656754130513704797433245084881048701267191334840763045135848693927900746951044042754314239493554214344621815143760204329166558483351203846902022402472571450463759779625961646971075270363703434487714696169862087934460814186806976602915087974736188117117248193148428945456499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17261741338076476730191463015391616001498864004813095357628766725952292260790237796212171703522040076218276385938732317809972429196258335150657122299099771148572824612589815114099863686926456969376067618726454639913232358334010170015479554991649307116042445807028456968545504608363113903105186684834775003873922200989223515787599152937602255705736529576249708594884399283296621802165475947525403777193814207144500995755404521447260037172974848700610811022074973282494336979679852653027529864101449323609562642918055493675056739160848061847259532392033221906502647592418109012403217816986356623170318821784907823016427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300099540304058214445565918588030522837767880715710948816243059845739386900313775136785323786877887609214685353742290900033813998878646289122390429663471483696706832352051399468982364020582855005487479984876550299906994587986716539108026717222877637345086950234079045701570579787042274049731472872039505211308413371874287798296131089931659911190605454865630082747949065389586524114408210387944410416382525660172385080361626437172968300055540781903405792463929856227420065205917970092152227943724969298835740947879284904630522628930110268176117928043660116777992400238169604536865711470877983084951436208167387129679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21712199360254451827868361481841123668960587078684426694301432534165593178291313372202856009358519170403964242019675470305446812672255232752350451025095405793164364435502678920601474186997513810176558952595455818889474116737370067539223900919300413938081576961312570156702471170034702705896111461850704265475655700160896766106655656340643418150643238553430289321692913978837649083109878327136846874284919365449012735573179766989609654408245755245482350256192319348216828409721047588504070426153316004721118497740609910772526948317221645383467736499114429660509833816881286329423677029189269770797580220631945432332481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19012100855663636535962681032233259879826870937627551070239136796691061120095997525215293656921386854688260961704662919461958460842894854205905452948534746191277212468829139129670255624387357835429018611563378867157768618216367840493154641331532177288092035503751758640431879507811550856540077335364706688891680481602529170852013424981957404245349959360579242103014078128061098703307482586197763670482769013526831381590722680672756900152765632474208019792416709047407512265861291331624477172092736465509416172804520719426433743042196415364092167326696579812240714741601972614670811663903180226875496414613257859677497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23612854016448087944899963533687382642767758619097404835045768829446104999424731954573301890381069604459747505636367116960364325974307070421644412654444745803822696438581352552086109975211376954048634862217207870258930463840517492638586055182268386818814164301184036404111634436105907249850839475093873880416961877902797727499705390028400220579681857582007697252542898344837179654553793457868844830196888211676650507924754307468446826425395216628537774515472420471837416164130610645128715614114242468077388697254455822040004720966707280056660085991731098447084856487530091984308723574896478342263054402148246940212991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25408085423587255519255889364553949593231312144144539581045234495694596722603539579229695116596453004146848074857853584089444410136539643608404003978761403959893149944454897989957102462900164324254907674763547909885670693257867255075698056278564453813395247629897613602481623535549405592609307161973817355258563303108327101986756264645161352663069126344892643120379823411809093185667358724570967817808991500527686071112649996046270985512886482527072357839231504583717212428293308710290041635975308155923258127667787469421670707291980124907262030004285928005047197041816733239158575172416610626105961570695399139172387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313298915287602585561555696639573445976932603908230248853701549307762138912701166911065747908242969913252000480457871491947588127430402597993081942774566102393925908361980927321728653308764945230709413383240356393147153654232411963310292683475570340057276099463440232275084136030365902833729008261180205683905057458316007568019987365265761553327560747596864315524406086892829006421780315139411400769940765280333828418811420782550478216159547664204749418698843457022553399598649222301311908119975397161002507101916730037871322606401364415523302793390963115903404621179366858475869918585200754384064650210009864836073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370058924706405084916405419244243498859361652434823466333107864415897938343933341711529464891273368161008304725701956260856186145584541251815729397983233879587908709528798405881401969546879284330762730612380756631821554876236443959670954025198164334875783207582312542441568786042466876498558430668162422771709668046798429425569891720492651124860607516711025497595328330581245235434089723001582716315602666053088759226337335300152723073475934418913184761429183727140359711836031212980552265840945443273828861882271096166788925476652330004430866723331587205142554051631979225107526176222222826749422533643576466941607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16215633627587018565259068890198055827211525624256488719397358951793373046256291150338949404179445554780031780191773572389932590640948971542121859768864966837462199643029841467202314173769590553961665634361977376203341179504242601768563622660056914581019787363796054731364881315252092482539080160679731969057357661132228745022990479726319950803229387403861326240616826869706984902555553952229039687500449807145312051431370327190731813898824265933829932782924183153122650572056760931566750945453718472964028672772630290291380901083312772169833969433139530809924247920303053159369755730420993525808211494422758042542031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16522518222165554492363955024182347381504274132046584965282529826855106395198866550452901310757941343705856747682425787241628605459754402465850396164247310036459374596122027118930937197978565721821967905487110331336544550331399679644804858131549324127954151241359063576530310880430174924094144972395167778734280210724092317725896286378814054975445185350576170491443428399430829826189577574991513664428852707716706549585797496317491815649391360166803386619409037384016709934826677126234527100713426572403424356641676248141569222945120730105089118446726134440088924363827512659025261817559926146862141309632292548132077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16240266681433712610787670472872745458034643468153336998366150632881919149154292940316223456420300318714284599354718695137376007255932999039448487894613391925873651551858011939360905816433263677244677682899055038039549696830430532649604662679372631776626835380613734148242909887395619498282892622991439526336815697833513212027645009667581098537766741529365529068640798648223005494556127904179633249706613075127644575388650386605029448824463939746720846250746876111485217444277888314849814383693555619954457478192624012428779061301843383138133874647416275746973039827725780514870647897171137437295429407581584820584943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24324037684939967626923775390689468932845107402803700548836663708189362121664344709795818654767674977655202891613471927885981571709935465895311566679818516571263909040910528299028981358782623819680097013874297742607062926529870090119310307921453247937315131050929122128883498216941837881579702610612274302401786584053917782112582398846682482246960010550785958834353870907209428749295159878577876863407152979735516818192980057540018448696791407031882326349055139513044982694762761893133379017456908701396048700669212919114345310834959177654334414299760572786865194834421602829916156456164529628521360359288529938871607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20376994625891304026531014555108368710833455037044431811308354064915903898556111407885016122060465423442275166835916865689083704716892704670635976440320796300428904899293612055875929197055394287162394151501722296714327072156914786091355699611699037296797904578957165955137025266648019093166699025221856130462967039560938722865852241276379480824167624827361317474191786117562114013384129607907685788078570789300735060430280035457079400802872795408998848770969888568610784453267926122017726833637232870516973238498930433335400129785692848474613201471290166944952136807163367609603545664672985282103842974076061187590913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16207999169682875794801673095667338671932727406816102884586875556075622148268456058111211785341116963464104865065738078188826445094295465821082106974667717425538491179328571978716337247820549161151876516505767006323508702701410094808781224752710904781457884199303682299376580329603424814684352616463317455340142967786122675039165442965118096894647840466097773502694820908341782658807522726641612970268617651419106752911012152285889804525050381907811667227361956786855538012483177926825771496601698786450296649836671575829827818535678627289877514091309059220830906689807109875744035858309232417685412361495255255621401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16656762186793106231371949173434583603998879182998884461626142889903210072341183490636425442768573914523248239601237226901346571687084646705261847375628976250177959329787030134575337902865367080089807617121448799351153373870703286392285073808217614781918725118465797483194807778645136948953287223888372256548136062645628034952399880280573708858491353107604268231993788770715672187933858928357934685020203522171212260686757221022127636721087171867967705671179600552054815640612929507046013412542929162782307152261982914591612066761504738550885381052164091949955676948799311981512285323569838517369227953809782786944289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290517857083362471432931034520940281792000978494820107624065930412099687916053982445551513751479707655697353820022709127308708053060929719748168817489665010484930250279676310978221684140345794341509129462229301621534457510269741243378084850679945605114543799876817289656234318253572246429933006998930759719118507300809294504280924961320746326131741540750614687447906420849837067167497898718482618551140424646745727156276274681686728819790416431252587394988010940845529613892728513407203573923791800727317389134469438214245432372132176745714160822997325714047556254991557997869728213613633029168126014200543088952229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16595495928450938855877990291807015011332065319269757885606726321372006115947727998553467298075655252360456323479127671511128241836766121581388318327890704216625091708635853765359684796170116238358629914958554197230423212051341727974859184703422428199834362756777329956106652162951348539588953463248806389797492392978055523849470749154493225112467234846123100280447821823678807154306684693354705804090031544974860293166854225201732473122815444005781819808316980651644785931161908287567836616956641221763381835959043462907390707204347016474568601672029959581762070284828650160351978978869251392016310790135200336965073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17804929654724550978840426660496437168156728809439167491124168540421311640351409243556454635377797695653722056196695503894205246864204250283802945825548222049337011412170776665747429973824010348415464033060730606336609010272041564102459287551051791023462937193976728567425935909956798088883087476925820769664415112240212499960109913220738603141993815215359636147148270651386954701458520354979667597601441747402877218332503113876206593122049640923815295327957467776889506757905112814709693144104630200297488028747780006232627753969715672221015321773188336611346024967277760026586460245933253676355631484253513270446929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21023367320957519689236223023087811024047313998140464653458983842764160892698431187096611480848363733435691472962788657491373491005594634953892217153329342581103583099555439197843809514343353397751267857192022823968165552001271777837919237931738531068842911546220646448965631941242318656062057095362046881109802392907592704723667148052281902290361541302043238363655433644341308259438116397334531731716680455147384964186336039099479365101652007412748343247670671648752419613286342692862697019968072974982911685586164376151007491175485121382399476704946050551116436754127916193384430693158973045098567455553353239394417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23602518349161411144286882424026787474659866109835121188692465920312643696083894517242890360426081367065963687775891793653523946493859419462105294306889984467007049438968528972359084292636372309804078682370483182546539122926465714135450918474668473868247494198899886545495218990986029451435255091767124400082704858630115465980041389960785367624561275354322467002049938968010285323669450232532619798290056427108511904647787744206224868053794461516502769750943932915310048986774324133670112164630832102349391521575635345558802258666416509653141038172207053576240184248385739133739328032383813228624956210309765951073207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21704004578225148790748373753179152758451169302572640568964424139027257575812520022087833033671534354640473985863227667932306561951959214499108027012588937407824207181149343596153415762985703049320456362280820634678435645357543634148282061282702741757128210747557721157426608194724190760015264280369373354436606668997940603685273964673973459044266360677688059430365707224404243588597032796185614336802615084417969474625531368826130333641799139844400699626991981005903530138389666394516913158115582687969111725117118919976640673213567080369877082438649304530227311318693586614896580713003094609780024740596824164725379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26524953397229395196632716188048347057573260662108373346861268718868502418947734210037778549152454496090060675969740384655845742172351525738306978584098644448888401628919827494934952748268800010752755212621820262885792913314134088458002658130228120173172714787208228238522859177080740318863281580936599298153775778422655336290818838146141114061472514123199053896386132791347117570646625455788071706136472746742721296444188585763501009396911734319190645081557517760626374432508818868839301521130531939230259672800190378691128242796217322206837596225719449802508267982405986312539737253241682649093469609482765273713867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "23622960776448203096746059813946940261628901352875290278332010498020108661567690340534349990110756913601779229311574317139699888036943777165998610482004400492417588648200642423815740319447907782861469477953169905348799429040348466875047147760114865702645611566189798846837319950928852468728584315669460339805333090230388800247984574986260259123247984419485054429891491959686901955923720743273406579997573096437399448025882747502249011994560346082251746771726097388348548788613533916598727504217036477488242085383282577131514284314596536352950439700150961253081806028892522678435441229209831726932499320329277362281297", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22755335506439586498073929469357488344799304454425381441942350061497804875336349594341487045239692941279389484940924674647119878852018970381876754885491312890527828541144440514022659876248241847276644336926914864181831898662518768481974555012845533132381372125789250618673647930146473035502045872319216801025171000121218115768586657975228037669876140130953255070744356511688418752747357452356351726101001825701926404266233031554179701914187002003930885301766728278330751829785880231084010566755804664976533330283608452807492296126095969151500328985396119603308087727149632182663073206855527880155534997493544427726039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21095652754313861881661840860215039758085619842542287493875153788899891406606428284683023807237163899763195303901047381765631748028062424770803608493411223124315813258140310815945782731078721876408390014106854051539164949249833259558138969197841138520277689009437002962684853392584583237291328496008877349409392199350689465621996491859237419926177523427403276921656246607381425575807765494122591609924053337712177094743584132203137847300646282660348119707648101914397418797942598735849274172037212017066468360610236425342897683762709294712248020628236415926242583157315988465488685854595416170785087807188719450306677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16403107088108604362353802385033517949574919176887024604691162175967498932400370958183396277196958179716613669240641422173737402606787493775121988566130604947307272621843608689168205093540870631551508776865707460015715317425630457789600449016757765323635603065885948153910446791743734288680200203281973692390159868416679906173126844182550802563075373302084908402270511664894188641739408908683284273744814202492514440130731108234247244841238383374954239053418234967625768171358184003153694065212706686880739799382508488561484066746195639008064264519122296194900622854540036370232335945753409267646059170611891983018623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20538712747678277154830914821435055189564141138192583019550039545115161556829694394848406072073999083705563859992769032063041703000644217075585528600342757499999525723013907753716807448749188390052820004914975363351660910093695107360317334083510314470162301843182929506092843843086431176132909060103247305953580876687805752649606320751221353968572285189821711677688459452940804550568085831550123635428363609012247830182981334063456262478657274061651293465842472386238760563673640421192443832047788498259808251947594799090381685409607761200327880030123671154502187422891372033520980639751877040694823930979715255165809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22847837997631838712859960479619068815354914547712968654445423074532843468034467135567060318605097256670079094153625632617171801311477320273287639144874441161991068087244759859306958453569623851379713532270821240559821846592849892577352826314742492271593224024053084764075708345718642254188153277183889567014673275206403451694603066530334300372388614801124833172575874227828642563192270316607339893839477665022083336226415976640050210378260622045051910183290767119118671087443757311244289370355944492221714578698498821384962290049946301334737791767771640423983360990673227700290461245014798838504699872558862746330983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278099583189728539702679092252487294282226601305705780534817784014278779463169074373046911168567198514057797414219222663937253014784700697698306856644595331191345672862044161315040529022187543371797630034215374644263704497515503019666399006893372316593362439505138364201263385760195729681989663298882458090127298636030677939365374864114918732657561583791439588616393283367828639749466446921218412675286653697995122914676237491619879719468037348555834251072680924189216325297490242417983494508474909747938303443189122852509791689110040304221947162611265961568910340229749313260964437324022842756332969904987522921313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21832593932851347436579912378073204168827568379698741497321189568963607887792682907492089319273320890033021081102702257825816636300293727638165544979383198527149092668782105962838767741128622927134783187206793730822298650091313886105053304804876361755388968398327981654305906007593470939024660131810840698378046909551211971963381371974741220171105185109207137177601546604273499480677674073190316922115515945697685549752264014626927616625507499975821740493641327812756101059375479748231882143002969248876745890730108386569457483370504237447905338612422888149295636453971577641968942646409486325590192022280636307685197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266811708340348036045109253206960522637849968438178935804980371876661224429424149258978468335095499365723864031373155728754428274192057134165561837306201732639010716470445423640794609882319120444438773878788569909150462810668188538466045689315404619400182117159937317974199123097189223428243600356361532498799785891849569531698276331705782245701490637859121078674055892752202851697849900003842194008262075659271143236012178292801070725949100689742937670902626202187123530816621550224668925578323571495390610128711755541013045112886590742580990176439199121588145748804316959561645470451929111659305901894580887574497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20140806996236577984855526440029463775141160904466220816889344901852349816292558202079307411272718946680078949481547461534874327056954856830578552872446322325477398728201297646765074338926984298313003531293611132836689006639684362541485204448957980249796361003082979072864500244618839606228068800173468439065516962454285537298094366701025885521199463369504115957929102619476061135545870248316471144372628362698227542896537639533651488255851501936911858584130845733155200035547837331830193190234821664573042073573425927729597405928504788140647298775043406707279112773794317761946396663878686791201223318384857725876789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278104386148209303290571263538281629491635909969179314816649416454568144107883926319090530784583623999661803877383235026975267139944538624689967861491104766856863808589787849539917507289224343146298957614890689832323132046479951583392062329376430381960593006826240114027949956578301333408806069148582501146322668774292655550596485784290345772123348833656500729073578786013476854307136994869042270774193746307049146495988258109001845561395417901598081514141987029413810232013108219894810087617764639423064968378123208201577885269140242182273378917906072065021950184578068074203975243437137760545406625879923381992947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23772686819545040138878316800400612150203842698094283160048558106848089248371975653028795457485905351841384080056786102571808062926835182734581412860808213844847325074772019077792270282765611563249049680669798838404271037390618851428048506445408368978032284897193339496245553757969623419028396704282670075692644728575963406246574515796383261095790018459381981146536121949244400441090863955810778414066405427650915029057349171891385176791821850291502590004142078327964966094740146583855862470652933216689707489460787281688747006558384919382652091209149947318331103986088072042206409279218511639163469022851165485179587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17737132041607246897457808407300283596106315520460882110802252521398233302573691098560684384115629698945453103467750194020348277184786721078405724658868800762811632962068739291947647867388340596322258575876123176375482614035447240610335484716060579311034105996616972182800145093106701752810252607193093515658314043270124781976659061783443420735079948595059629723522814831468197049697581521417365103589399006854743360812918275922239022515447168561951848914741271109606408228829693994774649566693565590269160002939352380150222941270557551170014541614565394165751025196812424956645915663236360673671017104654924186409533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278351488687272767896625731528416387190039824675797093410472818174344422017861259423671474072524666074384584143648838417417975004045153110260017134697867552321530485441839819806755336470918643757421558378904017293650392377119876070052622004668983702753735754844314174941168485724212231696738310412948212893447507223365451524439131618965682994374512047255248043844427702580514790421325279833274685633303413624824505268316791272364991344809740189467168121988319411051349861279087337160428762600264092996204355380458589941571608666131054795811338062133408907390863569096264093817905041058570119379454922518644077873609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30103295887884667379807405444078301996364520956452334836028648787769100533384782947696095180325322488849850046211475511671810455251039342574147554275357151460348414402621816140851733167007071408247381069739422066112590351722867959838033479592689763805024306754062248725322520998953666101375193058781242755255235041683688895361130542234916060993987372058665021696176880360895768196950426462585079612982275479763396337879354932166588565165594624625062538108903828427785274579442217309540183124849531574972867056095853528083996175494461027190998848366472389592950706011153535184603692154963185560773217677000585361501279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24332906362301040801243806065877365036126427402056560844120057910980650281221555421315906254256054274771546170031772315369871133077691376292483542995548219810899487993645730520146273544175542023485036467323659782500854233209110804084135214444200933638251211738276541525032734815705095658432606825239622613283421904777457461027185725861123219326908898421080838446719419105418531307990431932992147049055902031337971076437575918492083917211651446635863983234512130351775729328685852768833509823261547913587253059462794470037890459454552340324042568893029865736538886428475712392101180915137460316608213422842923175043667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17116570803055988815202312539582629453044875041131157920378445853624444797848724231922730970037504603942599712299834640851723832582394798551328744236734592783452690743650523208489919736291046304317618242328055748512106789466706565217119606554714689995389041779710665286769813003841167043079906956493010464267433032978862421557728540246873706705583404041937863111772518623078019611873486420479007280105671727131509520429849215295211903115973175737587930213570887571486187727287049172047826796462315114729045264919513426359458437975594307057705051843039042652303762807204309065893779255210748239023389666473206883405413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20661630621337902416493860807804880806313638577047060567077820805621486038278397217739545611191964503647893473051655281513693085147213036060066391665119728358720561501734741223114837140395485645032359629170951906039150697184308551155717640513222743941785714100108423481802165131651835221825055681842576511097079477379862006368752702113490755696971106909483919519598675231041344508151322582133492223575636157545950389627518963096239187685062361459457614723208948194456022672886239347240962960994322634016043651397941521339600447718904613987997939387114575279588705951361165347333755142318662008595706313432503408009089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330050258199407515850696968162004581924285685131346971375282016256779295926770363656440942998736413633060218126852165056475582417751806006881276846392303605801335851513034645853921729263095658414666523404518730605870864932329156180666405579769801435838614740972981881482854907158090391176046143957166996546878962163983814689746225062464960157401113607820867616217253963572686568506788208088521781531265471239569350481665987645048155906510783138638956580712320587457033216606923192607081818603054845960192152965323842683597487493120525189077940335231098064693516196101244172172759055160035434723442637304602209633531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19713771471095847174533463677995688225395390892202208741258297695801503056963915197820674499168238672471334555054822680495850522379431014860751244623728658211231338802492210672291071319355733260545380977677350544493419802704659328410369645603521478077260190560804624749312808061662972305344488127227949402406567451039276189504141872753761662803278280997737943170902431851016807287418123042588357378933670387368741162408303007099953723566297054227141948929353553482108535649029966209446518401845367553677909753508589878628513939901514807751633729305559609640960665130220100447816551210134576151236135206841610929000713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28041596831475572373344456587435797426163750295199370569920521990102578624896597779019074307134021077577705498089802611220614777003465282704838755805518468879113570427842508492889833682045203404423591358682719118614070201342791742401137095807701579018168356085103538347849192134390507780330685154207470834863717616566574743814626605911282977141430306360785817375033510944301396457712422474377461454579033188060984433832363057322767078843521941006733514644916184995664378291370811311851175956046343386132790083570182977704894368779917052931416260325218747926748632546712674721568878239598857345961589841699160803365153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327894257580516222836056406240581357551625755337984447384673903964347038692130126590789761534399271294266305267843180818012660705878505680920184251282855752449689046486531603888736914233478546562597069074091214028000557351379928756345244842707901264001319414991038660045597765515434727492295633129745318571607332969594000468575719047435969735425333262825617930732004324963291288968925745378466168986838274296900397211990188350283054478686591846627742014250534568345073782339246567280232375244631002514935536771926888308101078377426050641610984499052303894345186666636156348318683939160294068237575477170414464989459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302317816795925769702847289249533744690349713314776044497896494260248827352275030046541275438853748178609112713157110731011255330797479481171760876202542976339833486785292933706066619798607785710474311783615045707304466223756205074255048752234125635826017844089226720031598895761048020530767623976187341118727579789533614114284682597413489304066448062926390910113797055800387789033790751108857351685990938820734766335836146022854540258144614910197813228651596002727692615084039296876729417329903841831717274999465525607415759246574139783092176359237609116595217597690333073161857605561799789536889926569190889523567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "20914057083706711559811059113051365608874035864241553897231876432834942186272303107049230488450337626928078267815488138767263008600834592494255360135406472762720656125358821509538079000659848686779472281904492550246389490936633354592612206784264964962075199793744658365921750738109257496621295192646335979810209166693287526183769985707996939282301471728289391171373512988125548237077257043687839629023853057728114003472810742031477917133257319339114446411144617155097319666961982079249278799394377673445170815895999762438277503697033772923249400536481844099200040330854642461783886182852081542129017679571417525448029", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17503300116274212147086528457218323724456047709382648137253773457669202625650824218956162324452741078509734927403341876043699016744729232502609691476118097671208015677370052102474323803222701889504543174177309863097553658888281453312838640673058320607168990339609277230278512577086465455172295866782648305939263994689792866705367656003370320335813872563301451925437782778325081686671045230562017801992100995295679976363086061980713391291725176850741934105615143804138119732729090838774447292372173370381528901015505373666239597640269708070841458206462748450752077137548107507170109737259771913538261890405780435692063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16434054596929325054854173931325381139354156729897076329284717070661947129138021293659236424621687587627802867168670441014968446307267759672175466786809037622109263477169958596417197735707018718346961846524919544879741737545406693490234650407284373568151401057795615415286972211947051400718471330140167580168020415601053803680719592337576929928377576166852899849668234596204866216318042775941853290536495663508629521067437044846217138481224889478068917950976276203289716156559922837786980758240795111675252468028367227361392917823297134074367851311831451392273939278692197907773214086122947106998955419565664190455147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332202385385679362812466010474446522822013772019265234376437016023942978211861942046728457579821232520389274722298674024543491986559328354516937432376117326495467429609246581921214828496421938871050159179867945133635626310995960929951611242312785167215367206380268893128752143267528529506476530973273013596643912988007087936944255722706881359620468724201576728796108168235144161667996694109699807735681634195436305470987760737177607287359002912824269842771716033240708478956230798102171478381850720931265340802161432166812217158346942851104252073574046208047309223705956593600299993534762325500158152734700899880309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16365629992324633220206727564903671327631899320950698195078969461096831918493329641162196415266277912670607133865074648960268189329742666023649380772767282979345380636459361236629004545536553468565584647304047660921052961884009494290022792335665734592762992566374269362345286650171378355739600297545492553598924260529193977354296324419636546897112204600566211235852601642821989188921004120311286743381178315483370656262775970712825522234403372441247350918833915565022078684027786232968911273268184177042237664899352958685858290152267350272039522946106328825516685445774635684981306975378209903109775432125113052752379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16952509977083093043827750048904685668328882650579777643946478394605699109640818680331894638693080675600381536698277015204294291218972672812722010624962028711801470043662981833629272270773577187160945927962991231776535953382412545947363623221072572761027776161117276950139865520345197041766120437388200982589475078496891778381114887599746620488295974712811166178351956424166731506280861745013282772449652949654809459761943153937232739616711155340948720369774937060248985410693565699309946444637492191265567709212248764941001596826756448080066709730888266154120169505989794419563702132204099490709294134239403457617091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22560707161801354456908279082361423498996255936495211629731230702202022768429605567810047280068595480894245696056015695443315717812669936901044771105108773087831124459228100779577895291347407576170158272599418819534731173122603298950152115335441742925945329774223155805969930490304297451775985433609954187162345269075206822251928600850225972691101189534358271304279654849749190226349129557255897904136506157680316239091671810395730924410963350820085307021833644167454171027346341860512869373749814649934056593714175008968828767683930142537284201561699068208057901212238850861631703839341957928415732959766135101892469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304535712783876730488396803969821831707669669858192454802450923729370797946944221649612574259873788538585505814650291430012911769817519755751569961935865251121047991882385128804721465261265904856574140980181100149174000210902011012250463133444639337187074161658214475341254748840179164224800664574977769639728348053217605827834093833146038740721660937421134552791173303021483032226693620646643137087568695788329603186452467310642548623229519607317757310810015219454252534640813734025742858850436891952814031291003974845364306091579709482880864860580084553897549981792730784067241607509885134777328876506831039899151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26184598966893233631643386438995536905720953320199612569832219995440788525181283850711182907403538470999496577064393282121198819571236451295963422629649848700188713543373797172619270947202332445239190066109289379869538872629746881660655327367308690855234760796511666251691842754861412234777849873921013007630711644309954393142479031591021841185519814131105136376362649568623532226702474014618373257949541274014235718727941036727207162507069948745279136750973127111189425587989348865075955159101250616311156421907522344504807855037334423159116828549676532377456706387612589396251671588133318419555787508993050502541769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20692808307635480328891667417717462853183788377791209333947876104333550971842090409227044658122296771380092181464526402398764245630567651504458752658107278140238279002720790783210005922039772549133142810747063928978056811022298997982069980237569264108890255280644466319878876137685845280130888381293396845280476385157127298158091649163249929034362948357618565113435496005625868717413572024871563138826319246875328593737649565636535684020769713778815137128455588828036282252453455464461272691424216580335130160928392369654249570575090578140116523572130245638203893875960173941678782271753678758327993198965592381521043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360646380419888445435872462300891170758268226778220345644107410229249020534129357079956128293968249263887414960926347501085202940224334286913398630614943595457871595444515301276438710932935820604931716250318020230691717511797665201725665378012827540321433684071618353872549549164233210067296807213884427173846769614159040551100680370409323794607550056620933458292186514952396431953471771909376362015004786785888874382746145862932517419677198543296149895107262069318468883892149263831485568352504549509834577824297268259070181882739086829144618493211666496288875886230944922770625692970323125171531751468182345173493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378218695296633608167153047796505352707606033246964009256854187813312512584457515131220820875003284619995607072613800686048522583404805362044242994253216784131533434783432005348707643091984059514395271317204366855006713508218119297034794435249739964019063481293521592062674996820443841105727877822982415900000961917345089298166577814626529383746961715300114516950670428151741630605934362694254069752212204028534980441935201412583947192242246410926186285052873749276167294568777460550425611667586707211924994143922728343106668893269644508398343855612011303181010932432861491961466845937629298286657654983588755679561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24042260884171910791080930757445662900839552559181721574950502565417118995618126397363595978123978593698473228055276880967498849804452535600080187029917459608220160619910608384503092562067244208912560333465237594501455800455725810119788278686317874116395400275976181333961036295359711135962738925869296093417173011464168053907124484486866484531183330175944700159021954851794100261153026256159681048442440750710584231524234342880526152571229345490202108971815499711156353707556589636572607130176529285583768261223276777381860741848125618068062890817195874884084649146030991579571798038344009105888351507405634808318867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250750170478555557436143772494765938015197932757918566611313011889856184705290905738116670060099240839901909383706910149365612510419755848259174841056259624578404660432656602021678777239255603555297241661151950021057440348548293609872815728183169069668193392596402111547013643549486233316028402324481412514715501916408588254118778115294326240929337173499529191388781466761392470960889843745750716389829574376423172641090737721567400516524371485008851064442962252075058522760849795767477152760549966602089484758356136373782063802033471271540364057679513373961753333095987896653457058773304425375767457731551230346727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16503224052126852382578489540899937732579167206054866214725200925893973690666169306823921879194231868412662999986229050220296653032338452795650982650496887789147454380775570617976404777067333315798000062151749157296579676268324176291476091482054157897413076684887002194159364801194004675326848551674239954004365443720275153596780233000974667092163780773661014000278090912806180497771472170000410237465992190678033513980982110783634446393883179982025585991185717537506073812095579118400539664177152501433619668767392356762017209910372163463409349732937607287955952323471556750652989506887365892234205820906971573136253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17829794261465438084009488473759326327516013828441098107798952085878367662326558504610551426978345026049598080048398836890426522751835272092307116655642177791274790664506765099057405237324748694798280761090502166749198586077184488977410220549508999808454012391244505451878418998444922413032984226361630155091561366924143218224381860653301255097053501580424177686436282525446840211315631132220091295747926474633794385704930147596446938176373419172472592859386227205270256061595543112410816616988744714179607537205327238763444261107167928575756337049120210296593846666049897897382177719113912926342628579746549926910669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16220708921424107116581789355235176049257392414987584260700310702020463933553633475837189054989065151526998089666568944820881975223804234266888634677695927800772799235387498020103657611342360296110911616172462508835800907018052010218863836557194836056122103945282644154137134117623459714154304657495719580321813798803359716757315533005780857106551520487872776547890205152655591839336437798859096774722901211394708961492921269306431367789401461090702634193656711301320060325777578227750926650054291462103438060909504367521214437215191071967393547383411600235605300316388848783233947326087440565532617242832877462268339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = China Passport Country Signing Certificate (Macao), O = Macao SAR, OU = Identification Services Bureau, C = CN", + "modulus": "17754622267710870372147769508474387588316720893463085813240067896731608688659000045813118737677848744376670444624860971117872246976437542830045736844441686275307596107708028319524246368825370882118009604108564497535586665414351400839692047050376240281088866868925854659382403995488514263726429606077957955750814739128313782549522974253806041412652189085411830364661744009383833107364959247346817135994784480628574776902461268992463875262855751427754950645281365931794358101943669050604970274043041567584048478024947066890820494191428456168534069875304067996567159098245944683651009464416460353594484620292607027652531", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16264397264042751972040708411099657166484119580998126758875157650105110149762318835952096327377723903005051734626526313381405359103164150283619280700182608800256134445351572561907526828342648587637426600021325576641817565132416686248246387709954582615892061935187781979805709587659538993791226511787152857259628825293502488778846344990334830096309314519940829478214782825445121833417164627256846605722724287768625830162164849047999313720663722947034102151046060572040335227714862361831063567171687153136178594044316040796691280029670433965875164153606393205971135442680501847032170474597748152061919990484573557399901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18427686103585377132900125380273869493525219054115022051507425932459228197582440785953265523227293948503503730375660302408162749154813837713558693796994848015260778499305686280767623923641685854704565758931419366037754640795521175168047592783136173124495667951176245403835305930784145984519446051160587398014199895388809221980678357126591743530206054695035006517011288928655655569806480760324233414458862440469977401384976936494117787728231856166933542105617617845977947083378643028662211284305405461156852248956519603148253910626618965939580017817557696944648477063129049512103638523251541324055100303057552822762949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360742641168435211968528112254098603643761137062669638912154177585844014710793569375203013035903952401204185754123914818255955153517195903528129931642604656994010263186411364124167534629990447642166226877321511512460874557274672673662415666081949252896470198718087847715952585586737764904903239750653307915707187719990940025483075246395532804922061300586540486111947958835461606114561768095109467257197912230024378663426391779036096654603494852122450401958118527534465649151861647309836520804681962388944562522310453683537747087963890592265950432515084141622888876264005974606657901991421309407110961973011621696789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276371194186627745826953676327649385456739710058450635586566518104071320344395129642712781916371804946363872908226911697932567661897197432751684931476817440362195111370442629522464473411783320873263437255872648636641914585071190288688574205587434793955459072961875407818252442070601540489490123869791739285436067535203644372363586612211487071168423266868456536794346736132523403164550775347720324033749697397689867747844155117933240231153161526248493165041848732493941767173475206204815631238640388961390706256277709102908730741220125931584520654305529334226116521663872366629082090924454007457845360936086991537863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21296517541331244864806564419774496238937247089894677456900581815007428814320594505360150428344178037730565330819728537989963413641398463219040184175451158556306382483554443482865665421675709931680390261521334693180322126839362417909348028137426739888595339588347776757209085466914665044473381148505252183571141169386459230685822093507507695078774363860227422117913623126117263519081463179004669734099589933905363856415017359872207216043928440134162830772386534414878446399160800940352168559653711811749515359236041293590516184204953597042790313531160989041895929328037806322798872784325235407985969992793360715091897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293390988962656724117824834653708659244430268348147652895420420747074001902672386014427667424338246629900972517301129960792697561788327102915832421941205826846103013385069811666779647572162494173013789761787169246690674455828707452623595778812307206555058332046955781321815068846160475465329998326082855312888657771363609457691910996813316438811523977931149148816850108014398840741237923256623880152578192185427811577595869641231548440469389338614692308955094158815236284200013016965246629324533983333047587574245368773913766919578872015979363202766672454794027150212835097858315912906609869301555657794851491929147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25371188339576625317550638880248704943334543128873560749484403848967917820669647966581857840254079178364778507914147281405177229828191602395921998648960570287821320361653527141867270813618189329910706232427334108171241875782313906650653565780967153869355048839459823223916045091280707915987110982107967767340988640904363524997241937477023508941918635733403322986991722596702384701259475397669707552309969552557765456577995990647326722449902104965326697983347050451097603948561692694071270594107177168583671127064339930502135830424632859958044351036320669048866207116602008497169206752025464794355658269918820328555597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18883489085164111371481135819644301345522267171121305696422533253889971615588769401819193234722861163724730044824914129738480377886342370138645225283660700458248009023092578713309327487445734852657368491990561100788628523515243337759625589484257223613758998984008479929192143276964123417774621058155959215194251146970644395067323064191309870286011234394434501949259916377098204596941614156593037507441195640247487665055248271756490757745038898697338783344564435501076098771969305324080851299209860750372832846281078014987312908831544765762493299011321749198954086275113045381469405276918855950548071307239806457161451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16335660064341930332067021943723694630972399495618181271283642072915048760659817612193783652936676970060021657725210016122957908177044343643043072014404139672541290412035455870024141586127993530232943341719605207414802146782214964714876839657027099833345916478540300228359510020485958687079679108865487774843195935178038900942061736410697752613734106131895251747505528763522764257315252973914681006385125713827848072240537192569931017941578452959839094453453575858779873894226187395259887920821502321433120967943306654862402431558424739121157710750450555483370372150699111553730846299105339832605117285251842926946291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16719643560780510224119710518108212827596042069399973420513437823609057804308504580302700247494170468189852976567671643975288459222693846549270179625425516530299095960982865886135235660686985119874726104084967875857428538605259950368276649293455949813548905075919034199918841560419395497238946066672176196762447232022320770998033816678181514228322565059302219004544582855035283129766675695725720703441974641679257073683065661269212177855192607652901925728219804940449676129344232721616900238890715281145519196146070036392650204625462288328639603981742563496900387250245075107158699143895718925057357054603278058420417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16943896568930394995914742353205192731827680474271551277119517535655022978497800401049441146422679631910571683121493173157354598795679425471291594470211853316209463354213606787399347835348139156138381939934445524209145989436765888397567633667491978617134788025639838001871161327034244841224544577415051628409811505637087948659829174437538522167319693944543997159693899094450454762383439545935806947428755867532507519517104717466581070388878659851296085425974914712707400029553007287438678675676265045719884152106579329739510438039155971592703278373481994295555311654872550627011861910605844569363892284019281642571103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18354183061047511867444297345597774181488907152941107233655794513397147949941589939394015842019979215824082917180227281661830222034421699680949557164517877757942076970891844031711198192080229022580654624559893265935118103379575391938840798013315262876845155962141839653069946388234946993901817130747336648487507796851528289477958108775430591669633457858409708495574174757533320991674535006062764584395549399918054967116802574018215550935770211564487381179597886967329671036771293388048084274148308479122587662837848574528478774840260327026979297539772121523581995069442558906993696763968150249506315892872515320317773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25098480873450196684857166227140276002631332493076820499896125663765982859671654996746503324462765595984076355462986050379691953104007247878788504038017588566392723855630380411325348972306857132830821523896224556084058051597106959163558193732960212075521724557054264573792656702870513371593798168624735271119098325299126175676926296430821996950791548836253234273431459160893580975750782496561575440917449355936663903193782574780810798807504519378985765285908689967921050335434050368749851656368931747190139172213693773097084776828015033357288933861514619797962016089735471057463008239784686559894590183358140073898877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19980273352838800332892497820521629962198863650542294105338334895536800844415893323724102044445397888111343899929891993199992663627722434742911754890577449668543561408534418039474966423727024559703986421396703190761941219047183056854591404115719942345380679903828911646107441231931379898873432759242482100400331337932485948270468034437739202502585831344653687788026314687243000110996671258483515620799035646298079909866146910320843477945311002245635012920869184415104047727831431605045636418490569048614034060111270286926033780274435233271723475397813337044571846475744485856063649110060658497435476584711290180863899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324031458297399487929358648785228765487302506667667128215046874177687759571470253788339277653921828470578168605874565493556126012152920235941766128408008349794778241667608629949038097724780396067216556218716351868223435997316390017991168390808235831106562709802612537756473695229507776346999329590511079825371330461524130631486009659944759688002493081496798902250822102858096198198991342803542332166502736276783979581825489456112828513851103040644243719597665970950468607215374564976955736827413605543897917307759264635702454819066376570641846096832499572540730820095835908292556806260095374318690328514978250548239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25461418148762166925571271954466227846061912379771525115966858456005206416315027217923676632394341132902238132295489784559860291123485892626657441931959467872838671524265264649253072345796981661476242259370094875035830468915908970288765765666024301224334711362889958006288441570259877279359779109750157627097603333670545595406750996631679427895059946547156858937585385474297289230460880448975318108565952135299937156438127506828606119508854017861484320320008312693348927416098645212215885680307871093365783261259804608870881273339844528949327871447710962803344809040357614264975342759675430473587911038768799693943059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27350521618146452844095689756568839994438289870688392104339614308771657237789583992497322155892564128467446878991405026603202006440356809072504842834000584179659279887717964765517704461106057861990329774558721123836181832242998259679094747916999416023830548788754561428667428790572078620551552630435789509816200605583218991568564818213157805813865454724487190215007756078395356129316115894858530936624874006952746387063203893957004605356224513357831721363465785620837642383894765919561152559010443771735240036240051232763538930171498524658688013235218565136503175385389750513893181797643540693645422808483336667493457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292321876343760309475696229844473673628886153545144869291245104868137110021655609956291002995264248669239682531591832570351602309367679985696348994994040109383961130220539387246321512634795093511730337897726230774048705541951255172415682311533429057379141100961427455147801712737890173102026363258572996295389185953891461271096297052458580583870542449941172615968158598421825191263141408556292077236989689081858927193609721854023842676854940972074847896188774616488861543898076066650839340698062889933625597716842313567085328785041911515017301623241408463542612935041823792834651326305868509271575921885212568349661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18926852928792559242386815259276582455300688299298324566336208211682864917261589592874182971495035126178490836564203255406626062697146154363467858176324786182295152648043204568313145664408385405996178936150858805175237062814935227543527522071631071001327195092480682197938430114866499956438951933132275390364906934287372787194675980292591978690827132281424757544199661244835313840009730716856881613381526065363752243602264851237585622446275637604230794067252596562566656931166549039516079252101471689708836803019941249299494317056820801301410961282806580410197582161997888715816859666719903049814771811457183008472043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274080148624209267749707204152685140491281887747619691910464504843489379369255171184514692969351145988338027201188914395184277773934860501756069954339353437786705234602813079667186182520565815907298969296325911029037998294165078920859419286678759224922042485554237854923934461431567164025837505066145025644281047715569392953414018767242566789444346629612764226828127033200056657359329426705093554887630804852060881797981316266988736760373108382337631364821434161061866987810977511402322003484520981106274974268898917322883546615204858682352103537520537210413151941446410322734247835238014058646709670955684161978437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16363555476736409787989365363580179916283843150253070040238538365952406468474546079295334791100170938839547769749365248103554347566307624558830528801629892426066644567040313180841067238939991128513013095493941282279797604153538071943732847997655889463489777191177337231547346859017366531302847933656916173941703141560327518672671099611171009959344689195947937937519727831020609375143145822379802345522060674404945048393404488986196184681493640393248734741689085263784946058709571768995511162556801894352595837299592874597693813894190674619381562084422710875864609643942467112370259662750366433281192946865071586288203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17476719575839137566521954817060991659998521046798331010536206176904806521460222744554247203466039584964474373626025471846501042712123076570397794710448693001046361295667806804870415033574372346207368351729107744136699196476765769971597010059017572413720320991722317813128544624179951456819149298279827339414651893644773422793900878793555012566993362442977588632440395407811488414057143085463122259943749922182327603055818573472634599036422322437397126977161698472916237749814745517277381882093791417184968828386455946558272163814616015345963704863331798449703521177099161975318849711212667956153028448618974869439469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31175648359358668645340399624968348675674615629996926055611950406615742964484123244354981849962587349030393316050882557041083849666098415777238004182477720652376563325360468099579366210203126150722666303327859150213685702805443934714924761549199283711787761079234394772904420615304901150157842389434596866108518322207263523758403241672434876180490124811954426685333617569511602674120707927212928351242327311703167524361138421375760653100354344503029198910170187427544909519948221597103290392564787531996833441969023043990011267618256635223996027874611208395951398003305979028855169570663861525611775198133359050291353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16734121514254026586519930112138295659452287084550718452945506992877571281243111535780986095289825883434252170010722852985400541818127580293345083441353660110844436131430846479700918662459257647105700951419494744538211371466263021677042965985039688801437925779221182004965184961048335019854883196337715994387300989831750975016436515567807708060597605742304728897421167165711655034808936627058971613430087411743564436647473306527002485998223909810769022196188433336469956727756558216479741781343443382643149557729958231078657187084653599864931546826689458631906037402184701930810706580281899334443443348417721377626963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20309355108613403785974254422511817267884055228290932179513507445156107588449965512808915149384993972527200051946369388673621177184558050676144431059773992445674943972989439617792994302389108326653545779294828310456499466090464734652994658281498290272493287587622728736124594143895874513923206167924597736543527819429072769668415101202876591391990763371153799408381240295458413607501475480395025128674830298909056657708456806508532857073385704498344887453361749552772311073233849004733853135523774131118237578740315142494899338217479321787546622691250431903929001601801639804503088267205764216374639930394901705515311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18375881174940510406865893083666934038427630634973535666728313124643232710366282880416809291755715706202411847221870118146225788422755301744297248556755925173425100505404330875262933660307035180717387567236316008069037789661909180023240143216654968110348054716881949191090276074670755937106201444939396082078788283553388196067922402510642347347313063611470774972393457201360935577418460826403276694989402322768138118357712788025525408421181735306020955150579465378948841275253857701375388958408487695916983559125997215209139272434316133946323091384303736799506453123448198824266711460077341726403902597898218664610021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16261180160930755759673450781946816846403229258132280208131405284637639737692762802526299880694454901925572246142445066896973573733684029689878297939130774633558510983930515746148851221731517141871435945136346071278605799579586332718960475570865877645520861830429457942442923072626390780816032850824956202256986794977762945926574409625307408068863197591140775505614743877421247553253242766240136631224084986616110650548460418210576258930787051282778012116158990937643338996169096629145455577994701422829898076690935832355343371357644851020740453195319967341211133526697108565410060911068482693330075376628156479807701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305339477357419123666047491859373871155260793592015454863760435372015473646951538775425151073902048222540003935121032975705430268060647942170970257306917228606667732318103507825481260666521063101073117730566587688583331309413612405052713970336303220466116628691358545346275737370820402674503426422793161374667625352868955675916780944240626407073368608989221898114348381585980019419108721970045296640099668657759276712893328882580335099241968152342914043533219183762866206845266864759919923800279474393209350691237407193463648665893282596129188526938012320951608192393713763280164888681382869687748281208827238953053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20673016431064250353778735511776281907006334721569084961123324798930686062678720065556222606063141620939019503241790148133692172164749480010028939380071784042117792330420047700108629034089746196693681478975839400070668354313378233744772314580612899698013682767439770107790791232230363282399298797651904384418498371904734868216470717332656685537808462731566007621801517014120317025632577583560935455026081754819668966994614073578571531649216420043121891547425974148664670239046641917493568473124976178852010601533780930755137762504694671719748900858260422574764071790443665256114887688927156436775084208047419655052157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30072988458013961784280470393429708363784926895782001809303508663537728741965008364667771502903392178348441108276754314503606162133234028048107532544663006864921943112566563852121496850479284323530237490062143351991443497036543348084031551969177858732551676476962848284982068112343904122405501491831081176684531094033876731497453171145964370249687712434566214744572029802450608077116657626658206322459605873149931099210214501238979238373387613393697121839107353746340615633837114188306686738956017021023089804677064181631060871056742310474060034092651637956911077359938942482912478314374305758431159237295180060316837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17533808713587493798036999330221580704967523390790714335359071563924944061258296332593642935906257357852279212259180196225784161438001123978587826401362662854548379426846069554699327037563015083265520172762052785725290183635058492348530405534263188594347184343410933566337396017942528701130446085104198752883905221964608939976232862826373900305235065575041698494197719367656143999310908817018865392031387054298228085319506399231919200903854616643418629092236798221970071738385966260463359194996184381153685760207837991230597696726725819470984449775204102406242086384541456481365913289327699439983282921666568768682011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360547872640170727965804538159653371331822848829027499383429101363262420549127024584941922539192327258487343086450785074227552589321741671605434112954945072290546238877348832055927147669864938186461631520674197119876679827027291180973332839553556029637045078738344920656670853782915518424684195953875875940241963344781244839687284571771048034929436383730035368142815651327307445598626345732778507736072611441496101721786015966133944616694601262254440330128384043393389672250384118905639573662078908318845429888905932077972858069503101270584530727964912751739251062244705647142977509953594731732760072462588856402899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22309005204414431454131940290931429005862482837758085523240073040304038679003711440995749533732498337428672601594482900182983926909383709198950133858687856869872459272826758318581462735935263164858434340357375236146990029011460502225140994226775435743848231456964832540381725881812563318943405620798727846955043416525238827093820050251322067635051434818745465991565380910397151288572029153668093761651608103745736940940648642603569452063913625327953098183586724767398272958312828665922026488430709924110336395251556627440219283492996543412143250033032829031057879857374572047669987530594179720515617446558862590014193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16207445518329891064833365251780644080976407246635868986261507998381618658035503184244186508429332698636647674618726262148728862250696652503472361255036452057216495226768543040617530533973919678937092149445236592531768114221082276259266705788796954723042422501422830723104131042109459115517769850840806068513068277159051202628443239299005847841772893551028100979093100561244744283692939324519345359121634526317716974623723139442134496078342304628585614936866223898297825309304993094753757464541467742243054181066336392875585932574610647078251079702045331192965888989378854316029564851434906639917017300203858226749867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20053049316530321418823393078999964043184732615009542133474162191212235314575541877278753408685432682769860472383756447468299998398973773584084595847506258334358093266233532505904289352515323253354633378214350230751961887979872364799916458387389234620616640044731741877721407157335816931279884967431959476432084341718422004566821800783371169288086087897893481003236556915253889428034837910591497578309367030860529115426592904847162698259279833717388380438540136324182355378272836128416793482539170807179505648327843716991057479605867252269401512010127450763538239350579253129943253279619748724409707831547668227009707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27700158255677117677393861017879372352670967259002759972310400361902078892918935279002450515438461490936689294873924452061325031465462315637681172516062910525610904999722525483834818886302769018732557878479292815047767755769393885156638726364148757475942501676633550982453887922850978586318947284372470933589312318243622487316115583434007684903766220850460107828013724496807175433081257576810657837226353345764382520165472105980442345414048697557183556320747006133464510257209697566396423143776580752104566699164764331143876156728222226342861850009215530969515829293555472157983597151329454374289714146262166583169959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16394607874336295331165974914271755056423506580052590099984663022456597992222719200386404156931017515528575700779324865126503740917530184261401285390138224298979391802806996568130454432445455348371821679780760393713966860357216956979966750728805514227672056995983550848481038635390406438066863480732867998458130678197409484580802930408057040980296727208936531930128871943212664648843342151665732241050367895112762835541276848660411446577293292409890478846255932491631498161969046594032689788132761662463120074197976880447790081785283356519140078662897315672807958427413582943114709051638256848641539782252933400538549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359908042672148098315512482984479283481584277707005485571875094875230315726335425549443124488947318925633454969741277399207855513632945012177178885535724901779500237478999005729661498187918274551362031373437919905239538823484924809379384222953800485755818943851325308064055649600854837507292696110211609146536109038498252688038656012425240651466956080994138592550056079955834154129549219547336578394940086022490440219062999322983313599178867290001632856852994568556077010531808660481331799228657763324245414650203371515215671690503421105344659979378863242525276156054359855693228998576098812337167923304590062835523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16910692800586967231049519062779068515517499669881792931257440580110200277403431286208643310559077025149485644591744404951279207442363934881697376667636374313186530443246210449891894774293686088251244098411237828633319042657389815023157597460425895695484695428913152330022816273714026321918432541839847064149811654840199981962443032912695745244490099323054122923828974527432436006357955574018592095446515071030625572838216312087486406519553438245123923474751143769944896708085717228013108901967848566538375595749510767816582057727230507660312499663255121093739645906707812674642117426580774088087465756857831811497409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24260107741102242785436638078613049850830240208281152505701107487668566773048668583699567772247808554906118737606472822570176535382079974664892349748249353431283001754511768767017164612969309881845171045540950878554777252575903049129685061091174191028077234332546002002466435373702367463676330026172735070057369773816671973665323936598896682336729204785428568309875662245658217313360170203468462789257668648400178948912962754752431587149361672971538964780831306552895266493943142732839016631095591479404323989065684087570269102375831291612823557388534649292036688548702997660243871637395458586783402638706531507350573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23273022958098661575829094789778188607708256445823259422567234408798946796168134226600737128684032600374907863136217221885350746668276913674645160001066444288158617825727585889140720956888495372006836226314545126577258225134759289305377307148251793366495945593658122547464608804799827590313566478464538252901497662425883088088197486630531128927877566403564333679298309352817476816473969495892537992892003700691554124883205402324816516021605656298905667766610712363292386512157873094391804004428968437181423680499582481573863779803914741782797630311671880989243904767905545963353125185117753563183249455300378621664251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378600127527061016711719161426945690893544641651606263628779253019602599497492260821640582742716797930665380517699383794100497033634041450384091374976155325746280882082660741847295027464886106608327301316569336891000026126648079774034246418129597981957858839851328317271677731985708794770714227677541771594843779775447193617253784402673394350890456661995199827004697368258164523764715989781354346994320915959219247084372703013564889562934262175752157505069473615168339849158411981621667852686961942101648873282822505380037602469389189176762278667622665009178076326270632228002462606935387134957706644490757235978021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23199676716628490729855457778010516198257789747121289260538225570174750745125108786466284458411511404279425617334430173059134423363076986152758278900412445519396140742490450294633595108312006994953346397450342503906812596237616541589103376590074868965108209145177716039225290857989747351992985314145137725369296383656957597034018886020358820073774037723713522938800573105164280317229571646005662268298805896948625137965048125542526010203905891823270586396179443794342761239513768498881040721649084036919281721401499236106324511608451761287333626601553048978096212137665292492715789167650169599766071078158390339150219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333126171130975313523668544155725669357159867138875313560762847258452163192507262951900104871084161581707654853569500436849639483483668775661038342791082500476810564504333961416083346270730073948644321354057957580264438717199823909032994964690093544718187768492448586654742563829324572583520418825822902180012325784469499171578300083119350930650612975667798561851159837502428575571265227271720261618234713556941309334107450676043280065780258819124562087262514507331585227716977478876930447528950456083707354883586941644305594420244517612035362271800204324128684881314564462579079163936700932558163710684187629068011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267253754929758018466293554360170280523423760137482985313498954525500122593417410920755991754229972769844968234332126198647802090413434794630870507355036199994558919637545131313215442719591408046535118096232072640472032724850333094281334087270760429097558318039231476286014704210858401084673130050120790147456512828470228107319298903726605929147733547673170002728088019378152047420926383780059075965956744151945488721437428217460446859531740289493291552683927261461642838153534302564780565824140955633758089996507175671515669792082869210317718100711337231875944393841313225403791236195207187925954584113084624273703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20370486223710831672679755017159166986604735976800894708421337015565428152701339655793525978849016899355283100564101847472908241621149084763781036115316928733620984536215830890529706805501843360610784856145323565587351253772492324357033972980589271887622897266877657371694557276572029061583800732536055213259256438113654915787413801578045941664603324862698081075362181336482958866806915539685862176613665083245503555014707722245153025539825263271489813459995280625236104176445850782523557598429863294304736536088247197491630678522093899919955387331152337403331974187778479773581655812987084350023561283599630465532429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286029403568905651174498262735992716539092081224340334317534296462955192768341775352065970158963390295995787647323317594395685801055117391110798962711819883193409202696927700401856949689429332251275895721028477498435368019403218094835761571822950863387277717569778689142678960980960522190913080774936049333043362963055238052650197638692081030967626165107206425533034495288071815508490187076048370281146252462767364789789009291284970390708605556503596420710215573781472422725972831985438183429101514998901911073417365137379099723967607183290570369644538988815281509955472027293012048740977616375632068466635651379489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19652050474838629447404287682223921563717461161272249877136711724557612111678444793617697611373398700184882094935455517526908283393627546970524628113204989894108463937668134088504349700674221363019746354831231239757036288272756594320277796722658918099345540352069135952797881817791381723901560644692027815285755269733545565202796857542847776876545550206253740800603405387215442794125848536343748791991972323772483950089716261167864651898029784390918133551650290602534399308172631627258884256302236622856559675536871742357375319094150918893660574542645450642892195132192591531796083583470097197414344633814228546046587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "24561915090346509415502197810722576916441227197776116210582769314981531145689016814096306705239677840136420078704158204781035574936463818504059766801529199479619108550134108137703543351037384101435289704300268101029038865232574429744202289757188741366565086019474077228796314153408561396364438201355543510891965518414654498903733560105972839313397886437793185948551703539356008476608380953580878758186906497146226687254904433348518642195212813152056380912993058717053957961810017106653460640981835872292547984824773886311833852678962660433085237149099775105013127964397552083292928434238129903245398808358931282910539", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22536673257482021244709984734676454176940484289063449384113742992585146567428798031106750105996063641088577669255579930117136653514764833623287757887013286249361089611661798982021671580931577468676538502970282644292580900517751576821351045098635464872412892837101145507757124979719244036317662244450597409715987862240985876200622294447558462660646040547731966367461991364451417054801872742245701154178930318313299676056366606178173650644313355777681605308158813606470042493672316033327597495001033592436802236727645348532813717626018681413007310289044165343349768583882947626948599877536052181645048464869689616510471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22737599481603560624025436433474427624772423161404541461916237369044800146156068830046974315084182012285293786329253768915512232484725379550035884326471143465584207011176628458127115601985801283739865693487206252139753169203479530359031150229304888000014507312912813899902909344945050165266781889399412642827224005154521878699340903050361004494104828524548614040582546821294997924985651917549360233725704925938973015635470615971324261213108397924395466588125437805620146000425317820270010375803055994437691311619828679635768982227151572492082164875708863980708127191844741609787374326791415829338189014063841040461747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17699864495350977178100142732056719551798587604209297381016894791975365199829467110491027223534269922718505816301107933189763421782571327773638492043251864468260941202217436493859545240341474525903469187396709981231987157372112047710848992557266606129235154804035028028529821709462168094208325877269224682165355898760344546245705406296042720565661444971759243206617410801761358490054760658615860041876775630198365890433572431412531062514565090465991053054202776027807137729848185215346662390958900288410709138755417641684477898348449273314579322317993664391255471831280533013102374018053109943702844280257196100341109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346070722751609203832033616207855651812719717346410427731720330389402238970761252382937876770996216436819159038640844632574191681452942728371218472129646218850583614001695554170149560277971592642896313265565718562443265097407751010497612658054777644103251324379386691364878583881914344880657228258441735022089498766823588815124040186487486405981609217119356321709415997681454209559815597065406237488961974237896880578527267294416511277089328976061585085191005362341260760024933320651707990927683433739783077822999214367072021476611621076558810049992972558726222173198111355314730248639774097870543166880406564004103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385439665674313242334840844395588966251454818808110747153177938429411935309797515144806690195129827176055932421967213628294391727993615625318727444386731765102473720056008620532889231055155799478812432649670496525495173581976111326540188299289926891088138071928403082879657782511542633921894190434386453282551955140805539073095900782781227484601980777027725710593197306873275536781904819752734199561713383689275407633726691470160185628923774345965609739457449345690207649524418098150158702710838317620321691227803891145961947726303094920203737784170378270163529408376667712855156835646920258667962798362313492258941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24229235598064792652765564423340910838323257184969334410526702271751641276527564420039390984760605056165129552333907773706029895475384768869401313061890683999523090968181965922422524846765200240264828900626178322847032826796470895020269040977529687947618658200500742905069064929434100674748594335142210018611512123350535208494021351320458830104505402998535080995117933915341086714077723218913904840999213838301482454857833502572211143281670858880654468857002064043788816569032385317244061426303428079686679161065583269745129485298917915801356216908793446478758813746984190608742700157311138852025462974687468208411979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349182084413118299635444722660956977222520698832643629390003775763315175654412840886298147394788647210740342511342956719589079079939739102050185124533681694032913501794681474786665317897309778864796535692469007482445081192714991737388537984601503351328357955452353879067033548727430310939752252657740080978402070128631457462112438996053956140934485311861040333598348429317407537417790653067494520660654252590028940090693456307792759365794363822669373807855222170046577626834938532079032202373160907752427663290734080060729929045261042260562581058127881831251222003590415554120416565390940413076802473940734740921291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16211537995271800563973546984946819515413699406392047177718405452819778913552686229763599703867449464028526108373179542371475729958478004325589809035490242583963849074228615126605116787536692884266208290103663187622238323537183119336958292704681232723112673288122439478438463629660517917991545715088757760839715551814800753503721446525693600731739948087284534898277225256957058324542600441190924600133684996261186365784252429679349368559426130112123653295078429300556715416842808888482166151961479370919353238753145571463567398630632964495643128638541455497341566880008609968632015213310185133334433536964650957346181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22371160376519881104569667012475721580113931872161512311287826617726085026024772420201245165529032152095508230000015611494995746725890914195417692443534679786652159880518683752168538450295526660900389953940299207877070821236766842488152280670211850797019662313550613665344306319735016224932685587383982446611072633954432607633189171936504699805814267258293164457876104907562539156581575012460927644271014213375623189512185004097222559370517290592044057660456587342375288716424215654878800574152029587445865724285283803069993165652045969887818779803133420957963599395177471066491858605591608330578825689055402844328997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303614961480636524257240890751250623308300340436027387240572761332506383627582695691467197801620207104444471587811293929161763531584965753318364755753634937652050322152357011495328007146741065839560992711574158628494844403253452012043124498530897732679312438678915109276749557233475283931703543796875859135420954568854960803777305045923425301927375463809980872006344156773139965948893589264141310313590584541810312353577275363468721414998252645222650596871128231454704100075615936403828448622359957129240830953288252282681956767173788990207370702115835926198771792367241075370060472342572229849048535072279611548019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361264007816904136043906717088067752866018437108395345510298721205510818709782092245140125715976661384391493366991587736652921378811492055884860544867653800382354936233556186948969626426008508305986623034640528847861265360169597681307008710208247482374354497282169114609239378541824771230639999614775685220115116286425965520047503571914211903344187850344438301530321108514378998903860191846031238309133215645488065081592455329194431242019472265844908400185094770821704861284556139964757215792485205123772070295501649293645171515283100530180329133650225533002406111109332746276518812355132304779712455752421722036403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274651582260162228023260348395360388116534007319843627624483770992041251069093749076618151296494685187878980839528931830371568891189367502666328783793890399829302202380472622630513246015827705228916267257983751946015742369689727346901668248010315157505822481141029196916776219568779556296942549254855822996553329436451298403178283170628203515496065258515386145427624304183256872758291556513351286607206691994323461311218488489707498512588677082225769351087958722622559277870315828794749422818892578852210080906293834739431054590169048338454678724993670016653176289373648418967582434662729366485884301620734577155993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19750815077323791171225861041703517582275750332709304156360170408412155646467679516679883408416906882148441643569137364040237422132572692922637404116044606241221192746474562148217484504672200992865453458282806304541336829881863101949777249231567727753205306230835217629480204509953984219868965891010857629795409855479391614930706249297855906847078713193937395664533755023854108494809058257476722435613723117253517852087504898822074600272227108802977990347432259948498030009580971588824578280425018339377015852893751272540586866450847716861546078848648589987009499580229443619427469488076881881496460193959827622776651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26365427615639825058818187382664403542351797888955352091981617393129883315069513452243574817190349427013011903466373109025828105366006417997682900696242237818455483348674213353590706676369401696331269057577760746009661751975236582918841486521340649224100874016396756506018532236771566497393465903359484370152624842852573036081262353291654636759596832209058819323560245938522259932822099425503471396448022366813546359020392751368728099215197768319780447513557749773947133392738596159786941013044385175477295810822680721190847150436422938147516329372914477860923167764961505027063538296213322403590099551702883305691787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25687327779751805777400622479899874405950515433148206428883295416415222175964885853600308869964824269389476051256699748714305362513127429694976094299351083795769538697535654421830524152421017941000854966315485425273448772859559203940200956568654031349015432588837554474542866470780158217861864724490393486405026980557004753918468390463239676580480894418697153618742529574006949976677606639190748539925812337827681929149922640162595930092023926505126455948764630151513000392292257918932145186626940467091279489421630805884416337478808882886535150968222880654848996053520581424284761005630271208424958538580801611223383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27294428147286180519357924012229390261519916719123503732018611021774105862515028256935540735704356580782189876638991367712851967598299353111065754898024025686346108704760115690024922959086221782292170630625213013218066954226092511975634308090268191699505296492719214660102297801452082709635203252252984253408859207302090034677214690388178062845429551395200752021354918739748517558179184849576211974422346758749574257573495655015185804450868727817005681142326667203352116520578737186309886879370603226858258105683267398944232489512997321940666625625664454104974923169825637126683774384785557392524144382404482447835533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255683725013235858109061641849767752420637463148746346365809047991928959329294298609649764290594099661677189366294742249862753495253963005320030238881748079898046648465221598588925326926608802287564636715328073521562879713850754961342854025376244747784553313371018365983448167201066270826939245351658978989045698893189686612643228232504772636926414328598970895901160458284162241164846818089427594470731549475722267520210338160320627847982234551109491215555721730347084651360885389137410539948042201747385149675301179704139704438521251741999996752474316227900013907803047633646238176121325860328623424141776732389499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16936003905358697876899563936327994203596016518651883080610562759859253457319951024722876861184889545525549031383115951919652884587889241518835233149747429037430505908684955121965203039026536525663783498162738145891291999375005614565411609503371914898077161835436663312145559217799840697441361131657361085114728435042937767799439563479684925942975177005614005214513193854327723253162618292892154933808997533790087953493147371369713176178949195567041049015895927781056240416998743302891821780734041840207845508573703587906985991750777706989938774855256770184441458778569286688624229416899685710528164064423188282548237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16220072618970493082342999422920022630764920882679605906371083304121028697834109460083368765636185564156289940040031516384116756719691924692586430658217026735474648503197908831251094196473669006419976015874267866604500314340817321098698590813171055109253239201649815181856510507989251495164972268370128627180337261158892297151936373126072044954107318149994953441160558259944045288176015620201418546110032331931078336730450970282960995074534904349517427795014045996761092397355179147196579012917073654155516332715930911680901861257364817349819705436939341454928173066062685549718970956630640289322256329786154891900593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23976635185379403491170130260234592274989330148859548536195902833097930939214544259652889405690958125514172309032250548727083803406108341006922388068942375538672353107116558510231156295578647364013932385895604683488108586912774046454969465835530748948069935244066330242192262820580381078462197247564159610765308381908251388356314205588106220086656964704710619765219638095648028597581238947663952434318502331684371782872452460110492982955354657265023973540821112894880521264612350287363885742453938923031606431803788979969423954560168583751335010469300278474187122727206109349083468395354394971225916064453412438334723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20977377206283846652260999699029514227555184090987982623205783900763743464966357781936317141856983708300568187497238948855595002125773594279127258629327318184126241049459119130056327403709726201869391456314882923490354356781592444705319203595626586917088803622321293732455818170421525432784886567345842128192448019217469636484298610613745249992334950529556230701578634748216416110323490792749073986952129819173932779741828966985231097472938299400962845397318970656794294225575678168803512930604732842380939924542267141868945749784947246553165212915472135880365318839974917048952329117989895764221155190640311865289239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27835687020417806300846025356647860576411088973994444959596867611168543692688372705204381189790616857515906268486019034172018589426586689458115489247128733798043339385532649137679482356186465611609787345009488317054603497616919448991588204439033832558713521020070685206529913469639710036111378344786391528114057263963548768271320818269179351945551838321797040503443648347897659137945737966798247438800747615421776263954536125825382313476201842614533927138723532112564556646325148603866818630912765097369582246732836280554228681714560105365946994184333787156908033082328136807935072525848676856680927705350023627115357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16955301862596728873419886006953408028787531066968498900016426243239454103786559716606400317225351659192440602145028580505267999473781037313539066016621897378115755828707497476080511115535706421550604713122916784972180629219072572466352105809025102277707633049280845419016505502333033384874247414779411213628527318499209188728030897895355684440166655991250462781918506901081441130278093544335476826612679481531900926215615523722089466103782515928874043991322870248114146007371951532885265342550629058009182669499084575241563248623555270129562070265356996895772961397135942275782179012331405850850393657533029931095731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22302002453169092390161480141171172787721403957870174497782080375929545586350518470694723223523344821723471211946413869697353999097609311441556738391640840715920663399566825036634824574217800665579393200669921167440524640076384959013710253867337923074150475877118597152147501204475530186220112313502413456688679770112335579909196459114267779828186560100845216322836201850328756093522140220337868846807301796495306364948785847844107545905309081704915675016973201063298790422635680334380885340966702689140403762950379778405318100776342933017759653162514636121453088812735002625326126094119863435207293508185579632113453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16442816049295073238695069800950128321443052074844693759304784176306092859172774020208150307150238282779613554549073592963808899691304509815542678336710266715283603422439095265374367582346761200256372773153164988259124965467188392432283794832977551978844835154993026854802784426705822414021954085140089234567063528552081400315045595145823401932301432096591707065904970837086076328790631057330626501921066085031480652044920157815176193265713532708237516703427195646903696171996595433527109574283564916128576204361246603111765895735190608592748109411672968767364622266319041385789685462514833486089252652069178716812827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16397650125954286190925910365159844005022262303990813344659511068034613459221036662107384221693943430164122729751945975226696324223137960421194865748975127658458573989554900969646281129667788979713787103982968721365934637006324449375820678799295219893952417333620792217616948242552091472684285309462901975410260814900799708295635341732835479815776864929205493261203127477750376596330774725564108154509665178315843029875801375081131458197616103130298419385786717371508082591471087280637799137542636064526776630692957914135576313177968595521417435757955208579814979828189680000829158221863096659970315546879390358425829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16307039257202577872799620772098236874133691329978030857539317532542292548814497055331743358392881085713657492259423349796591867381677869323588622287281449125551287622040150946847439641180242369140255853526233944389369144206659233476660851363268483845243896543607372528230703351256114720145893993746247834738347455525846229791959584618350272023575701788365598659523759644565959266497429551570944001760948803003709052364060934543433428311586426336505986572768425785822775667764261537390315955433182116189596561053178462139984849837409009945121162428607166027501460174812710932936598578944333731288154021551588457454267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16233257583664892307410075429984543498142318621192367552484241910230457746346114947654275225002080159630162720837925950575110839774108980045683304264787241789601340375760262188269658809481743734314700550591923442349082693458460941051162648750385228850379656250385044056262198774391307766307004442396947805373450063506879479839084563372819385908202152313031828718027469898003048521471281910973680812038115982438852980837778028175522297426912076684997214518650601787062894967874532580889323076547723502441369183275279653566517065078907615089672483284007250832274908040525470160804814768788456457032077358198676189647297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300692685346278860016497308094521767755564520634093187423278254964338625583374458947455129850535853371396499160310955758521045041459423826091433840171825717432241233366655809967212517412849431596790133866208042872177623055748195918846706762357980749941827167004075281844310939120894406574745823907346184539198967702960901254851673669392025341895323402130851249376892661267999075270861974951084876705842849693421317479930039085591452310371205467986685052940245892548334380520472695342616698946659694848200644129952872866620181927394203023720320918413574038265923921595510221002575077934416294472070270619567822291177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338071614595799547337470591981397350786451570047021862062299006222581679192638589673084849910140312805974031544641697288155180866319154935245251403186848779504080866362620425241750742304313160041628504966149044755686340422122639509250277047540790926509810157657183267686964236761098206359252873621314954292694606972731126659630369346531485615872722182758517635507007965798471888872913184951336887755621866715548785098838274653923534250924159142435267534840582420481196473127212918970881001592073266744154272192023797718070501266793478785684217534346091394590997904068871668504563871159090094736017951302047366641699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20879029617908667060397155702763523088725499575806345339772946135943957869775810065509589305976946196447478889474753126703692088521130976183686021199430463814841113128757631595461283136639063980786536047962524205450813317369337545885803941666309975691466412486386879339455719344220859425191478677028387959510371539393918045794451059514266105321180511990610980265375428886882230871201610754616455172734835312205797979959979467125170100686257444167954670734304326555752703995780052263164556109329305190950976532793485717891933492931001144663530629212293795487342514085013650090391993767049685548006549816424658460177907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21591634132487161279166572391721206952156287922904763677546757240779603759013419545466863508828381478530193786936263645901672809328133939148808244598806909863239343438713596974090739110890519091116636965312541176200533002561161227991086202494408224300920961666467276787590315660638573421972451600460261580460650400665855907028320511895177674712197421722532271611734614674705140147938802556941454104003002107609581274811066468669980142238123373772322594664342201323435319287476157779956033575129182108981037324950673253602778861957542978675973646809074519917491189579003586211215736640953190672702587928462782327242209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24538184104172494342971314367622365734269539558146933552982932285232636241316752781214680179767213473961218523189359405797457233931834979108698410532220394019797247347185855225120683378513976117321353405922444107938306502369976094122039102052230603337940325086208740831064336124518051798312574160640783680026458414259494223157720603167997654860402459598527551019741529684931206405980649708519351150630373577071852868148566738802555650331664451929973693774626166069181715844777314552706562730317891025946849181873987917290832418109853352681013968068046631267957432974822671145251094531169791270531123934556013886073709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "18874519637340036384617530676345530604548048034930655992107137862841284902948511162963610364684186402431844490276766952175061697039648322799190469703226256717716023555367965896638487985369249799288068740337144460911483953926041329321978535948689104929388798424826010968950811158938655215523611954258008792427681912381862706573476684963168175479337130492485923197199026350199147349187052110232232574637633824177066249606723918002807888567287362088521560022828763103042149066889200527038613136042322631979627924439159437753418811113532016486428386703762323887045395555703935965605403548121360409583456391542312868319341", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21642615935811709517475227516513877825705359498972353620550761670123615636102497882045634668643768181394085660378637288386041648149108693276003165268392787622236135400917201961860457872328113061812327952809740620468278261415772067158720555356437572455328153236651629028943668223433225557890597574581585028341770501660263282996192177075946639208234969232355388625865680933424615612594838212304871435793851988238320964365624012125398968263287653261627243106651446640141035697277512136190706397741554420337999193603373602553585773016906660558511258165180242596057276493667900118610478546045265364790954537545734409113199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16405191721942731845419712011959827211133627974574349901662366332571964779928149947593163580642654749878523455241283703152272640942563623965272662280505058568294325212807879194290563445046936425742210607528031616308971604797208865632563653996449592079790104065403897982082442553501300869141519719051305568690400955047944050069825944518592698758166477751437710497217774462630790876335066272167226551645324974471164224414471272319703816409197624907371359367680739452215597542211043538926580291034753541458108100751692888105941742084853222191030160675389170533429064003272993942534841427799137568449083243014785075413263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275960713498804524072912664532331166645037893488562394949842801773209848342078567827354855872214716510124217382588511388288242751187414538100374967967762126427260405997728667254681810332992970912720787009124436929584188004798560344143518285807723037266666577495353933742525032361979676069024159945841733453977080899324594846726486409974441799484202396541590251481566931491407932503834318640309479660938713929756133263603959538473717443938679219709524794948267201035393348267552295146948098067064365463941879298724482097421944764598925839104828685718607320767646700252013350143005821949074140325481378333013612100453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323380162769687052769272199268050567939713762842353989266251349416351715022838369516442308130818686992544387387474908765183587417099661571343321769147836798845909597404422254913859061909648275423238538285143380664406695214660151410896074837379605226570066471312005975609781615412889662509137915288686941097593995951363251788329182939241522748050502651509459489033500455440571527587956371796105251089255690200506854960729270543643393573829524054659859101877723501293536303147034459203187415454009620086562753457787653003813327867765495042967479675243413273209316993441828295547291625372361717051554074901714045439277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323408637031168596045379109002172006505778383175063580590395766567574847322683083801688889196388061088978767610974980786198603556945133606431715005691436963945818041016827832889864027157641000277531216905855230920965412751672933008887151058629602464650519941144829438832739815430279461435440698707984124214452114692001954924782988816505638850794990599111213513268683911459133250996430262911206920933782864476399261321748161248641415228105815230368276647956629892845113415785541870809839170351355536311975605615275982738961059549336062296865583005694400424294613040249337411645084413682691097168003065522677788571581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21123512564978735025566586587989648924980136476372428584603177117643233615416883219074962747839900360747310998621251357872547591375686524268427762269677127399725426544845323334289460041037989010125600474505778484727364872480014627506858231084425586346816617370557177767638965019979261391892334193132031313890370992722749007350967489824922882534707879969247723959764243786419030510920183061654065472225269224169358311286019058997032232862876600954649733844986779391146499220364619784575741592648697641542029702714130084388755433833560047411647282362510115887160330913744405210181430563652626660952018906122940987734869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235706329012350814951495274811162167005008022428094819992573161069476270391394307224574130025561291451946413232436213088580946584596120652148121980511036320717741430088998456727890409775184437020504310245529379734467436464281665191878196417131354502176374435504509863411026013336067223180310558742832128550686548326971754671082622500882323092253276362820791190177348718519763914898259193530266905025800786694483764923155391771719762385190556080831612353268977531881165233544435304292288807303170987106357912997505367431343168765175210603845670244249910842644351734578638859747522013084084909785707159474036068997617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19054281192884010966406448379310587795277372804167246421610721854643349892458509051436771779404683488584569942828355564386474090785246526531114895720599804373782289885095036892415073230288675489589032149573325064905264283856342444648403641525088309144302199745324725139410623667397718841323771749314173621969435713975637371635505480727224435297335685816156231488656478667734743152983949069768664819631188621026161460828024782773911675009260992491199168406563693079053800973813268651346100387798375260370532572412398600906637849088828669865991315849711063049652542961151279599262198181256747925814100736740457265695587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320399231293669606764795259878650923544551449254064134934152280153306775168910577997156670497787255658528257017312304149288331289851604313832141221061491283709642124994820270464181254860640238229411493019764773777388515324334610406169697098974820582065085314736420188601906123803630800873559240886958718289645266847483912009093070729298744845058343695177310231856290105868330315510223763128467384327837529582027412084326337458526582899573987857961269208836864893185576131909641108687096254520591800054992976461614523059677087870060334056491540485971478805628176796152084364244039819488705230684013774430809777077253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16668292934811884829000510407459531197906871537299502560852521994672695994841508383833235608938775334621221537653510468665879104239563212811849883004339066810107346718994663262773080262249786746878053015581997147077754147814317222787686474439708429200112465984972263505994440881949373548459857842591953904115846049438484624005512875311725472582251883096571395736965739189664866905819465064421466711563339645587468630161675084970654594700512723840612466207301101998803693929470957248089462009100509891813744791287460927416489098497910390556040685515862274866788226974460326259679573616359587971395035135987181254447679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18348384801025094283197296119718866479847680754999602669946539914743773070440757125823823860432437239193215624033563539644102063184339651316263642438645134541499106185416453802318602341168702514254335362637839163184105523390744343582537893083698157021248561277698940170196304424046356865470644970328852758829037302738682164952886330728754488009635837242172606693381608859905338731813471213336869858212578296277944394727911194739031344799355156010746336350361068231238997512985098037505261290404330370381287795727647758352218858397945306149546782599951178680231317739456242290161319265272966722279252314231369847125953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29333592452329246183762385464700010576506182384254273913143879144036653432995503467948396039932384100500933825014271808501354418649136521035320448340266280829912862187093988519972778710243975535613793120636282792089139931123390918577831626733935613944664291959726717739667534430729610977213129722986818472537169693482875489097496303126779486027975488400697421427528428721862787194913874687555734004658556359662419751242579572416778840654334478241559329742222699140945273746007344138069490922163321819958893691486108510785864274581692191113286446007826226946621933204662642320120442035130189244043438534916510220903087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21522041312200394273111491189441820206453593128777599970436791957445412734174998772025455114818844570753033457714954146116718513954873583630452264865908081609249169709076674103869017073420254794236259156086869004165929852919795399443233760845151658334814454458527946867176698037486397597026322138593233332234625071048578569037075554619842121566692008001544053605259196600002984904625941267057338229380330885840316653511448724068041656219809811759772949989441679568594586176171144856108226891716413983300784776415804621064103314192876694324560960946664354532398322457878250849050733173583241735414219318769334652514341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332857793074453652650882147444267191297030932869750264283074524849037298089186718827427229159619573529686708047390622272654622794800110425193711522120635496637507125880110712825777239487015736971978592940298861953543197216777168493185798460036788474582492946983328322654609793731422578324221835398587871859512518527258366537938368160909417771227129488911122233013929385850421077691524179088013330726608115261049754244355666933310153250427603159421513222294524079409628794542056451508464269287426548468552667605965223887168705161331746875462977435587596368820836891605564154532337393340887510654782682253490391282327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288259614641378635585324885942605673327027135933467593137746816509338670890741955015329863445408093346879772361388089121540978291085438846115080133232377074546444357514528782592741397661545085882843818497045536092714901846321259190533376733593941116776118050507222002600837364332214021623953406396847825197257769547082124690985672103837338792489999111456784217647315091467119875660306369574639463519482625646399006849775329844078334036462145823641906155645361663367201271173787616578429750628319923070268647829149703115156707287339092307200473335215298116898704225207966684857937089106881625664215770802034457253681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296447621403057533393617845240058103711665237272351062392653936320495655685185308967380145856174624963595856029627415760948624835489556237072276279549369641282178065069239702623016293712484227402337447088458144623636038612599074740303406700830353651319785998772934497351665285321264822881079680798052961539694038138163337155637649173877376530710927879299405376791685227942700657311205647566734231156896837188749582609360318101305741127231244897756973591021939965547316207123770917652174884798686544496180422593937135036114039446499333818867727222099676388036192199061096731926480173592069230518392266237664412069809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371052057212967491335482496144707204714460773337888620381757042022936481032477904579877964983603476633315617571825358661290324874655001450975180445155953698736564243800980168261492053917839186707672434602645341826277172451785096317028764175999463006514603121066673282115627257754658364540451242825023509334408407230866221235046668123965070104199937586737626202050899168152523010740295939180365672625742520632137285317339319434884176784843634773446432482826234638410819613965539231157626083766375279374443714638645942019050771487553404878813539000308547334041295336787743715127623231517802567801775326555370152015507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17058292022883582782256101387223598070886381145640664885391195849438230216283282706580155356235435164723701268485303839795286801366596171193311642145703895656254673930754704252209054286573623507861498930249918569927854359488138066705421722455136342915351605250121128114808530331607464632253780058062814530084429701247370646503345575960996074983686453192707619463131926413684627316862024935860025371439642200444859848635203827856682757148273329341022093844987013777723997692884516620026090434344285610740082682251640830914642037194197225727146859701374832337298579381083374736867405952478160060796682248713694378703011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23667065699587089315748427502011590455559207870441905220642240190874660250632633731667976707423603185044157349826698192058016145785210609022627075262419276954763792641482576562336983944054297594598821688575003014826627531767958126025266092751144457507388503722241404512176521613439941743705353609897718787480413650553262536933803843643276553628262783270965450372247103388949888041668052592484203973488767753048616213750540932886067069080896455878374442737743005495948946598538997937876744967211048446306770003851327322687440077473763803458914862137950184221090447201580171864388323484040283512903056173857911629886417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19022736563837679031307445240211624864572685097910008256075933922087192001803456585689027854728937522816377259776037470657799859850389052462280285878146483901042871940020545046089742535758796363049568846421044651321983807510006984244596327419734450418704252941065128369360534245961623421558530564602367430517946627122810392096973247538994849714498908837791055286499485582788511396045222560922008944059251754164499496328709447851996398057981095373291926850466212790486140686058340679040029328284712101313097928218893404461131518993266890351031490569070870503956732267726721306871492466163412877155688634396903903664841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299244764502756829496195755125184470571912438642561118680468729707667868625166977192198670607225936425115491685146983979757821718530248573808098394900729587008448957711302455776981270706596430039122704505450769717188001676415495203588990281405028763031327387979997056948320872343685817469860158413724147588583495300843172855738317874781896530886167106687478649167301327004215381682131692293961594770973838298345172390987220424859239031578015829576405649186224402512118642812698264129290232503797204778641671282852084786175335718148500714111550758130070645980345448496404451336877613923446093276609495920745416511321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16256550052938482108145414275133517946099140471811376545302138914926975665172086524266810773158203247529138505622664898091873194266750239820787000812861614281071154685846360728201853043311304172592098611194871260362647686985648274304083329567759976595693344274933503547933559851280508928155375823782496257108972500522953122274929776172090276130546228862979372927106746399241198582641755355595353643173592406459605434856966480344894686878013351329592811719335392835688828874567156358402436400516912651593384360794742106773140822485356147670142301819510811294152381908500691323141847380632493178045462829414260594135121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16388588582810614230888723229102456404905163469090861638034151149837868975519229568919968958391349131438950550753406032291500412338399184630495740181895402836564379113575406343292998123193842664042429168793719441192727260153100036292300201210017133256614906836732939854110029087363122482030500023973515776059454181011982855590209971859137187771838343079202079228073576335035525419968137800965867076126320282561426333828484335624675338956969433994895658503040901288897281691938446651143687710526151158440214849146557684378290458624598337231685353860938821781603136627644183263601125753534766285707143661798834234436477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19695363365770328058858581145048049860616078103390324523391314939723739881410990410801337672183086606739111968145748258598349090627045887683658890769016706775277480716414212479056542432853213293093258416657613808186449249042596057452849099390083822260801042704914160691300962355379301966398730902583746728771961141920923777376682803481916653709485227676710675322342671231690909841008058393312015070644341877816871770274023944615471054818916936367535594666593674354582926868297676402838482871362056401506618864849658733080777204032714999001649981919075334090244589323869857706916070497087530130070141658099595678678393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26530701898985129629031736586779159860000281808049245082399212181403229254376391494438853714565871380499130856617039320168197649329248762657123059259905966724892024267055871873716813238911311801746053003852675082238972566791713344496274631684736611976006324183424074098583782828883639422342240693354635916086843741084548971029266297078762004596475555170523332165136753630659105618472042272822914808101471179746234164889970187716502363240220846927056224158735191777840782643990749220403718941579445835894928207850228319461768169413624857741884992891308240719258952258134134314614564164321340625081533611670735268959959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17974552369490255874152308612178404874421071940473008275905339033457240664258113256226321990889910169954142485727534762126321249991815270591184736782761394847458585552287078649647124782924024962015225843963112063476450805681947703354327400049294183139409711552480519304848152212053967638191421876416476695019789773111544373830512988722818859564405897591445738557827055274375090351659452792119446843461083653661296771486912709191690761069113113832276838750770131744605798585178249470615556860634774644383501325158435267931783812327765537593804239533437431701830234914158910630579423077462768701677676573546461722517847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23431509171664503934088078765048856541657987231407201132465319267994205863292702558279620969242431501081545476967123365928503806862867184654023389663960724566791447438757979780752080841691486151126715353305647736127055045111607666524808998261116003710589444908400326159342521895389180751918129683789801171780320250731872583928425434863034341477222421929718172772425008427429008719342667550149713508618025240576894772138506172428061750129421832939694473822591868023646077631732395721949371788874027591820702740614992015445947247395352681944849307992516820304549969973807965394419127895578685293278561172389479789767531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17221022984826618912191629547044385161659224786547733995711436178481534756210143945623560824458855568783596056723738462588614953425866264312645573054056826073259709544505020864359778330131932959567875581238648616626145255164463389609457931702244677276702837194484379722914964377147895852131208525249262389353001390983564129317080369116110581092537136224602795599074356395084572639292768726350539830265699476011757846374750444076140032403735590782164328014496188559856319967539021106769946945117399006180955529064396980298003795891459864290643504145941308781444735416079281938012082455178176838010750579425542996617707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23394889289329676288257567655171308859919474031265912562414482100409408166302854330643059989409747154120109540575471544730113414297291918990063971548971802762196637049453449023780441003444910809474589893537582250019339869045238400818494807017169982729791168882784667078463043594379178129006993254481259868082131192791228232139080205737479962145363790005106049319547163069409562787723738378957622606260990010195672545061066946516832230887511849729215101724556814448073372352108306514553745834257375309366383445548863537030982416755625332802975456904038125783976614593945933271336255966918862109361376969504021095500737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25838240794152396596788094062664998481366186105560799877823020965530775917402469594095123245733859021780044138857571735855733939746516711305207580706108546430085553983373036931396507794076842407691041551939695580057992255186066899565646068121972794315320233482978902081126774241542221749962175496422444244939503293911856281012924023952627324367857864754371648972507847726890335514023309448334190739771896737175676234368523147664699865446452474273550628170436905105757359752446234822386367950112289122808268518898859743123552319154114697717919996576947837392066500159512793126703857178002932273494881368721503016333611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23573529798098079730118145153542596721587602882596884557382457951649496760664972271863936045239695446352966414564578733866047779546276359339108997875562943396259110943991664288879255735074202746088362609099934462415465864810816667982219699076180894475209854226041343585547822939688653734211382910067408357397009588390803532214139374458493251198989600715558396413296981936072764654672724111871101171533477060540836305768718044976662643322485048618265240908854701402036151046242894147852074649435116908492646284198977308124848829689511462511712381298636277508752068415897752411047579520720622149067826706191917303656083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290395088585679039387600320369816959360321894221749414466482450735428182760731927051331732697807623581226186698941789691898085494398069115080901666824394980982011221758103239455953896122094763089142112800806506002418539342249387090055220759332204712735826652052533189076358174728987547729525819659003609659334229880946925544560151278337465383129541176878785330941855414918001992162375262494393295824833767056500191389816435364361863671103252058440671168032816203047488374308421157613470367029275117270868557861191984336211736432823093548335350951922974084339950082490015175656701571080617942260186814188350701382647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267285738444159164029584951802739145481121555471681797130489900424071658655180445576587167106700172673094307101228921807456234997303330791234327468178259967564943797980941916334037930545690774623029663378714420968131963257216089752078298960950881394142383052103757911303426369971446433159996831859483668318280338620541673111483337917076269591255126795439922221046915347858780619453302107877245949965556030755260143544275427947837103774164408292267629892596069510014634424666800318965516310117548627276051075842314955199255406284703854347861264881409539328548998345664613299888082818234189057015299086348074711835481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17301884766153689769487606226150849742017997435911547028899600551240410665597206885453805338899662969891652813497533813006661300170412193024592796241166653324444627340942694602883668473401155603823539745606396685710750103042162570671633212749224059782304617447315573989909958884373713967386810304777854567603294208174388119275486052610379176832638393726505489305913818902448941368615913181431713106691562453717847089882419654912464509445111320573698766388161802720849878341870886854650762928427799867299020346376693956502913109323676950938193516714227060580138969525554805266683553957913074077996892918845583099065277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296946405492793669104390565288071411464281365152776354812431586706140620626097480186069907403917950422877232567263953237593854332680899842272964446405565848676190914415321246606450444942425137141371611017999157464173286057157176342836875151120191515900454598710364522615953048380851826196679015592169433119636395081662109170230920640340119650143456954539491852835166822432970245076974125319221314166926620236613785902298267783233951928532185217287389591033909705027722600074776577409432936295161566824486637331236743495048469026204385540580544293437804305474840207152841854467032941383382696796027492317245192302237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17951398931989254900724812411392837656786292289956094297079104648763342240187475517618040135353348531704375228946353941120324273462279397310761414721867536259874618598424929982066906932876663520432982553033792546066699360937158746618343590764078503909470368185654705132441239058949611811093080389584947305170671489198380657019311661398181373826552362511743463370616052844952207903022918545822125032009830740320522541326167676423155354484445849604971619290589334663194412049284357868659210199935932160886737010796910805022775921355190378873841895051905167752465863713330126958775338442225989984786785407202381739047199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31546611659140258249132081936856739375803439661519831082464584384475098660490577926963992404345439223022585935447103565390378080027457751665621104567144100752458354314092102114339751708684179715866833843955153568461512792954218177883837649672428810004230344102603269672989232392144295801368174076534091387692881706516097164321391632387691388902690736039291861870530591499320937201311292433259905202015053167139889578637485779985169232670852072815825651637348191535989412927590934342728668420111093462323652559859340859856819302885015406096427745678596559291078919960594235560318905666280321227464758127013528770375299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20461400220356277178369239821527332993796050161614633615659111052982504476643885967632050945364020113679707231514794958847468095800512193987289303348275823594499384542332571048822318780206360616621693327049472689651448829741159449985443345380765912024541300878367116132595210216446385266877546716481024447656971504796340916713680597269595358750121220669335019855932036896314731420400572794419446657658527989196238409850727669756106778885851567241623754593496786445808075716984161185304879671191517589171616350976411400465697011626356843388732718152797028685656249646259266895725229209701935167452555985651521169075491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22938850099362340479391343313969639713669844212867037887026010863431748976860261748503477136747189797366461603094613401623260989312672661567702573189495777473502713680439257271208438168533612192226739496109157324120712429110406812793065173420496401417950008021698174162691230433704751521211681699963309700775862862584699654735377087652785827524142711654476128998494173419209185343666903200884568942721593795415091520880254514859704696076986433735188853337751143934816357288205753519199073536478332543811259532910403179011846335319082964755817053856767200665619241916516133505605356369571764354528797243759941287942813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19066489588791625148284237887678577446452868249605124449450269263179412064996322603122484979130268130484814517143573053007192828847621192196622734681277850062256397166171842369401005194284959977797547541682804658032873383561303976564628679187625021493021665367697361103388046483283287568122005811255715444130199247187411137000137649020616357941355266444818608685376636147977033903125514584166896939022236667597638805882589346154909605615041861606905423857281209675650879873539704714595776006658760614548886861779272958859872173395068595573809473729029566738232327041733382249273960849729689901454657908131220713337413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275431771499894718381894165549011350894019454611796431135459044027018579539983063124775568825218954964354897701883041860032170492711618890841638065242949944768179694919985670320701637975860941389225337853864138456521802709628021737475083789973833169335390053958069241888094746936759823384952878901515012363876065873746262146755768612263681105185043282992499935194668783712049902018378616180083388114500805399484643104271190322362861188628402447563956728503747944116392908126550752275173648308534723139045826151066665631774285867478437486388055088941971436566271681466502890614107714764013042950482446550293692989637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371311231356092063853539109052250008238712157258673905938204361301656685257493662519543363423008378827834972578455882500982860362542453875703221060628459135301546599454002856143858821834063271990422715057004568482644864667362224357971984818646290248003579324681963568576703501245581947222604647604361174103824395333987032571887167460571350587132588760514453131700933368140411073224911562304208622839311232076858407991680755704674172341497019309243274047259989545540035946749874621049306106219567962782348694013932618313796716371378265467050825171939352207085852361806788221236418916683578411004590237284341643645947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16375568765500440278869476911725330579188780050212074277749974657776360122722945216922020965462597668042385463201900835126796045225834990546793711492707862938219567774404141846328629279120605452112887506566577229079331325651459195819489799320029499182198790725148456482712049218970963410515870939087581244706833378069186581404999335527225779391082015998212648334081982234825271106894269942072572618086189712492512694812046396212720914741966887914924782085750974180456252852817456306679082091517787899906911221480338132074775737698226457188410812255542401598160946213332490901268523615732080378108953545663706247479201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "19851175725731216473804340307900550225098991577085686471581251000710135814688343586662771346011902623027712024347027953611579320476868741822544140131981854257695766674056107125696551894264455299795282797892354220483368804626946857924775713662447146916752730042440675313508518709351622670158210884855197046864113898099268851232074160807622310296133898025047145190598680772744492226805852435468301647688703954918420579399912251729128270685711969402971294108710194550300804121214532122318390856526349597165780309369784858843147464761415870821395765583244434138555231536095662871108812980649688194679809619618659061043739", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29145288791475904065380713200305517226106728984414076235735070184988260455076352342028347127213516366088550312212286000924394015451364078676808491814080204799345655924878490103096133605574964466219153373259424532586663076753597565659899135330431865273846605267251104255473337397116613884305298462700487145875779157005462985618156419008475290057269480525108138341933483319891247162125810675652662350521269908614772438280160241909532751349360606737977318223715465747051449932790957865398599873555633660298450138466112840460594323164450096983246968360817599629214941737955909846754587635903180636199180120455614114319719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19627770743005224084524131606714509703148437119658807651567856835986021820474034614262560981615897950636643596193665561925722841314093849142767225197298085919269871055620587302490839698087242831328564722515396302910679749697902372388519934386683106681220128118221086960089104986010832001350690211137376138858591331109680802358890778681668968614365839794477370475515682986451498382502129129489832359737381992005289080355796553521137358156583347863714347633852551021600840809094851552828343859890869566015603420695376264645532256237002372256081269738952123205664761283868302327245947209064869004416157766943983118339477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301649956608924769434621523445121623053192225795739129929527830329937518535752453876401331517289548769966153819120840273332255226130876852347220137242337007244267877455353380754653921781669060772499071286177805037860993491126227741900898388967368315748559045960425648242321827782525869171734554372996078066289738526154155100063658606174752475341700985219510687390711597537974516682950383074118111881694806203288488579524776836370440281473038333527494851330653484418856488265021884467384343651066960305132841270796218460460617473418342681459017053654262801978174139680221963266004532259618505343794925747538033143651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265803736150203126985809884320272510652600881948901477041038689129658285791663199184811769427280357578533038023474980899286973785199751579880492449176392092704501293257672318561030474898073093878424699057196948684316233547785998064257220499531608149274394027661530549778853880314159602485284437530306996274170096968072414387685825027259125388290917160919823065977170821664855683216553382512002152013215195115786801157868023228718605880250227166557763930943197715813105289212212871664499587981410973875131723347982750061031555028001299873500810444566373539424327531948947536686033270625108039978628519090933748071077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21949096573118879188593701035801466959488429749734922949551984725973543106293222659939812619378885279852635540711760879243764674131570618323823195355459377403110453606589758822077151235143972586870650074150762379581289188671055295801978149996283952314695474592647846627261271215684337120040455368557927290186345534638304549811197470639870241963860598560084519382994268253591071510828445006203977450764336774854997452855557554877055722282047815707450316146023519550759014577467767118403406639011675570211173022849133490619711285287698614889142028835394253642366167231841177370237227479465356289656179652814658641693947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16505773128588464338616725888354878989111643224728545181090391029234943790356215367649317800506265244400238570067561634795814869049368953133254749894223656368308779360778333764134978218941219497348444712297526259796324189445787871931121657827392851009540943222865939024856443913080570949775702498184332240228332877937243278590897121183745533044043627571154465380762034102221249519300355149146754603975156654492051643399162202913892748380637738743739490841403723289954519657915120520571521520738090617481096483143593022236758003291499080634081706835669646871061515775791258542832180144020662154901074196909130968756517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16348591717891880049371112338141095443753578280147263919049347708943102236046049749113207945729809912187169374787668186352142789939002219269478733783247848773188444040351689680932918573637728740570228707295059961359625856715370740671227366209127946117382754407746942206764655141409275764262821237539722258609127684069615627131273232554865564270249897040829920087666817019956391591568863920802643165039736271359536843269808874067390772633588169112889328383527132091678144727635428094741133646972046625084324373455977631986734882290554402590185352990663338693770598202133248214423259607757592536881556565857728129683499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23199359229022188092318070732310462590874880914599250403874926622959277441673445667652224186574510465659775420965056176228958727731763495650438995109634529813272937791552969358624800310913072682243228492244457995427608696216747275422922616159706614941845375085846726227164841326666037978045023387363657675386377985451619927989904453633921956698801260482009029908513776725027510637565920225725353835518705966518359823113544718613980274084044582120565051580095725944001249861815637866245916195398959860773362760294285228688541116845910510903390883842785981390007990039852721362836351789318483228806289189240768676629479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18845143203795090088717112367033242934045187581730287586744658568400377742460266468219038644196322815334296298923779781268084963654144032205143515579701221298491219375765352678563963415600110671712824928813417759068080329444023962304892973221659224565493256484579368486143008681227834387217624873885738590269540163588801330049698720852823079573159510830188096652481121325582655862894256833570753270898202408629624325211778462423345302681269379573388602577048569035883439497335162121131206323264469262750467496576781113502090839736620423995869650560535690665412245359444056046447874153986657012231210634111248329823913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20991568934972748881446784142529149811661475851981252193199258709162169659192620171302568393591554012742801550988409835386730786845068775856462302881597629175528873208616822477703112623837864509678533268895380627660927923421526578556868452754519966868227957327993685685337693161367273352574398504023017315360309739058307099109380431707209883692295202133216912758751453875791316737595463003209503444461401042176803747315554793906054013907274639298341816928172760605848268929453091078345015487912926531356473357531048464743821306081619737072947187430376693530339847852310933797646640504213125771058480633200349400592047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26305427343758643688034542602227128197916524880037407273258687461742785066832673114851130524580480525755084896331236234517827790938452859952440865353029617277489635852678513923042590633025067121843535986750458887305723855956271655857363735467859261057732037929746315893510613023681082881837012442551234305269464056920549019008361350228406098132391630277228530938943883545051746980683468143450554996582577698385086839952041803838800280652231450752190988490942351078303291206202572538092354683280798032584352730853848701114401399762896472507635350035968007216310029687199563841944347530217144418156384291653461770810951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311399871428435576233245225649647402276842707998048545011950333144147858479649080868181290937165225728708246170013730625509249755809042021708943548361467431182186987256850724216459058823854257010335899775320134646959599345624217633986198653444229796710509945452748060294459322874791601206709072826135001844602451924202054325758140517888892322473957816724346355255342526449482264283173623244773649590495015469258947834048019950650437881843498043644600730295473793080541501459531504047096554818510106645863908133952925503305163047020550485363945088819819934460195403634031760185610125715195038053404912472944830051277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25292508459562503987013152949702013213016740202678048919678942523963271268916918523548925530781257496467233777437596738741122451353847796498565929866388919505731686736124244679402014876916348100915784382725095855276258803335618519893317602012415140855285692641567380605139465485023284594511217443908621338123697804294909200781782704637535472987314753079635080217106176446160296106359511362835834778519403564094613328274000641378568738049541240968892445840443401712373531167604125521782447017831926741415930111568028113534592455070559133903497383030218438365704148708379513165693324261185363143181100433521299328170447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16399921280826243967528442104517208976427726719613433387535969427036997180394392566340860110061968092032657986725791621465226834426010646315991467264299218590128232356551598433910161595841872746670041473486982411723335786549559424495475129675884432378388957597158093846147056405675967620345098081590724321750060871141604234267508405396774243607308262292034731049370344792234653051607957074419231875779988264633311040191285292806026516043579485620027689349665952573768947471583878227896205064029092804222386661450836496855571123305705077787068033597950609278428224575314236330278995123596095971205648007191090421600177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20277132340363688782889030305913333920102242190378670052011611065741234510750450735764157231330279916127692398269734127583368146989930336333469200732109291752255942365341572995501528944669493840433890028875542790083728637423716043007385825939794181966765742645167386752343029839126128115679382092941337502929485009367896692654038801557856790387044646152386661458018145094478361261323254656121719865359091552810109421639315359589798664805915541728027342186667977478193835604710568736108835860620408438795685323912541695471749993828039521490834393168538098448973466090624432867094684064060308682473354645496179075628221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16239483314767144008352289406493493916225317086328829213961554932491601679906340132852469594635969164673300363506410405147670392376293195188364015055138730122636986445475914839793415170805256574405314521816532985673807899011194620159346570859209447564401891122271039898936483931597021767862703620522725514601084326351606255622878611493086551681682834322821200858203038137191586995377421277942011679157515115911107330105480029435365489859059217875243840034309459762623426554254164066999950619617069367828181879679062809148810949220632888128970367074574662094324661184389271096562815981897384432401176662024047048665919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257495431224491799346490097459492877489422925621786143750170557247735541917180584895848783249345478281000589408592634019993358299597361564278520364532945901648479009055526235705059906215330209431705849062780272841062945928238868263939539540127471191044247623075000071985302916664333570473592112069198652103865391479843042098124517222536018077277065089697206547812743326073723264375645642055902770057010348377174513071857904549759050258085839174053193647099052908898310711229351391640664366304966944974224174977058843569282271274224473123147568603801488786263805703274880527661144265283988931983166047143029446905473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24663127466952232792460731448428098191837062912461529487744226812283226904611327204500170393981018578149713096370357070843359113465138626784888207236934226650789672626186627816725600135739320209113335736098736298906898708954660052103340645816523839310074873450978473819980421109069202331992366020228258606862843636118435716347572065606817226633145127258735240314644430450387516726137027067981489599568359766287615699859353564333099244109892531473597578921392177526263420800781903876489066225254457240697793391112341429034200813482898571415510660191559376159524888723680121367337382274781491151989381697129805386514431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18794896338555199135303358186251538388192369818235375322427978838978628459287492893992335941740799250386393534015136424359783843484428126226439092051864064873977273275783662919502859898529506939727435238198752013354057930199357097095375377036277572097045385935452712626121717725905252276325738227464228981052631616028189189053385354707097387374732809599699870163540911146184842621259231056304080064447767155277686771245117738049520932120395899274272406440137668730799431001688751193693693445822216766378135475891332425902009158792813456667529950356669050380734901812544918058611344404168320731417629438662151429896329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25607845010313903728255172367276563282482993444934392365869565651163744452015416881710876935883227775145455758736367811482587470712098272727341087876544452033580798214811466948666995732969783448780589312731793465071357220635713165263476707570568305738797950426970026540121686173024360694390623164597661459816336051749379453428318729171404938704315402606808359407964726889060525289664076875355315209046579651405892327523919526325029784018680608985280535934433820826021747398258051054399652997126980652021198517601165928526358051696657779250143502650290903027621209441131184500087457082507676439317949471678172108330607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340407616999395138879549670050363536446593822526910370567408476854062986809919064838212711860822318939642231661060340906922381020909926584861262001341587484279616628069839861697386590317638383459056908314284864950735297848169207891561630975901148216037596628414414843043893753695457031515518858910105680408318071212384197606884685278571309671180675796939342133943933398453612188525746337050195739881934943579284697598416753056958687501747781783709819272727353236424694598727346425815727854060495245627142566769103906795923302891377404582621837693929696786193943831554047975857733662239542627800808160841409895402869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23243206793978582104101091313133652756003691272510282680857931731263898825041324905097582729978547521082292298335875423935317003519877998492793477210927319440332135019860465250374621621757562892930941956922790986743194149485963807915283300485681731468245711330550778444092842338311351913675595559159297543336208797123812633997665669554074958944462276228865346887298722186360284287018122437765636293982396518018853553637168299644897502377132330368813846449774983029212829758462519136535671503790938227710842282223256189194551095558613772664943561959211479694935791789787587107596641300960909050245200074913844661667383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25426964163764974863851452127342425041084101502205852451302720690095325417266236417273771073395213816699900923744195475520801830416832283840908901154058472244877462593982819298016159239224524390623793924084968557330587405330055301375058544406750062258751739773985012097104556823766603080696827581716344805587266579730451277205953055810384807541564944872711659701745790841390988085794016344235181972979816934844738852853786436064173150687041401145297795787280482638871101238640972255376745028846187972543151310528152576833286036801347807832175032763001604011492579885805659357485389739991995098235312515732563970855121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21439722312578578704027075905953137654934605259161105508753787650640265251422055949460862487841246939337254853585310176342626621998910049341138606448746313793366245100498125846962708957242476460791998445691876612187592942674893495455827070381484059884094281892164463396597762892015483350329790026723965453971168930194637396550478185518238431199801474568323455835494087605721139373278737166084534557444040503694956073258530964022938919812993112100819184163529574120294305651684404517590987215330096381957573664540864624994941376929520846019625302605155809629963155179912964539558467677196029299037349879395544797169369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21768251940072188955962794098838661106289324189687227490684019543475042732504102665445489677120443081952925177492457545200289948098139604736113608723310945968859666700229368814902532828176526383628105926446906871296013992737659634123190463332604801959444560358977257001744120918259548076063606496934366979077557159334971480780116003369070075640678910289194445921208656123337085630966932468983819280096109851938168273006449599554104939322099125389779224230250649549607997395179803933968151073295715582517609745814236059931338701956795165512250125134964818471769598894142348416078778994432231444470586945371012473479731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18473812648614286883694044009510853325470484919487696326087958353745189984051664281825526227590091029433388205060115191426695612548361802661640785462400535495155285840616681664252241301215578917306601992545449932434060150888661394263321853008035284946365499436163942049552813062410076020495879206392537139687055058028423896553777244737380824104145148433303748527902114250000794111120095717615345667648785980079047292439774499053591925008229912832939752172101664836321693248208355714043829431969222002619403439374506713893348444682691064416393044525129629152373349907972755913494345952121692595462170752947589473878917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273561951973298655405730929491602667396486884905756078234873378894968253215055007674201282670690053001994301958087896142340439963108406971221283647951990905797747661294745287324841403518033968255888691896979256167137663563487915882533642876964855375596095753993188258151607956039766426918139766850866083792186925838238563100886437645754571268599482548200268240027025813890440577447081293262823958688211436860009231520722973164862327201181749796062264559945906607636675929884810226817062562052012139374145854250398203574710991163579238218877337927928381341559616427938035729710298286917653956160656442519412893368683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275942170176152577366456776997979269304388884217295369094072186240243858431718000705569272042434781564606209242273442556738585115181577700350656148322238288039108279842308666585728693791942071065324694943008211274898211307776461929534882092095524285580979640197005015901541221912595573589850854577496959905246881882226197772372694627920161952335207454754913456193334885822937686646309285252975380066032140266751959702125889420398543454842668099304270617031858772664671969437857135820640895261990232141573346697629695210086325681703675672449416773674235820168585952028889150677575926824712703228410135448008748418783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26172662734194544724387244175562267779199771934006159859544961105699650398831760907104385913564712904377050642966255640333309729819069048118028164810725497391580327985236490472277214903118382468254689039420936038646555915755053363850567777509549943459005669004920328586873123445243560622528146832874094363433141038200990545882434028218314426079337123408646104382936767659616407999865452340599522279141802416191013144765364465225425127269797977369816570124499583897105363477148106681871480412210744852409097533026519350935426973986302597953730815477163246779387125263830774630723347083161499829107009458890186784359781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277966452650766483695345581561527146058913342948972006292714332306711081693337834888161506148235361721263964062869245477775331460527784640450124586424736631497158979929228620656171209751358697875868830821344320840213651091435966006560060101803995694988035045030269096530638220160166514443747280385319824113536056362113690155969688077359375006833011006853980341500405708581041713128051036456469010864598895772235919856008688400151017284096823868126147868938237861806104768054603027060655040391056865529994015905074501407845864356517647347355980978263880713408891815797059998090105082275591648867628956575868189589827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21354331677015539993444274830988638525562173409469613592231822279323036160715742347964045990626545557031918803426662095106934940014790532079604218791641667076341617237063933837028834310157465136714644505871101294653152487424999027963396905775959427742808192477866531515355887100023474426191304941410660068630678805632575342583803850046130747441222153851488538652631240745030772616147004382501350709158843876327688350262526135311138057715408434307616306743513511116222363345614575682787226644628233979806250347988652471176214580429523795675203865204949986447628052529669291270518112865969941280389698389807780862930423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18152989720659152761329401289996775739258946523368195495024479434396937274308682819933474571867982115296987261166225825015808789695708165974758623991246791806369060680383109269887466095014640367004376519103065990152399627196627394407078932003014070274487494719915993030845248367215053981020961840170592117317819420491006858638245479683440314868362691297649077219314722626985543578503824243166829300776179148541961557549150290910843916301448837447382423176466537443908587535326846774886820645760945388022715747566104090481818773373540294563976782911426928149857688832829718859941977053543277979726889750579094868470171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20782396704720600570229022223504794409452477415809875102074470848344833118631081855500472892634353577836841155997655546081786005965931924792265484322839967287493768323750172248800955707374826727215797992290367943083511027919036187188382182450281119900474592939736003855059808044652110669258243862179180731040068888551819735140798471897046726201593656441410175412965009974782782528274452032293992345606235137153779071768843608885395846170175360767035451285777868214090268715148930854581323407785725902049333911419828421594141329932579871313850602882059136990393326502261256203769803416356016128410849625509732840664279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16510384580672555013084481850758887590567824625192303104831810559833790925067471968923521720901676535940441711937998801496904907313069492434504706647742791059296366112181069055842758953333735954807952344746055540192932179611301597211313973115337660804486947297521238633576029326724726579352001152699706798762619525266920756731687460359268028777682839653151187410050282652087594103944267028475465373096580242615584483076715929919213073299328863341418343160039226030443621632959046112781110878681956079589706295382664259463009764760276240004929391552799597166835319808254435209034513270895872125941359994630448222017149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16365154834535544972515948085235515830690261277759982131470359112946920942792122443668611397076733989663235036423720785436858698870656344385024250819529702142712382895709380995490680107927245767726972344714255032731839257746854097668292320453343149155500927033708686472430918541690806135042698331926526035670853247374261842629210951410622219903996542592737516621324981851639180211877959745883646832465032616095507080938600741359749136178684056532734053483106323139084140450439490812673062756309634314817257806000837567420711980368926963736755568820534673755301646407143523895097019073770203152417602884482466437651431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21693082201206475114520043928034732552391831435291347984343859822047658948512494226341217348171145918165453197420226033350913812185363468708561591547615576725357372272934722848401379207737089559688677878907264292399742356265062417982100905614346461198503308724842478152132051154702805918447550473035920591176400099088766831945590394694309301850093269502708495439062596110891627513463402116367864325786484921420560226834425930892675001472297648260817386236839161249734453947994328250112100042846713351436827985691035062814350288588099345537072818828425686812140129759967388525396236358199253484357534921336135420888871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255148407225659483214717164742420055043182463387974175095818131033106196697361057897936698056879615037809878293788409732847676995826819316525064858532538233757606870765928125619883783965460970340778898353193458766241210424405596107122409118106837339630312305799944171030540941522476312942628934294161821776803265919071753802723262213316932013016354030866493479962206591933289345958419358797876001577383122658312518509712506368656619370528055336671493155515668407761505082196731757778990758739004812650717560573078580082893427155316383702849918253975857804614513614193495836762270778066247039993301992000204590107129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269525682931341411439906677862852873179810647830381718133652117438357964324374720335724725738127863513460026591122623406853243709027362542235917839560296977518636675306880183408182438449608871024863856589166074235424901869768705837237141199533557185229905300646351429535269793518974604698803586192240863482700930916157953743749199192908800644251399500094912583722217414630449803199550166037223226562579421476994836043016421813731796667651384770964077192626375275579823453099714173661570722085887498123316765755289614336737822485388617206356664221120113809410821164028745074990164953246066070612181541745544129447313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304385379055416684672679515234973451500344559812485183386471676596065381711061274889810901918851304360195279470638147015911847412114471197336500275348335600200221589454425291229687069889860026597886872125953592056153850833313481927249609262691254435441603216331279857168269311422558559963824927909194164873224291166655801761767257503741546829790874972218960465378876142110754437980797025922863319414159252890718572820798158615635271381648017001377823522752710871728511472776167026630810884558673138235349524532109009469617052700873581932609893869015991912414487372978518888775810159994877449225752064344904239190877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17530430138262812502445550824896401430687264919864008954102884489284860985741106526446984295236099718384502349682213003230409046604059852910188875296019793532035523019397809061600885944447029098211587872216953926548273093401406889498109835313079282194279460647453330303869766221418731245962845666604237212504151719037123866108545944779038986038185410777432352424173092357557501656893692128707331976919920671807867320556407053870677583986145371335243822901849597748592262024919910366047403464733952288425118843617258234092397747402343139401406366465112189327236862949600637795953793500892903879068924003901350413258819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23491063543892821579374357100053936944940050557191236485594896351927805210993994221812489170647932752655309442749108805723053360653440399337346281645780728781565008564535897581270984253455036153455410974137213307890372464314812488412792867611753511173598435662365485935580926405427482313754492812453673913987047702568990795928640996527389376246133108046490284190821819832674885853955329994248330458088622160755884119047908171292901834993962044688284950475069214533154924930005917781438811708614431482048820793863924794376703337485576967664237926405616465727890915932654877300767697665731747992451711081471686905071153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274306857341214370101781646484730917469764002280412049081587658147312083357904967452428594586500226019870197698541818024545532522952172098609242267834903470018970076584762858528948148130873458437067853665572971616752348384839409405432353238436482607097519339519384132612392903571647256967838184121786970244047375767559872560548642942848892226430079482408215973506241375716310061946522924768045418803572648646586213087999632208242065644616153398054694856502254103780925617607968484583109064360985932862080739680637070963595248573821498825142277728145132640747866896235907736827925619184831787427528252128805835000191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22765573454846070021884738373044936959828585456606353108173460678201635569000874736571753026305877154758701810008696466226834734276151034071617768557314358949121342461849926200429977941347619111859124646696035166186055984125125328969826245009624615307522238217684152019580723432234466613971523500569920849113563860467026841815416807845108412646031456165898887497678012597891715481909292826771236277082340987462069357478766912676041524416201147677988428575889607952423087757527637010148328562168193870607846667788172898038305089677606295811084134961659148910909750112439518639700725614505896082448239378374434457505019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283651327657282469144289999673041247550694357069564797441312255496528585580958514316520825083470911238400527754962315231836053460789321964401960818582537851652016732941551166651084519333382092175132665945801681970325592089242374526712073069926733714983608451148098315396503136774250590014065820478524367470455647327384119290281629350051052608612328174039531033252285015633531840978521326713898647609758259126981867371787449196716745308196937166680559552994742159501216933218507408712546679236447773387723095142991999016554135266154945877484566639234331964141447518471499527650394005062711497922434504583022091324391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24563933110546177047555927358956694985881702918093959904626977752668249060815860486434690619349571960426411930682830684969742515868205759139374439848428009582854964551683984426833134174583249593218716178180577423193201087311413216799022227749158973901125505736112033772922759307638646822030864160982678479733065994478196949477795431344304502685145165099327595531794364101255564085615737551780758076968543901805206072826968271629833863312868993147980513961012002433241557465070211565779425113204154307145210126021393783051677305724918364467981322813532038566925728847769496114959302705119924544898538205688283439133743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281933287563825395939366964968025316828401643913931636255792820558217339385969790537450666580410154741718840901610403953707491409600477140650218454033945863175132042331137256105381289117341305669000095097664179385844023500153575400773046663445372582121327132497036573008704158404119834536496418066803861393760416717760561456645087286277369977226179543876807913702712159190743274981485696072178592077219589766397703326507930721399149387515444703983684704645080424125509806006225722399339129462214272180526473738903311386342659201878343107058039608227259292544760516824895663851192798098126856043240851750831279661373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345573515945576919735411470550976665539825549269594935848473397660711266008590001577612989244438425790830731125411168826209101580174178842500183635090778831270534139663337437075065785813812149779633009678083906646137410180391653122620596717557037052000866732113567590631799963836174429870266600431802515695273676339420112594462097247289775867319622917124807668576487019748012323699259909764042680142407934640948398092617438516190561927367541350816729832308577250290235183560214236625189449165300227984780569866471978859889928311470937722247830562703090021482105546860249443475353818326665701321578733372853824766141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302325556436576549131347474596013296774136026201328735047874963650186233466455982902663615624715671716956780876827647288374815143219256450733753516610871533610258787447598240409116631147025700149203873164543835029336284492364862794308174794465641739152258900582315105418405236328914194163561137527993456023773851945146284667570113711115804433539782974844033275877511366267731793784498231255276218249703444386460503185270627099643698383471783913654553918076984837602828548635076823538155953995900163906314195254106979009265853649669822505572400083024516278210625278354836973687232992573110385660050654595891698773317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277539463318451815093265654323954357856647146070974826319228669726478499147201388592277878454947870754512058838344987036703813696726943731098676113594224472470089458965809881332828079989483932443710164288436375040596441433976285669617949656568637367312423363054921621348316968193489869129300720697402980837283257993186368471241018325152668886337744329886305661335416845977653357977603777861597378754215907581918551128651476841269008080373230910313031123427856717032778953743415111133602786070080342876344622039975790348079656459077259879845090202770780471397790642459679259416028417121551633859087552248566913790807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17941475272908253829178421467947388024535144232709066406207506391361171346179562545854891132580908642700618716227497922603014350113661512315061564796316227694199244365583216500675043438117441001521359914031605145306455912849105292886778845355421477840388870295082518592973946876613502123678140855841493440956054655716500016365056646553569666482706195861095361186613105487259081765132044777645454329235437080648989406137478335444781298468563024067869095939516699839849412381840286601605635074288372302205836320936581107611379554686350305398076668499529839796899913264335766386381771918278853936404131092433138872554533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Hong Kong China Country Signing Certificate Authority, O = Hong Kong China, OU = Immigration Department, C = CN", + "modulus": "16289340279195424787980351115574276968689183368154720946747549492396498957516559037781358675444879641491115110865910814262571734576231198128270073042598722654648516011693062864503497752854344825730564658979981046542532278870042948241552767674624089123667314844703585319904276660694935113216285260029116966347399349243808132135073988116207430725809087856146255233361646599716812477589891012886849045946334882754501807228553461444965641345590191232950540771544648045655229708452943860661255718725605177706918196597029562287571180469900186880641002048735080881373220087108483194346915096932870435742127118312718644117677", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334130483671865340265171158854460134345833391191032773002750114526766597131524345643449114495382882807168633398374679331621026515561326842061493822678618449647270038192176679218286582136581894569590430947757775502534163207884081270813095221783631628513516905377624145933919893007073110385781559008858083862774443238314891864614615415316671227036518068717984005759078632348577626037246651272821069449674014931000287795895314313788714326797541014564073268270541330528004286530034969378270989673878599544465093656376975423264244853777553127974261619835110712082896791039582956123118602037577296167260447583449794198877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282633330616123243063441244413076457536279200729199212715144711614881605781675202398103841656602041111940047958418948959579623972198868354957136723112458088814242386276431578444981055797989953805988041317161132383512332533790453662741005058668408063044825020421273676562027297390458113801089813437867538303905729345056378705959297626892318186358943671468026689883662015054647572211968179967588537711427390086539501408066831208134893188774101595248688735451169517364833828980122194335497659225194133170096867825022956867470756354315354796232514601216035566544198240520752187220483421901500834193488333268605627496151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22907076102793914229920703578092860647495807915955852725015935142290952190211065916060371681612508590303707471110339719424209622171740872876269400550271909367179255111261674118355910502921775158174315378778053338856233592170850879392456669954898950948240577747622953045273737712166913999640512609540737376547304927489280517805711434728845235001993329700635600454232191615369054522833895892229564524920587895952437231256353799285103420626754015101378883797487260128421850836128671892009442684537728846601917565192861806897985010672502252948877027519915283395253479820100873721749105207146836571315464906029424726133783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18905018897968886011996465648532273251034128391790919364301787296752337842995968699620867373841711971297358847343864221703102436678429212131039053492915401353400021056642638966047601480868382214811326068755215495322220180940464575701794561609777056805440049123564136383726088412308852994466597879482580729310727683961038765767456378498104714818090433239266876264061566370237941603165963254999407998094674020617765388428928022096269324856916363705524881350571967757086598408599022672016709079831668799000154038664388193284517292299348349169634429388597973566517641207515333864396476341762576282384948119628198383000949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314276816030435704102174277221274221993982572075034301071768026591255712779342696788245846813350816937552281065408706441111262424536955104643467112743612065650609777781803083032906649485486965002892980545715843368451224918694604140598709267448750855951886836513392946060818922333609155003724373506930973308077026778700797436534135986357005905607845370091656447714392830727735687760084816853918543770791716865077553452423412675783225442549344405167460664786664254481900326372602339844637673949533284218270040853145413776894389740848088525755453933836697925822373658876765951306264487589816302733448012936203751043133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326615045386685888512971376405983534565244282076132274068870411205430960416494637320365002045132466470384989516766137846064551859500161061802661998152788516801831758877864683684678475451303875539252462095039678341538440805432904795103146919463332070879952034437673065424677039791718446660871465884914481930446479003224942738554723918158068634191444303462321840678709386814443836586821067340495902041573379267601256395170036857150361458329169310094110856776306125990411442826292404523981869325138693145786495332499079737028013796621534842876896861972183126683069791096527550263344821930947156357629965702926481054337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24819217892944813273071582758535213931270064286367409357967057247485642160224066319171923271223010162731063575159405916119216318619458567887461950146876686071288904727368842754366541210937795794858320392929396703207747686871171761797882098560194294340976247485212924728208647303921773351461462456608099152655816438998508519797514144016199565885311577652185451997039900622623226019008167269190682564135285704246362845369227867667159164626785123853636837917666490996573939940500941609451167039090121089370607349473377962072042433516691225196367012146832901373175436800312557495502327246800517375042519266267807272848217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30710428211125982192204773126812297115160846682342930319489705605694647476671514913143370464718596555751972601767319975311590682433258317130685254394900326819527872120211462948330704298736467022858029596698290180014048699389696904755907745702387662156322930228361506150099572121945390492473750889963241510298200071919124492958785521796695958360596731058484889055037401719394998382413688040736239812030304694262665972660964213699522453418229746350730107938395900353187728368898559198779195367777200622542024404136603544545811589018019116322451412662872891611990409920149694354402241568157737232549976067568787440090287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25996554454765173036203871841753955665927606938783143242948905918099456289660610646210751960491830836138117603320794726878109129313406370625456253918565956749533409018817525533607603121794816089696058892651276973797031326413725844224134866397620157557740149903523649595016101010165693866334871041267031048630636264128886427903508861296709751567822533720299911836973416529291393773321054650003064344599849482390139663520187675500320368669521850742390754877294963064846650774917803703744010221293896399121471666576617693762108404938162196473510914808453232745455294873836060023722238558817318805392761079918303171410953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20987448187381886047277762699782083850411654239799148241150555781181830012448867001393752249216098034949717663747200593321886165998298239667509259502039811489123636058917961130390207012250932384300011524125693947518718258742770442511936052589672091244560926030972447949977015987989402522346172766983583772784136502915506224482770505665107110983481346392019317765139271539536791636641396096664465784754325557408686346094438487699611758718679983349938021530787835241603212672239975901978174916637101080572610238109894359052557462877041790416035041698175771190489511934907596641352606665679522439035586898603921613136637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250043088494413037434476647139462841509691843779270695419025731512525792884460537545924192276517603683558147677748566055699122870928743989420146143660700153488415159345119214460741354539532099451150299327590432697689729001106596500655968627185031117100981111657230219133585657648284984010029037138714051772914750516295101036817772020282894665995820895703775843258336037321891024603346698226033552808040214295908873772300307212655277372965648522985330461611719603466362017023033564634138817675396241331942474056205645325012391325660070589207765701823039588737615055770238285543083051965737808480640970998645014419967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300933907713212776222014802001624175932728814832064806265925888981163949832064675860551237327904994424424321346143160744586553415484897760276022714837838017864960529650646707663288095062350462450845976586569438069999597298094706399046716592279958028629783953753162969099825059333417061187915534222986425187491886022486682481646853401988297016713449915775457944096528960238568010723533112045007318315509126240224990565485621076995414727196798622356183577343401884921008907962107485211155758477121974784260538738743827564843388689138378080109943466853118937020683639834961676862967826766186348579256532552740297636913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22468016820741657254431624717712500930533925048132199456831725562464361496151361950936793760223889972944505084968995797821053311581673541919217346678457319194734867860694860745791093806447390311594813745033495160994473797897061744723200617662630070957333607344643434840005961651757975471012637382114163929514437851576660700056709045097830997180143841121552138221795080682115520615261958841322343537080047297060631940166140109810510074202134767474502003652394841044233547115268092315280459916476955264006042246913122745244193639198180699138296802632587812966190582942480610034432215236791739488694970679277932423800191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30090970463646676729821397032398751696961084450778043556801948476824618848257560532887013636250538663077600396229971408640204102259512959971690423540456653477467958093286353419515678352379732480993028175158926447884311554836692187745759779114507635778891652054287000444815418917013730105587875977269458949442422229325307331908416771215433826046111525512740582062249558110426808951253213973527680418117541367036248607202361781958636342596212497427328094652432736411060561363605462062088186024269566990333073616507336189160799886028376088734906290792250087929523506361566414894614082480883759208045594242299124461745041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22075285246759814454412970802240491799546329442465368198652045249092287507678729585790584051109116234422105799151081016488743122347402767174237624960527168296160013942256887961918273711826781174909265151437890573164831887450305052214076260463893705783479579183514720318621541719274897627496943020393998616816387651984281327240914629447607165174919418471644110763942012762687439277026300370693175994078441325098622981391443417487245038944797121262671761404321595707303718748804187269405082415388397547211334043443677799737070520230082398590674194934058914900012520171011197176849123415765787189114798704698623303055721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24492332638593092257580075591048189104580710850916732292724843243573279044720910618529691348854610821548376791918328504116061588822591298310236688260435371161974995835741450120561673228701866517841254810856270301071421596455677036920203007499347414977878730169989071569890480393049745990222282396954747268704062937876385398230632008590528185996081561326976351091933906905032754183735117017503809060800720411256476676184012034669011764893139018825356023666038065797573024864199990748372820234493057882827943259271484647222610858164263678530179870136549715907558850152715787034516997148253454753633190960085149169995949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18507424782763971494960280914699800117496161371462410484897248040830944346815697100876546866796992380491303526942166990278399928470111968617254783797192421389488577118718823242593323216699122218685371420117404288526452785713829432860847072517503221477839957353533606796478592749235371246270735442597687131067393917779527646569599703717297878688468171538458645994762821058312665816154273446333174908837790608816339169360062310649492207351358669503012202159547447421720203341935212395863504929743413589732080801055522587127162806845188566988486739409270498868068214898336288038033535241214614004952031812194795272586679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339925017543395857103652491675393925772413714730212237289177500603300382721188433171568100724789373858898368148782320318539984975296826447967567612397722303212771917150391209409900822037604736049259564400711760169343733674638746153023606345583244315989544539957615701213420563741122056945159227382715538413834837463124439871040489539296700923355294406263297795520728757793704014595684458039646684758066757691854047605171126475747696852750259439788190249222664370390634025268861618919436266462377929567291585974503889712355344923876750827633305886236420784119020795087724632867701644789372451322131034822243480056461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20116571702236616965799235132931172636107778274986806554410917937117899703281329013961516623501487888974049940976720083759931960295217174657843420995823966560486714569209180468397078135762135110304997980852253256083427286158028796687403424172258359972852419404062712273970325302424630938565552009243989124316736711573822925923259704769071200364161591463266073925952000445525499975828223339453347591245832320279390458491956605000622955738024890012987599640093843607250926553605569435289249408440896703812238078588815872923147341097274398214518202765556553683110460273443795613784595948878115997206684997452461721988989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30997300007187544887471441550226820718773163629571186594286096409869406561880363934135911514515801863986797251199524657441400843472278668413347064460021734757048034942227320739584311909977523414453081995496615044595981847653907735023970116236768884681989045277849384284283894607028496269373521617342565971396374802108974966885408488388540101178372369277479740965346861283939099335940198059565158695939665938882558034008452760873708252774531792232275224102267430306350218117597342101376673659669310106232762941931534379432915947000384204628482055611877056757254932226299545199319374770778469135088639038872027313454817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18986410613850237624299333422744464646174053270506727583085213818882181541511739040078011114409436123151031142634742172256771053147057130651261868413290923357789079299218341492354224498100593958638133891885481612547942567530035615609672152606212860713218500834867514757971889484734950293149281190040905103464575659162446298718868819530631269803389974630965131445742682078814462397287678066186602233956970203881838288311164595306682897103604650973761308574960496578790606885702942152712891074210557584014203915149870079943376676299487251425534802142153635695825132893214789527868951140460804916793591590872411858279441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20537270254013078951712339553818012608690103302441770166507715182183339187673105743896413221720917531579182289497783804517578390158936563543509163833108447585335197684130826765472488131325493574124456203408588078286362016562288507566350734031539367735232695233146165890738411296566087070196162372133071346716310050859789414279848462600113458199020583017099273157700264562913338198879326560483620209018230328800369342895945775023558688229521249466097146474170066744481443829052344451801866371955180674045540640170573364333180797495230238603693615211090076612213433484340589694933208777324612256467293990660308680344317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30102510287765282925800220733007602993991860583699330983221017139503333835655809942752833547517387980722492061256343531829403722062586151351040137731225110188528471635201246021397691136707328777049951606727934598472224831640977661590406447246869030461752131863294823635600855910516353394554352840090171744666065387635971270881750346547942944234587997954491617783443268409303337815826386262995315445068882806233403552802356417806799182250407208366121116928658715523863722696112454511841733337622917112740468292450839042699508868506465489872375094554858660308080873953787415773809033522190182046278307859765939235499001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16248125208002049133532877765757428029587343341649209413998031817957216415371268560977681894284958247401215689627462440109709836188807550693895820431568672550133510619123685813520028625009797123690267782162677795895210889453608966331268897698347205720204980336977262770451036781898349534366102092976468396148540340876741661900887132405437033133202264649277052811818727547212984164800589382315169076191860180223830902121675628893237185514734026832684238646140852230418081817963139068722124466524032542131353503160908058085902025161504286929453116792237647942999032374317485624954828272456869643754177935063355685034171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289041331796604042581073388136234124354985728528839348980933833880968524739458324617483649476786100772182613627860996110078331381400946448258689575540869465581575273653737872737524780151808537528030970098451986016846194580907600261650228294239176925755579690182706133032029508746212699906467065411918640350259908715311072981803247703523372711002307499856094586459469422919260926465506472334907635021073884616836388153268733500092442678249490755579001683789987193960438442377759716378903654779905180598105750140545636133218032312839006227735877618209755343319362784149861612257629549520464487114106887019571226167951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270491969912244671889937166100956313158935971890672892862190268635769071195415121502337907443023895482622537888682204310106063604426268113835150792086449865323384948163154893515573012089562247676176237124211567926926518096245310738689551221279616382394325666970177318004709242367306471335368878792928349451825157679377311523531401071535501410177118820983173828416738192072120467707764984552210445141653054960322973933234136194605040858831766234969489505261619195252773116309236335992623593864490089384244773207478914575468961576091593972180270051631818325274414983403394643234176574811801986519808373566717650053157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16885091723573616304414737145174428812364121697958561528561308112049114499278897997295135337501556811253995158227725473992195539870016019738522276595701090502770369676991655998570066614037396277529001106538267234085539982145782436820650093356699889740396675257093564493478670283251819392981812659745250064055028282743288466054711569835406409849337626273486403842939319827755053575659533395345139766701053977664134284089060864056108312666815572376798257379197440414923370400966770581166496593205160066248623405049960062860403334650529913731442671699400918725578695521598595995987307847690848757336801147216417397551469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16833550857055422704364333460384642761937969813822741545127904910181439836389103000495661297240406981017078986188251520379571723802356498598825360311730032514830214815941562248431706038230338143165284492061533252457348236750309715045772006866481040174965883055899843659647672781335080678571655317376749320750144524562290125120046069173207434714818181554051635166262744778307746445013701726656623107723331992287531680883055380652096587991665914350491231569029166614757145713833584300694525716193451956769664493731064706175626980067926173917668938681140683566824879819891252603305068728528045744652161037422251362180917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16238589249955960525416896387403141190008561210275280417643538127587699065959358834103363772272088934604992120434822223433327509352615135070389117660253974301531818366190912200085704916717012225739489102917138355648854757273571923183807253708569702035791846625792844090469214485462892272554734999022443068751602986778782421213627253003914717610421577226864676883217288903240964858437865132558519866317469265592624843292027962522753126130032911781175460859456069000804101035545917868677122574623075151996034019245122528552349843848400831688798855171015950494432636348182381599284488057860734863851569953208155553627631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20014547554617433271636005577520778004266027015343344653552703016233115949729840508206497918690456398221134106407745134180754170000740896490689883531863458410287215772163945092054395189656743000005649611302226755007986645428597191244341227880317777104452885600243725948313181321376485978050374776225719122421874245477616942793340030805612553333674941135799815988303088453749621127499816102396263403157985870554198690678124836640117011353698042670726005864686314403159878531470680393036189570588548013968131035932764893625778841222183680811642649762909240601970614246316890586807742970829480588304190616486210496413529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23486833398351150502199498737581273017651686282402468042636606366333034389016364876294863139865472202645269650313985134676117950143527041590417850234300654232293519967230370147621538148710067617582754092023327603597682677212174036572530767930742239972422338796935706257419051050323879191190690784798356981415529311762704748353020795513323413705364016095738574306464514805410101802737447939253621459529580451516637827336762031379700662953258423679723956150648400648921237198330467401689483591687363661328014154855759909435205647707361690653502357731644609934188049053816654098434695728375565708764456147561474410204569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17781700632765675224279875341504714159273794088193664656563072384908163102126198660303801373742019922663342763211380443617090872882973916442389932134126894692722280728927967746347792034992987349960802432888468385162700525008519837746474541832049611260205130382519927377150261340199044295006773220797421449214274244998147189464455630846528734262659924982276479918547220170159393951513081137496297365926624225373580481728790225493754018481544714833955423512081771222205663850291256003088626349063357834224454005481285248266160993648464593696383228987705729736429689651907913503341988387909477932351800585249633537455387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17997266792589524502543119300666851798770239227286016504122600551164013854180216476518497319751862172099235550611289657660389938028776402645791522948079316275410112748671345512360717473073161820628024027417140471580483890859991922300428063897496247071640600260859583540570764241395697916538961579324659651580078859914588396026317513812217841870434575291157996665093239432667064994489277424888029286788910324415175421637318270367443113119200963637458244729384515474316452363258860366298275486754965507104692947686815398051792185807209890711086163933012371954867572708362890349746183086792239228458850724795143956447309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340424368158292072837848584781396879838654696321310253758922557073775960957505143367891851684222615395407312639094768158022278581296270972787726471827687726435306305820384946774534302691153370613408563704552455938841964306025503567149682868844918501353651240837478516793020224466802089230851886178460231744142793503893940728857149112220182932560995941076467576245739550785726130856249105585512571896431373588562340069767045165838758623829252323300217410511927292421556711044867413019265403022964433687501357325235834407703951934304490953661445560412126055279946715317989245230007272576579871377705744415940038167863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22130081905925741539508704954408384163101420545950682792983777186350792385830304570285927929274602567096033394769995813682973709416781370158938406090886545599868619113389631215946422416446694645176019539260604904807143922633325471417723328065479268732544714172803245809047397403744234784798225115438035704769024138124994623175833150152717148768303439796165827794575108020981960013509520248648706859991517963037992206722379632299352003191492206719153763818360560977096097332403776860282605370500652146365542305268644342590906348633787955039809273060898732812054279185227395271921327725964482333226373371249482313985717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349716960470648346001924161639687228508098789249678427654965995583589735226290581779544051007509137579319059849370026940428077644369457015670818518531774368910094815169221668498501882857102394936112275872685071458719246021256804298035861441032201123186530968920738098139003476865486442739843745401717261247079015363904438426308569307290324266404793425829775812698000356424856947837570687356134715207500285955371498315817569854613037546612244586256984671453214026476203018267802609772699902704764713399658177761394121874352634999901514032173042663561510987862901765442342602385191840639917437097882564411042725221201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25140158910143806756942749713906329210887991391736420708107617193634145122195660939970204317956901619991522927873883686930046556483778960968549315678548740496592072742691967065395896970965044633824314590146613247991855970623880960345359214887108142263951244997490471935095902825351526740242616487244171640424960324361924113733202529480277383947582893834213860485576324266657264083434685621137545167650868884909076649906300113099361995931266067267866102364694638058704269955654702532384281024357594479658771182724311477791898778677048465119456714350306675650249501892614657139476947242226652035306996636758917858394703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26608535042304824797965211200518025520274344366037438262313900695067360254063665826782860005239321808569448797329789196601202089788843920340488423586733231737825466630790340297293292590826124396852780863611336535726189531417559086556073349772131940768418594625023680046943648798517556405178528077864133250265528978712485537556772173753393896210004735369764765855279858249323419998853766653622313932073102339336001242236799252623796798811950866021708648946247343220776356767122526502986497114441824560016589999784920725634286292580441785018333751669355135249170922127285954032948149045651866795481600601102629721494181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18360730898930325845367288382741844060584860558950226854349282566927549996649131020866098234254613906747391975688254286256803705177278517956003874897786346469659671768369099216987163879650717350234330822065325859871766928127065290728799666300031290892955902428159643697852349602584359204216337049148371998527932127415729849529666835849947297198459125521927471407349825834034383707708627454971510825195958530727763408897472710229263505478961788930355885797576170272434134243242484554898173335196635006018783965619127983848985112492273234301827978407512904838422619371508325881867962141133169223871342001277741769664159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16405342743635497051865975472346516725941163703504771639037831135251404122557658561613309478588681535761519890803191949330868651344501716768463569755914196352558211298481466283071162821539205468357846110024280636697699561554810941544896816889724187266660788309532461363294847171739760205759280769504391480848362091223397144801473994573782364623795882004733051232212525811808844732008808323521350023079866025292881374024333934400313726574766284164363260645975901910407051774403779040469776670842163052694082881166595242825587296309882993079684861717765288895068933518346665763131078394748808006924955394553203984962207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26642448294156746106982344911402137500302448029895766506301036095632543240713564560879251623769669375837949058067570990792602745932517700369087613796722593721325614173231319916985590889017380834097445704083320011216650794984497765792476961393677810014446021594200338653869006000804572456405041276004457213724523498353305660906819418614646033358952512090155178827804311093198658404986581308304485409318181187804025380497597258479286957946310069955720047234753610925502085692105841904916118393087871589119303836634179855456442568566368963729882726886246358735877719436973329160851420258520669844366346610358721905278049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23867759394817867567751785518634301936940763725414292143441534165439742420919234357212110740150297839303493817723850011948663739574534183733501785117162926655313505543317439744396845582636365991063599293534148264673223671383141935771692246079111071571672592108336398664634017462507109372728097850965250727985156265772297978750162670804455843495375182400058685819005089184470738875735446622628470407578860503055297612799654213749137507653798930439783205627777526303646081533266887122940424542209017592231427814210258520691618321427419520375266781891780242077325202615064976199218361768131371004525172878677256031080897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17239915266826211685372634075508954921505850027747100244201997725421825351200624600611713662871228051157957992513796489876096902901344107894367534521796543361062640913814404182856243170439203343746629361849676489915023802989599125038385649923735222470054281262974276943876085132098110666662760292886607016784689399392855771148835700591346492479308017787607133701859835021425622757480674317792060522995298156321132163081986360372756709651595954623141183526264943487707566777966473576517760977436517972466100120803519152050003614392485455666542160689019573986089172018590810508561560400472518454582140938226030463682233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21542963816704443395927206991333823288363077298794579489381228639918774182565872928603658620503410448950550075983209388774724914254017987767969782840007648896841853268892466748615104743201655628610718391919344121029043456675991949689587201841411589660492359436568083226695112964519017341976865550900799794803644435842306541000604327573840730255114519327459780768288804057850246392659614138081058590349374039319196675694454352118631312836019159151473506891254800541350222443510482604324505795203100239511064304448458301396730364367171304563350129935483929895255015707870730101777002733218623582645388608834572082605261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30199779976150775918794827993585502812331047558020567301418917635208278366443018531662333535895741531637921731509832441469686872622793102740777475293046959481957421023242145252769561944107266717255978260582857173022968092041128765579666078444619522448123211082791166578559719299260955558611103201024035063817624443014210848004204208863595484624518746936139062838184507144593361673397368729277749489247266276100795209467630211796435875141756279120935472248009741920264693092787461198524073347687461191424194079469056309950376573014330100957200573756499563115653726876552790058016716698007284988643115710147415493254551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297835887098069361851269425167852793864800006458551439829316802946577234637882127046071410654253199047266089749971959780759113715069715724212630577797079762461750069649013168256742310455672399895269607698373884960432026022787446276113595534570556771290601192154413279526925835886464914035727833721131458833469154589703844551419673656332478754349779823843210993857968424473722316127823441440992879888957762933672262279613101749689771681258589835668547348594218059847936246234493253754641773016074535322709191852313235199389723218797329704037388772268611196116460072155990578907204498973974702736721690805993455045563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311068602110997053169282999454204976243014930699829194099673699491995330104025862372527895215691793780924519638054388214021256046986286463414700813705315284439007925538857024574114219346687688091591489519590941161622587769099816897282039031697977624022457924408782129051505137577867745703302814125680258394549148779805396878008529384613253302625524834729581235375199695765382161541205230152947677678524053596611789952797897963482463654451319642063612220247849048177787102648110480044707958651432738633175805172647176176580653399281969182684687811914394221101426943507584475831289396891618301063029468440044639871967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17992116421433992806970805449904221947004345674177196401510780195731843918474962672509970629826367512102381320246583326252972322932596041330328236931213128111459742909070585099962708537842307670156077454411129021051510514198325074067694146113575672798508140618646996122883972118531059654866190727389196290955977134458236353731446491364802147210606217298394807007794275589640094545315239685324756737348717711615918709790095205945982745820072176243646747046321241674628035625274580542126797969087306810223936768926086577617007090812722169254026899698343754284584540983615036822188139248885193361286280098270447012373899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295048249705137419537745481822738657608103066226468139251229421451455601705088236619924708792195753439928778150830037912967620475542061160354725667818774765548338243868335653310929469897483439172675268937516049779667852971088986734662939427947402928380872262430591861953471826394775155286310398416081829978513008575923881551810876885547967784975821299965374368115495129554343850285048579583133109330383336532212429687944242718357346403556855033941442048044911994599616703129682823218682215368837436269364280762189268590664412244364154736924754822562234984105528667853089146098747063853388914472917650283315136803629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361333644462306516099068815157633083168437853156239644839256449977985641857792279019824395291593236577951029376192046193535037080542069402815950406592471139585485333733394109185286345357650437863071899926060379334546355541715392179145945199178758956911962653839934304761515900882325845904642264584464288822155870009578710162704144986139404713812821860083240098503767714782472564672811490133749187361310183273928554939162445701431214647807332769816148131185513827395863757385871169044410160153329153110525292348002969103295750164882804775940568153354220156963980091920256989471796666625569620324817315258755957058451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292416316976914686094281691999208930765629094371286856360794219724846217628618110633295343753058342439667593791785486279846960587873474174025467875753543841417979269221959577026991471041254721245688202695270131794428660121533862461446539313534041465923353201003424507140541041255701397826869705709743325477834896082102163267992948130618034691008612402217550711365838516128143345442515792845600712508665643938444869614236559421104979916508745482900383580257236829130157630120351323087499753605442903899090683334768689197857642123618183355352355649602292570622563118666389070901846151641851436768196026610496637498343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30353343005521411226784830511019231835344596776313696268726141387063072044575195773955096471278159541688387598299898809584767881618661764646716951435242696137415671117611405679332689416090842119436791101628176936899676580026547177319469369799655165613670469243322160989956113442400134845978359994509401708258870931539001843392789577596121720829742321177419706296016364530696818749786786053715896199316227845253704878005734626116669645911338646802495482588446821447079356195150878613513297613220259728073505053783932564648019323793709783950110476415983359473844061594151166085329461664205669708240085077118405894246599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270630154306403067742221010141545115043118093206559679191112382289761544624508743774222884198143976796672666091244096329754791241430419568125345559186142651285272888061202403440996521751267219251163729886629284147913598274841546176220553433632094008184092472034610792002408974552965039315449406226155248559979151506342526453778028975803734996334569676752622034814423194396469088645362649716990380384218645568493838325039617925728444472940163382923615304667485031569642913254078038314883799836479740245560118168789176550434688229919019096326823489413290583836014830387067041507413421505699823871688106458757972859653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16356851225435244420106335451521764079509460681064755512495117604464897126627707003371870287748802107368296966588848446922974942057062450337545093693047341316688314542878413700170854008208892254109101453931348471239910993635685102796537595819743783489074196254817681099047081632511334365860975409018331742341746658821534700332991782338846921875692444445988807427904594954537715165938600084179015674418842646478538805179532452558005713584779140493717798893337522230595793940985511132094728053608403941652515524685269694515363070969279836242682130924283068466554102850023667899535740253300586631484977371822998575206567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "16361697875023164406577589856821290020169004356571474620467439308082048226805392680016606283198455151690767481024266743690758289195911217648963382066400012939506156692724257267255488507198031692382516787709343568784702624708731590766567021012114143242202781835933070864633802261771375712580317812534450403550836973487005912849993070796200816976614007714729302267462260743253287825091744903382836848277881058353875634624072337384417649178525837315487410444887331593732841701760179051648544074503020649752747587418123810247291245281798720576842910361768606450441197139655182234889548425757503216257983196095558909619977", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253092772171993509950131638327356364601131684561275636675648527104539801652053577695911790511154645455246718814264182962637873912116716607924146495094380282990853636401730446007488134688999964255683548752261271543965589147025115211888992469955913984837357261958053110001899065864136741978683990346518472720997186894519236120428613445873296667727158320079863577825471193851199236382038700227603878360343057105569135391954869237009190194484181262299087739087920493837675096758786319025478161093646547552773363473790505368664440916988836962237267969834898678884041115894179756067656241887870193664905675413966369072889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313981740705579474879303794949346593602418728340179631554142819311066416949156633781626782158376625280980062844245987573180638975719842703994247412449399681186168786594790953131122912520201961757990101330972364378320693266715595153865096938654813435084339106195048952449976798043089035383855557002429200553106470586191749316012919180836893723010445147273604017979366367197167598469698404767211017575864793771679394944147702664980276004096644035436074491567506128057217166702990781421742237010123786810427244230498361868232689849261846165749430530220157289486333055708994063612154740811114689422412348781106409117797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20917422184824048232050718219143545330239443772045675626324690028471166163462242422481098066786678898149980755000852832640516076085721046105843198231773685908360312167858309991404692183182599158314842135033581718908959071138231393754245576544450564226512096496242547238280649892832399637696604682605641364638592801393597088480018111121902249610719716456187493087011379006312671550705561956672337839241796483448748435538156672246101626349891870023351015022698117962439922459429556955764317779294590090785967279709347306313169187215402210169668226809547767955266756310225153637666408412910546114057184417552074255026593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23598504470596192834663671765023031303186287589968521007661881715421658332769909427498803496875204394357443498278394839687249002457201385855364255889266783441971562828182886607780274266960108325660708563206895842788409994510685019008636836474018234731193353960821892714368150030557575585951900561434477510058461895930415139663121112760165135069152680645895164480960647742417160866124649267367020183535545888183519527918867703690476337392108075224304149431363689605171046410682616887267239408804192629716864915899149408030793385103795166057382971737296414460608735633556343976643724690827924340255038674342612685398511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303465052640161921541001453461383363664313424280706753648119109740399754645504315049636074080370118745422059545096946710219468465616223070872282372508008982364478408924880428534388214354048932050561776232298262746840060721774266573891397800061014489459234125795791139234502502669235659961884600816676933639265440664389777261128841502068518393793281784025123996121261108659991389065317525417692037740042305471757470444395227408042097672501604189639334773833752418375636994081954416919949131170948663898388112830974839745012606019739445389882648033599103980452922666166137383857774949547387404571882556338501752812789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26291527144071562482059846297046545004004935903419533880687236519368070796591428446427610314530800972732670609674268994409976392046609003181223558354640160994697261356038971411722169604933514570762503297907380089806057812899610110327864610757675396322621516945940733912671700021194041535710679160035435069230019380174066631338900472946773177521828152456989131591505735997355046148451001002628962757048760531353459977795949504130042702687234648323011337997618417320739259822038265412925133920732611708775304909525225789408358952370567950803269004696272613554538231403887182564422181652422355832495169973508912842930579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17117742158817356854219451999181511270235752812553119005309748496664445051593541466768869414659271028032047279932334097157966522419311969364160377418635888167274933769762330454639457903594409564761393619017848574351886500883181106232459762959239268707450487510111237344080914901599724952989846569790413900260830034967673417969474087514741068784993099163111101126419194437201553976212329021648764773775148410079717481402953308931585728084191870264857451709197205539339811698108127628288189257533947662632545500702946422318700217678045277316229981973651090734379075872929941868682115516909298475812739768199568717383699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16383139376620448346444092810611576481269979554139938993815572252738993432137742607933531577058510378245422744653298561735690564475711964159923298164978754113622115545293251889699707859444293824232864675140651610253467854091778337995204336983632160513388457763849252923548560373801963407126867558976486825143161476342494652114883278685658086824566049820595418967979921579600630118879651976626932060403893075009249721572335630116725346811051818782335855001760565840325034355441608480020812315037509604021578473763495850072830160254958290563232519667327238944454320803526581499857253547104298278106522118127538720787167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21124690945700717673868399473452752435856682720656572123251064138526164924484027533864747111835814630934288760061081145391233292335815198938884887299490062696813244274472531953579766409326341115294547697848933314688338524522729031501500353378075301833473045467680153004463433209047713346792782008279847416151919482989747859922055101331116203384307036917383611935442543782635326925357645798739562064533675536683629689575315563854338456646617822936716176406196503627647052585105937857408899774127813512235972122095723520339438097685077594009533636435204914652075761414673619934773935210283975713941890641500283831727327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296949647251721455061347422977807969566994887051328063136864112829689706966065908589939221944269301321949973743053648451472156494987401907326984514660437822897104579092268549846838020738867626833644430490831827059349746567995301488868283383963835684962201377117573682600669263614325647794131072755599311827211525162374048853476943688553102174115109728358595357284070240286347304024938857072394485086254354053002168206548482901134538206187313938128244998892812237093167434860095500318365266718695865451673545256667261012531885288909094874316550896841468744094376249125293942547066433838238848906028651905116687742951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22643383882688660878972827206163675228298686923926619819568082524403865825488581118252854266440375473441564300572574481069773363802489912125178803235554503236020254743874081101132780931813310757363193195652650936966036507433492122182053645941816712982121370962726248723369610210988856696723660770034741734317837670050286984458847932747322365353960814484672957319284610302027609093279715990114045274753054120071195522234061199405448803579466304820906464180192374115914351127352963530257032390472438939775771234268436774924132403069683628818974824438688219628149375671650444409293346341970945263690320518820257546234207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17889693582110817275939331331861734715541107952082560334747395525556388441437429543773280956712711237742586673334083250028472804704939101636336010105887286112620454939742836760838302365522757108509188763933523704833300866353607173519996739131413389093020448587364342067608765289636747582658887394447187343312131835562974459293724808391143214047339005206055173406563278811225733426868030979112178443740384669546154709675934940494719331435125652380434412192776827655524803579592787682043069187787056455583852318114372937435048136693273066414048955227226519953127373515470917276083547457373821385978460379632098283253379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16768770238411173647438047834734117313074670146748132019552866785890152901821337039066512222400401328942277112909643849886814454355359292189464043286494665000653835438617179007045086294235392700424308613162020632879136011556045077948319953218387689299522817521171763645126526363160124998845923131793205835994135208398743224988542552067881580289778992712449964694784379201220295956254740772798944417852401187212968177617965173146514179098106677716525482311571082448732255846435415169811810021287174710154692682133020520477973067105283918868675436235631038492384599437376797351409268979208216054675594738892136347263471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322244048340016170567177678802757468253096441040432826443597164926723322298255119343544251440511998446507117474504813237995855775187740045343676942993608928638919124362932438526536678001157848885901177601854307120508367720973234827240879701275880830759959504729091040769802613914618760236067762560699689386665802190564970991286106495670234183037815346631768779538814864126251091914879984946182596413724179964567066310769690461035209644265896806025961721689553263193687422357386739219001527979050765898773294881940985124205958413295555906365157143396918860102669838867855421814123681768350092886704149136175884412541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28244168990467294637711639486981301316273341481121900351698078384080786765187512644118330253497869031631907148575531633128585075274561819446350562877801740317459287815639029827805566887799983754609053878577053818222810833836154286337460564796905248388493068757057034807160096954537901934448181135406554996122850917291955416554268564469112203889892354012593135029958609725557024962434821423725376427876442899831563415156267114846120158552545994703969317662229596048090933271966754125454857154095359598688643604817217173634376873874477530461924881187190206090652166318226402028092054718264521639215671934717590785561563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25307152786570485758333273145961718114908290041192448619639026877014244620152966703789715097284782295260780475191678778334453648568233685422887264472272952577916773180498965233702524444289963677155415896568862442248013509894451724998007738086412629441599744356597741194660690906669464918737438608554412693647863736480807950876735059212945173443786146161796125551433173162131427727008421200576698277843613745141613001727030607632468134386071289859795216916666025772510271860784946890490237763421325869578381401055865902639962221515887973479010335400474708114251212736575650526528608874388581732552500742350467643470371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28118967786681787290822398467744307087757951309498215496515883147390114167174543228227397647154417037816518737596676314860714544117237624309433880975702289177395195984806282329098930755932839691672957666086059779869324486791666123034862767294080950453546360062755927437745825383990232337205335050798095673503051270637632599414480228338465808580957514490503236170584399182308973097082592818020602246313490178291458704716844664640876302049695050462305847075053206154736691822717254669443907656875640846802736685015266045747842644248163509349157577712305175124233099688762689927663181977034081484219232824366504663864699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281762339030002608465608887663753813995855654169032078112904191292155731731598958910858631247735870091419722061958101272102131387519656065942103172153140004161121275725148242183399061071774565913416585781977947116421086786980658052391788331606346947901251316974649222866977528152897757698993837467878100734981203737804068317792012884271440933221987335286332571962372207610391654142615225831276762456772377081145788119308735726500444171113455234560182563556314400644233168609856473150936942227808286148904234650113372892809570171443170178222473204492649388736534290343234436840634685420838383744341449091573427766799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20549649438440784901644102121267329229683052735456866514722243729547351904298738057317685238358069438900212357211569316425918068477217366928888623084525508146198844991528451510807177766763026699575600678043743371843264571033098017496910810283041166661325323453678003137141851386727621069171098869401334243597521552281206315273310849928413845129986108612767912155787712818206462451211539337367007414666048571940295578067289710031743352249789026029114704705355921038767555060756552405155722710502308955394632099557146047713446126020289567365690400236479865055278891308013863599657141199090051753741362722912591559028523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16495628104174027848735912194026280595250774487456437797578291408210382648719893445442489724720478506812809010354196759884216611416905831668568298203316961495590408770924246109348343125324050042044500878246156222462693223928607013038150560709496901333315597244444243838501541671789751085319378985846525658503604880145473884381540756766210831162881501954014755116541376212870093363165007310447555628725496099119452523544251996772722547834337540509579391725315815086609739991875841937329293234790698021378998390977552387651205652741066328416063312046162646706470996451804966378022689887873764086272081496123617129895343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22845507350160927962852366401450549796080446965017588673114733841554271932846397598590451170615134868202179594373295129631251550612474194893241443222425485316255193749169889495995836275774918979604714568132009417306372264015034715628346982343411534226621129616925920585756974091343944904622249883862675935171166600022168607821011060728415659462957840235600429763406931123076850551302006426056685548173219910499909195706495231034024279754477087044709226715792304168445349046269636157067738952288092479701459555433911299551922612790856452941145319703197665962838295690628908667449007373675299393417153082634753328122101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21152943160582797571432605744309991180514373301166961280031206230018561270847208909555338127380683448307866836990398345461470093836738625865126208939364659644925149410876347367656396811484759446361352975492785851709601127104373260281985018401974174084797144107784735748803247793272552795981445450511477651204975777063556705498035577283418518815982901478154697652423344615091513733722857407063193647500519282928611785715573602854100236181454778031061281890718290766854141758846273480056260658787710699812293172294062316480302041922625196234783849074357828286467222574668272508321310703943750773345352688834682301648919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18585328899006804185844440619619646519504847549106458474058519260802295142365339277768851642493460922941161091813875373419423981886226290047085917804130111893269929793421114470192500117882582109729163293897980969981393442408493016745903675767423274467873910494435942381416162866123249305745447734777895805800116454531162556323225019773431056974091064824806258074381038399748680011198111882651887212920669933627735261783534198094598002489551109751134821704414420791288427478470756478362042897473669046384938343014117608152003670082280411972783973385803210033210218341634954483226402110278590047331937245613929099147837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27941999767195312528361122740738077311164314402339959604930625810444127014410918251094552841801261288736580006703194260264207140761282360759074071759585255301643161355064918516956784414292129269713651808111518696202756242212650268556592003925613897984897069452184235811250660744435368982745590568423607534546876437154349101302739749491220258962523118776975544791807023618189111134110690763261822787424340873752876022230819443254038031288625768737650150238549099412459011285198424721672328244076343223610444111615057592457585252423887101353447250997205934983760985555438256758776371556146543721180604089185583665598661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18395855238357658420679160635985419487634073142652726162410719648444254093066624168820816568824980862197195391583929306632631572771479439705423512214465151429247896001207726131657448805127133139192941202114360928124082442111615755194163215842758536940406402260525474578633702808463619512095557398092800275699256968765499412279589847789306695379416487673561076063031191089312913315107134331107277552980198547507884470309386040101276958179258051944825871802517435263865430492438553006638833145602496687634621066608021178661337637189994363657903450846480051945092023192854282613245071859230730858493038978558244460523743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306164890933505696137672420403408777602965010720595218729604761696666739742921456772432950571496512062119164293291690226582861833221405813590559102392600979571130062006676276844881805059924606621515897180218040146778942610066190800881248412787035272093913183580195879529545754159434166172443274861102066300056066068543548544886988815518075312258042477604472958036791032674082282974001682131401348421249322275769527798312383520187814604319234195523939038143911291292508735544157566501372803025267218144212057129387128215064731411970132312951789429287560836917083270054068041490509350784243399453359573536656499426507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17090889586298978795427644183662661187366766281968108609910337085097003280896265725076921567412949221145323752518566035441018824591098454312502795658524654201113153220521652450578872245799323863745254218313110964942638056396275944637167714723003452907118631775986791334996384724423410843900072199893270371959646570346876671180941986458721707148678752417487480407236385572959916238647720839332679110721718499117361390295414118687054369557501049441253826107650956045721662643810931383700720083264662408267965320578549543093288912876749897894139627859945951917848281429074014390694654085743167078467890662275335689354501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291421642143085410889548414294708079171935398136656948196867712507752922071720384686198415603049408443693247684505029613799251065656975772071096825568642892752035761907101770175187392685827962225068277589885008929939386690957186073517944098991568733332113194045459394952151508251042773822872697313411915729809124991496176513302448397870754980019425667224174164254191752721506361867212880041215236627119387289096860725076960225407205848685225708232080100368209053474223035959760451145552487898963719488141686471420653760924817369503387401497052814140881592850684987531969361865160091471609755801644135459071276415807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27274308762033046977529006729540588423583756231403838194816283389581768877064486105191108403247212214042310986983089411276103307544275601719634100199233911712503133768489593853077030052263589934561576172771858098823986284139741846791614763807368261673210728752521076137147332369174371070244830354749391968934638012768787962702797897286709891466861812292269172067956500628485226718323303590203223375265971047172929667781827908956092224123928859934647883354884131157089377340367212385222623581544262949181074839883574462374728741422859328580353078590795655048487762249347655979656290116614921859960022996527628759715061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "23812866943707303688639110632970821021449622152013704981827074184097086304217136572731192866960712085932107339299368743160737544410526689514129980966837385975406884037607505466454593373120246988882771059374748836692674155795250101802575408863112797795335341165001119318102977765709313110880411117842674404524060934617207018949159856107676853118262900445145867488735554711450549757773720373921829135293774853035349514458821586570400600273814224239068636644803271507107854778639563690323769286132421668974117543317199572875808872693488797112135519212372873111185654109368612803174172877149680516188696702565328865668829", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17001374915071095462498973172339088327059943639612822777500921201162337128807953453180509213528560009176173328315157760104533534043304433555135481667640709493456989944879452076047717749010053043420333658175606266254068075655430725506358117776132069567789033811424617189736082832444295555399877697915483810381358551126752658341229275412609982909243301125431254863487734169379672206527830084384095235174869439108093197923867623497211950041434748049019405429136387933364349314482474343742155937459311492341153761650093301744867412655042453203592334473822020888839519801858177373037098443705514578001973371576864985119759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23802875520576180965190054751998749557009556449714531781675869361376894532457086253137592793037944403840191230120243169458744709966292595085786619211885032504038918736878625849392885673108287981015267613593054544911736307671281899019663484612736139967006761058826782516797464582114699298585127307560060054938653357604174026634703562211109452681276065509709127490415173212150147919555807137464160593671275579907746835098448290043092966696687341265344777078422260014805919916602953186995247455684056145290996551895287614486966280767098281709925673930715885775363525462172644965824966625625409614969210755414098659235337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16372614717002880014269104292750095733209950195553146669261932287240851332785834444661299671590873124869268248339602587477767282301908605078775165688750513820060304883855393998818852755290404921045024557884430511246685199056822840634895613324201895646239433461654840755227638541056253551285667701030738535100427387559410398924927977659154103915658415305187879054620557973353202615446038377062461214455751487853337280753027713226362956581900435686101043511422804616828856582836282433947440704548104363497388818039228919047660002976846500428274714962666754922110470912003222779218037167532005903397455631189579225804707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22723232524804809602545902213207124742314333375900117698296997145046686357694491099115140024997623888032541296466892801447669938269595917147009852271517004008267651146424539579800985286435583081230334090528588681529623708602320846519883516572082213498597331314926538395263518694630180638348137248751435215747693244745311687012115179892625091470071758061308929896579611909619116285514561951253451934958320750854133786424372701324053780217775900789207492732972879224915740426460899482690013995618803698015976020439111789551601366299854252721807241401210543180173268081888759811570519067440735921692943798965275313898741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23924524586234738253207454030595015676881177597531891012093667190332061729769763221789459178409734737191343129156347589754516795109202273562281610173807387510483320142190266804627995873658607806141933080239386954092355616937107371000316137689330689845471630686265617097971811054283978725037493401930941511328139575338682604805892931837743727529554280183012805048019758286420308475234933407531607574765624822961809261716305029803772431676217934378543404276764772144385247486829618454169658354313686673321205198861555810035916364778809477068695771963829278931028214085142194158627171440328426404189112250245190597059093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246892046308995737087261262897460384892177729373337259911462146550553039682569802069181653939902627568639182744203431495420422472053175629154074543206403990961666508063835430193032496968566670212184709691630184744188204850179791054259636952825880585520847935716719773153427061517486777322795420929678311507328167456931208037561149935985537899293317181498063740946500917332260271450984327720613389965039828839368092653655653844601812095421543739020515875238469961040012685208924747728664410476101450765766357210067873938520572215348521157323127908575742184119202099507853390217307057526867926767664549240953631166259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17697375737360272677791382256189312308237491777156282661582205549701116817561528130262763376135534753340484827342530401685708032752373527406162705656425458777034573356197624202645363811082307015772832094833325471622792529482552805304788449507644885428050614412564806026261727944855241123115481118802978431771534358599627056900310159521729926125533247842064090759349856357731376075072451764751511525558729172502181905572415068190924178282597364868403950302960309123617444634609322148768820856760797183602589174455652533655423828506796926309049848442476962309095876104799650913726678540987434189193683719170360522825031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269169870062435796908049737588325326801658695965592661888554166150206884577250790982115533782368616025134734174522746592692096824376634797242617748755072755899828555242271362222796707904547745732326228913764918044019040277864341502281079477751729289222809868393748113781067466097639134282042855407167248451299011574428630136123816025241786505226337727474627655578601622257305284289004773525350773987015683658250333185866666635061266439510400403291051006942187342743679023550509749935180903650159056358957383578522989806382044930477950245239051815250060196595522769332087530897915805155998214956108038356959978464253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23002602769795432935036930776266413885550935361146997711267697017420030700885547852224311994215438082055616794758672249924480636505869974170814354151295726485927092351152932876885772160702364096041618533796949462850451177871010870577995442819418511600167399948827829255671449277432205208750719806151545332251305327280697746405703787737459402173963240926266959469829651223592305883937572082435333463263749837445018738763490792146479386060351232055543825383514070331488440410926065882702652284056724391251823787036479593663411990208124712639377817348809491955640559203466119190488968258483952074809216030525181842192793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28046120392862212468427448269229496091098791451883791294449613972375216275665265608233700569370883994016858623931805641109648350446763272396042858734518321415824392617295409264967088409902211838846521841524568567962740035799067310522347160432134050867683925607114825938890875379820483688195938446779778834388869408444373980947740779452567792996664704017775511480572642720926615563096155181022426807415909632781293960952540691647638540145506390723688516195585360189564721018873859070321643336793762656899699505417800190558502590173517447387061212749620488298464135711024795193627349339924356725772178742807229426049639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16362220595572966362568423696120360267711052646116373128912846915064725136494879722868495719131737440119627832208016352025752316943409851045181308922142543136040409420270217388861208229686427214225350559568192418778027366051586979441444042657387752152636813648817517918706803378529239945794938893944709339290548067760513556833738101040064044183774429156893455981934633310187841133123228515025926311018774916592710605082612351162780837538798933951996366452101786659765568920375202912710171394944290399030143826680370759652399951949157036831299233479419424071208518379003616342858138135695066418706035980006731169694019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24791032977951734076098663360929999386325290799226445977865359020661200522806664695695510401239015236380507147476021488002853698102340584484081803914980382187698310025695715981910235463699131167302159376068990833796310136422250523453344551504305004223951432071914528035905420069636934321680093651095509799019401905587317868436457382637297352290998518711961327337382661334808927314391752170185093637349942151359132861373367427683194398930356181943891240735293787416401944028487608135330863232053870177919031800676365747242986809745615217858737201835982804167921894196984475451241087487999533566460541423273859797384639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284716639575304046484297287702447140967465252356272758803620153327637765629991482530416160959523281557269164636959220117475042974034272114176991679825251689793716422700348871503416004289889164374031933906289677057658499195849329515955743781984214208149713026258632454290323747803282472322405719061995936422722830205673361662463659135351919338985326262497990226509270230201570885561688176476902929479772711022405145831356285042645348870728304955347971450036555175859949236498833107396547130689650402657074253338823743909808561451400507006412376459371610346784317222857363784344888061283548433231448386385391583437397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20509728480028587529647457841422731876201633174157639962490201086957078229279187377070809125113358661133685631195411768684896375974482845027026126710835996721063644163409937390599721001077534191255180006088819395696302354626123239220933826585935244395518174502217612812272067445812573594243903189178013679915696293986562030826022512094831541288229115697421079933863782297299597056523190797199881995617848704876939062957573887867986325497814679294460982522532039297813188382722145981772994962542092230364909681391722936929185382992001722650735889168379937097539226023867998037468043231393147261954454441665625260966607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265460731074592128996188227496150310509059747674214712170435007635652021698847729692566158972800585217085165107178985758538648480968455416588351040336567139265018647192722698489741375874609972606799993269509451766458838262261760056672757077279898362224495026825297877482932020337756913946069718653560553603346851745672988227220548134691243532703929834763191701271926301066777162824712827701975733793053865096147076519872889259418215196834594956257821725899764395024305397761052217976661714647002465874070251862180360604571472211421859372229419870887293107483897733092396614413124281445197274281273699303624737358767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282556667420149806748388895395386279345868899428100023897205114928674028984210290531915680884914169962455761887169669742270263168105434448809493328615635912028865917238808243551924827593872389640765519919166357078462612481600036766027075835629293828840030565822449677999567538759211613077464065276221913073777304954851073578508847185750824407994157283330092690471560077964936452778373950753898818138387569895249377505382096063171826717490196012346227310318545231832214374886257081377757850531263524466334734767132121605500726642023102272709986371418064488861704233922614722460488062434272525720571077217682813452069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251912349052445344347993123272014170523673913719501532432738883360161103968415383983529358345229855750958952009231868736794471082783642619543378626379970528273644695058138843219219106575979105962447096860731372642346178445779425056888657314932605781848692849028324048363150417783700778802363670906610351232200223663764811952137360494892529559987364190937043049575313040176100336253007516596444425470349854796214200894645617386141037628555302256231536011118111844100490618421367431797421860276433700638472564435917951064761382474613547963535777057048909774805156840566417712157009163568971897836244034117057561491349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23380873912302081014395087887212781627441146506164669277452695686456942483594576793500816641152064124492514484599339667827520350054248963502497306692204793550293071571527930498977800653204492605526212581929935868528171162069136255719989564684506724702044070670262717141526281577312425033721967590969937718723195921521117791545207683665652333853556111047482263605141072314985251567979048700596222517335256552761687848802282676077324745818419003313879432777469618940943670900251064369922400393212789239968506458099757033573558963325131531840085312732232366765947370300373854248591964974213282788813668824718198633072657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315815521995997235904031624553916860916777254737714743157922046474796115454785028145524323945132067676243475913099726445040757169924736869220311655391909120145372411477348253366030661427132525522972209836101542861055260761766418067776973303143933220741146109292522273594689749559858307367226067470003943270018478442669483341961283380869060131645288573307498080463335219803995726903121502449253235011412835260746441149442589626734589205655492683675242823291473136446473402569855391290635355812942809616933160546527312363688820764744353372888200823523596709724435321180789446032427337009054680505293557642630907424191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24346482215252690500389771956875813309880543028518847162114082801356562401846710871327555190822346482864804133052371248811470942386474040187646293219430483959085325057447776942787086091720252399411512033684381497561225396412886529143956295841816857061340714363657751317951964299096087785540376173524616813879539250080261231628107637148627034735634943697646156714523095229761317337563824957193883571739377814583245109440164547531694098341181276832090491749030036842709740169191729715493445703701048009261301212591401982364937507675020246966013028020514773274803506630070173237481545213896122678134884023154919222506143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20356114258156326421770769131994709808431643256786830747055071528832084083080001649693652772525669706594742446372732312276207328344799660576358270124824185807873181381603332617169375491945018884755045001581116304298433562694817233533354467452481942274326145412620282509199672568577110767855102777990505959834506052220916810920758864316665438795809116288165420833037467410770272387782531015541314441524115684761527937759913805921023622757595276053556012854707692938546499873877745731325857534191279547855981857948157816184702415733312764158038244600254823409608081946883837951239209626729304357487696688529277174064939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20586029555659087034269395460368169078906585456170505639735468233368389371290685578849569294759214456252020399688769722077007626040916790620962676056333670760626228959097057791425091258393743199078835477814884222325488206004055733911076477704105060317102151475112780955657352479559424574793630405329163819236980389103832480031068915152062439314638069790353080815243212785827523599181375189633383520743186383054184556574762650826329517158381635232729005649040701897593703973569685201666598982966652915067171899831256734263043799274815621057500133211365538270136464279816927343794207303313277894044881086418239144476931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21957750028532049291256853080535352710146737018429594252525486622751339932265412326560482562164167659469479790478419272296050222138961586637624050595245362680881304635549610728709290913162009086613332872460732817201115460332956539165156730624970653997531193143747854436553384168733305881330095456331796895747275449062640949648720907412252382921739472481661859905196824789175926732534433800960877973066324800074749775833453634304096237048028672784833176162552081880573076883051014223252117334523693967822916094612775483866340490391491490935937191531973663244894534537353582836003070592156957344797969503635515774752649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26721332117662194305461657634454784876498102872313655748017902925527057852497158506527804061859411587655185769222958853250313525935374212563611256220709066999616144033651573558837468386500262866606845082643678229646964644005809713305067530761066906761994260993669172260310465062783424973410656355427919257999813918350527218121315283076159027740275141849156642059318257014839305626065195375440077344871983553725071677690612071542638759932551547205933208568760471422470548899019129632130143432117916460554427489467468044785061197438233915541429508242311883932055941154945628492808275620297636037704482159072991830241183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23559075524292440870107463003746432015228001236880121493221570196110032689106251126037348837143087396834591641576165973179343085615561826627385700625917000896259586909205876358265953687920536132019559731754141721733210619563819035492320276542758609904032764905277640079053780687023182928726811246700167424495858536268780219056454377300798798836260648529622414982817626841078508331126952428570331547736782621533784986521184706760928615323296553496467383856302521392809563051942602782049130430760011464821709120227101805165680494948492517222330931626380188405562924754629139300157937503657841212555260041053659034301363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23279046986982778051185401440443574075254567635413152498351201261811957356320296305596977676166738859967499011881038090312543188894439430388145051093451300312836833966476130202435327372334922264610861336011235602974902772041286249143218757947043761923848101386554332071542222021257739961405647907221608480113613906401277448687518655901580849820038863237631084254670537966619463596306176336503712370670717528069369208252170649828536898347448603136742140340905070899678769038749814637917576471283404533046036756457358596056187369713070209020529613475176528135767889286192546835432387442752153124337229967141723641382783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21363584318810066042049025018486450270716800741539203181374093586001096467408320616069096587230673201308164204554921755789303496472879222693687702935489488325701347743171891500594437731645125888710386774243244082938067526754486231093455825383347221333364234628783942219914376510207647537013326966793015124414734079688944295734903459477501530431356481962411065540975284680107187369914523546893285838772704734274450120128762770994635844109409015534192854647466944185995482097425965350951147712777462134730077786088033890104569207334149795962879657909672520849184731892339261925066597091913879299116038357982997256269399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370619908357126116580664912680289591930243981106624098576105267716784036908727632368295914165926073471381097990109867729804849430851350446346392768259716592379187306472095697148998269301958993070612865937675644830096823852273895351277086604695402997003468716617856068616808591012740907437534079120890732908951716556846059401546819664597677714338720770344805017613618033739728099365252235593126068365811921277284181792636338761200857360430372812913781251898251809840728273028081457860835252758526680716334421001651920062029707390542609491525584008719518501322018173798966657780440444047226603503580116733190223499011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16481731357590728477346561828928549542411235114540673582441242224465041130846627577298512534343983576314704484813334932937511933541935517488834384115516348566890219110472591841059480375488066169438904349956841333424529522931056604879754335510307410106042738651186658855587967952955672870496538096337504490552746148531754537702129376485019262486296267422985611670451080222461466458536302559977808095192575599017286224394310707827833848898026039445557811675469761122275063232562144115176549864569182265233772590688598663790243974036236003426795593766581902824725473207277692361477337295389330940644300831389941587127979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339110875910683977849226266413527477936906721138145743965372118417638714087059847995679478105693634382221859869043856611162285875684019432875401208617943291375153198854980061979261223177516792479702008028786910705819696615422592581656174891760320091626679946808739777299886911594007927846128385280115212586503555999124457490077367116232499476696004341944819366493940947675456659477620682232044895019519674965022524380806611759718062401174375643393965883122734262675793017491605403729619107533189748569045066208601216597670985330335915368499257454394795897935237395421161340761451557552780321995789806416217692623759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315803711278953233524494231393472442114240492250864320812885903205905558338828852914452885705384011781144649851898380128940096673648468330928412730969761514924203853404722989726638455782315105045089588423212696788322563671547617165672377196826379049725872547850496996806548857732340439953815246426372177618123058787821744147499435354204943898660637769009748007839444974658919066029398166641174414852447796638222399890459547463975808598493806541716551466218157884435201579452399656443896808940248911375229143553469713658212369299769507664175433404382757464552486736050170393196526747543597255746530891831170183804601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17016369715618446837525931845174575625550273578911439256388702039678782026751866156790015144812153051734190727562793062362845373538171852562119061380880422554967773609905475449471721818771632428504447538491659705893814118118605643012457397116360179898607903261998338835127066966281842174078771160757150791755132959637446303640278338243202740137293475043407132629089262899727151804589917121729336845752070366463704033655024710497715118504038834857260457383066752502738472614059731371470501615917467281279079987366102624776738826892489926736089796077239762639628166825788520520802634840913214754913743476900931724228929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260574845407960600461151019368031109645432487174792256354193450703198347214411194583883692940518881888264755483612007222382416578466982539728388879750336081496032313495195211207100497963571159519199437859645995046971678060048189891745182861293042784203984010670067774278424039852812842921365458868892337163479606827026555086074120693578703407807081313021655608158827722446726866036832988123151558190343865529807967783013910077250164947628147181598891848156795442033772505863227898606590300094343380603926144089967077302756608320111759029094266896358266720684976176233096003746923939694336125112424301645871857142603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26314927663845027950391907983835553007294153397935750994085608317581086903066896146828031237463196784448723504656043755705603989422582316590083941688505201593806664056518110111866261618556209400008463188253058048013997082722904815028541860004413688715319126968827196252776465891906812853406728706861772379279403464598038295542372880250831336257315888449832786937040227581741971444980789999176761033241555854765218809774279351699288167925767551658356793938526596391198358972134330052120412439099088511698490410040860992856816655081761457092035675813289874519896908887373284084996186321316211712699527872333133273123319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23470768344418708397767066183221960542156706975415800828947341997321460868643429902655464594324454424495122168461971938593358559390390163211559054515134867128597969727104150806766508955793380639757572517660975984752430234296887416333101473701134156857822832025315884472740149471063037767227532705725405747812633486375335126204635279448426783531439495663122420187744455883790828848130214889463264471509804543446347065819808192524106088534399470939416267140123555547504715501760906417939257103439819779059638196332162979724778136312942005442374210869468163459838564429861669693941672226820157236436011537563882342879953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22798031348648257686202212695242304190219471136441510203141391162246895056635742142440463860081172037489391422028460602447145444074060341431560563980079242264362058155286869810732892694603174765741857669086585815142298647797759045382523291044363306406860723121817512750966700524753111794440501150001673998249717191295697783537504205589313708431947533602128721178295604123280842699223473958684895182011509514033370021384302710325912368463795151632313570413376641294277685975483204635545979087274189785796316898106411158068310608185862330621198787094410166322871494100493005528362689726009071971729510404215915083047187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22924654108943279204112500885667494157235346688756917226871368651502942697997263481916750618993503040365902334420547644233543463447291746933421083267733525136346363684307662277051761806900438278577970554240887122227314047377360086354650583500167693678177100587234340942368934376112737183592500893120054153454807171593084204627350800091599269758500422606617653962362540731867554057195302007063500246344564776117744445985343116027181347867100683379304616967870040616412533929647789460151610000076896212298372845790908704796680675943002488654141800485971595916065209532704204972146470450820417603774210558588042463915309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23001548159285258736848908799755498709598752208203551751781378419435450192914450586774895770909153706302093021624431620358601837441382589874701170166070513286554315362303600973142124443191445323411509823169031787746422512898505134327706169826383443045275618155412419523943074535619689256432853415339092099708684803059325922390432232770192325697633394521356770548147568459979885598229850547570253738987442527008629311457433897008262305013842785544913426138334941696782059188744985874563927556994917321622095338484956409965460746902028154124723678660478459391271793133371355209266484806248156502747940094725096567367501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30151808154065366410831544053613621403968239685906745928288740100220460377932772367653593826174569998573621217250427841963979898616612230517106242083085875343964137686498658344407493780842725310278961018951558236605691268467627502809711704851233243063178448094043024463721950500410699969600378096462079137245312632997731133757999385773051553333942004055472179786284209159388418455428509173092175362148773255774144141373534789723965114924976639331246601124304620157164870556441420265084156930775845375581544111710672869280100652952851970357910736461524304916506273392216165472885469727035909672898569951078237650634497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24937034498273888323247828569164747808107458408509590990599892376493840946983426650062360659052969006444985102133872952146383635393643712182627079146305836569568520179009084229671362726306887002038065413222055727753825613453930280636657685431826052462169469319073433256971498853833868174274213719014068701770104739551715949796035496235700151317499220771823342469044480175262084460423207384798538524649891377032047435239968439133929147838558855440538163239149143967200772296289389832612704311265011938417856706185684080971189789990425118025666415368851805057034825264844357157472063208334313518921049469349526292800789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22769379661188265129710492010891328724410872527510049680394629084988252504766956827407199648508954847274955568036043020793669361645585491127385383107820034079153633174762798536849087683661398849639225608085177593060192057768522627949919141661654030536423787438376738329690425044765709361852701950073332496868012634638492695068622292925680641170752478070624412932446041409874397981093958069550126237989782068896485316304495326447013902324784213877473894973197789302659163471438239067951896993854808472222959106343702356750787432691710587714890754349568702610724805439458243251642676150228527718423011498956354977661457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22500476553999684207297674234866858965925996531278451764134376646593823195976753998286020660585280365845433603296444132744577852924195544075474498590170107743487802633855603807750216289862640479303790969001515975932126913626828413138281393400826552099717973275091450343123048080025794946205726910617266134265823500919257733792847180208448715558231646433299783271179343489490627197534510089624230483687436355131796959972946594499691569143610250343532246367142014545292584365210341048800335081874667630465723486979886396172659253148702964627543158569045328161287428264727044925917521341182625828548409232149162934276817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23806162253343405178451698332375952888734751996887642020857627308033221389068484948641143813858917321894598892669654983800731508699987694591761902964090351557279139020696151621310119528621701718436742348296831588388683431196320447575886267467645639348885265471462986149059798978186598855013724272552353798735102025910839270917047169828025835879444870716597411263385395896129861226775068184453515197240914145635817567926770668445048721474410193266362709454232967792984014836591438415014112623287219631476844020613870585825991368909808024912100660514402202910997480876083629827542336094556019162212905389069411413758509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22792994874148118872473656844646933109670561975180442991943399962124824876333193216402494320995340255151793392044849243788112165395326557438667470400471094613424351326828425704134805435187094715510494242688158471640991809708024739395362805834912755182694488353133625651605755673040561552372816537714961000542907114558717636227045356990893056613812211796485857386938580932505738898818678687214092394888594593702277655971640281445236285478692231421826533256357701094755996239836389816753254072421578729117931491714669726561642428661747868350244566992293194819897558243031844899710859001508963554896917099168871344578561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29016213008950905767183199570987248862684192434749587175279973760442260921802721233994808353740587476911658223445767901388518048925909092173266216911098328958888486083704975752650530097689923051085916501994127189494567294645491055770008016971879132358992666729902047734305158954006061165831509610214732350408435751902825772252428943706098002016564446919224760062352529566855907234630627855814457390104448258681531573944620414157784964979394376890251139227579613485098484362195513088449821939716623293187196589302613931759673306983603569605015574763356060154049469599535447288851987739775801949827660406527344630864617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25819682600440635069781957235021581613644544391959944481229684764389010220485532780077969794955275226305234891515594213759047976119667660791745619144172860597359023996729445854379867381542691050168186180103780415317372057727415262577510130916582991699836647047960214610387304100484018985801841761596193452920105101087405554568257745978346566708820865731560526893054083527239875668925598551106058761278791643504370567395708594283128119770299801745763881805711113822194428995024532566815460283002860999127084511442956323287999203802759110922334847718283872147309026726365609647617805583450959811690306182240397967930693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19658333683069632980029399904981574803200400261223911092740252419556172468208718770763680490197176980322924544141201989564848043104424029184611935644097230069094811459391924491201874917042646611545716240742336027700687074003239173680695078067978775173386640798101364428281877504066644568009610555076115142180926930450817714152868839165205597007559698863138702747048249238304588105807867909652807734241161250605067802149851895624951458999443693250450885301245624597860211042181562306719313772056978336525725022202575236871561701208297421050820857026511548035576269639245961174003762215307223527073182534441985165127093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24000534521817128251665995494221176207873620354723368120133906755439155196022233504107242955242789997521746951951857881147101100648455451302725967170365105439184769186413268591609437546819460776391886222000467434506778123087148088511250572734741343068123437847407938240039437873431257505546221689592132611387406247472559361103754241584632707190232815892607768148642700618369997918483032400758294640320489171964088754731202564269150132837130788696080337505249750765699279772918262277644537668409463920336277290115332277402926757277008011949240226691703234245579047789811147842749894992462098286840225131935294900596343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27178707622842508574348303717759500105479584525314172677290345036825033237278000062488196973075187995598426625942587342113068061536971196326856625471272881168096504183955161521268432003061006370319059617929199175428923079592863935226695643660206883167757676522223124461215507195775310764639667288301626037635292115958142922937070799800776581171108276367358063881111735001579150846553029127194118831032948496764006209028859889871015269625043870198795597724783508522360425837919465555366469588853624380687064917465255947102489389101497919240516743861437734387297739961531907742910591056351436774936210129222089699496089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25889709427727369284402480669588302413638039458788628526584045669201113202569335080402270895559585495909820922811508503219091081693373285141650203711799621423824818727852221707961727429404440823640091278173612786955995843758898638224772224514462757741334716595480395654348366133033484656233034368103187790107905565628163212696602412107115970071863931662791727178024356874688455807828004978203204214197858186630143147749785049072076367500137660616923188718630768267991429810620660032533712407790649826411028201668013812570172312305141245764742545464405090674889456411403698680318222792563136721015908027718925202511917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25995615009806738394426936992216115582050748138002805025085106766335475199258684867187630461968206003650991461552994296646521338316927802397692140894072037441843678243185201520513806870443369354046325380034840194220579651857331371929125619804881150703290408622642229292307653074287786936484953527292422673161101386976543364842792616646243585020660128475960371504359718885228071355322452159468809635884328578200504051676281054322075528142230662263755800801775763842502176231448516992496430250168021380140214803018887600468453181167490467642411954937528959775066528527586061655337226152061448317108963676516103377981539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27296767456863890156061650272209541030419470610893942734399575639662170627763734390480268684729697884211161269174544326237823147234878548720650123966866940653349759638245256959481365182478760130813644628614321256305143896445796318843085877571536935827520403623478469990894823474291714285493972876044442485716208050022827801652717063989358457846351785651291981823405732689716528590839158186514648072978003019376377287578107280384634880187546230990772023952650864653248216707046575574225724949683925286189160366149285986123456268812385722117687641735333679898391084484728377197661851676535070278417883125974572781089517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21381379677647122974215677099516097633195537014643678641739032342644898971873932417793356117612876852587409608278225067415615400871185825948961916595384363657502958515608676442328624086261450326938178821421436133426400750377994737652449210985304264389215769293438056085134808815940753175458632128685414192100243396204762925238672784851312360462312145278868408914637668059731805002044093145693187817556573182453163962821163890946426287523610650756837427148324136879913672661709962180286027470107844913393209596418940083758429892974491969690661404732865905194882891467650141659428074941670451806015892025687829707172251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30243070285117760124057121952200467732796835833589436220481235343502300123273507177181525507481786860262492749510540315032208438844855426053329650056640871165566338866093515029812926074199806634942266998795964374239161172497677662809540890207289036121930132120672669879404264811891115757879513970248889689009955345401433076097510294809172376135497476042324401603144272749232214615708766077124034425897858433875584812289498384328420521766772827680278693644963002168431576774887612158624064977906799393719926001424935359283592911124460411638219756850634324950333606131712111188052346982180287082623467355580378480897957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24771162264250352153081805527148209742843820305634930014969483411949803897088844094013178854339154451525417045178119436770707635993993384833886805311047120197541352508703592952447182166327277313817648164556043153987501508463646645122649799219900754060751713492990714759728044879526733453828849401992354658600510961123483485901733736314202334006453627714229825200973390922383895804236744090554266223970288902929953834258536722309400095884620721588944219459713453505367785309714685321494488426553761847539433363986686307066412026979780205488976470589077563471856465286345797168714967079410790316203812128035356667383109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29720130390986879907808619859531804940975934798081636553407586267001807773800020790314079941764508066454626669822414158684669295121539448408659928582539778038346426521700608265643954122094569364946423332739941961851411573768286742048750691192484859679592939672718771984092125612032627303875969384036998789638246513265834713626951271933651719392464577708721744013776438262695109532291201180085862166146840169700524453979553954501424148654862817958266062777595469223515122649376671158011220693941765680206093657691806313073669331421872231186047503262891131160190052475080288866580998964874270938140043425229177499828423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25984349193665481328228777403987406418693879951545386071039367223560927289047278482689467565154510704394600496732078725144927472713302295573939502443073550471368021077026706971425475465312213251540345840413421100849470619803832549792104091247054743873350453212125357345619999177903643759721121914759109917070198627992508042397861535675689632183566900501283961029830801151079440453172393310933471143050823090748193845684476489554944228674931902534268061847128502773008936889624487720045977552595583497188308395264060976544360950945417490373906324235149314387581330770156961009218927567805152500652130420377228214040271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24427563994228252408668149135754189115063037361796036889948057682871444052559244811377375252800957987210042125652072093041287943478729534978516087215754435041422690756400255529635054932688228955798813956761351324078310909499361135392571967143462846037334237684044543695538737068219639473433926323821855504711558354749902726742545608946119664257197712474574863130991194399954945464694452107267281219466498959340693565326558222787471287047182407605976170502683382882188573701923739062195038379772772165813790341985294424185159959898202119671696519534976177967534620579952271633767886983797366723610842398442786738446469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20814441669400414582672056886885418363245216980736129834558479683869937154464738671176083260812501962405149824488225178191713883287209893467505373223149543075703826588351635064515321230865840371510153612250723119636514513769023312683146996777971431178100105090989798173853340698431294319548935128201088495373741967497885039681676339465784531859724499726962198916522751016316577188546549530349457125640383490939525272160917146261348449084644412832636801671199663576814510262928335153526959645146298127597030734432297479966888070533499835053765869766461511305964127075099804442164858975201873881123695725802679924473617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22994279980035161410953757709711030220544367210419516093615143968294199487947740016449935481841243153732733583147060668048716277024473223228685846796507797566803700041124307076921716647076079835145694169185312651304721167819123888162751573757539721576928948821300895239876877676977803776070078664025272066408718464659560335395178473092146764469451464686525053599982850591816693797538721476937605493836830683471803251146802088492799805234799960206976022343838320020661381848910142780858082358368679617605502937261617889907693413456934739257384803763130574614335151409362123420593091877886246927851129587903665771622081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22566661612621710021182699792229611444870290501173394028535432895571994314574862807946625283141019948756684187191811060866492714650452634735366431365592269940721426751724161555070333364129324775289114775479028562085221941513929682573521204718385542425958868020874101528778741643756784862173847932754083930033554107339429319199360729100489933376427601136534593024500808809683812282669885183268035647381351512515981367457017723941167680949741246806226074807818005907384069006963375252857957636538317838235517522930315606935355663038481249346224364181017716706267959520292206082044020424424829283224275236657032786572107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24477741075014529919546295711735878595267726539404498499679377245873620475934644920012119312608567566384974017018088190532706083350631160891602048099028229018045871731633704123139665377689371555317268549097371866721909977646367458031987748378722925687624347207909115465022576571824251632916616091001129099990822414190147657969089441996257311857071164232669898931873403339385808391678877092918929780297968352880250377871388571349516948338969265085124097198691193097572824550270520071886387469668464038275193443028534782453403430476447175383496854463672911634940579407778420001881789052788618948036172542919559737617799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27176402553639785746869913407486939536165410704420809811307534342956834429614227417804385965028682050526069681153837598186282607327019610418987584843659928767384227462906486834811260771407673120027331382878449113246251176827514183365592314744873305933315577404515631260035834027131175644730642754866787441322923778197374310954465571731102812623693249012228760371187653511725029768280260649551916032897713652451916733545134242203959784886627829560503160015789115579219011984950482302006300640780388456916486216120459964352888644540126275693937028350329148012726751610169173430205910284123088244746184741093790578041411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27709046591081122349450382875706078118861128372590320515309708933378455865361999073305282766320900345155704086896233492567319947848468289788043831942450210495593795029899454460702380514379719165759978805809744860574729092454972079279862147088253991653895145935110145939857701468988211112562201946330636644026437709347925737533192534463979156363852245199242184343432796680741000126108082932372094829416872016253861336052789090117548629150204627431581014920819636095811673238600888167212107631915812906603219973993321026762086069025265193592794267528824148705223401697694447125577066468836090154522626039098654940949599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25272035306960430667109447141619745461981929066781118274195695976937559482253515742611798711906768580173606384216081398952879321853998912208423650181742034258750853663283220472242758391324902874940983806016702874926035791970161238108389536030358450947916893176021894989523812955562965624861135728144651473585326524557971624774261222471257265888908067654348751598376624284967009218234754767244150857642726992232274099336262803528446311169249202809863547145951789967667809174763207272919115378127123367634771249189021859635805533552237647636544409558057840097739677704170063088281861949434087967170597392730465503783181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24076205052657106353032998972808832967046483659834539307442000907311268684355415232554139531611090792583656579068216832077600893458171559123097423951937572389187304294258956596054566752847520730368056366260767777633785119837779552984635730660500121935639826235898805988786242685785783627549578320872607700800933279603351687163537471198782595658148440518051850697573767077023362494146291653195052919848263942177592275418978373955426400494602174453890416720252772771527107745046256923231913860123955671362552408175663966179354999340993318073031753213379314198144415660804173351940575908245975196333317791879738704595743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22759215798137868386841185728208625622922115018901669411461554602963151716208034518162026865868744387882472697730958973025976017718171377232594045491427065015817542694236137878676397278195997168933018718244054792739100391054780116892317919459040220964259033962921906948706409542578162427183091740348265869435662351318011348274885971353803897143594320714880729315687237596316396607976551026735325462154621840174291511415812337272647425749392080731047183147823806789066149480754938877234341972693998602291511129729922663687903298274419089017097810310006163472281688523954193890016196741664403153139942093433170241695083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22757294012663190929880061826915500210258672030122458782612208018522952941527007998043519301946719236076301104612815824228914205055988400816300430570320737211981853231750617582730984573636734785021473944968213499524588981096735495142092744294995546296371021738015667232340332579928574447275296864520604377855594986842505768383392054690864963065755840050858194905918637276460903593666304280369034109443409141022034959828371004968097233469916900385519563400946618735484601077430855721176860143911452546299658369449231980621136894726934117984214298917758377502241041363323112810343645634491640072750037292449253040993879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23942293051004478164695684634740395422651318119023033583965803819755432955448574486684436847402479151680981800154464986519744165521175571217275030849710481703376846940722952263274494839645293501318405588625073843955591087219108647433998612731674849746319391465272621275883936502726648788966598585021393456148322401718079748208406771425921682573794443036337104442733232107283674306519556768022254776700659015136892836768581732703593025441107026871599550358433861126601770715742897117497334439507003745484541136033719341513845342133642800656323412976154854180031071172761208234045146275072724072542691330921774030201959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24342136034053753736798016203752583175626704356732046298264449297756955110582623867598712207779057330380980792834463379695435607828565513640041519015873794516069671370504266911601371564242740523086140749651768161820616044913320774799368277590733897269768739329817996072028776672814441117033517925414939962050606769730993800628445972104916897103249225464920145856708912176303060069059500446818962244588946858118391791304632921122059234000280507251389369082232526259980064538443704239225725274622700764471968827792545372084058256990796119281339508623134925434264120106862597582756603989842972687228400079970526750530133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24294864949958180930980024924538862204545174831742169828832717860952828703453239754857933474273147864833349659531244379758970537965003753363520743294226407442289165448855481336631289290341116242542288945253273338443293487873662005215706285317968543184175463249762520679549745316397095063786977963906918303226004393174324284820463308232866416338232624612180664578641879783078007467682694605677276636611725638539500096101372475174006229281900983988617517716970765936129516428169784395752367550877334698753603334768498234827661403015674643577859507775830401609583941057797851599294459960119506994160759641354960359697463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23410999056124380493872997514190771378391907182415821594549680556902749415862811495189415307772092100862718742477968530561190830110121313937507176115632092937701195772586102441636176294630341079636334567252636823087135303025641285083850923197592886634224553982953334578007829782704025455573857194593498366650023475020818531314374757789881267671849839660140468319034490186404320816406295289453813915243396958911781265064485697404229218475202070053533036374705946835413846784024451302978303475074232893027101865164138720840336643077303531015686205517317687143948850224036213548249377652927059473642583095543266125075659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23684829503432725029733388748923338774708298930186836744858716606260160619855644174087179209034034561512949611078329491260305477728598292955817714406638302656645679960915323913386804245379848438466216252793088136748585294342755377446763847879166710532620985934804278381782237840187549897327405653569028785731333504820760026114955327277398747752923416653701018027339386229268066245942787972893444994958686720022013684613950688775088036114338500249376142008702439991967228978632095793904180518077415119790085368420572819193573445039982521290949773395561806664499802703868270908491093785500875281597381295757761770259209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26870856531989989466122527047195997652198012332709717846249493124706059155050837559468869207886603272478280815929528144625988490551236803447909987456657602817384780969153188602054892817624012034535239037525390210211774746004067847847630955525574370594882270725319719164624669912377238285282729593751915279603935754911340352408405534536057325532400723484176427509113015526647004471525065816298074455829169846222661683820177011956868013531084000389429410800673079293682098650289517305991345449403162436559566309258544446989820353842403521139767790184756048748243395273689346361348699264058537387305074043093575594158509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22175311580873548819001766775525461225199548916848971618843233247263481802921444639039781960791500503688391934704560175977467276970113754029294984209208808603019208684763474607127731741320054135745845420134804434761533873822446029187093620188671122586371976241481817054786426483638082482725412919917438471439721902886109274403359095835696098042375010724069693652859330823821915917575759742867695096262155344713768945034797699515183069570040156269297811878274402119465776657746713566410983132044790876450163588572379007615811519306719107959667438054718525391422864990657641880482449968963363771000379765283379136656811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23133125194768304412950386017913885942630586207576219784830067215649672129396844372743443812847645560743890149286690480084236866708203867696443649390934082291585367315303394574767024639426899377012357614536841049594335463052740253923699672133193674838623086019463364509817940944606932975106614408058874758196362863604945848226861745339689301284688041020992473077969789013768430494595433175721579861812377521263008019829172502580847835992617153599991756244436380895194601413475588551677080616738644442143433087960234770006857103513671541869991309325983244923276826008148109086235843498359998218233816264592960318351407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23876688442121802552202644595535444737842374310668543786867504526700023951407505261018126020275600552528270393791636560498888941980677512807273027283899830597675733934486653081722616004074374836444362679864132212033712719579449411603298206732928630890695813910271854415669444555933871951803234736840938387583447294773759676648756144436524310054650912607907160832195674927147223439364055120990320686906157667224895458856160056806181892450774091696560043362651115143413915367009289033886153191475128360768252108482375642084009018450196974668689835768184535140232471796235529640997708380301161869583662773256346921460583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31336686724928047053968633679505765360893235930605389404781230986064132959338630615424449284496593768968743969924658028741262854841656249185918909126697699108541905869564725643554638927716982157997869713913794367140894783429686806376764522795444185059811501066420320393849314838338206219247092286826425009200219416739527605725023770825169537117151950204731850104982887049106119768314908917651570385100284785929401547277043575108995762060275397300096960558416790322728933483947811434174723340454613714948935320967250015885949452534581881780576883179556532136831033421699535405374832631287827626640418460795843971714103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25307132265494837175601042080516834303040465577770658711239680660701832223253976066634203789578355517290559710970479374987682245389997229537959531216537321093324117157003926265695799653169595922214265757858320980076614158237875450291046927235900425820794395958484793682228386426325230281943343456806890837315444436286476923739733198535591850483529535077557756071085717005754388273984070480082640128730193846015339339373230984031400077113617786172510610778057974173492349610142419704877949441606573400183197898530046323379749222025476895711433055287323086249615587453802088270487698683453749863918523106597397904485427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28674713574437491296908358732626489122041712214857373746543982435479587849255095459659813054944287408340344602904503896887359180077870623926328634483533561865454256091286203797166111423667391424575536866596984197646344085073059155667341674914057030894360824023262216526065150643155047593416314557436135628758770134145851738633741462769015038747425503331477155839588721908661355021128277810583301739017877879490542465296103926879768122170839554769013297393443692209897453925196694184809764810178765549493148567543002392508738994933614691816687626633677601580963577965174603801607399167240641654309991730580832137266037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26785930688739529408765816674559758125935171475051377279899063757237371006691850855577654920528077263643031093920935363248797187785825546759684027721440598489718181414396835854990507908593800814451124540614298222974419275445860199883045453167066308355528611653206555367924473518541414795967026254971750064651138110781081858893076967034414069105910491302650652693020511161963925050656698279505424591045970848991674365611355245982463535155241889843013993831797573064958017110701284158375111614856963634738701060252497014500739830589685633425650239631542960483280573104094484954091776760409772539929709937779998266023437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27838213471529182311814236945179312481009278106381099829005117453711399763606711583184692402875491193061118885595409029436869761328796922592301618800253635263113035002462834546993393252373746721113788922951683277705320018731191581502959343323422182239778631834195030147957350456160789977108498624613120706581776982794334425732105092844106784202284475709004882916839676215686430807964635233476475249857134570613525756742679519091744574596263279662166286532059540233955028765360286813732917373707115229828981096453367548786032710850736340341460713787325203825696289890743583846681232735939814870934599196997636511250241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29239355098612226573679286399081801711736557090173271115920697276750479504201639431334317206188063514985774210297372124825756202314760706015499241984794947744630852986131411852117200379258917548563305977034425712499585981411673640923088723038058638755282171974263977148262869411865567956754357563367092306971389160411575188030725587354274306603718027162256355463571412869790241443095320879235465385038378000605954132558651151291312567914041218575263523426213031704121035694154140098273122683861057554129668375763518579805840128644189491094537657521432642111934679835118042161945963254995451041746769086849301049687187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25359741112745970580437543167984997300840367524260005901831466470517173749517651603356440388044871396754200463842438785054240022505834587328084670367499166580287879873476471104184787718337333268061293276414275602658914935166291410155782262764228159450423660887179348804377438363073519335182654324315702133725699233180991506141449718630319590528767356890398907161324683262876331742319396977578342605057584483071613486205963416560283860129294904984953405069292611936293282605143596524503666814696696965279100887627172993715459938607511359240057029923333579998677446320917021565106149267097366654571236564384873521931947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22198142969787185038214433990215320234514763071449176009961609494145488999432893175864863037868993092269811113540640102581455912603785444891158867540823056629286469814620172246775773422945340469148209516924585506200801333597379238383734328466252201395440139851922873517929568885932719075527778940278684376143907617781101377840334968553440024154219834924712224609200641063138267694548642603254557870844926412926331522850188983587375251315434039047812445243549490149337740527988144311032775591572802196383739955397531978086826997923621109795001859564438249538971140079816659389807852351109360280485978420282329345948487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24915316644672575747411690013721858418793952829058992259239026193161740048139040828627181961232179658865763912753988818428821751207744010982601005491259962564654662018936939722564887433799513690793377933626845118350298716714502618374600469304780916646612998133905137954720755192182990076815786721429493052396149175174884624869314488891510542665670093425950482148522862401726471683662931877666186206311019271630559579166868399143892770466956986385577270429561534764737287060614565342095709787149331454813084943300957762936055504074899283872479876433068707167864171105690798166916952427895329192013120988410396146540137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26022952842008704643978563113135001165036494544441217819755637279762760718884836273365408039279360479631492986384750810283441805764661173502414465363383836239245863891135792897637926817323372139549971936032220250194276122974039964815658222234101336143376207855863943963890893073057527176678682050978533865056655686076727083144021249577977728551039631757680517459077310698157431004059306335159652246298662631973019226474560276820672936646401138995020103039853845387821002369193515498061824458108318645828002452227619148862197322289836764193653639543785203024733718248428241257216681829107239779469369936429492615471179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26522427131140330831547540748936426269692212835635182102893689051039344640948771006628309327797201929522976848240033083091241239851082371672030730594387855569459947068744999049399320184788323945156376786768844065524344247474838222612124068926139047908826647128041694361266316071966663377299602972309424268666466841493868494344026407060019412901351191278772434851586636637705414153251115910875565214519462771312733150281519992892935869210472586739351043939710677695981874580137664448989737214965722227423525107411248816235223672221373414499037590476148068632722503819584825779183080642620549251396567368462885249043529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29476539426029998053773395433675177902420221742210827307202908919049928453553982375775497845697820261623614617306843552234365614454547559007256686032436761739138838288695621545985048904322835947332996215853432638024170777282509158507512210291567224712696821579477235540283024651028940532703774819667679025355242766203702913098886290580326422916992177624437992365064456161519697384753642919290344416806737270799085302529741301957971514896021673764146764507043095469889176468699304968050515130198591948994829620069095967196181879531152881497587704689705157411796520392689371546184206333353932440289989017544323150144873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "32149536595699410266593827727574053516302623400217201740193542100734912091419763796252355505479628813626925570355612331665961126135338318378095112203764211702130983963400684352732673800963185896514238547150743865853045974076046124849856484727925918290877584677444681584883596227583002030459544543969790367568952449170873629655464489756849645779266199836707620835739437309786078784170403076403485916626428388779125492279473726158461553177943237125395034562114033021818373265511407401260261857801823888355460822020496367206014868941897426692178672068870779147760653345159586210541755743464171950450575629191028873545367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24140552771091506906144231494675649008561800487980376866948266246773678455808962110170381087560013806336088151616886938147390579196036385365179394003182674646294884850046053378603350282618309680679711058460409441255496684456924838667168895691200971525486776490055766835540353619301479894354762946615551608582695996493659205146929417181916962387314954580147170101642185021215400662720611131980650109751099372856334561235044082964763542068909629342556315204956774634174268766807715543015161800816204730409317493101343107773809724275442476218027057156968805967599902029775302083650721923782424205077134002081175888447511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23483745162255275322894313471336646692076667559606612177639315473253062453282919357294012076083743352652514624623570480290354977731740555517765391681626766422297162739511862831682434456589140701655918332748171991058805015355094529100853017213765099416842779520924739829603919824363077812282521758713161062923332396707472493843225333648684108267694873949133245750113864323012396625082155191552474399766946199173393093772523123178022915850937980760901501738224177471859647083253476024509068904852071471070939843248757468154430323405256097793578492627607678164649722654944348290926101954411254472193188894071334607008637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21984703447773555844071754619064254145468667384318234431153947632001236695706018432029191316374896948970246660482360582559620818224159688767725003699256683682766962845048596443404810651037765387591811593621883337095171823674280327224117290111385845861595107273369080963952240438836003289019414417746762303034977768432259586214785418559017873659042783171575937769705189533398602293771274917028875524832998988447123581265638026904271075930896925676516572067504156013697011667002076347544388423585428121276690276849137164584200852892374059817665380165750573679208905079829295326877200896024212192656983145438684372655107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26886054485154307656329513267008473247492310356869190149146178101060667772617422739357659702742524637396313676427833830963837135168892278705564117430157538436326411924762324831937696464131676007081016705436498224691394731547278450555656994309931660302419531230279477226833427280774026960209523721024995480738319803634145824499469909503112824714513256212951611630981971755124086595248033491644751887610444613407176987409477083542280978585362276215365212101294351840761665615530601629984371245650683000812062027825544305226162489028774909360793565677970739043706785552651511644757724403759922006046347501995642674218147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23449509133827952094061245083058961320594636793163566215220692668116424271148028217022396617447886043183303745862822121604438913064064869640991563937936661715567781618846814693672034818397668321025673534151170428284025623925246116747533981149212627581201085106113012596581356192120823193904969842514388542923932673024138930855178514026468576528118466572209739041516556867238082932270798041182444504991119787452038337944995329434871877561225878490092855395649245529400144052982789165673304911485652020335904359577411238997354257825517180063869335278518803893369446221390847544119755497357672660182473370109183214457969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27890241945091306762632017712201640465741542989548575333914186410295048468636396574728852619141400580178901657100845878878650519260341189438013707996157512385865766331002937599520649098931179310919638477198296101938654724416163299614396531904435584518037061622500707932390347698944221533699235821349809669542561596019991798988391469162324022735045076854862964217275549874120603275458320496367372769405853655441188364107579781963296435614088669000932222518864481642630551321914147384576200485788049449467427763148199783529622903018335128340474453204247973911348213806657241431398459454601104953847681362588159965105619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23960825685217974904399089828467167289980397176241551999248044599957920256512839861753516153182047510411326294036336057280758712673698308837332715151157805688057865464489389900655572901852575021138196372776727661641541834483143079433977182838757800149985906688586909942411153797079451511243024179569637114919306291879448404008129440867121165860525886381078972283033411260614835050545155139824749597713083699527579637327172167535643472886899297972440777626689700694728420736482967275825522389494250865709357278344695006972372975422871103792183475198351348473336475395634155321834371196029926396857525272946452020367083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26122040767454757739565813596477797524620287201024275030425228154202238305860834163884715215118741173940162046570846085354118808498517199681918430834828360589543615422567103650977588081967002867308615126749934246121413854884798883249368440503903257078208697802235970657694631571759432350132399771255439369715926162075150626448391676429381838482330512814947516576116599078559020797250882468835925729423043023439309503247025890977935275665176932380028974136555497257022995194587734432475152461949285036077070355600467156711551627704284153631256298538327755001630498351420791805225858915282653753724384505601314244802743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30833771419811382194819573747732654310030926654209317910887350297721007559564465054548571860092020288616771581423601605600831271249306989308459645813259890982940453538338409801764364150069752099722187842947094295707034951498215702915812017601672667536665818408519042646719897885783074179739871102325037040492755498495464771392671809376882161882367068497602298463326706429128227088983343656387774246139275256965125631913668765907340501054274521192291755085122628607072104996515495213036014504835607157276798690458168548833229514478136151561888039261240813638945509049680163657939092111792907749377602636754960010307981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24193818410151187678421951048086951140971006754964112477743810621584108254052986198267472603665039219267003474254179471573475245869341020917166008438948722681171660359703738606870246039511372305412613954642935344770636478898111096595228589192545646095227942855550471911974158573281689835325219419956042831209631575997354028507260561219091054948346025696776900531907625932436189291774688123178615316733410952217224420156778048048145337062915923696045204928369605067818777268596852916949127936720815989944252823179332490630430575125887289865347232866598812654967510345566360100998212835588942423675295256136188429170853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22392764170788133093881649444230220829616162261559970725061574663064321208005371561522025918691295360690610327291745758776291066526859314685669236694263013258526192317481125113837911131911538158336588341667844135857190932483375141316200521843208556812632100290570715692997192229429354899447105926405039274161137930762338041401948745206680594481351013530274327632535700146596384226832384754883908641918252154323517189662241318170768029157373646950101591773355809703945315013257461260038755892010571301090473265204935108708156781868515513648348839576041981293317882610385531376115001501781446628375646384183640009895677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27998011286517687920095068361160583783733575716932213632753453207415883848292811439664450200692573446006284085009386490126547421485214758762963361330114358066936858027974024395967089038422700631528229122326103979812411662156290062235383386877039562156641949022419870067584995934576941264465102979168282589693053117271693666050760411095130369191566456534611257201770650698456847469476582988717814367613092317579029336181245699456499328871829159130164199619547081122703878907682413025030956423910305493588660412677322467800341476615315435749694961823077838566035935015331884589251676112197346844030185560231385395388173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21694234954031655962688631371457865091811701519054231022776090585532110738164611855496308134773147959649254673317886641803417376540622869530263616832495878607770729344962412108298637828061687915784974513423159888939627758179072401778296656430864691794396663436268477423318859751635983764172927651072214539237390132915267858894377020536252753632600171201240269871276039980653153143389060444130667336171264731672939487756314518974406223053958959584764682500485766695012518959733385017580797073502958741994085156856880356398519703871101826119419416435678133242491721793480218706822804061491662309726206173118942400322851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25278495961789895756728755960003200242663578536041791502862911285667585618713690756017774313193859230626559755793051067190885800389093977803247144337184646580466280311703946375999488499075827081089536885581424805005266856989691114767296660806843696216903585562141304209365980156018910646629403184387873992952249188239680496393676400679440639933241068662943253804217608698275731658645635775239847224296091342181930580492443937572344936429408344298476056635262228496346007345515665058802315893141258645205703603027160013221413924344536454421721395325941534166986734649335050066488706855949791084684409557119053122756567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27859570786492008402940061121922032509517848017807089043058426833096572270978555075376930023022594098542449056711686381916075028685825481474831882016768710139112017026838124326297970380346299145134518073048453698023876418843633062470848827041300826035018619315364819388869453941400036669005935069652050567405036805525551270370892968281254803255189451607129624580881989571331633616862368555318523984382670052944097956950416992487850632716227474897138447510975390266981753145449618281649010298196810374158517427157447650904335934533792695512318331987492188203672874566085469242640904150548380640642612131910011558392303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21736323633493396029973019285285002077259232661759960292880164707164625183752623169887933133396501633807004916103154861146365657873339210886142718344947840130922945893369071538252969668058935987969246240469107895516115688105538134181749145387782539891901117057343051464448797894930152325892508455468595976906822090501577373173725899447658520255607708885824944879606680609985885088218652071385152952259302251192818934004293425232325577589385316621465347605221809334722016766690816678393407007068651950023742999947229100637981406774523839338161896793176866182941117017537587321686015061974993894897145183292230618761491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22318804018508549979978777822241916014392063330945172641791303533277364349925135223594151811261866073694211804480505799055595319896552035176816158111886151686180153812548515006715057768441236868795154551118369788866134500358453618626122382332039519977572348917444591679446139693654556381227058158412885333320575683702757072760634759159951441752214648090864317319528706802237189272206157163144419010111664659376871234661034457853991485990394415172320156790323736357980830168435558868456764142164930868053206852985194650280463971937306668833811933053970745872338749114152669175177258986696395843182278640171510510642869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21467689648747169214715149965845705953826800778668925728805153670483419382183471225345223947433387617193263244796335465446120810661689522207749070904106000653728297279016248095447578549711941780522328120955691354445847301160163225315734170340334417654277961485733694739472167188114074851020134056347248033947088104884349110975357425836685526402607331291849654641546866645912917223051418713395081982498904922245193773145708155962780698679586830866797984616520352097521322864128537723263709880463850460583999202643235992645232476005778693574960634408429272918950274702333326197709471924576001170727546963316883640127677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25008282960499717539939804380345636288055378830950565966905100663249247770118653338256820152339635408654123989061433412190887517706876826352150738230195672114915314388731156850334576140341824201843132288569194483909215596163411824508433802430924612718054499866493606461314517197255048615252822954907226310843570419892498053291751589954346263144479786401737426130927077461817431861415609014930795736919604387536712806752009661378287568802173492803243029996006884257475995098281422452276128940789967341033002820935122754791102082183154461031284674348426719225707314370862897369963229781403190782918349331951596758391669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25914097929925948931660898120472234961853574723591373781074975219430339866159106348335876416059041505102620531110035129239903861574887481166555793268349727113498980389125644049145505451637476404382092170196635739778268367187052840859381167551700715303817845056504802086483818753122790872777120623126986564213147479228520847064853486303790025664309018856711968428646957602163291916782325450639315917923660245529473825841800208482348162260434644894000372612799256197711522228206967176573777541930761079316268873534201407033890972866184116165596546238583519264295933385133842135074886172314163439703461032143104355852567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31918758570071527967510770758447452634520324084317016739382389991651641708909352475032523494072190501051836638733405956305894513359740945140388312455543878276714896748742435290536409560745498999024007079159070028239226256702468115448085926555374277421592857567331862539736159569996203148190206696580973647326543362996569265491769619712995731541092826921817252762834657493608588629967067013029772166508130901991567667727209024058628236700284102645517945850384122261900111460904555375584111490837069091827459217970635507996358657660636004506678964166182662448944300614207171379157254616902438891550126540507853420145827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26635203950588691171080489128369164145460822078208980773182820339059357667140342412121881548462354628539776887956406479334461993090826578864881281068241660216973997235650584354688510922443925041945481695684073366268520616860448489212184603599672799897377516260878853922752808286603912506263289960758188690475267831204916809109009469953377274696942979529163001380237293695854103310203438263370848060221653532928177602636499162117091891108903596804603227372477668123861345590740251090239542716291399187778020495494213222312290678887118730870096934995232597771427157572273590528532499769136652018036248563078579207273339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27206651183700319854476918489041732551479441126118385250033554614254242202451135561189174851873897069969331341214239690631733815693188893567117697378593185110261956714232787098005089593768656697395213380703126001379159879795303900322955715584402363085404707622631625740837110805890583302374477642390889834667411416999845963332140563200764891529112138194542001089372904063113752674746410239850464551571776345380502088501906075407963589597400439719432340468936480332581949044623342981431952749527348962733069711488462470446149610202159964615447569812123256598393414287488890021826389575764397660176712939064641336685183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21337676536882887321244573555097166868851015684050933015443107527193123541087178525848785303528902386548290594463342193837760293188942001530960392864417978675912563488437052910698729570157814581577202166450912314617114819818667922126589134246287024196795223836109372159283938295304054983513589761570062582522108692957462175934654931517031474465257207652327857016371202328831566890672418758411573733299278278362954655757130816524080188861842984189591280205397957308474695686444396837598448354559973753238542113186218590797898417433748900533408630841506198534774460308201568473570013282857289823398336314045063575855207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24597807677638265604610849406965475298766046787295881004932702808729248071164804480287528406290409570652481828188431382568958438062889778909723504922375159195071305872349640604628440731909232073592731369152171794221851684877543701673280938482754680281687652871914111485864816884608855478878722080073989140642706958074796684136435354970290296729721281266476421819704640371163555010700974743490114929679816647304149505958752878033237914881105385468853998334184217262649816687341836763228324913451669631277682588305499868904871429058723568489624630458013678864972444929295421100406457477988655560263633968202665789895851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23867892105491292385471662655630438723628585196109437572751252252676057626428314168096208149374914846580607204478906054124398356630568154220109227765522289057994614982880831130594955416300279037877597877253471194086487119335910758231938949997625968490381219321953232877128637657327375278256048104123211714675674869385461457476237526946131670816921045791388696672439852432114687590275700328430031657685043957268713025287385111146181030271609516101504988976322549797047613219236157661748753633741056511272435562358439961426531801845988225506232800976352035032136390252739666563396038052698189128743975327117362317144981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20314854851764226692701743108536034203576507748464977309554311775421033599708116645304051052917382664751343824782527302126006228409896189955893662331132275728165978187173308322547076465543740457768404863479473321250213630112099512483844348373518137328525133549169703713202420525728209173422197843931541836961286368987736080827254619512744540361786671342202177016618960989527900331591426526107187792499878371601384445573556013541041340035663882686091477302815379004385117954312956383139085944927427667605551094405197581360982737945672056498160961744141793942804302369734872083839870839923968705191872722438104887520699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22247791658711208149734342566869240721452163151892500463909958369750011013233644979873557979982718244611313568957976989424990349369864569772632854518050117799612834073394113439997921050236719347955170151194850102679163667211188910776811993033520306400128430784774685729572583279130371018136281772518568359569726566071539698445146296532167756322358534678951560578823084030163567171085621546913306431377478042233244206353330632754917183168930990671001773250282131678809875067085103230960627829380309737236488929668437448958698290866339691203750491314300646881973474184530635244527535263171688233103222949192215119738881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26518865740563709536775703504313952328416630183160668282939109019214679721471108294897990809555998447139853674178548562591628418731166763466414987820233969340955688786298173110724069863033943858606309428279362827344039966211272476174093908213067519601931759840299939078427998856939728026970962989468995434917135643952318632641635816812586378746590877765511707608483155628156245669522375222337757328442113882868743714003275009809166131652928471072821000093149916083016414474316022721441331951243455817592176549256650495732766161590510478489143479976263082680344848732809537915285510978364347602919125636682576729598161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22970893714897827021832729669273006556546183440691861127445090590988669242007798871387749226216500062863361733765306943272151251338786695672460013961331982235489393059945655240886830479194538006360831253725893892854973469188983246826406098625152972842082266800050863774749587164640672807297841055225974988387174367911329029769170714654987712548587262170820809173313069265685944005385222871827903999306021855917036598510632000190418169233014621987846253152671936041918251313659664072675135651649698793139791127890768740889868475107079237593059126412735449567654556139354073507682439063116494379630277753849988320697293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25490985869147772579872772442206543287532735280553219845422979686839845676939408294713214599968023228364630745597361884288584876430951189211266899836624401253354997402919307704989930569035245918559787980309355363931526474087458717797984906755435507778867717965372761096506782532211422337908257699018117386428675137045771256262657607889239574557200250884329377794857804305103305622222307340363352747893369437116446752789485019729345483138668703718938931304026612984468212451706008709182025249842987103606795342826846008518814231536064568944983920520702455009725266244412889926843608744053962078740107123167096670834109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24396785462244469908798401785298738132857951010735233193111010031392453044992368941953458482038802436744525411956732850632082842764223244706098614659342787274243429046354595091645658879313922660921657350562779735348869702338699609374111634738065032590187909496491243870103709759812322898806652030148094396010070407512458284067557394112911459881890174509359144623219685799746815432202934871645071554424674132498793185905498083268464808384977851615723068345807808752562459910176333395363859807632129621679702394401923405072210511186478761129976360799137685647581159403563137314838856081654966040439318614674507356117017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26475703414092443724484971477899746465379796611975114274153500519170537691680579383803510430756588449902460183725380914458151732567224684546462768342509243135657329840671282308701706101593072483485599118793020038498099156430920633036323326918404495248982067284102371214339566700845387420064224694397146749723928208621039478299275491150103331786887815458506593433803162749796486713860577970584681266730659012603691567369434367608493281136949168933123174776870229979492282602618692694450104798837800130316653690251762827517949405725582380062488848859081064960454874541846448524066121249046623290938752755655284238268317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20923976502002632455698230429084491201304639029219899551236337477460189033342813672413597238408223327392397283316647128455557540189322104250401332274769226877013236002497517666414631417166106022047147722691074723003497991777485334354553350508025602881491373462022474840734850471302254437903488999930871318758177886334677591295120062423705643323555913768256667780225744474826201724202734197587906865420992293136725305138586260347693088804040394520611757196198048106497494977664339390709736564086177304230902332814943102724742784688576801356096143388558394087695768645356984192374340089714355940051795883897997897578521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23031874392896786760081450372944445976727481132383045569644405604856774738166864059402947689591681647766916910286799790799969017344241677676391974700223681949880760931468124295908811951100236571417903218886499354282592556823793903534743742883820588927376978983977495498284110790413785753507664822276746273465403889391678100473785363617589643411838805062702924215298088803825038396274242056121012172833424439046722819292244755072115709015810936935228146689962102243130806379928226383666254640937281487724015898989775699898801874333725986706588246706034772420786261654260336290037934954582174738805549270308390914875681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23395439567413607332040629879128625441636565330840561447212035409100703285594935511439124522205514459011614102672780653207757549981860235425839793237457922236182877586408746297276873124529760729222342932352358193768382247635824582850865021435601496161593889180943249766380552190948293665000814881378913735119732423893360158349226646640341248572286630397497866135555151954690696298888547607496538107766417986622646720400363266673737278526098381721591519867048849391399730600158582919098265420389746034859041039891522212955356117309623818435754360131368786164554534658197819241893411301562291809133298538539439252462179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31650368099857818710047243756253959391349670570569663505597117643811944001670337433883369532111385913558678519268133887790952208867256673968268708167199333700513771387125201523105815475464393564831071812118302834700941396655932102353155375472731294889221749880028475228923193636548728831331500651177019074179146857149527951496717341045234826602648473107999709259125271527110197249056986505086718199151687336813653146034968061766231523206966887782745118596716552609496186054995597277659652968628097129209157012987683577541208516528991157604258599414533949011022969595756672311969001681559406322650522971609748505392329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24196993922471837031729248533542813922285163061265184375050552128933413202506854850381915664078471763803766109238424002869318416973049136816535604375624573564357938162301093351797864123027308748139376081376126642142989182608216809590966429199300987997066221997313594345875142086091170786095293210815141506512855749383449224524691127979070299483016108371601698526469553246688623014010995895358804032767037008755091972817599684383398419371026891781412753225017963513752773787730464204848164020892676750019892424347259430761639279521273871148106772076713720479635212688211635869844031701978057276502036378425362956587207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27877282650995546387456225320162659877675466318840441851726284830873229053368967760578346209280855954276621620959759281619830118256812531131822306685226033968226208230321731748992543484640371742185788418700164359759475246504504967321969501251845693876276065185953224170287168117758369498285255711625251104884818168033132122036134520327198130773640268379262345276026363976604305174780667219724020031764394105800719191322841470768716638335690851678049599567514499499743314647234389405439440497293921679419842518071348606376354286871833015987629941267011573001446491014059753816262438849441091709106676154182094360081427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29757558747171778989931716138715429050255787693619246511815000042821487355222784323684453219025746824762428504524794105248007029550304144463336730863507166331475534328358509837877091774923608185161785662638587242768166695051538084677388992870758468743835019930553570679208377718556222077283288799546714491260270064439659999608850565340127782661099879494794136541527405825958727533805599509441314918423107907945979120057606400675489465905467900777683884995935249100786000627473345041149991065808360471987268622383904406779684222063997526794065875184775031715342290507874932155863143409318585345237684185637760130323241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20578798767583544544631793241459125400592309163318475054844214558775648923465330537940679166574974381603152697930734130871426373204279336144173975347692814753872161456773885651562668028205399469708160023011593347507805603806108144557247546353236867560204299445224213988329826055984044878842952701745206872325343303005793259712771596064226223166412210758436126720906489655708392319504054108183810507060361463444712354721323917451138124754125346724973827202946579977842034641602970942030179471190793930856066094048376681318780458859371541261969723834769493429583888656766370776926438708756471053157201486194779947840321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27939108846157654267459866530321228402991702824286443251386903111617945084388101831320120592656388051312017902116011229883210694360826789499267885638377883451054693944362134776708737795295761397564876465862802057735028855623078507541830153898641349651991061640573847892205858745121963073237504008763449190686964344897152013755523684652427632367753790969336367481370018042148657678191227059312839351850618293585366500157721256315984609652213132186939766605251016869827109501760563420929249875892212770308604313947683450321673813253024527517824785581734731431342090466084066453734191847808488791961629731282226290627729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24714439772183121304401855947189661448616960651583738458393257480246759528020382556230798200360242189319093769794933185052901971443964917852045865430404093121928928343775673928281389249375995545774354984227575267419034166351114984545889502379189119621458376023952217202531322450862426733295387362447532155005206293455134822746128808525896696958737452634406685067149444461359795589480511150334191092441879445884851318527755762897327672180853455306234647238344462290657238583819727161763935223193268872819401327056589905189584280455060269589132879962437080703467271765337248266784970274034669563553408412771723308629579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23073228163573716315136007847979559943712513785811859559844290592787508264435314878168517246670013436823288745371750094229580478090428055543685952836756427586452872397501748325330571693692457238972049593524543034048543188951627276988228928631399716895195848613118844875483891674295217494679900256468012372762586810818612243621739042330990108816908539137053886437538897429030665909390124029565550316330135303454478113577207457494423354006317450750824263513595234395173989011766057764733849439374207822399273263071570199457208954172736595428117815520275441428042585804333403103724611450770010724884472962784430134618331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29932312853739022403479837667620845501194711673426786479271606280349670880637187665960749262966703041521864569006944067694682272935841246826668458776696046268225422035035489169086206458358348204651915130426152450194481033827600268635865369352903604631384278050173896072395037479993164271476626622088403980528359552920037601096416009544153822932057571927101496503419802345514703260575745829329385350223502266216877200323291747408655085130229898645410709275053184744849650874971808860933859026277303501629855326507584257628034874020938522596030947843945476231072592372963488842427670061199399610649769676405193839914887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21650133053438774154060130771954005908454527719942892599325753003601989211791499286285058318111092616770046244002805620643583785989565742769593667283623216775628483804358719587705066491056285901067257957849916805447524565331415639703200106275588961593723920392958715166283499026167028976735894831447993062748141410439149407457132789969355450376800309244612240824020326339633895167145932855813648209545308429559093158011988424384926172924097965463506564592502468040008404363120372957817206194370264762686876960201349624531935745699662038544366771378421068664724267194342329562192678235706446583193749045822658637809019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29292392181574513005174575618957084816946612159273146413314123908388789124247461825693261953753801501326867738643139218283677659113151529291496755508734855097374003561488242870912166319252476752923169895722773472856545198032197221341253282048068844496856642187494110304250684899135826976571686027440310347008340382893883106957536545086309903818723739839541353065521463652411609850363005226165687051249181004234803444029051270210053405424072073459608365333276616679539457289792667626007627047443197588449993877776828375069433451896046480761550111081451502916142515931723481586966784161770568174733026288362919853044373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23829126752308091647383215613013406068429739810049174838188280506114949287866195326411047164731287140839303788066589124115594322717260909798685008922710882510033393575676364812731993437634725664800093214710321026494986273734679246206781386641730819820816788136144273782972432325118079565369994768324390989380094054509003201272225579068061166902599599802968892729478832299872562873014104333252224575116169303212948163836065223685703513230907885975422816167412651899166156925921691222472878873715500980829391737783954757143738913711094092869697610554745416148473569756703031582908366171839386906364230306779300785957863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23263110848339808331641649896452541801723076744012297425962031286067602880613142079473049354661704271124846156337149506579629498952285608965438086645390035609471640465414497918536694432408588481707376050127880627382492330912354060148480847753068810500103208917403622812906332123659200976532087854820847816458820901520010833308540283756409844296623928459632122644464651338469856118763291749877743249149182273707999109313687785414727871079337177201086785745610903753750000422966185630869964427417241249360633755290339226909760741025425150663658686438819565238416219046269062616859951132317961269338156209524510374120591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19985581179517845413303636590681006989369066679184651913151627190777848461614056571417765238026719041411118434096788018961270730316840652213745454793136408940920220497472879338258796571174736872778665545014837453925821407459499957145531991933195055481613203936844258786380123385006129800807420220244590312983330683042997921993409343190191698723935273499690315511579994377278635153527877065170026968300167000286338593861890866432480262197427042807773506966341411768324694128940376629896580994793226245105566346249460236180545013367314458643232987948300881621535900320386839288578496632151316448400302503270203789771287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23048806978764854154085206628400199882968273872326940227093168575943802496838113466124074662552432711383310143479025152875018963151662118177119919763653855037750538275479975702484203306398061163394320447005371648653275609227504853223225131896781606135054320628152297509337361760511836025660252866363909849717719283498706886866729370972226693129517578911748492984292466487399502786803934813880444623675212981188936919251447914098263466676408903897197693647470260764739507809075133012401325686343778706999100231820166424300271127734860031357563406568825956657315002641537760247354094007022995733896608134814840105993047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21322207558187267760727348343460606887391232065874222917846156520345683182235942805339561451167815126710167453112334556870369853077568229649491999562728755474950235150991712089496280767471345584009867301943403563529855908103685481561508957264009198257200754879489274580107317611669817951348928316283959789553494187640917442870027698481058575091609508356014779668548943612857726129786167972970040585779867268631900610074436502676929253551572995763329921291874699004200929777951138823320515414694290641396565899212367809068360268882828439311508229211253530109768157671926886111776265711562599451241503444193393199426893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20610007626535953779866265346609076762321002086689964729095384630996907863106034341040927261722365830886281290984142741734779281137928244893561411028597803257148871851635752008954678420970465256614526322322224361758688694111689383231151470056437501423055252334469564728191010006746777615474118454185751714108694360646448937412237145446167640053085577122056047244150709412574393327974590098801453710737760951926179127958792725229940101356860285032464071461933704887908160533242862452058257315358393728559373883346663618436566125839262717996392597583979502067722046359192441992625008657351220134155819888999735518059427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29982013613621152452662943010795707509710468783297093670415719321365473497300670511170918747609092044547775306643604334414722191476426200658435890030830672101886718821611720330426122926592097523863883630977195485317359843827680468486777781456629649955894653779729402416149188307052120152564935422572387575116685037105328176031178695095672797687268812009914634522007363909017063829373308557915813445848820454462255985538812068177356088118200042661891883771341419007006903429107509115536351623519508959481025928538842299976650682759693734015619771997819720348141699832942674604321605806735824008548661068918706895660637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27328394341001282702821883977037970737859277041861946545213375817745548210976521280268875745917402345335922652411114832888766693423465991327872259114977987748998665941062575736663128032277151644857553419374982942314924056501716180484017211824016313671717263045981243562570915918560794381430087281230853732101212111409852464912049015179345180193055991341667550180036543964148502665407436026454345417901848938129797012574771226087111018341087356330972734170630943643792414014877760917106110407823652210664532297976035727295151232056765208298424927585088649592553136538241230791289345975470675312331796238083380319849951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30636567061291769863497867217328626006111303255096623280547948311889640552341491109262273290277355495657849574472853309900943012364535979617731523230037990508382020786836250440286739810898338409428717524890692121846508492998102033010890218656458523061177266722554421203371619365994691009640153175534140223607974938321945098929237084776257315925329246051515842899679456516922437925030208663757376025399541830307594163395337022422266860704483899411592678120768943181357548705043223906235257819529804217508897632992477220573166070729769990280765915507405574492131087196637648840605854665840244360917912728967386337720347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20888364433031543365326680091678678523938215937753479290993481897582997124746173726659063971840847141791468602075330763127476567521154162347643462412933454177258076647416987104321372116956270317496347253794071535415507572653915484655104729003449121487035847349076649432008392042283383270609472704336676945517946545664554542221443796959298858028062851096930702806885215175258335367221701610293292672969525737971160203699064927979452753808806023266067915031878546977317040386598028689486096275260083986720586799588718696821364806937866571720936841161479408100942124296119198389117548271706198804131524561240979480204203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26782431582100854756481397328048271787822050130399985849365790528679390194179599972374412163064096208827275022610591377133130274410596963516015627744436580334701033065096926031802321737855738154071191656600766752769062698270090604696487286199752245307822498940047522980531089216120741414008650271593959051928132704515186462981621539787496117542451088470449311772382833006951858788136617822685218283218411237388813260030086798639612262372942503933303803110016517085809527185479203049680083502587648595720787442675644457460445575697409511014172810388050990034781703073153116855358050905949324055791912154758616555858941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26735586749177207148218773255512878763100412272215455648595203536344721945683282167763448805934612919798516597176297829064214120623244538365295415729518105314591642652044151988346319272714395124889375346786019293605329103910036707681875355547401684583308982540556590217000234118488640551787617788708315734683670184032353804050857148596688591698360090204958146518972954061038711909969333298542698099135581610323836694885709591094406168428052277401691971743223578910427225733541944877807835269602032211425169855976926901938854132356673620777560000332111455628495830480234575336805992852571750636960835526100644565363123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20793342785591204019885584767069843562446324553628624275908531164408090016783726653846001668957092538956579518949328559249742788275619225478742993653669461400680057697206851554715747607401181757185295925484189552411821222802333675888897725764527681744693203658973723778622323440817480251383484410646875058537240955237698536877253828292598117675110632049689794939974801669055329124551673867372809717782395950035907850680106148534453141270327939560214968409883166973292731233508802721844046555702609733220330209110361748367315219555118309509667966559531942821724620153934030231067534860073709096270950981320689405570149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25567794483777245086113559316437845482101530811462719546686204241889114734418721994596403435407695050125746116749503519527564229267436083681918102163722391271151907354421426764546095121830167432747877425261596318619191645277303335510473147759786494307997539842121075092107239547511720522032334494848280657140941462441612892361000009625622794715260575902688946816511360267380108824801511652879891568762139037964692750166711113731688631905205834368949310178911942552096312187113734854659444418213761795174220364869263693991320051027236407637520860137824709863300756873258950214126261257903733653415788794149410572969093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20022421221101798505488151698238232180781858770086740073895518587349613763679057417721525664382488547937450456958419162015997531281041501315902657065810990212995665636016536362576161467575232709383486292136064753265396031824287452624732132267587597030758035477188701028473700219557162403590969983944504620986353505669366105403361561757119748705730307889520050214288095425273243866480657842806568495968830782543522196855221150455489083289262028208194617721237652536541227718318362912252417535584332118159841472268367500318336261310784815408344039093733089290603091887792435232432358457769463891295476417533519839045761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25916068180575184205828609244598041940086366555718470823444292389935664310259775386237554209847170848366184399229562768770377671785216835430685561935509791857447551077337138781207358938930827355547589117284236133145724941279168116256696606981427642823006365205568879791191718313821939903518956332693703307417059357741295569391195234261088038222966687929428955498687711054021969419895755666082474635584125480019613658915000001149943614816232508088939168122203810669985083660517111382316760205938631883523474744810761401723564355860763752476851167142660517160597223719912401517967015382155680665931441322324082135874233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23768752029812023220689768766723225884270818857290171221893707455220685889962439573120770008069917949790844980717811749992898264772218065325812598634105986784188874759030453168389593768484909150131455075191154837621402745638870933001763813572557162927051302445918071440626121776197898573271647769346109120548192911905323952770043859173001036401633228633516734215124752479792322467741779601813123469022242032177932864361238974416392260830267810908693530396706635488857068620072012964778687026504148211429063942092433066749503336781962909626270831759946748916542911574587751438726897473961860666024434369515044856564451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23070623361639032734579168032287503706741752573360288208898006448748988695182094552955501620005384397290053837522008852021396422085078214515369829094802770179315487780260260790292512810923608779162406883122834418397846017553912181789965244801740061637184201521936819637006214068128083522430888287162826478499550311848898314825273479936962035761855700715073199720786592483619149920582948299238123883546869103212095835009708087545702955586026839686134387542139569437136157161405095300774834027592362479803720573828804921385461834425800998799288399251526827135634697615946295090969947731201124734101482765308652227765081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25372695873000344621354415878526370946277352600967519307353337293069534625604494300580074000733380530852108258497418297797614269333550866274221848258974902703743756088964058077162036130335486983019658651359260308333217775584002890500678437664055426296120893449797143773881431293266885371464590052633527846702672121294785091800921756185334854346936102738760982246165715595791971688642365794508826513257835114584637603189860593950218561358466298777321023365001925658069841365890826005027417161062702705623306438853944821351642839693864991353864990538560805144422914358050995619836945315508171885796332642838800416929551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28123332903522569012405153844552822713766037391741738741130326353312454725904289622876733430484812763705242646575313919742185418509587425828001209170230466728062133533100942736885057484595549294634581041765456858202802274044232451671509471398795917464916696763993571914717233709141359499505865930388911294439879948847138817855661074034258704983465663631912612849655463733691820433817893977955138859549296085079975673384275828753940914981498958435514959588088474512227127547468857909126811544942192339941557487742367843817276632554425166480467538950878684843193749431279328112179455794587964030441910124229967722648127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24091061981246929546345327067422820953202078313103580364206987222604496562505385770441239123756815305133415062929449117018886795164951407126613468433261322671045363762558414928602007912192606958466440370053589760080874525722031980532500184836097713739380674853399526415460204258853907776572160126740500519540037729234283680042247237968100193442001621647777211866357673152842812137518391973382585700247560279997130848246863779051201689708427786856439879407276289037739868197725374692539456243310689501990077973506393533794326821282129439894891853915040278089097509866898368672379729821833822511158448859501870045542607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26647185349185360430364188992527089396410447179579447081786305659330764833240129255355912818772053818832843813725832383916636396594552484106756486369148683224271573265253802085262459113472443730106618619927239854371347682950922832893099068819641888355569611206398365458580722827195434584238825402430152617634840812948086501694466467823485689367233501505283503045086729790127840842125170431882112929625920623961236420744759230471229781564386283923923984153985286289653389572473188732254422516829802327077452676563424769059017754155046692680940880013490134754910883861148615926926157081033098067862762189515802643840349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27950169074878443255309972493255278637534743629462696102154665420102349637720706289092864614560932314380453573796535161809577651385213632027061714876271543567204377946396650154184656612873759966143662744817894137550484066693408358620848415840183349511519316608830244739274926983063353715247176888878114085611388710595967864785273443386046058878992556668134934986526998057063028808201467015251929480250576214089883680832315608684310385595655688227183524636166403212847536179091529869476421482544168927401679371509008769101952917254266694755528871925967132210756640917318970119209290885796337072230556249487198304329693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23991026943128257786241272953495638663773492128475374572681927579205239205119806304707759383819887048929080825294537955176974470274230286174311061786280865854278747976265759181050794169755447798086968423614269647516863463143495615777012701298345461704928215731784457465342787592669688719022218143031808301901763713512712380676119067199963240750786005124386949446597023724251692853917500983039333237070757963139055240836140724364504462108051659179409097290863639017041413933906620994167005703077152175849105873369341358016990802223802478155417111003022269131119237007204021093701858391759239870479780750283057957827907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25481770952296956474017303245439514552820654730461074122066389194740853661062237353195068869524456560330803832305676486360706685271122470148801822011920661962407916582129625151397928758729923167456057857842938198949916437153530863525664327137095489713210905213944519175584662318242003804210870937424056250727385635732657492389062060798272452246053539229019395115568168951297651310014249070364402381328179026004467793626864178477400891529740170479489205374745259492020151836205080348112783524128970811371284147426022795700888708634955532992309993863259975780930529571694527285602828421930796685041093101680018282420739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22440817525582931165106796889945541587843944854694553495514132197161846539740442927811893608716706225830373600692531642828407127374115725133637798894139495461666302983640261146948611973763685694908323368871635056827457574602967061162288750944777088853611907407747339398711651352262122836326940214703863930730059264827748862198064310423010113123247636050851464712987942460364143213880371335420494771585151486357515737300819852483022594979647197851402740400075543494800080221815834499181196599426417228441183181984062432576880044909391741832590248207278451157654927261101993801110805914801433448912410467552317164084557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24309104893851899682915699248116092677776969102756008419694254059796941237879015715029926567197617974334151204728595328168088178553442192796557601443540616991359274798200765312671081838282002330590102933638682966369953124135668640738874980847841383570888966960351351754456719695744574439003608919894127743643659422579791663474644233164922551605177825653108979611007275305306395766558482848418402408348682395503782160135287590818920302713297920539720958720277302482083566501554096499269906282824010890479075729168978616532008675201704785003645047385935782756742601679775905682642563587616177107872396878213855434250397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24019753321384952385901223272501138211123619913968380017524330771990489517296684137905102866404670743332013488846764576211642322583884227729100532321137846541949928180474416059882493744333745382155290443772001993473307597939698596537417118620470543901237177533627981091038427196032072558783902362674567265799522165989048740349595024632768493253423016232120244452098991490336600820018702996906704196222392998553646424717600948041334184212610277469412814507390959383573588012731081965560025739072889020040734218941122546538100068336553965174994141518500893530405085992239133740186888683088052655205333699407967464331301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21749417308567246118930151067174044717951023147455721288174692111668157677692638639188591017299250645892779714402413540274403823067564312458271484240417553787030441498983469792691253497072358649254797047968421278196461749897780744875642327408898626631741104048972118511829804127449617177799743811505990326154763831003696371321771540444415802114004921152269022610970397649576651133049104955701372260313971576997757880758376982742817015321890547163641188178975041156732939503536451699656791471331005431099001980761641116064598512196058665485446094026469415672003079685788576507927616078835688411053636393163199649756979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24667761568183231166895877481414696441386974057293219068489022115196575547131139309328807808133752228263914400729421474449490182494979964313007594141639432608133063264829995101186100766274456466954585938026748645261672521128978930517878907296905153040145525535130719625936611027873002909593905185944297420884190574694435960293224241252584577722457944405517749898792864433812132485435569587344858255864838121932592629260659660710022998000768533534489494982291803698665068981992407292805893423193204989959245449864405190691231653588852304022731745464784382032355317322715809356064019039309529205727331486103937794487003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23744771227287731651905718354313550712023881979432594521142452585151894982642952992840974356614711677738564993037035512904393232787616107503388468350464678848834619780489115646824682520535168990823265660278341214688526221231664370711741536158950936167054976437062536063930571044435683921615508989031152648433492956923650546622031073275128497094757079061273538139428063628757593151981865878712445367749465053950707536095706344014034957964869313005501650193151279231392551945895623163928188861528456968775315519013876755423496834509101787337398137378573735513476922890030368498587948861852299998092557106727045502852813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25471152539285003528769747449484694765371039406917990989565124488045675641146866873282649691839289026527395122640637026556213881536119905542776775125706419041054192433268144434749987500680339384705534335668568950011444583209559165434466380103689702527400544850187517879024496325814296761953006047547801602092617669985018020310848295668635189798319795215474754229156353251508546903438148991974240619748696436860618277325600060588594548234289065624256844909158582722022856182956580814837436098019973393051038468727431498566377894245807182057804912798792362093914766005247197481093829397981481066817628024336640439903097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28362308865732538939360085374444624113165112655792583961110849893301636844734343676238866230199207298041180765150054866550839406504316554831819140438588177868117140951406870956700973604318240684414767314413675403930724988636105333793252929194476245699443527217854951893991827651036779051067336625657076719508775962122318363753303355366922379389811498681258502007249426235457110430446071363244348446002595116355608252532113550265982358374171511902505333427220151108806337325333181519051607044060752819231765694511421433675542432511044469068693148608119848534427537917045866580288394712063317274032493383507916588456887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25330354023702443734850846721310675673364648880600001000952390722541157948898608539266966350803078020601172634291722730461807257195887216898320594635935127441741030260731140237219373268409164576634534028234659649746786376879900988398971970742120243295577868013361459123754494515964085453373812362955468876215438477157003674518215164624090357152698120408535974941272265221815128469583267893592665900040839983446942889996739609244972775161042863732210313110755737918968930067896341291552670827216188886061082417832656185335933496729039656825624982700156181192408830664089437087669182212914011737730725956655528619661679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28663449820187081160203059253624467810704956216742419442309283673243991229624020689612237785167071819877381841258451547686712041441540592910528171234105022332944985847676380266424020598593264222685069298186938142882551308102764620266286326906488511382548367770775467393250297641930684994430017843527715655196188009888748146953508984806646023620635797784126828713897299900112351409060218055639957487821400084259822019689678209285608548337169882038700461783894451156555727918802015281881243497604972251477434960245772322728623646490547700895706802298879928846552354498109667596154984294520869581405626686555420102783013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19418849099005188758932921496826019545696693358520069104787153580304771081525032192814913038576187474895489148759680891917196227876452817602018033953666282694544991663342636761068840668270296294092945539097073839856504329110412092477383264355746458986751466946820204672606884760856320883261045715949972235815334865292132103422231694103248304183141267913467323531193878553694650443834963029129163117445775074277073310381983308036837632594207309585550738047778826541783160332437065881828268063035222486203854501505410144898320377741267609205281458231588887980936628665233466997091937741716656534143054941100074184463513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23671110855839852524090903055938780612542766952216956192829548421568432763433428885992795955642179300054275127141061688738621184627626086109521995132565015580672351871863337202860187798403199362735986911367594352546507338263539710147634255526025913062115718445568232698593385454203243425438728669640552784471449080141329895650637124479721990473426716671340054561816654171471695329917925972589449183286293680627692812516300698729154673105145266299634434368374220490027276881337591906233790341431779050728983163166613213311921154853599212534712290200813884480467847204172700847884039144711476880524322987430257970705713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24548179930467916848473016993206487639981521934785619282213958068683450235708239086034230608436262260515340033470718107928943729107427195169035366284766086946030834808633959562113999328143073890227738118795221112218672359664504672872802286561912118738395108554958617365276527156945028668962506820045592846414052693554261428567859492381859915745699459963906983051957063083950117480140623628111040416849186821411969985797979772198130131345364721766915719043318413864178969678410395051069961274212809491480592991774869941206352803292709677365415129955591997919991235232201198858092325393970886009094503817957925336595343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19754772275061963785108174454743129329363459205175540614767515132778946359042111167552127414819655204532198690920273210306995524426583045579085422713404197913537526038906521633306561448638454070059998162417139797635302344288948740048031452257494806954432234910609789768703639303970051166329593158719854000221488746307102559797917179423826837396637519066806041741200190015232214121660137528544936588687512505852761385277368347914021734497765243156317093559082377315297842822566719094646212205249731592037416391481470018526878551911741138207771622483083956295115905692748933991295826557635704767917586595301606177101867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28710450003352652094806313718469889085924335085297031436163051901047163326952400224384229494430488600546811836508263564096505416977033311219452376378961122301413335596778833912539236088898522458655350942047867881494834747256475078826053010021259694384947845710888267600665526367431659838500354561807607021363433899107026473440361687991388051484102914360803745781143066305712630567270832408000908931793409156225636566109077642939962791500650667500227477534299487367535379975061956432968349265407150142876574669538398082175312650678229806947881140462615106291006189663509570238534920194769825775672613494317231909775837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21368624667152596314606158271939573091120375634246098017399718554859354309437786971054742233153126112701538150288960703415928291065492724067148193743482815210364057875346726984037625163921992175597729550888598653542567801747431776775351182502241226265342525898550065961814261129811953662925341172661033472921168177366966162495870391578233384310480101880619082295561744962506753037315791880928045397166741508504344887959222046055955610863656980634094928907051522659149780685526655364060389367291359467401583849873559625265474453420797403973194231464469919768499203774942806352118748138240832074673592666077338421078843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24199097387079802049729848744948850742249668935512684472536286261968002254232650864429195329698038666080439447928274414891065570207230195134748198536698481477423086495395340853354155593058484586566753239582273245395312042876192088952635735038708821629834429200106276851219462706713495769320395867412469232795970773207749548940532996012468628451638998538901187631834428159813914792832223874699158273441952057130196381932864871768563102292286394694177810865549561509026925880078007452961342737479390586755249015287329312111074839683307079345036208256441294382902717094323054095624465509641534710008636001183521266676449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27846481204910716647895911327149226542540349961159848999054868858019178953235113989341572795592033599516334115273100893719404974838002052324337458814465154179666468832530143903646606164023674881032366280805952032336303147738010823629870346890710313982795740065817934527019797347884439927461988801608668513383714122479779895065164494177635375078335490712370977861465095787007273806310504869608611911865861975432531672803292047624120901873635944613612018240953365853476302652488872195603920031147792617137587641273623325372808864831861381157793712075572425951688159901544765995821473850038342309114531647045761967391681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28763917592423490026382396046393673435211640816987450180040891256220602003777252153568564576249291648873805792850806321284051408719641822464474624614177679463908405437077755972245919130571212811278094844779420710268081506785138118822751650909902828258598824146416250477189736752458812599400078133041650452371436175119165914602571575768200815485657417531550453351046067837308185895461938202378594424219030254512282590198791790004595384149800140635211829796978732016784128556601607197937191914363545225332389209947724547624498920211111069758268165880472806979260934649366602834151706970916214142964143010271051466289359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20805327506397250114443115103619511432515194259697139341305116449439665775813376109492056013914673161272650945280926674866165478170358105626505341207365256168815665473633902427595376929168133490612622325687624393283110280244849259390733547592684628309263852485079585100744048160770712103655264681144583690741664575587113053936725888730670110664446876771764026175695909427625721276683670899734494447197976476577979831691940189591805050157379009872472298781625440716378535385452317412249854172566483018033386519519355474186075501338572338854969813007768599263443541108631267352741941016547617798573224426531673336657957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23850901847677632918109641720478946158417642710261076248826865482283407789979056576667337881846408024512683463762544222120655357832522221299640836096369375212526474141735666497810760735315167597587177854151601484344827258981464845017929345609799330031468543230224324164349403269788875729472359227026409653694803830030909074815474051142017440841379562089641240198549106643025274071384403937002658085057338036297446542534069955095052881912254396011773413911982932411915887033709185892644010818834576364339503241381679212563905168996832542830733684600106270472975209083292380941941991016595499407976162414011394367380519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24051701543596973184423250927105531167618149761935616061441749300594379517215251277156340803784196140324804807480956484595534511993949786687335954541676302667807261111589893841141717579057241191571504535015946077220565104440767421146653650396687905614620173127599105325920836676543158955972279124630421747136991318834988727713298113414046267866422380337978769702119377493119726050684614818910489888989065029334686563890337701069985529185260200510722524316711647666418117336539349003831415229942450612905307226959644419465849282688991193688209124026610349223519107833730943011688628525418733009726791316814890405670967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26204851108253305562025868258880059652397167436134473614132155710158032219211087621417001835460803987942033998395880797327375774565146773624894629512595626516919405600552676787552905007910119201158865642985135807484661500399164393409395752709536789110518759305636298255681515580085501930104964737646809262597217820078520042744349131540423281928978335825650735679961172926798113845800965235499941748387120175781246471680172403450222372064742995216841349172478673339053700073343113713816132751221277600477869070012315323646102048608329139940994697714932533004469661611510838975550940645476516927536065714677137722708403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20401707875261976607936876849213468348178564376830982091596774426321298127374470532284932429477682468358280856769190316275812395114211062781124837923224337072243697224455946141179941433725296893984353574872036122159121793195822933905215721430400154669678113145859013828304133561487502539911425914085168919023273300982537588201000504796084358371704232146154721842463542766324946921948810471279855495971542815137102212015780067383323158023251076908929801397006922770630436230918520523160699364586931909670624831487099824240556062267377758076563073939685828281611585353033066432180989339744129593990625440287014518553407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23833615209647989991969193037739800244146477919455460461191400133748743835983230226805151094428488166509946311161157433014874022321406069781173842305796222976579268111627788850612786386171266799711566033737780094040350119121250784708053642998878222595178088680941070284111615794644022756570179267521878809247664854116898813603260291019374987796689029602534965901812591024901291016526142177434931107410264688904641995592777113184058730557006100001359260388295808566988951699180554440475286168880999519719416370502425170689635962526222562013582806466356571785867040735636298539132268641079755782737601562660548539087549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23030654417344821863825642787088580024115493111630493478896435895118236800223521984240569695787382554716442880428084391753178131588691214834538088113286722758399116663875435349042887673615663458486022714100226601616534145886845282963528392280607012401055816665408987488320447027279237263163694442544172793257089451800542376791899129144630419813593802196644684319822962663459500857358189149908369718747074485792532750729288874453323531052492229585083152740071771250721138198959763764043187374971150605893921034496754298921229555904312441960266604828272890145642706907669739017654281658458527720355861099505771776027397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23805343368736562711218468596112141144403421305694009506894820493835030953456117280438148355033379929983783467625529614317317631093925778677840529618592428059805462121617036866735025312662903427429180314743120811309082802967308914718664077051529073203736930355192531642181343780421677898241042409392063424433866485205984583678722565764586862280815329239012212637850699078840542004078089702013343559580413027159391556105416053514361817515057826196090370901102565198106951505131840187361109690525829503095698190325879326553194698846021824374556640633304378294271940428821230935204660070171530194357395627140108442293359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27598053302078840781492676120856826385522968442636298832541035901868502179576129051195128223999195948849733202288720957478996772187503757511236245692629209575160905823924955694940363518999846001231536551438850288390766288105972825775996066858287690833274154009704052775461618300606660899380422008843716916432508204599342675512712579993173197255159993970079908991827480062629133602141795122123649919115031371161503020908881111437029715517716022853136542007187061817976244365125521839787669998384237410542369905105925238156320032911735389471492595150892401734797522358278954852811722157423955762243381638329514553767949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23942035139026840589763291860886447112588709892612923053265747160591968293821209181184757780638353370579373440101528127101682012249506308752384870584144489175083952786477646435578910534842240075373078214276556551043900477283712396167458646568666692670393207460217888284680482247260200841848650095443170527050769830632502683163562520059414234709442278662085662805290776540393049704936974732097762267418084553496331738270155843730541629237077628614083882002556325051351734411477312227931787321535449042209685953678960431691195866486326067672501777805693461486709145815824359960069184181004439088746118105243987437618699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28248496174885522750110067540477167629369158215286534565570994463886198633068216045033148342977448867962224059951989927977536004599393185597765583007001088650527922422917229444879624519718955951352310519020961978514376384873758190021079092880727743182321848050058258985406634401885878803222903906658243603356039292917893501336658050438713090198533619214909025813516465945344806164056872424385642799659068809057784440996662258942286028675800712857016784250251577346097162372038582760185540848904334707093489274781792824281054378161496573706099614140244787205380223091737280063922236270450665477003980103490883476398577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22122857876141141869277957756886141883797860287344325132948024737024705380562393597059301053358300507414540635835490744147433544642968968006072036997804219139425299873943817906213644886356606129113038494829215645268368928025429983783011929666561412591926164637044476437162357251297572470733125844458232508902151221329858182085480738094842987853184737192498296037228916687024917118014740606545362262221749550994391290050865457935023793221387799393731657190295257584211760010944372488937083214302398455660275057744411313909807481461341153165398489078768294714597100002080987301830467907021452790459567603472507500417109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30913214788403693398292509927945043696970317290160964991292171901748018270113889974202080030161852835444112028904335931265050885299149663246703849988219973552649813901855695438278999878829457582423747972059118548017763648527216366468872927138038188030287168632423609578526568670657571509311627964005322818709282632297971682878607132905853030243111625803804167414268647423977235914840481027410890692120724158187202266010491310199701427454586573488046993698457916167666503750316844409798093778795731577191249446818597496050510307081942075206346394308638751421379088149045016626980513107513985714670018276256351685518637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21428626694968469303193267470130913201013597280967474014180258268944830839559661651963256205710010675480410006053959149341977712855990105956590934937223750553243470568977497998743759026031393819215286194797059677052400510503323727822944693601918016059384974639118073359005645937122302667392469745764250769412151173372957526027572325273194842847156293732750829255040554747733167347292454812260954913720607201306403929869442694324014948705569499336094735942112260429680492496115064472841142718664146105668188772418154886804168636973011152106045162291648503014026567402782400090492723127984953775506153496577912834380969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20053478500958529751661372680172577625891996375044499623475935822129258823958671605954296313185422516109166130546888588142471559423535907902096979346614595014131936590736722079998191033993079963812835729938130636258873371458982278570241383834490490500714514786864565519784139324298686174860612511149169934431979136506515399651210015836945414023802578954726619445250011492834117311820721242479372013789078070671601770069132809252386614870475678561082075324618897701946778564175458503488812276000008302790595670150212636154594663725616221755806513160687353786544205132035034284200035588240419670607096278705786283407517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23840589799653628565517916855008554914152725244449549626285176058752823340823558780735409252598075764252566490666651675693369635137398329049826822824636447083076758748489901820635999417244186285675738038682641794087729446243816720871507638001853790459283484736738307737720622020491771763154051550487777559115367145627370440570150148384388124780611771644902099255767312132092845300008555012543706045310736671932419936449856150130374657500846300266538811485135502040187844507900942168939917488860863593933734013804981643575731682979673013875122142361521545050016815634350370043053553296725707107951516305533093875419151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25957038810954222367171155023954783986475317043486844360377808307861362120667710226800030275349775588358155717658079576824302457922368681612389033616608676095649759040221885818314051110766661996155864010024169190141904917269531907315762092244548249390297229550792066003800742775501812722660572696091778424254692365707082376408630146876906807508227256873046501439835250984152412117744013652276613791783346430767859028954250457334898963941064216402832345997435861774674674943681558588797930656067412659647718008149821940763534894811218437093303121788161107435607547445049829023160620640636468712103987757381952149792167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27591644744548852727625514398621724079165631242666580296749985152672615827186532039967153965479250723998245044675288002304128365009133993778536256977474894698368843434629694811707548771608542747190623879338262321042115417638289515345349645802960474012729823116749232174447664415075434254585287650377139243220304007935080833811982128204992495636789369831275158980957792146407594736614141138244269701979928271606908625046784040948373134710501894495550152902530112359282393060007814347269272703431756938749784002751480154401440719535261374330447865777880576659723268269435691534739976857643898069772452582185309539309461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25487767376095481085897220552157234325933724097793827587451023721288856015061521615391324540711889333344376566815330473962666128956488424888179069859070554207306308460680981924600083670459142883605953710841954926606855756620623745843858546278255401946131452320378546855280124325228400843338518493891293815563225815726733281011081689367830648946701972271282161517571536673114670986676340248107822848705164686249220387832802737201833389127809607149641378126125958956573098660573942110236692879478132945415381257251363884918024028850975056153796762804090583819821845625979473713668200512921640854118138545104700158139767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23565795190781376038886115887416586069170702905858888952212504709577085038976143248130875167354337800616535402033697719027072414847828715123906917618916811793678868621876955026366083916295846562246691659507627038412719797921728655812734960292119813996133161102979110148341097280585584062331369704044441889404027479144397949320695545930461504911769297077001227460481395382879003887343263156111301278419172122732232642561166974530554002165782549240479533315251372667471640228972894778176454084964182333993628352110150801144773748692472293407089620574521363253185564947499339996924994675256339353523042371077428886418041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26272433985574248321912729494224541479090499248739826521420150863921728562605673705970106873705134032873285909903173375533744599799352129185778510044627048226012715600281887277835401792250968031866868319670541261445041025294650987978637880176068315986099768932668031172177629035849782528223613797160271798190711812806391072030389249565090106828411003027558276139418662387944519802877186549622630393591225670553190887792046784071387895449758639894839909899605112288387878777016169192298293893217595442611459001805057388148555659522242431897075545531585426219518322950165436110104237904402221196298792218348625722798389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27445227472906674163329042838544381487189082732551468241020535490197263058152387233436684518241381200897754904554121375212431500488698507605395239567358323270963149661521053183506950351555574174920083717521910952392117180287688360310443508088689442486194308153992009781680620835170013563655291002936740619026664028195074957336697415232600893300310782149049351671056398255422179568365522960846981582875722594247386717503259066719173233587836935708447216966316559154824623499016730095801460212352777028604856713236755921975853509086211745256867255520832374669597913254253552627392775841363873777081619634580754456101723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29034225016339781373325904207495640037516545784167413932106702986670566279367965285945607825042538395941460268221105329770200428599389866194622915349835716127578572063937400787793294017524581596607896710824185877759433022510749072524102910610905777463432991028350151872715924084039321588582166952818260267519649302886242603427628506787086004239149499144741380945973996840098701602429267521599476692028099671777381975643725606308004525100873320178707730608127303837545644323397591623467470941149290986451860404736095083534124735657554873255091745272471451207118467294194460699579177645181088860252079196714993137723439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22629083950716862163210177192942449245323155687507368539608269728396094627117996189099349960669156011011541594725823148866371521913408441230820603012319086090652960176123448904066353585076784499773287960061444334153635512065648974165370332821704851053892910843622382954778667893195270425814344731323138662521729705042987074922802090633136707446257000383182484898276156364717233428090749008564851315354819663561375851285913719800601521169885736846843314301450819855375943856780128871963343341963247955759709827723382078606624998119860851579403107512412493686671215904132092978342879951985472684038306380283577187012919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20160127166940951259886227795483791091964816529752278667501721956710466652137755174151379945066933098734372162579799714671623311400318450857217233613829010524197972038009277341918761394379313012250311041345259890094589761695911586458024083216484891057370402622540811816655545160236347044536573535714076782236832535028685588369301621298572042887544156957848519094358787869175358788554935039531458677642462142483223176136331475528960459428172096538274192484764968146381439448001147764299670057914580870203325960815829582455566950413484931077932737415454175276757113145852610025852932591943064121932379380693618087079573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21507293248514840894924693633529666200652751801071396078640620473858635023955649623268620304826895867307388710198261027273689027780301725773233270229717745675196558418962990243593703976454151979953726007242537731177863602066689395223824280564328975699992460953504718482788634912356660095611354778042411034872577735748220104031213898254211521321926167273447425782890442467693844399882093279067632290244609972758481437790786675707984448480134972982909494686314029201516750882577157270288150814527966104124769096682435927943953812337160645630879471921473037085084573014215258730128277277001714928627825772633937083759559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24323195795243331124220223052814447406077292170771843950074832558727411167421902802047558402360046749978637639595963963972193052092498773024813744824492434482115135130348397353630890589629360617908527592656648866070652979351126204481109890370177847196864266951175387936259525838379401513255078040626661640008373586573359691750299462341174622357884595261659663534533320339023539424492743671136712696396018244873967603611486563958350971016965679089443010461288277097822640052065420036476590930369083089133384943507114668644945793313216312140711075250910487979770348794966207441604674471312771445658455301174534216773023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28990071662025097368314797849647807476858444945458415073108323403822350230702049379719880535136726300481364033601672071113707326674624902656505365302177592429646013221227572889927442134907759836842364547700534355388480616969856049427764186963517531478324546115586387042894541437193484193565867422955919545444774017454451120490503260729568746289431624045801817600605865698924329412097588193427827212460147140716072469553082174343064578847432321386995294392371450941676276721805129279363709372946576995579348271184640882073213272677605016490610974612807768676500605468343365792998168244767540241353036214260361833835019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22722827390315286946290698804565940769423672863345803882603836240601395620066715370652295408776387558205809050386147964584941910793985373232008680748310187578335202077127028691926493572442372454679319430648692546173924174208377553190976167787015093254820384827035727156804301187437198489623001986869567128854659650492054686177467282294883306552602066270731556066356071473613827328734114188717229838194941114780175989744664011551818498365529414421736054755398353650610153824217099982450308122714469895148905596397422625534210272691287117663988878575820382516047955968955390541975945272824032688079744189152848354305813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21227513023838732356385508413672514187733896154190569467250763476727449969580385336369872812343972774248155705839079618902451228249253190797747032081203705580162586106000742133947782056855771754462319808231062986722723812164687950452628999586502692367295248850190954540033470666401732228499125536721679373341103115667101909955617527989422349838830644096735666845543875075909776738409642397030700180675596073680123725808566460072940434887955734322724294815709074226970566397061457711860214162163056029649890010177463623565275871305907809015490260969859915802367633171972090011358067447693690464760167075521587542778219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23791931341453146563781446464714850356067555656322341032979502090463511453504032537310492218758707591351255678434422449634528697728972408172634083690791484227895779734937125748054888314095376877580558873618960329925127461373577387848133387229397491976936907689497951873170517857789095157723616440584861719924145049119119181375376145570523459970705337138755904623161483431115123407449545400989967341141741250096295852842654582369364887683281547314207185890240970597672892175138720312286049694177372642181401198853771082595223837179776940692850301770608626276109757777857850371586010693212526562661048715266157180588351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28250938328374513823489839845089161329999640340894889836714390440014872641353853055362906407904357160363640018794956247358036013625138751949185041072421300057805560422230403506397643368683369884512792903227218102584594805823168874401575968508441852071153848590409760336157158636949971074347881735290036869882551836517075522069294423099899042248785499766819593408614249939390417031078075761075986530050910076530542691339581865619637919192602228798083819856798200165473482520532145022701919531992897046294088727237794775760222009557586964513847658392701219585414658367415490112852707192844254850136661701299093402169013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21817055060738836549637645453604928285169228764987570956976557106116637356907906424787470598822068655013107003845270109659105779521835164423965288854995135880186079951291048301073147253109146869292523918378222869978987641088240071676883869427785996520925448637277622866863862143590207846189672234532243501997830998168881468790366689234949898590675567398752335424442974598127171265426220359110267903362070568328466204510085726201980263960346629771692879133896891296021145294823609532836683067710444790385082156398357096113459787104705360246877783260377444081282074671239732577055310948930670838108572661381329786805981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21368587866690047042647409630102639489994285696155045197995978534528054175767894219667389133388560643994108908403583877701465332035935967136946059496899839064147775053294378541465866815014045612015138795719777465228809454816839515403489649599888527416869156191062897667584431031967883308106103139220272811388099588547947355882440404950049197219111080382905911798465010881549454670014760999252164509174768987822305849114874214835734048111545515508074078247924397746906811358541193167997938757581218535204275453026255586997247284744309383371106513849588147437192960382698469551339457156865217524031530557484482657315141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29691785914016853078042139652796364303158846617900693292511364544500698588177763055580382047868000455300597452067713627827097419076741945631513742548490950202653236346038278442673093980794078505871717594389598236265146631180907668112609680595894192952702116780893771729273592753173399573368794436624933581397191235536949762460610117508704742075716013704736335659618358708666016545126803321905961430202511648276655429377259829088944907527072103310985040901583231728798735727205955958103052925591917130423133023006637134646769305636436016326156129072088511405270302247585589951129574932412609355714534645805324744747399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29347805922770090949854983187836910621713077625858446598199155534446166041978537012778192412483049622680752377033161697046274688181661094738733684182192067358137415598113677575083563953659084749178636814239031985195009093585918960744370836172373275891493524386222236665249870943501901653268897536585028486956580366163945185643405787287526070507238674753490556334353295981432924751097167821209274403221464234407077113172443520072315607284253714719154857954040707835971370025520592096370321924787338425289728766208820881793724245885048403907548622415171323206580048340223520118865129983086355938347180898872301287375583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24716658276638698401425641773569723410180472166363391482509384902857474578749055425826071558779705037521577419581791649000997550589963673682221326360248077100994211012909770009555922623265328512638569901672517051725935838638662542289958811698231294191205601741320589599474868812329187497104447465752502082766244886664058584538100636320899759441008393311459335675627742877713078468850080970936717561731785558603006950933457967385593249573796816955268313066804026402502473267393258854001886124048997735077681527733743668286725607342067032428295648693810786678812906506185129568788665922094365932816568267325727260453219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25339049143189141105693869780102892563997651952796658282791141355525689714804807532470414007130594704923727168444407040268527013929989181261810599878275226462366852552643418216238695069251350078403342984473134764123668845687511239300446278129971543487739333341883109115415253452476677153689348784975634706808583884664698153324089654859679271462684831147727989432824207197544417528144897659045262868307654943810794732997958718275713087813341730525166593552789246631837234040481977006205444583040132499577808346880182429731059494597620594440276052388472455046290526531149375922379227252592502516829756886702552389474797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24230717798105515373320965743011923635162297968504714496405817335597115709612375617307242658050843521978861761493428496475562345046299912413393172325652032493528493207933375702625160612420177754839152293258329395491425500612775451198106118938761709626347219128472739819327090210427334229908607822512287878509514481786456152109688816891772698191526322114461235815209027556789193073477813041571404872303629624948439729284617064291248557468580767827698192920793090632521634152858352078161865724232890056237217684655055298528917034519226977834114884094198103471378995699961888762632569655723873796349758690540183387096117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18562875407828589549975095971697111010705485316328791617176589039828184751346590836542643189410940599949239272845299938836286677177628099091068049429900329202124879305403099148975142408026716875570833976470677734431337141879430810652242341333945513098949060838742216032454706551317917558446273985360526856362833956710041292165499699130253140849308220347757909135146821784057646218264504713660237930763775838051378528785766740683221109406338073679835100997239277408364435109028014976214185349840507506622051780972648305108475632848427261077985742719874040195319525574054093712645419009671987231178197278733317741604911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22214309840115727820276028527018696992871911669495715765507892119015318410968097482407846073039842177504537585793086096220931982968018790762666102418976358021096560142351720525637361629592766574171903909465452613948559361226208074476933342979432155899875805175178081952637129492207917541299962208404370853304684165765816474114573273559702777303341277799312215117740492318441687957141078810591414705215354746008781367248786990575684502846406730777501053869319220575665228024730028995994647589083770091436794222590864261563052664152130449512767611824132511160587974920865763599087122387081698717479613054934524480304413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23991651308868383625105955277793756922295159425943916780637152057967150917773359473881376983616783120147560908821278764888482249092552214840686684782223995303524866854774581044065135264168343117061212165274389561236866388921600930555937426648963717905706121070517795240074070884944280296517899648874968007839922925564291938519899372175725427044288510375478168496773923379361310986761845378876571389877701215971615525160852199554368809197046712628101090336858965744566440988311232561527037200642430917068666123588493639500464179767828945974914921403938866323793806635342646434075656566604018831901638049384206143849203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21127335957244475643299068938208115526867166499561513749650377095879273218198733868195079732490604772328714558587964755404307563522854081699187913827870585275565723816543137087376122471182187174649873230007725524717071591735707684638607665385405563659677615878539849357998938170425760037000906823568556537690334640396633872757633226083231321081276278642301461065423851755498337544081303194116951774050528914481364982491127849965648290774941082844090739559386493563684889826800041686628668473259666080457730535036263602515911701494182265865935936650460582125983831181149599078360260058355717859372472621833368213515233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22379907584203212854293853168834346006154038398806724299094062729704218242761064731427164651237767406336503512338551643784349297315586272042663279137595448274490559895539185435293184586273894289124568554447305891016529131818514754230081107419892884235884674474751611481395693235264044677626103494397889313246452016901385723577700259300225084397447830786209746755133099186091974658923186728243877772748373869997214328306409589853529253924232155182599384928044826900871816839551315818710723813276689619534593277130242783194059521452590091793512023933596081158360435605107616477823424902543873860057005470211221086360703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30693164250156102987696597504165824640855474049153289451617056816594857350096232660833019657175596630290435357824141341631747956588683397031917373140505129439434553826944067649670353092071987721661135779787588720614276736400582258530732624616258157065419147904457526059250654311687359511276804144612366085249523203671720442745443189718617645419810428488937425439312816618674263142375725371953234357429704927858497022350097213655935659090098123288873943080942509178791031549428895752976357329498538388462400624021315602134658881366479180011187448268229197285820983031460408830262612298662885293929416995459133857957377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20388249401019312588526340136535298107378929183787329165589900272040223730666526539827201992797652810962524600611793727564873523763455323116476953494709415793117313483671300124388448313131421518729855482585518376888995867525714535228466140761869667387781708025779039680781913387045505011422917179279971017436879252172327315025515003298646132202324917681049822223683284034556470499599635024027148865826184968543429074626793813263096690814661939279766864390942554763012146706916199033944361333114778034761501330232998452256120471723734201185815118080605571721287497207134845245279770363939615883721475498150152789687707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29566142652545768714958277840985092383417503431367611685323618258176511981934830995156517131095097342163091809457302556946321826060179703576928838883260434835366467209090303008211012707726311847814816562490656623312792750474473680227576383855444303035884227979279287210040893734813325341199965174229832497418761768381936811961376583558804551533608831880149031166527417792467558399907670937085692556766070485953245981943652054212988003615686492582076724283422869368471087508647539999277448072949019331296806037013671099203663619424151846459662641521830204033720197424975958084159138396826618192688132565295403542767789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22075484048235772003676501243136846258711334721234365750003482581162222646248205886442198505860324469029876091234923698628277961152529455970927283105669125387646708692116503213936506634872695379284671163790363113288880286683319893617618479777581806696743224907674051748983913665204531101629112703850423036030080356276880507705445366783041828862729726757942873594467411266680956101824934904643959841187464164374175401510722664022225581070385655507979974399806022868159410024108038114697160417068449448741803884889948321635636676049429425247419583678858165400638000506739939438738170016515132919765326034898705207213869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28446088177819783810349449440493710658882496629678159432453555455287619887545216699072965555905050660398313961214692582815803427744725697271740751566979841519356942809644508549505080377260341071371673386406896336601457933151310813536873509555221863323308775290888324893374967844484945904629188620250730425535669784578794706007570798484240667225590094956356319883930734375238196863575249895783119255952224488490611877054648768305096102260828251317669553822908071256929216369654917797192490655302869188128025252346846597167771837223157806892894032695881529741115951991913137934447732509768973400580742363203171128156141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27688143966040069441468316342967543134194089267015560428550396488377765438733821394380935605235560269739579034445782656380784837230459378962269734727199125052480330408296387613634196503987756124794240398279463995156327446256077269025335854077918751623474884989992837774032985875361298989117794909322747254673517821648973255441570887294465548613333317126492468793347767762147066845875940082778980462967045833198724256093097789235501919448711546336623088334045086307283828905751945869939344600537070124771266444768924728792299361011329875923297919203399978623262438444659376107597903246212021104261654725344807629934087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26727013702024685333178615240205347174822553132074648967514673878292951837981431361809777594482240245235228467896117216772039116836260908389883760797823593726688278800835375059928062871863562983863990916954641386610190162763788185655073725580553380614236151343135612196528814277322108442046383868011667506796043283799322652430964223371115108588370810052132333605360845209385414713309568225068836837638131177720835085917662227332263705137815808818711537755150950945657379463740478671539015429622121731779690959097212679599965916515342590107418945224709799830697466354322593604453424563576308537666306513353221935299563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25718822709711601073939020073654078430046391927903244258173708206168645395701271759351839640073506569231849063549747383911286953310020628145499844938227060199364405941156677482008163182170582354326692836595074014311650323237499867522242148766977329877141991076165420920325967774047212505159501050370413053297172897751819463631424673983985663103300651338362907735125790325169527828052200474664975502067931629729451393015043818396964259562093205808534670133219964045145770666327087167287458997328590693565653340519686501739917933991041629112606081918747629494220484245448620428527147926745574845954542648647598524372963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27843126669853383918326553056082610065391722296731317840214677038643004065465409815646401778534238101652353128985913943855313970120008845091188846978601185113345153735543086758238714087929235577712183402992567960425136676859315007774089990788366516795054940312581640009582277577963863966629021256345158041589171501645903381515385978597758066112079400979669419168875424160233484045709305713591754331860754716099454846878565885792256192915441992704087383838883536997519444260489211827928393048281573288155386844966136377799489242761489089574950750174636624767851517666627767439985233807900387189590205379391633109745193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19848782129044458734185518025417705169017138017640479792522016116678219160755115754392488689601983363531376659124636368238634886231312536676373225338049556472512454232800614990555216316526382291611734848596819716619560599872854600555774091580924656712884958926153254892142273712312557277345151303820497765573724091375764940615160118660726766553074697000170659577175714743808304797781931534207235550490820989338561927605329031648279397513084048529253349946691348201877863720713364028846779368855571537655237319492262492700826220923153712465992579956934869448728107594549480464797330432083154763678149590360072021644533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26036419425829182009206506009435168554164706827799021580815890194309538998981563658696489610711794698024392390857049704590016547247058078937454255313837340755099163326963773341163700493140988738018717205283487732668670578223897324665923179462627333449580897911650894394437256273663567607182840026882879652366843393245335082176654446994469465734617348299595786737886851239995340458791584901695371140395278460265146249955706279873951982956965680748251151018003442733557935792865351284777219618107382248655724527991010154986540089178901068688630314294059131644060098376820632413227004338835848228531833718757007226275651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20828800036503268611213355365726871242060897672509956496639862929838896765611901025510026679130926770170111547541534301935533386837683087074049409186600275132872505074905776372691877816605197972372278723082872265583464192083608833925096911306618673447685585020168782993513354348905968575513666120530441031903222538315199913244892639472194245323482049983303633467039513818388060109965895139415288870702110102857270391376113986001235092817445670112828968449759213032118629924299987564442066016417814891342302100698770322344175386321301363648759360697385812204275410226072425864634545594981270823829820119274337833981987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29035653398726466480831756594025659769622859481483037220005362377988076175661734582258208875332997845258415148943286734951521989271171449375046089155252420969463025982040490255054418315382851791202485534131589926328161568353214304326614693107596654791372674191325240857907664742539772135686303516018705742323242890472248415720121088798756685366722011376061172118811383800833482283746920038902506076212375831912694444101193926058654114266780703977955454110221528426400319287195343401727851431739658601963029089727513531270042041889363879999316534082405786233177406058152741855687784068570953156530718132245528088520151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28039818165318061573667916567416641587576700555681749174843109649085882071028773114316621087195354913892749503028045958242384130023651014623269480603853920031848953410582327442161208347112285887140620884055886272740992641179223518948282065515948424691876937417030851630566267108547835084544256736860956309385126906458420509707080951600887179210173305668212755174888115319389647373497396359637887449473210647888889922617791822003156479320215612458226911274489722600111042774601221549904281640164755603399807683779116563813533645288683852536190489076773819273472063513618150432777459998315681055749929070963762766889827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27124408256894682814111086550982681570525932319990811347053476034479851793674763341801028117634497440899972285593924458715955945106403762583334495691554302314394171134067737631630065525370325837251792937516484485201306818998385490952964359555174406018492928958700681603676171413141735108247973927377244049681160183003674380750547813610531967380543149911031326754487748625942700548076726159548687185656218530392064627866874779835282854687005836415474405719997709307694418012405252150672052835062151086992588191697471508350259901125207196786120425601842952658495554630862386301320071020776632706365732910424478785792417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24549750458242407573380286904004533394497279264744706178003567771597017675723367632715795343414395588991691533648475503225895002312487906073478071239253992020706865275839828323907730518790185530185981904734882855627562481407903659976671834523045710435288577004433540820931036093456179353880675103024391866994234615269654255983475749283596273548071072285545522587107219204164091398099744456603708053995694889813666422972021710905451183422746359026818346121819442118553375255502043963405592778980262290467113529860547990390021919026872742451729748997850224263142060937365754042243868992374820016177128492206250343655799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23472534878804603553856367755773154431779572101514312691685763574651905993865521387643547161553614006074746053222566666379177768187198414870977098803951787405003214778612903657956908552913128055587394435123243554090820549635126057459823440871792030322489388758415980636333297954084686685752604978201341421766464407477643069207891712301119830910912109029324490344804592179996389671095859765265807989236052413810216629242379745316157429775170723492003126799893908816195854361655834806347869358231040877061479052868653494241358160599577694788485253095511185564742263253294558471335296723270961915116414982845365105904121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23170004811453742307828590833263664565495058909788373513672039536928625063829736233088822085228370650389033823755921616163096338912359609466915061733916048917203048474760705674137218827803597364886150126202060588749516707706350251790265183923650666379130288769632063716832747173247075438704812295019013940808625607606449546349246133768617588644444342823513501987349293452847803460118739984626190045628251840018729509760375771583749239608477693457786424134885404641047884113003307080897764762079677643287138022796786589055706341339254955070050194150262492582732541921667711587709483642860356333830471783358006488919881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26395600595001207757150676371145077001213876638651401986591263355636415363372465226567474692741998364252225182522934195876977094671357457775868641746034899646054058807251046569332945153855154461184752699286821909531879996524912766324217245425361184567175011372542433524822689010311098889857790813788093440285385078590033483638238067302046166230180595586471206848498099053775514165033846572049278079887831189319351591706403205295931294543867104807659331067331116945292916850848234048913863630712496817271213363028418410189522416806237270253833031273929185248649882731647228280529577379456705666803465976491317022855011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24485932477734052492999436411088315465182434974377792814808309519067102940406225986368000993732357702650083503395475928580854458056227632484804994598680653660870735369877109938098914252785218511940478125209663714254148859395491484593851817653216275882736650126405803594422126014775282120414287682231109769592577427077653728572925011977732921006608773000297524967630776234847964192960183246628989988039466322706409441085547574693064385176749482560933461465979728489131646255424640038677476986704540111308546006005351021999616725983084745570385804376738354986436768963982059592242324692804845670220810614287000498134091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20947202858101815829347489806639659381349151687302868221658827810414356522973949970364050637416911916579815006707841411526892362407751838977495613199956974413189285858137023445911575707234435187853880444861292662798490460175930127816706978569320381900091889930515826552816939204606554229425197148780904231614048530908961777843210323927841051243426543252534603644778394057871010006221152235658444154102138700540544855650109668638826057426815234327023711622552622269165448829941134288807010411747143338641017192042550365310122309275199183708800222087027584620145785510178297098895789688959792836244791446275570656182759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19439188225713486630959001228743038407154170103102898409219618084305505985939003788706693849842252038063393521400139174136839500933489758836647286648850231046707027216666460433193576305081656852000127435982041250005421860203989167870025412615727918762027074576241347520578272679754315791414969604544915134236163169669211093930902016599763711179897195245387514566456050043485194935187235210088947525427478291379594289368362273058066789452012533383969959601742299187123668864025284620395289499651447886467052510819585375448232314637585172453323784469280766770883247289283892307734698720482095727221272649258412644360099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21057541763860916650875075947059265172597219359060584064731688737616757569322445313050482024199350531677269008326896019234809308018544882068826503804202704061892455743535309711452372519346736845297697755357110636894725020754877310522031067116566245294522561059116063271830493384685660905707292083830586665657153289512056497680983166313104460838863828774445427320135938838365087606171691669975871861624390019270264650417006899287249995179640623488558940110175264987784328901043292633841006990978778806438337063212885828251799514558963070993318550584962988958536467592718500752480887368624780783728470032617726130603339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24502462916527482463478587126695657311282490214746712109688150984264862226840580326668420144958059867362134593676359015477039516176711995228808077221580078207796871286853077176714387247548519978748742057343315130940948017664086467653744807942702940444876701491266215395427448097349260525661323249613080338785288182666252349819711499962543381585356419241976414034094168843368169432057535470079896748363764813589058442207509592670137381419174160928614165131464866240521250598020404202052346582522151754321108652712819935542808648643365801930038973302720826863760812837612129281653386859931423720077596442508020086043007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23892954626452962406919401500723306032978505733793120795438226434521733275163165963870776441143490923053124541837652177614322812608303019109095040684040791137611160451324633332345311656074557407581650604828706901105139278737505464093310010935792477881667665402054319743809254794334216619278269451175785079133387634673670482783350789868544272717359932615913551046548356346793476424751366246032813047727065666264137399729678728405838633186771176493488016100201700976209537585282198968808867774184590915955446454834715087062808119481446313550342836198416963740684939003765127144971712846045899219687891631323127675445819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26587518163786789149483371545157997424959897841972665896224775504284735137389678163735182811833663963483655645172826514806469973369947373863210724811025087164784468731743167789256466096841460223583072418460174439439071644374252345960494482559983901768074360218520989365128211657467727795225412008289207973729590768522288364530062264276988575085319539820316591044958952857653182332772244451774773689254596236136054078967211377128873076598505225625173253958309509786463278540160904207920544203905873241811921065065332574468913152870771293467062351332855255994947613048103122892598464869518845310252202960025972895137001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24098119841362509470390216818457662877423716629424472763268196589080949996976935171656738627239829483033633145819178137664273318482466103506406485290499380858433127291810318391748987164550157781397721277893940360763307578267379297851536459413559545402196946539608084601085959514889660219529902242406672218963842750464796180670379173048530102443707349495567727200673461825043853783645059849271818496627673692609783045912533815069607719234096942422216912156117483793380255165370763473936769797005484211069168330058640695771927966576217694290283256957957831374156367631895926229985906421934161570551714461202633183887233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24007051351948362772634256182314021034386632925031133296828316259263135096934713139026273725616609737821837869700989628937968050896701704457651386523309048606183685262164354935545533008809046191828918621574286136525803249413153314648933609188195552961395775711940490211328231080021987176304941420719187853070967468570525226253624489853976931802936292552543510560705278048893908552579702756352750460538515171957754061507081099784152933863779387625796487613613610197888226204921922845600175355542766432973147113188792952445701848047217157264046971846564843320392600579623933347010387226832317312449350628310206664162667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20611975754994178005983162241901558780865307348815983474957280721633864947670816531069222066072805700901936555710738255325663671001076895133208965321491257618453766421022957039024530191166254870480340345815567671312082220445773396251291979814635629017888521540884448237834610813921250489865648352019151940943781421591553712112100687309411536712237977476595707705535590851214078070563964213789892991385105779007792465386361505071438460562966927328150047500033251702820623141405521446504676782388220107797517760768346215262385347722996985127659877716183791942109169000253998048846367822400367268405946755004841510765523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28835496243374597999641690235942269791247742438154921788210374128027656862386385491267619375593414758066616992396079283849019837214787450025358195508089426751268350820242041801373520491761769474158908980675882690794639479334942697474906539896347564549072229218852532481284864843117678801231337382897088492710306875928479544432966765795460676672729161663232905050982915893014878535650590850981271895823776737986275484781111650113959429871263115763230639829113930224257691216269926429968672797431385477935869609629299485930425393432529983331042439991677761352645646146358922130451086444091030617581043568063586872896893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23764067947073326749296804785435781052601789657761405519126401414278101044798867491150486532569971581359727900519162921069753799219369705343968935392277626304245104438998184997981022091083831903597145120479201324604958129013543104494688857505320716502304960406864641346324715970404147168985426972197411385206004233292085344917117866877245542076191886953246295731631148996626722688718875774923168015833423790589330536242743530368623273362238126743281760013018513252476458255788468579616964486702975751932525839745897839206338669735077886608597693604413579536602081853966679780722556197965162938236507651127893369092081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23437816893687349913523449371962767277983971682305558302040891018348331553935677417940259689697795037985290453030346777870496147554009642615252249400333258864474238323169886958006187542322287805399260214067915348324008343189507478027195127453714652638674762663042029189448982080315625711761906620718473283905783011862067708793166150300450337173593964248942220424846960269398538565098748650098916312799810582975487558014720461504479936793595452690861032214165057292949708388465484550784422102875887121368746289275456211430810745167330402194847308301378787810264418447822016831912729624277322564546594690927377729940051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27016750396343604785214243258584681196869667230486875928001402082952854299376417455050619107869193551811029770994186291757122096610913498365566121330797018834169158329213114614719505487901537981013211992628676946204892281754181913127520619349859199697371677805177620138010097930418995879983562335969046666942772312390307430956917557526805370711937383170554387403661226450450680757597312563547617775844346514476595153381608495250918621208426080114543979812437361918268514682001794837899409007313415225926979778727852435722842158914337853425339765056842119812250732268939044738416269363005756159453328188180682748505571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25734028690549633143292518053869307112056299658361025019314036809100362906107475497239799250409943989240047522135253865712611573084568535220885010062411413779237687025275259352917621090709533574150375435104906126842911264808821344576750628843637043749453799448718066089087683216748938876925503621792339484674598337620237360699505757591614497990097543626376320628850708088786176821952751869130756391901963278105815875605515741615367615498823148044280777744301311673168127532055828013060403324541047073464821085670110096026786267627670677880935326209481071391142897399590781971098491645367021594768521943620564073819497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29938008553095084404179294452885304527440153405059075423752161172523650292581345069134353277164101715617426654333524926447896066152435547774540961661992835295977578151176387495557785846400867546346603501767210861883513511054176959405368611497166203661431082930197732207535224979429442924564386799381620061928628338149146680317936203020141556929182211558134639467459713516742806162372597501370186626542642796683268156151190438011661565942765620903409919004243184674282787755861742374596953210890345412453917900216220231678604785282150053120520354301192865806876939907876752263483231955886202361784383413292654430027459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20475126795215149117397072523248549993429706146343700006887167665570600847105541153804970055134064718483958184965719852354166273132424859888276307636749952009100699782098263029806101453840406136231453095300717458575426331346696941628722671828311507094547255361108703575994850014336960249737880958745115599833768924524212205318010881027704600967637120444762072606727375005959065600912848017410970495310099926019187164878490533862935930783053535357437945469761481625942907043519277761966978487675183134862697617069233314427559297786406310957489155594647281986144476079270298790046904349243044677342185621119320785025031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30644557898509144460268488775873864697222999669852389267646261912589070919435929845584292500288477293752589955558561540228473017665777668421878247445678965370138923753316938533123726212017030575564795060312239247083720373212650342899001149799199185869968861774621599425763501507943188351526463758669167602790296033078782931393357876722031720484964476357874735309896783043598483276174740737200909222109891734455053807202275503431835986660081502597958007025179074657092514017042120446707308860279031383999284061634682855242706153538373754550005713217125524668905466540092917460242712866078744922852303735920062012818607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24445873810032630563102761626531702613411960555245158681201060461583129054383745415622265704467186988503225150174991414732147612751482274897109200793340910306242360165649351908360400610192932579113922754857490223149092894469808576301018641998554673909701245638147762233029917375415343390706647627992129715392302899243609830708813602135279508533707580655197779743069269037026162065761868026916570726984257053495642786940024237545885767534907614799069472330048813159526605783698888458135914288514313399962183001738686837567528066989423170208222718419450656376005760386974046076615808963438885865511089532100511161006449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21111453572110819880189629080955441454645473629277319165978947094159565572716381164848084054224618726383692883751291559740746310318809563759349357297599699742178310416608278190828782099758462829599486565284527477045875038203941773921008961645117546346692919483225266726710001392938660279331933362581363949276910451514803388170918220484589463924982157270340834496345844251384300767504753687984330364984985312091121863822898425296084406016636564809552913753764159285485961523123835529017283359926263444021873750976374913875480872076376412896091983903823901821163718908212395040792105358446006027532623637198569337221757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28129424471375174328090970287442394223701887581861926984948444029629384292373274061084308042669734922300532266901344109570446489188211821399817812584542950703634793687066660791408631711311303120820806266081587223207826391089709379677299716657199197430163816180980773438296213896093061470548864160335087977185327236973248158087934291562186690496507179020064051781717667940584365857520400305231901347813244749405790286729460543646432103534542156323668481648022534295951415028022516720981917579372863870014962937693606639341059206772090951494271706424048255886663968482849107341481096472426517356997089299137411517017627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23738659342823232576090235445463642217749273614036498859675291785939505005850850115225386474787551912576761685671456108216894888511184562623198032649537497499396240263502111817789832156135999134686464346647638053071995032273220792173728039821441465615058212690374380404196689240507712356222823386012006449805365317466223969430164298712625866113999802610873120585557202501490195671134816300513160108560011066817072963551604095562892312593823789734060534564734260506130925893238582430246793300783652886924331081423355065342868060288006309169036625692556227801922387909409107316318244879289110919594431346306452536477367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20943633708888149704358526821797105960516279443190018796571066378095887360543569696592193326083502520539040073647407655471047541206194548629961092309234016511106584195328912483617418422203788520072969294229703842007633780371933704877595738708762797520355123404454320134647744695067675710608291378244086983616458802604537735050096073163896051572088878731134650788437400474730304743187847050201145803111281661335581766904530045057094916999512515050972614247984960145841946928374572586125565740279224266305211799968290537551275172467452643540929479325967789566899624400975140435366672585834546714831997758810215537148323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24905791934581956893158365728201396395888081199188536496362120006362205210594604384102283098367777307303769207940101111392249947352334803274920189972750948848568774804116755892718816617389545360841317404043937191649335211500851319001850340588917449796537088599342217179866483656779824345386311692289894036144027272009178572559311262891102043900728887058587233396113712364724649093188128734525540991042000644152804666839882394181359191357742852856967897818219068240945749973442657570201290296461816899113782212615266824444143141843879161475045622084695722576588125342551668065315829746638968568127388947715016267177129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25411254639862272569940453325127441576903960925599716448928225151639154200228651301686364965581616229169704968082795847891601792274090904130861655904323796617852322909937785308124495104539713667279148355037710241160473297120802619784012400157234222530288429490019596244957740987549542581835930117016672087192919640475958349551792478742339119090569275822169897394203856534535412362535900021777304888267753571494855534376796071322016135183818846618562383591736762000288749453413872422294042161279886973962716170869608486699390716754241089540290317974991599373528004135724952289775974818918955041275844487380828429196441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18566961817278366553462252417040194044610452298397993189686634295261073485765471538166469417424431160811218090222463709021107328406223933895349976960949184919346998142358018330981712350749539249306688458080913892973696224599751120899289732950406665989366983767353771816815989675907046559264157354654935046538706839601905601453336800552325324581380244332316723373072750869333881109963052710630785787161340142374847061213423555089094090638066210062961243371799500970937362615985706493769526083146328061001835554544609358242432290984563392049155879083930703508268898653206039903820784046045852219107161476252629622701859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20110874436177358405137656134089008491694625834925083897062158004496957443412139311579990962586110174647936282601009930041725444139135985637446521588535375269194372062675444058254977258071733070955423152617164193673814439529205510181895348493153842533112816767774591543686867132714080362817345818462057980665804143534518034845420894546878573126241004325918093212011239600797896812004052534244672825580017852845774594300099944069157551295173357954380566511679065543905780976834914953931237719007694391525287400287033714234116799910246343415311872551095102655883361652572226491248569931541531335545758659807584957991167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20675055267953439091593569847090185746785917866639589511332102743010302519397260192659967077512675915113913682406445336972998035567749845387723033222526579946011441385336622451020458128433820768878777471223286001066091722551671164772961926358342967576226327236662831446324995859304087560740970538484349426864863830784604770878825598743339009174615842274472847545780204654689718628477844126547260895994175593342763314268547045012821866508505659657421310360091029748868111371203472456694757489917106309103006974400450087652710321550162621013075670152366702916728508936704535602045506160377911014977416813903371457625901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24753395034608414668784501019875125225911470766462483590512892478911970062833476509295978592622602804875217361004449069816982994167140864125573884957342742887013510021929820804591830543478514624523740917345278091688950965195601089222073948689573737257961057490932721404097548399074246019034453286298083663375520875940010104496133739834781475187666519255187568729986338108542908256255424088128625668767839392991459246977718712299320679497669481274232126851462665433495691310767588012426738541831690262348971022679998893370956076133355834120485535331880429688447294998904938879894075157425800487487751160577589270906151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21853043076824717925188487342080327271758197490404272294375965679809733799517667547089616819192877015623049138709045486135640774939599202649304513693656337095353674328883410101783079439418491142595989002382592194063083583330921824716456435524583476285035450634848359320393157946479840100495282036233846932008552844473136654781122106065184145151310967952100441322150255132965975439630408840199462048832249448566278131875727154147318973211329638919401001138040325336560480280629070746795357292488152153807782207871417140583068434403497385491442840858061488026810129121174715496277502442333429728231215787658936157640103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25759537126023859455834234955901219046745548786067515288655650408327300550134754405486259289062206880410433840028164156301887552718530108788112295142666331565340253281429649202819897462548800669213107010907447428449330989421088360305678302671773466352278989127160591087104174451200575266334218545561753484331875575564063962151529020481880848363518124025975694093287648270547944724512672510991411802843951044531484986042051635445543670279854874988770003870872760029402060840450460093958586880225762580647637899064226780127949830792048467607008279443110609505524302357234324120799297283043910253535876356713324391222547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22724274423823694769915319946178654084328698852674712414890489870931085187485800513364270670401917764131488785355411116992374982000169386512188824034588018047513381226891331763464435909263340100050313095896170453974506779220399005250122779240641703713838446630997944995560697063944211569531715853918933569864320566884535277556182837844365692699279891085329159777515027477343532349727538309116536495791083657866869705329005496633543289150695370054614883902848154376102494338424797818497834410372269367300797211239298598584753185915596223717381699805660436566464203808259731603326785921520412542484151629425959486671217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19541621921886965264287865238224876815513566464444797541776136514099466571542171221844008636888803882784854398825249326691980062839975867983121239534703394506550775372090143202395944989131781856046794715122371723348367500577837465240635736659351260709563795436613622600801179183506994841273976046316225790888183805871260769808369008313869469575881314049583005718710625557674096990894965290039747806783994585356926302047241498340753288329325019032508585637858142643634414457518993825400504737431406766570271534141774869618714040735704285930525603032945557271134051256062673407191315814483459585287192033843048618106779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25016542776558721067928351729196499658445278666054322810518202825148139958017999351177384078071947053341436143595664287465101885990387875806038251570453508810648129002606366768501408590247469517351413315395980134939676519421678076796335765898180458286453475406518858886374925264352366303947547555366196855656716194702411648616707113131780095694941144025575517693791974013633065550087048396342459232063291065076388107583852416932321145631132696405551719360203051349313650907388659276215451583977093949309199027366589653299064735868807422903930376473503259790480432813479868936116666541955459134856795504380437376382997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21666825144261082896060376969525302900337107552344119753639354848380544217790276878770205874290046730026829403685781910411065454445130601477701661981305623904838144467699160898556806024192998954314441771895919250390136813436211326009713127288858239472083709252895376916853343632978338366234885788598523169433423605199051472144419386568996866450848147343913238218576324216643427895772613663030858618690725841891395186731931608302303597780093859023313210426943220783575884958749738735928902944646909395704746133969280576391727651968471150277166682800294402200480090165835429706009392224224669459277033202552288460210017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26042371356014157232224824411480628881992904498936223700496211420388583095775711207153497070951259589268020763064740225004162873274392906912465873740141250434813303913745039301737095280898694411124596527462713443111072142322225611600305811623260790829864133213294631838044804535406859387145824517797175604085422374670196173533749257617632929741834494429272540537008565692331807294341605167202661956607598645288895205579285039268398947551805714166171498154954332033802633963490161190858224725347180104335451432352040128305676677725786416391314611250273665349190134928337245710833758993263148380090601334690305149088783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23989559169474815381816485815195573730132000212782357650335046206287498800598345615044566425546576686799886560953838161905476101657167804987872688952308680684254055666167645830274385527557386334353573681983472779391962893450849277621357046450246233253970424926827814849992906161280190458690913247457483134220476793518971997037989071503977203713920318521317717812412485440316927254830433762281918611572552540392465063767586579956807786516903181084366441622507149616820558458041063158375955206971937074123610569418176067874467729816088477877210643682444738917109877371763758891063288190683757688335233951452563074667689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29399497341360063215311492056167054303933850270097101912471786926568177432585676909359165460269535756960793015106223229151220736464678210696235745696775894861525467027733917838092175099487645603724757133692288658790573036439124756480351404068675077998118550297976457868357402340711152069956792346600698181674710407514197468424693197795211442501952256177366728418817672794160576305426265765794230825247098598751396619114433758566027909299052634604555837340099751031125292940479688895096459429709771431193793698421454814519330289958271424971712690623864067494287617268453336397255443047572578076462373135287382504344523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23349944574555011332275612248301054204118544602016822724536401303887853079724064562015806984204425758160546252656281550564356174003450258184664411964367360318432453639243618819468272344327979010644331493603867095562884453152046230867501890465309303416183672353845215103364854183040765337394842572138581150896632822574674121530325876449389297541918937889526171321953725624823719178119754054671357102643282121398502974055740015463599894888008735317028308177897252480990700631060869068529360810900082651766859087533793862184451173199171567220049393316269759615130793446981467800399906082490176612926339479893486938372533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25494797754213093916653797596059557682080381111555161777393360325069426664046878095113222516237747938478353654551658868644881883301529281114458610641520487430370069063625216473181274228097552881915470043806607839932988539217295758431947884718509517719298561015773753836235577770384399212567404951530596699723820331862731070926811919595135282328424729862056088643694948606095374558390109275391973510678946518922473100829394649237086894492059215587809748651791048237853518394273768319263094336925277003621784484883782507641609743523921846032405724083893206125611694973501397307118940014603834248379778882982917529649223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29384245588552200271775960997137720408511399988629071752784296366026102850433553624829729873862382537419223976119677788704926880252562199568180735060514300150302611220024362068753634911137797083109760244471374894223521200703918451184063899820840453273202299976145644456743709356450706809937927199851891035329929851694942028609036073136689159801813892655481367663820791899960308217423053218160867881912183187492333866371636275604222836190733243476732199038826227373465140983341103746486795032964892180037206498964320976919207556915079126877863856559427450088319112681614265063871443601753090723821381064095680025132339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25707544344816256940820236303111667086413013196269258315892913524499579117379315834459212618605902406032943135367068284702552424286735986042312585147547616720698059921794238290469975425268107580262890055500970390142073318537363634608516175098116261297507316948537080734056203315301037720785027207858397596991661505847463821290831118796284421648751259367915307204749454464846313613525162974607027985686748853270826373909496016483468161780411202105318494343051158002190435169289504037591860953122001583643443103648281922424142093271853448143240291823963725279063864900089473100976343095464754957398513513078655537705553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22676684035777629395580042707581135559337241346487364873471786052707478337392174669193343454213696337672597794048240967489813961528665557094976543102366269293842724371900052517885393388355244546788842378550527820798584622646650733138115273360466631682841036821500307655715448863789307710260234506686703934675000964874738182301362490575282613082344468323209420483605701357509832168915150353479633541838469422520467707727192268923783680307026096838366185451538191861652777716933563409666902586845306739834513232835662476665792571736481269364347287919396915511214106041628552498161356120130154757938318820671527906878563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25326599033115411307391408832185036315532371793306548222264210760815984081858212251333271429259771542962837599554010872841951443730485974949770454463274802595139929453184815620865500650156040409620208533105245262116057397160128792926910085916920252215642923421879291313090217606586204717930368459956175939441004002114016495221423416132131883402489218530672336218140750153212944970574778181423652886039782080603274772671493044772434533183981449444954519098036301598511112713447260455140927058252325178292445389311233767981912353349647955620892240065642357071350944712009110689888997777051792801672235306781642316502633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21713430466960185993314678159452867889971760439711810171129822474945633015638720275810731551558041351584733520200925320920412610031882072031958334839046465086862628568730774412312308868640184772065164707505737702308076039209977840995078635359838308781710548805869569432994036714509216410895956891618128146355831686453504367663234820800895135627271900429730381491908678004035042424167391725945916551915792004344310371359344297443739681326465142234354883174981771593452102821379248961485434838464589289859656482301233976177144716250645429533851310226731122875463949629047266166141394194849008569343223687532108030540899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29519865147732687392294832391619120728283482354052142768816783328123646976683986960231397824929778148164872742271706494060608952197664653739439003257348089429534371892913885132727818077258253793217954113046526761524286729192318051142571877113596960349772650650534895698074314382340179002983726290191126375696493145811878368083343033443402546990130797189512074867516694270411250084576581625857754453695787435517048424955766736966365838876010645826807541161349916960774610609224631252827547551559020327959515586313806350815573031242280521097101028088453427992733773891081180525964712757030612623290447362442824309674529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25845864771250409328717584632478230186880687374735578011937051678680693566834054880128821664288090679706847783952204259601648506557759836725769423504251253062173016793171575260603546723933917405389972359343866524122752209411401100254030651130825190682267500327414851184927188406434344454397042101561314027709399204357790682049684508919686571426770912152015005853085165259895819174026263060022061168854820861839550484464995900962918876608285276039401152002507324322612820341035273720964486466753087039462374216294929928220685414629209528288578333237601645472145563346934812467589839949942312601112125474507832139063997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18746988129772722491816460893529580113914591612649064366397294419779377093269389245482960393419030389301827723907131963141133145417233822927215575944526333341373155157114847877091364709546566344651178165516164398050740772651409927110463661115504289565098498881536552298548812042668304870414815784187228121332261843707566963961920931887275975125014751287033930886855428183849781190912469460976668431943488371962166917643470533523994633557032691823011965158284570106787044395148860114468934548624183697897452888755143462891660933531316663442883037091080291362751578724640993180595399062946061220566262442213331380922383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28652397246246304701220698704416095441530982317033588611368200902513112696910724955938354302129481471754205071017186044743849242477602454494887124748047719660844045601988585346126016179358879632101050488688357207606003784146017516818397611956689356688104880049073741327440557944663522402099113407614562357686650482081672054438396373489729812546102058823391744014463823021707062510718271034364221076116398691637669373314866360842208738881972383396783246540780066949763680869695870389302023239445632387553422679107919508236527534674502334083073590509234290871734054020267201044379491239657463089452911856441124186255503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20881419749866210734565707051550281036111475476711403660206102381859003580013053969696699584602773373121986336284740847408126423598249973053559261194792139620982443886257922265816617648362544688566420064870405598890423162584827429368261019280035812690174849713030263456117516155074694862205655242587686425086772488902577511054918681151385871500602305785348218870220865598933218700793733186744166032022438003481751726150652030833661743375238336078843543272700648120361977930793230869021088196383392736165856753679341367055651239861590438754911466476460312997963955914828200672386174744330473569554918094229414481359797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25676742419499685313863959474030694653019135828302577795771505970883306501806806138732046825756507154740966385018534395102827661868696138184333809676390726993518725479915168969487447094077247364871516691177648777559875772127834331824031003719065978334462042694204548823168439134060191789627083185054127110024196994338763971571283520579760240392452486591533277710112809846346436235149586508593581443101570312118819948832591246107559227052263853520701537523354246050376523891304277299002433219954552779384347480445981997232277816993644327127381753406583511676322942500845180173499937556327750128877944469051889336231601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19267456950102742485199867467675675749173749015607466469686311979035999325846359144348167196098378602348761550822501979869460776112112060738803691245041948875382020867466681205130286658866522539694106220202755487644049339784958107438094662921611737565976047613298647534393294585466962635886630373496160332031102769301103679485171472915490060699257744081405270019017535500143574243703969784550397684758083363200649890169882264876197051945418773995187559818921726218444065569573082864661824976593953617636388715168056593539903369932405059852292277785650972939563246472852037820301781603017317013821466729843347069708887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22838093302525727057555237638156862895000294206998642717277127396036977235299630496223918602716587965807636663966339034919124510265684340803309160747819005417431944059180489095995998727116751503051791440040659202476857611338203081740773285715972988166644356103371484988302182628241935312993633820827187750865715680434709767952482738183797344047784862549260053412342983962960127654497755151598617142417999308736331750972326495430620252364451431206043972271031491769025955075944278818309499051592613077060695258574890810551851759838933333481867568561442338200026786452215354015889947158107195176568668901495850289072039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26865962809327594466774932796338745080913287414095039411503039919586385728800219824826950810326561939699029884267322449861318358154813638312193318871957094002268653275277439564493661869993209206686336721374865452303772453359307594064989983106682666527161751577524299012952709179526117145674780863054907398890460936133208266811520338871370294175890912415636543172778692215126058008192018364515975451883268899665288086693840087481526505662840912402657733620501741529069460822568047376765334271121279986085803523544167770403271544833758582353326732362030117561790285300439456364255949743278312940107301571276501308390373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24547772763824937053763382075912036392895309393020280121299429303718530832303563551160707390499796892333759534263915533128981128994127844161866805311594187076001336606268189393960134742750991569573186505991998049227640307526878256295826914745779151597513288434625134898907092128969435760946745130592406183968615681054060523671353464579381871368140023373211427534631184994770770360436376558754592599748758147318106247918826022711911162281979133118525678962304830899845323234171362898668484632751936522726201698903373924003233220477439642362267524761799055997020133009017227907500396774806621088470856995216789877219963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22992166241697429990713657568227645613845180685261578667225175316378524088337529545446364087814136371574502847022345160995475230343928553481603217666684365656379456724544069181810134827156749835936608946589423735757826563233923549546244811807323560676929184342915062058328698731723068541542139908658785447022516847360576556719349094817501302002625821090919053323549244749501032518424328470577184075492317432409798286100444655506206105916162522234219433603138238401425236769532604412374557889730759969826418658506191279129017250277710403753725748309915730234340354559483126079249327048678682827442977804187714708759223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29672007242464620721476780053178826384171752506094817337500053011440867901181418262497699441618276196991660688820169801452816818669365823919233374235361928529077617923161768361074171694493420883828628107235189503931832548963989257008988411337380124228521401122925114355510197144254426908367769035091887868988478457142453144564739279621596581766603530968287592587818141906891137033666918996207109554112056589448758002171366197216447045535727490232478764539752822139314030992783053048969610735067206716309586585842748365789432315571707739094826476770923473509855575403324971596653778602637473393485838912750427747757699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28718803476804544662886499641734909076934124341630432681502136203747455637486401911513352216655909559153880345780925924636798557162841027594066215086514259932330090342040681324483393915790195224815337198095032188034993574151996908207814375733028623861738985550208583372822211705829542301220306128921339161242052846826956156121675943997172721450054899354123331842065450168094640666491735255407284176712955238201108538583471057298048202293264066727413362129521573052672175524634463736917764559016898028971641361732816537306650877954068005624434550904372165471731160540293154371466192969760709501891639881759208855326973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22796740523205810467552980982962788209987563243971886345336767397191975453758262512255025133467010085650866278768707453313062322444914767635456411105836067335212272751351773457611954063479432217065854357088176113084671421677938892005572941631364475928500393259692408395996643603875076769369513091570237322226707159648449650213332260227935564599486951588482201775663677632401232283986728688252870274662518803921285581459595083745391721050319132923649515527904451724260372281492031334095116777910104319995025248184689190393925829036970472243721273821239531284468653707607644239211837933568322402461194901600853465450187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24604020100390794507195664827268533424468657225323762320580554626166616400687394454458947243717709292769722430009008119631753545638663050793799506472941468348198438427625379269941305359049851812231905423774083795039468092966693224026841103425377498523383069636779220044305875694237099123826695310361274673834124927959093564552268388848780333462670138430608620374583002698709978380322643853454614102015876762215573311197878612415994418900417910790257562383810805834597118478028436352315347983257741225402503819257179589723920142208610890211236613715554785758401678500213226936171693892541648100859701148815872065242751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25696544652573590107077410606260199462701010544285777948732892837021860934697697116974438630863302234156247610458990024451808436971297232332374803265894231230576517161019426352133590108681605709793657430295254418823670435197636961963597921366440752597567175167328805865865088602438148446806594280551273814958989402359065390400938662221967850690194052198561623349472583125423172139368479966699507864660589464085529162922989264921900080874663708094012590696757157458291252410495560020407630998095272417808480819122538884940840372363792598077805076068672434776591834641847005437178323144894760100954519841981599939873949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23146581945350932880273735862833924815861183722258587926236069310599865456342759998339649529130074398706011622159281984134372124832532894936328572166311077416787752409655210118486404714381901339559931813823742893534967138150668424877611598181878884730189048580817913190804118048851187863238930163774948137189277325273360650821043535278159535013640569103089406489904023220324182996825462263243678117350315159409280229242589833525870894346958262976267773920642444206678672184585308141745788093586859981806951067374421189260577491781869862683211510128593361958043617919393991456592892507404867020552770599765565443020387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29719784789861804025419945960567925043673332136197532949862263359136721256281977732201405894034684839032655961737302857266344360099330936584792533035562525692339913837158075644698568517256741935994059469211223300950948463170036317124025490107197508304005330309447729761298603593908517823167943773230677651810517006880687912041358514025447213858934733160867640507330272090052239468257918719689677253073542739022818402233804695700714430608702323417163672937081294214914691523775657465659118668772023828571132185114154798545367659759426858160912203511804345822730006860807046068028259599841114929268886738878108462700061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24203992547613951047659257945803076110793651151083363559749944308528264824757722785674530883403525019608218705604700361091248912908258145593635693866151201860373907066041747742332211403952308982348959617380297418472571645647441249468064042089211251272647767443126909173415619190979936510523322314329844518466852195931990006776186523601572732940794157440524024173294054105977776106363331610629503499441284324540082811690142088916237759190535835140505026683446079787474249514166899699049087790103882633102450622921515618150379878716356751682055475319081522315613532027717736155195149610605950403117830604792002815923011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28104129238841075070946982271384669978810560016371438863654914417406717040701869934110116562672654349188055311810335880814626295344007536638654602274603114609599974987484402888747708028704491352212251657644113145914753922423548504029193278161873911066515460698233033986759971857328561609943830419593790301675949294098547041282480876431756137120816338358435598916099693401376531235661090360467877429121451836752722936920512619364194204820525494729207252985838982628282998795914467602823959532632382972293328901871192802090231631338997534818491437308888457903975612514091324690059283924092684909816796019075855199473543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22890541465207973299248217829526831477736929133423005202690233977247618742380880638125945690273654191116766381788317566292003977264070129118077325570651768651887854939291251012309779888185179241040215559276942250135862598374878084799396354990160839139872925238681208258881824515272053145685020597966950655828807451345227116714044537124341823617970067257643733297181320972527355411798160912679417178882653371791009803235773866484305077904746293672571163259376372055282305257887872273610741013447204519932229820209268994573018382017032795657829455470707226761751297101641311827921477267463701653137153422159647220033111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23214224842500718544364831281285386505728734304939654344316467635037128272095097528492746894741850837412785534062915010111826173152416345919003504418992953083753421685928211883930245893063452133039822175275683978416226640816826091580138665679798747418958025244905628850330332943504670044699028231847740014708755068397506943917932876330749342837832355252852912616014448567011129211810199732063387359026197984708361941523799904275903756201883043610273393655553296785435452755013086364625379031086443248006162896897476769869544596823159848213101622729110291235465950077378735637743616442610155219888028674658726773227103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29988159314620027666048948066838343847892979725462956525322748043333962903839124426723225410982758548574891518191613850758319071412753353408280204860265098141996297460485098532419114259272163712671736202085670425842694818741977740752690757906387803497789503187613235779527436464863230155611544768083686589496797322545049892828740136395239855292891989682190286375928433820256464887103971666117644900890269134971325492030498604622731351977191218457577887742783108646905188850184273450661885453993387307407439473102593128173112526311514294887263393542276335678580010413688283146368641867644261098664767538209645546447787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26756623335274065356910294447131634600825329303046624812833969103663678527947924951900813979168018189221021834176553766279827005723839719988293476480437834775106001392608148236418142189102222343444902839012671883392741307545319126691468659369021728501578378999302591191342857314600251355035093909868860058168454382231739811154408131430422995418466069760607257998922649153805556879107884554579443421150132206590881020673274072179497388805654060497527900810615721815563371800037799370479391966951106347861873538331855959086333859010968845184751680777674447724615704684912713566520427071402923410897696916541617580370027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25522854410465494574265273856766893934598226526699592711605435918721147062984024165095993319739302231423039283302382500619569274868407512700672583601206254478803122309228535600681971656216839082071450120273330110743458192174592357534349773168503222259003017254999547923285201860830081628024277109531426977497406891055325483923225376281755500495078307864548307611789557791064409353918566129932928782027101905361607079539997672809312186057268349096230719905114095351704282699144445652825742718843170804680252384858118596969947089112774331490191642678219194354044528958423677997883229550992625194359711698900524548195019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23724986258815074811622153333133600750545515836045284488898132482875827107299878160176500662541238225297036440834056546484727375808939750771221821311700093630448386194841894704560358649838150753214820020339717114985727418732270558943091875205782268311368649015087178462751634472532486078048325231762230634557480092274009199393593930424590379188628128230772822387919211349281954674387999679948324473112679412491346987742042110245583795109263403476469244718107464233707966992680832370805523373717986063297255522396063588949550519960784677063413462396108239216116123714538350620507908389833377282104817324220790428748933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29307347429077424842367324937638276761098246368566531090157241297872390140861644526953091982694750923953030253063190510404979212569652154094675332772556932556667710044880302173833931909099900169515350127438187964752035032883747461038298001946562269550985804991401049940571681935557415877430389487731007733999486578371396384422888998241019579083753116080412409589439338179186625936734247852658120744751872567499635716183550446811684694965457447029225342936181907848226499688930380070114285905303067491294018431732695590717019279301892805395361156095839640425819091175425587391104280847277166076868942116848846062526801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30186184142265128278766705899339950361749559253175143256649551084798118037723288463772032991054943761824869191914479784912422300362353393103835897060062337478771137208095256189662350776210849866407042978531452075568916417554742877963780483174334192589208501024665952618288965610944689252343141162005996166754080286013416414512427785630768749695196417244010656866124190639264306474757938984092258608798958335092863131430962188910730609259327668235803687655950325824371967397203459647753787437496992116317202541614161434853542957276405996345815615730994433254787368811154154093535233014794610437032644844509800766623931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26038744568711521814484098602779113845993826141462271301692222894987398956039705502793821660291373574796920743643558969467238525309444818734687134665049892675633078645336448156369274790033358352854030768585953856504146007847987141814128783040533746657923941866913361340982731268755067595678535488061373771670891106425282025001359239966616370092889156125965205913626466180957972735900169766241928070746325077390623582464237296050444659207740340586884394808261543525915086808908548120955794529149366741139936193528888748355332984993100288357212488760802184046746839510632888943990987492052758589740990864830775803019169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25608825334011208288318601396118743004983885841564003439336486172424408115053675050914706278578733114290490963167999076279096571718550411647886223300667911259558219020712389407142631791258973149477477206580107693978904947427053648190097071229346028017813266123662240199549891299180725544997959561455725349607342709046786516399545031829800809292664692130641907016214762081080748028072997755155116302162529788861927724262516632114857650631577439650561186132482337879195156714869586975573596833528091904948331882168799730964796472405815865906441743809481280923741175831800464058185301976911206941821750077267232933701621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24155934784160856945071061939525405667932843533233803914101676413309499089077435014968660620252620677500525135233569108317102741481307588894391484750010339002103906739106447693160907436339384021757490560697745884251073498583410986751537740138449598858338322634801119795970621976120261020517950304153217884145510898775667952909450725162755681648972019147714080154698303926297687445125154378882546615023515028016901701982266645997856158400019376773573997741115635684431920935589230420445504500281314758528260204983130431978515419977220410608724995739679536704239455881767022125349198735093438691688506521258511357943447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24908463866740323175211005313479552522931106007493705180555536001870619635115133563453900091721851633726976668780186406140202393628132528157647291545599778098010608335026301564135502249521715806882741244569870259731050672684106569778238345608554620441902786880024853566459076864361702153397114530574053606790232078140049067572610763094665544718335272651604730314189553349726117862266808019935973128781332898280414724303393200006989803527188170609643108110903161445303161704823152937972194795212918978960672343783377221147528206845677173793838700492228358988782600624932207443002844486195344320554955387570472761776027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29336478465467829936833258496090203640622266914644590874920026115563435148446441000110398972810674337993268734006452405843917100873461369703270650810003713270217352227834067864100089458184259433946256807975920606031197686389101501497056296769632155192990629359421365449811593569393477724220862227247676940058258971068434042303401218682655958299573683791515847632922693478831124908701316379669327974322105849752823104638153261969422615348190578943742080959778339369632613855511814518752497709180370872294608143967678667298690811315266525442197140545385628956361773876164103418912047193151361799174115415074728015995063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24155137279356692055299083472283699714486748633995887795988033896668419571921018874836653458442923961058124867703536045843566727696523789670769550502745521864600843870448657253027923541114552631840590692286732436547707464866507263775284895631986776657790421500230391632689968211474279707861698785671184519659892328777558547902402674169207928183728717665146817739304466232520181449179244159847673528862038337539975308845519637347644285636346918600967638702115202337201861149124786206068923669725107378370277767803301834894085123485533683920547795672913416637805781804134460932846174840165735767740060479484347363158449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23485093680331727600807531469533277737395512682789109175902705819769778475832815073642920293017846788643728660287165193103931094961187436994590822272114318622408663346241817234349933607820565893697371650544607131088644292798405525376569140719867820937668673299537400057603915277052187283590321737754124025166965892780123645105800375481144923036510056802341988947431869825950352216117766207294318834099791963173108738519626303777235481007384010396801141512215008930449297075649122735529499109680925924421367582843234401316685922589642750842373200835508336062369008282313711429258460309560021886178004683397548123718473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26023628300524502427841991125907125721490368439840017327372529553748170234908601416203363312690959405916179497760314895914256244209880132521113555655851378781560630512057106950633561239197461578155976755913975700579509130912589756808093092452494011522473598311946884038854355577032718763914580726157756852867071090721281560516236587828062028351542927469644647822948390392438386511729324770093902657394881499624560320129762023673543533271660522041364022086007697168410106461154572105731297338072257262572599685062550074926043747635503259582092110683480175728220935315946417055598165908942947914821361404232797697096893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22595500757927251768298893311532465936199064795222948630496964487590228990222142265501542540398455297058020308016122554835563170266537072256632850990580545539952235571165681684135794429829597885519322789764512855726828624089874438877622477273616947304534191948333876166140376526216441543366405945594704123096824781816369686062116173742663791335804857833491182117495468284484088825029820390990476626842131459229813108038987334410633230078245988000304106253161022576429227460359958276635195986425410109230452956801891572867464701621329309045918812199060418646727162751684667667369659244246630710293498779421314416519653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21199780682919069885386354091604626981649388081682843943309548054813878154267984184655459469550139431241516572633787909210519558879466340949802728396650760618512295478106735296446996682970418755477048982521008477579525012624235003970600545362986697206195860172853414071299692775184255087479367484904318681340602108281130743031612718662027253994351726032366616806642657251349989966620151284715438170864359372650845535251042964950996691471531917872714511091317535676227042599144213104290527084003394735331812475851339271476397691025791158219010382299212861493605883158074471592919257924905778417117720140432863442623629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27711583602421102608815691115724298361585572928508513388339397636681153561477404766564125860019270927455682072426718757708437595631297275672214594213684492749465357644416281097345460886555991753250238396878240510651079602976973559958047412695792403138812718222841292927131085049496141523739418882132789129598689062808410248680023765444518070645621070867462006971201976308761109525428049924102892054843518674641624177291322861184811123320943684583885386211398740789597587948347132276567199904742072260271422638573772933428339817137260748878433651816879754245139263161223081622964795882338784528800443070368995740001409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21287282418804707851546556614922411387121575340335267107507615036405521740186807349849978234502087945464604458219033818752351535630348463413947970860387594502928590113914300926492212853907397668346649711610896213321379982346805230701852306786661757912708809113310826877204633800250051163798819188058659481884876062594929895883355120785563266114806851302537253752740268536580124427783176794286676416226097833959162741024148159456352894890550230063383188523607958774835465641449692094243844121082227410303625554194605222298926954887464898340303439008188808784454688992243068928343710504293709735259780726274076006299139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23821500278940830754103792810706858761707384109763715858606863126301227933077897063599839806836566011794035112845739385658257374260340194511269402776618934966963039983486574357067860677726378742806122333368737952792422857271026996460406391777869350816796035481136774318276108585676907686752956063694695584296256938678706093884080601630753525276806727005884776017533557648669907860102181674136672594440585214634231423281136298986248962724751740851433767349109418553671671291032707575804821584408268503805351024543837616300577997843499687009644477539678697505049018746840726542043004005841388111939121605886386486016621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25964239274343931524542493820178341341192842296757501210278688816319110054945077852421150002614897504066887609146410156843277171474903317951004315947593085236827866504066872967341678897606049428257294131899876888728227375833383162437333103103462671385451714101014700818201501314019078021625819152947888711813863917835801125706537504647719607733837012776503346861104572833095583467248799064840318581599400788859153417716174707024358864939321930025748239489700635309655805880283307442499617118607961990698855915947742049499117634432365603813969903032194724071477989559889579850406954688196443452813175895763878547562671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20955694243768158728649963485124057547023895971237368552654569828581220437988538838848676640046784583091237790013974718554663362964015123324132728272266560264499963171598043943937134016547980795867627430417762049380601470483889251402649347993153057631346364023786706322723120287082112441508267234062765855074802944877429106617648353989444576669948099105091152405022607418288789918094706977035325558212218603706999105926721174360547360058096067835409591688629097179176570769030042446900394766935119007337437046529981158257665074092589089720239568881836366224557115414327239909261733973123347693650700996882799993709137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27105601688520523948242215427900313711748461197505167296442719434095961141542945002830190915039091720321385134512576724324816527698875181015276548707309876601268567614959370949785025129315246391639308024398604678245408556455333045260659794594493575152010899235997662681343010072589275925497720155007653306890271399367554655570739224434644942085246090436318866406023052042553461620903179260903140389122119898749959291093674173534270797574689054034672955229160888963480357375688773575396092768575378307346977969298227696072638127025146873710415346620209862473719726827322891855498768194528532928029290726739786563863387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25436727745672057979090742851199006706445358871033932828269107992524833973258264688169777200659402283838404902345464735009147905814031688729436102868118237342023395056647346668695575142562959151481498874284395011956507933818680294422215750197138190191556546792869302473363467754466617170179240219153716097544997507509648376616042116461544234618206799415947551667418584465840712762047319758340743124234712371293483620510170575905726673267384978444145723397260995245959080332890245429898183325847638454205830269910309921148411552501710735011757470872430299838645396888951257985314752721860177588287558513435280447913529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26761420623336106299900515149928511188703428879793265578502236093090236711698850882503175149452881331214807978838529685821472020296459760858194453697128353693012506904975876429845918630334110387090141290974174115672260037480610625652010869115952285304484794347084939515578488297599920322455732713027828453049775642056524960297924825433017880754614110989148228446410935503808748858927002731577077676038638174531323217407454222767943186623279866337935331854379610629204744826417578306343805180592660981631699136982305510112065348017956168512795250493676044251584405251259969116420910000881407184529919787260907487014873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25657896218671140132729858577281233644844597124326394875966369018542559301692450031140294993736935748333541804916157694494707537308039640275857101941098583311853968453565243841368239071632608478961316420801927891480131055073691309610061427876320502973051757149266162009070760628472783707728495123144641849373338793476754555925553951571087864508800836260068202127243988760908297171463465016446651233079922373360067644436491536842325548670762299594492855363579142266237820158555600909138136300912194494307164889683432565768798916321755261535975565449458503198959882492933942506954886649528845721759686370978953046317431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21176727047858964795981207453406000060608223576816766283596412445802512554706396070980099856149915715435503320911419574982816810929395956114545896531299941023504480228742671323623934677074838888935600204059725429620527855354065832165141024262490784026525408578223967308345937540369349420579895394566302470735428122776828501014948848372249171758075069947051377251289546324575721479123482538795909769848637324254778779150702389649063517983241329917991541503333307003293069471099311444363832004966349994149341526267739016421255372470855449227295372314463230126902014603749732898902656688076316107714207383347341909948187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28832310765953135896222547717153612669603605572661074842113840176371403567248102735028218950012694272413960529732742521111974571830371766399639078799433073266654991614987097200602808605623771555776991277450626491829730555948834845394594947577031295994499260791941853701817797112846599413927615953655876198672883882967223467065894175115771384331807897240513026402370749970129493623285457818240988186202788507001355691041923552339317040491114235401239723174947966347632577847316792194562172521729947777462461028867134343895845220025614085088955571217403231408575833425311160017644017084467019671253549374667646402764531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24946971309724886998500813904295263702456612226001129514298632981646745810508939673446705369191121585670209142414837927938369809419924635292724116611211430408524475896579098387059589416310272380398333762632913165582845331228889416393012586407752138499980922613596900798093543165982575702679820081128884732351924833482800335320496666516617797940229182382566440496450925638070140258605094861571444588163484837511459372831218066416007255458768705176240630630762243134809458808512293342690061058886968310199702993410643285478041836206444852241167129639467607316536015357480864491768155631852685384629545863624790895873337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24928309923919344180124478039354641280873227165970043362288340827254590837741512625349740048373262572902183311924761878252194421396324045277306997137699087679273012601361317538132509894203661815726263411473281078215660086965633161691583942968455869781842882591559966992881332303411777363412733664760929320161849054178688677674192183433817230158773139910522777596977704068924335680706184063544848989830578983104515691883624917805696349364002398408912791748281588815340886089316838582230788945110536526014122443031209124695881560366556401537018214925129852196958912246307205407980307762836343569159454641968031099918789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24577010521731217184532211687075585181641203141267645717809894243326972791677456074344688690018630706401341845807394536210637850245408938840334756719899418342699485745654093617512270541226801223078879439840386491492973634959525744858304448403624691823370333061017726800085335119284914858883960464894768475713441754600676872204643142040309889371375675753421832845564244992893633924423376590393536503406770176325565226530499389097996851895349158923597754119641520905015947799221798656705373426164039476573969619049539052228521113254196853312907955970128979807808319852718631060804862154251031031931911863925094476537281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28241863123573623831998333124900777408357774191954476677872256151519602592765349918586230138828958398984876168086093041237718953955423559102296470655846636000145634646682724428865884031983811790246913325352202354019336942735881755992168855645327073933849541979385219313470131144377536652190837720820965975715990405465357972329380236389027593402799358210135774933507583495054049881582731599924986525768958704046517833553098058074425213936651761502410208076780063226872754611264571351114164282838810455179705341437947719227735570667767495218420414782864436626584954447506061561088639877435561053854225209394135532567573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29556878762498698678566073108362591427324086860259585807002010453174348451388220332407941676703990928293265932719885099260728295040067549392141797555710860204388431521431177293639357185216678601674767343577326652269554595510688981441390867476513962579858325662374388990475337853810567626105179135156521941770995345078755290301798588282133370436677984121099141823170161305327801779465147702306588956239865601569695948730736826559193180202549156936101806323202656375769584476543544359689962932969937742917785488916796993787163499628166193010946678671175855114169538844387617751425324281204807913622396480340095854724753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29843263762206783180033249952250516684252534180296135082321372024427642397143951371997562264327716715282629567038053921246135447621068505635825350592262614213048763887813964137888742844604264106829947456560796334708034446857950131277718173633157082204675310781322714503629020245923679186774998957126542385921299903563839988337542571438134957190844049577337523807203019538123841299439588416201511998790654907320291900007098840101559374128123526702321428920171895030568456031666914224057274074507257618930810637440145269095427759208895980333665753188343460363308757899973680502308107064508934999992066458497758917719137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23957475526823674021481319458632155655958223488468341955973764011160991539328509207845707350212044506348340497527658502029257730972762726071891408847760823060337655769432378149984696506464898214994727206922438471320280222141839522245797609146106774173887919343096136720245472571946342187314989141800243778956193127412139086299745614233085683376604828579585604651501465048746006491754379711394795709351334020994754884807669114971224926423346074425975225868987610220845463740433524523386218953539120888714890854266920314438483734740797169516719099057079242419210833499255955781313226819293398037194814568014867334702997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21840959130089009383597210062722831205860324969846253906729384206704737750057608996358847556962768985467313456386443070157786699281622078162994254972304137057122571528439894098037808351998398638200522103753786181384740464043895448503764141223591116175668449861139202997218093148647683174913296587722927582947522794365295087763315541429729299153115829130618046132341048403533153758749389482683105734380998830033310969081542666517179521048352296367518831983358174771908312843680972443932194629365961730256023317073752825841360038814961153624176106281910880272460500242006498209152804708141683624773787273873362774542809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19697666200540607825676556465472394591095810993215626780185517279771354669625557746541752861271886146679675946665492061166017404395616420483884023077480710864788865190939594016099677927972094646486296605821370575076716750444728297844010022614139157543145216079687726885958291705694430515040488570632289583249117877186090810421891516158784711782839933487244861044207159295617308534051790185203553638730979322642527807243852312602890640512667975760423858973984663818203309309173225603903699074588177187967795264075694305317908220890347298969820166882727599007945312972020613040568462752893173526462307394843628203937529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28662562277272112036322024712058018588504752309208742309894538584372012482665438175178820784887755588375921349897637157613355608958338699717504245775195284932318714791603636961422218425457957570937682287935264631419287394218946070527586419650203613528374960004502450807879833651210192686294726871458205241493735414975424622168449713975557629843345155467461154540138105302403904486152308392993387720726332206173471428200238001814106329453923648493752253712423231952867027029907992708198795476787917646110502312183069801078959619489714499509490949420375950379510209802146593377782055875536495619546698148888223169581803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19548450470374484767262698286277513781246145792060052790054888534761520685922094849314772123991178452252646935540009474716530593247498341105699148903499022438932337987766640488313658096549559635709246687023481369312923401879589750699222764475634089454308891321562069177141234854248701202760842159761751002533478528309628457951269799989079902737972685422753175178854132908367997505524379783292012084760512161237117469462436579351072682296192498738805029704495436642251783145439461099120469081913132096259587337955937103780668288111139792275582779054150066658411182890736708209349371859091607763697984434063007093835129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23816317792392006045975422057968589517085653783980799639542104662714914662815551650246257713568561169197944422531924689063926673913276171102381580321925041072947925361417500144670705976735305119622291307969241025293003666296554565216777250374642851527446720365029599578256626590746092836862305607504076748291037225680272448848294542980644834058853753186143387182355429786024441953732562145940375058227381921289381049344256437923002502422545967562700852042720997601274107769681048758720592833119286288755297386610304608597357626774431990985471884307777684816934782425420319694751432621399791057605626071994745166509119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24177881473662078628818072412470166837931657934017119974619570445519029849825634753842492496855355115191733912320936136703425315420824409913981813619067798767813158715377653920786955471472975990362577825937264854928712770643108143145225084150577305277536964088301662957495317449889201237989225921792910166112312157655740512495664997780739538447921947827892824111892366992593665194643949142771306169280786332631690817210036868084741846587432752434543419901566466936092470824520475401993229086597727112278713388631746378223378740956399096530524875769656793280997491098002171464195620935795253711522248675319615747555577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26151758385893314412999357898751724039174556004512272633809487843136059977528403337757947073785754765350949018438306698161726215691217417854103691938500606219707689800399341993671187593964127961916804549666923720420579578259737746482026718980583924884747461948790288419660496370535418101099207601977657580919150019310432883294023719611224531666192486230430902950011586802574434250444438102690367638009050472822506317925355229481378709736979115739040950255816562005918436458998911253557570905865126871737636195886183562542487851494353738505339585526440687405929873500339527930125967359709549983993041008779054126638399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27006129411290815017138385082991166396207346919607912931009250749368670570434894950500202941372142679532937365323623038597834969676086322692272213779203178120777299243754598673342073941382161918464042891280620875060763533206912838807784168227900000978987979705582316087508840798214086939400991957048794748442858914510507471659479078809292000418821340955091446663351978246575830834584973819806473853154421203918521514786136516044848632083940619292910721085287559536442013609017305993830633219487373800997133208346569107383317866139272686966533673597531568640157778668369587291808794517122559399584195995994424664755617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25390203843945985747801341016444076142825921967132330998178360443600469571391368194453665649900245867412132231284681331129683927168768910055162193832751971921164943433788280299078855180183022440585843108548627811500772922205564470069716276205395339181607646802807422087864502438279292959506776315751289685170603227403614935100495454895219763531489901416170403755695936061183516447082390552337405896921089655353258323754333226710501612997313314949593434209577680989327959798069435873129086839288026909345441757860091706667477771480290775685039847720684418995379154517576348600690923697615839164120500696240434006221679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25817719465560498050495945967600684282891673666285031102442314864947651452136626352106181613162033232182973062573437486781763770808689429523267506318999832605972234967172012689638235439743046079195470332533594059197511913849015056960385287799146151297514768833459921540370978509180657681316611722873672612806740790063653801385998336106005625833548371941995953572082702042019509502242728588938142730277524227727778964565926064277935280463118525036314277500934716021386462678046715196346830258721720835104691335619924825583859889613441160200452551278115165468392618577437918566310119303250560186151056024520674940430861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29230333920174991383911700606602603678645412474464022948242445457628486286209354431724910537515676215898211867222274318242722264090756027311655933650440127250964121472310433809559677861900545113822154082385876288844069809553353323788877982417132762035050370886166723739358326607131927297203626511151067313924365360539656469330723721680208159929931487266088946193232688904317138301998899066996532794525606964021024944221451209693144361934510133704971593200292202993995070998186613298537899526222063859265301707091634417904618579762469606834029562509446374045556378228448558716059450870358329211595904735012321328168621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21680081484749255954634701079743563143057349141945407096347730246433073225437024088735926768330679286253653397773301532742178003379928610084758228759260476451469275377785876610731037996876881262514827537966428645806971317087204188296806537235154872380468008845121447261157410604293383080169627630224524109943449169687499724277575673092929397803095161139960950088766533848816276526649310186861245648997518116209367796147548615813593271644265449952839902432298201564515823053482718755939979679137284652666706807508126659454111493225653566370693885123715399250459246219828984017321802742601179473915937200879775757215703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22135856695040485182263040135579442221933405117990000835208903851374730341827634508418225504640508627384175020846268443311027970165260343179212328312131815500426893039550395890714660692177238253408241880820396693619756356180140109999339655036803431475026137259351310106048850641380871500404313950388326875707801558005474527571035808831986751249606389306906013974282888439156651108621093530132693943501051238511641464602555071021779733628734970145927958076340745337076983713765594328510375749280171332994895463684066535836547240809824233531164509574889586159786552324245676012037576959031962213317540372450771599679043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24006944172538802639642194307616371905981547204036522221737147084855428867299290515089759913819316611220076608251896768603336909625092718337400220922221306080478753801083849383766908708595592340875100038161470460005776727092593957986431069832852079874215698021294943796963079438924138882587500158873033275154117861656702431583923668900127820136803907323892833662179558596507435135732020830879519636896979285191231521414934335114950405689765982711115985734167187664519030317602298271351352975223540349586928717637059433891024867024432408249366282711896723968596925760386823794839078705454182731909949831191875706954927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28790973447215865647712246336842659773825653965004797011672277500378670951284330129259747806462622456517222650050132482960540337653238059845328918936664573555367582584709908209795333898082421210512009461548047941605245163962063762929055255871913225712620701691776111331648075243188422225127099518374203113869003481508155436500535201112874064438399504807949783027769625665830823896324267089424676159112448130025794452613386950965503928934419891212634285887403621804219613297004576858841009222968707209040920585551009350691995049688019737273931962971777594382778288502473305379362947688506075982047039550540782557840527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22997280008853034628251295339198169649858574651752910099046439311315388793252341736644294741410490062055380131774917142073609941189943187590703090335951698304878158733589486320846507574339281325945559271970153475197524252507409081414760567636622176545143204043380762298402335955242596095521571936833507252298156458577448950259307094386225192651465509025631419956971749840138281333034103190855395297195686234107504075940626028411818169851067059114341343168817088696281183061496054555123555027241940643067779932106287636912500427279607780531438917143531123664971419814112981698966340996488190370987899700968258866145797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23410390303682662327958384832213841753185627044403430470962526380948885795532553466005882214641862057048607404244208937005492449989690490263402076242425478287290490491271469609004867356191152044840662626880778748106362501715940198004474078727221770152964166453860772994252638017252864189030095055706119590800406108890537532959172586470177470389190246535410695891311476479038648049468481220313637939889585044102283269826301508608437833632190622516159945556334998870659009367293006587040770651073514094203470141833852881589843200923507058536091761665261083224898096465729941993946350355833692845662250425360882447014173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27303595924429425846322104787443058440712652564755102033708595602447363967973403266762001849467155910385016048444226182941017658406366227486491313133562170476180730039588786622818931176330139983411914675169434419643611848706298783140830519317352223465993934913033412304493389294505633525763213486586714125655171839183941356836802507575399123951581453921732178138068496230045249647382231507901524846224564652923972314521196376290683704166383952416114226582379793930262139154466497232911488088698949158515499638261693682249352786404292184231189180548803581218821833751753856552378779702958903371667223929412956268871313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22599733751612215104918308617119974170855274220625560607396641538851379544878214511761546644389993059629826110610508876129402497835371825342236734123289709628448627520958957541810376128453670927205758665835391634656454845076207782998209738620038370935979927803239449145799944997459901837812525705377318888890897060872965741517849934804832906650401566122599336796133776476819213022456853886577498691652395498297113678013842305781816475532204417190460087820491717984527429263882168772055810378332788471756400378106219522633072745438493499239416120194397092952933561830307343406939615172678347938799711100722694332411289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26819871041111908122627818322737291379869012924352918134682871014020775574886484657835281232164882947898625280413315124020315122716686506655148664286364562356028321725358779206824522993608932437435305263982530798458920700774898435171726006662931310291391990822838600686544493459962423582063108186667443768011372459515536615574396173421375538537257933224519392941952346806872694582758151481068887368924837214197588237359444843492480797455915046501929448652906332668845795232560485717486758841765465544131322302945500343409080370606437926070516032692622072760757443376494209247371469552774826251111194265544052493739619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23385861306428823984843284754717034278087012148715287259520812595143380484031249961475410331186564367965117843228832863496952344351697657629995071051798080737984977211914690768899223441778428653125342074204347287601059185047748991796065931048807496469048539145418823038664508072979067652627941594335584882416522760264236813137294920924243875148173940357122099751017255765619043124477093658682399207780770291255537451121254552145972969998110506915387842242363539081009188298912159934334919622910603203527750138983246830001530883780436758776465612938634246536398739999965999761195532391530758568865889901028064256885739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23354434255352437065012966387320424321142454781951104627479290721112144528188750480228905642571358876868335452232472131418038965380267301945511833986110081307561955491966442690266093266900768533903784716095606197089618192107663314098065208035481778655122050735026459092103427213698433969434783080636096613122589652704033238622854514783688893967626208600414063838861641919713261426129940632475993341475662240651034454187996500908517452554785338077674602097839775626995085558094662914018552907499190728581426384464339331456725885271768016440314960839557062645722386898876972036283917648605637473693450292739468059442797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23515381312284810886398173007103086300030275056749452771574783125150079831791155267210232292802736067530561924275680050746578440474991285282506045266846430892528841449777241460792791399930130168478586853234589201936454596270591045166123673597306141600078171955936968760526735985427372708048793949751044291464423090183855561847993468321739614672363382508643952840630626941741800631671728929374012287375486533910828178926513914935352864244692280385726802849146012055948452677083724644026402623940942629545454923138425301874272264508601402498581019253923581954136917333578718679414384976500122368947358076724429429591263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23760286652274276001182555515772732110154725805109363400268966900079790563530264707170688773452212852938833187731637766039957760502855682771571609247465366996118992238041317122293743546242353208001242407479365654364822624832823909514021515754114699805945765121021282038134545105371711346124565954301816296009520522250447926060766165606124769882824559981007842760365145213076592462806713579913599303975265278796704122980318119782332232195053590308539296132808661693615611483472434988683071363846657095558653750018012372988006104289542971176159410050990175047444276028923950583795701324959290262273629150002728430647393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21147496926791665965275591632914029643722290630994942045656967672596283477493742580018275068027877329828379654109018847646064125056444763291747208070033490463088057516922679947387754533371330562341280755016938407090219306539645594907709462827309653083968858333365188152141473172788316125616803547654614184687825436032352732735173960194567045170330286607910652055352034850255240861220826205335596494522515494160292378246617843933127476847432292185194238841041417317953117953662747340101716733185674411966994262926146738138434841690248120678594919186205026970950016026747986020631121353423041565151118971524197082705247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27265730406139083059503156091650243783353134690567938445784193681377625313582983239713061972346196894468790337527708509154950476884559149931862565620291013226027857480739806455881156730643774130930761725726423202123869690165719549339768742184822153235184007708009956916387089191339966540050217236565450045872333390708969467942577942405679996384060979327921299622497236455486811074460120224228786555792971643605640468672792809157563143685703542647758669969627451527388354210083909013484343418622798103763491977836753564685766327088968478789309951878641356995490524288265985975836112220085752930573024797434161817587441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "32025607629908845044542910016795993457153840374596899567646583778869782724827379953390881317069933411812110273195647882166082082097100812279342444393180994186949364031797264129300342924140230709883384204151280788655058212292812438133715521915795119133828752304352765706947980590849280161710645487134509425204573508739556875840628037105072970062141900168086917135728764794918591125416519146400837131644304968758951230827654614486979929233574047876125793668939059914849868625354911910200551187103012161938673356056374550310222714187696874942880973054856194521171063572742151881229253825490120790173076798184499097134827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24430719674806679951436811931905436191129478080541890044389422008365847763298066284428132774072120114660146465792802701213820772161000308388556496923718855489344515362316170250791859196837797015244895044149574986425078050496696690093249029996470907723722795618005919133138982851247771971038911884680935676298712026626309732901038392113604330862586142993624033150753250289014171718934316487492678847127366975116281568796164960183495446021855440890291887046386234025627661911515348538046692318976534031027462186198826844625789078672134768854688476582018761222999064839295009685267925740140895616001942197500827191093097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21636963212758478822158983059686401749535012377922394275597970579600014746849824221075893515057816715598688880851204643955748177972289597089581642117811796322463481385566671245208290571808392414773510742965363424737807716209372894372065920152211584499956702452177618149220719208622122467082066655393548815676060115630166230328782202165598351984707371472456090552584509270354083361523856866797386611397735563836306455735375999991401567965024263204813102253415951086214798380153494676628235353824115059475213645041613090546161950597631598023237793605477756004716785429079796115701470973690378692464024053215259136660161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23798237793637041785500386038143198752302332310380897756209646159103499378692492776737994398468751300697531468354943211782807927791694023627158111371039186847555305511329371895706113831434681663988312657636516509629490431101518704206429777034251482706666404822613876562520739244497723949691887671059782014743968558081948959756688034184132222822823580150459905148006051984634390630057255875218483371023112046438422035957724036822700565766913042254389257514884140802180858586136699294831408872346894917015535941870592652090315640349892905277943279509685060661703689794287026586198438558208803813593571893784488255747911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24889509637782133552462785339051683979099706645514113435636366162923512772647903560868177833476195198994581427338048398458614650221494674070499162690806317808674125109570922341863683170337374748982305520838826198174047125787934701687182365851572999150447363801737263396857856556683787353671542757010993217437705871821611784910706345225002980694614046441112962488364661452436228346252659620117804039569504024071582919333686627161950495100253073332315314087676885295662313884998630732231920453512714148677268991510897228482945895980922100567443711735882047366610208104523542921924384994272966563223940988380679783679251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26388027056091739638306437071958192052398685868630531432654083499088577731614492863129361969367246108999489251519933252466920334546560961712190759809230602697409041165566423929300838763770471935113373304151190009294800687218969899118387753622949405578396902609260977599754335903378500134931624937142050055434917970391577084779204170409804415498246070840216566709708713044031013892766612349119466601298240519116316676821956123653254732311530205437439660878959116628723434913464093938453828581552460649879747933900668662793616961474746811093184635730784803691596242957295227782830812278714661850292608970333845522777553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21277777490730081830880562588324941029426444240782290052918688858255293687898095714882692280180390324558069049641294176286376149714172458119059793776300305351115223860921832044417976057607888715764095319710188417009227899021168684714986558251509497456488616688277739425449441317824742691442180353636621721513939357511014519196724928417887421740793538247640483695510051622705552604790611870081237106063515701446869059772210938957205720441820876254983070160792425816760795653124284488213268171351010676800858285671428384896425444338421855100484423894129528191526894935835283048824070162935883799626388345701087117708453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24019560722729845419840005085186096078198539372230592641835756797760952193741857253964437769483911103522144743502542849845721195765761597775733032052860463657265588686917277910836151440372499832892718200894386132381195912078616594338428379767693041697098831095226717416592355495183332701516907557898533352551093589661150539468451792584029887861922303328913001378006363559662623357959047586936981612201469404073742474077920032920947174460831803646273129620466960708889415566164568070007525968976944412365054331429892742186154281392973773795283301328498466876977361362881957228016438199324786935401561271938976828428829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25303960711084415602941162757479137767632625191250707014719203644358240921967302195242940947490072104599369533082663048715963733708791591865588953746354535568563081755555217356179646806775369773429111342987005517320064303379790379955502996720935523611965607058478609073272463605226387270014033848395491749702933484769570479395862842992832188347448085776796135826680890668897063038361710756892646019818061012635867494052740804596672690585080155968767647009002908163797358386876539409110444704145305211915240228478621793979576483213986883908732532708193285049395587036749557334347193346581558261183711438203051510879517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31061747363820107191608687754267605380043627977979268028676790939778913893169746028710272559517687423483950527042377974932821093026280389936601326753100266537048458097371827798329522175368952052550431693320500091593540245763111922168339450215319347253403754831469215505717578198574715693988239307584175647143971717753619114523181160488079243429994891852821705023384086809118789083389777838391554122752644949935009808374633487497118011306966538256027696817117267735575268736300078732661475280639625034513542798943800708010391407434256715719442960788968960422944173077790460456030033399634620103558441676377422341580943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27704442317086289597354494323013788802473566801446295851292033391628133196541518691296986543160935157770410827332762993324817297489183238876240690728915802647067562871857242520333333025138055464690083871429864070461402342862997442752084394434541174400265590432797405195268330151556989765255189149192745194369695975730579361193356427366734380627072946582202822454146196026044087134459351809409917884517624983325356688809468875961344424293400260103008798541231102451649420800228331303647975524253791600826507707735564360102983527686621821851922621431231643739160966040976693207715773126136219096491935781780246324246071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28483522157832380160471818523524035236893967762529371047648633594259933810686778052340159915403558402678921542872807116206430592285716251647017834648062896275074798813543326631513040398998994425145306902338063289965781602920091859639563460046206979187592917242044181370845639060478702859653615574486141447887460218078026120680112429899325048430857402819083755724592428786364227915591689063694311627277420302099177483889427724143486338997194742075828950471581238941140927948427462253283233075487051336026161726399472051831632387973567962829457815782153700354327522379138551910782456553135322074663153792012802071349259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28167283384448693887765790073179342300209891079063151739166613352115995397724914752048560778956146689522973495735165131566768391590169349665211635793373692525190442735601347627524798565231198483824895701726311242238824665198579403739939073415715645891268146924868368809156889511213807119118262858694430165662063341400485045094089808170688436012275146202527085865691623374714578750029034264063936399729378956214625535057310273156801754023054736506804859739082329668016439166612238626119562379221182848088474293181356694496323029545587762844467596039405788929711423537016678911468173529855494659523981507851523484896023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20635621446612226836439621033604673318404191657549496343612653485287774345969595821176798933906639047226719530908170369999546235167533880405561364328136624818235828230956119085889939512501822698678800545416801710991884208016273792309935983007453256479000130347576477265001144123486634296614789428721626689565386938593767004782154371927356279745215375395797515521176831685940197084268612459767897395282711493207449378909701133654420555361282318857344107873137968987139184955058360585019156053290008068322063352990871421373317814409619917162585153893286521355428994461122182067099500627804030320060215419192804959627539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30906890592744959676178596933792435674865703554616993710976441439479356497192766275780070597150989451515203267851615844572524949208252617911170010773947061396492568940282364010364404842674214144111039558636904804863036395092328582048216822285588062470928735824025902734365385843628007210598133684549535437982716225471317307511336140564618496369382405941308896149089386703066075197717221456592102257817517333602807631888490835931716510599936714014868940608135330431181268452261702773788658166351121694106708164194796067207623668153259763208599783340265783487326697983117487917253491595499206112778745108842703768375071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22048112325990165300659897963302106785366724718443340163873704217510717617108002509032929580522490519455193345064601732686637545684647087817328435075549957631463431484554473726742430668997307747968833819434646348158614391216465801134483632740196723979958213646935492810698652526066807750116064186053283141674924005636438280943967294838341257589305325888881027493049362478821891281052715897590327558250508008602934725091101414867182567877757401821713694800396594959261614540390898996657896888677667397101417399467184396404329357969834136817290355637977171355186575424283198880764193273681923402163152905715212153711173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25055123012147981800526548990487197461280632538615632365699337969658509661470982584183359250326176942253985857536521576749298025377068345352278970067811162870841903179156572746635252864386200791523859871423044726564226174097353655606361042986974086883102574082416210497708423287932114673748372254911445551122980899004570568111174427548342432004168139877551269124523481740282561269743321143394498116652872934174675345521659212071539748369770163728678378067288431128135080279068697387893532242772542798656917424476257171047921008573419418822312859450750475182322622741842665478278468149417612255557324616105618297893627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22740605765280697992836491574057312489588592383335598642643566301412128389615614357803308853176135141075211585692854670929566016193900997011512266461893382504428283684050295241912782817247301607160373958455484936321972900475937760769775292280455944868439244186525283556855432323682930940629702222394463859906027441722644108924822141337600403048149558229316132751486465316337355954256659770014808875407307349068573551784790287200132997574880776405870337179801737350657119392483767839752506541833103678565819850375255992848365180073651433382026403512278623701537826322634221171545308878265155247779143609851465824875431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29666660868216306595192629712405149635245688349527820592425057784352030664824404488879805343204944553836261702647110015416058860117594277734247545585541846857908364155580399926321035371462019212699352763486339900040531231360220235759382660631953082298298945226227639855993254900266545634369245411292862340830363830677086121127644276271897932665614864874829988047144742089774804748489675571010482266806698619744915509770870843911252222644350759459259805535251389981788422165278305545205692350721928789610132590855329278652471175880858669671495892921738754813275626942922343686743809816542829543412436932272369874940499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27352194655785605600183578990108310136316912472213866218647711628132758034619161238477555868032788380673109772478478813869389902117580126457719310688353264907957528803134168320158338384864498388537851889802490142535486952766090077103561161298090197987917319948093037071241223894292177769002817642998821406389956226688815969066480829701939193158857983501678039157335504388654729428106767726234275834252365425082862936921856245812555127761338235263143756858183608593791564417352682916920684889847501690735532096820669613299671158824069905408495393033218891229717448593355034259035181159517821183931137686652300993156109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21436685865515166288397324717250220112770537336686513861477229954918749971486402835199461005260082999760275467624014835584442951045899467315458147880367688068972978212405831659403540102113343890193551313303939755322235431791609648979889481018881260076479941893997529461162401261089363526301445139414631408589588580832726413035713808540870292261676758909549086652890378513374429893466811051852335842634901354209688027886286662015003548704830055573740350559333006078365298537582172536792012283176920627849168071237999422726426903671084751456251660639393717636979914880183214619222821555109156638504017247405749179286633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23896501611858225133198647989499086465470818962736349432746767979964512965178238424746944160257464346049552806615970465096207128308605566425801712656940215921709489035474399073470729640541087510200125193340527487868173517642534050814925903290413340280246809820122946953623049855746301938589452443886150080853069383039709341563739873466664946372401304154000744720352392638197988300861175192981960712105632169832798251868278480820194059267756181384627399751472758873748977693832094159214526213136517126308790115835951816510777707462068141834490770764642382793396530809382687557103926344342255665973381578733053843600811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22339202593542433237918057883830507068768523018766162419203319142864126627547731240363704789813526699337805738439236444209016756087453062796923487240307919503932507358702117676399799348214715595396574276423200595828074153376830100187792541155600255211015653023257544100026273224231530381890710965865190040615661824836712026602776598394028325438662911442763304987909095292923513237581951602561797866866608339279013174851015260787153025984120752244419955524920661395469819413749182066503671292549907446729862207565965360950310071697864749497006490456604009325222029631826205106519349630666765357217936825499850946031149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27539840510029125475284191183255888682907079296741986985548634770051853462222076417695606502751002747282034762989884681447692160837446666770982218435391003964472697069153435544309375206676843652986338316363541845116614441879438334234056141430227999933262585815463568478337101112732395129276441454454211744498578654987809126379414050688519941475436920938193024419758686137722138070912534298964613377211664085859845614988283053900365629667829686183349727190299320177805178374797973129992714029966610958578749670152425478964524656423851413565637428135421052763885410625851252617221315180426250379760287888564788811559941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24757418112466119732756381665249261381046311981509827671182465499448638994744542791191844215790929527619728173276946895538611486170087514080877215483696087860583946632109871895782974901448862091997572958041613347799354355739289509155807425324351608028119821735013467877679353089319523719583877277708847709903199950628194887173442829964930452954092821818432239768965854394769725721468820358219602028936407850281929250925657986017795781988815171975609171643745724614749466327423008378727164343332962206971977850270615711520330628635128544422211651628732586106804781558557294576014538465104983893523138094630958827695947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30369960879970220210883989813542693011437311344153195637988549341214336272143925155457302107689149177157741581353050027335943228480408384990742833693394614405746108592964259446122825933336468579431721434728613455781486819042850052691274646738301323139039591711795442438708751613328749154169852835928560610861646704620498323405122990429834702099272774099482014466510346823935185893142969039788561849523012577587602539654695877440225474838180162008572886349820900214914744056684751587642578122233114232022608623682919129255867717887659322660178766631223370835031220150157603971803367314018725147275428528569484950741861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28713225160697698917931643851326785024001653120917659874867232600797227013772415340283335326645753887052416823851544093698931774071823039191361930767742505134830601357369451516323234606994492095746589085545393064571768440718569813082357260367720037547292894427313214360999146588517404515635689890589780801104562051538121968644565264682115984364718282115086847162089881678077959208859482919137587909468724329097327648603096052719774277140347478391730835131644115031486383196530748455133331141387051985962690331542901632452389056654826568107549731195808716038966423028417765163384499849733292745415746585437935238281779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21041744738762842710561264354541690096948702371039355781545676050370706286578242364841212313634996893806524673263311790328583458058662420184698191890894288489043458008649546123569747773454422689312246974973261457387363889793951582901403486844550469707099021483907203489594325758283562614890168062321306387358807290242999024891196542355984674088902237698186396557274643620493172619835514494888880581430763877492191694146239268735880711866411126439260091453926758181869057513717211627533886580450195259264350708217772001259609782969289412447363488658742562036895293040545576857129469137887413099614232975995254350898371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25972616869631179175975124893898093455164831097227628915149156972525338108406488022878904379081145721358257991145515905134655200746654780736939197191783363265309541101274749761649212153106548043742616449625538207807113319978685855549218554239023108043010968259169400744653856803286241219872746309546954373884816392705316688311929781714872993002860399646160755587943275581041370733416394644200591633974404905673455039455255616553486916561397877458566541329740820505212595615502817566109880840274811054084047301525208303165457217673581056249784561925267790784232709754237300022264377552458231468715439632653944884153921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23221338184903325650247865360316970817359424708177269974756749053474100512166576114195379602483854863723843668189689153947766847218747677435576201810568101801528680540059739003983514157460800922467757357134083880479923682905516388403634296735881824574899801629430853366484164956462941264637688333072157206221163665492517491039440536429524024755539774206476274327814377531506415829218446352327404138726297102044565902175579300267191643376818722978837297652965797480379977686305564766963425293399235223802662328571036098637579556143753480947698702389963723323715471731345374211596193427259781833335758585589198008797661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24055853664014603304709161953014540416096312979448464473727335145279054004905791339671856256755820223048037211973276009879960432086451359296023086014475024210533683942113347899539430478643536197227364626756776384538181121517850198403832458976256877241492792202106865187931791323600430124420129974130246439617862875194211701027119385286961041204480141300106848993335366345332853934337347510784633513267535291409723610142326575940135427450094375056254999388582915022026735078182080848649431446017622807961933639415872967179845593180292120392808617287206934460294430471485304774066080667826657792501877925712251663244779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22835241822070476656111507967590912624057939453063124560106477736999139620946408845692613809265865371434424643943084739177286636967038869601549833249081442204730777064154442107583796321707430086383926201093643095732749895254182594025093578840254170285798260585403234725144250034564352571512176610242401266164575195812854234209237105179278862968361541936819142980083133351776750010969172993357337328858571807361825821206621660407367383112945193443253560800636891924294601206221366145527672874116226414001711571404590776631919115894087213152228729999180643517476857203109037526175144137009196451749950541482541989351723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22976440731456032743418031977344610371583940022785514407991596277105544808126892662973570143556539070595946221364056413033468154877559861156932220718967053238829344143781415925187241403054910003384527929346007678052056441432913909541219163264792383117065617875381267997393051001783246149267063174900503648263522504061268013805010794383516191838290918572603456321452539158364270294618359641148314079578428577359756854966785797110426256480386249480480790263496506022290527951968147937471248557206163748525295798730599184997369575833204238653027941178756781893144202104920825468430988702872351986012415587872724507212377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29497121867973578536454914917634529557456750608456152394488276775802589654776288111484451429047042838318287220032015364951212431693910223878768775472358122732893202099136341987095585105845785746990506467449263387674883399172242063029880031512331128466683061557299418536571501985893183089836899240732054745779868001489570489404201182900546086475162066127555561987238429242077996923143638149017595196227954372191090414251625452503431116841829884252022528665794958540528393123372326369533949082642730131257400082470302156221742539202653154365299713775308633125124525561266242261603493406800983142350119349986073494980033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23087392223677948983788539816340056528953012992879807765131657465523828381598900160835366604312547383916899077192602344422078602608179718308527289123329133595607108158284510228943331608369339222984042312129138119698521579270945330354712489467278826236796019876962881568063842535616592471715114169604575672643517269463376982061709176685845812686132693116250967814910322557897438918099251128552454580220305639750325862708704992206791941800054552805994647377407923952106424089995635964243224943035702548327724563808662384881493756645399208783659722573177383215259246404747698131702914708682252203549871323290753621646283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21993485778416957932132841996126225350000941253348240224957440297843246317135517765740457608426502393443655865093058499196164866031838830678717749601364294677217557597718498747071928744284771897947386971221035942052685335326668000882314162386399296925810489250312346362569563774364119264465321424620756402952326973075600786915421478834272384007340509875783496194617309537491895327406356810074608722536193813049782463673058439713009512686185252471908651558414888587527020128829915809738056959956241917051640524359657791677168500225288688703335327070228590081320530587843156405842539295919983331239098071443084019348123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24332708103769980525477406060183246728441229868563303258751952826524158590183993453384037516940763857724523721945886326437743987202205274288361112988609696714871385485757615939849528848220465333040466852932101788399453324404579141480447992532739393268837633112924479915262237022179729622974617733326129074189512375693177865154999926728259295791396202324685772643101465012968068841217385297889295629663343610845735982142608609133425481234031258736182385859678205406323956770153709545852584099032272281769540661042213200503240771303872249395259915258148947562036247698311467997267426429641991455793238401017904232996429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26063673121968971978570425624285925009652230880526010070211891650126548015709323640561091912064829161755469069527592377819563263093735383587996766358111473145876108214511646248443796591887774827487411473291861240300931764990498987976726468822785367586804419049376348876853811860701587234159026701137862994045079502181322984733855161410358287940290884650791192888976794529830384104736921920555075821346061509711085647209564612232999238403563748606489264298075153202686339580876524204083229748675451530596351219944961750903715897156764954891562541860481605043193921023970793628042075889972363219179565146463922077615303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24614679478039645674166208760149222741162405590483027543656911737585977334043249679098438432437314562139775494572754227559977320663197805896858047579440419513253370951257513644786665225115661455284516033839461206788199545114982558188063967293713503215047074114659219409319389559064240158278981640409507309699952663103108224945951660322454369698583599062876727251337835801054806997336233050801925418302548997007991216101792450816258791526353320339981780289697093980605872316702220697801894934126048546741913131646593672071026807334144110861547348898762326731553104288885080313090372683569845686511962494461861551715371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23144166323418881124704895463702734663268124567395543208019042888585275207177656409819351056184567667812286204009776655729062661006703598163313931908418838430749098640841725644523993419157992102925840982162732988166460880537787879740129300640619437505389941942246963628677487740937218647320422151567524827436207437116423602571815606083225251684384041129228563927261030778131546275441717081278107319943907642845735353965292504484838850846131324268787755237473460599531739237810174652958691533898216886082805882811332154776488222859024283286207870530080526491309905037078034969630035313368093605844833863677251574213939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21163403474912066454579974636875354488588650470042123862639520525225688246344168520881531957477867730446696211797552283324600239858178782021521081449689477809315532164582190617434717320973749366638261807739176413363318371801633139078633229051932397801971129733755078054358995909555051852974170521504636800723426773761866606119347907774781777372560604339156679727009635226964303872109114320538227161643779618386222606709179926214429873082548195845277588272810816331012756253421854174469634191456097584791594193191554835783269979729947885842970193611761844157208140933986557511993203528370867488884834541227404798107263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29937572410023418514266126176733827753817159102473665874717033575793815593253592382244190935213598075913372049444337942090268164296041511097326980615736640910417756907883083116843365463115214145360774639961087933481811816405840231236239968346596903295568529221796960683382965051008126441009995137202454235196888559220520394878346556336000917008246692120871999491606265051812426220764655801222385462759700936587862702446247860776348727937483193798992630732406116205673267975565426752192587009260339643170426717342104280763382493589312509485804388738414289665902597909882871013248429130148760037672172773187856131529857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27585837787653730032634643749617888686898696920984180357262005735385017728107551898400839058060271774516687524947223475173421184846736044730429481023645530770595011340650018929638511012909061287131963498565047393323617203074571759188842358011068630784684572947055429826364792120211063072449511219402369189517185173451366018046681207547445880192752106562761180093587913131904160951361856757227846500391403173368788454078931307980228426165299099805319174045884806523360691883045352581585651217795562135920107505795677146361732606026805166082298929149693288802602746193779986972807566252864601356085229210022970669546359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23245565668796218773666836404437006364310341569496699476341524356877547751691903501254214629473517049574907082358730436510741706929545996970784811478942662450149272187620950649579143179900557472801624952421110331246727307660016953678218650817623489390474859982173360687625992965783033871179462134310212580739066438792543342839686100748010834274033379050913492950622565316912856338941905784368446869900577040461958712401853418808223674309267977232989562915111146258092873530555119939375377966226692714431634364663685804132315604268211260176395527835253297732860806804426755573650519195193649655152220503702024502942399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23745246389762910337873204151064418037576744760017959449234862216016107323333630516875762881319993432475864204831723108142044035386420228407553906920801071207285168978872513829842552743859163411060918473961036217924463096455705355553816013266900697194491762799099342983985151707316725144071785247245560599035581055523487229124482813689273280943319340121051852780462653785791162423433486970849808771954970316914404322612257974559654200936174000796530639819967153774790362708837295158747888201756578988597476063596747955857443462895840869946684329663158890143930143074348652089069287311710541099428835444013625200868357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22510799933048949851984702212975952874388886979275091358698988247594704871957636906483362704502234505991585167104391812420738253454350358507318876847145666385488653555841587450345701965006093747529947426354835705423962265359894515677828329384548316149913119180996070315356574485455558395565170404245000553705898316555729012476755444178886096693917236400958481977049339594441103579387843807499093828578371862565016929396443349403263367583694575542022460373766640243715945592302183699915966029084103823831481248820231675151540610493350927904428075418423687633453391695675051365451674785650438931773006606375974113431221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21419007988709378759258093939668141461011846560036479015655509775639225708713302581074590740789545106709052185131154539062096033652955657643164976849570364849654874383197558586692931937274747550720453968402256758460862372112003606064170598298234010980362323115251684759508814156321242741236800178962524362123915574009786962840034059344918708561373497515140535966093232525779535934543517792554562333786106812800229825876694397377216166416918431110296902113988198287701985278415678611727152779036710553022802008159950622920225621359975359960360277292506620438382095803378030726483526140271957876388909406477757056764553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25409502807269913224897073538362799032629722878228510385470290359620757165015077985285831707423252209607079781972777895766688484648180727427805986948483166476219497034794581592046953581066323703799712691717382194324615092182706987457497777949308943906660833111543345755230489776515868791480491811805483689962844311032211695156925948957479294034983095774816706822486599882187405762840556424332329858543274786528409144857510125362447102688371819047254350805127963296274470804519525633334820899180939010113411394317922924742025253596606313025408752365876275746400341667485902639931155586003860547799877947469665142619991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26825184349747346366440034492341952625661943422994734429056305300007510382866311923001463389155533482188608742919493466225102272883163143147401208587522441794999975592806170885849516439083871877576299948273819636226345142123512863198891471802567560416827717502942041143324316633846717004237893734113240744802604844875153031808540600180701403367966861814724120814579673242175570793412486845637596565282187624054145844338015968644153024507976306068804776915508597958294597229461733657868990127808095235684149996252058906695583704098809052598005349838073710223302285595991485423919022412708624131436729715503857872272343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20177856139380380679109661034658447753200231513008286571179072198264125295606124410750153047593445818384374334058353554461656700060135283962297903160353930686905231219769979245352715775615102295902613105629382706213081527030296533315178424383778297021427508126684324863801133901581862278970725573469497767154736993674111827419655187284626869887595193457747541033494679907992447009132553537119579705617932540976342993353107093852792064995352673479048440489895191780621733691788010058575618167661281604099202595917743155976356398383654409622443013434814515325766645846882055783972912782667495906454537344429189971799283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24554531069257549314132961269959103812591282970523743170597084301779860067652101521153938931562814096650720172640490586729140222206390800221244731104601246297520920652448582631276247496423878235610570604326948213194665758592732326347307376598140416598069299486152230856544826943063147716683625171000041561118758860609132145097570999734427173408350227746532246969470790192995070343096833998686392455614766057045968343628007321662966122758083280288602923995867174923121758066980759772802447021630140509868457564134044590229393952172096395606201978952491292409704043079198999363336179761205128929373371412034084372953469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26652314283845314710987755918311292657876235207114257692207120621168581892654057570712928603545692340028983135239600803605052399839114382866094244712959147395015232721685922126947137170614512123872510380521067105047450615787583330111796002514466443631953944484251555692268288129197338689584461680390611048201505372022548421201100151293641225071592015263818335274844551104363235877752624067693525494505533210914694441097135811666090794909719204297059071947309680318465128412600039856875491323177160894087806699608520042546536734843317214451377703043050240634257732161361668663576186141084093218742585850019867562936451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25761606538026783777136215435255038238990614015207064543667796682641816987051510780784968019475497475716422392461712115015567732590392558868228173675627102424884768401137530489433390894062161994176396362457992105991680467192086437994823232640312031619905884365908716278061850483306890579014808321345241604589645877524896883644175851658240435788178451554793767313486565001205112129678203315562790967049065425633151587737941220686355316851861978379767251241492106456878985542494228570924330970674256004725830346777289731672859729364932373599873215988408094920259046365499853300341951645002721945375489235973875380232983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26147697354354456207837573779137560310480888051932664692019159933931075567256997758498151113355651964081183963013363951597001742474929218320723630173922331023465999091089410392887657574856592466322210945961055122534669793463205441381607175073799653189664535184710605333669010750661693940912919864360425986576282190022267247303574627904287545625385406229841874638249209572863730408925380774753617939473119289965497935993450636358296081534451216277967346117489857108637684671645643130623520732412306722958329393285356016332586137311414351680652142497388342872436577595729092620069780412671510281630219867772794764408597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20428736409547042349814345660799587575047930168136154915875523789934042766656732483041789972595435283951052666016395933725965314716356450422853527783526058041470598249498437250014524445173889045328809850514713022371533758811027286137514842160352596383544024672303633149966110147207846085297724032768627247533195916506019674388658477414431356239482985819808096347069125435861410813499753099732140312812100284619327145663408608629770091593383901728733555858136531531632958810250031783324766123700051833778001791824363699957390925726534796468805363816984116691440190197471764531894185371975982799128723302048042132192409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25226945961109561634958681388584800388366463353398289642634577432447328276180353845855044556068209694388066812456157008852922075367355009588796475659049061478774325145019720619430342192151028499266447803873150900854214782598738593546922071092196760993324674286095530798858875736165694090515485943357530131583419124423979168773001510048416087092435377039334638758769173994756496532467549718402116481806811441683019852101164915245528967274457082970963974632827152691651799969923875193195111145367800846201608479335377087770886891353973435198768245935943356354053208536218874437593962110722912366158178795733931506464519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25017399204781406472192771555274308806956714164518911706514011122186536051234946096012705607509860083222592756085453713018717245688050689365718199178575795883242785294105060069956178592261646078572503232607728536601180939160500154583872679717988029668304291403546040779261291573088686778160857690211334931740449134621979687789128448362342661575268996208831111457947867501200974541027386870443738966780257757024240382858345250835462088160695049524555216191744168186275124659022753310902897505187241290829160997797034459576679245783321476606335933958043060715354704283227892653550933603795580019265472587267198472847727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24222870222233921474975679501128886630137476581867185469186631248244388119378361403003638712680935638323571696886102089631245192891090180446599395612860108063928429093436431215168919740601882657434301581156033691998329699069862067994699810312932988268177321549709793662347651062654777787757433286139479454404687379725050362335099223790809863170533554216054254447498267023458024168013661008001512107499455100845610018621450514790118887370292225699898937416424675099974700043442963254581918461963994425804090679695633551911830894055751394157929407735561734931618194883180705699177646632904216549987196322162092695457713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23653268227860862986854792928557526516348736725409657113048115325653816885139597209024276020330743333492502715423538950390437140936178953455485678533992014721130745173698315401534721050878871726645636748551012773706750680300798777619923655095581511700445078964337031659869476333902529953172634154499869140534529030330844455412610914511313887262091749026009001208103360765127000915283958979273514942669789377347789150253924504241942349799948372075529920394545333049454857085736529705916278040581531552632945991459000630466224158767079997629246864055888637776948901432139964353202485229780003032475275003100141296373087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23767857137944599937185559128782621750337613555488395659271869880811697003559487865594274149303072408427065748608557601322437194314363897731950733036667687236649194821923069685361853993343958115895582361594447508564576697633853947565382774467874822650457575781972867398438604418038131441655323907739248146004054834873582825835970093674565942644913735868567284035216356910421951273099509696149082098929384976436345171484305758070908757421036654197612731868796595272578857046114484659638957725194369058572893044314577686141619267746245762747950131831400094877202714764758468298272679243627232535641030330290362198001791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26075070051044026964697382619547811695297454324532698624191027993300207442905637195249103483322402424895883464697371232028126667441941055653033375724947357473510543084587637086493558024433765202693491987218801357376261923124956184152867348776824544028184040783958662060674432887156262479624574672405964287270724288658252417996768075290582358260495046745138782325299569563846693734691546335060388879090327615543755092011251211268224810191646519690617006326418883757541746618174508574409829592554482790117846272861811157261703276431048362168846433903126943318658435757919303470573223578250026614090700893577865449705633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24235235268843043326095563042019072044037866372975949127153633559173979370905912433250861634544866881414503654066052236453983992055858526741786920502551230036132936038144863749621640883256613657967603857135026519418469708756350372238429413892455440933754729129493391157689781844954473635044455763087664948782036094124017406518433855892165779478343959531266797360455714900253676293052183502853802958890961037241159415884823359960855226138727780599545771948369280066381279497748162154745051763176322799082521246549602770574324208061238957863328024345620076111831394807731442243493388667116927934714684189911297481240439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24815738589225637271048461838424909675738703560935081043879919571878643545658534721616260208133140224303453820513955596804123936783951350301362690570336241782972666768469022639785102785731319739827236595051616610494969615153306103972986180436471168985922899305274014217619018729236664523998494958406878698848334975083316218864854348776205981065791861848949662774251928197480832754666029332359229326590733514803257773115313007256324839156710501962359025197388304240465664180592400644531815599623847670442646297134340370921950423006139868512878517464479651921865616188368697485488702572657837346418495696528606356937393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24343610339166094245799158745744060636107764798375084720812563921666996722583361635958033457956924844022449530583608874354455703658958274390565729686680184742493620020195475168648496098928491911820095414083053139878631806794547700559074353170659726803764455739881816462611169353366926307672035585751307855865189182998943463313339962566671492053993261563143917195977973844666441675436247799052098586816938469258630141601503775854230062937670283811267663537816274994078054583603601954014492230597038033765178212417874320020436965620369654090591790721130686084761817780152248416660218143030718496851424043081730683113303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21868912785945475678313987754399661671258392546295684900252483089998986448435260978499053089225309291559866056886943304018615775387144810937821011549797081372991577360028710823876953855787371574734265999846636117397970067298778522141394589850941536301136448084123095860743558781020655667248365561771740506100446400031289842146378205038191200076130533724359479866000485513390109945695638269421583726004175944119033694726008692578696383509107121942908425100427029070573650207242487916477192732128550752940298673622046665697405281909857223400475041522998792432755857533785469378315546350220613992246668088855530875249997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26484859034917052686260235184388477166723629796042605110282250377117228369940631117548101653361739063582285701966156111001763723919622598179212271720443872397135558578914680523144506595103444520080472775741245372819814140946963393382621767645715483228070257430169773854272786886757357025550355059723169306614287385166939254832816341636026401292597056315075908352885242265852725094016188728218813810450021557330053880201262534350538671905547922618778634896761472924242367515799322519988922366238897111471949071697732959573287338504929331658979043990076114196287152603711456019929863000565720497641369237491555847672613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21907427678891508577108187543533475796760287312328499935384681498045313282619139299011626914238478860417571056891936566847062857684362953819690212859760488896827054386462176388527534239360791226575454773953962782299516251829350045352489554483364896823231006715578584908348564134550145751361906345059598754125847697589026915425997038289965169757870789703759299286846224790856059214164576446637125527946849429393866517135304564234237368795575471979360489996093548081809389586638634132431259487029166083293058568237820188249504026397558355073662764950366164323877625648548281458114317584855503300006046416381295332118179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22917429146765863064089899046670810260572443105743931757312745646340943809415257773621976795087590311071036956327431878577262150932857942919369703844762464395702589861266567362232790407108945627555710537669871839227889686846727741690688803677218281661279654830491135720310398841242693717975527925386814058168126368853555363179472341224098969081953763381068796834522836167379451792419868963944710546824047732371072079286395379406682666982905755277727333432938224595489805801185144363553492731290839093089073594728338304212224208194711344675706225352651338067862041052072380820751011371632251967241047054778738432328201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26859888738272843050181160342805829306124397483468596610092254307652709247188603763681847925650134754337150570488106168666822895191280253455293497095618135614783280781602053277333748445910397013194698875549933252591427602582173150921907542329310444702116478941034820805644064638475580702194648588718349740029979333866001688832598077457021571174449107409645104108787803923783691216827812009496168758979887879185304798707781690873872551513784241743972627904616165856220738223104470120682146684131692741536648734186832027146757061888970039310512994539072966698543540855557318362131723186001071098034335953303624604120457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26015008811770001743158411394810544982499273229700867002919372311341322009256252254630888651016224575650929095171160220242835995047218957508973624219971299013107149471130854460015554926952056422385586277099961406083031265969609921552260770522851704900970252775094953431034832136029403557081286381459681761840481803319272229807207240087984922514251540933686817567093691082048063225325908754382796698833596407680136645621050232999996717028794992504432646687928598837975797577907963203905163915263363492183881875345976842852667568422813257430509171142704748187074545564452318225425260981166376533113747865433514774474841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22207186269666866533626520658962303253326998415261698675422727365527452149764270286850547143580704344417408903075958763941649011629625981668000882845077435347809326222462600308618365478745841876293528916390098014023020564204458370485022342538419286196201710781694055687887593285361506538950764236126446028328330917007595184693063898419392022377206162837353261009348863038104075060420999831483050197845000421721651294123544070585756227188627767279136831309796021461648339331669796854472365443661703586446329965369242425660139544255441947127711224674529010163793041771959720535273549811113408294745952521051863709587833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22380102448234405451381547442390468312983282072753209142624887482948816019846660231691780846920319491090059105038580404713066832401584984110586957547864413399603176685040961588966133817430693397912954865995980438832627078844994882026865067526792578069427927373872706833240894872676904050878066887008113349733197813493835988073485511369184355507751597742333364731877139800357123990072034759600539698951645457610307045238024504111642867895912104435474127569230435848382687894883029280276430546927667911077928717780498540093828678357153536001126980912736693779255290978448359672036418663411869896880834619135973583613737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27356175730802095838762745715150939745893890157993016771962322725705305435779840658366309494740869347430568038834503526049603337144332226761824802713264018132733863977674552642327871739848408251928328595550955127367408525441366559670569021539276938187546719481995233420455688405945155746548936468070314518493992350186047178515402318902547946590803944855617987218881326239415865493899286471404307539836846596772531329000580023658457560708977184255661078860194540001909046523064163564470976392505373767411668800700505679336581898670227748696123634030908313613304739618684993195268538851774595573815119907324456167008859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26867361487686833701279016885374029923842609934490415530031990494827168036920596216115189759581542118206086509907355801966778806464742916348129741409006574661938738099475576425043828373620237594088840600168636484974062879134100681474879203052721141707307417359895535071513334568677669637801300195474939340794674521054390831971864601558631385794328658875831668514479493889256312678290973866977132779462212047162906996927175790005666498326867295219585702514212277022604744864717604748051700172026855285322811701819428613132755582440653565365957925771120894330006885085915240612106588169366010299412085814143285259285401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20381308826118202274736987089306909791154913310092039908981559099186773203295925780250457888443995184360302582904064409978344137111186393404602945659706114123572278644330457250560731747868915605166827844550689471715289439016673071729037583110438962452207980913056915432924036014858983909344260246035235546272271059219414292896254443791097064504447864698282589812817717782803555481015665511664218952739629340947633703818661246311161410661426715945001743076722818930601266505373732880478176131083722487027691720146880412498960367878124934109848984420352004432873363293035074022161603787538120023080250717144480830501357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27532328908561220187569889902218415032536786505389280599667147254653580038956445445582798661386071177691614085850995610464819415808458650581454320237439463425927053695254886320425694489285528802925053325091949106238711199936310458516493237480285881228825016412129922858736248814817485286550311534013336685986087356650461375544305326079694341547566120375623648752205957992925373772886649269859926109118029158778742889902573295396803280664429164131419356930511807479905607689736452035573359767903246723501901948735488814757476558601512088282119353165602434660213998681794965752061263432523139707117854913531893032052069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22239489552808878487262857544037416660453479589276145368916172229565823533503750254385463182775783357317860044654011525768286818902108284678175917633903489446972321719732183569846929056505048932817653713063205253412334130164669803034211101861666689154027703063109219921941384316607385514444829350215617379177180693141770310870706682136615930282207523672280180384863476741008081871842587035869694186146339780469830426487248505834118168730711583252661375576218427462045076454509610910790937937821317734641988452257896101561689006644595006763481410277317696253339919282753860462988453128203403947801947439680121497285937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24368766776539960499444169733309931756269303774792233468942223171304278543145383656712041961085086780048213880761109499975298568856692352719294627049389356282807201886410098996691821600474420900947687170952116190867228919915167399897814861281604841545311383852153976297602970226924602438462684756583893126853487746643055195975763061723435211071034202570911147308108568384830611085933999135427126420219587574049262369908990585289043261093531049192467246273105561035247202184913682489995106614959830371702860270553648681144230324511561331586299844154115420462183802124948479688851661703315629248786625434615395775732631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27484804298321032883600806244880920809220251526105999057034326066255967290046543350531856881041261659850839140366550548761428136180334971210877722971415343647354992817058098788032649103026145730809383356291079150594321893820782012431052724526391793038547064246094278538093795848904382799386074276817989552686380268888778186156614532618217410314359583732471781881488537358607366197970026620518303371987590856207716849096119126225915209111574409988169042885673045268571464545577761471472733557317990938965524891244039470417488802888815622182564301453209737173356675909560408895308076726794551233625497464488507969098023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30260877053006594632618420177457136559512338693618660722258450100574855831860471760134089839677526177556076669197837027363731630338033134276971692843333431215606045561686999590696859498653182081809577343289611253902321687399849722239225412384655101799509698558031685341413159850668511734468469008300439270434582920486886847471976445088023751302259283966464139268032005592223593600367525721316348086452004370829244243455498539045078381850104965193096944760413125395136499443562773783662102789143539190044126573910137827106277591831316912787077348874769533275024190210823629972145700111028028285910127557180217243041189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23713644848430704844674667639241987814824967205708094921987826960702714080251450584273700968708990212364223780665692203650706802986196208437201935362693954216132730556671037316864019161196134824138723243055978775432504738381712878797460581940049772419579622797925484017819630297571256616989465213388442541360876155462965938186390275435878234824299927768242172004850434934699757296360303103937669622864687954519996689051579808103129794481383085892814350831231073733710469296237635489498003318630227869628217727185308109077959026171423743792186176537159356760209020321259978517411963480665228326264443675081842976274679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19928637350090380642430546860431621455628804198287961894426610567401704607998820224978874687530852441411922843435683574773459430079822305096391490809643735963714021578726389897272377532707098513550164308612168977970959062521861649498022839116744968409480194792424237449458377673931026591195647305673709350277928723592087237569239552604263033036302796029036566328863552005821301569375549318144508240471972441502575253313541578747408189025851404311057127513031236544634100787169282697805944005513677609714436762515277377283069872451294530837786003440608649129006197364867721625435679679658371339065402224975373493070461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25740311425621346418508632793626318013443249425155517889546899961243066369718005704406556667931714554847583056167956118223797825486895008395896486570551457313433533338773719104347197752065950184875752187932071682211236132013277983782774434211847401776688624920403006722686305335068779576986909588513532650096753222083847277492389682679410828002029422795766008980599645210938778775911653911217462075563294623755646590456559634647636914706048662754975577599649701019185072689147170893391317527625180319285659518641358840629398795795907970395067126337460419937513828332092567111693063950658668350628596983927093208147591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25014743924650183954549730048737596895774927114548722705626026721445326742208447291611301656587275024089748908534938985230021960004931999356271259528452339850835615664029955936645811534872030261748737197325575600334127077611338607063051796401753532645813974794211082792604513538791864230545047690294558185279741013188965550281828887342742505040925485667519006418230381394932906924126624607168271523210304877135308667469123963502289734723672354625394514005971491900071438434777490974314149078528493798424840360799147115416514671464851657934647434443700894118400814967576907030555807558988623696475478441672977812199693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31000008113272826910847553099908048899329104635870317217350162123138769420860982285402570436061398076282996506121825663708557522262079852517147575767046965440291648284858231637783743493807132811064017468903394979294072967917030518576691335631479039569839250314613493641529312602635768850305186215931934592978484123483264402681271321534554689329122967749858055812394792962249407201088576616156050599933771388310587696132110755038990891000708485124741623608959304164875399849057095700358818859435166789829544335925487603901569803891534592401322499492095500067290043082749836947601459488406800001456412913470067181923997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23028018345886038200792120401662689343929558660674180515332116028597947939215954620528766249525813972148467925501550917613864680967646685158884236308471239387174853814953294002014878475767258284590215365505903842176571803665595875929553842520398693555736441032554426978123183713546341557142719639433628100039346038624261446597392672069725523476361090370954851424165811440464220953383585044846956350710847809006907155601136915354688808636933469985952629625095765049435576707157946438902796694060755275722642580707829838832814719009319578224038823043067316917955680865159482228840449906986797068073393518931527014306137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18405354915059376724140398077597893768625386704098915482792440377064760590003100768154813185161614501487586132891237456961055138772397704146924112713138260646243882663010284872587262180901037032070117377069481385399905415785000613043393532573597904238350623811488543986309306158038808496381272352418321934725976639677769842479720584349119751641352619108304336300490111664288868398722963594422718131517270471738830740737261803254307094337274307885971155509516540093568331559793323701260355307182051134700722424292685344557560717205772577220859869844524109763488016554205421492294592297721539268011228523200912101181717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31655314910184140236882279830592684330710155254716600935547864792106352770763708260333490551060611926377271371345984025243136169502977710621886573125019962026362802723551690184817144620092612145014420717557079563908852465933537079684668271152436083718333726518813877662873848175950876568223542400243013748754037442548851688046111054810111216882117451203517935710120783651848852107945875108398470829877535905475990624858263905093849968878175207136678399645955156094399235044290632315170961816176806204269150994445278840914765690254073664035582904155203267641891542128431714330468161058540016420717905881491987579903237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30693237955556281642718044875162867842382013383871789396108681295081478234367363715347477175149964191446436098688079409395776404584928593132461819283147454219738360871822341183543426057386473820969195910915099393222832349457148088986003639657172461535569267005849534043909789518442853956977835994414885920236988975473331764656287012671623743296122571305975939801057558734664241480278752669976142881363465141650409891900890942623427093458709854398195286696959315322558158147696017254171387518032125700558632061066186442923739216991626532548787093752751143706225168999174360693973189383202418539805386695475497334484623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23583183077308665960756750896669824765554805170317534112206151130491885357906951928950566346267951365407815968826730539762962485198757574296672459883161352524767462906076575553321569494937678118997030556238001038253749127931143483857941029441601984389874565403430677818248294912425531091698068952577597282269792519766575608360305745909999189077517250931098060986558129500492599630531337278073835036525402679742729174806163299599756199807087353145669908308016282156730999269458282538649195290416226668833229213154751548134709365353974871872474019514914178567092008703183784760384414314132224245465929695601301182899811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21020159550455458887165009113876325740586561200179442828106914222536879759953167073858288309394930004431560478040390036644787096478561361309754515741107710954269404298288651107014265223319322556960878270663948319824338030785367223164962353784373971877902295265777525987504853049682316280095511545121555828603880906563116317504098652976950110046808094414236821791162257473803320458062034265322049003903419242002759426411642896215653142983846044849874168411804590631338462713741902979641843852286951672210302818062311428343652008241761452985691789324072358186615142316725345157831316120247892313509683201437679369850291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28259929902097571269925767885272644278315104025684808785479968717945363880493324157517111376031383696011026025822598364434203419966513780314962817336468955611450455625919572021502649943800109142678185877964024748230808708503587886217891122574150521485387780672742278034869830074967761506855251817830805606498574200378277925287188958272892167437523192466128902320129511029415966989059312929241723130217628924605903640679761734637088539882680439040253465223586544907313183764559565310876151336058453247961383340613100700541301729014411489301881057654403083330927343665498855776273106399697405539864696310534369700566579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24011708050112471338925089647420759022454017665053681852389152926085610990431126976332125105161643530442551924790006870238006867342522861515995725057822289590153431522631129930356853969731527375884320577843235413348803145366275361382331629067413919690997613027276726314817169772965845298484989233823972935208271698325729445097710530494057753843647033421674747893465432073367216201313910946713249387147847565699402617705362365217541703778863215908172281572551019264355605947298263161977114828871385638517121350267398153199516466278738363935410885189476419831856218961119804728811820881677010871574492797992730131012609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19700463926368825667339070828739066208659005154771092249206341699214906589966977321885838584848141664717148037126372841960278607160665128091517191031307109118233369495302005851070149400037091024344979425595664747768070126174500951866254734584620261683885179105123444132511018369687998222076963118560673553516647596026721067866004340565282933993188110214828627861206803818431495963730503075417076513848166329022539729169263567838664704795042584202985682193010679390848924521944679772002713827887045032560048729205942643534600992341779733867352528339839863078757549057347332927637350767217641294847390173343221440574769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28680709686185041500528443351786383048148577192857837817183582800127445015531290843361517313617638156191090658316697315704280540738634719810403622904467411506843904803152115334995133816265669765333837851289075977467929469645791523237307866359494161184220683253533559737448558077969124098766106679603254786066544539902876410557509210081936559542258939351492400782643793625783171002277572498831243923858481676831525436015424160585396448187006924514206641442960069393097632685876686406728633577739275221968385106981681622640161349184150117548589170742476456499384902373561975871219644412601447901962126427851985497590979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22904539480295107911606587771994562798218364948529097650980805832615660137035281575106355842500798170896429494503689948761287323192655142997965281342309406874978304497600083716329531873838717510576299553564216701082919273489646968727627655356092064825109139003017188000711429979512885009511482970905010313657050391418662440671419171708754607408067167368198449676625919926390754685553048873044418401848320138467179562350046911978628353183257142936282961415658867472842916175795994240744652727438879063927046169253440929037361734132195150566005868435407602420721023158569167318159418556042448211469207820828852585882301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26025507141699541366103029946747984308099827549030398673348199062900725295547655923884739209395871551879076387834510088456960900739611358224084869992622090002788321783288974604876281450597481256656621259566151267187747932131796847430134703436922301819974633251703721949273444831175836234272849018856373708847874625815241153713906314563986315816310990183543043165405883828786924169566453444115268338965511312692450744230298087158059344735350533018757077365939569684820617541047411023940144515653806174664231221590923700180160098113493813311264119504186974059203653479204471515149943687887087990532426459989155774141507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29924151263925153844810197084644313609064321790172769974751052790701184310786138538923179042097455779757897207560869781568249364946797559007491565213810274207410487520525274760544257379758351276313717352946931383400301513017764028838017825720250415847635263535671911661084846909784229097928394799249788177958746472422737180698158830147749122784593614967034512297751008564019936912900958174797289324262446183947054129866014890499345372111380276138986078629220532795712015501663509745553743655009142024778285404395330699451225508136274181347008130231339429911228886868549972748008636512599098538021488565006562741619883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25335600712665717804675487070451650231294887968827298010617997656324427901237140002093665158539582692336509843842839460457194120796160985730957973633972619240501427791679636742199166210858324057766376203312732228203724711188391028764472346196118373040729174599120071257787709880248232595227679553286975782646234274919526433142751077530528919191512512802230572427841851374438308044758155210044559358882311272192311001324509270850072679791982367904844311901219955426214255897578090779166165789076506477593420977977762266164725557185549186142894392794539140316504160638817656595114162585294977317417916900602735309348957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26912636118198495157787166031975117007499112444094508281847919734604353100053427127223447573945229664941807745141756458115143304221282855742693726210442960793529200151864535744076103753665563057409375094562527209193680121500044982363742849966172153394050881748305048241184367248809193482461258010751906537655094645543362638924647000514361259517935429665872174760387841473427756281716127360643743251703080747134785118135666025181974577119484122098977553763312552441338580474206644509011707964643347897062877833645049729452278929222348645033430659748873643223490597675159389466508643989498104815068437848338722785539813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28320633831597635626353185429658110525587627148080428290322772833460305667311717307748102052382024514025931705221819639873984719005126502198425633815424312536057367879620279081263376759115319892039766327658484495356100789514508598476212064971968323000072102383583370980939774123934586083280405024460186950577338621296289818435408525887552293615869586557885519780390285429718970398854936942570324782841172968405501553134906442909664730299090542048957171391867539083756476333866919739113296950981488183121948991900919536050166264582540232012580213899672079412940805984244346167061653272985601662763877070618498804659443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25853595429593856228020052741697226667600925583141294822898131280340282792058087045340039542316384483694288493806900501711167677622158304824220529832015415920679683706231654893379501884464926680145718052133748394349870458604215842725355523795603642482615763611346365722605035712899554378520664848095682139194214796602159557954698980740384634101780015294363906061255083667908001849524543716891671137114916740291383013396477972945839658897577148655887961627018405021272989139343185480510618719932473932376924033652399451180949594464203139612657821888679202337263294645474573856813441616177560563640451808141389900044409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27872835662276161811719632259283110693982889605407599939735193077994953663676049385667909111484759506793891345147099664129215237754939119394433924212461470359888873087713609399395653143234914672334361142624372497131560475585231187400288900667629549802828664592501410825969150905403336257519746818487146359541137241824185595335290564758235960695528626877181046535116636766260856711085929214177221759040122588075259148892435419836605990339297706089938858881544267305933759638230417354080436272142186478189742097451760007968019781567030364250855375479572106846424841497329498979717291623976545264999528171465521745599963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22680003109752198704909089427300595278784616593308985297647473708274007369512004251708691828671012455206922246267206883820197463135355443480963859058568924148309063858167906330760934303665289926822867864772631226723543509436027444254543435128226819746004210273064625848296709112599609083301903875274557130596100138102568122679885531241178749329287095656191168961956403877776931243219960503078009104833686663404371235713942207836607425756261351669865490931044083671442162045886137505136173733141430626142072039945671573666166184692074921898654943452683130395794461786450575842251070044109516049623880137778569447249571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28230985350393785979269437003869600564434056973901395457463836698659309895451265161900524315348740803256948222338052999070158953457184006119573634932566173143555968614939790056550364194997192901759500528640905930405197903428029470420572507309406306276183178877998112129189650826841256986728597654832857693955976195203768393571257807307192323494740636746069164842727855956414174099632053361210492528332240599794968003087436571350669004108410155240101652648219385514875444486056592296313906078268189316977993994967850458892756948689693753073549047215309107528658843051239721015952677929911121073554569135899354321067797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29902875262461357020672637725479914351376804549581792945615186164613682898710922735733469083877631310344673786150697774173709555547678339478201227329619903809806640990895579007065245830631639677042530645222405424856310693800956507632236302124532748457593433606631777456301013732226830701339747881649100026725093265595209115212122411372802068884047753349839175595758867194222607039099317075333480818383345981240201792116032291743010387760003919331690220733060974365026742595378953957818071444640676353179121477096738713651366337598845385712559739091312807811287963582837005868936563126770434615813111418100912699907013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21335957350572205587313901984118427805974103427202784051200193677977574906851661582516635729360776551420363660563087319285556777214246720327441587663609490495369732576340886680920907698050086717326924004678106411198349523009794169614642817962908850067790046160249130172401713501783749092162214395868115476159508645015101447727188166721832460714854987638454810871648548497354425801421624925172342527585880573419865158692745911414819775028674392407776160097941540084775857206140583631721782019570542809194386944489890863214423917230889676227301866095387465372418087206348848792001446001384458491784747013442422237644047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24611392518913811040899452084105845956509104239674511797388483209576917555807419235291949793121909164879571528091802892133705209135972075167313924330934910350511537784218990457552883697746237778349724264476779908450600354268895526754761173387107264058658151531579825705980602968396255427483566661729311364438166831775611965126630159567330234296395886784788127197487517125405009941222470963591820362489323745046352720904971717556529136214139916914559538143790317852239586596289942783799883529450783596639532747734655050911265969930910858566012265425480909982278343889601181832908313092170278987525881683405079436865261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26509994461422239413707909215367538708815864688378203022236813435953548024454340428475761638927887534738158827428095307166144741718715455739882140988038958403387695803912100780027116563969844687944616191509984074205484273671889623317362509208890894400820372600182291812012027765001174089040810522665163222084616939014990299794654497766966085597786689481046362028110254280512272207198389115666451350110771955496453825057020985003857173137489541041716401953473260912315988215219262572389098085498075889366006688522798006078625821799902318396097120028104623320670851406840600770334713931779559406325393359451120421280023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28494563951683063181593303724344920982648184121225123817576686885669912527801505312622514215676605679554697555154959190015452930039281515582565488353348166064282243702879207687204834617312850447534061081310019948208602350365665474001773809049540755063296791228366344679112069599361058982158576533119797356184592322705227745829961522619261644683963694738028087785270713110217978147955185119684627405977291870701128600237217863747711024532749505330932128728180361136414892592416993144723054484897159889524103138636147554854045450740595214686184327100999333842096238255327742806471455307430462265200061643136966940592303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31354692363075111146896724853152843279386619066483388665664956286066847532109864448724001379026294737445362872234103378802288072821924152872824505039015207201222973294368247033501302832943585164074402330045169688145458279125951305221244281261264030099446726495507537627942303619370352613176871994350581315852716247309917631828428421686479085943878535791448902644300334314568570065648694132036962797512960951300052415374893830769110559934024473594246921206043004043031927789932599879023584180948191397225361889879808745403172128221602001111244724492419981079526475744118432974382052360288347535278811846366711670853291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23456022464258485086054986078524036110078647490838085371311573883976520640134816328817069461173243179456672390752512136168848922323512179454274444737632917594179825474061084061407256756437743767958786883360138692862214333184478726487568756588140455663250808532005134035874701081125954680632870520170002554658800163696839419951789513795794265784008356141916359879100937794602574073614883010006624592976324929966881728026522725840040251861349667876792390980449733157838649901432368615501670660547409435478018147174904187099132543475892288832607174681785865521506129160024136645829642820734378999928764680117653123819359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30321589673437522830115125074748979814441492886040934615110943644095519278183185059386229083057156721214612254322354112668997997223481891702912440022260862411041167297219072819965522266815622120682998140957362323695161895112895780564460116917295567354153020537730438040606011730892245010911542861428561084305210066261955195113406455191021755282389670844999540084582869474694396025296219334696782708482844955700511394615606446205634854137464700363591462628579415570734911047817453090964496771279502635779267010868190505063447098127822322114197753448098811822312388997815513640170338196844643606132254255208965299893783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24561595255453478439568296752370092352928716477197302118878162876269917727160257702106822942684855025296253779510100497651354622585616903869637431926876510172005849471740675429206819692621921028210374464094258648533800062922908881802429388034051909586360068745303205528991291185385809169853925554387934782993141791071871947849381864655169367988912738510085679389203487751880378056119964498193049705346632750664056800677624856465717117064945228189212293331221644040117157429281296702251677734874651591818894870053105505060540666770317978121229605081253075029835825153232193184139076897215680618960558910263691626635287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25633961479416232336488249518484482404743659732538920643379278110468045396739889509103883307836836790654335636002763821716686383711506599803799619795737583972745588535862278915709287562430061930600405535369145269542098201269506253168981987014050926917455556887084573864568254155104728630055017944318180290023164428739957345337147026873297791514234533165227150841368580282376414423195191916996904672676592940204121844552702089491485997955119433039211631612281818832901091630302237290186664927015855600677697249956487676405650834861699487773221715580620833416375209909714671071357854825811133279222210146489699637368967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24224376435531578331365139056633279816345610482171415268541709959166424907103919165877458437369459268122598291312906603461942293699545118089317324914625032875328493338353259038933759948360840838689475188730231135087872157205707651091380889855873695785472749984430585848550283668558098558514023329306361943669576127373180301360886917065056721814187769238070485597060893084298942234659930309670578884651117768156774692505480307027703572961426790973849742896017615707433414732516502932626499071695279490831681587687864349342021569295489044075713359643259359346014406338692214933619691584524087523302520368869609323292767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30911428272965176296852930082598385819008841084435975057139426788013030817974931594552830523963883724459585213552785907395771493247713339573156232841630943963481030662424558617382455468489421580604005532255194758827847782331851155420567045284565554532587859407107534494566722990908649054304064590069725659454561118570031805873988847206335603322575789899507403673527608561945220067035055149381368792896330291729448927786567902114073186899468517905394754090090140938939266342977376902140122030138303302502173172929370415670886912870873770028798659307423598752320317561701812129974640425954233538344139156072628710258513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26857735590172624286985446859758924296415726598838126228183632134910181331699829797152818192383463835061846973428733442045940799982197557830788962560812816899877739382943054794124377001581236568866952585103693830711346687907268277133541612298326609925538700919166762504127564388968071316018973906042390035967243871195848924711939936149936883942321979542758040114662004808500389608086514624918019348596942850032464125214580603537442998157377694153964014377713425378416395621154528012072479606997130232644859068394376368258255619325446790835968067297976928632417376203990540033320567574606401097579273040697561525903487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18979539819406894895110170523753994134416693939692356012450147347053258319123693316425777460542245614002539342351597738815839771033311040253369529484531477054394093224667400010084810351647210361654342658003347331725320848072999119789231361159359792417077329242830762047275129359074198826545681846041209093573074999755879192274999149267032940271784195099792129173444323728315289022781379992216524496319751543076808273854632258442660432399456716603324308237323929479911865996928872331324593314432038696446447576873998914680693913880455160891823860887100454850508378371769783072732208918845935770834257981814159734125463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29731127234292821129001716207195586553686848893231796464246618515187983990564417110919315815327372641120052046617447670513902187150274674130621646237610125996901096873174325376790633698234601462244620508885427433009515953101766665304146497055140109773231520503601249006101376238897542082327459711874941286800517141782676211972571343921920880626376312907751420873000028775106148680258357415017962493856352392636464003338316273806664808296010734657550808336988050574928531865912448748164274083391315046426039274274995273981927530375199924757332089550434443226233515634758165174652155245739035309565876741300711091320289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26876956658235096282135341685681634922616128225477091537382790397980783113057808079807901475463675932825275738622096371059855427452737896202229488054357954911058334017977655994667159402070933326218183015038196457317327299254015019832340316027935204059007042173835906053546943977096594043433799408250456974418203827516018020596952653801429103311534306526677258535075103836613652259245590612692425637473858431883304499021102787726956928698158841955630436467060268314957115503645896154550901461020153448666794405422405256441819248171107861622212284953839277596858333776882653799502321118563432556529067478519443951486783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22757604489190793829490839324751237200036969213214476094722932975428029048150839763386602380853307052345856219331281540931185562628150758428857678291583920027219231521704479624032866481994924106860506555318209497130980148563272263243003916677939074645582344070048330168262627877772126399465786959314000400384548999152358086880297767662785052740453114458330796935499269085694886041338091487283150044141987761536985874480396171832046936353688955374195275694070383032300007350829028105157626081228350645133827722277028820576736435218674651775920519525395626602894261990554590678477743317928225639824470905287821395264329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22714987699527664974720222139038002476414700028445555021530717093650418824292230445703980682136232526165938690638998198257174025852115143638506347157834006162387652140785846828493882611380519980138435385457205430958409937781349702564100190659870690766495714768864622173395348169086291118443644206987192655187798287716049848188210552983953470399711061833860312333662947024914828898421929553979894387056218254098943714177608580644187437531663586681577181065822436950646138942106424011305091069248186585963980727470821219262301320174387143352727403212138566513773054249975742042915385120481379024126416200065926830243567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24468146456794559944141852894313664057727538979149124540058983727544416983242576852665413197025209379737033182973148976972322548392176589331442989524563658631296592149019567299081066673962176565428627915104542865919989081061427966234016061193110006998328886879083869688523862291250113248936104593349844192321016600041852750447377020129684265977887631409384356677554225627307589258788785630243999317186436100020972505554496527788425569964061759085900379561260425009283016393992695575254845179022150683134418033182606561952490852460091086551176118152523799003601011060267410209095910115055278120472869214416125619629707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24389912019637754269698575880944516413586386907394990024233415494216810040731472798883917564513253818144542821682077836626892330611585235489811737247571778615648583319536328434131373807480227479899218866689556980492634215136784485918971839474066096213274818560686274050069468670168633792241439294905329329744153226897256711084034658544377319754702317177500571874243019947860603232054482446005077190113847208027920644931801332539242104917991891778804287391343423381198684811940253607172116506238597528764848512337447021416204853648281654720799050230814201370780842550087646453526134309784507136752099711012048888988699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21400541962960041117820691806193379379673344427044018513570681911240736662426579698308875772285398915053285417304228007032265737672633433629003280625232530119079558549601903828487661961143755573659512333173924035295780268962139872601425023923555259317959216440485323556515101159888290833517116904097624220095308647372192721115175499267215069649655560067085897915704319744426244203169681344781406925837721167250562868733024849428144623072331601941091954635364521554184358093675119349978899950274682377184662746557901656459810252802704245040084706256038052296207541551284026649632153465698244702269710847352148800279661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22978578182036663207418639568115479938626700801248153310459462110154904546904615151260050498634816345455753755765104778202345959944368146952462542086943831986517194426227951530035988813004261850958262073455316075411767754709750889760961706696978419548551708069703967206439532522934878371691340736073246769062131655817559281077393881713958933846353067687884433279522301533842228733742550651126429046139954649438930436031249991757471448816338988721136420829834984752312572867859482336402105072807066579012987361268328982830870217010345791885009568891655143569128376352742375120540330241232835469706712761842094387796599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21231765347853886115791400114595479382957141680242831880960786877858298827589556099821236100862921015144503673779322098390276430383329974960472670743944608202579457984001546211748760036874959104358781768521916772173955818722227497702556650505948605944765317013417204985717072270752861531370301216174349636616736015061565356687519714280467693597905275798782960788485535371424342149155751499867582675939277765100929462027494866122239849686731184389948644316564072975812383794190647455877015704243551530754077419435658120429194789407484208398096423862649272452398127076537735631030308615018996557001765742410657734675343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27706917353456348818455252747697861281217748712104064425535346670443311098494599130420488338506897223074939784039992357802816467738604408585914307608704994446046842242520361918240841228054578357598029961940910358070476729898504342385238640761556921303752044450345339161148204111431516930026835067359547940510169606548439720117338433329713232322981020489762618539331361457372937935116025527169353585334329077228984068831050767401336479733284232572502798147941721148203533811809811738276731698284885616928677646119438641405145617720534693443450347286366412647865840547626453742276940641542433667907933479993131535921503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24832373920416654071578526387099990791432060178972210302382598507071552596267079126038036423907175964275642734416290035518286927801620418559716807156575678380449251254747256996705318611941277785733740266552668172463707691810216283079863017939858325488898269067282019130760985105101509246675804376737189016569731827683172052491707886061851135476437819867270464593045849686549592256522035624663543772177934320845230329695706951954135991112924117636466337068164665248271630295412260220565615538961904804365407204003661885400833934829175237196654158348874201738555996470735442747606743461543429222516372147684584355344223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25092966948619637121532863584610246020959891485901158314192009090396141639310440908990204050803133010796523498063353713074401549144601642420689991589346684532172305029111178223638991277447460070433481140847643986696909695487221773289365441193847896658184168121099539180424962411140412042809971613627465805957429102800710087475031941824723620862376811302640416168152441095109472627495450360628245432133357188946883370002896372968482423958354527587038874562702544500421561454590867198024788932844412620807307255143569010817785960290179346843752692961201291398313534297080196807924007327242884027823171560220084292982599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23590982734479581913804635151707529042171821677806404292740220582536677190001966670175640123364612832512930453804604185527687746643020667352844754631700772746557612348441805178674582860656827503712060577768742611915245947489660631623695238812946950115045002197407252169114104778294221367804447251678533798667282110109640694412241750245515868959925816979327258630494138413322890001129234687818835795760354892252122765502428457710168821963139125506969190528190095849491955778175401617532360436512362217990429572043758804335503100710219137479639470370242105172546115305091115661087222665528621282000751181571401704996677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28815709674245390155299257094045105624702326889077092842547411144767146721802269935739952672853345074035729985489304272606717774403452703630302286337378054524560568198213580967207734319722060062443460755593370484873595334907370818189342641659782054798303640830516367663245620691364266145226338133505195011373494099363061706925951768455631759441024514445124168999583906763782714259280170062253604614942236792183297510295964290893369589297058997364883351778063541821832559525831815438102093373566123858479291969695727627622116671139811865651761744621123707317674302665297868494777834002065200133003175254920975091637259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23233108855905425483205832171005930254358575710557577942444270527881798460112649157122399864098498055507264016227108563903491787781910246121733447152125663562619588760608234309096937963984698480445216327395604575895552447804727155185864787178833088260133720332078183581455976033837380657072302602940066074400657778117859085475939198697584255951247448413695846451659240215494478714643027785694120079375446480093801494013537534404790424755049296054696082327433236853499262427675591655952072745815603122423465102814567590666051511380305659200488303392463970147432078427201889156444648401164069078581424522726291475352343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27780637099733714466553133055986589305551998480597444383671682516058588949932339233531657210435417273288951535298651472858004298905867113653825101112271987000607869865852365422636805803014365872411404178403563928053853195153017093786773752157964123308991213025263254886532511110859870187708161334214428829465399978056142796464136963275010150311663100797824542406743429662849428096637255413414102913513804446046448148328425467413607513497889778709133808383112701037387681800519097490938803850693225429112984491844310620257141264974080904958638572334870451510995868703986931416708410532345571348788777519069356298355953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26517329710250744617815283247072004824124923404966666436765235786942397842106401747364295920572844172062553112370117613209747541979988394504264360423864822467848310790081113042952011700029678581232841052187904753972310823924916636844922494018468865410462164774258426537619109308801887209782429475144220806091266609347292209944085119334758450984832335384905232757596036633548998648522482071365562423961845479752890886535081280304995296397992511302204647784493827082300503917638041718604855129203108534294551649272231282718243398741803805667571610882958867829968921226969005611791021707695439822355218691758396065557357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24951301782732787269408735505108924300901730794199160399096014455139521629445722448949151131165220480773960812038305502482795208234067222742828979821010555094914067080667733671580416960157764755618050253947299615812294848804708283709059593870311703322544741430645583620037880912383217453535892725177672539749580269647092617614410124270258966028224110760898464624771701721808709632248763197501335174930450511336973070767245230962034182113514194854430027661067001688235624771892677511715944044395552126081398277578403120546714756754550860457996273507362722460860630646611885942625085885708660031460882474195614934572333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21983712135010932008881445703161688327453587754680854537811396985622405872962133187026765499670444029154869552362727031161279113439697913322862824737342680602880723592409086045994997428010301613013518145214061589354726843559450903066613361820862724902294264987415818171765496398353707730303739772539598493670008818426558765843759455154151852511478819402463379780434026159272578378334197442947463279964271517517064125131639156998437396143333212258645341961554377902348551956187338064288631039489801072193361973007575259884210007515195665669920896156560608707038255573259779029032695854809952250402599815280033633382059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24584538649483680978868366165367064767160992693007736100579292692781239954171412058991892120371211328561615175507489243367491160486944912563876016008074140623917565409436082916814689384072728653390472274646686648553225035520502019216731167075442014528617781898688532525461680910090992980389632400234493758415768843702765526136657547159555726325289278984099489645140619247224085592829450681622477355834751926231561225053717406009607924602687314386886506199854289442660129658516758150341976061502641219462147704202631429202535762391739963488825376118948885670660560361218312627261189525313177416252738171535152704322867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24022272522053392784033862858681896258198929368814773875894051926573565361611707568159768891088126139240627333396115176441599681812536798652643228161280988120847702197063991728183666503122292816463713338164325427767253973008633513205688353650899800578597976327389400037404104954295389191252726118259523447771808622475570971867991215718339368488105379047030276433622912132759898236499996369819445685040381041223526112539009601693332649986061853213347731272386476238390787126584834569387463426162848151852566303761660891120526728049259242426139811203924091639207212684465022472827895271118974945215771186586428421452157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24570746854055089152027079408766444712922184951103180470372153905928064150513648907733378177930006973674205734054135175676434374314872483662803380161534539292914196406607830623562113297270584847577343576530773771862345676480032895125485671557819764940543856949138777635725717169297993341597463310267569412404117105360233679846598386844877105666853207936870999255035626746936933809697347418205006315324932169306466983302976233850464935538006734444504347080144834681081622840120211897425439323763585186971414989505937384088997475639238881432117838950307222359128514195175915762946809354929699179574558628827547044176303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24978748580676211954790175018318452723730503153178888198330257720653302165831533659397509573446581168941591494975521682413537507737358256296261095502890830106605434261031699571128135746886374108572749252138426067277832706829663059853793075999486167730273059526173580409950668803425016007809588520516178310969589361275635207867262110561292321415525974980190184340296622154566203742552535360412035760347768992841696470869444419151170525173137063956996089420923046820249525644568312087880495783451486725294595288323469784359997935290334116660970276269440950190965816608149774476841002589261484286711935678398300473452949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30335130348704577394615140989015136167017420211584703660565517164715699112983984342869983307644289474247361172866314711276966402630780434209259368902226405581170394848075372511038144257618848591216772773439348089156407506172504932700456514823991117631223350378462788939884972144143813852640471574039286210098612412059662170786508162667496778469379677683408423509225925321966421443011507239781486191535508076038123460863385162186036032940017270615999313009296084653795964624514428437475299274397020075434437505782718644457154912639307749804877794948822611847578913904555565585620222385579147105023842914619152444838803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21348589398119406410755521684771159375725992115418778983694562878155882893995089589819343366243408541664518446534587284085564925474639583376981530782758942059679533863328048941854867950484093493581971698878877689426346865597169934218149479351903718138386541516461848247782579309407386713882481763397344767647606643185247304525579727645557420807789038437670775238217322383714431744757229066756588628859570056635614912117052398534911485478849284369454905656072615044713592695731736171039299955895181655586165151741561118706358235913668392104077542284499718557123165418306762677375869464137462104540394300142237526205009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21153419601593588503972785922615780318614092633546483353260477351525607522708581331042960365279696283465354318455560120448036684789176716990211880418427325585616247748627768459673538950411635521003990116794534962715628435361011293059108415730322940160984110838237913864135522519646630856982249714677366336537611785357370213149622275992121269099823018814345168146973550562180041101556669759445232132660860799464195277802244370315675619831685376203103285681543298427252836224451167810162969172055843087119396628077374910619455651761939548739475830944438001242554056787461338106774759271807730077068964548208762242710483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28774397033804369760717969051093797940361729837144080875898174460909878615200729330056155467341161056791131137047611737525284417182326169590470432423407264985897666613411817158923628498893603470140250786250245437819291386266279400233230910113592248591946496209025320943724037285779704898934338812937907969369697265357269623831702188450708259440087709714199023380509049956814202813232927086906113441720101826687596364112911559680769622267271831811865452230706399961116196745145403490970531475340871977627714187856816567517030491141313553384744037919461582942519804263056628984922342808385699731421130205268577708446787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23080607685556077078516750414273780319696119290995917014891657129306655621820244874411296238964221576075623595928370277574185072939510009954066871394228134704643313777988132064151601913766129433974782571953357555214822114854776563205307951209252009270273554654738099813222839510409981184754135484210288642523292188606633989081040240534730863395716106627302049059959060408430231140143414292407052871634214117144440238553520030385981405668040762127837024075463099213018985455647878159038772402572390473502976942643781353853439682202111763817585475655555870024318477701230272781962017533581345747342202972273546714075909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21592436404210394414981313491147234799208377865821546003279202420707746422860374544012323654066547387290166296673868102095482540165194974007622581513198703991020844862084092504434401430485828454373834042617755440515807924696192243917040803335994172435155943845592009923637762117741253770767523447216243422792996038898643198330383275206469539576044961867664052117601362685803777381817888047401537568298456018284391258453599070962901061166746886485562231411098822023365207523680413326030787413435313794424326384077183448698860686382440121495245766206746240613628960449572509509787119374121997034997532375466671440397671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20721444087560799801176357769870270468128732014534697665022829374264227987429332094750508398890984763608577605408065339092271697569194718629417130550869178816170245198231227323491906588987073075178195335325022870915162969386551907794793993830407022120092545222233705875844269967925552945017860732200131626240849611876506550313704698221695752779941128010356383673241401629253079306710413608020786789982356963470148475082721801898885500048121515310847338278300232024745594247917344295361163978838246014084582072592735749169944106844202884370879162814640033149583274656842647341433621690528413812734138448192628268720637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25822607452020047715143520368838373761304818373633560971269451319244235548572915850326589824553301207839050874976972930947621485207022131279907168056954066782491056698680255050198650831977591294802196707169739225281565597537913330351441843953657880384421681134514211379591273290987666450787634189766865496305205140859725986157213995658126414499505877250110827565334069685848404012434025943789066289168893619796691671873249033939947456932921225932716144184281581009038064429891791704268888772123166821389198792897635602746851905672881144928790682670347611928684138677175626417487236179880567780783690077708246199564241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29362386576778353338341090946064898995063642006306812751284172189138429579982114775112498785281287534230804069580522587708767371318391069434355178860305918436871295831407066309539715817352551681974679822598001281226247051259313413013736685413836873312681899970426210034204261313362213390336041359319582555668191878373703508632977546685043881807825145774974217787930265404024960198899541583841457845447462666293919480952717654718367078321208912923462873550767876071623928299306411137142035548357297257034062095497270181409822037568208577900288677740935132183005899146373591613844609676025488306332023118202762680078627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27753307599373416914612286714378703576171765113056088683744264645876077800758403352778362014561516733127338965235384511554103706093959948783380356109822539835760166217856051798790874599895020644190438753257005457003760613566637058866501529904317377323564399867516771907373711090581964182047425609534821298188970648474251300783513257543752525132438536370170913485414519212530944017832442342628081378080188851561029465676097131413040186509112070846806188950372262339247160218489519421556643826795874930682716901780418989672964864784271795980724958029866400218372367942528176920106079197598575016794899629708299108985301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29879706337613146838191699329849457842831754591542111142151203719696204949194934402755936108882523681715795935444580617583145877603647285986913199309160666132147929271571722609412016842762169032636639562904386943571247652424172955073484835781299916814039418467259713351686111825877553988925477764715012390008106609144218690401714628084540030976395184316847385517134570979018173671869019981079317868839900162496453752287209439920026315496770616244729022459184163647033425811831268726968236463398663061152775745125861141001819142418315036124485660804880123418695341579869143070832095903318263735426035774906128098430301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22136189049147069340872669043555078478594845708551809319836608910348493932329816924390739406995036684603001683751160259538783856592179700571008788650164519232044959551463903137951127398362916323405216225622422725975203027402987885770224337637408612147331739449163784367236680844701901928761722975971530298344549718106288934132127919110643315960159275704312344866285998297678638313395337420007824074978345349892428076486573282491614267185600108358120389223162570643248816560268079814551006570850271772950707492988624864506584152667984227349749269790972004002469441779165228486381093030576506049564815174855461068094247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24878047535129736845296418385947767148373205321604893519758925142326993931336412990589174183932475024847625041342702205254998804627546233863623837560181380895511496652276088765457796701174357630116591387701121491163591128696660925283642588634027598065767207188776103711826578539749898669272569943098903552889543440686509843249950416561982166522586379414243115793639375960652801684640488390492076875894445502742981516428851179618269405958488580580452013714736338634541925403422704991322008946703119566758871155098995589196880862869200433526632337779094085129664863433044965046323689480885002218722862658062987505743471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24106514794835958436782072283833856978441944158706089311071828496891429794892904443864823810288587946449608937073349520106456168952999563478154246217841070341295690080402912306558879829214565325932449919739759438961110796617263122925788633848906083110726557989019089312540270519449821514942003981574302102864127541120742075407771150456220022646595796091839410716147426334224012860615412733462775809486689549938226518073943814892622406227254631903622320344537133698879690795513982830050842144703372362322437130700841037608955862134153864416676602301306438577707102164323726643906814578920441495510447149829130411683619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25247826384540106650600895967396869132495315297328998268959978344926667308702055326105848161510628514109571423551741191199665418963729963085973598019406149321613541515146723326352500294929984459624570554842744267634684459229946809678866685613021702760984594482655478421245983709568637273483895598831898858591810915710934256112228452266172339317300177092525554311168143388702848767397380765811771583819351781223721996143077959534522673949749422877741192472388366275036023184559242802475326482949016822128645116538720792363971681351289387568859111667001061864716516224374587493918649699439925151445141959096463510997503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27654330171215631315343599659496312289356709971514920034813570262702100571136893628439179653161663527337939795108463444140813059165503017650006449940894102345866627505220955309460893317430857940826479631055556498196228042854382340702103295787605165927870316358472077136878832607407122274672950478752327159384515524911549720641235897659570847238167797234157999787770896720043994609071875577249926012833970930089413336116250791934916529168281598442904650432486307528772186363669709189681186042327241713720060767205855283556006769926648693125480716524316149215998379617672770027304859976710546119970385461107763824545659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22568416405501441232539567530165141873643744520924839660749551424779597877048851326620046695026149798982004189680682289343295478548429747127907787836551026875438095079616606080960725307770120092039341698936258893883717572124676329326587661919421419857495813140884277674151150016739470534221445701651979614596401055787589967275082543670639339654616816575724273248098929205525450634512236626307536762216671766063770147989036661967806589975299651543817199888035727506917320708707058585316390256778336702075983614041284143567339050984907452398751671992678440135125538791901346444446956355200833686913118221884758312049563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24553631481498050287312477295287256604635978428197702334991661527919887035596410951855192357023689918779328119798932081177564005940540342349890315843453725969231333304487407037037679911977381056190758786846434306285114006116373050567918270677690451233821758862282728524968407333710305252540355631555754435132073253694489200126957363872335671262669698842310731334487887306355896915415329855775062370387859180075109146338386472691455638552097331705167146293991716269902711389189452564295096285233171918354781906519160476749035652554844265778720491257262265324534943966454969550017759458568246707571845501637797692509807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27754810965325867982270383417715975696504893726544751444486959428796953399434708680467865314046619040599152429723733037012964966756213437501409483480873493116726865010279332207552893619637470325483223047653547990751799420153902450609866985582048686999920952606999422226924813581586530796349704930988834136221159319239531800642469152360050867878969645051438194019497382726315483147185026873726494897294905580763484750634229283189047291370439782749254176556244940406031306603026676830087644308967061047489029991944133580247118567241013068261224348777637081432219749245450923106400669018652895595335859966410097445562301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22408953062815298233128695271653626048995491451406580451992579458858310329298749634683970021243491436860564334636144585244245873162647310669145482520712223970069024566840778759807396586100557102829785779395404085794454131962333483327779120128609668299316592485958929196246048633345251599100329059542704108944237277696286690186228519885749642670233414777320038330896916734123595704939515301570883666741374629166493632289098010946463512350229143015669261555363014055989361850401526637136582990986458928099515208012053171872112545541739122618598409885890616475073318909308460260660615470040643888141218574448851909714113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26417190950020810695297104889852569267478777233338092835071766043008593314590143762340413876472441940641621666075727690477784536300224618649723633967555961508663753291852550568336390110317381942346182956637972377351139303657168675351965764900845023211128182746646960330559123521783572292877673059676576724676230656181381365645084444939695485283474651996504868833861208827261274805343591708195339839060339738137987204352366373119413332738136599298015887881547787329684108236009646431453067285337703875684624108750660812815541262477192795370136639443730683987395699287057852796298359102007584270691548184534833765714327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26483725622393025534385573722969134113940634711511603104782321372696658479087938455933474491665214789129106268011419233976905564702301434676869530422730895690311905854084836167495927815033802507404447320778431375222391863013733465421863568447826384952435746614271326841878969787473862771378257518246402640559602697105161354146142715658101633331174842705949017045517779394951196672382495486362627834957259366414253797709758739535712713935575607793450079319305643977980407216489963912867528332770761717961040987208573229326311610098392618273086165064068124631898711409613807389933189769265155663575134939952662051565017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28824857895843434087016588942914744086681170432213482597967607197101866247912553551170968858380078967818834627000715620533285587962837934895099807337098994772381973652376130676162063671835637082668224650401033210675671837466378916720343054467554865029673542330001454384000449342396431415280149768797386760157206910188718609007565765118058972521512666138702981490860362916226191113349309327845596325943386189573753969062470912561758102720387261701977335788252728098382347600266014621077046384503376278930799240035495782177939330307294110967305281872558234466299400335574404984949516455092885482133085238185197051488263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24171988489449638013526091397327226055589814543442210149180969216577880983965314625800878513374945116162042600234039039878645182573237406884604177191786245152427915134110824531568588201845481551837323523999407339876857497696278922053678330069316295615283104859673045827686319634819180528058244723403099177505293425568752254271573990625255208104135729353499628168952527915163931195235916146797550616292591955919957272546665459610261282706034173276053807210750719964378236681804714759266878933482498734902160829799889263313453675548204595646044219852773320996531506129576229882714806923174135815815826902826912067477271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25733286388131394557806779249296958398668522327952921309328755603367469424776113951932161628598534271295002279975930351007241123190526128974320546621712562922011977570865062400801429359039651789270431127302725248654888095510587676060172677472977334846992525156624761547880236955477203945531027412237790789983237094937672866367862064732206629362144899701504589146502267748998299235420014862800553631286013618843968239401414488057627447856229104679471413946186565020298703155073940260232165060911154922961589760897857434215538478277052012517439768634007139675099422974696293816591844886104919393841710118228918087357209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22090701476290685403306893410248033555130924611608232490859245419670066516822155325577622360832577960534503554277900167802631571267924399648753729832160438125400595383521855371015755518633219648575403359160918356727331498346971940047195965973076462190112578128762197647040845066632867550986822065717815618966648328294561041816277189003103874990329030282947855961733399262853995842522305744319003620599669424018855412805352669028468888699110470894955238493677674674339725166312509680951390987632621075583292945803817935935966022641791155702435428119289206172422190770399663531784964203285174849422754776232473717854049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24889923020368214777970905884568561201490220095601404851477075653627413835792023781941418995776114027369506239871217003031116970608193208778328652656001846650767055816060235393769080229162871097686306035769385736589278228814906074704493273639037960177887934237007164309312714651241446882996799039585589736286987426250294048471078705719198891138773316230923277498933879783434094475334256070442778541696400772607285534077853588702231304408393499550599622659787746628307730806405487708902052972618780444701788477523300154664015183761801537642419500453700561638276176347504281094157189912826839718629154558759826203665977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18732568616414879865933730065851478471653837428623691120029745893540082630326449512874536812581452966192678827954879266157013602714311547933845581449339101663159700791355692751489105733507662436962621136614471858263323957373045173116098484071125340154359940772345416639374113127629953924600556009131107534766660468212718661238541706530807079748681972289606862626738902769873475895624161553162920964284349807793714078619337302236404143723116706664855788595737046258500548663004397631265267413943841485382382889954863820522490069772046531888850275812732831027295917164980372990865747872228252075344157832157635941820329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27511275025506337805901648727717993656632680839999493597150984769455704995039485963002479428382690244239811445974743928038508877366917200209954468872239752784013523306611166773922970423298504899283904766714104007535163807869136643075769441928885642775238476455537625856565339705513928939013869778926825827754733401409739583898433129994668176726705586354367034223454283256094388361183323202973400863854438638857681282413412910313130503645078238033118922967197983241480271770321418024395544140945665626857459744411476558036477007994483422387389518660247189152830983636257902006929539735510080889377722622992937561915207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25224541969481240675250320428278381278450004984395850839178769245219211331946811048165924486342952903287573067649087281266797984481392518596115704510034708669961214003042065749856116552334052778977010845349492556549775791519222511440381547477054514464259994104278785618669232727599788764907345712276559711548700297863983484660502312592267518257206681730307664763171796758147159330326879111224597064151540613176069980561415666046846818998595745984132510293940765205656541284884445070375984832635281914486064721886993855772990425789299119906390653501421964190220391420168329360807964457028424586649019110417333161618463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27445296464664083473338377522447080022312345486588685594567066585451750312224566056065524142100342897821264925651893890889281806039187997969405617776856091569868000290100707044760468680770679022048123154170312344158141665483893419565732970992159384878579920348265353222720361789638292456537168386443608589036623626995486963846662904230189603848134221045814297427401555178525314633457148015281216387126728137595011634377554815452631115922288477408543979375472712731694047199837740498521594440255381290042700997136322671046281708319979746145222916904215181351332498552307480497331555574459920730209207351045012475955689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31716946515722452804387067861731964589085390929442310224997714849417744087636971881182770242604923814788047646435633564041780611498295955626049418001855598737711630359697418276022924893692060123069207023574094793777574290971110355922002735392205412439399542783804237556784301627256561229911639341863673891282001671916423896859472719330525503992879791923227671432682098654279118333793565898697594825255690469586332033990544783469206334444524538695698658079359803997578909894397625850367986068779128945668703917567673312862365799243207301657290146052777087261613980887824787917346348152347176274181808199603288344964229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27687190406821453351244436237144691282727698501315839523381331257728750410324585907615864837302793023403403827711243596303816724882919929917401437322476363392729155670913604531138455246310114261960288088467648064766643867395022216697461362258347279953316444998444586177816443110938997863628005653839808322155963918859987644264868169214398848163777006821854262652310548623428424801026803379282895198929006797082426756432358911117561272120859647504413087969233428611077904673626709290240868735725018907436615845378238805111723475920391575335001899792560911756262158637139658080683080923221477909059909076713352870133589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21873340006344028435529977467864761113510485843525946158125065622266059649515677979061763160542115998028472211704897453841702411899561215363007893709625051723138681947888038060596482765135171675233273460969547324677709655521269906983045840623654769856981459993956480646305297016389239391797857354868858094279359384354397345918773471790871372354252595357718533085984394868699184650390034292379602560312278518355048866806120631610140424153225578610139961189357704833546069615765472161213885234218522850671760520121577045687351935384182559387466059396517558316380139649047710419795885324154067336586707688066812290569469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29241476973836509759616474775828637632116114663322113672575800547181060636166902480742746686117848967046680455401020073547929792657136622582899362316150449351015804082777385014699417650251829018600682766478497533607336864943144605689157727540526570250269375260318154933378990052512973912447116412055240632350397549737856961810116991877202243716932690678112730352162756884213782268993473635598726645806548040610953251847532368561600123004503708981901891292879570766698413334627552983962418599327505875230503424509844174452643302452373052072249343569846608729448385524209154699256630835445975971541437735762392111753063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23788745864786327089755401729758306049048219727922057325954677159648931632560825902216229447134807086452461659260725822363936021832138727775308699841118028654209201344710400248126880980626011012543079513714551443381188705805832704054614218132829957426539562198576607813162143049673738384353107078484318624513043044478274102341986978639310747472277290291724831480104187545119292493594719490000383227105078580053537384379984472169201140604028078573751550401663893535912869986480765042177648641876354667369975619184595260814318096227781420416105600640642883551318649457192685013130827340408444821812859005004580158115871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24382396279943612982881141544806920216389151792606420496915100295726027270506539965442121991216604818148099438836772517173318561640590992899013130993953465204519336579781728192277526471723729134291427900086453207235553532309260418769844814328255949490212570687199956544523156520295084294201316893899592082621944566967830512795334526087450408095387882175810092130408444330963621841678407905329945605308961701184449976503640341256681564630440355931365633485307480195883779685912024695885432507851963962321919644151873689594884899340797347203527679387621411784644064310803329093793217474829235078857504341175299733442769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24246909349872835320512389141040804806033322150348726810382669873375646539313528126772866624799025588695099414944081236751054349489389059334212129709448636221314510922824902861509649378570866884600465278205670663619135683962790482626972459713901113388871428741812078382423617537734019695972919025256774527740152079120083307043205722468356658673724489551705814540096293882160796003348409096539997807972109888562415334521148396510147890802946144619122752643358453651401874343109572537151430795344754003911263228923017935983180379818028432467141885825734725254949146759653155996916369013337917229775655502429853500146577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31975013010296436636969667003792338954229002422091708350491829353946659343923488264004695314457784519443796806872235239228268948294036753596931358143735470771623256522524885317075221934003407136025479658851339095540017913439553965887830142815032489368973890208329979767882234855586587933441202736061918910223970200612498128662796085758309346806052684832173052399723648353861251348135142807418515620354514307661073830388535091566812025340758659493547820261547042629367199925934395521937631722535185849642314410251296339746281291532976937325110319904275073462511050144999757160154394856564166333578634949850572802440483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23781922874153656729546623705080817870288933211608638779998187437829282472114599157117070561879774219470048001355992757407427168124445736772584672886224551224757974504647718705038686657210104119236630969335377952281477220054269305511497560506283383831678020680691414583313612916917886742465812045134961866559376090305199317318310348035869572939864001136476094191452740211090053934285090960623902683166055911308432589778117066560878427368851334692705856143746783902419049766306771784552988303657007341184105636568136791635475599905061687166794021513551717991180463300779506848652684194988978230984656532955602654279457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29713045199574355766997090838187754315448323446681191164790449824454552308040303323095177175460805179901718802256309293585136730853153026541802487617220641965671071857079668551203655449411760131198751074812028050014372953385875206669194834462671735727724118926666669298473014324157832532954859483496238609130397296883291912789823998644449441177911347610930823243037731104291847637066307812139776205311181269763154241757898460515550524010068319343587958939363252055486654569916861995743504585308463669507385543476121470112316844606576564658268418676772532821390091075539647804732284270982350056002682056825761891531881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25696091168023233876697841829412943071906416346125083857988817322612192384543308769040831825226404593683292960324648483401642084605401173689128223863838513304968523942287156254705774773318345486927190844259925260692498478896921294448930257780807360063704699643402301343386089232354149901835157868071593450821531897918464314900056843580877605854000556776099821774601203783571848301791745904678595110175119995643019700472039940095321640565070914920288530915978931140957523796060360202392327383848871965770817287222813437290870406379022306798198948598240051818210251761310567581875917451309513218093962564157014740028627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24385745817824284892733201124639113451052347922512306974999716974142401511355758562504325501624661190958119682660556432120928909341082584443377415573411004679992696678842398534982496270874374686606578303521421558031665644668582899682864997845077067954867963888000142872125377422823093954053054343033546277875168164115876540380969206252408672960977298535799599047468374550366423752293777446851421813862688326575076470322755798042406845624986318920977018659137100371176406915320726680276665675100276117446265476641634895453271028917184571768933627655208182896895926498279220326208021133799771666911443741904360387569319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22574564873087588473995356210440492075629061623452138749640596591872336448321294976057545333047077986993430760379287643145744892207189641574510551681962903749430397637637308345787785848211176825116275695063677933980599384846960247783825128952084458060075034480641297983004658897601166393224936476589367072080573687616747431305474907784120473299508022709235696936771874811316277371337750807485416174319999702648470555858598503059627122957363294200205802053699082277555294629810168731352119988958905942279117625979760845031250867495449862358228110496422943144558797614880321762202150216079757407690892830594571769341253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23821133358178619882340039833203154352040168590761685777386334198964342289523637816759635304973733288491906180766541018799705926658211593279296114359698628910350246047892414999102552386630026766358149820511246454303456182746165777126935416558665705359027099595041199051615084401592973527033077703414871119377584545971925492932359975105606121378632890734249836745542298938752082531579895984306721349254520568624276762918706437016865792138233180071083349780605065969176348455588799359147185787763671562419347975956657766585693079933301778930132891861457644864954368069664302764676043589395765492451150985899564922385769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26652924467148392960549772077773437927008386299386328137909440613110916832463888622275050107248272171462732106257425850895720098649158968635282298013388938647547491628340766643711875491373985504582300757578285419981748186510966428268926299783726957674642811433855976411076447240338284414459037800511887497070809097237117354242249551004989712575062671184721068779453245260743005420407251228017561283571761902982684170679628566140930807384385160717415290704700218404044163358915625716620142518084932985315374771107416940362011766629285078719776703217514550843795976522325188501571862352307384975706069483899300892977499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22859213589438917805420918191662151130778952793398109913673055622322103522734454373208910063609569692581256000257274441441370262157884657062251319598152300565341958592087260460506393469452876667611860554006363872067591142202984580839391002277306064361378451576475434971992619318958944760002879967725243789884713840891029985547374490111252439170971636662853674187736896990982728515517748926041925698501357318687954703758064731993430685896151351762730323146693644083828458969389826667471896137532747782154014101089991516335856923568580578981256184207820953477695724126324514494922437967040791281662559046642575154528087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24286612213960567932508527183665873176516149798703618031444214935286352089724155667142452593149626854479277421846936831809942596241806341022144961163280415326499781135174294180528840555676186249720808476122483283803504128182193132300746762103806773040069786525584134691960527567938304556042630262178505285119355359353012152252593437298155633242744131821476610846887520722957699192409402529662230580938366940055829281346649728335407945482424434942530341677548985062589534782160204485697289399595155666407287361818724617520547870960669057627656293879467012450545881549172419832288794018715191656267764154156256764011733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22189812008966230215674824194425321605789698080386052480835278779251308947262073879697134764818203173656613378813990752759360171512051791821403582968600546765798928705467031342718988527710425326930834868304212668802657078784939389781297384981066075174790669265466874729224398062951444422257024120272645241905029248972979177662053169868907502377158923213533708688852889803511466478193536820567953438522661156078897331129473371295999062050602773636934865662637908936312792129204413588703731973779392856542545257764480846823163978877318551741535047420051258202335081753101324010203966425369867444973631312369951713767367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25624248740472149157536544361150865578906827542331618546443386613567609490310176536070691190424976573025145610790573309348233875439090653534046244663069353376056129562193011438511480188199444983266419502782840771994869877832730004159867755503317499801652002904167936021864451652812148943690191567541863860324159655165331182256000352709750186227639220780177106116366862134840912798530474433356107868724639630440903959262109205918452793041506574953665863260994213055425122521156042848716762687316456345664267877306151595744729232293542811121910580155069162864407970919712778604742005562214017863816482625052731012985793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24344661563050962082441779183786355585795612764701284434724500992094842345254465742543762840943587842152329742666087007344553906054887421830048172800056753665731290387903172762008483157830597338566600632093764264707128387105679838388421380149049501133399793245537422983476410889557632031611471149782542293095902752882763930083681871378670848326331592098049573514010068144289675682911254039393267222566123329001558951100111621514918420643865571375083389787128687040237161135261374838494116608828264867645991690535538330188291212657493146252616493002661158927334153872222611418401472538581439176398319940409634531831651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26160947209550378840245260756328457720429455501977982160921893445889117383057193412254065900715449657157370663706164534563974710258500023086995752194276563274738150146910636758553382451232317254730994001399947410882124675970516406665736533649540063691708733939778572248050564286499920181990937743265984611118373960174860681809131241608034760778181250754048381981031906232483581422509692553148027602416405145465932358100981952692644317609575322594209432883532349364264953681950332636788343098569573784513498095464222130189686115686148374738362194470184857920460651942831715488476889628641614036868659508497446742258859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22663416764884855518538967692412377121304281225972387323968024821384024416862862973003039797725813279430662494047352273042695169039848038468544723187096430895352304871143194201905071945225815168287203223855702691151490316782219311132683844076940181175777235823660542325760567709198484459871615229843298781498079916741474880253456272265085123894212475433786125231060186184236192702613057947879933560830967686253153376302657886344735668406611917179543118611828790372315354404904124504798453193684883279155892356133870438478936216931035819766720960981142978932504324001096898335891483389177566283918939100622438483603737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28534724918215132592692292289987290266040301411051543657431733589099741238044800187049696428007450054972997123047667750610779480781170145959477279370621225026135465306737143474690006374633386922994967950556201668366667747484305729518011842823923147810058042183263206583229734366242015851325389842434939520092249340878574918044994432673407589770619966829071611242009459718789937392866530681772342288199793474089512534802063353642045885361201229119066993615087804082712499843612872969392062284754025814385082018712251494547320283760589398068795450468606491345345223920799407892440093829861187164432145990562274739466461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24635326375918771359234407927138545887244873975525038973164689373869436992100558715321227950044034180026568870660173199540685394656593195602735248970970759938309758587933195464872521818149635482480533462562183979240270583745559726679464603914049736133504923948697267275682574436344806316860870127583528251969723748862908509990445276289080732315427309952312844971237159651994096539846206691335674093557476358988904016607593957407453755193658791264819982316883396317918908762600540152800266439905873079192183002644445949642994374206610473052137935097199349681269961249723450124521562758544603408972974429688158319326553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30356010651488367434170196014324098329229906231814628270550274146970013683477915049682268668030428508030748823846823406948239689779506043255405813023434288514996857921139114578437605223938541021352745717035586881060403126496239903698991674034599217640167457422189924666332527653996585024517191677926234007075501890714110184066312731731666236011374925281535296735551340951693272922813558403466038688324207581298567899629075356311770394324279175225569645889109515534845341226138371886154769532342903926062352449935118718767790601358498454562977524517899143926315059414711623994381592081423582197907355698278422621333829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23657831344286151183761229194806252955797322239013606494547051036923565577538762346744613578280441554172754163124323372288775523520743072789849772997272937252762860319470234558604755120732907759865565380623299142482429399818588112591199518027314595534248512539643522331610793068948231987480042191108396913985871796216931564788695269344259716031873506411956382713480870379927148857745750086986380226419220249337080631661555230656489144484913085938573977618273607555264816766981888607723508813631166332415753171162733048329200460571605091655845619354450466265541288752987335066429081687913309717246616048242627047193407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25535879152207957458319761695847102346082183088703129034259332471739256734911211001369954219591367436826302494899958554915437602171003687055618139814688159506658973124108604329427405640416627943083743463255532920690898703414408855465233774517875950839347774722452061989583608058952816411706101225109249609995619405004674513603966529447182934894668049298802962766299827673740541407567546808352724945877939929843678751817133026061396538086301659995581890286816779147703438815643409416071384957411068710829548498724889519134240382221534340989934129309604691498253987540988920847559746510101965229467473722243890285450693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30157397249823716833302728628985435139174405349564655052388040923459637916593529443525193401896606601168508406337009920331485149986054949235641234504309812728210657103658095258888894310829140918015614335033741739520894242208617690521381257539226848424382566909188766759752572981444215817976964148810298475585076582601505471624360974415080812851813811899412519898026620844031515253244365547946529815463498808093904292993647045250794165553911706740580800211100653402067744590306147060253554053325517622123118216585242822485933395159980770650901327936399782716607262947840460401473755918708659101844424783804872800355013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24634497053090251365103843194097091834193007773534639426034382769333121816392596651487947830737278842558005814867867131384149382312296641247442601833916561903806768066059089688490367487941810965411292258652070743856007095488540576600374853445889518743922253843525029618495308884629963930774882557459487516730148919928508105137132560888115122585708848751290210851744612081504179723189570859542769608627726798728280609645764760872375438367525614600534410777021604291704771554488975074469754796941992865031048654276955975868488457026121343671908347912518642313768243034287274048049801760403388079170837114403693402376951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26274821064066752545847192885213991789891083072499230786618413622432493138483541324160014797440917942400873281505591197497221318707380149622905082071688205340057712333551762380602060980328619706120614380008198200234377321775445260006031730598332922511628772710083800883687901623125109093768654998947578268350495904004123340789646123389079783867053671054065600359445384011220968464831860334188758245406581158335376417490909108512078681347877285352654003148544875559960202483011729076650835776891821960225551453178612627162378643500850914235905060563012436132248166516994529293506479978774105885616582240871998985071473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22177150398568211735921001265368577612498118012331720863133716971174919087639716450721737395291074637119263421517497813528677648564118146286971390624262945210730596538231727699821041018057572976823718319206257789177808087380169378611099977803530028097456891504089178100221675000860824378116031204539509347911407141256293010821096635215689324965495614395635512990735632107921400634165718695378877928084498775277436618473515776449861305557369342214335702916457030216579318648433821190464057972153252147846505353386543630898124023603220901436928633064616909770605044662633767204336350619050757593681559879443982433355331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26614362078364501817506227129157656238293641370543084179278385419837806741422487301418340026586924411205975397793064266555095614213078524368625590464727826250540675665064693241752288463186006202739081232799538498241690506375320412889548055848614962464471659491176223477115132630159341423033140103666372251696607625517151416457915653909324840980496574041228799498871597105981242285118237072628844686638699440944932387168245738227370885494531460730863584648342054443293972850146823184695754868641131980585104684651615703352627878709644190292260428434643981933648908034078835878420333518697331480512530620032244787770187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24748078209492888139846075971400065360225501103683819706339236067028330355450575389548968119869916976852397572097250479686798056715831251635733750458586965894035340836575347349620703734936012212134892988808881021358044336207509600404806305363150604446393547188930912947952284790469108301677345803316700883067303120450051952841891827960439226000817947848533264474720887562069462819056928108818899700046114951989070152552809305261963516393678123248012215078502175108436380064185875038835765162697218539585448528434012378866448056602671139304070982546261076049079433945493001149643191509729489636927760813536436436633337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19558962855121049857627316521238638715851537289478058234554431383020822763341976846896563838045183849612574428536097771526364977299993438285549657547205896592961699191140375759663265113610139902957236810083151668428531023293033642371831083103891795026755943360655005511073859971813006264663968193829335586538929796641134897960947818444862871036751122894423053986604670815827430090731382786906911089787853710389706097659148297831275528107940742972737816928828852365930378672428381772284070626898094714072785924228440001328856699754624971419611515682511548254032581322620257581574415126393095668418328457336839046943503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18807532258088203044184529752910477330890222342922444162239099208519538766197512722189611312722004881228409777629462323637094808278571894440775618361441278596652501159245341733128941772841036012717600274489027646039898637664530500974367407041214090890265446487113894681603339087600998479077631395822939335010045103903495651263644801744860410270706364509736744280514487060578078938760945856158472616059913235544332115253434886756233569291694960394200744048694891237974823975105157499936992720507231189141685484600497506288900746180458120939747521962910061658492721818187809304256214164190142659483664657483046388483847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29159571652369349813301973824822659198180690368246342198205878255976739455606163596016712833646030851166701109593608320781590160403556515103044730166865487445573634031926403027983959479689627874015477881703149390396765248289924233417151912838247381128151569830817315823788739188155196739137375145839361680707505359375360608087324506081015066597236975328550206841118872852454400337477895933062447068996105696717092923688424994967651327803502701860453278923802768791153560596464653606906046141530581267244022933354333307145523709724194248898146950124198920721987076104615050031853147703093495677808387870573008849955963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23999206651288942752836990269254990737224570289957746282446098901185001016944299790607225898137500436590925442181968784610898899288168205643819787015043622179515876646358696143136866198991341948257144854011356574342557220023218447139946687086479230802789940250421830095676595058216499312953164490946908008104559672938008638080292014588639197098604797065211076562214564995034047299497546871414138943949103063728220396143272524732683864051555421673518681752400809966802529709597546964188800369827652566291598293978467756665266523164771507563894671386016098852687785323661954797134953312016905339393787248567508041635351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28886296009875963373150098540961806586348889836026879617759806863049868519236203515790963608945071914396138635735893491260947413835570257718595373094065658071433494106657413431362521314780416345544651605910013582818076705802239866662608056416270893324225134580853802565580251050683370147820543201895645852543140892044969700125938325380140512221259130306272288564616821755171062669747680164812720321347668052140275289919778923450676366179075351332265757396773917756366399233331827682657167575480554131577839096218824938347446441894482301794876947978662605930543670673558073525952229757623413785393759508792003893472711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28128591426756240780907674642329654956041235629394349872775853119476210566700866818815943682992305825340655704056525341683883924007343554581651905623450565470014613032292994916609783241514631112481006908617080442297211948630295144661534684800243855917465875477634909494730972643801838107230494220604058851566492212831685171822027953757942082415495217215203407446976711521247690862265145584671900471993142155475533186885645878112514958384503751520701269963677634570806193393103414483944423103682453372111218615587014628681078086448682024809271399825951923723549059207740729952101096580084646833498026969896014342010361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20571379881415695394980198440813064054083706296240307915356295020712404624251039544683741865542138246191205297608887220279079787350583038990246789790119104551161921273091995350565291667091613971253308654561219451735199593081928747783666254924252023011178267210019452956195907869136191892703176079136850206084393324896353072098179879331574197122125779241449096444903547796891235199810603562310675336498479922384230335460269354976883245584724296595653722965998902184124115872867615921429765122483529468935407361507002987691138648927591140976633760470229412228213951529633040652578165616980769363257301978080637435759363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23251316150186162790940424628647399456705128640425448961493234513257939959349561727245184322769337235351900428291483519086858157535045503028767187438765776496600630627651550578977027266022012016301065805937337426260227325774665811328608305218343586229150095202583718893826192023344511209011698793233756388771275338489565084303963979092671677008871150891104513709694869139364302866008681068248156566820742043513865693415317499609843739042041510804926707480848135669526145594318125184525607394649182156502533045011851540889211112674599518075567215546683756124724288983007557528642265495513318934622197247077932612111823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27368218252848137901796190797080873901680778416168673173059879636592379588686829943779711502138669688173996513569829722212179375568691112037249472843062977165811146068291442089590144143386822371850389488238640506992666770045618980700271351986236217570635778746033963944544389519738578229524498223006407502174260282656586281312586701461979751882356455856267451645599101572879909881599466500954307803592100313899307348234516393807055244074051377097832255478021181470994390329803832016779729313173186808678302336449114209651723334094490300229637217387167177448476380981652417264903962960916226431182652330458048426989697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23441913825755852492047944124378094629383188320566647606317123245976167910240497781475912290486786168639918256699527457946757215199853391401043858218496245753869962458683323807397794298305746665601495615872830160489105131102075822077405392775662833909071922216218385120264280269136358363657288794245296928541191508806501721878680671576008282810455071794931828387203595389571995120785646687426995105833636144620365830771475204329641299134082658502133450907981433981430689799090874066506710860485823052458869762066297662722795380481100964994943045391925579200766921475460113148353194157416318449986560869299347630451493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30541080435050625249997854233730524568199523547173986524292961542541983709115881440852634957331512032352635505348549070503650690950945257223184659917326389681820993589819218227160958904466213572731804928013866512053190257333382975936889214056106091418753799250223279946548387848586173712960840587537727187884441034922875920932135543686205566617255867372918129257933771527566847203011344749223615485115891516680247035173338892835189352100235417703929379875106740598405255830434007204064187249411135977985828851726768716683139594261820162130855988439912211666506702116235259645841682545800037660061888802751180867715253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25270659767835405701929665451112862981499848950303031953044037988383294035977315950920851264182251910354166911742160893663869123671644376784959975506790578621128944275338075546646599906503859592693430600053042472093278523316554216846345307835788257959066648192763532238523860161985418546699280181738829063083611566641011337524354504879588618371666817360929300314184710135721749519299283546021375788085192908354673706009184239588064456234549604448887369789768888461103971562637793918451152689787886183665087780908096644087857402156933546384504296156488302818017420050329792006529944288484784564051457679296746316991551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23433109020461943846748441869655875289857973479192776719684643438324145175553104147585440321756250694920216518100983238308637190451663976863170190234737977497557695964491027948419191680594536658058557877001731441267525125124189925764504510686371943554011843190945929818518635977750080407140030613215393460318292022507486958559535519732056688551623705711693567828141024249750108190578585363595922038247579243987062514563160006430267783907743145520912662021678634208788928829214778840877216379763012573473366243637588908800810982117841348996398635085614456829122188795924312148131693080324706899699858543089132736724887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23276646271580104886696013290911571953736706897498837363150077513509420773888705559707046783210634045341578581813975160670828631684811442463996264734664115780195333552278345747033110432584715414526712675300320564781133820896407687060137897712128544313667938647230862618026939865104907007927690955762605293632393485303529403732561189782252539646832983659766123521783711330748873814929727694290980469224587071796009840452398800816695153636054995870999253609459714159270102580099302012992247452157980489613247755100734308956596550029610120040854328506239907361985186694977518575885697857821817538624235784330440812601193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26278539739560247752433465383434475609954993528733083584410859969097056648965173618087988910900206003066217053404653938719237835246102475396404062583399991773259429757982094158644141648273074812347914272221617411210791712015429264913016350055104352460976110890627622518310510725757600951505934747522373059186790679202714389398159608543557243669099718579502292475575414126658297829897359329585935197153227655596035285371331739464760999904764724780005363687928113580924534878133788883890814952201050055350393562144220667813534983863269048019954535435986604505848917171772170687350875602566738028763627722717813635688389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28197548680568258853436165292171510025815409295777831121140124570296627851232996261915032314560853856276131530360334806674707969777508141054880375569593429886952507391852698327519008104851218524279249350631107674225848267391382977675747483072856454546557533036995593467452682130201523738582567502124518388240542680938353170708777622917512354905376798646011716944435015729269968201379955488378583790450736352133801965581651653046696303300433458617967668587449710902771484730096113488313862447560048010097628325464410877705790516130240654258267962702700621056286954247976999073796378958510501679966203662477061367430931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23102366475692149355198603211657584737565970695133645474736866296649891256856931897999761927143950807263184767291462135845191911856630092880833026145862002091867375539673034087661778096129489084142680295335767902688774799063519232756213421727468574252539719095663995945823347856996694383947965820635924533449290776154478149041444108594340073466922492922787145102083158939163369593954367838693484948545934555771894126887834252864512709266890262405960607329951356642702016875745504141225718963794028157235302951879144849485194366298312085707939146687367026484336503511582497780164317732076506968445899336881179747899069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23379425135718360253494127924992046184801351022265322903500406145070304592305903269566235649981357366909203096445206391078316217472524243267533561232264225714988594949048912461081936303936142257336512346109018951509598263851447881996120595726873872276935689109419718729845577944998231970811875971984402163370270749454848113177219098258141617355746911377988014918485670062316033309631583237543456307443384324438421008172123508216835973025797423794076724656413634558791363938671957319558280159663814588954380600462841949932013727643955353254119284358559438675283292858933382918431546862087287278953609066802688926615737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23169407219015669377132064313736639156408222814942647517804660231227022351170175618451646464059512778319762511971277439612494715282636293653019597675609656258960450550483570508372015178901410714390619835839603927678998839718487366193294389429474412468697309835715585956551361951527031920461628415054987117603721339344684362472673569687698207998190913462792881435132713186891264398130117778267595305331174599478831439504076946860105252130761595920779527929648949578403475672556464634100425775640632250288945631119215921411695361739975140956172548326171988513904282664983976047409385702608913369787568768757309942859751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26573202236243930368136541926822248910585264984608650446173913200661603908632360039588336105507773940894634234022637195825640565410069686483594256480132618951805751656324456754009574718414863588204047781967242668278577683218037977814018106053865209026209981892797235457826736544510841659318652765674999356068674184153735594711248742780967709528018677309884588425411940276951461362884772000329877583422965398007635073870090988196995972242273699006693198647357861622585499555073906269429702471395310975973514280123047342672017867721449105827315518085879577105807691073418137340924034013573818960325558294187561623376837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22746803487836037422318550567328085526037479388615230322409780389760566379206775363152907067870888962303746642665909974924868256240327298351461041819824393758395547866280035705234783894122125918871507506957355964475839406853251983254060777483886669557869565859000887362870216866614466014395067178595084764028026640165816717626647139546105454403695724109041346359463332847212943119549864965833482823262633891411497725388932747486252286470039927315661521015746727114973715818654937760780357849898825710618250776174910037240390224606165219360420002111039756255068929331781380024636660327172521199906524170191502152809663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26568544668020205135381212728237246448420715473395147901060994373267893279018217626965913449913292779596123551503533732223841193845720926146588289529200612599627561778253215420738279468552186864438474795604306985296328048512800114467799315863001619247463303426996946496300571807933492585193265193621940539290939216112002860138426339989971263486865119246350196801822916529251156464634006420035874322056458648232862998141835721636534593457646656137640106727383606696844070306918136096919678704507119259767755813665438870595991641782297678681813323249336765266356002447108403451472181036593045515520526437101726365573923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28226070706553078885582690768319584530397711510587163729318744637980292621475622869980443248738922368387224335160929878867319337804557632311972739507008992888555946851352598696424975635352285491657850438186856383183098728416840881312986080758560379079348917485234042736691330657459568280123865360626959010080861063312110506571976935989039536805724520583279184901454707640586742263236987685992688098439831374568099509629076972038623579784557978361063680006926032100347909213230106942860905525810075600362252609904775573472449291963823599662124516191746015685256507824724926710493876368392719478710097874556177812466687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24760128049058637890849905232122900055459472701991816696425954932965823589906660687518632345159637334568364889779559713299307061484843693643014139956697947843392569654114618577097054511061356822562290814269768222802334104609434249957888119808392684101504011065122831772506312716622746148821559811771414001122739881755138745423106673807161002162936220559336081362778204035843627034626918990470123827575247956312733761844107501224007890706381488869801342206018997798085051215709806039204348852491666031704456559221559044172240123822779707165872764524177875990346585418319327043456207308889377534770842450018444362583019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23845655023833358938681860594068945137309706074302216688012371749598169797896332486968683281763114797316052826117081283259480528080653327985292628893454764044598643845899205764015983979927684437911221676589303812255041985862455750037069178373753667883439991432518383151316717870887166897341128632070931471924581562087250103542767152056874763089617574056175807585907413471605007138073084005779395501001354998683546470586821430646036223213286145484100099824900932728762337682648985151241298124638519114079158187860553370993953204717594511560401272281282037217644121532244384461417686001733157913898289625457350877949399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21432124285362649488596540340089478982895163809598467089122059531858433158138793282154919310205140086111750992346713455351601921302711414690556305250735073942210394559214722215300179739384212018633976721697803451800779392562061729955182853026521824630277415967605871620117263000978412545842439023188516006926222557677122625775027436657346478948637015705511836934990029944690338671146828922350700922450654529087246781938288921197082740585128901820266739026415466278532534270403119639855739922441395112727112259493473953683087800752905697456070044328154592477509900979040152533009917713456157255071637030375855364703861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27879828586474509204578964400702793593393784036899511326701469970926942779843210966443193011772509035663089694815555745833865549221501668830242016888363257122964695600726008885513198591867735067882095225216361449067031333359056882454845898554856278123423868061337377788416366982645933028038116211508078721451429147414800287529635563122461761081927415226744418782585618065538275198279117003354006083891918797906383011741794677270816783937598053794361921958152566448417866401654611658776704260787809405990576291603607061885500503316694479389718622983737162160637124376690690121039193660274224760289308923075829964271753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26304720409964224734209496126046708375320415424873788089861691593663736565610594996939214289240436678621097605438800669472964485291857916457180660333142050192736628393782462893141157235665652569645194243269054064487681721529594080311493166122919427402817998528727916487054415203148910274028368350550045266479962632723622567187404909920981275036374652079361297893331452770764609232395308079971888391549301429927362636112079795377225119456950235274696182222870861143926450924531462488091633855057958007209218975654940750489458350752652262333638556841374736460317750948768440387548098447284488180209977851153563961726143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21145040962394552915577120527619123996640063376167819072362832079456061428967297429952294223790937120924618687278891633536647515102954066171409778155695113103362413048531866057788937180074470186636938988770835812689945199967524184686950106342216992784075495646890540121827454255488137009635144555396568900634648642525244029923811152948447356256570558266823095586811353471698334184101321310003512621074595566037585295164027202938499959939046991476128883995155768601918992214137694109290248849827795731447263073758136581149594882410242353351089106363255361827643320211790989436212189894884955756110669577674753171781951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25315087650501911674743931040959087286081198064799696423100865370380627456161278854654075617720159554800051046955392427977886821880503182787862191101987254921011585065176942752262521486121531247752337665731416959732738994948442150425303266874558895318383685169499810750811233646395075393126930164278599329357562236273746084563062403348718266330462758868732282569227281004689243679121805839294321010398236312612312670161775375747948452591647731718568641360934734995366093359141857805500458021971865518409227274342099512901979296831814920140974377463665501709466199731413547911658018887837960453408066513708907282561771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28350316310452904981563503649208245490584905070134141683002976435677017055078585475701779813350031119726183871396092758713273522327105037345045510204038862012913963426643358872022352198763747614594610591625375365360017918267306417477511844475118987575635204024694651028854827216793855342375203812829893081501919128384840638895512876143342636202204285262252397339515337738131546599774906467968148387792794839991661528198741352215326396807143396013449722519909384466365067203730011207177779484748382883825284895184512878661071447225653078774860942547150196758564179603993773975146634010422079309552012668109746015629579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22655612072436898262792831572199209013653892190599867068239182876173150192911698803530511737725891311386943780928238426762677787965317710431712663331061909529610860200906948421463813903852210548346277084529732531156132575047109998276097765556914630271652542069162005451325991606558840361347163531223485514035985572440155012125402380318512584543009709097941943056248943067550148247489807918679265698410346525320895888550475205034217564171473596982017695758185507551052810017740212035465060058511738182716528070224638110032027761460133516390649056900772618730528924709080586960074672438804309995319684688172129147205921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23823141365556365284700915881459276871816016946763730676039104477794675022895060267547778557222922536993710596806138999670065680692292956885799800585719915137810455824885757930818860590749165516942358022783367635928047222464615777254579178997597159802880890800756304285615006478384314238204841905716428333876757215867064393997315736506929424356021602092752022877672089047569643997026873671761114796836183656395712006646517565600192784617915142580523248482377593123627850309932482120136871567107954079235547668991586076283697334537709058063897805836030166478746533879067380913722950125830586258662958951846248116189381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24727849100504079184010605071936631395818101578311906902468341660554518291803912921191650125430267654387459879823204220340256688858464787543109461419220424294264847889730401443733780451116051179652387292229686855070668847831157485612361694522350484658159517368330018633783566501570598898885079151693395204919513633532743028813073254674403554013835383151219386584419048833874117176343967268748114044209807856467833408160099034690040041061790744388236888474379192656387511954842581117422856217167478692608807504353031051484738922012960308516554459906751124083493249745465551686666071362361896176148950037073470007922049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23873795726032501923748530987236763823126140599208560558397050541731018863837619621369608888249345698798522117998631947967542103830458423475031619681863583784807446474745138981145864137602881684819084417404320711790600808114926849351381960985654067291532506293704433688651499501980905548692858285306621893318705245337791858753600651645339311816993498040474119612061726398915859557907467301630655214404258658244256451057750770970305214110819894168980223192239276949400772669326062225477831462270440854756295337093487326590111700868030077539746785974622314910937906772291191262274177877391878617154185932100069003558253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26943850760377225171097017768239692699387036058461812896363794079591437956812457220633335089448455985538618919005994268729396487098092917475101771700259802171844195127805034967527671510773107414698654354744543477034682286573767869955057433414255081300844948917844527269833390915844755465170840610473348841895275016857647276763604222685366678594526575505110073595972606396009541597998032370359944559524340385669140597312959321181000192324911609733152329877049520770810537362016877602225849255471339797215827485205045097086597570980689064512547211865127352581413026813673805706613941011814915307081217912375265003396551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27745535282454006116487822570706252098054916475087291284723936156442519924891502030590920399576769713225435347576752222141043968771422959843357532474825477519608403551498305662363670268166542904382497830270782086699690473410892865978150811019922678322968189303451314499739855473973003000200057054906215808447835292325109948843287484981553070116692936862957563784834119801250834751329491154835722909107520373300110076600329259817851458337807876633621878125742923150174650918849199981005931291813318976272108858705482254229105903938585132984125614937604915346444827659905680772941761360810719744317777513040778639960487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25766736384757051552958325947900895561514978441772915262481888956599253164408040886234081198720474703042721558376509607080187296633621949183696666575059400354009770635147368098628116220811323917091463912424737372613271795741089490271706388492039628390086055602809667955575894335670768608279176038745863324300812097194340477527945615639411043370043710990308144166989758027696939390901204276276918282605174225125941394302247493346740941302986660196177217875450130469002291350270236961428791775541442214738515488537458626376136442152792292671176685457605909957641557722026406317424416452983000223616945476106065275499019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25379922449917118327127196443175093484848289289598163540310141988165884708232836151112825628408131928556135119180346809781267323069914979654746976571093487155590348556976593715874626417339761209478626639644750618761738989956463720969345104058085570811810022680056765415704706423789066169631818622304068722994095803702613376982518167948750588722494695895683201631249889337707759960994315329019776002669968945050587756380929874727767254125028119042889486450021474264786120598121682404994326825806884955523179667390521617918957373810633864395244185143910650161926456493490308072885677301977324932797600065870750039355299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20550700541871286368023545921314627624409348051739235908605797662074870556737558853629083935946437145862076825738656432195673076632361411142713590946664121418387543393847091926413093462540681106433661038111907807244052613337054320662565817885248469794033264197370913601293145840198969766023304854594457912623356740942611262809058003398570525064002959052322779314825457876714209890699574564935847608208213256493777348633808678506198921667789277377496750314580644807022150830970659034998233691459887413333155293945475465639654630140875017209160753863355124703510570827738338362325393277692793735583774271604944415714647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26795062370833739508687230903717994401825411495224280937394208534856208743058398152339701494405062337101219033028999305003056940112331679293562535095516014470816314820665078057556949956250300955035023543802121796591019071696453176764796471299159701931741007910564921982689488938762366157688012159725870568601238529356419412227730208430234596438288013113939943950304940980822925457188125872869576443245128962169385291928426008656745955894591432997134196852974543569752897334581141748816945893430990799402567888375531144791469915089093947186357917329034147838143777117978237344505727536218926838448188243161632675328201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26449761177936368820944264031229893897500329366760245477818282359255495294139292143864679386413887191816423093870755268078411279104224428365404724856734296801433856697009568853662926831114773876003441703926320678391691546287688476619146615209520150467729257589814894308915632181264825278194353504417159623865026444209476973269081782974942800313106248780358574423433053180127801062479208358433972720516797963216183190981595303588276936752357404688350950210486828220769413846082139698799451050987977238876781858486620399840168504342257689493203043927774445004840862976225570229204510960111755341039231742132316296683871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25348926805077809709317707896514364696011719205684606025218264840199392457153806745660259960091774890367363982955532278949375699639391622387803214042658983705820241464797396627134410365043924756015885631395288081834071742924978579766299540037168479015192576602009055599536375803254194060440605079847042165106691761727385984457051287499437455135030294561719756639598970404480354609359680177419587688926713388595150128203259131412318697337305534839792730513963911605103789184958387187448962947427565476451899163010000875531547722757662512439716806401987053343866965183971991344450410650018156510035287843816141001304267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20961928570270032812685087469841464280901419123954552832286940183054237395647813971257302455163998765902313980736088764609540852883913073020062045183721188178513600884785798081730697547527375952075399983945486135158417349791350456642395815889904629077879245098760103683105927468300415962399539841740447506340403823529331722008669182038840578839500169465694651226561190960327000814212843597246663766715924807658261617432953250743769490409926962439448105073958534406196585905164300403785255481343452965585251106059138567173058308410741389672832449696451087744477346600713966696724353751039663797301676011995290381688837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30325377852776016125998730959018076385135064268412978610440576634678374402571226800934327723307085357663958452977235922025136201863205099282699753811892935219245876792130518876809136046841995495901867368074940110848971922922434601073547812802996570905060258578450504253434209955813683853840930601434674468211347383195203609406804349788071106779145344949704856815221727236139839799291783823898137363148562792658666913918456230403052183090770336415215039322003050299715159922365367325758685405588278207482018968445493921093242931853928405322837513945832730948403461345903308888547339409544165553826742153356293354879269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23043217760389292010915822472618060262116349995169974123792516821283644256144105009015667595911729318943724693705256938755615143837908714356559095690709074588799238790333842220991252801911380813054968750149224040995470992637157490507787209814336770502211968295492298152676313592081619943577007800137028041734599834026529718785590796019221690527473913086915582380016836640994686058753979834591425548231408772403445013519602878142901217444509998229231865504612160038322449745018687453012155433372171439315245836485005258333872405662496070896633938444358607274739587496725614170022791036773682135930525183685650836889269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22338313490154571668669838546001550407525985510791616361864064969747017726890233606766899265209340379995756873349594104542462934311335513689136570304883068615312231958023813894219327643475177124524838546753111428636977355195723905005244368363366029313988202308322470941506945774569191114191676968263142715776727001533709573021000362263840760641523623195811807093026423166559413177767369107975184388515796584682239681090404966067694393974165281650349319248050082919660934386380904542643651440741125437587997279423459848054265900393826259942585374440255331396314987564713406048472709936671297978081541731489580567639121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24570851011013520506053847962955498380305465054088514855557332376119854659954189439062960606725116884829004463794874303249009383817711039075732255094126181108779380624129407132709343589279640185916837448601003444567632210126562545252394759855278569555173193653845107915892992786719221198050530162755147956176212519915436336937049331515790291017651685972877232443870216938400037571269096221508665596741881089276321831707915512613945573912169653181935967133800112651848111967109296397053473699392591630767625753404230173774660524067356535337820850817698181947434320402316545647585615536927808241144008178783385861483957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28092466571729480538744013010076297897336123734824657588606121502415247722190521258955081530153593198455930998843623043243972151510798318280749309113346722766766597489002261962478430100252076744716886976954480706382620558403809401344818663915059123033424878780950373736080276093927330541561127517667656822855827415208492890608653578815450738995061706583027672625031652950961400041153308790782567122970758735771459684328179019697957508967483183760886166897870577799456398764006511876703836544508685733378123575030067584156151087284774868850528903274576329681495089868996582714080605370557636406323653953035916759497967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20981941052282835021044353043656963862358775392976888708941235208269523643655902739855404505164217392237994550778016741603326268118134884050543061330501806704421398519070491184157863327303187666358253518528248681305234503969523964582562237925254949130900625035809256591200513734700882115930689499648107370754520924700472510997278690821226189594384990015875023712345105962570408208679111285158371849400513107976107739222163284865261150356624729277201650112627815117878379098443313080151599998107663270038225691814048541143090757572232480146850821426880543200677829372965144894609134700279649522910237475316137444632193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22337375290344250096437784586039178159449528485015427238679476150247812152268562125837287867181896032685369269296756848369867964148209361990104702334641985868342367581054242929199377222234727952012339946246907951308810198248029410012453123304268325908939618979106173203988590526949834803293999349001270126593588382143463696402638116917283109309080812341093786550700572533625716038634275972959233470796686432696670257031612550530897055721121568177996603396685023454789067327135125882377198108971669596550712233611044218189359328635144941907208641101567876838195940198388637532582236753716431133906652490266869354482271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24224263930713393983489086057715824959169464664883134487713944730519089169875506525934923053977209898317878165524121899030251373601058799387097171918310876288513923488692129688747096373832105633090267384189958585914804149055677290655510803946757087586069291992339892178939231869394842384566863088939238712101350098297548794425848484024581741862013822883101529898450834522789014343160538059947488348416748242511366011104627493689791538767333764482069851111033892990191910761653147054411593953914602380879564923373882568560944392588308097525312057040788665962636296750049453264063305112938124795185200720771575186263049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23250018944749035946367777900378192991750719010098698009698445347470705387568580932202933823854681068398458239716756525331773208028662634323481237298079066500420804466738247417459673084492043158376694153024484326162871920630580058520648894164428355251041190267139203244020324979175514694458401746898318506348066086133416937399671073478513459580625701826186252925867120888550266555407238443270004079950891925854057534251728458107009473003043142430730079560678877761644931145684359034493732060818097903920151944186887221602678435695765760227919320976566946546817924327338053969121616527812008971165002183279910966426507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25654378193660951075366007404014568001985962896862231707756053692331688722137165245402472987726132042644190899418480734873399718783462093903669291364418359544776366808662674617137200602794855360050798124226835716442589866331706824113574312829929166435056672592590735056986071434090285544239630107275558753456687240739887276788188337743914900591657069412693372640658738465548551865838126262073092922969277648198863194691453870419859210840441381534801198892217561076863026241710764438197803978561474705517942713134055538835756637892987032160252902199737034465684968705748114827763591448806425703702735620146283938076583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23945869045289636971747562338465053729860038901374763714992079051186593186106175740817320581020117764111990710645527664374887500264662210910264415176937673460048755183876268142636005412353274050732458809712573182716078921107703975926308317067594173513555669721406361731385137486446288615742036713452218667022806376809245179498242521267037620554154268554504026046222855296661446527265977038405166499805265513575708641384989328304102043363509747821056848861635707958284092312913624800255937469137507210402531261109712490443712172285477260376994723888990102747863536466937892122401030762447953768111322386620998898435071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24620380786838324132992067882539983650878685337335526289632776351145089466560307942282985596345773900566712255185765890999786420653960569700665556292458256731228472443593868847497478150801625243643494314480824410472084662976899499704916414637026087789888760013303677475341969708978389697558969127769416616940982991024710315434358487058000751433976233508273071067794792745156868726558065990711509112106624283941902960747815009038388854268776100167223560338673189780438489666286133048140966868072879384915198449220064340584842120788761663351751808839791552884150065357462511958043360968776698202355887559130845047030409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28869293738537124625463373148952899679946627034398637111190913071318796052185108094950483221301404750644907776633995619750576137291774415076480983884486680523899286110573565156200168939473023107982694709034659778600286664724588330886763474178675993752024710339795249939828420610156646686007880337836747262783169677107461486103470372312469768028910390673566871175995650352833313006865462799638275097877786710007072436345998029829684506891807929395910292205784754683939693660418423455556921690961455741551679205270953547080631725929013563902241737202859267301487256167347378692698976161429106212785211387026184897147703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23842535214826010024468955256454700757162324035879286730274371042497829396508901199733660276384147156823336089601142046220595388744803471430530929236461754828621889207237315898656823756923579119244482921795500879197707277913769816396126654639586608825858023332483338859914685637692054927084156572784060068009598614193095231515491729830304220400497548221480157492976378241473358947714394493014492917818331400880651286433606040610504731368326519521470157466066600681505393580935405776028515590981102059949742411444279995854387156648272354833189004153784923024864643431474816269198547310530670290290881367705108160971751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25893703119407703852641362541463870782159984794786585652797307501586959378660282885402679650726555922112299413469769666529701601861054197065108032073337394056811847645077608145720649744856406825824140257263001087612095412810677010864661210251572282308432877912846420530134602636486642649469099147591186278674240803864780052758554681650577710662746388219426259971622698916480582941866998644188421416972990678103266828581159649243087485926639240429382600176640171149491131549040192879728405252262166888569817794087942874099622661260282644350007116465043743050004516602615555248004661301214448663464499496236451997447151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20104277502669683524861518298819598146624761484684271418029793213528840014011332687528000656921933111104741111072851781025077086330725730648644996024163664316914884466775581694115148598322520202737103029250870170941922347463586425485289187318164843909378383863252529836412254065169059260684375171335834644181995247486220356063760161168695260341289617155084821459269343567841799294135136902715672466899594163857536393579191232074191497177706000452816410315144789694402353671189631444373528397807942854971110222969171335495715757634238009923813278251827082880329572868420934175777484389451672038361313464704655840336961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24099772073886516845847693328716118937516394690526635833659455588762076216436318788917266630892500319757840309255576466397510676847811366303646613072667358681548386943039064681659865577697452479611011844458783127610356367304660986313050085408906223077932001939122660766138507385173395820379009053108419169942835489346831981091224031322764560198213327298193169024417145606758646495616913482614543223052352023415090393268145997233502137923337975602322232745131304761364475116714604021150166493288002702971032494078125490560493844529922612852470797062402150819046621836227262120783384738171866727652036642281473239608227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28716900994095073586232268993112844284492549739840643373241411193921093536515399806814890646360177375821906970446607674308202151427448955610497288768024803132756921170614081994314309242962559588012721912975175004177069623315070958652433777536536591782589071822194987080665525126097081170108387937701952686758090523959432036459438998557849594270014964762978184864121075107520311517415651355201254543822502275557045851086191781976667993501646838027930134526863703395687015456668813615818025289672748990262788849824771872605653532195112696614114706349524180151143616765584512852804043079294914851777541990696823578618551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25552138790604905951219994977119572011464806695249376353835858398617030761643674471728043946848496662044061856648634017211437032282009851270067303397494049443861912433866853933830908025112661283273895513437891583020495195696420191732932497816813765330432369475097783484802736623455182245410207803788581054755744996248950817482320346115668910359951570815273372872480125623620419830987983928301635630318002378062914880215943320210653204051984420267750331015243929507579156934079021134870309054647586444150661537892897507798500454280714241700671629558849875138424677511560665542604164118682940754903576722251723707763753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22238727930246468360158668434900498128731326688198055980648053030896908652046129612683425039756162263529038227746714702951220399872180786371176532440286205617828834316094845312749012672503364244227244173937457524976951526890303256906738715682584537452631140969522633860401126159380589994666255324465611142298453643281066265548929657092913354728922897416932585639770321611447072061464648439112749403342087588972805268698535838781231022007143999516201810338780587306170097088794661394042350586787487685062097121527687385608005735936525507717309132091759864481272487120149763654633673087787456863396026329056730543748271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23848191995423211891171327959169653940573340158412986635908292687690201315306761662883256356736324864911481244261234922912129188442088651788253371144818156784385201405292076224808444169432928344842072148888571279689353913904241510148281118263293909806114171198316959665888667172038102221304686555629584667643112124517869106788522033987892672772033688878080419353026756528567090321983820995456750581306862035231407549650339028876388080788037996832236327042785464625530822621233107719624274852175186955587456625097872655559069257728457990642413100598516925559143016432539201567155974007202681486774767027436293494804761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27913268731439273743217385187277442832670138534602157128899921924030016219707734824424790639900341242911672580151288151732082071107833938691214896972692699976334998234657237989658789335588372552802338789369589348128033924676022229377822051458079344199135949242341745473596725129259972285118314794558432988624456596733646897578127526208600520556873050769047622694634197657788884889403121927567576424241884781009689513403692982070689914843895641892650296315507719959882420108365675034322591370388547683732821314318421843112584625301272230335575689038566879211143434816755178530779642066091982101548510875080658648136303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25550709740206520150799209491771509170115101481343829318766766623136942320821060870461440458558852421053624808262420292192137292476174004734482492021339533350949509810315473122416943447296425774309596500283838592128954479919940968360099939247156346682237544852638660836150197353945553644409453642772851426465437841401229238857502637766884462020828143621912784968480748528284817326111078274501698657877389671383380287343714468363875593290507996123271792103948775365983212560334743112124186711338921168730852228057895655511656504512879335278561427944250597806887590443055193420421257747092216871198110674230909401965303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26275942370951277833464734694253891551839570669014467090744817490137755371488510145187129634794660671957315434009813953707143346275638061025212160116692862989021053304698961773845186567351747113739308866699365470097351133776534533221068146715232277300221875402423397578799770855569649004604531816320384016163971028604344447867858621372776307072531161336211745717345040484614701378029732267017594488644903857163991825647424785540832529163028626559181318032791419871543567172697546297385979015641571856235368554574464130465295001068188509635347330088613777220493801147797109537463475507227557158242771853208028379369543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24936655923061840805414616712512305093557665662650687853270733237131016859125087812436271745206218614793750985434059995600800490921781009533514327824834304035239512605665453919019483309324641373997630529122188254033989280058115747582273081865131668244272150316244363156736108576533195213592593963828917338305121644160658996604054781173007713582632692109283923575995355446091938963547092286619609528373178158593972228677632256058112611530525050630137353314638388751108780046246373394663379981325245388405013588065902914446840091489507676488415541280489816805289159719584789827047146991275376016654263562570292866208423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25000065444947178397049509163906048613457332954156767165796320382995140889920880935430483212885356918504937383841120547222947683554989311566190882013143911899004507219883287956777929862084854768704531740276987940179920212793462890961242065313566366702420109989512330693035554346818827525004123562075961136158953102415383768918693072242741579788200259169467657703898711560873148464607485209172578780271311660443135043242937744805114885807802546931820135750088076937882391413703158498251186111604320222120831695465939800586618748370589250622878182275705010254652293342552517739228993981680315276536146220038264949343413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22953355513434446398990169968261273445380904634017003942359581573616973225951456025402535678307311830115606649711148332688328249259845390025242830954807686131566362157646229626025232732438542701108629797301451470280194036704069855786227840045439235173322681962535190477965772595644194771692092030391419063247935811948410427815930432505278959907617532536066377648273946042395167701940489172232705894207791182583467359596621100911606961006175128267311686693936618390724941441710023535231402596759051138462608359838839804701140840497935591294801807149422492967304689151000589134985837504923654926397922759437491862650619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23350744088339869735084170221267227585809066235790337345912787648472413866293006674891376493214672390131701387462916838494584275880027170079720071297332816374569174967651045027522912895667898356805278774717176647418786910933939094776040713330861286536157547265296235773758892162698885218537596132142169716969174112432139670251785674220888473800562236486116017439189083256316584043971079756809268987567618734740507521916828220716646455275476789758635598968008630941463454559409041546056042991163421864070096083041753992224499877333360897797105279224513693317616373125293795110552279860219350633025545916377961633880951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22979847114853396110278050341587239190504269632211980101197013559730909077415744075114307995746523057965104344908245438237633777196588614298504702740804197502396065462164703938610847511952715553285363505946066551608204034347035913407721024548175964438460107974750025785525939898770106795458521548066545334957755016436418303074265490494704837752868798766741664197281295440410540675986929079456423677791547739331192822597081744137020237319896040526499793953776179828532241847006962333881054956131548639648907608152879515831897289354308061494006060056659238282583547234900943416141467943640706242424144562983278125464863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19698558116341067326971201184577239689776450176372001929115429543115102761044250033538821360504810785701393920259577764177624036971056665156915993226819423707611758914809577432024441035480102800640490444199866255733640065351963745880273589789512007671394870221921840906208256024438997516527552449633952415584278055317899128383244460243676318714956567970711802734917543441251111749155626021234454493546597516748076965590813903105259286787810369908597525562807219562678733695849257875408635717334127407953070453671259870882532159563637109180506892753612848568295830155518647254549059389977231201349524186336567289887529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21469923997071786132830765364626421806825585162612358370139579215781270820951932212569654311532906945971218990155269954928211620623148178961709652258386048273761920043448593147686597851686929442679781061780007120512993326689232242627266952914914065317852262558485022594143007889782116854361266020149083686757914439214885760411276970347005679729580969762846628367483429785453091709905273519170676706043362726912474309407045007067327167670336738206478316381124090684150814429278888533919267154153052112734423568777374739064427179632268084023304607531865463309511263196245890105325756708825678656154391787937563252198441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24161760143150285894039894546454993352387779460962830570604245266997227924414761224227606254977808958970250280835089153262232367741707194745391029080357211035556896459160152362119769346082741548830131973467253059767418482658293346663165844438479804310027784457859750401527697779245864692805498449824244787231885923580643394936320119979208414116174120153340969906713442426288386619628012429033063810604253262368866869980057773937465384148434804370909706626165070051072119965068155361521337561855600247960708643059760824593132533522445633342533708440267451416159005577173598234728009070684554145257467626868847291626241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22015231992942954630778437185684913453524528012469202734404782165844837687900955068200941272930825828742688312935351581486853230744653464072976694539103265158524451773504296261153586624212973774400067301478141361541380005448316031984999337677403412876617313711558568114272620322439673394057821789973928173221047835801532471465478643078017564192339527298291569530324960952819173766312712527498219553438388196237272865428436418484533003428767211774865211177265444858693794117334366306689690865076702669574086733156714491359698610049767401626086232697864136528961115139465228568802523382788404029667459214662458658367693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22412311805509163545886779122711522268392961311100565658626626604512521803804980379494653060388812688393312041778125445155445614925074344977517172594756424792050494705037269486433464058025624110621807375745905933020578043294423826144604852806012522996068279443130091519337663799134628195648285770467346277754780875097195199340020168996562878183564410851314824476068268436605762865839262582761446773606210147406121336724930983605203185129233384205123968715856426390915462219746462850271862120628489168940754484019198918127418195576025479545252508153514770407222873024778476315553802535373659634538270570749197611149317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24827533896421775418679725856391030858572829784293855497876201113386940616268631068717496086981910012172700457227959179084724716046603323402909796583063945415867872655493655595189312101921910974458128209541886628105906242622886142548366121821579222124698408247153809807329024045664701300200874097219997349014675013002550511381301238466643676658070051204611656313356448253235991675868238244103635147245840636420110148211154445222024553979775586861237218231602824473879064587253528749748712492484415827217772858333562242832076000276917809891179138491714211193364158230578019582153644243994874755670367397477465943665431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23933120248512487530926863177929593326642710851443504856708259692103297871681136452288226857833506303801833367336155251050808943107196269504547901810848804827285919382726968451036908728267639200736558281937394834147766976950806219428585994210964648101858431160792478975029867428721020709172893388592964142096029200043445711209623516802837951618782300088306037273784517918448923039066966341873646456061058259168395093905374235125106516286468029418884156693249091334171259810509408567906454467216782154163712773441182477010418388069651696908069896940558434420870148982461091872663081507360639112047481976674570465053191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29755710918198944030523859236122124177132132306251245222968079006647432213861851185364213951764084091305076933144675418870221028316995700440709424289422900362133949581779710824604300307922417781576296113217523806480020369533577539395329313472920985951587090223637724370245348970377157194072372908351116508909477784029183063162054904736025133634926687417941438101044330575677294665835240019281197721943435907414777764484289797737533487971979955734538972288480937703189618621840981712050002116643129498690941655339367756557591405907694920639367802649982458028136162165734339948409048302866624615208957370304024586284271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24594135441821830445823495919775766757551712575243059547146211809720335027174144993312983972902475269231187736161315894487036254440635051849257015206757444028147318518525344971676953669046456058844045933747609332756768897596286382938796429940740227003515477243870902819234549219170543804812586540828346589338798508153993128561160146673554832362627208346153187800340393781926192234578206101439888675006655809321326943506913109335722040681033827483052395474761731546980864952222381369045581027617596837856212330875868920557395232849704989213185277855170884318179865971464828467193428420443439354436725985107458879384843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21250099311935828609835509607814195597356054851570445156505833687792725000125002330543891673854044223087380213895343504243399741339572005848808818922091080527477038085185590920755249953734816234137425139014413381053303129402087762952315121241114241205497741622692772801312275398122417210347795676721789289124916086599743805041320824280216916652049301001736492233193641558840136655341150257345570498803222903553432499916189677606769748034229293119604816343194116908481862065153299114446587517174854275265368818806548233104981260106884849937480044568475952883859538186717264723576006283935469751169948738016448457032629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21849179760187617213682390046879285311136069172504814078389052697276450174001579060731602764304702741785027406775204177136594373198839718840810815089027071655104457795941998571402541937185371905141257436224917590310996649257762154898325463888246734231020603295067036456562053019522855120455809295002437912321842751413609319786432043482693981731092417191683537498588350042370715675523203310530488605490203554991325044814900214345545635903634863886013675132753395778996473340728656224459548870459405464962181663356166461913070934650959208804997450597416001055768795576174529937523307781199744333356028044858147041036489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26090208185065858952409834235134706949711979267751839145432132534189922635743059854716582830070103818772628578428564754592437424134849214526864375161150321367380686425638607769802751665993029201671164885392684714170226596323588827540830787225997972849409883022198985500224265397080391735264221583740270663837715324554234709582092182526483204848680710094543932174738475443420775055109836411230806463195443214659398011626016422129196486346820521390357031078888331106522398500064859932722808653229945096441011867943767165304115757764802595428637520064152291037751085214893652424253672658479719696142960149236597961393317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25287906281188815098197526158201850685815422081676410442944269970229202442810899931859848511852422118797347572677817695908644387393176335238732361785270475639128374816986081793306993755775314824063092305566212580834994952812753459092212172376901092545096907148947975188087860092560056101722327993202251633349440580064203002635996337277175880731294421811266090625827762545970562584690274236016051559783839526180701672998685466628076587322617801265697584982018342209379074035609180009701933835844579056743041431736666834101642353007029306805360319088492404102579218194594243172099102982484960949922851144765920539033777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24644040225562729078320757932327167425440508956990768160219941257173464134329506964210025938957250785792670910217517499645684296031752334863343348502795532817328150256857941939670091308060927329004829127867040309129724090696978092923879246283653021889164915435271970931366340552172327909794095555646974304594299792003650282619337961634000536527644373967117231609362229345896355613066967208343199300841532856694054564466845662693387830233528732193094325945699122764013408674907370006394970052046573692801751460453998690338258154288507863282348806911015025020553532604629973820980217259697478682395559290347816829604729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25258728687791885349985235672315107498020976563887164594896790766327094288976932883594180971748428421870778280310697151570787225616949042729714879092217809571712708134184685054302798528010473685622345668527605719154995526517427983336889781597109516062213620252880964104332688986749061605140132927332611866014011850502205729939378591543097309475567579877455004725626647456545580733216070907642324229395241471762132123007658963018327648905464482548396054923387621278452115047534706415569262655362724249414197195872364840210246959418675193605092679091627785961589580505486405647446448067281011873178505384378782216353657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24631106267615204517791854094922096935191080778403269691562801229104426943036070078271366064720130845540383531829335188849471388885273922691263184700352258877429496639158937882393548830321241995431405081984138112559384917964554756460099473555511650573825502449665033665097988610200435135886910557740478341720248226402691320691646979155881202812948543968872446933074730629201472642576886274139220166828461160256397382854160882632244722850755093566226435445620647607457434675010919742061115442031962275705519107810064919967428799846818645661761593737079116899965153274923691103462845996972906909696047737163550967886963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23787267753706964367303361679793604788143452776911320383673071236623434503185710834226636233538245838555172442804046817233065036277685758109172233285381619366324834732347041214707063078272209025416368798614602033127394013808718682894846565674286315773939293695923947591323901788775059681922978054135081067696271522511409925061832237531595668148195602190745640399405510294159447205920378846143123288262358333352136695200048389565349297015460983620612210361440690400769468556976594772634397915471877985503432311216554528195961064512677383193924709766502765007631930933039891816143529450043111846223736434097659176931643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26400020024812844786084786165596523493687847263565861025169698716628597282572787567141358714947090244665367918439066498230882041443526449364150331759919720549785351892183724902004519461046077711853894059078914183139305322466323315302053989759612776523277398866985825052311639034356598478550523576530246273087286788090636257295010118042740693757347363048285411329383641720483148807584171373862135658364509988353931291043143776956378538234808859183063375926536221041254150154194444056403747604689239882469398258408512973188656926266284653061401248793730775560450741818118428929912033149982515757381364178367513421586779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22845089599216250472588982313358027688382602078859779738383801429937768890289230939190631294095695381123349950661367394834088906617923408297407115212284161555078780202506236340899220079234779455754318468655647068578372349691106451694308985796140773533410925546403967127936405097226832218552778029235526969004263087739449751495191199848296262728448816324012839132076109615874894174219784041879074595434466522397130442656504661525924041367377774656911488650898338349499337466810880873574010798314375228656012563006205252048560047168603984366085723343752209888778557244519569108786611242865190323134274000802458566570971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24667718602452388383640130157071098979913277591196917785797515874494255127499999452933525786654145649390313430148682684950425186825100600903131397212006301520852480713651103674159644851663983178266915581772536761172779565014126163799298668179268727796482580702829776881676373622156586068997903231606183841312345303852112850597926803165048552954515434143526578861674459877956978213643043922707401690072951936390836334586706866119370351600971414587188687493181205220396088049735136708929399650017892132693618170137961915847247397426673401001013710849745498595215051341270522551004611528441603194772716459922610975099537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29155840611361075829287590414073240217080275922448915418051411588244934229607274671412380593414475101890866307479880261660048107053951694172382843937009919027958908319528596500266354867889681902731043349775348580094672693437802154908348619359064572924953759935815105123837795462831068814254561336341970924091131479648123329234254325864924943673582863267187023350944136406297499835158263944297249129436714295164369056880986654435883704095440753144414829135238043321311382120563667491720939194225078055619437305184972797191071302596623188867129203814335846389135299898617226568874690860937827772443696858737308397083703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31398287848634842734110547226760571509875545811926219445456788199319244117931932708863425316309448568819887562354530695603841232952683579079695803511387479723692187050616958145289051101165646632616271966312174718857864714351372365763771889889529088185743636777293458935314262457499081018933322865852755406541811685740296909920087613472641350906539376738170852518996555414142117823238056729587895858357636233220517603662466821122444003064992106128330937542069116222947950987890832423846053987917477920768258246752856345602077251585358706883393208847095473670058412316099484186860837089118180782179579772859456996894999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25372740008801922384735583381073957120703258994367148095057700869334047598239272943821702257894363472029759231177771080342698543268451032686365899872540694536791181017409924206905114279832306996485510169918223410387712752458981096936471789565636376865185527410327366703142599322673964157746976480519955391844889672342058751309962479292940871263889261553658185727077830107500733063766838546955594904035181553115322753144786184235244254367846543531905457588320284541460206684258447332022307717968972388233986109130174314695039245875092071514001855957307397662428261265246750822190056462260871148054253557215633637923809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30669678863112543295494525917795975831114857224920342533518234985323136232458880437731588828519371971290921184890193990819242845059808305649915351992549339677120441911219143096537036734660742372257856329767394306646881954842286149086484408703240611163007910162167764998909269923793218056537789413058784885103171640071303392328544974543418446453759327764983028180929773922543748046583188269792388060781840027179240319006157742087790213137507666310663783289796252060525630231310810342498085625207948167844299855978204416015731743759458599619626082336293978685678203670700713125587075029207486642444674833659847132477523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20709618079159527590070492538063764052136441930504303195486410143459590684754364662394648320051924215126472164094920124340916837308392846150405190263862077921279057295158943543310783136106209808280172206685109746436529400593127631418550725328533709142174988304474892910953891004857504669952784739236039902752264277140888903907743318841706553427725716157562074319034492529535639716734628678804471739685201873248549997301051417286153902557120159502945697513610556624704156038849932197395448728947589184744290582347000573503467802255875012023406897687275968483109762336088103396085048247579668130909915738209882070549251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27059935231150338540183598400489229051069515613016263488661641190862636782257565714265460591216450823335456392051356478107683041054772564960312172107135593966554106391899003160331083151247556407713427381799044155740804249210053608069742196905591986538480420423440005157353729973535263509968026138924427019357121055630160196886926912794047993715454095763480542859827208288219988328345422019567721793560483294177736013179278671225838442807081203768133709309616848169661654707899300438323421119652785302313056689983041141668010849683658676838575514030242290827285506297363110252938885707492424983057145979269497430564207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22872543908261165776664284133435732087376512324733448960727039219120169035889456141293034563761526117680075675733384534324779337334678445410202692051251638997133819318501743691093630276688340487510345768392988848111700403710651271456425590087150694502568556569036659596380550926851859412161613904591056588567660221743521093314526531458150894770349732350015769823554711417002381388931896768814621384213887027463445152737294691061729135681630815666895760281982151503257915937028245258444580898834949744636321057416819713334719775502785692210686011474515883187256550136359118536777030726781250694957394377799892851515469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24326084646944556391191853228526431705180543973342824454949147769633101201794171405349574703810485055810808703550115285455884758896777940611629836080621446404533558008006697944572803748517315239027948851726828979803155082517984893280408877860701181333659646974323631468405954945718436035889566898762359784991807387210590612279379550261209795603241974346102350206779035400841529869465287495332687000052569981989306335835158290746231307579303412268578051984936374421974303664624507118883189422197634900530078070314503081688911736763941721576042850836054480686710501731753919374649337761227253452025270324943400120911671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29005291351310253484754645049016201117335204476976778741156431725769272080854676654139743665793518810834221120789155707173404216990774974214905689615448135226855671688235500165637525969061683660435029586157174476824191759898524938318528463689861106375903238399578228074156393362807535976750289930313575088289774038076726778047046303037914665756738851916780828807179306917524958435570772678012835722224519922433395798008376426306174656767422508456292756638516617889357713931332882212649866808396795943246910157304521437810589146214211231900891012800216357793264185096139012304277296554199775346223572026775328181417153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26913668923253108925815099360262274896213976548626336570833638712789277771024934140657449464690313141887497185043140122600772922756582958765847966005723210348154631281934114195254929417480511800464777698422949782213379778819572799334345286148417261880792615591544446544001252428697049897347846220216721271818062358071860678477609543085991319365691000748231667867586668383921462196475772245992298230521575485682193407228831854197389339030656441982349500757115891511041095739672723366675616966918192476939246606882335411109332669696529846558055007567590486855275875913117427787186423808000178951345418596826233205277877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23930186411950938397300624921798357376839453914274402944710833474656782687121986297106564595001608189467226661555705192682077597477281208057539087832584835172921390518928869736092077243875695389516962133212373754427370555388761466131961405336140102453925174457538855465906872661832181397207156043572242309352827116927585639487802960666589099292917222671896322064429229954815701982576882730532990373855627303468570187672240901003809580431412705268486965771224390784189316368446884834739216795929530625189659882653996645215861122574754733467920645028754704821735386234136798475187574821836034575178960216760342296282507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24727515251162769268323332222108113960964158639581255441770657900434920194570418659922045690203779016171279181349977967956803035647443761132601967173472330820203958931888988751417797396532934553038646020510781459273794859746280798476242150514832283619417514552532410213333463782036174338618116146383832680064080587272928191839525876930246672982970903937565450508779418838769545397308478092323310100797329550449953399378163126570587978601914647205839825802898768820638493543797263734732078056909132284640645070118085521952086118073120409235119248463891980605757481277767036926493805411017061633283632020283993826743879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28717099495526601472487944498972671637310687987890875692860626844102573792243817764775492703354906818308617835794906770515399620692621613825933104666919885157386364049821276958357890300386158074374472381296184909527020142528298816564501047225006800906767155709468243499667187591955490137472621764077517050255855842238153480769527587821738882228435162520505097959043412573353076130699224716591531599774282309853000608507627017434429178276278378509411390920373522939410044520121507425490983981519982103142447981254441437012026653280168487819375241386528324596919365345698192327649027317262187314302487194397765481403051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22047598207362249695535465969688403390000981133694373724404840344158626982156365682368090195064529628435468259705011889134056441638087588865938160050246642517196672563535233980709308429170168922658562531485701695395734827288472688226078983833874290939916058999186913786332121504222044833089398876899154104533813234001739721159651142186571962474242726052082754834397360432371345819936117960989823822670378766195244143440897956201316349796528125629057440979474545073463029383363702457996096817783976176949739308208672093757821810171044716320762743666990545450694849436303617570563494781292187557718699604501047610970653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24920625072815363702478150091998035549625031592742638708852548927604615866571200582478227667268080595616929983296990580189286145381271987701465233241053661557811883330471783662069056394597757073881504217613373439625393782295645040783683159978552678512169503275833748878041124317727777640999738399165696666418458693696237110012613887458362117809870983948672251545011749339137731665057136869043277594483204645190288043564101109059449383807786880992330891954101315445095067800518187919933673284661447830768092143245073202128255791545996399167264480808942098313402925046347840326512764537104746718121479219632077595385513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22795234715860191533691576126043174994704814631794752817201190809851783742165649863349036357880337881663004134891888218683496879616931490351337281067509917342977807642727494965748766113397162592448757380714000780033260492794753094096125058926314444596271913210722921329257337031056267330377341903831907199039044648502978054385921699073001028814369354986857193997972625745397941773138443618725197133246043649393532903676200528351044284101480797470197106646203713044057160877301724648770771169022293780022582286422037944363726769420921848812357548361441486210569800284002281543845736942350193936682894963239418364096709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22686942439947274971990401335009372397924939821585512687841389169801289679184852288293022943382666595418083183828698888585437049773446335396453359041663741061663937018835416984148999181359193075321670614679084012786917653214765163166697299725290511283617400915330378689023875285034123538400012168579965359531820201590580677026631435156982976091668355726614302518374145785069975909328703921851540991186412654005959138097954691033415919022550073811837093278116605082184498039552248034809568936408702363736062514439032412258028835588375298015782094261261939509644857232309945462808556687056649825810125708936524686263181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25386959513063791635154227245997513720781452079227280768863050281930313116270801610183565858545147883265743205817473552616568809227691692428858660312282190105535050234597506250902422206787450515547975940595366377481554626723503505490677757295731152371951504950377887724551767219439225303704638293796393417091167660174998819995493704462205944288029474741569958558922325816704238710586961884360959602219558178023665812186202133680748572258836243691793400887084529642627568017780254296609130036762113558404944554233138257286388720028182924126023832986022460959576054497737763114265745687129259500562272785180115606612833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21227709042967059960953244120908682339768959625501003013159028288223137992537087332259983560534763177186691987771239722482217067574599145786935815433035433859518227292759822194277919657067136340062975475339561854971764184448623045870600920778298289864337124590783324955493032498825139067839599521730865315541252214625318007750373406753872431067054745035994226268311480032681370853103432570670078927559357335529706291142053711659083209085287133823866930900000501553593847964323550362366820648232335956264207759657423941041571578180284566813254855724021470894406499150683057242401222953441254019242484857681345977538351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21955662359687534894874832030843673374875655273327536339789662413121120585097959031357420291176499685012106143785184102511282769762139206199424329056432000900303066449123058058717744770332662302997454621398274134537137923882100144045162352136733984743459420715219464773701251623264354206694050386289694086021149435323488119791592985589155983634280419421725022598977268740039134780333872936178484368830649085775834149318474989521343653947393993795340011706124417769915957411763567546350258281419959875101562347273664424832350770035057129902344067744116144562690236754788751381840373397776517078213223001481751936298477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28217042969089042592464456621732739792476877237114827617150212366546929337917380399232291178623683873335443448407863209116647510362690689008458101860838278004460674124448647402122863149961493001921701841711390535055499785379757053911368133123838284791311744242822898724054588291705633264593473096725264968420990723228834219753206662545736639709386318522150682847943417830733094543459107445072576889191731279524979975234826806617240617636307451100270335033788916733050186262422644718037907487806363000363667380770215400119307143749782162777383122344407683559978265195914590314766594001893970123006671336403658193226313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24039860686177997439961259399754604293817398143164457127316944381691300663447746311960767343882076284243923717456312196796706505124216471227517864230929135094824033562303750898663260277776256322691921357237993511263162393722604453565757263069234762102006719983373056195616321931914676209323773626104140778201467835230444975869932293485622223216519509531995189712739198050069990657610299210591442568750280962934961589706305572261677837487331839080516175044282104750730762914870411178685481765601652707570451796133987682744775592721076768945176728993128504140424181041316015513781482720818234973315265566501262704414799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28120234061686885837393725772344875630177800706287571581125067176311724040337406777401850882191440186181721872270177801653583009279396771715041519091584736407327164623803547780093732916712144639905002852539053797600860799927753234920472247590297692131973184079231325167249686475781722058001992688955418400374478190588960061470932310526856772247676074987913718765344078013318474782233131293265049674022045110042189815641988402313861515589727553183953198239583268137734752391928222479307417042664435842326817409270641781197661527282578475727739739768171777505504085921373382957099206052031805187423953948950939052663939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23485621048270525986459866754100207850571936980402913640589502440657058018378571351136429542267498854099827919073422611938664079595887675958178119847090116834198251663038258793799414952342761388745628428875253135308837952410899349895113264604623894721325827107052338588792804540878288228853355322579020708016557882911339750381871058128590338772125339459981719587518373746075672349480003127412797129277525446475211370525961544684259753121757187170574415253150775998042140828316677296509922177435881547851505673883334349233902766524418851469474027383951591363905408233547509562244977063506150557008459334055458055701489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23873695274017315991541762561914061190569483200266595445065941712713676869131710587746984364042793807178206280692733698099148907139388455539270548939797517128946101817499497596506477947509965707482907777945703462243186034291493062500606290239808116872042736431136632655428143461124158628402402288884136828371058083148014755590955210171330895344962656945693049192867002287108468574838484230967165167134990466372254120808118204762196730331576802068078459665100993651823412286351265272747598084379852871693704668095620295995517389829248826067581537195220309126563743244861486641807240663352012571237746208319884617581989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29399970335492134643805585782704112027132611230764977514041018737803223316405893265568611116433804021740306080774513313818055274348118679818961237020214873479343212669393395030647191860264378248088626334501866988424281614190390727972158074043107963521639266856466012283874533294648379979959858462315871319142609310920108714028382721086932366693689770442095321226852227083612183000674818466717724876571873797152816383597213322072290344655968201101464904982653724290617873201705671259066373668817948792350020298966656670471771373522205286041539761534915557317453458139302326259123555460010598291129673891313000621875321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25018356101992471293656941842720579122741633034202425183074968252465041969312642422579714801599281138977929607902023270375093767537265347900221229373129023079141634543729904105493914376409050856625393442668949230334511179734060228252935901074180571509441170006832666739851485170299114096532790187252636410286348643690179525068420027690553790820770037472607152175846453089882102540310194331398418332991832936193449579105674663406539404332566373005005625900362192254618444249445157421319280532443511264038423324363470191561585123313930799861308752661280410388609021502025816298528496437832967859005588030290182568077909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24074192503560327633731393558626792031088393353155970428055813216965932258750257900554600448409215297655983874780523577431683855109842339160945569688813235785213333506792500046991117360151601642490488738653141602000300587082799454775720754942825368200817302507333639026264574341142177306311490990580510710188071682424750953025783993434941115114978930855251029638500954491924682402954467440936403429065980986901589414988935125462767350744928248719520464131754522028762386096848855555641358273872203755127975626020367113470516917481758360971767602247470992520186350013315944096092946226237806455131510542140474500629039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22712100494787599496190181337289407021323697713884986162801624734767124551161858490880539657937320562540912077300493564510242617551070405063273705307401460852540383330326596753758774779526369293385892913957606787991632814136289824551442232516638324331959936149329872329313476634761180581683745556361372486147849640617067708933459289425553177593939566265389573671405373345228697175723717868562925931923480513318812017926090040145339742547420157107617394832470432977571423836606315921981456626123742499750659384252703860272257983593343380956180582251300311476605565595123959481532249394113477989542525476811608027660163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25637559482577377339380290721836913574794557365599458883796286923768950040630729633296861658323054677584170304418598003213778904970709460705966107267389605767610325099336609409106704200572653857394613044073824644245403967214287013061981529474978986830921690055882417662277743931642797978125185824917628315702671580560995928181518139522577172172762714844325832560450329831391017379610173430655829311644045802171098977941616899872368110189063256509229312213184789246549321362449094823786451289226419815713686460253086536121449037030901875871646034969399290001761577095259580790551173327179753951790890464910799108010019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29880099551629021745079355337136310679358469329029143911352711243226267460368586508369870710436470905505089864197990765629236664413622022753805941168571211367480178375995660244110880715614129478813967093391450164603581077435279279379524441565901919104738787298054139710983592479047844561480741418549752865393757060260142472686036451891781336437962998888520691389191054588255758495608363322770596504687820105668190361808867494933495075445902859187264810009775691761227021598113727714370396171473833886305602796686004760411186224175360442294266871165877163318945294836924658755501178238464604666068831934167104123770151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21570456679486064668006496103460608563765370054497726048205689921051120662838471434980370957822721114042399722913803310767508511754689651841343111534714165557467573613315552953344138595513290295270732063800773128296803502662295257236973453086161267275383849954178397946240489878379283789484973563391483926265469311450720309748051286195235894297877939866172008943909648212746129634041936631130443670522514375966526103009642275228826171052312699455633168903922349730573549240427631584017600084096414612970237321606632073889032106929880640282997732933956853934766081517096553418451586260514848715048187561724033657402327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25973806696484395074450848261434031324762872890343340043055142254719867948226603114346619341110247856800997184024574609584725073019743935015343331683786783890005295940485946717446492709655564999040323128996706691497112816227885739228646562946067167670534107347273029426220782771859787505656620169461922758140725323312789357220837451710127833314626270964276488817918258588847722454223252488912028034824249359701749693525974417098447442042089145217181234352929099148130078125893273145053228486285641503436364682640534514681441352816605618470991540215650693730826710909031454193013744861247481407808978814003649621838067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23462712444830644421249200379390762133748356123955640721648493619975400613004418788980381440772099327209349610192828565796949657178665699335798395742074498798236720057316237957974844818703027069733179188154370949310773014930445445064962944013657293417343460427479462755017559463650165067737566353874891610657754120113968094785603655649589543231540089865556398651120180692313759012060048598802136326424507351444725498601579296682228117006527467607795337282412137176443004463684309804071994288764461787399407731988798524128842888906422857414291083279405818451981444436996350531082172558538229341452795001265052909595169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29170515304908199819607918823699428749277373691094207650278080682343320122058951257038570158164089445165464225330681123687946411549498667700100340954981815405337998154325844588557999866164591008303407473472532231693152428328156496608666233122739721711322441782608743221327668393428306642622825426650922643288091478229269548970538328206280989737381111684089918270593335588548970611101889303548741162743528364632782002657412987657917867647454239139257205923938911009733346291619906024119483666604211840864494846998316520411746619318963048015368268955275033592845662570480495365407369556369821457157221154265979397908593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21524343274974244681182754533011968770796778980173718761338090924674800252513851149059308676011328440501133448696164137725752385895550635558277221154877265009686856402910542090132369495811203966457769583680469348579471299683773622966991122903826542075272258452733999965584874302890410268668590984705000239793844820075732206640901706913594355252991788331497066565830627835915784118733211444429635688448173930109944457330887082772158212346321369544819875783978918882116668705846645303062824615287893391016965181318464009501519882622888100356171377875892867711237338547349780300406282690182405825217605625673183193103191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30353950892155952814276869235918370627622946525858037233602957250076700454577589078277285998753362686954740286795686080656391320705404921532137098167921419786111236223244498556872493314978121817918056565443407418339139054091702089088230207744788696539835318164804356869782762208812689951683175613577364734739280907533086837965414581413330859545431860861814012232012606611536440742113122383464591209992443879067426582664463333654434017263535427664068526346222087939607493777918252491756885328661065684773486969218734820361426661573362427496588593984328155603404347013476788084805866046756243973508922058971267213193247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25939641126933620593681933059449439813498667691122441063624239932047043461426162050924336181914498751609694012123934455624663072667159421359459860843866403577745178682583236847406371761453665441454385638365978697207533215676040869373825803228408257717780028107866566186076836702561467073357530133563996460356454522938082491260130056724292885692050444146370684247745351465128331054375614209479055460363284715235454601606707180424671736138624891117187903626044290246028529360968877722349191359208076519089067700480190927583652262275400047739950950731225888387658115144606398869902553043685287125365103283307332214031689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25500106519875730587028591094235169686672293059981596140466458127239442757930755681580378205232566242389825368105065396685337287174397874343568540111429524175205563604329434963656785600315266687246958875736457864306759531919703714048764667958508517368545191040416130909620062099212941152090897295030870465829694331357790042774282551555451639420111931941794784683937038892944636507702098982798540335672147556525733895793812864655546916829276138738842550370615906862820289417345915103918335670758750676700062069988515296009926651703142752414468907849291032544989838042165583307689620302484331061281914292795273378193179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30264260213854297023947476866379072913411597843601333214497922345471576084482563901523713364640234328361245623550000155648272429527518539303705014640485464207742402930564436275888244698547784439497047303151844046219753767646692971456718387025966638148038657754934288473151180343069877768528496236806269872690267204027926583877907663848262814055974671720093878008492141181510088566023830932888279956633476859048093247488377310625714618172138913909618488914765404323630095269010199944718155341744107347683033110307409386607949203917947855571064976447549480941804288387491812784990050758579083308593080676168738580856547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26723539398120634687129290500775709678254228287092133038385348887662708685054193867686764701592741123789718378013132362938290392346711817790315981229284386348385423947456977058901868581498693338647992913230376632678550453870351061527103161708965084565539759748133191188141642846797733769833652525931361125314853168308186498031017363243189356516405064462543063231858615493402953407971949059349821143351020796392145590775524665011726712791769046043804774778134481505194133518246964976435889814277543540108599099743508957434495959213858755864571673527332881637628302235703393213902573712929830021983618089951345953777207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22714925684147502226772648794068675642706566744258313046066169033375049483301541088273080078616358003430695697777720159448304987877768633252741132586275909864946897198328319784640672314631481199978707445705318270223011182612552145434965175387732511926347371445058159015572973981017256141735546062996045128446624539424957928819282082676777377325710710178608516236790604489426538101631767526262821812543741020003171929928803450971732939958987835186338176216686683763510803104379532590680754428579725263642872981541135005371199288470052594928374508352196520062427026939374818646000158710979650440461512704275100710520717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27719350451721936301519676227696540953544194075070634685107184612231163816883876278147583554111340448737104871765098831357486100441251576079081360843144468517950221711737411784179129747436410432733879527970044566012624910136843487074499121700208145897184815810755098137987491543732995711862253522498709620349928373398616387209075079909195728173284738860613143415326448589957859072992884299106574202681490770633613323571085014619702492103917625863440335664073718033465322405778601894043825946091178582994416641589102229134381063224613503052315634468472633366614084319873258917339891535524261632506398657025608228644851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19732266389790558740414772381168459680863901829575978544235809288327829894296699292049481070200687006601534626223392215856066564842728259145224496501841072258333195186021241573923153761103563686788688069432248213184188436719306171806778687368221236975960302467386406635862652815598817966911657185877633022156088292353372300139215966091934674524014564247664841760648789608686048155143413110913094627685049722543551278818311691611377649063203649343523062987084020998192222931328693426895345963029324788535888305271647000340100358685705408426614295680920487723160319753148102593554566555465557309187070775224953464587903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23597100038362428748296850245010432716859020030867824029773963053443510137888010730046061411101509607994901207108106145571581491174332298154830755096913277453817230019638134153509477182960059343571645703354730278178758950008237954731504863303214463095510603647810633156883960706136938235032778529053473015046177966323190950475768848475579387166955652692143092458289820325364263407301903976899132676138414663796741167782696742284499176921578188040247306144483069675740459637381740449991889403432051345906061833675590122655407557932252704188959285897418239861099505879902765051934555155933704307925640461510626886769121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29299634065665657035542455269339400511277890920919846814546020618333958112790289147474993071801029604878667710727881603743691141037365593010182507107047600155000872361952928564023517288245204171037578976437180257382162137171918892870439730146934482855292701770531171249355858266137755283309756623547937805783060004094343756536498254800432074168792977716531175390064249242678940655357938976836143015050683518927334065031182768171330715815711040171822338151193523466996524283701287150850478817429204892582585944874214026185377115074607880919474109509303675466242646790607521306097879807542412759761799706572469851497561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20094031221147431046000739664291958032941555154556571900564578855321429297633290247869869477535805185949065445318490164260087542743958193274573287249651196343376185197473778401335435889639648939543811896970957410958509792460474787248801158333730746721670706250626310369742777863348408597201023212839806097049797028289308637690210591499587503751160048129539711545010154937338873168526158503826858792670373171860209141720765671075891512084709903748172125562357315624005735263088263249286319877141276188997771885734166873346661690530105273278588485805235123977282079756309121316629427328580884089954203980367209510215543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21914133298021572527131070383078017165479655717144581361268803288174429494957149827876684854594316117466626583734843305552730560098973477410689425247812502629934182007138136570833541528331416362181891638855954377852376321737083264536133233485143838398156052824686609494773783283267619463055103652096488112106717122414457324895830230349643737942164383420944497266299519605527865168874458224583108814487939266597098704088639673589394128472597039517031651538245477166643022181120878101006252193807364912146004573694508170237108956608091126889727748608122748161263732976495169478599517746598498470881661751753732803448837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21816561000551571883786055499305574140543361018631846231803563723528887776071657949250357541194638117386688215599933583058526302856063154899635512946155984431299662518780210739004463607425784811366350750610699352013594336716974548417128305388623981112782642812932921391781989852024299799784858883073104248958242179805350591374985205051184691691595159202821957936076178648482708005478080528393982390140773124125971047884427049897894489030972725753248996308314755781722316829266714837706486196457961298354676421894445205353589945160569963799826311253413564796649899116877725466639091572187643184182468715604748385970877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23995102950453667695073752184478102239148650410376430466047254950078513323428150906783663571276870683300424961202638036287922896505735229162412647130080774128485089162681555788351291416378912910274955929621813213031243122517189358136769530367065480673188370421371936431219119616167971685849155091634082895269923747536787810312377880426335728595826466978478058788445991192725392607884838410800974220855844187966483985587344618339825904561229082387504517429025349561518971627899054982972589521969732231501858658755390029843273998839039319326430000880815567530545347609552271494542710155783807204167081090031954532737519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22099416858958815012128765524471463744313721232324125818882749325318837632770110301091798274980927273499271803446579372181751463772774068038347921069905244006563730881234233073124714524195276111453277092944705301350548178964329367176431693296545822265007944468767129038977349945853539568938777109992462143846850754817403555976604242062553723256529013831975510691484625729318514680492047469470572420507002061788596284657014587565942335219068320904363340723362913227346154722792800773581545409148739400500482086662319626430450698824577628422195026191998930379892093928450006773981913159674172188488761479922031838323029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25361452455228123406842262144036251925039540119300454383574041862320966884758049042021378924531097357075844929622305327983704872512697184892254536837633334569261993657311609598852705416943077818319882860527861554845152474674871677574862162175658852775738642771295589096811425144097143635037628138290739259544532594817744451526880281166395633643253407266888730558398491955006682130309137859654358326480229509208192267896542754727035933532966768371778682002573886548008046748037523433860990430413269197712550563897062614469871848412347351600891620921697722043931599430716312399384135678238856532462148359125528698444547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23949871574959685615613687593848187144119835328107710586398556182913647866153518940388822921970366237511482565961631352236930946823228001500810020447914232842832762720763123707014472874900981729266768313624798442315537149562433889069020622717637144869682406182061620807134546803608587453308485280933535343070452531438865476284467949807779138798908221564474916438336394732616584198182334515083469198795819008957319186488508730864416841259399786383565487089500737811273793620404899396954792557281540840734101243655646941123937329387062015713653438138571769977747787414275532510261246646547366175657618955741380127996579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26924509231116747025362258692430196169632622229290577668437804822912072815913948194389477428179221479190596433577384723566716273354064972556241187394448368528727938161970120324920610675868760671414683526378005402849457739975800088580603727223735073594222713237367045663299944223458304806773359661265702553902959697529889840570620534126528347062407544295130679578907635665599709473102044616202991255201255948494374276458046839109530848265342720322230516745002394123142977074833951714794403735584882489002135717993810306733064873877657771597653688439170681080159237053380165676556471496065670606973886048626792304292579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29882545688346418294323315911087898225858810334474188599310510483020213159974875972363343662295210861581597924586196380667491467818784022561248461856810535585844263272358508566964083563416566655488530021242846943290390846979274882903743769710967619156586152795314046407517676588143426694503295722138742632307281557662558329531912504553735121732225998205667005438246415429146071908347960915916469655001200980933830159920820936709166556573749364517220830635495419712593880574786459268960257469925449071550246837117901641622025789098050758675626284229821917670665290807609160461953539697028533410902538196808416862695663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20957156656726220972251571393791289767094374591514727780508791790135109570287334411805919626553809272267303878028470698092896225194892748133995382982103001056835559114834843139985450962531083551683053669716322812847426445502836859650276732049640219265980631695064371692042146551793612178914622980800707482086239001930964541891058220864171621484071947221749091368032389358838095531537485406493288103414975763623528078567832607780996409299747979708692081991974214975957311399707951320696461526625101422216436132744463837154513958910681198580926165453536294855359893329094695178381771916782356438310203616912163652163523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26940022276734819815997483581037226943018652503043041329351432252874545197664149701135803953551673132943196412194450891627396572696289021496171884843400996703429106860436982961501752850596218376897446307900223898979869535745315447228736288247965653212641803656298437598521373592690052780144082079404579282554224340364177353540293509410436822939217968874217140495331705034716338670839591552148375213255734471027256126956063225881598595505643524204816145343432293277477999239352398373445173083374391161435823000176411059335721960860806976176092754110816811460370846125226607736156727645477637215070700788370950857421831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26480491504865497775690137322652775479564396653612288711766789646593789466830665084781379122744079397033371512664379139476613669213406715485398286206127779241476199275513742953795869607255491279181654313926899870485991022196729112714332601199119009775301035506810284293425869823115762236595580457751648716784980144454117293516248465098501564684284370230158954064649525332930327313645879455564007790206030960602970369672120188970681209686821918839879000793324683226135440055982807899555115353691373766016535671355176115639409913282703475478584286652715614026278372687562824299816583098824384854018389780354573292820409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29658218197119667023640282767016221573676797417567752866416860317168514495339014249258519088214743832432753923860362548904053625209673190272578795659957385987960573234030515435639964775051336843001573245134707606814961695950147389313036541339783573842539925291776831675903654180365552769159716771975272930405470323679236423460725105428786936679114212855373176772058684789967193645255476511019329144924098271614926509497910761882882589041763540996740720344020225831619549036291764572249009883931251003805229079517686602927137700543020202185344819848915487173579481715574439877352034912593717788291755788810737092882161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23236508898712877145941893894008512734175925400631551483848974701578152474221168814003327291227052848933901988082914851700099919014354373602969126358183411046321510255030415277749179777498396037260329384094207086438932321726400672649060735466418338270910019653500127317665371240557143403311288754279925371654066431887052893057795686408712489109032930704042807578688617536205611912059298401452201882392318657061002310658344778491455667419807183814691257589888186523744944252403748540312574661588138153279686324261679201293054125989667275933376306037836996108877318598881021082833336402054863930057808031080803351492473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24736095325157095090598919639689687994886309210106439317168026445493697916467497231759915577843336078423962939362963134808314811221151523033978476117238887329433644169424973342947132984578265094693504961757508093827033262320437406610702784350012820062254477926965986969866394759660492204874885443482947998300200911351615874866986820360018536162568321963956971174987960593629361723744281338213969442758660877114721755276121381943988751182518083714341642474589060543233091977526449475223196552482149026239648885431420498821608543987919881186253557152456008406109342417357093490877601584671539055039970141184092758238087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25376762278110668320570213214558039210258713783699293428421721118679137556557294159152231641157705521641955902132499932482789744580577191502807436801214540895926106623837887986407400464242660738854046418098594991659142510004817943575210061124981391757564059232970247947685676944823469127897678386218563683460538915403404109966766639380352560358857484728403133591160760077333692484028512627918045718600115260574163218144036031820407910785839852339441959850341177406596144156885721457881056171328768919250877498166113472352001929101799829296764320209341851583286038245845575781992814243689298876721569103834897316821077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22609177034883260978058776100191595220120736778223187755874430267581521410224853591186660426943907434789576989099932354523992622203146367149188459590880894001204206987506010509367798958889399687617598332438863206883422464832243195317284523419847154298702464589189120004363205214030875708298547214986841174051685029106541062679814633841527592316875098437480378300913074761265255604575024305578411883590881392936284866428469611599881933168590007345097878144820106259074406084355465095213371467864807761415818981570712018467759012194693322543255187927299671090242178662726074887232682987089461985734932884829246301846073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26317712106443381356641704726408541941440553151325579270198014168356919765751970496089129184325466229857460182969640317873261052473868834177910206513406810194492477631284178198245719326218104798243226069049532707193675749852618599922837013083777334264547958314324675193900531456119082168025635702229773776606818385290487205942004937503387437136512004300241587548956958168721417565072219978177756336134944021161910052790303614632244438116222093125577097210384738652743950332501369488491935896700091011529445510033743010917155909208283214120179131032603002019373174287299916268423761613008721758900881234046471327110483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30350915895756529870280377045871744127833840725381344509528021614223156604575761211325872302366174191692128810579065929806954636443044866908630855704710133397931760727903070570515678730391053923589229252524394323016502455618938060086376261236798542809628837072089853280306776790627986866430668471413753708842679001804687254814960542394266251682238851522255310083851770551717407208796833294528750765967360920374380414408967331139526620705548242522928854542956987113724931849163684105617191337764564128233597533913802377133985812190676549377973447092292399873060076477033500230481958186673808620856511348435470430386541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26582995481187912074133568192451374596336691092634653607551916291295069496641498963350483921569605289401466120872706471765421804209735108486593040639154316063234407624052898718410381976080587356153842326051305331974793537321395385842201837845543843141169952602218764847349076168509943231967921102087362746853082536956552055940940913180116221418543518860624479434719498721664775351111980153210163339672704135874539003198694279586111733145329559598241781822781262009329373230863183966547362483853527826038089011475697587849852450258524563715239619843406055669174898496534652613675639018588297745540869729109910293569979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30740981834189706496239672713112184762572837896285016500098332022863865243382049832218952752743695624774308238794209847816073862468486204369352105690292835444373427357008887843932361976010304555348116312307743850819873012346235507803450628449943000770563047845787807435021107551787357848794817999151432530418250694203627757262220562982125169480017038534277713235474747774203420491451722579638833924349500676121554371255856737896261139394950287585839789229354202340284986801358257954497219876408934184569749175418821815433549062272145937313102230033366091454061334299754779721950151980260406921510313061738689347237889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19050421118872670729262450022658054776979039456354662369550662317037296584948079175743601740792717101826802424358922285714191095737050263317250211271877929607622850091045183838406354196492247668219729402931161411897561335149632538402525131842738271897244043608143569567819722784204330668790511279452182626717321316331121145458323578979892795254339037365879676811575259779987038339039285415079906569703905027670952710425778439440406317562706631658925313828777901569362549117086815147858416532466506445978436108422203441964055418232131653925751859439646250913136386421420928592720303870141466669956763339442567708190827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20044632835737512282450816341010055687966899576294502799047460429373336325389895935876725896241251266513531365813842492752834534182606289656433205257636331213957543507656243850453153080080109898654417862284759609116890853648617982749267786082703018398834814677286281223467867906112198171227210095376814217869021790796258998796170300439716651712116135142591342967492865218060906541986015977341328278946806665830875406107274239239236103630122412232132964734893724678797899749707162215574113484893404414660061341490519994706194956988157508154504296435547242282271623671975900779917973451905064794701905175105902729168439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27902961132678998395328506021281611741389749546441853461254838878617063112663195224703390536495507054125528942937034709866322420481614623732417584555495851246708068815948386339061258886403446583629622939911125255916392072038536905670807558640663602688272429210795770799154612849391080603155341301040708652565797109723647293752577303488365759161167880591961597063600883379715204281381197302253525331427631005283600618969484013868531703033852615214646898376415433804989385220736509478030054562207287816667815505681702983683049647424037459282893074918923171862302111720308143249055603622849123428204671776872634051904067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24250161532148456211647939817305075148625353431727024209295601281442811418349163019437191790143814085330893785412796356813360452671825611363387344964650022234973045645383198377975529779453262977273989464412517351241854374931526950536132252541534317727958354488360581092775135104617324182554516351977975617230349520351232292300956306641813234995389424992620081907496333466303538678722558278054900244581241245003764716475361345849236309273905451636463889938887792294486058213142866796321376141447486200438200579848682079596021778769999679973045905591128177696115543251259703449993032901741526071602053204960674010271323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25080752303948382761219745027080067477960744093605334853124851657097771449808322554375184707672473096904522938478692894712241326470453639999991459665059875586197002938182261353422460332151418137039818966365919999719957146239025240186839379756094137594274762699802062557894890430030660893068455180109569414639347225070640628290086996290906490663264456003902344370730754786754644544447072892932305692681362207585381692069594981825276463924911855187038509253543505703435120824735375895228522635292794435862328968397853122030630155814573121387804606968116666779984437664552525976913492144685822512347371872613053546431481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21051273962024835333730181867244564878217159603589411377505500962761927208810720158046521468800716330820966776129992173538779236061387146167487596862995388658171009773601557001655192603196705254119233106288182696471747755581890447657932448468673267280128963451509584683173734104262257031988004088770115282937565857386867083534825865587774681007508838923772466058195468896453441709954107353542357281893797527552067698791948871194316458873822367199755782451857152898808340774133897178754877266238653479546265493820332871973005064751156023499469896537037931225958230525879487242593763717379110403038412284696255376101343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23798618764178725973447321929221117420359963219080010927302298497278117741698592806912750258511706626560363403901347743890396227190758958524985644358097855571435877934212328235924366660207765006660226911117124797844781979877837800366460238600055748090254873693576445920701898142455350803814421547859592619907937463965241767595570371171671842966305360807361563844984076865733026962760243775567923007427213368800989652876055217078834735136852291276139420072904522862384561644178166778036244589202015356869239244687268642573927367551501063740015142909395143981924284625826515752693571556361133153216247454409467300888877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19240777516257611999015955711454329992621476461324225089818688264149503430787987827605194901005801782061257792496123391467730361988119751090106661690580114986132454224183954992061492004202254746149240711537116107598509822027527619691001791897749525807297253571032069937659440730164112726098538506824715672806248959692472338222567992561062214228281709365117306426152233692402912985107184795565021009093481470837637855509935786324343899270086108775686092781699324108091784719229827066944417879370887322687862090851419214036584853902464745579167598525450113655461990708918030070915791013716915475256139796636913821372451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19310143254914940822912087784023561358426892879314388345828153711035052924045985229914250988599538937396352532873498389035420951888495616848802628199729247306825334520531146059881629274388570140164886940864751999512982397868625103695904502067846027941648478796116167101726489860950185043948550222075366185625460887529475400158148937417604878081967664671910380750050815675895167006617659730205657531311487533942294695020643268058185613940503976639987617203640329926180022573067509452839814664444498335138335543084110350514450177203208758668459817183750830469551542990267140356387696772869995810682149358376784079679647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23383583563381820284328997846569884007493839874091241217603089091931965529749029313768197411290785758225407974911024810313811800893913138456256308361592794283520843189598427707385397969576462473046004378817194037109968493582731872283661288419390824277213795414952281607744447126689067549439946649309184380790724167090584485108425830144599966066201294320100018588270574074602749531345198166764181047957217044262124231693957240385565773329760133799135801956539277747399372416346527814782965261910854417130194988587547574619115863553704476097369768910849347999047396085318064743193116362636543202926553619548876490401719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28309748519482667269946083750835666359696390878628308326351033519865500524513143597783943351484965742794545213693421805607026931236290904749079766051180617896594531867355134706108749868803897759886464977892598419664445259174103140483689389850297627068376573578601957209802084170446243052962116902359740346338265450617621501449613104811433279102436721518806338025412541550411478670372234140371922624997876562286921160086143955867132489918862534130518664297576196410753824766268616330030336107248025424221656550026402630245458817859450564102969118265290010866681413362254153555338744991263157875127718559112706019626007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30147006232407768478580707357694675953979460643804185198598936774518398161640533237490600027157994783112740725363980019349048632486786860442716753497204127854245167484688317478422727901694979010239235914636010803216598723676261623390418876253151173444676320144696447841897302822963419295429550019389359199674292881190974887995401515554633051544411679800954534821278286453012442330756076341990613933353486471098660805398297524549208164058495147277053095269703183382008699655023174476547686636847307634809440286259795424157270284702738173698680403590830925824679398236624806312580641201995177423372857336977927691427317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26953820294428073455607540864192288102289884110025098772321358785207400769833128376137489004582692359941660885924599598664661227436302559058266097068430524046131530089858662572470249996073424769651950663461150333820341441839046469364618791744858176905702945144681465051134852226107134011520547882128649052108186258821822928815599019993878446075806510714602876478531369422014838809005965240787770816336459938704608515147104084421874201687175781989801222103088836038016469820165257012551866731376192100776131839549421451985567317101252903116209261305010663110074556224548998293230056356668943906219780467057530312258969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19183761189136392887717708861237607201875924771308997386682130403362607252565608319142057722375593325748899187406093308725965771489684087099764644749828560677571793637249701837700129192786694717606334060138996156666418898472597403105457778436083281072296932032458369705554222476046588856759683686131937920823413936472495944691587204094054015508338154165256430374140097621623940740514468455534579243287476018067099178352728421904712382815530959421106631991190319931922236182909791066485922140144688330308859601767577758804238677115206278474358534325474730537470156042169972715383426509359323576669976784628190727534839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23129700611646429948781271399477395393949583280321024790584388262951318529410877856224106378049408114747041622652413997691969287414746784328553862047905026564745748913426176635905827585250769089754071149565394877984663200210649331256398958295424126938048058969950935586287945897575595033545939691591424421870512619658715033369748245125259131689156918155777683456730266873975034171528372087956932134374932717419751170037563568866875049377455885553911572113290491806129806359238147237451497195791910831849250684977684126579855198672422417840022062224228097861324055917801897554962659732439108835875716822413668223056637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20478660778836890975599403104711981258945400954747895537111875924165321176651958920988061580822801812491730525873751178582213329003149924800995947786381176655482194212559607731760596025105144086980655744450701000005303076616920837808968883169310312988184342446120936777739309695903513742755232498515422584719483291665613820218649664831965128643131761160736548733101643585478950424798624752762290793751209344384806836494594031574548524344742427515125755508217068322073679760630749983724880770760414333274325401420149667039555202522511519287426574092912629089173831033320049835358519366451031761771304402768631938373953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24339666190217732368668950570358925345536038556562587235901336434338956223215626160988176311907556131272435454384453553987647507396535972217633115904577157677001639257182228785071624693380132832278737393325738231636226665904931863365184193333322715657974193474046726408057940364290498229458063861326653149170868609026869919775956372566394837528382344358692210168618676419957936111331856592294488608847662534634297808625055094827339980993232340081156057263771364805743684986996731282491475192604467676786743047774862210775022410367640692389931265660570508476393363939731699394998683121053406645772817728672372332840449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22100632389131314585230768937537225142633792161872555427124694747639842409091938220797862991574259653469881194388440336641278420836534025454915617997044066884608525426841276051296754182370460632211204115057818999346418102383894318299495407115680322580666269641521886368524775401279489496183598583642757873239885634473638774682553568166646378989990053457283814916964861984694947672867197685876095995107847393982985133472879933557574878079012859780959396062687608270775033741446617032209944961921665344680258254604592685519360397942027246029025737501111406583799771683746803053289644542464599537732627931901790765920909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20970595925836288883087763826651785288013770439030495263103541270120745998587761443322959453294408542828448256125528767219815593355315913448635681131367246553779937805168553100855133283328169996212641151755025707819329467065707318687523567131679628536337562464993750650074810551029384335287893205135015197549216751986590208589734288528273569582794553499821297409166189496306037271875021598234624476662565823482426907126458091662052797574550311840455839913303407084411027818599978821190448418827910801866692028755349865551240905412840574367977194754903323503288147598632896376038227047490975416315305232700078770610651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26167132503218986196760166708763525312411535720501572681357874318501377554521655029880302869232816413242574866454052538314688355637206113059831266760968263116130570087890905791224614504199670049184984448890216101479880595151790514621844184005422383025526196470493911870831500429795389589782966306119402609733265870247243148843356615792583554904828828078979407130036302213769241368470164872136198138396345487427106526095861389981940772410047918502457693914431931945667120959297082757802598988693866127033326167925254528931082425536678271534557083508053460308039706988876632902024341031919401540583073126588264095114489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19772530662722056456076296212715182385767064005310947876676727398342887572936675057268366108853613964674189819882932143770870174110163410713553729002022404466657526158708008518531859146440530878511816683609385955527667624556692759147060696630724917779896916097732834498670272343712665605756295686614447205041121781712085133257396805824770260562048254487722324837231588162317770647920183748355353995363424270583560005648347451760999852105834771236366758371507666492779151350269299260469668380357892071269409753578078915894285437907274979050985586984447224788686615325176141321694951616602183984131653709134048697271899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23588903291293420948106962864131124614996557227341236035183187535953915202570403646478047323228128633223746722714222973022696262647206428956407777524689094869455246386510846242673311693585719464055566284103197209865225155397120318857584159511832598285334946513380982263873928716651871152593640430662718609600303463817374931129391810752178086215561278643344721562819809953042143217326776069192925678584282810602206234430090429198719974524279978574131783269728564617903294536514648529395790661411619112792000144336827583886214606481368752707353592178147153503588250866351082240347895959504169098450765767771315549261697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24002859143606124247798970371132811449986848039032514272088022639329899001848559782834507557164210043234182357875548145764268582774555116935823540687019563090046794455614349957297780699768295098237219498367881016460286629706565763143144217746597784167952668388719276542262351908140432523325442967309247705501749299458352246556348466671319032597354905420261376103342104796320149233585331141746943667215227043183834316878198331158741718247634579153907017850096166941760763554010721813053613904024834282735809839265952704887566479936024919642773816661864731270945324000373994168832645105858451643778260424189198188347797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27891852770102633717590011607360064401236191721538203793676779655602272427671808537035792293541536859493706779385922132581093092448923814807274333170837539718034648569175854978183675510073289341709444222654881199376304981458473446873420884127017286886515867758993502267638831538753299419604595503100478099641404898310915894354876987652564602911224016529452532826143386461314881357368350514323072285562459652487665934138941708973787945898848767901719425193891765431374911433406510372953682437842306539555100418336565113111519640506348906488122166536684445924502558358888389094019353822385513393799711276066096661872939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23992561914677634043710843191027971595689856695739559862338432597898480629158972985200262652667204049313968183799555552142580271845107704266703746765605591486904612901026432490477165329945521325534105694013862383820969612159472344249454927655344011791086225405420068034235126968749608340764072170224510702463701265331416960192370018774042734214102444751445501870961552111966215571105920417347494823572044411827572619773845763872739609757090431147926304113575460351977797936177978601844534979218704903378686384253618039881089481836178401866779691929205700938655352348016905821091532730081919687767820239058823395835871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23716337087070855143537506406315510854478975501695804460412252804954308784319013835447141258867744228610185829890122396327066079141553805705388775652905167889938497425421256553644458294152902926370173256236778343545212854930566848969290732138862961183727484071175080397006537956668868936470308109304257946949953443326990033885322019759411714752009838155356474445674602933496618727183414876312067271586450653470193929737396553584828481779478369396736086280967360654672358452911038563360818837629730810262532705683914256554543976130707618830055744044144855976027203406487020693046735078433631659631743417754730691358421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28866772325038148001796521710430889782960804252477997462015568786617656516626600928241090188279896009270044383103942605033294093669173522189890757195555969416138996779983071061354692754046506682115015885004241690673333539493216472604004600975411091919155175442217924105970980904451378597100815295109886174165791142913004982573727827495504417235665775803544192375669049252373959647626539625665923571824365478016661251350710034612868345801815785319242946676683239198601951026579263383286928506780244733084682471974446388333030986044114223590092679403077787661377471107896080594618432870519617357277858226741199641157691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27692129885350786137224072680349908694772749501962311990597861789640599162091095629011562747376836377765650218403527812885737905750303062638980640899489243865259376851377514063376456067155164517999843977348601027657588411724227487809327748760666340981723002999503486693791953510174318649188997875860958298365631896362717765707875212303636177258027944071207069465046809272466540250033347316519732086528526713210884323087312124563813184580028856516464427243106677405676056697394779619406266011653844136858295785147107012883842917812439747620011551242340786189373879135151647333388402364877253190970279402963238967306241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25136948294982932461980456789461547083902168380191198943848104235019625454724746437568878395378221467485856249274085544780951069614824538715905871256584064915933800564454687941535298462785041595143979507774946777887799293138797747048372976412278731773888179087337534206828870139104249748131705982476339897466865419789162871543456887705574029037073944838874213414914874559445428413264716236878714718280416196195585841816637655779534227221644646390524468552282479236936248281073579244407057219934333429256299738424549425260771036104385315596836259989211450596288534650492391937444945830096920480637393965048140340118933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29884945961893365073337364379899594420299230882828774805993662664103289783090956116081283094519478876816081408187936318443319514356182771592771955928495835780485218556618090238681236264428156856430195258238731139134158284712970559325959206962993267232313320053914353499265064201500978582231206783172079874555814765754593054742480741339831881385937076676678770570563169799060945437062800199548236618390399734362159347122627859794849604164964022740089051839209150612488212851661824217755087898028272329386058690706318354742652194451880279180456773799999228130742157880896688048816798772983488702821267015163854150707711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26044632435112892198377714081826216240469810473222588663685420833789870801495916913573807478008289269110653344347821749152559140327506301916449188581282389426226392696364557720250096601440605537805520012874731016646513017943386186255907564487863845310821506327836707113499407985938972454527640704374217531554001106709458292478209911171076936367306371435916409727985223914590952262629958980810867653892094265151399512501784468894278461527804192273900949683265280584561660267276471046590131275438040696044222563795120188030253922428391739208417356594563070629656396991554693471264880464627659026469341539471728110555219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23908008628755613625860748810537914983777338409948814790478324686800861919394109312708682663627329273863755021959507955736779548159724027956991631991869005027920287712982352653011262465105881453089686820385478502729793538850300392480325198308512490863197310386269611725036548880832731329178485924467689414498980583148625565038673899030898630568353105913713450851828506762266361705621533360430091415845170597110809932155361356220744047296020061433627923152670342914507251347921071825095550460317924874277390515510441860765666821334167515158911353121042318704929084040774958561703117082222537074225622164474052293465283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20650031812658086654777117565014572128837756877162745955359204043158804073249333381727112948432038012330802223552251943565710918491539443634179565931362915408713824314319962155757171400833833777849148678913865760268469124931547088022958657705451750306371763047322981499044723238033200270223619780172417480982434485379860273758312636816615100656379222531100059963471505809423227437553123261334611100011095483091968387009020858238224817286448512236170041582213766519917337978265685894590917918450955415038759258393310430878682289555055613340784248894534745360535390898514096408191922237833335760734166552247273633683427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27866359304622141152323977645145248452949372499691907030612447385549521359240683792364174033754623234753981408993320568210228218498846204339015437725378074373808821100332305320943872260853918169451321837439714545531994697528163493864762612152487968295076515194507419438431500942756025169425105270207074811632236923599873446838751592237930233048255078299779787684479451317257524913603522884674563825387523214554414020006442342488503030069382817971681893237914794840929683889007242611244204663778022810656193132725691206602677990334413474481819578461641510157797928489729148778077329252162037634137984956696536475428663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25330593064624363896266782651858443111052274939708383004758499931821166607215341866353199874813836874073341780836606690537830357847856820860458125989112779323436985994616934802193063695993317456438194024410285996328707424784456055455144575594275280729719210145646227806094478678468938832877367276815605401696652752002150455395478293684801580278603998760605022987772896441259705921359464384777583367817947249737944477651202523446227954154100101357362284902041291169068307445715524548763637770471505727914960187414063753884960415711601500154798029833902319612763149616880598979980223861895703887229435276167815817527207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21927127420145627873000651233803718263156770317289990313103251026845466628150058492056721106193881372252314298153903018571699393984673405303078738491468318608162328527298874859366421259893874656588734288278241859613292933653173505030464812738688715831325526453474359714898648526957070912246499626975721448369550630277785264387338509133174160811959714058663939288714038216807243380285010430936622351608375461346255638642095206447525034224430213234642201228886183157097129386929387324963086785534506066417423890693957425901313411515717833033093047698233806349198383669208279298583018961065967207077803653737400145589977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22844058501847710866952845130113560958177693319972741323786266549959196159594384204196310827063147260028094119369714092262500999856308502597417992803564194442321106373096859245131921592505592426294382607960578438681536633982511779649401038477614827968676613365687286558726983495385547196073532802608782366648644771026622921060932281981414079185115872804875901175244710075533468887579906826216335293480097041107809814348266052200063926295423012397858657033958819117306823072729690865977225162128273749014009211838604717521064368657806972631023970329316917789152635178459763551240226759513150268637296128696598724554303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25555710704008967870590904977346609760596455539304318411983361988149785041000611671589205014602893973782558839197767504581982607631684058898932994349586968483564291918354696691445674025868767867612618992650575848655363752378818094952314828298481036813737188694715533233046749835897498167446593854781097893827994340858920236671585208844690785886401025896473695233689130079846280629943190159089737141197047752670548116047931196094354419664061599325569443452288864656849332235314936305779093512248928155386337750607443950480715147785519728770439725861323988513173039985291452564533519598593831610601651067858971021506721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24490833438878820522812084737993736954511618485447983933228231614063656475061724059577923342620025838291717510334724241971353357878343620786787820858003679090156724442002302402415544710462498441493768140655319318433173806452313296434764905761880862793952385395453369937798501826557210429614088558219232555577078356913493511908173546129340528631796453157090593775362422177337097485956271445179080475214309008196976615167170701515314328387430424348302730765159213978042910318883690037273192987042821176315398482103200144778845912007573081550444693797614854218390491812177806178321682281787625311162036014273686434118937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20389542248127563528920988407463749723459529831600498884842092448280858406359642152631454854030560731295044365930670516314254332219620415148106305817961605334776787195662148600122626263487020484593748859341137480985530427469283436618625560378759409819585556316566443519285420375271717434864554275820709924872298034675370188952058906889567807296067621264130847113603845078969908407829807853658231033403802593135295597960802696731512495729471869021179211914757253728108488495131490710608789433839848422921335755405943620759347437210195224417263419838707572834186981932228528299358514085095956814195676111963322865028359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26383465031275538992955623151131755352594137584646883841895474649477247086332466987149444832459311230291050083860796524346844391983025808831734379370801307592046833876547939711704000192419993724397802281189295710768189726665282250263459031590058104392633976540290623385019204274204006253545543514842979540846010136449544438619876334668888329640702741247960397248449515751321888223992578748656438848399917607561759980226889773590208962580021440050141364519475953555248802135083028464305258424601035898562133517826736295306307780757860574186214849095843845824071200586841347459127282614017298404476758225962983482802819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27365179551005639969635567741535388263700869461326739377427159203114194827805365724975078116365098498207945305534288328963640446353553201520137005476654692043916423321207404812917712032201273277181656882144768416206130985292880608562558870547710768479054005178332476335560388323342375981146790481269598248461140624393741821945028344081106023774747448094453272928433714415017929404651006702784302474804091247652056565532518417291579826270887868132159944587359024676063403571465605780437723715966970201456910278409874415002446307436661454718726589359429898757834219187755172202267140850132289024069518507353002392326513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22431736591337373536428727794136958864834249331799269541146982584907872929332916103594465365626348129579992627028133847771379665595127437798904872465280315893746834512296800467859078925834099263753529719039881644946325040704408081347482078497373699982464494693911364292279773938925924942553888756330821492123186990242969851656277142753328496469408030928237877641522816853108010428592576380282451803267487462515650211059782812873128182547503982501422348051647050825605709963390067768694349673555185712373248230923086868724032625632747633991993341705142414737019036519582234499261313072134301695548438467848953575470203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28534873549696424670967842678327756878043246344279027545751502657862457695493041596725559234006442424928665242797013085754592956166002518303112164877605967784353504358446663095036276754742612833570614078184318227571138486920071184167138275406328169743805197600440675498607724459207367396621316893609612888010448769324623529622931291939611104559478709152831609744785230679936346578750745570648584401803920745116494962627884353407426093108531807763955632192097311086922639242518059174771964213270201413514014323640725593495832680626482894599140086487157377366068584170457848096046463408512483666060134975310515059765883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23098814982806713162035842939814512749558909781735660275436835640568944447242699433288684666900910778807662301192005980035952684268542161579269728907290566301753444393796140007516909964513159081458003605627398659022753272571237885637907774067386573769459817278899884987151369810714005407329448780506848241463730507218767799859533417813707602495970132164836879066700883409576598162980407844683584482937016287039641022609020202704153894973319099904207236131157228077176656482714015785071599213188036266192836752400839905065945432575229300957268805545497188693067985930398325186597819396205060936314108494701673405799861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25357269392085224946885924102142406663651353490757380187178001232691108177895543554796134971255417525623928424432821650423799668712920185613112221949860818338036888318284635929854344866294657589563622295387480035340653074644083679370388136878693510163178056480959124961702635033444967809892218807449114897390560441372463963112151457070622360366541722766636844183804610811278956959312631586942812085729868506584747974628517385516595875570821941893266709065243671759694817434582408774948704205979076147946092232817746171080985848405567077787164566491894616634514836920924250073396439728574124562019628631133689293583767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29127316359825637786120764280765767818043646358699078244343221148425104370690177932403833111194358577443034784751993212149720827135096212768644689174340660623699541697702756515452111272085714229530842449947566591992313290751708787173376104218693824656957947182228424875313216238154305575801779574900248799539418226111836802728565651926439391128691434139714366221227328812878605027425271906652153830320297273126679646088300232721648866238968797057601833707684916277374937875031557194115857814171719361559094511482078323181342272925447719419830761674236264863506193763695745750043788640312225111843037429644950044843637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27304821922124781025110706518201123549035664567754370309478829373546846631023546588540207756465684416702837100536326544884864575938758599427041598562334108577956422935193644810820744594246279521789416468915267288603269496949624863546443124844542851927413358820818643116987764996547568869500337100295720685170365091076483023232680677986628424223805246669184831086438641239221778307020110916309776631939743825978740165282769511683667904400359812671233014084925733089354942789632773857321143484637377786451515185392237277001584057427835459824638173593508563695688146341158615425982771796345048663497309530288202764189253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29791788354663163245752001711017441360875422200790934438136901120137237257760556927354344622668144514157429993705920786347555417487851997383432781511298239104678458870628999020143035765767078977536714674763782019998189029342707842546539136452256486545610364333332448459593156165189121466342398517030405840183369245790039195305832607462288575003069823678369326709100892178021628556514533774497782076072129718496985330741130639812852108728319822782297466427028813477438892899344549771046030695267009002502578307349836211136727494887219235219319782462075679828607246572850679203292272134604049225409975451972361430206157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23631132500045625438049175973280983157266914133366961513273779248014015537892531639697276679878617142673462853372030820857927128048426029393553249513733180480302242845420994018244175253631164903264349976505964246790424904696865143745121777541617263065665477199438958055596809182614757518120812845093640883943083531326336439193401027652951478012590009939394054588124367713070395335509305259930068522803692579076154690571463923462198238831223088658472100752689909701907742856938042678741440136240596542791087968087811249992627581017154660284906066072271293615137900281164988822373464564259817425210258676688361707744371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23441934389906258553982625206320467751736246467257424292454196876308009186550774872597741964972113560848687330516776284402741373916821693130229100093346436250314882170526615085281433395340271507223200869256065516625956791189503876929604168066644315955270020002059710995640509298165778757569761026005649587475762287198874024597219232546181729788810026123409145626034477341910480112755183620473418271360230505141159058846624308024124220868842391110162349786254983481354497435548151032709162246598207827555703848706084351438238453636876737451379734381578782679644072690192922863786890803852010938825429053154638326782977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22545064950408214122449335140457333309976988334226604939097671503763397009577701637080607971188296721615685559176597187831042583873905865233319000894581030392846055203682824107207122757692197251150829796393603382458529466164472134570574077932944564516207265244202997832540080491496965358931962598154646070964858138906230016064021350395922078263899507640464940305808260231659099753195241669834007156930849235819622255297946186624918324951424216308495532706765316283361073019645132892302443867057142789671320289032990558500189309976634456821920640943320526521630600463922935412410578588671911326924839784715409760276731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24093106852603443230748130510372715529924245891596138628750806721390210788476058924877123554586140706869501048402237758411844371583707989739310958396891695051005557114504110953198089634632114969140461551126779044650834471766966104785199207227376378186409243778715087100091406335419793581149341968455768399311208284277606941837953294268186039477931945179315268628514348807042386805824760739773884632397313141640508619348832863198836379887711245704290471807731805847876092728994324355065386594077148911060884064998547428960923825992388224099972067771891614579833156827506283969273850721808580298399390949334775209128867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24395220895062882884037170289253159119406144141798369758108270031177995811028517727616807719824252934314188280222526622385705412216111679817327190117365254438205275194779500295825575114493904037497825940868704781946711582023245968220984200691487120929266811945025252544524356376379608252961138322812662993982077047838343614352072779936603469029897129856817126706700913112553943726024374164609872440393573523127692614308580782984138177149732880140531623619594662834226938857962323821542425461010377531035908648576245052233176462915725744439300658143001081227758564273281621205404612185444415880300495129039287886332997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22508741880736948856684643471313477966733665365750989176329584081951320423501447375220015217946172860260195705175606507752134967851346951060951692052513136436310811121151696597872062740414902648991374105426134192362046912827970270336298026001575381941634828985637137624836378955120911152953013237644212187059291394793835248133719188108777570492284805875405581821369008214310464596131305912829431112181477929325292104146099987508630229670725560499858644668927995867502276706293860147524036322345705915514743259734533118528554152360869242902412280600926365030256325570109466932974471926201739227904331507442716960286139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20186412666571036740852193231486314204885430687714138280146782135702965302012059102174366267196146879983372930092314398118231308168138738644720063721553235202737928504979400185080995029351538425703918063672922707294126684307652497226681757229241245661317339427873944159442345593305797148950366089139462082372729726021015131702224902242490706810590169613523770146522077722832474381629307268087886107358641732651520984182182657125440139655567617585307307284594968669716570406146982214810226868451477918414043375206548080111725511810056580764050072596496080967910432865849433077577833071134371852087535591103073507093927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30601278842567696212115955867848776746234841969513180987956616477894609985924133450915769440987003438902186425986739532699857138169778190325901144018776693897600782619456525517467965877030575679102121563329928166159516782402619839827063658330480825933172080520407458426107277807289929773971283047364320333922938994255368682307427080956013286131600352390629499125929802338792528492381007193268584014750911925063468173986418077403204193021148057122027812400376235953365436358240935939753948934918293585631138761977536581502173149830016137767382111900033603439948474209587870101362728221796374932289874185752608562097111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25539354125594869266726202746703346461894010777201477845668757879179292532904160979563439481813590030039610107545219944907860934069144566506401832323702126194508834499912474239061049515726506862797150688681625498848812718712976858740808965874963851194736014524664457222660277069614426590571414205815309609044460089424026974728942702912514220559966305084701220561588144753206060852802614064294967332049090302324639045177543837654471446740563171920970198840238099245271209181770569473463524953489457586921386042193960789963010660546531798244821928548867093879691445831368179862128757736564416595902205134166371796827877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20584487665052400194159586018512463206290535915228342056853625413827890319620377364369386901039499480048625391856536139955905158586612027575376022991361730754905851977506293969318509008532693086076696427267853683472741728268220065391859602965144380654904077880324042172330425297946744167707657753159008258765741214758933348807480545899682525654835443525100000810011655968949174713657620754372788951785344942560581846865209122488969252808198904057647597353923326275122792116145651594006876341463050377360380781311989630735090168673261377781397512026329875697043788747520861856278975762927915861555925421083803919047099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23235975638616055312513158954703490049822787674449176164937706840876524993210972572318551263440855979705614390452006489651050467570792003449092746230067285669309588200357452442870918777349068650050228791600201099663405457538646565725525989551035346587416496902101407489003242568540819266390514662915633508661994771548123584169217330393966434640065512497431506367161836689314365739647672166154509638174038728706484916392703310063233018781513112722170372916808388410906861887146484108886198432250662223344370525962154036344832917113851444933780452718471670976673691873515530945615750665641078311462688055913664263871099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26284478689409557584898764232389875834800075140913117092999969870247953910913732578962277130098463026884395377919645210667510822384338994842274390768850209306174884241383733511738463428500961883978107657631698676703497935437033814271704316277107636708067275664762997714112819596938826271118277211736667544458808857392662429401143503065198721465295632157698265562362068095591398285480838587028291861416766951506069471919124897279583665464731415991943649111891359401064568819349693048643691052305569338888277213399415667031551389288533454754030515067793785677885874457298729035014640224068431601325905762491197245585669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22442836362808587140989004607182737487938555814840874363018014904390623712068976311767111985753834159629854138487083881785235382020577091799265845455120625421570410754143513767447492309331705473533834881227707566413922824643796166043538494437326912453979205527124984870758175677127912661275663706429285380630308426965161188061014554690483388015522247892064994142374695065043620078560535250535906073261809664654355430877712732697118434314256865662312476706292666019194607646980930719751483923697612010542832830956074442960512697332170522171039451941030192015380410024832575521562294655188277278397674717587838986878407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23166196568637962504249465539440554373737385959681867522413498060557939289389772322077868012985598160004122306609249884750911171170198341832084954135426093772949257961658495444413845594535735861566967982869989678026302501004900227339800536210725203620565198878030875541258353787495178909709750319605666458983983704944985307627267539228582983069129032248615457929399571130886771003505848108005268262569333239264071032397235448380542009740800296661394413163868171450781682119632642798856879009755855045574876923122156712738441458921886803276755715053584206389373783364915522142625352242916454242595488371441694487935493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29235526340196027571706134711694351024696217551661170397369881809140862648946831100386894229682094596943769756815807001029282829465990147343531550451946485250668002612050834689342418364705842912928653624652700575582350438653526011556805395233758882427024946171079357225771258359929573799080766868728785713422725136049050243645488175833499035958376462590861799111876081501984706264759259714204245245212573167198352697242355300922578590133086811658847942338248457928784477997488848696659028749518046813348108711893167049178825218392224282924713899364025038610708151669471755229180040368556168131261758261771087277143479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26829872036434479916344574730672139374412251306630352529301363462029393212873865993723402228363623892481021750670790470233526357949779084239652942409456834692946159089846802469008854539649961378828599492221986591688894469382155413580222371020025227305348218541243470548968224658794561116582606617196927943816630038559285091290414625000222170912826020083250476721208703073813892714166898493577815773663444730078088018987901935232602036086337035493591496205865509433550859921206666250496723867538657416213423923265249135384728843193846293543085589639163804489972559514863258077451167258088702081609731129450856590795877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28994136137759348867624054492263910884612306535453160074345837105340084591518921639969370310665338500995243450827945852468215025844140642703137562635694708663901531863948385341725253899059713505198552873524268989005952409439222960649410626403514672141749576700063226804927897440464876604223923578177225800028973336222600326889800904194144425474277440306078025928960656818959869821948824501414059601415526652927609314531739782167799845771164757095627995214388478132220732284977127607935128276020479774381816206966294205877044228836715773841054921946278315598780584594315903092295356647329080073760552347403749034490877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26623531156898117564454504743546574273663902660748485417372469189265696192659763921136490261795133998467387718961472753321852193254658950490618331325817534325818740593234168451839655303876131369050342243026297526264673578824708509834990410698983160108598944864615190941946217286988971532500233913306204884270225448656799935776871970176394233330234302719917362886065044191342562478967809229233905293740053521187353379351165779927219395107286505256728022801614906209457853016475420726958926283681510386393313139570078025673002468945074129555166487820688287271333827256710088714202420796962752347223193945780607669844957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26045957454979389437679232311045798237672965612645312977436879228519362902571201693252600304162033671953964136812688929574798455380407604232728213240699618965642294306453292890656524036350775272643721393163218415164204973844482557320961883404430369017677027819869590305550491476293756201304469394882890805022491267517876904379478602762493107475638381956430880663931866862557592514274979558432812588021353238181875646285506348244672681957716934689283325372369494920288859603548821713257629486563044368172624933746087342333632448650253896094054582787557106633748199693214990366448406408335856908027981435911723807062559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26542061912530193330072603828900201365498907746019860557771387591795881457573274627751164392632827446595757629780226615205526789155077171503926248582481970769787258001552684847297440212408263236492814537459202482566409169878187630537886161333211288438790617899454849182591464923277102583391252990416620629587477207129523968714253505969059283181145256852628599862385502817778816573205753161289109426129721772927242063646077992906262763227497535784377663477064621014971684561519971621656669086362760668530912580474281007636524707919158319331902792737574755662254441892192307064131945789439864489803618516092374741602713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21522358196959664258104758190773590276561007647455563422545628744593208553612192698854574627287533328750842812482637751597189679838608584708198500701291719926607779079237552489555244685625193313760347713632540809665758515840562697775905673701789963300846009731626075498249374543043881458041596010061513046896203223649536332677496317383505085146115787938680776270826352968000033153572008963271130015947927253150444821203607210049428577765896696794626927510866271226797324411152373317406529697021429031184924860832470840954153165669921327450901500297970641792782080563613694955742946304180429515619052043910513903376257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26943184768854561695155903693701275716261053048388941304182244502929241017178874973823896248110757164219047020519735273550537522021800513728776248886984668563603552233241119326514290944103079861872881119199433219102350131159275972815932608380304710255145319121807521734427414655638668302402958356275188054324716284429712549071665081109341914551226837630263705285836339005090010831601709226592215045823191335084163220961219591023631140849913496550736385959413958166951033639620909384538681496089901727809370684717319482251766402428783807920252276782657729450096785191906689456302696796641792041359320501884035406428039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24412450167078864975382911813572488604881613134897111260340002637397709400412248134867528302853293400518409594007273464850101002074662048057610404443535176391985275650315564070731140676150073998235843685519748752822535024074205406636639427935880048184885230941134466943800821406701018123321621442364513252970802431371829866491150749602502081494178218584043611295594517148916057352816815934385502016215275819943431854733520997184855926866994740262354455051150021068306792435123239442757417189298238328715808150959249407929501551807766510696896332637229219901575127597119210813883561228696915397251896891917478404057743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28654246356574466996619785506745850680426351291602862181083442992754377595344958430494791018041909188566627009838078580044623136950094936918356494544212791694722668119487372135712156646696995956876313734601483837246726995283490005743584247426990472933998499474147399799014204602616528128283835747591674233569229048614917243707969563166650183309720386729075652879604214374371410015684313876266093278148246253737404957051978555235548648582432903060466036395570741541317979346947311696509654348145008836585454086197875360361871837521582258625442090714663788589278569870261272858212332466173093746065372333860065334606681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24596311762910156596857384899761905486795349409889182526699443841297602169463145375723944951973594594305172651967573844326848600658152187732664078490744322760784202793846746934053932363314575465570631845969397114334742524265993536735016686773102793740139657466874565153334848437101205397730464378588889990543847115239179273022981166807086202982481467923704011956804507701171892819743260321885953467461794650640249712587537453709695582291282853104770887990828339882869447450489052848751842953558092977471105290569322746206437908536807804696424992098373779531098798859922204417734265244601828589406861992496021755231173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27029523824373593662166628139117579179514600163195331416247098059289704303125841735629387990996831489304741380727290284598264142778504086677168451133548634206191571551926976621864356485784908148782952508853527456906358550107773733742352547186086658891224592507650419165611742399998094523696857036161264522552236127345064974635125705697845312677263793366759588768079537070622081684087250814943477191208718587632662404589791727449403871039292602991737399810630277937205476554038012904318927943300612612091330926036970944310362308510192200161778989583979489778770756474937897807960648600551181847129911879372718723662093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20711541518229331747787583176631234988785318800248886485832472961581751532892779610828933868375648466191856607505261209730173531874878235906038121119943370749073753004952393976551425976842852367218874789099017037618521860507085668695839696092058094780070176223488453329479867164349449094938050883645676333864035901142883954643911578873197285796925934302180128065543543363897387987474253879506551005207737508996683158110797689362383596257879158320142566424453185523245661410023817870681948359767460472520733844754106554550562558143346107078704579383143070550491959639529134762955936101861446848050351517365050457398311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21746451479263803321909816716101111793451462502980406082986757397857367804126683501599156401885119557878925678176279288208190962653320752754432972241389938136035839743804455079251231215358934852829466922585284540229561554493185425977324537339235150914844250461541962687103291032241020035654374489921532353038735355259985760495049602583470141957368427841570327909178309640895928052993849324792791727190436761604057430751667172435014975367218421039131598209069180489626824054644430792518533039757949543538585338898645115054839122730862738037067519248370271291717775973879855492793267948899281096864635937197102271024903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18869756287313958742186872655486030390564612430023975294157437187348304782729843337283174916533297539013400720348020384914494946990110824950288693291716004185077704071540451110103683460540216726559456203026944871966320285183719161074167457621081777623443848737943330535438735671011876735044152359363213737472710087122393374231947534868497359883800260115186938131851134424532738713458058918395639645232244148749292179359718488071948275283936209939028923101891570788521577092310863217511129904951403015338010745251429149866396971396485827681153485051702943218030812640966264268920245100577774346327737254977967046929187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23803888152088230022846772953190187093869471996907070575530315531411026692537394972852973968592404594087342059712595642137960017714896247114962238145360709535063904012524508781876409716203132044551789337386562563843888602492592165291600061879824037868774866221339418197727873763167537009084057554623005420859264571232096829238370913817466232803694931824101723922964794905365037714409872145952828495236373724221466869972636530463928859683067629906992899683800188245262163201110238646202776477729042116874355963479079811112251312856347408048799745349261136361149479132962098740853591777946532741618019230575563615875153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25736454356707676164327378724937120740287022531602295041601715791459752259052988639750147258411153400279052532437731673390600517524684623147383023121305180370729819777297532813837830302829877318860455229256255175250964415048820580697378197728939034377913260704087267438159117842357579526533734068868241280594967835343299725772560461267505219143794175149959056560347548772932868322277994862989202060971354054226651311486252952423446255810702566466515965998016997885721180427905108430703161565425212594062902072528906758344802763121380871249439428554936824174997084524974194208067251204762103182451352367507482456270197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23141476603340837857167917615974523761461172134336517169135426250613652814672894391012622946728554272764665938570072616369885482398422164226587192212014585532806350685275024985978373554060005650216301039620774124875475060769513701750921909478892159781585858075099455462285675557420446681423892647255151278196885576805602055618803817507527929816994203720449853237234024023552530697232203425543855403019874639239506850529024745585185944335271649678993290193438257969346463308314703583282532527148466461919243997645581867744737268494531092256825481433030837143665082036642179225286670045021222574095689471550952300007243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23881432138103138909828064268300749755457865808348875240479154372378978512727653754773373662024942706145430008616064975870458246254122238542671366669760761705343422048867623469452977225573940541908586780857483313656261740161005162825516896741497832597091682487612127392274423705746348761211190183583324642567632941269236506812209324306482682380661024576212804667856501770728373504489197964165386421118648886471807432270043348729574071866746553286713675250827288966148603439314623481532384647780219283855464058507242379136452543118825010844062415579248909701630258266924415492146680162762471064537187068508573405518967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25205580942197501934264367600285301951387535339989239853365447554805006980681061860144257557907076382007042232378487872571092914072080545976312696539478977527744297524119242011246618239844979439979574579974850443285069859818893025852560837987490930925795024497203196245293236343710758727808746194154518143977562023934028006409972061757543633465464636520445625178366196532818603215269747212184934065929875810998541520504375081545619910620056736712575923954690979008510659063111908811748261117854634764649991103756057180211151799691607320704304030335476673063353773888181779126607234377254666078501212673359420668864307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23693456415429325496972626960616682647259978996362352483210212801127415195049008028820623056642811398493663669428172563826249496995402170613859074171651026892911637452245148776125557872382481343360640529902717618616455155255609803565641725558427590298044714999257944521644883018472104332700849157656236617963199196533691541171936090516767178641143873045713423405236979074617156706015946446722561196848354496052039453166041236607166486468831777267267000988777691272035748417475182089233544166173958082875796457056486708985574044540902878131932522095451147251389054632896408632004361051721624078475866200443586146620941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23024291671738127737519298403175989280041577191332080315314555854184246624271822788505446970649970012783005320741107465712300791039398344986899231106416313344529466608602641593457826689730912218685589206028479260919283187520602288264418152927221371052985173400347449299050245499118042738962577098902068015318262321390832514941927875720090657937503320509604004831489577801511886737606583546860853941144079137348636385251589027128440264364194571488208580720042956868706101535569202371828139721330574122895733733703251905331927745617182673755635796974643720560970739584089898343700659876501927846329217628708754566085007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22925123964823635370770270347813336418365623977492936726093224456835077546367770158468252420365339211184376612227738468632766006647584892661325721499648925763829867946928694686439047270518128472931794062994947878353292025650115249120323966271183317328395531503218719211941930562943933417520297641258360999623745719445007674212058341616767537668773228521789202830540191708344014035008784271473263950193170176763675090653772563028967312643623918576924355526363650614497545700839934777220019228686468309749702332109102402182401876745536445268734328855095403771245906863926491118563501224052274884343971818362140458739459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26223230726109855351052079682784460987382809694267261011490393536011170539357181754096674547174869797676528454278842286168351764705759284234220176352389167536393050248475050220666693674897516634896438653612717750246575490641863698929708853147767297339933744321638928801787799828084721260180769085946340236602646588891041387900305163162406391104068133499938748729145450699786320173059713514841976951758999923567826025139769785499145940048162460849292776224729353623986304438296277149141238055543171107623110699103614390151494341237658838492428778926716278455942931615020589020828255305179029628596104922712092011057253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22172190287244747502002650229774485853300765633441849947768419912201937742883295854829323213399697766946036112641960609479025668340153483373213441711565962365937419972623315488888010740820179941147379886309041088070339754486347801904275906445549574664852993371349194920321050516497663867037626184022875681832522959784526171704723634868283086188746749210706239898458758559765418388507469183724509813466875325872326385661600253538622012421756140088319659872240201532998423461956857465895947896564296247733637617171903607064827058461246601377046160392314082569437563291222665299537264164211875640850859216015506895947181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25754381661430155664077287018015212192851054254338519589190454813916657579877770852961894106844975803993678190813270802382380551706090084157488465436528663998147879788086815565541762908919869918204219469224829064628795638823285868534620943002335114310022733985155203758966378670251477451792230464277193060552570042052453051093215199205952547829298541964551952972442172236498150391105334533466536388279432597980333060165559382457156271582400945604647993333394648440872487401004478614594406733085628409184112866331715088024326380887202427046780937141290854040464001943153959763686662896925007238259789225583718637374563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27715721679333404721043451459393660350513635974542264587588026904793094099502367409790989794509667653477370745188892768593379861001614488577047550794006766976398053775222132771121966660014332328006444982797480058625343703739996335005982344833354669840010307972881900484360809049200398867751387829976548874589919551060792568725149359177229578263479502421444363817045474108232426229148676313702653053394249628511870046272219506470481460078604357685763537227460322681809645781657925633994464929592259798589318016571330633691515254388866942112363076149068697830415847241208925098356743130380983194983588345559873408505879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21965113438973563263710333520783029060400246339204747334215114652729000655024813410176565662116227157412026232727255143343325043212133883643055342229100368320185167634888842349575686005070222513660864438783771343490233723176364313039328668147666616581060123457877874195480139353691080519170421794439697274147438213782872120921782839757831624154025370601698314590719983170847351086089769561872203488604817570302157999846404771150015759416424684769790284847363665055575086420398830820636432337871923944327398427009388313808923812905233129716862537048783043540698418649278688027664667417025602360397347502598643064282581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23615211234042976472165705295711943382334828878989970569271868824982424883297083167148326603459911606021105073871988453406894687565399543179943200792003802526485718357557263866889059144850885550220281218346017948459668616623271188174780454886242425807563984541733231386823804489714279613558898718225362703463604899085944783680683305511661429596494673880945433221376309992135298671000036302593002213129238739885004442170534920267937321527886148745217407315382463696131608314101473280633603284077049769095535803767569344170368184651287791164460343906117545377782659760076578349173977189845264591164175905095061767627783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28120601864478802730483096828616418270443157470330285616066350472721542266798783246743806092917484828557110205859107570853205507823108032902822871943088385641120908987612836593605317678243950913793751871905951853711181329620895992185254961510545759780851463417193625263927789029315046765961598684964235919186461273231327056321457558851235972588214205174019991117510135731488391353792420301953601986758139964372205329765996869575305615397721065917022347453752658833566040242173348123503630293050807943488778084723274947032634574070886835859043902855723738084848023039452627343398784564007984610292256195148741070941857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23001838094464385959240831764308683245830880763534955818837109472046761563776382836023417492872680987296652760449555593537238110306985149500716606068761814402926512081714546473621562274326532395720752576463245857651947402467523708647493354341741341903012001415536100453486921712965584717803338405177894960824207265639937063429334245261606642108378758216771670236050431775176094166953623954206137879345273693382818227086468798783885731306438927017673098715787834851832782991829719785938441935676730942855665740236585183332730285335498869153646643244854017578771605846910446081828978981724962109456085010530287777017461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27752900814294965585258454442267027151329134140612378257459867640760583095527784591056189856553995470634416708370120887810045045305689882979555364297090771839033652147942865269515782015676305838302441748413446752665090659765335604627103415089218922276251811250299565547127182804352859311454300341301869777787578189509388604288129269993568591026323413272685078408619301553914224704227626784885788296904666055796949300896318054357010707957070916598605040644929650113171680342670646288411281496340668981138042931611532762459463536281973196060088633489268197267166525975856746844381007474377553591185711678388242618688607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29961724110083079552639337003123158820112389431660741225250419180578900292172140461980392451821293646147801136190748267165574461542506803398115888393699986800569150516147590583182293654864934129220151519975314648949210203720925616192093129770681746700036249959068148121704619094107049169360027953224925089173911969856032378478894010343202960684412601400189630556674373230520646633808396485126980574721038936342013678034512310292998033096726625129582588510776984340895263498186492604910564646790912443630671088152139622071149823347054693019883455108797400405977318737278599663035648669951027851002508407600990647417287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22259412909620180020686044090948603861135369433960471484825982758493697386367648872897035347328333908542064565679242817314482642398810080623262281729452974238904654470602346569794174261239657036567776816775266561588645646455212841107703111703742077813396241104625660100806863253258526124419999959888371391338100587006982737850346876681409026470312196572030426297305620087858344860492973513003324272384426382544729511648094401462202786199637400952192337345397489838672890555730680296269478151197095755666559198802795453258474599262114245790218529009702162501213818812041688708846195110075712601415236140435014786296661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23176497177256293651915725975122774683027951430539897030643860253307548274211534287001295036411250656405769904347260969530687405446541454323023937864439130191250298229645002245544481421966807832321124806201041659357184927695243208944772237367101812051251781975569855729681536759600291608461783164022325790243991789800031913852002046907003605430156367666187111923041504388718387480698507328141630114698700537823743852516268394320164870186812355923182024244877664998942831747222796598628323923262539934044983859106631918347922286921972148575127503030901621223784913035620782079108633630480841844059159486953293128156201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25195993355472880917692219775169933693078780217295421428341469780036744399694086387615160420750515725681998642327766320026804795752885700433532256616788973980856617299496554375115461609919926279418474790148884098005844256365759082095040356438219205836771820377747625211008002708695080728112485830170865365895846034426258853614164920704477233642991176249505882883676867891551593053834222636573465676129450752888253994005593535519258437647206106706087480639532195508708944880787995390025486544149462516660175460876068907048126066722440592699018406024726047630538291610089180091208497812853433436401927070322538477019603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28011650025554076619723622434974312327634891289993646338677372018225434925896004711685285761761282461120832935794259810813320700601186527641173395637343901812489931570705942904325306386694143383761810193294540934291934407071365549035097304759162080899757142239906442794024286337748307636359139364738253316732803279251408176927668278993376934276262887616702941895150377727428634112323711318499021635412401009060441013335548425982732314545862209968412484396413288977334898531955485743526911798039715511286042600324043401589965165683779973313314631771010760295020598998336176267569042123620815234704522463308954525357479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28886580842728509252652857897011180873054378198271516816411875983003693456799230005877352548803093795929629171938160027840099508324940012632919793382026486009019892803314889013971048752829704784460020733192261290747148941221822369558342064967695700466572623217509126050858542327682412525617747948690414279123257189466627065077042749289021287850607498181047678271325060168109322264552480335808427695558836563513671039221742963689400732254133493459473418589208330168476115724373967683076741889776150588347486100825598478618417921764369091282233514914651360246531208773836031821074627126866980135812055743224240456405267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24226892069256811481948718147178785530117493292360143768732721367564998263185242709116685777053029449362318161819924615473859072721821585840985015710118664559990258866717518523368536528714208111326563966617501072070886110876339692892715920683627449296512549279190350858681737324486393347117482177685786627418410107246601235670053933648964203968895720883991476623571670808048112148402841950095594079943367261598030133793203012127561197097480827076562726232007616221233061277094416328117152829437514815508508804729477481678080793657522398757618399831391127472009253943695328520919110928665221481010020533127691761781989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22397723191933035729159895885574032571673907150506247572832423284122888213965910216666607038114642274066793322529053637658557945725205665654476478177175822171750276777025541651277306169609702152511435108989045024569052791756170468426880421246892390424420924924107732872336480562780927559405243499196501934287382176539983563144283583180607163429140354049229868002720935328595975480883824731263195523871184703807240155496038284762556140581950822776996573879744324680323412433850963085460473131933137810965449919257905946282105893258253062414079083656581700088888450150379287117527208838320674740689664253999587770568287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22231732250866925255432330692539838626259474798086280167327773159874137021228438819856165869428356314434016351674350664937497710458233594499753495617469715816323979363466577144304822178053108709593083474225275082627510352232735620414752427342432741640624023227792360921767096249655451062800472625161584064161761343736003743660679493593545441213519420863135561299887824979198239784652275170550161595052187829980526883970827778788921522609760319170829574392367339968488717326429683311313875236471433507051693343543363332525336649049943842473625113549225635855410705701334635640846579589683508956292062086254375506512423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28346311025357353101106365598289769065895094811507507428895911084256893868331477230308122379340990078298780284995159777878519109214798837614515117608284815586150016000813145598972987297144356268075363878473406638139474144340103652622480796721307504409252774142442320268821878189345726642094091502269359698722077340702582479588362558282393775975740376080796335055688333507800627502678197860099910437390216888179544977381085801634640960448844889717979608187873037337910763492213215126641165470532808855447431798366212903509732739061898833087609270150002434645307500593531770243589064915784852208596253638120751904655497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28102808086281923604832514602623148888862547497783958930933573006685146233240130804704941622108054294963117138722213914091125927936870280787002374715779938292888776277226317443191397830106504802358599812598483900675903734629667892242605509628541559249712962304997499138433916481207476152590652108425588921980242295639442569799821676652303366816789023844017813337255291512877096145705617181680404702167074078352819245791498151445621740750515570846375569639541509395111991055444197671971106880979888216307633078917121849576367622552425572305166785172427661714044064582893890459851136762751943572069942359941017588696527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21973342245208693633136192297170435841713626011697828704147712816656046231663523891842379960726178001939299334830632007601941290309584788269715855878133836436690226451041078886223277945202041011186521371986158622510128937677417358720871160026815203566807093053714616123408849282340040955610124163357939111164133641152020253960004408570133660205710127987714610942179813857099045715013099942100911783477805803246793772946889895831818569941063646749421207173856942251924144946027427079862173102224338584081714371428886938564437717415195233549290554705011780142707621773094780427517372525335656693827379128314181892766239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19572087169778255317066831062718960075907930189505755566373424210163312043472227272728377256140332932217135935616596611213739117768029129878370612003711259630232644987369601380003329043560285474685190978130096042666315813000681696098957474145641768262493817934496327032315321905923737975781514353376144164650884948452356624340489082554740203961626589919006850247865916615197922396895040770475424842864917562728143726902894102833493182706413663939335336802699044636041165310278254947136266191663267539801055188601730250461267520890109009517891750811745895383735281996474166770067819750003972132635972540064409445808933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21487092109598789913194431166863028246459349702095588849065463421524821124243720486489388657295799784885279865370193036025487527872309614889330389039943501097617589868995476249860159630349740444805200052025531621380994939113215860083474755400505475181615625997544520611235143222342461346881123398714939500148721332048399279267588510850493797640919086830042383383199901834777770280988220413624834790092970724769473221510474524883862159112940912224030279285605207186637155187734094256259974346230848548799932930010086018272892129984066727782952544512701568114570567905369677148341288361718547999456079178347506103598473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25861729016442555033974697131445239001234565364694168267098026438149843223394811781231030023872433397769158917659408735047755146029228439077537069334189494823488179420529577677239427003313672766164735659680621782080604952283078577328695145484318497365856057886775349272636415892100664272430213531126523970833864461180455052921563882119983394741542772040473589628899624171140167774620071963046286168360828051782158753612852942707117988158773550525616118028038897137676652846867491496299731037760870132750854436915298046024523218283105225697800613398409518775218624761867187692266060622404972125634412082282192236679697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26686572669839609697794262552787309005105525783483962341080401208590360146205609006735907256481972265832176277147898001999433897121848843395239341775023777268401352992071980015705843560689421744217648429624674414532918286062307491621316986917462212269822123666836559328455588199592460611884834821556909649145627466515295437633110313678876225552974201254103436017139369942552430259630545424335119330617945691055684085793280811833088655312590822954506060349039206937240657674706603512064096623768266879454427653252910050276204283817179196954712312970430443477943479107382319436677470395476584529086835451481637518309327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21805154072384036896992878358980266972713848372989549874046681924003303505267736728863497214782461896794842807499544878959503335523207101124750641644629585398861991210863134515056212209628764838754102946060143691606164266012764780279755501528573137419760548158933217800634096910380840209695101449104597037242430577483345675957861333493989338313910007532948167480957359357177836278491481832674902877325355727169722836122625155402630283552735892102478423938304345611533866680583440455884652675640597705258496945050355800685130197609158272140110351644104251562688926989856248246942012252652825338455550669551111582458319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28146258264068048547334556318723435523159495626958447422452108441275532758464951009992159839601430622576535487588331980559462401989800837436959207613247936482567382272982749965259940011494809817892850470960997536633152557726295809748871164916927496689528333810402856522970735505817497715708067832664929935312085216657459100501100895804480665210083506503356947450451109147571774144627498276020518706381813218139937212470133146858404223083661972930547230400336236927291647332802095729073844078703890688594388502952312979211914833652374125062128294627827567574576842017438524372570994919230105905878211575803004644109599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26625675068475464462593706075650375394883603319451822737595884646594517997782561084316193472976717270571173312650800580265599446266661306586522812685761234472498406874021325116455879440967817728369668363274712719243101047115541962740633989699534804144821509847239891377401572118037932061220604610404985656901935274818467499350894099330974364340880961452699775085405880985288250722887879912241776251551692079771497072873715396181116236312690284349099017341451926034424808512886553700965670106999613879346503498497764928801963933877040579090630970178522302266409390705255335235377731774003277097290501474727921410795201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23377896055751014326161088455955839748643044403967589624702029223911360479923975636801202546557415848944318841761964601923588909176606953297822329828419073661706020234577502350254302012204231113312399157997023105733410234025141748280967868975098816759589184409529499569370923734011871415175078485723486641337693752331757880145554845084820265676387183082994731275466096239336482993793109574494188875749988312327032426555262700193238780863388454735141529055179187939510401235509223647769438202551806644493968415885407823027234982330327794570366457772654611931269476716434132458558060478832704824412973286898981015651683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28541653812381066319252552251175762065528049528567197955847307481216628490175952722542793539123541959754230698230250703651317948416345674240861355837061897224654633028780366717145053900690279568172739446036030804963798638881179446530656750650010073436892197342937653788561892058211082981691836000611676394802152497895866390437885687557121173308648393650384425152018445842521216547732302883236443996908793167429578753416813903797074298750370991222746214701800729315247866763802342802989874015750226234531746598950450151714803680965976879371282245315301260956801256198820998497616000914686125885518330018660336953290163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24882224927032834090869449594420869468569969077545753196730189016367519020388970134619854947389629463868337976301787744272016452900204278820060300943883419158339145914320347945254830131601696112953981504648072009240683856715102019426528957159935065061820630316023446076687221564056873037053742142702681323448349093248359371878809047985306784340164968168839855768556227649498947195614048829069401100319820860460461150253197189879170959787967133866864740566356862363766016721063748003332275694438855407777826707987650445458900722838315254618371840184126013262108694744384848645764673827342319929178861766448716359490159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21195283671830713479955535831219500727767566822967326777837174785711732538551947306918415130508138531440921047679016098465177354825866494103181483492646208837597072550714729815959895634635625312637284858602472321731846391909260132642712220914688545285422628394334393092879497418427965736521286428140609114314142450421275403712651873722577329753944465703834267943186014951364423312702332319739078245435481629666357638562064643207542931289528422895019952994842744623424106088730346268250059626094421925013418206393174474224959412585450217120715909236264091740582127651359130944735047270324703545773933709306813417260903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26079491240718598741237129598202016774149345912613262335589336895250795352030472834001629704188862020887993687410291650999898411400569034389435713598872538788323198310043086853595495593787794318458057900530209848678738332138997060919355038775665218785743136991834504110916134952114716527526162670561992447495213222815611917702193963678761425965968977866487113643788438064700469729217616045992747196288091507387894047653625264735952655633581229278179667870607569386349278326537636664021681721962742394217956691477944946086369257854338887168958828093390160320778993469627356940112473655542233377815142590021903502723153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25631486933047837165028866877514412718691022512902742450986872498446867973898140894521174800494447296408011355617988816352951130412253306733968275371780553521892635573290969510147197687063689446952359336564267298965460662189232770014361792721077457764549188439538609097666600999247587517533124755715433895607465665784276655031224954048205103273348945547359059378034377977071336793489911115180919086063095641291270165822680617245396732133212488673832455481535413728039384447280389933461817039896450468020444349217457844792803771840025826593198070589044635662101100621958752009606194558680120567214691685258625590125099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28407257338565887043655475945439308140519668870378003473848014375409824675735725889510513631882296864691679513439311415945988760892685193733456849810744072597724418076417760564482334631144588119101433306626581437857986248293236115528559985773536623163965000520137984297520990147740225005919565594057571875735162295521146086094164674135546742723737688530712780993313823145339755179454027474631319541287784912780385507014251985556245288537431994094754495912735657491959440397756907681730630781056804612730787876367308175640490806035232657091688155724330260288198560406989247620744078098563177908531675459460100097279179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27168427390855583416718152692386270699351429315050037891868361460264062711666144891839276444677410237001715147195776138890282545203428969414520102109621315250439349074388744632816856949889599809511146653693341883981531399500937699177568500583757919437308122764807892779953142135747531657524509766867970485817877216605410676895714057842179361190034240908070579041346736912587377474926873607573731376190159897106111660321624590438655819068084640400504969701869491967422101066085445857180846923447082407143250900331037641190492043182474315920249648455024148851816226547848768016758685311542266558869372976881654170691561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22940879233143238297896121803152578745959217244438267238498180705980938038125430919862153806387127428704402414291846021173436025950907868197250656366605711818504107036568857376448824176789254275668864875791403233118326493095260199210723028327719539628192704092522998997603799750329509961094939572117468596444714143826943859895578326671410528480788970391442562497202351641922094942393958846917764369851181092491975470432128381321634347718009265059350194568144318681649858986486774614465851555352603304485950077113901235461647742556666918436279233319360802160065868379164472904865903724958348154432948492798423436548777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23122663854142615368882478843884049980260990489132209854581790551288308186077210664879569576514811627750957086177009798367533723804133210826513147326292831186636208819248274536997284593220931981683047190690062083771913720306904320980221590009554767222739740457380324672512035360708492535938768637316460776769452441567516214331829773542940977285867422048922004074516516562931160652375697795830369522744760221937196510019244097683894344442512359236757381350246063625267093795780078525786588158034779994317076839395115468674965836410893246952367396139511295335527274044855011723499755159009396312405535440212014137392291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25039559466368374434488015773491022336342930459665251947436681462755791326149537489108340839524559770741689175121193265010091028307140908932204396056648173935824975812837376574320189581644195439010705128098494254133744195746182997473185534837714657216151042731720714884422517179388592422299542498711242996232208632832063706207662838392756778593838061898502331694549629130322771713981906154555603127091987001609078199625532530859136765135757115515423077983309830755655949923798372969804443117471294809992632099420274327791891811201086165946431239919151181904423783180831243429777317124359677510729532194762324614138323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27194167995298704730439986001008823701268991152313665533031686842533988118903387567530397610780937418633936971610184035971705199415676529181574434646698976627914761889241182213020947049757319732239776995196122163976759943252670166948327577504811717060242866407634910332479194841997386707767790430128042737011501809855956732882366718821040620467300875372702925711818890257426203788522684276982522616348221386727251433336060297840213303689347597861064773497185011815845726706408075550616506769656903624142856791935560773201325398878752836241415037801790961666332939351342735888326423666831050249107345817115579360120809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20816859524070550261118590235912622407383140169414407747987206107535210519934992884808271598241428011778017418002022609996121359940886759834227236658043239457223743322147723157637969469818684514318057215957873050644617691035332847392085304692818712425119185905509920623946665161729858869366490616114060761179656026815099459249706967328665825020797081206992092142178312030217629599518569040470543796521290009223209361430539973272793365885230873823840024674549866171499974049811283747488118349010867235828955937931435502359842029650951159048858852697118837996994697046529109618301488469868387167290443165927144259282813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25967897283395881121354539191788792410087706917610087069252408926189967011935712746945531115771677775589919216178252011799665819285254608839038098201905779419378148153143750318342253980225392691651112252401737637371683762596550421812383701438246984379010993984402816117683562528359736150858356270097354479785452082126511151266468335847340590785200786306070426696144505993847195228551913686172161392383675090984254879306105125071188920410369504816834577426240890428395189515690254958437968961438398347188554158853176915847870127245961713474724845627364903031282582221935626199908278932797145954906615747359769237531463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20447718602082768038031033573294170797015971916394148370493153913986876144889080171845822204805436554071249729538074068467739047128604615463268456282599719075744720059230695450473254967718828768085748424515455986566313015887537860681725433308768400434945517366768547272695153620799883713092574552215830802943526839272792078146774716812264796824684368362401770635723567346193910370012309374184761908291852450367540646542329823587340343030372287329556048071161151805877792708245847433632066661022858904850603827462706395355386652802329500089223536538724716958701244082209710791677931285370887748341660316531126900309901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24810213290645130636811468327558473960095437862460914860124432310928304938913608124520734188430522789894634612534703778614116600176445642953280656214511759617844036289416618545187154061184433816869374988224254890384521347354369894697575920572918181892174187323585277137165027414303583670201499533585030335724691961093076324376583188327696535299600638421891747353676897090717898046153328194479577262039391774161631056073982593944556505166499897571249654340409775450126175786516619176899211054727374207437928767678903106264550727823300568555812079683284828422383185942449492102119252221713888795602561078137900781900911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25307592060817707693037291209987001840327368634873722263917727322485802070927346237587975996032129329570609564352048940525996899115337001706030269125110488703570700096925481306783485432781479399313061413475338982908977602528146136069759561828191494976426403702809843439808071277629538477814218497976540605811986911462110652935900167380621922249340178872351857332614199525102406409980888953539430808360216618531021079096805682574331971444443487060537686270625888201492078525535476031365149302760448432156388231818882741682364758459956109803140296168201758270784429162152689030043015894566851375455064548776329922201819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21195619774162288388504773138812711418835189727213305076498769722431773753325321898729555624700834752708873288184337896088130050072646128234844217078040424217609593302166686024457088103100562900686203307185468547651346361014827104317279521766168944201038007600987522517202616027867209547264803809528089159035559410239620498261858720031774050589195653840003839106201758475226483137767219699612167292225280735657958620151751492954469310050701699173967430841611473559614489773760007799803788678359178793850227312198273249402195300899962100574124040132910741370559201997216790841083874912689462422918057096553785406456621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21789687935108999079239710688490065985851293160159064326648563910024976572633864166686570915445537452039627092541217142849329359955549809106325265820777006700347469276095120287308955816447674457505909893824371781680786749600314125224871862964291390758885137686875485717509687410534773415555748616499976228461528921307331371471982827561997795462720898123135685452801705235407071605546172880377850390873775479573063799159724175540542101565855390635459190906529121863610611511632187315934756415409231124401516684778276736988364533851949777363781742704396417838561635713613596133580171085147362927417176538372077446036701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24863680009916026601831201920535232360705454706749215299537293012373405838697592939598468490201663476452986011728489506914959131864997998636455899920159461745065444889134838151702708666974324822156938587441232800482932097923056214351458440484875374627280742322283622402307984695497090600128319058380383251476565158380969362924974652834191472919802482205404387755790580661862589717467790913900224474761084207301009577161687545957279317585366575880049972934897177465236689398047342265473242152886509548385928367015428308469693035447699226331100430910773217711880633124832652326249193031164282347046208356073688595633337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29815409923003945717914629764217414593786866456714510513762892891051348481641809648341939628845168279064097061394979247499054330648165044295512011154186630361747355936220529064372934165708966660339561932750442261413045144544228336916803510459102064716781829480517218687392399673000279356932419675393771404194374132375714442189629869878812195616480448044766687641030211100236516087715940262872843277848191433115150748052015999062813758434306244781546352286328326005944566476740753151997442512683152045877484267157897252266777443592469814544927376673325662551856508106213511078627386466495802748750400872218928613309659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24434240339143451721556348217633370007867362230399249213027092333114185704284914784080955507804318998340976070489370677226611996257857027329980286918492567165746221943249179783183371597094590469969893343574388657978364739746886840407854383655678215829521755492864918112023299153327978527131749330428084114495067654127575646821935561773619991586972745301306024293515516398628694160957262662421042376242920022950889350674401963586541089905352458055693721581633750760244596245308833570225904365002132242084550262515821249522212709960599265473039198676911109417934857384611480014210772501177569347227138762065244685669097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24279165159092812802438627575852383125017256785816463495119973613400035909348913602427967194820958687423351796589709561226001752790492303054824689053585971998252512623770286520443523114529652554571252516939188215523617782840136468217060402792153480595939657369747218722572496615152015836936689859023950977763680851734250752288393985227609299670210942396918845842094425664337273192496420535170428296281998950617613626584741425982824018692749140314935498374456041667449073708116300211253053218447871145300516474539602894491239590740021722685849646058120324325956103486956414110898530842369991371038490837144264515194939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26765882869869910273267578275660991036529155748692163518705468395568888296285133338889710692004680200356430379496674150263181291826889143109360685397984198441042975576500779810176866125469791650945563607056564642679572638496772143689347061892545134866238615689042606103866206389949876455614351843239459976000538217973453840664845809616099042154806804632836528017992069991741576766060676251502716819763607287181397895910496906150177433048700352986030101545330573611874991039440242683866832735949392168751148286795323609931023735719763100826354742006197833433846977667119489246401960478349716209203640867192367654592261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19357224464459018921995496313669051851355229873841495062188785801166427814158608428385663242573529848327142266795637128112578377101102768123786893925062893369134790808513900808008667096965263189606247678814770742384956929182738220476537977225307192728258180577991937421294954664863561115570869468335983132001420648191817786478341085685312083963915746734028421367198714018298014588984068684065839607653801431338986082050721074682494641948670505851306847474314675412361979886031170294223667295163043324819059778835495696230196947280513144716166591304199495613242554720562871614129155535748367889677159246463971610479887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21246733329874434052641521796881117321504787299714466526449759621309805060345462654369909747369697110951891332899786902539548779331541949445290124197044546942978919877234620643993954538792236637751433562873003295887921235953062259205424207441376100375815108782408230506139042878206945810368149252198923160053758871359803605161025774915574052063094313291054453972931725849437513738917263974600269684878956599755891936757261964432762723518283809400188139957675337978521748213566577864607444128643616145927792700496317284053634818925458975635313161449894002648266115701571694477043541129219840118074740109546914345795679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28141228715418936787105166031372320461728013115959357268339183907739921785938085068110133874954131343408872902861580025489119293778301994187639992612997399481052971223066465802508087913089834832134920173708532071970326407211498367727806003995320501324384733374642734772571901259111874752398551290548730030330877862693928279721907960600951531502726679234107585905082008759975679791724875824515129125864436484903722101861593130166291505648600764100660263060173265309425240090421099034557812299839542256986536976752945057935331959812455146978946054153332281939882464674379687060856601947728685145990777604355188863518339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21561586458515646104752475261601907615833399668583498681905847436671400085799489495863535344624311335821132379258357441218528503218539256726162914226341961067456912584737457165813936198522065254848226805495155962357091436468484790751531867470633874964807304116035194148228459437133871453565533610261003843444763243221795078900564010646218999416219623779564486051402440582987486855081336543945764358071764521464508323536261964972000028605077083119216249340351342643771301552611334043845304649304386302079643027877610617518172860781872637479373432370243544230639682339410301340620576798805395116646573327555484470855811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24584506453631888043415292990626819853878598697089346662256070420760470259888738785017570600858967686447087214597191583508916402374517512315868191045749196446218515794572624647993726627431897438551417482192407693697156309443051254831373183307439158220196912758154988759406627563600645629709594491789879868316876244875270898469571465498363103549865080681935640557665455533485944385731813443396934661189653158466685563619264871225064506886954135011734684444230042196504987863905540686060472736990425565458199194610443026847158010758919582145282256959416381668101607296826240936673873650561276331068410460616770644170859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25431164355045113777688055170807777488132817603853445226690873637069297498701386264770344517831533921126492773448445253364146031314771550873354919010561793011336167387644921362664551097936890416426881402902094161742234627386064214132232831276499446154551665516313593144471119326131506160501658249978890630685990184092053319123472752578944747197354453475357491145259250349586433426068450903887810276566807989438792795508980005369677298106704065950503809946382532671888749113544653249233449677496319726767987930127900076531369404312805844760461376480082637589076567038419976259742905520775159742253309970062913085634451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23282619419114465435024477638330907734050837519409055996057785176164414988425750703300224585938543675360040525957939912693448122030788254633638153998524913823782736664497469665887270174708060534421489487314574355473471374711180574459321097866009554755923364613979111416844558033501331530253212161492615745897627007482619627178981415822052696194425511495470846995855495415901196762531869120371913404311750218220435454142945894331995602301592397653801881183742765326671931275448850460617118245948049132228364121335433977912927596547885245411440448132017199501899502889981471106541597576223836359148407578259323675385819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22023516339901448742961323766754989196975429078928677174383392421215684126591837685725871554369623288022676451659648784600435049606812326567597138144089355778931792138041520331514512498565038236419505303764671428403434117696468533381663258235543433565174819904692544513253929140484271648056844812247409717541372166493809825408826177795809554878170850569556139537536019431637481583745005299879803828945042120495049059551788819423886665617356463766567887801864143969258359624279436083936624131184429202584556149244250824807677270334529699020856685919543650362408575577434566114152529360797243662418480466295103276947807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25428122155486749068841476244881782197152024420106013667578035836649924965679948717716636065580214568932278605870490937088748047484165905359251937822647580282664734821312337246073902540433521206935050583450980888418027444776891980731658634135724519017190013981692915763508879156429249922678030449629533041949257159813638133731700975502047858878826498552840062897739967808035580174984391932195190488046473393653423661337312994385239533313651985506966078314436555470184669470844428841973479798490840996131812802802182251199761620584880509040280464235842277201455239387097112512827207215577478671839359072105781123964247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24731534914336014537698697726472740746105586067696752081306251759530725014226398812373253722224160531172284026880045223565772304349633552294993503624335956443016415705550955346488562227726341695369161365555399228997909472737061335693675986336571490204056626429226232988326989312936422010339386281599636819951995437433691709210638871603744704387705513070310055065350325467582716103349674659110343883469236716946879683599670418952019315702323813795006768267585632779066279621962434850787606623706769183178768996695335509181161530407223025399851710756555336697427098802425562774604034356428651560828081867870563287008369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26055655005231487490466369728961706811796699027957211437312674260086558046259920562456370300030033178403860343550976417746379858901667875565179244230944804701754943563008495446518437633545842774955383496295254043132977014142440265225627048870737546412068138510779891384628767273815454457591167226336815933057536786476893101832514824303599130224366298934207570375337334473128204771300008762222360193873251635126200003169462842585324254327261147438662633335745107766049990461615396636892215908923695980170725178968283772115861000326887154129044101116866656493213770470261939325138555300177576139014663372064926927067187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24875698876901389899055679034108165603749046157176601810135011770398693896549984407455471080709768645657180263723124155453325119513681689908035329816840277712542134112137643410407901929391755461917606807589799985567959456816405539158981746579208008360721542716076473529829096496693140988415614439118963581479779305496642208736135068486858934289314822342424021563651575112360700958554236432094186504097698158209320694608042151518410157231131318825577767882931674370568480485860213693534302978857547580290691247794308651646874404842914788652194758354096987661112694354022885040880383152185686352952041710288321487306817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23135867529642765888769175019419382151860246638831362985845374610085704287474909837747592365441964686165892819533802115901270741568923969204966935298190140168776106226785522519043124541699642401627530218826870689495770584397512005756289204258779354691086023317784308560099122523390295223415089236663298716654547258846884955607712688782391868368681808840090473204605355211433830017456629032869356421432000719994588564803438939424999790267352303567844065476972232913140278730077816529452838866810638881199979429384381702119864543688417087566972124299847448951971238342052283351670318025944727279809766678572449395429599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23875931038427375750632396638230763633708094083215269992211924275817900050184671593331998655931291151147673658084868293842317498844292601318563106935458955128270717711095658436531135545574670248182686926334576253569885241015730551282846434587332413595864947590886672455765160858274262388078195093230309085880610227951713608288512629568567716522703672494604242004007721718947190028102304404394737823609519147318316991568408446972497216025588888864114650692421638931334092331966529133382725502618322049292623464270505205550777588325008858879915185260718705554885183085162611715861283944771282017413646140592146058910061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22959031399869571515070796094485879598996174392069515821454736605726024830689337800441750246411961428018846250631643359358819694802661733913991763547847259330425075707328824110261171234663884488084703365978544846317143609211262481437620297521726995000738761594179838915702447584481458809272684643363042138853770817315231075847783941018774798628092024504480451164068866711777405265235884584725377617760276300064316653686435527319303971832244484852437327080589665896933542352730290348615058618394948559054486026031829275464377120540815515682304339869957067573667144577389237447379613901963863688535211997642460971790129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21915952893170409100851037751190107837543659283134921079189903450162060562848643239551665063929975571649199138564503030454299500747454847331038801331599089459744388988376432287089107264205807887744074768234309924779727477811298812651968314669015462914917771375942030069709764284784741237661217802443518716697091304325613845573776716250171085013832739817491255440635832562063901063824518765558971343214698573517167253007862057457708402191555417403568565820425152456894200998845702206320837033430828598339444805699783920875892916057877634122745287759856780556245619153860652540845475826473846830167544766982605167187857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20693878387222582917506617809564347126321522769901380482896831483912996462273519590367492849854215610124900772130870134923622395848501769938906325054706028766559092104543962208064324508345830490258685935118744330601308507161931636189116069774359931369107761519078362947200440138697689927403580919087754968655630777388996103804791806559848180497097622475598671789178465826937854604143392545077126850295987876824333367433067943352930038639945757440637135947369144400489099188686938690724515508459376032764405516287241518007596065934375265796121047220763463839332683906292153293225130943020743185417931232216542412355781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29316589829523491602437625676318777092695717910063637077252159536541228106185493261116496872398233285729745325289448079952670358707103617876001535413980033891269492086498234744530479052697907675092420874923528361977183261339525147589758291736141572113411205501850945121834936784142241773859154476028132360680961249384606446493178523047033715968833851949370598630210723377413017983367003216784345004842261473977670481185203281871606931635091855331802166846245737825598769053483501326935976078293950429716734027918545923143593755371613948298012419380663838572753701777322318702165279399639432339019565163882744655171199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26113463756756221200042648928258223753695236804163592465732524419207967769804900376646530153139179404822837444152222774547862276131409768360796930534901849746590787765172702092887896732631608229359440935455195789411061977805255325809747843507520846622975046452363503615728463343367583248371865642496394938174841737812163764902231113462654002134738322495915059928925910659745454322383059048218127418701505635447460521520703342715278205853247773738971159482048115187225786936833992038085041296320416609722293020013587665116392523047340636001001090149542163769101950095816727200842657059908591137407217908456534864795301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24046924998392392564808230293085711007876188875948670489692490401788819012353810775905318799157399815790597802841005142069005309413805488159062271356724971070178873094699145554334107498778797163509869179711322936412461233227973037185755927643399210303450754012167411575909961394410900117509346045604271002037547297315322931956914166871326475796113268626747630328069844428020622856914078505299690234659756221868737568391130995947572818044703057390024700890815199317179990464164284742476897908199052063227925519905068125628444999741090930017065380306245940505183501053281936689075942687001753243854607126522805029844169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24722165187537597965727518477519603210922288897254474568345271925577779963553727677996053658668284323419649043912573555126109941927976859088915978188520422649725724598374775459037014461867859401393602377388139844850822180250064127077910687680862907013402289840973945278833024469088408900319284342821648588930062027882831111283252061761446628692396048643550188336833775007198495149574157507056738909983752874707917975237820721413057454016009308092971287766164446597582703790988201462485257875586723740075813927383092049695334181639023679836623877868804140057903932465127445309064396925325508104507080150887122458028509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25496022046539100703958365756405683610574898017192298817036598121072471196583416702841820283844283096395903284179517418629164162877054428451324079929699886817762514240742331325460027127554348953368505567817097643347922561865390704747904407214807385866920529258232162369202038865953136748591417266631834287234851089058763010372708330743354324113723145393143156210057444333187606825208991428374283383562752018407001911101662708281527493071399316462822877362157234452851135678528949634872372161169041549301251927794349783343847607735950172266153777925739408533640315040422568305812018244017030500796482690060374956630341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26268860460177533728408750130950222759337124411373853071582028183941925775220828255397285260690766719145337906639100713713747004300165361002580615243467519581321353722180941252954004255615914808528434346291295554124757692557555296328851012198563045859186130135015088533662413798898380018477887227606068295787334460567116291343389735830391408127731678926953984941085142534659043266041297544859106000207098825719206537297171798179523731398599225932445041156352868960229842392772031048594388847700516996236307768473204150503772640667003936685441217704872146980365265533867623877430335718509970885768398279135549937805341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23479790664063285841989130539201313203004403528185558473189962833407225552117967616759842887416784849544759567951602785467370745825649225396065303661188932397392401964036246092090937216921575828110671400478156813962114517176744754518107438714639449922201307117394045232392279420216529480425711748366814413917886921127533517147174766495274280892924657028361396419702113019112677428070409807695218011199125792796969723024223811894462221459434722034552115872452692582898031810910407642302233989567623237394120603882903498816288249047064171831293552643175735637210745629017785084884522964106770610610476189770087157538583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25548827721129453315230937364799948836636164743055033855525697523374426016161553989936780892833832185782647361584413382638659052684648849842406056386685834000984809908103563505900127173446880694115400014694989064702214654035918534809239967139001883368802513890464660902240183832797625052571978507237313260457708602084469657608209434961855794297019680375915448038229209053173043749460628479297249454143840740568422854859517408559785604794875680156143635937320956148322748460762541102758129962913358953519208342619681457923838931259048972369535915025486812479760224929416189995168752786078997679184653272100471728329873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27256942722831885904104572777692068200584839991201723545216977841264019484378099738915112150410700229290433312695850419592200584187323068896847569423467377970028842260339796920265874804178745696596598767486362174695531044928611752647091394095778790303356892168329243137371771306595573264095485984629575391736115054197673608431106076591999477906591526288508930727648923634053570853874512073554538561430306077753388078786238942301181181365150409677015369946502626003947742034075341541880531268490844147067315819862699152903654802416893493146643154972187613519516864263807790907208790665863029265396002552123757886502567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28630460672603264371827938530599046181248033848667554130283590091945033913973165189726908219056265237220487407174979606720740795588010404046930367268118510948834628330350288814879941761077324602637927259329144942963043276459987095886253721323609591828929253015893350282977015613914048669042458102466352604690897363949604201503559715909484698342020468886313653645090432413579930766504120521100229324237152408603137303036894320298569399630522165690007861959308240714593210567695675992924427996549599670780512302125315113568231713586384699803531178388772001769149037363254403695234715463300036908078488687416154257084573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22657254568524368870574724704491739066315404357322354682958262879411452236156407703231472578749788678512126643693043318476900894747026921291548936321495105571127809413858857989549307323782057973799203057715130953508937515717339072777070724847456334999993465671069930444924125072600086504302535056403245417229714280792282607295698555392738418663609363109492165179372063213929177461582631739333800629127112697518674783486818559750459898960915503305949501895032031909167408954613327941652389690434489742512135625616558125678889072382493737887051899106633469526488389601203516680440736608569325213693040156180935457428921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20342513364699323838798407073811637946393375715498594462638970032992732158722750708419988864723530844461651063031943144998728605086909483162698183049435379274809115001595818801789595097247912149029780877241565044315650117809225543655839704509306993159297871302954327732418450901997972835682412656562870168261569840759330097758871911975805371410822733697141860583660304455042387079299428300400543848548414789600739972232465819314624330930690608757625755509957149227929782390963718533282467669018561224142144083293040292450569889140959598406242914439199655254640243392448392916072983502793684512747940386728725332624801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23251068377339168261463460341723376650519055184948357673466024092195662545808110346568846048852784832951277147025785299600815697756831037112939320491634216585524735787310282298658173458144224953027198869956348717522838345592810514688368669687996883984738487413632849084930585163286195659988147825030136775745775723461835907760542499899781114357957673060603578599664614654371862102666993656056742056617401696484559040353703752480893665459478920879344843667726579794016144057270123370852772578388311903446782151488718044456512363918870518923967215224977045278328333724839390389046069246062937720136781893871834208211937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25213118170734501698799627346699034202541745378366246949646057153310635932005430961953174981270447417502807250037807357909331815459372923411143994858627896131419642894502515051999706638485383089098569763541931164260843009536276416371340429003251244139552676934086761634032661829188895027773694689350111340483714285832343224319547987048383592736552230279220241507771669686804910616532519404772436690013362755121792134488525520689361043754185673878438764806066204076025799482354497771921332814992245064838502660514392450663842828941745799291819618959914399546568828411297685928149590013429399990556399356801993764113247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24243662031939226750297818401474443417345228960310216396296938505804040783314417858058408006572435634923503637737876666063475010312001175447174376448593336508474046606424701940629953678973184975234343193272062538634072018717042390884363464265715539728634699569775600381278867410868203873533828363218176058143697282846246833464624546038094663794492787375849544771506949139537473134863503458670411471393675390014075607224889639443766722929928972886737674040687450303560836797980297668430528634115593598713021247356432918237349323095591349383021506695461775813355037500518828464138640654658456295804145377786528348825713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21822927805934157174977749131822173413118466994324829036931080189984292325311081747785493707662934433070532691618364303177783473895523100601810738432036021126178596267672293662817318740986403082816431333596936143859421027167081485143172171657531579071840652953029957443220077510319762225482331402416782908445177842726852207532734791308749610090814392995959477266823889145580775319860393524229107167460639496187644315417600115223631927666659803670704968547559224288789918313616073256787456678701568206607819934485287664147978160149128531718417917273567717978296504758889114579726244470105428411600725753312965235794333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27858313783273825695429295874928672834318688320891586691615441829812280069336380318403073698468081984377038648499534003815354036046927769051009617006447353977965192322118539647519140855545075533130105448794230363741166005066907574985565500450277583537777296094372562248021935409977271272200177272159207496741971432740148027863561415386431805289769252803365820303897034913940331791072162311393226805075018773494016671192388521822042420484163515834931236341977059763713310496131066095395718175830933759763363008603611198662457287909620246770489175401608779959100742505885736095031071388770429907607772997155005172171161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22580541163940377097339643116978991512960615838419821593488644013364227235830244537917236107061047688322018251930914195757540006178955328026921866529273688433166733042245372199467938004068918283417202312287258746288278537640982752203683127240814896129625618830108479490872820448264822866473603841164466515140959931182304470977103723522953702352027554071700496331984847082736398553367790382572008881584288525108839283588433731493783046247791572860273265498137105918681713559864531431907425148316045498848169832448041698039184444611202012394239949473847457887211749447919309653540364628214242429730030004219870373305903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24116770912846927347566454579694051710355784379715134670666703468353895953302836747145517076010302220642936102303747651835591756544793630954295148145549443189944671739028343831373931847905572167406557178014346699345634389902305919139544593576399017851280637265619716461239718165354827069911170727472548185711539276016929605700999245582757624623506899851384974762102072210543099224531835613381327860891263348222497395021895883285943482980135487584494673251665718049155981176652782637951369042598538574339193099696325715290519480173251514276267190760531391655925394873951678529390343760010579220416141724626406490244883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23576306613044992073133647321024586341220551860578698053370264530186631114747905581797316327736340674073492064083697536905824060395690313946881609634371174510116735789173816575589420401200736339525191090406057391708414360275462592356514146413158539940463215884902310813296202310461974464663781630268483835918486704596048051695677319538843366826316374652514482166890021812306973990203867277016221475345473458308353826745760511981384614806020557205728838332258227005101325743084135968595100404166586521358561601399988075096559781583470328551984305844096423925339083603986262292102036089481672923635968825331235907194651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24285176845583060433040654301532105963853687312624029670816250834822603640421387613926002211706466488606217468597732465931521854344645568625976934104213807876900587769382155159291845172951018303188806100094599203073395666871986454833327464534299592021655197654083513373737437785006335959085500543645377648972608579199244536333135643440352928022049162980575181163182241317505127915814328893681640027360340583227547660205553286386334536982816800744847727435697314246062253835962822587482695050112724779306237383420200145198559768068033710506752290471862003461499295622973890387329623603285779311298793223735063529240541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24738279349783682125888660406394021376894497447254363679641705655038831615792541603477691055415495426267757582249583782752007392889621335138588344243727708149607554880065270845294300002596622703524504547884497688507305500979990535613795726717534030845883444751569100311759153337605247853738113645235168447227825322446311941252903220965282999846125132824428871413232320362136472138006629780659367295357549771068281079693869974002486621118815115512163312003610177231627248064216829348835579613859139284857453322875672124343731281875525978715285404065989975330318639216843969828546386065200695203490766608793048359375567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25377918660237206661694119236786119811453283673069023316274584667848280012323964083198417786544697063965953993903117152777593067164745372861348347050237416415214036302461333764872072484354170661612368267543322450695935715183429712352303093625546928225063078989558966318004498712961410499389072932843177879596987158490210505245090089194841269903455233498944986262957360906377406988972567414621339384002929234777825331353268743854239082992009723555176347462307976363585701720395618747939288963733407559548755245331152299342043041159714873601093887984368968928286012830672406697062907481384969395731271470055780624445749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20822368676150605931213612533349465648229035342917336976807576367518555377344167013397392917282964585897084121516472086392146100822414998748145366386419906277190460903412599972335409422472153996673130700760890406288943796337326492719883267700880015133237774540503351225117714219912281102899900401151893407905336105119151455792988679935026273046200604316399211007688518846306443240865501298777363066947010596949186943887018165457748497596060776936778549529701495193716042858680515449283430162842922672757920998237595453853065869367249708117461041767327172661940851985788183170737849467928230283076910478376827644583231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20215295790946574205895560445933924289531847254675555561640403013662376545315466136599021292279473570334389229869823600268639056377822494308490531082647260420026831599713378025146187322007723918874594727184963680079313884719944458328578752930131641985630140918567474272031663919808894788339475197815358075437579301664072903068862271893246336143130153968840738063540106187120917648909174521036758930146886881748865718590335696068882849132311064487949460612126942541794574270168488968971915613552147571420084705806479385303729411568551151479017299617156305264856086734125448347542050029236568552858236385371207621206407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25007680235523977498301897260973699375083553035270392785441080874707426788697202921400937258876956798785433724178137043644427118099981371045419011830876235351116676324738827938993617732510691531964920268520273210191493133779425947017808152581287343974562828980634155833584286060493403590919828108809271880880597084651094057983660166012515009326355888065340753163787787790828621296514143163526607038065416391493492109674739236718164115476946281166089738055138824878841546198862966983066959868521065910807104043566201275987062268286647550604942960126747805866495572171597351059695734869225298767500398476432977930478489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23519451754238452931670096556836138161684725655284494650547352800651537922269409927200773866157681293058516441639019291455971693448078503271875444836447599206568814616995555185599441052053443292749728822465959211904409854885653654292572537929544908417601800356293297071174301929445468756990941343428174773242515843074056946620816528275727282328579931883230524375809750843394761752166870182158725921326317304596278705366384761174602041872021413585176788110587211763971689319052489253491113412231659128417716556937149671369702286095073358289046713727089597011257483400568725035607350995459886681995632211379533701082987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27747283153001074380847761375394100149486907462866517921493714626394716815436963813393581954259759051776009167477595007877850615961515444455819697340819537876931350458409740664273598252709495964449531959373524910659282701391728500517302140929913607800175920346146278413374923636080669523754944964107119919929353919843755126233587685177187147281015263986851488535590833791931581859153531943845250440155284782309685589403298441246342912882037962578928773856271140056211366887416325049499239650337597382626265394401898188314943739053597955549187244005922710474209883414197734099639824415814863817361747228463569742307851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19630917862060256237550099222047085103012008078841689019241703003872173328251255174969235723513412370138466107866505009469522439631446310925910057401533938028224786826401938013222016861141060651737228728529543546004887733906119558213807784251940679399673619363640938358721809051659092044828366117361005033676734062813703104544510730450580675696251853711538329085014729135085572656007186579931730258592099893097837196888595432866183189566515164007938852587549112545590584167754334879457948604665818278419417397032297458877059466141277492150951875910927043954564179685678464817580644306323961986055033903768877341953159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22502634949572165806584726716265133111103070057734680574632464315406811681101509362274866784206568930924479899426382886603521106144425501005819599375727490878295439322086315487142381592095785602397513497412763766242254453937311510991712998696641616809706333724746785898116365926449594834565474410805473210765521972484136357557304407956476951571808915685493009028385833618821171686979733001982829657965722031828890315229628197642900194735088536277453196067132954139297962371450178495414157531111750559342617256993856887422886175078781856001236626633930644342787106669714791985495125001400710134237445538647701864280963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22930006421333581538058115371894357608392911782966563388747945347498718831064706499308616703841274567464711626976042352927212306279149687343985869417867904353154631404317349737572275303998218187278286952615260914107572856500234943135513965463616790311470107011990788343025762762755625890597663930161891820807927434002856531945184551361827647814107130121292973335503340896004234510087417276204659489123524757081001209956292530141293106286408283998103891741869961551502890717136343669578909555397216208595745737140360851592342074956972480911208104782654405552312425304234136599217950985681703193119908119211820967602403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23151983569822127206159954264193113470094778194259071890117750937336304006019777496910291548761813039737634127187913939160190792219887816627620641486538038653711282429142279993066911492606809064732020463602041353142291339160504412591452871270711489409248891152769557647207526284996654505075182162354234148192300383913578994760686170920400891303769577950505195908479376298936315673380060276675041493848767077940429241557045785318877322088537564046073067467993240679827684047726913014284871951745859603311058431987740874675349060886320306135656815312179159862417899920535842209476943061873014301069159913452634315670081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25615111371878962579724198778832929540788099231187919413146943366721669551342765135869818483851108257492803910343280948451822133305495146820963303860977230828736976783332987216718116801595256341679431685512185747310431573298781289515154240609801344358140777419373178753875080507491303367376414517693464312266944170451763020679240347751947216968809463556224807356957342510894163554266541582454180766977761373711466828428341344189193063865721723832076692672818971813335021253455160145685902514128045738916600972311037635196194823901896807124461395856582617949775786859030943955737877497111103786705058560287867122906049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22940653252497867939845331825569626648077249326183623620814967022346177283297462488015573034120705796061147492369370675935385448916746272240359468305739237697757539567926513002455008406230782066644254445797852174742808819990178059912882337422482131918635590461564884144694444577864381862689067039647599788387660914953356462097818281105177160735397426975676339245122116825809246272284028162017534266588276749581825458021919908433393446604779489481591094452196431742292016018260574916359271259181275247804755506548625882840687894186463734807934098878457912542064051526645009751297845718331079394220835240325926213047377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25509701578736173893480163056630460209279750559113201918086482251340263565495677334058187514680062962697074585018238654884910913151528293232655701933074421855293661475631286181586116796041756761171747703985808645791085479549288949955882220733192109549964489835117761138515410691738234059079561774449454458104918590440927079718818505972495389768499201745709284448495581717698452701673307757691474091593490922845042190205497563010182350145048308962443715640916409101452051140142257927162248674667559204740768631799986931949701234924634302738240215259910579726299960252707737435361301614376623141970671295703551649849503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26497253319625174812991015932228163582459392858939561604647710415190295348313194380232428734468245941144258873814339905723922002433312698597991454347876493970170681407752245932072372540195284816724998655992151047926513931782072295515456396662548595585750605395301128795964585497210811644320216115091440115951465017285844605068250451451830219341190260736973992742202889430128122566985853559799588759745168128077398138068095646296311089631004635012359219218705373454656491341810511047428391484956040803489916595330093292521801033709426935039831213797044891998146049310436956993288186252948317897241168924890720964673773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22779583474763303775757117020175563782279139974512626829844012867569316836060381217380773166175391733165962068024696066045609202375378607424480831238886605488243506139113159567759821638084251254645279858718903554235228447484922194080966268319375288707586906242713333167731294216118534941216515362230993160689866065875613643450922871383900877608733386642599337312693917938925102122593434080350123346208826636365338731536684390739509594738277802677411771388416565821603631598690723488609304515646245185399183692916958788510184009747939171668805842203829057538885059472369718811087264444919490247891731182654897946221967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23756373069399555016036267115657064217509984833900030760380576074011154083150357046818700005004245233417731758341926225036066865587861531133560813194233920271806656729717104685544722543478129368370354252759867484042890712940166376511455198048763842637297805523572849370478470298896425919747563142390547443077765525496091966596333915712096696984036890555227741189022354142546088323840636084138586790357946255144594540314172423593343458674725888098809928327509230033950110800376056348377772809004763269651316855202328088439288666993581162382848187386560190983598934537628071370736109275074440965905750980627920723440721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20888663594653886135534685585947142118590407414396860547660171106245998533448397711304649123670482446360880617466578497249758006391481080641139050097487265351655306790781892978069616644821225375428418519751110843415216379883204736423426711611078236627446395187204435079965621943024313180959907229922406473725874447671473578542253614405245094176616442849908118272658694724602624032100988777556800528251413706259349596765842876632780521540232612929010554344927263302738584444147287630325010990158539461384594597447578154473721079680957460475717495908386036103532994854988191637305732834551665931679815828276994538209787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26872350676332145239662663583360759035252045268889105669328016209455290104311807643966927280273935921261087488890348596517617344849232261651912686732492002610571154930391661075296552241742110222025103365792613959804407782457109008008409196508151713983746975814989265387011310174205580616431410632762118440441502067845102603962725860311271550956809491591593930882287630729696445857148753305692807267773962548447626620927355051143574674582351477607275351487709581212418333763770318287474602479484356582783603407735824703621816305704220094858828363305339672289583539205759683489655970900948928667387309203927546442890467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21717698762321859022268262028694469132955154801895217991537558162432285007634628527290399738929465097852615439393994371441466941750878013049224943147635844859211138247223922559342000216095655823445521576924435184442078983571570769873669312227865315104563056168189021939948268943588604743138233480395967307511238815609916783047291852146642563072130125589873688905073125718694589059114350835397216702088024192227120349019873448974992401759175655057164609559282069748376117399787811159503537709433882395166192758159044827801033438701416415041856680410227956160808950518040311644211351757487165484594482688631241476704279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27688687514048168274432288974392553061218445457916749715031044776932154441032157363253116962679802066328070160351895941673379388374276732614131678445783168291057335837002842933003962249207378001045256826684039387135135634696232526340165756959970686745737382119915420096856061190711603055480550859812632808664709490488477655866526956203122672860021378173971785013659887234595165202202372143218062973751571519006770124264409019140228633783704577517346262216754129665930449368389788594056289571201231018999520295319688125263915752443684192308964889133323942602767520380116273321490010261032276234333034882240777975165251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28039576431561334880410186673577140425249134294428730946737041675952598352544133918492582881940575313846134428731230128719244367118142726330447461072229398471644044065323457667869060693824455594419573298647922379552327814002302801019021458994904360626029009233961279957823851825323254356472165896879844648792050824711556054961556075179212241753987519561623880405642047566935953801402173319816587971428852642447933899498468512624635926719808645465389555965652722536105855857190833530176821818080477599126135209486341488866041977841636375008551241451533971845906474437083671888194273973284036178563232720536448823596933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20621171015961669256220576154017331057246477109110924111246834894556476839818649942330247726770183344439220242170958078671540584516347778410189544873769897627128863677728122883769917013141334281927763256614018522182832546265338247172614874830802843252973810336189618956278174180313275646889150404808243931883009087720681867643692397669031033918218281813293194383342390553819506479743873678406011638460004171347589531430670376952874646755182764796179169992914738905144658638606935369663845211528593150127987496282899611153927640302386450866556281030886531761121463194171376155705750054144409591107895588388465425665213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21477782266972462803247761175060621894100968898637715206175739786246049234294401457705773526105704701425087396232591210557461038665650606539647243973113013911241118732988774388320550823016181037966765508761071167533419276285757473303302421672151489622548537187909023169538585551862726822931828411865849901154372729110919139012382850433554394107711110493493099398723457003302618500390037732858253437097823262033537866597071954811315613851770773938663737179693495330968089048818971244161480223711367298526266215646841842426745245652136482149380744890853662267541161128110088757835449032548705644301615530745535502416609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24120281513460214024083468976659859", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21243297749669844300673470950537165", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23355720562335347963012005608204163", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20835000734113142306083522034554880", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23730668763520364728412260063018065", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21843611896410422005486736236801112", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20980782037303043963983728287158765", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24764793527668184798059472909202007", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21767183560621666067484387784697760", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22390251127344597828877858258497621", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22159564041834973141291636623070562", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21190725268150402343361053076149919", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24541540854058502920930727479715855", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21170659788089823004556383785363740", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22136668660630647768909792309627869", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22314286676368744012976172332200672", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22311564200191552383659724846954440", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23879471180056665108396665903772866", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21731577426308934527677000959097955", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22422641441568413103843120975473979", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23480984067920889194644973332614590", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24966578877738110410328640134502017", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22252657166098179695752830981210078", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24373491355961806428196221794840342", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21672230398276269714649301679362340", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22584701768146917633974177026873076", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24370834998984179826051298153196090", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23925550643261717179240321258795133", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23389733153504295345906603670645249", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22815269381962031712544833049538221", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24778699347184882725517245593774290", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21886804745464380980370112469885070", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23394075613876469418430580655198768", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22482563139956243486384959672529149", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24161081486111927110165238069530430", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22391942471496403940548672444324585", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21598137157687641698896245060734819", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24634423818903039165123902817201103", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24175296644129595381097686503989503", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21393250391769312194000729890156215", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23807358987209803273671520941130040", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22707231883148444492967828345157447", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22720238930625676749700206432997362", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23924242676394789047086897976096402", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22476987431230932635619697062387579", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 100, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22501967451692515692444788217104145", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 013, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22720938309190284727248122299968231", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA1", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 001, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "25106268030141372140317884800106668", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21704317463402457152435989139740925", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26150701254394300965995819462983974866826253901085206974297107871168278993520100848445419574211802591627050246446663201442059625236943708289528972618149520721950185463923373132926799317179430085409764756884494998614686394087044128556613836860280309915667925370161849603377501107695190998446016116888759728728884414442364603339794654231099862833779863143900802919961652507803062452348171489337607647578546505768806598460833870555502973406453684382485542512890064095853815816823173849105750682931969384914744212746651623383822308338935625668962125749746296357037476627116465694749772006645150331539938403139580036236161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19230784277890444922448102241171537073657297296080057948063480194098419911402031575659065241862499288502405976947109101922132900724685190664576343153005042854258888231103799958846149779613750313319229926986552162018877677193567090989274069857699427772583045090828985466912868269084000901212552774064119877450823601482101274483605423398961891551943597711797765241194680443019257855785061773117842064887845578891944377803238620729501965133061082226927020434512411826114451785745683046583164977304599034833153979292397127502461332967631030266744894796887127829364662199179009598737014538620370878701240759190019239246903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22750177210027550560024048558848946576815912997283942087167163846032673145783295525146975585825472326492461246612506376488097721302486321963685693178296494168241844749331745617740786002260826498795995558438258937567028702098600005573930245624695707410551422726010047370120534847622389104754704239401100726411254338233330295550887913745747201633638942631760601589335956747764652279042582317929475849352884239453402772306939606423396877529076317406434611272336523521338887847574555173560620052887458441681995089181618980672371823102873237474473680503737740160604164203163012655664796445355127203796285486292389260987137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19451183797540461137628576867216841369707148231502594181948975809500185643287180717496112438125921592379703635519913942650084249850561856072463838873609967000721894114422107732958034155281737140786885241631428776425343232847772255322626821482571899387064830670920767496229709693694757925091011030191514260611830558825863832169300299550772338302361658072143311353564557583096653023354220058189153508042673075625000786846875674328288152591161384917075604396942957561809307232764618256077612361510526072338312263083918985730246859643129438878872167316931738725711863153702843596354667720407056325218044040863471434170443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29908233289887620080764612112065531957040686269716048177614662417777691904720735281308086982374021169704911178782796229870629522898998187055717803819941047125601071355770067151828978030019025917131450215152763336154356819325558082862653435101553457222019097314607532888620114849930669780929162869552773990935476900356393169086559468352656772853841534342221356899717174904108450637654786047513812309617836359179008245469587253239451149316895145999948450649547567737490687485956214414017303018406762382476727838593343441569079631360455965058741582010149644627315239681848249619159247479663390138620202790563385710074013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27418836540781509568548727563360897740716725460433571449286455808971542899733656461113942549753000599486161192695313829258492755923185674851135887503287232022795011016950714588458654778001935579343289451694930647181059954040931250609610131943606820143852942974381555819693535413800747999926410674097339106352928937959599822991385101055924285324564726650959788912381524963404448995702278091913966721211824299044142328164006129022379796074462558217481052117476074739275628809258231099968176778433698130227338180201051456296193677180232394889378512522344011505547537746870352329274371150509407588008526305058654764368779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23349932735047225866573766395170706725762220587413017808707348211563057527099960137046618303300069133456832674933632567339694841583766856345778404928461791249009882414211431437705434905118062389837866456034846680604406601883177800443418024905616871134272094270877870323043812892459457945705029435796571808166259244004387820850357518154948987975074116410136831770850521578159507668166387063089292872802392351359618274650358325125022356731742844870933381446316368772917126780324309664291253209197171586957377086264817984142365156575024567648888633836037480647881961074662095560585348522901716723756149714588578694295637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24403089970039290802381971542704784483114738822698353993775682155986462126324604273225724972733327173419492528312768705569438103542192092422428324678413151928738517235097031151379502592905739453114975562021988643787917528773865610502603358211372109754511016488134373322064086978597523827274818156317204662347276131414669539230947606630043504402340055850220061777333115639314558927772103995871621554862478285191294762973415135404854544744658439064724807527737473546886006575741543360243810264155849934088872923155448626202458345468404639498752945954237123820050788647953463923086984642554726941325158854412551874719919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26140577602911769602625123339123873761612897411642781554870630926723185009580973218402498202429643936168187679084004431975166050515940175057957345334596014418771192475449644261731805936768549070039038224689888480401247929353369175449146828631536573554111233897831992104400023575098724418590735097342939217901714282393909780340885772622811730867962919621348387825882893779777975650957062853267009727891406192377215309908132485868166042411512077068989135993390473055741481471087876827482955020396175089188461380571980620209596688431590585866292938144506106434652137953007912948054432415787083680138252065840056530433379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24581666069843610697370831000385143714766334938793515029449065092168682424090400893165870618088894889484251982399879568705728895728803335269869307137566828563964291507467903866778729201845426768442243765415407626666433260031883015135334070297062584190291334270431746825506357258608098603295475016759400357034659437626977614752262443891664814351954593754590164068762860891514270223010410555749009008981628460017003496776016373756154807567647963582571024339788909807830796969956281704483077594792376025936657138775530750674045330268473421028831767439063741340727782844741491038269387818110823657449409304027101865880687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28148989411464288053543343051186209470862973209078845049996348941058228717651523698197761155766337882820945054373891768371172588995900875514742992829425844070077889073930013484093593838816637223664667243523095347642706585890911288086018513452408603542493617356270098226884144888343314805339127558721297876523865166807549770145370425851093469840609433215868929946129924748052577700163749963529737476584039466493077127503697474114201971184275419812859062257078995410998831059117161203636472537402071100238804839197376378079310964866097616707013593868584139355309184958759693000737014297387238833914281838050612301728193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22011994919347358447050831312340048431484061778845587569737987051155549763547200040656802939006275078156734565838568709349610392973668104466590655398455811295523111368687073055787214534814249374935819783102617099501692624108153271704392613462224049474761030674209297113589079459239535896858840254514111674636445417088059465770329356799819095657547472130167044604146932822611347692359758666152801266664820693634818748704637709117354675657564663990041764040273826557061087056859407122647616038150906033586930757228456005201669565369080912956858657629319978742552743678684946419011368219849664654247454351077403756512011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28942299245802950672120893033114313117108248939501628069218593923009497460427835647932549454330256672511782578555741139552184455382224676166079858169868791722137142640973826088282274955055445706269708002428521241076310483664599087824782009708415326439311231414921772743753696482268285750721554661897719293217353870745160220781937949012548263932807747361082353697070362677143415709784795392680120746131081447042721936713493076684440691165976409154286412291385346322670793287906190408320085652815007128942442324731715672371965433444226557477943690543044020038986765468018376908690873179443585862375960172185845919475017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25679490063369563802359654797906142253924774036600598898284261455753881138175658065838777451920086561766763579411810034037428354861810673826940020487641572812922618283181590463323732892189363940219554961957263220690925080667164641208645927242085279711866537024722065626774726805926052236731836447149060341426293516758861219066156164164455833078180070596431334803400847552130422220319758695537601599946010741258163617290980943576529174659707168604961756582781234561489724884229249318635886735317128326793242386681200157988718471218367358188566469042336140700601715658459517610388640290751098800704025981994468400399553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25071838511952136478053346921071909624838653272926894262268380748900905442724126972215609601733696680231691056654992009534309116080419447655907301662697448063274136514714874185135685531753460667417620335007584640751486522662966673917359297163531324071988155804544414945621922708105522307864800817756329641416907840510894746585607628584402487036654054023779883560232408844110689756521891698563567633659798977105350310123211988463862255840023815621201863751112588792354978155297522572497746482110025741235583054305074843325835886071611695401291366224995904299231612726191857861015411287704205396783280005938499718182539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23905418795802291729289433939419690274105378894665858032539118876835793082821470019785094352218911793672046496392077157803121064061888174798063726239032504451339127437035937580602320960971023788843179362188634502046834415590459377056100874542736825576459578573195489867640161724019908973426361425549764207228684688209021075547901674374285389781174473827448565075115738557708928062653880899268405339421380317664945169960036597978016421624841446036209295648484165073036081814313564327530512662458126318065074404451253964160251719584750177522373721028854235038052796416314427664623523564074316028050368825427223554801011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26072173701500532825110054679229689406935010444915909451568950074651782417071355556668293113817702324414948178577839230484277065031092660519109833727143433320817318033064638647240150327192263993847354658809651045017032017710224056112455615062751150428674510351438571368863144380935371562837351301859433490918729013751005647779643429310918272843121886409144701853551255888438946165303704084568309156306759070921470074957548071756599690767786732075155754106666148619751979897956723075980043095549531943989913071017800197406123555780041390419700704952499214209911784305503535116310406259149052639441157119762552392132969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20553230805449702637172896092607797265564943026664595962201975307182151703362851047187182991223279711543602609972918143477445147301790902856910223406168958061301014641715200984948878861212575290798277086617033405557997729847160723423611568195345706886270894143723779486230476562825439240908943094228680318000229163404338569855341090042132040754634616894337344254635289249177144703324362123880110688067810449903762747695083557627592139149474116644694708422812888687306330313604680943203185055987773794464413881474041029680907514387767441419319040696057075658742821784928353669201466360699916930973280246902152802842277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18537185320937406675952021401610126616591921565117393541799642941778849835732611201855508290211971876199541518831606331410991220240237990159569210017459126989541200817281852216474443660376687446277062858569560879659686691442844401987660430171366132885015910622802192599850513219834310931885440152867435453653582054098705448696780096371301082434133509767388487558529038844406628506177567227360457164357216515267410258732254413180468040421681193855666868741676448059859954919482312132841128148176622979599633293612331025253234988262978158777878004334957219837052232121780237792657017166423574338212980987741725098771273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28769136839069970546775174064660762799119852620887621611855100517223203086604663703832954121548178938633230416746789152925170142971123448324290124045770501401954067379739900363100106334292865869684204617410212781714120189119988745800839920696409434130730293809123204387321358881495777268351814654541284879652140250134139040517660489341540216496093016737517772887330605326076226277623460944985940301277517018264043061773234451226549479806150688630439430264178930501710792649457721808080386437995573135403495021682156504544733398208125446047314273254510665412242662753822922265901914333711621085670622852727057082812849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21038014951936620706990509647378781868881849791182519959460495234795836227527159516336161963943536038886498977232067867315183202041649361602728099239226668546968544019042503737399997528503481974822212993455704351576385595490435985575905022978018396382448235983910008400311054903085277971606847262127960323236811221351550708514539358560968849794703242735244369244624973271162659726127296640492665374450653536086738264563055601953702333993802698208923829328211575138816320026741106132822168871756174758350502030848841858220290120735590668915994816356602901402983677413682099911600020509609898592421716491659282081802023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28743467089471863355875064964829367619785490231684752279097227088393191389650931291145822339794256594064761175689033777154429677019104335867417932395032297310936057809585582493260058508718094169773043373895047929681759594122885909797652995950941027019171962024917752970255133997804605475249316995037202580536177942148477319339374510832892715177325649934251001316275438459618846780217823213457958180627425101786158044932472979435890718255079447170951276277958707757954812129569971134134817776842040205423520892264610159957252755072551021918512996352517118748776377401580926290065981101418993706386203071008128023477831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31337835470539935013398806449368233717541970571018495829302887116394497074288398376999984276123960201615176015914722252355132146932552262346270120929209836960551038611040722430862469611375241677206168118414718461261848142508720505667432998491677959745726425968769064441163020490046933311342825817330179350827053471197768918589255691820065417713849670533548190862175769067401251475972383474846747032109560609834062666499655607999738246991055953430370810264635090145615621848681030676158592588287179935709778969813229793649877336963105321980555408621275715057040837906532629569019288881687886853860881604910445077966033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22047841129057764985148777074333954466520078920289194321521188699652083994361938554402065778840939795066902420779830986185678646789840427562681820925667096122071462761033516377684798719146916878900320307596409922166711896334530186913257658751243514879974784955382916003117880214673172252777780938918191169181797324289672116979380312107164073007939874711167233237739836175777831280494180755149698847301909473382141896755034504006756022722891047602899096930835109115279822125156333733514478201896500849645362946899324459471875649327480248784128309609551584967154464959255927205357819408165082543897563439458855905235613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23014166113665607389471934307824231993444425279259921629713393455761006880152494459066452942611560489990333575998584617756751015013006258730432228766990027321673804847236113514062366778855678900406685108439926703151377365960625836403735217942125382205463760579918076694716909780291027681803220607439628362973796831579508383125379857071057513994343869192360241999279277345995425044773563642438349261175032757192486471177470181572344356600849178344073870389131786209997891080772138798414916292116921323421173349312304382602468908572200522370905938242390331312156459979546595990627902763430596711714764334391572646345141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23206159735133590501370601022236344103150752089013243589083067630580150219398437953956792075339307635856813329796797654764323795881065845046255230082760227415332054171330172242294198783945866319871534128490230045776423051712847993667167274818513755704175407012461302805867898960406970366051420437730136531460063322947581365323933733974793953242820329839271828536054188179706053013104825556964760748289306599582664871352486735586583029545714652763408623083359789791671784159388023459677402453296747872587420573238982672008358042605582932469267019036226311330386075643522948420231998199032187273940430851478749966674357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26224206140901891010218284474532926054693672352329352199570800432331712226020523033935148336950332843230750584725537562069010227403879751091693814311438272817163445696667483419289792893740527080353234023128743134210996261846303156762881080330841071732237394365228856824601762852348463593867011710866303406784783479369998755225563111109826696597881438621977066507555237667148717636184184837372833679435995629663829474249610929326076608973807539197195826487171197869817603778268130484660638073679145370892891784506250176843454559437753249186483033818304707047224208083039985131023041155756179571609062839433971898323389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26342222739442898398110033365404193626626492611421306752676548887322615258553491100477135564582531886334387796829669389563009517605442170019003346975375344160920776805288870551445375057613030771596064712167899018201032455521163845250383874073673583402731795241165748056881952558914225153567595375683027544107529616117320106204658614949989625684093897983727058770370390143146458226530522419494219231366704359908737222598208628363713698629060906045106512828050304390958487679434917177687001037357517793779294629700174244022703184619651323954326263650216039693387413887952518012016769978007914599920927638392881972403917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23084408875393220508392870115699512252604929601564182915868270648579766648040613239525745349550474484433834704407178853266766801507691479693036936915526452046178775200261378479112682809758898807974056080907077236487711051326716575972606756913502799166072767018096317594203700166102487576241864113117257765290933620534434367769847392420602556003403539282687016095012294243170984977024531440178740074625334957941419325993064320438245276752270466323110099759749550559015070171933685563343126756260556478443742622634154447254720993511517370044137449420667376160693363493263799233372172125034543364995237498682536060710671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27285549610680316734960176828600026166021363085336973338667209773696147438896567272789093415652377380188438448267255374196906372670475829088513229069156131740371523525838621710421704239331527650456634931166453326301992638766610170198911748254337941569410413629868010626742392935816738589280102556401518623256811371309068159922724249542334956080985231651528237720454013984266524362619963787083458228099328211392434021147775717472824258999815925263066071533170222731976748533173991456592853640179598493241561884497012758458017713676854674257480013292366151818325383325384019361091542790851808346595563864562962376816601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21270776690236664764679355759733165311032391317614404156539625551219985406955773796724687894052302853450294388918337626191827566866661521202102262772970803340866008253779455801012389007860829515050022679303718159599010673826849192156906261493622451774997269500408388439622408712254507812977671070503011616382204775496467244261054733814107069177829205146281296332857050320346371093810282848083387368887598923924356153011059158117347720932089217350783513755637871844475229309047841992133146487464993826608284159778689080743565341965400016027313127533647165704447241784025053390719891154974838879442829350053305344075051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28589295731335375791076910997827667055802720154089683283613528189932117155077896198406719364387454042054383318552414979539166554245040117248892960538702313660436652687889036999652795754372102754584783065871784313542377346329815154184151864535706969442862501736837895595277224791209361690579484450046087379603761086121217454960141974927123142487103601382195528898901922114873569791061058253621513437555816245033161667124937555934461969909837428289140322532732607114307158666450984551463036407551885903054438926323193827591929360237209462803215084571981395627203299945334094820964271162336869077496365450898507588831809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29244607932391661694101713003941390751919215422918417021059113492310686664128211305594695236801161893537689266901116864619437113630080961302884633764705329441875104749670673993846232296117185148313928484752721304478620929071703767729240179094950836570990078011719786081903538563696610678266957988631389351004063569149543518716642188006629784971246474869138667371895319512236061389680818484764029608022826066460378550781204808841749598468535525773271242395902392560079884093480632568620645236898451525195156843400184747178360176979700049433953867247258971983147730094998402411643717162439193650179059929055997172156949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23698358374845923702959401353943317607627358030965362036589110121514464637617210329857779131786470189518493447238684392567992939814151791380672148712685991888252576310454684083082146679750773833066161972466837499471000645962877575994996915763538692048663726416150508014720215802858840322210808451321397941296319368303523394780313843665837611432727815383118023621378448877519979871491059498564937648732799165063911003757880691425981964761963021925233562270050081143976756582760639200437634013040215232690677995551640421991655734808489399264076012643584888034546570302614374654603424515976105120028462394182857012245173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23356534890963426454583547886596266264486041084393188709169105958635703024060270796424926830981513199937124135356756641444599840550448292738288870422559792412610738764570385425858112800982877243499254988686204408777618407247500571312672256377710066948972015128999817982990794891567810580491152507705281870604505647826706236837870219296018502286566994481234352300333176175253621391599539845408367381947753582188216831316920161376431020755522547582784341241600739218139613982928059705720623581126290377309658288135808725638423415312423925517606109017093717269326792897819269791974988842275799549281330325259390948006817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23663924020853432141241822481691492253009630617365786920473784246852952250681709960113037888321201457618746647556538236667767392777763378623196431283180517515943429957049583318896263886233574667896984944913075716903452528771506873722151762668736955841718491698233915757952626656702302733963359704278666728586905777634669216962439934803134614973136999736979661658531225470160367644577392243736668392235761317034511149698459307883423177835742082890244351324191440878110288563966596301869357963641593678792191295274723924412742984857336466712995689237223018577208380597835663691898654700180941319613778073392046010949161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27289729462451037657977502687778807992639471392497679713249190737458514863307901613996769663221425172810723539578581335248049228494717632969834970002102018275278099750040081064486402059708385755638361512637561401476080657295408710851520532544574548574070994764522557437270094731990647817141955819406759417506128139142303276375059581507159656579874497227853808036170800791274839837451238928382095113443561440937939131559617831499511338735239615864095317775378765438633017580093780531199705691541293271075013916478698184667118231278094723153171575635129872610566301602827499077919721968958470460865335594995447344644907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23168763935189492375062169780629285729980603375410454162709209407300706978467243872616527334664513133167046822459102858338710959720561637483887719777178661675670396230541883824925852863970627317602980344720360209060671891852021469307609780083687161767148097335308445337083571774419419559729520780492303359895821709909695155177502878208246018400573959034072676360403565741506885470337495113584761183926870495298480425340410208150802987278937640743392047466001753983098969378385707926332192960872816482440585646898554261738050706984079860483051463488543165528619222954527105363699189076139468915934339239373439348696163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24224937403799625045185619648999307039801028013531661037268784621806997317957091660742055329376955121613683592753939269852063124105236817582456876430650620211643701893408836009798509434589928831971728166889380302584799380457906873095574665517603443041969650836892048721881305331975423384481860699277611326288810462936121497100966440491829808662101978807854676306979461203045853648093001416609097629751724869672515765601142712152015849652320305302094508447533877612718710271149115041451999963304819312183504046621907846148489709801069516766358514471700746819225996451753197366670268282086520816802146971135071407527691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25795084298318793710020254699555605538425201621225121973822945393028212303104886135418231480701863036773723223861073938430441828857550883916910605654524218729800929772504857778028920038304100364462831872667042572894309390961289388333383852347273582943936957535232721620695665511291409927711160326914947140861932938580131028569668919980947028384069671054702312697678454681894797375093174704877486236062859506308409038160957728552835666377460634771987013321679017606130271016462651776323758379745794341184911089460720291860118329652160362286572097097108100066565727122929463177340610044291047071794942961163450109164379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25121254343134447828718904365647000525396197640537977771901994481742429336077809009344526986507545623163231891633099348898443892427822334533399313812495539542217971713573966756396897905988474905389277575141017914418669627343053898938524173283477922659144388498549065549863814030200065618735100065598378038600579313999804063436377723601337734844689872038736648430213749188252053776028430436241143478600705295377991893260375240498234176784758258237456606426738136354282628861539593520432501721203311985408633096366994168596670133225712413365338773390100048772073707482256056527696078266648814076020812293124338101034529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21784947816063241691269186258402469389223841349814361566632400928861681961316655556371723347463172617046855529827964264852919567416623567282932688829032368719543104088606683447122947477393803247623717176020911827496674145720028222456682244805009745872991739795394406356351002993169308854728876253341006815377099975425224902375962234065869191659819218627963784506443546143369304046546174450583642216787172505881096247298132189120353229233432777642866287242139785658478511197394848148002687665291067730716972683594258824393233684691292036406789480937835327557723418709664319868529813413370742840783843830209005980984537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26137816532877388969999854454445832069201973585876170802723026068525000663762434505734523867212773630749109876399439442221316039489184785009266852270899233754085899928864261817762881860049576464736123437616237644096659155720432238511019237443044281877800955749613128256393214711450530692278445684019377747954429877531799038970866876969579345702137712520261819534761069695430699329316842197053983581820667569103715138419099361398355654610457502407774763863725552770137648857384427204448666910196088078698343579249277754525821835959605511216330825575010199872081966896331621429089904083972053681030537413549992210441931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28075581163750922559712805163065687670550496571768447004268545465730425215959694756041921939727847653451113143258381369329882611419964108177026600283785089910881354455839478727096013711223845305652607076297961402958957194501482280821287832866531938774117644557750276145550651139435221637840133428992482105797173881700380881097520670569723625295823662227654636228360598991716453271832919786133633796696473937474838959351295540815562069824316577750059302611036895504349140576219819147235180949390530216679764154474717953714290782611525948182982088426511784025111598668592247472908949273731118527647758191861690141231741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24922143639680280838805265719357840348219676148509603860935350122967888497819457541786647392942959460546980310511596401769188010857866440571966774682432927825895126463751034280703011964317947655378740734265797427932452902205214466630879491309520163395709058315821481668910022250247242355894139672380341748578404326154478047394662228117085323181643151713411062691949670042839678406475317831505177501389462448056927317238526367055945887557599707835507139953833012061202037775922268713665312781170856750000942662893096615723519260479551159351375381454834614884273889971512784256696136974533416443852306406310164164699257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29276069126996654271222532903654590149283179153565007809185579125928078635081925193115020012897874468473480427300082192731515299584303673953243013285231332875862893383590431144557498271692807888846263411218564367845524396039813651577563993967546565797695172453414599814336736384602408947668688037059813847599315818084276887329752294332457480912799724296657815768236407418282423730375968835311316522702633822876257689430439235819216077301689910876276151453344487615182329774104899170361064913248438356880871862115416987500487352784206655193579327043911830783556656208803285971668897176389517346261284795405942387928491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23106969625912563570569321504328893438749893179214441157089407221978284971350472752869620352499437237862970489899299077094183355550251895542837414389989181769679007492740368292472437563558154964354076633178637663662418593669596251441772564802526898722838665004087416194749002361710704453781918728921480129063847504715727799131435312260521637974942919781248852101109520233935842657808229035794071304915733558040037064111848974366258249556463014669275078239521099067508196377550065286494873270165878680983332616093250020665822308680063537025559167990065090081551758798165698619039846738313385476192984973329776122419157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23410779563766849198899606586765387246267620533236658103297798783948932755045131311951877702646109868346956584238504968508078628039336781504673903964348547667870905039557093041094231579780497870404000554322064956853504236620967060575607131956147905472125030543284582571686809136409984834336965069143417335201579585840333209221443632008959406064761654477365435858921630211473065023084539926648489511000788310547121186385994835941391270985372156914205083443002369288738245307644837043264612133515746225699016519961779090560335110297716659493156724352438675364852328228176328358513195722184559661704885187176738929697469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27231840396780129490057651724969471445936334763296113211118419019275500756394660754149333240834092001660602296326023743619537481437044978658447877366587230492488002693190378463058925571489026333751362283355135022136191634793086493069822001504148445681583445831407821662595758963230754602460137905722739963142914319823650788867064803292217736232056407444736071697494861424676105299196480571657039338730993216787033542259837603497424560300441676008990125919122141134974572383899173473339060026665325846353843510935132260118454843431476838454724831535531454750185150274540364425727320175121816837946862813066053313724613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20180261733318061963043485181387476946510067635347270489230419151450519293297761464755102137901821086608145582398532670864169931628226606305139090833029386936292573326829749928131062597697285034126431579439015780524999806851732542089342248166124774904696661878173804536353940658188697169894300518973832710991705060561069162943713746079939291146215925132122235142980724318449552992889010255873253473818910115976655332355732190152533982964442496825696857610423882536881813222055979824780013577152029569973774136997130840402380135756590316217760686405232812537192776857357752231215406428782411638017018740243507827931687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24728323368374047438012542183312894308035163644350969170781687727293322911401242620213632856618601909851495907093552200649721557618167394734529621942563931416511915031067208670384151226400648195930865537356315162568522390871667255146175148626458481361488223922766979199112818630767197573154868072357848644226819352371196338320131524043664442481449401810903308238229081994099568988565402428892522600044957522086506834530880163683072679922949070876774090188352357724517342379367712344242759305297969088473547739666854435726409214509911498620352492384408364642511912645669077997984072045430985745047667210390931257811719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25696974187274791433192270287958575281788749031450939112119903653512040358848197589483411995204024683429408636408342073180488826020224746577678029342814494772939432633518566432619505554526700554498118526942256094420765256042240364069614876267007627586184876821064242160688384905618475335667705879887354296607911848076377701881808181941215678672839466686914115804547475433871450842522554306629266048571605543834845124844658300103732560185808408849048303061305156454385324936151614775544434876783190405872369816841747479850816445076729741055173934907180045080872215471758186376972535268012380137639309079028866329336599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21549335325105130365672174652413203975292733001079499177652695480747347557109002423110097215257071556159796379726201702866033171869492411547536162306756717283995514140792039014452682304572112490893105594313764984150302752100230171666967876779333334998835168535267112294342897196665351295233348216809901436216852494235905748057824233603862218545893460759903454174996069600938039514784125956916270559649689062671548806426486253627989835407582118127657163014999388505934459884028320578663747433870969356232950447418222074532271702498288851750321936879003750902663631783627417605537922639874631161629811142786841283483347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23376291155972410697823819255936231658370720302383907084624760676353216630414043682294978985727785098168638722024018049201535672393118281957969575434144719459643484975713013157859086231781683821761012157217684953825227199039881592440880521434837920920427238894384277042144782826768189719112691696655175988738812204099138808241833016356221156693055666450074185280075429890528957479957343882043207045816356080419735965675790653445817458266367956980186631952520605839024113644741273379519267662901032265833236012224709908511603937674166273019872013974499707848906665743007099697044452234030253717169725536711747772141871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29184493154597233624020356220015364049949153410436589199215903688511093202909575374273419781845684828459834518516265969264269358929460079332526639390266469199595615059252235680921260402951278896467267372922699030946739627068934280223130950000850548129652304222278198434626575516192079359917152687791901406434932302799247480400370092769500974488472787785895612885576116064025985289214695614453725930914555803260088043857737907555062293189159828906663856763640410988200386968998324735086769977808844218967750962801186441243790160076628282832967771460837626456687498504919311439818891896272889689122438633962534787183979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23597358168448633993017978678207671793014179977697224952349392419873707093156406313845996617100941846416752396207651175186197746179477264198657191879533308033068916604759133784096729706501801432769027199253982841678133204910335555773992985065010151726971792458320985896605102476601468803282834829537689115375485498967610205143926682705737007470587571790563159255541366477448379941879578547303661375566085145933622017863284953927700705851762143221525564312095539504723186818619069476018334869581228444143480349203987817174911761923485685843786862533976120177725067687570317703994597978175019984541748279576682457069963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24337985960744489612157844465364998837727463304154803721961188879755743396058886254216959599586108939123494720232710187028076438305031958507916882441224925331274788272418362411880884338830451300764117381597376701197526604804082635773600749339212583771327922286770256616294494629817980071574213177143660494207689700187441414402203005708450818146311062196642497432163501351251103777533619921674952906208317657885654554559484100258025193162917698862717298255949081848644505729085467192887705589148913390556622966434350454413732009071744174929237185232396954228059042367120373258178730182431607734615579938552777168124237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21181775935780071958166954966903418095043984672542830900658599874618208340266316702888034405720822095437218839305059988214815790461725520217583297399252827483464856514697318186725250223056594190912418296711547970469037631775962645825007630347173947803693617778922552153616523680155565419829874535652814207196348884604424494407543168458779300332984494965421908788117318575932765324064094737070158724742905244804405159594916386551835546363485061828233797735305469720864556260846891364271714577362142684368573384064167249912713213638178490230169589997961717850554863529051576255612463687886164144722639236439837664219629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23699192162423184563831018171011909184409677968110196685721315667541670459601277895996697387778979398461999146466941607638482834943590546838321934040238963778610418976201013318605408236691956209787252952338549687433159337164704910996944798506178084214962224797911830829265312661025436839728429515976407853251463246955010924910952294677351380212005526875260681529108571071605167493198123626022234864897677992427861905872742644905002307858930921877082203435326187315433533378532131880315297994649589544619218659537675466057967083214186303765025507042351185379042522948486878532574398891323503297748994131213143161771581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25463693448908854410548891528205047040861883585267269588572874035072491345589768271102910108325924270350393079503625565582093290989460197432118493219767085350296987737008060587266607101906905593640226252117181842573643242344172311016293556545016738721526379850072596641777293603853172034085409203321182016282914205577049703144607060259707832429983997102644378296017127589686092828271824979874003402569828818835548435326807879157359824392947832432463461265886182307720357493759374238149925298560995830949870306051115212052444150543635242192507402324991984041164354731625812301465278386839265498559299531956875670621033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26010350992128105207366573387524000397400226084257736519733278020941573782439681477526516361016048332451784316927172696254810343895313104753810291399665359455183686194512933983538839281985873799142487335745015468426694697184766845414385700716652649209782439966539885085049105108432183948088386438666475068946765970151067620297915711792143609223071797504667524014154104785364709439645028670203414555069352990705279645612818027089010384877257024160638438495361423937702995210052605275415015817607299268239545778995797401687771980250648371371431758211110084182893232783858475861035789600203228326000318138128808066365589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23147260825506894497528248300393403647141174273804935583624336983157564053188075372712597185444244221956932340297276736640923436209941469260898130194600964886227412894841844626700101851869471840275427388503067666106191008660187655440603638014835287601990887143617778107520691104865702257967177400225866040673855048913763809733671301299989654389055174618924690142015255849647074895385845237322469105892866973526500235499793772571029211977946740514113922543594570676012213296386224726182017644206983222641450678843040257358926913461232422498214309907157702647751451357591762780279936498295058652533589573773875066618283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30537318875666527211486326355468801776581509371069992236131434205076299278970601994560342331975166157471701472941368659091580822700651789276753904857843270172456582993518204644173690153732635579591907689194063050458277399417460195241219434862196982524046129488553268588047448393117739082813237954165163351704713783165927378946360629823597376158967542416093017847701114273722682427024976022426970527585578819930426395206080473267585045259969105717218638778402145489856292371800846912935874934034934408783631579314096018235406000162373551025334546082443206757934496182215262716014359387097791577037508411994639807268461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29198202282414057564876166284605362464278726662756221197716922223523956230650387332228836093982584802721738085976740815585420762010583265035983003589012340013038992991849812582718494958473371359554593138958604576406272828115208581222423640554880379497108648574819434845915699814131039774568899077112544175482764067545447231955846859575202184157551728129464577560883152417894224241767707885103445723968536943915421431823761893546349449210335032480002457218398180340078251676664846674846076250598948049423686324296262256842958011116744969081520903053375143489033349463857254412402947806419032127107635471423539642042919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26139255609378875915061780431739076691761344679132305707776179886511803350821497717476149118000793518291160335382322102441263394638316209725306875204241674608755406849621228112623177857225952981204543798047480378929008643026853663872564003004200966236549759794856518832129680759010328092174312301920671375285115108047892399438525982456404525381044870344923219287777894392946308354315152738959615939664827491274318774771475437858813048658298387803968143726940056512193079279500046974351270126309912576368489516640173121406770553088148746051531913831688885163922725042995252111422695589749870644140494858305834271821779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29882200611887435460914815766940049492580853583118692763614409412914173870086006455362326442731923426570722882825720816086094726703180259613067037203791827669142780275698373151530998952751126694886562729744315410238571440810865967836946866542322375043587635964526113294989478828434607466332244872480457877249196854875353732967963500464089811264009941707362890182591333823201058809605535910134712605711441118446240330783690357799883116800714009511160293278395561554413637376262525751724611558145974054854381571232757266390148735462038722962040429436261539477198657024956348746780507345931246754508672059895559128753671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31194021645210647800319068562317918189103121601739119327756808839801328629540368529910581613120431485517305711629478399256132817881277080995447335210762344280364257216800736399736724227010207648521917477193645910574368862435118012609081679351331908120156808160084041436656295654965796806824050624698128020208781206771781528196602157976210209617044670198445760231219712305849435951486169499116824922326143888597376430948554276914205302559255283844086320259331282940207187954658644546668073931518577685988335844229723343770150419445363948421629332249778708702427241042718847030766804172843062682826347119736606591165451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24823320094893172164533062910840776297471472040560416296355560864936634818914817804438025451200279870710154344920974333762616397116403417771199240228288761277269891061490644396111160752004894592439985369361247545821620296144512596288836430526325807321500504152015325563290302594733460417282044394719084741831012612788635959156874819717359258979073432463638749028272167443460564059416702057645436724464011401314040990756866018040332782156537260291335853713055184327249535241081060621559484169679436571232441918680929857149652865196316956781419399161222895003641483238838759046491060605665782242019714144268194339943101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23891003773073063171659073298254888012861547810947276981007544214439517461332937313435513979689873089857855959520523220328156826670793536932454923403264805067369807075486602465563672507629678825442408648955746415020406782369224799441047289894718901972477514931947632241005804035962846442985267686058535028362139816546915324267823147924725515024770687552289140752240642897712487916150572471500529165634027586028268339824303096231297553251971998622567894898873209393200746084441398771108182865502953660358429443870997654526815265215830442837380979971860882702164078516186202847276076397941397305347287536375940505345481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24102796051169867117094596259005291009039724667922199040893383053393774681248626061656773656459440189414408987666362190634924811190889820242658671574031565316426128084615736263639050015205942810977303390380743808727812272131253613954986482681815326823425650549758843240665804804756667498284540392833732263995241194910373608756369010659173384183861293717341943948817642828341143350461142333760888761064332118127917894176644359477059006525330124579502951743698308541044899763573492416889492638312314609277019077882191068385892459218983442238679763414210344826510633300270307493182854969206336681202588713615010613320299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23043846170455624500085511700750585035462264544763756806405421392319605744194729529808835766947799561280507108963941042970674323798265370785333750752907398425238461826575584095939636140000922221343710202030662942405843499840705477687868851843002731993583722930733479651399175326067173407918741677474157265015153927483724670449138005538807987273023182253561058550583366300227058932300444683986333550698827600421232225230028696576096727511953446079121287171925391911733977678726339292085747230222630891732797421257249002901861330716853956172409504355811001332824891851864655155658662096170236988150689099687823946143499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21068111324208351532309961850611482383058069887940768508755539811792612213372553388228429149687444168559744236396148002946652153297616834401699187785509636328063917091824247173752546150128858021226134514701395107655156971104045400343802773098325566927982126739330973707747462627269398767517055900095189915603163180419738838546550414669589003282605264303185380618290462238965160250986168579164200673939982944629520339174509438152397544907032959595472521177502591247664390666500955762128684808373552260585433444564626106779828484279356290976203862046408270327042107254830999970314546013990317550867380816477568214508899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19591745824388737133922540203295255247174201204793048503816828174833312937310940383566039861934710472696175601552423181863444730730821004531213243278336983560011552867265966562748662240503928570443808871881692939104293358094926123073841360919696197622327334310697039932470430800240431492354740454910746789683314776355335000214160596638869413199215351483474997451694360416917500335686178224541492017026744872401009912252049468528547124658497906938907735361496344042153963842258565204369107728438507007797705192382968036774381869093398236143017271901907330952617609407619069325339671422002218986897124265988014605025329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25394329049736231310632008065618487338351842973050240819832856899356300105844430755311906468127459317074014939322082207949943918881824214933869954826603538879486757863527201665495240280934792726867769727934393852489666165479434757668268242013414904918151064850420122187576716350070246294904221579856660672186306145233524609354460332279527571605415545873011889227598010526404922125511319614752618328880145845635515774485225445261155321976479544934984299546884143306047975498878936181178790919445946995435531236104260560193945300169876499687616487809693412239860490453157780940006698496643123802670437394629891670662373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22906502608947741112915973654536086000166062092071141457034666344154980409702336676969294065101873205218928276648636326977895995859365041214533636674038927538650021393169251187295952653082649535407374623610735193315311992652202259729123031903338522822885144936626010415412073231878138604415400525965313189123556313819445919708357118089090506560169851503907699304609675111530518275003076054709732647892157440307297116599518744365385159857345127626546088455003006183441756072468416095524951751876216601081397008585806931405433538658155359519897345386813549312355583312458587839842328371620723487381797367989071226875599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23777363599093649044041975476702353093450062610013618365058318950751383573599003584968259583796252901083166443817622076849008864509526756774572132010884966277170594876157860345948279661945995333652096234579504815062381716267996249713836625232423729776511410613267241368157008022083103709553727511035835286744238577188833466975178844583779643830281336561656359827208748197207702330314959584419052498989652261228831919830777276833982128519117895687611242052179412968457219730707586258384534822816235361772044724803496597557132362121778676192558247319013641573507263265844923291308235343666457227992412873131929961513097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26339922527864935186616280319781821625855711999635466039558740818135283143087074263106445548765761823201394142289230759558511247356511309182089338884651608685494249772515606347063327924309113941287415927342303779510730595762520105278688511471901990479436693352139499662004597781816047499608038135944448887298742522755095429206940955409274468310227090733450455665801426607795410263242164764643295387422012844734722750670725848457078919426761801383029918926039430034787593762852884457329929995266185519793030353385056268622465637375853484318947786130821551102572059918583748341383727824890236385373328309755688577636717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27932034228823397299491815839790454528248980574231527930018221487611350971258429499930162521792620944724743330787718695819207672377095392385227386004615759175841662309827194690365979087979238102884309596583936780225017697047626464981721439405326955966314201210861854230906378326318629708461061221215131984301180076071402877198580896890514321596296153631125897781823603137772260346619101856255360412801225956757756171458025867452648404120765101241180200273452158147384079447415020695577639603085953594865557466046540509161474275762117572550700716888902971780138932457746212663532915281076878562033271006160033366406407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29672278497561855430499614197934620922360111662953305052749508031896676005358074980735939103289100275056974524459508060385746770611783519204763993111711189044274045470238044399881031348526623867750406727560520373040964881144390280459065099435674838310797372946558242307404689670448755516862333781932661574017613415354421836184918719346633498969067907455265580355348392778533866019676556727332354496425510608221275741951897832047976391037966629679693260525727907754163160964971659913007416795709924377944525240166198728315188751553941945495108506651453165786982702706060933053932919988000507674306379488257571957625647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23869360496111879159808151770534596219690239892119956645560411245922105909708319847457875308211334248228510984140321482703101507195264988291020266363794846334746405195329715556194881775474750199738348321672208101783195626298617381176004307092920099322974377948601719374116871267293761111321099470819810684667362452479882599133890712885570010946754839410158832908005031014090107995987390809500821388751724515891712066328743800589991805394363008900428800630991332306023791075949285872670354370380338290992671590669667019306082307297420241532637432221636849624859529405279092983554319660127421091434713095557851276459473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28981514160761563674701974376589803522546335744060249185674812046362876465540776156645141099634077949156281091914696667455305499129080497176147400438485410567331032974152416290270857848926723227712465643433251295119365846398470135666618186482118179269696498165292884288083355201432087586089806565896088434514524035419288259550336424239713616835182080993358868453443997233332846199381564980234042019370465991675254646765788346701535056294241975106510278533394915620719701897064006645393358367976763695984048341615427758382514285203833196744375895090348215981236960316970863599009104856128462979897226212672189913187691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23552384257741752963690344263408580816564071660681611850104300388217359091100183104670237532317559551966591300123989938704790335521195702487784899241345707129114806814882839392743403518692088890067569303884545920522629266767031788233173173798752040967711600447838261313827208955412511401008845825586557443441066054003510969081699272738865610174244668140838706484410787407058776766450562616129817939799513582019096341585138569039490858429194476216932674626632974588269702639919743941964576935162258743180875253281052410377205627427281649350303596392308720162655482774683682811037151676848281499609376898382238975883659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27488037140955373409546237731177738929864894973489318110938257761542100885075041973991853175377182666119673784856356478281361897744794975590251619567075730372841869612771277694657053069521683772838983151997845406401956659509948080175077149434484828137971175923380807281228191736114370029978368415824344067961377533470893371972769241431232878390193017481999012931800576925879466583758955972088293487769650096654265791819987344648457925101514689284652750962664387703280693525437384986357769917591891300420184681145108024426247215228850571715860209899826269717351927053225046479422991345489681841813442188900373739313877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23795714442092379847521762688045487206880632081473074270378679743053869448571482925470431320104081354738901160345049330030187202792395666070045169758803133369999070953062509130719800717938400288890058819185497838774219031913079473479005870179096679082673003144903211706720707584232004235486277692390067032030016333842905182937648761192159343796228455788154330749956928114551914798933921604462504748259724307595329362169135361967654940592459068283510676611228675847750831169696414997396108319613643325211610992774232269132813536763779342312821198183253544437132145748034612281087318985912414212166023556261760142622873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28067602519558236241910811497276562683251645269367227412500888572021737977214292031648022191982317938901182844695999232207810605932948218076005774887219001296310456095167504411086314029183981170826522637945577552314598476185210837849309961828566165067393285654016253075854088583477871887939773578698453184324097656172417415134736509684487035542929468895350993906406308097192517208624562405091139267101983957573540494181867050388551234799370950697818626301019224590355645766424747595014637418126434288023174385003108698281158750929481652141242202205987268079610963628059981876814475212490568445118512920954783562055549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30057019990863906929680082532824665092637774552072763442350123883376441257094248437917358844279994798977896945643621558284506203473167925216704386286029974903848585980905709911397645163469765971015690419846624166698481837134106751502993483523172100460698161875248004527583061870801960109383449205070941016496636042525745699422408261915006840357039450183526188985761448789179386528926194599512031994858847897216570544445117821991612731832714309818738965256609279818777734253388146771692501657121838023205612132537022485760581838298361949151962089476313819803449396908117799573581107335654096439224085704247883600050821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27014646397626724953871725081255405751522998213800375182232563468151131600567864360395925647286944154344367373698095872778577289484495657912221497213779894517172703377723702374391396437349736717154028606394268653742687812550925204235934393078096398649456439856298801915549021095185913425591659997965807460045237820435657063345428877194067268149863130391057330078218992513239348707147541167767968388415732236988631661267932163086982871361916604862558416484680098231888760510131803631180780258741369233782743972911836672583459536920667299416935526343657882539866317248069587739296993736434172482427340340454996989759313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22964542315164805872230242865842758046121549357467183742711720577723780043479004930789684467297798477281281663996725867718897672360720861228821210254896685503417188192166576441595760542593700680798613747098607068631841304230048485142428083726118165710461228084503106133921603259633998602842925923199314595674156151426533521186986774233465562993294145291576681381835999882142304275678552215295581006560511991807967513187869213628652163101509551907530426482569975738038319636642342641197254184791969789449398159663660356758991627155506726523304709272372809309489834322596573102768611223675416929770361752953818304407209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23747819456049426526311389984185075079148143699925975736793858874267259742878954087706586601591722935899676611219483917679099379466464535597767013613994930749468438417348780240362367192967139217350847241383888668987943402447605803699005289071611745717535202296374531608418326692990888874675132127808939580523341800152813866140514239411291551734644421341393433557802052315288363210998992240026765782803245546047006723048225764992494537679668103411463114666240579411302949435703144978715414902067788922605988913154480540686639351724831671643470995605595643517810622552145087078624118572399692761586424234899639350718141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24333077256695222284257990223328295751789884725833042427488091152467877750752724718769407503797807283877885727251272950042152534064296574900306925841088884737523945771096296766637475435608474712833970314883539008281014836861589971176194347628899810533501030976736601408997353970598819153070835788262067086674529618850059255869302219237434925837058277466448690171246984166130694859109505054372084592416002128075313817345913136815999390912685091624056124080285750230851698971715704306188361354621794028723295680234540007318242249247055696504472737272080943042359696014335102707593767624624337337774226537229538298483979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24113931753162124448659188075233257689311300688952275728048914389000886384302674759364816485288810012820038728833945011470848022946042417354816179871616811181617695616895665100751669133966629848846355731823015877719848919398412433666848679016013970850155598504286320323245747067211251303610699889323242826935566858375008741491633441868217898376481350686344500084545437904261674786924363113178799696185844754278413685583969432666595711427083101959306443492923798753787605225124643309707474325654223753686579902868242012657716125765969644984699712179585975587544047065854619978793942466020006926305295785997574590197793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24044359813319991084549913336882047131087065995257756335372840836744638498627947280335313787264124077785391899973717757537035951433586918737701065608727013498639279145639588486828203157290872516124144155294994108937256401580351475943603727186836721606504968420990413605374539982814281766394835431379740407030891943138249689283039434509270494733550634867070686650856018984871450776551051087475146611856775781817561321641540954156126834457687975375327021860329184072338294732634646686135169323614924020252035756429617057128031635219135288650925161651626965286281300658278959735973808829680997093108019960229121282001041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22515716782583018512392904508015712289634547630343441520591275440333709726306999347218532382358460396994755226639634618498176301471293849306061700830986980405745776796285665032151381884595977225343281904154890423782793345899677610564392508492181272418970288751513277359682435889109302709624475456871653630536300008553287698312509121354140899295893322646134393656309804391192711761125857833662473399198002377082160411670407770928283588685710863786777387384957033823920804951021985181644892787496481573457385314507672827514768164599079397352059167948791862530139245383035725085998297838801649948265167487647255534882557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29157121906353803390148632589499677115404564159580846226177425338874531848023184561741868000274377121565662498230119695064080046805547684663392804115519774646572202213836475724419889021286404225325844499709040807123750869198125913263234380703878612703631778596545925585043606884177567278989189787449885185941426464841400498524842491533307973944902446457917643149933799318559944730893384105679936862501245110035776701285173511568267491777769036559816758808852108091139628913892025809672054218019388204043343160502138287046143490613579851181780642421064801038035509491763733964686224024658474628866707728769217647654243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20271808249627352787325660515664646575123653535735762232260645917891214268018256099772246361551872280726379366520606649451451147315431917393383086999651705487529920009008347840716293198369603677049431933706690556170007278043982967737795923197892704987548200734556320041242165547057955897919092996992397484815443062720777699782878893836867521294869482316781624486460870040086339685817865351075408401113804332579412007476401689322681471071696361113749225831613227576620613587189184538838088275824840153469687797380015784138629603330957141642480307481558373776076209743673193329952670118096000159243747044777762013913493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27700230226725438852535040859219427500471223016748342566184531347017312952716361852442049339907091847271368696585386622479520423163162790658535729946808859942612050469988040192500320016190017935145985118805915425974508599163011984344942666111626415201833132533869356537942068149629692649496126313878084623072557003536660535450217090976591018927406377655318263142246048052913925816368589572330082091201091158208685031107350200250843322892208854857301210246429866587688680539151402649499649044718450932602266913774758251692425295205567387266859786076379326259264745466886936420677452184985098110820033625840353717283957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24972736893765564214357960046097100411457965472758523409318260055914747265446788522133236893326698446488907724069946553871640870077690743552864110816581272159218315237567904640018657019632189785163463587456048008537224304706547875256009433573978569537798523960876032779404877845341433057501867553376170736671491823447319976575535770475353178965677887631320601094525664236858704108752014273501422109742019479026929352829412541659175030397685062411679868771302151162809438779457784957679912884761553548784763674372652693808944022468377056591299294796295685332287385995360917344859972537390366402754142136559228793550357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29622510994486251082544867969783812215797491662507509728064122096794844598359615221248191622400834514552403955294612924641852228436974168280082977266147736805489520225879348023133288009826136550482668583023867964686149082186313946222002723529237714189849985762616915770570444418023034230977588232947144217260034512081882986598761713154373664209578975994421093418976440907245948190688104407455877016009406712262123876230820621058516163675910600600585015069863147096594350805566276302769027326757012129390930117686907041570579835538058060530451541117893574873100418403825716670073071883589245471491472775954799054942427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22566362796128026106645210960222409414837971363872161981252421354648149193074506688725722061047695600004722486459314872377146595389823575839729954660816131633039567749730525948321627864674571773746610313003778558291318641266481361078139048815126873596466328125247417995947320795935898763901097698849274926521856010454211829822066473916962308970091088943960999078336334037637708422521643263672078898891200207141538525609119087872439181636158853813706264470345849056057546322704999357694660647547647347662872108612176878055375159094611352924563582885557961691655447564675425830721467652502983534172603767798435781392377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23778293709808360368905410368565200113759253886125774200965665260046642486200206828460042348766395824401035903631114855197830936348410272116997115029540946195698729509954264208930126633753245442694268755524751689248359103321167201478229107335207299596448607778924969305991780005143700652261474916446789638450141021615027317004963724867951597191745135409388722055657605315282855916217635054884612741752439210396601958427832464857722519450567265900629862040160509992626377397518206655337420895886173272810071192766830209895971342824565847369326694994232402378932732957031012634311991839263035089321884215155974362551099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23084486429463155552599979844746133324832108804888056488311394805360330075411196438445549548836525926687150139901327092264412028118399617977590078875681254966032463086461636153170395061692094237346093339287366223068107694968934056138786760328815303549291861632911192054827273503060535731315505445820824946677636916034976210326342875404493002914193496728211309873184803014552468310529104580185668310492857188831840299730700105942436122508557851659354509238370269132126886335709697821673339671453055035110213952935425828030840352117114688567487585193658630693591164280897184139373224606223462313429461805579828256758479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25590132581901755225249499405516438577246646776272998536247493044621925513085682142110735844616051589142796647100361140807195363562138523905008247385918722996609691746336636434743884551447501361802117405919023509763250510099953516764673532375838660117020490617970382116279248098402200700115074927232087051109639190387570305561396381613007063881158831526278145323389213955744207863379429688714466186734171350726195462364741316156052463955234334303217339071422963557935404939421598120641392274767201480296275676786748101924324679172056114680909791439219478977447495819279231258655679996235760634301893549797908146613433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22936620790028593305403304084705057971777027013667426264990492782155542834730771772977388857972294281146364257975392981208882887655649264471082327971914745934520760510316823421919266018013760487523924087297983789673509775356803560484138886105674713718092440088276537737240106665002725319667310940998449603218264871345523030183890409247158780514004270488772210330287916416901629668638130606348359965500873746332601942236911132374968132754428358670651547564159327769177306952738666232375792399949731451059298590606149605853737194846749304447121818758886215423115529555500959207874877347336166388582857536869155085754611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24137285441324773217853999605079727447429050152201883223864309500730632195956774261792651863944809573004086325486150838511904843821376151935279447836284114177398852265663257400290778372499918731172697785166281722662711038268078306777946488829350446873545017318170345536071320316566267213646205836726027318028218875057714110961943451927144306740123891971603451746470171585031658091710322197420578577937930647181947757485458273205564769808484572027316669618077012453103774261750994293307124309965374398598052600309022489962092017715763604739322676066243384859987655570747645619486837689680985853768414875012721447417539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22563721842531184997873491959367272986943137132585161520163636931365253669297409119599252698056694029360582481825240959418446429256793030576788500798754991763159218609399528621758692448859075067224469964625272506461010637747482403925136931931085485416746510849206351738620798795033990206556853546012487603580522217320826461780733956528512099723180161241945792686810145485700029751345309910496304192577297984212490302390241174583599767906851108563739193537153228814517583157039375772203480476950988136491585590427847960698756419610654869529946217248361733645320007927427371979462780814294095668480175070212883387202441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23943728603035414124625543662723034020903765226772333323940869848564797337475709944936046041565485491453085120900316873152384674913191782786043790000756806421267901205404362780999250065881515162377069789350477092434779010123952094987380124493321765141231524839428748466822292103820746642640250692808530718929564885806111176234258719502257328798535839222308076200952962938811384430125542123242508265548969970342679836359972396553155824273532239174434784528294632761225262679932110154946968528410327763008231613425457113184905088234555589459168283491201902277057654301926077039076433233404591489800997342668087407683671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21383233785979333220153150325827786958962560439527301611114669134559472689588407774981690041484776434031834234023426357578980229986308629669447123603146442394234943595732268227293071695454346573902491455449556744694614093653478813180338452648629043057840988346963275887038757595156261134043857421225363472327829602556399745547242062630303336807150287815871229075101848658720227128853711969797654795411056486592147055586737109318078698496314932578841876005060222825011024603893995142789797632309510833259561045891474505080169914005187217359474847682268937483594513152242911392046937230022666061617591987014599403416327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26188940841246882740206148963308799205866026515758833356624786579723710332802766383982981957103362323172155480415666742713480112547093551483564992666762205339381815506501646502835871082060368694411714705373216073336140617167880187115808933978066352304173151053752260897925213292684676118539287127108275816754151141484836398754819487702915679959978995472739838446609275672035462163284306110779790083876128628709495869346528329752938809996411782118748375273744494088680613382907147832029982949870814058926100892893651126098281950792102487322924127492629080594620944552312196857144762082103228089022094569255295733687343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25972126286757620411290614783238892952449162611456344274673144539802016424175638325290166900596958379964307360367759551625434138320477440876484346631988302589626860798776228119860900328313821846641771803378103431137465968449009622407086286395882981467578666776697868015015536400464658254140881117059198981464213138298316082922490079012597189401299540312931670120635565888287947895871797570873662257309612216850598403721023032163240674861475012405703854787611525881854512629072347836661399904602382729464400640480382028840239029596853998794956162796541037027473312763395945475491991227282949457337113274285279205912259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23712935203007256041168439173144572953628030512439348780523123294850775408130658598306680519895888735759632100816882599490581384049891807698548847963242648783259374507948054954601728867014563877377895409811394899774027516203341615946963560027288384654623970599812201536559779526914266307140335103453274554213928925249095737910293792354188072990958093398149594198481567443081939805074207557483040096584232665240719247340107351029645595066453347580622473389405966551477229196968098053339160056600881064752852240662969532640831301011926139564603632479084058826052528837797551418040231341927895349797021818229971290644927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27845713916685431171745591948942929557485680814360588125060140887068743834366698401616105355940053509203003648032550653417896418260829609230570530418241024265085674939382671938384451069122975909632057572858967554757429431853722756159928932897771252847205760328735263486786624618839297733296478345254517186306862477557109629241818600514849282994851691917436742429692963137445209849520479665588592264844075276569335662303545375360065953741150860223845691612177105661727908471775555261867669850640850162379513706971099321031242104199444538451350821156998465078372752052039235516828494425734891411733624464018656963100471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23413463786524685317938359784850965729590679456918261162225552785891037762482322732275547374015030524726419791015720696731590031730137122583052966813650061558418330755163720037098463807080330040930202089462614009856505756823104435543392839407350552739968870921545576515296776689480249908504268195888031005511355639202602633166009948839565596599862939456655863725208149815302831261801388126127862487615120471277597825672785452368272419628848926401841156348434878651306091680209365093101540169926647414079539626866398229570916645018143024207394052829279730671461336808341346125492845734725311561648142772623382305253519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23167327699560897173745355458113559276996457512504010071908198974990830332724990853463397712673389829225083277816286261342817171467474583295656425509287939627377289539091770663020016915301099230801105861301376935024878109990233599368374190917615919552992032884359325874173087725495921464386311311885358105212511935397103792520119747630907386267106652575638769099413616828336802185409336655097072092974851604027017750597587463414346278956378226187320005839467191931662587916984017412531814140012345989153035286494145596461452331008624234490327859182503974963689295976730857373987398387463371848910672756369570191746699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20678476733149500229989265648631275061585319516001377571688608427000618550977302789600177379385566401577173006133525631051160257884361686677777904877253684987675957265187711495448959119138629837865013367816000639545457166071672336276590290329267577674845267924542016611334542923894733602164830327291676309904489790049804904183714723908491071152277569682777075816219240135649749600181301489760678711463768471800856996090473517345509051828900774511828011215462052885248018032290736789428815973184478627025138870478645925975869908552008166184193262776073572741543559682829641852761342173359227431344049541318145321935627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27178144138536483079242678689081988449309808743260979108189083202637572438087872956191008311733357494413182285310413381857655729249298031695054767422446093200155613883769177463146420849437941497323927269857936297772439774665941044747385237921070516426917726696655200688142393054127189751140513463252573103593957496875051550435177581585447806246479113465728049189608442080686502583475616534905845580818141841340672034476893996612452469340123951634795686078487367015996462796079273899123884613538896418296837838435418679629522040712245312877474545978962942781938996163555987417513240362473460368246293435813569968939639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23923253680987695984354392865274099332506400617161300872716768445891572411518411104153663811310726435570602129206972911181252567146629469827334640831198953534918210701621898644123619413182045932313803599811868489161772346033728607369607025601853908202704721888600026358125396924902804035427434801439280684084997621837234378394243486104029321609939770285065317772939215702259483768029196653367478925558083025557362841984981492888726879580699256551038107768001877450397632826378529896428901882625596246396380136717538337078502268564194078204420327944102197447117434033431084244469870430963043768988967664878848282856021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26616024961780078584347848817716472366771016003973287970367741512371982434238582427679726610301238723176875830264367713232940359223901262420204911461263631822611780778423022172858523253070105766707589514104789892318594524321592387596013004696326916004713644944622536042574988732356643942140599486380478725643437859955991640218385797217895723888584451335133747737995963861391285228415798791333298835129093647049665524508855722217662335136960182791046259827531014024757469561493384454366158810458721828608214125024129092650180037131016173718207397757760012668198546235277784354620643105056557503244112030794622347992481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22742391159944156771854318199255803916419633532015018793562579192180528628519254576186391454279420432976682531614126001823453557144163596013363315241827922996232207023970222708499283074568509082395912966698699659243413425056280980525951774665237126329264093476245088885149180256224806106219653556051467900438272526693567285268602708459261939714911496453483097952116282450782433710889504813916375382769434570920822813944625741235291437545163831148439930906615911056982874519187539581495240856183052290933252802779752243385160446408525118890904896822787989452708458386518174653078768836644626089699521618818559259130651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23534329314434054635592875050044045897398294929874583030743362423371052627987091840669791365426960154536110613283371292519377938094098714489286819344907984624219134470924361178047558156985664993598010781109058838789579311804049674906702972366363060300912201020252772426596002506887224687789818132399308295981805461648703654470656180664232253174151891101901488164351339276632850727832212565549544695969295868185763524931117542120314351877167083056031972080039894769137611657672033876824868817512132568121366690785700050056332176244692943472542311129651120207524968623338469984901836486955433304494411218793222360238151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30446445928076022429310502923764882156870497460984492925371621770688308923706898227713315549597530726699617380638834119306792961806153580762710596306315265346369269067174713016070828622241220477449999819608479338229204874657501198769402943390783488335618891832605421420803745222762470535825920871108447966192994061307670573563654450495092290763220889598719926707074499076490666318272492563037901800628680632278632758442590746980068434087632868462498601790961813619354851620339646429899606100201187961134826866339597184274537991353780495492150759173782058180704562555475675842781399926727929316501110049282512771800527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26509118053728231142369107497866089075058417241261455181046035344476952509215569680473539162221296480088911875878844361238156874416016177531588444469239876228612515029395716577084164665210980846292267496620251579964662871966540802252433943511817142350200907193804024662125448745017806436265741220055448305477152429835551772425798760868526223446618720751757605752263890487409192399590611127750294694932155406169219620474290648538484685099493719154544275295679588507436464875062529250435868516659185095603463658173954718731165937927952705632592072868406226735613133085498650079716509672449713816776501312843908622160777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20866424761392650379399653043755561653769247177692574109289458186685009939663113191888422065443615431256252609303086821215555977637303109773002812414615078060065854013005784400534897403267046567459688247402900909255334091517368235365872270015590729955597396523538519097619120809620981967150952073515174555760660221209489908105498429700028747722922769047004604374694156360073159954373994660682728271624549096026297224551631402529163267249006341278640794158717941873046568555049740581175307465381200076318382642975831031312043985234505067488996459295629731043581956985437031332941049298595017527308975197029728405914519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23948530847287694532405385602992526518592823758162145518596032420945130629334196422240267465646906426072821278329896778970701556505793678140627404899246350908290974186360784244854653940739857695293945507389834637734316982619119042059529405095541869381325629893342803674437616158650412243508699715630073506799352615387655863900014923134501960765294117918970247235275342318498163688017251249257140757327272920376522176070426361306804180803664338076418966415680134475260005595053590346159059173847308624320428226292020669930576078989421733157989277080038496129029185665463779880974309665067532843582897073233466853288923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25568549970712565129084378549466684042122214290919495166837037944055767766303015938020181220063776210925561576256688576506871229461766871549133976551468457469366948468438545039757402020541683273355961415301628984620071959182030882926781235831588971289442826044501182867722729312453111225739103469054312300403884861418381187783633196795112502114459509661499523810622164639791918839222918984144410885446482606455783032336702374651700140779514138410645544850875527696393645186478978581497062370605690855590117080399834946167829932165568924191601451310124459497035660439017778734093668527213030789735809940028312079781727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25267166837638588941345660741222487206829701265011033900227955757136577524702598088050981309135323320474956191099527105913232772370765233420674677136473915636968689020687627675168096164263520633733041380655947867612384604951479469293646840174525239338171313312329747078183091712284714096150786206819495072646692726625562746222219217226522754886398219245616004686414759666595759406616384881694610942211399491847959657401829152589433376983367117902646123424977724480542470254316339685607452048634630064714625750628443991635994075762669958507884899543891638221462027545286754664756558805326576554056588602306820420323361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22499133333127263955562461972270929277803344896808428885490245975182624665680471037020581224096494156750022443650641511673360867151139439495973291944011243931124278272683748650127360166378472100331209427935154781771320408976391963124019241886750952534385499613026847894541716320969477853584367325342488697886160687750058669942445405707121270003292986825475518540881516079681738622828290300356820271817679041500873409640204105705180764282573529386533541298284207731692398073209020505389327384564662045482301038546635005174348569446039504550333023247877913157763014105551328620663993630877412787401767460032623062455019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28226548745414694795221628755415791041367129535520324708226980442486817378687317706133380702176445280808588879449836230796270686337213943734276863086761156756118689843500862915008621178635685141795226994625066963820297060335237372168495013489537554973106599592449966685087267035437450800856427432091230913329515478761563200508988632355237552702520915165737218270278730141202093617907669315406657228007757665754252406218981562918542431927996466509011690328789987586533321247527860916530036729003285026887684204243324625047815912404338512044446482407216695489772291884532698125374653342119686558716708862636035799834061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26331372731520042805126337529136536175803315114698955602376328058263681182917158410494045283807116570590888603446893823916042309874804954100089908202979758844586926950455028177254929153304366574591494611533549218673690033342196650010567443235792906169916290078932013412787298647132079437098246484199410958167728387960480562202595944462756838214620144120718196594481371678098566619521125066012221209955884136149136656856641602314215913043597796993538318055631011127369998797498567227777250995350484971218141647692663501918697198507982404097556189404121653788429926416269184595772937230191227246556277480305423153693483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27642175601127894030034881798184053508825619426900331208667149368180495138832730338878736884169700746066067785126473148806301768618250956146538013048203605128282941289160452644729375835634125793450526939884210706021188049998715319587408849970019570596557542703500823621051276231163116891918226254457742715275906674070731542400251229219191407537276406580500160085078341016858453919621012633417052713172738683587844591822266525946300425078324905936548491884635333382624949136821733777636806957929286443874229334772001438043098514931817426218681982448478051844677671462564120740456353426401517166537905525761133386671969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19947393707054945614307944623090412691222624163918539161251524264380054078580934546729997282425918347550623637210990966949033172953475335491462382868971211378782418957603858959539765239854791799286911655661319808835153016666765045696934325577391227237057110340982668191167569972980587634471155766837848051065720625714259195930368717621933782926398923337641757679716036174014814159770594883400657365011838474916257193369324020276940685125562078753311093371923292083015831498707678907392046036598207860022682536731845408301352739269725031682177363260974854978560405675427255070813274483809827806776975706651413820966263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25258863977305333632992845626767966419032504435694402325843782916867240572336408692469350685181692076234865740814020802475726612490073382476091122976096573919721110597545174185218352919780122386636886639782828620121226273555850879646895560824373010000626333071208142114824990758278888932528199932453441077438284581213563710332376463873728999239761052560488102980649519396730034058806145462289743128446431533688698552003099054520127138731004434206101550141926909531079448098672870781749870606796247375968143514226984224454578085697498411246904660775411589324403710372971394247645730962315374430131172966456137946478579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21447605069411578852996599162883366080315637870021278538059733433663764780096687779852426833343040707833230790626387250858597358555313163674942722650520596044200654720363816755598187107431089552113821151438402740463773349469073823929906992650650665854335403161393860856260234238465959384757560003392100238485498672426878128603425726569209185059603304837294375192853942411502526473357712264329456521666874348337551421386823156883519669533016883809687489583422615006462459089810973620088478324940261241140039350376230440416811991256741222579936802141368765716292017818746953650984769523800728497163744198654902341781021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27459993826052415841726154689041106647382106975639742196202435379822605922614220447430407002018231602236640939692560467391684616801535502014611596261619874524522027179525464903746909172673222418685570592930770322238214327533767789982724047083805683772810792600083073527467918421833893516943944064854816150346803117339065181740844086519405519521582462437468489549554315344833295945540091699082057508625676278331361496072712330091367347459465211119975366774105040361977533591072782405947952301717631500610285427829794698089763003742614515263668661114675346731939911054008388871871562713595615733531946753046612374564111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23538633647138487460674880372066973253895280770102831607256242044063396261193994698049538034107250516913887575951576915698968403602545328428941769865673825191586155018950078780779895657141243006273787061418761370374139696377671259985621953133737516444597632275708923793366573356890098906577196503357051848304325571204076047888363645748460674139142946259244969738195229986805151672531880832776789469439872335620048424545782275780954376943516145771275414573871634710581692867417667372074242819209730138248289717536073259987824067215625238331126413108805646799976020223541091043006365422080750545250680569558032658045449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22906357818138826734221396729540935205429072199231190823765800785780224820855086287674323822044948538220593196830319585911631293756915284040148619177096552888686448949284476903615965046796378252210234740355598587649915548548408525119111018540539483970406621129821339854470575806274261225036446306336022876943659898775160774190619101911856691515484044051093942776760663188897560682358222432822685995247020790793747856020693120606165135132583087268168331683193259171982097159363514759770076898098739274137441975830236734283795017982689914270672888723959556407479981253405480538445175988666419052953639586529473054578371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25272141948084865063297493020275436185866187436598166056376221349830504607815089689511920107990431041211440416670787014414592995532001314747384200129482310452799375107757991223255670170330909382775540453571274666974400887133439244314536938795674391517768752265847616497717410159989373629381420040404236407105494799289603120366310700752395228442422830630429642409351781987982758845514679757861454256139338573949882343752977084216688724634737883512587845922446808386281659876987764215137299114252936344914539581822301619634249236881537377683192517232175366522069395429104483157339871227189153719805575122123721304721087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26430747204891034841687946950715713514783784556906000019558357952124030368865967286984527340332542874778315423688444285581720971299374709617101754656259915871602456881955694938473642793292185824437060453546434189705877724765089067736868553201060076185482735127314623848814335318091430039784983358663758615396095540557766717656168571410763580345265990268747705663192065604913081763993978446603703442026849658966425745856541446910222588072619379088293985405699235929725209382181077541403605274633296910387950106423544151352727795135304368182323418894230353350182045339521447880887352249943126487587091319870595572153937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26020783950062675228222981320382435536475474406999952311419881383164853067341503108168872375289181171222299471246498176755415168476931521433088202286785360688127800396557528810646415614821795728245535174209111699054632661397307346882033547009281302971822924679791933496605924781431769591608262806352208754013891317422716885091795916823609677631193839608188456737899557841738711607693152960258263746387612262416453365899261839431194743423744488168759587249947398192351862681734990242286953702068490318159139548375829712068006932093552920531196828919807537599589683800480508570494685852290180877804518464088845822828611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24817812160410297932326790000509594032389690550752552395431972964549507547749813690518516566450129860529049239913481530240720565363421610737390279173737020768171469873924886520165894624224332445386295236213338658700206687919917193430682365714831001801423481886579179596892712033502204577516250950402987288117946758288507021213499644023097838032695200102974872094921266979305686852724219965894945072102974850447903494136924606661145246918222289294075193060001923324642818724562697013474781761622207764872465653869643961057489284038965696074719413967849781296961177473044047737648205563906088593123737290231951221514549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24066690145827641526832873542676151314987186642864474260404674333095090047073986177234531708389380761937984317229013582029244570022717895183966634668672051631648906224330602105344846984801365948841095053294104155971431670498634454524799900238884905274653966775701858444136289989601020727664077773871576358111024353544755890246028222004246831635291899519129266422208015504745629636262693475846470429589542384668323260182480083357692270210008720958249186934497066335710140968601240175520478111283522688697903891936683014966410972209030644592918830300125579719028652950259348307707686023507811119826252379492664873773761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20600823073182200975915029623052995215689475328726297335234034568368625487478456824839491362913916924746467679118128786827548615127541711133565468400757581576571843897320298784020222752754981595478256649522533836520550336484149055807721884637956392441433188088054852290870441532924537730073099664433444857705508219284661611791461619008464215534043470597902810200122629272823688825633366817008463964410257919455718995090261330804346679141002356787083434382722827699595586919670828221672513316618335960552701318347388847680551540605015170622365472973100700845425517326096787325286065592385333199281313007952570763542551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25341214744192841623239073375813565073272633323087349438637533507924481062484306304993075770829836097819185768078308168404868824181093689033131909042392837396378741186386868464606357286441696845747080485058793637913382610755250383889895558819468940129450200358586081074925061765688241572766203883883866960151151147821914392113110463871221436919565492735161056120144575638595562803083007802146415585334146557913413804924555967941331603986105509717357062277021459449134921309541985219776670496206817641507122955693609281429265568977459838163391645934700061189568701939410140788746642605832573424252968186439609058265567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20731150249847415132325723432054015198999726839044761938307104517170582704008330206439263460516537394361738317178609620780632519346556566276672774734488117985319881151170746681748063856780272207726426902467544518086791781908886701727830862834010147456687645974448216872473226290913395796584738252801323012471994607115495750908459690269297344755256607540956443266343163477892111467382817477843908084300490292946082970356128160510691367129577762068931506154044102179127881804094137063212875463725289766430327520066747361441344980731173353082682322531096919176347174324245439333628227250418493414973611127720409055217949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23558297510332474844978327654214052378323101600679980933968281074898144825402602241442646181630090447684823153754636264020169372966167190935017212833807780486094816701176006293359801123400384387292256456043034213754512830508793424142283364626673618987155571505828489100595550734004825591040628452286811559989515159447216261253917379427767689436271365102430143522558447952353151247256331386777369569772052952376487937997910483635612685705902375438739752393717130118645085888740750369275853791179876701492841844268746983427038728060109138408178632951727789996586922147330935276842305950673468810685598106382734402932611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23509023442072324694678801972547350128041507982563290814762296501196501688100391538717336211805190769497059696091709902577867145443678679607806121537721981051567816884957035014197397451908750539254676717163193437127253048073662179309905058212050305200513959351463208911582325819845307784245766748451860255870434147060115991027799533510161797920482123016809669839494151960083464237860408742880628179690111417015294706551400280514231713592209623647856158125739674655348788173297289673272613244439808887276739620398618231981282267583765297118411618452152905025947220544478677899853565900854055989702803297584585196902889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29389915446941797848913339208948377231655431308249968370800270593910575902433051720969889404325266185717637797416157619685735324299252659696683897319314515883942634103625827590559564161847773986611003685568163774999396526607391800672051399333388948412929940677520132449825749153420538823331417193165891878124276604572184273826044174269311602475712518660071621203083657709365307778319569094826130540029859105619983066867242527512308435122855748651335683755529395928045332776130787783977504692884002921584873327484471960646791457150151590408399271607532270275878658074430716510944864598071161005479872569616353704023549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18884152518812324919653395923952037464742805166991353038922504387323665669036936505806539091356879211477243465941515421473126818452128479462545260552544678975412967526931149555897747107902912191740873953772989150865663564299575012445334804975277924409031983868430350470848353098870351489992754213575269040784801253351291336999146705906213052533612131859896876535828098156963571941338168064667814556034787319811852834333715710058698854201857461575335586366223866138899338277775888794881856293806694950659222538919170485333735064782961446341119812379372188000586422083217130003367047181492380586607598530609357153846289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22709407327208493960060277915914858422465942337329757529468105440706330790253229403186996488339052527964302021093413190126219608697725539665542340148127711065013041107372983078035288805674667461244463610881292706440112897339014976418181868896578449198710730698931880670879492665119172563487572020159326992851875892830795561016236687341398822873334841728210319812629438081724696255110547203940825113980147237313526438777928996012015847882882538421613144008392867378111434089436428687577940721508203254999449595269268424853253187396130300780885753153411694463167018786932585434485180888896277817413863053527881729969647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25043418814719053324027204082313869944630486059010848086797158586401408627442890249229984293362889191405165861125878606575582148925015795599530535448263998789807933949209255358685308020910625326384548912105016981403625009403961963225570238816038051387882577231041325717880659012150598103382098850412569993893999001325801822414095648970808698224429098481880933529936574168100576557562071498230805116224106027065850299055218076017326861645800405044819508159322241706610810125857868066497382431757919867873963131734049916982898215541914393809780442739763783722320305998462501747396357503694742721411991957981187707530177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24686279283340285434400617532776585413864911004409226976190816153656341393070477033963492329429191123281395466619224449335519703380486436784758100289333731321431581966163370100070804654653920366606079599584514095059877473292101375266696234525682287843953006451924285722938331609566476889271128228548426879742275738772534503687312958631816517880380368095831444831222198056503258035146008964322741728056209740136526881555789937861633914816201091326556759891269861123768645700751997873950963736961544791373267905118612636593287518349422024180385926253160393382399819746901838180358840209181927275453482210918131439439091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27364354698620358534673139010221111271938252737993428957930670206496419615870060600087786435511118029178523089415573221439484524675546016647077823425760879314026378295670033246219120837770834738932918279122097174269940441331805452503585717592522790284358870471482684173990988037042675036941407203372751262952226053120510134927850423324683433061623828347880901053796147035421041592097899494326496397094057032497600774401433825240049911678745698464289108554610165952083895950113238560032810171257752241762095490129327323352515179388708301037836757456968843704513948115952203977975736460929203363956697854256320435508083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28057262459548440647243835773777240964058742148476116352840300832949330152507604084896278009884403754467335091672911106248241372423277540530024413348865242017660332950831282016283111338775380234057717398965959869106395643181142508764644888993196632069886368686581483993963045853657840758471093349957363848758294753425548139217589918469780598113090286293386117523995261777727916584095339451861925249989843971395773904776575713211105883101483913258099625159120765538539244498092328642938639124324752748183775410201247484790729962511216508890828808570532662494708124116511906675267745004556264965085486754513209048078167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27314210412134246915177203326351134558982538028136298065672924183456440188172582207610694622911638240249514768298720001277335576812364743195559603829571338896320716157566833095624368601608630096332805743510539444359439453880310759283749483800012845812772010349577170952879718503162619715226166643670774997660924586415345001528635087376965503018473122893926704929640494206705513221921004471969929108929121083855309797194436672503733691644075954014265890879657511857202025962915622558908224009269889551257821971763855655191691509046465399371159708711780960266811570001666633079713783566185404607164185690481994123251397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28638849892198993116684048066905763226449187098160476550657030524596549554550557018170471680902707795780388238043013317297338240936210130876008730545654304646669879312367682308362461834193634998639240375413338976501999317659220434765948728352983922382972913024997648638433318974443911819990307393563366622778169764871901816061155514223651576163032644129654078392003721917002113084892032916710407506965234883214198823392692883587850435632013787216019065075208464896753162541553069552056427387672184769971173588090136007187423516516193029109442023256346749340870886408064338506578765085810173420750555262148309228026861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21282639511606373609907906862772746407686071650383217000221111324269751949790147828408707586417124015662096403479711246156428323249646656068033172200697011680397600930417770819060448013194862353683093265696489133637620000590766260912300469787863837208866593120546993904604143404755410587024180468800268913141091551772544206435171672191275082716440732584605982167482793448942809421195317688527003341408285571973625436141255025341286735901750236199906349349285549736815443717398858624136033322134923239696860456017988363683719092118493586046528220228908090645270722358679861567867320402796742827163764541407379550254831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23889536602990281405276559969431421090890267668404706062427476637146727823136764864590998416186776362950456940065803050736651359718832826385467822824179456541407644245024495878639326213517146613265626284578774266356053271565080218874395174311262685059687238941199687143296872599772019767691366112251415955782969609645243033920497338735821519957796183282194445802600421049363933624167768158594034213328578596524583095279470803564424734113456911865211678673885803416177825229129065851520839448997398780119382488935101547971453352303715289399787182175819914053996348238921328135923836585049141696779916883995035716477771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20350481337000893162655305101493543533969718837209509192104989754792456271131656687741605568354006397411395259440397878273281122249688240968927383325099159841580445276288401736739910027037830800005600260674121706163010057400217664661854106315971887271762173455657431647527988844872723715084523601091093720762272024860639789573452414971383409644728254755775309085109616975360633450437916746548063946534761021928419666526745572792980609149141318863548769866441751835651835030709870843608044453943925412988967008862080348751389133207999729237626915645690617350936965448382521321214972442024348480538506420902406036052167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29455868526977296540329824265642718480834333744288681958469285803414486830254801471525206767002313216952256923636312335477141693591161824699181935195679632603968611864449191117753960205494572048300570221839107530327937324344919517669387543931950859563906322522279446271727289084217797360738358075083535290219414226615012645673007551666439102661467797784868137209174404157212502073871044828814664965781248406038020181444471947881080800281463693982290857708734795677456547059404338101174592495615142055876829772208657749375830697900529180082454963618227095045731080384429176893731316838850354804582781664536098121403501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27218612343233078095479563354512855387634003096033804161059540946392948970074301283462512541477082935134842553220922467339799549369567904480284138818436323996256264229005929911297776420033424380130380009858183627483934723016268411892085819343194214542165428296831693869871441060540339756120938133176644069149061968060534230403005262048871336283955516074611098412032274846720134602255406910983437307369514054335821051103030645491655429536844937734238104154797629013679113244587493514036293285171845733164916919347737562698591139259607104017218711710460051006524233971072161582593382142010347469876616011392046951326559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24014494265078934312991647911922933132391774794373304397883160808998116044698566639241676056439694065993610507819941202102574016172862796652141654761450412877589800892029146897849589585536248443800941050715985150661112131530260392629595291520759660350417466398786758543371143763437808431376703225786933521989628823331142192589465729720346272098294003238138515295835572610892915811922700889015380747218569894239356801586077623385153514997408258439795901242791692380421589136287230808558813665329957285656926379220336769185302887530874570679328457609244956092426230789731727238077431824111010884287265371240145363425003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24627659176903510887389476632912995146805265464645057259764799644263601725385912183203605161686855396248547611284273453421156689448646894696195109787562720323244855084999024249929651928359219894056518991684793337225986098366803657865674098413382287781090093973191854977227144542085585185515948714896340723124582798463628863628147595755909858974108338692087729011897678085765203935039626066179339433723527363050591975257560465488438812974994559254093830831644718184354121214473362092209857859915412540716110823530509665110530230166823823693766618179352174959766797182340295097088285527924222026807927942977408774346361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23308757904007954178443209556384758558699904506665082504723127228880280663053411293706276014822413267487569846584251109981492904931946686167441656422578997176800622215976283211150035878269081372004518303094691729137335618142228209098946540871868745776754226411033881302807380307455357104447170916844441463612690214935880369719711525298140860284811601873178524899427715584990380838892653670155549061502057373767573028799262982022264967498192709493626023186015953927031121631965520641180598451836675031016005271566171338678927480368541489702959363083347414258465030187537130586945493552439714601445613383948458121786451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24335222568736124132915805433690596378560998296841041865160929353252234524592099373584169064473031166568878292769209316904829198870514265409571002216997297958650820059179332686118042602535433942457048878967741544813081346064290440016348281996529290312716060657062501650988520922465145062401165039901400889675221044210668725452597597719412345903412072236337216837306477661698394846765639169865077196009556323518399377972299157409915235069771821439302264029028357587637552643662832479563386179489793822611332395831962001800588438509425808669058966423640254820735892746113401040398178392800448425663570073676749798420293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20080273060843679422279514271815130992559157335156203724621567481139342227922528349714727186066139895834582364505312005043154126441254703136209606728961778109378091965946309261982941011484811723852033421651631904861530338598953832931349783482663328094944413864496409166970891422179292068498948239163885391211028367011311772927072553825629641257740523481465387479748894905795787046714325418241022393568566069179793440687409409924590617522139313151599675716876888433148752577407705684311649759402594822712601082571449385319304806202574507117556556739774277939862090517963912852056307127402350158349655877078932456748161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26048917463130735285789619816735560038751274106440373273353951302572841108557645344751518483231191356011512872807523313013841736800805723712359772821876734599617880833486532979671768278397258567062230129187427596467792820831997926914383022061584277458641453677104587422086852235193365303698245224009922338756331393645082808440140927855037105977884803854454333717718960555540687219641291109714989515944505221864815001289323663530484722232982828044614562847055759044940838077011706732721999673973646100442382807150106675941414902025310756373508923781412829466441251694053215450916013562101944586951242688793919493822813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24392411368531101488348673978556592417612126382121011107776252535089363079058624671864726219751892801812990993471607375424110132066097351196924765179376452802742928074701417397899721590320516491209707175853266755242846903940502808945498419470575843383483018756705626732039582796458630641183890960849186976901406470828942547838942977240160233485256094334574479474794347561143052768473829406852951367096275405831939311301763445738920656354244638124024266282048830514046364628339468567767736244721680458518658113946296773996805838706446243980154908244853290197092014328859864358175924376805872656187894687872759302018231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27644550919754068267300758334528738428583132589727493787520700046258617797002973768429788215367198585134923242262076678819793653649243161529507501689353122358240670251128826900826420238598916326481811854515698118270678214553829603211890497174169138578203493732428573678924880012498844753041310692841110192098062283057748448381753326813075457036361089060415723049309619269424266857841554761603599024053451663859596391539444729639371881263208655828383843678913581465123922435192502362995604109618477790203581703689634589135467357072110449601317563797574541116543644983718381993233986565470387753516945329962527940667669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30302474983398751434937816231569659915085859773577960260072049553584012819365900611747900916267569798743331201981396481912106326359053412569645188275775971025925790513312427941861802720046473611732956688559276687897139735701593637681935604825670026460525502834014624026422420701152753295694336515059426369080471009346292620038121239687061925425031954192039855014805507642322558897633965880154597985869490569279926643637101135898625839324851512684546323690670184002765366922374513001469865452335386818703491908028894540435399900509888930585023205433487707728703182573655797661898441598285642921022374142239573996152479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23249961212414572756887158904776953434314154236338635220349829767050698292141060950384518954779481306359629532394755761134924464206603395552418029447234620296432847330966854957093004077394182466314444793933459671881768963367626603642533556026848631638163961023350489020204419420149062580729638909403497808136855162620478872776256711263641726886336398750664368748709837038715685327401289006468675453721117202987783421239009317498264026700805073673636726025290960001979087525146904097309619680822877604961225291421802463129196313221897574979668319876434120076509553339133796966286430967159733506852797001358028700788217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27655026579182429522790945579624925822506818987765576870187624376237193647084642403358833041493614578088549772395052852052557620334620243978951501860759246205001755716342267163108334434258734244222188673756480487911595989446360395587124095973112455793033663063490468991004920432519650500177293901017701074245947903843037870757791213240919087866872313008071848922842641380375953350262938733791526465504755144109431086503904518617976002126352783466862568788254175577086874088838517402693378661224158803990089083549626761212726929738265256774098941486305300446522491767428140067605235797782758874276107032495512472564193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26610815740322079286670133602387187070313696078155631922205011937329896433968279835962262590381215778522694679041624199919691609412996939863455636808118761928674826329201799252259025613951270670484824825308409973546828777332657834939694489945241526481097082991209055021205182517180362932763472216357404948020845978341532874811726756747736018798294980863760156843498303329043624085742806635261793660588204967732820455184237867624547305501470156292223150500237346412730620789036679125950554226438357968909196577968783069263077489703244618057326758581779911072528678925418697151105795275714365187758724913905879785388491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23638678703353063814616445900129073224321347061675261242686648000317653889871641052404979985030662584897714989462534972549713636032638315939640543277760195686001984829247421629387968357872013976880909236174515223732211268594790071260251207635927102429769560422416947867309930125734402066837175715548035123415626369094297662752836018273808325660453416050580910749144075995264741234127170368221774803970044350247073328625722500580372938141093028760531330112345863887175985749991953533771399103132881191529669367587419946313434466557613212876857380892201372902979715642108007064221663167983695809708930696985486069429979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27083079451045376278289783312665641851268235229982977112425915463877721399260819422515173255709906394156750538837910515072471039812996052431239445872571818897900224259620796102107496573801297483586595393504146114234007002957166500160590233498673331776478599022350053401874975583983004590873823185408511891385118181386112947308401628373865569753121499438517742661892751826994514334330168197784524964097616656798056768912055786166168082622565972525810216265980176019537870184690144226389123078582297979816004854613709487462112973371392936239700646149792502131823572687212104729144385835029455812876654274950537243559301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22291436290319905498627650756680334278451327365758045204534799978566296238102073953494706883808511028769827331522226124012242645628604565276322823821497821495876837893937699800504793553323666530567740128328860381745970495961571076873591283841896777202517981119705889815400887717858089428415366757803069682611281140676961565106980011737773711452228891829436663111160952835844349127791089129376216087275832496626547858623287171524317220723511511149231458740419716333009458923939738196711745029717385063001102293371045644243444269556905212857547479031926566324235489499079143339300023834786688452473061518507817502180099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26832756709115778801962182293236996819462674627774227516395801980352981968075278204400775468986098407204415440200267686356323819455471752219034900885006892264436449443678617212681910810576840183888088131191916519071995917427780117860695783640276487010215493587887842280026458735949647843720843240704447684926152326867449168508300560724968059869610446758205518444606967238741216636665814577969316999582361234406814454596257702877245647061925668219922970450264592433605320899484262392231518411017063069914111704915830758001599842920698090433317530988635633383976702304762571613689111331010545504873529611992956492274921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27782075779446168333482557445222437322463933046431511182268337287823201645382120548147461309950245241592876129123284111364415001029610223914473903685578511374769083230553532667207031102040957309246805334588873001072834386519664927784362156960910727442763348375584903138049708774073682660079166932819871410045627748136041289134030204593991236041773608854378148478811943745224169614351723786951304839258682596346302433350506246833111207784644856489061915843488197671371913933746983248309325127999138197819803831174001574822572849288360383299917525199441756832963123112967541358899293395604671914304046923792311365209959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26706015280045264163041851464305282186034588361327852211469332840049560092949804495623485785334468881371252386746461108107299083788071994094843320948914007316731162295740602440092082946486252518322847941541762077001671387935964688067661077817897365587557880461765707169561936592265472721249393227794454887331954110313812557098827970055676643412070093279761338966649195955544483425582487822123045993209095203067436702172343530305878420706641821764732198699400729410333555757800278853885424612046411000061409312912534886722953834548594886172629818250337902910114702545979199317618356429103056960274706690019250840760257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20006852692339070298727690897363938953831351225086817444445047119580357961967876292119904056842962312499753413097589369702838985102681965547377464282751794477736496998071075426915624464371126768432930239709046852970627183624078852579250742698134560710155618249788911502894952080319609062584265962169265631762493925480268918283926793213727472716373516120409125754039372799511261523870330896579746474743462969763943563577605563506389205195508152496409572346106981544280590986219333008879214787012872054049324837490891536486729018602864321249308050677665065882823324652163606534083744799848473954232528575987750920561457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27282819681890753901033898751928520514989446225008786940382370839313573671512238953832058910328335062320924100164986068415258683526966103600754321205218803211258520366431921164380609293277019058041064040574933859975766759644567973751593710397316138246560507236696611080844184509522071270724599269964995082804719504886527480816835975369690088110621444896072907836540321296322992514291744957590725476542554252618331094468266283090490857568339181704196494766770363173091515324460728558927867621568652643128901196232890274320018730764361368175668544413769412597137008606602054966737590821468320935476733314396335639795363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26997603961769449938543875636695372308120126339938668961684501260654087691898099778912152090393551786036717571672743060867464396221621985328965658239767419024032040023462007004650568573473573694176161857668555788220604792292904518124258017156968843550015560933853862438165403507556314555444630786220097466318362231056413417621830947129736056237706826970314374302609159762915490404754325001870555750803932480184816109980228569503417628672597841492864514829629210330899640868070193340432098410453555516821251034007274045136394507084600642120658972769764532362202682389349268561318255450224906593360780473003444189471393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25570930512494650361088293384053467655022140171356190884881056810887237805131687407624478232638449219586806184358845185124247604670258060826710855942681664584955130118065071536051027488813797013784217849364845468488370666144679323642759909163165003275394538241108373483953216917964800970272216027433530355491367120924821792285539330834618191821974718819861669415511417308406927268416381377896378087843887909723098378828248156823633798177827651630126259064927180986837156476110602465131831564999179398588765301165879382981473565255991253006557796845238346049436711543267306192212813236023259406723619170290560866287343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26348294252579015249417621362206482226066055431483207310876927300434186988902592649365299192597775703656630453732958101108112641582526369376911309028108809886818204213782222522374574081668149561786971100322663805555487042453030124251267652205962027510123149995759488953573536943934913085156361170545425304446514348052506058860531644486695353196516322020657481574260170763248088160525948456663434156544037683122869904517721835972444881166178002927665606549718792748938359154444948998527808330131513833739295555789457954486473788462408637400594624863654765982931589427850518015380508439899862992597303061487066207288989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20186253262253563498291385337834416161487847517880272957872491598092974911754230679171388856149060034403114489769919233253609586551546480004968216699500232718247284327707084173881609308273911898870027328302202554980521180648331940618912758895492059389910066387828248027306564073606570039136361977240829891672502919859545823203885801299904623302482467210849448790264971528279741315397631173026818111483491402519713976181513014819557194377001684776335658290415824746276464319901682577558048740722929767854901215348805010407711620723482155229137412320256204724413335585440745351370044915262983184469199869060856370989069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22757403370586215759612514734775417839098671205368872601588187320805429035538876605152957729422072502523230556420573604910120945087051274026170407131164548893882822499788379254721321397832471086413057041501161074562786810409848555731164973055775655165126835407013180236426786873137222854349417603325398767147042359440341120607222184325264435069989378965167544105011403932815815376097859930248731937940735662856214159280307181223717966195853659629464485955202677118566465502546606425925876377261604400269183666228122312471619817525746311433222440328462734049730366714798253013243297092767749832698863460807831421267823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22869481131146871052283495230769227197224841785064194803247622867014019269605117444470780592989038215592217520873304820559908852393008312764070247360648918404774250025510400913866694291970376265675692098009664605290845926550950789315663144550710158819060177656766287362166390332155514492275418077461292001957703500764531683888313423030771174547327457448031440670560420366387646038635497339180758193772858011878010511104868771707751542388628880930368704294651910498917192217498935493808610450052481930993676591121753338216972802200122640345559390869134586551340846105682088757527955348544548918233356843452750516657983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24443871743752346250574544064818869988479876657928996517429011470675187964664196360128592715000491028746405303751144914422222846659538600938807056137723690931732087891977200638479709031612702299268155418782666502395929509092484632883967805305445084274762166324971883458885060005964573312190972504065524835325190389099078163338507230254692382652630025549252794589079245472440923437569646727651625568046622175240509826546357738435253753561913527312835527170821584057646393147283102364113974266235839181291848063710127251437147995767349650728626480666731368111059584799112844876012460391635468940169685027966587203659817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19606481270146845658838038413118455054408079126789805709910475771703365371287414389524881318765882548328435946361131078569091208104442284655579775737976189427427268480818355716153435449146183559076246573116966198905155355904321877804802462743093327219044141228107083550867877421184456293384910376434899482659818852602794233336171684566886175021080471820235477327761415068822264916011128492073131354746028789581693272863097947478168900322272872823979473797541772264902482962473581825678371235013709303556587647320002904047984566704630948969046080927741214514481271401477120461032068507256551776723438378134529208969551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24739003075154140925247740986749354378775632385188631286637077317149410494779465452907898769590263333756871599627389946972838816650257610540232691601070383579408892835910107391685991812198585271809972986484185630544695088988448016079415360104333397872146787887165435211519898620056111169571769847937456721609836329364465630611001015774997207593330599176855244243331561634640561230163471274064538006057253951370528357410100331752214505005231614767792049323329209684562829598102069085122096053656331751849629063688147574910444039333857637818299728284893483089462050931744651038426665811913099377965856214465850930955551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22122082526878118937990392396179736777849398927130756149852168670872721978253328995338918044422243486046705901112078031310705363687091145490698672200414832637054888511514698016475832508549133523337328645476896704428047003329168139568266616332335025825380613426000835270288900229469565007599319023430563600256175265471516129426629560600562192984981437727820926156264088147474522143051256454462935354302820151814251886700813123689179394023464150246194744311975945665555698970166837106597067221806510964776688441095776760146121259949700561315951657271325786085084108150154626383782273545253708177120731445135171943857373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29450258989507448244574815917366031603275073164916846202346050413648581512963946987576837073790372499251157860596854762856033420569130214137264346862414767545960162695221659494926668283433327702619373987444328936086770145699656394767152758514828223981518922292222299263831664680766972601488472850484789315204029686700362582763939094330925526139964748657967060057370549706254957683256860980963305163321089683600637268490039812458333922549196076169747619636534040561017894471599937525751532704689625613425737464576689025035202189652572945365951119486631170113061751977543106314317941771927982314153625807296400310468247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26542614361332284256859443322839768647820387244492447078683454552227397616059641682933927968533332604096409352354666993821595881285081833285806756902816138668866372733684024316804779011969306150558970179433272069688545939902392203463501193494585435064320515016698047976320778003693688411443609198709816343241688786648370516197931512861957075260350559976139767584153487419678315401178969420649158721976088491311050121917534701797773701516202013086840817741583946738407715417571382279031538024042250758666819088421488515327989881539922598986928567672711085489803431208595090263719131527130382174410555247248084505600901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24213338176153159851288208125445089163519683601985067860165775129732827554939540127879734059265815102583938135885993905196006411041589615448179540907964938494302683083392249291686725991625681736083181171861677540578198244806176612976870877835610719391402507592074561095426764762564673919899694274687312555174556195039350196256759086117784178652838230262619245466850646430650985166744333962785221664326705455656252403649720282754846244447548492796306257471928680924456425744329592451387848776983693779746990582590597886392055613003442517623154011148353515117157534736758704871360002727911624380128289916848982608679721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24270176683444725400933490625006093842790314989488027561719674430671890124081936728005801553658940166380406493796702277097106330764309884007553103493776258645599735748787636063426973483208018198501572091236910421078291854253062113086735743146036651549873170748672351809420863523847125425670923571269574649575961171074059279739931736631016944479099973214234439688757350371754448737726840869668397566388631971128035656077042613678079565104801132365786735200773649680981852864758655542054450770949066859394508299002741027602304969135933559269564938993450479175303120314423934268193809064000406515441955499326507000840649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25501560179751712605366980109062096205635144866419098289423808702284033848330439173030971799352623532986492668998784006739974117342333585794440307584066955983287121306140908660427452341558259964547663126002538887697878319889257539796409262815679468984653071496483081201530209723684264256205220541208565107961877165207991184012506598432175617369399305570317133228812020914466571484201294174419065837465271402419105632139524248146878112283875141203245768650066631287440098733908003724878519477423540441922351445473115440279219024463013317816676126301958756574662167277713239681977035374415855161102056040026553629034869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27385544904160695696630084804331444445964434622303116702283733871225236172062083673646492199821469347764396692774072366607568237785603519679330847299582498933505124330772785343178355302253773318137919181897235018970944075997659524922679292825692272045933986718204806458686110226738748146241884614714420422372752623677111073703229170355747390935192053276439124920621001620005914104017123898057429206176880281438517044535529400632807006569469574546233043685483027631283845554236597115106756353376502457873710340097332367682941381196710854778500970272098985723297498573637524748413567237049398630069081807999089572085517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26536787245930446808082460223444865408828370184620678710701871502348394982054136894378008501316045567577571122478850369318487700812887282100159477840687516730380356292424218891304060543179250560255018260837029576580033477372474850141167982837050230395393741768827728664395654141635942469292701237798118747803582575397152946482952387706959766174816602637711399374703822978097148065605321952139555679413545486876882683637349562848101055158806144093633279287212003974469638497432910147692461285020973170530949163140089138036815670485552963409439112983865727234910377960023374206560079801764842305615942387429245689107377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24109764903136287236772503026909207211270071900382262666318744878294279869956630222122418018501062962727081397232506318790605533422344883231040732941516006504002501632038400979355583972570844953232059856350229071297761248881446997023626263879341705891952399904459887472174448365839496751071144130504406233511629772646615630457099169566955861030610504856057245741497334078444790231716151576415522450189592487812593047198538853500587410917592954763988191746773293589268644092130702632029542125155067483735063020005947593105499040096776265435741833172813371002185706138511890251024341088593854919137871544951099823996283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20611536694816562598023259364123177553836165185634429095630460559865254587934263487188737493841028274447821133116800312931934874640090986542651712830505504667425248797791356865386128559169667866485606442026172927775598156801607285491857527114791828430765991429485917336102270242040937418138833605273791619832786842109736860848409818036298342026342200629239112079409951619213493564285917678538099216164568642592030438966414394672302126050345829739735365943692296324597220074291933687084315954227912197123258251941828821719885288626739254546514364548019843369771343499085073268193798715714795082251536191345379151920429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20166644046599377522462943707845171630889659655824355944543479366669136139146772082666840432890751167600163346630428418658222090908592951790592512587617166281086134064190754302511184081002606771177183208307913633958322358056154243379302315076416905046643079821193335409824276721569395007375948013964082823941070207839787428264797544938524230552143816536071723214464302620258262751219541346338528113588791998903431547838957944532538704435090418188442195194204515745602864258896435377882482281681578413763718880927656029814343159582288435888481180218647162173491898255363933468812021419499743615638049925873494356131811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26114657587892596514248598959376652759425404724124085234212831604047269150428964745329773895259915193260019759714513266894480716058974645025626561240499407017354617247487942369188730151156294365645565080701893607094935783606186870085581622027922280479161791384878110021422612569986155012948677674172496422684550968941979504201197882757528023672106107963578534851708389800922087244305418756876393777575706518642223287916583082223251127115253501024273293761245929893688040752727406483528638354506688794692472720346873334404473371262158749126508240385408732111647433965372334051360615599926566466299332508312393976890651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27383298435426718212531977733127164714268825963050114788221692644141727270366127203161624821258663984878637314381316647612244962901135478088669684524481492478509377163896005343930678050961314205768593584604062561704607744558984393782347766806511683680719547085900009407093964525884613751967129277783836708912399215315255144251678313475631388574268082399646447087318559370073307352501518848936801046940694555977701795334717205644890368037854769050512732995601267216311449937720870397935121847569104441261688696430265356700663991894982194792484076449870280243326714668476898486899568051959567658827048577949218220564499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22594587251542672663073731201199102815751469345831437787529766080518671264895488018887409258892048877575156196700510082063839839423464174295103910033539381519259077521006659588164075436629048183218505274875843871354290668647438944129929805573602776470569899495048903970580257528354154742511840516096303306883118420822946829063162826460426152177564986630316607628658283580344628133403162150224646648443807413142213883349729490631512494263089080523112990541273948172891265000593140217866705624515627303483019313691113432013532735713084561063985878027709627121401722905716654029951588729261483157183003011913353875590893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25665205673615151736811568196474265463383945554749169954909507642016644376475433541785935683930552865587146921000842056984402578314822135298664575024142770673199106648159975470780232121345243041968983128516757456737554193088645077484476901488529655683598781275701633313242068015708042144078285787568510706559443733131399850296933219592607642852563802287728167453317853682218751230947763629619635770752548909068738509783453376861877849454241497555498150190021511330600139714254392405124622191058567139183909912522792613025474172349802584396721071141203946613582681100401727971975737035951930572326106285601406876170039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21796991433594561366130393294892353355179268436573907584050223432115457962996456204593936619688161543858283127453599238122763706708419998310662189371784453332570212409249128758375074406594868589028872423090030614247607689543810541065986816126065800585885322044603428231971643910974690391555083566222738704365407534924654841483295692796276815925560531821618920008896818774546921537640475318351567220834380646720071372940793430340240326547490304344784434768773589862052980578175501396573498944593202643076715762168477868186012730801030223224613768685205231293702117633028572077737437438626491529922012397943631172020283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24143764101741809092269691280929332929526533039515958157955388033427777580404751446952472054582427241426116019878655911464939646942242560768351239293740606652647941197804810290457801478591583011615565545350849807051287879016725459717345659860199979899320311169173330914373580164209376501931756264096211285159266158261970588593034618803510391060132985163986778109892179866321568575047321098116734654374083208825754073345590713032537308289751958720866790274266518597332468006134706836731332123864209320958942115065744771348837352854494098313641159372492731199540473221427366851709418578807147038148576366726562645661191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20109964141496656606692353999460556177581499125572089659086025203120124046858057736133508206382784898547821855896811265639212001742803550394840709730407163660515353662513780165835886535979232742630976520568458778936114386322059945511091612328948038689483997402009658429495387785102681505116047163858670907727417839187790026052987964828961450570623536059632214313600544707484560697343151579903047295348660927417952616693036214727955642626151246680790644539650688890154162776083560989276272281614566696606882842874958516960370918359324711253876618149060920196096056993430298317289793706049162882579048485228786184770421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24351130678328871044972329127674154186916584774454587639631029140829363599607952628929604202739324677493495585074019701196994444476385166171454541814558687198094149448651616788238487120175506625866264599074349476083581505950318033071949675452545779385813224840509029509160592847007962687677620000361119633882889436837654275142767141979797179887861609154865260937753751816481455354326899321416814983228380971498992613683135138549414812705563940968070480616132800901183055360925589079513017995411388660108004886377414172402704078116642469897059149255099842032122318672238875677321775474969176584126794278873432950204081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22625439017368880850617224140577986297236401564138844999825833100104638778512432607465323186021490853205105184046406728899043917056736792513256284331512409014066598432002356044397175445081800794048738040571424477176990179732897346442585676416552715021434669256357768611391986364513907837105850707387346057957770561350451055370769695094489942964021256332432966200112765723421222502353461164019431169384505492090145995327383622676915614057787233629624555784529867602413590315946868750760642030034798100322481681618917039363348439460751895343273626663107422996027739311755711963946526028829036916045969784733736194238023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24343959444220855624126028681189940377322147739425101791041322904716800257644479578045618811095485267749029467341827185233549212726709577691085687302468784433818842579186515315738832956655548498392146288834451770152174947428487799533407758595793270098235869890022207698984594164386169908737676176495228987241276586986622034722116564350915907938773445558853410911765142069077940301993123243785022631716795255977591221666905390587686828205524897615621081908278904791276639749837967469224563784283409779385842842477011234772964746438044939094745100000646167733649333758566576889958245671960011203787081173286939584417867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26070373033844054248513371159524674218042872110107324799785116633352444032746115641614062178322739280807996590704669512330548233172041729308939610525539496162945561549930607642268575794608774388289777521115458934365574871702513809938723900261900932418750953752531299776265755878386954895059491445328890129132953598347658667185501091611381718946782617804038694902130995566875094447882742611421962248130021521604300137170074315729708997549974936737173305092884517525776173445090643891476555667211399050438172120505034734010077998326773689912257160487544032675658414176805482824809676774253250561200057636660692408717953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27660716031707689566065337371126245914028790018080436646439582421300006249388746208297852592335081238200377997993574769333675440366608188174936726950062618901411198903652381519480802570535294596642783087196862711530431882645361402930593692715394037041136482537869724478650929203877272342534844065924692961945280837638445522337301790302039640816682649653767031964301129699260943723087857123883471754216324119036737237573380606720160106757717267833089696008680853706499358260352705322680801820315237034198784313997353308897785097063563598423120339953176395269776851429329558158345451157976208873488693704230163819801753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20512686258595574898344911966492532229908381555525407140670394526099259738169967173315093224739062120748572021272178259160111367690334576569398091827368907716246743527879499719438402454760830854225578933999454769457690460621574743340392967175724681584268233245617450642086414123310094081227117277343383385726905164015516225436341397548669338903752358431552971311447574144113798387539746406719351975708381772624781480004673843076882380048748352925385230754933913923313023112200575347698281601776555987440439794130869602319760828933680737023227568441376551888807088994728572377351950302283445819761399989757538052781107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28302451053678883926997900626216422235170198324042845642609996962014044107038176636930682879147971516640033289939455226745726728445914564134738584192211007638380289604918701200948017827283407793062841996230427301042982723963052275466213763593173030484540656785082839386916053858506955716582957425578001093109673423885972624759894406912199768504145066970273797078479946392460148643253483930889188592915289239394341859080938217296386534229802242727057617447873257521983401194613335978197700117363793061331087561435071092227455565840945214778033134013674017106739856421314044898450043099906852811925041630879304721878777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25173046168149594556522092227399960754543164846399613135498716451961033512896889230397035656254924212148379912449930792434529860846674272902958637814518400895008045869175713069917782468224224288258368672036028893262508283531188895513598978610339358408866339932251295543562180237104537120648928203631143414535665684119941508514906460843363406276463554740354350911451589563615172859552526314992620585497158273799401527630456592138845418198788607209381057044035926149778639505157661965091942997938762102336665506370681192194710935400786371460002816754598887763918528872723450865051045389037033892103203929794741297110533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30147227278650837947137156787846457007676325778261998800645599343174498580733696006230987405876485623156071222869482129323152564932918176241238278227720936090011067371977168127572754067408430283961133953125254490028899728412354498053648640909486295842191202531851855451184807573120086361610165438086590199739179182211455695009605695794212037575867623811519600483706703933148069325176557068636763722842891857165151361263437240928913008699305840959556484958045869648215249409178460847015916780867231222712155758753083212676567552792701109144738924878436537533021311693666826642188919129596677442162992308693500340675399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23248367381434337767859459083176733586086121014705003876804330437930077286237825262403440467638165613560312934185750093319444112885770308748488628513160121584911222425287577643390572549742167653845760952489262222682687060392961096741373814206237215651734784252130641789609385362440234537976352926227061011414543926551058425142865758719038291499378801827286089005132693372640239776200372777243983370535740487509336991533143101717878804619410434521288704543843845689739227318034251752487685514739257015174729988607006987936737317748175295978228718442488386921568243719701103580500758163019364005394570138672073285586927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29802563370354552978050976658799696996187692375395748511376443921120929131758800105300368876592353383329257107516938253346260638769759170212022676829087858693387672955708111988915539847901453408600211515154254259821341344246470250696835313462264269082293337048400134693533820316346944192647640379407060680008134538926005301062734282669269167433671418478706471772555199989435157302472796399733497111823869962421007218541939288322379289485799782893230220964006985190901095300543888072463771852645640170454922111761113158970963518001976683109848447549041895510834194519348569046885928682100939564741965327950679101694743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22262777306186421992897475517380511985210396501150382495011086788822931843955466124348461890916803749094671133761833414791688410944053777012472166202665478079691830062067886005840327255022731741380466963836862072144155638433589863736316176836982569501731961312049465124267147242252095446006215657591387617583984807152406181226326756026311253645798899174363854140847273910871682426939646634169869712657753180807642442013670013111631514343968150923717765335493302774206626903898744452415204245695630204818297740678126406526188342206497164242923822091047814543416609798699178390587685464196890426564280333478940411009349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27000832756692962258073119134688882943319843794746704991709449866685916497374561255930091741239057450752914306075603825224908413225080819627753690420844402371922318767699011229137477003203929401843089024728938998329749933021828532382682384864421216927182866997612686470597061917808641346943595766914091954078465315391032769050151067844473788791392835066421628505407765187176214595138158194651554408352658835300007746693852556787026650990591853309062574127477380215578422370921454366614037418038839356866654480528229119815420040268403403774382593152504412136531130809828948196723661191606291796387961196688121828570219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24539187571741642228482438152059508852107790480345957377049458048152576914813045401079821755415478996037644934172599519859963102958515539187923308275789644857595086391078145660335876531160865836040568667420488811234347835500060305104374891542117813073643631717453022800379442530639251004053208883086432186200881843583752171038072938240620971721196755083859319728547650644223348250788466071238956445659885044117016115472235880595140004580440061823414835308293353026853851586273914286194242834539962254416513749426547469974103746669956302911853989556602416259378925451765684840699191762802477793335822180861226921481369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24508082421768908965524220744543395285311949689471361992659953208282445012997779815301521406348641701793457608560674217224568884587562943695206718850221166634048680644571311155546714415519730283154859013397522302553683600477953192325822020412848521606211424104894926899422170559441163308882756009807982485421479134943245157596418287864340306631071788565117756380765892664860520038839581947714631206589389423286047174433995989017728434570163322340389358603316916958482187308796468772561673899845672597417763350986717560639170516343830362753880080609855927564283772540780984796995730133500771910709668428945613040114901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23422837553589992789997902703019849389426540897293242864866274533564748503815041243623841722841020026964560992368830691303211816225029678823059268250361339009326442994758680748600551660530130735274009019302439018432129177536135951048565110136824544739740263176916675490601536399980080643105960912545195715340103968742497135578020045652751482972698768261809446491775859350151852303393320346195257085582546720630577542204308647833797739622819871143968591469197224660140524346283320178607138541967648179497270387697426135596126755313179972463878460495305779352327689290919765878838805053084380232053225550318714630945017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23058912620766759399161993370009072496508207978029195368177161250584059596129200530298803289619330387983040393516287768629977125298219662994677135555343526449422801681816535022985470674941507747156007479026120453600370665920198540235678860280269047295783733563780325915648928439813842302618707445654282635058028638602661379782070775034283418668484547571441886837217851908372391246195864479791381821438435727021894995592382190264724611629738408779687109338749200840963166222513518284031019038191226480526802153053729960967694024751676587109800502380252012432552537396033808711843631499177773078741900382239075599856197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23169478398933238755503902068803790657181473029691067501861435636935002974805632800926561745125665035608024024154462426384240125348918395860600840240996014769063291782436773404707763632573358047013444074396020379244127168824664565240385200438916679684726056478059905644998074237832892086802573777049167160173712668293785176504599675140302126094305911067918705419186087156149943452134544206480322422378811334190752778715537031628020092775299684674971695086160816580782715163770552438276533329037253978665338745459105782289300710304709872855918099613171492090546723849929992609038927073370807682037400141179722270705897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20204035150262003725034852994658618172357789285680698793828001280303720617377447570900145133457490674181317614270240681554430751258477612678781588259719918136212716007696812655809149104195204472276482523915254999510800621393999413976462106390937401211656581192604990865650868924993438979993409662895714361033773643606550288920192909191609095948915963845573372456752225185256880112774100604410483322464004592593952910905361256791626604932857589581415242734670287580202491179083457662557858213947560224751997701067184639773764165750987182607038080134842477119096011568483421556265118850259840824925195267561227061980231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23642521166698250940050791178255394421869591517496492951334940125440012800719095739485697668976898470434078607583491605648277333463525233227838466246345033921665391539828498637251463110484482970832165056239784567634512882483498015604759215928383565118307338320384279443089972060537380705339960008185954402167625804924944006663222477473661258781278431836173938655693731433582060567419661893974588167906682467376967208525402863598255637796612921765464698474151857927109523345583866240514787867746521411596773584886094574422987204197058710351586254012532445719675041889004459092385680838233355031410806596319450282482239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25642136775491222042396278977445301292635658045916257599762169898633674865291310740463614506487627704913815617490641281406348132130645973626862394971409261806040606802382476368471268868196511146522375386340347398113445359779077610274917194984923189081110326107776166890726001489723712246859619316059781476788779916512737762438646732918613763876733342204678432836004135963920302194522144183855766789733060149551783172184940890767980710131664694982263378194743573907243256051374862983035168384860765252189593818602337371089600724240682386815592609725166095179403947743632271182729729042632480898065657380461773246349191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23463836215782892046191759967840480584175806705727505157576155774755515892432558877793060073283695363235124215168153989423467668564287460919011352585369100745041537990978425856852976278001950040731813661690761402987634641183596035434329302494664973891428741546003204400540024869620628482533351711865897969572343684897482507800360035826469227038920775369677081931142315915520305562863201415702899491198723684394992156534391232926215619468323269160799796324523891156242010042164651986524905383638931117766427826243247188481377175689424546864251413693091254430476257006691943821385552457700400257399779573435580340253381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26825008793555286831583474149436226211039427556929814149824305453825267324366746137151569425369085558750736800981319849502469516411049434838474269205225271809693165016094930621079498971595751734106565321854566311789117503704701028792392600739408142186629283885535724277450452254065716346369784742472995752429428372753262780299952759639513619044997678370073652744558678305713148659129714727085631460255954416844907042599921127421934515315698827318975123682215115278972073046516749966904037649068766938981361964183557440456100411655008646295125193510859240857461730541376829578587551342850157272298694594148062940386379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21043932688501830893284226226877583843862647376583992652328215012050455712617166882206853301659647006018738351506879108714251304727020328743503591335529598182817229929153175174910240921998688947004398500702644500673250295263193064076684827432846145079725334577474206549530107261966915373940284674505158674357171818504529086260716465651764934937302926198074778014049287334831934091649623086827851286794438691633013170848381063554635662222722280423705028919028668299540211642432067927185838389465081598132726330210520526176234952832690757983569158636178877078801099650087286215254197186996003312623872443845842389326293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22029505906039601221992140058111510987329425196335413066760009880302990684729582012289209638594796379408093002624307864466558883837287297602814127123705263993567623659908058173387053118207077887290623781766023059801295292672652152562956507630554823258586198977737392358908824330272624100265236171567712981397641101744616990681230888109527337749068623786301053543877356217291562234606614127235650655152594937532348980291630401202542190080761547274495320745349565844479492750500675090935960839720945519171039096261852423819498581664721805765590463170521381122188273326533165620355577603513193340902522342312345441259199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27230008319335259984565242505182325558538276524871296883684368165545895528981509088154512581737468820110551628885116362044509619886640865363232577425035888072714348449373092720086070389334516945451861247660917199551673058291448311754112841655580806896671111290926540988493884053927320948209427750648110554432521610814600636035178856840592799781370916264072243034930761429575083702447569843651461833322879248944905123318559289194070695005229958633224370344504489893079301578317100376805644548568478369175419006837722945718379709617769504520038830866009172599170967349141145755428441738636369200407065897206725108044901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26843031066756101757720143271492261327449999964648213845839934396966939643415677269505608061658779198205356164139004551899264438006869481770403320021358284504701154168965547582048457016079623623984299121937534469774664091818572708436726804668967132471427093064599089241093298987838422338884910782289973234860642903022838647478987623017398683908286230997257329653694030295072705360811320854689003336097492613808896629711413927944694842852231747265197881449082326360009731062388291531445406554049634165012079754372429568797767123896468593300423558217407344805296761524786854829631742298322532649755820389935281212319971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24396103447511166115022924678325397559140868043271108592591536977437720870982071683861299488272669006396732593322915709529299666959278598581835020922698711464982479963136600427945806649305363470055790990665078157492332083655915618855146540630052528145170530825358994458805116827306613382308830714824468890481693178596857216435521241068605565372815919429463954601785414213721306522344067676713087671602600423618283698761693571807102507570277781143231730658504917486575579514014138190970602849854241484520800964253745753101105303519316445461806982952643083237657446501395836327962810247169713953987979174478964536013431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30359080605101974323543293242287404472257925483253099342296844952847112194765391995601440708987596095895159813584474444824986748094166929854440354300170337229398135558569866997245223969219087441974739822402607267658703587487138738981130564439660937025430705973043647106814509455862527677990284947528014706229293225655291962978267733085853891290411025663032590124131165590612274215054618269853460798007643980510295298227741808513976672796319590017067412913276804006068627488775691501479940361646852932511023654655118013946635062521994184457046115837782790930899255586946252669840910221560879541285486517969724754780173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20642725339182125438887618300147064199070053888573743450706640545428784173016927429312848229739144642022383955428672223021732829300961162530192282087783913157026151313642365976189621083418413596347161914245597152939262308009766057509284346621192011541996502911559737890677819073993591499179691421551400303808964376220403127403542494596350763478879181012115448859721029834932188251684318342476417619482373520859465842901305686450566370435898172563987843744252073973613541490581609045845447810881734982640883860464213131587646430903419528303412592643044040406805973810941937569919739547124953136261401047470650135479691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23926306860021133326141660274516730868873260765217269348503553248359128107311861567657201779799614225315174441907254034310244889057460077200314474001862600510568677997280516352157600761365936098273128222513853400757176616860972858223081265881462605203751974165449857610830229026488894428677209413789022282073551043520845852317114076627335837219877938805129691281037267933416949594559588644570186194357308058693491047275743858240631529149487305735932429995512983614688152329849741484570001863457963997021395228159256505269124579857859703324980631923612162233478579593182363856048534210792322297803764336898720408781667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26044154148367142797662255429747877268442580423478220102324069345809817615564896463602762885129131753290444356086227343887762845787096490606693969969409065578084615881939728354533311462942329466027103828736943523518512647925829569704576513565645554120258019007689555778028837150029134047362928714026187458323483584797663037951282415624954072089426469304844457094866413232964415161537942665955422482892808661880209605075605915375980171942948364524488631667054355608429669110918817475339248434429999633450046219475708347035135647244423742575093290549793774390713474612364137494851015004528014516206047045108930905927859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26000634043537896445554359272816011999873127777681852560036407494060097435980471328018982044515307536304088314261239047116896821881752079351473828643970391872090620919662975404385583041946204737319181230711380281570825392191693652140429567601286894030252462029146599593329600808937389793918043051862720998707305782332551391936448723726592953658946727750651803580515609156566867207440824058309829141494922169042883787002669446900284647271900891839933273250611978297460176287559816537061170436011170213440522357495271624806857198328573271463790754914427142208600856669889624059322161819106993554197137716448854143444553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27720411534300113454388803206223614870809566225530559331903650214573157902672249082082577234249303144971202134340326997725524999287835713574028557065790515363069379610606308954724719574230273840871221084526406603808580911250255016573500851332454063151740448304588222539128616309782896357662561951655838458759471145634502676569161365870494314954211676864809213261721813935028780940755249458374425205961779098209786943090599364354074948705175815560766116091792657636867394289878376541543321621248623788570481108694782021815279493342844987567721247397189188839302220035774487372242571937595715885248125194910186666006263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28455939555140964191208040091410210241796479828457237358078357746463017782999752301589872900284789238322397335565692068997075989928286988573438766736930533262961543837888682190824442038319390164580145390964069076880257472674061480767841228923260791936317323056035756999126047009001945042397002522765863032234602137448578460931572007660456395852815393813877881033751092934725947465352963439019239783089483712941211990762417371967816639060786272109578363863503486710206783329022535578248506639109191064870473566892947027734909344229976335764883483503492995534037922130409077255990292295683661385519077143436839424614139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24228199807230205261557022596867314427952963661945256633606373349905307711535022884794150564601005929812224869711444589147099476353522035421268767190188348468276147401311695329062578050767035812890581951503859394981139556256932423805719559618165693124520754616257052450419515567199239803082378626943309461268078282038458755174497607786553487077413822590803515224923998994790381634274384998235224191279739316893121904996988498042070825846821040758553068467513308299764209993257010037995081676943093241252749854802164519745384916845197091798834158409184794216589369622391045530310556137228960878894072393491667930130943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30861221262478000608893570915664379102243838379045479451720332289837571063003583879076057583624075223822836841182168595979093343508660002938105828074543088960008858933715288412213548125888585013302377227741094781932056787501428241450492948262739628337724017050630205070542312414763442317550945227182059643885381007098919547520903180863745085186246638480423725309346194764543030547300117659777021593010824461715540690850737611450298280049886764585784027671566641382037167740572622873515499046055930844788617943210362117912318118347081791898945074752148781470502480167192329515086362527139882014974188468073885276294803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20121598860586229892941290318109565213329571756956595292162457367325799626496393726047533867970342818078603548469263383319222305399067134369359903368097464794721426711227195822205002930140442514577607212036279279003813430507104795310228516559178535347244525268215472238415369968792472091734328714566705255643142058355101832031200253613041874331149671153440930164873692033029963072097844400255867744080678389320844448591572499505789762631882741433380329613988435442514233852934525668729843885504361887760435615882055571893626876392682618987735687809904272926620769727936202516098859891946310722684750874179269821929441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27926497457549637988166397282634208954875936249689205222083870346017458618768436717897482197486024902357803993667556055713604954439036676564636514007420004424787584577968487584336963243714276731653331265188719548147407949714037756716325398937386143717612994036713126529168625503294184469211576509072712764706646613399238843877127450517342372797985543992212018528083279669498808423646140285877200568374334483267027709158849880927811336058781407871188899597341073784391475506284536192245840631366332293900178558249925385940599795710681781092640719363362990005595758562025513661124168279682690425822371690430653963151407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22445353947697421296168242752334313531810101414974549522755648165626883910064453768889096059164637601592041852709560960104652516514665300518688206546555088572723654106253010829283153748681550559910170766308220845080714873130131941875727953242596233421849554226126930314026504487214979254149256044118541855310470447536341338500197279714271055344976205049380923919722732054257295871435121905403012603914401296466883314584108294444075268864852793056173004314386744009731844655390772771258732729404074842865262313443944698476542314643760431118745727328015723704874899263802066655713062438031494559316119474414259674522263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22537803297587334235634218137315199042207441371201163397769818010336353801655692150841504177970415091596516332256631552171734497463125227072324263163061691959423386004779200559149830479001887756428441189660805182059521749684259073269133150847969940721924427063920120852356284818921575470125401906351687432107978843226489608426252834672460287444896674342029348693555138700968501694887418941895023228109983661698400497288397409069756396749637116556598927685196730809452863144431451676044338182997487493492460907231719430622324726164967540382825358968324420690347845049085881258449468628471859641512377391516861802590371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22427837026932174731888072317423599477092737570976768534615027798085541617647681963864393370945146193453469107121877026989923070638501060862077108737923917113014936469731979151247446008276574353834137405177669668784614119314567328877708898032352853294047073668619183670402284712086599211976174294198605488928803490848645669329740676425532789999559841155051765285522072707117268072066529071718531369341669756443819046098648946512217789594136574982233381092193075095205228425584401010789463276823096617065771318861692354840957774885788817046203751444301728825115560005323206123083038348583950861457337746951630992361143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25608573368881539770958975637295836455770321917741332968692446349515909322042282457240031364390429686697698406463308567271035752541424371301363443218768380503027634789381924154566718354356877954708188836678792964255143699395708651693215412273965165172870964289946866502061280930191185060588775845672839316157103412252864838979362913330856565075292001997167505211248543710385398769101616239677085676890432103943102514623674003967366016542159779025866537702451858664513252783816277139727305337497014475314128689356962624820303437611302395453709297833717789715600947000752333685699049033510004252175547381814141543148907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22490749074696826407337092092683472270944363969512674582704187293504283720307022898980996536811134335690731672979257483132631809377928980784626024805872297824367786384798036398686613287684343549535247754116911238694272249682757042015973356078153057339169984278208090066782429580653301727839746192710946739177116099113333710326708574146620929936934669586066841893988896204649778937455330374447816101034176250903049980868078618815595283890135353824652065373367075440531030881254343969176734068964757562796050822012613637691112901586515920090279370846672370415773733181093540894961734845845691589953936294783929631793401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24832626454675361700480638721976273656697322806106010710714024884542508061510456448820569625448555067628063550574790576912219730960464454333204768651783115046600780877680389227603426498253910193005370638578303157693233518393803302707123497720009792928791507173773794028646052621549210245438688212958037638067878690261068489624078086404477627334802117175267991294988213606696057415377390588820028806586977178710740845280620929025853224320529827492438268660527780005797205354884144107980708508291359432979916618671402313625206561847260391619793126090958899083634260474855905819975706650962472102487725305372169534547519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25800898157722755673742228943113467152025377197661580730924083150141538649185053341984669164945177264414430580963868556179719227526969556294719014723255472419078565089007308111593324189806681575936744310008474379645882210694317650045080399173910049347945933645864055018212701992615954765073945243214376700782695520098414832756792590225269947501282760291071897166310279314306521912452379965576830888528266708625425976899736358377324493561331098043217272311951946272271962486734971776828515234661619821850503117560840775546662807659724351482069416400591735231485978855060580908533195718971542743601558263765988154108183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24863574880323570544704946360983012759674908524999914394359258243002804321339982282348326042218458140763551077143232472658048829376200058859051449572977168149060743022038004318026984259805572862336952333783817357967612080431122319419795666709610364523224459347222279427604295752413570537847214557728343043287963508917176090123693084095013453158861702529201064033756030148927601871517465798314412932204992175252647266340815769090365965101843284917534170631991759779913742127079269508624138857485013399415593810670664473941306721564926179137745904693331033611744792277795105435284063871033536095584011209781155560258753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19030970377471750525426240292521227288432974276284836546875465427248129708812621286998090194191948817896791976445586982936680125492827045253309586670073903478904116675528287844662648247767164606098404611064040671480594317012846257570806391454619660234106253106564250366369307468559785042032776064453419310976165332885189277651919360416421608012789241590956208263359192071517479003425858800460119918496516074520205651295935181099472225119116967873342961119367627880810441025696903252527834507971432557628512504881275036415231412308845673829559548454207766746085371600436926565758506110977772124826199576819411296547179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25564834517031808088830804795723861295601098353624160587348325584590096998549401532278544499908883694929471148546112063719526294582791891018184771766214855837182043135181746833095891793161145902851650956654716375181404170850310749372915603891005637175325111239250044450418180656290722671879088293718900998008690005877983899766724581033835196369750708760246852022653786603606389187160857969559316738356674620689316880321450043531854700031011773155954671291189444234741796810092729026582507977944008110746036612913603841399525296166907800545577398909022421669043831478377579493465483265315448093108960558155851531784561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22988133253764646451694936472166304075997354820055975198808727719094276201078375982892654965917394729823724717211073081519498468596043807170397498943270376708122359571916214596932319644027985580535112108855591816831824482126138839304690313687620412783289850306678107019549490026096509883749379810743323004530507496044100278618262983190871556252386625723367891601468210953728568044354486626138538820867207513590078412430363243624239050852741553848274484662444225115960070867435360379612142335793398907483577208300605654901394219542764436331754377442735950996359263936488951501149885412261887247467752700904849871108893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25020192344101285349054866995995047788212827726108920934976276859501430274546871899589464456670323231596273703438455723438201485307269201352931821392677956269112204081562742763597200606895030527421720724073724605752905115044154404022375652987674142440746811199757504689074282308912463308350795903411665247739057376708111143487755805397386627331686075108202998824255721410929688355291173062170897773859629893661355709529956615036491149515701188252547864163947198728632850004711856776306269477278543686231548216274678691297933241273178031044675305335788801650292371060463343647806670812738625738485545430121841156752389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21142464851322591402297961649138565933747320225058999065991743491336184470405552082366230501809074002077399532036537675671717031695996292991596007629869646959693810527966530631130867074679999903129579209773890640561662130790023760423034080838054497473840160290771217575765345068382311572269979030205704417094169712812968864398874187893907848307706936099026822504038921158278739841265643757102058508296557384541069157977289740215093611591732052329694771335558660800809483865054158378339171169502136714155934960518014135675193276572080104191174587792454274405450613600875199745156119479945570657902870810306438043253661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27094390385554140386912714708432375480458026402345486259697056570477510756764071984155703012542003973037472321104007119361695076175153437791887037194806735142551908706730264981539836976288663545045982501191689925826420824767174002029088850942490774106364226511291301990601831444808233818736329400056960831472486306334066616822540058628682237323680322152091402872947541441125238403522601836513968293059186547697195930391265539960865875283049961185448283507467633338447173623813397703500164655628574410317478250028758761019370915093570145430529941248847813262621860491465464844543401428364318745016020633337631759300359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27663179533978710973893780157807930351170914884833202642025039336523437142824553355223898551878915599086051329494795618027569420629221824615437580333933945523901179028031971013706038760343512665617745143790030118625639858032322037811720771287709326070873933472710818537917350736805681844998124582691883236430357358876761741350718900637056398882904510388080217521352759839433498781473484287649658133687973216684000323212183387645002052370590423854147036721829287181640315491922190895891085928903859725943072982916182549066012235474813675521048916420781165854592069613158385451128037362042437820438916426230872778207441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22984109476096498756525732229625039634030537305713152930528387144749238836384416139386759320390956965114206394726777324827310506458810394512683103367522799687419374882067364685780061552639851386531609273793727301395508387352714873363810570229501819597998522533778217272084989312031725194741945699038407873784127458608111606089883750332438959816594231556994571802901329584561004918482383725618346324216109670048717266982727393489356772737071495744234715513642735490151802957467869226730075402451626376806880175294981952467655999474225950869712465718154436149532973516100790581671318478653566489344636810324499242700907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25282447429293853426945657978096057559408635599035870263422710977708968911101884745470718097808735337814646722864273842504996673446405079099633882794886425762406971911061271600767224474514417867911388264738121301989958538663697722504463797327263519616435584065316641447532551100382944840725389416009975303950083895308516438136850198737648530693955843701683227187698718957693552756254085367593590140376551573829112810577480928256835975651459526950539828298603958595512933234084394442952877122448034000769811877252975349035580931197274548977159910100400366370045822083226880012200201742701611337100318455240920209181879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27135100918083025147218794303264582754261668249580286906323161649168416577202047133972917700190930000950091010440123254786717162187884671332641673106904913390989190176799887743998023501715179363648661980794092599897696486231350600220965180265501143631879915764934105553918150708875009836890242604518994507385941275098447746602100904017828130946133684418947095261818108946702766859037085828625384519670031511042837259079880334866766871417813506630050072476111826806597796491156375933164785430215143516408544503728517473132466671263983288146191140630180114781776669417536928236363007562547746903370045652713895827061383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26917669139127526162674621722298456320182075929363284907270881698979564240906427102506955868383273518301518117402360258258429230609370600565093241308197708189770275207984678738092879744013619346863137192360157715441989197240301041192471770536573979315216970870634599535868655409556554236126067105831157772173196799230006358765514285913790682444634669945719731099511731514550274285148647125728841427849613037927895020677433070045629327974431229021012524949987451889910690852113752491077803648596953584599038886423515056584680376620513496459169915078844865165115467087055960793235667167606043462544835835311577264198589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22222266707788971927148189649537956255018092323544064208922887719883526312886075664645048311355626169744563321784888997193285281634318866174974548627543977107419904957743869745261732810476583337333110009405367894958173030477973665925712706729914387392108658443445002158124893543169322898257336462785608447479819689284687690073144342428753270417045034879943939499224538893492866266242444938991708236959814105456618336407422044569931411911880717378792194303110861861250560676955375826139831077304553985839766053714308296775738351439351946672781077158398996281335622290647639520829370347234203838104107225939929078607497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29429180604090049310926150859854613350838069129932775333926551563650122021226536756270329120275408549661520765827335713462028187425925513975325317878509555191215155257335654371116719226579354439949815097185906022279658067800923189708721674991393910940827562922486156916063667860065062737271731981303090208417243191355233858105253115059634973802206701026899983501405632016180717728021155422433682460510258840743711355447483667079832081901268299803117611113872472254875549450117454840966025188527823757116278154590452059278242023550667314512495859402481424736663866629651971263366543060349475798096257593020105025329717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21834578406357077064083222077776981347320515653045442973687016578248815028731959333062320991544133178722450570811096419448128241348875726133394437048600405301512587580610825146261006340873602362303001462418370997381016364490731393637665224799216891032394371620467748576769839616250613889368786831179816786272787816274356580414748201203860856645908470980950658705985689142986113136739503156632055085403352251635926528443455728972562839998933809514767742615532376092744153931082507573422253267164836691223916259629752103862112039507207569629356486070780247809179434930651559567955645671113944772881265406390167774042063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23585935921437904756249387242054806684834402760462359816020937710134856008674702440372883046808990306794428112457336265097822292339847503724060827185401573571494954204544080731397421783265914856955090090790132331300474664926162311410112650430411462768693571592731947498836961587569026683419748004842161853050124854628412217788554699399247136269904959089200214786998971820546764162334929814011871958867852428085436177764772318353009056838318844044616648087991108698126996920574720598160308039922450454937329114981858896170105589574264745454936581997195769794287915207047056120577528887294654195814958743391687087265101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21108955375532860835188024100047290868504256840600681842711920538853839241703398142888648065585258244439851361460190810772981891417379565984117958757907054878086820556798995915865534805116760275268424813658479979387713834595255657064148742175491314042484559629571574861327315602539248049594028621342370224397514674568704552415297509120142868282116775695685899146594354028875086960816690007806783606006948378657804426269720766385072170777307239534372765360811398991630481074410472901092667129485983833204261213105960574087638199716908346119995176334482062924876008042553438639971494222210741616910874925378860822223561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30524337711290495217646711172546472392619945769897813887592138201012122763097610501146828526398854981707498752612367087468016228185231167157001669193324813130082093318273224566051714798750653356287893162502778410463674174838189056826343880111150871658108286931417699393069777148267512650836916321067375552575573182430503871067367778710286813417687555050445612497808328846444270591570991988446785241075067973605566724842205678813385957779178218126706282587893116334389990426730452983585722708104540417398279288934244099381650689404747476999447293458593010254355085459577347364795207195739091048465452901241999300379003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25668258053645452586070559662309210936718362159672874602851493403442769098558589669154425466207537847444754535553228964016021012085425870655421877015161408595424959364537273977004694220043254249090732086932048599122964170466209978791054618072357477709899398056458490826707631988556246419895604458807161506643519093991017326626962228178172511297132042634102266563104683421428788172796404366156899509573787632887870010015834179036615507935827427217662335919646971956531890282323408697122824368683940188624197739397576966816184166270266733892322042561733307382872653171922553340693095099920587676771357346635345536757587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19489028196534524849275234060962472487060818628712003822037954005897359063280998565007826814474315010453838663829323996234800416237211968140446103639037268674055348709485966223600211879967100978436089808848656418256391613276254657906875208976884545778262889055598477608888456144802337616668725242448059159065772791417816542839389889702738805154662467645283586575968861671957338012044132668982278337363182940873823494338373241793999834174948752026731971841623159458018495983464425314260425366070300287764257910849149950700077055873309197339572789709944998503060025648993891986321244135975545136149155376282671375928789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20481567012330365303596416167040236469279159586765741449451223408692995768265042126794141217584183343080075320932055655584128170284584768767264281989790790821230499571559872366622605916060063502023264099458343080717492497965302501039516884889663820971570795927939467707160852915276257466680563306683007203164216392247566817998919985403047961339398560119585516144963833476267577564490384556962015972031124484283875286381568139092946312910667519024075210589381531010305448161395253077411359482019620223849276127047383550678113640034771960849679827418146398490165717363322630480332443103714259879767724906425270070888397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22632111867955268361032122937097348537892382159503773469919168753597168858690659750672844804652625883068215011017975218400437653606786067071199960615284126712163503794969039513730318868268898204460936047252302739725844757128080289604713079431896741818230830391613570603748587194353597215377961149104261997119345736654008573913636087103903170607146257821419041175889937046850890831471444261165947138333175898353464821626455331776095573096174680259195937345507180277123163371010762099531704262509417759486143282971311789046768298108917967755388153933471504465002861730396864460253983826013470261869005959686398677833457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26397786718090550403917817000987771307759749124100736403007028764685982986894124402451556949616334614787939486634735331215170955718278762070805149764531630358607482138140580190886357993373552074207981790150309131169970628053972089057869744164981742194200249729307189656571500354835563759917056231685160726841404152941023626700782985153100162846451371714763393315733561716875375817980519846340551721007227724059878400162639279536656906709207974616974392831416021581294392651408867907987044679260423206250135610712238162233502373801368280027176651639104173273237012937547466920933272350534909052357440670958240483661089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23641359455589097222444833890825092352702684541056829428483909162888933029105751522534059020553847482895478182781938470530540280734185926196362210324385959744601940897272543080737663991689549408330565448974626300747460148649153635978161191580195340930870750281347725734532887704063124957199138826463146478533752157031959293503773167035921472436071132070753897319215654190982315155114860458568481959774536491229084022299596188907996343929849293916314991348305636766831646638782903635100450948287860201677447830990791530535788365471283146543073327014417588921791610548470515428876149579547771186029091346790938461003741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23183413627231517292330651080066351024717877050005915532382314439221330073216885976763097297887445471648269150516289619499350841790524319226991556197950052527706434853274039064706537337711486459661304051670207536423952149989047824789921375814733513922796580166332899837255060672835485051174047493051106173165728012436254429878044136095690899900479024731086721801473728807291341663386482298657321250255346211485412573294252403359577540720590930836940476215809288698585220087084430700021328730484736660881112983092121526929343661129563959484705069456645787296169061556704989061813998804655980649060776927374835984079393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27286308279619033954548173536646401567588736226787518756862790882119280367903179923042563664023378671317160379065185986059102465814754823572267103010311817521252575741785246272569326830987663542360340475460170788301206276724086129343864937629455174324100613423949473265196623602349885600183971597344049487744450068869995589837036389517315469928706434932129712355706810498345065458052470955028073050541112785985115439104064014302939926640625582292085496734120334569355314044953455456534586607483245842061035199866143842697019290245470545965584907913776490069695013604315980875994477962370853730619867904549509552571313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23712768101581229783563130030849327811301356500022698047011013063006652392443639282803327465183354290188753477685298571495462144348137953454817582753944334326336219288198117217630374994001604409389941967726143194897633347654084359549791670311566909299294684102752229440175154610062261612714133512572299096472337382550198781456246006446631160102725513005136211097314219907207260408103271565371569042642519028736143527569668465963115942162769963329021351940550327051653597848507636102108638713781607883710283763050177102025680698930055203382161135439798783257481384890440826745512158926382937508133628836389666641053347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23481022192984955429019711371796694320525702037154397622713992978807092147600018745644365401048639553570191455388507551641315571283730848236447622960528886976616180208437827543445053178164540106377565589593532412344095972676704085338313446423748069399496400586694286707109173918658409071113238968446488826887656755141358484633138814524374476939329465125322335458848858924711245044691787450243215306731848668010468048369005884765978484329634706907733992161154501630791697580501722960849957383450739017684638213464707165866207253045315886548947530476613854781558449094168401671208525222909070041776829348982539519994607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21585734239071558998479273446353170409526409148821173128675459563544553227107533060924886364219996020027746841963375375389457366569420588833901742515024200305403711067183754027495417998760324440253503866024295466075102596017391577504861508641036858977459841663651938313322614238455195264490324330070812501330619898441869617655386620935974870357661537596728695231601235718346098107083609106582317603602053053450420826507892859726979055800598666585232833525113402167395443933920773641371754276602380385166000293579990118757893422249333025810657823804739597460864706787974282135658760218424935567145608286161817876623009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27821515195480938773666290605440430960906761807470419725648351253748699694335620610462055860807263691772469260397402046898114988613140820511980050951213376057989421685037589015733246863238590918430887408984509149823338156968943974541757076595547492393544694898482522761040061428330314122658806020765999899906501793993927427694963565322214267442934852841490511290800629498596317844000097541701396998096773510500792919694515805892709893983566719657738692308378979249146189476907319074087653139931168732922183519895687975504786660482819954369670676100107000218456509409477973130717715858733424008150832757035746499878641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19721744893979881974587265333480515098368991732466855796934679648799391408663908183033196004658465276776960365742951615232107515782973273040128422609534402372961621838299872122817701781424592037615889191363304410913341665667791422543199855919842822782761754269814418431865370571776115960848486829276519448681819797203964822542121173882380531850486848555320187502222878538589871597311674393309533042160015527709794379050357185963668385230583845556514403040158843367459264039462416371566556612071821937256352690050299816355213060364480858200787397975854471019585231090655466663542816604800442777830883786552479114003113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20391309861494310842011060017457361428942357339544652060832449425813301234735556553247715003560158897599384179688228505259447819631294196217376070589499243893387415317524800255122383098436237324408400094700422497147494937262148943380672611983902051954940697112949533392334921845436434773453252024436591747310005055041931114051660679819413039995317982303622731617364240809618443459846284238149648522762206799863979758827155188700197307611610049364760996759228127288020143057655467156838802164483074887894256627208955040343925023201285227827708509008591151922417312794265839969459791777497699008515141982961191543679071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23178131703773512133896895389617172397024419825303786034576039157710738489638210787646922709066955929132868768897106818395076016905764037685698254918558582079530130464941322094448156028260603448471910717935015768234051361060820760607118996177210548050028220628677460885067701941251144402676679401369389513557202064588141861721700683528502422380611280803536726440588576632202831898882578087990334741870408039516205584953627159720836070979695810950020918565321573682068770624614310838320851020348416113818025607568999869844478404649684554616878259047930421806245214911189383224818243597535687734416072553219481850818709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22280967281674271380567565647086428634990712587512101094277965558511165955638902003587000846931096752956552008038908599236862980987031204967909118153172920532148269091471617019683100031033950947924955412914002143971557426133073807427261638537656480591502019828045363211867432021614193775375734948018158425829973240776270671177918541799086945598076888252852362533676669900250399814270494215902021624427963827430091349024416285982609927008635546366699895177842718290051671341433117060066886357857720455880758161692864062361255273485774659415319563649782791217891668744135309321639672674246162666263129164172194616159873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27958044350327983786894141552702552175079314713747303642230151067469179849964976838798953227283518857967251752690585570985896779041218819862959017375473180465581852963999848939544981464738859776998393511855391773013846687604988806232446545450452468611843634935531199472445121094834196869793244745879194792041980743264340514035085346162600407490582483443947996697051125402895965029178565321476182789503050564647438157163283296402405860144683610179855924850587256373802354868736926048206775111007752522318138504867221508517357784445030075397464524317675197964271290635556568406138366700398565767028181291903393527810257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22342968660164725024667146545190256692733677162656883407428722924375856641163774543382659373066164514700060634150106110803679383803868480757792981309640211900310972729141820650833970064584250006953640140830044090498454190907250288356373052469898795120716310545628561499487782247352456961129641132565571190925895255201654803837025876942014880132148885735628669105702911397615843595433632977865786198658210027980571359014175302356838017597905731394731580615458804191549680576624427529811067921001138282761445995880224619591970103919034529743460850208977615630712751290680577981563889725915285115668379651307106693587531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21658538345645527488412474494097925527462841282751764609484124034241591923124689694908765355327996514852637984081531570928386909834535392630508586549917190922247484053306567895598934003541726708892814767979018510029208645343270968505800083056674368446342900383807331571798921771338861319223091606182376577113156769393801637434625984224296954392019650519778624106308231853917186475787153862803516367673626481084621200241093314449990919863291057312077364727862148050918727910790804703696086203092852090732024617624606970266348559476463865979603447999472211224056356897031181121488564491293557607841377798495083142203643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27635468589843653701170467818792838139684533392143044119721394653459707359138524304177472925304655558881715372212507852285465110842318588171264023485165245511689768617464068670636450586080337256133838451865172323854852050406954150465618462776236109911979151010408620285782763641123513647301657001506449724181533306222203440182057198338495610594542458541737179314561292875029474942425250379190015397304704569773389858176743514620814646470401058286826565563572573927768745400553593119950712665793755621734278801074863741415580436395745890726549455918063003021826151232486390303314864221926844618756864500907903741546581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21287082965955092877785138701222317611236109991114842396943736592826433803824140965105242318247954173570783714268633270672157452297551314466351969905209685895266315756761448695424948301182936971124979113740963610869824972844417668830367373785573211174058366088793330052093749699932551177067904344715074978546183633637445701103526610313874184943278483436663775087518956351393258105566666245145663166326086277666148883317182434747721936692306348247326641579857538384963258871819318350924441566575348948481275335289790653331807506598308623460052916208368254825800498184653978080642712159799642625357064009200016216131439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23823199195050619458766598202171154623476023212631576545069225690755558467286274143465934209036318709759559002019221251781461157761606984105104453672432589443674806141389135599903968142030615673550393714427202190521196730812441481048298192816278467249235864487837848413835607528354466009177821418141574466837637153875130359887691168347413592046718701898187001906094287341009145226321423294697445995245556024364086280954215767969948573961247709213720919173558188557152900191545562304019427106698144288914245922411798520613575951193053846234930472786148262569497564360365628112697990494362280918577054265265753288754759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23945910058862700807177142507610139885294760943119721600196822800642335045992528266002627980113048434075127034291810112051819169659536870563979867961903865829898048111448534042099906302965007771050233395519898812421136979186179611408154189019709650578771380677603252220204856503563866355128474071293875597136370601405660494185267014008760064159883803553614027469248327200102941682336554443565982797504668594639168049031879856539541928222938843520782529143465745554428219996127380895266418023595193677492556221906600350781803642257139625548730205625022873805202733498770789416730531825474074998168675781602473421519393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27700222518110608495147673842484631516355070990416729309061520380557957963688605030059428577636529060339740439192361478701216184319620807524350257752393482645750571425718043467191302646623543161225320268535464441844932601104237267457902966375168406109810579838232485485939306172332848781100304691381457768850197462911552273825667077422617514519851644638724462899813432666365133215234959603878308464952729535258649423909337705518515678986912162425348082876150031755469837381362021689430970682854064797786277828263051996650251231630072026607070794841042449454893715081478142264470815561452929493609443593442628514679643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21861701536743876838587255972973027402497358690116227145302474498259759930016182354409382281395547550354389455588445702749031713477563786126259382265062635366335302891265063472212857945147559850090109605978314440222402097658195218755417043841285739639840156145255935054082167930462428674585281773433423948857457128572964964777430304149935114720196945853131530211698304193512230610364681421318013209224644679000452307837533203857862803262361603101236904583957925463679604767963382302478591733106240904360749042191312268481831684390085874049480088370877964652467536356236675592579668673848417424211100999863088431268963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21988368052788210663838216252437324812848678474132820914899827426663767491629052152925920004251825382052009916024120792754035167882534224222529830257994082329031077591629804480529519513480069709766729908335128242736260693676461318945569310609514057917936658135659917435201403374657973473536214262517143178011476069899814548082861783777350338073685927246868579669053259192275042442075608153871193150924523778679567103404768102954730073776979771593759393700736651288630916286079960513058445995846931608974684506129225884977466390670055986632044323379787752171820405132304200353440106571231473360594267348634719259488623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28970153213884466894615516835100451504959050101133632752555450362393411607787140807424839162744516375533680868066858462102229654289076389213506431426202973372663082169850885310941670388372943887747042323694362718586705427987434994992528734171209763282641407264297019136314734522587096294597809509621104526494964267699777723488250705591682057368922476549845193540587544627006598509990440173270493567027106394965824518830916390917737712487792277771996257581725557177489813945531060245164747594299565514151232950698632548617491300475387034466577794886735162574076689510848339619842519445756364834958524759389563958508771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26214294037024140020136650378226085264975097639681877906226968414129647707645945232303674552803091163784479025337183523097047754012966249399276856731629672622833980852761780076937242711948073380402431929593779548541557953530406984398439176879982256938838203318073388377483544959884779348249676242433142947488572207723721359298703303036101584836030903299710315604404677646961826470167910165295262637740694446071710671857075770052654896047931138730564569072398525296152116990027019573168634335809577931440446526785789574198902418247844343778364418400750028441261784560599025523805593448798675314447677384181452726029039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27109781173543384338231978627303779298632799674915135033595087378145064652850472339749940871318384450113275702632771639475533289634879185618193448297284404267725071966717303514089874052915746679564801809351914858801493446718359708927142839635298543055770210159706124347432741031246129434164051420496523915572214207803245925102174178857768973195954984238183097992804796021235934806963205811041045766063398203870840179711921827777334269027700430636802922894512984255293525615608180065108583035294929569591004277112516857359014981620251856640825785750304932808427305749140637445303593585723986764786130446331828296908941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21075586406200974372064907189481618952432380713834478110726673469030832893844588622154582177461046017733025134488139174199339767476157379853992528629325594409755150410584983404913462889238706157489287004593913481306991058604305041200353415104310026144107959199491372549261884892666229581672472788259160618207308142385654547435130305691962129805068047023513903775961935022796667822264410365686797648226662974047963852410576691786091271046058553047593466115929705372980807790865369221514071058596278440374920361371755088453302483433147786166632676325316640293186143969347984980423520073534691774146942773533500740921131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24542777747389553172250167737187715337138299134151266752527700944688448014200836179902133610868190309279336651449231629042176168672319945422036182695221309052259162152351024163188589810650999987059501475570366904839392639619491904355570660627875706626411159416056059732409293675150308992353738363137641248375840899832410472144781943567711542964193062072899768143025797037719256700461191018077413352695464416913587399153761472759216080412799565026383154939229270786209711895952817722049758048995041753067028161298033037801492933323599069625297603775135269676441123446639245297546160497412125611872162291306531487681199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20386016499111464816329999319062965953091819793801599719128911835584468833848518508536922332459319368982186560906635746471080757867652281379826742443149137363370776416164575280401853057563624638091233611376144812296942309970261316584050530710475479169375232184017626498703826424196942165035223441708969918217415960121685441543649941146498582231775236825747195571351234939567045276428509847064011754903012941636681086431938310315918663152414774553258311440788198602925204995096854169915310718869248987624598195102069657416711299515620791898893858560013493460671754124698691132446921627910795510141036533159366264712763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22897702483400848898022958425179186838319408194358738669267654437479416026770107522330131641952471673004171891485259348621990002516772272872436061633814574968209926731104100549256771319627622217491578621756050125025779523008146705862771181887491487866149347701197396578784577883846961417142921051634573526814146108751167995901466135029752546063057497182622266493843071558985923735838926319911677281842015446747038325005677402201230208451777957692243963231838455107486194728099896294570954530359862720775660215980198226938955865678559348666461034579002333017112739392803893161678100040517738168571385900740102680513997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20960600463613121394374353440599441955583334530499043410247882987704656368500648275341988350960648564263748485302550354343635251671603411684870720416238587023286578979381467742191924727188095879557065171460170379143222477965234831388732886027756915583700976152581172054405394737151064514738214557134741040374433782466566053744368269663634525615404490832502819648507715081149098900120067347368504096433796830531481174154414210281834064352133688047367943550127353977684467355247992934284455834869257804248196452655712944156687415641573267654834853427028935512092699053408974222344906688370732719780591032619554015401261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27361399643245425918805620815047369351120679983580743666799742494143234051394683166436974274411585887674577018901713895126422941683457167953432634719317043447924317860467533095463191028039981580567140390468884681263068934804050235007609611879873590323035259904148426904398480974201380645217844392199211647592942417868667078642174708904274043567449583136653817414295870755627426930673069001248317701624291584593835831732812958635466452973625710174185471359394789308642505759272743194221363034630852221621750124045058536612946934213602660678992453290442632459798755994070953730362388811878589042505904482603670311908411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23729567416682800727085444450938009527715758437206011542399381912765389367323059578910488616499178331918907998499763975102859143690979364252771450604591247650112078864211398852753288849944681397264164781671123497763399606928420243697931783921469062003565104399028785805334320258185356388461944534875510768634793485791945084563398474284706465649644653781336912847498128129057330367927433803434488186560395989559054766576712567789918109824429225600821959573330801618340653020996164453434210270940834344970367478090383745227169800646286038201724630224046195976240480830453630764946123158775518155107976338230159375030987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26011202498726500716250900448469565242174049181107213541888380307195655041003048565003768299911015730021364281103708685268439955446022355832585342349497937665202130371676245762757732009392036272221017145376395164307172690450657723596696243039387014270890407908551958015320474137224207528463558246313806605231740582256679057940507150553415073458460707521004077816085504204082987158754008663149727201442372743883453428766005236223913629427485705974943216687213470118715852040074726705703813980885066271149301198299946547457638307574769601238884790822304085682054239882236860014044909447073217515409082769279624625827829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21191976053501373389196953828153113945460562170382641525401234109421161693755052720847929641129041762093874570742844297078349519883130628782545271160625127132509486840030748664035686691867526756031265297015346620742570183854356589672561967486447448779820692747676337277566560740757949379185614352889786348138751990436577089597269734351141421594028135970165038302653295334090201327676128850575280092473773638309919761937215740006087837843949209554421571282537229254051764017748468723333350732818126558764372821939293279200704802064764038734296906263170104702227489944424245034561758442380682913679588856194894575712799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30126687326622559586197079080858902798087724544798201386944037990758089381912621788019878568241374529437492287612807319812491195187237221410805139367573847385930071863478301891330354717535741571775873397698067214173883121428784604687273299412576880371663755066956323320081163512786428442422312398945316246174357845534101936424258986399577105236851472233858018618697159020807572010288914287121845227694502164210628704747673661561850655638932427642369174422185171962626480363628341072769275875395244091116388008099472233004105339569410956536709087065193178366729833172302858269446192622834623081065500056223015589363943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28103931554906396232696866229592999327379855021419443396253406142932071849742395981946098189875581574042053431741161091237266696552350370306707789032887134348893779636701504823412656746938294696383184669141804155369159419960412146497099581022041673676192377045765751641550503292248798918274716707450896103994598589520804777515265280248716229178718287586048038158521954851444840836783308399773945452247945892762684507579279840146823364650760891797163476846437445482154029250821649390569840113516358418804095007202367703109811659963569158780937683822498582892763216614290131445400834279134394479101486306349985878314939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18771619471778187676933195964806855780658883562345484374793145941560157418587463595148806141985203139799315476468046539230372455058019873721424143432992941333166886549664743713470487836778289361561324506537058495256423428115378301392324940093223183345357245855957031022626842344563400110411005642100804023769576769614945319259760408889413787411958086850763037866608927346792572477073443679875785598780035095498790742317527616310941535030972977764473432619410918875844136966158405744958015669019478077266399322348837595855395933710135716907279095131969951143902458455226882729300696734291081734416549244038069512178077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26180546944497482827212626531598892008436429263907074699262003447223372253232646728319012106207811965419656439394485585964749191055589174660069835366320310846339201954398083768268057776404183564369484414301077487870120783635987218406035935326013961262168224345726194067881063230767266900327484980612262367978256768326473073185045303343872817523552315033697241343932699340909186986308447284244832962814791246470082095023922450794510923612611690050277676993797148495793058876510780240108258917547224518653500930165446683873810385401712297270425399734422558557901311435140786709902374327449954611337503744977123660089649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23168875894601075422604808727499885974966285926724952826107550901961700132582303310467981835902610793975106735099921985075102571841636087864338954716957029408835386882110918497257210086378395653842609312163143720537076223328519608751731465647040450494398668102966317354657713032775570130613852958953825921636589568620256922798867845908829058213738075090685573435021395467492698761694540075335041585987786131553943176390933202041632909873410098888481516753124568573153519967279820326644735683418017153921055751433434440438445307054520147430251542745862486007382694444362675851467148823399960074481805213543807523587441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27175189466009528213893761058725911812886211645021206310931573133764728123518663662068244527848869966686073298270887034899156154382766784617876638491823814255543221845526384960983631985384530497305775391597755138564300813144404828148945215790438098453875152398716444388242584391876897316513371430840109285670359697943965381063034517694739860574897281956973935437454618230206001128460346450831981253080077699652663658811607317816390374059759642826984817879116819744039019874341433271538685438946708144318041572585880682780545413142790409799622785104916936193213967826847537906224146541985934055107379547350349901626067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24013379530795099768331391372137215702576917950973633111043316977328051552844972285923248095423918080337540286477233846722013869937830186225951723437880851435675457678891336871316719082686508292603347361299962541587114614009945426030105923688625586635990015838601938364948775856336405128038373304034664918438506828552910784058669998728693590205311327745877019331061187629331239818888772147761446686733667106197421197065158621310834584571260104653299642653494267664265668076779787353522405491076972795425881223088283930030233280087971104483745086681214011001538193917363926601489923306772290023012012227738209558705727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20638853874904807791211367273834793130307438574674933499703813242663425891684766938942830829325830418109734802252321411426476746080670104148815666110166164802104003596588408860635699431500649967550892655863710057530500048515320717002036947596987585547210681556094955598511443077597019585872837987894371900442867815893807356707909687830525321872161757220156309189296426575667943250573728386578401135057886923959208704793003934878629945714988891239903493010699831522896322650117370580621041239121644793910715177434843399137345255343846542063030194074666789366259609946682192950035704412101927295360230036759439648990851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22766001490251851101466639420906428241594391438732217863759995521847424422718476115900032088662521789840094339847980696077271370801706401777078145198714904600419786464817283980111446326053862946800473217892886846314907897304401939622373670392136853207432567954135657222657671899483673978325557680133746895418239216390626095191887175364027884451482769281303524208057966356927419520432068873911887158614284261901173075954340997059707214273324186893728910447997738757706197701513152358830870095055071779990334893388935676832841887081850291715463058935765553047726867141218197207827755622273668911855103730530820780620917", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22125598204307514493657614872256799476731780011346479344193111960739202186875418217833016365502776783185271190790658777037044628310370704003187940597497946709204361508037187912192184698529504593475792802081670010531869062960616600040096259450758751777412337378600664965195443704021424103385351613187623182897561682932978080213168056268856381123176529827774893832880704339450951941120105936977137378810546833102493880217762943666728736276116029366876214526617986266193974866773031578836163829929060049155519744596047981042204771172114377252697138466432111972671510738231732722069096617283015427073822734561662905933791", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21457068977605452361589931760091138510990014549372362316167104366885250752812909835275266330949191681459913121236946671962639956507305027375573994787490202985945655179206939870991632659723116719804778322522380697849440337839978942586904182703627029412361370501318952510261761680250816638503916875484044027306020480108745931288365415628041242824836398508721291779387754935160848122438453642752580547448597589122472218697766209328627165440526454441079919571107582894716465921212430967496598784095158423940836707991592171817825044786916640005568340728021073504637404860743543061666618270945773831725500607422948083451687", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21089927306530125303788494587597719367338679371298028050140053812844726558895846292689403976801518068376701030340443613307231565089870105350870543119760514088456731824307069900496504873735120667336294173157009961116742871480173748223572844072979852772242886151059711046566850336797820934552598389610164755388259415998717114651545219938577282215806123454002727325160345955256699803856311629526092865586240493159131156658135268804012358091198539221960761609823264789622802261320872558049073790106057156262179734517441902866170620608729798190968645067655507774608430967715584048261080548787945551080415479959048571738881", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23426694114019250549535292155759706232236802392644276969948017534771485743575719885040974412869972480084797052464543090905257663209494117394800376798243875777996161914868282668104920425601146075198939614899181019444511857350752326862052598362245368363440783774480617346406789241334104282558834859636763772977321578073446732278607480492227454234355642766772567200491543638263064631401290779853874672936646589769584646016617249164789614692377086447460605318678864013072567667938980448407792620664687988254310423967615788681746635222529692701001604251584700280654045556233429956846688694738573714963049424822409403433379", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22464078311211325623998905497912526364345868620787265303689005443874280638591020559069978005888067910092051920199066125001404822934909908441729744711911053237818329392294992188608136868167292512690693709796961617864821241570804591716931244936780643412982959633648673249621930267907055823602361128383791908841409715863097934360333870002406559860189290643813993933344599247524572169282855090678169623064114647009698930134645390225905551147569870367350209508760711702650921628628621064443123153142032912757440268015717192324132834089993969441465394441569040246515744151118587873043679939125166193250028806040170597224251", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "27265879959027097345456521654220262656154046201703877595923234305951770847894600281634334592368516086394784337559585354173680749489521627997941432983090263949552292379671475520231348990809723834750515481177824507931701693747745752548115631950679394480577638936769770967504119580748844923811519161304199714088933597960925182094875953592877925322404194440590708657845379375682104734007302530510990657862738879314106734964617024920093092900335188861591998080982906179782752009033619273606567738946749760557155827447373693443288440923196362406792445972248890924278992925713798163421819382400139976014157064016279692700781", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22552735853280748526947296371308616924600633379206176366814166726731867528009376939315406806242385004110535149721451013611969932627745920564853250391823522786435591191664384024971993225840426853996878023678038197595701533118965583844349148931696881162294938481216139915798011658317020785577570576528876487025095559743953133835475730398363155506989781265927507243945445584143619519625922664217380302806352459619392597206720172057834664767810065132791592621767067740158947653938506613280157700112607675875459714863125497426767266736233974461655192894847235150262945645699454565258324227972951684159567431508623574943879", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20421641655268996136056289797673754201460159846154757590454913239699933997797413812867586045232711872159985637568575776254054022787059255061401782527089352305741596280240152580364247895164751134957133076479100923114081940313194916928747961794362299223575409625732325265543033652574254225017083166243887729397480846505290403135354425635437491450161363298554553913099149082865161427208894726459348671718872163472282637651588777319595165381390742901095732793618773645731968733156338430957763314433813700283502829197088165076008983966424640612350479502715438490287837224921345027227251035559189766948133370884089126704037", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21943957907051013977884305597827760011962896175550626937209906553408420221624680746845871360851438210518014828745357150436997958340046817361549498596007662019428701094990058555622256033401302148023372689531482798875222514592930403551347963698588310215132013808615819279937299870758397606035507506168739357937474510233242351409185151920936330775479776799598236282368772660000399411839186774929134945928788728394894924446981352733258459781919962286233442406768200976699181226168395993792605172466972596867206655106934115737724914171162407551287242561250438921714692191151205823107829213851854526665474200652350218180353", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28619005050144170419339786621813958794728231296558882713922265438599413355328012382918818124952961834914908346620439139490711480935301998406731978015763244666851929902110123437798206640680023330958270718393340846137536399709543868582128986793917836567041738867466470507832487531655175145109903061814362281945190620900062694185772154523649209176008637588865960528906345612657344095491253004971298014382977245843284952413990508298863094320807654973536738895815263409741875321536450056940134722578067858513355161276683320634768566987897473208325066333665428454275370018673088556240788980937638821548191287238444604610641", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29237620304217340246499786863933707298902449427093383638874605040173947997705843951140896422256930901402261135608690906316677934048963001152517255373739250335717155722078827037383720916873749178234825698221925239851713297125969380869148758727370631963521439799693453349486507058155197543390941511041375225461407473593436731301089972241505212788307284378106638762507806674853485690474562291270672651754871320601627707577537873345062168419128487535902892607821850399529468363860490582380426064104679180515851550595963450970887411487380024461433102238841789326738216094745601243196353800869305972824515360113744365842319", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22735588193106287177673228927147475680102764890391338934716990165105075850178124172558481656166185539007110926745211158253756864618107581637289687115288902602761733603974908882867693055722764699070665269805338828120475360418482007244186308150277331730449633334288731434319470299683994463950422978019628063479623766247583384218591855563178588410167968321212554245857715398637693484336356162390362490010794372073971009996663586235888708897645473505288716801457167566673898729010495175276679446701311302239799481737145043431213708729142128939171139722517854919400555124941097637004541144267301208543997629719270433822627", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25034243129362723065990237615586052248337641535943359267872430076315911634310020267866007197133418786981594333764610555884200945107034235284309400219083216083967721707804517198852693940848735845444293391891441539101984231649855495372172422440658929507115912546303922498140015576577500163864149538964148722600623843102690532154384474350718054378183383203103229734683214865127577628102319124036063799597078615462458760424058995419531207843427449061559247993820767071683300786387537392279847544894782113403356162465028363072094932478307087366333889876542940146459952155246438916769265129903289723247057179925358057318189", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "27594570929440535318060217973835078309222326783910970953155605584625053895865919264064136216866606152974786053907478264152442304045391984350800350271170414225106374401808309774459460304195314566874625889532540746678774329236316596040328118049732221177252166224268972359462599155348802042739007126134772383299087066829734264155777048766881047204413875554367715524920652052736388583865379045638198048353660544181879372552882377237822884382722644859061483565504595007320201180825525265452079395261175193199933625339372038956433479773757939951375552719867738849805311756324740237784716069463528813545009738033644014106517", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22412720829964393518326483257370564535158794182826812880099618201302993248925230809756306602702490140282768232120917419818288879020737270381917557357272087026164252520819733165168820248308554098621766873560871914108740134798852689951778758666344322345209907489728923467623682435541573329168152549775654776509025585930005038853877231655600122359498073809767913402941607086614398103353701587120818949470405383472250295148276942621645725708659681653408817518093987939633096853887412713139578373757073898497086394404267968412915267391093716185140459713641498469241773344528790966351424149329663866295303045615707622759141", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23421361661310999296075998927285845372668688162403455136708482632536194221171257387946100644168658778753651122266492096938078444422198263301496366252508459037445971067200330790979612968008957027035901033459607150028805308565085819038528828639407876934495676180694519647998209990647886479477705339744385113435304317151854314673019832720972157237567505391644694981607149441799284156347015028043636483812003126703403028824855369189615427219264637136002266865510506626297175420621560338868370013171266958512929171978800547505154438957288049533931363937055715641249904222959807051214309627654502806094012096746478201074731", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "27512596534795836283644639721238900687290135477261200639419354779049529014883546631504081395101566716005941478016180587108362295811695516835299274730597459496303923465664522393044310105602876737846367332097091452810532848042740406281275292824459268883400747857453259557880921494497012369538656331092858337282316791934021175972467843638478681871553945574131955591089238240913445214878583350457219126264049435994647243469210088437190473184114418488428381860223191758489635682080445262563823023656614910077258319662387706420594372634632927700479164471882147393702680344664316571503220002542290535316417908147046711403021", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29146230194237954149182927722199478709545814591386279094092206072267476477300436849683257629649511317078305662040359807210801450937123800660904048176390781973079871749684502008639037268635367239360392257887401069005102761531823346463845319927382482342882067516884427636918242857598357329674514540196982215666720325842299581525581672161328453057034468971293983242332350125227361176484003389306459259611265502050030288465746793382550578359648857912388157450681460893069264562479356200906312042443339446132831851562577308154907556315752700033730328788889553870551379628019532851211468596700986925160780307921109527433859", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25767546838902898058982608061778975092134114853229589792878612493361766088542499188189313323758741933096267865451730556533022275566787202379532443350116949649441379913226919370110932317921354264028326354281434260434949729172572286960107447188632375344989839406119756140614816336335561418375771537607206546384825821117503490136492544497903025242292950550830014103711409048274850190182845161363999476543257403560108509201393222717405842290784448871108443108773344709709071672871081374561869133851242347463961020875575483202458330506289775659535139830042592399591090297449202037139759147973870517420958476938968356667919", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23766558016496872976968789450959165878294829397878809124092239848344309677332369710473488349372937383436946997394132606038100963478883777301008252705712112350893067635764300739412459422577444280152510384661696334075210142631524193928636640137996661788090122745887246662009401214351158877163214553117062645185087415616984287206908243635851210576648266650613312037834074429784353242053862302543975871366693621577279070736623697195197431151559161658729936990919279411847247977283680204133073835088758496389472929516304224274452949731166628723288290342401740188187036091022688908453237116606912057659520575804493234764461", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22864068562571665447489965574828991514120740725406163036308924424901668644268679453168469560407819887561415209916759571270813959979525304779296041269627803664242371565969844723625738178973706995444103775300871133443592184227611912009043406142350773944337871631597893692378570546822625312132810913146826627099667486883217341148620612865800278945812579948564414478036877807068831261704384289354771290449022481456004629969702210585868017655958843213013889799820987302343528697332491245387639619141641639616360899296188532175838512846770852977124044007923741750177613611663843404722171997203353371815682143734616490667729", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "27790296998958470936025405580295741596410841238716409898826666698736014606938464417785854798351891593121393925023941602851063856239381931151132547802889795331107815774875631953766757465863571042096562013806089760970683924391625469524705606956150829847193977948428380717758081065263736619844891409062146733007869136190315147290594587359658581426792850826007078410091906302383797003187404985563536869354176270886939630799030063097149613062340993697867892539529470732909078207210406543691727843274614331335845532108266475581785367189572774042643809112517604708697064998086080366929849380127129126812856448988149162589501", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25846001868583021543430344716700928238195688623411409929909814376165355242957117149347702325490308676308363570238534361737597066631614251975763990708229019058598597791248393321697781019112708743817640723969607915594452734671687608895875198051188105397215648660633829649618231964683930572496065449539792815367349932130237477028554525874257545292232921511455571364641367355147312069920631279805488915794698023950998221966479889811183593939127188743219929697165932271838202328080381174831162087232359707235324645393562359440941166354386065237982147517748561338640026680118405746859526286713856332709935423179682602029527", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21534599313981373165349739938171818159156796815530181181640662865797515782626137120169782313621602774430175316056665260207967142171453836205823729513099697994637085993233975146167372195811116423389327936463158164209476083296873669393702046950383843266154381341594903822000958717726861185472567658436116851420430366585000088328657734364964778793191328365262399448825803048714711296776566598438028965498073694241655321328664275861272587364328982662961771980074695417024186376639119575317757370806295419954423406033233300483201605233206986844078580818656053147777929372320596999915596757030845700511580313617721769902989", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "19480803667501552158510574743175156781355374649865238294025695858985758775279275461751911140667607626063951193689003643781670692526389570337479518731933920283871946528376723864467627414907553345549819098715979356766491185765282344613131835480318396886662572279149186749943979871891012357780842696242161997791803368703565355705420991807479107565978031209883921997916328390752528888130261511025036841873569991197188669175167957842319373124454669741707038848638416722321251946714234363908971138494975762634831590214396245487427585988749835188644340128125414786816436866845626240253775861241451326360667397597389910075057", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23223370173007905869985299567145967150441140785454976528432319468418032894537350987007191007690036842425689919098641453388513876905342937930472726552445013816632649968417492212555979307419810050957645599862966678530886496924413901654236997009216757570643449484630769654639222049567066859540252351428591671503598596458001587190538205365214509785223367343454270990885974767362493086295958054957513176084807390014430016532339652700350370546339535504017598846136075662988699495713523903747699434006728387707632759547251259247632504803253714996711306490594693954710801095259643726751515727860158894386436055545631898976671", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23654536854113512464069764992032412759581405433526954403888764077261553978440543869121223080397477219224622517340722679961151362011661108330995043342818723670324227583511029650010419020327712048903826260826736189749445027135560608023301866045542651092049863083367910620968225221639209935993455052393192878304483501318040483421141212083191466719937924127877811844705959993083244695537941377983879441260300886989557173973014241924345619380391131995175086036635869241694341604985703992260674016472533314366482855456165983238734045461383844637796171643729541272828626559957122346541524756038516577272518005216783826512189", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23666871054010474579335245728151167866536716653885752929900435460290496377136777090007459227444318870557934969064972243692779409761862277994164377233581028926350936695147149702244051488905769104186939356029007408539798438554295379018354568945725316336967546964519174036465798729170486368669883358595294097008165803020752234942360956403292969049520607334551649554599377892483883901488613198963872634213035788791329025799929313253481858096105462522645672759409504267276422248662517708470867131781740714994065340143997734204141995186282145777043201840641234502612615378913385058552747117763787261270344297099622780637599", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25859951060712594943348540473351473937027724314652755616254898571082686398667308150111327105991276108377556456466188161856612361310898877325357640291562262350997750023984630900457935384647244182293246443879477746541417320901759229528277104972946789249311994196756908298759065320663733572472988226565777919451300592894224074128242568854169217170841818702164347512959027684597188644139742060641996965365137167381982567807927512319851407117836536668755916566931990971438682493905281685460649623541318375824360043553309897132843401990418559130625594040046298880145979137760143491494155237209095062979816713523845519296263", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26672605423025155148321106747176466034698518638520915360665077954982325186252408109043790821952939364377688703499555728112941990616050980128781341484314900755652693672048628459327382377307707278480491730386563712537933992705595213172488698237299115814608056419429442070519521861668887325935336947400170877744494187734273043703090038801718482104107497724529141405023162829548510397018674667673665064068669254295529296189121581710628144482012464232544420329597245822939331217651637461644468129324494194679501542483845075999110068140412513684657379654324775576067684978213825059780463236340923551831712430960774369347153", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21805047372005522768879910612934443937803881461333975395075412665100862754564340471941717938846792383589562467982091071733156395310828680604100334562348577655187307554440683610593711421048315375249290172421827558013102087442454544418550331571648889127991275616660482481882718048160915949326175423122036829611710491277070303592169029571514524232887005607803099796577133018902022904043711676526060081312039115525061748445327682713465602266737359972754512017305668856778597501223786627153706724409397418734202424257991759764356263771429373561593787393509486876442194324198226896779237207221663852420792239871189510112959", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23141736975638149475232199362775432609646051875142241206301879584019989362325626450537024289089088896289882771359205252710618471092903761667838134008353370728294834304325229133212272719675850764813964038633248524273995211988750116941642225869022840841420733642808280818135969127482869770448356328294909210744805882688630997671701134677695808786129692522821039987937889008779212223483844172622727220711378840113152832300031131018082230795327555375536372056776506848961073921960021288873890950592002977664894498630830747327540919121815033691795125285514099955058744793896809960643159035509000025977014912380246696254747", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "19672202890387404513248473336265223593363483143946865065983601376593576006524765272507517196616159394668691233408501961946437518317465310103138450855067010887506179808216557187281994489020254024981136456509971988409155434664963476253046588438939359974588918791037486440447224173746713562130412408130251536057510181114908015872446098246484476152185285655894447487561183781432777230568671886311626914477358946784022644031918674554746774950045892746603289503132842393239205545797082992470804006809625382049903813216284948044652418968265432135398614575298753786267358997628709826348716038713874545581611851161716259287999", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "30504344097992058284537118213104071210511882374822310578724198124272654324177711920113959440058699125341921120047821157432863531789208819851672757835278219733216471754203488018354729596766647146012787040428748158261987181355534041409169445536042616133341068267658394631538998586840220607611163818519804421001960438112736977793669402613114897444338627806177951982730206853233401574907795058376271569265497339973468295004374397727040010257656068640051447547817812881063790150285973105521669817153474905419653044468924797555754481909090645021901562478777684480138325233175201495644314377546547197279828621587134531306193", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22082655400409127078867790829099694180509974739850736691952379304794902011342413198226458325037815324133931166955998456555653448497293935459948656856980548042220313678695261172539109034312987485041131843660730335396293757977842841114280911567557243763999298301227118511853119958510129086490791280489687859100373310126997058252179934187338393115820821928229788822758092000383573480866168300346507310845337450588431513043142298714614854491361275896990356276503548762169348038398868708227879598061883349417839142614939544714616592108888270612797591304570415085142812470469094263129801087860714496229770161428416489522281", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21519137161776771231553629017546582149776556233776066945458519487493362319062190847433280039617576295951065645839162329334298309022919303916249892703367914944483352087641941462843399351384782501680052754012736838015784419821441168754083435636077213753845045851790442083908441362763344615819096636847266051573319841167022545286998899891124673823065553578221138519341886379899700317625648028333811214617136395239940181731117015818625807540963959124230286955215929015891331638406322598449870734994515025689948316990590344557601192414369286412592203068894129710524184914318694392482300795063973604320676477259534657673867", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26142377890320378624866895943223249092202109610943431753862223922741112498445387225115536800924068956460386636719317748000500227342448854922483645767127939892128466188886851212566703516077463592751470592236825835251379680075076609876574009035074532713093180159226352333120350359792239965352856597543178917856231929606428951053127572035469850985838089895968472852445591258028102198520243355552713097625510976882728218849451186765691911445923746139355116535457625498389126525274621590457942797605703244668403308416625558711543391659679155396044944248171522657146263763103938955056969534428779605304470107889455280490673", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24904395516617390787292801172070023961455083952234313388338648869916744855405805855385877609208815737980634139492960002531575335580910052543297136569875387202598586147560895310118965829918545268796883897197073260057081747771235416488093663110424466077842782777953555420692012382108467093963072039848219243142119588428553684752438904417974145512829645431209157783170470973538179807772344109496640681934710109821818417327984225810925389242037538436576549315706834316179350325371983367936682244712280385425192987776951065352088944084350543640323573661123711755044817839737063747537947639663451112210297474258774588603821", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "32056937330423228765550206190996112811058131235664118754042584493054394984075827043088818010974097576594951252392605317050976754501253041391052911276928825637800918467696911150614055853292880743268439296115255544592401524197211005460582128484254188807914659765641551142316102534179648691921992105579587011930162903888192606727718557083384876525516037027503819958300126709457109997473261932099632677608568457263426732937430629650197718113743252935285209462419720443771065566575572582483271317654497955171915905745565461217595623734210491106795534667092125488073063005624348109911989833799204898057933350818201352533659", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24933788204014715681424428300269746127392538270585189770897226121971811347025091579834039135407081142725835587967324600642422598651881950404608015215288315787094645394437743419117400725053163223486045400117975095137326573817272306044874983874720391630675735222121027824190160762831994284245932750987453618053325850560973924649541182902143397868021490543513742702745904707666087657388714465000633243138174554570763003892586136323720543699512483828005459539285765950276634394145786820102429343225276431387116431238880041476008752680977702480017469268125598444349056666085015847598141979533665508962873040178976225256333", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24428173262096058339404407731931340909834607789619423813171575165283304068601550600954685056244217282117380682316816754062119324818356452982768377712952822416960056438717780201560582078526036918154669877957192437721054960757359194265775499311529431136523715068299980692538294016764974032833357062723672372719350253349105853072260672231657673354478773871790701823485579899040470705092559130097802161712210659245884284142842079646335245922646933091634974200289124225858713164271658257486988804536743001860023696004165065990454996015249039573002838011305101833337663284175360365230123046285996017928093595243517884421123", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26595162012153424879092230618598929253012649250249659900606381203448365982163637641104748172257936281172354476928694299865406405991090642363412523989253377238125497046126204149231619764401301557544924350567573972589181788318973709367009911726727782081989368405474550925178107989515936880226931624895562742996788849101132557067023195280884599180055367175601759061389325121124662314727751793775823785935068883597848296245261204239441060078629115534910913513848864008446116942320166995444349299506443111182135574966560683138142435582032130214079619630903707058410891413199404467388928702515994220536538733414269372358541", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23389882612500933045847527650366080914157999777520092006353558486790622130984700767457297324317027116065283254963219436752824504563272849297936316986425116218274358968619960968668584143872784271991522108605046705671025185350839997231133078654736155212042840155149725530413603828258605369747179848681113164579149235560601429281146903718848516655890821316157051396268897658535663565162639302352002969577376034585820449585379928635347815408442273945653850998268443407099477824798165973723941464451739629520985794917559667153169924228502369042617377739445800335095306295706844498151937483907519924277374165463544441924367", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24706871226131349938498276236999713577276666001423313810259216618778479533839434280574480837462498178476025660090237608754005838154075644222557708041128942736207490789657897083837548314743469671315619276216573180050320886278197720665123794236359336900797244519064536413996314486682840816576461492638105745397388536225632501450708726802648436037092951720809385469283132041152058869738335996919901105576431296588514514276334932109967506596104416127238823276866535755983434570423243778736245583591799170948145220153372331902943276623203698761133206619915858391641450099737356916920192226194390023269715843283842559742287", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21308645430416457974839517366809586116358622049038044719626734409031079811602503768471950697387037802354039881686796209172428605227573601100851637571382230353477985839185547889520683607771295842448148957296059436158760693542503640502064765471456741813423869205552027115250661823285493067626564828680963536382563498508452660035106197864979334643653569416591005151980506999478315180985504359613989983796013239869715244987577182810224443808732586021094523333069268212474529089836585874029200839248567976642036320927114980583345478139482751677066714742875362933805941636817629579008573579022244419906839671908977389118723", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28348579000143926533858920998067436693902910001778062252369933560503224305910024239750264488741352089825954663027659336657429493186514357701599257446943375439999128085669446986616827840431586469702094130820259912429302411622896500123045093324921565435105512620230845330356277016647431047971415702937166817009659516795482301124474151029960467490049443476491096418980401069677153282966002346907487687476573484070779322803447479603362369234265798762758350061836116688704195934499994857796697982218548124223819236764456697230171052035299400147591359814280606961174459163775381753169027048007155865920662828477897536087447", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29682196951048251372021665107852593321791529356615284250211164866686690187335319455665466596268440714413698223447161150498068946971072883489317259246321465585451168261176546804427712123256258587013752198211049314145905647605432308033026529232520429388193807457498757428670167218016252248606281994594357688305160198897061932112915055586628958723956726742048551802006986690076319944143841867958238422500289591258634026450010072882521646570901775108880754727611281471890523300219676920790259588886965344172973743331795565933629344439136392092132457761499019436197036157999330487631699606643723851284923238600971716906591", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25548356694236161034094439596008238191245965821158015385293175243856603141466555132327422949633399651291305072131102203142736610466285233160506575549917276706424467620264610385844079576453864609749720831289256074955391271674460314484186029245412576559132612786698207528088792948056832355510739421662315923328172090135543396324627724368806156095824758449795325356972974594064420093518688940435703470074947147159422341391942782859378044396785487729382480138265487333558571757994097477051001054238180784218507481284368890295189477101136353571917662747071455087392388478438175689537778142066108802624340596574345996744267", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26963471585926213233249319432018255211660214797236247338504958761081733099822010619142039262803547006779652880993258620816124045848738291198501856154037155194886832470090265708087823527214772512976239267250198502095345712944690490241548610301648293367203742148843496944196340208936447679043588218179007748169845488107497159780018352462772784641652827486615489679016132794830708902873982951392169516390770095670193531916568513661855504941025550302432158584186364445105102324800028295993866731593916343988915057766669203297272225611814223511641579527145075365740239397100904569908172466408708316530863041938925861278563", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25176530592197603198147762010343565329831942672748778536367697738254987117333225117753278645055893700806177804542152479863907730786288806505950711029579628121071805936701321778550847347628370299000806683283787556538510887576207699864609605863658990866537806347932760470091320369559221778227625406978069300995359876932933932759474940519001771082800384672836113251623728044676748896426470385627714655105858080827428612428928294070535561436028364378301492288948667496209764970143412569668219414070573355346521378336963732858600297465223441164108589883252805478588402055858319874415072191097496987237909885198406267861983", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22500810759004770591302276386601098043726043653628752717004746456280024755273380125635540737193471149660681374850215729439796464893448448111845286237598492458870790510116387637917676531223930740544639155985028801722142324244568010995158138262955687108466333791554081434143572702652724269171853768192308896331100461666039415589693771358676124552399760619290616592722268638513867816865648536182557396463306861145121503577085368289904860081367473729722039553005544326319391991044509977842495654484963054608087737727825039110846069692652566945864957882410634408713935296999137220529180867155961836288389883887050397954493", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29868674491178845245191512724825407559752735025705857090837885780693835254143226088147596488585526049036415249305100260651775117739059678156128334356581131590023726190040665658436418192070844163793537536204522110374860669648344735549337056695542888392244731700909108051021340754634312139858979915634609332331819646100001932715197677597934961609648125978609217544688692704813830123543256275873642520178455281192990682079284148048025630932734409983507269916506168063613817059820566633619367197895575312421637774222888095614410187897187308624011797658608262241251296864535064617584681473330410235599633069186080788840877", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25354376500368520673592865248204244380273420510342790991798031194443739452249164074458914081368797422055671667764243747580548513277126573657944472363311318336052663074787630728562004154414189723436232575276900478070671882559057144661617130753866635266100280012199123601133840107274031421813516035863170372596846578249995300434831529944352711868970954238476626787791518957263467141033108908797226896395670508900873942039906875126466099000790506241131109834817232767624021937594529054075844737974815891900695127808583184535323350131044333219394356973123108450038510036693101448531008876707803352418559106339338868493691", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21955032909202090051442778040296192188880651714557846692556095862679805214957925152950042143596929480477669300017517603864492081127697733870082427110161021954649463348581168023986148376112821136822214739887560624560442376245544600593730867676126426589184331918811762437876497609211921701145570310775014743605355542548810406415136290179701088834673208798510643094459508592212168909037310672381872517573715265235726644709325774096471310288593818696654196664118231459155672892531623805657184778005944299984572672352229977476998749803014290379422569159408843893290650192787069104491939718954652082713531612975222113612691", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24495448221544304086573807122832020845025544469504871985768575517847648618192697961331819111283499026456366197253281063577321575132415991251187462946233585419506843392207577964510232590715752805327715959107635141258574010969783377425039182937456281813787533904665331163873540461664090968358001767127580622278270841925268511670512902444594595786217693204042041440859583070580078344233565414903317882811341714970028376037886665900712453771099503001641932349467595285855563299448900699481858341059027914911134593419895704901842592699921819716036333479164012342122511633570346943011575938402402226085210634996537795783399", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28402569902022320984993354290590417253642661853348168253038857158207094242164719265705019714571967280537616724251800149246961459218576309989494888724244755193488629292360398818030429051232036754412274640484742028878389585921707736142842905758050280442722122270420416600843239559369479686313079785241470827904152662983696603396250557213499877458390260261382675256829288931868036998660278264424295117972463510440679217558099044176616747330233990117682256869367456312720491369898181750866742005227717085983179020984375914824651648410478797935625231188340340244277246761189333640611556077932010217456499694221213842743147", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23453101273636715775172846747364943943369159545750351752430697112050293831899893428322768414855444389836979289541003282894535281988074021115171182643769685482293086955283132584832968810177169462723525604647091089952194105412883467145679046334993148863475667387491700500066732396881508441725726503895324730021615542423027688759061179032133401800665909333818041999284385434948638741606557373284703908979258634057386263020785052074850695230826428409654897336032804267682963112826933891738198724473832168321253951958588599201062880422893454791925472642802683734447876373311246343835851915142856512136771406997389107337831", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28985084207598753216359580859534228303536335813449143718134767285702943640986493846316066647541008685278768729872179048787354833416541638349218558158640102265094010463521211701923347737806248026887407926861341842584234073966840938389466425654334640234966440695850982101841463500088400568747423982148291881949295142793340279893187643872677309333666290473607489728594909230372349850254313235413734574262243227727797743416240635872220060659403970870809286172623974355416183985461486908981110685366556025818027832414795488180097157146090142973385334362629973516835229539168861316473928801952664087820845783846601378794431", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25851875283946252818310077685814080431334540655054654130092825990402788617628381814847045990046974001729508096620399725009365623611884182531593944598011329305221614459343788125534686666553101886852368571219800481084329063639769588262174209654605432276964953442058600171748541793783999005670433784500768971877705582429299317812826536279266492955275040831671232876957396379514797409296993500174661951541583717272112189207716816388530757843569250008956381706686837282102104263318944987500046219417560775500508461794879955574950932138109494467589715183111792404407542561425332332214049110452539419741856599859021365257221", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21887181164381566876183129473345743277037996651338262062618861052916846942945139097715064691294282205427755217381259622277234669446599156413037794578408363491019350426409959756246213082299260763501699791417737078071467041461714929894754219565870038920698260430694179974791253370851616449662477695989049694010218298295669326791553919306167661834820988518049721183825871374396131669745689709602059056836833923956015652013854146348959655559514152974453137268540467255534686974491440361398437150097948224407359859192642566598091725254281727003061033994222050309924551186978746408054027473573835740066119462316150254765893", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24451057817500828536939922877180950770343306029715794337036892912905689515168641766650543170257342292846927809776637127586504937249105892314847965555693755900354387881350543386234845270891644949965886404450606662711010211953963877807457199950133652497462358470774710201037460125704227953338180171259925589453077052229341650818996528200924882841570758035012878232346441785087756515719744341875215753636648690449798099080215375615886680622102780235009366230829217154939565489617675690828604073003656579032042170157496335003192205730155917442191376520665559707923386247786441326332515078498800482485199160749582634545457", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "27656953228679145423405981160816136192203260537966202638858400819548172116420031206939042115354793077122474755942298844820545850934390173292951372457760945237871744610596440657416935652982683517656842085148570719164312031494082397489266145073546862314687660976275137662959002940325715267104951197928428621844680211851700894474292962558560472065615106883022161814458232774700846118002297274542294780006387566345048935888348645138641925452487952584084369589079448940785675305423133117605045372299417307496030037211727366892056995114536357941589184489264284459487958219714790069032233502792380062589564205302156295961511", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28028238433708364190870651515857930585427343582205734886783194868365400085945015334356540165331030171309135062944197376767460068092388219628305388862981225538012610815768438531351695873463295374093822804899959665388019201249225684992265922431158290810716851939522553176225366397058239163474349111075813979224019582528021514732025704248677649853961984712205156208905405433262247164606910785194266207237509205177553100684976373077994751927792200590751704577645161661358843644952351727376798308909362441269703837273319565004975686076787172282188470227346474374167649356423734861299004157275587380643812040621963404329773", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24087474854073528799453745448816656603719152822378600658302362149517953326853824043634929922931078931929016131592709909048307452341130933600311650027864929319381822268504804217897131281418863560807833284369016583031106151692865025877140871867850770192337883208041584592928217434207952788234552649059592901860229749878566987945676227686390984228500822359332043100522913867659563772655681585868087673670507295387498035799222001963396933193309417350786155083626391043075451984736784789121997874002255619455680058888341556300851423149913986833641343258037260665660362297538873761528404401369772444844597608086524890302309", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26965983210315514393157588352106298317135550780662566294716846295859051031245936412521329473788648265848971661456620876981085251256473428776986871028821015916306497096227017046678211960823062094566147144295903906986979332065425791661905895587491434813992560673174446813542919489681787351250002698102005632501150106396046034198328618908915793570528303536140231290407315691941764547250972254388068541511384605383533992258879694662466475928381275532140149306131047997459697998008943350901527492932168897403649825366130966033310500075518201001226641958128656181390360316817777216585076992483616139956982411825821774645127", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25386419855136511568725714640116993398083624063363451646716756541861347290998585590423776315187724285566304268321379296177168175738328214713195637334408559426978310184380995666655043386746319054550601993203230060942958990945092503597064817399164134987576985988004820700206383724525955686795546389062780262017442261155591817236137418625501670862252494142401032548001004537358249824745646351268660423999819352940059327820444048215115791674708282466576430896692849146875883254583825270308853501934270806073780562314355056404517075600456299927489128082745846165428294520292257773774401765231290498176127434345305769064779", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24937212527124243652015931962309163226015071314844887227908455620051624365790868972918495496318157401818303581660132575896045053570900886384516618854970432153636366295186578855021966187447925165929458936145667337735677938469177802661080517080040552340444821430748335660850509118542822413570842876090610081750564068535838557405563114502765346730592563540110589286418309321359377373051384548410262421261685405684855459076866237463673625490124672719035498149097652475880537346877626545553718396384839387646782430087357420968960330204197285809508668167513379796472813972115439717404525869079326704962053585261292955995869", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23762335235592728765834507623251722479112753989047538993788734108942502814631663574883703924852015737317663497193904738310846898475234537197907543445252269348033290973750066148681777454445272351044671209874696520931994025248217214114706388445962926054477002447211783568802563884294862319181769401650509297624631660072604098053900101154310233446247233237420588294609003692054615996238167238305665475261362710918504055575597612639042523041205234687466254737302242727937706955925091042194957750535723369790985386975821353199404330109513733554672073568499622376593672513568438157829625292056328813472325579474953286326259", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25766215307656068676613774908384034090061151122026156110044156607043729263299732787001886051641555957873116406272878941875894618036525410498230217103799723541038967199953767728152178454337791414709437377847084737445287914488556019351393792729574934247649487026016515298927923297186730836513349204751527218225040438435304917399258048410906390770720084893932780020602468407420923841432195462560938066542833581797468490489910736924849815802549233269648526317382301223074029922070010086173519977195657221779477974203781198561827657855570766329536706344981730990780969058238792620639944194810888431047880898248164653605513", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "30095803145679588580124889488944854818286242620545647580787278496538552828213829181442117504623774018505799721225074572126685720128099487134673160005740088102354272580691130340865572867524090455948263102191171558971255908535475038608191308780586664240893071670909912099943323259663122057512866245606251738691180413091239608379111370792775898062091678501000980596660881527530673030507849069276861495816991512299881294014237489391825325351226029882362932063442457023723537635353294784698083821429678441356705376955899765167381889061361162884830215533132444452020925823038898959634906374508903190603109078316161515009263", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23344940233891037618891835527114772673398793773991504917135324373292226890430851840312095772811599854193312440902180451763133495438982622694167622691502022112363661832369520488544477134611910783164910825169227147393884702586769207301388902851923406779412818361107329526570924842382902458344170450507886323900824412545817196062434256343747350578618821552658374784357904376654546721653240177432208184192589050262561344411951750109071422182663889942345152767166373789497599762243508325124188618668711410209891102301599104335777687427641411722806618823305602885298162901170563606315772296308931914213472233590826623337459", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26073935192239297794844464457652879294547857783991402912426480735956145500719477570237635507566299264643055704186943504421019341854966005660247630331719764984761032477458204168567514004072975369268996045318458045265567071724494693117613232877614334430545778854343346894479002270640829142540722310626108087494916138947359584221300060010383271826864448503880275671537511177005265464979788987911726123500139274475732807284758030169163817953903206062342859333022637568245609868394591941281214069711989787190163671436320476159601612171385517722967023045480543639108421066863934232948532595930374103998323295604606230857267", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23099696676100564673913914554155678174055506763694116311562664972283991393477199986596240489086822983325117314905370261576471960189116719977214101358453783083202716426668451967785420676626401437130929752304296871270438604088722195788701790226808540029021687603975130265091909865707519891992176708585879996868037915941046320726774435083389572380897194138033624246319247749048274058496711503809777037963166078517462198481267276392949220145330479783364364246710181386769432750411834821785162074377580405231381326312339971344813479943271301647993213832554301895404011743919933809074380913359632165778071109235890576549987", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21419563145098712877506798748766999304348622189849747160294561602973307306587440575183254136727015017923508311596124564488636909989938650822067654104349226902954464109089848252359414580213663500465153513015631457737597892894920273226072991583082802552745722815582267964831879441218110715109732090006047422279294749815179536709345383506810689050562765913785370234872419598148609308574690147988703385612656551469795812546852582080197514811287527863046975424586758051113558350451548731572000783660852078866825974541583226285521335194980996615417708980668419569838973569255038057789686743780325517586196888043514546191171", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26764215496865781693351737973519415813511495113174621905697074866963326180905493118078975533413233015294277582167719879414462108309359466870600444659241774104860858900649432700032567061398224388916365445289906943202944873332553880717155984915738408617471423819502981120154218285432780904510760220271609594231815398019173242381998143947957803042138227763940591241529693947434238543864142370784881920305302967094338708786200159783123765082725854027087923561022630547164939524419991884341458745570004017160309574542278680030232794478509496935353519931978012040208079482175134867595799985279515631237159001230368113514739", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NG, ST = FCT, L = Abuja, O = MSC Trustgate.com, OU = Federal Government of Nigeria, CN = Nigeria Country Signer 0705, emailAddress = ffatusin@imagetech.com.ng", + "modulus": "29011443858330965264243885621669448298678746062001446363442100537243723945612498654650333800024124028029447926541657970244487580407167835769516727315661016126875724502383188226366922558471665332323188359721187970783470778585113954384419956575790057484648808888652160992736626043265234950836795047612585582272611097232837210603792005728232951215516090021626964084082133762768339100879530997964141341953842917951689911654295086945811476760366485173609838891914808901848279162834451265923058733019518132084772988890579308718183409782321691261497165469944404814862721385535626177640141832742615981263865535130392000673061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22496205028057865966972451134816586", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23387274225241825047052098060261388", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24213260382188334715810505230625254", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21436765994839707853212306884078032", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22153513138319475562390642220455537", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21921435534709371270930376648073619", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI OU=EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24856564364379725635932144041236455", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20986213162763929152798010158904471", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23238763926627102579789959490259865", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22238752562059913383777286076500097", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "25135396427788911061861554779950175", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21069983518497219328165451563465114", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22653975009906029481978539374120830", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23313775218725750036398782160922085", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23094917405510067421839932636930532", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22311249872472148436170434362862647", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23004050839173463517399700302280446", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21126062433801332404736685108753077", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20902606864990857019747568835017763", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22236036094764084738346573631389801", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21436671800371181929288177710861407", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23364878682420805829184024877426226", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22894280697517450023805238084686281", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24425212713124418105169979599790446", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21163802821245778847054058835283196", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24390075296795952995495889632675314", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21381286062522303950207540696049574", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20896840146497282785536878395127011", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23297974848528376667438684464606196", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23160429013040770123908962149878218", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22104061360962680976554761177537843", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21997612923938561683038496826913688", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20993983225989598481267675543575567", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20951038237291853131228035592746878", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24957795938220047156169909772685716", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23240052464846281370874979102117204", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24575814342311783492986840540673718", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21157314223387140628552936020029673", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21358194407862779610081807186161124", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21718974900812236517892681995678518", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21935227721038405541464103009795490", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22394721113120415581080483081607777", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21563915071760623622629023813959112", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21048632113701338707587156967792648", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21578805238657151099805343720949337", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22430747734789905670580817439249572", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23928208900093569612660570921948954", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20791884617201355747188839220241460", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22695504636351325700855778478074458", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21022356684849965442545323337944678965965790687586439905058939822823515082647181930545999222897520989764288880698141268160161601252072219436780172702683015185018227520485196800811150510571514840457215743491510429333903498346802063492049867240786108827148919710502750632497326112079600997489564292982959314352874535439323821133903256951700867568698909569379741974017067024367248453516616852713741336111765495624287978486924767776740645218671203843853791472728262053107596377922005755446331257820923414033152895996955163687900863391348113282220161087200262202959372542670743427539350026456346093898228560719639548724853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24533359278435471284803405381107398012156956629861734667796692380897726343922072940233314258989226715130267787787366106135059808460815523114184463239482440886431804216583755340072265941700707440816779126253514419479012914556602102278217589104339261173018882459899536323527754141422704049813276375371111491744453917237313268661567819554733249192773787484231428086627526356650952133706788681088352538278457456136062221334023745195412567023760915160946451849016031127051899641941980050696970754729513047081158367703680498470058702093997221497861480305195169634524255739555536977209581613662718394750136756866117826288211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28487140950143691795773073636301390424705466182869182035740637619949849376618403375548032455834216403923734448627804709043796160670700234674670616106844974703746066777208519207969240496864634197644449232034863270460163847302575714405767476044590491925670404619082830231671923499074737472871873005250205041116010195949786811197912456208738310950753160011103263597091449275231598627618702123390897465716688995218759231395770327475694906066305323806295989004949061034849241448189334562444368034831927109613171272480534599278582195471182845506493867466699089950528195577551946261499603667604926005424473957416949432622129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27040120274591326251786594701699393668457817886764870054529952437885841117063366929331047030538036675446508514628747483435203616182654772486548862006613770812449228957230644635330860663366238677960045856650857084592761005740027254119302902261978398962555912394973027861949994751548224419987224764882565578169416079344771063657435904971350983907041782723309392154339621478429395230006274138191951507532498744226899238071531511051477096424693421701280183445490186912185028274134502564646683765169894556305640298094107872815917649978101699120944588087901718716383326962572302173930540461568306539689919701953223580365587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28787229088660992894606743003603894360580658871330573917330238519170687905618720895719951596777936889044475120685654642532372889084049927810926963256269132271413039580180534476113277502841746105520586308867082940006375328200164273858161541145693372166174300300846764756089543889017402666755611057880504970497191873090827940579114015939552207032834932643194396278391980833408134261700793184963441072360565391815361907417505145548777484691476338221176946832889289883322558086954804715280629715896994325898657165707667674301414298691087468994695628431913624844816642053403860388379686422884842746479989630295211279512367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21051006027470005926177912162634477178497412854429333829522193433572980940467794927625893563974115364417037669831505794841966618411836622814276244866614878601719762290740657947185422209424393568064314672140995760180231276715882572313920638017130755279195161289568961771206023060806253187655961910470142512898828116860220928108696415821713419471841931782216340670085964585335821088212713695763574257603190169365016563694963130533704562767203058333392050931166967210727207571040630766779690754182594465618760117186830895950199424486662916533508949087424268373448315049593601291028470590951232041984274760144615660643939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29033035590465726427286396520150227459633748227275216932093116194767053601136957490404829001249504115846048323761956323261714661121920368196810443383954208923219140881664490758160789665327897852955637379936526450799883223035349086274210149673097348537613675899817500948420823803674094712628951658377044099442777300851633814012871053582618921256479083714034354896050153067803157438245905891845641645987556865076306604553192127935369590071063083324245068514208132791512440719408781697787800041512770021981659432620634906984152514353969144062174886036104827053463563719470413963711759002630020542653209113347351831199361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22402325456099337369146486994187456990353012284731757169817367774588339435010737493443525338516574758701256808431180433837048303225584928785418439138605636033941955150630226641432523750439424095935658540681765624101980813815020636883097731275486421173957089840241342172347217509529601412456530589603521124698817676880840064815243586870013250254381590518346601163080491264635462355432350843435960716500640067031029928862273699829085873878404241191010127297960453258112923083075463807556845845245423684372215755975776974766050088331177735893523293143821162227078761470707194596371039398497022673608781621860383188694627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24123888584091776563545252099480979938114957301638275311765350083663408262808238659466720071863236748565108194067176341592954864318019126645771558599082526903902505748170112048224040086993664098329852356683755502769785781681970634615303046030780923918464811988712998385609973594969134378123705021663650598226447274096312230484189766742733726458428328012581820404262262554237714715840846428581964601219347154539622772955218699423713675461766391124477016323749133756199239412573383134719324057115356345800195355987506191457361905030786334001627370077718415362223622315164464968808054612545599220637563838332982961160459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29338628731206136834553968759121842368586123169643381670250855884369732512399358104811216764547831742386611684903510650163382826625828445587614803967079736961834806002015710876824545306389365582747785768298320649458982061509684717948943082749217704935714951673781348798436678136245241272294272281870320490725257555008736319866285006532423100895420158561622788041664482516437004865365849513343662043246382594451418577019884952511825730275241060241949589973765643152378752590265439783620128892927138084611463227419946437353223449153489920382199190526827816656023450415994808464991089789849983791388710421570436087553751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26052088383569054387269195935489152081973794131227029882528400505516775354388455086561061514093350699772780121749247666417697651856113242430863394768617607898806424816664704255937865843785347465883956437166085621911450283746165879208194909804509659321413048530170515577654653327222106589098471427145337248952794627059673852014290969002027474588021109765521903056968661777931367510251160601085911235581401315824782030292187746243450378377831855926435582681813237567339343841214606458982876711126633560451450265212018710512292820875767018391958033688509546517290892604607175624246631381947551670143813100714613099231727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25158465549700075192889104261196268780909909773353039056967518225507498148538090780024138714786028217710010060768099753390750010439093986145136632379950435871679435414021975713971923857144695451722027218262272590864064434547311075993883910519678670146164596089191681859095925542305979218908506190451498924344189393644186809610511016651834465815000635057065412312513491540002671535364999760403268874315738544038178623515073807523827102118837896729034261635542376070804403626812436012614684712332541336250096886580259283051961850927027361854578359213241567959659785383732391254347394179945476134118026484438758691595211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26193796074376277975314998422410746063338872541564782776568466038413324106057371412245498163381715450168943436008570377167964491682310131379375657455641937939121007019471624961700030211526623966175240265850194712481659689875158073318655758879065830336970441834895697892861862285246357725727382962880889450824824538928273121597680024583565367895955984165514333885729958842122736750051766219095891988221774871907532950321857346869139226196577227650800863537755041773961200503545790051949312570987827806241813436814863903232470588112083882897545631814563148162450854548302038591220555889647606824795535956319857393676247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27399899646386591727495390138883655527726064319992312304323348990175606794751124604112226173791800635262331725695852138174351055084799457092523162229878349557408156426272591561669271660855130424970118515705079215411319656460370348523816397443558510499266529672975523050622043890106708827630333231470053729106438789389493714134420578069309697104821610066398968550420301270649134842846642587931445417417969908548176992082976564362914006766319981045933570358633757410975867753965838706236938788023145187827365173402773194435167981133746264130525957485912173734723802032115011123454094441808381852795945771417817924535419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18756937247239769288171169408077816391109272607693446588044685575775187716323974227507406646167999418261747825357854489052251794690944015931955933657759232908952364405468591526937095304554072176178535469863970707763556135261386517082409057734431898458155091149291514897212626977185713025807456620361722191419422452590088560491477097173300335238855855264799929419514303166580225892593184234116743371096182364097386753348948775196501372711321799872482715949646261518937952175166683325839407417926548921450111937466048703447217746954447545965091055568176573589847184359912684453959070667901996664200672862898763710314687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30748865539313983702055040616858755992480636925608081107272302184420688383133559314679953903694854070386058098509029943280583139454395247801046779472192848759750996565274465676200419324676311747608992277003570620659751323346940664760937076375965942350761219264400946379752430810298789365805571429156646455011581616856531136434322219295460573494625115320727346441754138312324003984183680995861501925638451167122959166537160108142863829167316135146798458297459050771412174974967140314405552695887034692280491807408319870359401587498829929159605366199409056406397401172865764301361061264935130194582562612277482986588227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25332455307689518423958923876841071788363115176330985262481634681370801808406554070833877089257079308983189601984171014213944111608049790069030895798430157813131439127372159701744717651599934455286628703758492242641514862014118950129461282976224927073479381135696707712166204186655838025631645020840165902187906586256643326711581148773864968638672430201852425496663376262887448611379483772840796773663031976224074899446639247030604545844889875305731300994602133257952285006193970967577006616055990182446122846710431772365342980832945739260270113670337528103024567344114156657337453409339424947460010910735830096904507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28375080229899454232006222332250747761174974895652768165179230360331489326014770199464134048430842304866915016601600370768710659787869354387398071500027992801130568287772747918833356599265162175086241994964054953025021503562207300867105780800790273619026227522747231367072352395112968837701394306596912495792974460390912543104516891546733605261611896026648669525798933999939399097097798001283348187295683810536210761855331088634601647003763104781570996630654197964606908057316921323239121749532104482069275196409575884677211503957285092289445088669706058578273808119481745918084248080111296867013707289592610072018381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28526051173969765890803903924388645305657779184767541808422868713101537022604083336923256119775757857638683465894969763128397561350962098564505286862178026746129601050125436646681478860588663169293229793663464778187628584512898457536126201490138537087223018169325877716173766781551028116737563555488710889962969006384216519227738427996174506778367565362874233549954601315298401896596754781901788676679070733533133092527804881299284103101929977990454931489143436635134387986768260709639260567874569413265034802873087238684008072560847333059773204316138399288244831403184157562287617869365458716881544887376717682770529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20872061916079300070944460983136848542220999030206083136207685471979641532461964773749906725226602867829547581229375087525811232256688106485153276588283537466564349359434916438490804201653928304470293918047502759860304073546873172371140676243513371693762492287650228057914705926099821025856816818060131420632197612687795032244910644448923863543497943485764899836380176007755514509269886185760262633393441892842007365004468268686154465122803306718606339541839292005313621986117285929361566408467275530536218390377464907341275902699707885411402978022228632244581529211595775718977554174003811854899135919069366488409269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26263220235668550698304770856174180298311788245240865174439443944694364693705800691416056719147755064517809327927438484463902616562386284426012883808353130561853028258095021825707671444410645606052256772565235465920717838889441986189436091467966593290048748581613445931492881841794937495432631094270733383307042747368495996845666770284774871193393677504954489285025794210464366438041732482364436468252915033220177415145672736106632694076984049635634971530890263077648611374997294703988620313388489900498504542709407820468635648691984899524383130331134318449419671659141016378876797577393611717940936639002939883155803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22859324835128291704679454127404146172884682869682243934342100480319417965917947196045162268106076069656575728661814157020924625420269596527263618546934212702611918903766721439730868460528728427776159665507822594226883922563990962431474495773361497764559497634819634798076814707109599685579980843978172420814658304050592113290130378837011578739893705915155506550513129940990273871416665110503973208949746579363887202964801561634567275990794579508206106362576579163158945216356244352188789148070148408960981046687798727299697690998736651373846491374767321126225347538168804566653493364343571425157816428265138834487421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24315689303204029245345749015225415319279815363316363443038181287114209428160577926123328134313323199509232854401782104360699839826733982150171133570566348718043960066381954835255694851698485402061927150483227058237024953091609168237892254122866399463749923254044323352474093486240999504102321713517079303394306600382841264562495094964099443196332862666028974415220600993513293477595212890164992328027468641003625163029495302569726166184527767956790496966476822692752647058219097984181053687399272633031503369259605708138781241202316611625907687498998770392595492568094740091748101637976009850490706561254390693594401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23323228925680672099193021627360273957789663540991766126671057413564579229045073221353052728777081419432000991721113868872619760478237783124263882011370286280664984106709876873497664147589518451256783326733097835483511357949179433930129188520254007650048314307145533883518134277654340534855254528029132279629560298888643507530749650684679984557035492388944409231461996559363917177175692426498334353465973308174049789965433213466454282250640787559432415874585492822712776430774919195293605866066038688634371449877486353023609969155132613560330680261548438910594179412207739293872434538650179406588497113824254633604049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24299629108028101913347202764011849049965064678437907126506185264852438263937140131954252983125231213726843951257436756702951879118219352334059249778317875428487490898175346561245855508342756953738009554813252785333162320641917916963206056802615770577635206254188423206714949508400837155289257040988105397778995219758019896177378650525956062854057857443012863274065696879002904146702867792146633178191253801892041372207234146088645852572921745497532650902754668332878120021662744576715789983662236953227978129902087318549570251727331377431308248792537440742953458374447152265020476334198485188778039590459272628315609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28508066421149095171031834717097736072761599593704497619610359945839909721649123153493695683336453017783648847052320620515538183026797879979424731718018269788520046302282085450903923899003319678890730737943985864458678181914776734839037164152164144631269761891214059042880316759809845073084692993376289155599580140102231081292766356413075017495706972211078303507864701021458400590103653459053259140663566434159080501916341846051703957175474963652144815371690578258572524115958270354446477029168566623498433792436201257578946191106674994023617325005289024957011444857921775245267974010485584723486833652812993475731509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24103751116356511691574737067161462086315884632815912494663882859624164377743000436694297322615050177558138259530704150374389760566691629573211364047437992708080847806306854987994640062982998760829437090069810524189198282961899756109868352875144261177349901607821499638525258842847065239266995850701223264900043938367774570983678322280180561800558977799682245876027432042903636244753945012830318224791192853175520414543701380267397951035534463901338315960251842023008275563511811600415623306326459746527853990830587706301421166624442837618188029371730219977849937998993386884658974249317397628111613970319303838351209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20395046564184982444041325118628470174725188485880378380217270907795330929599965707150797800351241737682559685137434659042198227000853963399628104809172471089556918763991629149523468484895159316337094838562361452849755760068214626213159010957023889630990460727375392657829238038068036317797000092673158911747270087439743015776689004665316100231524419422816745854798929905392166792373450336313017323945595869158110199352786550012658195622156356074830790565541415571571646054610747977877640528882835990855006180841424905688036037455909538417193220170274111040382106966235571079323718875505349370716939386339743206606279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29064745101988095702167641002494194907442321775305952257510968804561882578352595846564800838486461104882262385707471618642424818879252711027107967823282701282463004209399405998601945924071947627063189467715412778525990502415830364535301672824636405960370639534385848331677097903267169890773991673589644607335914342545330124743650463524150126110712616765577898496916010136696264368908675571057471348633275354937306330919618291055097013531659402860072890051439481176200117945800540014387238480600555294914717693842997889467695115105893820218645112861107674084665933333289451304837417105892957876177061187226653388800347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26032442182166193375245539990662214202283742827932434912851319736614097254625079067702653342968322991958656541271733709889143775777603094671779454166210944647500741614467631535916554299171112677256673550576608982463417367694631968147740664136625248586762240392884729994002747599064989278667404571134299691323337661859660707521488864627419260693876227168662265265166894412699511976839656852536904800127531546095200151740117675740656864241481219811878014621348694829853615779826087393799266758997985969376357743858798509558571819522397264374967888449063201017445685164293444953224898373552162867532337859468632650549237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24056286605991349547091357886770051860645083146543735918040824415023839142303256413989294040110605946455762907746971026844495217355589391730906023512461495775031013609372225586450388876717426667633787164748175389807607872673482277480958792512527737303188570156031643829229949770383599097949576603386052277109456587535533136106479447285385270692026825244962253495251213333582371335439319322439930704534744843991930647684243738258806286798071544681443591559384528799371776267496558317770938898798672753007404605703414368586974143903603982628777520641187720808071727291782014568177367794420933047115698533874945835655003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25483490977792691123078388704517389466232038742844465697578736686744625026498878588335634463895458978953025647850844899861730979430953799184976048879485895732000166318153654120412000671969191830527595973634250417417957545625963849835545601262484352296920828226940116854359308566565723985531049720628448436304362681732917694345021352146608482338619978974192603391979535320984424205955671370938802482065370411831282847131014022521731774419654109238592567440426681443787793338938403425090463917372432201487658605989748149227899920966933604687039043460269622005888470161213972537506706995444367864439866579231853612791061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21363484332021717266109936522500286578266666871785174480020470010202569046500607648088149071775660173386449876023444859422283200373964747497666322443839944287924478902481087923131784006451826681075848909888297730454681269721645752711277794732630620339476429410511765458664080235753008556848657948860203383916736224127658586625215699639052111270540424345885233804931941472031449182750600690212745639444318515663962817281500387801925071106731560583927160561535691470217395646806493570216384013153646329178771893146994851441179790720296396224290839277806590109319120833983557060236813421835820017675037433678585891306653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21783876740682769744368661436043127525916378503504465014694348813724632461192706068918344430568894920792873425368165040642781459012692941596540394971751773024927522538839704349394632586149022884790834965770233954660589364754776436937307879150364058421949296803864024693246689225745704006561296714594667577975525988930795620313843175191397163610080660005804619511164970020662706874584582877211062852858876422694304435158920862712010141462405443380286375030890805369177834856447330020476051201362405123481241092631671265849243604685419105273554424242788319094408626547088786491603105089405046612251318422079029420812081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25044309745450587168182507750443495393319288476086807626537992075890296052724483454773063703180922744220171962464778321354679646784125594585773079055184636405448485896037027228481503058032406570407794654214959410782898464015187122922836053566387453066820427683248967676610511563488209889472936586376838144294326133302949601142980152851067180232606314142095106722079252059039348856925897714204893701055463736194195229425190281924140572941060132439792451555216920525088492530565673019656214960970056521704838947121420898665395948252985928361656357933838333883401885292148049946280965048568398822029740193114772395662149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26307451298225951512952415963485027435879702527345015935276977447982426654554760458217819086259747864291629609785211201840061721236518172856709925882327660498361696740264891681959567287900421747232607992661745678040361696124750342528322748516408012973193956553761555974601869963453299612650691082750479376698296501890437925382751994616206205951410829921793256308498093231466874980865334431159159149182621474314876906269030208568877817949326402512264410722742281914915167848153293214624623303398670303337543960018671657476868334289960767445930451001045770133302766569199817144558062254819422168521827466448709064815801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23478498657937864423312740074152447694850472786858185762535432344423794753694705541156988631183430312741809916384137151793059057163502968953793429055974950948067149861694520860858778765000858498796204110507355539849457390347276620483906372423013907939010357970442299947701113350186557449061262885161920945950598331245003647915892560221296870894971676066137664487748849635754709597744151184100229293779734839270437226618293998308005959607614008248971433876377493678328148976365983885452213383807330523011032835378707172201296653543017831007386709605997767712001485647202057313794360573991123189285961354204053482491883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19669115647354014580452210042527953016957211618782447876436972028330467095622037237768829733574384050466872044810105415435079146008745239673278801901769566166964251820899018431566634573567300222659912959892591674267998737061691832433458323045930111266599184525504398985815361318413159402842285152241371153424333875655718642008379673579498210267306389102269234361174149502098217402764933988344751499717919537543088972251671473299284061756946737106170382697007960378426754338383467829773780276409213419435449786249806346175424442356771576477690792887048591021248226561294369865380169835046381527439280923059826908306693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25174162349653387531921247601443507848303540321313451994383997118344872217845254434131982423625133139164313972652952950717093198537230809186501040705369798938216056818684614586433738582088643369837431018707259506522179572172564069825672720599098029622942367227035814136815460688175677722858487859163125916416726121216421623465609626315045747006938085018942161314451508694782278488105315365976511253436845581437749511214812114151805658730676804300128529339779077935307743302237009276263146564201916519379555101840679826320842097145446492098053740525516602859626061432400622698973465933905511294715757830993896430112689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19692645788945763508194983650736452558869684237882199035970328309477341899610352718006521531632834453272333227351215122595269548221166439485998787206786773024978985463763406752816646984611129002154589657199579409373101595101331185922822224184705626662650952947416101394025137293998442669926788870976485001942718538302903581613732807603703827488127207079723161817262302364835409203417087845370768805151475103951376636802164872080545180673038755482233339374493023907610563746739670207120542773926127367866926392331549073077214102849722273421934178015406106712784993649553891229013991208833663685955191914572932003202919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30578155319080141226334554245938258741570274101045841288406867135037212928591230382973266091708244344741564888148323241052750779634382414780411889646194572734558087459414798011734651606886486923284358313243087877093854830135738000590720949332600241675211452678264571434800913943827068536075969534347488696478225111028702674525701538150949493465451724123363042192482574335510880415934337426896024663340845601412923193425214780803334442267621660246667181495553715134115398800234589747471895906778346144586014882399816216292895348311370111131057799550905508751254761787087651648583981495324678339862640919750328618529379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28115542860005410430011573408326248391872850437094401754791968670320160629649661426171873516938515675619215257926043255692213325756499831283692740813144578142091923762206381048043619109880563427942095447384425347370550975886094047123623937802450498314838689371623951216853894149518661864831933682611183980516721932258561502757401240348825097075227789615386885665923659350637638674888867896814431264624811305030359683603654865003698911817707894075424851096630104286922325115560479326990218895425903134100392461796583262052901203359801719711649835437018553315067531936887196246530617169715141087274117415763526337906757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22053262877927698113170280658165181352317965592032172344207442910629221344524564520842521638390474348235382265541091831955676009285601200305073355083998140446154953498284452585369464803106558868001682036222013425687169793276092200289155248060245127155309822026273950533663488951868243865775410337536771376372451515773026427635565708710176144725148211852763029810717197866355877509401623838537309045139718324941050014263449168078698658523900507603591883420970013939785686184671211134824825251581594172681412787229499906747980814145107071480723503782806524815854131508001321466807654810788467881574835954187931997424981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27014424585971862469394678622763806526353854232090316043044544456395964393014384733416784035286302564057580624588364741762414462726181316525442940218454148493051524079279182506992594151395074380515560163840219097755211484371715619341635920123893175849215764924700019740953839345151110714858340452415750349060992861549544261230421941980441518129287586398000118920080882157850233676514524007582375738276357500952184624804729899746011864945571139440322536145510843422234311251362540673215295206185766498796995751026023842555680244554602256537574141779083378026538599119354112361440406640354315367546371784000749726442299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25117939495793551289621656122028574064105559238932304609766896865299323188314515537852720859449896333969583320026635388050425866691072862544461905948773690152184261868124637004604325878726566561937394233082310317026548576529699745067324516200809566955791249238294407137550071856568613850591752783926554999581334059823030930475561621838117266070312527883462378705901618670134255449047232225460941290255791284065697917509058984973357922342890791726220160407642830405625967232276919380422053604534838699758308023347904363536273438063657407297737388825446885535296887573353474090023934226245766197232018854941382441403427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26892379857067925241090301184611778775186064390904274248843356873521977389660043804518508349595663383785535179564990094079208039022953863394157674654525461818404952352861991709669830310853210670250043835575084546186955148446558048601517321455258391908201556940753931428273187252755066145492507263307014051302603166306000421472110525868500233763150911842806194578941099568454929898087282766178151541671388027872673129979616261587395885062959450548282300123456335979042598387251371669166413080242479566382337885987029867612090015309915717283950063184871482254061062203015374769842355642283660784450556694543906215586767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24598617815712770818039659209969065366924343877008089237838504555797561102332859135077968880482609529927005959958653711975810762203731630603798910853233242394727836826641478123949210456470887188672420912655173146468006818033403278252359000403768480481472501714481260199258942967521224215525080309051434481119239433049973781598426148609468769709878981904754768372831304121775912451601695250854063599302940179244151779164496244054070802445518393149748488081189861171029461271966799204268000328318615362633785031470738932797264744986380019212439208232046108428859685784645072438361691679947100367052043228606400247481477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28043093424673604122520578117757896184323466730192665387782902257234348564196206376578894128037648929874013124945371162505240896575862627699341691261381398477631961983271438253200222873486007785777403248685666171114274250815700606357028477156921037266117407274276587325885692663815307128478232008991914168312071857981674896898001532322947422448539343044402177779303415115091709361254518224359587521017733815452222608779240067154519713173943669606632430229680664080494129295712457226634994634861051016506649997686657664971470123216580672940167268436589453046394285069903509339068999806950439604093753976405225411868859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23855943518883996013516419043987009267563449595952802419377109125816698706308089298424683847553277715752012305392053276992693850864643344229662551587975570239324755610154957040170158964769689670584059895294441694061598642313655716102180450700749775316718968037329097504857729822672076496087831127679812789690500348783585179813697414838218676837077127481333969304185487667553973657677515191453506152332181242809813264037387073229876615133050754089357977804117328673756142277339158482059007466520676032834361718508533297317107770608187771614646681545211304244729149777166063275560882478717150642994303316522179697800231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23416185641918099802602014901978926751831055536652613495039172055588046130845382313583842364358163264980418008219975615112377224230731771544193494643361398707559205387375464516733456210269246828031169083565173206805434441237932052904532123646031107567893803798136817415741727630858815264315044507951825599122941050242751217050721440886394344068197982702764519786233235695730786938403454079370956487070642630731119634729816016796103448977490996564658136992136162516418804886902356938240773111747884541627635595666124484014554690273367439082157511729133764241079417876868721048909849645952904905712018708162608172303551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21348094842275699726285615970530715074619946690077675956909378497461803387828371729954191219178966875360353522107938420919221612517032320034579033540117592140838706981720270711274810550627012884047594078892264996931141025475210876710074089461334912562648949933030346538009990004216708100990285874408698217979396641217855165292620406170736489662058452135695486784872434844124859456637615618702410069426505931227734815359651828653143525289641621918054655483034440043088139117891790158487811358278596974473712384497785963737055275877225809943468697575609184362343834181940893927516831081471788235467751442340958975473803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22526619126762413058749116141855803312714355430586070077864470161076732957412594358786359560058931973711342486433556203245659101398635996097231046390021706904227697371139066760467990817213132312930794643735139655696635248252153374863177761080327820892170396928092657663557130797035630391157139013542817323224420988698257272688279261519904337035494643531778722069824625572779465358458753794308485204485453331364128774073810522626713364809793254849855739938489640917154193690471398041393403756624616963076366058059384400952395857493642369425397536452608087404422813938463804489428743534646719544990593713426032452686401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23948940869792799777257413021317140782052605622922530778640481399707345938933146074141493765495070863422033371198859790537238587458475169548956938149652663369085426834816534506309545585754498061488855644280217808613382104887989201468161701033047864215157808439492367800053323725822699459322862408193404104750804464230008941748758098597102563231813036058012372775741680267223948245964466043931852540923922388142276568044261769505190961980104772641267528554454473330486274384395468025298236524026509831980074768737988005092538289527897734158993221331537652198694311731698028282167243847328784896619734148754790059879003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23791974295043803923957959099165611810990146524200002949453109805250895664903546893714315257067368838402672577243376316926660284515076182331078982801157398969564736654221510787303812672492112641837140908195874291420062101717357418381983911312040880181504425859334894854075107421726754412231750371076984101469688172685441425208244193504757270700368665436929031044130497358925802887585781932475255930843080028259431794750432858654298139290186085044759464949015691353752137716988102233569307705440333864446313705916177544749074811473008303727798417518966443614566752808382307524585017223860891849268661120633941818065127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23781031396374619990421701111266962512421123045003731835918043256016896212061845962791627371841913481540331206964992643784342629452474081580843761331400984664849218618728153347232079911539382442469760637681101841490218774126401669934096723638683931909138877277263301127877847606751430316580512739162087966967935345787724828094837220251756603523067379974308568597092137748337196233327481138776067181405082547657730815810442335213210667302037990620811499242820290182252663173868383414610349210060709895957013351667339512495214928798129524315370145173826499935804268118538983075790624638058716891559770286944731740476997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26730774486854913024190751805802612196655479439805365156099715783364225827196115176431893846336510059767926743072913344403629210210774475132407499306154011596700962184775695272586547860409070574386038588730182756009315005097409554821422067665097381733585762666028490370393654592857202320275824889180552721913557234935940779313253892707574902712465983971493541095879066036800823795723752379317390425863542839588832812862686633292162609854132292963476705220162544290277978490825069502207341933693865837429711471849379418663055338288816631237504830844218537490331544235917051433998505151362284501860905016223866775497171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25927019977884582103616405679686447205611501647626246745973471224340100860064280755794137661567553409231238070942545225390117265674224728578889661663973710229809822002715954757828149688813017865527946542403732718844143620772692558507480104687133877691668301299682407629467221924982112711387943922333164182602776638266971137643059443199501603283830131588892229122296603440716430459652467732060375414111946199707545850849219269507225432076110407559286192587004759663601446218368796855734003456095530239844292971777111519429749531309302232864089485374502103193430754499284526537535871915205299695269369174649971175407917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20641641032113562162902766052744464964890164447957019546647228744505000663405771588619342078423276279701583698780508636187104036890037543942756969428301231078816937828258687782523813985447197126937211288899644937420317790749264382444489123713511132112470725400953636329707884609187000158098806951141485064071348149356688396039264875343495303011560835294758972682008885277940007153696497443262568546259854439370663167580077570896028362884281270380483245738408993534015117863504099245013487074013461034019105811506593112242852032477650887933978871208327996608249249469855908404755971506682997766393212927572764216954679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26045417880438808197475797822862494144755016996068074290219912305945391843191509913141241565706531942305909441454922697692583373712675450798125610936983596969471923050961189955023196724437715279148526280687307012020543899637182617407501965209560252617633156683626941049099726823681234176485184142701398257232018656293375027079797074371300798837376196424591355693048861651375886960206480110153948882318251122411581921919750826751956746191386250347132354017378357760094195983524093569781702560181881465757694481199413826137318919566070618015948539725545457672061645538957401663706097383778631203823003471831401126558483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28315729344187756249765581813374442223338518311203589968583344710246242621173712417508429279869773705170011422559508843512861533066959224713119700719824004927503243463120777890745966393481587147849150873163238414728868171953152237262411150786427489028009478819923467376124122239364586769863861647162928116266536137875415152723977525528363892166635321040800717654201235362979671392277493724590857154295626148163970017774558276506656848225925923310932710392046105487402681536354397966349314331747783785204857049029738226967631123443809835334985591271579277833040229308688667657024330935968612922954461777906301684692773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23451490068346171915233746069883890522336876014184114579636670294874724019665547649632307182367794555505056107729946893335450626472396729963821460883409738740614528447010967479259347195046642971077409464185350186962033886352965259679939935046341728122064940005701587383617747339552484020241175864940761269885987091895764018833385361679222288908349820644172552349813657645343968448426064121281743918478504622688766985883407536946146419358291733453455973923807520761019835915350955156584413760865763049102247989914727157701957851500191300896923461867429130042896786137852576731484239487132077779393939116229029512969423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24943334997922291997388100601084358109504129964954013988151579584597281216433177236923384706421496367662560037083001658038211137131745317315743914911653344228743510495092024133238100772169315663473804096825008727075619856570873577794233554483994459567240296281507469288891440037176887605925864028503347741109592118550061077377524476692607641666735990077106626342649368481729594003958359064385055774515518936417787481148474636868879235741887332451955512508324242323151184448876259690310211493536334096064944568339032731233713179744867979963158979164605280362727130896592269041394178729612582727498930860592205581219073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23460106348456503976200346776479664839655484188438948097385374495176170291782695406432581675763365720999246502608720436226059858267805670768615027567293024201380846995440196117029154931897007249001672378286023255405440392274068032056717993872313834601773644747956169158330194402286273677408974703050296181596221864635037473003681045615908995202304354946414888434244224821838357457465788253037280884867012742695718194129183730686686856653933106680511869230537400020976867911119212854759043180127634622376978735144362498174475211695398456728154100885938115549401238367314846963062915527274276316530192320056185127949313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23750121541088490081600012216431682216084298315184645539846039060421043141096749517766025051316860510447192482220866749029232066221903881299307357876972031537861615398814325155614055913273100332329816774798536865349684315968885556202428770843866189930710138789281948334924119663610368097699081099567154821868996189579772665289815269301657219724878630030680436732612057837600583019147014587792335330645244402064055820385201002426205739301763997233219644936092237932208799767294387606992301229017142329279521211950681587403289610276317621467088627593594545079791097353276601435790607219655604149011899363857739036658957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23385493033298429670271558108055161031032705621190959724605714438963039104635182501206296974000690418200592980681629805357599295675736839604821384533632971433037111712461289771437531704222630057500866517859652131774323905552759764486645018450507165900571747855061364941936113800534631686471511160792512338986323784292949272189867402282549301096505137473905996137502381007012987851062506853812500564658974403215711002067471010851961436444516199178120136679736058881441908236695673920954600429557002829296441491277477672596322667525154967139663066287266282095047846516645920335149182068765366071635841591857608425478859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27705598594720711293524953983120338792630375325024534755259352557242645306884939906288115489605988666821397837058645295211826397071385811920401763744125435600294230302733106569796502110891013789160036687219272676963443419997293092693503931426421769322340121221983524794505425540880970323087626081618222792254626619401075773871689475879342989834066466588474840712095665627131370471738099893112105398465847640352463699714041994680029394024687872733366833531062439309896625255243440246118463173242884890470132971930838002586964236003259650542462026612679750760737657110000110713968498983720555475206947465952121299175787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21318680358885329686757648878500557410977965007059667293099732385594683814206418841793799398032005684253547280150443791044854781138510772254256134338347569631551359221621034422459367909742698870480835980156891442724513841946224413931085071050384816043574096869761444725068060575200161175849109279118247446935418236449851811588873103204335410802145751884467487742741614419135199297373144102844648936091691198604687302775355881828110096565626787454145112987386158274737684767880401150032846610084806860710236337245398742633707856040377778170725550481631196799879036434497849151077643486992499787910618534587267071462027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22834643432784049844384781269832048680237248952416904482051231939582355644426581172841678665663437065845645491062672205712775820947574154389584351998979959884400084594742857590092305442353597359343544348468551408855459875099740155728481344421653754811970695643631278472262211619728478363895774936076503304348920157248881957169387165232436465126838928126166383834413418500567456179316203118627311898331975534601864819847377885107318033800561772055367922670599950146800220943756492147748573845189203901760181459348163007747677345503425175419873000791327558055851018954527803095020429563367286057907198638013445433981551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29946589506807883285435381115132711421812031042247188335803596806462317773619456444139274014741947648623935453807700340228962029866458346544316966897752185369979194026881363776856756518991920351553952591542849434204304021211129329173253156734593041351906526753626889993543429256758466170212426708475368111872037317474750534360605326696294896617351935394332726187724259615717860919709221744670268673226809736323091609493743417106774284708998459166421972646011043868561885836323702466969150407877516579887765168826943029952669099867040162828196026415273485776240234388296249621859776233067193060793514833172211558229363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23130202342742228476524611324032015764794354196586881490984830274256158078482895888570910247363980738461842404993451466743024510794157427660360865329709512970543439398863434873180015826554285033358298596475342206347927990831910809247362946403409333294626392853970856160218211309234237754896219468310436500981509932280735829727460672829625309574196018676068094054386403042849204175345288565070133244712037245988534373662138983725837490927723264909179497501628085149447826558906901069577184763235518719550569282589155466344504999575685686775725765983467609407728865761908113250622292627806472601574066605920328576341401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27966687571070024246837236355434012958893700606867995622502395142289634546206571717199722648325720774971243849631249585701246617289519394556298229508301507519489916857724836503663372851244167454306822396177371410499452368671903095316495231029813906393980668847638529562182878880886485196513239059825468338556678504417553998736608197209275649195170187556921487848110055276073851354564063612954941725556337317298261031689613066408568611947925126879091903807156859454222386433315300132387677043682156353928197137068324971028927769142484095294384426431967068323992763392193705261995695587204415371289572108680364310938651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23159092302157071329445669000464113516044985257250058530502187776270962389427353614034912005875115806948346803636353827507782871160028902466261838080388068118799767926071188564995718258991149713175664542591829815944021827793505588371386756514622398322767233087920242458208098425630223310342944617992601002203612007473079348403191273495975090197068231261354483172201413845572312737105098496648550895008221576710910138419038814141948418339193634011941335554830936412304099670160358694037538398276257321742329001173632328832178669875334145526714906922960838709040724600807366722076121371066420348557844780400539118529321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21856915567216999346378400415117404599016903394134965582856583427236373602269305960574943453014504271382586785436998596351395253571783034720048797364637477069072554830153214748033748621817915529117001637735425972129182112761429936286528649004860780721388363002047742772397698284784345571417965156310747771927532041804747875098041889393653546968574337315120457181154200880766619939133323529689372548709615500359594335345826141038380982848372898731579820995303550319815229817723598562775094609037385873014825230021217132583444708996895493530716644225219845189538667687939774995688131849789326946475523481137747533329879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22428722627623715958315229586523048594720541148012573366782837695033603844784677654517670600192312576777904217832144638290323517826350324914849785267600052316893017390448752214334082699531871623228742115652655031633705248236019167012094147237823617999469308179542923169913182470126254879098075141341539589840973752462195883230813388036422865594283302472716097088742513001597994200834596454224482264876768235971470745856673754101803596653053144159711229928712431109972360650016111161925989904731896088608346040090605531922185476261389560435796967520867828450966768858091493659694476474173298036011228957175481609271443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23945786879680437515177384358076756822432885715921939177317711524917055795951680132266135749291401246185873536504798080378741184892160160969731924483698504786590284029615933948307601872852081440211833787104027830849076618570212319209274762907998745751606985711608573991306235286123450304375910428455814149794470296206200395342164444133477708308874137394064268329801152022507623400735428001430994596728876314671105806364685238421222175344690769414475970063161973246908360606539458362303523667401169294347669352765360104992308288755597149306233014506350569774344741928907951829681867294800260459323585361939270307600799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21992572569463383345381421956425115293082603403051320736499046178073913324550071945502627141692021564976604322496104544455310549818842778445126973191094808428061773600198247494508021535144894514586770348137842106277518101698276173900344679433158567086816049001153837552864175622293512539212190110878898028846551301380809729285316659180499368293130891890190042270943738204748832129705739290339249450625117937967307724827824824814673564373712976022835835164969194448711869646148470086310456009944343795085913677903428824432620470186404583373168370015528480135594674847673469318230038058448121770176253416350428058361191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22797761056201001680402002912428490977676317526680673237642371610555014176056822359683340457710235339620083303340782131333235287473618774072229060398119493954288924984393502940561604625459750089588916057721312400718061368510263045913138546368317664513097791016073428655879331493934831973280861337432401141689152988608261658445019627304769022541749196241711254997042142878449825756526331572008045856722538708308643452241063410232335696775946322265202451584101735531599960306549996346603019619492590019012401796068252962167045357854423432403323149322533957970729601922260178886847716050685232004291300668017688511303433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21531862725733384862247578509358057447177684407318826921965960988955457069882784136814346602441285191670147725027205240576338445948918637930289892985788996087950319661948945508440850456463641712425387730994227193910584776916815348422699901092038388280605806929903206073089696890565725099605187715267443050634817097132005904080417168398120200530017916136081180737516329960146069449184121327738330151062275901854200325252301682264714346936911913924998711183441145150889772601987221468478646893445509069136220633508819084781247882519159512539971546878034584931361883129994413558489080163820878149533608537037641406611891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23075581583300001169664148025162431193686512743734701349303620027137971236693992265326445811153573691570263194026231283766891033006669841175269847564085524140326798996833055472986379307215005875831498728696519460356262473909627828898403244441366516810550184530397768163958927242924749635117574481039113854061641826142048122151008410465121828258097644679943427980716843336477296826067761601998042243856085853082744074810422093629977261876560358541557124845597408952714571791528796515979674523201003453907600541549761534456460585329263078494595870945212315800183151954480581158499191690865427848473695460775080408022789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26355982489675229474210657605535666329710088490139727287696410783356743214201673786501660394147616240445995135010087862488185857930340429514349804978792816165898417593730699952827853373651573345199577128659891860366900357489566857349788388658649313430804280102514608574895191530883571718068681046980252842702678590471293626815466926003526687260082207146691808544737551713949102102095159064716204971401867817155177889679032502292757458109493776384073446785210858247664307357818366517952651191679956004732431701092275332479107981446452016747775258784612224622231030087514342111430057463167046225277918488216446427753981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23652231772020136991296065526955588467513805161513857131472639182596422101960878201472875840193842028704357424245743013308994973896521295199102821091797879114255699755628115688630663000062059899867723474405072903458648005064264942737616882361058700361248788594773561238838138878432077708638855884180209187580764838934930650649777877465425653150830957939788983428650596739596978428501310629537275883983627080927852803236878166341687937610993645437179285859457560770909854894576897205169116456396120133473412001528547250413442938687882387638611844447089695738575665347391936868466514152779475597956375826603455948403281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20907414724975330485022392111061220458956589233873722718007994508953522031917073906625675060656648435328565996140160426823157932725831958022199692165051446430380127526182527287753753441380646820805449010444487838819187069598661924198656523641357512053625021175939481594111601513130897330715095081034872028228689991770450612233808822919114616717358078011513904115032714371463825169475919224567774761058977315040312097226720220960721253522640639386685802318477889502586469307007000999449399531953606498097465946270818802373693233120978356064737117093015660682842149732803599100652654868825779798754416865081497675053179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25179578917111648927746620235297954528819756847731203527536023467988802967662787322072076446913847115053484511017516237690066141513663277064559852311460746767705582627227622887135265472753042227687173481429103296110082195459028383014156591367565108645766145428671990551274059596830447120688577039091146865197099741056292553641159928758585124252955595916320110674038741266628404579603820540594042771049964118511990077285578998707713964755275500064056813865277381973785424756998162877044874308068238162272503643326083847630632738620337416740093915599380152075225284686689834919077859383122627166473109538456708566664477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22027737193927934838229751484832841289044570340309205703790251873794055073544971978344569702874582211521884909884520601405236091429250327033287348673160468239713717245121728213715204989117681723761538953939845942799660809505984624736865405244295258796603732594934782454858922400397237857394836494365765041137363199070883323717986811077931733853852813514720309891258473689883726504428072292194684476052627358086620329890760666337793250621266839561242008898890889767284253379434147967104223826866306242477435498112081264136085976388443068821862890294288695345360234463122278587378497407225009051912574795482258325728687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30921619895593204750260651928107423247582113592130979907600525506105048946197101187059750203383047376631881620805941376009930694271546023166559235403171382979542606066747224663956949963588810080087873909011668914016050157620011121430633001359073038667374936445086631608143024309250819936175132277303905322666354440851828287304828033633449475203829864596589005764161036100689089915447649504339394607657650560491109255376156204927273829086813268768994046099543541695257051172075276362169412282397975835058035305245391943610702231598781012160757449590319892347632701797934368757892614592636770775642240709237134031127611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26109152514807127760090214640197282411933548181094805635637337980261366520443613717441542253175473075667133955594171782005632285294292264873499499839674897675815985593076019660085940062450357172760092131455221360643063306754641046961342837808251763226984986107519264643098054633296980442420341509938102046089847131556266371418482068297795514843409632155394172411609737851928937333238655813855390500582071945702715661496443734312553576927884347672235359203183273833099443254920032159456591687039957286915718839720402391183717982353423219554552857662871817909842850847136903694172075562305469812079271967248418065785259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22551660570250171709506748770337894193883846769611670008812931091963731959551903666750360578345103200443571966230262902435657672096401906775135192846455410230978908895955977951735259915420349401509193581062628859673551252961418876968045584504397862686382723124947973686073015209806568223254848958518419187448391747616862114423728647298493156843524044975287469143868038153961639294840285210367918025165905577142653318264577414512941367894835088159474493081216545724104569841720697225713657606234854908199276309522634421406995980475090118378386884906700540962822572288363428749722144682484456896300445456937368373243481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28081540786631452795432889679604538340538338510183215049533558969270659563239084968305269836314451470507104997951298949614886956864683148467584779888057272116254193536050807081466696889646068674408912370919260221858938964358450603192744538174342699282908968767237504413236116473297199975360241750820589880269375688427504919655627210323826101862694150747019936983322235251900083386959878951530736651481229048512307230220494428118994578156951218718581512101942650570110819178188065027281995465066463952067191332571156101074610108983174847374626749589575980526434979852555669022586643690846658791501458036273872299849177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20582017858060741732138533102247732948678941004020713813182553517518038820214616461050637595496217377989449251036838057378061458174853864766839456840629894931438995185558610628213042023591794639595687402271327944275275383745636652290266197861728871945909623463171533965486083147176959786965571298490989780885977163986726658471259051302573971074810782453142518727579932333831612592670590236668141781890948677283338671304795412120823692188252379957535207613920056351754088721775333426046550288245583287708658207769889613381040609983681592743033401685763668798330641705804641445291109276851502618377180890394484800259379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30266943980132279525579560427544266310036273337667238262906258960338264306178767703101375386940822340297607219561047939817854634157303428685702460356808442031389913102097010010936759129544609370028442316544046492708150228801155233315979896969605297138726907556233078876947739468964582440074162520909606038389933869242676276857522696698841354631089422111880385472253935327592821390790310670257720490545857805578133393994127181912928910106535166998014407293241529372191992811447478662736688804559587379715050749504975025546030328476432004108910281326326998289472593530897155432017354589142969357743165872030288118654841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23714246569506988223374893209071035884727776372668718758316202285438252577219294322793747248731506212330417227547118730516792700840742467892736220175571144499546777811564117012222583553870711744211102139991446288431012432354650763313402422759389322409181218225136575189914700382593063131897127923698705399997193188384509579139488644999255548892619882399538694150907292145552087148739081221418254002318920696364027967808974397473377486105183951034744164539487044142139689013545498468567439407418699951362400633949520561189668844698824007677362240196759382907117349826265485128315442599776183311977112084316310883492811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23778281771455710086349716469524011935261453515642210206770697237446977586069004647738730051942457873153091892922448837547325141586784154148314013557836401287459962182483430040423171938619557314471159551556015072532039448280742820088122603620779753008276174159031416570043491642981418636076232824078035411135993762548593138243329440818327352890174015685289489154802467460475141617740775851739171631260815207500100932801103185228377542993474070898566824941043409832346250110595735303702812905336938340064799622567865805856535987862215948001403741518164849066626562534936167287030852393856728311429060865563904660752607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20059744886311679007620409968220413321596199134314736015175543278344346610473727214354336402105622238022473553305542934595199707585184801142093129846626424684198142612590529161570725915555052572687237900720549506867598897495226204299725704600192056555921321884126935183350379234596278377649582218325953862324879138364285775180759353886146427329820143334419477597589572241546201703105582453435049508079784120584355179682787691900948915637884776503689935261868735085235273127781778806516755905727211870508791534945348538654034912170995304130613585227417120232935811126488718456087365925405442071365643158880345238900123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22974835447662995257116965349461654762798819926498424745810880059740756282962341205503490162057645110025449355180965605425413246458317077148413823481670816779519723997904776288065844505582705893483505825315395611263218896448719662880517359294171530511073845292321131715592641135821585312016935018114854907216510942216397323981668044244509713657079890652629514919937347130892395006016137662995744850725759593269557596520855650987775172778644180162182407126126077139349849808271123730594111811982280059492887119690642085584763036844625385744801514004566401365647526507148794925433352126141508648680893591966005810463851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26446935566836564165139469780313831494853279126125761551931712129447713184777737022470572369733746347730504917431784994386998046963492325303013344803412169159962843515488308551777243082546437262475834356367801773726085020393658130105446004341452115641526614808890906241062485770489765658657841369007942928931056597050459998608920781436665635102656341775336423182933043733797049762404251008230068663217374039478527787365243278402142425627090225360439318169003100122643117149902893035437291468902078577945952517634562859271464372580322397677014403658071666065017785775067905291108117977353259682045479994618155204559707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19085265899593532813719387041793956583023606409989567099983330265660156084880310665146328520881057653304758669347703825109583315107432608157022856992186402594052721773773716208377793438440393248972480952749370492709386102421662427385382733803412948718779251073514695279532872058242708092751180891474215631680740149465021667383146340730758180347513140611755212650792477401094121654956624618302311523789966435671924868831851826644234721999431268245875097315016552919209324991896375176736472679408146918951074976182713987747727840901159695334860175741576336209504895770252148825814484503698760053590336118342729899198303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28625726563024665286416157476353716807004171133740251762554974537699308671717493390463774821957347388109789623610293609597531171971792422810715751503589377550589892145536755369460318738608378907519582977618295128214430407517271545610764571361033353622547811069341189409012274339579454471781741552333032467957468073180156284578530736189258225410688797943203677273586344488023734796457330294132567196799152508729400824945492926692156239660689162898169829506828868151484452128056777193535752181793835545444879796191039632483025390697351171279311865696717238084993825136637066110857734566355556192987895751104180976039443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23638577008836804339430799527628867927861713723290355542412171464586843492075965438119922439803667329487260856123546143417121551713301589061908403784740813386566130105180760761956524710406855377848683667957726590759374285124372854354927745200538416195611783919424117540206946490989326645051858155020965073200556104653702991389066776979796787576640802940362320608044156837183110788510760453734610978796010392295114714630596070262434522612978490277579515724379514641311764031160968562215492494025159726065067817029441835909934056625766184327869840826510352780102846814850855988324097704571710869109352611714345772636091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21427600897188114291440942129296151395744051752546192626429128801034388898678918420681933421546005718453718585591394941596774834854371390268748373655252311382710759800879889118598721389054236069884482063314828024139792214677343855215675070674000357397293938151710151487996447315316714367639749746605602526523599569546977391025513473446354955302972226235866767304479743405934002119339398130964971996620786423166670373626691500661134796956700302516902381486872020149982887711720849706193991989646766645132509512973707756526249851066173595870707735958144657995910328487989837746665007183300191266623760643907350587806007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31845026138249313368601739840673371511885279843408689258998425648025360380947810060103326384222261051434698329028594356417333117076188184682396702461880682307368104776474727676798637238989599325590704138618128346096883151372168466690450743824087984028829370949022375201669692225116136942636139546810813553194095513769424459134957173759771767956849042772918044858298114173126297986799680022379735174499346608829722016290286180184509963225168715425697525950948214171980613438840813547423456427683540874752309965741782772069003018417446912790218094902450270498697464131067891983504932762001774303443433380643227515588553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27248700889571664694735470356632692691201252839822435290794333196603321995900854177616589303776859793019925542600479751233556841352921465600551062071139899148778998237581494964482775123937683454687822548484667020751573407674252648862367811885999929865126646990414067186693811636240795904957469667941117334354733410202076021082630251204602489350764801041644519176183669398912805998257834206648247717881705763936094200663764175783849072076133221226549465979170250939350082677094686107777060639550986889314368646752425650405526849460554698913592027312089472120675960416366253658077260173956526288652090599781212330193683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27002533037580043081942560456834730527216273293265563000166146757686869120460319493595373152756886570903695433988324215837976326784861565126819550623545764422449694955174315926093827033685206207700177797012865768000224523616360028430415344674407780983366075249512070152226070422898953504143454083488972270371728881470537794762503652940653897379206140544307613501909672875778958130129571119581970845157852501744339240897915729721144549559398194316419386663173736745242476265230843558587199926412247183385947361701225834805967443688232957066027461045243370791826654961605543410691718402053843082279847178586616740586091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22377641764785292447094187827827622240653396529606148605616883868111502646938156397215527266307123600145078001690686993373821049723057975177703724962101618880269699778219672998533479628947409736150436688085853577044607933330822546669717596506291777918924691168176667031177443808618562044148104592639509343314688978980117664781949330511640348735118973669090905175354079205676318270605953423203941422482684797599590919138770736489917996736724140973440592023001557808289309773046314265052792463784526781418739856832278944508244415050022552360270369293039702731968155096534185102641621687483290524813167299730729134922561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23504275290149274827575644048188576914751843900743199266152898951253053764065846919781045208030000183900881604661879941964318053197892483669261351225707285213979801101662578437445122180482830554967664485980819850175139842761420690024660535580922360246578530981608170438072992193788205982754699532581819330865413974163702825809143179218787186690097184979304816200767833165238632103306736687327427993691365473058183625040786965008420542698685451969976415153968017877254408837032595959672420739128991030207995673008685343938584719901850011633895258460081454275269594190361807935071758538862988662092478007428320791483827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26362982607315869715319685501218954661576159210081686767505270847332824602653349220152792003024294088797691436768226027271250114049626337466708622136020942548551667573566042440754827929389300611196426759514564918973987805715503531138978589568643413098278580334121157995943901321736614908401746907965137692962452886842276747080892706322944903201405645581810154550021956564128414834460268216644464165110437388250072776013076068139152097465075141260457974298894951231063206276131918779843816369114469959702281868893507607871407879397975941043061417897533161427411658497261043570724173537451439518869934910024524554921457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24740871653929258458764307641154172798709045954159322885966477835444851365005990091653173843201680160082787026494010552209576461959677089338892356761607433610000233447632274515713074109570014987698199775778624362369899491958157838802291253976411893571031505952062212247425082341300584695348716689951428432446830950594763894175726491572935692979930046797723582426050399016772323315176587251454469445514193503424048875558430742267817487629544364057552207137633747558968940383322721399000717477707482505376907084978603437219895903235497975347136762014937850581323172962325757631203804523854461584371636780812981531310099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23131939069506175009473352203625480024123076747435599028228450688944481337533621249857132228371755495417119837806298988148575027292610760835400142120514015819104613078741644603309036179208093031232731482175325593811671183256528713178901605962679066698651220436887317735263339846477344071531386895987924970861623029365495619429937759566282304625418929671554656459263599011469608633138596842511206979906204921567294442217464706474305871998009502323564456960527361870867541903912583365597469891694695553333683679715169551170875672018605528702373551663458747451512526546471115791222802780143512032622532503703789291847511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22651734445264032084632965951190374186774257214611828478652567576957307565041354426184922156755615936172980397120913751485614711597017388709072295486686115120428430902753667790637714028368890172461711671887098723491867633386937541524219677832449346663552892940353879844903840654488873048834070510255525315526478022553873641163658149030812901532259293237552273293669825448591808620878617362655097327558680773694532778863855408869206370317959550476877975443676485457111379497686332814935668682451167249837261497438355639631873888307783485083332265903368428217023344934979609394719595422971928282185056699774446730420713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22838780749529255537405329867772534348422882077599927985885327942697870739133812787873669190745483359530342729820009764744798130998750813760876189318787198214237828042368672919047993335752902301869101742141253183011151040857953155936119760545014107209521790038210178503821426282227008460946657110290357225413289407952773337710348167110937337445984337666740305807665514367863861782642289687655857319219211332154893968879744458903574343052314971105102502869838705368500713803307546332029326547040054967746114091461847056366568499211692549466298568013677988663733391288642435457149669649796730000737232239015897034813911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24309719963431501284132217231090323247516456996723992506370637599036662896706041290369272135862695253715427215465830399915732427996001766805281343067554335482557143200662954811085919725908932515781863381202878347955877853535188132142737619810801546400429529956327278227155100477216151504726512516282268303322299402066920912944868936345565978637800349856310012809916415492138556913662805457918679792006910798963584310112863360104563780288625252404806411813699901485959951909168555866815769194645969592476719182218465816327859349168255586208634614919316160512213784567204422808390072213959668257294559773148564866203113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24908768449960262260736152185562582307136465446186616850956542419740794509785173245276474956505718153735051508445737835820424383509876063849480973225852658137311522508295037311988592746305059290351880724007100013100509336437528441109171433561991376163604883944744868700826152804795247886909234848883030867801460808236180299503026915838138268960500100349801256265205200498852003815047010772678242949327532309552434570091603594021468029959504166231596528317521238015228403633856882043711663418998400892189738602769541232135438462954283583625455828384805475314662254563866015882351461370343697579413206242287483565957553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24714107336602730362465479539366296904502857370327723556938613750118741454633230494538490667618567981425616715273229076943520823443377809739874406181406831678959206173287563763673042863370832996773392246030585561805605089355097641579760422636568516755133972965547564775885542891757102610660485630158948342480462945303453428730943918204685818966102269646387673750766937305995078534344386235870659864736299809060623933593166022462879880249079307815697908683217309805511493790870384692583807278063280328038873534763870275682893891817625396686965885109050539600255537208864391241571859860729967149161836818505448198119529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25234936373480106075148038705495163907743164154074507590407450271626777561587842187730627249491762648372170436465784811195327764722055326101431806471231358552004495621430184425596666390976143993388479654214101086474101017106086869657925027479479907935040648932404196132939510936869840984291410930831518584997575478892584911929345457972312435176228446364855884804881926051001563428606366411930763885809104055787948223552069262404154358879179772132938009988888893593982611233897321829723902765751326041350908127309850219151110159775592465378862924519487491110385909486728070108286745624606598445395008321237824633678693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24301169394583509335219897524076151538639317396848576193228548264945864746540612790459411617861144525526270045713470752409595851147910194264785845493499252047350653956658519801026010291935559731151177505616705966702749593674690167645833357598072776171575034167432979933896583494458133589072576684219192105228427823092560066588668988496377535827365536903326025577596176692918508355117395204591199606201658403072115320825846891734961850785149986593306617768669864996802519225312296396490861388652825434106200087042796864361252822520439629353287251020015687173197817811071537219104575725422576072022566137995038468353679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22449422078769199311268610165111585523775060356248624643321440504655179178346805703009001954361852552671424580112617649077632193944399486740340970425686336310635025557035710967581646183742611163710514208972802252715457094578601792078356532885324599959174590492103873150048051552594118791089065362237798197746584827793676369261286862138013507270990173511831786885683205915592866902944916328121931954145282281943367281159934784715755948914770500438038271633176591905309954890656035245630391305364333739386527641865281900792700955710505942794160700613224570172592739513365116250002908182159664125827222495049853122371697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20687019716196991717989824740526991103642893328763581800635551070279211425234148076185680939026791999035972670787034935417647133901897006776510810525421401254200709322811479410567136741932945793028657661943351804297439916989222052810017972832994614904067228453621521457547873551885392592540569136940668609088492749470653484637244120228599385359486440290704187463484719711619470465601138249112942247016798083108186206260249189027871505236061753814569813762367633519701854810462850580701043050199958474274873809144184070397903538314274629927972636533568954077079872020520847715090579639586022857349719732487967551883229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25832185991099438258782887804765455737901030935124217213289739264393083619466225439539038932831041531125705945436812603443136485929027041525035890782237538982540417294920568680226973560071631373022571903304639853460074608927675844374408358052748226510279823147615987922252138932570887501532267008659458923567118272204440101133049776199241680598145292388263168299458983906540980007244229556716545057375979673793035550693783760875206161862316149622201339672857309841205000135615986047722025868185917671012961421676767856383983655610218807248795198706925761762796158232627635324893977277836822632174320051217025816340369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30129035570025779105149904679499581026212246937940456746793729196975475300562537813266389358457418901052436176079513712859601799093248019872175683602148670054079421730236690593985448404034798822996246951940296049779251960122965072118998006869617915207501599558033758137104176457640230057318404137126708569497838612255312411180614160069171317820629326111517432238569430067783819562329418942235986165913696404253660719228123310512595676628825318622824997636549129029717472504426032300244178298910625665638569895767163112269000293554288613651834630845189684531472271042839637327750793531768234668432299190255625274706423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20788346577374518446405692509887834647672710508530508248581106802441257329752011364960537073996127735262694334321415333654017596557824227825104201522322775259031059248547234362365751904081065673718277796095907571107071942956387392919579084708323753572374814541401049672889891035865562075763171395634170955066195900299815041198669541496780393885242296223963944290197756034559763364596159240053269861217467369436669287626516526585621710031885469325891329271646082052879165317567742776329690869433423253892326604159781338987171407237768118220091138245887065238909567175898192710800663010633216637001565415714271495481769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26886971262781616484089981156524597444773465692105992810013086888043694857147850198461789446509050355202001503943821922350372976394077526213692496087345029798781580240773169830543825418258732491845866259382281204917120004497904953504806166426374145304057519712168192099565922011840054628768415513967951508310107975108378243737707997513069748022248612446422198615891968990507731515536286175916449565384754874393159684611869395607438311212541229018852377965710975335712232833094183501417731522322864915671233222935408643420099796959834471573599473591917606020891242957761443947401568978846988874290422592606201931024447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29435823118325161084007313237514798369452190747175910029399732555738760339757762124784353418203047774252162793727763170967477072692621326256944827776289548803249134851683123965402202615107625074287649259919110831759175547169090862452472510121981980887500472583426092128829299471030749704276289934837688425057519522985450141098970080456794576338750388438483087248937522247133365666325108607949515997797043819542262401688041616989050296541962061857747464737022995294188642268605425338271247689646325691186882870307986181968052990545831816517948592753341211892732600732052145096092267530193550166934986474687536593729421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22030675793727194076129063879840784317164217981974332824225191498013186982544577379002218865769606926237734501128730043074976687966037011764655230067416841192787133876543234651591166497497338646337004800117697256215564912286796179859270522728184439421269037977380249121787080982352332986629194757375770637626071982582806179990521540156051622942558999533049673065231194074837123300533958436008049157062861913379765593434235944778243956833866526959612806081170414325949728558984509796273059434152538257797706072284309767432372993763126279085523536642965083448256863605330002382075281061693690042959751851933890446520691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26444876410915798950432238458291790419628688418095306859165582699339802566572531417814883815392501570219196498925118463207830506401140515495917346994227782037622338185222389164302324108809781397322725564711930981932019959878104593295421448169513905595547676900703317945090810438749390231317814074820424506107809795537431083964894375528658114320762664912636519615308114746756521194056488388029709234907052539570507002338915861090833757723993316386029754498057484211373060196183388020615317636192908407509548723450846216652711537005157768071816288776197785520723964065023113872872980137136301135473301907408633390189347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28302019552306727254824333875837292595248948254205007430662447891113091363649604264037172328902378859911654786980407785646629540197840094298095920392850206421021798707702518508234994151167470980636683637451716715602777817177642864753583687371702098072730512567761659911968678685680803857143253329988868621743663086179852510863110446943462611913179653952677500448706177076688843702420440307893571625245013838769700454306596830266654932494067140395821166357329484308408411423002385537263664950752019581221609352734315985763170139780102845243856388251188387567785824032368356813550600175330967504507800426440133296009809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22444814311639334406941073917937462498830740808367352587304920624778633247448953415744402985308217997915704856270639335058390252679539943465186258954359823419120126534000939067493361990486575592856366893716705446074793438378724440016899966274896633306382235586036405873004783942739803213468485333601832346247365794132990549130414530096429964509029275969599800474832070175304875505800888638903066677540893650576349062318563247888647867590846699164364844160838292454155775132324468262008466315632723053474922730428110076942941330037833620889208309522004039984283386467830323667019621233949795135514628449276107305392559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24073733673410048033406528045504860854449327045738848216597272511618526523788027114052999437059452478901734528490696296758548052767181307370364501345068451369338809649993470714885261970055663591982904354159628500448065093744351701513161110524439822107475103764107197874614771145779599607322323265147800422778257332441132428978228299070961248341222572866423956014455262020874540020295710808359726279539396828105759089999268288283310450337529421164760663665101387032414567303339319785531921787468471929705596059841113558062689190142149135054271016624310930316149083985122029051284818602296144844733264484759113150930883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22869635287584325617080412875970349763884363497427963908132441135977651699037312375065951765469098466184810044742591049389583037229449046700070514073205232038168974032246643677919506942446765206785375030209896344555455461907689217774604606819934524163966765980701279645399154598882374938339966914797497063181514716423430010648959259163959579216254855858677345600797302314281924739423748490638840310262730124980654843724013953090564335503102424405602295170207772790592819296222207877213689352187800635742503611854800073514916359292610016762205297485945939997538577863192918784320762915742136262149544674573977922293839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22932171340521538716510812220571845658279575041317164312975602970435088709881893473165292517776847174783702996887082723424736628285474840286419613186525872347139730606241001003746407858745301215867846177018963433536313733597509310605092428659077110373035265671035153949961126672106923187453764871034833145358310013620059530602568025473872484013129399510177624485581865907926766966279772409571384010675275685277731531588090776006383726764779144660999605878572136474721470854141415577078021384236240806962194873542809989589440469738614977858846447149615657566924057749033729215386206614781866243606962467990997716857141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22108486155395655731980442847886573508912902217423508098187810526507218679690677245674806801005082575041102644390118216499676787183136547187571027821266674488306648132131646591294456841697908062701557891230634888237191086461009766157646367350112806276166375913098534026083736329418871123799100857391681963105515291867078415194139025398444996833978318664708011962375112237380574816837413357651265642848125105192433749162602634961905034736534016077301676418363150001598924139742558007836689530869359502844159493616120457354320658145473782724871360454301440327460187885178905992238823781958563434913782390517161549849689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28001339572529763573805869040604170045045535536620608617098457757971429011894735966237013104321383416110971257849123858076965984193104537480321124240628776515650848684033352005341723898986486190990306024809084848668566245081793364552539947463648507470711371113216101787665400355005412649587802535039607762730227627003403756457781549441411180243937537448012237767275222801271337342863454021092431055967741251313340400067447618361890085990222817476540653344075161203393618015132047079390934963852213354938431848809481130896991862439601198521659159070988725209562274688562307365405819931055932715402006766829000006777929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28474136334068495273655959393996643618556279106641414890741566649131883162369053409992974088864069055241977572807688419961437389901462931981835463629668916701711055629583028587181873223115008622580258809018159463653764096770200027646240268348747628440633839973083689062858913425147577681429307338624071916464234289396937718069704640497923052869258412214390083098214191420260102359094146143975825892171350805514979656408741863174690649417501271299752796382221474992933682004288247798783456945331359345945461513211617381161749470207214392629257956837931204328256302015236165942905178193449975940513898250523825055164707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29863975859344194091813299524551067640368939353272193158810176907982929159834657143829320284095637050845942494188959727646044341881658279884000542826957831372079502521160108588208235193061133769107845706379128102483087445113252421170393619415880441974068041309028213217789311219845698734593489306512220148098852054393535043581784697325289301194288380291480958371640986279099616152470102425221758370113931716108569400410822454821028565897532333381675555393309637104369244434303069502396214978460484525041392218426201333568661243654766301946994333354140842697574183938817228692279682891555974596550559135322899623420807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26704443142270053573682230469677738441102843829481144229944986415154020596044804157671308802293878734733428821755143805406878548858246911722037026108204232694740828738581478955251682516127273143222705187857920862206977184706452600240718934697645273011282947352858749110741626182865641595444879532485005517520481161011569232696805515099372841454048429225651864449575374427839438322330011639877928771669414915676168748591428452882830878417107148847248907929211956711538208040556016091109386864308777952012108540192342884425450896660028445745104276615791928069562017907704579353758820045243083094486443045842969415545389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24056545126339914549167294886090452407763980944342356580826147989076979597292391442083040874201419122409256902622028425247491120613966961283881827495320576292704078646289453349875027736022128543519843001856532803946191266981391754768127909125884279080160551732522000325261647854525105752437905354506658774222448392246824942371563945537309002996740740324959800214235707937225094582077012188470526541202619521796681606899008941941124614878485195366429167968791295769815354653640673590968214307966623993052734915223212582893784780178509126005218460323835369804663756417277704704118505845423687401357528719709290848451251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22419675485933833867147077887809991454144504183489915415647123204557377820151301529717083670500659742464583153280829070033683906130122041014716547548316381301291091721219724669100947699594331202572997863505197119471060470687073584225789818096529577081031757861982132838113604826481244589374664952954162968586884833558905081693831775005121686799608179880039990451799490903711894566215642490567639114371921248822184959921653637457066830171778710866028567649969035854963076137154228451499050614312719533454630626825025515957373679830877784218025105492217438662554967467959939236109522325397578718297180517959632490056419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25018890953502744626618594526568770699354004152603588839421446558183419043896723041157984601745663975691054321301788315486916437885001536564347336336557492092084231799398728771224897159863435542881753341952848393641801332349308452724031807905737686135136294998531125993266651659443502362615193765279750048768692078268176989237613157134292523185915128593757806941244785398339136251692460246192218582866497310926830898386060706908727766019853212330546233734442658554283206691617949362552219977194103692795356922471080881304413886558617177931902330321100885468248360216198514665795140806167704466538977943870252177677963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20850949601476068830230246583987107736095665063690076830103517918991267461628078362124305618825402447125551727489586932412456184000905135113732132497208946538879676518741638198075653281482444609806924876117514429351665997511216482226273855188111323963937288780499774898685374205787998157633395575784868855889003121267185474266019721368690711684528150731533315899053951730325931630608180542043973388098202228486755956830000492253399329352360994132317423870827818103237000094004336409194208848698758586720869013402631542119929943083292004138699848913836898208189391310490078271480860829563171189648277700047845463989757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30325831835375599916661776173804684813268377587662655051729366148737872796543816311671450561286120246592546269063747288080642911334844706203332058196976389421145734858994555292163737164387995050658596971710118374773127201198490870099890268455619726038704372753226485911810447214762339788679602230552355337501677600095775140732704175923972621808546848727515434787377263359439307122232942472943438847769300390712646671707869502147511827712666576354306816660647326435140715674412632055183030724012407831427941456690700439581629106877069946248051599073876701816889493610017701216176918961752285193940514852946941887804827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26732462918342922348992592883132504281732303490878332327873704420138482909655087542434836015507551206685996166463849834228824613947634349619690207348652226033080573685829067242505361334480557155474744709104928142951466638135987051412752252983572749470875625696711595425688352523334250557647161549400832886706265872742830077716127248780195674240724257180353093106114399633545490369934839234891611510386566200556919206207948891935400624187833753781165621569565739666851490427188841734729592872424417018364655919258231714553005502820645401973520222710616210527216065147288647163824547183000732099477093888673791355213941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21756677700018919466267897306480274907215789836205369035963596777987443924850111930122044735082488630606475980958868474443186939500120114816305833979099390248663930387184107724930846054479773039208006261725189406326767998030731091884899586053680133472939143684740289978525593687941094957555332336749500545957945489550016064425816662937112753370665091994717868396631860096791512236900914101341620858865692359488139963426311480808947489151224845721462436987499046776726681841424242490691469307482728653452275687793352685543751149881070260710036262340644348517873572066965907727136572537100262202128169422079551420672041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27237317991750506321755454768333383180389913915851551957089668962446596900084160107741637866068175086881413747782468832082074793595300924872502290685012649502353807520303418886768839921308682567233458727231745240914819218271171040527417479473887077598809188047055579132341519649734349480348765939004565568384449900748132998992735899606452817568720135385831183253114451450452771219004609182648066306315984173776249053532473609144235818007500677441237446983814451147589633392769507079458689421496784749539064622264997257867224358282352841807894356735183343040899980595514331042095677862649096525885500756567949348297969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23828954164739556786395907656709297707981237112376890350387243791378987135743884216318772035336576627328045295149421238918954516293057156674025500606355967087042898046059790809948987121253016678979674951879558088441890986220578151817999037346283853606075694551606795707131904883518518270048804484939886298841959370372547621476959642204934661443048058103709424423902224370512019665433999173497457490599869345141841348780538770052601311548503063265309490629053399786475564920107852028189401067880403500880689061651314166577632125546925712797992915140344592951650948856424375424115904554573192353709663000031166487179291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25226376187504548855272712048183554960523010481611158441574302294618651396583477629033937794011447038523971665221665148199159746970974146191299716277781533749079496622268561662216485668096275537068383023113115738374051400731199790175854629744758312155039420753866837308116823013781308254111237452402045855275945448811842249738212550220603697243830635878784135291064565054752691117073739693662600229962449053400459327661798958196916631601826008692934236334252058983977647314904032690214914222174574754874619658811551994044385815376806563439295870802008328267109669994306712700244185012939508803835448008939071328779637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23290918923650600427234498090489960660215410511466479189892592734134096522003238175732597974661454488225100124487204901908382372621196256028727561220217260233238598696494775944930871622073305855163979887783733436988586461447410706488369540630907665811304269369604559455237601571141155224160359585283521435844421804330470936076262606334242768726420749946690942832129604516147155075750146138955196687578559410421530542584419842478275663405237613240295090039494257362248776501236568546499444935571389467644375525297505461369459476156926581658868936975581296434663736636495116599153004550578489343086519775910592831689297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28314039017532739742330575714351861392897075620440302960153367263529957638000555102670896924111950569398592803840001750053703275127170745282709317748636112882848788384105281165507141536801284527119451313378995164290775781512956817734310798555853614984205445125732390666093717991071100305417409624238374001789681617592394877908902004768708034392690547546045711510960721833502679518405764639497692210379174660908145358140719291608044730557473997060982662000868075614401201984024301376950187696971912472178652413020190814982725984473958165685595394104399855458313337863512157226485637221994188718323337463590364909868951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22406871623838144532457154138103789918867516903467687169692439337132244758262492464045279609483285451076776270892434561061423620508187733726215843591971877044295555996263460321271470405118264167634646077713170758193168730672337669902510711919090797471994394836329928128675494100276781695217062891942129172037215835440411085026054665724801606767293245110938976645394606795320413481373571325009539500857403399634355991483030948207866331642290468405820407475500540002909773380271340221949329963771330537659168293115491901927383920246535412668614423913779768057477432166948056753101367769078037218790463295261084190254021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26139005921275996068844456099728487362392117736292608857829676784704209166727419368700222258977390564432087914734883281114711730179452096104544374124958059805255048584292369732432938726984161759951391729295749211234269081282177865140533416181822614802636810139874430691154316490323741365878395118775788390994443540767810433217805262458382931238127103998246351689823586908823107660685306872802894346035214802676994125325446120359782327746940456883537789640649519383467598492049999717213060652116233938882934764097976366456744740326597803162201229002817862379997495720835147979985938755103263285299058645841729492052671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24189347140241725611267513575141985960784022294395156580394588157786866633975975507195560407002226088529555325967933072391191835380120571833846672912562899133663917758259800849205043082072191766755154246180273094265053394022538221559437661645869146037937623498240556639976264733925657720336199329825468720321401725247320035847934946393931881509578394974451591162140778379521612186150861150810598200369544594635900331471389091365755050404506838655293791736239998489404328620112368003782902694345082510179222203059938734423610184198348143443862125160495824577206832361170912352199374930102969282324645190440123773692221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23135118862793573996834734259632840740340209178888434620018103800467490143510143434431332034965522943879119212789051852900768620746156309422348890443232571462407094789009867807992422969344341766504265903327096380589093846660608192379698527452994300157296801097105005982213971840775193337479650411865864291206971960943338771171507065915748485728642914845688633394184192955463396445226288999094438861138848726702466784696463826382997502241088595168947857632897229064180213576799481930607797315994388332226154130349040792554755884455145673577065370472694816440674860935432384670460952749570989852889591035419706752149891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25721273300788998838284138484372613550557900052170955702440668305738519670149843747922080868077179611814568977913258961641746623305481498480921161868543844445780141549434262709057194791391090666628761680547489463501208943990143026001740329017187119969623997909426638795038298330875361180782870803070018164465441726881163412287944738266526574230988368776569998202207504928114946959886809509383747359949071155434998973045604513175180986015425511558455758528325358580536592629132883672709837443317470649515803005025429754007400627156635307065028357592974016804073105281570167364632288052994791846090285508518536988935457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27303443286252537711149629905106583544086459847374017458056366116474845704068314893663891242626473597819741307682024164592592299747967348026499295631743943529131252527249795845712642682241458755174223319338631545029228904417708681366626019172074662183695073236101429816514270973098876302256324526236315031956461298952552742095162263359344921317678819754210146752488712528070090974387748029791538106733887830127056436914256115398839069831140540761916186275967825801090804051611145921434527511410033155406962291166174275572327541776647416515187519187407678387334640037458966674740556090688616955969982390638507241548339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24201165789330987660183542631920442097805070813107920039518095377620282117532168951825226240926632934132680621026407654073991742062037001030152442876135000065019928608381424108911645518444230530209279134375407066371750945993024757503884187752363160048522344618544686725563255092340355935971054990880595948548299830363301758519749746984855124212476231257189145668895138813679797610917154073229517115395405483202721981561146784229516345024623598224679574903515223842602708384588537281380200645829191343912641458029733968563806829200670243709862574612751538035442010669225014484561181283293484100572764265382154727179931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23584857900379732250597947042682311611506542999824748041716881696961421018424028336849577969817761250237297129675394531831081819684769206298239562408833433160086999207325927805843657631228728327012506831678398015955443591917555355530768949333944660993317782826701987110456700357916109132893373354644588213327777904352140299976832720225812075808873357626267119219337277485367626124542057643675223359054441387894943645206795816204650538874102546624774906425519079672701822473301185831166538134935179279406399961123185891574530921010338276087096178825761644478733934583443401898910373296789877737642172002620306050667793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19312107207578319709922650396679816461397371762810839528297709916684584456225450281877920756768576542147267268508934547239515574755216113899341731845925488394472728869726051965483197532177978934890494101372287739703876045227677037820268514557231860914013650556946231802050507922778734927279581747705905327182173641750473220926254969755778547636561465192682689656438034544498329982769723730979467008948633671877599917125360952440900542928740751582897739816342463301195488931609290641544976439712853588004244001285915844000543186260326622710883302920408673006821248060085322891822099426975915985979930958221233623748447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28685728716226851156332551458263251776492710904915770340277060067789069429606016661070195489449516035645489368813458832989093474036324755669363930247267320920818491706408020047525221950259466601225408808788580807180552774660549755811967290965813506987696229105565605656042795350505791260931702501195068294989083329267870219355313526203877454672283897745432255388688943047933833155560610965165369713049801503340847067381005160871849080433333867037791089567811412423205606892729445111661917096913998029539973034457672419817112284804071393402594271538234307447797957058136892196113128413962649300090693660980813325963223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21229033091356140464256159367757381622472622529434519602978242057312613073594236993004753924121866958073069770734935839811439538148996308106263567328512187768938645396961240492890052322353323221861493736105644177663990156790445495799674813860537513426458860403353266247461209187847741406237686076951767830351436984483115137041793799227432374634036779718113545329723134591258375784346259714355018014127856956315116522692615942075392435031507871490284108207639014779196119811508455800467322723879594329282667973065358926793037402764842831751720322704618696882578530740815242922247972728629181205406333336056650474666921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24956771542305906583778891360929238541424381115995789231556267003531529570395966354490508750287381643167715628450012017727199464282072267246566156264293415494355519725775006227067504714122987527180549990527694658214597662260354222709919685321284240418211731369139851282550481741774968733190219703838779327283143260119977855359396948237548879584666149004375616116576864161094628787568753009716456554394649918328460020286888758109731694069617449715127377500369152708098534118455483934190930484052288677448931690979940792810453626247714794972326320304139181469283622633831426846462588339469949729291260977481745575515827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21183822854600035286179173976887343211837798261351932566976012789107188250490278689601983283668698779003475303672514238192142505690576840346079372024916431221211149298592146494329753196237196526651332024518445628741850397310191692987900625900370315953461908507600474930173259950921731597638756048781345365943723593092513114895910139345526531904862707270708905545711969089494913724735258443866207377773917773092691074047560312893337342229707743095508145751916858912490642727389739299405930576796965900785856055035056757591674337970215612355443361890633583011248709288186141735287941222521023378945943198450149984967553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21447565447322262970881123821578685339205977623102185535244851916174834085621554932299503971748619926939695339643877278133967271812496095435684514593356106119885217865441414905622767092773592255378994690420218018743423362145612028023326813571941810511268816155060056522778232770897563938577388524199884502104038477537936485857218640163250374123545140267694585992969180791799113959497537137036011802100849446646115744828803568717836614644626699404535049324703446351254474430281168593187753690794423567925622179822372830299073520268871999992121884057698169850019157862384754218843889695648566959650229787064193683698043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22262904538110048755296659546000925471086359789391111557110476667577607249397908431249970165930374607274566844244087676868459041022375766635392499129562870474670093203066289517007345609356089232737307744378808518458884908400831246697701145036683122138283493652025927953966764780297526012962672125775632577947602608180958755803700360909892773401433949913705523789012841421059247209814005061665256922232028527444369075870240844276626898522919518786905569711733087543634100194147822815023781245044383427167265231579859897454732593584874817340382980872808479798443379672607136721788811513767331680941851379916554139984731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23645708736557052048717955971050118345308648605066947782990444658902365892671809659455469456768540090877128546482743185378430576956055490388666683078935421208301123205626358352954312138626988039457437100994438535897778302992781375311644710058425563996353929392699701475924513799102608956770131210127034300465812078784319230868676307158707651280623481393740531957598242848412779113135243117425491256529764988470177735079122255535732728587669270353183779872447240154753157065686678594345567553781001827522914715572396551203882426356835873808522173231930092538085849923285922409517433775337184886479406663970195559177629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27597351936458483996203004675441259341618070601113341530649883064033644524653499933351601649958632680299397390322560236756844859631513749477864735492149098025486859482801709837765957196257632143201841928521725905008226775863074255029084576221935001382230530169685045199379552945200107504991332498171310600691920624720933147051071001889219972514827144241984756245741375219162010038376023567953562116189932390139285148442120311760104169422850419983327616828689464826131486152723159905603910437076542939029338144520637262269538743795683797987850802987842904314255750282855861238130435013506524503460234069178528962296521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24091167504706007251991530472680375690573968226121225369643681591276205045137443480783658023814950351306027995532134015261623573419103808520273521506679510312919217526447373884366436376342154206857787169355647806298874447396304276709694262058379673079107979002402010146855865398569487877241821925062217020662652971969103878643664630705692498861570815649001774456003754686496820355587627755453207213291309140459803499945753409083605154883374665851111367964290257358516067765549735877724685881642136118208006215812865176526515536791453370305430067874646654227895228546902595575312949487665742298826314181537948866835837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25577522112134254926986149793772442311150656055174828634800681185623622584528658733971458481235315432635800218593016819204813275096005031784723651965758704656742991867603332712210773103256501798329848866182260755447864778683405335499523722082403354278023709017850915035999996221019834447603420700172784652817184125866174482791366015350180262762740955682157172310478322624316666804188178651410377808746658279177758559687629365450263091874968531180382572365976192491656030491247355713109355302568708291990028623818171045252603451402393787392039292821069686962076890516171881784777998088384812849419399811990094736617547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23858388976628292119333644234751591257649846631294090650251849364063923325359775730507610403659441572433318728657593797259491488491690938032178597119401910094526662186427038021721123420229901077918486951744946478565919097519643950304288343139904970188912514676799285848124525901636599294437470704849873122860375660945466545181802809036748156057307920072966551194135808889191924410925216452900432893243067479138382311466881539045489084419134626499981499107266245582819396804959192715365864808359395334350202557284433082212045723857994936434155125851455368041190941991755630743725293673437604511693930058209972682212937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29577319502406104341341842548276901268043727317589143530753778263691596933253635897271470601288296017802914894009050413195309727070895716184669479042026634718079321172698511299626871935336152810017179002867888010172398268353447733937071206334475227747304116254057798962282238778978041917918097832338067759707704149285770995414351061055013730967127957425566217086433933074450129520841336517824439371469421288318566746723932737090423200015519285490857837478314743789812254031173620294782134579677510136555135619683806198135186393099682120804371835166625141495094844558184659032515344898983596010155636806553050267354543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24192619049164636017016437561481289943599026351939096534954112657582506506246946569318108105372059217012150131938829632537603899928227018970452377713457240999868972181380160971557806714340972382271811203655220580112272409464997951082964484834194226393295019472405016382186067090976518837472676716831874810595811364573713115141931826020949754356256692881096237872464649903242296753578753919966062532106611498335305313313077866438723422433752287540577198003430033795531208867401898483311323469169519185658065445755522916103620052323932049070043013503501063256954332864782389954866901798081775188728623075049450354239393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23652685146643874757802625964316912397706273122316742589416434028876897342907901102316255969636742899985568468549541755539842750731690640978302646590786830594141003021479143451344643439307738954240057772374786471282165886166453396815051489411898689806474338702592234103467586212766362747655079272384285879104369182205470194840223878599368179380595232873322566083464796446484453217828359324049563120457731428109624454729611768190729298058522146230809647990197729754449480207311202959563695615503092310199077198327642032447213856719507669170243817906833912289124423427583510458135854679330542673316262879063495260736541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19677867683408664316610438349478328097983375669083407530101048006456557218632420851263245144011253765202525639881154638037345584571827260656892441501752538268033918839443688743232966251887623277690235742435199192968076096559706100475716617851706219906781858717601091627081699117827766489572388234859502329066060126071552857227786444538912524913418300131280395086915291996680332688264059960814185629457136780152283020922175922331004561351132083823240871819208696171132516027318950509941890884069939754871032245026033083083559489337798798772923280993752052678353897395234650970837659242824096786515953452376069418574441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22452458340060725405218129975287631892018386376145156750977347540563002809920672644342171612987318291362332367228406688692295904874262350054255012114931347164140648388043266798096520786329545431429541265338791759800805592127629163413083143278112233840721988430264693501203616425128468189141565251756950804181401799647484147260194281472184859216876297929319826025754185993427694326662842423972373859385113851732094116233504091148844225354731918590975108074771641776844208455630664688286634947472947769770444738671465250028698869775168457985459736899428501710907239141807775148070592269524947564871902858365465793873123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25350931501728719434707570461892366182694541810927975279374498762742167810552601961604112772279453077785386083972773525371528500144231779201242851594976581010102756383142795919704122461947497346450611412251130715166503524548442499870249887943785263199322609973827807284810856126918998962513078134202403301063177679925606983339431133152506253905722349962898313290630348449331379730591861405646653246160138045018990791731123537848613859183873983117635386843428430130267799739392759459490722267267629309509757285403198776207686338310208661094262496295491871289773777369887363142498330214830198735321198877121106047624499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30693610427557841987444857982578490433989339744836402033846554649582348978062275451638740160168156440813663857867921691624472419263100651930216935792024440678680116058330823615660642927501556589665123744173666662764508901340477730350292366627964191533329996587585504618630888935759073037955730275152552457360663015419990609216157022376862532924896216644040807018527865893770232728117900769797703795127969504818576195420623925181157159933413713681288606561955884808048809843693374665788490327888789861410231178719554693745939487324916773504249380607261115091999385578595429434121679961797440438725053441307762105515373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26106897017767943192242574118325488877390149765766654676076040750631176410030355289268263054756610867990798010835504116314866455792560550662687377741158026338080010893245234011047014376655493621684196554617376541897347095812820877136248667050689594332424248412104505759023916057076855743680437283304958005665296402491787201723807451041004118938521750783522983720386472912403449695486670366171606961943241437416778516533583515269334191428507550881681048504101487937817063866127154342243432926798133543499807140642735306516253027190090325558736490807077833516855312642060776955183719333350051855788972815671721261447077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20709986652278596463631610723342251301881086822963329785079949755117191056626864406353625317536050118518718906957299633360808031669317353030397697952923171394719946433881159041759865592823113703443744861137727198479210864541621228071213541784391077650422102501931980112270256763600925890602696872313169315786719292377228043016951990984879753745266083607913914403742650482886645893651174178769851223974314277716745185522915884053363699337629273709490570542700274257057409732887474093741504892795854356110332676562249720618319633419277935701644088362823331289542639557950862704516480452977610391803139425428258699222279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19431677564181373273124546245522067205536691178546159440919735685572954186329359327510529794905456755429408024451721626628613259185921885925869597059812566575398082722303126141660387160377909933908028446560048114698318607936871423495212394836830149531245586366127693191015839938336460579776288460640289951503082101472978418528685782031980471841379424025916754464004800871873999849055496745829561159291683883803081988812556759539313388549403674495335731658564813290560389686004891526540610248296020906172954207778369622721919459295544882166838956406093068419213025326197975634031102160666623889400408746469987648162391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29687054515368940514181182466265226551970058235528422851310576068092882305449668608231262989672424113292706642651134648265063869261270929946054856402657888616610899853751366459566669537942998101556208997628240089410419150405036755593778452856953968071771311724746944288852215798344426718697740636993106443657137963100221256582725337969044334197708551594443171744655950310816824535824277547701037851679962574013306175816927584790224463355633125726458281656697734032375098001105128152346075274940947457203365269507234374681200487881332502512977671735569750958239006834206591393318273228005651252332581312740425897485327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22103107613216543475715283472677826703172287964340530498197938244514457883080433966152703941468700845651620545015963703058797423423368008720696269679811886755580968697628986891584152057415117195766728424911001844932370334810303677108975567927546661358520919692968507056181825978067954832745191927587420916850451129945371648454749794248299802261826853036555052905046752530175781539717164876680962363535574566872521342180470572654092056557320375882269433516774388997232314377641601749383674132208518903262258874769867693733352857815429300286557300176975920593663820112476182775890209224960588302594419926860407453062253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23710210556483517619497765545403064826425400772054643992344391651479005609192059707498376405919682925352264345816778217181481113626873403826458377913319428503971682695975668029736080971683559882175720916659069239273607766809108640525304273781989706281587395226018368074089650610644539744131338351739258124616219549784968704479485092749355401894987727287436008652738806906099137367408167263901457511320341696914477952135388251819664227142688961541423361387790675935507278609204416748311377647689323768923665137957690899650468059353546075230652722863017302705084463029506189694551661463775281987665610586212272916164661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27007884163188412986170699178507897709232790620600647222424095579818162269445026606499631684244342057084608608915777086018394954176609710369994619939639029126594278861783976820907587803536400907884412791351847952930310166174185192976356591623936274669977306938533254522561076240011738957842391346050327547171047555429233871510146495203091780895426764400036511493850005803592505479989413202835785033683168169107642803511914963711312499009753401853784184055068271475632038437672424718266135316507865068732542109058395340521141710491109478212505796884965701699693134127425032451120473570290461974219559237520393568407357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24738930281985190961440747046282686657119240727753521119619528583881099758198586256432222074278660394240486670235356782685231866394080953359849720573105922439412216506906023899909312242457527854332284401963701146674565223882821541168301273003312676172184173981037577821445252354863660600447818363386740982368523089226895189836021884472614825471643618445136104195604596526717940776837873291366471868198087523588346069589850718991202501227674228167958780339614630320279722959641203228488808118264844632352544895041152591710071176509163941330750710951855131022034198523906089140852873437277471575495193595321020931316537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19102863759972996712550433779616795798892153467394408805352783511603614299698933137887448626398850532540219075879627966044532972473331415413646442486885573320016953999305732838974888992591572104276291126967310862716755076478807376212783434833129537284615296454384774082505416345401835585597240794147053680440816808613429259114177232841223815577928088959573266547131428026107074478199645898966760407154030287577239625854655908489879971074503796588169784264063570599454104004252994761901636842124106941926912382273075453462429341021177218167020680877442553888177310485304494877171927448327583594995956627002028697635027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22693851756439885287021227636278112832665144374564246824852613115507421404533852372586229112329566915613567768908222988371312536098143835403758690949687650720606396294178209508209995563294820270778393633406537877347448867680710199087936915371040973410792805399360132433158391229168913163168663924336040123527073082065391903419071791625812133853833298119217939319439447480970469571783510861342383605628537737721557109410180967593792727157143782924286280855140103133873461056641033823770151606796088536575898890864562573463686457020353473880737653348004130427108217840475545246237544476992606174055593251476278559417649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19770871602141537754677120976022047070826133107031190408443351019046073845785740467097608664883040426954748310574915563255350466067620338069645294992482042666471917650966619295494712613011002405482961959540593206123053630703797351007613915823542185764149696168699984451678727278356633287721871465814438471380405293918392334265176454702215565153350880204061490836121405276925624123740226704728312411120746912861421833380994030455932087503888454683128394044352824720711871098525362508797859995296890846579166748376250270427280411679148813588925815728165089150141941638702672134063280130288447020680820556254066486177487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31494849829492983640738494556342837050406461424114761569546509494233456469355924357827189443752402289220562942036921544093671101875900128096011293263063593663512605536891830569928265077501880977394511361083240395406205390748135029757145971986270819922323857050857577095613866536087648243917791217931935964070838105940586786312197017868770438213635126486038577790860709072028303945260215944351061685358889589935282657534694678780118535393057525984554656848586497900013032904422876143080245191059586693151905678721275979977854255825010376191420826914469191395761352361640149147772415600639614138018863385266199874229843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22080590671025831066244246086548034117566530435863347497099709952030028236099939937696846398760205200687345356402601247457764297071518046741583040649214770874190927973714837510054530681416956123924475921932339109326387849394865256554313803439669439899937018715992667898565591192886492050558032869729564839163325433923126599069966188294986977142894241089973210118948236461774994989222041174996879054828095481951025084340333559824456478233046642768985933165167099361696740992126036671222345961386580932169805137242383260507299654877640818677604309906611835041681646757566147596955214229662662785950837544710473060850959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24606637730735125398757565541057477684621677612175961624521465527769475836976035227274427157541255905009229092537936373168173848782467731960724942343075592728116653865189536385441673486687302763177268202401474444271011791803768939540128020219146977383684981160222839019238700781985954761013087997607352330613987768740157167758640948989692010990052643056588501933108063488047826434218751539882607015422758961607420275441718416992255114964116329619116947807884333718699621795240066964751151040400423692789176085668221583096317725846123443314602365471669178473598925688113352775965326028564343495390509875148130226980281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26734132476693042844673883263359917306193688136962564198170898548227790220497986095075278912835585244058481039129216400461097414455422582451990059635136979172707377703654681450832108788395121659230987830468865255183656881472391202106722309665930121560154054397122499929659901827616357626230791514050456405352179985752033922072918382345899579492063623318750422480627818160440417995192349498414559921383517023835368604369481270725162476811745970873939093565233411082893382048411150047002346731177180934540327596757018978242786350614188804751268659752091752715646235058336825275561905300418101767653974034994669545663901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20766621154056365220766498409739202423094139108005759232264415003570226151687549740998533197220458660868166206969913057052094266339751861936398707774629014907260538776469123066403441416579991462452541921599844108479548519896646336165669228277100838948743155959415250337048495821238426824081868400049412294868287209273681277927778187994687816363021607529128870437361384796700195404332107890264090144795594269214629329174548503495743520887396779379774056689598869713970165914615817734732823722629041587518249241890774046812551671659574614239655252509565474495379685758665384938289307861182348448759560911514718044997903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24143674960881702219892164060944722838141772455784967123995936970992074782655329234841014620532474876967831455910251381290480493210817397306769287575348291708713632722921125793233326517766377609736674826463662756290249607765448498638167460471809419297646583683363139579964328263378411737983747236193831597502822224923283008986919525839485657165959737825725594887068939496870964022977501666737604202769087431513767135760957129279260294133864037713254525591133819396719611498351343738573349306199155273253962216610756193302031534944514583515875735860376825550897691991613428865370003694916102479556583000236482095581207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26399861177657747270959137565359697645945596506849909867846197866456754402962126634129621528449671655892610544089115525232787129202552696842482420276344630547429528112338813419971811297347601136397321931746538922753399151843874125160463922509641217305676504226519382857050102496993564109601317640542964556606782877795371894737039973832167992604165277144624721283439758088821371389184722257496672669932727877690718599947138777018965722235177289980844056128854561981981185368064794437823227132936015020039983925210536460988928682759504042486564453168805103570568821515697620000795921049638310484560528149372497402739189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29058489713736120558774181907882127882599997272958133759659072453187229832970338722252771320488488514602402537795887083881065896091035731827739824146302844005097759325472583488660393228366407509457221223473112375818789877022606497237672954887902706645849013788278214691932396695618683116568563324887653904790310960832601238728052240560349323223541095825561094242351201479667216000361334999723425009321994489606768822290883462383381386609877251471161590664845714284243057959739720671993426675982164957767402207467168510372384902845491740551082895355464211019400252842741220032385780578330412181192466181498277178176149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19214059506452082905899981497899587005129465386134525035109005127207028037142751509638700270284202722720222709452401606512460276984907890847480168045148504447105946817293582863495320572879771928809800549604430654494993212737681827087223043918792676528510548494761143020142378328717879489803838182611218213774112798869476067506770303288602621877766620359114448013542472355560922537122986928081804141757462160165822274267416233605181153059421642192748751640201157644144030241555416222701667942691464628061827793300492141566517472370532755051565421498463635618908776306448400849823768070916556939311410805002332290957833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21819883941286594344268583193241170565538463657771613731623259576377606162955000154076514331158018134854855221309473196307380817326859577982492977874883152158499992784226270014942570797773919768569689062245549800752354345175942157260858604378260387061456628107596588892260914710456748120532151583676329410643269134963453612941973789430728486562139100858115113259798243662865610790196273035069686455570275154182277670376305496543908526389489381813902832139912171630526674487683953250527039029321449135015866833393236783556476193980168065060452474294982520855745118272811797659345388748040765868099052266402976152202801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25120099549382751861443526643075674244240732636937101300311092716264533022997356140656438928201108187117378522257594761918900945474859298111921304070603013061816779933206415626500758574770615115368311958768490854250659375979124693967360052277784236880578871043565209722791731559847597293898212731281546698426312424871266141306524681797714507261481064374678661711968908166027822894897132850912902216405046665479747658072299581662994750736168681720376958892660775458266492878725138963523408801784453262359980329851328049625459920538077743860397931949276760323061573906077439131038729992545633283684084132767002712437809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28718112559307360091915916180573271101931721984815224079838904220104758064502995364401025333969472760254028923332131238271383790967148181511328623229145770138461015590599595975214049929731095028229955016152491212314133439816400690180383174462528769838130204631876063668673115731029169660139477976595400874112631191669913488318269046032213661541552784142902415913247655652919096385442363524166289803398730966383746510737448865793745189963377296625153824238548434739299526325164946778537096579826944633181707349461287975140558279309461026161616478310986051265772990532043492395163295212934875945989411513784618574821159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26237233237120865676925224555005213058641593392667324968136068119552008141749945653353178035913462988590768085759547506922767379914199388734899665769538070247465756377451274201950841717686868935038014417499982428036120399516831155922222347203451948458022268077769873466657414472240160018635802588046392560924966023919553640215442169971740548023933584154447415186487964849751450108971853056411322694940798826632411961166903846124772289083995532670751086645001108084390323715766567006035934557154677796608027331284614537469186045620064962983636048896936147396617929069203380020316681144021773141457060021678274428976737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30599589339354270663609976050044349809548801918960476632307113009113168609170727700911976806102902854664642304460899252010518648829743878507915235985126814956018996987453414151925070964945110522065798966168323821744421931036993707398125685581121231782780813746956454368624493038449491555267067468161923385899815986255345584748671575165154840167275062605052579835913142275419990738813860429240007568137166389208864942684861790268051393041713679249112290928921986872554562372472168244160321211331763208172165251978759347126098969950930165559021755320322913699690072358113955360202486612217459188676889808078276804210209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23087461602762353457681305089320730272415489995412678961353648962595867330564476132711791795044312120019642505616792685464271835266303260376146108127635874701906426485448082823236821098080496370223975545697291348414432578649431999981157612069388545998697354111916739381843899007387242812246088995619616063725273281355342695487551781123471806340371835250193745018963454994446076801268371426652609330713565951773313365122130689724318404090492073155177698989028513045095235325369213145749012043771234460198630069185932922509871419215689686290729113699293996120633162268636534422353056742138753869000341000319636625210649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22564956644660622054449601718147572467959060700739922964430982432146811817879604732095265422410439419891793293278798885398055260516950777864884955045515042972219716322731226634209899947445328687814656263826223693856635623793639171558561067221808887670243793840450818459718599476039650075816284595804319435337009513475543361788883841842138468647928033191486997119756970481376403338043268611052319719961458933948807917473748328356135100132156808104173005465447244759728423822306486312280773324356069724020972875516041770814689239194898170596365071723308542623518366865413995028552943049355706901085787919155106701457163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25157605262942128428802843635506390364983968285339119450531815390889925062261919543415550435533659142779590352637278404484697405242336149189981460400946104191577850162383564219447251085039759503750472530540078627449037871477865037250679206685071282480803370426582825427435212929918432500325018287772947974999490170969795006082039130119374745800874744177509839049155148342312330794555792969884962167206862297973364877982769390289641487842574398086226688052493660881442843755622895070457096272281897981306721090539997919040803458210715823629316023646448013653488745497611583607012671092282792203803500656610695868190799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23006874317524132593406149136886537222388900945536193855810799553394005981704489335639880103026403820711289877786183253835678068764292694330662320987656443999872812099379496893598830202534393966608955546612607747625432745646038546451201318383242548637350437697468814684081165770736740464287269028845575434475902672280899617384031605210262220333311390683839874843321004356828572824332421883842147634132098045302377586758722735508687894166506916985793396862778555044504300756458001416478670318989003071634370039042105071859190228070097894608294782465799266010686661374176682864698822802756148107470150523727887292608709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22724671857666146460893163961094606354869029800294593891123899433824795218882892338460941681001316910299958209283652456441838318066257671645634960573906800278046423813606386223711528521520796195387033466833402209653651341832992608524605917812029658187490910079431473455550615496708544776853513661773974138687589126617577487984832946857181698684264566476492832151724148821274267800216913060817629149554319424814575636083303832694000107403713114433922719457372705109219807625613036543025030959730034626042760747181644987340309377696396074351032904982292950333365512508919931048776007898717420853150875395224151471741527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24510029709054338611734297258176150973906537115042671603627651586657606025141624010632495088980513551002326128536114064924828448659876723956194721762936868075199324232710213740590053156627951235845035224339137085386975847059903997265247701156585702184661033527245283164763791933408041878693553105914961419224744670319920888533306188149950449657561590770292579167187299742963557860325090113360284369862396413172597987508859153881506685324045450684532329391549267301863933265402653747653247078066747700822869911661070285099036572069040860731974824131349306272985273955125399687550059363151769410079861893946845242031371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25237612679254363947771235463511998169834029158411242051851287195550856829197703008980533150807565493419373511168012483347708015865891615721594379284445101430563058609286652743496848598279431780212931061784582002924256494082904243182477026948785315029106596265539209358993565211176033338517336876730649080713741485712649417794600036613290293842986464613726374692882912339237771287739767115111475359796768082511285077034274923816940516894650985046529846527790432100811731469327100509629063639106586210371256006973255825430398104166941599757453957195312351905664494297707351207420006608714119687729151022650010849932467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22066811188960195039115995687430922045392661723413560437658101305528581521551099003272761134034616423453887405873835586248326059934801929515482788412358555280383424634003444439871199268799858282257577442861821288089410126951444753413346165247405205922506997652594136642222478723812114716524202864660577010618601957817595700078209092023784885093557083216718011048989392213180140733671079018135118722768101022946558250291327988457275873211785019121299655194057638788402734235374555016119466082790736049749931617625867121424650307295769125526410766918975766111184652464988789439264197837776825619545465809966170363773901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19063118424920730719462020886530207189238508862920673627457002367775110455879361340432238329717856848448583284949722157204802616590898208903366440393540698459815295146427676053916730567679579169999050861162356852587141380951740954935769808204050586108494714476721313612847171637820888249206264782489959797937301490133521156970854208673628561665869641269139870383292562648094397271065844814892310193583914614237303978959471709328692113322679769477279017609705993722331962273682046455321203395808367019441328207411148616672617220065712395129444403042383008857326710198483843191955856022982782555554547648708296224422677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26357717320180261820501871670946118538405989735872517603617246437869674942118046069502342982898611218670998547156859898431082942918592374766717349975134930936586019972280534099317872123823735775250326588081865663629945341076991622293478060714278201777279515617937429103917329032997315676314420381112469239325394296644422812369167244725007156728878311313633723054288569721741035430179645022072228550828285988996881388415721586050278491737774169157445154143646531554842621881249414239436777123860250679349960947596632608592143608399946742111198990449347462565929877349161181248306183883738099424982039407378480988058229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23899730950003953452164223691028353682873808271952771861047323341904276167841732829063194076359063543604105254924475222022149258478191596596645719801503171941162384459774671980345433204564227068913933084644919169836176191717566758425220273276311894328151612007906433990591236511101237305623727524549367576542728130106633030134568762413463242039117324149788547537942556728009671207029661688489620923813266778133041658934240842840307010253538975001925196710017619292132001506656218088606253523813043222840508152667924396724526836703241280990622241950076933407765822497322673245253069997491167868930105772233858289853473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28162627902527164178574871273780150881510758524854840433368388375124707573609366181142259888984203603685539659143877036685243732353389728424496111207984606721591885574082033669808987144403733534739953942312852305601796732226656882535199535663177618752613142087465387017945356486657430960756127911358650144048861260140089936820483860976532108795947457288203284603126962323859551211497084488497487101142265149404674554563808064219409375953383363874412416253645784599787223958510159311323546856041019313347656016744384476974958007439695651523607803632440282633169164516803613979924895224912296808144525265395373638770221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28081779587524972465560660337615657650613775468958894293227623586561415872219221782159810222003170088436332118742450271163563057161243139505351863832959196342646031408777755335342418205358383003308691866548075242047880815368765402475167977514984152117605657761429877884934704894378726937290136591126343104556649564158516220862839088153064641812148707777726051241282983382900723212901591030875100469782226309275665830232930928599557679749043123525748071709566228072911614345641951145139854904691216884823218168677476104185810720898256276696611597433848532636035065698549569876999516293531488814694871809520073637824261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25654394358950054869733138374658358195628501350717898598636604477238610901207724646928609436713176382853141154896019086951464506444471588693113427771204462247025970871885627168710825687291740728252457681354879478026415426657132429976503981172351275789519333241591164387196719641036330411818956069226519667738200512430791289381995794737176788105703662496247496828010041168714327739456961972442501431721265137167400592271045797524152671876675949432696819856824160427642037270409859243211871490927859260859553694891132920839827080083934066375176473386690403868721420581192462411299611014461007776313855877271624758279111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24136557932383682706323769236878103616619056223516911065468577531005726697391574221100492712699269291721622219334230821207423749821205768667140487581791102854925685436294909529462052647655169532512420825652714448811588194525473942724332181736365192670528303313979569694555394243870857609025833546316478061774643159076622060330093733273972923656678607551228820654886284987470200481959869331536164680655552711006110878314471579036318229007810796446472571614679107402839847530751516575711268109865664277289967367429615879302888432213864153524297734449189398270499261722323238654747755732269832214187702291386138621176581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30063758831109266771053546542033371237208311248237554396372412807924208524966887204923535837526440970183074998505586476963483437913742084487756079299257027201312375786910442692224761440739151982072825196442560528393252372367377245119936373967907102866741870632257312425316926985933372074903025075496929157281833957908345993219511288629863657329740235969177517642878571749701375420298638670884816808676235440903786445902454663467026004116974409180276250416983278224451561268772266095237939254126884446134549615977803444942352180911723931482114356134080929628216172485513384955294244762232249889890496961169960253754409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26444130707255145690996408844664731364880593504093466822451747591790099211241458372048499686206369751462808201082522040296393125304396237999646527391343181753708810748496509710354500687780285786357300008363095014399113031952451553880383588983188134980197010585802548549225839317432540038939291033561024322446791208381151572451636927824361337346358121394342352559911868837855893293248118152515927308221018044012940889951830372047219008915367051287974427261957196368038282534972678263058001549003666932028631112338608634764832104771414638183234979255281022890370828551575903862663579328069458630448940859129031420522047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21083601833051485207960081547004148088646401058896939434314754864792337018871307101153279083143177379723226331264574996672591111926338922958801520781988457045680553914268448266681601786264268629184958155397239318090220278465662102286787437163389674297887574183148361682178536563328245117311927941270344241558826659062751530505918292393402600477315668863356801028537054339099349169971077172531765238445071202254212301853383957757840185207552234781514182071152336728475459790287751323871337404135325109134427066097272795589751874362422044601905020854852895499233744210222551477982282912266898473192191081392171072104399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22440264047635544116400688573795495412725957322837711063594374897075809516802754961399394543020301596778352202551685576252895117437202320185522256856068709058186523114787439079167598171829050772976128299235583397209554041066187331757464697931811274488955893045343151512385835516474559775703381721083487579391485461187398362702928911309342633756637748407168320343783695830362276047942993487341346942966934006053230418643363008108754557969256765484658944833774761566436964313140290305418670282474519731848096873547877242720101932915457650732305732396013258713127467515818380249969342985289801383402813840206720126225967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27027804658767639719666959361529701357079579493720764626336707489512147591599148770745602111101976001690439649531852000565606122639177063715121979070412234139408659335949763247084107216023447892583420037572719589202307162157131819850033096084571872180439159279847424869074878430844422638430102923403781298542549241432239940901148506621121395775130955348162875892125826740321013913773251066436598424670297080228580235052925996548719137501538333463074971038648837693210873489348395084510566931692553257483398498879136421629000501443002055238276294272243591256250456979499467952199446899209907084930993717479425848093689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24631366916213203561294716469737045361100512689072915533856356961053687407298980359452867156480267923608504205962942554252949153748618024211263834041815735795874804018108737530564196802857523657255973174158535142802193907700402241875718164652983261399243823399801784244848707400725803190711331273261785047301689124479752193270778507182439714736154041214141229407101699144480623539362736883877680933244271538368262787888776413992119904535919321720345376566349507342078617333751814349873322105762765374407187859427155275042211158650620818400944444815524652392407413295763258520760696751901013744662542605003853167662737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24046778581617295532341482596145190923823791073275278279174431035304576600533148979792090300903492106926390830762739578502219849458198438765046001943435545530010251597909999820347731700470490267578386166530805018493178754000142553323027706389912825927862120868936342067962732039666887002538208947954436892729544210448376908217667271048587675634078934111180010385617742194907366415997962997181921922742414937724019232636822052517868742547834377085910866873909122209310384528809481824528726701555590998216380684042874671789435021200783830341275874036685545635934088418831023388148026480452480835672071629096974964008299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20728228920181432977538497424209652784544755989943949565593931703300359606736486591270625156225236973492826063542014211538461747553995181238758691402060740173683958609633137102817102864709401905398928877622760792517652199318568775099830472142516619056832037581029499369573580121670955897233866606370728469408225418422019692645393886323747332678862563350799438146674620917345737128857408737573958329858492860874937255654859330871526786248223454905039666168908121883825533032998061265554704624229811327183110292097889600457720316013056359279472486194094690083907952234458601474921384397727516160322397900916903253342561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22935204035681220946492157361247052037066777788045882515258009287097269219882027252668296726344881965417909309466369135569344070849958235571597213510150292788929884078004235830397094344029158661749903908814969980058814615737278873902200408812122060021713848085268018173731033653900192853013677728652813502058035735202738325014269899619771607476321340833696921400034295083421254459024088439882019926493532494831642183937086247006649259818755760660241347141903173652171434678649708292048423810499277535734506172077713317920445232792994901401762825628444576884986515777931633733774876526072042026863213389857539736646629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24496063744135443271054867048213584538506837598848665929227617842699580518732629180074866770279995288638733121832519101323299195036686906677376235966563940841665565337735920845080601251857077769678350254594083537680881377731372380853703569678453366698806292693083116895062523302281613851958818474363716965263895286025635967182206480387611261699704158831466830614272108283584281662997223424724173402989812543529289131553590196396514628751537022999611812991833310637111404267876809269966255226887133380161585862318233192519630092176451018925980541991906226495033660385597889150855470308493965631113103881641026171576637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23498317688021873782843819634560699059673903524307411242974045827019504393599573133450282782004376467487431403135347944932396897468530888968836525637667597415049525200804133435985777056442131104634917175897052236057904145968709208536504978289824631062161807560739899816833933655438943571053380652430080656452104282220459701744140728238941281917848876104388060190142734364097748049128081493450006302592981981883710727136571114966803113692086745427260520308409579373844504240271089539881503061684482382282252691278459252968152482635079636388746542602891526651844999115183401810530377421692557429470385496001584811466461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24033460463866046122992980057234910449836848638723759839031384244884517339979588880579705948753180499723101504613353119744662785265798755407982214452119130213206140584347641206026945020031888700116108904605569399114442471752536815768980708123493568806251146890809187882617006603916591469129132441272735621576549379715789955823272475668067620596485688008452142864910299098682847615834511098090860502649933386170697940097991495586436997464436789125676770451185532588813388357248739560950134632968642716859091509948959594439679955555764997023401330618706595205153304837198992663181737934397586371349085017108630456410783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24031521497373396575025803694455214945098856968163077443652658410617826167121756281157885975795417494245056226337174279164455212061807033425152116080387960414665264150423219834912977378418009273383212670470906470253392705182272303535423124747674313879086897399341702038006752608800080396091734905969343526040302308666596801049872705532289257971618118331391547472295426972494052268309976060538239006239106165554485470437326863319368519423369929628419255751520356900598989881873254272390446080064776951861362550310110896062106136256745490549881083644429740231321927932041834969717523615443694361572255174284733901581863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22359068867465880881480201126389676903678767853889096269135881894878950621818070512191278980938348228354364759004497295889309946566663705045249356179686249663708969540427751743469043338182663584509668895072929527376670220958399483341761884934066176279900848727025877853385224393820511790055173903710001775899736191972383860071424128926232018932252543562120500609644376240486900794230478477237843887687493774564319640377615118012753163369865441390059732859645865861884745295905168680307054116110099174985104636468330863751150115082053721026607112792961069225249853292797584944711433228841407979256234171311427435998279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25127771795176164633349969576878881560459174881571555418269916027081239637142445931390749287609295871423542624768136514087686204512817452113087745921160679542559003049372150754429808890340440809932628449383061895882991200281632656719743517421264718078515730322494544480177574615350838111635165462375445084783088495735063945369506942307969192177635163425040185201558673256696344611007606525191089392606216972619531427141840857147087309358431691914832728235081541593966130629545654320141470079057729071513658168740694588516163042082905583897009421492174321392110825185205549503455283035119290401634361082209529324932523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25521066676016738133808578869132572528238016970627398275474889463296134274418997119538898416115616830485744519573904454082374455321731153560718347169860712122177697974178192186805055124985600942569829538764132546820325119810722332428363809000335314172339447810090818027869744865691892109955565723859780764365138906725849119492253252707086764733733839169413133143949550059402954655700004069019808811947424871425675966297089161415111229566003019561420693080105820767831471117774559109404002014762804964018347849682166696799252757473132819371266420540247680904764604398079473674765968831878961479841856566730671024683579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21589887469035562053173831449496589318713610733692309079504653664584119834410755128606820486412223735720104348582484328080093178754911455783314038164803301065206142252813530290380281796311393231109072949582849765262640768128106014372795068577644114295160943189902244930256264135097569418957187547139392772134886449087136221894378458989891260281297630926479195538227621617366395386350235594082811908751722303290284933048609056931145919854656231985153734613708465204034093652122620733555090818207176991444438287029572515654987725524356916121340523760290789788503389032519399522804570333468587175220071218101895089862343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31413744339501779405565062422892540041632406965421575727301538184368508932326915955160948911611226180147034944884712588621295192211319633139855522205684435077421569828388482525989861024445916568605189545954902468356336705539326501594911539360786008495817442198861031235801324905099481310945833629161325206044703682781243838719960417211931567962464857430462902288550363877662208735792578473229649841900391567734330537902279535809534815297461313292208059113857103454407341714879005158659297133873991417439469553544665218422314430710062513359280437928417263104448207587762850181645632930295007362921475344600612070115781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24380648226753592105632658880754519637477644922783450513064836497564042069931440055892675711997148204084595304319499569136068170775929284030663367269819464396705999373333477735693673662398433767718338692067373660940437930180145036665451298088682357602036682129445763932347549673838022103970473722072778100226788388754679622848834269730589132318478393975686744295118075278899933049274966212037671745294435021353388443353511488518452615637933971296051023322895634937845367133050741419001525840957089893476908106943214000859258683491745683907230154665357478441637979195940622489752013239256829149016215179756483188683809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23353719031656928567508384751107300866155167849118165402334396387957551837918189811487892722830951262247742869906010906286757751814429456790064129877769772111300496040350330885258268071822545213959100137451453465339695688543506227249708822335614031345456871150821401507729729105507308948710937713639501862167192809482599265027644451288469047298039974340751106405435962537273416150356757664246972359785157275399007141644492701409861432258210866308044385020001388081865643273743443938910976537651899426100261153725250106736900704475788767511517843733518859941440445424094370770864082778356755480272481274023468051429097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23339237634935550141548420162377089171701343476036162634177119954223639217992419457270261781415366503785988382891327392336926348984603209980978519740631161086010188844922894856676467363710292996277812877598186549784353068520540484051765590291626055026389937216048156945215710054088883087344173002038652746680029131153748244907335556451888937003291059928293527981195631211824882254673758723917042799831385049883515823223976055677662642870953004235961288510263390053955788049559530360494480087912983832065981930682947232179408297971979806215211643565119892644344041104491568275815258261352314548282629570625309101866551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25410932840097704056204874366596686903867304264452181387900962768590434285865036042941509576286076272083016513313956668657512413454815147494016592044133039621539483940221741487162271433363244839626901057972116145119922355455336291487280633812269059973871953233483718321480501192435576257449301475890373912810370754667855602468070681417900795222013549605068169144426488169253784012671816884952159501259961736280370450894908076497659504467984073183041903926110066756708952906075957745339125881173140222992864498584850178325991075511220762799628081805726024658501413119472879282919736358639048308098333316354426334160921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23494669278106708516541664119236440631691573454437466510020155052824024080096160579043079312299760646520122696802800084214271621402437108456575547180514902661554567951506771349507785528162283116162901455439123490732053095472666621959984828728450767406977044167314972275105367168522833091707592880121203606189904523705590161254271818189956743760190819130553180358576160654634607346962630426638828342161435676786285234877276663817121430883811187552185771642849643226115148026509450297517818408919230979048471538947883155451900319183811625299965771816840575416611468303615599479852598205913511940487396249141305853275371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30732384963152465905887100307693399516621562867851843942173210695304116724891519274768039868930995308778886160820187385526615820185969076076979160053880109661055508339039318699798599202115252493631532677355916478834981194425412520790956779304083480255963335275407263699457011030346046624665997105789893673641175391578036648772173971858955118327016092764503713070671181440047111572941709382628567534172694484241086048703474834120061787714364034166754601158288843212731119067665237148533769817675795777910837993755455182603154422253041933771212629707768184040743184504217921692883155399622540921934807674159360202485463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24007855807230338291276582444792775638353033823407246913235256456338531558857126075297848017352819482978301432834068547367757663048770093423060016032337507391017616764124591670660338352903134731541566600042823651799820500770271222891745047329021548530774809581242979573085480190732212193643764524875993850874739551836706129408571855982375359811642782241810068683621984492649832598846342075932300854839144589878593461052188223988977056610199452826029198039091011479659838710764968628074876112835569128931245177972372416308999015081500248016705263335966635974770477200551587534816688267818054790462010444167041551643027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24304272771627458443819902475784524515366876719853466873883020575326865214219908453178479253125417461964904685492114068564252128975527732105520483023384811065555231533864199453013334197825408902921813825004666302608387913177321506843664197898802240807839266526690117604689611662474040229182308482772696024057141497680200839111694074886814306563231432094266773066580760479168791824141130834351334717882937256005773793185635181828388290261654338237902815304082447448532573845834113688755185045802507561573692836451493331827855559653122972150215008786142002385477850970919693041639900970627981110835776199264148892814871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19344745417331177494715114048563903163360502441424012447751665168923309019656659267499453237746927410868394034718618893226042222199888066733091170635325637450357836819770532230743504904781162288978469136968833023804330539869213328639415854702990774097494510520867194256302527147037909665977808808517594332394742639212270426706181495028731565363938604127075684764640393077323804262449172957581918067596990057358064718458622288536864175043720549555180576814421577286789834334524657056139491823404048932230121978096280603091071497115237185889443447802804949456330999133477075429879424184320430239317928728790043517200697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27842715578927171541904437291245158058708425844238444710272472526030456952234849801163540049656321206232695882244368831600803600123912435945708672206859442176915531939922016413907207465638119297393982271834569140112046703193248092841380760888186901301597324702110660314289276327611520510175179283885299520648975536223196754827322258641984053359110637073293996166673135785424958531557141057993322457264141474267748764913838072418543401946896626680197487554089627067029311301568873649491835544779023242815586869288699578071426715730348175770483302561796086242072395278516599874910166066534996499544278716082018187689603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25407789155953595632510374518394226582275549615349516863050519121069293308750109623193989165474170993822141286501844549542651879400984467680035806090981267684582214888588580203926544086139407254986634118381115166683979219470705635459361735516738921629214647548326173407347549053821855799354184746482200071678863931215483663746767328057789573801796783856021767894576354578788824896976481580139466869758630122228218998522162745050908802406348982681523375508519227848464640238544437694556421119275079743615344679970721835051958303200567313006255237245549555565351415315268884995400313124751988979657471096875537576023689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21812617509228094002629822463086243700318741306112329908009733503220010768081746829685962485749831233592327435860914812470119680353241707381429616577516330241220141817248805619545251031889439085968199097115040348219100975299046795456592942811084148208900969242422516677897998622409715726433576035553220540718809725945146972858200407220897376680045590570782031060678054156208116399804997082008949225813129198323899705933233630562565399569582641358882205978855769441286758214895924425559416092978747224842571631042798122184776184569603406569389612527032075668626518077478495360635198027857275608736408744221539258757537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27471716663828507399914477572562163499005381377889408383457041677116807143821278953969410325997942671808699060098991299613066531741933925612461305087798078601767777408102889431657687049505842777551885298429903988819893497053330771695682552060840588359244677735359512095550429833335648838969716975571337566161826228298015355651936309377139768026249475692798602086885483033019428446484756808410881473201874019735710480545900890873091580853335468104056202418280724465496802604723992242765646094955953287877619297299385950179447711823640607442210353691910560716749285053456621187451535563072134316236935845936819406874349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25172563658914349411396864495938325445128203525945484956706315581830315518862377133126584549859690695948368438296279746469084091906883880874964974072374080237641337870545522695041715658509618967593426889725017279627940881128128072105958407547943498193678386213756333639026938161694295533487669786466091110090631868054527639919349281936031768672253011575548236948395903214828342421850358742648723757213477109138774823187757691697240957598312860572017471022679453098080906986509630148992977683389241943583402047476057868574408223474575082536230595295590066684710520067444631397454597728689406009084419542770046553741809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28731934088910845505468115448632269482116581819207830472309660639725063898977285452564077385689647508870767938213875685700125671845341712160226619210210837716442241868269234786794688543049185143086259806180882063110079284157335336249226750676315349672304370657999321973404303401621635705396996147077863463837860441420139436108090290713519966916221068594203280759697991612072500201579133558464103692628258959268908229118422964006445021407555121758708147590265595777712807417192999721404164247936270441002615763111943056012640933615708031028992542895516833705440811123522950054710929803603704797994546536477616220190283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23728419296187644887623466259358914639192718913578335244986468578694671808895174148827145120401912438135702668690161436715872151204932569438881012203348362921657204245255063583131622418385375376013857650968686867101771595197108626394146043848373467086529618826688834705261873999017460536734852157282103214535608346834039638421076789984304609975333918210010740468652707254199554898966383293783138015530651461931778071733378140412924686906114833416964911875283746787838095702466679698393706850409057941535823541649458298355044893452950465748617920690002784880978919110572280254849144769082364465775420878824475715191251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23391623415662082682117303856697305486505742037887764415435749216164545284813772082571929035843589112759995488825358907976592592437675212135130314409759497854470109194438639964180479104480456766195873427961378943683095161614190262490939132958451745667342830342674274940409076327910609291708668017172355299434179830826316635500652658865615851260290742336990407542169701688537853180436960888104261565786482748758500256097098681492884509624589898075738053828052500166921344503861262334422984337769851717207695723876537029789646175596408729503892741808860619031996837007471227209037565737020947711825074212073457858801793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29627796056109894220689243689432475519693607646020382486720251777237625736539219704175418358321213000950661463240552588762310492426705794720580968331417476859763589540112004681477187769572931397916194165539459979136814725140355185064757384356287802104749783179870013468410669350128470259798343964789136664342716275752729200085507857682688106996283722587771098739601487254464827861075816838179002769481198502693324064619432053004570206771440884256351098598931881084403737153971410065624753767242230081331923277243902974072114821322797937618576822229390712924449058657428592428134735986267665105267762493680374970482683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21858508257772766632379805756052679394391018051543448115340349545675011906988006112511294653555772121883248058166670198460993140829272100784044831399325751762572882933151409199134903370615928873720138182845709867975791986505541930517512373937039211762636735695875846101057461024061136484620640465678035520828051689528297802086633648903321937642186966975662728165921161681046108276479723987480337018654606797405829558441522772954078460637728722365824802784352339301486583241509226453356143345011503573002303356862452891113840737521003967480935398728447091956712319190318011572362325455411611103676835538351652670594209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22280021056364218294353165877473590655732467446244467866047911440527543411266551800682991725481762191591179508398482394211071761916678076957601340533740993638324142677042621370173732221523990638415545625527052537582705439968124305487362583729282417531318873933359917683281262815703406230650892488894150862068452760516450182304948453735499828367796902305170672706583573164264086495714689986496882825618804043770929932508281401208233550971433161653170548767953048901034541982332031351960642001262738141326085988047733183781291331911089590696880889477727733353229122429184677380648155613716301132381130610075850759324219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20633388419818929490644578586406110088727750537648283789087155126625145407992229000341151143306804071370714959882987403562566790366695591172228611540368293935745556082458927379538734043540401998832393342073158822077679400770470142710897888312928867140864798609210968886026571919832853225400608084008541969982900231827535933844966700939500113783134607728681433344187469355446464599052096790883170681148455566032602124038017850621698257921428026213725110575348576038306081509400026905595143010084120670811102978358538026113015246331661465654366413013945471388507558655168110515871706515237606203515050013141309283978937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20932986185327047900862797794820863925686712685915765580037066102376567000823187271847343387667605089520945290772727347571576162682921272509725150488235920878629782113543362443137416012787021281120340270241408157684677599152625964788878185464541233841511694604747827245144144982221530317798424087229426616225740107499289543507492750913931801467872656795921980059439901873223102870079563334206075195626619583510530492075726545726623050961185475419675012964119088525440835540426880757363243898209170641403464515148620595128395841108206326516296423081448768949248627842386088094426902537557464164447284722888830117125359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27157744098546961994529890247412435629650032991297705899527747165131324721509558072108771988160979075789705084638683826438549669766229986517256123727158559190911148688226519511292826054094243902558686714999544987605584763461468141239919718423098754195837130745991372289608607749941216303102352120217262885497197682828992319302632586229183108073181566280700734795754250965413828001400471341099047844899792251191793446892573600035966285019502667967243407411070179354725734350975302245062680229236217175842967059620074729556387072538423117006730706283107520563091044913971894475993353618703633308112075138504708794675843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24936751217510787166583071730474431182086542567978442465676979430457896655479865403519421637725564083052527308456590674732525735163711541836163492415708660964591467662740269406183231333500168389417751885140950588324618902450775251602671924029642253306609477252433692159045797151799263307657386842195849111613490222893233225150763846799476625834378901929907364446828153263734440512399510574727776333714877090548623475829708443308960839920912055161887840301065102629959031104408939345081877465574291027143273613814761863186897095514381170769560904286351990704484948280806482141670057262334551312280122181386134754658641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27402455856486024614787781826648231371908308478631807273110890768813508243186389553554262492749381510694185620007705917512567428099578617513752071679904412406349642524105598467879253225002295950636631617679488530830320711329646793663902673213156725142470053153980709351536874306901880256243631860227356573606043402543836472910521871279432344602108263760018262663985931231228709296551830660800297176056263268503182514714318226495943430674143774672005241155206725401287267936631875352418027916673527314533896875605578629224567032110756568233873162473441014962966851235648321915356930272437418756729515820951404528368857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19386696302893680195631547275040835969582775375988012273210135563693316360099528322389833120457068162476086010120699354670354371889333234809860025554182007152523729811287767096379679455066943130561035416133681411761100043063141760601070130060984259160908472607682215817527912319441185438160189238102483764350812395339524158333920489631844463430765921586572476325364001830546563364783776488004091891189672642533274883980304019012376021762889085053993841201735550194755605312467469840174618243558177449452638147439998060395822921339361142666706479518555698114767238999771821948114373864702449489696837779329679996157899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29674924869675739925711519774161876337378608062671468794911950348093694193333255431987758294073640020431545707689478620015173978426049862901577686958439179315504048172951089240107291046651080430388686571082671539639155646992855737848956390383447252331450934575515796616010655855763092551747603117495385232841430875801099785108282988174307404347643952856234366865444988405844475148143684863576456439568310926589089267419976383008636062044453816811118906472195152251648899020396981492476869117439029860705533940164703351286210294168290335440341076112302404140635069830674631508838445291938021867840233504742867496410451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20429986065774066442836058704790270629411664007385327235059338067454355258895163217009164988540574766296579275797380787707150428409536034850697283113274451077778762232071614486822000146418936987176268439018028017375893816639233847091639504864545478963133761728644998820617056994691230916066845167490973706378842774278359560978326355355526149011783919555504596007150868896669706186529219819923967587732180888714055846353237085964175198089860429336748983489145666280062725178937910056188109469321339881428333388096723157411772952687158691238847699692856660581875765168457279832771387873091403344787698139869789684624673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26339701212899933455329404834390549278477497328700365300643688418710425076998386364877571971069574033572078273571298386427012175090678109549600968966874110699087040275951260483748254820985899193174717285217777040086520835523149852701695772912518629589494294573724209274351273718218787372276951273086353076624988203336291638681554207553975649597481878712676657217216505443334122686199328799524485725945979184982255643383646496226846771224209554706542001418785528405397436316753342341182319625286921698035894857566459767748229834878156716376283455057286333164812502897007281565689320749215373176013910958395765762168369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25887379138081524836331121325182396033307121979139990056097285836801506286407030612247980445073070478171396456969390310617601866579871585500020731907301759989866726192490950340803016763689674388855538762342956638719657564353957120934438014329730467976715084743118783817151940201417591254394501554945135882100138623403765870366944267909636320206390670584913534697638327758235515472378041381335065615020720624364805611351136978127581885131166265125424894992470304376993464916831237241253385247620897375300009100827711511344395850699321831311613383040940416829067646291246816937501281523705819380092125663516273732640677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27182335195266615224829155526548410921629676171862319394760205285036279332783207960735517974607103299332070761989462714417766876545831073610386985012863797732288670202293950821817531466839386922932507658659266814915607841648761372114075337120685539144188602366207228017151624228167854023538604206207605435921753188705519614105967321147062820822099044356067132060736115510275088073418521127448283573878188268619300022807918286286043282792028299302216683945460524526459949830074597516701950449902017671687940093768940352240258894961739604851337081958687225331184398610269026517900287049595518736329653606611583753890833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23639934830823138191931858435964348212296616916370849835512774210580099224244617670249236168738801131921673661265459679198456572151852444148964136745976346288050357526349873976929305789316429052150669350793143853980836573308609291338203948625015157906347248180294443888075631671047830698783222564874295118260025644096475958333701900647099001064708539495877004879746546396063283602242820528852837863781064424163964888168469746222619993719109133297378497670450197874231700878734926970454277437912193919417871306998610544359414199906174966134322689861276288055708657148775953498862867535688419237965694620711338807480609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21600460393677511878528553828656696310292839100079154932930685318595086297863331584043469953711358419064834413184265224019213439040333325370355572949791491599100895221209778688885152759997086656163619107561392972519623348092276374784921307452532474292198811838355336360904137529141520556811580283654083253741811448825669509412356248372036968881673744608449937874033480266889273437869324478155424336156927154726735456392386486361024968763588593145021917292953148334112539409900046309350282661378537204250978532286500394382417237912709909277323336230459191384591788208888955854475139548031137288688010907591932291642343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23229512067880368176487444591627028936696761379074844307313767811019132489773242804871961574643258739852540356108808756808624420716926736013247240554240891817317732369540698069845952403560373278326242377768240920241195860858725634996722803648164600730796797671016682541794973230828928347903486608420873242399148995929503669401662180804908576699551454170008489694406623244723861051345035668025062140743985019519047384294815606153085591443846649311876692720029025224566273623263333767477322549382191413629792072935871071092765195900181417562255934865399724193688719608848258850895878086529346474222163509724673015764549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29012647082608093785573288541394537012067802318194761748557243281647680334435637091021502446059249907808657672668082947177328180325932886321724583450827560429223566425368880071293540411119643982182165862249422358670677367652863696255646441915766224994512504754692514149075199945688427795939345731062248509620862212758280377708717806513177275857544447920910709339765260183568559537537670349722697715165525442297638353514522785735873851237223204091964572641156654694844332878295829746667532269147298370374343004474327181298803491392337581641719130946487905126028741445954181747479905686106504087411440569221931868722521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30729362018564593092236339857162368060517004238751286653652058263099183327913055045630055149002736578062687697276668112382997887126395497255278221707539747598458582959437206289358675872464594883982572061670968116756537994519282967443155853297939040258714685058120863023660734487754718813798117112583934208715069193015257459189179826610290049608097031841089836555040617168103507500751625209494698564181109569476658988043911061281163042600271516841971705011175303847859892035610221455783948755382027348182058177506945637777542125186826016473256025290981521259125460670490392969596448297657040905684930273273178442287959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23644722624808954858964388141116242086850245587528875306544945669529405239731994575279454509106615989859659609314005628361552850832575154339665733937663324918069621691684792161291990252061170666324281938975363425765172645058476443577818457249271112468191495532232426405939449480366614264961573500067388835985287287648497132637846311700895019280821076877787072327436087000297453077148723683799175777011652080830254449393732672673907888143234472179016035731392577806771457689774841415875639416096494509278379347031561653695722171563563552953413359396813447875447552247086476020282102162937568359305334317204822370993163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23440632008028059639272710994729081319991449686391982423359483570480397330069558310798029279973477174813357320220570488397102681488380630593198753584628689979574189966331345056965387765728116874961449404122715049688067485902677319599006113156656278660624051843453620121573159800674438524230211655189563081601517610214426397412172094869102404827517640663164092769464750841093884806098360543742977315937472513935856265621289549773729679089110324135965781128387720160627513009821454303799232457351225595184666566318111479664430081627253264690229525452580302306070071229723739733808087373159549077366084266262290400092399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27508020584848588894915225971308012365225080816145541952251084795863439184402802936248434049348131519980716351248543314870505846406634920628881452186815056882229478953837018090526355378580989857497827053941092894237616163252057088556003117831081055061647638827931792526464364415688802567375802753951240012104513992032892266779444993303150982745408662965252171658541161290756776022004129131571377251224400112062742077495390479833718968564282607264723245220782211338787025186465257676667325238541789256345421744103200390898301909053181097539553022037931828143333162245945382861116645212853985335855991689367337336241141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25020543744632595465680861610247758124628283747297961946658856106305291392441796243417517180921501209841264543380556091319957554630050767612979396423790711721008031875137108553064991922755976108814126935621519934006807269338705078075427441578983567376379152850393211111199773238215439581628083667106241081110039734646518466547139119202937858873251296556432132852068584638193793214198401134206637284507817512801348933805590815027445965330669446879310328240019415336418524681591356801482295895457968428487308176410113207646043171212203555375883391194693017629819909706887097006969679386331313899232542517821096727802317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22667228229952582262548506852498175906666184928072417865715136109079328335461252543225618446340576684782638301962953118196999231015537168240911661862506656451471902637371781261089176992241781848076300461575712853837513649533521934813316699623749820392649867215430675893214072604199349933475772252273859721014803588309675545321889999703462596037672653041403541824069040569114325920972609879563201762733749604072321686065291897547384277963899603574571851745275628992925736879910248836846208128223187485169432766012881428116102348323669027613665482252193664485435829801408111822383051719398640785205422550396807668566003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29160839008631830251457123918889033633713916174376206143921835617733003593785684692577652279080236939932022688738659942336845298500961069263229398145308353508951196713655321546723527918136664643317747021634426937016804295469623975802431903376407596121130451885915930383590944861302515904503122910408694232884263302313320819528668363895807145451244549749631263736487047028292950544218670782627834962122790812421383654341300725456954570739869649619570301156163833110926232328739655487016865688421469898080069476927143927348764758042533141482546271319466263565509404312650459339170997106984463411794870084617518246012081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27778462596164125495136548298602755695662204927696732596457945894837714987306568272370321532308003469083662635859287787032806341001131586208323473143094857028968500466814813666779250274113705456860901226730069815018121728109429375010318773652947371496347273356959627262758558941240150767144673009782414014533819245496124012805888293231377078157182754807589710976027727444908338035678263408516824048975662293779158893441308136297856532565401754302585868359019182328406503137516287245383563381459151272081096980872947041201987207229964831930656807525127884583885553110367890101943583301849249071299590186749572318568427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27022147146323965383350460006670147577426655752404784277745041737073961682994965626453216809715172302791817303259679393427799207595095151776931197746631480724323244511902325562265377896627583111866961022385706371706875449457670528176935242450416086444431525076359127458760767983233493843775024074850641172092241566610870141100472748164672371901829001800083743317806086933771008679817785391678657724084973864212843397891314706735704652093713745062433381372369206407860518704869697448557630423649259661744417985408166645748665889989406312360977386803000878243312572741211335472832033550119135615906357726869988729876319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28607828769145371135757342738191554752534571815311155224547264046646847508519391914753432551077246910540210296826850917925005154859929111955871853671691641315772577060097159028620959904279207861696076829173844934232497103805036324432390251598045253318285153675936146800601110434795110436574621459659489941569470559776377727878743837105217957618133512187913570946690331548899815603326744024664001847576979422893890170315574507705531228593917649192550453302592578062362861334735288259255193966042760669174125718152102708291816045612382277545165992530456654769946758258421273160776681168485798887827849954882278284073909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26106947370820074620063962761511695068997003454449709584406884126986342440971184898495298271606073014305025044796399566368628631321683446638483777725652720643264066307871821388749563509021715825207076470720663368460948428488832794353790788560359790057292281927474906548033300722724034328956517255552617214313676235274348677091396044595344423864250438252606408497600914156505929804994566585763400352249715284765061252059894855262039356299182983873596725112614853936968490811886372660336519407691578534728597862488328159197965307855344485402976596666995546260055980591096853089098008644601437368294107906862520176761887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31223374246440913189797762551865529231432575533142616213819525227580651455701865782541637945108843277268089774534641644080797835635470624957194485202027085810566753710187402078139178196441946465317790402363103816902041812416734369071111633587088626496980477393484989900081323660091154093063629596137060256310796332688586284296477580539049125715535359760025100913086111970896546045640804794431887647421242383675669499894745319968197683404184118755549554651748217316336759531664049176333602526016635618043035353379388926445644168219862177108644144380378420385803090987458437182656885701874684526697669029663662236504443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23917710384705319031998793257071758883662751945741029695188849124530573725455926125154171407048999317225973001512253842796171184741623934621606658739321141537959381505529206889817829891043814407011201077995879402566546086436667208547745377449503075707584016707829233571942838782415756870288497064378040196028025625369775888045521163143505613586585605164960657687323059123159976334203463305674988070092581973890597591218291536584037394130407363674913050577583023828827996586225527033779109986704055064358847169156884525171002248823539046783628948235744230235079303494413992739146301265865261173179042266096831046700461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23895990921370023520417616721907186252412730411184068763473608883446173368645360870771851793400520459545534609979465191229258957863160310895557284548833668255652305349129662461852583843959835063697425810279837554497135422793000900515429375152961647562978136687363018668428682527954979250628828957057268286160443990809240761807597965001036036639267327221568692770474790485261552510933883079773813676107919029351677804993237017283975188343945409713084351083668541026031423902906964497872813532213127410665613439861456657373046063975990985860485813416443406044931597130982080294660183752605078497765563181431141727247787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26429551483560261239074648449624653455630457298761640714143997375772900737351394795371109969206766653192266514922694565707172155249379138087355886742621051892934266337085105515249917084169654563499991429910972452187563529366297656833968194623389794985226515349834554125224030891881201254774054021660386468471277312067314726378404904250067527263793856938099692336410622363217412770344059880839996864988102925878094296974113257781633207367324382776494749770649641185718454680678332976828868556927217139184645385938693888860701728481636046649067170436303949420743439252275155247926624352845012438941800584389551312218771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23506637301635014928525193178769266493745701214598242603663860059975255631017876395723797496799860962711172957378446354494378839188819521351285762278966704920001630906120357956852649702645504359256328353597634308002202541913554868155603058070572556679838985152346044683898760266875801230438520439721017438702174554235157233563105544345918579268627686896621081111653720864404763921489038166383040703788591128813187390938368476100366886626411908405574697514460751213271323890344912006205085947277064183667582254616339100246402225167696474713088456850959522557793267684846200908171791237324587245462446774211362595001579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29029510725076148890477392324971674669931569803831633496761985329873488817672057828470701261483785728115847731529983287782473869603420038953193997173301830317618936304977358702673322724080555996079569051760401560496675099018259254856597231996646570843102040063011313587164222024218502441872558191973714578126061196516440201705522898021716790247033051948715132360575631691182043130636050850366455342209810732959041407027829158544709893447372062029638387980644829368793788410344068955455017727336702915530025250703421986908226169365938611385595702689769555857619679712376059433446771656163124341745578025593430645483031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24334300706095560340451772240447069211166356879229889391374962149418006384032782157159378560693547466745601267701000972039145331032151711637633228089070150155547592356962134621687886251274679191284859593935002229228783133603156959057170988925646197468069657713212220419479103987360861349009907560749773968553573601789756294699261703289380250297840445061538502117986029537864345923127144392506734898198831958312772032587520042683327827123111465575784763442571394505975209409922771539624988296572383466583293803676451150205725607180468513319461130137598049439401116749511028855436671863283534665788787836633432994999129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28354915206340863738875105249752312281488854470314316393482890352591386823105686651402788135957506298662740412443763318719873888411426089604181523563629810474289081375282545113837053123826966833808539337754106651826439799084850825777499789441357190581485432145627869803625054269094518901222497218209472466514773938609396027597595185386306310510159322216156687940540952253668886230788601027082226516194687565547791610252025029036882342466929854159869882491420130052436951425148241782295299764287979542751123091141890876580580223523673336694056312217731774398610356411703726866751551674898385656938108667902861006783071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29244068407259218662781511048971679164009017235420875770029651460095631194196616210441197951328119026867411838263913395025746844362138667494109162183009238590566762517407705540967479916355781257658269580896114411995957203810428950469970164934933102957916842902018748886450607286132480663584614095180410741718016625753865194174283264538694746010581506785772268961940318052388827444841608545219478673280674285044064381794544070331228210709115385415051987642214155517607771528614350485548257997862753620570559532707072120215048572710185637410880907545254507014545935227074907546817550021573298676949147565127930868174377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20684967501924366674190523736099950373969635749133787519665910856917355648110422534479138920623952185225948091636485683039612882567950832217628248401433300955504742982701114207820783411268349312840996491943311834217161135224181737120375982182492696197470273454728193522434415958252269115262660753759040638684196292403951657237130974547774814697668209453438676882112217024183053732227598768991430600698181011174564502067072293555203745674709087994161936549210132581187303594698679156237865997764201001201542279051189156806403012825774158768250833946498962850487679479880106984172111393075813094446006883701283362802327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26980758361169925506261840113992813349803698933826817079316821725856233712531003073780030250033460096690538919882225954351101090201714903825751543255105046324642023318015181277944278323860546944449343134741973469731935114284292436764357888275387859254426800114064515970597867752958506524848099169806859043237431712936252968961364592181687874616395518569243597021402567633570836518376033876540255445231534076167577051634979850678224236676381187661634087935501944099849266547497544770776944149288668273496791942969956167186930106066330533786134910028234229996131436060055046200855263607310295112797758355463860828755643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25524674360460009169514703110937024167614056496119235432273120259756475536728195986724110941514253576033307333961435396907362317101307994021561470117901909337573582825275938724386994057988413924792245445360509067654254491488644873461157148531349439466231160911428052217885553973954678870852986372804579842133779434989452458075205196401699938962964659052600766327501235061063473344993699531503455342289095972746724197488257109862669939588667483452897549743437706491597429443330652940518306481405293707702536698244765165204208055248526070655119661477503530145758680667572165193632100319520983338403963824125001886158861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24529364294178825444445421228329232047331340127473132109821691727650109977841869703809599033077443209282545265016513198547525000456957479779918548410000598392094693815062438018427535056510071508403362212796424603547078739340647003443522658646180921730752153840985730486950725883075262846194419441645854337069772763401618204377251057412725074820958236586984006812617102516776243533776805050018419323963339848412681196068999598514272864399581806169808384791581564552289676577621701196117167315263242146979116804795303824102697808230574933475062551550120946704397010990348058687225104705860182812248342719365274573131761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28285913608087092976104114238309752312945412894981122127471731029961796111130142065063632744744566310338607748010351480725475643518302745124110514786953815249238758281183210833995273873247717112863444762763699436033864289570567095012869909295499086351100774461412893413858185128920537923984858835422398464020388078918930799171301104737135305425327713884470403031238352306797192813053191238812495941950944874539431824107616415505589026432827751984576045276942210864373878615536259368789124146360313772725074872707291819568618252977728327172913068702663949132173131079178851711996272855224654450785940212785893410521681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18716220371652133602135625382083539587767451601179433024867189486148304199538462909019920225868116743076154858814733474494881863902055496849527852013552347809636354746678328415187173614618147541784292711282060901976774601800731746357555792142869383549429866262564119710488805554753843032443037264013970293974049399197420025059574187895445593023490356938833074150160454376522509704090629075129595600068957893812815725024222715711956474395339437280091865676773674649575446404366740180722394801387959576039627151092551347950690237226420376242944012729145700910845381359183499317166438160169757987521042872787973481120703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24410095350000783075655192478247267477783300795028058432733616246804905331812246747851914403998303440172585425893627899140818860471154337629014710352285540338241979641355188300925504849146469880888140879569964008258635688762485724220994697953344688966582615840530908433099272036248633496993072575346784777552373623261699261021541757871715259649272458838217128615986611529391674115057787638417049156700244286493590101102819932996622045413522210988469308905522517167800101285664120084548418368478556717287378765840276021278284881538293461872745882925787386333276081323961861504596207104606351543427615544296031503690729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27812034440949091526703395074511583808595068892694679416458385950355706634404119749680083933352242193270219111475282220311340173676321783836417098400371779137821362828231275962756921536779339711424462184210513307312615098520526643333825792065227947842228637141989716092931830252957215967191641044059359884122053620305050105367394791879957761953086420885291652619235719652186945686598521534430090913323146699281736722171119457181338771807414000628287394947825030645735968199296918276200004851141608309083441962559184629376547525423395496764222569394347997568523370589698320282794449029553337957256023661431429546391551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20128101845860515566265970098330454110486531529698917656642787897572647562235334263293164529166101251000139494697589997736120875335182718079931752396911627282902644197873101709736004075555235255074658574056229311334040124417811557621213481661658379529908003092885773735739442401826123161908338857007515448969617119327613881991885136564196331217152148030040679227774724438254534311602191384382959778503913932341819583732478433556843214712170190633372150869050886692877002429289208256713414330739237588077645256547967461997044322861063097505399168702459689550216245295368622581733151297366779126551525981503307452042451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23739166008548628032792580234770247956296514833724349048903557897213923356103966585790640161243978366321143076911711663764008737531599192899482920310731919393282770936079773100970394769441802104968369944430287183374244586842880407686376286923828584110958296147577473552119457739192174151695889651831270441448694215515861983970727506947803602185206742380470684854001912324412803440829103987694573442224652353109780558903200170399090575385540204511977650362165498013525950484215222897506895167483239224279525992248300576108263138001492845362778134437647747743664575726548752863049641889065641393613354914101991749894891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20831691445943243863410239345348273641408104575327838766357876505243486594872928970188693139043636147063948124445825136675600576076775963887252823472048263396401724955311376490308046838647514403095643636792931773086064518053793482048837783671233947369828015773177949091269010589507412970177230429802665881280664580277574601187941162674683017569854245757468278261727736510287285085713930680094977345701691653701490097972926194909284390981446887566917331981613825822586149498124222325707450603794339563065131774194545187745226973698731434720447522332728731269628520269724096454477930318259506196981007951644629979429541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26616289638331179547845413569452371463358482607633005172174713972934532599135335810047437223767776844218714146329131254432786986387314635486011174988733208348953629261526392710546061877816065385479142142279505223718396963890389570833007587304717027367191402130375302045463677803772917179227557932267352799252357389932913902431296153076748509915747854619253048294770375978256042177425547600150241476805079133933328313589609217626726302273950646794421017857358903270666430468955139874837644894434613034959148521626585210018731834993447943049051811964497784804181932112905979446101028278623909435214025875350659596661541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21735785039462958043507021805529834474943297634664876063052171133495565935010698486001236378731152488962262937090558728747637092211705586025856319106736337927473911994015718618922990961818151837516563704366529376593589459521227392541615610656119540554080073013863976952920757691516700977211138549758539519621590935863353522163093712201672519222428265110427020650485171785163966591314642810717453123786559943244884693614540189230451085668793544118094359453725673475854600350791734258334144617399275785574438730470152129659909186630735789798068885182192256585150577811294767781524236853265896316924268896485456548449809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27544740859596919124426104559238721003030710898016924707090490334922672548480944149081404915449915258424307355987613432980561178843743127939242591770631384816948101805853248187352332728435317670867004257156860920185510312823811889489012022724428189005963709552061532926699847381353864169380116149952010384006071936598861361416093099021072954695001954963894548796237765363882183872447846364535383324366487526418317703549752665458687862025492135991770276787802866881513297814315247411616535914590890780050139798289757181324318092122458361826784335909900201957997520008791703572450452763201958919959004758831743548533559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22011585117872862374786462743073851737453684069880951596016107971055613411251393317999331520558058458566389207242062920267053535318923678375088926109844044429581351223166128013320118017212036000848262401304716549765273064268215239767070774008219859498354743027900859576365815613878490282875604851473901741394359133402744656247693948890179966068590409487396351817006726378454600942431178666444390192923044416705878704308057330239864567197902663743538602295616087580207345253078640859670283146670886252326237399745869670671125926686846853312472820701705566295057504031805113225458918794138444479557715035361627313781291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30973845730411307611177299708974502837247335601814673214470396341641122170234649632248586873828196647877207832351438405493177433301016395981499935862612454140515817908280652509247296915327346796979903398778731150451412335401716932011013772953338207709905875212753113749084450975187023627906649882516633300673764002327783680511134573671365826952334622391276397627017433243265438708590020378335580047862531423533215489019553938135341820759523488129452636425861229140434774408358723858307332686897313417325193193462397172815779453870340315252504190128573161889853364931699280487827996914502285295390115853449812532957217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27421035902907746838505182230345678548777595099892546620011521554018110174743019590925760157925545045281916291313048876141821338228988578910948007519758778560068756479407975185110775713219434925306249169222601675561909223947507399727111160270912768006427838830743542497089336163546114314049651914475753060421784729473950147718316473095521712952574002896960594314779942263338710150073072233349321762430390092810827757658306136108419039328948664436877006083641127808726779417057076884242441966985177570632729571850925649468082812321276268599877950525182306433462531429473211758341581656834282386484106684160692972876359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23634240964659725915700810248938516400955872569926716869167179566465824869535262238734889946448570501741326480062347643801483436446167007124341412730054284312301042297016844284495722900799875939630280632747555364699271707924486523684283683541039980327310759499027068405397380503617294616713643555761261743859681326855627099153320415197136994962832063615580133436695929840552244364275030195885912313604719263540188605777278183292129101924665161217947457511314517132613315779317722222080495954553136485883524076493455977197065207421610165141024355875090157017750625463294165334198997280055215588238427745564058280418361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25698626777830861792058415820060434705223407960437214232235633052241986392951757742515852845486015230580595729271050169404498335396222421357034846120468173785320242221345401176774496220342206104690727791534409413400382594009897878428618647271730587305241038099582262673317548848972702960322893434636764941815381122768161904401444036022299929195695880175600334136656976768369226975044810335375993489086851283536718814117778803616438476401201234473727598233161125904174237405942053317800131858515088834208074234418803828458858834376503637308343307443020126224693132709727802276067187010464165462076257952391414259969441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26126384671976083186624641938329497127655772645293780590520494870378105639920320327493103205683670533670888162791699692568738853894824779602637300488287335245932766323384424428253478126764030774800424105714175423285190101109184785457539223492898747488951896801830788521421027620163471355851772770735373380581544856419538318789330589087916833036621815825562526674200797175446582200138050216519061878287980837800119006935793538366448472458989153898028442306701362460938068105601440324570027545681303875283019339585785700084038225013744700757854151568544018966444434181037350720096839530937804339104350168672801728993841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25534545031730354630592179562083367525052285734095446521905536022047385194624912202417656867224918579382440527654696784315486645512538848720117493765931013874188784176248994327843797496329716973113474816796194404648875741416247207662915451915984441667985811842279331630860228182990137324986583634191364875509114922532291824070433648551502726269864915450385741660907922221948791435630789361950216475852446848160665058059485446816722530764570921192261594807617327521649931739689017540449421770262923302804780593757498213364729505207510818300619280886153364408421034918933535373493883400074825416742643994459092993627391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23832804668705578197670199718146541966310729633966446028716629874708510670712141061107224881647831058994098121403700460624581862024487745375383496402644610923063857734435837944825980156022439927959166341526172040292407429065061425310528826277429951378032424869060774644312629396243928046703129923455534533463345490415496408607585771495759421406907480625143763426791303539298654903355741684796320737756775941838349932767624924859815728008395380727072445465181377866082330474178958398447717323744836528449828975842023329363102485621029335068796232764197796505164471219554058834735757840555325065691059113940981014884361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23855206175172911230583641876805438163224353583481766659636287450279510089667444992381833628410200278356066247787163524074169957753605751879310827541182080876330715757057647489232474368325410505376218147914807943811670189763707731886648267343001507997274219688286776508631102810176644760979753458692830952256387921766543152981067058855176068511185651049574592942111845460406388652522585406125723642965348269439361626384234494378370176133906676797189299850969992534248715908906247410464775192748246037276892214274935280321407909703117587542944457557491528385928939085407797918901889118733635769356159835773567383537817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26926507985670801008653796294269865980131234922661132472287010232093874897096684352651820715126264139766560660039402195245333307187526920678415081261019341407043022829148342647268694500255975353618285694410689706429594451243895671070807012639117649163425566044911664751230123486594751040618899768609584504495177899652568646858131968581537394096047781627234987769465828698223172582500120667946473028404526627760607231690351656756261147576921442144136512963512853556352639143717117671797910042847535657811553639390974962576886267754245851510874366570651847457434661012176770259467291957441847622282583789644345817583473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27968108415175279946295092439343615260643527473121599869835561656839887398124001707857755669307184010947135232079160787954116114873060192649061969549402602814969027255820723531003341181190674175697404013397192118987834768072642233313452413532674455463280643670966896107656909923226168838212209186226327951839788660241525055915551146436765768064217769343941190912731686834781915882905859839294441601169802407703324947872928192170878760445571673590996670065796613282636416710991272277134359444282967377606529573066152121141540346587127172379736633163020072042365348351392205597846119899375195126414469447915562544092873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27766498794447982974642394435772017514999228509311134770431545867463351971645707533785236037376497341736034831355589822623488284430940403254382262655343121829249098851610423653944273590779218143321993737743841701756507127779689254873558238728138836971778616934117420447458348078118033978722707407969938465238247926498214760892621508968989751947994777172544783308896600457910419624380814179399686564596201036714070916647520182427829576307438704509957530462323139535327896724139751250701203309712652672388977719792651557778826092822335293654096682371948989454109806814218516410690583803973230685610810079055946581909709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20718040820088292798313461973953211448008252628071417441513855849053902750174765980808056101970113380342916157721551231782261671070098343129291167787338862050489012613692226712572912511774520059135628291160307616048136163210016413783231687557672747948137594577901370400874595706175466118084754877609453828866708360471278834604583556940286576681323604531161040253254837981468988815941482213553127750748785663277036555881761984171357887806030020756252040596727584585203917642216901787446692410333212374802113266975675040446358151145759974434701914144755568645021856193738999455042750025291356744421406649966715294747089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26698300452976739459251580587391091252568020922778819882277068361744375131300099633550014699415788421341810386962209231940059409526675834321277412641006833429346410226764661760513824116039735291531021905770670354061209249309015845989712610054406167196469340441573297578312174238083702807890962148162932941428167290006204280940537109148647308206642364288225178505797027705419843952438293595601290696971671664891924974648790659711761668512225203496118538070970318119110932889425401165972667924690014360981456609784986441966209625516152703144592151421983263199858258347069371174836987481094208645335601329310288043684751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28170208163896631252372217995595083532957080031573488837439685733198932234346215295227914362018765826696752043308519902667121831255441739120773711657072313000083698742771373951322427734662163756552440394633309313246721114649864161124531235857882735614446393504829769407797214397151203626252254989492460151563271393805029723438335078582891994593642052256816093777858016575823951087192518604591997067715057841445419460185730830970986313087131101789901609710868201583204221981539349940291703697800613278672186511877569874012171569804703546076662001854261629267288519499046027361735285089445204944166225012685485600496891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26420898941873504033134818119971790151339167521656567822502056893737847407452746687377108041974259362720277880057828795955534836493136442045757734970932264307104397921126193604123889916175731208021259552526938123650372210907790777151459628184815262492235674740168095149429840291916627347969217531684746214387118441462949356946574440255876096330990264558322260057814787949847859679166752996255373374453410976942710172118784134404308806954725968006583851014468434351972305230058306654546203236595518956722090293803589122610881481863681483421071514055986461944314455960763273835946280633259764655296658396043578535399147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26817259192466309144096957791522909866697652467334762083200407973604823288106188475770033481100684259708427178501428093169570511193738117347150698785565150881427653673716419635740746412626431768850280012259386382430977214482896639486947669109468610793777039973620364041222128071923341780376490404086486605034806476125694600073182138408675019005345446299200222257270763820880780284281769533417733405427912025740026506225018539572198811976574131213870452383618061518820480596522871848313455760093015085627647639921723328744479129607950452881831076714428621436970231840540706879023588021025328170870984124914584693354729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20966075695087620360791205959942735723034813688963519383203613653477820375369121202053235948081257289558641885084518369515867827166001791432253302272678072301048849770288420779370886033341610458153231337364065875069943840504626551174975420833490863475766540623396505275231007234126290113943218782915038838262955543723716794485358107799141233808806523300797598027514617309292646096087337225916327748310041074997125891345200882003568549949344944707145885597955172535251338912117309298628073733434887117818712621917100565173389005458951814466198485193953489228656788819057693837091470457566255029414416352327449175272453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26282007545783968443048887210572908815387981260605638853045676508901680832761647011322602566584385712627073452663603502923804588515413742725796510548910048406093913035936190790128552729844085441545582541233561356072879722502506932077672015780006473465535412887733830469976804977855832020388397983787438633814030815922478976620351873720249054802878355905446823766041667627213086681027702907607381162592126281882700251539596015394651231148526659903782858822145898717986999724439666165762346508074433961825982806685369247448616967633591741632529310465327428174104167051920930918035656610016046905661181562439187555778767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27128058357595642745328691436959797916569348951896064337565917562363882175316726017213247853351512930985030488161956470110920582756266320076617171657886283207981160530116500792464441622813618119469490949096228481440389779982945009696573663679916088074670888964652837382686530361653498456137029447356879587748972612128190851453038110936830396879847926098598263907213309467166445718608023780824583110860893971405375952227425016012397801596948713346664914545849773182514447972591202535265562639017605817668016468317874501453619502470648394507061434105923475077399843239396158622266326106053021636359048147504844969355269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26055284589783749673598235691970777060126267325413913889485123481280725421870940358451621762151483279195073990940934098198716962679996208424593715649705111877846977544661766690190926510718244370315998151039095647298308767862186154410742558415200046354969367776711954413426315258052202489038114401199135756732363095482661832292523060490027146817240189993287824048661212593146017236722795825978933098692812559521480814399425980051048720635746498135903490156576457797259215478302761603760831519908402154776996407029517329909356154476386089530705225068731216596117208202020259247018561190003232351744471554985123498909919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23978602555184717533915433045693304931656017592799098051856865787723232496405111467074998714314172334042631099413232285726376480542730704207641541395033764364399838831059051463324025292413649148930169945713119368712191715028790773297045217021970987340633931239034840453073102613494763253528267077688325041237073173259870872400699731762940057483606246470065181523885965453816772234154014559334277807688133182245697754057750939324840524991790523285187407122020561620959215035715066992169091989607857370088777048423231837262281805446238602361412233768525970795644325024525688315704053887322403691725339796341410536021199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27131786138293719509209696539724221092329876589798009424078758653607991749390265674031281418965253043223698837996517392069132465952046694237092194302201171007908523676163683580915140496681039149906946139813297111394515844210667822407018936331824754343614892688656796808054778631072973213655956541229877379310287436483050307523726875337634775995535156109575933026389430755872535841987908989407250920009924060437785001358253885275114491530709669013437087121278366186012604907521688191655643563027384792844269515272889726995621951671792351426444293442652000711289012643741660717758310695838489803279967847941797494323329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23735287540081929260413785348827596927093386061309923773550876327726153273349582486993657717525125610548024698635625492894458281519962919053527985053500452503935326658885944588688729524245334451409532109568670650047731077948347497526739769571842745419406813070216657005573081476801943457941965171315835032411776436825184901510000093354836127986505284664627812113837700244238118584754826578567037657900416030505816410363488647336667768241455167797770630967674638471104114358751964916535319933080845208732295303474600022757871899545399916804875258357649581314137347599369819880969844627701026050469601453840764954254627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24961535766599799652030649691037207279178355987320652394189584982974382171266003851369890909530894042920444241980698387725562992835274565245364754887845882573667542007347962249321109642741778936352524596239843143829173688896857482348516294212164292274537437215833731641027883745115671207210354783899557151749261479671060536416351342793528443820443821633341461537963076893933190985400133266884998984124436052326747998960958479492502824143265875753037193277735138747347122608378375855756998884825397340715728809367501583311522627882193594057605081177926972277820931912196575392548863565354993854178145960478841435670887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19715242760437132672830860865653979328662560481679759507496364177902088465827746749738692784686766793941383081047465801545398334739680063578053617207281594309558655170235704352613919968871135833475372981093452485632042912121789131936526808337773583701177394521593790219371741099830947285747828910038006915873139866034092373237016198711524416917729073221964423828814913169507623317670935437210480153949624384618656854836252307729217044435627513039704576449210693996880725097715490596780628239813080588584336595686202447740685051067552676185580273800892256195303242269245701189308017350409011106199142332189364561130071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23709104045117408220888797943355692831833305625328048990303066130127771411354125479994785453609819761945962554665148249493483506754644431616144683455368995109882912560806656527303819325596105529559703176315682691212373858495470168722071642215765973413265438212040731313876318763843951653231715111229436353714797421866142921140021761545039358711007000379241339588679584771501310867864751250236424961926935801960030585011721434873063316464048666910286594744874395005706604037792758228909810151555462880396161319648126525164692776520477975813113512557441891322772678198330562795858517118722896430188784836297508509794713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24894921201155221842659558726733415316041659735145421691469422436683751592323932144023188314768773833380905769572686459894030052853401443878732285702658447700384142833583936728381221026317109131459519570958219930873015362845806320079685946914771543079465365240671993702299064681140840255413741354695403205276077237969898669422129506282771533405859958157833274308760843249243912158378685673402885569380691286420028356811184783604835302603826975226186162518495114376245616545481510497207876257665013285634327264605245890397863402106888419051132698338252844332063253510727513843318604147248505902032755894457023850745223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26006510350505060245349362688189598468443161221815573766744220042762577130011326715744018127335020711127770795118901405492746670568944542909857768255261546346285769419097611561265033241060704111277335387202918006253147565268250544916255655945216192338762231987285746871796168208753793403397911356395984443151396179401419207537492260184097982914925504764676810071845779155193602873502779697315575947290216817856777776004691146518872359597785058688359634073999026645975039061183069921683247035740546001627241957881573981412606153062753321626230256266377390393192532194357337822584972926998500355336374946112092508045781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24879432975206883449533217152363624013713430422742253197165812526153661215060706650053814411823938606285538295630011147303242200870146856054419204261276982699379992368215647842721245150019865693186460541743098162196238678664688009326040788861565243562019183444095990948121026407614411510107074625813441204849388020703232688684774283432980544328767816876668592347373666450751535766733730669013333373995013904158089109593057667904493457491595005302555677312921118018928295828520539698706641458068155215157347681257986140235699461735620509107710986426018803208046495430438731081355733942897391084416667314518630693026989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24097534878159345175798536489288186114107340407686162010217293018329772116865654676453952609260440395656415043500345895520048981750290338858155835110384565842346386092066435123291152526250786969233025939296557426108422434086275887100410803740219997909552242824063047938407305453738777808086059089404502769575983385909733911490125390591999686131672109061250305998033654019338867917361633884148276511369577801104315746566697127111507709438983722515675058194641417293582975253670696442376517936215596468854968476974427959386422893167732534969548516080911452164640786325227339705972444150149242904286085042975364646265663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26995268580894006118561291979211566165710991242229124658778435517132338380291517690776453727405279964101130807176984425430143438327630110657334034692600086107403630887734859809748159239009541839885033890182826269038498097391391173897582669925338940014649776662305543061276638033505908437424867153847965670400878794261988124670408883749536515003036019185488898832114291629177107369919005235444181924176617715994025916719291392998679453741631634703938223354719698453192753753495741821481235289079665370596901111640541597073777095014223542350180882907491164911714147276667062228724416372833969868801601632875659907290641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28668499655070913040065757105198584249883336806628171307831958078432173663093169640995267198386425892784545272372051981595210838337758246018267480348003572211879462928229371826677235634244753835009008813606117335777099360354180054998551602327172773782223730043271536866290098431970182140644624184347326058684779110908586410725854771238566518283030672851078978899309619753375463618693507567471192314257888069608683289829652375360915798772203621178888402447112909590910368344127884387849094732200983064149470995179686405885053296948405054547314193862809562782320609261077268806564760511865466128699024514029980336540577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26504258605354726666770254955664847142638704557201024874203003934526257476335807514152822475254737747351755406112976198377632410814467539002481848252287664275217858010445879338348950653351598071061359697630768334202587914611021812203365890490773227238142129743165805074974015776732469803761605172374686507774212265798902260375524409836685834660774592251758680336812984037909555215943863599404553630140275085403016426200538170016422860107690686262260095141264436908240557392120666481809860326221115115980422572434532777286467210341297563655763604065883879197776709044072408761672060930168674051169001401995997025944103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27961088526789709323796039619899089524714373411799655454596344320583899814728342701336819553076440867564767677863208590796250990360645500494319326127015292547787716286415599841201795993688543039584539978893905107425801769702851655017742902325145614460220141232638805029108208444191887554751624981399087050848636992757096766896392579636753522536862894451305229294229504887351899347798290953874760067899222659930922064203351578043996968441595595772935085208872679322169376846527142277392850409876449778512334705773454830471469728946315326360622480927259101566194504011484746023104131437842268308869686476561471060247281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24222549243716165353793554309203926845079500897297827693513433267419749758319791005101354605083459406538985046854714334040737658505569275291071295641966390732967738088224580382239001607094971923942960339585543044913323625775813431844938934780986715166467641573389199482873189491474680829330567453641826814847162707997547391083939549668164744390790131723724417641123686159097331946613926099430666849184947671524930585627635744413877210747165938907561371590007246880859780331811157084622693869254037291337563120611754505818219271408767351034172145660720783187868918797456503810550204326458406210006850476955174429285207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26173330234493773075567618265452082287547104952316651002601817161593635951133061495240584961700629817994695421619466626454794081477557046009185529379554262850425491492058204578385266167036815585744937571566159628798578222123151263160943893092116100608935691639510228733344263917295543942872796547910519654991023972264671782747961312358547584998408852953471931819474126067382282701362091235325718512736021683742962805860933403713513094639258420640369486677975889659061791368602930404320881009206576227193315389131089581612290743521630279554881798352924288080798373477800896321305597627112203506438074212795508853686547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28275103890145220966213505126764508755394591248356630178266710041746153943141606647400787268579181532468172995322925575255229419335948883796236877217442788036895780814399031197516860751832034047542395704744132991868732634923843289208784413626084252112169040131086925716883886439291267876312083824099256301547786759223987160745239419411359370761358928674509457723626669010899205554893725324145356726167308829512455779219366540040266161874816692801121189483273569720478476962270253775732291155931052140215450288457435862994292187676290649088311979668530014322565562808239105807773034645588438245331542458615631436697713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27436963349791953436928242456783248136692192192388699053716613257685137294288556889906920881574383818348544800968434722896178692821239251133544339208377296365106674434736050132129495067407445757265101944948274206283567301864871221056079028833830609839539522853984897959308902036462971581128915606480538992808045668178355560515991057666828346873813815477335682174815581431173117485080836026806028874444007433548650977332099640263792384945961659948838438815389620853113652047389005896053300624676062914175327613640412687359546287101070174350240651320911643891725712209276884430555278499583275751195774018059459531853749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30188645402327480303356499491267755229332753275886854691000724059655889267420032620857643311857780843056978537372024244745862882759192336622693681130374372991735487801251543313003084062282059577812881843271547125438773316966915455193601372999066736734520404871518915422028313986196905390242381590513759444587591015246491720539048846364089017321966642597636002279145572789438540177204023398372365558229449163449787396545230178395007610187571538893250543184334940075397779629781154069889640271539360491700799618903856692502842404594882062719967223444552504109005821170135132031546665884974681810440015322067571098357741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21420274002362864289593661494041592800465517138378951421213153833700944860306133933407411443561158098173358184922930401433130677047373644019855857122943951485896244108234741491343595574775511400791025927067985769066046885355780665720850876127312620446847352597111966155986731374233350617845702539823653283599538916583600953643126619215099125552777463598810678663315224961613763075301719994051001260858655910831949562773517763109234819667844016488056465107929480681957920413076347441444935238836731595692915458108965252966787551433047086771506941758455264789053648455446544165303819655436041382701753827646235369028003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24168511753038257108826233309968590465013548866014145905015345252388213394008466507015797293233886409189870982235231666508583298471607439591713142628566965921310565361796197995942423337303054760404706986374845121524432761605402652990898120871621837627954322365472228898638152644897883400498289574155627587570426259521793455311597992775222312910914065279966158022831349704271381313019118878411792147634076749886219396872613967596737929831541424070357177804876288463087008499710012694771568937378843295652498376437175852120286659568902214122050266289041239249177120557146516480257075365549401102810188584906735392018633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30656253645972523674778502017602527303160979829666687810373667515389117544270434081552977517657176414311106741610159282360400401200883034225190187297388270787648674439840227219004821773884005924660481902072995476145294632084806896370286615094367007620564466973545737393918434193966637328671541468831902053130678736976852456657603492115372052683140122625906660359280445821471816796266279415794842913264453120502625725626709688971082442257254038558213931929478359360220962656040035593847700633749836385631659003477991794250137227129115730172805458897530158771739788287640447434754562012296368390963337968654956648244921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24300269509790579054599743688935797786215880572660561328165702233568616888423578165774273371966885324750127093349915551299278807319983311067550069318878520586320228387407771603468481004376416173165570038621795246559640059279066047244584395265867106785789214093089794576163274216965772700012225812894779808523284967914921618884537976411039799337534378148129549959151891196109897020854992397029555804621199082297119596968183727607689062128013072012048813710854294624190260952787150740250699425592811851202371967742385258570322889752529486093350988430396442673824082710491849999652659286005880747202989200963356624661119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28483762127077709338297802429761304140392348889528369968319098067402028968012642414433091102847908755151799609764279718941268661717032732922811826895250402656800524901872727083631650405890320899895275149945469497347351761176991698687972165327729453271394594636865183716772281519905005241554973038383966902746574160783320065095558605980914764181316644163705502302948845313792892846600301659031068937451202519207280502501286599448042413252315654846956062255716206109981160776922966669972785945606462609729061064570090132520832660007992816760765475995440931909488883009921761810969181999918711590490020185423455577419829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29138022242811737055052188547439284225833563072153725440138926278533669689060613517428568479325717208789477339470215667586251228227367411595356132837090527241178997148800461190598553375206887057849612263941311813688881610903042616931352715968576407697557533616942834581831872490354966552630998095549057382736807704430451487904718040925378854245583329277165338517271452026279599109601065880120357667103906940635500949986455049022591985337554108339824221913008391323916740794282454690438516466981469947140600007834505582748315616100982785265666074409751125298050802743184097065720245335951763770284114937130411099154413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24694261816871385795939438291763032495641785715263694143921257475265812601284810586956293396754765569043751821613206477072286776003062277376342566703223749857488124659236793846019754075100133575615314085342147249875786538902742788182159338544472237862317432091810328020381129218579067174347033318017593640605555178490410035652240125394359834407781884744587219279961660718274062253467558083604832876740638562282145123802438023148992829865419948676709310110529780297503373673397043331754099078034655803648228337618948626765127636111281992164870366264513272799947872888220116822004284061649205347419486335270505552255071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26145901011259431228200342044854218035138891805340076377291696338719937314155627831963536843398886960758593966834997310107929870207572806981909976705428537091734883712111110755512767704040054030339114935787160219977720544636571253604021265575943731104478216944894371994992239526626796700120324739482796254242405889466487530494583839306629361930125483637288108345514286843903406002858377548566866815494068420435452133050582565663524932545434225626801325346201304435768055354427931163616779911448692836009407440071820371687761748782377012846937215914974857639997525270149855973433944342520948112207078238983460508932741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26590538511597997287894434845427142691496799607258192775101921981697638413962460585524903795510247064138543354121577417666121491356164915850228243086883720955312066857366490188237656347642163814531410477315631220284580191302374888981522070480436873709356361516645493840024032942079006483473068953092656060913785681719234616797982671531801788883122644941473152832563129608508162770914853235578906976733295472535338231723063677481751920086582926011377218499998276995151340892184424400794393202572174799388120465834527798348626883265549154916150364885857780473764264017154974285893591430028052447612152407571786976983067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26400588188745366106999244511875041353712932912728963109699601589027895051089857354497445654804841267072176419885786352487020793665522286709327516294761969001060846061506645104992462532500134459945315641441635171477679685632934980929145506019163933718366690810078895358653797028512895297416191289959794907702986418868330153490035865115147697808427771357504766640870559644765014553217069048921196783865127760628050561343686959360928770817926360002108420762584629251268121328249306706585098998303650803425303076628157481799437461378661519908652299766542272006704348783024316720458085591716017508818409742438940158270763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23536101675400375276973989969784070211494632858337462703170790814523572621157057912859731998480176545911573845858934172351399252031465226858164504650785529205398939989042899203882914784648517552480737212950581269724645890972905066677645736055557471604437872871168422618284719672758465600644739144236917132177408121456386118996654722352837236956802943398491589861268897972732133065632963825043640122571930914096098348716495937093640672919034438831144314843965772496266794251596580976378393344248867636182744977838158933690366176627411186025875721571805117204107339353494247824899365798444247349424536694163172959949107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28189630758843693892221352512422875589803915703198661350660492527307483198171496780635122643049613472956396829067315849349531451148622760012828729190104926985846931031005999589178900733940677462200903458363562684269770957969479641643241847758112777916944822657195709845428516541093491836816116651360183646353158228041997634608781195965700798983836093670422386424645036010090259196674565055429114447029177063948163089300946793227043905635216206600805938440454740184960733922408066866244834304178057122908877836748616673686616613341231820642782262244990917236502152687377503135281442555685215224295772922224380027080709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21054072510581294287076317477790732041971731108890971481157510383710946672274381236157779579410195973122467331531477147448575955822096660485779058147145777662059434340871491054298287078678551557190696963473383302809786635358447993757226875851535080227499744034676675608786078167360670154685990993442132998386280167855908608573273197105735603584648559805452266290036369819206922083022220672426904612868139629009329673510232029054260481560090145649983119010398123647448728678764429177561451696576330921779391292377186748470799060902325040593420230362088767877059095441468910683562211118052299649967677343123294125305509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20573347548340593510543626045377894755783570318056032969081597651313425729377334569488737521294642996586808217209114517169593943211253244218568890566198602786913165408622862344282959269501321544286305729622087198095202899262560892852412376149825402569171627089344295614091751087178204153668360231753264970831895652699430133512698374554261290153536966803132193202704617766370066160143358356390421402150181616437364066588625412228836677971944292994310288424069644977330234365331720385528670144080712182721067789278831731699423105672967172231399054722732215270348189562594931365172218027461698358493052049862642631887101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26737180000731902889082708320334895914064972931889727636189492990314019945872863190437843442698384953738834767051106634222108007484197911685109437021354298338574683620545627504679018969132510871010795199272032521906611184902539669997150731867173643536189337346220445409998723933555835839096817939990230049323340685500499314401640159386823731560939790336252924201817225355411149840368203095955684819060389988568630480395567511966486874041482527907124120487446108555187041585872613094682829779544434141020664312400849941279200889096025518159909066615932927983751825863189430320384198593148801294921641979676208267082459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21965764061000519264742422922532986078309652515174138893602629906120554627785172368246880303442417331876945946648950690109105620285593313695052382554777344408419954403558294996506323540504597211152901960589450529183987639855219357680820132582507785015071861357390137173545764219004385112570255394023056558852753587685242997551045372609329751118911831210253572570940246654289474217882209139213293167915260335334258408998803371961416230845547643776496734312789366832438199257114641452283492460484663402897653537134862727985899925901287056390311084803700945894230648401237347027890725131416866624464602049327068878957761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21600034090861457144086351134287133712113554749290093152854489839609744605381280608583206199448698007715267933090349348556422482006184313024295708809265754397194010559583716836534157497878459948135608307517270335278319264036087843493279113759894056526494290147870961489699002767455660168625818088725285611937609970588563283836678768960111983565165570075136914766270643786918395178684839408917189960478865077316029277450175109451109379094860591169775553216104122129672197459934630544950052104139960865119366921568820574205491663362568918392293332185442711325834832205163145377604609198168977762745904485269977476228769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23635733318664270101634564548928847383432638474232413536796582814113269003560233732816206558863965832932453074369828173468211600907349242121990850140362766637218795731017439891047888660839138344471045233619591036711143323486841346391957944737660337498550591030238158190835963714281115316268323104416446384043465914658568656869931152364326912475583875931587748344969406388681545847028602137193163655978147135555668834074200436898296805148027667577174026291534054754817208363148173950021272218573092493348447043703479185270304790972302664384964258779966977368231204542320270033491101638540744081925050019280572889090017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27746262095662322117403412536090932121426154567775736918714325832005402046117199762817692059467228411581050217539277937737178785072192625032466412112451202058334922475638749556593653002257436407081959794137213627623727874629015674489208757620757342678254566093493108981591780396308660599498675810887484163600730502880510640159968925180468293535958515779825098873745363331417767797056442806097735101998685757084054410127308974848230494170129226325894368169267158933677862514433297536855759985654361867644486730644929914687601387640305532884717606708110675989588428387177016292229873517492667024040973071940970662886253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23537796299694389345269866702060647816483947101099960513106383529586486553368711048424931982467638161831696799404705333828169692478367632414356767544906756206500011304177524212874350545506303154777587844328388463029241807341805029481588010277770292206519769258413297777058116191718356072238356135874326027951436128383889613612756237396698312153402614738648364625503862392663886413240499411654575091059534904999198314171518863825625916067664783621102067708901973505649927348970242845503311898025909077781390329285279758412770531886655064792273156190309562329431303808737851394842035035009490043851357258720542283968703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22843329152896798445087704440615187704728311509267354066757358285282541209553666062648012681239587379295117130716204131284271466749650473340861874274042409505648861785292495021610857211682945242091746825853548868851574706209398927070150673990980493168541046249326470270396179239173347429311896131171041804173902749844800839756990203535201951136014603039314221344983159172050640658929922526919019004264211280245979277691524455080548775783905263624820617050404448867151619627174197111753377333535550018059603096889311227954578546710066479133233383547850173925975740274709220731063006307474483969620447832750666348889387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22435812577158226956860471145457704469708058572234212797599262792498286426161835226704121385084292429003440143538758179994722950049499805500226868098579434941560696385816948207956231893009276463862733590418965165628409014918346774931991282892839301436463857341405691313698916305510890569027324178392238838191684164912644793270929800647853499915004895609442814324828869568127407349825916103630867987744927149043139933427862715670853356397685953160113372330947927835480067907231932819712070492884334992896286201785949720954788087778315672720356323738372937989962981962064553578455770660031780011357055816346286515463201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26674289610844401744851226861646803805498743031772446769039439272121228286190498619855644357954927782750915970324043301701027719484447853547416093251812221627276973220268327185025487068711191779546692069032346047482619031717019459848384603445791991999753162473422735169116478933820621872968686570249974191973179006288461229496546355815798851106021691375563740630602759106885026000753298397737925870353139500648227814254942729522039121207524528964079570723064665064736112433122191116836902725145953150664644448507102858720972382762746965595401363856243944082252962626153360611416975142211184133768243942686181729874309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21176549008175837613744168349971761487426483954378399409352550494911260155369726269572486705851396181750105333826689480098275811459481442805885301209060795703446650841208915983954882709076555611641542360909959099787450479705627966177060891180811428853775357033224979973975711893043832430636410495407097623716157848314720188127910931942221802780156984163276831513453338502187437752190211839122676190539770590996228569761772384204173265009256091041186810165100903887052779846158054420667558769552531942251017020931434711813697700934503476270601009175881814137575661821428038898721752934643341438590691406691705811162099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23615353814035213538608133102440274848769144156840887946412785857762980234061411624318205563123586595006895819790953802799279550519076282543368437142931065772750467219608696575895625879521664658447319613451011108343606571103431347117376235133719941311936346939976016932149641397099532476003362556876512540472382760823805117970605641348813285475530624750844474104550457077610641367654970828270431971105095726965718988747691892187439749609789127358388242431882911863944252636911003696380196915603470530766179420493077666715076275645553756190088914805214970440570060966572474938937614751439625276944052099764437142620163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25390037016163535017950848116955681383436503331321688568062099069100326328689939840514702231051729701689679798804483102038355646619828298039836554022220345309613882467091268005118817541002781915278480269247605198092165682957266523340548772359869896039448926074419296952056113688588264759746813053193624335025479796383337944790932104169605777202614602375777901647157763977879633916235591354604855834089612444556333435454241569056169962191199665936499924809840937365610809989098611206016342941178947139296346605352296988531659380657799202299922184197366801925114517090666596955871085774623445622812115245743008236211729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26251281291182529061033421477140459017217706152013567223852242892378691201988893668612146021506144374998817351136586348871424694734824104505713601137566363694765076744683561226725183785288608525603380175780442748318839205851221227972510068495520526213958612660486555735425071010974130797967404569755403537331256567064248520650555920036878023544298968982241609395488501277132414876323764776866044393995684083266283750292888822917157311110510878005795167608836548815203938995302100422249790733485413796689350372515722064483333948668551422392945145900289295280565918386920799106785298353513186808327393640195422462272579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28973298764533222689787752823364476440822623638029713994713840083547525778246031359197879672869684801719894588712528647119398132368147781245801834256603740422118699001957370343528608281396888773237048838442771085256872506100880415537434626250001888118377423867989832456711775648140661476713726554937264877791056748115963036115926922255028790348722399022228302964557211309498055572187631489087722921268932963680345243139026928952889198382404504202987643906831555286174157301833572076141046134968667616011826146601083739133974457997234214583659505746583314042241320459782466175659352684962592317340378233776200569186099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23749858835515458363696868504646853030085241451021394628992213904620124661582598907036733142345146594011432697497448819185152104950333328387077616849460909776490743029057422763290485822084649197781611816299681111399808394231664177434842383630256533941578044672626245720855056461683696001123520626153177288352891090244228591652211980259068589344901492986611655639900303766715283456745174865280869152103539777289323360181176039975084264290101872068653411576160954895654699700256307591335184336909409955699980317451231444287245841284240202928070526287652029029498474633179751856457722682502161289599921434994612278606903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23404179192388019093473305728849086403295994522666364843474191904332109066287328086887303110463160770527403650497931348607246919059058681091388450724606602366128982390058647979835625622531206906113096860896806535556755221677714401722685376930421186458828339930926335488581678633622373721284953666279256627573460211468432010315300251862114179339544610262140131910635844380517264465384190937861467755129196708551028312951125346954430922633844435418578350927392510158074964974489558029542135568333312129517793248669503287539557916538938323844090090570701109797788191929055672919496883578592153215436985901965314904732967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19338389358550111100874111371825991409539243672610843776857420410900294633689464679720560907403181852409051839120905378742026850633807515660416444224503264744876513730410151924692250981312453203681781404260355411726847565955406558262113151894604260340080084377375591062406797162264734712300370214031413314898299034704940388565607240208401809941846689314865630684064849336291117455147170965929384338445673222030645565897226981974655254955039644403176238735857727528378678289405147001064520319340039044800710714104199555384326024928701685749020273919291035865849173537821389668428838969059188344516760211479343891906203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29982160371193381365562827819368850770884999447458943993656643210776349205968068819670493094011218483733493158184089994835486180956093301471364659969255430082885904409779555592428908069763868370341701657143961888913791758971133314038791704841219436821833595543563200866701222106218206490693538322566575045740633745822457843572186023480218294332426719951311601246161866727060386664880129394992351602933992932236449663188743714684003599514598078026319192548745614823892242392462324793055043199429424311718971952814735268605249800275466030575448701095689656890210496043120563006908046870925079254601819667273139358134849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26497145364528602981030360229652817827166449731878609858159447166454297944924160595475694522231330973848562629858661680652079434838034144915935174929261254153572674840668634411251898338349609664308289757421161171973103216398502748625636240603098238724785998607248031087164431392102085209207678327291913422529223006864706778599768426612994974259100450903644399343875629677641506405747768862402111918153567203677903188822163744513526746007568290929517457561670057096282451974515551589188138391275020084265740574050153279877274538051070949503147789000446144104227896167437166492176731448760575077199971731715664899242971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22501770195200752349700296148287774361623201503119140497657020125386111316771259942383923100784178515056836109877612360272560615911027891860481446694807083077523995580003047252210287784161077345917300826977331587736957478485926509583641293662173215551679908283563973515164680413325423435357303900593255436222053063885629986548717982462336764789601633228276578970629091953612980366944102967101263907787076919812747166284964328863303267469592448449046589160587293152005836240383157756835778521954300027670061843974214429503570318969893488407941252301293144005369969813519483185701893460085326011278046250506860262498599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24935132328524620127904290587619887749139042169349670116909950809743004428438673610748918200715999392402437564601603453872123027713317012107062439582029449014620602407161677478366763969058490584013934630362754840631623817106797812702333710452050902003007904250291142235306590724407419785713276531751669292168115888497127523974852130941812263755402981667059635098676193097964025301075642932023888106494354843594225769311513774699786498469992699193061847380317001930339892763842303883899259554971756146289406011630671728358501759673991189710436985061076750960966962435379263572638393005272111127990894144800790701456399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29328582485515621487317837951041027858458842812650970437968072105381895822473778356081605993504333082886561879746331586481587103968806257900523992529484786423724396253142884425889069528115834872720001249604013974303511787258203797621467408646432157853091568949555082924072038509936181151122193139332433985988004322593096284163209590040310021465628731930018298840289732667083435040285858793320424642568699581051125429399890174424406420364862834393787271399941285966596690595743265105323805380096084644564056320044201171907903077687732023041590593044705058604765733580631168016754787433292745987406192990924519661810827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21229326689486588479424962058135258703816557777304650269347758296529574885903804212183938445438239045826375346390028861815560276861609659261890766178313833780979896846047299292486156307081901725435365308154290236292920772733315562245929479147899156536164007768170677629776623104945346330977528902627931408352290589245198403113624870262859357486942928426368776782415106049620013540586674058077991544862800272152212164397909243964012252117810367713081546466099757217318757170210518129070196444024279782745456429753235807550339474313679317066214266726840687392300240889059348828624373281891430507770265262987773729064891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28391882496325037905733956771319524116281125023999940923628212623071852181949671623830138201682519851271262414994200385852255648024625433647264231069579565686920681872350940363716868034529664378456825861643669331267480573597221247761227502657940750723970566579187288281035396559118704295308801150348515739178296183702982888614505440439963015320350307427152319955969128852225716080562030467187192767999540459415945655916740928878375644439758429713669200675973556856897391849788509274987187874912841748930501852486922651771191175828061477150752906670030771519043595036596928530516213964829708140767579532330547856376139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20763040406950423255616231822769037798745172704274119215649670077252501310186303884627684883770311710062334560200115007733336665263453964814574226316590081522174643495983588919517877419816776040142800420703547396810874908768369306013081826615587733861640859730566762436711154555400864882770192787129804403197238234212968116794057419953804404294242537042552967122612595525436860704567544359573389984199240936286599030683398662391881212730841566076224990852925878951471113090455989944008552225359815967156433631092136692322091808073816660049794367952649668411113894246394445891236451007602180987036181926595563045089771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25017923911250873382475598861474080346536635698183510240896934615624853270098790825284684059223952506873892364347820884092774392629987288360568944591648516245381007933495948722050650336856599626339824432930093304793828684455890984852374473193301949063111028523997043009794157677751210282411666246367213521403234149353573235053148204530600423534092774637798045129312613117396328651282498306171794942624574683619777687561196131480566688189310360141949565784263176479663184059470541811838125709753649272749019466475607848604855955756814888217781507279226374913738472902810675275621778968924173473097740311726539586534107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26192632509710131864568891131639256631419566575222925714084422995108891899597413967493089070577929616487532224050344912296054908766013816128776155279681619909537380082549480149577001576263658956127064386732338012729956353941101711724102758931096828932814056195344820142841320298630124168759468346464332108733832060646299974382631975852241899347406656206387823810143593391777183551055269509620054995577876705444055581668876836726022061568533199729048466203352781703107640569794266034800173807394024523967333835394652107745863787855527276333086794839873504223815179686732039778350150276024826319592598928129134457106279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27862759308366570651405917301183402412298125115593073012738367767859636837991930892696961685066522721594196930941235308924329840969201336698672458338521606451023004038381927477532109664932813468283488521533943502825105813432086636911568227915719789243615960001724512482789882098350681396460605956367460945636954178442262932566914755397715813177933849263084956625127053642710821132600858236677399343201012472585199422503435809018327680260309753668446570830502915079639770727973194334351442942202641178322272549200154112410387620076154024101811787682029183986212451336976846506803869549345089212719045316381385811749669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23226810738910380697406345544986542196918052169736511854585173648036680722661166451798747246161010743856757203568216675480434647887662131614609555197818165564264433886913096583573921463043105137511766841562386191396911981388189301285602616535174507270708994485557540990214959252597363166090076636987830140530586406495996975775309727364787726528170677633721664521311325818313880600480479530399922544614845163651913300156258950834510703869419069577389214715017820660295500232066123293869803825915055990716829162715881912573388742245290531444143150101706496262805814270551365518391798712789314423378471112430286649697637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23846715578725540386486331534516665658788794839245100105244520179282099617098288179146910881966265444943018247848370571677290927897144637387930002608056579694666401139208121771789530250739438417240907201516281173701729511889775015279987593859927049109632264806462385368521136318626908094622639445526057432023145090231600397254548790622575484179004056413311775802773895602002694082082170074487939671721116309722824030711460953219007103192568770817096428986765063503708124031269552802398115822822506919144867824000302537160008933597365497250588223520102060201203836455678506662333909662554380791568255488123141610951367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27708653092086265310015186508196849765643002457127034621863984319988821860239397061692264674947631167452808780404363496694685387522992147851158669311478184666759994909108147822626800895254482731340729380880352678285056393250165072568362364518369563081962344367733585854963180381206571995196876050097167617752030018724532789023231525480895044266535900826232400151689618611233918391207184678388768017786521997364923942592333883622415689303157787968183773027146022756312212421058836125073038581709923398211089350476677263904337259168677154299918248335999551280152294484574781783205231019421311009140409386985527596081907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25682178637338456756642723971812371107805282739260928094715704281826332970073820856484974006562314934272906472198601556466025125829203738816689657141991982338544593582798536580420402691697713903337183510226729216187708234877007938339488688258314490695131120516910044335147711099593146836672344809559607634798870864455579797622820232115404762810122100635056365246133758891748460381319895831576268857674290726959405604252578375366403897042631815950877016418193419412387015200048376782879319594665416496800666397232055111494030376198123639184897631528004067114098515246221827240822048779028105723341936412997573438415043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24569201984627186569565259982419894676006314579141007012861222390531886612377789218256013157060538291483427612525130140011128543277990763271749228821172549983836721307978293799302246138899655423899957874624631700132915005687614068642046394040234614130419619718724526917086071675836646333156344752791234323455718828462222357893316259379997374822073628853424982434800935654249065318251117466929439376637606976052387732680889838603406414623571811415393400597212985108358524153803201666162164491587245560926166328614170738212654668943745430732959095613473119544086693577793206341862691066677752154871299887768936812037987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29183180099426863915464954897660399223212036013330335510786214205822330670624241410756462329345002706027159760047775947888641970667745810817805879973030000078326179658754017248957696849820357959656716951893152855235919758093225482631187114187724164398980840474981452498249792587091957182546744076879279489685695807877202576751197288437299546461308930282148329592265597021266142511267486652238201030275843728959419581241713025227541718876874637912097299130494645236751458982503838624832252855232544523341865977606032192782654300404790107911556701877564867723118159376103183608646316331511638025918101411012824266475283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29688457151304872227512546155645414258722661672327806134392384607098407862001099167697067381212145264957088032945564348009761173022959339973037199177788851753969391505677667259446852988488552600670642467028670205536190007570896261679781158443061807929829150988273527463605664728311871999420198654548648458562988406700517941053595071993981205008802186616149869255997354399162098040607517513591759539560409635265808998243126355346834221860784702390202057751820197567277639456858560796194418139306073032200852998472811652408524551252703497784934461293380705884249802046439346227921057940258352613074955340673636025873051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25297586782948226578387934958248248915323696332574563355356008488780021155068635168249441895303736200273957300565569432943738820034046455874802116619185581841704041103784712533695268735548892740114752427684210214862822614867256313016574188901572152670153353189770351279623772035962817396394465493988085322317684621235740539493371834485203274350709307015308282498975430699258951087522818232101982018676517132661617977788927717688462279502070025339879126419102394640117614043201952009765844621797751436233292764589422001975729842924286668118235826866457554139647089564363605443919210695413310288127121586595517963749103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22643449882547543020513417399388258519265579941294077292783126769159002981068550899752982461918084821104346753623192239265481126872518284685264170429692633565225382769338726052812197705636175717778456673403057793074533064724652730649906469032082798456539373314502306418538285706941433376401537409202089638790961648833378844450274707996444497513201105149400143234945509721201910699068029633881537913251716848159859555470600017830090190484282291418494636728184568922232944840472211921963883939422838202972902142547403353292689196221856845553147097643291528133940280173968162140124149750568643396033075994615204391299729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20303894594197368085478213477168288353898168460999536413304871944152174034622732259948483375409844421464341726438230817163399692708294956115900546427320837214392552947714596965686708433583555935674475899120782766969753629030273883638237479586452797283259714403530204398122206387025289800510064921602354660664535685725569287574075929920466052377826744204356793783914038637527023539548957383897762129199094050585203060114786679339680557546621852356639548340869734302388231401960257906014059577437177982266762597642911485776267313935689195092176244346404875387983789899791814422985706500460021110551222733562265596915777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20036351136821090653920637911114886108360010785564772753513394494788393296862937157496655651743332146073333301361232724904749617822307836171058213384141440614791641110565196060291833312582781676033640618595647656058083202846947111416937101177346399433429832949429738648929935797453467178476347934150999055399151532285110094945839069701049012533045249304921007982980730642174030918070995793383255579181697080661441138566459878454792366589861013153801747063622138993839574466232369484591401502235344477708290909239158672397486257817652656218228807822415948873047804162108699548737059154348385856371516646333881014029601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25711191308647870507616412781256343793293901086672098037928049158286342716944250437007403014460287131814634789972486041504279971698790268278719717310288799013041550696373874035575191197520728861532642602910445836017481281503427467797929275156607491600957289247805566646861257300590666886354143913583687667155333323978169653662538614203509989389163919545322479690263060222054256643220886302301851963246622656396154544329531339254602423768260960549761176249707930484516918409226976048223829110505180851260599468141642907182576798964485043223758705065608827878045231430510535896924244620689034346695040345748328484738383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22568150929711674051532192307083572860141155476185736228360944108540349226613574508263392866660263601928061274578328717590271182309540745123277188695395546158305524781437157092419868333204789072069226005122343535573424789870498651751428916120485192534377847153757400035020825558532673796143013185921811897140885416675134846559900280760170255749859811900420373810030798928032575925170974821579997801657446962983698139148267409011526201965962040861016461991658786478530671351985310983375935578909741032236649225131905587923458193894434256792768722056019321471128213773250669690569361791603924555168775289819168959347519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21275320931198518484325335961307954580616395460893359648606609297861183824052513188834487588149555952136557821088933731067114292704464390533042410850664361299105055655015259560375062231746177207686675560783168574006303756816838304115805511336803966379787916984170426779251412697136175919697802037127526175555855453351731047171971809978624664069886412104899608916448173637138741241541318054912558015611680555006575955152331549928663281035683972147606925863223209137355052896624926289584615647663974496642126624994529136011530618392745998072089751747339444176743159293974092159882145420177473581671090630540788444766583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25103327352470241612449652288317331090592092493955486205565359087378768350643735366982032670420253771953227650196314992957717167562046391353637050284839691945819079482536853006134061451434866600126743588813498108178123217186141368055222408545794471974961406773369800382009378845686783897895408211702813571004427222695747334038662698696414750935147531186799050597074928731370534185287711228055556727648813519624813089570989664130963893665437067176877088817265270673672534902492419379702832477303370708372218048332239392574344394384532201231293664194004968679616008341008316853361453703366751853480459251262426796019587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19627434255369744987751067405402701961707196635425732074266738541049220451960397004434242668494484938219116651811734588882576842494621937344940202379580261165153834649079799005926246795961975090751857511511193325998087186662123972561939084003625147504025187977325149650402399156218455683616628553622423269960729317821457489569707425314591908006101008810584161531495168181656593195042818138403614355667094708175565285676352869508774925710076064365743965754998450781128607768001221670433132099325301830089441239143676467309646831758825187112615969682572266966155683818341678254791757214136274567492906235601264513933603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25657769150141517051470530619997269762168206117252102050634130078648546279097917778226958135220005117560511908713104093944619022454015019217334938554777399085997549019221349814059175400924065053904431462715566571557632765115562966077972173685651700313275669487738886762934971429839882932698174924374968060867908284558617289809752382564049241249460687038474620378578283488694576380207511643045166656284053856321829222345268990158097250398089177840100870992202124790918041055576430102362236664237410257270503651526486886280750287176217586228254235077156403483274097921466413248080796105435397249868042598052349915837413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24734544858557494870389579999223610011237340181092549534023660447425356467549870554440178686454688067305298115401968935834295809426778382368428067202747423944528483195313008595958706202587231191639107647746226438035838454586060769210489403964020196404278494822208835039729167852414555759580849778004716022495274988422705043116058325716876580193659671204367509579134625780028354805953404445714971242007773376795886656771777499017899707414458311200545423119068193197815172002307799850718521440703050868610118186139312662088951018727733513453147610441264057341950609425399044900757447724399358952400332277823485674940039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20816896002031073482954808996675438729300541872080486472778857205350621372881356516990843007195160986434403085176533710670658353468916737163563818437840059997908672897007345260931517122733663360172402181399555740130668766331376719985440845449059878186947373006242204188663703967199912665064739092106352576289000502329296531615635211972323274406661963445412329748047235349480534217844684403811609179857934888233554889526036026473365603917623332673091431326506149780491461469965628461645925380780312798732518050181512882153873578100813807307654965220596108995172870806303795073209575306058150099277823522629866261243473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24089707744044363483715450731794007127995824948556845152789553984631155330889336947642388632392027076622375464371509627394653890443786722216462076880653133105429525983055174720569547801568306986734943070293566061105610379313326241273229377042992309295276283966764440868434987506752786378319665549322595942998003232093868843164944109041848644014519257113705219105019562642432738354086485144528348870216139976559746077574599922081880877220577325976054600419411983436284382785631007588254396573370525916968001925739431231411134048270439243765807759760218430182465258567106639242082518595925489719813723179122753507713319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23444174176253916334120187753483821786488285839886646411526529718958694684124595848196225490018355901290603590568654962496173575546743412058834195520180128101781303450021012456808156384831997288288145929756601854871627811319952229730520706244225436465761043826977924747914866643703994397304024000501925584975520256024544111175652066496061775626721470181686020694562662031115558690398862187580597358337691452066752187271085706922077029882238291585286577093907712742570325860064809753412967864238663381507792036536208696863088862692243542290978985576161533950400004843348540509246464454707374172558197681338991374491287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23665979253029711076767622321753159069700964512603481870583791182448080925426981453304448229778046071816351806691811461702676089208569641527272460105089005337085384675125876041445700710515478381472109168217582352526733415759829586762874091172799995221966702903263085331109914096791356498093836209266098639560917278330849742402344249812202207579272014680720113683087443372503101455627386396848306983545960113449832952051656550731910459715178015038150118714824671032520001332138595689528614377621682800911171444087523595587239112861835555719970791896947551574506176321913297919996237923952019188173304377585877616844241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26886172480367959566813549606605096672302278442988429060264290356982655076946157202307068384579501195713283539858595382942847189606667055806320841765244995765270258247470021487532204172494035258101208471887674759876852550577464072748658944554116335861594785890011633951840303090595720256763625277260562830992401440129704189575018117458479491592590798078031736692044517601336207290335848895200437381714019494083789183881467500421789191759843960371696886797704734903640555742702354208912325949009496198628017974898410307139580887829178083466876361903822995037303572323173671497652034093544322063762863246325450228337423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25112999691131235641416663937637086251732946933235406784792218488993427367876451132109476195198467422049079054325766346574817514346789179593064097414288890016101268083524410091786190035898489031384466476810751915910546733045308033787807900592732800573341638348283531693045650188619897107638382026261553857208526570801158079666393092130432167568146843116760542732041193979449062858837166118322896839096926113551607092618500838493663532015382823910549842831069231951416820113455396726424740142353617649234797999759582768150509653051438092297995938911114124048540462525186885023725940217507564299299175110516810104017753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25700816894779322517322680676268533641378876257792651657567222060631945480497254083522665573296158709722770870874233212219418257287316520502610874719888094164553590939238549860172138069700658365983360809274656137071619934515945393251738515813992961752492465823796238506934680143790917132516214667983506418057187540330461948411653230646902769207640553739751821067312011959789300675302643982880008634346670403188870977034169067469294408878888652076752530738536867740207419621637801932860856194648204449322970728818309883057077745287549242711179308507913284919397604045223930511639238552408321430262008890165728107749757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21621784484298672966427565430226149606387629937775626005894853678585652221172286493478839681878131206475421351114009904902814951533173439101655254566311678014581395513988542906215074414901028420847742907124693879037911659394968443959534487115537059590575937618629652854023224255337010813150886529257091321830112499229400408186787714574938672163574814213548837278384191592210016358421776257272842681341218927119710215182521793409265841206041756519980294313597691169338554685419609985970505796306292467056044072121394200159343945644471041444855864332534725194892046745770887124497365297648706003716874897926164378596793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20946396285523059900062710762818893275481938160175478730603657547177092877353982200594916356686482577360519649296756740325427219352442041457379997393680788006834725939620496166976448449264824226522711153634589041106084865499407405516815058691712745160179171836330180369313828922674180914725074308319290277671291552533380001078475368274885137149525248153014700165046782043860898654974901922119808406610843734942490700100858516885321274640042921767462329641271932479852120543864403344631300025101511861954375685217987212402287379555362323290716670687202871151982311726362679197217200103596794012825839205579884553404957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24112296106798864715032339178866755390472404616534569870561062344939807019379823069689478189834136689527104396295241336440793145531639100686777465948024936854591019347804637753162699370179921959956459670727799938348792626744690774009572692162844220259622890378542635884042751576441071951901432049403311979346022576121771200134897573271722106349118435624369767196095076506598409993830465469542701982682562060614643233142183125245206970045677759079174230594702960381941906921600625398593234851465600607195290902591500384528859099925889618413257664548616335370252518736678744494808930559493892384321155139512003331880527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26631806010237029338572725541360364606956757407945893638981495447824668124086834735167860563896970527611415234182075336155519024930634759096661261756257761784343857355753070004869854158172339782075867015423473532027176983554125254391100618407763431018721326584389661125777208907097800736065002778402495274369996628775516020212046092306580653399614754044256985111496788618734064597767669564882891455328055588629039434581042112004247904221529263322586885734301116226748291451929240702074452563553350309362978015828501242456743455466937553219666636602852041400217721842936865390542689321733300377567524365990882509567849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23039682127841256484047000998263942072785397898507120248031296553643490211044299262040881213940240074835302053695150331654774240718770767172558770981998811600742055468514465743180053691119773332563580762496393356471472767376463816612018677686262545204628312748449573873757695213595539265330983242296137678392579930304106598172246512443226021916703880335698285225778111900707986174485992966399875773824188916643310331359814992151441451105469438429414194590306017753518096824298551980125434438668346578404714551489697085265069713532970852923794443499695348266814624615259357855549970374889797031778600364610258567571031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19593023613005775553586909525911200634770518749494255065690784621317940364241588207126760149807198872743694754930683255786021257248811239885502920795315169673185356175789496218403957201939157238437349503023989403264498918686513172798969856899009240467300165047672972105983660312532291867398844481326643007938214267703625845499634858879658852743687837690085519577638138027391347282404797907104812454203946970708127692792982511533283742746579023173668087250051542168908942965624226372594613055552085406030159493446750419788704465234584107408052827133745324351937872838656776791113947675453374123971789319168166770901477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29264042858659719584976309470644455697443627066120522134713118248634910646903886718075613184586363744073419673373151938103619793318919066172843133150331920958129084772354413567204233119402426657220802876155069606870034990622735270596718704282470741336344980071708245867416925723170712486989703876474711651256934896187353941398725493661479489851948443362123125283269042326049256789440345974309573269250038870417349785158124914573557283469559446968893202519137073124471886336678887953920759608112757820436531212677913619367876689414917017904440725893408391461868933225673119421072171768673671457198380107076107295240599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27313150680510437274120228887004437491462618313376789329910385233519599937359669446039115167382096098253603933455694628431801568109075866264224682029056086179651509504811472800390741649195765088165121016715342404127495596739991599173787289112663184109455122081935103430390130393375384762997429080620916329874255880166276423484498512234547607660373980155818887952923929590241979318686999732801317761348656097672073025867159763538757324177570286095534907578755137049574814947087151023472826760756305802484391305465231154710255134454074379269863587237887875395617348675188508207487529640599244581242796902317910411423947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22952132803041198998806425045783571982013824045772718050084914723760855829335344300746107257688661936278592942911663351090337548674844590525858134338885215949216093999305937204157921221375327863500426610307146864756950665781281685354885221363849589255423647140752978740874315154493172617719925257251837229198569420100940924921924668955638893248308480099695330112963987393182513304601249737046393509504478505576736067380053114538297699821171118894176783501718970252554856823575721150131395189495896303846702864656020135351579704592606275351423730185180369078825669806313691723887956625612637719337953548381491814506561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26784964336236554578401337259347783115740674551556320166880935356555166783909478598231894535106681871714984155677447488987579128056563969895769673418057845587261570210099485890419822036840917992536054674010123673317159059297149180273424170868999612009369546945162755498603416226041008807114411277932072079926987924274113751789542045673290061518610821480851246397395512683491939778832063957275055305742521034550581441116799732021758442765143135334181065081186774525668343479249191611245753310300833699524259194045528488383714862879100991964253875375264817301812103012135264146302779090716034522278822869639702947891979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24933331927849194525688849373234386984483039258681706276957238198549557086567884043730322310495481514981741262028985138709609740559628976312524743795404843135116205982080236419049363214640931120364366617925738206929141792292680515972489991559796927132836046312738329335414104769103032917166665741783441854167176405616821354631059123041174730968612814636071585080352907919546631117124535960761514142912161988775503078034730646064711078599148498667863745178677748162009379360190285753144918730863083223021613207725889880961505636470615658283756771701692111391793815227465195608025639836098578978392171179343752415300149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21130581548741989663833473491709105693560893490463067981546657226355849113973302722075780933632124952440577682378079470878337849699502806271026682902726563356943043197779462020070018792384201067226517945641708553219451314210677181118039224588851532532223510101034511182787306426749616465475750332809684818436890230845993536111032031030365638941765416330746609154004535421250851438982968557080606350040942490968217328896432395116742093996537794471972998522292684646059326940734992259458224500188619992497056411865423930802542107429576328016832838337647588219681138592911222199941269761610074454549878797333385558444481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22943114530396175137798249443846111026920768157862046481793040306410273199687148589179861791186458114318602416859423296466482180852228400347453300065680237976321596424404102924480541417921048526600992719062511600835195310033897895692258834432405117365161833563707131159157698557601162255883515434943781881989645014481221960951768371470502734614196229774525403169045303268855731746015743218412197079123993513118122969845806785182895860532233374433697075706509790960000602182836259948372736663845985256620944568258884886964041543619144782961077351995254600082197315083751658242928739889952989705132200313544286569714079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23904168289936781350535717918076555319709769491727652312198861428972109027276566275439660035890603080626024360005975989553383799431578055152444008455578381405101312377950953991859422446136398079650100557347472590130647286034231184600778345849441601773400286957038909311998946184822772944957556216568174491009438733712771490924624984825757556343498034261837422685756593131064343404063760814861956812819212791342122789775764500580209067632055469471393396092804852181762652933493944852903169663399581220096873097612288353178590164951789898282459777288922692269694964353541870805746719390077235033906392189083127366412761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23763354178535201812113491985264399676135469151617644755370446652547180684318837831622389834311175408301080590896266778341206548879320611587366353739612638178389234724977901283165794094519484422515786252882040326548682085170865124232066777500551116221385144929813447592819359695055511397113576767862341901754204885203016972773889473085790331781117899394750011938059216796622903388020868150396058745322495648059827238037685121124204191066859375753842506181885624155505612829594609476018762361233827489332668388399811720117447372580114995364901452243336753407775697741730391289618450182407135484550685894101991295622487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22918493996612354608096894903716754793028689554206826312647784978861794601764565496031741170157947440885870064623926150245623059368788456906166264739397012463007826852275386360425833071413261366688617771224892695442245086756246345434946577331511727551948383577656858409295781459638177034561105417304079358288535538317060863107520913922603875612716924779393871819844091537017323464907635353305614223965297550300413080403937502966279686192110601730056831871762303551783585298580670967702589528671948432299929964149270113100871796175082598670288099217918081957029899741425019629742185498236980500915259288809975029528539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21171787204671988310390724530691192258428488259200378526971602148913934074019518477211506366813262992082438904098491027988187937242651820595212329251397883809748525203827815244075402279012139055221307249921515992572354624483981301136535330114724566205112595803705220354391647872024226915166347679239639561709740576709287790101496943234276760445781365729263361458062224966104417886692169772384813715577410491202065538826398971776247176895339637723736971302428070852014060273700862850623320491992301918331740613638401639277068757725276352065599151025927331483431956265527593029352195491436647745481478954762972019004213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24586488490103967058488518324695052148455830799119436154543574360586911891581961607459736525202814910886751834606217807278760268231782217997033974313926967817440758702225959277404748009293628980712604229809538632013737746838117814691433870694193922660011382337226933083520596954275912313958637620392832869040679558978343263873589733349513570376058165168221921160001376642309039764921552979967089337880252319474392148495093866344511215268394357390321481226465535480266594873907581932365456923003027594508887084950770233301786266653073497431303907916743682242282525381682306058664296556902362432726489355522035601605569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29493679353925020340781993603469266065661144412587906645169278210967578476388825685892348808992238338102242496419894606693245975131327184608123645950192903441778252842416472601310879528197941290002132628105151062777455194872595294360378582871427050694905824655975547086651741299717965384531700815167567173267770519866990229027273905248468962961818910467056500895870321983921326929054864454874047303011243752852859022883216353029461378947099345273936464384756616959411046978775506292864963121079964995408860774277551955617582165296494302547117142320886215196973318994664310026667302043396237296406720875864564243762541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26568160003255027362204040289443473210811587713746371399894503494597205593568716982041596141032164249344349553406343976136469102982094926858766769879556028797675744245911187506890096262798530027274246836171071424636457122180313094028251098483755340728827015651455831428594211275790762655780987505818369482287279337260316119780329518342915285268975068416906542333198457279061453743475074788171877916084016899010388125414292496375535995594059119946964418920870087545794433693831714309021064621945658285429369745051374849973437792579991729196776458853606614666810484691226574313431259319078618445568672331853056431944143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24681852952377594095194879233722435798547578045793411650472140022337945620014096390860391579432072041555372721798511317866749162046944564633874110451064335081814227554780278988860235627340644512074092408970677350339811209949996891617002280632069657640092283891291894495560167610604542980233199207913310358715786398960821374868114206795178987149437311995377680685374007727584365842515252683452339829767529625707300349342551667938961544534032241111026526248220756031999275167237207405864747870256571577805964500577217382639641115202317333373252763688024921800582215100585818896918192611412398890528580131282744344061231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21459208339701846370648213322192964935436599336859106646932059433207030940170356942569491554875684981481800245426150844429792197589324159488718403555894774659685448029225285637577580567545202828935477289125529476288500719696207227468181327592581047606410935654141393657257436011503953268438504505059934104316699930284865039755778959504194853913542364909398318829206492892904069621975449544132768168055336337013540439291409501225119125304429070116035900610076458442484661199959388177048821245672285478106988415812681309288447138155013125174957148506644735135513161057797072648821435842312195068403369346832073705004709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26034225631574407873837317309987255765375801300644350987343661013088656009580976938614874620508047123648567933162753320534138197956929587172533401207883229141344239903678422765536170259517677881839070928272791644743756360064020549135470386507889195414510841745221627316012677221705175041602418573310358419475151185826342102903197160132004847459525690640484355960277230313423952361937031799359552732554980678929420413822891728073796147908437674144410583259940665537979528555996803407838822154308710631131620855382808502805156489542482021389451725194485920611557590010500146262978867851002131667835389632681697692205173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24319026410605614471046259996343055982343332881350967865743824281766966310014172982389021105649174589104578135324031301837376341189297856746103609784382973371589743481118274107553981939784927576044103509279968171925510668643676122893354064656008661670977027777776607164484669524405196484744953925720732987621760041285114394609683988196404171273006427948576973984011848195076255315137480934540627422878182040747460710098344079350786489191919123494773759203856886852411318423901030876480780332031050222261382040838158213699126768473242385605394366162003366003164800535155690377897011975488226009694931399230104206036947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27313259467337948010562703575240963067782330024429323830323647528598839327644760755911671268521051190752520791284297878662076894091049442838325470513849101046741731811371165200828047759981123529096571525226343306918224177151669507311615668813112517741042599555595761926188392832589818036168376085209656852164626392984524569727224240644464461598494896296633752965483190690479430262729174125712365382947934509906190549929317519124680730401733411456603822090284030297012435279858164898742256766509275996377617749860330199475769203617054466073660886808158359148346020591575955885856278446675100548514897554586758523490051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25026523463118068726013493838996422451058230734014840402666633450625871411361390240349515143181025512142109663976053553803240066620676434800990237520224155091444390923597712989232674564287502456559485579901904629454160520196642081572531838332367444513640051790053648630291148764591993329871067287432885661047750223877048309788828071320999780655958935069121445225453909682801926867448342947775514748688835597859948595600951658844619781428874530485065487034542076790261420614664038580077242666637125959083187323153363664355890463759546188203163603239412746836358170155998350690969275940703323945133495513198778438072137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28650620016766727130339243708240087984885948586356409311307212053938132530941378840790282928239980809036653904237227647963061681993191689277619558610609776227958559451248109231458490468695648753942906177427166563854632642113860362678242866583676434097669461501539220950008694434684742519695145943635261129913255238516588416130799241893065182332442459916268626643381049276489827283414623759919774403613469604473371007141158918258480751732323608006784043691001263106076039372907934133387118832132374499359314402542892555490077036500585911241312531271845785319634085545455047846349557751189105833452452387966731599930569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30701823675643458735758503918328079599048863998150318328750869234503047225110833637428811206003781895820384439634401679206304941097942566045642893522779262428436546146559757255750157451552410972361396498490640942623906727489760659973743377800200566489285705973192097022569791065035827888341780558079197603373436338103478095670560346507171912693453252165741443382694061120008150993984588741379568730055382054588058572213496072674663819159003788116017546489841469153357201418191178690777846413353518408830062669089258246754820344868641381236978448805919619052025762010927510443817740903314178477913843434760069106095747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23943585022360386193065434162089746363072579764984993920283133716792644846065808660635648078912956312896689157368247265517122742284784674058165415544888532939430005011669621300224777534975552627388972801847686476263590348326823605521545707530416571038299216665839850790446794359966838781976205525561242144274270085853719443487154230432296001751421950628866551462335174937369930866754504979789811106001570841458142564309485788023069699143189518479557543627803856351645530410321164299141452986878118548772859963206805815869236845268982038431581904966635654980264681455199791225914868943761885750469882949832155369987661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27541681604524605105846083498402555396048737286480648499495785239295700952605327226463746151402611122463247267351214522788044321540424533072119784283429274184791106970757646493250462047020474630130489593514306252415148332256783772340218711898862180658774703156992274446993844245292289778094678931820484689518828221949096200360040233161449246336990155476711540539071787444757108410087380156852925087276197218658648921155497220176634950069601166245814116802654731857189759355743664960422780181107514946946787719127880745179117657551108720335028035116108240227883882799664323561619612358305402965041726699966192323041841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26401983085826479049914988548615279273973013692591832757219111966822937273702457594288247524977226131376925502858918027702444421000964784370347135524897293872015485678046092922830430624719299488973815546109018117392413124316019804019820333185814899859320949758488558810588929851803861482716166994884054483895034127850454596447419792453937225485850478817958255683741923728942126262991817811968149292156485015083963220613137562299940569455572755275749545552481940182774402591549251568738068522140275010173854736231835602003957571420876523105406163080526812447271732386185333563388409692325362393749022272565306009602609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20781925771894867234683582342331754516787026554287278561127871812856315028148111135499258538056576648095673737519467471101499187021294045997545135383468912552952125191989419070364187315031176904786900280548124887853836155280735801578709076272164623024084050553420192517973896505816090758753004440892320561389194578396759829115902226784391156960629855046481976700382244535317510187934409213426665691574396872620484489966581189215977938708612594355252243513613654769916061944765634634494842745318088207137231631190465653017702851214097674518575289855886371703300050925104810411812956657024261512539710036250022485873691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22753361239178054505004797233049538437916886136181463404776998595459202963524685620070558217620522147890334609623609542628314933739195819930844348164834352516921101563060283235886402834701915241142876826210968298637760072744284085661200773062824508933727299373851902693804650154348357659960144598411400904141574847386813229196440767857760000587185814857105374272673895221836659788591364387216114294338540388672071256589763492252873416090520525266694527288548903681800473932294961700098698497008218974327341326579009321659648620760808504512670071264841508314687732718347727269880371301923970612758230298898951364188321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21129256513009520247155100358784962123662964740468275089333050831555605913138490002232180773574893177232794968427359376750696556351328686423011387382015774512445947384256824917184537427939100784366309631703135880653519487508913731178249643271169964589903747651359359401719158697135234734041757954105785591315897812268576745072142040706752056757893247488674507930398003402085382599990686042103456426310992781965537334929285046472946836755648762190722245065941817293867179003313598802550417985977454273513463999968764764659131366597807360263092835332601058223801677183565505519073113985806886639107649291684927665401651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24250741283480311586089297862778915911765070450684953530515732538726134450820344896040479066999781775496904664521559726162698376300864638073621450113074392957136102356413003185535110841852992339365812619086341462661184987994608072020266565549168184062326427853862583894039478344808966409867723084250236693252718182826201222449821268496590748384136163224708137577033480908282155301668540101926311916761856928654893300042698805482975485133047572897303321560544637977864216298875882438773704672518143377197603431270148897677481861373895695562016869679351181162834251395457066658634015481733095170714340947473096408037321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27167928667969745196055877018111908513408697699392596260438513884778196950340251497330848368165440315367134568771594580013168327202464014458891020940799418019987039920482462072022442725126863180118672686211873007209028892169409954509115767783874794351577204628047647039274037759779884760141290842648519839931195438791253230530516169559577042552958594154282638270592873074103872143101403833154689202939076022785389258844581882820925173536727971102929220940511383513186732465375664210752213974507966840878611526798547101541907340988690358082219576281025867526677660197051558782795779723329963403914812643466358085501861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24234901864531492255286387645571049504826892480214982429315375935961962181242953372608315227285727352947405761665118711826677826075712585230328288691381182423943728751085434180940850210433168384388378850036870235143403584475338620772660843865030692620834740383278239561368990990184269186899922854867940951925854085494447531923009534301843984621128549103040912892824434451079893742957182450970215189185342421270740135475549018740516855198206775311268755695507131564431362007234458883911313410148614284230792537863253091754955350902498898348763276368887360184738943424171574658108940382694083778847137059118662619837917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23642863570409267185468451243579855773080072176328288894810591090039726916898039098207949134614605790543333500083210466328551736158585452416165830996882965537083674364586020847013280100165782177045719598051559747031115485515667911766146724754680381148392809506956658222447810471585248699389213459225080690996574032815130284031522634817133945499841973780728249784670074502924925008041203955694783301289612044618555687642335530611458264962119924032014600471200791838191743646823505516479037642689797323889451142425044657744682890067448862471207445050042327335589493729586916549115217486185046899667020296879541085314377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25259229448447122681733998513194628326943875481343792049759706680161792103158463013090894096973555746235878956744934283720378562902501878614155016824324257810919419868356230144542298994720760732174400518077305916049799652113643034849178001426118577967429797465352566959364784989624901939670528345801208454032841872154316851761769163962789691169717432019657969646975354084016603306744390522825786693101997946264974158696816202858461526099915288324954737956670736032324282951749359404768589483597795541740553908981661659476666360896504487324174651693963313364651294214699500878685904560713545687730862368662930870629251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24600731639696805314493290646736976878049365815854602802016550432849531612205203969951043647933684255864198984401087997101223578392657757663620963671871607419306586295163760021822671302747404290562379170806363808404317664116119875735354059278388723140273867515489503730703851407616847253520842903417968442468994103993748337318483505277974254287515175547526775824716624108918283502606188357413162245906215101579473309536156109191747519983855017759969709285298971737516674360618179561872404175486134587185146759312002622591692620199402964485077116417492932773903032790931405521917454810424447124919519920929287957261447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24755803301631720642565840076811503601803077686858393305757957640894061317503682795993177730657131375596281467824828306016659436042343085148599347871672397849849792377754883417145881976434064376272642165171015844181048188758721796357230873546086083263594039386152133459697772891931800866643717219874866052829773844810836453793343407185058628346764154949437078998900926141089938390354844335687492022467459707036458666986580246234804564616373111896919100320011801107463148163579817894170718176813999577749709252531403136153497718282050186557632836111334660545922408680249254794731645123573436495086881799413590878216779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23486216194258145657904202216198079270056797284644872794417102043857814935564796503301036547545799917347872460276674177449919997594970700064003161020676745962199273423858379140793630749877822938109829073338092258079733403557770998510143646014956681073766463330153155172825321231440917203676828161034118007923114740819594339191013322094925339692363663077496270729124427551903993730631866236384438832244659672726097337256700902078763296481020536345914452881083210207998867631014593916146582275000920189034124834832134139706816667767061432354346967860818330548786390270820697929855377671058655282861643987072167270702437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24317874774373676246735289425654796804758867672050291087826716528790002809229597594175798023218947649504709225999355561506478368565585466421174027775585238451470725763080310347625777860544119226799735087235098768232471065091947613815130613995020478343541253048881848256630976284347099634031819266413931636166306371466469188002968773088372904578697996439627640072895182012236682745411744218319635351584410687667203376098482819129300790653719562733097495168347694392771670073468190541010546407206015701522343909672677984285807101645449513800039120966881421089066796981535227770813517642054942653994180345689046916694717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25484442786780184429869959409847616926940286391174691002976205416256105202708778368707751278120595923950384265736546220891537591277261985281674177096237983735865263091224046536538153424903732419052255107325207248397662934937722643084895330357865253420560684257524163478970079192969211030347180614012426018658122933092552493351932729339520040558403960710143670372628404666443278752713803301290032373033090275828556484243453406916830947652301444810347314817635000075655157153558211252670991342628561324571922205897899304908548554673371487729817013353621427518109618431410400194890313230623147987716247938379064944884401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23799576443642223154225522947256333651318948002092318465173286372277399929249678705337209114358145537743158128395293476610735368561623573638916385183546866052253450707998043625321009469400515596266720436013443264960759373403626916731057353656792880687523825648442655832452433840280604418552033660372860253341832686388455574533581608479092152286001411316825724492757738768410939047688803844116668895803031057147241717399532048593470911267220997584375477845425886766507469365711817713855907857857921726017209292389339884520903068095737805798529256051536297086023347569357343049385030647360231230761393207403001844771967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24289381816792536383101266032296375245273948291174567294555620947772961342231609945229986576940392681839198288795083286790641006363392660121964381953536206590371955700919306627657919812531223281527209541307228753519235111423314887796381442389494823790176199797816839151859929683019418105855765297017308978238062589211143139665675018537094845727733936266476443864260715012102322103340801769557736906116744086491954446662604440307653438865854631621696089724840912812111555022139315284668588749930994090667803174239334809447958166861680630243523600475719046512686300071914706413557942362723674021356675374053375451899761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23185490289999275036194809707868934383877091729941946334023957398971806420756965760892146456878986723354318347540770607028218547832887589981000336154948557365753348081080589963776949436620452685939891103090247535212044128438144731610025823396142475794368848295761732866112390810724616989534790763470690029797439450928241575812848497551770282786304718592338848450785098051405296358773198857523904177968234884069851069008695353500205898105250609778716882846157387908441555858298539022777944690820391348433630122784436767068911856115451701715320150414563004034034599127329514859919832891093969559444092638981493362574723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26338163449820118084226049079441229684736530441226141085761321270444852878246309602958656332497422113475507382064814706617835115068980425910208380107289979242510386591516612242839743590368475366105902734546249632628516037172554894304333152181171816551382538631647887373250780158243398567871826901292098739167648772537099075171913620012703238276793778722845248811764917442972406634864381072997071197697984657865450332071911758870909497834852407416913955814347948373064809932623738559078302763119623328630768508087712047040826928176059888441460960786816046375148996157735780903024737443762695858961075893601970761598851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23967170795139939989115753979298305253636240462827947651255242727748262933801762520689768906947084714949004871499108962700282026195479338656983108907454468121903754266568064847666032837306142549609260518299019690305888664584110664584600702421500135974466039528294251132739915069606744837068990317444483625302693220960895097173869971814116568129270302287498935615733807512516045347572051174943756699769860905678538628633759903357432256649489921149743640205385497328701036166678676775486621425422887792340726489600431342369261588747727472039735365587218976427244141906092576840271278331593198643971423979407221312959041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29529136671738453270178643642833909708241759434557102148870888963190086853955275389733039767708808915334730275330996222032111637326995053365376299382425988197934533793612021096369051832921985896917209723214849573280511923282464925476919674683564093282321144315773572578342699782170513756973858889364694708394035836443051592203183434308452339013928407407384259596622811730226630939661459295641430357374112068727450785945139454243815594819744131379470072391100207128483871584169286650576742221335849293297442144112549593364031220748034664691172337032354259492493603134877227672631481439340390503708557387431183820382891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26075371371066988936044829008437654769212910356235619112940928928600930317675212219782343128061734286797125012867662286668241985603376804211440077438232686369173496827856187993663747049184891349541016082836743289779069381938597290226134410187959541863215771977134999449602460477053202220852047130040891098154787642273146558715115499693066491612324431775164645976067232973528135002608537121408571486020224883875525271084689167414846726981712403753372838165166829033918139981591275268692410860630736797500393963642612890205483685542026074951664248245087850559429073698073569118591170487752655717687733979160971121291097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28455931146869918472705262398922706463075517268904348482102154899096442449189149575386471539289789563014761632630543629803644093493223287499510322774761875232105336494697462968467405575751317407410972397243215917427643434945439128180946918216585941260198462864051790158365655812409251626908995195841401090443277829535434194691873563143707331743181110092089594112671261283003040317852758035182257424111186724683154205849832910399570725129300420018361695806201410575311279366851954487758134475274512876350168762319893558215518657004619649905635419432874521189955171743211442648622995942618125427407876825168191340061107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26700916567995191121555758388635719793266159789590028499164346860071910354917812701300097938938938451279980136401862803174406178023439830052373991746193946259232753466408875286897676468667105411322174743831015965272361485745517725089701885961675704480562427527082800659638336348895179285742174642203334136109047900236418986756856333837889610056799827605972779042104703347451570072217892943166450406485276479919036585319462354538238022445438199426475666376860723755505405265990115470768790613234575112219568138688357159821228133124195164014106095224760202927190792427912299283458832765832875788077073081997303727154513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24778348568103776268265677463581794735180074590366035387462084825817564895788381569462897884618584326732038295761691135406667878015144716107663164463814554075230283623024613753005221737859305752086053652839322927746303406793589321751682971464680061835724091575884852917806577107333284998244879073233258664804300016546184915705604480177621744387328289378924198126746584541013019095723946040366050494309492828369989042141616669314470797084650538789656515693986596265686367813126832808321755376371701340676872581503982801639457566016803058242581737117061667812387636032794993088378849932681207709986051671225879081792367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27787381647397589464410623492965500842515696099306493696236179922901511687638435562341387494568075355595695117652278484359379142353149955255313015385274306757217704155580919999489007434148347204663459520776099972259908403951195245198270664586831583909487649084150518012884207096675057168278671698292228573444780287840500988138679859061041401587521343074008003921906119583917568749347143877707231636935792600324366347849491019583497362031574241151637150737986009780965183283690986574761817157331581201091939122169778157581729310006439590348689621507594055587181598161586580170334694867282333660586647173575879585302737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23619368916768129139268858040706400939191803718815346021516510467762218867806323455328039401049386904258307711393427083918721730624866852033129508252832127648051082214568035221765051210575228257085587782046961037766872795587512158807718233014594058203340071094527870697084092636049212663182629144098914260658862402854591387088371398173417844639255787155654654232724452168466133268936759115725644665280951449544028186607673296034578502884119136747094163705696840200210952866281488229626221058273398781152005097580103373011534253351129864647025897208136782062362674116920313873369933409690822418109863368637789209942709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22627136205137511389313125158446720202757073878672919810321872083826546734368070184872959903745835728164396376227580449039850994048067002430187109460035319761698555768464254003256270390603746707982324706838059187631490398305257744449876792572463451006205901670673423245542161179967043053822134264519630084694385603176382207113911106355144458989066959874501355809884611183332931955547274996692235393063461572600327291035478680535131778106452882973245389337629418894248004204046119819959647819716688174662652393826225802274097921950065918421695652719007776249842833435862251266372673815985677451503507488094320568686279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23178913161660342733749189405052357832637383011972461375333711983722790832984640390466958854473831641567164022502165159337512629593514571692901870365433797381404070418202940789408292822497462051823020004523461232888462815309756159868035600727803267487175283921342409369454310790223729153805695604459508792965175323429378239869493743169515186801722857279891003566888948462593002077790632346747202395097044597512461582185041408959378048117996816537395623571300689665424500543627445797199372394073292837153753939781706602227108294985231007413841943471655813175666612380010728682844286471666612158821993895978688659346361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26162560703066003606300200200317235337154652915988687171292527270312701818014504195673816323150239438189018990381547202685249409087763161833607841825712727069017057011313638083563819556569421267431918373855872369061209587026867082140734427509821305212754614090582705143129447930342735211304813505982438958079660377350350521719173371410016719977907565782731093448543747436209081915193418698647004383415602991583347737913959878666206017032746602374736267879263612284011891476371562326246962404284977507206169523734806744036928503916699967361231128349001920137096741360413140515327716067942172360323903107643548780704657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23362185053033669125651967773526921999099708462603251906800861710055377138776414277496198789945237892088364194115364315688412512205038282141549921702970679268116259588809287354079711500839270947063010563736052246568770864597119670646380806785256477809926536842651082377189625921837168284355365923427265933427825705737039832027766967231879438923078067783793104954868649756677411965315010665001015171101737761220024455959571944639380752828411823709391310848603913521287224222921355396860522465411523513427589117266374533993350348705224401246273492325961801710438977930892768939462346996496791193060013445443834653859039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26675690963796663995561243382076945692294419021547950705655456900501155719275523833373231686124507676638847733633961543099010769616886949532025113547947228948304232608759568419129935950544196503444344023595239051578484167588666567726719363985596437436929475621096766630702797661454666370930055926212136947806063194205286989475007856654574942828957476497669098696943488883324924446991402425417450161337773480870592455437889071680101456847664182067135701082231646967171982202272093550359757267976980216992198703952342970798978492775873742186744473786131917477558028414818867527503587829787736300347390647668018900309591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22991651071281060219539192631087295052040173047557133878294382829979827218626023714027250034755403648427144612376318693754693464300396530965024523638080979845283253174746558593274775135901106589175319324602951522780774180275820853631155264060788774890765162716666329796293458804816705529346432036242473540118959459733793539357483969756890405327075866330642876234513829698807508918424401188253737637955365649966958978446210099543089172373252186505548925058217247298317763423340861431176785644283443416247371476909211775695501235192812935572606965192450088901960676554659665444700103056381292428871070525274026819744687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26114077173368783170128075954280647327534378874657696785434303433632461883138541670631814314096518499586067963187156157969731149891002353221683290619786904680429079076338022630469593143206164037147609908807338108323727380530350461693259757141142148898421526261540212881990293412587433614740179591475939649762441688136448107571726639674570345975346269678261400764678396757933489597276410245234507300321702991791706701884791088653971443766888083902137470667042515915060954043799091547719341460873883570600580078471716445574431918438882789307118342085999613124225565654452358285757246028019543268224513265555930104459677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21838901978871592422307721690129047107275804553673182716645442353786972412898993409534005610002858958689016130295090920470814773803698064015078909709585180799706611727592529659790920851210934191640253096347338462817023207733544130287305851148133795636086040230099519058334441071140688289647939234127596456744363823760348021320511372486856118281149241981072539735496039257551519153437854908905904464379411718384531763225659845308232127399151629416815691453044128108046622548684068516669068277671837964343651877201272048322759727583644779107686419920078673734679402721877635732878667352688938627527295040140752142730583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23128864769014729155352712681169664452432611138872427209078486755653636855690159008068674654428942619625889128110786022381643935566396193920016520765627059400303809616383066386153913168577709713230543151918815492800342302621075495064992787144511698974879653833492687172048482216307879534023139142110270800518260455733920614335932396311838580061689728530428539310919014598555912103335634324993319969963278467138356852661449459084151787802581085727055587222970297815634731874726179078203950956613172666935914898606650411894570131695098485682442803839304686797581223321055777326357307435652582289059871690656932877065773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27855290649183357042936046028958079021771178418523191163153522174205390297018178816347408056035364337693883774805939176318748233843111593779853861755161317439599978852714845737376334825060709777847853802938695445972818171614371082704873584000766897888183232906600626936656668477789992341981258134724219206297776442403078609480425994166625107048064026850704921556482220424021474264649887996341312866735932275608336793371711287072078043280515350475802527775947755694510394556612598709335455284150505330172368698648954623228558030510160862463449129174656860618400172841908469894319204520082163537479171826241243625099213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21547326450695373668537227312503386247353408905019366124968602033569102388562281059834083196771445264130432121915577261139534892125936542300977492565963950877481890289211491497852643686690742588852789054742617353158286729248796369365281130116855002804629100516952127863211632457826870657403413717171566613109807125908607266800094672135295948243459908763792264102624333039514324217733371328586297355109634822677839632558635476758527744160349010923156223702396525120913919871312106285901447710821237196488524982903510951933629388399390917019904775133302890597550052768787892641429666600200403771844700721531214603431023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29147741701991490792695464382443597969315718627955706117936330114180625510478564718366237436149349676549990247745517711449716477236795120674721658809710764756747689853714767044378843348472356386005363714756255418576154779799683851831590033370136808902301791774612782028090307106749022301220828328498911562265375160319517061782730461528622143235547218336918819253631390217505597784576791006965223991488810251638342677614029703639308354493849113954116528893099523606201705164218050316116193677095444646773039504600032020693556910047864327603373229129721278239938700039547892383058098469849045064217702977726068099167613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25757806332546015943210462602737844350844599270802877734828526361474373874776837411156596293635940329803464653867583542128887558556792250752475397214712802641376443970403638910760104889500492199380360262623686182266258332812105719695010196150630764347535806031354098660698012085008712593188576253331568764942874111379925580097888250831585580428799358267319459595363822437440636589086603256330469664948232758497977670440234644293551521899103638738754963863746618901112612998174492051269829480670468080415870876627934686006224843616994811727260736858328154687074876379405328900502868019103777085957459106279710350515457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29410680880439913366433438036973425476748851041759429964307446956025389803488840362086630196618856722382790232129425426246293039965321492773612579805967664625230679454969141956069146704497415267895128799449338220538675644926356629507766092150143881782296031200879865475967030270085327970414728506147139952815730695598655850880873797094097557649708683305087888324627771557527764551305410609136917116735812726748869833119144437341794715605505385443405726380039758384841462503655969742193815023920456227452689042999818247438270643919263113441114419530994455946272145137913220760273380381936614812990330301370430989612019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28288626014860071149035881611475548357566440054052039802148288991514520607650633212552406836041191729123409480128514996358278723677153852256943791474495464387060199832506946120359376393614713994701124101562986396551398797742867611950268500734482017408774323388001137152841474090581139466826439274558832657944085291599221796294648651444914756212508598009622499528155368066884328271398973170702401210014412152013867599741911376545076503110922347170027600516578975448016789876453368114635053824757867592972431099609491263132503754931171385585742188044101428600680496002310490050068690826386850027281877962224409268936707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24521259886123826331141807128159406479400251851804733417310280875959008003069852256630887615230956632226172170216406672865845821133963706360653454351758638334763273019499300293325571039333611589439779584029666718372872801737267317900377609654069464445184615350213964280157576166475807033425651090379387053921717909016651478242161197218749916138202661749969356041996082834322762698331145305507886800391242478669170483635576949599884896108862543857265952207498358699809695175985902220630748520454375094599039750641897305443948369265621782721777647587717760992364055010814772270117287871166143323477134039931462903276411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18602680512855524817567762414774237411507059531250939318163024604018623678084042109401104108568518001251480222726435567172748827364173778580804004858885912000355656694731208468913875627506477742709183858250647337854208658246320763188446759160062556408808780961486507081174691331993244059910207911140348855065042820220763170452083191635175479561036350466354722781956036595055026928199464479242236788561965724432415558106908496791059151409535588487206749756718000904744366764199401257411526664460590929769197761473380899112377315878348802798034598400747385700334503160117906838778856402660816980130067339605507107845963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24212302923119298624374275873548470558911478644616657607191399543041302115626404556150406593544629398664583802182856386201591780992540763330746704730927731083074169292259841316020415530086606902581356995361506557599862021082156965605496821352078381870009308469248440982155186534979104794632582933194871303659327994806755391472546268561110984911077308075036134999236997363512553153557429074960604744088323471628355712627436654777797494680511570690493353744488325541028869653534268568622000951175740065661479460174830134446184849090153870356130930117013513120817159845883371688853644597934946674902353849719793944567589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21976038106973108639240242702798797366024256414251086795805057595306168289022090268161538302219405548143524462584322502023035861314891263539522631582646827589334102588268114097689046620605556204736003219766741285827067492885126573192849451010357392063570439746360621292936565149055254685143769900994013167781216582660699158603670555827745055264655840248210348923327221269969663622173080056223457908744560610364031701668337624649425220131255642949149878257331624420280038351802673707671475861830080099211165191474078779997153718708298401850832809074523591368152066414188834515340531342840869162232099029978302777783043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25279527782192440060393569168581862196049365294472592426037386335277375084742457622851547729095554152061390160499230645572671173989048213981665691914402761246167017820893226207176547290413342168183586973751627205053576439349150912529729133338119532790495096856354597867107975171864313524542482655925831280937256586152263625787436663054179450269544739934351665596689760517707054389169748190398459577622385176911780750595803202766214162199141417475638335797462067476407241423742084022252864390539814491620539786133597131734253419642341423490719420600656433666559007071817647824315265910009097324002223141789968112664991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27463396995619928363294436935814650851141497221660521504912780493115697379869684818884245710072797525157560646965771957365750426670895968481287768804266860443379178349686115326708219955470226503420395806582239881156778684656035548893921910617805104576780197572319548137544438088828462641441183150633910568021807669922267892510472520475060346378218637746931894925806977634131764686245469687264589416417083650647986539768249145236026972336527579304503993350851157452859128665095523388901818708229895193205076715344185002557830378806785715649843029543328988667743681080057363892134146373741640099985077417926068009948817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24130451382221213920314340638107650007124854875808788620816915881370451673800242944228492145768418176935754423925617218487080024934006164507924154796141361383118346732169238296858406034200863607807480121744982290825568530792959673780479107442972046749159483444443257726343266163015284609399820886626783098900671136177251590244646061964081774044166229252947872208021182860698518920833862063012522631051648116740984911385521404832715609414915639548056726253760939667954447603700299960627857449146774362436147022915775743097432701130808817877608281414947130393052646486455744550241392267487749053909136903664097884049459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18578415638462830884366248934280771651989694464992314107761010310089711983519294167517040552198554506690310595292854884513312986695355853948641370033100469361219279480586117269718799937813580639192297329828587220813808105868549843802761295098950109275188468074550947781047464834223681158568799031339737511668259653578780995591629549722476950540181153967405010592808169119179929821905904978890893941459890621778740025443183018108674136719402351832572281589717626483172302477725200405245906164394255510570885211681958283639496401666456848892541043079676266531359924685126669521912826354150134094076464920488391474907181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23086180988140730005206945840623088781163281804838736182758821475704981735793930834114910245344350741984760483187350033800957200108995910479386363104342839011574282210422625517180055566723452864759082800160369700779001433161375744339226130568040048967092790049788808420370278146381718116895924879687879735259335286497920772995750999168207501633737936236236945228045927351782344221888566410545646821595963948508838253096488084071663214281016954070888176725707997656290289005100871110490296022378877199439062480751898201703416604209331763964126431633665877889972901726419205789373590141399348300039063600207705338478023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22251644500078342817295728408837003360935436878727064099709332957537174281285682998561627184407701670219427288522918295854923105463010092520288345188566359562832564233949601400143903643330122779253332181023397856992712251994914647793575540676991350789890152402007919203061405302107359764400947683648610211722042761154250402998297273339278794326551854756363504293059001523023628910902589658671110296656656555347100804799638595124133133510008429956105056805955523793660141213383524514758231472836214382821164934279448606010803537662087312723329863041668010526174663099771133583581626377825039749505757679772943123401777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24868070725279978182684381584821603667875464102911637773070096589504427476108886269163425447155172807211873113166629013905783414985115157858868486582851451046176771142005193678299320542109013597415399432870015667532570642443872521434556526833599119860093577607375909951472293158890576361775679124169622111783881863850981642828216581593362429518193920272790298751529343965209522201837853962002633525331192663750930468990847310313521566634301756066061912953879111001753368305714566183583167632906800400689041265149290791077994911313878513811506572279123848423837844976956553559057867833563523773210090549282615161358507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20468274012168519807648818815596367306693604897623399001870797364319101613104877976676592095152965279078549522621335957186274926399095095629719128126511672570279109666257098738370114226473410340330719253573223375288206563003631992487249168071310896021566201932052033342846528735943480730177501453187949152972072494306338244582891366259218079305029042464403880105993914165765462334951264989450434971296361275214183465256412859074472245482997086534340417937667932851823994366944240931016351699066286518256843901349884630277070469274316616154513829572294181164593921503939653203473257575959399814648061935831210331816283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23083929027594045050972798105706333230594455683813389886475949024443889292912941249317677140011180651041518527202293234306952748012212638901046702890072303646353770912748746275713738305805618823545877644403139622758952291796632081621908954153037937390873300969847777198468086546944321884124794609821976712261730990113293747136810600922141157306986498960532012531658276009008200892309675957761578651937969297900633165842933370967468265186813264805394684236312828447527651448718672495655813616279746645574513045454988615663007158054394495392000896126122666953177515005375998512737878139235194243634840291682285047076039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21722703516019824432142274455769786920224474930348339726750236976285603991789426397743991224479780904911847505187583775078917415965143532735766742304187970782549866983328145621062246351745894528524657365402661576941877108137727261961177097099391546297505772468003166404662118069267963060894118653304483677459841719352816550201874271609948523655119270134198159895089555247646164950831363332376036679890794582506886350787333141896997650492910248741354268913549507557038799174593760975227576216598824465175180027035277652238319878850212815717707072254017942651218811470013245461636322095083057170988136520050308585551443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24492755263529161007943135090941919308562261350003657876895163235701701665353035445354740245982513249537800135251588564109452897192932945200313805875316683801550084055122916323008818949572591350382085569105605681442580433778949954368689634668426998554576541201510696205788753958929718030432278571685846254484732228374367422116199064753286129536826406075872665028772869065416294172612400793714145609994110098195283100369929951675057598306646084486550403820376447236445492260593847059571960315738542792335281580943654729229886179012469191533214424655436460945425836090609982146259255061063955631975219328738613213586867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22729963645312177134098272606862365408726507457563710228970008047986597402151584528743800969450554173346962114569134222604098267890197888360761062586947620140409702008997273894899969192982320997888836223549676652463396971212865731322379246666793353399276839506698343560163593052426079226478862344516393164187101370649590216005581418019366728435753625990875614650956533822320849415657672091811387138015247094815820804034946860264505632025620515405291881407995090091771413299876260867640063799576603419028849251340375943614009125450306842976618118496789462587029419791576525658145200673744603922748556488494632812263509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22450486747339294726788594612853542007719188675694692147857654183694000676139193581655577131127466154317797445691867285342267691339462346674002611820233487206189715937608656781113675708913106738860237279935474210388039160080550758585954583481014392201007626062386165442269793027762534911485223828882234456526129581569574384880354584517649818679235024291396307323838571211302739598458541275457113032087470521367573472144950079300387820325286813109543122084467648787377541083021212421020073293515890152899771962779168392605906745520524681324832910748972740509126028470621473940162723728158652869387772048604020094559111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28956946721931118190713267892629075376788157141526790127262516361256355108806747506286828502723381176492554993726039248958173221235797866172014588992501762954161080101211868674891039515936306598102950260676196965919061012770165068527771553705909661841991115374861094279249276044799516883095470825138847057873943234627235254355119945249913987261327755976867474349142235590765461547419209140851354516242057965846650291197715617596959792590515826671440421731246741619699641536176364828871064139301016713152005518056115873798407831851913666018629412028789744553296378448424422021863088176273577146096696085660647686591091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24099175111733241614935129622575522622418688974590896313125686034229038570241423049116724877218435064838429169941991258279648141983493939270209045861320448254457263218241317223455909387580544960987295045582454073617383512513921399712873919376115613685134293048548870864595193842728683080027519812189770426644731432475758608472168602506540498076362147401950465617423407930108849631482155764562634349691732180932601693996856781244172975262382844904607932105999477050655443620512982190062111694337481035690754246937710506342022303962993934365040475693675694229949354994581512402903137356282012604917072494542171405237187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26915864141419894823987127777765555406105928730598217912492265606163820530072675819725213696805979695883685500350967903193667378525084110357952112256611930449534377195140935312796319472789656417487616373352224159813686580114748890821370080139161347890311288092613393825957553664623844378358381653280967711585950297628767510124078358076528943465427940503809094904825092477042817984587099592219584570800434273518661159600897888386216986527814264597549598760509579789483967055542817041998295931469375314178098774400254315114576049053501720635295737568972749732491160112473209913357641501335788767923423613634360629201427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23551875450696923247434924383828037093594217097043376949099890743008369466780163887240345355286764226275818150325672013335389686481144574328144782804702946055439235148679244235987432646597299659244753629068724621639137741229632394043727272051147709490172747370874152108450097998416991481042479214357590163022576931890824357869129693813141384890564928388370371083955873414261525639612148648635245136835358577338632108676954948903865808689994145450843983305765768757448671063417127860835484690948615360410925391239872729443723551782214488225640659202522663343823351700943250896676351237590511968611067038086546379275079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23786637049357803462488633477533733648863582475824949037270990137597379124665295817287268244805224407983318684409607394574155725062194492424473948389618419658172908258084054142920180814765709368741318924154174655984798840558201181641933822713024862194144403313881629299187481036862814320697620680997201788029093094274591789869700141474924845590176273411492086274535982196843902024113733321132839667795048126989519576719042880365932358830141468151586093875677383162016114165698628826497286720771990331913896821163617969871567591168021090854961751193796467872434954589107365437906281617420870781811546405466985485846477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29848630202904092352876769146306950658380914800971085170163555593753797704120984139805070089486513651192998505982150359794781906038430148130341807372061533603079381251069417833016397288382278915770542050618315639246486438554417823276975508797291167942572596969410521247992909874159238921077244695223377801135041328311093496575165735065924584257334329859515152663168605688518254079796505668459850647267858559972762469423117767842175964720777020381154560233577161013700678994550265018772773464373872494202135511836258405615222845570264244994181440554380888335518068722349093847471206111539793834263289221504143953268741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21490027670068358501134698349498387929240896271118283802372214617723737126212344837039763499248214412467480595803798970956044390585277783296345069218645500605868890260216604324934461426300818344958605008195312798816495919359094398648842977502624099743356785123529106371741779294254935359000353973891526175184282182735333625148811874924335235159937018699915553022701955076927239266280808416401143184901984104110792310141791661502983752948534242847289601563506777592792257830682088517701080498228634044970819155696253834970548155311850399933567803305596665802583511430757118097068079573884706526212621582646348525290841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29312608689370519520090890038066607403933570614018696527908012903507132272636570157587139581537140653198091062114428459534046318027602452996519650811497294229753966866629032283407745506521861785284415376678198814509503787728547592220993373167769694687758483925734783693169192517559349326078669612272322070842886049223662525540718078990345542716067816881558717272208627153966833418039663649899096781627123017722684804472268879311908499646868425891124570236859031387768769610725956764845392867130531759679869412472214250564432157669248213026701252338175641532520046942730306410877610610684634236169904230521641713102421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29390239030927093416042008759154896602304700880340580738149410243391978692218799674310794342937750189627741907625173374216822654101372570962607820106830175530950177553551974799920418786656180305085088076290746852536375558338233808664812601513710328000756132908940123650641629067382981503078747006024907257855393438751228842937438484767685912966152567534796199109562977086851340236296522930308869075764841969715593123420746537631739871759973863886914223087997293499264876008954936784753431180956050075134414662496089567567976963904064738034560231755842257020988055760026150385831375120335605900154108280058632289359911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23257354650883803910571628856248741251451351891760336213334898570526901702311077086324207875763541570078628391356825675338528313953539123671892542312195526547057375856207932977653841884752594486798104942930405456161381491587475836172486722335077431970806296370923479244566508644803132220455828676207492703193162699604560289190291737288702769286209971555501241923141576185401005757673368599151686471336135154073985808981763267173491513719174514488388848370270836611566500017133204986145987818876270961528004929936062376427309156224165672736548677149568363258591046867715715874416649575268846339130076595751799053559339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27781613212503270939551209521457533297776710350109090917434506805003500403396018191538576388107065198665097505389054314464300649583843255666527239690574990950521676355947995804586527634466377297488256678666888268414555821244401752651557879091629199802708963909632874200347597849714908538711806948051651535212510101274414768373057526025579629123831860400708412434896272352207272371691927536796104757558820419371241228787430353870148506421001271631355292531252938459187030136152867406939490738544750984963423445912729766390646423015375886770005696855415541529015145353243202244379283383485831600276699154366843945620157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22992353947523586154919289488193043115652039621555612419555505736825474732174928306508756761017824396801178956704109666411957592975647458285834844819208277271149450802959314309746063964033912932589252034559322069264447114403190179203927927975985570094040088723147141282086478761770691512986005708116666772328673303352638581722688286185591028253136350850664587460822182118097273157371037671058307234794002191800858186280525025805792122331332744785243703709650031298307577076238196540940019067316218728940433180239385262083152361884009072592001289380227238803341843815971885440514059480420372027966277004186789816043891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21899352452573717168730041730514244979714317327248453186533180609754422493421107269222976645377107282699288500411725051978410540838431096495478654251495777274979766110283658769992097820541478734166993042398137857560606361681400153538155106189482843365408147656990541115987111239186481861981154539314788935232903946196654885348663146326702748693135049703267925582409539689870698275379629429090719571145267000153071759642048871504291471945156878652118291266378478290669725322932805207218944097699477077861007657886112062964497392596001742897189785416646521426031522671474832962029246147706767120902629272627193367836679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30200003753784437248840783698242125630933245457194072799466448983458672987685742465828859374613797016826520319385808170053753803446890128949779579956001307543318414597344242782875113218148567807791764210302107475188040520957622356657767449420411821725068357756730300385243027620761044812375251742890153595273834570816742200975574734244196869835151098169591655646322479194031599077568939233554190915057491670059381540102351304542711526258214016082825897830347748153530087581702348529393753587650131278143073458002429749940020213998527819957386462631836848390730556500577393055473352576759614875558593293487439918336471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26297111777491858579442364366665601533693619181226626176283239369134582739145361229187707297639981585513859888160176016211381856522516653572129435813979202206108023397237187226643072857359260097528535710437776493346083188009606163244546898524675870856303243284731744704949213105122794884208545156985567395150744131502240226135121445052669920475495570340891232221834851414453919853893569510080570204384764748278767805024272862957761413129656582362981217952428386260300394922022515891118158994056907305121121389949878119486532286582392948047262464277649828886448042468666194213562690812067133633405642754382452763334051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23906586004544008758794914606679333037876421256355222986577131847697996376569441591216048735366942119088248527391165175702718295547460442986104002015309987749538855808909160489588463695146817983305374791492520548978669506434316069292182824025383247300493797934755936470620588275416095023126984238677608431947434203563319445847654573539740030456489566488895375030913978554938214585870931928566733255896854850687108522618656359238877672443629674468685515445577884941398748266012680332074443867489330130283748479220009166280772770850495043624514769599835460363239361870743943531788303548022507777756927199710045675235511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26411032885718360074547140470187649494907211470995000412477637142913755840028619773832216863482086710283229490356431441771607296596530280349955013252861976121520144805790258513413912733490695585048523537968076750628136708435770895880228306110643717070007945487605371478168388624482485679089945967402718257801194744364115997323242149322334764415958724963427073382492674466159522025311464725078544408000920387404606028403327046677964994158989464045846466791056765739509077510676078342424962623186538551738954921883469968313949983188200466118430046219416189373657820107659045765319723224583057141520322537713676510669293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27082154618880297675675275558157797824882064955100593335276077479877304274033024465726666089803259619950429030331132286556696946908473112781452907028409941496644626425345281560574550316034975640541681873713111964679237609400371205447215292350178938133402577597986747430992335495225477939239830548831978795792457580934935934753462941275214177183965208147522463085048098773769256097530187629126486135350733970339899066042335797886639320635175818183694164400806239675975962336296918811390500744210877910256743809724753965570626390431754461252930418316790014294644442317917238852897664403533473248512237074163233649363763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28922470938227733928580365438790464305566613454378658054545226974572907396261093761905126911133957975414336212583870540517486983540192359708816641945256716605558694047851921573628953558789904050853550730292508637698627188822141683435004263675254591450348652012939758311874984233017129737031438780170971750101859051220672943633502217791823247328621583287476617572360656281859590588583872949108603477553166142990976499715133387259592983272703362289427328342754851552250990714034311509356282914653739594509534729733714051916897687689586534201983838850316083682128470817608673366754514014930421174026790464570550551770573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26941816021602286576108026808539720830699468681916857727395769116782278237262650256060296159538073793441254268284996181136784878543004141492714033476748166325488736039553565092029887132394502885054251857897414561678492850219699613784455747939582988041036380726445100512951846413269957375970398058154406818891565845343987314245007817446262453197061405863900969637657863404460138944267696231699521779569386659383449477603388246166991192057310988000618848273874543928744767585635603247102398548604084856884425340851056419074285632600190753527333483191388445791919499435250526360215205466825244135636825809773473692958513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21669221172623268269409695482915919476118164392006929338301202837943909855437351771539336008846865264236796146161394690924527672236494373808631910160668803876307006062482745443572907738269351190311924366857601589164213786638166822515785697260290746761310238439293599079906962405423833878241737071965692611767277803992101814101513403781983686076484767363758960558732878613967005683820956142795747798138365038471944862451055161747695159383075450214589932593361763220818899759776750873006985491065888585867242953374513097368825070713088786973957928867813903535640736349547063843418352854085000434852471677901861814347301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24039104999597636733002849820314749286524274115631658659385187938232054114707686840533823289335980481979335923792819701678831251506731618261560804436791840045172016554012450334584144416791626949219867636338146176567472293735196506953062277185695309126721338676334737161313038089520476966204264392891513784782737546904688258943806186226958013915624901220350102380254033082630362652353754417275619502533827849707350810833588577292290582119329977208874780091557287042744013230977339906280319080058092167032184446554663455961118847027927318488461997301200568290182737318046673201439055368904698285774298426262151757991153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25008704027890926239592147376301416006545966331861272770008239029687709548128759583560582460000816460759139276814675894543296383179873261595060174629990536891278107573771551042748497621092996554779730326519831209907985898595472909440026002237321817706299944200792308328290548884476597474669035528516018816499477649839046448594835422311966627433650553567189343334737663154101090004478199659297214795873514619711498920889901806896042802510305898785838343279378951004768861611346705145348361422425290721827853505575192577627668926936338087980110618448223301296529676500711538787099660402292626650928850236090552573444581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19508048763890192638751139517058624590079607642471080758633544644105853966807935496082859264043353484334129280543938172590954816491764312543054928390655710842533730441495504557093887824586197724455393094242929386831804377668426728542103333008562443826695887083187083859306747530619778461254648869981868037034046693218674008647450222963845917795812421930846434754716351688299313815545292092454425647575133129491496671048679186892133299049364977517001080983710538216507839492785504913142453400636951910959492966925030484052399913717327707415236828016793062988647428032190100903541154850010505389170146239043907504745123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22601362104377610269541533577925386625241948529642349204553903203019694746063913744359837549543648923492769720821804450349995541835800666369997580820748210497378909458568361944176041061742885508540143016459818517817860121621156619117962084518240658845621952842053538992773910732862911043726704305775743821877605353082876359366457614700175212704503052871714935477321023175839996857048143739710970416855183645339754281897522239260209714231268555852517061036713019137922300695921936746046415292581357672640916723401905661440232313616897652801153138738224358794623592442479585803707834142898314170285907512688067680548997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20536580735149770132256707824724404148671367315857141921608033486251063063363731118925405097398595327578311042641505090944460043836746597563497664537473239494506682374421054370284956123647199545239975766547344292097855646169038946357676311402621776664179192311619662229104520071256248734497673773363023693197741415189062592820759324240054224622558687771858801555473535986017946244216094677210839187394194632764380285580067051143977307668469555364728799619430288609529647845065921102132865282681428112991884995276985983106720122717294461124970374328580533664981696253516545358877198981086827926367483050534282999506711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24082658566283517335131949759042299929245598671212365416294205564161813022033462431775241426163520639123305662317857719474933619915046806646271390337830166481223087502753611556002072774008131347971098271976640340154544789775807816291247384918117804803155852192955165865465215485529063194066495895689115040956192937657768567858296277901370821328326749777240321830427772676403675509885538761831694514402035371137759141379649261187354355803803747027302637808834456213158558543708288714839294870682079701102647152038968811135911846800528148274853570992757608836301769416139290413291376544800185709782082607123297507666321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25634220236491238554044813661392314559115511717019029621899953552745833846335459768898619962781707213456811609596581842697940826644143631987828813307155026551940769667237259382058675187075953697099912230402845709483988607013606450707357824789862822049102786114560862971798723755563773304934294023971920846318765887170768561182513045805197835269027491789844020250381289761536698145479437454526297613687794058652480066587698674112035202527973388377303579445451287810329540346481089061225818648607207417662399059480960123325831942819960638119812274779118607927306807736699467963326424283994434913695410030535476596428833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25237249101905760142887089921749813766714441152954911607503596332401916437575558856667794255250312114845058755859181144456155034770246908649161151196836553717527647187351886101087094071449919975307255175549058865056037650746499588166855656304410015706900960227352886469990271398450139061939568377568690328833428764306851700203970134730781330712548574495437495096582564502407723911576669675486576039944574448326542988741664269984583220784012286548072577964187692598153272259550142653425645890614792086053710655455028359565752482286151944191109157429778497396757290059163783402544584382420994281095116264109455940937773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28380049277838868630674072497485011118331934534034091187732656673243036638622524760467655409165139410770026642066640185005545399426872828557314713577784728924610163481670124122130395825800049949527989662893877929611943427515934255818119702827893257968636804662778315617576941660480250708682082523265492982405672386770351517492976147707785829468537389095442999828226565151579091005647494622646674074100516912150662879946304618345826984093855362418369982275001945354782331334440351430580223774278610659497179177000656765699448084945310425400798498685943533166273527190663059131355800713591810228141759354356381542131047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25541755566014518576820931560227724024261922498380610874228738484044374762187454186589594518285790584453072905881730135217024714801580453852111794763835908437291967247902729895793435771882900489181385695267631009887362105550255637585261479606333075743795754088729932777040362976889098687070945645819736480627582072403246204183715326327902673498144010355040496098106452442673701186439298136094157210421570781510860788469438883361851627343380744063437250853095545044067078237315488958935887196227512614491629910763563902870683973301905885996220254469029221420514012110833272574613419403218050737368443111339834165256043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21064122395605871505229499268976140031304313329990084421945018173927131723950604100387195662766604814915457278386716256747822860251005571714286250010389838327868751391052068899142081370158604414671213842525453491477470298131257907837142275386656529912085704087804349341681251080579215854676045232198452328920806951138244481402102138944432064901973746775901591977517109074732034244557181435190645496358272038103781307549417424493388569301224735216132592685229943171413407177008784633524894293482021925379246034805875395529941157729522632292742993785601185335050969005362066801593304447152446654813685669999030303869947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20519115255691160372409091736899687044249559420242843489037694204598841284922535484811791275539170484365216237651016284184502589712813739297558606901095997778942193292189713418444356392956542847494778165858725141171855234373846919097579708605331220873470258061985750195156923001396149846340229365116583637721258634387663308456515413988852010807376938686528242037563150045579396961439781245690633225393074454781740402522715235929252004757992623097468238817919813779395446434879797995414279520947996419965838502503425684402967646936069003585423272175195830719831078598368180770451818518613279875093382770594280369757487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23775698741396676630830715361606949836099812626824131124026735438067756146874201850400576239200608678663545817254286628362079950854191610821799613509184333330296682573665438389920936099254726894135605294089019012447968719509129369091723272450662997710171807328046688702587715140416022369143811098011311025830103226898224215662200594721474469300515810143159251011649709935800583446134028369775396071750006698051953539215619163370059565486970501591860095315066187518624898577262033911502454283331863177402035261026514304581097811786709172866915663686868170846619242395643934793572653418579570017036004907649188017718921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20883151415887053459222318227020513366824213877681336391625178186538899372690879706900043013234133656624981745740561913204204223202865125987385074753969753050496456450208997573261773229747517390990538420898710779061844786318277398115317362376151056635599280248451828722373660894740601702778001720343693688702583277645555963514927556287036623651014364515012279911716527171375832169260628895024800093430797907159750396790294256471644123204827391480147378822921905398357233495528824143353887898789106691612167172634049227405545851176891153068517658360205043186135552909646343334164098664001659501303367224772670778382513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27874251058246354853692462791632266896508771328790111528901229353463360959007321569796502280188684373467985209021432969907698807460154681369624669215182478712451323547581359867222034466239036998187229514771978480180895418780043409081027303015852794115977509611181774222759718665824636586306399347492838427164977797872892003997280156543228857441847146961287573229428153162803846343002691461213855085371631600918157103871671693703415138443412326164908399937118918274138066508676519051538704906425678503008342179749330497006280984172456467750891646035839726592497875593887297289265994752919622448552661420404353369139819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24840861457359433376603555971102311972459062386997144697350556782464877938218552515669711791070787985863518651977637272242611702610608472167014396467947177608460534681406368214380242534029792857618395070017508634701319154172194952430283692818245765401152502755645872845467500695163971957970341474162822259431472425122024827582440388069282980067529040042676059819583412986770690470256970960291494883828297729519028738440778855812335476241816681591080369536308138736322389511967689482606721102696886515716402199848115345906435201566506394892928909220356596871296955098708378827423858902296375579496254714927391873076109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28176979445594282309045587813687460110010574891398650116969327990278655182312481153666379853619358463588837942587683659760482264276579499497059986153552032851562533466864926239317061592405912918664012117846014550788988609246880751945907211064908474270460000568361155596749885959405780321347527256886545894389962206457557321325713376226781545815567711197007125342372838624081232454991352377222583620778587057025504579021939192680940650680019800418625929380195108873279170434092945901942424382294386918183672959984004707124308536376902190121482356692702137527447103195901132948125366652566355223638778103522338198161019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21118961515691995647388792166604874778180849541531042067698791902390788683324287157329835158442824929666937161644781634125276654318568037265550780894999303589382522473677673648046212827535477650242371638243921583388200700839509052731457492578380913015812539685137984112517470458409740809932265284869873979511656320459647079156853225614964145638695614348423547921982385502024692243217961377390876509145226722770096516229129729495314531534691684100845681752940760672379198860298867638539802801849593235736996558426471522684561453339868853828092218272416696686514513168071892643143342200968268432162262351637111527269207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23064700197795348377803532234445536611274806111171580786886645922086877063043690627453338778575381451540835214494784651972089302526088869067082303513045224925131536570153578446331643399830352537100262849945299894469202533456588010858848365610084095600190865449447506866531500476621723769324886417520380625889164050619138809613469050434585103919333861087276827659637540480622805435604874535732452502487630199051872132731747132364429246074028439236492732602790834327169829977224878153673121319215404972860286641945073400842711201940281635122908744367896415179187148905226697941601019884920122507535282566635972508796799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24878813095002954514168698998040331617568639049351683794176575759337893942730483939822028881444825354988271816364521318432856330651232457664946577547609916109884434529426606837806846357940869316234068582276342263290972960370455969068684651099124336470814533283769422350368271488689704006098828882004312862177784277758469601219642072617260102526541215388617840828880060150052541311327427168810854110749419371959217944398041437643658651474401870186159083646884216334925895481805479963905621349111383392192602000160240912692279545619146490975380469935432925846080764163779143752802410504397250552292712235647822552429659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25671866745962602607207390669130825782726586573231095659979971698587416003177960415619289612631648406851110226092509351498568175212089165275016435516918449099210478384180546326083406650015103440654504496499054881896464867235706303933039579375713572720433358772081814575260406615360823384069004108488604297189619842318931790585297847758286433846582675501453537121450032625141545886922161857718869517247429796365227366051426825502082765456227513462759604119598576022499143397174554148374922353851413938550298580362697347733406525143461565915397298118446889703695285876378398000594706683641457289043885460816422769885161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29685023823841284255306778456664232652073264502847632812469458947796648475190637433189238924269287527422194217016663184030253602035116896841507269131471259389798501793062971957079046551499941861160563520565261609593865192935035719320844714935538667024921649012659338506233466206723328576735672013069246626617527507975334841228513324204760530031864949898653713866484456895350365207492188096285814182148476754550036671304664166758028238149191262623753464122316206204413533940451301046593738004810332885833085162570596997401679203819592406417353782230536366902647782540848635196928473036319245709415941380824392014911787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28763762923006556195099453474000155929169074768780140097439551629522310063186894877755269084878945555226158137972697546779364033485307123101883661342915922680055360255779719354489779005544204412462657660464204052933970395665110994392815843972588665754052300604020515074703792438971918160592957586216592292582532563076545719429501539171039760947612961200500126891995140862257281353278159094162278502514122517321908066178130212558903151947486187306396115080986995831089606107133921085241705448185177382935313483597326963363905550945963509787581918826838771159691651442626213975265231257481405048311839684843219407456383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22108338640206409280242749978917545911434952968251132427618911665371783802919830236526033819122900601569536814165149309998572085879727882080057995357398862532850871971437233922846475121103050238132218460983461366356595315112325595753958684495161289169528136712956919494945327508446273324918767865922117737785627780930389034021211849835854208748308772194790827503984992586483660429643946360268380349700118500685578394531797876399269132751844232838679608107381291095741576458680100028251072991092260985057866740832630672283281289627512091873224173421999176735869394297494576241367764255719589252237429058383185840854613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24904446455302028905207515490135824462209412194321505348105551854781151486220147752433591395692273784657748104273815268616957805454950413958604496907663864752031857301295458467964738402470808048191727356152842995342699151602068224172454764731584927687030592017190895635929550299338631969504888976229253995777514093152603720133070705728260482176327182068031621241290648036949218661079201368135173758210569949348384049161987299570458889017001575421438616182907343329265170628975816656566076136663398166106615236903246404691063991455232313893371837589161972480305249891377819754200782689044326263054787342731252150366029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27248209495556403249188597069510658710579779896415681185379829998193954542737287594717324689014153770048020097141570005883662593947932099952071623942303997916140852737233680172292012677707203557492761908144684636558962934682401067991000710819977303726690803905000550254134855448510784397472676524481982601818379005889936622681101914339713573094707683413248615671411660669270096470819382098810043690229433280839131906304222247965091847301652786501941220691145905095277944227899933541155726674916701166331028789063547542931446791908784334770469183751479094753180230974176064763133190004376269433204060151043590231599251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27352095042037532413776005049756053213969824916110806717155848547325811030232221451932960093123122565849107588250612817016716066664343063053420896865182427107551933172835337882485958886926850393901091094097520270136608783499730982069988695886239797190515645000086096872177132426807980912894677354236017207554260839109500586442150165144098183108399615051412023663561358593770202947063253545306313292221569395990311096994682774090071173687933891587237417996677550652823065156179316631259448369545276383690572628836863903234356244942877743050715007164750000327604030261807374190641724812418311660453013140664831588296781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23927644567019682511759823462545427210974926083344305069509432010566017846300358931372621783260708048066580056900233137379119971366997060520278471626988946082075062884242669048529331984060629402974768796226354327515825995519404503467032259640920895925452505604240253110797862416694102436715402032288612386796263800634221729806716602386890993954241921030730837523660503277321709100666438608832589079301171818283640270164240334270466883134670935031206213870682601553619170908995696370096259051113787073379675293460131676962942318098598631328747459977571984006682867515378984394493461658198132550227588735351796335127509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23717826470490902241455129076720159456746136249983975274329548470804476794049183388154677184013067433432127639797999663293745712936793667096277780279623797815935068397857058757920009408122848639312300234285235197376924686922950181842378426550393670098829509090487862201189073406862958821516614433973277316253411633274478037067056816941463801209542072759648485390251309932317978616122409415892940469509855923835511192121248042589259451810003584456219329225737196211215159006389748261617210795540173238272079898969178207618628516263090889760606319086651777445238325658872416923197532481205666552321566833271078961745769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24985978859363530801678398452343133388221077603758908662704449610408329917663813621652953501993588259603057353307260320523064547097887921091837417784235319720656078346500671619603710705739126826988003879115798565433705839674355045294302780850652499672206591796031728995590591353355497765630990341818721707400481398023228766134854674916793255007511602988083759013999883701278033061756362140909095075433566288508544583892439784448371674723841779965573688594672908028429534335003081820692639532369694086238122772468855796151123613248278806368453663738044071225151231009017593857146097926818809552340589511649610906101531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24130030285755295820259795749712538972597397209789418249612436282991820179282359604664564579929918498518261729665011856875240855712665755027239196803473885735420246248853818437391227864490473781458419928733069949831567138116373809321069530220817706645581344375495304819329093533561036881854219372552548359148292331596534108379222022885262845223056048314810688858601732230039935212912386413133148723255374774597944817009299648852544823761288192379401217630071693071229954412534513608305890886120895461627697469456326087003253644463141807535518390131940055306516532308515590796023886840287955791501945998314572503102429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25589913042229888672023880896756146370348467882589809890152993217637456253100759213557784665386018219935693552383195151135951997534562227913155082656416139367577394490042586576940120234233229844240145666639787549611438914150037947118691851185557829967420327739930123592144047403851062793312537281849864839766814521862866684276397880512444518858309452358113182719540352089730661229456706206957069093731183629845937855402462770236664666472661891284045037186436876943878963458289257702406927028809653557058029262000401583617119056751735967127421624016964124056949402861050442858370322076917520641073513778064164789244331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24032278791604967129289958868946186647428213509811550315064365168128932201868995767901981735773294377599402594802538000285751360844578891595383375564944264587062423085048093546946375096002306735803217973202550754990827378336258037700262590168163514814555172852368639816814707935846224067792084279080973596218725873830898852022299946969737111017232812699779317490894342850680564687011996473676465606696652130346751206982013869111346836134860242998460439456928897139541114389510739852476248618601049814910738954053646431782883320758715467176678695430179732341542170873682012960703529293055474392344010820581776560267777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24215457439619110088408540213051380336319256263679679421572805426992217623641236954848863152123030342366349580262773051931238405996496088502000791885346552357076943520565448675248489152500037571641317891959746871086684309703962160219592225738700367258444423112615813237666149663337659680142043860354372917707484366030410559297054118397777331366197977206584557693892503235078733031240333798500989473956101642341553928113138307499722806183560954876922465690899107710937724393598894649598954553932813822324886442872590312101335441911195441595742146337999353686401032293300049428726647289792858200355036640223033884551409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23227968005114073192438351166081817058557714948478450815613293126067474910360998713697834827727119991214956368171828257058164602521647472994833960438418867166412393585838686333452718798251934664741149863299852633183975476686761282331726990031355003769723053628970631608647271693830164416338699932817636322673661734480682937061021977712904244752407297140260129772721363142254033863073253474206774289247825882749196453915953113871172562865690837602813748058949478948630701913397184423838785159941186062522270524128070096219392913704254033966785664931353766605284648683908670665050919563116455855500641846913954187581101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30601286607044045743135125353596950483655190463439370994343790645380029978736060864580412308733729124135588690287506532706057904685762524751911443139382323523362208298416796957870588729804427305724783916761692684770646185825093393781558718035150887774716871455562070301064588479744829386395996059120491609624899829904525443198907971927234636621068775990591711805486453494819746077550616495339485596871134803753708643971178515033530108186285976005449228158218124399574760651945540695595515248805522702598728660377469689617375747434468262339776758130867200102553395533987193825039242783556869078370236675287838683236659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25741521215696748573944777934186200049244802573952522937368544503550581562900591729392122252188526467117442358635542998076658343928216610811749051189637414444579884124059529502197113757358165100856403309950723162991304293432525671094247189980456605432518626487864591305996070739771517138327985056292968586625688080351505306120514085767498720218799743318667571164290314684248200576805037231202995879084132960071252095574019397591703423083431331767367717340589407592631815489022225985825734339144167817668017460670917112228171924871776709222892463404459201120355166562696328742244839597531373489620181664253604239689759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29402298415789433891113941962103125908149538239376268631007628504151054620110010153228853139953622712847496678700052961460158256838215305242387458854999269873311948282295988568445141518626940216502179295909530762355099687527390728129028326764366068854980964608889414637791815326082453387965594298590901896410332012307399745060597302389254262283184422733951852991747642363129433184065202108102130592042471832237931843035783259223639252404802449600152936371667235488076993091083849362967023915285666749065097905497859033637397384316813634388789437347229202797185770333827247353234608593945376662167365461612060402741159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20587176826745434469226288206515479671730539085244359339646207621973592937024106350181128182453788615946072450972944452193647581650102388470038153831101648285635917478744760083005920703881494122737696751878119360924939774920228475581750715539977888365321365541834938906054486602562611039928618204975199530252789036316687699268706019649219991130043818043461925740324168013182890526003104144173764780038262924254330008473550810980607456768246753416650217863697035048857850607289132886176679792516373700176787750228141319411858663624158629928928171954341319721102146393063204334703307092309475749467586866541780945381739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22720520055408105921551382668728830437076465756467504861306070386192097130678519234145551464108744265922865800703853629699327915703111686664797647677805458818947743839006160597767496629897119701374955806272422529034522074517348856084186294905963983601193233720511492663949737046826134840064629915078113537312668251042490974225421064154390304224338684410741043170855513086459294541671680448349417766370002842739597671775187715557296163789234166706782897128659625481132377548185475140509146115280222490773165736368223856387576592149642982174071491737043123660675597641107535007516619928864842446579011807248544613761301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27111479346019417702675745333348026273487156412019697359567787861088979595190976559087345388750306210902599478956686833847674382890261630935696100369345604473330809014769494075941802059084398217213341263300419290137267310911016181627471820636727771392976387823873036769775356576304395990994351621102895793904106190499683313503236337876082375225092246415564701628387253647129758673152826234066127467306558808791770580983150011356123623352655052921904217284753177161650492314066227945017910889065941365594909437512835827182650085848689669373820391247909876216749298349755678218338477279656414284133916286218781560106831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21245949209603761348948208867152224609159431356624298605984406390120986858015006287767779014414434094425481834715660651698394090217734791441461222776363149760452318870044559515735680427292668696300117214660216339509090207863359915998962574543594434024432593566439542007410423551845033102145376746405500437661253370733950311368645194012722055553104438691983730828600926355006248606462693107566704348203912791521334824973466766805638707494435922012194257119738376660803483720534490771925141195868655210636558626552088224902077986569487956804619610887807345162087016401556595423512624189093407650631854307477432036014469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26829687108300697864595331226987029840783258999178092091826787182974361843030806059877030719087417901491607103583145730840381039092839677338465434406711051171419008978716498830940680449828516181988857129988491484168530252561887494365466958938466571619132019023988611346765591457025298584136014523362593485318826771454576196335400048977431784865902571957754444223955848380489900254492316899440911060864775874217374194897664265423671073201232896761490507361904017562759607682763169870347348778735953114462778972644638943016825840038620749992696197425975478973816353605895005546459223560916422906462292320056054829684587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27209183721197341629837578654828293599475573956783404116731374031231296832885040790647021628224066543713989488968771692118515829276641415176814625003071721266783606208962853896832208070038075174220853127982429512992438142622939100258341824476995141338114855988911854804190832904796915367731721922195672574350428226834569932443786163357210458680499341784385314846594410096180305220565268736897140245343528154143165447173272590216757346926178945872077249607893233830168520544155546150051894474822865118067101588108597300191564964011624182212715704220694627659534565586042853421181270791305901312206202251814551354357241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25158697000578555445064387760518001213886424044387089357544535092116059710113542956353112961332150884737852840152616455318966137178851148211522260152164286671407179197682123024220052189847550351938055853098729837117496471736023298874725543851221068673938688126689416389664741236491273296382873148709122235744031501967640103443535356007601876705974515448112151793353315248490580386378984711310639226776148741437678150199604404531319323398675918850245622221544146187936055362582531465240787872110930852409893207749509555441651855800243496776572807221305668186755642642435250713060525155164073540455763701053563591154309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24192774065679782418047440629729296972494840770455614574002666308751455628359501886665043348816357514531341638320268353539187223585296244688085762584029719606668756473424862058168990207818261002430281384535750785821629874879790993082370850046406558752773313557578012641816040171598131910859405047551856172718278112437352835239849038792463596873478284773189694362616478350971178928512224672370346455762242729888786985686464117179727975026135734721004430813148376588632099027263177871791342414742572528621633330013576984303622769412035698825833895134432847925256019832577085687591962761388360422978960544773759744402853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31067694706413193537726196982817702557410127677575890492152813954911458455647670468672239966813363810252528585100511495325306019285067041717637949123840666760616174544316748896102299883026471910522759727784509339926380876393261994989142037596623015574585380383645750811290986480499932258009272771504895435111795700923897060146515291442329781517851117325291656817639011399012750681898545309249960719860071480002164960790261605070443150054674526249839234131851880666587191042205061296031299588834378926270074657251461030336102811076482466904407569711465409124268154926937877652019969109273697309723723188676338062718153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24354813950207539364496148002546085178353688459571748080805510792532803103840939066261601937013334808029561871849746055213789550910546047947434920429054984530791135422331106005661428166964301065142262591746709773410576409049138944799830752386184291592460291125447099030200937445736667621511089012838966742191214529830818711580142505201148423431388547323074121459645103593822425848629614694020762085025098981892684217418354207738730914073184183078958224932912441951554893453708718232109596992665253529439712908532509881377527154124684443738821402822853798809624470296417485319355156857039001257521899038644055487396433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23235430141832272398790303431724522799486922108287716231776555609825964922224997198949276920681025509691712180872799095843402641772667992499965472692493886108793939824183017538925978452418496456362320172832130853832044931325538792673994235224158896749536753677761884166516870268887856535698643518687712099942191731230092801753240012473183576822627743357188116759855599710712140562306958723500967049573244183661396419696561954440825805591575216061993327980228614350388624272290635668510707633169795208672126178574467198862914922205042241446473478096809008080782598312751320952992893138576167095750162352467444421810281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26365061217530386561013241012159752924099454836094966344847344669932908678400473824579528627786980167323715373665199528888950132497371313568426352821053174749318984629809491235990067453204973262978643151904807671813585011386393289407842685931903648401987950070433918043376291022435594162630640478284149429054444723961971798020885275039855712252787487152358475809120593497747085062314745865704523007814515949689677787390912820559396994372088183686213156426309176576083732942946689910089431484788776805938621600478935577997597489906385335363228044109114156102157987528425064132732949679437243339149691429989063387710021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22020675111662179979492684377818614380981653754360152552311638390907427855227600779817950179351407711232604266207150359864897127219528042935167206228832865837860866545145975546253674338038769489436295447003301262196107972455146445879634098896757508859225416144560574448734154602891040277928926539581403796278281228902635278148991223730867467689015810491991374603595585487458633058295373080514252534561312278606628258768513090399474321059812394982302585292529374068730254359330094280866221507960509283536232598417265692914332716788774029655367923433260141306996655789281504960803881555043939786325718170631626057423937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19614080877588298654291039991183564881153112412063410145753344988943838010829793944975599064616377252059005220873485967846559165707146990024068415756826430973474906982886817104227182110455358276852230602994216172201463663161123632105594134379728927246945104555139370386069288665651789162446179682862390579983790338508729880566317566442751641362726293526774713805214747217178455708591555755152178005152848044658318926848002980744540618613093652319669999242717741852093017925515423703185107697049765490743748373570499186802748156702708805812390176176239283908752553060847435624355461813022260998687144981663717654468461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21214619523620156524182038014136324585438145077999077895670707490033262589720307710747244480568128096541646630172642641665716786026003908850401161522191185014913954052762843882712788644467500563771188678069524486848732114205603174835575117145898108539285916085464438702339244482286726605479449508454337772347039707336641218277928113488927272580984130583440084355568606404923163995656169075978862451861837733709586980626661860776135381922281430826983943636432018475336002244669279105100820963617189890671780141514591186411715293472178081668288730292744097546124740337341854304340351412340161544546299372659555532981833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24122004742139255939769911393258880426900084509084319373202894861080806502764655265674830472962548188822725786696885218074585543296743739104355852804357967308499056790479922234965519765391427850804797243114808456149109708183147573270121683021164385408858564718380332820244442759677839647599985959508213866638466127166050467575638443287845617365391626074604959077414288263783423778929914170128323143686172277888627351421783723275257642539720118523684576952995706381265540861816030435530198817905636100994304167677751769778168321354304464612434815480521438078895705057730069552958237882469721631484781547507636957097873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22330691314094514647493203449291860181632705077767084491650303216866548955605502621761469647453515182195752923188555384804914093558300085508895653032016995283474026614049243083012854866863251682395549832683842246112010760960919392968727830679482723766565373475067794240014194607773960925436341861288463287416382668769130568318177721615888570988586747371199511131040406975304188841890210125482686144083481669756108130710749590239248146890994847703607666480916519203700670533936355148856232291748429247781749142980270535138487850293822355381850662530117394684434361441327515929114586256722067504873040689019142874546113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22502651141613314466151920066364275131210690371721195819326547422021134310905523181420914037688413128421475803857823328315806074519914560611640938364233289374941612710996848572779929554871042720139131852656419452675060230963121040168450246508624743728877928048662508367898478387041557591787743303481345269568912181840895869247185745613625146397428351228570698133680374184038840163124964903292329182524796629223780557572543751111572754972990295736294480874957650541729163464576700645873001128908206417608798035999803840185809119713514509322740964154588662284714891128326968159895970157038731127568445536535822666427253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20975033749614507135487893409961100500618709220254636767833262440644750224696306418078000435266082425968108097958530458226744968097321453666520169772989419323623881965031988180692281804475572864121981577264061563016383350121795534402506476658184414502426981851041726535566891681735629018111783066736981911078338899217810287239492879879920735228198061559294141215521778185359395129764249592001312702984317784223312998756158479896164275665717894248580708728565357171472459294671162039597723829286306683115219502773272750949779617782417248308909751859099927646293754629311462155535833107863811496070377214579817103845413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23138938670852955385977840465243237611055611544914019440273687428706907549167159922281256159821314311774698566223038756676380290029591204001888077777483489211285118581836784264433393137137308361711402504980915732144660364482912882701956578568954683548840104537660025995103365646795750492508144432852719674894128124903061038715383565781457110257808163214255940393375378418790312250322050843233673127060472713963754941723283392382353379791080845316072288336405999393182306305889448226265447282636746518936180357114532305878082806793057987107045968140543728300753348223585554653292054222635026602381178955671235270033707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21706862118335710782480757906007015220287862892640171714568824805372093997248008471598174888378319179530543887294325398948283707272350748622221387810061981274317425764344920531752801689074279304607718915258225250635021657039357340132563283855163872438335897792371239112503555096107000682424875408128073802546992375331609544788061476260535873031653824014338281297233187859856168889497251970525756594277591669931190502024272007027623500518429788806286846504182538109823961803331293675422442017682891165199449146642902886208912514439022251382474529618066578304129968243410427452146156201638726875354048244848984844620051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23505417980622046921144535691155608320422603319537307013242547613399396698378477562791662850725841861987871574884947469894888126514510188306727158054478068343782960189141298812415270408680686829698094446576442435544469081107595279699172744799293271695756966652205044399799648200807633748425059337584158345460581112118205210197891848542412674744067823083488375572438201065509191606872797959805724619364817383607893694665180888323271489686965120097176091854112359823025763237074893292373218652071659075563640714711177358819816919656771768937948053755380385012256840010692156878417669787749406301423136630093991619595757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24368163966110898008732683120986650074139707976731592846275895131447393517443553930641670126535051361713738365874142497852344802320514275430849932326912246190089904915598050292578048842459174669021453077420000177852736365762414465688347848133708660536837016245703581022640461621980879932054483846113249977315110227868221715026890144049621446448262803184443319191877856145166801651736654552364344026595355216734521512137782551993761371007421797469621248892297358212963843955461151895732081333888277091103790992895905275883559483310125023713246973385756754880353239104072127243005625053948249194839942898615394904393901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24497662477273171317579674029852208495432352670742757284865265462343489448465931440573512772217405281121436394373903525896623779698716140702526933620310297340576822529816712086541556048464947294664572230576355226471226692453066431114258631044659774699142520930596585527826380609582733375846041062019679256077914910383047334391220491746788582216132725505748323533908620309964504736478934393219902549789466557385822660622923442648378360259898397432069551995488337258421576272176883485886720866844140019054606159789147879565983264525847020481026114794396708525287679013611143530950156716676064815842381016341824530207109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19620965813787122247222078085521889037867777101093245660672927475981568416797711804610708931402760095753272988890253552743986353453714476069681795117556334546770731102894892428172109925838808348066072219195051214911340861876090847625097340588016348799231658166420736325635974784580919900778311563991349457414940217512622492077369027426805632340544261432781639253412403147472235878909310185497260058532154672499782446579473206476297192258260998004045536775560443160544154201243631746027092488520826338962322091150599710081944777246931170813691474882415086693547680430474251119203189904860894032291227622013844227835603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25071512859478466860641256187153291036012098532343631799254133282187635140908957326586478174162528643042996748759756961625852739228625316244363011892945503057693299207537408833553595595598031701714401048907801124741827539931017280088199253477650227470391289936755499516917433622497521026091252388928337028752763467602545406048387656166684702756273078333657709383607542884110815406123518717220605248221659619805818909667049184070231176331831399508147911033728292059349341201590822054424491216655365101487023711167308320363914546977736337670175809516235756998485242541788570972401715765695844430073728016172720252626969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29717332715162748718865859308226723298502748227112248301364597304131692975821704360413178900370149441738053842945713693602320280231835577272444932738342881761424005472305753520734719083734496483373103074151365622410582668028097936842043704072616921940018525372658882148895572244279621116771986286285581310895299373879675298025643168575636085370819320394520528397525243888808343783633571063219276115227946468036167714691798166782429881675087596704182704092079653884421438318176373627077524662491128282614462021809961621322992148026293051390487378908740636834166439033823616339184892473687367736049936877384585515498727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25551656234639857649014759418126404007195455237351382489859841327208982578991286906549765325652111726068985125563124512247492604900253847112702974221147830394067495426230713116558219854513979914554625036083013535335829074486067619539731715548324730684981136324707163590611981699471191048550441300466889148971764750138400151051329257986062409853119893555563721067793113385827443462482072603896653248378921873114174225396835483302728064393071211782460262894854524255718082400523557968483775226919389896017937780763595562892513257098926479855161101866468548637933742665166343192872185981390558686820659490955462685259703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25406672789664456396842153079606201697499002776510478348449073486538815342416406649414258497934984773069458224687608676472569684587030964626602648688003587016162820911515878820535104709441755507530726562110870076962694333315044070048622657637378699761511135427412470674956049830339853597781651194600438220344155963938161918982769701948225591677740278887954556908385747083189880046920136601622669763218335803012563519418713878940940435767344766934905596778402405470612033568448607659721356997729851714581535639774052467250336419499030039706332877626371349635195005606482815666555995571808066379404327351622506637181127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28160690835969261868860655565124876350132291010965030008947574320494758555726235739057614380963993988418635639841253616162655550650916692189965129692937504044918756510731740686344150038348881016381547547633038054949689790511191200384758791349685762964111433203568122784481484379043862394755728053584783096723296178250979625022378998672092664784562568872105924890944869005968897164330824470357432075316888129063138861274682190437029558111388605513589120615406309760931030235082385968183262928149828919487096193513124110918336094804445440043006092973149569868126991935456918397450757661821621276062000003049446152396533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21178638787922269593058003783354501262746839530566511582684911541514502000317048214309036585479045154339746864388807428724561154424177564294469024715695232841127325312879468327770621677050615631466549935922330510282298536720531551988572102163339349852971381354334859471614552671166430190025907100597151552643963088647455833617211953270120641228528696267509705078305715792055083439493949692034921119501618969052268730033630887361002598352353701521346234512856342601290755633340444626760787349255070838856496735907276164076704870013863519916773948254420944168299025132120534277958227747810902333000700971986730918688769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28140564556461854945837292502667226496795190080675075173009514729777290411958073730578624580284151732386129102267858416869169049384605627193012340455463411959556456318355472059437774916366667331709053894886222305430478472316554337893870740035906982632036050499020307211427415746418789298061047666882045362181224978150872345466081732362416836333180434809280495018103265313087009179184923894590447652556760512664080667385101526237440020869749731175101186710833451421408443491876352124884537274621103207827489703337386473189600879464271954542208731347398710432637319059754822164771428098871425174360772022441075447865907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25301238990182369584759503704988676250566958040628744280674460720134628530111376521177361846095896768948243589724867177017757705458852728824490831539705126666833989425202407781827627147644152572365953626003684448616506201483164764989450849155831315766607077121185085783768714441328914707331897232821850709518760518242617243229795111584776780273343605793631930353505596924568079135408982942418833797472899499712811431960175064054163797596171328998377757042545217711315318567714121289043677132121205965476634027648013083045511926270670260589388120524997934125666910157970105931873446922404155585703093518123650059885457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21497021806399046276835639872451279466049428791939013662690792467601373402159698110376654826829016892306959794461885355217052688936209470535902165097823209763833294998217887813249451852440387152222339501301418740519879935577218354560476385378090776191351970961696176173326087234423030821914801155792067149782357586951089858456731661696064063754871946213879061830766274070299533716490307687022390462970786629733553390187313554756518101863857253703128567915809881362023081008784982151210443038790560460690427829814817474662925785098468196513636009590957270002546206113399051158327151279172599942575445253473449225103529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22549919497048926576900877976040688775826556135700502042538528803147185429460381831085748315037577166895984896098600534197064745753519897126014356712471659691524027551016100164451019498315975057966750453497350615434701115141894552665850989084761664910337220385626134337889605151612626358374063966768769298749847847656603188115101902579792383710139903320611518514174295710239155339661086742704607811501308134398991541692525714309472401051418789076897742459642507210995085574540843704937576840752664963812720629072397814788017130340335171290327678087595978014650740611316341615684603289274922673659418113999456556355071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31179690182445838339428785618324362244300633130179197531169810745388487732707420119462787504489145753388663740791297843959095790685547813269175878975777041175680172803752057436636365885940294220315849086861364931577725153273865499922782255228019126551553870742021737361270527675931338397531437567795403615757387227975896770888960535281692130624553392075328488124817639238980748485250143274317002678465013663353846747090455872725381539371570961182879597714784320451982168312765517334909631474142300562677131993994870060932088405943253330269651598708359421700920416446063513920020153989876706461403504984865862444974731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25904122376772669004957082362663153557354524467168387046507375317611547329842538752856073105699467237714744838377911805907863399366821927886821833155774588805795611379154952383129891794774015976490724917812115431163293602144472028362069095809488673119374971377160853359285113195096471268056251842744246070160725413646665773253569840904066847626548862897176803506646307329518123531903116773180936315136430228691138658828546442294359495831585746111389752812584781452408149253128691791640841269676240151029654461667950431928349659569424231119694768940131132672908722536278427032088272596038042824468423473842685330327097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24278137940655235405064725633278846790636204443748331067104817019564703450067251169508446201905225966938255678131499340897511105721284729358385641297097597409208312970906022285357429930461825992326319395321317358138232688991657106441532801582090305169353279918542029027067746335155015352113851128221701250944589453688053362642562017993100549070378449138854088604912214154344961900355561753110625917804117945498602333332138283038143996977921974894271908945436298794680979455155171982216021251682187027425474197957492738572879379752815028486566124783297143868479781829009926217025281844187076502926494149151031344067173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22130052249515725138271060734743445555718462155048103921201576714404684730903024887877755415392998856207692350909506361908316523645263412387403450834741228277805797028869709916352612070518693287000529983500594402271728094774361971780705645223370268411689918725009675807127436591536341027836721217027063671081206850097598829849363431253893135048995069208285945210065407299608018103055695845294000842162593827951825306570062707794949549146255516577174884838767545728617513163154614780013402437568670882786576500060868449953657626632094400510125909331140396209923545736591780487770088950422313835526142421099971024466783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28236838597369514131118667073027313050707350727011458932000721169393955419093923521695707260335562963264466147311332126559054283648604669769329866121925778586566002308367273197857926326523914494007091123291208116117457236669080057840714583682063967198614476904762742479334962867820670881091136290599009333617641725750645641825661983601543109335315962937423275684642974161471043921039631172005136627400409771022862654601238808741568209230799064040234473717347864261811563242920893269597743424756487139757527936449054621311043517456511642769974896624172396062256693908551657815967601710425565927572645984745346533203627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21851993525394989680377752163667851785938413420392794554922685037818386715208764646033678071650403753330807899343268425096304655593374332936744926517011054301480867415178438380267799387593017035209111107652743213489077922108775033047821982407280462536258037466803518490765573707595581270781036990606667608658649203869845838130018229808333259472412524683789001317159457243242581454754480396117413789913276559568716112656625854823539711233160200214790971044191256147958264821390419992264910505283475134538037456444378018034146581313681726273356082632756058195409844170269358492776914265152377514494727077355780833716559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25286372662160650325277513512667619600780415606526850282459612410855159075698550175605119824722344283582290306216306940330513899696329795780139950109629431350036150384855878377427649676652390783466027001475613690143123914087750535050226159776602100739783741079595829780937017480781386517388198524502809513027527827491999003691478718099533237788133233429817171921554810378932889732761882836798274370599913454303297345900208791644915029697325481235580878653358488143765002700654853539158530984755880746984007468144206056908045142918573712964271978102700090691897618676995206316130307291978278034603544498055872977575197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25946272282929509533853874706890635669759327536665364615895317463881910118747127584459677419335000832876146725712941172933241874321725965042719029664194944096131102627164468364312844446263366366885865386696113640038899922415735656830926245185453479318684511696314747823526998243525944021006307346245247645577616260667523468751337089850888667887780829448824639981020095771377928130738857768347736546680761462235445392202864581763548848296041795105196036452856239188032935009655132945895893271166024229236989425449398401876813382077784695618975546974989021566989506713037042495186049081162975788220923953660898276577803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29762584133380882809902797737299990344695466385766256237697181972755053546919827151577200157529262727186075589136298877288160964285750858071895647740411377389442103337964832110760246767493857100885913857009508778496874361662550459462996613899981932498798187287871799267353788753203854269101811167336091989782904529900519565926638422148232554395121224327979857560739206452648450222765708662795677640294719576368477175967639990244508229562041369728059552277335264171180114746603734054057462085772969984932045882712258186687019123228919178491785943789296561094549521268271722509990464579059663566129655242146401295041491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27602886441475189161901309854110565526293346907835887011963296567079906302843820119624897181582541977852017665816661702215921094838577580127350659943178373933232371361543931412351666378233991752735389659179114156098974975910033549603316207015873170896223462868695292007588831202303770849184291593157973410546248364377568715204744847049302437004850747579774485855436143358181137087897917199334542229341844825010767134514010296893800971475003167027102031260362856312707679497218125177659214667596649875599966664035024306532241578343936277666160543173401003741485207905056662679245821255361420828722837588477771088248403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26096000168632577561562459635551488400379861713194356930320980002708072600491639385019553932543071769581049668656002964555996063993123556544382319593488909254295015781055988781430441663382942427700313965395122333412728382477087526096785975211356049881074581927841090271174999505355741867590425943499986746248688215811057926348911842444601305559245714833971426732971048610742067160449531653133987716661834723628150775748595574272445127495892518491100347462187304084823840126350435315170780508556321710548955643024247069466737740201824563142642659449095849411358108367456948694763402918512798665458847084970078552447467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22113519241254325021076301958899960901405913692145757959784587209284610124034880234184560842627037051316787483621786715092557138811089576188451851443891304317561053238483747590249709770965134268783547313915733602027351491971667447814779952833415716317566713146419641907614324737070987124702836234038214619193748139342410960102245214880335496247984730689855917498423827856016352580491483717054681963183699816272421153561473050816680500064997380394101669571876612058442327229864648301224693912372661309951046959168868588450334699292191285996702665161069573294920843387168629979918359967390058465231853223907788935255933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25027272205620444446652248325832080148235906451364095130496840473766224714927725238338094467354718184607081641879353564622785532642955239502143653356701147499984747608051548904188861350243584229995621225419358411139016447841817135051813915788837864037118938290976643118134418102680801792829796544638468599721967115093681229672516121132251347185470675642112782439758196188493865686217077033901978920431311404456489288691467200393525377010285791953932033345987578235004769259894985688427538005181522401281422121039731813754584925631593621997460332062180062222420122016977235442455858447774409575861425617940417051145477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23449137791004071605827845593515430778956210552126962741338511778731658028089992380444308972541069563576435140177872090163343175911253379028399989235394314166144834035191880924447017738547206147361962886885032312648097356564396898301889204636302488599683172473996604443378017398774420427495716062240286874234659016088707870144461358025387828882353820544913608031331984436389711360886476651541580749887658390306527612228400476991520366828148833581318358604003148420177687985656847710055309424732426116509785201214580899717873127977416210339756855820653454806380238427081730455204583755400652887907939249006466829602401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20950263827160080000846444904355689192758536856935582944066431974142824715968672280957060270848497395423644333738074564384629955827981158845337247217948295690913542208402164481710559258986456304232543813171715479826662671256430694007134550203081898640973335177002586211978699628977702073275991888545368712205156808147263862278528633478089046494789036052662812921484805341632759403391845583742544350096403752877833786895816307674668850256278980821819136926458491916916478472196866005028835243143083941038451241849906647164915551895603655719396804439626831873801948538324369464683294537241455890200492750651897712088851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21983507488128141445693391563432827359001236525561627124427686241399432557323273640796198203902989788448511556643461357545213443934591204014167649237348494578550875043849883458138748965783944411259920480229852851722835107394631685830509789253584651593388883558251264588717258517373236761101516052151666296835428438944584432944606336188640026261505762656205757478367245145058546044530435722074672237639245828118077488536659031048450130814743404031074198870570064137413209477603545178970541748051638597654216355957968410666977674730486445498101068716869725535182035549997807938431123724655252518786563531116405956687921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20557643914053749581181513860025208830741667639944741898469557132614548671965731728729728988343567564469838993629674095463513652275026257804764329087153761269192973202556522450503765864091871118774543981149824932483795935687040360706271904806878515504851432244110764826637058758850177429064213666880517709661577899434589735965612184537990737735012878226963203224361916786121731811758661664611928022318555828547409990872703601651344711095293994631224196554235208110506513977822091048106427173710863819901914522822135150017847714406678165925074290550035581149634494256413782986608943055250847038768188043444408911666261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24069725654591752026587259241342164516563765119988441125716022832122624181773694207681224183883396279980084107492000772297876831392163178624034584315635262229693419480589969262056508720315907309749905350340254344217237852648375835192914441684889543836598706099639563488368766082815671403523947375261876285020277048136006252590304148124323672851085543509297470302472770872518930572334955974823382713140959762716685463897185266022550456405518411525500515929151467119999298667514845909217562326408261359502204786194847666414770290758058781044596194609327185984111082545264395429827573749194527563730114702241998799721717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22064199107635461718024820193328490914651378123519186122984857089542468894456806572765580865998636076233525490422152471758768873859053258601017627568716206919492238729796197057217691142793780743127938151937474525768361323742464106838174771260874927096109764964444025772643399097508933633613350759464327476607029547881023925195469313037176789897088791348482853270623162804139441097210352282765736076959714828720826570709950002445450820267643790611185360132125359763260861083276733877808913592921539559973267578608488298294190080223033653931678278691160067007423540650612289802799913723576142789606310595722052344148769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20205616121920324424533750722504150825084383331788027698872906356800594379037233293827781776391902435939878743371333413734489746509926946718311522716011903962588794143182340555633560989044097146406833622067490713434244457326142473637738229676348924528689230725233526764650507365870467202900256740217291138606026000300350812710889175135227708359119942833846808141617251086829053565514358416870221269432806718727860610182635467318957947658429528690781803955450413722938832056106641938127113573936057553779849294844166342611128235619495287538030409501238817496808673470632122561471572402300963637897398632805924154113077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23661497052854760884710536031299070959633516149303016143169179795909024944265490430209695773230547937265637711652330857775940009882187467475558998168530753867947688581427149417442199128121732743540409554743815451550178053828862253625120063951490721175141686704889118141869497796024041131499905897243409872634888720385617669564560334356718625393289085386969770839953647617078476401003718525352620825370274152952135262609336836330939582967369922805493415189963958048833155609604191492658341291946628929348902792253015998222645801324116453377914538242625143754032933093503025665680938030297489528699116431441771756390599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30560194474362767192332658189416415984417482428011996563577758571144753243645549284492372649394446966965793397876030765229005606779057033660257002685883006933935370524296513388330653836702499136741361851346746506185944085250981744517149273916567048368821972365989660139119143496116007724281584674468077214455383313637465273272434503852081808184344317028826656607400369845723345727117615675706548270358099018969076948924843528217558248036564187413122593018652920641583503855451162347454222305126690847419784765577736636779647257542024253000242969484190088348344000383246901111511460454087466041035792136267335095781227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22206348690334505290184254662190650492956160321479636358645898579519027298020099420364117881087665704294834608746293433024438037786866648677007190696640491006886381368583167061755990136333449764881178671527097028900174930918575365648944057845437283711128143563183587548827524635825079004611441888201251745571407486945048294967642897821555738446472555974491548200197421638599198009543870612946812260539845649850554171822352610961098608962113741126419399863186928270578197962454291504794171994135920347514686556963175093205183737907708527444976300249838450305971394005269580358405624121974453610313957072521654171047119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21803833140214183286392914397223973625198989926743585108492074626387985125252728633542829389189965537306499949846706232142183860327019698587392943194819692517652687368978833588018099188725663326865962231755902183506782399593844784587455048764317239309932545753844620301923863046565133403680796890999469466288817408963097510780614908465349954506101435875133941717668623189880804241833317845134026885598177100712517764703345509965666178127837180540659428807562602417044602687429964399887721980797301472899516240981648831357945380558476095268168763860432439531703322182510730945330883998389922655083431891646298245834113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22312488508724637957099078557665274607415457657531800816769864666729060068974437883107345444470826816146565328120574013879359580343419732894912674399619333091404080526365917619044697598256450752271714991597252827531428998047951298149680243507608700763963449211591613008846164710920159475656708425096352923102735197035410832685540292853784464303656538386458310615196391068279937349028777584897523095917747355166296680710421919247299661190073978396643360528711148261902132880775371463651077996999234335414926418284367102888046258184777112979909195592906364550462968806461444780892221458315186991157234178699742679111833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23046819066186745806998745169887891734293965310058580952015412666756174988485032342183091582590154620539556344508337135266190878021888842898173428510096087737204152881164096244956888972938012986525380699583910352080012959515674211466604656951354518262529114793556058166283589406383789745866372402509342775223324903726406951808654180889915208950690297935376974193536869920043012176185391550208892710208570495757572301605350728024509633986430184388204749905708091922805689046666561447488336503080691086836741618842591967687404225827580912099296578919367225174938565371133037686450039822310640276550666121193875934848359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27087978644875434317646517482994171991668638986394793003252053844689339514860794384764492280812644747504131014905478709340356894256076093985166412898785967958984164655630918861115076843245899575024296917192114025407029195419511911362140494984148108026794836769785528850043660699239210029051621475493890790207087166679436508940871299205273744133170725562442849446846833589309255214673490471525886266162460153218786446271222148852122977992172521811813431800927299991393682980709521468043626871618085263319095543440319423383324054466287763068496990821947532985276020493096193737514390825480344371573469835217961233032371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27102026305028625323584074210505414666507260109676734683845140621185155329429674436953514061798872941940556417048575085077816107466593942818338410340676547579277807624106297674268813362691189639413469308786977091797763244139023150186197319566190264490310243707546347873028667630438346100544644309978589420984262776389648162897322712362645295495890923329050724181184714211397761804835723851718502677759101169116544150547395132427767212570767582168883280374815693865216069194692835227751818329501696591010292004418607795563888481507266001281068511794652178866017928276086201632603535039546584966667404704172884658642589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26960717403004325617538834204583957275030104432914405103840917234308736672488063835394562415606633740375529663342787462772713047279595159418235129954153609156057913503748816613769377750835922646611148344466994037890807442560138791352446985666197758251196521723838211216289078423465573798955381376022906219973673486828174066765224843236664457685220446769869329559537276804124761618176511809778414126741942584788456709658173929475457431859420811081705329967322900015081656076820013990483446266404835808246014072534762049956575977896227872451995427819319368978253267916998129276936764363372576875527765770865725126108711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28044021092497018589291537977278009327333693120867817074177916833784976625854344819819406743103241237459299100987508087270713845480181177209961484207453957427453231818776305675003066536345554688736359521135109110783279611416079758170254835247537735027795500409683956105757158168072109623153250221731141262422732490888632467971711445735717673681205500636355204748246623473540869114495250920197220568948048119256410404240102295476496517823759341604208007352697821895033095930563972248580325736421183561790130963735968017291605655367791898674544746102039883051662244065331910478647008463377944491562824887420821406859829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27251677785055545084131971275275544993895555184974749472777782405575160250156978649359299775937877318947018217897847784048905043214084212774374215177421344365981018200667066071761061519157419771742499115747411881639958357274609176805299906475172362787806734263111219194515309430526158261638174762127532370306884679037675190681576870244623212781582289996867114806344506270220711577564298028960272328716821478360257349642547683520776061433020391655224589824640924259297092776960099500407380598888538364655800656755128301480405478779261899614356979416879885101774863799351894700133557716182158434229063416742502719281683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18651858412081079523861279970540371171634361360521229293837766330243371778146009999926438452458054474002453614420260792466445854002574520363041083474395259267541397177032338444943738146064308703824771306513956569469736879021227458989153704589456985842080012201420237124846557181399900205349772462120498936870898926731910902073241137061784762855858468909021751778634794998876550984118990851585819714581475014365027130046230488230047735591079544949822089356914623403400907191784522585119287610365121083802388088609924387918227620527880248138038907079568956746705984045584569261211420598237551928266082027887661239350747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27645626839944224750125781048067385443514343565659424980332089511508853182247372405546776316798433970106449166566684201745540985366767231392165641905086181775607691765698222467537969031093796346386648433420436724617713909854856100101014850010565396000871822962781591431671192051939107210709815570829816708427967513748282579868335503027607360378899162297670588300887565929119222270262192660440330789125921586409261485952515049184381821466610766038749162673989805482131554292368589681914445492942933182679756495435219200335974327024670087621418811485326849107978653184681637995889835649667421642234838647157477902685631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22066512960762356859391352275047856070149854139761109750824204003695217192368429249126771500802792955665886201534069046163126171427305183689452928727696447717318377481962380631788570388104061661978651077438496207554450025190565547511651898385964396185074203517881516664698538621767786543808834179935520527252804319272696418219949119536478249967461657101326314699860997466683385749206096821237272993646442804840882073091245913477080427846946470689103801281278412119499402978428763960293608272018491139589762666244437119256285555093079336984758211454955302148683926139419078467108294682602653646889852500352002201846501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22337166409848278657788020828189368229221488106909594948384679603266192860347904838190676158711227349212710953832954092803495241171013045949961696965682019421169840594152549746182367932276928086304715190632463090296140886928516845403331448445800812000044830989782212500337490780623904021286779166412114408086753457784278565913638156837639691015477427729507379557839250844753277858150419743718923888455264083345808953208326766651484870908116748707088020320195089382471035772360485377926628876662507324065015662158129610916689885168505083941658793094814312735149613718299747562353244322880738702200801729000197800371327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28538962315340173934817607101318286678228058890296133560065860836798389020848833486600444198093597363191486330812709997720476243460448860131372263266485704977583031406243978033244942992186605181181234917425109675936565807050639781384010871492064531697257542852416493365238491598664847483664274348911318591354784294645348968391533188376684091372611281831032578561441667845571316991712185884792673362026010886717558103882296063089456933758247514430297084692833198789390774099688367772788246203725457140229551565560478146174242591786461086428141085248717069785963198821633879042127601632027574636321042784967472169205447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30489790431722383886007748831309125712099606081188104345645469012522755716922618735189223857632464460923242986788942356099928285901493802320176705562926051963167465369109549282963420983306086614209168390295697168361105165537872816280592607172946029280805022030461988592350664462823713429500106347689877082607122380108120164998330313539466668709139006639777206581609482722761542597788753262947860764013465006787215093878355109117186051469498144082845120713783659858570066739941608273836955645418798070673392573428215500791680096129426896398285824987594029751190690960892482577901538226004762616715301427812070358608979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21777607334809292102939998934500671473723916958155028170242889397506592610653145148984016160617070097870283333209691085284469386531827540775887397899886362129825419366507219099723786168164197207017600800874064993876520386384949210764052020239733866395712235428017637516598008349932934314253211468906417443149083532728799378960414025659083026953132469794006117362575558604008237219637228591004847653420702831873569999149649492186772545035773155457715098339716258849291490590505749639465928578474136184989694338418600910141679920306210938909921974936850837357582649500742203809845753222236127709787181357615010325451741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27683912995684073653216081810760927518811633357404187629744052219596760822833472977692199411576354937442379154768756364654017929185381596763062974647201717044058004981258090595145212930476986273414342323077751733016033641085661474704001358138321233178543246924474989499588557684161414849111005061210044044553916034575104603775963561258085724382901035244191340265591772154299519417041473980381584366952858953081802492729505518786129838722177960007373505861099742031274782956565041763298968216474235846048695029411630344314524156078502693279501235305259125369496482784678481869650831557151550735229162251730914058074613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26848646028048106413387040042765331702518384495518924656103756729608613182236069745697262493566368484607536763629635553342965157865156388963736475126452700972095731920177998370558823246804028579890641171257558911052862893427365943831381012749991098428454905774113057414477287098209922795685568805950032696403780499563898346410748513632645152816118792856466051750379145468479303065883682355197322664709433873665138491254171136260240203011170799967916804794190976785920239161565691873553270631049288485323437416920746703145410119323093098388406628702399690390465039892554810448997408432659028476493061172226045077876611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23257612749465652041263271864227893682384697699793837346035025033252793436415392306500048437304083330576763119015140826515523525390576256526447270616237337305485791347243155287308481590042306328665698214460457554250075329634733947927840051967630085393647155891948944859463404724381755241085230896611797933851681673176583750688494541235497035259335561776790180241720334689194062349769992318604765989461427699624398738190176872914964476648587225656675210716820671088239541950792980083253641188989564807519586634209385897861825563340532990989047860147659747699923150459963847789903098478140626511836231846234075084053983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26962178200042529331999326540190093682414663465994567045413088238096264863729737587957239579351558790042627646082645301057975678572650675972012433757100462189294182165041547103865618440910634200161271425892295090969161405955301737109247188423373396605314144049966094339901128144545591426963788551111444952171030621985121019765692119956876384584393379529808205965130060219299815011244225973579702414372906510264690535780736084023357321202335090368102948504297357531818432587505068960102974871429164954633976484468283013854393348075993068403287761799069806987305355634051060797936747153851320266433517161298990340656029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25309266318254831704960116692594968990935120970072783380687740404679429811100942346583852117123392954313612768397742414285355781109639829925985981934595118832142381390065271592509256474201221544060629161328803192535455609884700001910184960698713674339376001067089147946722102094345015056081319908594798622261834667467507766972671566473893546233656433427816416464544822336812769216596273279394756084503977101710635413374577259145362564548959261819690364622945046043630105875102194808554286368657942426596855837583332208275437171435661459902609407839709803639374595384663505892678895771436348927758756241733958517359203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22909823152424319663141201439456609162400190303203642012909221325609696718105196970773267000694045979824607332826077888294854796966178157140489216667499920262294470259647682315059917672949838104802570624282268759658813208791512854734388726676996559203429538374738096011059548527555643267448178750285807472822605333761333633613995232744671008453236254398610669322433658631380188245806332058348191275530213013549773768368819348954218357144755777050068105830549461915288577501389386939695116262834392093777710105395546655352909187965591050470381968047532680260177093511071635215480305612316972804776777376674870004749253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24057323934025445581567794229843922118117910370402251269291491921451198492592788337632881707679933220573622229411051726746002007858924533124172315999074665850866999592210531056300308916416057966098207993490086867913558689400093552418908636282522346901040733580904660975099434201926356648429083228428015097964250189705829673820891037158295232545458100489927905049367017653622889664625034088864923462932687566476400494786639666554496952963697600344323574660413320922988092087941838095602431567445410968880890987429112996040535511986358318725772847552559688845849822960377083075666828601695777453634398199099739620787759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25331793257155735253066252719990896241868660178037906857582361076094255045416343598745369882660166069604644720677548920100080280976181729493596793463673564692950229400976041852162783378453158324014878015595821475384393346889951548510118241690244635768723221012659711656466618435958297398115362007792946004076493029534720854931958715417768896014059923020067253521008194362115886988347049647765952585340116150708504930818162006459959114664296206791726418819296984504286749605235610399909625869198809184830340472258939585495870045302770411347266023404300858725052790083291281922463917723974127984976669963276638680364833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24847318452138671700693602964039040601655172139663380411710355505006955517939757382180156883398513301607835635724608821758784165480550052821712708787769661518397207418667446753338021322641458452882435308288456962486825375432797933851127348126554331203230332444985779653439325899208483592137685968635059646228467552350042898000739997819980697624990680632843267808285151423679194192804683387778204732184514217918037123636515460150958499668594836884173416647162850807040887480810607108722813731106088845582199875139135371407442610613104431224068011335721728767383537107959898359862874894629838824210369413680544928890609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22056289742157313167685703521746373429235103799416664836103263575047347113218194601199414241971167128797842870780260285302096232971551316204607348710076651877832462235179789916336965197605670490172085350470868723947234463785844566589461304437230144520294893542125460253721197469402779401727608119578724605728014269539852029372414346415120973806460143540296317836218116816492012879406531684991516523313399484694548796818683660643367672995005402873514170247409760448150110216755969896491672243082784958608934657804822410401013606704448941724160299053278518516462072042216241887404727253892376490421850303760587810496161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20821511977736898379207026993548915796550616430868949239350327114032118501261651091649453831854590892411801228466941985205230598352890675559788193513224188750245631194307184844696000211593493042482026962421358194913264806812381504904632912570720994180896088923698309232199327556816667911166242994130706476285079803882786532705207065449037477238643672190962514312842404444145572245440644334008897534080130123022233396074343785588109782618557568507529477489303415805248067427220564994312594704400989027434219848714139921575313423582553039114678176744192569138751506193891096464562278862992557497699537706636233972136941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27514481317461386265306563568276279397980986781636950519216286958195258683073114903937929615298673155387444105671039643954972041282902034270712159762648514452032083826267850868788629898925473346774608021770715323991354743716757386464424987289989310354514623664446466077301084865977075620582785229971939101575489649457985743753324182682160995373689357237820973959586174869406134355578273352834495263774763402824959224871854622887403718940351921880856075907573489218126027040120853561145960975273684950183228268564047769190136678711678432782014268505409753838914703499866868819142886774342827325746497588622041986043379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26647562671317192951492121657092079652265621137028967441879592836102286222384763423856953953408945678489400873776577223963744372577220953398473102949828960090314469534145576028582719646209737010984625557994113176257278480824836862011921330799941887546799925774261541376482876086765447426052903210115395596856906323429354187733964289683033235741900620946203843055386390074495807894823043780552590140856928922625018092480021896842889069182109201642514838550458043377247359161473927796386623701465131943093870244084909236907094896065406831903431200493142817878281706562442946055569860368146121160551447565488975095564877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26784089950397682286314514413259008693595348251882807994150409454432762407252907862925575454193129353773257331611042216027806671504854448219115419408901701613897594398529055436404968986644309744157202012527846292472796837957441359762076302132357285051891876795871822558398614785805769367801965136971363460900540133444421777486701659935474143918858719907412058081630496357063456892413539030926541789240027431088860084760965493388218728547335519957292648718195882126726610548473413632651591186242192927942692288752382860664908661244929142827398513844552241169535427546923180296871005801502821586618757080558118777970641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25092099267143777852919262808554051906479959863540054806431192186444874905847816053499304272901890212689369821184860238856592300120682675858177271969833675461335176697456573076256056301212857988264127106304666196998274141681391832996884262019975180350659163440664984522592276936366188129579224076428848405824025507115555452467378765406260718222867825564950473993242728355368186398305080920539612263191043359555290836155259884815534145280231767368617523856592774923071788541664320800179664619877337522139757194668785074826836302714076386809528083259028777923993283297423723198239512199867581203440560079466174237736937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22639567612168088154356074449287595599868135423604248651155025895460715173885023420902599923389067948102376033278498818568881487696984080951764373704009216046313291290841688641429128564739649521493186027934415148065750045278655036241903262459581014651547674569000230795278976997774661929681632293818648225972532924635257664237321199606202501968849522958978007849020844145655371012253032754071731774534514154019215390591197889605581931280180834500287650152417892105272371964775564576621132866216338171632212682415890683418395939938104378750377995048719714962421932668509746074446013552279756821000462000572600912772201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28115007853674089590955072391494402433949181654694176712724305115074365568115655697380509151356305874152796615080940436048884411660208191487759887596253836950548238237015679152357865949020816037841688161252170955314719165073172081928526046425512427971052597679468607994724252414158662705676968378324379499719234351594776215155390597442276275932557302986826208448531650601637235147334422195182767497200975796256702025349781433408509145920084196958002846296336196790292431401055242310618571611554837940119546466202967160922529777353472726612265614417699323021676532275893244481218982717024905700496607800884779044557101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28110774754820190231831411977074447852421847653197676745638122323683082482978462007948727279883184728923091232413085603318773430172226998412703644554790754813865065235012416316733521879998541689608257473548744706751934146313537834244606878242008392515618885910001314776933118927324998510787304301233195589105909691553913001086879874381642192320874849840853692505825218231674457006562262533226856509631982643566288200410478168032083357166676881458552041116215552283913646195660802624535507835366234384178490519174460532963341759962435582348351836613139200787712695397508866822059362129323775543797559964292096403526671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21802247366614185752039045773893035294167207793012102808757711567626652770922583689295337331888692740410103072487535517575474649652014470462924682920719546276503713457882778282279214500153021935154168348881335137748035152682431091759401461450167555120920496011658565947747898910969805934544679535866194466632830794278315689067144971097420648384240916240812168955143754700483166484353263700639055549789229405057710602761895333556020812461168572201579098010136708329640139225913303082165815598235367388778518838448310443112505464384397332412373512505229712348494051759606026240623983916653903453067707101616629763408697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26386037786374353141755254566691374210897059324024884326663228281345494434197861043098410112359464533460662049171575607856607078666265011987124131507662072262627074368990778808666953233908985514587390093169056126624333589217907514844989990753380323308223665570155361009228029240732453491133238000764980067552885478513314986527635622079274213610564614719265541305013309624745646502913630373106635647597160677028574947320622597303192582904801768720051640302206420494314733669342717269258575505627500345424133793042300857018171227338622200846671158325781663885227223860683668735718640924887821413691851944443137824131661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29039964119593864613172454585333873943778840770434951987314237689537830510148506782653170703344177628931381445842281838778533041720625900927636134561487829512253949119832670889096552370199699852182790216681599202857166274252596220855883261028415044018520822407960172191306271050587928141964997736392713669143437879121660386102178752768198570373765573376433071318209566954385156597897535988134299388447834171283113032846043659114896863918102968192372926275448300444545772828958895000281108401748595633751673261653548838462745499554767865374299606341762313930779412376280044345076822867788476560534787692162849202652527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25142423123330047096867611739517036429100487851467624184334811111865596709612532572823139633085825662255208108234081876588459088885934241945524285947096098778030798655416727523385071555704296178695139917113865039272693136351578567997289599056616167586754175434201069119788138923515206509002965246357665670041021924340629954188792506573909063208233883114367502170151937707908567566888694954838633394711697582512892488100248414446724678809219283813191201664516242956342738639247064472014621567047678600590184717216158924366481772752901981445474194631130882792914255287891736013841495445944503417660040423536622248802409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22416364240593002822172576199720446646224997870280563562832344883580910461366834158249063586812822091352378529999683328132791566786665708481364572086983580441656895521016989974519822926804973762784031295498850783732342710436150514079966010465861638177686425258443979815055236046258798062280334509290269138706908025672988357561423824319881178825956900087919219775281267102838127059460613803788683581954660577760677047208558256107090831428508009879178294471634429476378733453130256258652770117219158050620854670059950058425163044912112374125056981221186114750843863650284475727859831629075750188802142851860298564468533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25278683861474104551211977096491204362278194970151378093932786428980374762018389735211626708141971060352424521001514367791339247933463744512344025056664723729374792364213412619407616115217433494297850500753026270074839707178321362845339886115648571762820026243944966909542996748109453949716072846903918944440241632844130213432731000274916823727581170452265920281188159733463895275429710910632858770675035302378019564836108744376486328333133970565005964330651591884924765332112244567416306056509772578385516706587200990448569080643307136984441574125695218638611473367718688108223237622803165015362219283977789101645123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25925650018135197224445333316267160887639669557263409497791837222211230978294876582929156606171523081979869588004984904611561354067416676025732565365373223677772361352021062354458623787074583368443331893264937412032959591078044589773475536011861970487946134690697941270633312578782338908582125068453087639290124436083440438778052466756880747474814933612228101124605181536713212516565653695057598560306183009173999419035283940364337511948295407572190260726381340462296737715515188610863067547763228336117837816107596025566368131454689620642837835199571843628391261581401865971471222924866232426042500913575359459525683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23128846089993458236309215370649627868555397226058390686713351910257498094832672490931278527505315999791854672869036502728403262667915727713603623822848058728035516646983117315683973944795286992935507614992491832895448689258846143146634581593756154642029216121571303988398376214935015251538208269857899725452857918656765149200388929725043802731316671171220721322902071709481943320794036633914242409495962183105099278705612528516721800800629376912546094328688847130199352047767775415647533720880276288350019409151183544872995995089980266342930292256313414451251839756178767950627523213462586817487646370388023714332307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25129187062386069214099048578075451878199820669606507278592663592903439744672038756206168974663954256012670544432402448495728415289039865160921622784545458983395162743089146914226594863792546365068776592630050726013897696727669363441187505730840583808378996011149420947618654023775370126224995325180272805920454723503396648262264665039902956706501010506110351393162088943276014481585944605946591042330073112277538280814447174321465687655850265293315485062876280230281810866021427854942475966427365716447405124414790940474520234263769221734692322661231790950847763500243868764006393012339396523410561600328848923131657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30417644370696037940339570586830045384328702785846594784342139764470308503323541804377238553061221430918318159609863667736927645004772162346190709732864957303027098430330751998737264513640978137281256127530786383174895117076758810676618782574777578572219599303306643629016658556125929263371817079225698111362450728828064057494495504618344877316494621213647206736629447027821630005944922579687611011456974713900886577110725032012511456521221579412001740551008057521104066454755417238914707550927678821359275637161071657041827959463288212042121092259485031598147152439149021023842932763307740413158199688990039159902921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20062070135041486768356491832228211756279766272921374442862619637187170278712507074313772245455327325061550188887437858761736948790222938809865775186475850214471060115351914063982830019417864349242220378198495607525182002347335792656020704225656279860754026457840902476929936230262550920156706977391424709680581740019728114272906039010032812391755262430740711743686720801383544313419771519771199304440789922714582894168849664345502147359195109302247025658340021379599729276941590255600792804174239490265663371461096801091439472973590709499604621476000250869800942478780704758397606040696707609624767276991817802128497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20834945498838114758467464846613670324995167569253377973084862192754185771500079404772529693507052874355349489769505277775094796541118730288974584819639493894501110273845108649653585327903533097828852673947272260456550955067587407621250747748520437239844123102729052696172841326941108038856832227284359275647209093665017522795658998281168913882757279781673776761428444430579072292807771761305087745028863011630625228792528456619734093261434798101773299392225187204706009225456464551353052596882037837916207957239738274039348814136009509222703935057847639010205711589111061107422331664977097283425019819630073915589451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23394531427207352522327571676476617431992977437251845712473802709837785717161929652112568055495684974613156657419304396496920652615933669524132566430101504528542697851299387835608983570342459881995676687278670735303324582327736424196517485279176600392951762109399044303091472520564556308269442313629960029192617447654242626553230289234213572239636173672008464109139511851711087836131392476535238514716030571469615429215456368033429387567889924810740445901159043191408437389883414581297531379256045722953862348435168611548788064644093800997527028819779059246358656694909459600577972977821749783315012843573429941666413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23343454777682935246250316175904117507702466705440719166899269448208890863621761912130179393053619542298630468997978510229560480128984556028650624155610222426563037841836884224245694085168953570451591939133315328722722611553930639932284767225986358714930807851747437532652729758378828766658971701354877699589596196870984449885103728955886469407420954191152019184038513806319463273049846505487729722913535047107947467823786790635561946736337455745138108755527618805847282428728112288705550578296178802817841847890016020863142065606857228492525385013362380076181820362721573896781001070067382388195677331977263814084703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23117719285800194234928675661980972904367363295549861257539352933568410801495788072357335758957404210610574764183485740359242294011607071599742529357242779445928172893617118215249525623167009970250393829456309587529473059803863347636840081114716878045366046798199615086679129390528407699347998200603258253149158254914461278268858920795900963801435253816592388299486021665853867500327148974781438026484380373885135737617658817511569254710170392228259974535357327198601956574143593523295675676169362814905561304754613864056385847783883945146614941407534198589440865617380829151827990374626867733270111519889554613833329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27261644580292756949007029770764609278078374073729889349890132306885193086760699248265802935399798762687168355971327624023816962215256331822090739298351315098776240784127061338980138190958505520717831963918298198842659541241677555668524637394018200006178883653790303335932784558586455000572316074473118314378067242871219455205496068865549599360830671163944927212354962464026072238026292611108136377732972282500717406150805552373611921006369327415128401232823930400583083787864133712945441897156537031575241889048234173950147860698640660189055285087953424615694716312896855515474683099752753303651940514472914568367121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23468199684000513920355872120351361529508291937854688183255866599119477096634852281498544971891160513371583606591113581367737537565454332587103316767650096782547855497213749329941516134427117258984436509858360059173770092631257249698954893910148730987162840587646283991252439650597990789810487149348666079553939409585843496903848406339860429827568784264977588645764817232932320582149601180312872625256232031585492337297541227307013650477737697665104658834614781673421943321396938881161099313255474016061358139904339673900676235749825265438252127942973378976945534931344531249608745661637200308527875022465305810121687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23255051740986969226249431882170259056858054611546366691163554174361995856609594583687686051220557215597487983825691965382470314062766371462371552524643543397316480738400682411374090746143964242880376591928967599933727986028360532198346655144249032874511142070016775491540767918807653405543463936304965441553584659121263321172660306882974842558123006958227618374772881635426456376414380523587945056304786186853766131792605843945594912408273136031911994888629603652747644520734070257509922584173456236692137752189467372399583663160003296106736940680200446894714620180669390124416550799932861431375195659590095312864121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28355946791868260676954223275125820982396031723089905529637243603852995110407762616149080347481365454698453722366269770796279310398840015907886735466297427034184546208283425155071317141921045426944410136482814549481207674293633575962853515510441242163382595970944773348471343747242814351801861022186581775785283783289465646952447722036576676578192362161536076447188004912022322698045155529869175724792594748647204475353810392393345312980826152162337554015710720145243729997095471918519303551209087258105442672789854661839354630517409673156161632502202759575196927133357631243807993342456799422496773979968723060976617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27861752528752768216143153231962204484049823257477022381424376805436757288070722259866200817268937263829829727867893524291132033198291395674012789249280600600355962253973904125254316908594362555636502267602601065934334558222637711563195678649330382910675782114210512247531040547195101412767883429713870070514084014521601686461270766744170059698518731579139026837118554645112237325173807533731837999299808345145816495962461733021899549344554257802791176840895424800647005528827455639514360829971745285719165206954708477828013562204489176234280646745435005381422655816855607482607375953127647663853393426665559540150247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22262628416953617828030067705901008280149697635067661561269472515236459625191436955830274664480380162532365241708034947837757727891106086517698269099934036932780369620150938332201379748868193815706332209176494633561259364420690822316482828225284760180972591640515514765458425269094555849929713980971802008262344297040637109558616331227414609203658250577256217390821072346805333417900289188555353409861622530094334878112389789068277890910217973475656352163413015215142711739858513715934519888166860494474722569871199631699239553792251758015530723685738188530582251272040094556499233399087977353556691959140689279071779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24558533866638797738479045333413821054662943528765900871167034149380267541750667971040980126761597653309797905633090341189585457365412048148475065837523366032770677232025257355566283897380423839215754550918265859489940714649703617300505036129564697202034915532630162849019992714577718235334857775476194422236202920092883264703122497687547927842905023590444546217662981762640095195732112572095395946730095668796059230923354272862448395676319000270542917873632010718098560609086311419708601418500758761939872737452091715724201516611678762769063596683486820938967526147704435309450814695284617209795732538601128176862571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30279546142207797254832538291563956549871171834499004648055861913789342479927907288666362389864583739087905924064936954642462395433449584474067910451807874839433351335254824505154117817494965107469017822900229596579184201299235993156544274461368675549934778063373128522734300427002266164710909346152234428571355837351957820947099509799546490708748361522828315650578849947950448141737019393247455083389995339104947247144349169960182692809295430308210256580683183493420768442603500381670180269053028050478312985411000452695853823817246258063611100822512630314540572856754527257439061501912975153233060272278388654268409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23614171926264805542220588160961833551386584997017381342600593723287401261764311187125478176501791621347348648753113939479387959725894713249704672483383450031871425410455448611155017157291844363047841102735293299460374735663569102246175039243890202918633773246245483963824021840040231049086205059486284014667535187371075006652509671098898669666696455485632364806268688977051965704831743578221307885509910659888203569730120585616360808557767382608966416549673716072999873035259483935856045324315286548785056601114490176029185769639093753390313223381728257080453353447485222679561223388430317908666511949225578321971899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27179498502768618389505592434727197061689661494043484851282013583430704214409357732087241709945626226065183743818168291921763427341530993081578052608242994666446797319496868340870501282267552482746834855682384493612078989222067722542430506899869042113952357343127875671663665252663855686108610615376199891361271774350349330356054965903943255533601015208461882016052383104318719465158026692380156915318586785390431969317251379185377484817378852242689369960011155380956749884118474392798192052358284438418212209138112756981640485093810031731529166883065161258813191616758151562905448048111639959538547596170635329726617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29597058013172687804917501098455084108214086154694428479529143482590923414761504283249464312797822484423700527754437027596044303653199128287700464881766706214219023155953859208015227123210216273133674126622312766106606657220699441759114693798465737959606812062168663572392916646546699828531486551016100197186437773459488238460934425531166190963537510716004411021538195438330495974172107758129761177684587735710735017559924176324959906809100080053368401332221979115095386535479075787762750124768785988625115375256157309928627268750640748506361546908264931140972757729082128439022610280261817305578399377009056358470191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26214982622189038631482964559518985246327251693368388277355016807831683254407661387512356719464404903607335513325630664237358315528939709276539801820031045793420632426767087449198971259297290150602782396466924827807501414815766485324438088953111781239484471412496479041799235302518981570331296272234911165841762772276773750550540489609040789444467856121861381320331113169010642751842188014510540299004421863045973875116289840838639634077836509458884713201319130802430046353821041322564280177369396809963587074852315694133854772538833512049422488247691676328757444982064513742294568978848998635116163819563923071625629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22142433128578190445857159396659975172186733386525804584179814463578950234068707172944381991554106471408283029857688844006134692416029393268062047803641558504727850249201967603553746836893079200139242183304946550168576827827582009416683062256448082317530011370675784193130703711518769275078001912649236074331812735161968833170985293243391312892336756878078153563622142467575138549376591723538128784420777462858033069450496218627963312480028109911852108703759525396915023896945089799690729910825639895845121406012561847470762389128709892198054560796794973069993957529283676978734177313410869652626333807869026378409103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24721603914222301618098696540395368193767883607707946906105523687319265740368973438285167292405934140630234167168269785941715097652308969740331828014871667267458559470714929569198088356331026373174764582163217563692331296610056010412624561433206698290860207705498024045228238621245406333257902641436220854251551724156766588910083345714978784764428991516682905421761051287666986296687391938849644664441629895818317587554451477429853374089911045079534096431534243201442722704173583787453887269874304759216820565529506679995184474969981837920547821528113040282140375230938762223206341192754093900571292560737214878712787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18667409666493419602009760621187841956213315610975193933659883297641958452242481352183289813472832370613644178472534900707405033669186173123600234832013177790148149707230302526380914548591780531185458574664518456979825223103541494147498171793144413693437066744601647919999328729137440906219167052229105011563423805590109883680275994836200516315868236518986871841412131959763210803218067577703409163058431837204360102233701697254125491294577709594973598720377538776993374044473707040192595981869785220054951205546383944432891941808023694373615413094253598949071749881035292361629025998978118009800702299428103056989777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27439152591778764750518663482123818139198878333682441647168494981431698353245102708727271839622225086055498664157666895142424424125701220791050138324055201524606929751872912108461889976505040725295518833050571880714774508135473157816388157873688544052074175879547390365366363471800300276500359794155133202650373612759088570309930603974009551061871350756571677018467259151494486856214820059443254948357943137442884603020887488421681881173462268322479233805996701634528508141261960340969303977362419110717570119876452328135591244140517414879330491290513683269917028052754205832793641509819800671640481376637946682299421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29338739779269012259414900346656642554963406129113645333965296104858879720684847127305448041276264804076053688248305120399234071950700235263129069505228987367275205644541963991839268869555438711546922883922820553368566834280399494409464745574935889605530175888909777370182710533281794652732671294636592568492181799312673787828520930467720827738081173624093435239249380841590371756272680996945384552732878569630307597254372170636624909121212529442814188570599684104432141461482431052470890206914302250072117101144481940987823729266038943987526394807050047137001888116122005658758131434480052194701398161449825056536779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20899033736434434503557277365728831496771057663910411117545641920905120970788216372235641352763731493596891407153788615399136042946986741489292232515906797404018440427963226591702737272362669850261897646375186165750730165943241070337377927843589626878525914863948549424731970213887837780371539939360713820545775947606016277577060556520533410087083403717194944749376176187447920198688029409535196285632638913017543170741576156534185566458622840405957250929964985780321452277413226220228199849400852014809911836118626695154021636601647877854908918082482496062945965617717214000106574658961606764677378680475797447838091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25298132768839366527883987810096205379651586600630974185022522654614062967658824953272425029698724230627489225601019870284805068195239392426787952080789610948170166523340871906112442160795949832420845721683270091776936454010748947930653384524349053641452072471618714847699980469374183233378382917453306164602429023515056251313318856298612308538503088577129560887751097693146417304796537174353873217579526342824305956156109754453148054247105775754758110790718241765177535220971868147757632828903120011664191467416977462982696699766702721744279078858999406849233128981244404254263813737421648506569996908170580452499037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28358506247740313982273834362157482105129861013919668116630309295664680162067682346838469154473613493997009761719056246968307289224843297471448584504335196428755466470388891979884722161645737233574142184965674240703052981692595704013847744994699774862092886162565376413081425281181033652921414267135295305801325264101117748428914761825193598546455101908400443618308714747243107835971239685857259722646385541759960993083763269153447838193068643053214395042529208648564485315837818588175942404971238316622461406613773369871704048969844388611846653841441429295695859406782698691462931905356007694850993654224358505190929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27537026916709498118855183351585442800578621006523852205727804912478813346524445271200989752414077990686526484893584699357629164344507839417230339474146013457007311759597447669978354245492100704061411155992398239645094773615616259408442223988414424327623962453795351549068664458533858466792147199882811448177869496577481784257952832485875275523054824663304091853699634475056402792905036509240218558758682036490632587232363567904133116705763775381757373299993820844805453256452811493008576509728144624393022154279483315940140078339112272514831029584441223317410315479808642879414698814365489130690239338572156945330003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26614804822304305387167687532150049663747748079217349835048385856402046187185598451553977292153663681219807229671582959330383709504587255086293919370621621505827297590809631032867690586759935693034260406799327048230234745302022588246621310488338047978540362592504583614322130501906074858373658326313578814474066867208175757487527189776539255568066538205111207590272611581062813787419621672960948526956940051132985547006621026168380976359132913417626385269590107166313927284305382684456130421445648096928559701458292741532589776629896131781509765797855531731287819692600990787916259256466337248674210261913897476701859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25397553359039183001299501068023298232122182186643396920711976003281087267049441127400297963044860058161098237744558465568769377797611735209837477514150379342295856837700212505864991351119295017337153372373931918343841404502149754264284271463358111189404933488357384929164127681892851444127095055917043345562913689967952692380915233682747475402486805512976406749891303086406417567077524279096735856724318115329985417842265762139272052237506251471592232326699950071913369916162865780054910539048627198644296011266528651829944530511469113848293223482433709213267326814898763280255897255404151908329717780811279544881533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26721102652380984410775640675745248306604460783495855404887892339321615261056946509509242208495466067052545216087082852869349426974948162252706385648641524950840983036866054813634459924653117832905920391421183978820967053290081328811416850691217590166307576779141848811774669976894334841781070889116367303656474709121832934738891560962502440073808036248867881953926379544941088529889827558975655586966262305894569468929375138562251143427656272418167280808964736154958906515353437613381483005678812357243784322322475180570611137517194372150763906227694610370437971028668939115807655885934585010970220725029029001512179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24410551265035987975913618372467218701651484432747335088983801883890142940226426321627903290519971445796923225410507956152336610633490952620697593514627553079933722213628659437285120899936553876706021896195051251848424668127494425659916192038681244168392401758101237023768484912536739629505776148317535405885493374916883594769423475218777828548794940338653061247404009160708611788051554088205731062023749663235176423318306728669114435351734377497098983602667747852640927210867000440650415848112511209531096256865103987068236647895099706424422952975487268608621196195368773527840548769784661344251616864691615939626167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29975807571439685445131643511847625877716348769047067182961464761206685741522632001077312129132958802542962547061533926102726637895485371030792285046122814714015781602926004287547022705037335439219660250902823236244236074468527038973969158694682501761857723858410552216297804848879135595106289031811917041345448205421427828728631130074037707389696991870567589135075531959642451979491744997945239952204807852834635579105323584207743429518925838183457097541600026362304405865562793239649836067591822744468681744396531678083838065518137834054956278248650934791964425009541462186550576190807545996148969104444311072484209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20732243747547565676675914542764763677015423769521674615808488615492092578277943608427399885676113540512260813037014423262361047472933829530359009900930514600422552486337076817190082919996438640755493396663237138602934919149313898315415882529823539125641997661068190045722072830746235221346386109603802080598542937904102528493624933503810475209572836083291528505675353297671060114268339138448772507631015342104596044262416140109459209172379065114419738979335063638570384185513803784138693235136777377367778676125497078923835241751766011682394188789599226662014817692055338817671731644343874125804864277764470457472023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22452554494559960268653853583162722918469558739535192268681167601961696606224978019135223453322669396271589308064840753346791691265749804762936773574486841856386936942557778317397091653796297097304640601804069181161807095350832319066586212716362124047561479336554248835893915597660911139287725222919312810103492842557795299014896878700817364041445557611025683275879505165823816737524482405989582362223058446017652727247469649864623310126743806396832923070326992872438975012711342586275000247099852620952657102142271080329300977825464166697865442681427585018090660662418700760630132755235023548832065941016951058963417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22414782425628404369726679537791224625475169843473258015593062525290098743673575887880738850995513428401150238731512020245938369398545856705677721714900419586661603692213131304583748092474580523630991973219078366284959477008626971022068364706272525697677597128741728215370748820735032015027579385812089488611448103369661109910829081457305999831555549446979258335182610589229857132597394414870978926982301404956332747715315258016810251879203411718295697633948440630127379843450906061507101090663266828811034289320444253156241745153255522701175068628897455022655809161712533760749911616630856771953445153655484055485299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23877685258624087404719619086145651197508389795650795458988194672141654400307709883866811532080426835670460660828553115378088879552788785670110159605055386138487323975372713792437857636848655533806344900072348521036959024658524399307423855083949928871743009282909261985720527837456048746856134104956012006518562065112679112834161082515344763894294168970527908340083439924825120566280106234397121304016597812352586774750312408472739560612873647979700970320455496911778418354258085657909939077815656482342888178577011831641357704944869909442882567802691957754606551418330044290065895843916381104162463784023742647860427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24470968927885290697062706324594512922626524630433767387300273444727115055709532517112048070055632607403555993789424701500065203952136240016892673853402275909817475724507334061992369436084618820176750844004484873288279741469645202433697350562587084172234787965160351004459475506445735025348389230278295511538563402164382206735603680968521399646016488911189700944317050019324282095248257393531819546746994093676544729177884490060976100978391595995965295065314492012224263150592333257022256706026072361276758004781025001840072208879558071347113291263852463039500933978181905889619899503402339220381745174714422043886843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21476113287306698202443216127223346067977074959777595632437720684599098183472451550518355689178597152331187832552658185161482528649569593746152669428313293669759964173984984509908418698003135549861154358033158444339046998908367021800938725944289732279335705268722740920874698102656123618250703160555140209432914941514043259482830322144176952622856956824167474452670284088719669125393732208772884819771620142573202401327296774068251477842984139880360014861580178199232025876732285022965980748901232368058653110912940137941258046555539456875718702172440890660999876576545591989558657261747817913880208045004430528365911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28196717340223469372633927599456471283766040657923730288107300110437233336249749910923331556959959249474908081156137353475459146754187433650157825952284984369761649703622310962876056341285195563449716599523966309833151735994729514287875818239024583025820485447642656926164122249200404174470613216396944638631872902485527005852920608270351470673651469414284127714133160926221553916428137211277807578703898632604323970584396105542902210527146632314758570473175878714488724576637864879648088612199728164288838948506142293924041358171616912372593922024612464483223556818276511865718259971608106935695540085138900719886293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26193850242928136267250462951421160273661049529508835318825112499534487041502725013543646865582967832103601369859538204175036436743412939880287394564415492108558661468743065924925246290936060408399989886598880100143257571278024556679653507735890428919411576216581242390038087776740057891887724201209483043596952724724693038398789103668711388494191635244207073324728567434859984508559335360949622371971905023377012112472539400615508706134261086152683074148452329285789806428363082206812389686243247289379940182466401927521818654999248762676322706024111913475995596063649716203253020367319984244079314045347342320454419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24717140988371483655647880369415161625527834605249057986532744595836233053510391854208619840942249664879690206899851853760019147425521222561634133166251705281956640254753149343274762138328193777033358766117920861256188259112180088656630785414954430500191365682911479320004105175419809106944867200559585390857201215167918677003291351085337994515055857817095877319311628822416820672696803472043618732557273863336628680197515682931638380083059276952298979790424814295727079066733939088342689764786127430197627974268905529897713393212251291347731291294919578531419785019433088173565797965762760485827985982035964166070381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23013321139883511686898736532783710898414477061633077186037299490425756207837935089914503753115766281262660168594682862365567195484192219799187862323240024740633942085752346178714992646497263288253894450099900481071287269304174599322803783472073284335765322810194620544696702790126616245918970978359609042121945645692794140345706135617829892043196795398691539010229801456741286805231257698908890030807641256183147474035150696458854011798714279856978636311539569822182333089647104860936494349425852766227689083495462095236859854471603325008154650739182783108112098884034476815780625952808100680087856613375167193800561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26541906059233280242757786569940478695644053750522997504601199576919088701313080577935853606233402882894141099859764260996539893430213999184934071860777628953687677209138328484851044757303856787443268520087372972736681282623609428411802711420998153745412587997947731468337579477457988055820014991047149067082822574184906078084419857736230165407768855106455071692464855268374264314038159120495700900139147128801750583446762280967683785348802290492642766014330869806401659251246641888551905252375669738481996405934706254092581497250694674978741570355401019893807779061469157072590920140025066385686879753584443051484647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25860767343048919544861736974456971575277217909437343757811303740475927208960713395127001752152887615450245612923388043683019052417574923132620505340004475742429537452696423249534451359314701892567016351662029713216565095446307796400172472322665155424801769633292028595386068591493666317431010215570110826718363434140981874581543178312293345837542137865181578111123286304985771562575451869187504790677762040257655218592255936239003952419216092479102549333166584662864265251608281426608616642751567952394627130350695469192017930266206961017622852149694932366939267438043865974633274673716650038339773242538541800614157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21283593428308380483198581467093717830480489674312200236902475295367079777270419108214664939830959923364156590615124220896781636331852335863503222232209988586614120694811481539935667347774251826871992879590693827588503014833206664808592735424705304621104659184883941955985022328352037344883859389697343898029504227592396171872317781621429579032720496668299458659846602301118656421164930673468425330081091214096079479834193326408634754793496375884850184056609344715418320209516695551715510751452931881019608057992628601451921095191400069649477061648804149498471378538604576184096566101570140023100019231474671018121209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22880134940742423237515627127522801718126112857453281328444920061817473828173020366114342974936029643257136409503999714062264138314380609727312508845168467786758163339438459575749338697532199936632810893251944977016503280382985913010747796051498009228413213744577993854852942925801923176948808401700439800782048283160681386789872202683266265211238899484830545004782189658802112304506112449811290130585842449693669701997092117886727548173020661086810843321323783978399683623411057925795021249192859542081175519987369327139733664011143093779299429981160316964031922418650208480661955912608381549544664423508922989854141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27610309154707239941069753279961174101510551010323261565224549549329301861755549635468335924536453611703920306390526903252798365339397825887576736292470313360557622372905635156914206964961552500622108833197659196417512317410724648616346837344884007792494171658865962352730715065746092211490015879544257285656227608944024234951955144174768847281101123836086310777411858029193952251448602985152600525307027741240772483825203234895063958176001078247786330381600936541328482748524148499339165824340151034288882525621327485677101484401406912526600702232676210253685722743589279255431312947943897548193536042729268710092453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28259628209880647985132267125496976972851033502036364612178094517670021941601355226750924125368928992158563856738558845812583930881764606163373677669566931141572523217468585423518216622791939042585718345136366294850658745050916447548637044935943780321473565480804157369656292963212505616537916198656236261738046335421009089782633110858753446773747517213622401090142600304186797877021298646338603104861601679957553578692497421259221745664368151768268239418012759841403553034080711378556069764354047253147779135762529818301293126221926312915963284154929883282387838505214194300201355106059145107178443404408338775490759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29801817600158195110765702894440315583805237368277791011641241022635499117326163482466731657206514500852049775172740381501575135095091582183355970190227612992994196330890353692321227988193768170312002174814488581971578373633255218792305362647714855183187036794381572233121979231803870239725097292584213283295296425374818321932070078509590496099303753723492149523914803360884845936647624673819270843972274907270537740796055376627364286033221093393981720485738242602764951716334951516692151424569506425886454257131863886163106313965410341231396255416151500598142295243378228044846293000961928467842716759911891763433091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22829880384486416949686740083975479097969211092488191533437123630758403058091384201017272746347255694555437189489375284750266127820972875087879821492632106275252782255578810584937293787913980673790449177049137763635637122360662828209114631428484954951679420755052044999821973488476964140122985869841729163044660918427029658625812411759518264278647579141590449684250329529228550716871537634340061721899991915839720223425236946484910213679400114990504099543096869368999513639274049719265525616935898928570821626702136356573620126746853429745864438127937570769685680203003170476463909009970509518863529749747440341765297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25290084456698041125499538746329730127353802402170706273262240756509743237339455265069017282087455691448517060070249218606831430929120853901369563062283136417119946684724258497574495025318082966647922431019476095660979479826063011252773804824073338097018938612007585204213231280660696857325730157650585391659327458741688875964029822497139228454658644393873754568558155861060936274319655030791589547639308864332805578612968844485542163936155861938216411304108837199399361731040541417126259849593229880935531241907066043332673686827334267474483605156218782691567232513125796564829043072994518387166100037077819381663379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27798461216291206505861415147489573063872778384686816243739799385629562621312987035700720830106679608748620819211246034147671995895535495545724838365993899791054305335697467144882643050915859275026820768850694959312244778598542189722694359035825990241128316359704691861303712329031185341759741022293745161923036182607919024992143711238288053136670224309167081184080001877528492917677731546431879131743845752462251990549103781339907027375073739017389786925681269272544634617011506522144682431557720903436692078397395891666856161595917916606526996894270224156906951666642489043519401842111201306863608205034469597636861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24220466240616432098036909057355046491075515659998494163852227726168902192584118881530681339721787261267363272022679851476549212479336832076203758755561074541725705983432786580419083622671720051415798021414567286119286828173715085267883087160738472906334382121291992405758858607940718288061505340928793089972169749614698102876545850711653490663661821161389396982544941049953718057125758621157304450736129704352922655096665146772986988106209319354528024648141688642995210272878845540294294784732227614499929397016967217761006276215525604039003094486463419799051266102895536548095515447109127471596924799652667111971629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27843824187066702337994178377769256517258847682369151094247216151096867584725399454284193133810607118942884238009261919035384060778612352091297131625180406573833866687038927601992765589242162672447539906236383293564029994776457075790311356347292456301841063538514384453108155567078084766427269636549819853179576965608540740506126158649927364432763758481344970857435893179964384673472483572331049008960089451844495526399005701097361366446616421539145204102493652021396139947079643275803083911706141889012439356758677482317475251521312486580868534398391917640181435192346358689567949958343103285296866417451749211825073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22148848595366280445652464697676266097463065266451156730505207336470675146818447844217053747509245592764546058900223779820481142111143266375281919906445388568976728857493151211894416705141561249018228791320003263346612560405497110618812795176050071958809264484962341922676339743693890130750932864433219141701902891010231373481703444211881615493498152266127591393197975055983979899433510973482542878112232715800177092023387996410121782611206126176163243414669868198430986866631950971481957718633798900013153223500054345366521955768894702386102728917111387227948418234350230217858046356644563047080721418849999287844409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25340991608838756517568892434504030964650618971347087417532042706602832723168882059905478468537765544382854162092350335888613684889249301564532453893624989674025640032447902305393634399525308418140706517134590738340155265115917501112169539287161603741769136773162041900356620413686702442700860169077940183758079230918486406512505312098360022264428148342803079136242934835108494278676426010246248046461584170142765263641895064212572653803468744752283883227686496110166118710733167077924348470610431332935143080834917321000279138245074833339098595977103163186374827650903916741906982801579600695091521639484408671968579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27661229135902612186974277281043368351080682907544378159264441749383089755001204964492515206228669733220071747721162948530205274678331173196837146491546781321364912340756921433453303167942488047680308433440273097308896952651703692708787948250351994654842401595163671743533051350798581901514107913708588070259402806049450580468690490874895634009054504257594846142227916171599402619673107095383147637383263690673821556001180110070808046044625851000637435666288425174216612672532029019597148835137264834877876029397121827166155390894559904744507461393183566570484515781522841207216716131745530482709255308624352857386301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24163332741164357523098189536215350339954695440135974152704625855596410449748049533651079482861260859235602131103426277132122576191961571026529909055948738683973759520472557366167981566066066538989121163760331265084008938521271579113216442766109562748298605669180908397694553262584343231514397689046549857718203392988107257707216266573267083216469681018858642173904205314043903733751009150648656590568721002561509477565513213174382074770927747947598730038019596920650695595891826260626807385013864513966175815627115014417237342650828705729240630186277736369475094358640698381880745960576093118159949193213984211089303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22827307357116422695082616720658200939182519531104841408304998479019044727653673634550362540775582709420200177077969714436425141854545377430009979434784411220560853998670787900075963989635414941654013360039882308932380532930161261866275238464640185185151377063220841438049794206715966151684295381574894708566993147168586227738124237466840912199703753996234061677831382751086363662003418407611820490024157855558939359109777225164116874939255032521614149929516171527646519896610085804253397761701367039231500268774919918966713849476563407061299713772194868968847956238212527272075632428513940592002227274064900787346987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27036671566351061151439047372624699033346781480684781293151984595969629236631266568346296471698344671941356126909430912863414746537649072452343295228122713575345639032711412271325802477496012963718982210070227725785916002357284174250188821817732726042738593924790360817629309692517020799813306411258838761087166100362993705154257470579239547835490064560604138795635080917403856983065921745356740717517028853367062498220016518019742458282048125474220592054498904118904130242176822355861641505277635851102205393909180023315410912906977926227125521200685915107186121783753935781529673335529742286903100745546589432368397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28380443024159584233213244103279237088821455481395662410460096942621595060168486161389889431758284804828852414844905808654935722180385939710076281064238974348431730765779574723630014932529871666160354809450124387105976952963719177238928661273547420791005986733572008355008118581665449801861689696043080272592085785972374797799009538013666891392061405763809272204851004311517393019172250419442903790677392596974776148490613644311167292438594156413252361441284756430573590140039642428176996474911767595371839142599891498849942997155589236237809451925369543310221357087067773129151560338521534377623156832154603910320049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25478203934274676657544091605773044252764055460138283159278759900381123720221706536251427536406799441594179304922713542141426974680915355877662597160846662826934265706197504519124623696129635562436759281845979817959658328252158062388050388225791695001065700446825437567723434616913354732894504040967424405620667681423282271125488400275364732488735744154068176766151182806316980651912777510598560743271140417496494976537687102812190088420411495540347222403459960869530158737109979852143279921201388629930467481008682817805100419618325178400560914120804588957625420636003776650603766102653634865477803193055318329631077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20501035481489593397205961805665092477389068694687580203738380863513871387281407824486781188711209867729940522800705582960932494620095477175597750495013589622821281949422706207467029827291098065420264106513928484239256201112872758952569629432365855508541782330330596560496928314039156637249281996559136830727954761643766345770014128736727416098043882390409425733872528429098743983374744508148945618470388922253189494214855680725655669167491981795126860784074898898568284311683185972941300656802129966939796791278824397930360990608719293971496709861376308879740848099807414574545953482858344005101637571725266579401417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24449141448224181295494476097423938549390998423341672786572724467584777588343056905183205136018016574427034402666643773446145544095047013500971175957105111849339178330830816620221042670250215244712162206239776265810851073236731360891548886467919349949440916653576804946027386411130778606153873000616718030015589070111785636519800977523614086104494493421327833719512401369757647314200944687912472846315066861125644204471284770162758754087647304236408461670525686772826162708578776267290664516247493819458494179717555796364152673759068016041958549977117110197027053397449056953102005936159732973196908369496544996108153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18952401187214368513514946941885525276291551195640916777860763634779562446562840155937511227881281731538409796725838172979003081954641870521740271867684356359653900293396524411872942137444455714907623854921746633088919189757172085075205397391172270668413646073023808687799889014046758103422873602024868930819920630418844217194833644030850200407560577691782832453577714225532449565730257573181526017183528327048639759428643959483957137071987395422647333462715177303157102563411886494181423674357780432774571832057388496387218877719300941990004465352621511499608059779808436199377427550624041810924340746022693544566227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28226753912859216005426351125231601063438143596491637592594066943449825604323931082538788321198457252702153756423972672487231297063740190460923584737528670882925797044027391271295008302498928009298037364059260834022510527941007649937632468031401076081990500445956975402130360754031016734835263729133215978447986721067425128179197589571084185518470072648334224923250274672001817630839591438939152011509280677427381529361272462843513899661906526511740276348868810950942439987941671754724438201082447582883154423979015580735539111826170502880911564697741005081292398714621421675629568509902435563921315443075467574355773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28766685509867399894465859154216487321123366324346973558322486290568435112676406506569148167788311473415108599422534175153300740753143020177416033431589284033919524728926336076275236870342157306321516551842835799597830319144959225480601290378039170094206726420592252387182937033955394582383256771142552343665948303559017812249705052104985681330987275283704070010696489478695025689592719019550738305420628644192989165860205830665501255883773796977237385476305231430406292911311495514763252558633640727089537236471550464850027154306003432802343837264570967904826777262102842471024913374980905654525170101030618497201849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21424853454795805285772412023678444841205226472948167190134157440718859639546109251543443734365074723361568207496472916353508566439113359924751162313975249182180948712401279609779346940340082823979192770588095603705001356699212158049085651534312157225698403880432416584649046463321925689457081879696725447421443055126342259177013564989737567359370859164021697502293936278523256742348506848244994829785190832194181375010627449586552842461476860445070900236069504482862611256149199673858279035033609258501079330294965216715734643141384339050718439795393763892531267977156687818178603687628418844930087204163550812233731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23139236347956015567498990123336112279627615973187681011003028700970352755610111477715085819115497974212518528963589601292083642508941349874143313797239186945583381038347622950961706600520874647825644296889188889432420664907045008182258933154916904796495171451133588135358939402524600022358196454992013176139255954112315875384631139419049661001293203432782870001845439989253709062322706046567214235642661039514933439640804260511708003507219403219735498873294250433322494761696034252406314948762790427304142667426271655552118527866775461417412311221900636755662050362726234924223557809465769536088632841939134652747443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24479743265914637723425196811484989733609321454953230561969640384067514038036054655263038883737571817559172911685543669179652948397583983372304574191830841589729600025547703419518030156791675393794229786660383720819716499853042316214208941828754271197620718577847721256509141928596050759108518279775498399894962338808655235630101207053853553593608220019948298945816572135337979445109217137742946315060086048265004134403310318415579052832915911375881236331467686371348850332149185868639139550853164408559342094084811033805425016896054693142640433466285465203904850153207406046744631449722893886321095789746692175804043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24463835029957500881348525191975760781525750686967138893865880852493036445049501185991764402384823126996290312146706855560663172736375850316796258333863682625414470037809150584041707976791117364048903934766081933211374616785940183899627427852753379292008788739714212232276415486458651065992515131912165060920051418457494796872987768495367873770825358375131374179603207765972573653549921838761118027496254160673611801935191749418612305769469123502780398223204675859514550710205096810388268382961158973945734012796070980266552536742460779118154013915733833441955456239882019812920201137101800576643957210252018571464759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27364953517629663325241444067061635444362915292918387361802988814391439849781860490694221355731291257153538355867989255759328705301809139793193586273293825626602593054258051277768953636985896933753515908474953115991768745287909081650607528344755294980360659738930720560606550081708175125050025143281349906084186512925714812369455401449409874655277544877161626319426692196659366363129228552504108453750451335857588689422972839240210612571183148601620958746975222476673062569393385606520391978385501499590496123836151529951550807118945965058848146639682091399516604349005989633403562894971510487310607446180549344490073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22911680317469316350976357915185709157917917198654565542911042599681298525081460318703347838706307578989180258215876572782262930071905839820979700315602682491678751932745701153255340432936121143874863170279456582426508068712044938582737109714892039209128613969172457475591650125632403884113950874848809368302628978595893004244481107252866994648664652467660449629094965995662923240056772154447860758760798826738228101201409719184569771614607938946449330810748039853208748237703875667510319201503668054574223311026301436699513293127215691481313218509801659085214075520756779211077430142328842132527702448505552497316561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24252148894689436663728513536918711142628117030209181492444379484083469138458207086368002833167948336772231897775460630070080181869239246234664975138372735149641002199670493120691118371391048925991346383624378932816695424345131977958488061478974781584240372866432404647559502857258263079918687481570603389367764846172751462608482626888666921938854523048659040309331556099687390184234005782406464338129980095713747835674199345259235271190042220501681244629862379781883152582253867613088675448392082676218081534836025622156860550391255207332762184305313440596822106397237838131480004543664312075401839566932061932525423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28027382139583083112364447310901909744179771150763598480947513995736766750746056007897253497381358100230376552269155716767480308946492886602612101482835933861361148414884535131289288372831002210730918166027187361874784895605106163932712552628680360799214676607071611364775614835680985442086988243366593382399191961254830161271132221576042250895411056655815339937887408658616529397504295485727902360665700019776125094810204853883258754557367971038178861294957590121811063098915950845701539923239414272033216844842455168890027045621728507277089982202879293358580965628940783246395626778399588247715555142706089421140403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27083031975103934880405496545804762874828094369228330959740568905600649925419997064145197051070366092943531103058104003907647433074777613516389104792407622942920061828630506775668364666726795058849645703850190816477892634733590061820162134453820867646792613592416724091631340244340916320343299804980666764934511321724102942795490739217253396893675996856836015901805050719098886262699591896453816190143246697699308016083062455348741227359999200793468009139811312694775495699060820098666558428646029993311677410967790918619822233982789665306439096582195996533130580272252727722319337268874261540339900866933678262893999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21257659384478836220358915504437526975402267196677424730842375585185551629510998055320454103396764033786386178070422019954483668644328332692848477027784808462814701420772526030117264067516286517372713614172763374854680179515177636749029773166603604515548103329273300085885281555276786195777775927842589866871954641530623164056661766175431477285899291720490036118580692362770785931671221751508780139320772296347123158595745523399424408679172148365512981252756527606811944889015557286776398344809151994529968494152865548914089246374185465493390010682971918014142953114807900178319898468729678243842748949213119239706527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21753848273624694979571424754410206056455216169590555540553418978556113496369582962777248951298491686400919405655033921152544471255414536760599105676234966550548748037356523987613168045980668133143480514265093945535702000713095202485516048768441849385133592356108571150971997392764854654498340360201146574582934142437272840745958760961536808071707197672862902265119693827096371352297581079000275924088629567200291417312385455502851283582589323095365970840505427130964502760900022540707153404682322126622361736742828124554582140352917529911409648542549743926965637495936936368273128180161801118322230764572889464162959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20899901377947138522315938794732145802415486408516620074080435650053098494948129850930607831680325319484009273685630896910223715281417107190095509791691424221991432634256274738152329750788630770240910437142461751233921531586469904857080731166223191108360611251961726543649420952813681457265988099324850221713461314875925445260689395131250819881922703359178386356911865981350049813406549089634888074393792895396663149501554102236898167940710905890306683764842913150704493379266578860582447757472663169959588162138292556477074085604239131885173958839968513924645191449925562204709690451191137443420276485348056625157241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27737891265557864061438089392927400130677059036463672951999834227231423214699525389028131102403642813670805254062008002782920641700746575186762847487359515306631853365614011869588551675438819768423680556640090268033030653737082523439196775069050020184670093042053252794136687160871733590825801099647662900461990305369962804359680716703095152352973581789723627841968773464698230052784231401379612367546272228996288787313604947119734218179091678850519256377467145191899720091478673208046566383209914486096929881855963295899130665858270887338126935577872178715725272212156569937396297885748776442776377061086197423466749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20260767818096309991884305336474345444362279619028286443194403473213221114452529806152061853018719824087494907904645407289697152124925195176602420406268342366717087108033603866029371316862897661645341519927262328286161104587162544796717001201903655166504665181391805401031079204194429256222388953591575291358384694297680194774668835621507619243183041324703715581626744712047401270050393812075186715822210811844316731870138868136526610078556051588804685162100362645240659138769222467991289285625781484282758773765934963564418576532491536429025407304210978162643059266039940882898410924566540263188979805293936758211731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25589223760256714437822196462977181184266570762308384024725809528135525701750354042770375147316604640767236943437160124849353294724792073913235162989719381015328061489197004228565928769687884227504642869220552990758921191373057376572106236013116416277012559349726302537235640661534920019708532895671302081145369231772604156509635740592540873578191210307731649373139590198271678299118723957638461905248322407948454841299300714696445881020254325389567401625361340533086027114975958891193616164851650294117154957703521976092418935042823532820922415179766656693071376196580328103926511023007221186342090457717350606644987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19607314964910972674354385668146997091877082399929143651153768767977440142721894019558003111710084101436611481486026687143641355867290316858290642208850385059174864878253146452493611363357065118326468291145521521221239856156320944605611620458957635402937065405097284512816753314037387375080409953660814324372411186104522619821871407736834944617516194758090851876328020703194428864968469839183755432655438949823148746189694676903389474040863698135419560297836408184832507730064921268297220504116462809156015057291235604516952011236892874350731503066601017877433518244624366314339885715914820230476996646795882714825767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26079891671017331366736287106354405680326931087197462445083766215052405797008184574388995654501900795447005984654904126034597917476431688723994572631373307671652817466879306633656112231797937992774881295893504697434901736574561318404398920697508271316442804769598098323514721941688094020382611975142913923772314734279121731962509245727546183931781266899408130451084088100288463681869394576992686579423581768469216715107490788348881025011774457686657476379888920716781148734782012430716305187479464979081351148756023372664775479298959860149346891241544181403342923124300089188058641066135317888970100093552866023202487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22486410951981229733613078928289457259668904762876427959054327336136818656752113934745114950619362955339445328533648064797564222909872505888672939045352196860921280461280221332753564273784643304500353322052987346903273248895581593804281579681494351160114443680776403986372850440495379858968593791017078767644304253449450532665166626006767775945445868362555610061693707996767679303514146848379578670274008403182116827641603550275962283882212509366982263350976611725815261371995666544098513321252542942457506569926669523232763210434834013831070051728319522686176464618723710901635703782795664244450154961876528265247273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24689003495224788142084729835750583795606729199457027019170144542572072188629734593797663302614426312727442606565687635689952707270791081826804653990215844984697368188225041105725425273938375832129696232138118030725127360557639719977176929125504765253517444964216115100167682565404461715440298795870582634831029264639092636252939708258786001445141038962720165980215529188863534373443173137327400832153710805641239386201698736203234736007510118296021369740640962032766251562501035994493051091237683957980651593613944468088669921329701019453183006274478701779167283258602216289993293426134142666166770928080248917157567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28254167826626141869508559091951108068989030009306810955998160168500040807135707804231139649928490248719480361900647790480916888890565342882817261071760793174349387536892286126352562421931911593404750637994709086024249677060917936383164789042499533319089230129285236582985625680818319388283701959231558672834142549581672696545514089004943849466553550209202529576776554374698684007191957297478005243941807678706858009681610037386916774057426931353145379981655604411155599541483990105227702808218246753880753676051693810205699044021051757781182538568031425635040153675000592337696801953443912205264300078900184608131893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28113768118733129080736847624118353208505216869087450530873131862885992045343590444046160899567560783902750683198205691971953715401987132285938879669607207960589168162321627856530349963065798355355618399658141416079502181283204940724868458950308544885921359712239313849650100999455677006459390021190990039750392734127770150136128800297391145098713196886082145678640136230839444230364974083320830252829894071692554857266378444099804231728476817315288603897230118339526623443638700739464233424690616511085527445891738482113391966767504265411661148498088576365786762843053821654766071537423634059406384629983843301306349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22505017792865021953725339295734581053708386818711853516842998433586659276832967764466917018743411439844671824372621351517828589025863613970800123916935280954917292238695470328293312147269784299636314689497638092202059634773197371130596456231539771776616583135713703498286635489386697563190600670692005341359597013955004180860067616218128200716494737493509683646825717023125035061398076209997627851812171196764954915361144203110256033384761564301953089857489732332138125923648556310685377536518086131634358335668030664800799669837935809431809252547283925661812566022976463705066698205289499602509595911123235460201809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23292905834747337749814264116753502216481969508468965084257344926973072838341710875175318143503338914255618670337878276703680161910099837143291168708135436220016627986930899900991603933036361702659773064193207371618406715733805816333793443615183876533407197552741965350148100730720623600692619723108652540341106859276526307065916436795180017652436228786073308243151462740479977400430180484173174184943607950438705185241191954854817933694500909209960040778575909656943170447076564513950276555124828326351423141693891638470692775865900379241365050705654262024909812238048179354793658432448635565459088885681451899401633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26472392658256374136710963129039151838544013944474960180852299901772687723985712801345402740551609609336150500818988232671273980022903897619346292669673339543893411578659646921168054526791177111351318552796676558608912957455084331392094576909824794699657800546298289134077160422525303138586943616719940847663284823103833250962825314099254736090086978754481298771608797903560320218481511948823870580320760660230324340497703690254896041667794393206749048895437959413865035191589483504564400608148135122875774403325943951727661808921408364430928604401433223841863287137242847836765932645455965771522493883592504083287609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18599764905999433158529164757371198836710795640781744414283417054211033981451177783128281146058737271451781624264088676238192410554820783260622275468615535886442580653040620534069802403529241476242603434420908231724352391022478190823799820873252990822276764431860552690766765706940005122843313776123982361623611119359350029376208244248539354974410027648289737913889492059554029798009872524533133704239163803592838617509085238974510851602569999625218031971538102139907659052659989122957904619531424112512300626405191212113934746030186828650312570900701177400651662554893637323066906570276735772584445481934320193873967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29332012692129745229525629049317009871041305595381505351852241945333600727091301315575104400399208364729613731356051643676322017818367825930106680161018059892285154098191641698197056986636059426334815337187793465765513237496559918575410066263951468028391076299384078764923751718733577862541338659236978867658324070934852785275766797960985610339643344819951045301079119943185661887424281574113661112886624417435437362713687689399906114149384236689733834784331790149186523850614883938457059532057241806375058953852581036220645593278152663517168199046591630372726736575072938752755424399894764302464576572194830882957023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22451201983607279505119005211290426266074914373207719676515238934727081133226044696477099086601376764259187965678535576340829827279690029779902675426536361594477398477033371900844277882220545890793897289534120642680069804087087604444784357317077463218663992391361086468504856121400453941842116601066830913131465631448243780744310539642056119997679435479839330284658723273808688472025361855086987459472451443282208658818816830590634694766184662510011470607597468880622420063082670366332120336991756099519271207238893622641602082923007066035692146082648457052352407508574540701039381679037792353293440806008374990999211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24648133369674010376847814791675364298969977376699626486905429648513353670870561181617041204430778856775344820397144654831918128630658335189074290863613351248096370629043382070824185183373592260419126558268677893219478549717962389260988367449829542597030982136034530960418020060188369592538715825108565679628204732316383614942806380291603300572579623111307898175940211774934273786806176697668068310122198203081588722635821229916554789047182319402066510885897855453969895814157415901686094455605025955010729078096205352930997795984833204683928817755234646492001965892769963747258592872274082723385566047156228761286839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24146607356815050990135167081847603652489450404051989358400828667481514887423668483109870170987734512647429951624449438748035896259278170125943282288773421774351340801488362211035033464123038252020175897661198258106531080725769617331713471294367892608698300815165932579345851570062923702074774350697615931776135710895499824051880066041935141325576092413416615692222334777629969320336336907363424601828683391591914452625700704990385388010020220577031854164802611390181383268962455699507190787828317866820213139932440375593231681293484536713862127151868310093612087728279528656048877227862305248954679988184201877041859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30969222960506118764320208859724464798180056658471210687415785962793812774674689301719982476499874311156530001624014580072119152594845458179438264430101641905673733467118950132574088148587671573010063164497717140982039517482337089131425281010590214644040654246170589860208790847059990632588931162167554199532012143866722021388611038689190622304087389814181301445493246199526177417996733520005103349537856814005346052715774730814311796430761335262674105373296405660947552833194001072492621975662883793005618021739726232304446408624143042452090108500291340082186224255043547923742309073738274199815610684498868438267081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25684580155070158713797929680287616771059614083969510221600458965011951718352464521041615802957301844667638071061993406200285689330986738623160119897985642681540296677630527670141907878255571571249024618565203994381323310466143320514865785463555599721805180621700840387327358710191764712271354135765341127881514520472253678322339639773358525147741552550280330744676267891469703703833967466115013421252310920253285223990637966838390703637698022485297818007301584406216011268562825180762244883973421741199624745828974889651955712286918357556780072467504780384653923754882207474539760326056056357379281436763597461889049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18305164492777309618789534451310881364903690547278716274777076947204666529716856257135207643300901382612211325214206900755110649802659677144107897472063837848221642248752416521254890684203633236246163090028021274580545865092269789819023995794157966962172779260153641349928898667220713294729320447227163409522910838791896417962788500825703926896531773970367625601497414560598938481928571876029453190224151778319675243165166560640785458217038233702998892547446090555118702650990896983326047065624988184731568752465087474790979919945300591608980480846205186970677209649548989649907161775674106410754609193059339425552223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27159495733612826299949250286206775561831716916589071650675708769965095984387681824910850463294148560633943319001816527321784390320048999369682628612087187754255088811519871398550127938956497664898433055882626264429190808025339535472601890371153425131285789032037969797011395810603519651947928110290601734141568798452561178648156576598245423347530450882250923146096251009876289995860515879098196278493960355628039055442134588717220510155378700076699465255980665387886499002828313662900114295578916718797384075134716976221704831854746079781737311442128473511077355351745959593166729323367102264035289568533155220005069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20343272327516789188235734836408316771280475668339748001820440724503146707503565663524080719469205129820854375090349024014292622774413661483708116770118944181397487044274390739247929327148972242832291511734440275516143685693416629828822721355502906307408642829451432594112625400090313116486839118188561768842669910020205641313581811587170999736420620328784476982444953720471191053960963214003328262559930186424003606892654110438452398317851582200487232844086691408577303821280260863114585731752431795189251169920865480312718304014910871615441537766991996058890335628981324756709355351549702143493969442988812079031127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27232163136723544428335529349917300082660111668281383079321591604335978112775974549047611085925160866447541133086970817201462206181853059376690415791012988147333116982131408615740603189454286383996988252315208498772634025020277173476396335524012784781458413652348280923081728946450493040880445133096643545322210402472840101361738763055634145906969759015598965571350494705839850265940484108818574381224593747814511510539542499332513044369045841187877245913656212412956566666930804280959187857742709652013463433074436479007937355350620355053673414715950819548221865591196062226512775018938909419813478808146030922111317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25574309626728089865542624741181920066368383117535817501591139845657473993960678575057860576291360155471730847269068249203974558222685373963565586731124219225544002139117664580439709988302911956567546012863277681062651536510834707697253611021677362816747281841914441388544016797708883170721749317949562949137844363499430621024182441735654170063133737997578156363215164069353831354337113843185115895958768439196424522831405409921835044083043146269574627066276416202039746953612917254604708490910997828065069390561507032754049208423733432211310458767143004784534361319551973037973944167060042776303313146567134329782179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28934574209602017371826035877318431988932870791912822738680986626387519059643337339857755241343494836218764307895079211121044901083417237684448903954714409877666270054339244349880383046536748927960700040335362201733456015654707135951954022365570157134062921068797922922768998565197337156381459602700888189510029867957928608157277685579346743637531939182871612694851724292226082906375060000086171965665232063331968534697407287318636840678624544083281776528762831450717452626377218057349883894580824951874975364791311029870061506016324466290217589107096467203805058857646833519511981506616502498316975283720584591814917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24292249539636378752252021540317839944272093159412904712814513996330756624831786751618463832609200690074640339707017566833418736830208394398363882793829476804966610326199911977823615214861334323694527566734180773629611575910130822813008382844875146801935015434358882914921569558046351755068122791974982452076684961849090819923703862674852165935931530673729868278519346395361902951367535202610850106808718094983372143503057188960972411329392459958526376682792262501916421976697492772525012297472620163266952058558001099400398682385049099853103573080306881452863797406125457157335490949689979842738286421468305552683311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29167634190670116097775876458010249326581890488139722572903230114677226224764503088753060782815467787520450723540121826244180592928428086288924020417389773592480881187627224145210519518155688204264739282811324687375925953554577061596180173237840192054914003833540425163649250334599601065810462379022692463528789455793552967188783932916881769938771487892631924305503597063023887083479696865742785895399452630604451698552392395639347464925558046158417421462219127370530942278426653172482057475294461269502751044644608808226048120863154579476492482956972748537641521152627035777225806052149418392789412370634951068274729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26074109475098844193195876618486878001680664908785571680469477497700645883669568685878337654537099614321566381604950732269723868297433355218344149397662655684001184776771429011085749146056038155686879822500944492253742287262616151166709699108014087404257521047819357768390336455973391515403148572212919629614174530167808355860630671835612587234556608761901315046605713906570768727413499130117717971706864131579489653100115220792929826304744758110011323605863474520878466941069483908298392794178249659011846808150397113739061113776831371188524952394479850870088729520163011684852965549969029277581882871886671756005709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23716712280105457361169336400880889540499886650540645804674283933312200581155331869826646504178817556309624496552895510843523749381801196787338312450355702779818641344949050757115287434803356837399407812120858905516635330908927939417542689221414078859024954859030907748194915009930987688520828806508600321458944296783331030324313749304655104690627762839227095644281848895982495204591528089380637390860622026389619072177963992704116161818588474502714089810971836471105238559206392744416924442842916792633752911351670755382054468454083932048605155730586818209214958969516702826382890447779896770401348663704239589810137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22847665024846600169162979855330779418577072127334908283298514089138809291965245258903282011008947616002056309542477462632285331476115219008180165472234745422580769140966317472429231260186877551546975814856319166609942862451254083057106546421238060876817525353346616981940712726632956675312648489321696415335917016379066177430451270900113325036170025359671944025675096665892978381507692596283619107386495336088287405807729674090761441905068721576768179489667662315963902346570627025054844268756555850680837911213425177466550453175542538356596893151818732900851471100754933536513584385610283268229411996519180363769193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27154508521585850016341157945803349425362122026249119039767116963218656691757478161929228758421566324926449409165792596583073474425496683668120715235694955950278149848274784895435414547048962842322653294577480731837205923773559833923177255616158105977130476698227472795502251105491600913449703757450937054060172972087494921706553458529388285650250440507181547398951073540443292468032134224469869896621495804577314926962067564751036871502437082843619881892714437278379258001714572212566882397951969145015623132008454017487775575559260447141087121858777298343107802547907123660825956449971299774946763850359101929095981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25620187174782967809538406068684423419022946917070763668166673818356292766967509336041326456483336958090958803729616498933976101386952028382435413678328539292618622908270053867184648577097717168493989211497248248192927564241196225841539098754013194211648790702842870005111713023942102661816560986381619389853248821884940572937191506357931220308958414384412722797813096213098848212121543326263407138232774363384169781525368857744419287089318998826422766372844356474062256279948424905301539305515669359108813151984389285879391984282322750205499073383797962977707468321843480291994887603137497781022239404064373813165429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22270096807826517444853967304806118260514423374770512170520246065757808862790408730211456984680650596982047809829992915372317702783698318693782572274224537114508541762215462229206868501662404664205881662896890223028353559940562930387712318742687977734955908320278102607480648790099864665385505274855039657243757109228602988739400452249460973951191410007785256093761539369178554635029330975207950863596036469529018159217326717706469094277804741985487263053839956077029453444334876341646187820410519335407256348863410863288580324628018526102928380274749290193954667388171234562912793578448745062223235063758785691065759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18805509659028224219384993231099868611598657465399819599604632361706523683105849789792415793396817503566181225591227415352567951045274920924087329217596280912924388386527804879834717044476681408949825705130392737611525263413636322973466100686867886822358743134476845821987736862685786353041295213728994781005382764500321946885939159981346464291887415651433553521138545267485667074166268132747015398170001521060284320998423006813729705776569480383814942711852624626705589396432496741642099573319974344481822599301657339708723842690844225841148772738034488546335830306378813530411277080966274744344237578356093078286877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31478543135836709796205760049308678151634736977925051116780231647670247108195410158825519748983889472973834376740293391313457870306083868207216942397722098279171474772532111724093514882136622604558902095530883211586873406318921800251803393230571759772126735123197816051801792082949122988344540133820905163054041277832996244749305842051225644102827344791193928108747390418055667645121139673605452767855494753285470292804636429756361009144380374534666996856467049708626310904163095851844307196477292130039417104470638343305741779015697189067026624865182169102995230092431664756293744519602691740292331593452041095287703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24492343727388488412448206529278037122937042168840282545990863235283446491099742525442134961057335614645499945816388110570645254538060524502724062975476969393227394453561230079084565941625724639770896575963594599885925077025377873393921645606472200654468007054457662865001736676140297025922499521452266645675083319975005108962173222308779468068241362465165732343888444502066381705494099018827506046813641346986956895651526010579019886411445803653950730709988751483765899430496295073986829759545938838287089299076273955111295372420646140254739651348634045961798471480458150656538250568782655465201243297163551738366329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27616838003343673664667749995199820186859648262986318381063310870203401983640693581664776446358246607664136610518636426320026801190428378982462361475755284291980897682534690268989073173496281545420526220163017939071228128016282154012636450300740993565496752903812138641703244333215767928750770451238980799135594894364608602329877647939156177530684547712683316008987541018695814579190850960746740496289640194814711634847725269673375111401226132737704001812675534246970658435017818807221923013627356576751935318541112671036556038780613343865675448489141562765146166547924989681187133061445757300180455831200068541691749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25414756436357414548729714283776378354473278027556989124143836875488857094662333430268402373449338874462426280157070192406917723975158478925886885765885783021238440892451454154326740256133112700003353196124377631069738014950415985004321860555228547049586905995211343450068162086494444508712319132156429577400082970237131373040751865114748225233935022530926067752189687323604452583624638604419178641526238964240637112008979172885914478934662435402748664357511732088475789190883029260163371332191179979867127069973778878672506036245095620419310450888522960652556927950945137487974984017487207034869222592299151634001869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23338535071942560397251313796872297188534665156127590880992013194439820049636055498077292307452446226309103948563556851532102248551351970926678849688107163748399143789194515647338051156232309099331596997080154748334683814031087676315154539048807474639844544411734741693563651197112158546059678730585500500488346110622642331703086957892473602389859628248427278601419377684666014476987057427703068224895622504539174370090163938558875105250594287597423827582976891283203204721896376505426959260025725233213870216816196298267030772718383982529972339542056527861713009955423851147426849653788307651029995957679361102392421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21478934167575107481880214701779617877972919783872218494445427968744752238966913457553777460042861357178321313142197391459056343189296057760196272327683584954690308585754104846086292579911068077083684008944841551343227481890996765833966028927001024865272239079001299987149366076644459393256614307515692849603663905986386923538859950499046323653061925815083642490153364685158254366276488239685143223333188160065529903235521774946159885043250826330512695233028943068811701872109834856371149448022202343805054630355359011541144508919100291587390690776642265845000361601747872066401322848621914441289440339242299519967067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21711280803936728059506496204989558336689467646626604882633437875574153565517084670513771615267857767449753909254070426573450585242166515887803431499076381707562870096949989588159461655038142508188257092350726160002994118708044694317579891854618038636936356126747028347331139999919245019273349153949260930116804331562391894888205708671614609350079301597348854571490911683241332910059990602368380900892134359837148838467580764571726084416488377140808250478134565518965587212925742998705301051234833640677290870261285908209309051281843456893611370369998440065469707616883799809569718577145538585519124659939190223327967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26080431928102454432650901016220785309283361190370489739383707502297082285626523473604948008984624831820289446431852515895422305124654709481895100183321669593130132382219042355424946640144562635240658774451392503484194434424362466378433112322699755727406016779668455946885657903848364455219215021366340608195047073759277722695387759181992474168027037680526888196231703857830506634133613750686084090161456615835804052830153611773860191163671692891795683823212164967063011250772433288117775132385438551181897819853404378111399270656677417375021994407785939567827603124016802217273711091209190089492354585503458676844767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27557490801325026481711965330685822824212418983561784175943102779083748433198183473836306953517116128474242362067554747504048188387861820922827008295910200498085856446328596927629897628257392394535972981661284841649076953985872478812626142072850990271751536096385794359648694751278217812372333020974137764859381862059684041111016713921404179406685541015018847796863116144275716661078089937030685287341831130943444381016441765331471420825943934677593499776704842168518013986229263558214131332476592356312751878596220397318288276051047334988145627599304866195544350702931287012267710661241745200848291910449729697688233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19321384671849754305934586743678578083851481528793041113893654034576608723542846124615518945781269366219251884174921547197417490282370771334073511445386541407293836249695680936354721954303249663163116186394613389479943995170592776047363076957954859305847541447212907017137443221197277093618034190557327488517660087331561778674763936857965637941224773558922878544930599666605874332736220236173739920782610923580153626161326512516848553888797210229120479320132830982220927543026531160086635568054641830681191063440056966983527176665303965108037311278294474897623138509436535133276246426074123096474525933793861383357001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22881664536991257941273975243669068536715433766224491331284832016320798478120388380435341678050787256341976464406741293746339324634931951818475001296495922392644618884339408708973815911261979245076043528688850197188769115268382015719515263038189549419765368087345780637300074754174915692431050224857490435275089456322947664263737168703348509597846071866029072636820253446047683807880079340137457994315436424312524039338510274707907073290334082236315949168470254638064824235082238369385078552809412060949769372842570333075378593230787662843732503364689778855484336930129134246109392078002175648891393898389839281674559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23776296494041821886715364733163478129569647790641030307756170855930568791094265435661780092925910303056839946662100193422309808063595900608281182802806818953837343989212327093091684494740457340422697321654549188595594390528398754663471796577148941474062313651999914802333822991088428716692456475483890364487321834630874717032235313256786316634545624719008190033078033258492741352019078223246420276095672523275661746105563305814762877285738099118652621224811472230462806626024379009048949341302809695822019937776355119476575984773013755030516418414484769305566827774653404058550428743749059204509562149764838414101903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24308950627709819437599361963641324716420524500058563851182289028204362920762069707692887313538430058070856263917763977875896492177784074467251856305310908116722233304466876892179090236955092578463172081479876564382438366432883938294196853451545178005854584079360283057375583219004431594842079202406186718718636719587953627844269466295720562858010119515191745808717333538413758097808495348837490446929262611837959773860255150684800238554770040302812333324070782349569907695266878817761236772135824672716306037369514515402278284176895217589421994600431363128957390534832796864764093494646345709586569162768087468603809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22580931838747940762273940256351218936533550350833458276124598686374191754783933169016081621896859829139703871475914157847698340679771874219609209395106179442453146226998134478388287714233898829157418110761263876692062846270559145239818813166794508852359902367107614202922436395233345392766026849766352173380672075707401382205991425092103172068250345475193693084372913980266585265272873416260538437606178486326299065758782271510923115022932237717347320354333089980703434056955812755939226500121372088638270700471326799740988240385316720979076099492201351006263893789240164385992919604367211284732233250002431750311261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31719812651120937342281471317266395709212093993767514820935542374216022998512045727362253074686951063847461270773545590731031987078538044502737939487632097200438899102857309287983528230095974009845480021617685080256741396301546536729480892892398492504058324582070639685416794803503492476349117356836587934818514868736827510839722020209441334517833773384124646184205214085483354522105177103617071828946552855867214483636722560174073655366658043018170230872493101349097504114820712381007099988229185110814387316125774208882253904286720378979627680159112895169425325721563134192327445476920795266447303733630499662256109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21323599484895529495094801026405922817183871234197100646388672903227582672975974976061417290314718222878859528676403571651430268545952108418898588272165440836250191236232366338139591892543354677730286294389948654218962693564863517278346372427717464427647216072216322603602551791350191443351012103582323988096529239453213927395077721388826672129989846238667925069066577289747029487178747434510911076762667021874270718094794361823821747752498584786541442861589380458252764991779445474656973668510432942860186376203711867672691071723266368155954091812787881508140963157859459831658088274080093111372675913954649698086441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27723299884969937759252559421124897312673927419866487542483848203727244191785110788799496994880306744144917453723627394987971041402156340896124681330413648371053515087102443771578052428600984299713494684283680615085717070526231938583995080466265688216599964066543207717062686420776988024423414079224055716608409482271632413412143102121259790805153122736393564042082921317828358872685124708278271777027803749644119435237124200137653725337735803990852961494443447930298220645781289154984538129933565720797073404978059622663511153672338418987443409115638070470561254705860257933464333488269741340352930148823602139740713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26424070227226482209592172378244404181351137044419895645346210576078688214037626198230500163391524188288775430197158288998308962252689335729991096637321995137132126247325766034134267093971506448161471504299805888693839482339557398522961045210012290043346338972547137897163734165235938233573390440661968599522309333451764176470007516706366304350583918331425473580910177277148750347211076893017369753061960185943064703888508477946106619459967342765570706437144441793070508406062598812316151161059237064306473508746004081356777793969457656380665925882099221806247632565204857759311763118452219281730842087069321717751683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24860430571992978676918544003052810239898545918664890843011077032401203281267531980499471968153064687372081757147023091942469632709091483230440217893334176720098676629392644117156919383141592627571897208296161567706336428369871773381518704914964823802883018823495040262862493480458026183878517070616176274489576828363347126487893286766061928140050128024212977798324752459298843440539920073006660344583888312559657377103932572304590196575443314473457858820432681741121912798740270565898703833887296900416069661871237895780243307521397095507374285720072343062972826594171466916515926470646502954656266148295910900685251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23649824139800753562283259638831069358848895290254450057638860004249180242586948403441458848054394772651374394260964730378334124001631075935300213948551021665276128771073768177237027963581630084647837328358964737970772758591246951314119207677695443949622585846179900023860176215508866802546013258854536670088647254607960283328506096474016696324396340637524282050663033759461141635022388740599620566093966392192228315280959550948844949269566218141412688807667727337367241416556332837623375301856820322128006984353605188554887152995811078279717840389158457709120180188164711600349772504819210585263499970859819865625141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27277642224796514744378192030434605150161229763333364509700724310620895524824775735226949052833893525331913779137211174053579342471503172922126072374074117601375701472644531587885013828989932466313385767110117295063753191774240794696301287545871559955594856921675606143937182734541237189297207222578203950425708540701806010042372983621862550681608281681735846862111526778265997592416729546513141664104022831897728545328979291670058735713037006700225045532769512939207273972012899418711775556296955356799154447782424397445264356766532354456754091486351082211594154817304748266545454797053585983095940259378284354359661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30381926637548505453151425346204138029423397509790075132312444399002860946236741215985878292397532194203563341055579480647301848807091905396093114513291624979579068061821674513978604807900298076345254207203325960080730783860083384595855659933330581688607705262139390316401263531160685414284264437316550489829554277555307486949432689112867853398060654506684268660728029190720167990662799397112666671633392451948207982902647807426983803997098933089895422540595798036323054069493194433855230492175562894492463064531221035006846300869690198774204585181611999088282888253095927372069021462326242362674366693182926736849121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27013836429661123344445483756268581322719159161216386174545687736287209604740472353197004271056246688275756030322734470141245966626051858071384125529544209491400788830822510691868140065651126413608598187708847674427556043952249947783152687126432772575795923798900706708196938554780005081985007181946915751832812032527336698729662798293615528412350709581104146141301523358408734756712172455708505570729692225895906790791398734355901810362001969904171663312217865465242222273564957522301882118157718981507460765470662273510637052777440619248735344554367403157577027068101397554682465800466058149587410273687589886582347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24922624229724409470041540173576903408694615764605819284566992480477764786020662562491225663588491701364875090190078056268163054379546309335221433313890668377484144992591448084553700522067902485703612051780122706834603815245723534987683827384125387669261790948672068219981095502984900094740002673476098042193266800996510673560988786720804942551558551307047105977730350522510510134850299719307987575732422357974240145497667136937805919085156977059019303261999924182065056523601984688321338907449129231806240874990486833030252732701626209712163383547661505851128400523160132430872834038203582888094490216955857315446643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23720692309022397567488019219132348146044905253646965453305682437513854167747879965845881441747664413921561219932278067642376730909985706226476225975421313057242443255159658382027489547749928014061485605655013450754408192636176662413505200987347293020881934332041060200107084063666398158976096318393851171706839881051327602490597890877060601871972961998552059972864880551732688098181473575467570874185661457536556152183623358284081996336725570502893863554744839795191148846826868643639156131328514478501674666608275463120291963456297345974999468953577905889960723401516205931298357855135818113967398108987449283529267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20789449086456270150741742910970554201175418343408692238703123247691160862838300753712969857615160313624427882813283102859621137693404456717803519206809053054971058269823744803213958021389140787533227238000935004963474444311575419047654693465434960240997875710256375693651837585610779354578873423890596541620980356053138190680426476437487494123142949352351362255863780833625627935171885174447924763257086110957562728695472072183398914222261339560703020144943858619056673862173074382654132623273834332091527715144296062055340627919277245108633661296453548990497173332552094369102625977636639686397097055078664123782451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23382569793644035213151313507846901970843210635108130484332440798212732126135545052511852873805150381716867400117297059090852542336939322733397299505699960222464569065106586913129783538249690228758493655623580387429953869200814221481735153987596858304789930231545738783832969649285914095800553617137963683945516373462460172752159062586703497814247256545252205531358061568465636911294230405609797370088790513263678866042027315759370773962806784990756093014998975213207622419409216527257906661248935501162726698284027868272213575549874498466398945802891217657222006300827932572418704254758748214675643227191364923655869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22083891389171456696824223024568730112955511313772528139412670072498142711044222366058959445026150296727955186420783062717738806462672586976302524605107851438184278680565517298614631185840481743279377746809492677697681659751126400530986540057932359825641357668495491307617740771503861652545563781737833196255799279513622971577302452449990751307055170122299949789162671230968380041251653535954689624764038738466628063101332095799103874772153374753849835511914157918866453332731773617881858628477571472362600768279175039236373057560166023354976097610285286611074727793443514811476122245633814285406412877811709869926647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27118768341161356729745513896041897166537491622376052155727552180573824282768233934414534058496966413703035143753301805548305256408182952862775520271098919778244505708885650973228029194649991833523510167460994619959665342440210863704426186951553209828247026211164428610276124703368011166876308869097336527843372988150723060805539464069323579260562562980131629759031144865180783784126710927965730492724807004973280239135184349949149130431329111592640867835206813250012223981770059829942673604808831991289120808493532674186663328079115802867114792408350099738988041804178938951793477979955282312166233734289483374376223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28894957081037841837421998964854178312772496896352085802833283531427458327525781369712954305567741302396174882673849235979848496826827658619169430352965430793014685902916595891206848336339212062114393640618160126685689627241709461908533470423079994519857984883288697538155648895856179516930733851052437852855120187656200852099421466974414016345044429844316095036609332250102931931216579674626004613043124897153017384206655956307185989464441449302903876563822271816670272352067304248953914702473428360319078587142119950841196634663096153146407269886841949928884719068932204015622227362073903020447609218985658162324393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20736516820883609842717827424797659069201917413066646033097376330011464157819697962090844565310632234150288816820241370236465713707510825953424804562623144588633566776398947212756400248164724199726666566244962047778974425544617044750268470742877621216474873745606000430214818038460885333937253796532535293206801235757626605691347536055685638865668966833161202250751324398420106327491373235184352813253413451399195576823661971134430224204162440776953997626405006037967956781378075360101619164109115073438899129067543328330206491410697341020026841850902846276075684728537935774685072399849992047670075201527483646786403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24823844140953837254858581301670280565746806622241942183901500260886717686549541508581471883974197053351242741477561531509928403993651875270485958805023094866197364595576307699647018256117746559420286444426777343234352237027906889721699055303577495135141438935902748418697250453428249847915722046575028442657017447891097036540720297374724448537157871386813861311062195975216746938011781329896942976372702516850528552145945207477698254836678335064333206760622223184078492280836270765103906623123524452518992825371517296341926087998913630482870294782382567064949299464687093235236676887216382974550319459338557469254951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19435726476838307527334709848564388780971938634810535008013570997906278733845441392709908913296713941182826523421079716573871485567030351297767183200185237180632926844177625884173509437059593852154390163304288751270392467619971245118836172998617558641573535526260196560498745445254942804555266878539715546758786272956881195946202625426696614795433392502300704966380349637441511899305595402568921946152877743748094338386540487415641968387920114954213230992312869331629751637793564426787932156952582383798032173562925056345293465289756360953772295115970309923608476250548666775732703500651648237181951631862205145450839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24380904882026979768883577056668221437378571544447023009294199343680968768654434377787008478050976957573206818986454458263262896904774910509146025218935396995858949780283742744925143186983491786994440217726988956671592296002607160725081942757514914399650306229055648856596371666394034316665722971838205743497185682607968028961935915059827063780409665559506331238278089830940244196955684206138970588018666054397480313843599682491962340504063822634842792410010305381887738614995529201843842142355867606195526132181306976244811116363008110786970921226269614094434580988761723618824403456358683403376226862887116204039743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27821582739296777580917761252464573638734559429332434743407476921411251568098083571037463542985185987686037086588231797129642066841268352221943667467375170454175037566858057918223046642029473979646506798140180625346338997435630827398352806819056664037095794537427448220476851914869215956331068951463088375915124590435412652347542835588688144584746622423457906608609081052200434257622343849300340424990185551514962893800803632366412174434392086686445782606173833874824189732685754993224949307391364262336023017170703378014240908925319750803932262413517650429392968536916238073574274303178785180864270204408697226871947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29829009655647181160376043972914418644161079590951997076694244301402508378999767301007896231536954863840842725276851294121775310363341391686795931379021277905833627844656273660327728068278768121563095720888177471221865822062742601593914304103239833046727119563589083389696323843972084311423376995044733889410335841198061859253647481078184388410792032189199075532415155340702041277638799676422378284826783617541974202761058275670115742420868832575721020051774660997549085444143382786093485502194305971243622594944053132305249491898911839652879656945471168207991667555957534090364902588681274318626070005576303767500461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30557057676909567828782494355151076132514808170443947860656499997474103198224369654395446281820336035642686753415593734181258128657597638069275648651977410263240919536212982099412403062403231551149380600538220594096742712219732219910115803859736316790270383847397805018060143525544948548922681146247109513679841602307572208085666469388090902300810435650850235831154313546711822483655013602584872640378306607750889872025949023041571429190166389887031286469908069121524997987229863057940189573934215307116503633784928886998218696497786690947550377127273041610772942599563058175648645381198781664815926628091686077715937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21629942581353484014686692139147883683967416015040110626804505395702132445734003562887589104353794199354876207697114873593827678877444197334883794628398240305262404953820632386306317254626984048286289135886350880951193649371196084472106530277807209749799925840758450400957736652941921588212278698876246944257138893551405393976967049488683816441370984153439895008860765200310420274776484826054889607863598039756105945357682276366777674456949248959295792613497588450819168207010559419481320194099669719840784537993874929160759335573609243843482354997911293251099354882425346612649300447551525868516762805657126400514407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24164898063440271758084728526372017480997143856350654658658140285621819588669931931948179960005444544378951650025932701009375651027428430244944535093281901910179127128830223234054053682836457172166621965440013502006224159093674416613248586879775966167028590886481378109781012639332285634743913950289462851489156993592937960761315266098728919268285290729302213925861507767440490837525482165316757348793062942413484018199951612450934854365107135654151272881279024001975698073024020703002956900240403459587510471879778655114117495816351964662035755042587041607054162845694574893344570891846800909880256717533685834366019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24109656623898577196480416717071851228126940047940167522197425012511327392350965430763996436696724068369836950697125045062734307748864382506410321594806469339211029850038300679655292840450597681697717668218496693862727945696226373281776538203455907053753736784903152541034169310642641917078179897014643778250898528002919559271183688335331191823941051738986368574934636907430726670387167930207338104305126337736062789832314851788223578820609296127091047271109992723538939615532945742918452685363813546869666268029551449934097352079127859048446087549366947808026024035885829239552435395266765784140611855932844092842177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22813150512272173528578250880898439388946916074093837984871948765866889206973851979459654107180554716175754815569895702612616261844535012932615086087495009808179799332323550747243078528108668036178550830381552956081370506887149098687018779107137356951462015538978068341291834356430457916177370587895783018412551279822554904885490225026476728253850838585428804111748169025137322138556031225625382472003919799326817606386489134650035814229128357013195850325978631006596574565430061249479626711577589536528257497385212260457153879123186027105414280111907373145897670082202730709541710620158051352015964635508237621905363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28916359320485404300615158763619815207099726145317486670049347619984644937749827933405264142057786967119050442597233483370671001939836725337915247169092191817700211644949268087292686397590920994813836180381134430578740975911033617117198811814304357762527495639886588181049197231613561800399067506225754423232222822240128497460780765196701859334843127313459658294158214368901430806915180989541402252148549888194540466482312848225090651712365964586347702703890695007883109830853798574905769455277049000564904199400770591848483721519113128596799108222534124101672126327749472695928931369409554355908861858588345455403053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24082068395848432352440502943664807143161723355311496860525277638063691810814155229488544726415506525753863878544418834865224331985467067827673018393909932365036657256180264968148909891240216685554173744066907247167032540505613692008179429601800486906831921844564986741150250795797349013721501701065305739845013022020980303656141304197317248690593583033956090632493640991727053097727230637501309027854730373429168462026989232456071934035576463856993642505947339203998044474226631433943657708864267915301922178213310474441402693500525793031241635244120568639223275796532173580582450108070002344370872651986348833039473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24738368982831862103160279241138163792711817461699760823242011527922035817511486702851135773272622497437442656545227630151639665347189763977572188986130927363178405196651355984058762160333402663002154748106872820326795462271049170824296337502114403840192625803766075783643469310773042600558274313527693933312794378544358205313393765366978167046562425448135681588467448164008114322269008864257495302401288208002640519396267037749123080796450065927741472438642308332315043569805776122736805572764828620595109583220272664742015410137381695594548135389719310610410608441121647451442387662936138637524086836239060853514349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27648870881979643614050485441246873178226358480339352291028731725954240881675819133973708936260893547090121333723409788100874253360154759850306485305561784931278681533956007319918331263749850627757282868091473844340359612619791536223201044623006621389196129734560180483274253178857178777614069055324117499019449473447133097010901704559795119016073426453632184302133930848867905380107377690930619946709081955602295561596187439936062928360517159828293942245042833757442668538817946492471408473782071962519126089313228824309579104037984998746812984810056513791382429347695060381360292374194524658851258484638375258852773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26987171450548781046702796091134899401406635386330877025812306591054868489619622463775253892700757560996203777399717930028146229347378319530437549528728818494485747153092759781235297554387516378188163941712292327839707911585634589100825910325314393867192831042735791287443040163735118282343915802743089598722934995802849803469921601270535206496203665104551824565633224555708495771482772087471539934631089685998425292209565550074178586355188442342181195426174904933132791859815117268993003653686510751217578795624014291208304572215914332975386947501712845275688904521396428535362705346050539124500141555605414679364779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26163300726817677878900477967147404751980094403245788690641097292739283724987811089565949697818526565251795313989367539534935109327916092120014664106633831745722679369209749181938237186338631740243206263540628752097897853246513986618972804361474656610504211862134931922981186883472976806044002628217997861120347533457864572479747877244892302506475534895061379907583129628944583765356992844904187866598976313655643126632607508355635985147913972194152754453273043335014465463697301212391516572729386427380636514041341785646990784107654744837422010794601970254861738855165152344085969384183273371289388890694525555587847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23323521040906453935371088251524039071464834995978341067438000333618764473669763788640539864296656841895040446684836638519426255328523843077118413948349569757909813455441624490828591661151842019019325165567742883101781753866162135743628106156408220319301173529871920164443977806525114776738046910877246286683207971519957732621570362477203539810170539108831814278171410135963076538426654145474145113367698824982026294837622999821882652597326425743050644402099217706832695331223019607729338947073513158912461415213285651590659276419418445168321209748120223048141753106903421380239241375207170436832167253325098831172049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24790418516927418306612024811555985963387075985521857570575166207107870144255525025379210533036308001302437987702444260962843325894936930514523999257033148972015643903220306652643338470733606319143879361367182078888486124930050346413383063158785198604135333690406595477128572659088329658678299508241470172735589122840017624448166851072790893791881021337519789531741385692691548364379528174048669397624251836902906079784028450524953059670623701489359178749590033015602031401107713419644092080678996419911075567288544996097128491126234373037587370181813464684506356894217973430959736603109824301971751996364625305209679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18464756837177535133257943863257104754428260663551162127261578139895233438500448698336689112268539761408178344443605725735797554851653840159174930549358222649591013111643976860146895278273083833478160904497923307000133260851341570029027444949418540168660438267093447848563176471074213921743511092721896180668683361098436443327394424312672901819336596400444404994785506942545390810664239324458186795446719515607885212911024766921373445939736221177607905605358750822074350333667431601189928402469057527698974452745112964468358471245366589431948492035661433553011749558954010146827988038867578488181937201110563451110171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27099861359947705641329148823136436605948976154022547972548996729477018718772234604499440002449185198921112980370850082601067163193886422853276207628532722086787131190869510197432328560378243544564240357868672986275422193337629459021390864937704147768887854469930633239058281791185198914554774302531591518067652055281080201561109744458328712646273825986563791365431289479657691559612733584318461644313221414087789169530278558063358786866063202020736413398435873760984256063508373993065877098725551074510369215849969369876060279293509229281726429159806834852608545506142088998338422645492303953922824389753562119382513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22175906789062511909369657871642603674035188410047159738720217298873772551420412001209688689771152594855968942764841024298302100597733893014009351985382545243375830407681535282344159974464128280363404749488959827965066356539983891305129242967193702995650284983982123089207112577125620854905153211486681132726869388053707282609176977163190209267624674897722348632444551590840840751829055315929718317675717031494984823302057008368073679613690036394053603070933276894850431249315271491747926288257910764109206672152354766624207033458701324795611370361573798874731593056491114990514891908252213541742549696092604991723897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20763839956914909988806120319699736385232500459023524701205424793653403302961656610634206422757708835363323202868716322291893462530907085462851661894655215707167940641191955080139714198602023321518225232810709171968135626826821443023557245615476398691351214261578738385953062559995291503840816710683018641177448512566648598461827644923655159806071364142035443307279811638026939985255417056878376359390160810490108423461902746521770054069895358738533888507920083485987413402789998844716620350247204404355661107781048416134091985372313525009189439167974462903147956186457593235181763889088418955032256890597811010145653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23076994356882975335717230769129488170839501342311516779903671655261362126417657904379205324791189896765668555339622040202817638735977999073318743024479424784427391456745343553065244682096952525120054634851308268149349171207321203091041392280983134484063811562096908601150740576836260759382174686486052338228030038280288102474638067731316298198566011035075410048520818355751791739031103590456402635728547867346535666601088019189165413286796531222146455501217319420075151461614202394256258980023898989287266458444110372525960852888293098893019509200539517529009711739279853370153382198669634097725986094644525832209207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26887806357023789639943053630529322043710598126375153838071409109818860084672937195830889424639216303143919960556119775988864015036069005734718470739102447504394494914403255008992257120392922280305220725741017098248541154749981288349805035250979432458822688030816772917736294549878708382222614441625222446417479696004449804527534494437536182691066427798154732121779638153261547734315703506689705865141988959967120185867876081227637668119664152225712733398642615646861380785440910024111591657548322364490937161317094284440064859847045481748283175773368048922774633828337265629311768317968873947245303219632432080950783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23054291002943732676536514023556503926327302313687999095539754245862188973417346399791350936175302884154536265094724634700259961659378283673275508383533126251216180815596123581899524718407624086888251990594941142319579441010285929461846451445259363293155729017833699731999982501688827716032143293185472069225209155489346699102233507438466948263993435850692453818911064033816741743939115796085701005181698227621960380431560958663741203624151883744264689608731083144811065472102432737150937637453864036730280370106655866812733555807454370711009836135887685332665282390888474450774213971030546005158658901541463888132637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23329525295982238004128585689008936803075950200449596702419389844764623140696816433289779194158867425060063373732965079868323335039123435279561327451488552263597560398239942449606747691416599528881076908803681994573805955545322761217765028984117489074486056134192185184875989677740715361598590429138388272478722011038038737651908201641582669581319893885063923676778533940414918554223051662956144563868781266023767954143491245925190995773173778398155832125507990547371038960101000379476800419229485650909144773284121243093459700473085350546898904206428573413451544163861045527425754487883248881628246440966604372441801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24667279346933676613120409596505584905124757934844060338368021881262631779474980495900800859477405704892430421937460320751782738944915115315748952332443718715004924795349594328808588164870313495988738904424581774819808480193512859830858472601768641780279068729640408946684034892684698338739448143641448832641797767532606430670190287714212362688309368254813788259481477991447261898501239385729096542614844249966900072296958564472792309639472041337853874011910441997048487231092345265759101407802530970628787508531973274675478800376155081196877116953373145135859540988320614134967165513940610692053719831875343496592267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21997654055315668712299197707132540445404000864302211303389524980990330279050647191177564238014370442505365340989563394266125124363533371829692129483908113435810968949741044721725436747113930612779505669300295631347945202535198914504512930705600508727878695345213080888969825924715127343451232444447329588692265994373242980081402896124630064182321400482248689438369452505256212973246216730891489909622333581839128954721964382541574013566517211699938897091066512919769527230676920392559554695945108011252113374585939410034787345194809142783188519388301324484813591467008987116252362123939254590677865154448177020183987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22011807422850645736521532214031675367463560617841302755788261083382957773935229975352680462715952873677857893581630466618842490718872676529005506855705271975327577628702418529537657330686446867302172510764803658619951374557919791796099124305449691703909656235329782602202415338423135955598477641770871187635044088114937939832547500044398715328723727075531960305510949974087480210927066699448775066552786197368831285631776105381797681551069343584531865346049289400239653562107720516074433003306016545559386836472320297063513832932058025510319313101785406337826963711207379123729322560098238994862255775066159169142261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24670847381015723247097250409242110117369233618416366957221759059286391481251213454550828388761996049175974777001175185825587040231456941349129684843461279570118203814291381041402097967817548321445828019176144081122575138692290471762230019758425962793283994657604396648364338846417526731413083263892893986300667264160480138176089651000540602000461532842958574735282275404431007137334695001577702350496680355207041762361904587429117222760555327288483783962903483911613853511247813638162363001660014021605449725225079925741515557232306494057730111519178576152880109054312463295476395749841348621019007735331914875794351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28018127046747665285726688126018084940694330935542604611950499539016694952042474265834009392941500023736562333085850511836289504309020379159820449560561411559631897472557085651772164987817868434843722277339630908479623914453076707630872296339896193574702069235388543570531309589088544557383808436944402283608623223646198539477693421825039852361059700590208434655763547194055565884257323103327675454485740920032780358967878799677916817420266787245848129606717814696296830087190179342184714606334528769388566404951048546273239986188453850557448260303345776989813323967066792441224695661465790166425562713819679744051207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26957838118546881957740329252271054303689154764717467876271612829875239229025832730618685269651391533483459023941219964075849487075918056042547033935764736646839090314353746384518775900749483070092610045200666280163516861748160127680769042174490077185720355155139553442322144191193093157567170391822696355358335531491661081067131665609997446707409271879425965370966099290181753713053800286405693806150889298091720939424245306204646785317880117750179419714455337626875043723178242540052959752558483073332690239490899852761642110304780368602238505016990472212131428724675742694749300962479027125411997860999419456636069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24758946736363170877642167451502528010868765964013646932009672713040604229162252438242705333497989197292141264062263430654944478443556173418273011878895025754375846733334419074248359306537509969815071523718642097652959727902045688413844537781590048831217958147247611204121542001570626277445635540892462844371014204364138266215555840527148713274544626904220359982567949582131652875731223779332362356452009437686249523460509546689073583126518050312208268491726349571090208898973708544418305718680736743609824555159541521429625723289619423493530083822684555906831574042588128008943408428966478941531605988970603741965777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24770463483465860289355791671054500582064870430430663465117253585977280935885589208568690223712067345494657237351968604795091603699746032697736679213585258468867858033810512632882266468773107736201244326246701625595328152907789174977572579021412757660204952585107079707311194880394242039720218288425032218392813332139486691786842839092244302922088376073757247618452418709424232792390263059481466355833680367628655002405723711160862691667672504163733533235223914389522074089658884054407997209309606929856069452245655142055073846008886419846102125595249097314497889223403484119687159199256806359408273479645682641458989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24499659286508217263110840282562806758925195843077577842631927756338613801104934079938104783386465477778351230923529611313495414108683742754579628283871222498518857075017134557315512981344827342801950691940419734281941130647402717639457430395781385276351048593741976563164155802081787511058808172345407045520147105637490327069920974542042179047489839769897391993768602147414862835564620861729083165718725980051987224437113725568843895893373370224351478561005588757984985850162899618094939088719343045940927823956902218435175134846912180117095183842175992569459078431623458380153720004534699676566949974617727335206621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27249963088163512157451217292199551893416474989798262602726691165675099552196121316232341847323200901402075992850730463956900891691483337020656159010808501685628070125030084290035979607971464175439540170717031436208070710708741461298394338850285977363304831625521875659151444649420122842872385186061543371451546130668665596978649659351048342525706008436487783635241101968118486678713698995181738773280797615999829292161860720957279097755145603636804416529769066438814048539911436768031698112525283758806104501780111537718321988203700065941587057561019451494324571428681754630985625521173517787224521904953618065654663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31034861078867224152612751558279372640256142034767082103588109056941454901063252523149790204100622180400052038154137787093649496822051005598753898370129089469268037565102285735354481246940284964295854790698120279935308797669249360412245065957211148835900526090822582367890192608511760504452505026866039659139930376163536333505961457340492087305194566323745848955650258559490612031655972714979539695265317330996550704863109326245628229984804505231121019559611920959725755490872225196111496617424710957381404960133623149989699644854231619280976367918911396923534665777978965700067802713610033228091318520716085121273589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27163350635365456423621513451861557726502774699996737179552106930041614943988980534122875191780295264832726830931005602041620239609375536358203259537121190245790986660659381495344190465640839946555165738322356951161204332332089429683972343709714264295791103474308756618258221411342325679667314786124241436807867864619358064213686216550858231857149635854339651716176751010062016742404313546868646831476889171769415261265735698360588262858085350315844954346793465998344293193737708760972552203701025901819526293510468162715707891311712463626270778709831565458115625266218898263939442388805565753329652605056723751157213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31233251755459812270924903785538419968727550173556174229282299841474131302015184111151107083352049077808809744098481558660112585125629913539571275542556359130587622818843280108501641883862936793656379720658385677455474327886999831859118034964847892005176883827946782438913898240218623177684703284475869569811280549620625203035311925250384793335068690555110370821211149161116757628123194787844572878067095422669042295580378875866567548807506401941197964562264490510298970653476240580699022517027293338767977512074766367761237719294519235347052414718491383201806125279408406299224029167158041413602175826109624799499887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23590480359672167454160577377485626853288133501761620557768600168535171129140327027711472930614484640661908019335121119228213325131448406070491230468732432174141809095222121467348289819707008989830669960104717537919758705379129137739435634417048428059477299954008839334353048555540623184599775844913645013573911096799260802141628933975700527034168321101960474989272064254892829724396664665970437016849629874008535206013449668716277902743210361430139507595659309045390650649657522587859148436896439020542017821985716218012572965545484998799677234830418341303361693037846200873172165308381054341736402531411373953338573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25621909897752584235030137397314705841647828929965246617441570472126580550903088424286498551152681000687433043275833987065881585461824700659885522826992071877399728996941111636840808653566999586350681617381790777644174596982763202407964036206126311063252093228940629806035018751987659135615845580279177151167676304100510078430662017382348793137641927581534977589218768498504990876345659936921160040397742452653230870018549269425415426332067452555606431172087524565283001057882071240995755738437894896986395295646425307200967119575309366820118911090150107295663941207345664741582661578376501879965896705437623580755917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19274655222255418227439607174083263937380344428735782493588155656000286447250656311627272825689655543291301727293066182486319636005105999726301244762639346137828203331284620508261094018240346639560012929084940379519464060730208857303588405190761581355340175426151816467334394462295543936142273141935141314559027840786412724444012865382121851642427483778627071732488783063672961546082465213363657013174989964272563434421212166886292443290554201915307310548383131656770272390098261046403273507731146545935997943849170324697611252897715906436503770006131072416121674524124434875374324054400818288752350811149956434397539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24553169787068392208217734145051520376000602080984483160420343506290926407413876647078301752284735295387850168634445601583492467824548269103885656276186424749347715126937373099663581800622050107421265876527073914374682398869711041010593019534137892628927683017758373358613057611998061945588525742690287016452205609629552636073360372954802343923017687442468659492873383822711962562636444227199407307247159479456638950101180271087384817707637024998674181886773364438801145920071580190928417878676029784008777066990275829236227289434197387731187148424354531837584983118787669650898391621133702708549358637397288964396787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24981142006432039747935281487270905068717390860697720028380461094456614038940244291639150885167048552876788518587720709930530932577127682281064549003995183238101420492737468885044227563546873059333368296388923939048075337415088414586588371668164785450460650042527043648592783275725596814283343038399903962648590888412371015730909415197240160205282184699960941445554713144658448927944448017783982070094092544104900620500054690017491782743969484541726872691664435092714206922204847401898481665197612159697983750456007840959145476971113421577573694971859256941921926774362820831517402070488679312430985868628216593768709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28497242828994990320340362373210020767497893691224827999570770163337191953222530139477146184239341352954913135667596561948849081394501558223243669749299697959424815496858371361865841912598621909219664691687603387866295307646770497391281439261959154319782067964962414998380900232464884774096119378041658113443592544394183417433072470275751022793694562727417658719130543867110412859661868217999557616516259885514049414857920467705228306484261950651712242698802388380127089982589027578022151030081347502779937576818285774131578313806089966230322463567940030942894316912267577173290101097474750382320628892569785050987041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27222723775008102040228417583507694347842291771073947529411683281815627745465524252730204214714843341243327415074900379532620717542906038264816397659376566067760396388745189105207182938796752333268786429108755333619172184660186112063604179238672059644619339047898395790363149967845212247103213723721830978074333580647112142448581003818261796405054317188840272711377391972917136278987548180588422817915258120570306647716791927476518594814882930562172422529777722515813851323493312020972230091879620287843489754303078728161591955341540523225139992719722070774634192134329417296379597141680003927571553953850965256540523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27583392732239514860192191400187899728574783154202425407308272114590932420774335456934338475448232001071390886043977725158924884063539759797133209466322192741611162382894138106858621704875729670014978998003238107505175095000853787228225859816346786303780055329171742272571786169265463166690674147077490361483862076150898037507813280137815093963103509047740291656065831647552858907862032167669804810430870943382066389694631083751331635083474215051822589945412806059507260852380257310214084875729718242711956508315445091325156045306991653863429739333867156500722725888055234998199314812606660078322059864074904931584263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29446368706050179411683308563150741119403683407982278364426933456576147032381513236492519434414092189059942745213554533791198663326908258706036948788631342201391951013350313638571344639410424220959374317532992755975952959728512000159661723127461654306591216315640947297720172459757744606420989656606845937897180066906887941027216432248080362716162858215515235458542331288586534331646959359785294011062838441160544812736907066627422836259296076256772586229275538748578574337189559272166863204758424308720450945403547472393038786700368342090650744664127102948953598512178067765827237618495679501063602755854321747864459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23613373558332038408565345602710149652084628585737857701274225651392315418972838548222843820992384639947899437449600781782528762654634318841406134680771611345795045550679101485491077912346578273270185695832904638340249945663282749331032629337592191482131663637166517820450181756210844380118046161540767756058182661952501200849607612318817769098465652994138951597168319655326297422928301881608685026113818020215043212393397870500526883414600247630773232595946428372307246821005679310701156194440830043816346892457243996786937759662144286357647347223285184756151006078762785313533083973207918595965749709668180348688263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26830799908255534672502397628200607444293962507169952922909500754679035682110501922255028068196333677450323454433172258787029633603190843705461260680276446373896960859499563898730686871022876850940244577571085464861029723433564033803344714869859829264128041326404855024132111737134725572631888308847608804350982851624252258715470014424611283058595642181376620106257167431297046812704562562056624352106019181384038202156583553743025909506945898768172553708030184175082729902060010833849953592937374656836644536796742127290511601542295074096208629895958520022363091616080275198012828389366121099076313007725640483040931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22896347896740803615279499070347333278128938053687151446969990119097275613558453375938198558194947610211512661060029104788901198310164361839437042758207032996567911030238321360597897766772674137231254853383681204688760794295022970346339903463207909748848984247386670932786371089936971988117008137477739918339601664965714715441536276147527278321367871343214812261497073778869185185100747418898370988015082023808097644616538365739037829072553578929678931472466447866175414151322800563275470413672513485805263733818861360270584592966728308331044611340702056421169923048804790197157062588622703592125550992048105375034817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22393680705667752025358980096473236512266345457513952014965528852631517427437493153807424497341889658116120867959247648415449366359409730462804255243434770663345693869992499718058441705095008944551778897823257796541844597662713096576509815162353446208790842733293993238747675209499531067529512857111957297763809167274915024984770494159550520526618105292283004569288110253494269758038831882301657016759635936669281968412007539979511969728559794804757276946087846633928124742037446495778960299790971807507971574102309720091194566859959465225468155375835480133113736982425292813012905971927710300088295934298824169335113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24829922825519400202007307935585223378879789163382382271851919979088068964046852667271234002246044565014816624169478139465866565605283855114919519891069736418947650802218919920894128718540766061710604454604422451216960334606034274291497601970300951871347839601002639558421844624722176473905319095724911702927365330516048740996732201355881441513024614783395007478796471469407448028671828645292572078299751143855756418770359850322193795604300496407666276906359169179443363382299047685258577939138489515287707608561254536460322562041304645554336387446812459021526614303966678636204739803090401628245975493772109477362011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26002806504957513860576012477618303653194471908275436780520979500058428894380455332696328555935718314166784529990468611624865617979961399686555071387512504747635866007136963281028012665272743489899665235212203959689201615753611756378643501032051521994302288923479486168400362179116872339723923173574231033304008527874975621047656391049452144399947031736914801218322199842998538709724228899405672323265100261557673498775350882372504978542809738268253497240562166468687267695925489677099706483722274700378064888560126053382476752317271745614729055471285804118477669907145748827222810018375347592986481740078673813569313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20598707760380577513469309342369149014079176288287977018505540124788551740438777170560319445374398978788066489126218007949170266125782012203163144469213721344825834550850232896590385531879707560634569908792626271092105208913210010382067882469192385693516126072046502779382037845739408863164694258615382563828487369151012414947695083034271020143614940819562256826248942216308633941378506218073690504900848211465762791932596724071101312017722380255132807866865580788447483010094405334783868599275677821944245929256219727399892820293031095240259330833695150586892620663909071464551614128746883214384688452007938048440641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21970776563477653936841056569501762861142719624230673391753734530012182040330844764847853224971826143754130398012725375439257623407633914002079776169409590205369259347644681052787780105296339322254584436309163727691830449343777109126159661479058878015485665708475342991283077094367294033232882080758744619994085069087105034970165307120133101050161315469873266701525867110629286921379353277424761457690148600705809493191184791580960689406824865797530650709905422235232377880346190339913362635864934763026448453620488045799729224922246714800335398123947672116211990772438396213901065066615378560036672376026087701988821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26976293513206826919644564733838695885667185734318849634315684651324027598763550852737791791066392012426972392453026634430758241255795928836369954712496863644133305642088146927259420336601115689147062784991277922028901245081047722077688690381686464818598956645498402978029970359561479798234769833172292611303724072217293957363810915318228025429110228486335469723801518276859046818297451658008683972900867301850058642770861411889782579365283184568159221259284487018529465613860176580577352929376603345864485859130616557178623395003459900486026178856767493131201381899744057288448151720729343558813752775659796808130749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23371940476211669585514615121340168645559821348993066142767842642164221682613737716208220488666469044391730441363639020533016127314893287084788247771928369922796716498796301192671413231115242125303670345295801556458707538470727552684373443592330242281860848805022123838775181832737457865519227339492458914016134386775109573880057233369008842241105608099468669361752586520371760665693350307118914279240830462042486647223484635508520496732088636784098617681880447054114508948697712884259031414240630975049682484296394513072537309222259106136696151691980914629350731578189946502270068931955707041941917543529651072308603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24891170752073909921981646406009818179838743680911747890683046277411541900009003733105794456242189888419051625344770848136316936232596763663825617126172146169440158100207590361883755883473489392340323198748013105335795983937377930632194547942549845889182328816760188409703074101770686388725469692308381471671876848310266922399940499500063599021309307387949623243885374613160274453989718571734780653651046015537983819801806269522980734794522445244802629694405124433609626445398531602179203362984564904553714520682206135638625992945528631828459771811854046271160932587707311503645784552095331278203221697332872327268123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25207228679672658159577866555878617728722220306209795889369558500422434948811379030072289047038912672009176945500554181563725261237613502289436015841587493092104304064733988097683502304723206809321415835712470823266856648792612912063449762596928092477229347325695036529302693277309765182466852497227390245275202628735971536251990913380882769285743076940702479361831815468009676461497836783801274130539999988344414304149326601040468998089523063950687740379494511036488478671529437736132802660384808051473756803493803253694203721502414302537530488614849468796958865781810642336847979118493486028651029805285251346278489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28092049372736487220164131307236829113005378537286319685610336841837333545240180204192526761313403991225537739578554685433070588791033854620032727033174006561913270178745373991714029253320395127816452384926052579623740281684539907238085429929399491918195304021826134857395320190120758049514121882567108858831821991851402739079356453235204194868053138839337737561874287505997651385007469633457078255395139443466931849706927799391014347008039702366382118262631095963418320343936617087208011690502447136300802444237953784387396926867145180699970836318613498462378363374253989617510670111251789388228021281182156470454629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30266912587099200560353064703669155096831649285288134466475293984633801896788393823047615411005047903498359547262483995819474743662611553131534584585488190873571558487655627528514089147526772638326317577384220658230201066096153398293721431533217235373624186927504377328573262652859228289558401516587361153196236986376457923001507745723200852658104123662445066460566503852732990483425357014986509669414850779557138207936664724855415472456077447494035889831578672721955834019872699293852536309244547775346273626063094208864254025195639440830769541535306254709309231820842244370426435465175206816507257661607785959579591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24148810690322960726557369748692049269615428609648436990953521262879374906806440716686994720412539908941397313322017139627821363529301518505982751661627266244383381230851452012955113356928083430875647621971102428223722232330147453040060543740777211040117147213275645325800694833825849939762892727504195459477804064467039446775496272156697409734345735217184657946399516413855226903765990313902587075501035394243143105974364112180039629951851442499822248791236826177925032563527539314975026486300704871387855341910212201667713109620744275944703418821338044870668408069226052599087929262160802423991229325356080433283569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22602804870945208714975948710430260862573933547563829354559386405297686973847643893472618741050855541531760564212474264022799949138735689623919083794744324637318675623643838745788988439610071199746868359713166518566698200197327640556093102510772821804606451557666022592812598631250330313751893753437611224346035437828455257845766776314830157389439688127091420292242295116351841106446766390654394520126898791887774638445614723281163390064689574115444215432116396430409960771021651224260747004730217490638071529417821837796096118931494056704779054733300241368172588713656854355399138479913919069974847775966780685186819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28179630786650689396313907856185458738706150205784443356078052798424551232095075620822143530174983824401214079119490688983365827708922315528994676964881443575268077740793083797180127639287586289376922491087848621423677213995875725550204993985626054798857418815475340272656831034055642987925189272549492631835094929905144846289412353921041210535413808077762808516544751547596855339405586703837997401952222154003271218962370744527043167696539197771380360203071458137733468455476596809063876760560310370710960510196593471546165322255149453172936693056396873692961360572707989033769670426768485373536020230603283691069759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20791398265455948312860829339578616303738799269211099404401397205551662671363680222671229890867992993779337878354691662587627043722463730670205637735125079707773159137369720115472968221217374123204128135056586792033616081860690378671459212561852454916507740894051569112810229073335580431258381869358714264322808905086048449474627753445266698980260816961990575690348391528659243307785865646054990132769333030462809104141228687389998733873927176765541939080876461923538702455227824843970519746821286005516634860983202333545633100266958904952722182455801882930735982635148497173892105723091461261047699428238838653289087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26978212778986039703173053363494936604515764738605165371868995329481297513370739635597572876306117162415348100794210194753272823166475688427509858243186297426018942729165772980454577035982190846543492032712923040473664529144175209230924678326097939557777946688066623391232545767396285524403973855024112531495124782815296358093580205673844519353220137538742512596186751957967824118797481792963787905777629025364728831411773134229067247876082035913133283723810238060545491332877240768261580875040916150208652603417490425144896928398403002222962240803108951685403816762735400612916472802602657704026288465008422444925869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23343815070213058340091083310299234896553465084443937974827597403009865243203036648050180708123891147313076940562087390139470090167788343864560774127173167024118248386317211986478039484594787431350851313796413688443027550050064251888549662405787414249029231845420081593144710986633916519668997055947375544961232592704434055388772311857420890529212287991043796035507469603437048516950180384638786275762558286403971958306363422788640539650440387457458197480713334314340759516224885463701703017039852325612879019408553929982648708549871080465162555075749937157889738592522520609048334550062107249281982289222766892883533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29903226263517412582190710110283028274955460107988745764395740348410369045724685178930195678364133017943451429743128077672778765495909972805632098497525601931390254699169949692393120004082452639255828353215691736659486358188718094328091821074710225948915740110527959681882918973350520677673112618921676040875033380028679842742721319464439137693115576929763651150344640268125376896641056987274599659007742408789816926466187903057000577779438921589409480157742837311194097704029412859158418233050997896247002206958114186481289773096736729856775601968521025856304226125947141724305970848369021297785316085638302727485603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21502334917276779361734350547420199484007903001729675142540699460079495310509303565290202533291919228547446118693575644043452272057600961800043499255349014422927217098899442746457077103280664344081876401985101590957731413546949154907981407083362069116980630779262483924497546351956488505065859387838441324911053570770387475335690091999412928544224791698036990360323231944160774859848032989419464607604414789590305839146903402551695989994038281944078625785284372653986893403195140943766081114544735867445073956965461585610977968948667660387295322686001356744082398890895624538855845218920876359643615140118934733502111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21294934026306546823169023624163318959290391103207054138856062515605680864817939387016722096504831430671284765480376851747461362419607749731930227054881327111338024632701627297624878903281525442288127512683978480095650642321801125976719915787061214061848497085602109857155275316952029109185721902483673923984699176749572104716459120804936135053943178711331487262550085398112392040810216100029711566832660117287391538125769442256112882547878911421241134781959469455530870720557130608216916851210075525100325904327448048123790259105947128624192269215415722426031523152291030487625507690358253960558220818438909863062749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23112107421210172212154936978892174057489659414643212080991882620952815157524518084506984387337516165722897575454055452350712204326620968465201284180758588308492370872207268947235423075432356124816177564428877956707176773866810025916657576652255710125730416752473343297363505892181483914412868492237219683502535637953165138133580162244348855690005157029979526141481841272174041205624273955777074173321007097968296221953781043861019091661137848247908522027743792249773132215791862219627115559459166345551724848595758243592540425220572896339270511915540411095190436236925395716214090970317525111406402827324362560781039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23097447606647993354278401903039715459477807945215808068292555817498832621509987658320771888649917067102577794111097825299126456854567223500846007339819483242354544381417577772931672090710158412069348334809566702662196912329980752045648790330594013033253327564305068641879131022971728645415436457976641902990660741434589886733364888910410445157104592957159615541532646904099632679439219419792064156871692616897233808985543773354002840538177130511059358954328952578294379610015227875921759104737317236921985815022545325814913987822281064445236455003284078300471848937877568555500011589093158538064671116531139157280577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27713439141489092374195534109002073000402633243361683131850082915909777544743247189474048543310779575719347116638879717251973169282098134894216833146792203276933781543647886858776896402492377150966548865120770618096387812995089838440984563010815218597487444218882132646647132922486560027199752328740497372189123029000348519931919102134163711876459570194136565175930852499361709380186605344455487383731570655857487786754374400251858846743350061051654488976632366441589918072842251389720675798177881252752944286523465114149163616664605288117609464274446744584975117292633379820171936644449415545634256037664013971147149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23018842139707789444031802572750362262320504913129571730466327383051944448302968059624167297546432116206878460805534370176962435055944308347206107794183469921441832185179077999130009350371408764336278508518718656070358496748819951944046915485235013293291656072437714990319404624641022429148442381771125754745220423001584723591276104108884291943246021009127246193127040988422250295194865298411761123291287839033951792524133952403599758848155385806207033628278401854326668888385486376365268773859478662055009568108842796881856492718351524562805077730722621167918631947383200132317298328080896059656599589232470967167253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24809286918934691888313263616900798499477469810956564510263754714597495143478750163766994713367431546052663658972650352915804168740650217568463814378245105759614774730708752358206104967357540761731740071691472375682696590695779290462664093847039294468624982437122257487040163344333651639592585909684093236889946956725120054088744557503318942891954854668715333141747734182343224426944970458991215496191586127522519794432579841196454046754105067602609360268886458854610042779482286203480141776083666507486822942443838498660460210217110019789217430152392963044075708212072614379180213766347814715362080923600841796973659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27926280591220959818134101876075721656169454232387066216340908260299130959313270268036167025497648024906379221534454307250982898287441058874659095780845281353360239692273414955393420632008539432196610145625363038247480849092191748755046076293206872391824905229703583067355022226726556043463707781158130068268896641769209750242183086559208048009679106422379696091116889862420782803025066432164176046780391325159379659777446419427764137870579720904468015969794619805759739067046331428394239486996877455466165414685139838211340180674954594226111545110400885850275318737720459615619623628126881256401564734712562588550483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20958636585246908072785139191314491066022064364016663068981080657965586970676314960207090106116875611404541712481874450661597868225314489313654280812970204709041355644796255777802743543035519458758436793924950070062764480704926292773539448295343737124736837107903041017061166119438819059879966705767801593967153243118061707688646653765983407258276848714699973181151019458159195643872766865649014101550226751548299061705708914489359629732318241569333297274815328900215531286320988016353075390330325462564954105552759580164662736315093115374135134598405080992622322722556699920321679776447681209106222100507492984662421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27893849222651033089351213689528519678980534373561613664336909429542514426087670546924952475321808079192506443536707493672115953837089396914515351755652112267768593181098635600338030101005787196434347345457342082062232347283265594659783793738896184503482172866875828337703064652663344327331988389050685548064312920868946563003488451718941409523268184611415943688939683498130162143728369955892328722258052895852567019661002527613917751156827418108267746571805238646377908082491733550319641209554444592971396852177678754666204767168290727584413691396993523543229942894343846106648813763828639650784045185710606113025589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23091322462771772108018450911880650157625850903233903967959012871201936599436580479326512072294950943388245911885373753000319856484688111664979793703481762164401868439479346069719625939909321500969584100533931181784793140479467475962475714388536994327318802835112803702237917389752589024549293255653213680214583254055101599515443531748641029598536936219352770773487435260064573353532435841705249696322931130185204212322028588827804774452041285637965148312125030503831267184663200585770336344940982139866247358450340906326370912558802134002727928153621815772592377767301766180049358133046352218772215748695310698738379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20456647905794059920961878544735243077002945762107475815350920381224241179976836783825453592192847624384972301331361819711394994249679551908722521728143810570696459704967080164517535857676567751200682512572534848257445416043584729194085924482806298973854483297603314122800480866625778365112940747411657510879964474763011480429864553145811163031635148776916339737967098291758664906353452745892200182649826255370547460346949401956658170155127907546447820709916230231935528612371619216923322566809205376575918206355928124829052755710195455699364938890826938761757371041172084345838285888480433416157335023795834888324649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25996035561365780269279257250648932978138216713025333460727038360002137693880855002263207672871842525737097250442268523268979950970161730003855336114672844706403029155703751352050587191817825321476680823297123147731579635063045841929542780834448557203485731551333542095007694344676708907346441718284520590878393272726251127741722899799183986051987637890432418230170949473610063337531693763024880996700402441938675790701474373212815549215069478218487176992626942104434742860743890554914227248585284180360443952978411848310832267763728731656065537089149608923687243019713663233247185639091016041121525067402202651356401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23672666077092023324485344136865530475250395593137276290933796450448371136263511321753609327064555469517051902200527987097661205575665207710338740831694889236870021263909079086351627118285420284984487238930337860677636037288182897403689712156746322240220814465825984539525759163629403564198705392787061696066567327042355090678699163065795294923178071464104832272076307374905736419281020331339623323857380564861363053639462569599047690782297121006927287950236531304254336908956832210230090908575337539388217232896328561341421210683827192526523666373393976419244505912739948550200730412805888972878684238756646313235927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23446628292003116810000736652753478009490451677456257358161628602492830850909440902027375342979862931464984085216211737528986637579889982379014009898114043051370374884255393780214904818424148652506831666650797948427943483374365381559084850143959584083715459431621750879326694784179743756819037524127960949622742847968383381458627336902636316569350668649251293634989289624188789494998835522419590751670845364867318290991066085952999464711787940126659136589958237957133826225721794138417824015553475742406689918889917015491010395651340505819689769035419307532618023371460971690266833288986805964926275525995796377521783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25867494825525036063014439042876031318727835568157697364496375768893683963902999443860263417966152192457087695281454956357466021481618662295419310999825814695892586151783844976491666990947741668105685984993319160209635077836835700624517283269565771304653166144573832333498138951294864492849030087976705897500049543338540344776676874467080065515861879371748153172758344658354308913216345265042813887045097774133418579917179701653576922023804982669640233450757210022814336886931767095432137514653851182051618832049328544018519766662196448372333648345781075877152247621095968042370041439326593386718847415634160654214971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24620932177018281817639397689034139489601259758020701726562131224441104552097748285839486778460402031976579455031892316870049857215542993167748808345701500564795359057155630884209756691367620553015225404819281415317672685951768888219939397463447442069155304305552658970685086459681341902672758553481083489075397339871666104265583674962678816871224733786148489988346433524611466971746113018428926217020307146489688588150617201716767810364051478214494026079089110184459593876716136220966786567544564565943722283080387336515389525188368451519522820016302223132675893301504183454886780881149444990475608191637811778287873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24113377088882779954781378656346648223965112352857808083742849384271453332953774328994612995516426123272070008410978388850589810397921782602887844732856228335866320145502618322514327181526738945140226737751197698933252994485932188841453507057180357539755887778722949566460280496029271922268960087575867450657693099993794629487155524893560766564158438622118673666696973707802015600846912801633261545382268992039723833928317757825941896192407817128555938213804836667072478072290309300802315219634748457243161502977428181450910788459798336462757402537057791854955824067781381928870110089839679204290979099177872243712969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25811244491200247993931558451091614309840383395801011783776582511768301224811757388608693205651952329011842675037252769650855892307213981944539352609290456245788346270611998353003321623886230154403671235106638086130877421201423129054075476141746940761121984120421332717161889374009901094880270800134167932908973087243033349354111538761084975096394945587839345737791967961666853333931100856593782152475345324900061094293510171996924398969765521510536777422178970287303081971422072911016264416647992651760609181014269283713190422283876423935971500149670796394823900217706209260621133005714726496460460397933302093655533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24981402857635400007971565879125260351407808891194852700676279180270595675787517215712035365584249892213194154638227075151219653232974151209373719082071326994424059450685288192652890033624969630718498139822574376239674555338758054008001366728608085642075238822947953395101024169282257592755501568677707496147086536812137183735592499542161830789222884735104037021896967225497385452999375930929000139455880649592156098150552832106824989959258756558842742521348814775657295702305607555288203551049223551542118721532653466807370905757327724045124996175909485439817976821311304297204474326684310274230980255599218961569621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29203298533646747890280450391356760100112211285621605776300823388258177256020651883917407411921497965120926411292550341230221239783971870015100162472838872260143983047233176614209399602060792318836021740054612756285662402378907417644238988324917897743830716468010094263673306543882762357147180268688721856749413026998142536124348536845202079534265960383190021628577904846660763051778055488462169011480432568823131755353718927616222437915092271239366669475876734333579637539874483393485770456548877944675055721265788918687805085068280320961008558852879731435558618375041344011735671247326344079759809159865614371074331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20419302419162270963249042947816527786820021016571509158443204962340572607009406115692192843536050111258154866398565384286184266732590992358180958455741164238702617827260184363283942001278672386369444828822791581800605322783232411342023699691448643935789551328279108649798529530796006421505569623724795998832519355333553556498694887058724363591293210027517472037015116292460505406225563806301572285946533780349416985963157715282770984767900356624728502479584646827004315390183815760216245545116689874261484009183549894662586388369679921590270454805970016662481750784153923891562260990457707651558422034247901650326731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18512423217532021169810007634241813393271959602139574047811590813370884499305948966286095602299979121136440210345088827423703810002407907715474900937751690329480983320740986315757486498174382845704804632976071192483895534848757479237626577103985434391527148953639509328049469751344302521398934764537660727639277059754798269740294796143591031376189081631001649666912087987921232195752301699256173827175097505478785210590743060492236411695483391362490831653139309472582636925069906583236545323545288131070237069843649846432197936763460904633426210839485464425357167745076189756945758493558095706092479006497450853020601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27021305069781270601209622153464545020550562667571210218110450640534351972935062890847579422395790712605557050641058251605724485666172093432351195018245541956779418907233074642449676509641733740270954917383175331735486888081865306580871459486836711135203523270848639369575149484536511753587793237785292561075396743790979236946807826499444283563804133667589439114543871303803533859463586635722345566494624169067112889780791611351408211035764511406778969649106875929947726379080180176337781682842288645519874718603020055405337401788132065467775496124157476939620769187500974060862075319792948725689752094014860782085459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28378405083870606120771424789685039542109184498830954279164835375618641803609305748661492630162657238597790421893161410670710651360706085814357611354232937725319507568016768681383273051710642642523471192444242875155179205025227255593708264625067451053857620245966705264847328429485977621246047470441235243803995478010338301765794402208548723070095658153284445354035223200232515159760024391976568968498615316298667568108446584114087047410798925049704244172160954433623898616061582014417875696993466220189171601701342957096303107928922653084835745171285875937899697303830042739491251720615664720047936705311891770439711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22267173770621143634274237384711850161230009898879096655460556789671659646524473379958720723992988293741792595758460282626125902842892793611540407973921171505010068157598743845081019423731229201321543308991496094351371238571101355096702903287106525563305971358291329400800531936685088048961061994059879101574846902991170406987356475217394745271129195839972326805147679009973659851890916246590165354772871854841151387373649427244939400068653184400193705834550934828140161647072148977667078812092265814119813635189887458660052188109951417687251401577813723797815157187043393092710433710358213387116524786483920154671623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25646120176995078514302980834435130192453534455602259882856219402374499285454880222294780566988430005094088754041373948295367921137603033273758363852543297256580907929212001135485064353337456388191920832346232328509325023785775187065882854133730689223803469108666477520829833673190780649696182061144031523295694704523625877185805910182661238770647091006332232285094172205465129228954144640430172391010882573117214073463249695908372904455597165986276101033839406915915256129278521764386976619854110448961242104391636678710753054099935244570772425207095149716575030677015810065459299194743850384621501836104035480284801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22233343626953897228799592954748772074798410351338109297621578432950236814771456722849722752909319152478697159425628721668381352353728803771713297289648102807497357899136487499465783758058594194542842274753017984623987528066991519527449950944098089651863528591059963305609493802549311960078700032020833223297677969290948454859460400810569963928607209287119292806941831131615394242558095276893516994126458008859307753677657677329736265680422146765947314004035250879329016840307551808513240306134594670499174393189738989517163079594997019832238304297648089365417679826387325056956347866857909419460577291737265609510747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22973639282019185727869591877218862511546016657871318268155561703463779997723753355540876343903486818701367692079516764598022663595205086211292324096185620545767087103264322618477588472263510486273511088904948597605343777575503727178306039273967980956800423706936448195316483278506134359734137023660889979446098110238834136829012740224256286357932718484986552107365404223160891483800569784888437928261222493273731231463619194801590740009029945615965506243450241154683211537435790408253597759029232198042896932311822368050156465882120893460979019184835997511620988331319136800365044966467713450710634514987405157011999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19963027146938821050481449045752092213458870241626211538103308699821905316304778443868171034832924967732338623068290378567260723289990560283112954579795644042837364332678863883503479346135967736974661840120630831903543672561454586564696914543058407128619913793723538388698444497410756265226804000480954706515587612409714567146680474393109506873985779838962455725610220602822762256659625046195939732900206292420501381714578784151729776495152318339195956361892033056288746846639933378912276782821717180175567907042687951112040481070461116391443062240911297831224068589098884528342884505710729393989528100069495595153357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26881478589295897002843888941194886960544186342784744828365204554650293379158726214851293251474318984479220618690861372739959465287481803075903752514363894377762437149206289587260618651602438488167061171128971091534250227955870485164697646713673249607443983524604102832084996999385738417175874795639108647084304435164612614681363138266858990986087689820685488276920094149195382582526201552197477633682357826701045907001391184681850554896140107595314882346085215481086634358641240338804786997931101404542293212654236529624235352051729717275939157041990388714438833110065074628383188613160909054226190398153430704221029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23167913524743004082214923573187042169787468365523894262772546568962695143771779180907651563094437887159736558900055274815027045386570598282908226003981507672331667858515547134429286992272803538816010220231346707703987647464032009858265185193538601947970956683026841562080150417629890715236491966919291490407239360560348835344480144982993950381826077703886549089231856616441283074389926091911800853594251836019193583656649453785774827247362006475132053805857822844257882332718046134758105713530877954770562297542588869675468098000255000058829774667777318046778793114822696409561483860822139980550521580910463195056411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22116758737540378636056951169995792987896925154308397984060394097235807081296908170631543775816767118840958313198750787401513437731141928505169858127353371380686482076512124177425537154420942904735993068158010236150711290165830405076554270329724470059500160553504707984214925508216738058909646259663489388238487082158572180886915343844821606081193563881808343311452661342594612192877962399381070358866806425558988988379705867448720255190886715758110183359128122821551507454285255738968127484073400358430196936931583978476004351067755209393210885009835057856932193000690361866770315481414409232932183799333952185215463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25880202889590675324185924964584186245155354724671366787050195056392816838230195146777615258079691784141386409891831891513394433815554674003701646781018735652456826205724672161737199266173456345946945518229880100873645395857840487877111023066210374151151946997858342906935271095153750316932877005145862368370997199948960168911166450344023620257061796479308148839681657035788878416412013318971336988522267627777935677044770901333218442882129032099126643744031446972677510657444128714190781567461475540170719090732292834229689058275970624025919381155469314613587144603160611286838102554503510865400911443702537764592283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29461068826592477214655928335593756105736352279435529189416960542109317837360895614009055727443293591087213995280586815212693399236227449806243758212301553794878523642781178593944641166770544547334828454313340354138615023964476463945023976193064519429206609565238037790355462281799130989079046366405154961464942094194040057951610845701489027448674252427974175243404818552991305061633482619473897168504978431565540396722980964164595447700835488372329476356782835153496205817353272383589132226093672004589966691396788503467817874983272703044425461714701523193449878914287987226348320891100347052909951304566849899477941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27876165651080672267807583859933871887465267257109789889307326518477830097534269562788856018126332764091833163285713713058610857424441968075457495203614710280981937990319121502583564116541722574906956004379874829486436867285000702561807425742930702250635318128813756615974696671044030514964108040049016579756222934459282306406474616249508712443287710796051913032403975723765581946392786163038156670747678276295751587056803477440237907462479933187570718726162778666100296350576832811293293028499690178563848246279866130839674090111691659673306466252077412494058311057572677789009249953750229087847306016409602300673207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26036987130556361410476285672581944614447520444847049217190857909131058941147960641499688769548806976500542125268176496788445417235485974523689655842913219289524772237946545336155074195648347425574786562867800854767887712769145102725076700914412142658509373868839417184778986506422840496592948662373670302419765458472907480471345724356099468282519638170608750598960051864670391542524455759523298083641966561275893315855247657706843099356950766011273983599088105663362294257918573286054040462629918027745035048680675127686892010625139921431376865375192862437933669724351372930615486290843551013456546025222650625206199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29123991242435598054758453352054600719064956510337227225466189990419887982861063822965061076589101298046419821142376302900943112916884731997230608398533934433755731619534991210914477077761773311709393416583893977750902658880147147140125144844069754213972867276776002303246096665587889902157242697723108380044776961791211696617183670970915998240074208132157341335488920642692157248383990753884163018832598161028149654456580840947973413880160681564360458372639139765912851669737294761750072126197709985368486986501750406798995538303200066260934209581790130514176829171171903030933690301321174501546735692040831611360697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24298668023473472361041213853044211935342816560795051433158142179912298526512935536235365252139402576218410166222369832613734506689699039734762052139042145804426837418828307913010018368710659625955456949491870617047599992564781503829194317833939531492028553420098011096877043475572501537184736051119986663495047547651115745628685586356157001337814373540232470122372117511788323433270101645933206374622786885868870755717808910067403560386836684861787881701439355194375651916217716446544763423065170608972972306456784704637081220604962604400760316190365040161796704089386153688345627235966629610396226183664614630650689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28580358798354768478826933271142063607257481779913099200169262029981872224741920759214806180034533332744002533133007719999047621867152687217050840936294190787761855055844717392801953841834362075891105705523678363573481946236478681882309558472638987383816833194333800607174302285020918051924942523480802413733052019381864790039059490894372931277099590875484693304464765380639180684643983408834761275686303830543989683332845265220763523838155213986304237861996876395793350728405744218461980268105814608841037991766130956671923932179304763798866387119715048695507129147268108335245530330828298108607729020332482676476269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26375785349685678856838862045537307727259656308179995897650621534778727768516006018588685603114599983858193846235977370593502685287710853669702164121917657945816376801966300801105717378823428011873145519424814702290166038537535723217233542443684427601920603412411308649592264000136459644521216889790985089256507711769346469725507537031316765182933365494101729522850565496755904818644395233842471815559151610826574622734851875233456180034373446298358719157652655300117344433298838580054361719895819426762817715673147980738922982108931805437303841192511018447644026706063225299718882025362595283094039674657178326654187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26745635050288543572586011835583694378458985673593720755591923173714693115621950206651477547484610920977710590665179769962076000257696939859312194748170581575163589352001919440803350146712873789406835763777567379874759566444879117058994443986099068301480498547270476989185065262670854412744419614000194143428498195214210531324190752022451745172537677605665021886126416663469385155075933013703176668429509423114591011802252551470793649363025926649040834700246759852029760732246878661978867033436355725329800077797959587002415391607512695903256987624447913263401805881592756944657886805126794957840867001229335482225927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25325323009340302245804924747091884771056507281397179794546460830068048627387652456009524062088619449072191186749481337328287551891109607120239563761423377608154752649060817623778708992810404809266247972427683984049016400350146251041949250776066907939273666358623848629604866188961262552427280155719442556309330868589642697652903659185697311341472209952819761708375195545032445584436443993548336763647533586549118125759517746154824795244595523678453208322114076406949620407311248227412301828251664066314688580655992066878689352546041843751939181605313337918900830497286481123265453720808574231206807040320956998169449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24233038704628768249026498453940720445841610136468162208650833146650939542396888889864819162907032445879876948896735092290681696424357799373758772929893302574936529828259140379741088755004281334482841749427274802876995974620512328068014422132689527759971469482605974793731146579270099330570998120873781596561647558672436632758259775837674159988674017450754228472533908723918984594528084457157840729674305991101215146569185076349477147426082482758571080250709339768258406798086560259010940783806818450171506803816081492255109860005308172378189125894410125007074879112552599625839187872826647700619915294401085831913683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25904168930510956457564594089351047407586797324958218578712034377142174459111076303845190378712190773049681763929245955275270562892854907726232795453997314899540320712376028989005629060266859002581707676800624920200987114574936975870528048202287135544525308873344943785366188675706377784667554331319591583548010431108117984710913969469338473405873465584580424834141706709280546270364872495051949727889022275890994353006437429354826538821403887368199186511965123447778252360843790030322105087951130100586662510881920607316414405814191755525747873273126268510775442985235116002740253046967379870023515268307425107998781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20306404887796667134511542301084205695525992430114417619807928217374824874370553787267838526946871337697773581378632665630928742851599728124521369548364012053274108701488377220036171535116587766225763820287230604874063130593125094107460652508707345219127255567818281221961413994613278968833478315522800565456873994858426992634973768331197083687429007646784736667501975729224228199068910120182856882271259615328289479643777067818160497524139968731251188229733417356903686615771148967498295600631497104645032095531948924523671164155580210072419278732429075074922866074860663395762985531622438410123699249859874758855219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25161559688552377738366402095150118998394144278139057469425284980967941515376192594208607771290443175407546672005750166576805645743082736008604057383074022031531477261747488120262827791907788069375058818742483357159415427405718102252879238678172687959923519882748801571757090779745058109784100744384679299162100720734251986529186750110171399679221167763642501255585585088411609828572402416092514340755815925269895992771705982392781893041940839535066619045471882207927542176102735466505245863656174081886427628593452813290600471532537622556367442298073550461959452535459935917276124475629023611330204249594436010463049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23969768834196624803878837886477789604828708124121037820669677074558917911380760506262706734925528538027134498005907849145744258483702017134697046742239140891175949386721881706322006818767430246920051511662339590959278191187683169094528314417414363954317387060676382609995045538482860710127024739145042181443351889204789568439989466510105454951861887606330427851830707848864934387228195200119970229913699982728242757051252591578870424968201637891430054873786894158848719199674572942364073703862844821588691111489370637411064404259421303851942993256378627420034210603686113089024451232643949691393269151624674193277217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27914228714747159208264767278796936836156055123644144558851133238023717417094550552759311837142991564421195599075098726143758612647649007911320793848198843545584528587124171621512421074504226092197232147990010861716203981671993352390042804582549366973348754784846947359095527026343678740457818851872745440140829828039321993704696599281236726642484413957359836112448493922859274296042389666967503988423466529430066297580907925810016526784148284081985746143940765299476839202758317599234275959078145689866869247534241893894930995926984176418113629515289453568512268280972813203093565249681227760145338387411671150640743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24102411251672614507177559461388921285444936225695282465942786343787364903060202063925243709255018602433759125971341157145717800584105585930515143807604896141044326500050862325674057000072371855983580446503830203449630405795497728789186277515322617059355688764741347869928898639086583699373792987754920226958869292380623155116362521689876891570735039250186589979322891433667923193296143154616946995829413044026414560239764908648639324712541251157847057254084764857283036328689890446853299514155711982691043226320563577774097621688841842574186058115385822294972853181872965109320190755152036029229592103641537688064091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23896478231913843779566940637587838232176436479179679192757964523296844854903311181972943809690028575844111639335533635160299707911515122615788257325958610210324404198502837953479814319360678996172110586054074076618603978928380615900393527198188731276788227292224011753629586496173881942943876617437860912383030370287591954759333892257704184904538169408677357705891496792721144330363330130651670432550184550843669535689624155389119386815935196292941874201271960124491695851632018822780908813194294009532362065704311965142950398907597661921702027512577550043286863190942976214357036337097419029009840877689931252464953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27057044802183162873988588775507432722207929032417660604056324474638321124083486453861460541907281962588224567559541688254876858688405054567546500135015647263469690048376888758745951972428245921835121259055758911181484381982236674313402394313069633841553238712372051240462518370037321597640154889564272618937128967646194752031636017393212372823895110147346620042996368422158048619772674414420944058010474561962802227742754740874624466566134700374123550096744218250750827797418140226181927240886061503156957075600543751165469067972218816803359853516581245243495905026615313201469498845220100509378448113746901048455217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27856926146384340804347371214646649497785152069711881404588951480408459421483386138093557734658927432313146925642103276030300250919403662469167408702629044385597561753907241537373190402152141584198704977821105210248521958834128081944289769642846205556496868152430620959479174280509508156425993564951101902897757974841657979035581760301424138238047596280501977709176227543650680440605332811070253790515026687311665694050073762507859369808568457297263797609716422915649635289175179141295537911564630085947853439651756268872336267358900047374315069504226832050679567448929851795445721892484418720606106913460998866166123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26398564079165877180441200789287969654287289044696750437600365006246119102500947800491960374088671976237141012727818514560886074164805180358854876313446807479404525842760486949946595045160916318490697117715333621884357467716786328244339670464662794708462034604886694739920439286846358633459455212039371981422461744884776953980332738940470502022968904298027517912795537841961421052054814360344057095203595505538277618280389487998952405148160591053227604632786661141633519888009319633256428361990194387879111348247699392733071147024570134226729090288315214526908812842184450237617174171023449485019404372200647245828671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21717142892539362120539745361285036081331870550838997127574148981620398049785416727887644144961143091134966016825102502848002759323491871121695996683888617232936789846904754528166174639892466111109913437190670608939791368079313113946209744218407506355145072450818714081349582168538678200497064542216418343365273834167221760832049775640149308821985655484997890535969957919489932160253319421186876910548101198840681408131882471301335264072712250322084499240159347726707042749849159122392477060841562928749014455639408018815425646560301693961027837294192241797848608755510804270590317318512079817855532644314369789781569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27527330960468865991705999707696886858954040453521232215519585517308276776943710699628811570437453182009847537486643529084114061215210205036106662196085846460801160926129517349569806845536052696916081379340826144393987326847409405429723124408536087646438675040026842234651495696476659040159886870868342561894680222863591129806162895401169767087198944071899500009358557243656323167979896428618107268275779789827883717326909627853041050389011294187578774089105669599848708497893127742970666501792282306469409594198189298092387006964323035368985721982296598819756447983481536122674377405879869834807391159282831823487163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23265908366240847108210049505450928584669346465265761725015409533126686516959615378153748390153475010823730662253833608331376744337295971312210311506943310131441125297746845187553539438838065184859530239188363139860765749393413060809669918831326409370777122717585515234562758937026784983233511624223014788746891640381017809686935500941081746606365385772855618354312716033101976607550663304276975809292505439698935064539659243278206544923258240297823949279460038467158588380973197477651697314231955982651898563237986534131883949721199913301713093343340161754324182214105247708560263126267968354902116625050360812026353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24805230952484104293607394672583452981809645436140017015505057696962015462527941498447036847937360921512787990576565189699117129376026646687950774224214019842928691625356838371918643790566167774881870624683164982566258553932889852274888737187381528945224691795325190569515212426171761238806593098755819339099303781253671507441893353571664135279597760643117316668794213181552088045018196075002477972344955386533724560239429572849053699809553332813074657060650352812334128459528573570221227084394738727984880373957660058400740523507841915505056133588369265697835393420474792571721653568994571219745516566603660369813829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25113353878599263378792804626689938231582032646656790121746401145682955666047124776312253800629415251563899341348039267944980784424483873023758138542181323683411724050207600779868652085918212733384926363970437910734647203426678441847382617309788773346863053345893255643216176255261287541807630825457310832415974236719430785411674047013855874338772961675894070354683045070456567555817878740382019504352715820992358620811237628856776239997772095803152482759500339201766179560169179885354604443143397623318574180798573261722174179753665504152905671784331782603692561004220480955465273789435522926924004173516405742257243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26267672754817440759478357333179310259350131242299775507385933066952656179232723473911727702674527288134693207840211853415311974892039283912859327657021214447267856728032702375207097641635724669822016797668125572251494781128132583016299678314769659692484350091072368564982800270530161211845092920597992581320118360169201850136695259934427133855514216259452032035337883951723497140386228073731510764956864772546671331650146791198163678863071977076614877272164313908994952834180048195166247000612801057760372629627881668997217652050044376011650230367218710494731967217079844400359264444094305522812319565561184014814789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24245853162646507538667431536807010081589773450277864832131967943393723173721915531620370664916541945704268580184333900935745137962915455638200293449256119120275322260671642714909179435937978334171586076281431881266950132432034531695107003869269005395641950636101512800971141565912110878806367263383576532951602326331501031272628132590769817903312254121639003632909650453782633610384818833860795076449442978532752621094313200388623542331428088930645552849069160968221853120985376315662480173090240683781204697016310228124767264494775894890122225667504144580688351192694067009765803156024692137098535539945721393557697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24951002211077081082367206649414604422893037366168163512042647320695513701410535727854520352703944994759240854796400473201255458885879130799958849223764732141173752341762417471744134761854662012634363151218083306047046332892361118180269880716142716894556175132555639321161111544590806395772310485468864347986600614096191583571032859561688250336337622369513861007585677194491538567858456743043904216568380125060900991888295875292652590842049750992600815988953051360517786939715071621580310118571109937050022871085211960931173419883217167274610235234956624366563123373732534344257000140220659911991119542087395831044033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27421762361638685387469087241401914649124820482658899207873161977171786941870311921509668077398998016791338455374558308148057975680535081499797340113081081890532690682074614170196229726612609605252058605539153275042802873849304051198712288366153721251592870747874351812957713388695305274793831114357222736869220943547040280260856805646293815853512483561374262330061961116671945420882566736631058895711207796490097195335731890505747914621282281103870304256170820118038719996005559219601558448400005443242705915677617507054324979939321933515815740875769015986535266169883549289206579277367484019950417766166904279189747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27813789475564737429328306298044746859141815825138363927142906922197651916475451353151851367215751117459660548928305270816174575714822920813028708245775143378470709588402490463326752065962767270241226704698492410125301525085377697024005508272941602773250028188704826320674306663860121232440770713373024591252331823409829659501430292019576616913513941479325153459711640861428586379635034387262821413474113343301275014134888230226055294604475934807278428228399848210642777917015150244370893965679801974689553392573115461004681570126010470762331388893806146400081465371511230398130315284613670374107484247730353469052779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22091839709713690324510341264065153900716580539980904746480003111278422921410424688234527172582560078869786293859894513284376251073490698510214272782368612160222656016220620608193425790432860392374287134423862462468443023633169632774243075307994921180471477844411252750828051379679132806393027620059579487738337854114205084906772667926548419005190114212916613483935190531937238581033717450199626215587552369177011920178442921049527110706060466145886711805868053707871460039950110996061428484466694530814692555365454797577501970003722245325744740477593943255947036395734279597343002805586841230232191031690959999169517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20164897002582458044389550849347571487670801524039065222036606796915144034782946162971325013391935779305179300510674334942531817601521653162159797878976937117574860503631337331860638472155575765661490581359081078465093141670814541103180607051415706559031039410911860223963655355357324072535514167778357331595333395326981328230081743675187279618304817143429473594017142452325923157442278525658217440994437043674940467939207799294422551934205837481167024175343361487176360956286099384130177223000369623601288125733810273538040079936623214636800761720164557157156761170677044401167931770916237839965590938298553804435923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19863410597493198332720763653871018750153400364021817811623636211504150561828668323426358245438613998186668883053716668236314738351912101730505704366941185971454009300746231091269524057381718705230515610608307338409762188358874439002674475737522756703007928458066845113604076855047763781510061514205825294344431666312015158198698252718229478117493125158334647670395127189444279169800605904547810290016804640916588930609585263701344622031572170142540945646844653931391921145349264785074513863864678671641719201331953392221330073789716472401962317320461632933167946947132014902405832472286703170419324225788385738216129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24973437397377255985507022664774815906894758161829738500923441088894371555658450396770893320554643604660162848096836441145812844998984167609296076488510049939797526391621521325318819303379198159717902102429105921219521456463478199762245871633411625242999839161172453088895685362039568818312008335404614084067152304253463170844291670201000798199248395743086208599443366886023942986424792670058117829033123358513921623079839778600079538274156105980038537341625148883520461785430176065484812319274246982053672058617477775683575336540039900106459034390228476785601164666405746133356419967037857680726857968112615508488963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23488236380175548147106471892062311554418605094956220319295817684047163122151150923871419658348460273491086230771126531127953519593465204973543726770514136702286209331286914256338817284618687843078124473613683062269165788445356665994487964442655893317762312159761383493013205720646860427063226569856347644325259976053228946519028277148069317925949164192054646204283047268501568772131842643441324760140723733146046004519021924949003231258570776294398348400791871127944621353662834372815017063745890535899828274364445606598996802861551134090381174455023182090199369048827524536144936093820669797554572160681561041649379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29739179255418859803037646596485805360488551928726397258911445384458975532528962559359660372383796054311449896248697095378880270531042130703607094317033426658211224287004198859480490515567526227905753622895088904899025126013084511162754442071184848015054818045391393586162915597789777478331606494029511765684159425978918957705272105537820834893730494388483787761684464431494347554056115480235021400862352765613450713417280361088547825607251591809881715463098640010746323058309709266462815662504500901882701556329594668150043346113543186442779030913185074209424628320960219863461826105310888758714363178996249259627889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24507964308868350217530846596162380124578524084365479413725156976060067327353655401343696909444997936443206553109594096339312423388826796558299426580635090429215222317053738872387825682662413075001417415529352651667124523655189373446109546729010557316559390172606191175541875947495083296403825533500730104651397265189224026114085819228456006999719037004530054848632832276934706866143704182576617046664603916897074489646623500488502365893055556305840203783417745339578568762178292677959999322799096886516762303462495629012659058560083038731065847020891844178336099467538094391615368169475128374335518501220287378979191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27112704972566919382403107809741912167565590938512714464039953952233360774837619237321343410217667896021406183764752227177002493774087959633026802767599377504286919080362761781757218252268684895089112601516165306181022456726074634468486422313367742237351101763259940618267263533837352802185116349684411737154826529341935620258507532822208788336297341307827087598560524123869486978467259080035669877719729248800871423723753185098820225555295266159942189060146553740740484227366493791678376686980293423947226220211881566472516593809411254376606531542992428656350257678988957436705445586951599709383636702612508960078523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27447782811435239800646316568192223709344062337789858236887089896291432700242341669822382879120082519327201549541935733856208079114945825852582073687103634228499117070900671318595973421926053032760071774055415403041110902980861293050109853947323498586833224493110880737931837278038866469732377785446425386730936772557867253513780032596385048951985264925641440407395742770336126591123582004200119909111662987811196044074700906817264783053074982317722091106079330518207435908122732945474771365834814631760416756755807867488779473982849837635275960134744855951470331301643525413279472892368189085524635385862762827493703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23378323780146429152033059048604258609789401075581137939423636410770041579186675646895529643614302785660592717542247564005324342436690012099915694549997786300254894489325513253948543981597329813497135564454416235481098995615284064378433165561230500510846928748064379429640627923915549590840346436664383531186405398847311573133314261978245580988385000730238375981967551769423629072427006544887537674450992870277081261822596197052350700429688080695494869841647529488191547115850232750182299148892728353630409918154949934546417637873700071464413139360936579039731591203096987448300767064043829069764406795423979947085901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28711596444321543970261777268303700219154052412614144249096660761120348410967589530976340551709394282086518050905807702199461166065406193256645793196833592951727956138426019682206808521730796475957041721686056791590771702045412247195037802469930174963889614814836649585115376800839505640904329200252201988570442581576554830132938220599207750373297611328042210170626236768431000192989332062131482989593465779102889847788240662454418983715613439587988285192485541484131871092580218201031994628829766020034599181994931348775697632308709649628299872823203079408771461207536191858333237446196187541613373628237634581856149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26251258916726027849788738414017908921829889712393506273397919486726967840923987274985934969255993326269900718600579182949635774623150147779105298892559687811739839823148327556156376541510772175311348210861498913670173984792288782077001326571418354209719215453117968931091585674200200597475783954016360305526200435905948592311853620442590979259368743330777155852829085110963588808683280206688662752073111261379329481245506773301026668535087990842752182833100032603053077400014189870141767240627167752113907949530427811674634264155732831733069260607927484498693337481813801046013001284705341194528580909571485360636029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24594985943947391643672257817249353767284488348486262825787326343895043199693505406624479567050046459123271649836412368591445315544401408038405196480403786015666132007709107912991569464961680585830212470264815053816325600590078296467368297256109191589595725753453302190550514093560953680882154276734762415982536329968558250656635008114184583065298440635129968077695258402965805595673467331794518474103686101652852754717278442382797328379213398670068099854791352429209238290392093833185166133395656718657793873264960915342956332801904716269829452336670336033011365941420703426677390751123637060696764977848572796534901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23871450228003196319424135817254601555278790246060512729956254797557531496933903791784672522484808306985353523299220927257722534761407531923620391016476997720189850292734245761886300179928432400679871015389561218013050214149723045928032965788181171976112838536060110313258859626919191568859279514953065753043509027431862550009895042554662231750304509607127942659751289762777292267267446196359303239100748987422836150502779358933352145635491643879567686835653656569184032834993830138712623033616496836644240785447179775442113720347306071594448456066286107893285927181653225559229497944324066771879517562370079075511289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24129066581474216283667531333426058937964047282260186317755157882828435043217392063072443851321655031426597747501621230090475272275683070123005850327514287725108624349011615401211978354084107731705223085670321508892125146641867633858925794311042067980414905948167064871255446454694803347294723776757708722304048031337540024250163965467537562257730521322461280633437111350552907017573100805685642457488864523838683147891470695875076346373623985841802602751358894851586373464028860050706924141958993728208406524639970161577101182684853577787227406648186072988744870850047238090111801285150592981135317711820237577627937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23478874241089337739645580196674076513599701639648262832135809146597618849313849500290200094674358887267944965716553484285864314633567071448817719432916635295794154891728172864633585588417019535189008808593029041149910690482037244349799371708010097763397386586561601637042828490444215541160034336670716298178838395420497531182173217105897650100473702320871791946046082035791148766558999063322482555254733343786373124162002377958691233015777735427662654811745075014075576498372041748495236194436356375034545346157134081307775775508952924026533566501463812816195996821470743387182632925813988364150481147459057026187071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26862610646506842458438356403231056699742228345071811495266734043804821858992012797906735992530366587364751028924127757468211948610036027025993766040890865909045465222748321337182646988875560205446411452579109748735937732079631202634120634099533233304997131295828114501118724614368006139848385528903029444794483917713376832644913131809950754380699577845109466530080330140834540776947009207338854202090498669974066999910329825590355739306455675612331272489719472505009988212402178302503239526977151505049305623032244531807369045173413663344447876569421100564972373229653408815499471514050049513527221624532386631542917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25549484791575239824039893322172089767498194273670062082625926352192456748762189675145957920138205432051156730878813628743326581961730420246133536649210978297102673757582368704907263743496792855323624781826006419720006947151196932037216980143184094774591779668778869457643435967112461441593134938355287289826243276761078205288975427775494649186277329177249622586557354097516694953132749874662454011399562650521040583596956125800491414214783527990269662323834673547161066601149534980956160870139208332624154601208726960402903515796206951655229443828711466179659144621871431569796645992982710990270800937668578882927567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31046084756537093209365407803812945285018142051622701553982049877456200486302162895722496011577754887498587408702577856239970513555514887774455596142730053126552103966950313994214749981413424785816034929680104949211700420633874855157220171259670432796239583732117092143642958762588203250419674185647320753719410422656551318568048154239788312884124804356304376455616633098191897072499468772023654066304674740585852944242603753057367644009075060179456029822865300295897348659715923502469466059435693230646920563600619554057259270085934607938707831917437454872913720583870919631608052078489180968338025749520205267624223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31390640346440882582195024581794508877434438940703949703995012857009822843966917345919447854656133043654140068829937553190926840274574985557922438318828468660059830917556808866324359007256926064384500717356541429546624051512665664476938124910208594595591052426929812174743347465597827451820121296829753166560807118669983603443478736184760545831009467828325790751403239693535685066229200947327816131955712710400929342734693713313217697211367305631894434826207269002875209695419963660016717251717397649483620238414528456678482093438188163321026093280795582229861389299561429869277447266610209738202564799832398833896043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27111727418543464779270630311763149507162023777150030231880962612708992032053569769223063898976993647727423718691519320843792754795264832294053710951292995695947590211399474430634889853339614124499574711177754747120633914178423547495193567552045246222019032302600519892487751052036354313523599393408330746723395985087692363705682305293612085097920458342938500893146249956419387247258291938663568447674498075833503777837874110279132514188892740929282415838616186223561323686467866811836629432843923956466994582609590381621992458687511083019202381201381217133779023521462799051161737312059195435193895931358085681893763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22007493655282361355257071972801670135540046456875356991327983400742391479130474967980900846702929008484572509441980281609002561595255393624466768406964356727605052271552004969261953282596863708532386127376654923067611872799680041645944101627120237084898286561127937064857098681128986261358648732869072724317054136493097453711976370227527545126035925441795223093999125038680042413368870829132385086341709319567544526696402096080551414056957511201304035901772510886359255258496861643851452315530194890925844510889468810680231146074727464510321025470144240519533618738689787150825159700352440774599713699401743691094473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23996499306427520862774111441686456711284316107745659531629328351808644833801928367223544994744191482912630779371706399299325315656301357100391784903654756127855131807569197832484669227722357675372447474710319255981712358999027399754104838490511091149631521375121057009105118747410496580809370879580142715939341257177505113219244894533844225329042867876549385632868185172327311445280395624410802620675115577888170217593826601063905257969896663997019800200390418781326810121261970710090736425848822125297087498721953988550329386697699451369428587255522756539174375861793312995965424609937294602076568706529767810587711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24798212173942597956526576887288121297066663396680856989043174807562508759330890087319968260469170007626912830826308581757191883842019866141711385048957765572253370354902358473185265757022968076939117711954773907499820570279527818690659635890764969840044373677914359489401663394029185322456978327116121887795805782542660417508712884959050018866400940398867351234351683457583297079333420712364621991691100543443141030007248934621479902689662797360666437076786632519188060771239079213382594658013547693823398793740857802339139535708396501651592887687795381311188294990925338776617901673171173094910056389312946990987469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21835384968216283236701513506965259309382247671670788631433877109389575344110127202751603223462432097153918497519203574462970837560117057989926118547216389868262163922859323784891502633558838254292689075255265462414892598669291892445177244460796341342122708453410114813697600351797848046854137926399963872978651723918190914083236092971575660563988075713471457081921342432813652616345300686632040529002645413601923385963498516010489199340556026395350463829474892677565006337648825851025314618024276336737273811582317983252341804863376298212879247747584681562365205930111041056781670787346885991417347832562683749185381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22561274993570838857392525226797923500543401269601527044511089329943043086162778365577257891540109304874886581023571264631498702294023244420057604652413000023466405096228521157512817307002987978205003900665846310843472006468242166327359950241886295115553331448112971237419204991713572544186003292785981118788847676809717533945765827445829226260977111815890354926700688856052370770510560644738043766179523158988429349019135744428367367501560973801761876126053660373816696987363854552256075101811887827416935951553176226650765437901702072103323145324588468564244954861339120419803211215030522390247627425159691469018299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23354775279895002712456376691766056585600436491522561375238691009334483397411531792522423272348573337161922675404836558416332773863958269437409757327211499223196559752507071085544146772310303230106333295483760839103586034033017637187467571709079732548258710104905066888332930771574333859734980908519151361354468930943843327938099928446605447116460806985400932545879473997798872417708952374267786450411386024155025663433124959775009490317371408818151005638653769363740424434062086276250966850053328611263568881441304010829142544724645219353714653589438412105395877538746375866030555592029272689219600234432683447522611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22917670194254666982404321323089016783246607945127961715555114393673564987233749696566367894547741488734189680883136770331653355068313758216609046584205880275241455997299601246844292401757907120686598957045545430320016685298794397085260950171306591568899925621933838017313813812548003972062508049672438991144024260631759307484794669470333550497942317855900470391507767944093902502229175592604578092193678122276485813907336588858456862452694814093539374774220246512760706374416438536222430656192100737373743302520073998320508233545495157882169230349623245167651045646779989684508598840884099964821723766702795444758497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21208420754488115950404351264404125249898969766282129111961294253331118990476792068347639315933173946037726183000271006245620161328424139409108367999054768844512563818215848231125320042502891737402847329712009350874985753131935130448352030486142547355253033235084368170503197276859441575458597803908721476451469671655029823723878591408635400373621845070681617068452411164157763218096294510193143811489873299956053502024911459270152989723386470691994658489524461216682402584008573189462546602797633428710740218521764917834162725920877079321691597238278203692965303727235323314954895110383813814444258948818452308721541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27321419710177008201458181387010516232625295083562540027483437768252076691383573943420117340469357777201703847384016576550945471990712290195358494851084591505757488584116342776367732228068513756508126199433801642662261521071048576574727887883050061963027871011919097978330747634026384720955697054507298067588933097946724653074720511539653665075151584251315688389982368762513762583754378326752942103285001393829527236787795370035428381348207260183874588933293329536099693181592013806365252390462289739154763410196412734910015843848566377380993507673220096996147790111359530503721345427900392694769320380491309972214491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20653130197481824932284676773561387538905202732080182466490697827809179058417546046065633289262159079514994191520281396732525683364278747591477847768899903705496524891524015572788131685335378182195638940152028090662539902962430285707306184817801710422694851293191986091229095902929538084966381441632951193729556534835440686558668974515613204446846846933782047695110439086600970040357506935744063427876212988024084346378593186204680671060566972450719396750729192025551613547867760767199169476098651889694709787694824202368158723244917628382637024447918371956267266381741750457097163627482475266252039121281630795766011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28101131230179012198472720551830195488310684948445432415197973760818412308484419984016129640471644371817289417097308952317270327883769450817945956435110267390142516001886596515840933381302043868464418369903897019773354220037090370504194804993404456566185295973236937675744587787390588876984357880385817143211714071174068344727501528918236527565072768814351713815975710369217381549168028459829679431893309956851951377767284736194647219658393854706195203555865419167307884261008741288521705664913807298271720107874710809397671834291433948646353967987248456490363747379986160979686310792616649186581301077882817022061087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23478157208366252643344878051992684984532197934427059491616804026200903186069156030147339895206409276151862659354198898100463494044345202160265443121928756057715933670519653084552184580424594008559901198807328962724813103403159514100997481350498247001252647341980476862899229828960269746655018679369131115232195398681212552795674197176303830908902915616829559269717897662699837499525777848395804517767625799600762790079071221751727847079399844300236385752468513735804374598937515691392293651311729467673660758937095342604860850367489011509833339085075069516090484857513568108709695020449909850802288353186460788508193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26308484800085430834204379769178308347108967912238421168239844666598289547065583014679275132463416931033741183617187756188796762157284395923945677618404849628463595420114526388662454466109772946318595165997469219606585393828105239204292724618276595243436163171127389689687222737143717563834703135863843029785025277309365866909047292800342969519564251845836178208153018057757640228112350500498718866764671282891366565852789984349250001675884287835537919506657189333098816548525189402995706582031334263763878336442677227597167685040496738610983882938156619832555162958195208220923037876961483733585647915884015433312959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26579695554516466784423105573091230727231394667720251086803314214836882139823445842875028864556277366187854516523830939639552460459975793608534941422024030693687019217257512917604883417497326955598635511799590222692162347133568709720979295249046473698037826779790782472987571622366239810001063192117439285502967627735881934163528923512828687147254362498522145350126378768810347928458691706225356487581928657920403539540974306033374132069987457790974640012677006953335680179285572299067011164830138482154148261694407585111000414177435622140370359018963750048546980960194335233584771031018445100925433480371451341646019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19348098492670010775972665845198198525466086036728465364322694925557448244553543384432374245781830833573747969166438318102791223794915528319743255692167021796952486086131048511676839146514930762617840331452826923390393326773342981567783337172293119991506076672002957122588499133810560012580058840420217219386147601361971014441684710161783846614609103031408602704328126438421381605816656286438826598350323499307885382137402225643970934362363005900426678285590030553385373418039724541370223102831387951387177077030967497858308170568709121028000844883478334907067750542880367415149800239281937273095631648141271982465509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21107906850595579754476705687959665391642868402507705903774162962603892206265979481945565654259837066327691737015146392240910599452231058648301248307782777601546159718972307731117800488532591934532021402741824117976141019512928664932991220852281069374868199695916054775020480801243608651427205553145436603918355755601554866633389748160078082794822962715630127960221668280133313902706211796847476178941605465484884267942395046331872282019927665383131156719020550414598300053660555248642540202582478772062718887017305774132596819843322122500493034658563582800802646969081888597039291339366676805982613534596619397313969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23738976228043513952082053932615443438353576848884122722868018106508865058464785563404546372744529564537806338566869883554689553427415531303811898230985688745118742749612085498194101836861517520695352026489018564706356540289995834475220461005658381744929522525913985566248099095925637839952909832431929156308882485456301436018707635336174050636356443163740157068397278696819372610995788237709185439474682086659956512318626934261604561172413317134863308123131245207006425415791670190450479047313299945287513292955906790571856469465525825420669709978389636824028368269003297595599236655322374659151117147008526165739069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25595813118630330581398505645194370354471820553175889956176346901992974833745899890936511631397401350390039649794526252261937702488370637847298024795168785030529169430341106203702775501738280992150237803301304857868344363067550700726136503120475286975494492865535507523223012640301214724942143122845260945395021658016627581366364694788499771293822744880624908077731437293312989034412683363849683690900723799771973149853513641374464706974197689983004321768140111678963696638107582011142950457059833042777584042496827186269860488080794990889298376596468537194681996531102078475970199052689009254293762485866415153155941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20654905148778931507317480375289245152666274639145711645148382419172016150979083806145818056311712428545617017241999976419845650258332372274812287807442714995300368035707743918931308777726736187472561005553177728843665019837418541402110883748787876271817011770557240084935674355148929163166552927903834263591137000178814851277364900458309233098031935135687506877399772275128587702505957721539335097861612029779671157394455839790448086786156554343315566323136364129310247298083571602073522040076231258199074992098364891474610771583132895049850818106761254710712373395973002380842999537828952507134538252335474000775793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28304993011744827985433706707276802648848879187487823344209720704552951618506770053264790399318922631758293316118292100177110074861113333116375554048654340658137928208694033527341151213025963191029913033720645381859106165558273484953533585014781137560396609006305157803816737477191506324337408997376045281720865435540582806334495321929076895206842790488201510075958551426093109694820727585642339794978876193010347399668764877394397310676332456208405399558305359407081435522671111297106395955350239145510420630134040736230291278495742418014875314687747774056232329378055110121011754154989344476181267283157079744804833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22989680779581737957048849887734632462972910458532164515486241867607714721614893113579792074391957455012540549325280376866032249155292805487728410583560513386538879749609930658339286009456191658973551770073962554655300155167744000943093309203736975653857957009490370478600328083572245566200408114837602072880774445552709425519057202291376739565579598205757454676201266603305318252785187983624495008999923133553054181026078668993698703990999962159098491114841979865377962181810032780827447139213482753258115592891705754590244299896876616386276998820711644627436384693994421670577650178462732933794573290207930117313691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20271944800777483959933826538188563873187210515529243171378107095746651322051060991031057266570557557801790762781928994658099174246292387142074376766571125384551565975438890631763984248177824199593583088934316450283250413558934776017358267860896980691880777686198763160476245759140105471686537445852585085386158019855787613050818787987146300000329136450699274904166824704621717721631055828003483508330676864344849266919757280632775982112721170157664429274634663281520795143410002946571343488878234971231838241781320427925336855650663122901387675037148488805147500537159396795470300076312608181268316113675382895007223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20697051254129567831669501890435934440327011717487807840070531433835233253259242235312957490287314358070696369791021332551681126485375976998700394625926374774801905588353186140557634297862213885579206539435402808634360317376004469394944168513550817009995252166344350836903279142683876181573977886580178001897634096100422208843606286473266589320705112573546191119216598759786341378445452314804859781485870562470999322969541950634643833904926691161921131749368071818149594172099198267485102428316860189967257635727572742839078355015713761044042987476389963778495923656414271405558591478151886790606444511805335214420539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26388233700283128015168052833131777166489337284319408725577292861102934828612315258558816115309918919148279702767621178296545405976855587785994338005653599629992964465261238120291146329261528958344669951523483097010478000605219029521775953328327752074973276402815212873014449430347207583302422076796330062324006504170946788659797454510973605785104697385969116940300093395450349347532759959581406942036725630734606820279775287193251523287220737840189177184643406169820982739107006633921356629541859719827439413625434703117111048588372091475462064033767059879691582696328862326978038837006653724565048608167042816063773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26628439806777482333132151936278787095703519229472445285474220853756638001365981314600913579717258450028101229385539294627138520225597533480854319017798461037639612709370776584777743068012730644782440912675679281466595327876021577415598620031238310704343696706105576035019008870246699921020980628029445947065235550100473393154279874282810663833081632510698115430267093074136951983366950253969383155573771852793615381325158226767612452820677301402724992576345024002527515096204373491180642093532798233448560050665307295675057999116955302324787277752884348655425824285470485761092359958061801080937869380708750690674281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21060698338878360378271705888326186288859605145816075867119082399347128670293651921882229792388649307730054708449969978932604430361995926008853084838411140005887345467300233156221417900034605443678392781458806289863233382810627846698139393865031107856575988685087044745525143897260552737969764953523805693521764405418013431129987768034811151009814429706350138652150052818682995228066088035265807878298767632075167493693143574201267661197688950081639238905071598341760429525636034020917356125127995102464373234321555610036666522596070386015882787372290645507526510349689285379149345365845796028490346113470576392858297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28124344322092469478514781226974735260838621726507379443787958789578433215927757648159244806568592095887806029398671968628272387723597543503690480949489638780054619020497848913972482635299762066231916484246109042335941867010055556819924530458209454783318036478875183666453523322330696438508000622112707398756651196134193426628909107811547729537085890827205471013680946541455971651298831982591487215552955584390099804680581761270852467027809780607563842074258459531483574275805805568729147283939186388387012117393138936949109364500759544711530141936358917768112880236779579335959926995741481629967987748774842624748621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24527254512929296591858747404729058527871435979275174118685388580445068291850870933727597031153640120672522166577078618263019908618548241231748748107019690867698402822179309441640431822944743928283993024328550910125335501470346603487075109360428650978932900373081532183324704272881095174931173200997579855790815500459938980774967618821605248979586846738922033821895651760240809860533962319777238810165575002577793314805328180464098020985100115308190784854910491176794540279186489600577114656294456809229955690884086524390296355487086618452481351808513465814782944245961013250837096864454972774155266474956712606069329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25313181599361659956980026066971858253487665606149777423357967294933656743051450944825328055960194934459943869250955816006029213087857605522127587298461027203623956741583043177036955140673271922817557568134320164800033968036084460981278812781810600434127567756982375135396815990696173100181588882481323654570988703250618829129369838206427331073416194709310300822586359426989356053086866666676672133503317805065564041881109694784854670247885258049848208033788709751816123112666000457821020736218755843461647761382124950644598086687399217508513641101254692468861470324791343256715974629886611458003264811626027156928039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23443950335601390569182568274417056376551252741419316886725450097157107317103090148685302402095907956162639851039353635707319420800042611389842661806208447062023081241492039382810821820837125184656697997135906349401542330458278751773253120779651460578862019270832682111076683119182136318076045634119170154636292468020555926340440599784253367874582472168830978677892718630497552116904845531947559577231869108411313125481292933211189939178447895854974229185551352226508074500587893186012953044171502129131633094648894304089462830803340488375544960353702798405135303380581005538618716089518694261860269561707657610684283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24103390746683146718491748135284909067074953936993851224462616460118779665236240373929204150960838130548485718645903108224027347175378442697140649064697487912134587325506115917142428257980468376567541707169800435858808302603765339529389567190449084602844580515214983947113127647454447309150988474974505505831951787773094242246022203838556809051801419956882048612536899230636549413517838709890021401230675180910861283641483495493664023279610608482071489485141657354869743931404264968430517279608404772586638693319706599369229198461806325374005972995253485744849840447953948191769970199717498212460710477403136066426123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25537133782878966095754895300045776810716577212635936252707002367238368822106693395391202979956202285690118148941261396222856708934633228868119801712969780902687384004079944378714612736897253986283290810068646585108856373095436525223705425011545284309530006674826782854403197197574222160275019389624463335765719691368475340483141644066608362823777696959191538755996619590346543496814143815326713705463770488645988008390929581193202197714188814790970798414779647596272862493632312345023136803833275049932795569805613903870793304840970523736893766028895648727389578519604720496897029641271232099577165333830014697369823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24482156820312424658405745699090427828866423170150218447752118368418561389129076303719598044862924933888603133225642558261331748599145307033169671800141089330857388055251880835785990639851111063851041699911433793196625753506970280778501364414315996684262661149207888630731212947743805103249538104160586803100733381140681243038437011168202205424495657326596900414835192684100555914819938281428049300489799225701409317343213260684761299854104596822800574216272445561333564758246428186950766900380272635091880276124429756391440465985711161065046299174788761943786750194559231268829207306437000623003043308362693078163527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26137308338319284815314011670386766245420162479803849032476951702236206172253695152145773459656739773598130653880105215201661505947210384520544899235947118836187018905913706257854586002522582672566042374544049922463472214052149136302473045370487290505740530754606246094837160453199710886380967239652750817470429799671010819787779539651556896260070270282295191978322814453342877283532740080682761459991316582460466040833557735247048663549794490164717628902314098900017575603890830500410435894861987493687801916143782601626031016632694494003320903117009192192808490654995363350771095117886234959514222284565966577467941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20055616901969487695322039466340111171926444902471814216377303709448398173574728291127524894752163937463616741941459295001801227320850222499524412438610722363132213889638685733114647007967242660547966091347302461109559810551146975333274888632578868439848895397690663090147922126758886718687509724851933519538182482224037366114798390113080485712121860948163219413112339441702844824783980554524869689913392008669829802812901718414996487781807762677249761093617193730756764401449512506878001035555058366741987751130602986926043439224835262728720606885399170277137993813292751056253797437001719739622773729763762676900591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25401949039147442885751701737952758450576224317752517619339480340014150463127212521807107392298915925688395900931927554500661390413831792678063863333104950268279503163919357703535165282417534539804770775524277893212713439191885994341441224864530158322246349001364923210359616796129762752100873184722685491206169195715855040048473983794751579778443224312183000224453934088313480166983818871841901498113854002505598782180018110830046364573146286415585583692999197101701089489325617395578269450631442896266483455270587970069317141510762145509176783884602831167132752006728006550539583583268512599849904652865729382632499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25392725443373856407684536043215028884911177301293786880927211710135043629254116016264710365324796641268540320495701719469524932100866962491325342559049342785435351599220278810506047495085772300614469844754802276355757142969880388925728043729540515455289170413299926130367307946789184624465860449037146770067131898372638157224446359646880277941681162546714660001607171793273102338069337674387895895954368141133047070676241556039722666977573121263451484519510759670110334083479260356680492989712897445977316882468386223905237139010310644153657997002440813969892871967211519348565983774467055178348646032718753064924417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22003330987400938972509300739139375019610994237776290987886878052412813163917462483298851194536473460802377326551787947591376600451028445319037259881051438106191132123055289825492677608822891240930891005385347340860912996363199701219339332717790638153706979794009744848078759392726903271448027994319383932878117184842540357995816682608089130301947247222419561791807988278001168424388483006215583011225326398920410675009082916600823100126661922768762175006769780212788764017992038624837179391680756076597814474932878011234478860374455329826400016940120977231886746205167804924917589277049121949942383073166128783711473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24964711022360826236210544573811492927579132887947146287598941691313851385217479504713566903116401786877287220456553294717428054599945683481845008211065662611563086055800463111412595081661164688729931499260623338353262624431965555744158802431843107164276820910227110218765261727983852121814065390696346646675713665909969224504254994505549900027173454455681235046856605718623574617561454164417710712673184591832921784245577027834222110021207062894569393794461280160435505307120874402668109433682682732004311680566672293807766429718480254954347081645066130637866856321267442801199613781073275997820527165203971110827637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25314632340972821237213793964878121930558357482267275603403884504002609425163613235342047858024721273903082088332527304711293917931548984671940002230403769326021084118952524325270842915558248239265947415279317355495957356157628884538700255772164450350116526221428572376190066891325206115294185800099703600270139584003941629712251811241278933219778702779229426074447090152621449946173637269635181852056778020251757995794425333729488996990323776571106647369570936519859094484538048631054363629551897876345064488195552576871047522690597170386190479773427857364321687956807384528000239035350753912502135557780398272264611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26546857898824691898501410917898271802598537032163795668270534305146364142570806244722861374659838975540783732342008731759528403303969570839523210842285453236519869750662129628003868024953586014113806395980082245447512055170811213718061295066392514004090614641406752778365267237019886573387495569765229275770689517752467710806557528891981893600169275504748628475695326293600621420960909632829667083772108998421152748847825117073417850673895834098948591912704387322693268665847427471723814617624299009600584203950922227002928921333373845307298929383774665149662663781515076608873450865035126400895390505709627189957167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24258179543895570979925530921840332757586056638522380267598367754286912358541850038714869565714783956731903122371183526369256394290438552490379550510186153591781590750502865970818163199705863890001189211224917936033839863954791939495252569814772299364272875237978992787630509340948047045323961056866787571533672599419524386586209147136530622414517433213621244532098483401545419469642262578523746647712895778145132157777142915023427496897582791604716489386051914289216226084034939899235174667017495396458901534974543679165696338268005544761078087875647595633463264417391381217306046332226798360739249356399510893348589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23303037730175276877466317810835625468597866540316947314330117880070754314277286561636366491964644701855312099021396963250684503346557557535386295720955096895569633325138629244934596538602580566154432266419525126315231744412324782868586565178923509652558617753887110995707973044003025016163944484561301215663842691457171715646781948739244271746228799471897294312818937690801854153344762880031883348875507651254353993039769918035056992295512282352974912028893967371380920508430394835808872294876329350608003872611783625582418837562991299883464640052929523731862291549012072293416101937129949104351236656610736494812473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22031717798093042442370169996846119132677975401120063676374591551780082235181168522889354574562349273831073674558344040727434468721239803574509549105350530866696185620103680859546120743797812450116509037354549646418916801430823750168743689965457855648519195009574983753569265909414856978616905997603290983911703794019763669998476816612281419298892946792044836026338765246795584007484046869980374257081585410091227329277091608938420096402161442721807209762436354873748546445682857908244948252450526398289353225523598748996924932655180765227571266212766754773976419548045573805224674635327558916930783210923705596257013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27457637094057543195004207455902241692715704689099250740313045801183282210197651094660515094918135841373622555457086188241922311510113073564367103876613198514939969515579098331995471765709174128398899461462657609504873110925974476684609818369457108547660164862207134178268837115304602474007403626340025417869503718595887736623193878707298404668189116104423915106921990530786993783581062357668354878070561872714773043461655471849520164823439530068086079966848165156139548038660722783313740621284416397912396778982358069696130916587217013940108086652888060133370068795171108066142916498816909271043790262203549198090123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31056689900954377593245338560528545836765687631022647352547133040655783203260305405963655262094497913547730110298078855173633181853188243713845499118643602535587538817684706254305177731529181810199809900995028246932112997267020417887395958329169308519287542315103696189907505939791050597379996350315523732967070965682620105610109517856177745188770261154096432616388494193558846854562745871112195766858453394094589711596297474491280779279078793394624133263962573062846833722011610618248733549721721098325513771192903698338869952858510320792578920049355017908958402520256425780950230879543618860235969076127123009708247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22494741593946814312615464976392614435579882913013824033474350515734743804626196890165971832341758995092048307882234482487147389215551321487117741051328733728359253052270438517247272366909539618989607784131880839994200801233472827889929961551262846813468608493395429863866482863367126733151651334452523496324609825726617347549844180213697373573920479595829209406573459825775293777740223440230207746252768234719696591454848292561810957920836989833150598163147733077705429687701603954895949498231145389067246239452479569306586282381984743834345533338478507492091013929815526581075743218904370201825975124351475413457659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23975910212795873778721805750818638799069352243860542508546240388690453912616868869307268848335948051061147406342882413559738078026656669741427853125449106682531298223688928836854208841300451890909275572400542011162657359548843209308947943819586187392972943431506428566485393629725528053863369498064038202224676806721595004626646512967105982501432916777211454756203811759681253580729130783706329970999433746601072778522390646421041247446609241810821166597306900476553227935594406205155388541556223949293091617034208591896761673328487765675716455416134087714544430548852161761269374106476919180976148504262202368766119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20472527099731293158396598599428274589969234172772099154644686154211283874716921758455888049351798478651757895543575852006409040178021166107436696921078600836184669800671748882773068913850643991912510895152303507934713796085588844303225562607248134389942645943770416236177873394594393122386665632369861963659407717600324341230978314268833180487001090034908685059752424464114877456935513980824581745278345899812971602200161534901466563104975831289837157697224569088789498356975858426459220021651701270420342129209148030162790971347604355299379184873411218611271265742979709564819471461746941813911533057477076499395809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23126071878846598693234325491318528603415618910704821381608131617119978287230538622821746936978109051593292948865412519885368859847857824040193801733100751084410283304691437658649767249074408429819380726525756996452587001355474309554197709337339417258873525944931576684058737030910923277881419597953567589502510862444133538041841347967595128426569233197699274077553330143337096051092829736237399728761384359390839043048593659895053508206093679011030803872938626957806019668117170985351712598897673011504930905930129512894764760162519511931782554645920417284693693151824526935749471919332385216037082658663658958968699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24536991314417753216143738454755261132647369646552882244050085171396077796255096353777487164930571060714374046471937503648725917286530585049145294474502299974651874423118600686415746001651779172965956544699927487272285479071093379883239741588532919816975262320213043607756277459913831874824785675949209274437428703363926429241699517356374692247621826346895673469891668946063296798707415911020452763563367015583858188895184605148702483893293143766487839905957500648216415060501685209644082132302581612615662461823791354409693087755425810113785742295154327595767213111482500955142203598443006467632161960220480610205873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24650864855881715747631181218004176641151399863000181416011332264278964786777698410318011925703639552653678687532897137014526880172590720692472184885310973098872840312531991765664761575031959016053020582255652071170162505194325754233164777486883421139467443267249920098576280471762337076576526566519084685054864978538503650481469574037399076159521778839777853018762708706033455352288415625578132217723126329454234067341769928038233011368462827919580096404768929548833464747976183702707013231923939705121553983440694449172375702811423517625944697497566203103403405769632087461947483494092590014852293327727127351881303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25812018600458661283735778205588354600754040558596732841499773658509033310107743854882183021589233026796178176103675348350248906911585039682570387727920577659322554215511525811197914137669014313251490036652167415602587884417362358644613077979891467087389008989056604131840669387183926815323258106281859464473996346297728687351559016694113771907814219489448477492385681421516677695686782250162371399420612785358176405602981652475004012567616853717225195456452042431446319896325789913401511485147825389452063111583949473077634383015920409763766647959329751488020178595061040580583449768202738019131020410471202404288293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22963941732062497910531895251236745048495304832382146200596927675526454494521508441268208202388379104467794813234069863634064289616631468620878453448009878515896881383579287749710282812730445705532139885787230676057574532048301440051835163443055506873685990919407833310119391944761486291544248057104409170913724688103020275896643540478610920895100086210489980421931209050162896550300211970293999770375577119182687785240899433557894092546516806436708720018551697864990981214725011355139217600463692500958086894271870888341958084843045264397111361933910213234368860751332451686102463928256294782280230690850949506420259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26930283767987574414005061487262796893791944756964326710884556756999044547043445058054472196016202399151486983396070567583891072626553814708801428093596744536143055321125546171540733837195577395057263502845235738005605347075778665130633169952601913395965335813207244013799622872551469585752406077126442041413496339814060037409027728406462967533795494774203846486599776815481718137965669163629070506718511969071595727774978371543842809614176520907332409812581859575742816285224776882452956264183136705752039187850165054929605930742356176303246844781263047275831741821688827960101101330419026820477729060096628842058079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21317021586192926374841012462123550615158112191168489340236514902593268845499444771939484898518743783385329908249594427654756704785022629672252136312566355128396664511236305964625317450003845406023414068276936949639615143910219123206325195030010624977527598159874794265045850498377401147278444157871295827703648786550011943092306591221721122313971327359182253491800908368922267246331288332152777168545386781318592731358903230295603688931243645144468183975789469170912718385156308404104973618316109906394448637473621872469989038565888732293594539772311053401875903283910634790152694732302535788699867307180802139115029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23244971115421386837359737516761226262570939704898201087623867895450767916763489762100524669294001594465042952363696900048946991640874047862684328648773309061221720321797248731236915810952409216530442559859857380428127598531091256309511458775186936830726651186109065012610253594985575953702880422216787414475618078743318822886011407757095427473409166042026146017526808662664203460304691990356256909504185883620366882497812834213200450452890603508593426794719441369054807775593144777610764987432837634986743174650726856481330020854722708305369884347935247910835672941189015962217596594130049144015430495799067618874863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27103026463906711261510076150244145728471465707815372100755215944722759155888450249680335015688357039494373300947796769057127507773668427712123208461792704687756636215083757740730357052527209731126846317014985550420078419625663961351581294003698917042722476196870547082350032746583483453535778246177438552404037844191363062658535442555319740455405654178813486746518178266760126159073210961295829463686560102012285412315563574529722103428159803222474341136873221633517758847870887430689167803578258325098548077635283779973069414750573130384358998512787019838250074436437712651915165167465046601201684289767651750999011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23612138834865814380744155102603000136983232162765417400884956056027628792394626986724305679599055983659335522572749948445591760897643693349706721589806066700111606626599775122595142511859571885090528166293153852646165051452299567665007591849834893624440262007931179246876157142942058123523485806646665272854068981431370227681490793458515037627449293671717411454312464266412686786219766038854944159905421525491277908705782854128066597761409642571512086025050110729417730850311459195833856208926143314944688880103793881481791499871789540136525214562238511024207409214763643510615859509368715134772426231443597729267891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19323258398838037532602782032808653231645002398558701508568819275277375393665556093005330331029483979248544270396058927995847544099187007570638404241316582528456406026007020011901703634033973591493433610092355049787428701671233404349099700652107101872839636959706377400288373964443431588569843163836664159897652133973894850445259298671156660508953226413397632359901402824514766773741621071350950358529314156435812693969194584345505973094053165116572432359303538982894139195252001508700085829994142483016872595295683029387955334663957186244714620748275960064851315629886728848973192121671583808465212265035332716979347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26122121275062707567650706776303139673111663643737386429402106778974368712569138255937178039541502555908381209338405709256174667302662834118292979760824508161396325757480472371076343111092681403527780593352088054891204575725858978591634294093308555561684227060064563671851033455419577016803537979550150083491676251989829290667606809296976137335655161411563486340272644081860871223548573804924662933706760124567938407912797380158586197492966943894301338503950200278740262947048575465846080999581514205292482469500003005276359540939363740073938182170535927278537047588554556788623561288589155028066755220778201059972421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24174374554108886983912813760847166633244378658648910239736988641331167795626541943244264772642645761206859071755471785469253309067183106222605425209411310213680565117332213544567543277534480187867898654817534336482114283204607842391844236722004693756379859781139850097438077819904969702214273968805964086540268325611273775477943969103572004342573593122326599342033092722496365286050944114991272395160630405922959690655440618119831009947292062151169269901071221385276023709955379070430203352116950923951010853698661394899781106637180254155063891867129433973941974116080409845028965456039193258916356119543568915531051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20528996956456984014335563364943455419562471890868971014122229818740256220853014113227833756533592966612389312384434535502852988863960712211484790829637898783024380694171305004914306386628013462748103231813613267190388029731236138770134100615554308795855013773063989293974305201886895190335891711453137726701641579453946321861054475297990187068725758671719075900631223296358784130143450549613087449514476493614144150189840397000054114886006201385395550946002757836443366888329799143298521311530478082574156902150144309449150776600268732698148668910391324094834494685831888748500554920699367921806510194219343959818467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19314275456942499509567576339064242403447812337883419228600823064145153916757746624472861187589111329597422638996898300104075828469102991747330816565649322823090143264062513990887735804389031905898927382075679916416653814032174766045783278924533189796194279284831505183187585737863889425435144812556778202793864765588516090989792068869183988670613772587811436117460286065930019172158010796838459168562661936786584240348693791489770996283322906236629617329364650368679854615625801351403960704161681598628673310203128859662057661976701859836495318794416630947445706872072816748108571484521192292365488688391868624665319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30442122375167203535605987273092514406844581069071139163430863321656431562436830270817892882568886809810582840917388688288383387839957672613502414565955971216719397118052253562554953017845546273503146035091394890856644667872672544049931791232974496595400240329552755057011317739119600529232757406830152556373024409005565707386653973829725161010486938774017664163499498226521439152733139852886554192764637937160719161741933579675222322185793240898070134760909075259612275279312395105732647504162740763451021280424924394287113546018912026621928116009570886213729394229525129144631801012477221151919228792988226152611681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19191662932479733214135120740174769651989486279498032630789453866209577751341116833318008978378627183276179876331977052142722902483851185239872697261500146796007777638810104945728585915994398122066030521088366010662007906688317463132783467937239795892300061814422211475324610868517730565670526658980901313418095409642175779208000237844614050461314261176183637795771904465892767429581354266772815432957931169471588696167637693179797895844657650017342850468968858849012504869120810622371384573731946923492453005818759859211801913817547849521812457218751337702987785560298151039539863952488024534715755982709584957245413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22330906780977661362878069146497572579168276530915326874738354561211934622860283382840663884868444779007049465306989762997901784770631017686139638143009189138491914876130907436816665069814194748328500874054332763440449376580183672030399553212215494828067986789970066411649847170024830820796678031109658148200450138193881871573126679085449874964275490947743511846923426472192518790427219366861609102298622129089988739186771945770375617764276788373906515178060456212291043793933601234853584859931024782144430494013384079659297852346166612634036673470024924222624340573048348703410746939948894902576542101305032546074247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23345262259087765715455916555945269769573496942683356888926799007163767699869077909219851295612554264245377064830412908250877881401950560472874597898917935457085193936952458606416324562616212438334313274346375304411335315549201289257877701687299792118200021341761513934837161707692819767545866130769221972867525263819655079295154716286433143593220771211211080888711860438446604852395662472994513980343379979627887271460405817996604695666450590691504110723504485206072377631584990845573294349768001285361143368759442472053045721839740642903387153615198762949403588829170492991733948027779593519286919475210045791188467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28589334362294885328146038376989018779654930495579323208103128204764750918488410629788307724164633412874984367522735679557702152111401497543623279911733729463032113644872816652544836562226473710107448042974508386009312862332498747434015472270801135599582403792089552348122255062661355429429627638314010503733870892589979071827444099220036141624188358062076821376623727288547001837594731319416889584170194382135558122648613525921664293658610360808650635899644518814418457359844402306493460281481632332813049351778009492387379789622384403637513368727378682608081605481610784102473898949632225367093186910781648190550119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23011878212944036910602199080670177218605318654403599225564504450190945137388351880907642956158513775675138332434467920404556015247317100825355487130807687470364437111962735896245431459650906458063774314321613939432733470094621532525903880602427901803842771578150029191428730510899834463313023874347024077607988276270098304128468062752700206759146358572780395569871571068156496658165717761447636867561706030461211571455796895689504940056838555875915756983101560617378247511329508519988431848891767485370209056251552462339760673618812394777679972512921984802025190111790643623715010556070967683299656899174095604685797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21492255265713555783354810216710850793628549733152343708230891566766845115297175508952313492968704594608024073938258951477418311064180572510055416365319084695330943832074741129641865407454832125978608784882008018454983330389197631922883563405638399016563144035914909674465338484476113783425656253681244374757550893165608020300473382001055717477270581044750924813449470560979052513695240549111088272207028805379525273383945886318972530819461299963339660694060087374159030081395010360263369115673019227166951399357782359577212043232341373407131411293274180664171442708954544630551057212207092577222756794853075138684651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28026081403567744900958348797967901346920131090108868798284734908837983814223160096887233659177166681774587923612926729763338135324420159902473163336710353055518509453617491734945623042226830814219152202815816731399868112947624841396274322513771356160210219720858327515631742705261251707297048157286717610465963670099560832082339449365655822652963148032799459024580147226819908011376166069836686628318833809913831096470454183963033070735245485629943329530102877670264664693779425422266589247071222842142529316242578528226023066951131798973952474834383598785106194194806264314296935224712919489098217591064762931053311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27066712445050032430726212942055555484099866474675721276716797914629132151783168795958556882345257222476730464034261849146056288362986463483274790575674118450681245615598834939416423858581119466557904995201674355180153945394006976473023274378388560125824850829588329838365009158413618958539918318779741624360534879183679046662704332925309989690332932037411224812027092766039804005363703553708583835487309618550019829510615192608961628417595246222987001823546180213985812590772515972938193647806714218019788752101256737648546667461267981504912158652411672354484360059661132835794157390072379316045476612655289619520889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26627222613331900249610380872200131933482539345860852625949184367866637253346346307461132121748903931342900932914073518008802617281636092420750292924701017942323175552514829631255688726930454045458568823448979257326630729770620360473074630760550458811790030037865691301827007726244378985004432005169406062197082985105289565089570994709286779883893628495915883017269240130989646754004219836267165790305778928620895112007230761111258961988254047642365621055611503786793792409174379756856185009903328049491872998381700465718474894233301201555167779866626499360118667538378022043492942135628785465337359247537467591446109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18631911889646821242949666236592594216725347361184748587348632286964905980208178352021603964859886835497174196516010573083919411259611266120582654750221414387468945484825452045651241055683134932795461298135399932649561581135290529292552720993934313573730975964731978429897236478986081095678530320123802093973701562759900289382459253061715580616525079552550821036771438811098686841475269530676567941565476109946808424500860631616564830015068338194206639917452943744886245941865365900538169890323287817393091767903262668111071730724131286610855234788424319421030425506367628174707399610113816930085578183750453817886901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25794284358191000235476914570329588744858621998167196982274093243982541204350753830580019407333911258158565038717593364451479500253996070164085272120704708126801205121942563973557587997970994717823634092406272953016145373097994703212418981853958679261485018509904657942823779467826048950341818850701701971190088857049135241172737600527308466023918445403818931299799680867768593605954389728756579876250401921702639352824877887160845169535390294607030922920534242748986436646319846759119328399733267322550934478019538417385600602186046940079870515513556442442031531252496541063563139628165584354130990952033192386708161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28266702918881818329370921862674292221418970874169347162533267709235647245951198253393805074676755785525933074458496042975573600712686403168795833595955700688563436955887834287361481907109913801565390849837027620941295202073898889027949659406498723638646544305488576034251978393487386577858164777981910882438813015369846587870346087279619075797733892623528064331647545208115899106201665595986401711280279817839573380809842452101351101189248626065409052556252615366516843963558186564589152621856097714972844695957847298332615877523172319443901115147563649498637094565476575733844739896480438622958214108014995908881971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25203130944389928224395833409340322842322212294600778202113699948717248656292542005263264037109823516143452076962586398758109469733921376220740963608363367506493504376530411750705852526362479948737994285310535965957983531396763037474351457771230868989784095192791708050524310737079601430283830754259507601994785581929026457840555003063198070659310297421526258150141443752143263393936078778837031855566507709074212202253923492906349822972601871387299206660519136382325348519322442235095263582157793565281749514958890719584936687514047078934979367835388837680363573425455786217616053151803752721073773429828193819744651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31509207230117904983717334014268255924626612147262083223429850471295064953862848532131653629279989998450482011365667527058989218376098819488312814996973670620877089452358087207935952188848854224616604965056573083062601096257063600323723377392331299040035531887606403695076294346433198867826025802287354637960934860206301632052608163563444444939840076392754114086052853523637266207220166201690975791108220850310917766008391907802148848931824519690779776193337264669385994092680311120300215877258634654925034235412569571141432835255645491676416314202378761399697955898792467085922625492966293208299020171579540250691619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23518519822462189633588943355467494989690706505606037881878406483441442323631214761447354510269674489754655148101988448285738341992782890629441197866368306661637418886868531012790774020043701892698343032804152890263179821718749877863440572145734594320036157271695948258143213535243890095747399796337588685537583733650426109255232990809497131459592376883133302537646113226128292458576165720860704727973406939846526554923730737254957817627798319467270593022255609890511689355601028463453527788551558260837347055704709458786442791898819691252496342609838424175710732815894493840080128327027678075193371851138307343459093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19660832022152954077475430555901284635793882671158202380228557983800884852644978082094682322523202720503997055343513641631267541111141633028863594546854273905324615693333014294081300814880188410714917810157383210329201494420929609876009949184880497718327854812561525500590370672353937136487315668498919407287099441473281083152457051563153300887609491849609676273330972132128279451558070906564370998350292642808293609416466633173834624969824633193276572025321524292373392572835138720288719138189904791298853715082003865366681480292125218204886720007330469864637311778039115859613126924743712548597695193085775678255591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27556974795063145954732386499479747927991874888483844109336614806038368828636519464320976835897326401214560868463702278732822626858065522603103747705463492717025943907172366871252137391952869465347658824482185504061007021452564646946654533663381619102672619350546531331866481474182396358077992461563244664911716812427673539782021411601094006936097471600761354784922389213097204913021692042248385185011319910837980638359388049056369399544068571732708384001201782774187456085705213695949471777650250066606832781534747010648070111553964998510461302974475678884952929945584969403686380137642488727342868563890705059835637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18766965153584643516665937541437259603173175134692919044916617222371899287113848479027020000314816322205733181095059623665284887490532314384889228012497028740375136512958532302180533022065906073001416836884808584532015259543170737185578351360122876246366060777530292214858875710041374710854362739162924188657424749678971989642115771722681338517852490686117764193527193732649348964203871518594915071765301528893054576593681231710105758966953954904416108405577293528234638679313172484611280357291534330534290723212049540250715838369395010861277471079748633699381644904187637745267975468900538820443675813885199688822421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23501748991846347680350516818019057320881239241554063366449479208437625065621334290947279080351071899565088123502471996962538630023348842370274899381837523150719665858572946007840445105238357946452168420413773583082689929734819903215209513253111021955050082301453077276502026101989743974447498701284816751044800351849503833764597512252562835561485476546350896342239665581142133821292747388139843178525018985510952563867880030562928980077506389902235756400210151612088744314520915421529779600009802662961708776311322699941286433083817599577506238207285923268489673714972319405883771450310116529263903185291338580108889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25224943364507454251786594987226533827707190011469577751941873223497898675345673664065755186814117181095800426202827651770742229655316248225523603458699818075037568807326525460496654516390109834725531793981671467990705238124321920350803185882837116749559841422251580493545073693796853319728510167095503950090176218521558430141501586607967423052595186326923998083613066426144883776101450456779862131619772992926553695692694869825529021580731176196241385599357510135000458762195108750775290247779421744927643791332971103215852806068763167445665953419467907105391437313733001186997128348711125484706639687399761548054661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24976744184712214663799084261236752352562250904935035671051631651388546062569160893402283532347870573111116931458334972054650393548691364628282805091172425161271130208157032065002045765777925580987763054217453453248857488598830317272741507690486105525143624134774441105991429429480824501228151643143214623604860087927431107513509483337166400093473957325331737990539792234137413031524269181759228655620942985564066093754299313091987571269301352966377285829410961233636487089244212230250588567376834820374295887613648250330239725767461871283828333758305857354882731577918253878656086764620074552118328196289125589746763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25965409385214055068889545656265509655651480625045729417613387776442619664891227381926628488865068549896685959964236594233305542283451706636958348639716660208652906301024292052675594780951254175608279721519606032183670590419823146690678582863931973535786220093703602518620902280221779237342125632228527764062647780531705056926564056184609696005940358774648426708337573038750683646721292160932380882671801501665275076318483218393210636116836497992276895099639144563784994221323594104853536974625225673598347337436269567406099157994266221909134238593783853255745635234915044826649520988135686431370592740536326717303169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24666677744273227591969423987381497544854950205232403812498010392324461443266210256863373027048529886222743443260701554633524575884761422479192803531838204849778666671888724409581738777425404856573449953966269437423017575491552017069058031619729796875514333096940866259701055886101616276798127905269726931591172656856487087866288727174900696332978870069175674384755199777583239631673723093603534525442070351770369750720885934871422751098690587524687137409848448823341394393148965909092089299632589989287833178188445261451962561620746759743003324581053875690022812105375715960173401677841291450852897475285880428212411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20312369290267187999691214883067849562581815406346545850105574458379556827867106989587663884962793049144014921949846172177309086454074969983647533657766935516466230252163301388608071943872781519018013631586166143260618940558834599778776747271647233829710657853366148931974894143516035172871396336518004044720605339218480701733490737899519706725977395524578437381385007526502728512503875647196327877919004054416752384070084034404269000416730816723024904852165989460549403280907365451020918863537811673522462224729575857941027414553199385291376754085748456461657474941100453169301186613820185114966926441979197457758803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27539242987061094525208197629380317587387541826220142690838428921580382862196347100731476567585498573688405366036647317590510907738863137229516886759399438625235696487770116208930600043784680916115911395944552847143969425165218144533196925457001318567359574331872847725986110449167384024246859776054568574889153361186624978769118952991667155217934263689762532921924336584905049231467555841281307416054648136533301493685467455424555878289209784640652210533526747360423707711341063232718538178080529776303279792447042490632663804804185837888183886934194734566113360383190133133448523816534663879563855179686970990546741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25234449301980645695912042390180250508608890706554085500864414911603697157323328480085124816538154051988129160663088843937879687164388775020559276149790476833212081065335682273315506553987244684337971841141969777320750015790499120769321405611584969431761274920907645218879723945243593371027381031205212852448431147311948646191210045589500516513460266515031948872629573546785290007824004177480879999394057337382945722840349767454673573271461410287926581874071163114485453764404105478165536198360730106449331238346192203573294788964967276465404929398764083111830742287302924325820303121082773764611863514653319911624301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23810899897525003735509175811944028306936807971311278443402828132217501006991773538592696902205617993436823202811282984259539380748728187449091722183643523583252249228278596833168656266917740021583750408925391720046867306309597199354385823414931496648979703335128592509441719928616842835333127624848163822563594214298871417545957496218923906332202786190479507635154822558485275677717037273098939027735867944895509491228768685965998910692724586429195434244777285487043133270921820565022561131846150649138217345110484616863049058926718684118863119149678494424762620307256569850809912095328411823916833272402647539424709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21713963590990504159783453711519776895079567834919160201898257301104262538934483663576997766835947269257509542995168604516854527093441526885801274000851466862130169075641043970654390564777334443746296963942047223993147962850694843986727623676049364037694679321020296300632587020300052060944982493462926473257715990826738020575458368921253577546246976396110220748648474005012605635028803365208521987381534858217710944787780535628893271960684691150173912093697049905865585002187458705086432594397110423927444755743075030730369717507255824741998860265276916487855717957521700180471170717211942893662441415988386157065693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23078793125035873110268385000648332234476132621287084056165598304561420025493941198851360219115288182974138304368717264778292712461413804202070186921994237235536122005363994087038009447348235790436250407787942397815806873862929403197241092346336801795213110618182223441085133929263296857144097520410001209810213469802989841138026168379566092604839675481015876399117692529687903093232492098967196557473990616245122547628123818624820848779347287054423229232717163439487736880570370871463126850243886695590517459132870868040753507282881339917438031235759618763470508871205815121208621627964834951618355065234287849396041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29618503775462592415692429938474237026900613665548117113937439475629319346026136677580319710570814901123752483209198157363582450504169504168606640762766191032106690070866498692626463069894770449946377431147644013800971079710806102753596425055489928616940357362933925454102505717949691874991603636575946250238002282049007610748081133972004398346445877101138903731270348294650937926900193730399649169720576751915007727103875383423656960384915041128645023519073961146080720214301256040575386972219833796303014311416858301254829184414896873399714767434209350561844149392041942371993830687445254211459180340878884178435489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22599938308497822562283019702630587588591734538214218662666566377647817561420663348343282556966010118751807979237794919152206689933802272188903026673406366518105655085063046054861881323745249366871023199256440659613538625536235130062513894546718942365222849671972807197213446573775071555712400846682874569545474832647432792041219413259430403216886645880055231223803681007929904758714155834432339810883848794860587212297808839417158468108797622306268420730374926398708959206539305618536225562667878786256743700046277890244158083448862835237749909701105057208498812826271995684662299244452197371049484939113118733982699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22073121843974322531064988549984929856444274964801481962156402392458681019011118551133722797086333922855332869662616813360036002380259396450989484910233857894623991068487514847997008081850914157878883067461795812956252476110685856338758436293360607176314645049813329848833015595864871442637819351981897901417553029711420351819811728045539011442925877031870159854126052015648048627580114165989855774258878427962788135188535337188666523621582148017128873847719872508407401488075853694067229098307234059008719111123520182455103855801261912385128149986562785042215628190826073451678708190675993085800102024353687485538327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21742513864912065171753771721091656687235656314776785947923854963202001392834516707849309382590930683520026915165386381596000210439343596187366915610267560304250645797704085261613290266161758400635118785369385791770671666029701521630105768991908542522397074592940716109430393088129635872381577437919932562062387534490921415078822364481044675509423338421861553832890117414408832640575864334123819753089162627873280936922537878203031851247920715111460527598447390803767631045164095591282668247074825420177826911729612525182317305481736987796588198936799407299178412506499673824388557146231436237062266110693507755749699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24719921606982524465415961596419643160942392619063033115310590460389838758027615179606280748401304664228376876843529964817474834317624652607077293487163789384487269965953062795218804489769929910502086716447209930671433445407575765288115647927938445961247754801787754108571815897849603827600223115102187770887791412957982002497909829243434884601267268676528301883501433159516359706082881160967571356373548892216964601236782936770805614877414545598305221968640288224071900932044670169289135700344495051209985170799367508078673103792972755306303408681360132379737948177310679131816948832308500019364271894757071176662181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25166425800014733697804859757173350198929833325673007779665817758990011921819875293427230579096546186266748068142032114969214500233732172244535592795966771749852527951349475294217322070981733718936668199660579524269388346408187367921620884460990353587122595350800977352115516921867498259381360188133844884420007613821896241425260045145565762423375046965057974042423483574004327098841716373363391949519297305372285185660688706273139660257121130103468092840727571493233495116585042315540307530663729634358576294907282395722519789972873843990945515367162356392320326977685536407703296277276080425823526850601719377290417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24651940859214692084055429447158562219630346543391898212459174153117016938188567382961042305158259688496096134252615493415063587314783473861487911150711631838125603705748015971238135208392281419015955016822520914721863764652182110976140631015281340508177620926013296413102337272362727854686987693366841998877596334241940502068069638445708023248469932194982811677295445141111381760567234430416589573410397269245179793063069212927229620041144687060154113209103906728203039229645004975452436790886227456433076792993989370919875379329735082957856078247063763964837474975323594563810520761731776036413640985523668992737707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22377595068377785762340314846586620436461039553317967550560965976704960791057752313319455290190636335814293214604352044922876462486083728340815398835818638451922826106253511438007483197953151901336377628100487203139779850085880956479113296355511324079730804667830865343608460621608254086961790423711501593218882159512137912537132992558530470656994933796968456967405937591482300520747511733255773915562937342905035028347080856912723263170633851346612284198077077653905827452560444575098401275659501399376068171177548954602639934085488011965388304361250034722719453271034163222325446643646661371859890340020133731557937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23956408692450553815934296915732920001009214629489273642036891994259198567123750991790367066440398997603333161066419052767983913490791859586478805455411202934449971901704555603686869705020508871605536241105299163215182328932493375339684266254002045761766571212983748308267836760807520323789907423459573885281176995618463588587245376094964163767849242856015888135229182638218579405873367703065921222568775592931203626155159775454074506952370105342277738190192514419640556033722302949233740267386939429964491313738439915946704141576943584948583646822407605404344321687429021340534098415982013859314085995430203358203703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23485429340386213067535964285232999252596772944397270455664086862891897552067688709809604405354814200430119842909199642522744174657637032840537411196289125915327338159455833936932809583653587136831215520848956165885812921734819506900698636128750372537709739471857065288794106391300638856918134691179999581578308024326385062319486748723408319402022775777057702907405321446807362835417998474184114203778348504881383253087667002308760639481484352680285476266466717442247002656799667559082822212470599795006580986223540148809851791140767587160388333277115823812174956095548744818282513519835499714684686081513142322349053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27751573562654412933138004411202583149802789246770961241565306125563635101514349234903557999622717718639261055472152276508949269325146095240730192598590968768780566733608128596679578086568651091424421823220071022339109657197751912343915723144413297921758584718587458153222157408253496907618772378190952482379113181801440307519749625106620754425101078352325083575967878631307107190403910472480821460330769159155621772174554790621714459714969033021860923097989204413710962655314685945160445550433953070236472414266663959145955819153407583465324591362482249122976886043522480212282770271718801612653823090660203225315349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22821191651329901584440503786993318508005526832924647481369118388422384730692821611634391038708725040000772914465360531214346665536378118874246445788433576835440722454534345046858320299916094296208857414048241766921061764349622334567462908591574856623408932503904350365454198147535520573640013262581546206112644136490636294052105170229584433714859308644185996593359451489456834096190234222799639875897142778322326914295912174494256805537559211341987236399694908287659709426610974880336512143147135820986310533876328044405305191102893466073105537508411137312533507430728154355357509316887307324489436833227197523784973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21618224600553704660520839416258705664159984363862803638431387881671679334301157232264132735225091291155226109766074833475564561134810594689202203748567330075247033939632386073154638572415511139752107562378475347561618103756186015969432310030321478868750282533708985638918521378503769514815964642758262678560042667427696147687026928137338105583826934906248431671513218386390729547568901057925772730349514740455579574382626443769164998380896337737382452010610098105329236134348557031845761961435623358019960387029676406717727245578086649617536964726882852826201832550364681446265753609706504398947043331625873166870881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26809959746156955413764430155945455674391584719389247617402083784862002183682855871172301284944246654563909583164204007779753937933067917387947661460323235481612145075227115237540323487671332873075107353186160390370209794011592086665099855784572759616642677234440968769297820694211315754380063232268824038521761397071927692427339050220629718037095734205307974290981977813305896200773392545176504527423388835848987532384161151636664053213345830064917856921619207061292760873615463333909520661027392757782061555579512177107718257617035803226320695258838628505074209532661466732141567434281294056614212622471527078534757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26113846563036606097914344531773570849724868893108715810120008689289699321219541053647115769144879381554913137629480879439401495254908652310105271212306389091237665609869595983314886165748200223633431003235836115167185222507435794719590915407539981207855064047052557803319382057886819756063107061771937888899799603962482382122440090542889478525865397930857099176709068361199487198926563990655770484550516162979630119932640934942071040003531165097664392894843699883238558647919799525355837938848507239867848906258503346153602462015334504249482106427163817683460929233105290951032353616029654829540100758706633114946541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24059227545083641260610731234155128749905887296111805464682065482329574794317746498191533303188042448550184974806731724068774914938314406284796877368315913084425597559554165126917348389170350724464778936747146350327907464699816090162767390484298218968096236030730405328765403323474826503203265528866863703579567834233453056685885620105771491002752191413025022203693633159575807912949955271116229116747804646491847213253978155360019953793122943865780145998580555582353071026840214842567627720868338803415083906327702307064457290499457129495684614454059923279057635603377708220749193012817601377991712337497950425093397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24361998351659156533989525805144324568738917184487013383205867223064223897018207731765515606048957219309385517027934166171850027595991197078372917871474542385203033820864392571312511608841386395728394538317523944198283620780074012668599434955268962793810239360845823302541394220879830763298667127922684393845342235215813022597841334818974665087597635179421534413987076907968870717713221605004285172847190453739631236179850867992655477063515627052844625202870451937888841798877259367656742603427201259101794540266432637664896461098637370219969951665100581818815648225774362373033926289399329175279072904792702748347483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25044162106819876328700241068958525437252547801795759377919505445424077165718020529423732632990074378953156084913395913198369230280767643150149418918238941863149571075882012848622016299114626683343139052150755902412280711464577157811726693249352809801734322590815164845352550495859169403318133275679955691740247685488980970466494761026790506290694224118616293675860621249515571994231246620437874419765591143074096959116708449133307581958805243162704566848477772884051565125731754315220295639966085665930404829919742536300888166106476700855934335306592264091389572522250734113467447188715519950341197716811152872523259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26357120529510795474592674619694644734812425071172593936777868192525557798105170223355090652497793975180557081779442072348044726398668040563445610068365620496641137620611951139165034615310761112461636519321518238970352439236241837222115428637245970509296389998223625841121427523953775328137141711273761998568157951806929726589875150380117661536385625020604457255998082530116585324917762342189205462043460207430612647673921413460939225749948994126744605622220718127699154589264817410653388512383591701799739687621861260063663000703656396173555712496131679702938474234505636427628290487036216344015638613403900734665267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24361782147629910695107670315450539179521154913293846983468267243861880676113247100312984860148632986868372627990858819708216312439636949886143100243425130989255114966099753278799076317714689781015344252620833770408531488745644461455092678596386510814140050341258276088163317737104381182777785113301399371346494486961186738535084027829120336581273054625589797963008872169690787157594521904367712410765290857106971473468013485163733034586254089974604549475737637398066195556577948025679042069638665653994275931243461743018636758592058929900830355690257686912919071255106843031643084426649768701917339130847104886451343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22095391461001730927071393676989325716900667096946560256817261564899264263752988788859428313238854550994549813927618758223543211743844620685369184185340674473893493470133057317943954983457839998074806708582507526377115495097755394319115903246393149255873864353484754100780330866319410147039577197269238739391975801204241773508563485831448092202931520223787770454189650211984002919737176847596394018317337737674477907185862535376703520299311499367298444185619864948753644929097873713851388488147360886544821322847055873859870590436843067003264640163521939897437105823520112879609728225624382996321180124707122695739581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30293820380635228538981556413701644318625104539160866926391498300855834939793575292843689443052104416041846657537117098377199692110169946753374928874342788932437197254959877616088806009303610131928346130321623742778738928330951094530566865614800620244468023695852677458645172876532369357634410571820651868960511839549991291429668139783779998077049799991654093454690133536648883414634279378061620211381760668899124028516554353525281508530831828212117826688989400618456423839418143540025035752853690493576358090380651261245402555151027278449035737992965676695416836986161035455312425611790641092010157780281552433353553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28324114592183453017746177350296403528898876140968934258964745498789828658390359457181845097774873344583014854500344701842616295305809315249865281229306035183759314721343330315382740148664493294974632046025864047153319964696315510260458373390532250367869445394089625089564130813662251457196324045071059932279071040829751846902135243471128751343055620950527855552065324075815638605613516686062757338532956100336392456682189631046297549873402970709208104319712274341566877800124690667281302489623575003264667903043590532032186589342700574889914171208517432595788742282263644281075698761926155897899119031739509687586027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23539558814640006449721578962981358076463785448888205791163662739360072039747098718232412402096957431467295688612394212378231491128671904021542171345673242773734192935385145977248457914221507014563752521502631798872752793442876336193143924645668438908370914916113405066605191129354506743380249637830777572090453441269342905534639595502692329491349642506681314535190512113940621939795601849025522927550620274012835094661840412681084736024696616904923733153690456329563752607121912060598083735911256249617880222844174393549627036028671913503502762577015289371314457091617227141635934116507318986490266675115175509410641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28851229819674214833392072973952869683871306084709461599244107299584623190772515506235127025137580520905169048672026754304528881145136258152676252629649695071791377953545523879524915292863452408450299008615862399379069567918557357530229468748927197921358052247592294581825523235863132321028373447852385019363507036090476996523582840536905101178902178134644885833805232078154253747125024454482235624908502113971743636748529623912021082629592541522232334317947074888312927998387900930624981163279239382245302522831926067157555039587539609293941710416449028901269295427468774625075047798925863368060431479644363978325027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28338499909166955079713906135878324428338574916082736588188004006863695214100838102786474344774709400760559278975394664086480322843021921313749768877218165401415001899067448922420544304359483807467769183050534024490254932976826088381520184680700915563294410444422043617351587609405871838707114076582089406228449703787599616596185932724213219406876432433477433323230950767124374981762591658806691921208618681223433608013852396810638422464511557200437835579886364635756588233153267417679968237757686670176469225752764696508004545525417058784410516699739001880235627075748010397955594026648828373907616681576523368514247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26030699737078338378448632026788329875052829812588083784440373567156152326738198467847457890331455582679297545412030333986071361501943754021963759817629967715457767118022939854832770430053350618074124672479622794698028234845378524795603485272844283250717251889423463079842519560861502139424873365470707078982533917393993519077001860438097232159513176103697978538187331298508554194799264091205144256515565552452023078457464225236933062626283224692859364936556355633854989728494068037903985267581858056918917937753351385697700275889332441086965620208779797216802020642236781723821250921553246471481217244954123870035467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30303587041376784747740996556853830321756537825672620413136892093476120037028725543594183223166322873222816964836169594820693822947132140201845932261885315599038239824270917414795554370714158175199863008087363193307461050759107079184309713242208418101118770283465047044912900916139619072239579264993512025009018320079264091489918306018582667607853358879505039242463943496410034271409136790717257378671118941642588049232675834384505303603725778573769117240492039585929336530411499001548558175432352016621659598025209949687732148057735441920521874265765539503002630939232744970886053493329795833242394452407668252169583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26521653506764505714056573382673404011025979974758580972676285730282958474367075658793274179220541356517865816534408381856477577136786346969562478596147013485943007996439314310983717476262512872646399871862068896970785635154416437509176453870888415227235620024149258401433113092580764306186666800573617422735592565316607435073940828381726814494624111216779539014031353109904789701671444175466163593810301571830191634279422378008757222409630988443915916776145881475726613298813950041654817016614194267324597688315487782308940725840178039850934457663616909676541324951118496599501172357292275712396985091770699952541379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30687685554846932399058168572720939302605549792617814289748107002114626819696938143515437063814022855724518181156326616370338106842168481486947698639214108860750615760599521288753200954598331184174081928451637966824847438376136476846755934406635700265613087183706358261972896581164108642269602873338354515165421071707382751781252995423958861769661053192672142401860769428116127646960508342213677086753798351148457985932295850488109852528742978493953949684020459170705577495637752702876723071613761599058360303754730125412694269709060344223391108953795017594517525672144388220845721821787815797678128878121176147092331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20116865162766255466961495637068672294599603825905771391396145680441098850646563436742294534799831399411925014945772402619564585449971627267487467045046108145400281094678513404292958199350563901325440878992606341892296911090109864124149624072151164246646696501351694713198618665499230361568566818326750991668223382257897350076500874075504748205011496754874180056868461920926976117435333261392040378255119873584073633102708391525095377629492197828972555332879702878705659922674741787911612352808100311458483841893915654464195939189177395854706789859754729870250051728087441455340393920318415740525296211911247918072733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29389091649540935428350097901979580142110349197724130120024727890811056046782986726907467705196498774174188302929475050892078371225123156966188398507445486714648029695793832603575748481593537011574876020998939569625670556740875904477479931070290164965012402512934995731648255616015454384212579903799804926833041373693569836326861957046416929192816378929816739360740327198659686468312893582501227302129163516797376343708021187996412982456891443746923191053065994803283811503065884663948095659247805983736511375668938750761993969303181226444882267251107674500124154470248449805686678754108609382795075920728479164246369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20978069735988145014466364723468715201948964372615099264359545261772545066171565244143987060835193913339327872717042306489016054540689718609402908039191518735152310766367909971887279635932002899831208996274672803726685050784304984193575115331613820495968015550112896807132141769349594294733187472832585304563093283902659476341563420156012365080424920391925710220425346191163671631572757133852551689225764156250366611347150502706948762440785275227419196443894255150986197653680218855525457729296780705096899395365041035993290545793703036985014376515593656801623004335338320774797329531391902410337200071848112430370953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24735640210756640337529445180201601734101912577708262312572241669725068088196431237983661646718180110500964378303864627174732457098786363936226115077014426235967873525928413100614179708977874952963255225842729795318618048052468844851992270648650503032377905797292174682773850349175928314178075539270011715919756804331942615384468023620516538129293058187293452320206979461275881818066188006468122644437757384444990648613004950047501648287436129473499315705577605527035920447864291437763787346740065839916121317004470720712624445452993442346479181685311659146491176167455184176716896005204384078680026176752649054010141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27766337447639244773584736597053325821952694066442087721704301210099622718918078243779471799720226988980723260970131253224439556791242567269622206476194057188445728112754072313445207606621892848035423773031748386510414312302100377668603437067401922761388611496395394275490130711092903329571879324173178920231845719613090014179569463939981111711328441893326142183330188637453789498821660886929913682640338217034465131360935971683733436251926777465438924230125092753777110447171530538060743416477621212717969622646872792177216859711302947348844344207978685104128522022868683435064593479399214241640227585885702027168129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25366605929623077325257183615720769021404526267116265542384041578988775324842626516297806705898168900555423233722746793986865162325817338356825157832902757065802353090366237206349547585158252420985362410843775179851365731928043537410255402479568604846123381986114582811543661922302598454867224530977117083600474934673069865856566880797305507690559522055851776909691879955968789061260167447874716194215946364301283026641569175511999001769099164751074713427597333818461776304339936165975752647331053457942918756791375395386793181945946408892135532210825195151945337962780183487139729584154280035410943578510975061462281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22954212987246785549747684557400869746315061977374650381240450248548391981565340367780113212559213622427403828570580720191948411655228038360371060378175736442493672915674876795064904080559408335469231789120087598610920263490601634235159495859779093373312062218285325276563770866525345556483866459720516136959058903043861662817826091875931449868013584033105611812262357291840020302110602586641828079681133790317753981856875930583632483257391771862589606322312470508966503573793144081608611375743944559204914096042317174214186337682489158150934729157665586804302167708458694834250938479660960761167181156783179871247217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25299149342491363148572296206361570830540428457708954100728530551109265396363661624528050391423283931251537748944265466849651197421386286799955155158203408925307208717501873218966090479058803886616975132977150661030112738525412400621437801539961542150090033587101296908579212843400405959131069646214306697195231050407677991782005963676474250696821185169405508117467377220907882901754425291167913228001304560208003496996297957409837067379138464330263408092672201702664997560342964467303521531216441481626813270576163583939649956711399280449590853998808095548118897113318859137796745813629401605221105224207821293050483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28827035309171983699612402338331605256767262048266438542320192849591797320028541114254858914387151313256486253377397265589183335589008109822244879814894271934520990686158139033717960177138316654389417826804233852013737567089815470535808743294111242233292260329609587483045478378130387480048756635521940733286764013982487100284003669305372181084764710518286272416995081982077646672606455988745792814775225889257256403995415688854836359400366687054058915162303787501439926866125322207699941804074685296336490673416121344405441490759283467093786691081739881583659769865872085548483385996819546182961968802230124587870237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23005830153307505590536520710879857282145625469921796472707602606207961705771329858752100676337822647139738610647939570191155409480084742031385955941280275555994417843189217276373807877073989822300674453735884483640683526402046554723859173192528126672048823531801214240573997340742513805907197774412706624741108281158707742347158871377590161421799805157761012477935376913549694604751406924990588023622966400737257243071447336139749920920614371341659599522289206098626278531992069279934972307842065132822629470594796870353692368283681067367883583343698152336319705924860404902336696359006676291267866718888849095160349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23673581349631591279256741803483749101014548442466144438076314305214657071513292506626819933702252273441269272807382613402463013950272353155708482561613325195394648349746529165386068078580438081409143423599163544903812211058297900332808601778294330565089235864013415578593931503231258985918633357203657390695527842640945649894929410597734213312327736439226747040353056465255091589903880685275353298845123018066348708427227684296613551362561214131569942581824760771377751701424285989963088597348707754739450401829455034473785002778866272740367470063372901724614245257070691513368451670679070855827783760342335195440257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21578310215356579512762510180916507038637289215470225304489214495632444530232018213287737642410856084255815210289663497850856132124532271103978514835504004990825537208254468530455682014377317409882116145188851306025715413485901724063884232350998987984835088898701785720077027797466348589777047806737678818595437443521101642883213107944284211923664674759583163111873269254033687367264498053498603636502721461502333154941320466077344288402887136455742377100702107424455049571114836039003638386885580425695765688087925636789448900774294229273415274445374852939871758239015601183734274888153194975718550073938016753464111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22363278809707469420296191461900743546782271682754986432876653390336197535928390228822716420885725144179529497500159511200140993766563423290431415469314834828985067424964884894708254478752093251575745259375122832247637493536955612817539350324376988589288622536563072417324286531170544737582119075410090045477237255172321064891812347587108901841084519019327899499225099006422076494955156111199238330000717981889162959917462332554247337075037900732974770905706285609732622904017297670992081834819273144691541444505006204842113903056991541029904277386270597918937200100519789566678470494644513634447131328019633757380727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26744147041140148063132483720334598339543156738316826284841458938797632844815533140488673291391663265783891152592318322057590769559664262556517676190018432577620237528847709489241763129342381904202963575763187837930520874715689252977224748714689730844538599145660647312024339319030523650980642856426516063843748634270687785296713475775621955931435719073222583944017843030961935704588606714387642447404582469495722696972394413806550532616800026437857763508309987157567388413929717398123398758016436840134132665445656197131700250416602770521241895457921868863976723379538037334297357838099538809267380930414167436401409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20293005845552316472550025888729029825036598132680711873768533340798922639295631562994893910858922061508375554953502350418683341337100490563118804578555767435482990520311899705256730768714357269897094332467244674419270468729324793113094187184705633209051449159609415153362948637248315763525237539537904167768542499891666602132493953752286179025351827090031390330254311976633808648210944196988604514172377094106370802165153606693038699830893808559694519071333714951942953658019523885646329345550790542905760335991900692253801156300521019294062028708882180292220730318604672863338833912394285862028442217373152131636921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28563394554038890018589194962341793137095600308144896568689960583529291925376522583856221235363175821118609507460516567641074007307540794108894399011789481483795790834312902395746887006850613689745507525181723446692712060556134563988735427269798318704949930437587246423470630422133983040718362173921534196662956711578205974307619076552250376475755894356227686664862504234687880457874839402007090196165289538704628112746872700239730532049816904000023721644485948454722165946015478806287887216715296185153986066275290409843546572507562274840352166345999452610246686327988839961720196269581541608344424744847518056042223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26667966813144344300603561878345489731417868953378690468053515977216206577119368995013204006876174497221054811424935900547742636325255810273328229504830622492383185416338232118503665267105300856446387136708432198087637129891952339191913127801360346186467906642040322685435001189026682699204425836912700763563094223775409047161807024992331630909989013163453606098687326545088853147364455785894592482082999222859583766565821469700027320609591922400338502319008217179608164649249733319001274640935118478899444298591487511171990737829491674504825744430121717285501250631811087388945511349837162791417535291608857919079209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22669644970957615019584047254874228017134175490522314268397516113080181242880317547536992564555400931436386013104401060213456764146139068163355652105311402366512735004430492514441636910611390078238647163589141513600370863607672926455396189805253211029930799474831134335908005972722935441309447612552048977171097110843710730657776195528373264160364845461076978220396469848401079912809435366363984390913009753618442330278634735664836257997189028191175435317126940598782876142685604780793809021232204187181153503712894321137328262681048540502118240788546605594447668628728914683571913721000861221129815400483599536649981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23863211248547347003398242817632593055438395478000571094690660681269748788751815971873862008388387316739356582026919410963941027461884504989572574530994889797125680273238539123567793496924774266568924824082772082038168598397698217804428700676016670755509815620751980596213231874276174851646196534110200762901448711787716104811111178210343794696772457796538293820597542875678342205497008421284870018996348016376195510923588384816692194909561063751548076966278767555872898823673830450751930020522625346026503795285758099347958157215158064476876527499845796554248720815994951668853340434066421544897562614573681129869847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25190231308566369475486022173252845411266817133184425848020025594086316932255407381362384907238278341800316752436728434206685293609811048048452030048342206496892764333550147801494480273227767534576173833471090038337077628053138530563146636772575937909686099170896614688675148977540333765507786437455882988162013477616840092730154437753998469519672419246837131715468600190021079320799144683669355480218849057024648483633183730311423223980567524480939760625972247825042501316418563787676964690671232235043085584631659095397584921961527901312971361752080818965282048591535513976229843089827328344275650855725917499814379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24281075424636144781044949827700115372098596116633369579801423401452907024348451206127342058068268057729137492713876636537527962138267686763703149613336506295747521629794357379026395788102698751959158763529361881982072313020063104482574677808073010637122927741420158795130924922730157982385405170316211833321015483063979771971834703235096687329436640441792273639721893066153388408918799773264953916890775167531841898595776980229242436857461194455203377423032902985560270613538819604331093774662311343466308296929692754328259972702692354418048642784514737229475330837168265016554702259874813518312300112099969826101759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22802654998077947442037288707843323678997623294943524439407372895375902517446090202177430863592859834193541002020728397257282748981668857854047756665734092927466354654454251247483910072769228679881549886902764163683704926799532284876862787586752527462364083121778403247119955084111860647493401518140933079960088884642724297275457245705150588640542202461393341736134106885205585955367228254566306509428537030072723792097502691382660375541908974278394237495024083577646278355854813488195085475387690506828812394864012949618255220869395823288669165340317494200899995800161925447843391350545332532209468691953969546852211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24373180180206085751929074529945952714921545661202774414863118380741962159859556312700745888510387856904096236764351812844846667752134002791755466725877035513993230203698600815297944396754575800129910444560741443342421323519237761554572907957435756197662315484530354269249142593848073316587028572620519073750384068678448641237960524511743730416537837683729832655573573623898095212017778194943042113213266855095294607017126389105068401626722459566002767677023885401479506046291056125105083076827508359918311190447004181208470104533237149056215291372443912233547881579809439780478764574994441027167863553401792244944477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20521663833919855192122729462540861687527548132329455250826092363036888461306726000910134792842531282773504990344592201764074135695636014515762521367559691069325345489923963824596938286688279114256332145462885873354598340698961842906533377589013645840697585820598751843835491518890898299950936390280196282227325712646495678988228955481312017163305382204178187648838559858099241788736469899082378005231564648981981624373909621133215715504787652895099260546027489593018115847330975037346405214106422077557203559166780654115366559032477723749114723591929036233936936073084803710766304388903743946297282431841698142722561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19776871193212866228968728137186418984412608549075915910840750702744100038744478567061862327154848819340522248282432103201363178713394190704737738371072145901991843941434490474520748672217254146256239856233797630829318943955766429807036170471249557094084478654048678936806800113124310862819074449774659540762211029953094175272604490302820937062717564833493212526469338101851689004093274343731604574264456841671153195849195827398505651570973700771604764340087227992680447019306095934030585927266112487651314801097625669299153712733015955006769473228180220908607411509857632425919193250065888015941794312798630067497371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25268652967310906597542903339909233864939591482435239244788866985024841867601108918580741117542564586711730267314812053213524757748302275904635595470151628775613782964471887600120997251832032475236736635573446000047361209807497329237069958837634023952331078186925820339540346743445052876401148621026520547362985276583697987860006528688774395660084251286207352566083458546342412042727062144341144254730844149554116042204294581705882665479132525312149968085950601499001037359797689421420767646588743729315428255869667605847723104327467011433349408249466411301387761215472302245653470520255341863831066157854418466793907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22016924876200110581671153401330053647823762376323626653943237960269726885996073077239565485695068844167737525731629146443700403351936482700730751894142097047529793199079423211306889026304341368857636073173933817856611228983372248137726909861087268391330708562515451280306565565305233220698097472662933164708309479966770688985904730816753779133937626513593694593426307443560321234972285080195776557771451222634821651161870005157844077236922417030226700962804094333315555542690075337079301918943178370035215039765630479157038233571936129325321918109298651710622954731339909573784439803562599427824700650565460170138423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26887387792465419254740103162775778327574449668404905007492943509426157084328585673388146289771765339518300106566152092032925625482348143252054002292846380630546658426387533781239043894351771481360755046725169750215198491459600498854079497358825625088275906081518571012798899042671016053934670115657484946977140355004417875960077197117476029450146194370797990203945569649851122224318634511886274216084564714587781992485867437987473594074887796874780578980649448956250929374205957550602458179877862201052728067419180426381427333308272066295608580841407664456768649861246833528841408396755764499143028507746602443039607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23117889884414354206398169405731411615029057216637910223068950798333011223226332219202990579160766898856809299398337502255761364018807595488664832975586223241749836417080377153072631478142285070732338314787484564987530752131270675473397438527856705726535984047372459023853219841809218929383706981338406985135096729707411632818224808440338420194355793134288934798675389628924877961818220122293026059601064919170999054320734001102976408221855856585463663284677958802136220510599213154562516197569437414643576358062703046795048767720210744719990612155077922386390230865035332699727980238765970601659829544879440527261739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27912428124560918492232886239047704847597704710150813569063903982084923402131512078602579186231717588039045567050702339686697145880106125803109096061438711594300280243050643478137885472686115103206267165302281919359827896907127154551617408983934056022728524713108555221212731473716965458219843952401130409350756149832854602099092688501053950725985936595228188488226077422067290647053302006801677210220314107264261719634761511974380003253507192991672676357805791311526908973911388037199766613327973144078579692867941491303127415638974780424758812182336455740790071096624863233354468587061637844809242652024923624460603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28597639646702377261762610507730011327769771372422874373324124159826532420390479526204683019272493111063697367891094185722217283539337017512461366691073018077589128937145808314431674072223151826167032823246490713869546267028666442602560285333682190223371652405456701298077323451065159532857664978075986701867749186625703970169736584245861020493878370229067830585022347378575783321882414201928394163651584025595797189575630297432337268232218153764794993906745673499518493727858207057081213325855034595167644325393517208586133663448105827081557840280253274487427047824707940658467165841064153820625453287386800036483521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24470020930652448129768019497917256156501661297328114333771363617925413381806054615361384484940367366391439237193302989634752017904981361174634961668196782243865582044305522470458881229973335990099984817741051246802617623930369237051208611078114930213207455113149289010364136691735068324627314830931363042266036070893690881741359837727526634875279946894768812915569917078984872374821845669477180316576714669522968708927513931269869031328720965529879331301955235156353038082509555522767361406306476322035178898951726164625726983385946732235365517530832115273316449037241845136254536145772614112119982612217454601208189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20795380483300122035330339046087047238889109454289761563202866972786084321711120082774866730601205831625597285848695637253451431904726529976185092271141858027679800485951025367720539294134065524489723461215030232361478763698715588387196407250068431166231346481594480954044973265706103486286269319207518156818133669274687680170680421464506602159224449002472496703698839094334999800495680847826675319300675953821447817990330864525670610844628971225747035541513726283447551423719213196177159440089703785460578586068636310056803833308791821105348651649693246167171420578095879359123509778361197303619835970599708187860419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21145078121372050858790695073103311408343580455413592704626941039514953618507293352938073203921560942083478547321852952662456456889677645468764709344352765636997613900266086996860762440528075511393831263817207353047505670667093743019292536381216278397919823099353938642527368820484511594861691187560736828119728064262169015045843935554684079461417161519890068528135644144805985038165011894541176445834559795418857872968118058508130111398028296063242368170386052937753739057002806879755226838161133298352617870354187848810875807533302411479619090149912954391662211448103669328074211594905761691683414842576621524197227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23642130677392547343416367190655081384153417748487946893086077376296408309758630821229958699860389155169570743070671833228826862419924482120596187824391019807839530169003473093334262985856956918978687966024700623175482406373934337349393139069248953063098581940349171899213527038663741620374308490375624947275124475632609978422991048641944051664396451652830035710533760325707016639085727534149226972841390986289010084645196642091771688701079868735234990417371374506382789541406443448190848287956135574815089979382001902879604052427091372129092464197977685318097385946081450239965469074168017964882695941966554244331321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22701585855527104495037793217910564720919006382875626310824740595835676718018010593422955353577462903701849495030549002583508458367928141219948919178734651059937346210256476113592960692937944044794528337872869374058676245574239233921616562178822958916423080636823092975953922744225062491868178232748003073429885120471581379340029150511517354504579738194643974558926771929653984920389938058035835882675391136061310419532432778051148691225059937969529076385147261646880203267185641276654284327107004396677510948353193387312362768772032264750330107451228194922692402981117894383784513055453499540831469955617164597917799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26758271982685741620675873303628490331954700929515229855834814899777728929741311510517792859037285864902318764532156472856782619230529617642762260239357079294007676246036054320473893414284189160025750846171893021487642374454556150947950102387777615747131007880595545645798619121317826125825851321057259468411989524525586086733667141905958129735972869558622091124967577428563130700927800436762546644095620043168620783616573128994313254595308397120753853946522096076117472567561143147542804548968871180804402441146874670861091164665212089171018914441072907897861484357737021923130521707506303608150681031905083015946709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25344674408917401232016608832779545739245221091231623702662763869328212824233480289405066084310128241221099535986935525947864904440405418883834822579307777253323251794064719356744177066900589670107251194536255889240325542991710151215291966824098802729546253012519921040673706452788108655701673450354362399609837193783130008119292960725632102846931048025005092285854051025419861550306420702400245312665953027118461189653142307292507150391902488388932680201601536916907138196708312800439912413711591388910101350936697451552707312690407716344181398673200783835679020785360032791055001574254832824300297268008668012237059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24433390985845884969454406316753411697854452770824565066601767795069387303025142534490079559662271228761688829233648294836989468648706219712315378864123495349773243601789663187604834568564041280919573270742413782673992512249120813675792433599301296570751675493862617276463464101017143344955467102498375580533253695863888854278658208901463280614886684643561897646039958914276867158348749819666584302496586703803298082728652375741578265019005541726337355293412705914857553498218146307083762554168201748993069326963738384625182773173764830548368752952467085369335372224290568116917154306747118722960530855421554057969823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23137634410359878509375999084913930130810926108823667295064341302201450731806552034744397225293788197412337245850272643773555275976640664033526652435516124536036912868167251045364581938997650915419878396528605010016213172376607992989324727038215052186311192485838714967012262136318284961651634013880401188740934427375710594481453462498470305595306343640012015524759595600440773479433356694232614060010707283847332912327188615080306471394911910361648012184762358063813007634419734785448205434250519308564681993159014338538488506723551980769418406698266965547694679962856650289265320068917994888265616099019152924798377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23011818284932365182945536159267048983454438171063832144325680827859856780908948668736898539526344567756575612008137766939025310218981427336418994097835785139888509039335677863793410466728217191257818134641546265820072029922062342463014759926021510602674109032849493876615593933221171914944081063941388598976196642852559191257429375145233185899468397432699603134568963116477160497722178903422922195441932933094987929759166442835293310860735896760736765739730908209921428341608039223015602089173816685609135918900361553650702745983984617724820148974756873769244101711294620620800491533738849213737883582995107748193741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28416778054849367306335430372561205054643677430899147971786766597516565697160359424672800424763427467533263807128070546137201151665434748100729299204471139404212168001240286692562077980428569687315794711677673317330729622675998512204413105153481801435404463639792550496447229294908705868480760199084108269434607222356094246413182655356280937681650637174559071451285022532752812553000895381695556193164443915401503886629815603859703119589623294895058385552312037394420623333744002206287178551162855815552368999251380167876393722010016786039708559547014022791927506977723089868424918706154412916330428530801074657205817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27845146891995739025122677591913338558462526588700652077395260801065209090983501944020721714004936467736168876347166719321253772903441868241443033073585003178063971646556975414398114393775138022585891067973015777429153620436654658899939277493042679691509574167015454744275161374224529528213729202246558346349751568402260771354631780764249333326370443671434254192073887953417230569118948889022130130782366934812080975874356311797783948070398025246164644619469460287691565530009529080934243790321624202179251893354681474259355378503698605469043583898591248500864452452536900433408445983461329999917152658865289620000877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23163026888655854210719093811689282799643230376705090634393010228156334548455495065790139114403564624154909255212880410176879523991174804589718544974726088369763714291159335084655813756804611208030005253880911661392346371363656403077959173864370212464660380403106668299680655427331044529798899695171582843121390847813914658511713378342593628504512719825947649025982275209353323151997541103916825558585699532717780156720809429323563673172559872212542230980442716937936971559840526429416314494022035004649940746928066498893353683985428572283912553928988473614699569001777027836145350910382100023391405155449368675779437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21845408083110903926038897093292643494884839340986427394724052441926831330525760739468684531248220564781839790924358679127936329082426447108728584761707848436510221344282627897866393251700467117834247189988867424378850411701706273202259879047683836820743663287847989650504315338193805866730645392853982644033513941157812542084207594916995377695685092354208130619927031334425649897302422276317821875104202947168724017770854890184799293463120654811853676522706848567834153128466107362348070699297231908267496702322930049589362534328565963848068964720531769814359888072516337649802055654340036495019667239779212164179287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26053770409088210039223966486218409076785281966533266612748175748791169560182775962181433601337514776853789254495523304093303250917835553419759430978952800840017955194058460463441567372620312305481182157633689014865084702259427579890911402039842304365499873627954275344211185852979987588520620857031209712045512355681866106151767027926781044467684634108956571814351170315655908781934652900240115969751628968636857234876004306624098367259519602386054535536037655094869568720360677517553462942300828431919959495327323406349028184434104633274514411150527123916615159880029355124810546076854026805264635108901498847537381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20718053617656437506033798477224554533898441170834908367184974494547775359777066721363881046679420743889513334215779200562420659227707840682966441345904126636248098957063917038638197268104774610238745130971644533602226663197208112519933787600610490390231999616915534800886516663477681787819179617838303363162339231810882000355456751782652092281031633699739152922032039693071372135312965953484020278339878377603124650198267865854268722424623986533366939145283677001055440378273956775973206409005294380680095191849873418947322914347448478070012689163037532851353649409645630532599643660987567066740175181787159942087143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21437631241840419047062667189329035534051803284999545419057888937861003136095733888648599492746999650747771641786456278706568651561137202811062363198939104106060546332974630961054677243207405633587479435298980014358016662179216289595307863882642462369770671310714726482409223758805929469069713329893140935190537104665653060688144917645993728701808726185375010807358095469701601590066162646852853353991439390882160301106069260803417404153631213535318981466245466375300376516730510885829939535103861306134508291857506369675161272971652773383979219053726029671008578694430893356663081863360209012600369870768884756573059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26023075608401268949476502659214105155076859225668370171333208058796511289504521808816133606163605258903749203267106825925602322426987908745859315511016145995277758350949696727074671284154850441507471675978853614210538882985104213350368694864647080668828910574564062678236219567305413252930571463231066353826914734823629022546729716636137912960603735087319279976343078183107069410978767160632255208075469093913888170492814073383291988158984146644767716844645175165054637857287765291936562026935006755362802971420685084177572607808115089721349748694104398750135054988302218140874960306372739894392222014678002838302979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27753165602993662149108527191675262195533370501444535380786871820432277603499724308666354408541982801651485253313251933509304161332063848144901043723137071090937048282624568804030600279305013600233746038372095470122709975806988784114438841247050465619485323128490327793469263973414055209507738623111886807927752101500054863680455474232165127858650752381291040995953307814844432047201172469094259122926445822456762376480263446751104229324844197617063644218722163275590892057669882849666115804860886959630397546607544707652559332751927146849844751835137745549356945979296229768210743940629377554160679749263223788315603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21037035701057402825037649783963794961327359557646108568485546230016121212457995903562458874611379722933734892898227003868791363341193157899282713646983547638050454201859869994941668126730452870475218873585050043497158662929011546784304736179952335561543274713545517235433589357637530278103545270040857680118577912419254287857733701970011710829941759364916549182099310059542653546632436708692866189248489402751279341323155473900991407181495940113754439459823482917317952599293736979254596889534485656726630127969615486736700340070806019301661237527856944088533728398418959235039673223073591437256589829920887531940701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20733014893506522270993576453516252966809492922140326839580942807599542830492048957480773801267365316775851840751078350384011124867897894850736404986931947097447754549649435871666393057243371071615741243507365745556234337523613673513097540555430594687368691390652829539317485439868864128855029808577599302727288361718903275559323829089220716792763593226612193150473438689836831336197921642926596743925266388723736194501170858899352154309612898839621921370643435452493727053233463270807299681519725497772570339497495131046901911164731265009861862427588231970422256513393101559717052542647934206898161420126814429119629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21753814185732778648655019816464087079680516452831658413697898329220242849599686179704652888033902893906128329798189850994973775342667563360034306173002488788681166930567883756012994097925053202469933688880402923395090145429810384702985165464176332127145815036073275028827783093389251724632339239804303083586406378362378003451414286001348034592114066743485280133192512281751739329249089142614588824942331162823984967019094482258527807532719386091096040708221472446098154246597715819740669267410644928961871734954613829490294470981507981664223753697837194748785466502137450349755867205465574227403656354974923146883741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28896732736554062550671332465154771979721132433173928011704805716471536967839630517844458374810127951093654975531269291038009958855881951831738371067760609583509135630458945695081225028522239490383074075366555705121390276739698028763069791114874802175227163583966762538860290630910715301332560223040057470335565301850983175622038181499118334923450046835321227351575241696121577345547151892944565736010875154831993647020823971616470296193961207544443771401905023918389478366838236069216540994156165629201470261371349213860239429615379273993154873900388589768043038387692415783029795953499932364405595001140716879455207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24458919885796591877902527861306156849208254238356824876542774196365693048754986288812406047658530898915526030895079124262172617005263122470992263632911618567468680362338866432470197962526604185983205265242054625632979559488553524774736086657477866818344410766950402447679721995626053812618942923511504271177148476120613303118693005914074489802162823555632971385827305437076973177371447741178781681393265837258484450726369857711970399466422974494609053793782687850573638868007240535703002422104855383564667582603550920560468711098416973412659355863568818542449580944647273094197884841928300459465758974423908538476377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21977422725471375888592890462301209813335233381888710061392462004854659247763475482451984352148128041959104760229768868384784126238526452354521450615887611944984586989191663864069278299409836993253115583292911707406714583623852515960931547986096328410912773485871734374161563847021407856651186568094252116252856905821380613572921899731339325906809389479583908779941428558951579182139302723316361823166396733128204288462765979547768483539142992568983182372912772470185927315098569432062852295426075763526901837761388969831372227555341494442536107388074579578761051705183566854284008557408086567675890511225836082795099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26720989709675354519470420070043298955214315942714198014621650336189697139442279018114190246855910807714712477994612535249677704311952373411468378534763439582991591888624106336135179163109622862187682747630510329647378853249068833794182863997127955527037078806254943020057459537923817456608048682535839589349159626692179406257410819862629850508156732967439182312169937938994322707806128135868951990596784640714331249177242320457233048336278738413410395871314268313351504256322151093186051755640309085786788298403674493582354264566353783491797663310037608549059128300313598190846962783938184502047558060078498993083751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23049745621558020776636755723542346647398041073030081283424914743434012733046063398646620450493492331268073754417328660686226396050241329969226352751335817338792994118589330422421386882778112379191638347316191361542004149521601486204575163949287089212020485933267726339380211991602320061978991468270746499186926788921979567716027576624292664418375619112243188088494289701097448080576133664889237667281782359762642457392003718451000541564567260398833621164427760737481497389849523722174873441782439203678298494955938327512935699108631952753216928947938842830952411312605086174134000628682463874740359925578238042408947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21999217868697835610563817887496215003245872709969440069855409407567992788269375935753175373122008393702706776952586074370785190955638402816133044414716353852507129116362422650005239856787413113545538329251445982774523398921867852961619972075339216393733867023241110292093599952928665482403551415558896229197528690883807082113646680641491618962433105754414654922719842906308399050906471996507180257588778481406842755775811311436775918320271749142060428309584011275079975713334126268021618429120055147093284322376628175079108119138991227667783864987669708675835723333794401708623552914226974316981496141461379863405667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23772153853103488907378347755100183616655564277669882739980590385121988868542781729413883018425178469060734139905127013906344116177112820440507940637420225822517026335076121358001366596763529383545768853149397176346646126690713177533595183768964017843067818144771145946018847882312973844821092107885978570338431033790126413471617551561553359269367140969516055474369566147210782190550467159603815981353537054392649507603951407837678611546420477920178922393472368881194812742593073081454050663453074143270581772934795253694398424768802026432541088404233822158805710299020295796579240850912880010461054075616315066068583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19101002141283386519256636392869070754683292689115242106821154045944313667768001172942773642586028477854500936367100054926030562077592336757210403436743650246471706396486672645220011689082272726033772532518979287304982566628971570553196072435096266766421103055517418670159543161250521065674424264941064712020103372246557326495820916772105581016967097453103538432980479726245977479140494819073182608932619644691390441611194407797427714919191661915110261066301124348512683794281450641140816892963977667876673433553633657191410757103808034111220040672493764109020074006777802679407450253848334665006088667139026996534419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23950996240534179398405266384676641253477018623011805967221834945753228050708469952831402830269569636571151958319447179421480263127757004842229078106412184244492695881989011037480778932864430789388012681982801806664256702822573456570000667712649459911572904580583496054543005782056277827378982053629939682108798155036220437128131691130568508071838055784952458796095959456220959555022736981118784367421508499842863296380492227753158130817492117537441216559421177255382155521885568994196409004593183764928884041639776521716292066679078671738846599648080380969769777229436695937277968590910148358619010500489378441402669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25060981956501732501188394817430957341119333331151617475500016170087879382109618165935246503092884065519403776970913518594881059275209388288405328044290486675808967645813644610445054891807503737762679918939078640852348167784519170922391562737557777336671055098452881560508910683927807957835247978305980210174032974474040654701975119572391802976229628861518304820154022222539887381156365961590940887547454808325952095221820094530524092655390328894523585704534849557733804965585337707805203706406486414762180368965420630023092819901811861291588674886030084646047202253362722684308889440873452225279313806174226120727279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23694645337741428606003954127215228437105534814114567764270268915806474103704125362065700061155690499542382371826858381740152729425500994223934375230595014871659125839733024589022643592051641594870265117741123096894877442181100212153369940501459951610980922260785532552219950605226617438761235382061964643136439758763773506203484506137378048758664541225955990424427361262010479689666034895634829669678949537611158665503895837478063866169333782286950293355686387066368099676006435209972449367901634685105995428893576585145243282372873698067340772570573147073978777207646777632507148956354926133057104622794678941253323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23544695518667883056862894982115737119810718567876788943338218970483174454194981204263127372468283261451827183020654662715311669878540037595377975054818083991438093627958213659288717283686454378396177621019437605860225068654393509864274860876302984328781533534136223800519117159106479129732033590487270530612169383101975646591219052762222965531532040030787684583350396511390112597165158567977637132088862461245606970224192581773756623916630807230956124269414049234153385238124860354895344441377414960390183108322018683039228197612809648787708318198402621640508899512791144606166969041620026748189483985350704386820081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23956338784987360743952536185402240294164064818155839453521752373988287998043626259752495825572720592349194882822040818636571593884193524589958632498628252334536638719831116070641322265184416718140161720749135196575429212719856442660791130973636950871673750047891489372103841369052653922396930828748163753074349121807307974027524645089156018230768775810486649393754558767396012516866028360665970848226799345210125797982722994074540554842701332222740196731224607541626633191716917418419807684030388598352686368459988799936009302446105290220113759662368161199741623793642497890167575811017435385345963711709017403967571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31415493862169230375912981348033015393079957745188481009239316578984232753909847903425143116544552966738122713611300944713153381717341168468440138476469936652611574905183792247670996392623411562380959397794158550672874826558617834063845131091023813519988481281667852411766025671970247189247963907060531845672485522494885213903210492673470851378680408915334074294868744814538917916474892795440694162506102769828741266936608830448955720371220757058220952447103761541229840659457984693301425535446632005553708809200341747067162740231092088868421467762484659071179934056383697044651341408218104886485722208676698030077061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23037542993847428950998614481042809896209712675521628147745577799168995599686717237599741052575511325335982077486976656232095347950261438950657798944858370158294990114725666879994689854745604072585409455826320702250251876176186264139827673503368146804048201565688463165579272098585769876200270842787288687643515284180331734114120396036576542083888099528084734874769772854297680857274582526433025148251453383829098119047873495134575072538089993921664742657313339183380581314594541299988750050618719795768620178504387478631276229158165292270706827165338331358257273201227141221402450501939037314126089311873219618575933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20863595939126838092284391327637203104861562779945648905378317670307822218449324050496098385728425437390142365717646869461273276315605129471296587775632119716596426337104356766321061020695404991048477277259679524042537868009048502007951183870250103035649466914362481688128352611522525580881940021928486328953541906346149863280949992160491602998905074250798324888416547036212422299338831536966599961240996326326968670061058832066328944850446322562928386016818766749453036944010540803581539135147656209294984294835986016659039525337421507246122969778794992790950196442673844866821613026258819829858101464905119787227647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22590211488130301074736597024749253365327492089749564985636397531383889556972651256495224903806394782376012820651857113451762759644398348483798662188919996919061509717788128172487783296890768556587812439962295839542974896954391254110098109536266006100249415558921308450441877393350246075852075780548119747547546701243217496731667161638837946396585756727922137216932578207879757554633887370421965032499482207857261120755666486329699613539173392171619970995080125498819353923250680931034630703270260984077783913309342919170788916240373393650667891026549282471268483548459242562450721236889665473988603379303022256891087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23915049910495902404613039767701371250380971511174628750144323829666431862457899862055222263200849582172140339979183247778074761339886745041163442510691836431610131339313747123135430923722696967224953071701320498992805734726032398884767785747915187814513820783804116821497574535661988122493848869242226414213326202722683598814442739541248172340358765351666811361743689320916786977863772620218187315439530831470961329717282679376087887035395441061396334378650749833370565419391062774576576358531352605245181101144564831722908065685862697510273029486318586087900712710886915551088385344907237586354233021242619878809509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27387208045001212164704990368421302800483462022147913675588214721314505170313021041948562801453710890766013673992666017406196795913280918902754856425523068810620209337754777445958157849432612299250090668365811404436613021694419265121077318979986315913619734606727184503031796144180594354001787138631990247768110528349098138402018069452091481883869340144484385147960387709072678695135096587666465855367475172571574476047870505294378453060268115188571838698492146191115439985794240877571675717131548704872984893082655994158378720998364338556938358745176703326478618322681097734977330165896531161772151393741055909963099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24877935720981803416792435870147908915975394578600208823301480326105358468367862145114126759722106931347100151713124549073423015433528993904242667600177694351037642577538996872248939792850840096243823565997823059024104556766303604269342597894641565289552212233943731746891031553599720573662987544961576691920866925365270241530160386198352559065176016618089854569830410576282769629958639737911071110313170919173618944875709802801356391392950349670191596709014158403834005272440507819527246016850894977666680513202302832343660108720270751699844547136643621795567408870563108032027463956746097716324101339489028442669331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25662608394331088551080774545057252623312262578117911295077850794288995446090983762683511078808788749828710196682092045861053856670388510044438255637036867107179855409143233464707544321750485668862051906973937188324521435988158379099762542393168646443590678902925945124450710704120060851420482690593753971646868467582320667917266724546241808859403386134161844075983653646068124465454322561969837721005000072761624253631872030849029174490219164074779865346640157423018008366290134618114836152867458506124220119605233948184019185542692879654182471836713100181261392434680462687531450487385402356663388595000347927006237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27328427338381555160958141747342729721112006467710773027217627513489697165830699773607784195432065585883583293206638811198287814857863594627138524105637947958311768156391069869145737407709119958127813518780007954262630825105012928980106322046303627417898209438731491035070535177870358623952293802149751175111205554375892462431552243535599135211192491553048679162832420137255334191800573723007380931061917894585388105342710075144049732666510479672092857802927629585883180168607642684772480409737397269780364495425017632802897985118295587474075994685637661345311048997700807437680927604257116348196622446463877909190031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26019389140856210922473591166395210510301829244473130456472632291739258280202391191379880771405856937272983143579144787127299942923828500737297680417899668651833873135970457775681758890049637539455762505310596662226955377689455985303439547269278382434303911538289418900655352666789732878428468929986230300401654974043557623748430976115690365553899094790802471224950601856101122491760389109302502816096730657355673852114987148368675036866347472531905876227598469823138054272345344501187639108736716556905412505628242613988437739034614653069780075385076673383302656043579081317678151970411342897518884398325805012503379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29272027579692371147967312031415456144534376048599166582952848401494925818874100767392747999430935029620455165053366799891068978525974673478677534415545288771411282087099185923195042652599614685544520090885921716965296531115526191509813901688679871153664579191139833698846187163457931958478140408915228986053172428315248142155327877082867292738848942407456590412248433888744328524239388537194461402271118480549931095363017174894534497575448748417991482450730874785457766031662778814621205315564327648980827748469823473118356577626819666951613999590922502949309444958681224185962245790714873245918091441384618939053791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24038256952117943415210709086038766721715201431124160960604082503924685833976341280513015597683701701502586827884345342012997605464030246018188452767476171561682831070085058797358240393569896865090353699434714303482913007040558168163092705712807890941483771147583111346115607525403763054892728282313277172138934733022302564715756098955782508239537261995846846386874332477289028602669151904640968730153314475477292207940345949064771184971694840217628103304292913189263580639729947219278380473557769709086196227018018067567444478919895365170188906732782671546732469289398275492682826751715816544298864735444877280223521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27160601336995144700563598940394413909491353580934004293959611250477677754066663585561325298295671604799741060556785108638896142466549546305467156676424088133656687358217319637687564051298409599925892531217925986818559573244675400686287146189175877149701755154475081461236442044714293675954542538116090998349048487859107768246393489655241780607409238060723316937733958656289470816492136802213306680237634296669341489160795174065799103056469187367383156497446150561333301456036053223440542500652455640930137171573466869568038945843538249375514149622014068887478409247401105342332925885869710752771827806848994247966609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24857912090143488247344870190820426793932785154763728701760384873252401210551987867865759836955642164155133234480218047768776018805350276684017216694663276333821529004617188851311150392350450886524639934953914997436496194043506110488910144218601191963791981551964189160561451287325716343630557599236824656133587485633227535334959719888133164583458291686777200429329733298429448751014050272824321592197972520398336585789653311856006610259663988868625754123643489353812428642354676295917154863658385650382962486979692030131680792603933164183902674921430483276679586538128546165740717444122232423194391351215449530267021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25057950343204280024135063335325793591298974554824364443672297496961574864726831999615665709172591737177283729903211157121264191824351742457214192736217310276275016057890997857783503944031358653460432354715278619722334116151308031930768800348389926518893834083640791647778271479654465782289790026004122797143023409633850988539065778857064283765761142051888581364167874628473836143651378008974996833787222532396231361197538121296423580492106694182598629186405132013103578372683259648506305080454375065908290532713879950661573635820836699623564567291357716095425871940397838809009207481678488858439454850966856411684567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27996407993863830174639307158382259403073237502949966031809378939484252777460166803484143015479112231665136404883619167872279951252535786944467946039605866285519121432243812161116488912229630125575293970046216437166755810195067771073883008406673583238165374738313415040641153008139653439120395142572028037354408878515303768435061476256369199276388030574104354262197212344411838338451824594246471424295492664672191543296993888774333727698297904238915728182985284131867486308188381714701050246162877984264876346725851056842235640231750310304254708082363624387812250832635059753702421634962973369750178561149953102404849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18745273823776150331067731572776145088928592506481239618690775117102626483314303353463325471379431815755260130522656393087098111623071084144667926157488502159602549156811447972533940992012338483035952921849274511835284825442100504407937678501705754014567233420189735885711132202267267623476755626834561770566375789140764862432332680658583936151824493616226206176764878561362180019394133743216047424797485672156029346813900920202057056143031111981268135061541768210045017425613396129273291694073546838349147561815686469236524910850249559199416497924663008577785246538874279819038513142281242321700036995724421647956677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18764972315140215960782729304494235862995095383095019917896383429799196343427387947521993994738975503142811598128026233488524043668010767203245165769390117191706288490746288901883164563166028274178975298953439438522569472649293066904676663926312278351487459639312015187045806393198112131846490825888788812512355479774568517600097975302082942154283085547574770507271899536995160161743382096714090474227937060242764685237846464265814437649233528606256390525623367877230290272870827350232135799017767230120523060148026218084994892667173935006770339755356835943833583407121350481968119999859548851092698134752689100721819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26519231567836769489191809004983655355862787627297249226903364009383573149431219473197622425542428964874183468095013546159594336134733576309544330415474162121056856726669642789972968977444207668745558451873472263698877073788462496692929728461366003429816141134099003440973465158984264094567012446285317774216209736858089713772766377486935006898285464763652463421382709495462506077517957681476433186070760304182377542626216246474116693915007818914875091335313763523447256770254459162634889058386167063812140754717876266283517817660337267970879930839889948175143012771646428923581990101747632209392902583680404420399437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23489589867913774818103131405820859370921824036692226915571343534783724380388644914470465067671634491956447234165416473980300795108842292223701266108817617078502997963680101609946951557211797043804672641516762518149680841401097313977975539958428209693160429601303283771535719360072166709693615116367069897451449548827207842877078777271310786975838430191066046469501852648218670313939239702773194344101913071112409733564115223613410832751931666041899102723398773778112099357037959515472070622931485072726920270558054417615013107302158399927298485909970240542849940216814653644769708380160228516184962447801902653743493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27796609242397713245147900827841006474515869767412737519892086767751928024483251216792522040268731938710615894814338363432622098528152134200596888453318086712785589560689727213730515462466948524591370970764725063950522428416814104682863090222885375664810957320151615511951110592344192364387285906008692508272398332333522186963104740022340736781959905855184862692645755838646777317580877420728138626883026732965029909355910726217254986196724697624666939620977558419234431916178548949375901755965822841389127776326499318446582849530527599508206346293341557989859837798271175815399252527297295220604432377919213367148753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27602603708626592724757448207993214364342165950422804629802555591814850548578228687042616026529731518271181782376700468426732496838608641247522598021510345277333944431927758706891189653276993057671161510179572395834851600001902842556210356452830520539885517847323890635276710627539664075410122997805784129757621374863577346564859975116624114746821427170092099610028582520636045221808392202718676053080178914319972436546309703852002209372884796900594841788694049677547776963681591525566797033022927561912558049114267914053113606356333062922997158777809326476624262333308077713622566627640435564128118692507611020261313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25690109805953045261840628373432174002607781573023295343296136177496957609245304472763914492443899980738712149179799290713943709089433295587038757347796969885795932832436901299422378955423440550335269989404105240385751713939954764302984143198660568660431194214220517894729805870896218123910100712630174851728293907444972131570949838844429842012269310750246518638162807966001952928742897453790420402948751410812741108227599072541184212565165748552889584499237080455849892442486004479348625984860104588325487567677179219705595731725757615724921066517796261721823218559031027851042011977202995551571487422611714174215321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26095118755699938317992452084377419420262054741479473534069065348337368399145249376121430426920391801045652096011417638114685309322997860483018822819970647512782121403343597553445124961978815959589763646210190754451854260858944377481513409938058092010722009473150731166255559386527412759195578520184146854950280191660520249196909423105210405129648016163229780492405775247409136811933843832693393263185286517990610020647013736110945675032174658443824054730506979665616916608309200001235005384460683113595586231447388677362253553629314938218554336222514081057022746503448954215308531049041080469828294250041619554167191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27701087628913071537168580393395438370433398831230778511187795517317179813096914463441185277576380861807754183021333488217154935140573129521598122597165935306750557283047907873598445851620310501808956508000128225455752405345584385378971632190234855788363493994155943925786737970772036669629305828471538780858975808558289828181779568427074214072039351086779021989368382747699241738453985568368061653015795730765362379525041211749937208446229226022667702856434644321032709901208416521641323005067890494519744479653277477121593704204171930540345153365182632761045864183401265390348026657263074467396327037644120759664197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20707941315971269926049363607479933417747202363434897894242722688457464074835031796803365113297573979340830645460448687446537823313709554538276892394448242187857131758123660964276433132748386325946617317873347114464026262509118305101920656405176847604217504135824832496491555817345556837444202091313676575784220146034694033923773924236059315398430812514079971910834473897773195877361166419971448568854313880639012081195423039771451213730820898485972103200931270042899483102985015621058572992753168397661293672119402715000910378524617086594802612209495879125334545713797093598635726426180587103174213883715014018859487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24549430531290770913545175908123772823221005000780719512338737091321591812219305546178269804682808962508286240244391659698105994484774324859111234144153119773511866878018138500927483872448985094571963916070415223125169344158907673223927575169845199399797028561193562219676345600961003402909259396573161838063890116897554997391106437475161616771863132157604610731807533702814683889020374267830150530291712398509236396049892275447328091519097730044801681261159472625118242036358968455119471702195043590770354283855495254042896789258114167883262499536703216160301695214689537838943222558622709417602738755149845452166437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27873901878885595578205719266029902221074369848836530393853909309812499003612614025092894658486878206290262040377765216093781978181494461828125620306281445341848888632894531411147785646289562910897546937279134831642004003731904121760655432525561825884128890730849409449579489893776221265410311752625133508151594422088721112821974744442802178052808281341700578304336489099155080108844792856798375189034642226932705075819909301928861464917347182977654867653011864565664123164735403952302930372306128365225805650384881918217625185568185595015966315082867988204284094546569997755101479037499691341290654935079272979688811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25350574227970235189470414202480303273527220499578471133988087699269264551292691238848975640702378099547580715933675732354956763756447728735283295190102188167370542982434472116644794494961443918703700603834687291223193076643143141300197892196867371862009358605000697723236195504138741170866422987087951111084211065263404190996585505525528833105866367663284597825588269167179788185420437516606291720566887230578224873650487156431081749180057614814246077535225003686844449045027389477504305198732074221059917337803253813337236293325972241108261172507279097913201842558850773783816016624104319742511605848411383611590617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21826219148017320084270656296016509771993789385624648170869699525596152346863797563157936844160634317883990272508589655598550152195629733558146858056402153862840375837648152610301919837148317568361452164503847734501235127354805924293322067684254252864121702464212494016659131164930547995761612027771750253987700903425191910769908174691336297695836131218100752488599696835487699187333597190886029951458710883312070793043285361415248293026492089403048806014258410601265886557946842859298790322835544684073840472623133533436138291246637220728819661922103271308571025859650011852142544775213066058349273569487392369824773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27242573159632594590455256932724511608668788734051115931501439561188439875007715242741742119955392142998993326683601006499417603356181320844225022370536883761163819810503780386744531711091455629439679854916981332672410562534515647061285311481094556680936398395436045496062362900398748485068203013665908708906287195995005754081395190568573774147662580444998826694286504153954220334275853466854381971650922250198780705775221687145678805839809129838895360164805103510852010623586385202891754693374557452633443015850833836083550089918314902684279233511579615846014592671076836856834739335014127800858741116113927435576183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30619229267315750392991136964852555134451900571218468719685364173169616818177471934215564119988819191340103091786155350249646999099891916802619381127392852540586585821477048976626859503140321661930367573483729404938201047590148406656337945305504129455717202142763228575831359766520103817433308464655197223012916645294567900201039636287740647883992563559865299964674038188994072410685933699120806796693007762525901905998885628166094335141601158235579841630731850476025941728985726765907270721467985819784412558639596468374375575886824917070873912142406220234534963998601875516970912172012786595413633714369294505215331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22251885873879705248044768943535747376851358750335684010146535403630207983893239949813084371570653125376001742929283528135677708107990002170649215667781505280781800951627634081343939042002528410885236544558892067531927744339870850225123024801292771544292695454650123840609975101782877656025786312307485565659836873302466677979465193562922799109549761540805711951844947164737494806363042253121038185546940385760678832337794907006614661123562685479915034014559933435918758636093292353704296749912033161505386483186289621106019581664565951808454687509733905576307683508891035481026769414317232736419752722127165534253413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21248886015758730666245343419794561227178022805209082698587451028299920095363987243109654637866379293065607500408965920102464368949230251408802965900522783938995052152851584649853294339958870103150923219383519049772718156617023275517186482810252610430871098569167678364357452824614019013662448003365989396931665959357055973650985173029529426077785478767941326733994663407809541129194026044075256706019508484329105020589579898168001147016038100376123801684635810348554800182738529775639444599782085415105816965190416819780143165803441408847246943732984689761065212620193165009210957499044905390679050644589698399073371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26072297556184049132134502493536774460994974665641714620971083751179482677199948290764771119320676179840143909664281994864639733089535207118537541261434809239927225001907533679884319777680496760072656853131696468280864135726494288203392632393569734489558778346303881933242923968500126244100419949029433937506710070221247024428498221045516212769951052962336095133207331627642028673495352876938498819428142070699466663860250762466570939075149886459826431201280268379560143958993841495703724397462239477117924119870813664522483937092090158323063232875794442278489186134451724193417208577596542210826098518341147884104227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23781761553567887554100114128006170069741130712783699301568003993855703301007047008436737886499173263511503968722092629461602631623622541627249359070891763423427936373102442896203252686327852763664378237839074979573989380236678295217606443918333006722408010837443020045210041225245114416061663634372461316111528384724879722252953712718785212785722095132236230243578597681919979366002180126475691570974523013399483935208833754688147911652775676246981830901389687524955303196293919272566236072105818689991837557172876522947242527326529655795353253652036067008200515381087469934200908022583203706487065261560833487943569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23403679678645587182791075580345131180014302686420723114682319831033944794510915338660274043639281095292755624607397762013569334302156584121594302881271707000052310712691149809682035823192389818785629286993797511268613115652007791050614930725431883604124922708167374473295543844048462701626892790729729754491123181338293141282079445761338587372079086401533454965168757899857760197998389495017325012629302404943971794426549812751900548329604127272840198162077630860685367099202999578919417533226386175815193870760921203855483169138492236135535211457898136554084600301445160029723464105040159513902896520536345759953909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20984831796026070066603916502941861089993211321491334127013709371509507022522839530356230437361158269002388378729194318713860310573250906871134009031146167895442169196453943232706262619937804167072701211524627040954329571941749717205112647810527220815240991047190344468550853663399152776958641023533622801659897009676829561875979849625195613700415461927084597580330139253364905024656684273719084956460174089637922244368790339044284826598387927178591742004459786465650277744955204317252989267457672787116843953830609010444221590731769412578759620682828024101231488085124920119263470229153107932258381669701507576009009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22773116060897104061290138556921693612844035383054406316092281902942570936289441391146037778885438242926373295434928231082085688886570105102655366984282619964207853002591107543835212560644236067251177460710126676264824807176387443721303525723480908182876708353810091373977326195600303270114399688032953643188674926475221486014797337237430831086602776480838353105867606360783078804666089254802187580193663983532339913918075230912611117689283210814096942708005807661594091385096196795168319191449357207478075951766244867872255667748263856141400591483956448144039100154373123028409098631251632837620335530711651524336943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24449900862631658004029420674776873688645813126005216174622306715194166487710280448513648495851731072256452189108372192057403738151579575944291032599509051419731768507049488431649395801959755691619748197914962321914548144655016935785483413711881279430324103059147269162705969424949548531128782755669884353997590491794926617085920286869275238824980189299729409228192080390440968202392724390385823059960143273617596820107347267866196012623528982042341566854291139717654996206219633008815357115941400944944702486259820770298169868041604818927423587012704488170831556686786294114431706723677880308234989221215609237105593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25228749782481559335959065955351120298416912395135954409608537038286187222501034980791309494374154880085161240636446653246410110838889510469564171443790584829878076008448282416298386654474313670347488981725649410229824125665828637648514500495432905260691525387088611414086155706080127926111995809186111365348868422332439029151919933673687508020174703055721902342337161307644634575820281186158524606782994275120719212389952239463942578437310292831509891874289356468180272263416546934627856403101831595904856881547691418447644535922432890739124632143040417127063605741880145956919388951370773892927767051468829821324667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24471576481754922690620791295999274910509377729364369541380031176955913195389226440420404095344152597887225244148248312277330430564968274933983365634218040413050079260542569374433698987640473546474756440127763345681505385064207557814872872349714742305638118889705769488866804135098983586606895876843648470732130367248455822383989202033032259240846486671149778820870542497566144380858023724898765681993735577247646035032287495331246593051652193153305225022060680101332487583669759987109708642397850116146386721262180957940305415734360601020684792542867145398706877486280068940585052518486823579679724336281640872978237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22491336194875395121692803414538600526959696169926944943403292309135886566089523329139873882954146533496877184338595971615884028947400789548203928559876395592623792945307940317778127916173927684305094479224045094455549165680157834522127935382565530101718603915641678610252592170376036184163052569150058899215149651030511932993774014369747038552233153788862727458148314548230884782791815333106474541922234123163328345384601419014561728291842788838710362656533055732125468808963887731320434699432138385763894312581302762651724898540346585570143979198910250841804121360536368780059769503936727632276588345690760936802303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20828334258898406598203455062305758585928665961842329650146543542512143723866754090232871222692524375465832924723478986719110138128979518696867418006909474482611751771918197614479120153625200497161901574739410285852198924580720697589296282802305088446861228892108011748401421751069580663143338063670878786446677407630996063376429354357564991469580093875652126350620868985749266725309349822041383505682240111968069730728464243355166154626221068416615531379111619346818096938057600080668571316779057339885587961438022965669601377002782959019951552643500806336845683885023677591237746785623909848080675511395288316360303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22032360471343349619441830453109148417903751636390209571377316365983033192753187849011951780290750414703539525437739524241637284756296661248739670239623941731649298145504519736107938435350008387473055047507650096602337295668000821707729726709303944159047339699360152485684925153690621021888592681706433093807541012202684202887005443906187273925897468698432957542566718512200105045665416210309686697565300902612863383532386553369377763499236401617792106485440211332090010347675826160351309405311306806726472672425331189223243232251889359494500653656091785046532324228782226031139168063395258675989547458893625252251987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31150976056099012189312555652892811857767685069882778552554164133160197461596953346763891075977991245039944174487090294926916120664512580274659536598416672914356902784986053061981090331675479534933389401834187105373191896347463417734959589322692819783862059651334178466552805513214807450626107134740042016036041121502122864224038803618305125322148171832555426813053545256954429136156153638040117206635093051622270350237318852626599553839408114537309536045723005214421075106491846959742772323571993564607983170219897985456441207600263772399365160914250094029896647227075088640052326690883983320221029853975039963261637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24194177901392073580502781104112925586302711222383055430978581162431014739667299506058059035368419029919457711857854777102208423118742090170761844366878224759912708193424039441709472920285664813262437951419457039624717415105963274610691103379136779906624965257728721174072592137238060376405312365824064061455845873990508512706886159512647597826166530262590948552710260683011197346835543991710491564783983667472481674428007544635400948968197367749164949810945244821507065396492016564821953081327387213564516349701145207967603109470525796095690750303421333849400750283550912464034668467055472013218412369421194101427381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22262995802626923521740978667737564489011896274054661211535690424960652082524170927361640261580072988168228328899146253873669100460677786534233827085484651434624216593141687993292506079764697389975623510654495219231750549994148269382756491410339188056975357468952902797685606353083781343641626761389893610930102178162510366637804594732375269205621248783957517051174839498639750478283406464962929911091525469801226970260869364993624995083599319296863072057441786388533467437428711408426784713554611917835831862811685359033499390566621559085208827305944204750049323055207757888194393166659065224509971141144641035935377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24364926960728886757916641857589286731370600607060927635763893473911796896231606221373962800724979371924250650985347529365943484875881871555320139054764281621073970396796390782190619334312128719214518103411539311884959927309042476968246948672322355695337496863171313569033805937619257573604714874291321004793572306400933425320814523970091441532197208487127754904566526790741053291146778472768093903292651181819800188626800797383934803055919043981362574581617356550476470363315526216360250828470359478799898254632518786610824572372835675602376531022085490861035461085624737699800740167673804420207615750138899171853833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26003030912260908616019515882362593773665291073684491147102139606229892114536861906648747092069677830929071882932341325389137215997121679872201590991575774268442880253334259280525069918503693974611176293271031428116539178829345557758686312541181610356002740716513602824771762319746476352437335467472399541448325166609777429951758606815729487932242391021010540171706927800333970352733374676369057148491881320580095692032886592358986277633233057065900743362783360795580364726265402294309967528423523962332697795118652447861267595326854559889220469076450434843861356053648862424369137826065007499968940073994391374978077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23876325601282340065049966729172373421621639291727399788450344289745941948150746576364875415774402234958478435233882301514471319783988288882378225136738727691038857640643560392746620595281850711006020672605107993875378939982589344929310231778116247970529622037177159021874777729771275040776634722306150418499919340070147861430290563108662684084638618548228474676677180317368694336728744556836496105824843948666357504067551961926347721167072849121249966149027434013152383666605962687162983396276799758333957556286680935270986876173664304274299284205455426804493105944813479563879838996532747564862431562374318898788771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22667014391261209549638817174323579125576580813695834190675794216170237827798163659009728364427091801860090773833183580027122214780570735443962633236622063230804742777820665478148231664604979438558456803742900451476079564477562353133698587814178329498338420610520098164455966669992717715134326498869059012996975195919766486041090401273089301637706155873354021462851002084730478302386452468160383656905222308279148690409020944958187460769029531858227153095963665754897846217934161708798843077054524101112391075039496868369411060540394120578335521807904190604337490310020500420163838663255617562185367460869759120221531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19368328412917574958700377483417812354678567890826272131566231385674071370281969704756396092802143039155101574016412650742455803094666378099282089646547374132039319640567487494775375265497831913603221613782997054833492467624712809236582926776440032720450586481331361569560951784738463076571664726994796193189672129762964601735487021461670416601464996785297053822652828303213512607872058443626886749412215981087080590870489436805612780547341238544156883060612985949772648782671501097622220681380339923991959748863588673752019927702506858314239635310683965286244576661736066552980547643485777830301191323062894508022643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21565926184222799622763750791930785568185443038902560469789382734119216426556868225218082664114411087831500261867122516053277912765391807653183065811992569516150130403879377941004748317231208770334672697056346292648346887004143364565959684637792558741605422044081378473963628263242999472537881140093449166446195667844720952744224053126321997984758576302165173902153837957686109501887355423052220980609439649525952300593176551622071821819370039987803890073088726790158349401405649356822071982504434563898278877896356493800732875058573550558236695272929293863205186086596717134523694343886043772502079237822571979843387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25862958354211928256425580053663096807074186418192929067202062232161788213410728431163489222098621243843699576264604239028096261988880936559768816876230732318560671092301561948204192032621267422968759427620533031839680334880866861939836042231995289231481920693550063712718884261062788557780183100921362569805690965822946639223032902970246603691755107639393868322792528560515870002715610022343581068742326763108856806813806550417669915404353129736582823983738636444653941597175896545957882504438185971421140551262033080462311271797908379413664135439277018695196031968482806623675055507049528307478166986199077359407563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22537598845341425622277849147049997979524805818756383217263972592052192450598211302406596441077854708850899524340342373055378417044832024690060935870886549188421493926672624923948727256774803860678009407013607653381715339738247629317114608144970655454112198398242576209351687808646931920668399277090268682327764444275511030144149572257837246086923442726999792725108574331114398156223518948879628203274779028339562943373351045882108462084917058241520712044009651604726729053543337633520230640809695866199881691515583160495787173740638199414752290620488123333170456780661545231490573948637120691930159320029863634605327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23831672642551149721553005938691797524878851064860845480880692094625422460759924644055072717815666341216894998367872947668676593140888900728919394070779698384051806941847940791481616615679746503615269960657724224740288405466050803010178810691823763554989490620252054458007967272122658942319309951498433554597996029359765897835338196744636129829943431338075173127104124377558496498529217588943244762502157086220943351973950833926267212610898903483194537072534331832009383990660290596839809525110744283578659869728224344694816841360593934142118227698216172161919344465559710002701701598470904213545190009452902879017961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25829014291419402756391031460740635304338638509034661675733116292014410794474203108892838526915872743683815848225910908803970722673205514528164806515037161339513138955199071805061747096429595813186903427250294487443305602375566941806985364143671629522628607553825827299408937814810196676641108605613125625496224650458707826177327628320759816324125828807589794808881339338163627783249550177297364025291441632391330076736133710784915585426906599469169490426925101020192783902533351612622744669025283750582018452213919727495630835012040274793023161731405085223015621559877584663782068244725936861564531933938178833853663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23362816464974390561378186865204708739904108115197450499920065900871439062264764955472144814490601085177815603955209922174640247289301437976160744449604473020430932129180648026714086688957522821955224997990026068941256606690516083801182881704599716827597062487069905777760790561477451072946465176365815060694393573583027751542758105282778407991601880900274036356171566614860476577200262375188768378278112927963114468249417725324985579589339749566537573815458788278450852953663136768498703319443356706202794116852673752148803639703456998422565505338699875303598531785944177671165212822016512962704368837334749910162991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30251942618164866060886027544033830209469990370675222961134450504694698343278672312771760752212226587714915901151007336060073355927225094704786732066605443059976496867689021421605293559738206616630843130354548093317824467624986297199593268787899083844776224467100599215561773933758904681446728409421750442982434669616713943236923674897566663135947898385454120909423822752332996739681387771499653508483165060131847944859025209262109868129160042871370845304306574064810133241914415068516819968518501168345868685527139974672191591785969245681005366537489709496514054706660210170408718910583264216603101918024089104820489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28639572652376734608369080961914839565923867128255867174969117817828122027136587001068434811919711193132723745349233286282603121954105175325410257974268868683393207714366686987131530399851002558204539601779533340726874037654486427334365761029338725638961735672406893154057079625440920649104723642005682125530177585463984852117699893672443896009999737970871887818755653454807184461211061028827348311318774357978631148609995369634695211719466527810652677491919019754041782153726999094064731720229643754161857685278963048192501768565365259417043409341344026184178829596756564540068754245982081737877657219883274981887827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30799365615673871424064439101081042300991582444270079092807395366073436199992411472044973240103737471955186494295090673528274917300353092055331234793536025581865717956101124360012203133563999762928764880318216670544010986608409233629683117380014623026203477290512513175439975107666562659800847006936928155618435819176297624768015742803113625536310659123539276989040467308473456698002593111795771250485294119517317655219965620792218652288132298277462245572232583235764408132153858165409266425691869649160239063708616409424565117482421723915548839393116406617555867305177409084305180967908102770505471213445516598953877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27983257822596726598021117684593460946671102767155612038943775300080953274141667167950004456466798690432997828109304121496614315233673071348594429809733006809176786076757656306854731596931105097567436718231374567556156091695139134396496793765236303728313856043912301542016153499706420315105863399691122787381966305487094960382769709759657134069586351955950815419603052266950074800157462729999821010641437220250033101897010485285401906462009100828053639396955051690752188888690380453274498913455859818658043424450745415319672816188920966472434183725065792792643369889293864086100829291327078389173174048584933424598523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23314983487595276030356466311846880545283292735540790740512814911870572314752712896717885803474813285011812200530472879083299975158384352910858740158515662025366688728493492081672407238615809329219564717136504276446155213132384540796494188715861957780038952033524396671223575489822585374228485519497928190122562167477197022107180116023249098109131188337314604551730918689536216803418514404315335212755773635055031703142439588753934016726272817128555769509095441007127175986802096946356151316862064296140223237476717901725678926629447943918317065347804753390075783678475006568046089848328021299113193995750117597327711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21841845615281789682655131316055180781720029560985533364463364462299953334770171932483842350967672745767787028168840292555478832327821993476072740625500624844750480829535505777211272815816752605159942342854526174863648452889459652810088646982802415377042974876690794921591068280130909052035459036315104542063366799366425784800617142972578418680623272206682416067155176520133449191173240524546372635743922737823983380556329557596724918983973000581356728829402231122029409203759642754364890079824360412196311285850363986728130238117728468716550427562925454752481801178704004598808868486680371834669959261055181267504091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22656184462918888756050131900040034467275460489821598397769662154958212038608530880979507928493861823011383718701584630030165997021620076657326885400389582087231425506046570248966856057926041234798992021965810409109892920455132192777132829006929000191101597760419966194004685984570776680203974490969246770431690535260615714061433086780547940035118133894891307697295857560012661293055308241509684297204028529085349277279342440163089488811944062952037433327882498655160942544566860000391310617884038501463965943962935199838544373498513855507343821610631840472012303552052855818820212840612492966777358942291234636716501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21567129160733934036685068917922312808696830001118378154824012194181426562041018885656308618554885079004437504410614472332547133809534239288739673723104418860418115186489107202560941638633224596797858385924391679836078919213081104083274547478957531438633406391282754965296793863141176440119207161655135497653215768614268382890551982690787630998814049562591535982036459418352835638531343745499614000060237564996359036199075348110006309866510800218136623345044592720646005672724984543638133083137028283632964103037663095434256280314114799057087829167392984906538710332441780765467766098011410352433916791415659471293297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22156778459014527389047336351517029336478030114241768713940056586936867549863123174001599330092185890611314549801746797180273652693021689352418134190624931160927413111710246381102361875239839729777903178717609666438289451060480881653384356700350718216792635218334240791211160057399267177674073238084711317775292709761688484498289547671706549396642959878573569762117617206373866997029621935378594549191158533900273924180454005760687639019983056076333808140685798145206260505932763727178266736071735347398544962147890069754999797270602176279225957793418539908014177031428839650717707658502515487003575374247436970137171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25493482827605404655283884982540327774542554089835945064405068863205916040020109124558385901664332297563193455696143124717514396490963501123760368190320869035087363779388756075042522003609489022421305141378303799465414806843509837520749017596473592490932599575655346064749007923018788089491161997334075830893379350464483282792078585926590969702731300931490507603980476210021355777995806631375401584015303763443863359259839734082854366607663841290532086666543754204857644684956680368187671023344243915800205760471636991241146333324158271945652578154644783511583530644137685044076223961395318547267148886474727592221687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20455997502471150019555803720580132406585978843224682272313100850849649765551755605289641800248854234960028896321193411167013279310907586099918591739939368850363583630444187133718874564516883002267780928413160211185875103697453551800775741467484482673096777965986004327411859205597855991417915290622306964969045929224899410745791704424007870438099984361634033414200843663013676736575854696037537977297559413319765989083850452527516227735396689595642166769440588970235387710969276555280260341646844921384840751650258525812136904409516969333453953635464288884487358243099395776927086406062352036877381063904805788311599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29898537601556349389575180329670980432175422990038318938872550431841306736626070449455879466479486522855262534401311544254207783474072263453028740149624256206902523183730014556829809888865279202246815116101534384338146914102589635638566561333996277160728042954141435233594181210814121704766284461063879271042100775970223240342021428069530358558929914879012928832519297833380257202865918175169776871610282459972753317158241292753017627225686694119354640843414547441842132433485614886288252665399537596367581970012604821679482269240730633224325934065761712808170324905183366874366486020187604015240455368347486479005359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23512323542140647426543647941727775732597831535280963198116240040201937069703007526922498381654681606422407289026001387946614204580127575436996385807994377375039593626467499986256239163572108359193232602471430481552978238286205337409077020048947314897791399480427890994678582063090401526923246605719477912752030268556591617458038766409247756316108331606744894252135991144801278439845579086589495582288580443144317340893239775837463279865556979724399959681419014091217863275764472713534576364199603333632196370722695337895634393713491892893534579561151118860169005736505828270213299708269167928500715278465507603119139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24177988394951859915199005781000864265578036740607158814229525236013525551247902888679648864436340047099109391507170835003622162675946650587152935307004188315166333663594064924262581039036735511759599571858014432586890165507287162675399045482379357650392738033336129755488678517547105072569320944478686385558215927449395175828358438975354820610000380517273303149280697933716318651194652469740836685113390477624618365262835231488210172230214795680332403425859566686913571690664176790812752750947787605613679285125299024382363676365395977762301702556045075878802251164188365724356951120813961441538754479494831329257951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22003961472401542097694336678095289008671494980284419423415934336582994249381167709839979129809924233403292905006296854782359655051671142143190427034336002926704199953000670895253254545797486239863380055353603621608206465072296193750007272269480762933713132265229337623472972060165571363259739623842746709492460007991681240527082181805072025782178124107367257751857942506665839372324782878295214049248272594446992547900958438184856115331102322162045431756849721514840340047351934073261478068808046142351302029035589349049520313039096680503007287523972809425757721521971830379311623584541165050802557792307919043014209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27608618877913812292364494276399006901348241768696184695944743254508358391631973096676167240266059498273091897776582450918201092129417909378484697467642354470147333460242743870307737678428963349879240947210175243879429076980046567570509548375694117410199043137880321986417319006877887138886984878407759878513766548002377020194393474925543425953204876399211576711563423445634060279539253634647675856719872914458929119524589569175691885350890696150679019510011001992803801411879063583575995167262121535165610645590518516948269654776640104415916259896570090474269744720462141463489929985533111159339493747356753036746021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23226171718400590554266313029987700634446020693432973182514707267618631504956683654929315661820658188345453165925830923852176538421508558008815280738070013823301340999266428175425451672457945574643241250637805452826423342279677312630116404923785094635969463866872696322724843711826587630982946094292644240586578428193324393666888652037631553103248387201519404005692935947254690699314531581301376721950108606959533823541800529823538107515346326866404874093713708742541437243437024840940136414183875608165815344341093808166677612303126337823029366391122857454920513082951628489427050013779362960476023404978550559446269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23209818935127812164350988971515627129680226853961848499518184416475238894089445657820800160504033180815004182621334138275535595400981994092489647679012756865503005026668442524453391692393766647990353267604020317556479962727409309329644733274668620074700434821018885634266335957395967713304230526645800773356855971199310878779521244883214180187523654925629682994486761339483172773090574406998012375269929655563206668649100265154424738413175385513216245408239365034266225039242767460073623671829696052497115587969628737917164992288835419996758535030745763625389602096166304944112064140078367705011282413480823288621719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22598141760905994058321947634678804531777000612395573426378978068849459019316159127026648132524062813952669884693198981761929363389248139394264812470693916473876738214144677330282151942520171889007816667146504644073474025406658045362287374819338053633607270024273675856892009746523918309575927003512843373191803339024357007561982450060215626624302462041006885747761940041757376874385399078466425471623881646994975151262295973519169101406362312015224986171913245488928167175687287564980556753439401862901507127714480985365976707406167368089468063967280897633710874343657872551728824954335389384825251820624572741215931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25019250659309080187396511534181359401693602033262138599749930809969613573876288440294341436997782642811443782922591291258157681776352347217199154748139713638482146793958651920039580105903000848289801073230435312078303457852092835221270118093956930860135758702454403968798816584064184255627433877295048606859313700272769890872899603474038603247554516260806874253997996876129949112706261772578301814629391536009188267147804987768625739635867524486422462820006901810246895489866258483993811132605798842458461477032508800390446710976775344737248364851916999381602859653444312042441619579646707488538435766781711994084323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24964783253074620733814615669975569542636925514733636171530517410549424950513911696180223451507799347066819541327851891455843539250051275446066340238794385860976261932668560918250052975428173857381242629494360279158285584070189467025934347072976086707058807124027401026622596217140256101507510805576382593276232335435343201160842198738826829864121385196267915154518217225380488096945622917074171118781897557571306239882525530649929270270807134682518709568057255702993334047087250751470539164920365421340897566297492611300259882969912572509132919632775862707828272080843445838622156424880495189668657443185429523886447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26374220905556416998116302566297317500711464206306131133291125278204693611419713828186224736001222222689221015626290139930434589666511650969917425031190137797863296673770349830494536930629282588353334221117177248378954484906704934194863663365779791501874686238303167597426304715839414428592247758376821022571756283536654789964004772815466720223765952252473358565275609539270626944504050657200465168527180728172698377659805570049406408606070816251808622105752695619818460368677692495226676636882904521371752341980118641203332570109241764302930674884039724643316270973574403949148208899293069815359125601185663094989753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24973532434038093567311873361555175066523883908103527250262031682457097868998333633983609862162884033684634342133198512724590657057268020260030697967337589591296537639031432030522115329444555266502076171524027214065231016521911789501417677849820678534837040050205857570716330920344671790743386958417038883813255662275332173172957334894285127863851013547242955239904862772207349189062175760886994884984643031723193381103399460768068078490011118086740634204071803249722901094963473220566820585199834411704549188588215480716808652755822017815520546587237793665801918978677690191309702033681629212464096756032559175449661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29272346573770500678069138060012489073463225500957120847020102706113589373007988806867718374010393829123304525511659034787415617183486313454394098682573605316808968373687904904759001520329696099001842429996323323330046232705295401541679408835028745960340532258957347600759075934058009014803927461339344593886809768471988446696082825739434833875569155058446985845603728047497153728013496943139637222532503394972975178994341173144022464397819223568834005153211917365216851140092894025107322988739756301218384819976642302832674020109712077905971452138381036977250521553982803553295779126168572308523607148300649908264283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31127280570191757112897949863121923673190096081473559760949072491843116513656203741501891676705750154762353804627264066048042188043960574122022864772307889836760648269371052382380242203852312147996961019663410004705911567677009017373780355638821153796404064055907608334461718179708466661886692976148406779304635107017485617354345545316714918478458419533722205112521299435058254252496105669379553236984982204711726567915121909454669846233567791541153661452432767366593710372177302764184786802623046146850070563849482710909838774685240581395209136754251724787735865326163507296485965303181511297709300495194791380268411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26291281733615434736311302040418353110802834708651835631939769308967468413026914116704661699230578519082038296076908477036462189546086998331358351915365179090599178448694993919918365683109593676721979305710562753411251485997243270258300668877789853737352037339675954964685283788591106905215172174743476687219380487701972802681377060218335557381933882190749631135651434079037085586666825399576038366616017103548836895184013040303651350084687268502197417432304794249561857771791764565672755824071481245865794371305594730978806421901067311628558043761592976870945242728796817687617411182130226853342724488368460034684261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23936612426645801524388183930107259959064231093599081004642434668233787286418126362482739222297668440864017393199287489956192555526110294158239558766102185614876720815261059892336250558906613086304140696060722731471921893238931293467712410052051847015350083901516589124003079336554483947165350840842449835906038914001375239144800843235064854051604282008782198389839788962212664578641543479554793795150998868744452502816285828769138727268961393345553449211283938690037619288461541702042149737387496479401121631760940549366586419995213389225022763706717770793110523651399520272051564925087659748332727948012346318699241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24393365797830990863592832570138473304570175574585718687696451735317067352833342545830812010850398603671215564116078982760452451689910345662253392490970195201861079478669674240316610429491981153368346231527098215262441559447160985571757968583767756039565435583594356250818316308249934172298205071245908242388373375586891838476408927964205500346507283686487162404774181737012276018693863671166971238152913885482270109899905995804249226704682608878675746909934870439025373743765324298788331450354205553215229395141132829745115045305142299763248143293818564705894719514013874850193150151990354251994126136855290408450139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26711825768073183215107955924723806940386601013941270200443541803750539669284707125508924772849598350924035508234062084337905649767090341187623179525067184219244258288647885168535109488806076967405844464937777812819959999090284750040383395615749596916226662115263200386666620817096957406180562591199707441510379690838225290834827534863684003085822643527843199757441986618680441659416292454719760825127576345988343424561621752466656654043042445831117485242611693734222842835882192696854370865725791847740395132938524265386607230008583432165529947813520190472469922927628988231168719076268548799224549061326269073815859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22692201753095089197436811615401530844744625011241215410807270080094098473033135551860150401650552009494514092598248990093381153286279804784013494310405395446535038341260565966454884325081084444686474168086528399416144770155354482414493216741314167286279344156588908850841534853499329698899455857665182358427143443746516650585718493495717724159709790549667139360704998701115754789899053720466532461507953281896262249691591610597437784448180458217595583226298072296468733469345205381660491740745975941656519363624167906046706837955305640718888507405931166979452310188204332704717239295425926346196753181856416258807431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22569628749084775949229564356413180758218440223982976963694190399111020922105336398785369904658018089192282145598453837403982972544703897563887150332362572032165595013222961085268541815388022211121140168787807210918227525551087254249459974471577557157876716454203369793243669141823197511668709783578580427932540980855891494983316025479245044605897281628140358170827519278205248045691871990189719139147598627161377472338467348242034609862550563520126341274677736471372646527640899093742262313575945477662727647787182313859254783013641067748594925630989598446538943591904663094797078894018959740875079319026891035708153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21113240160051955147819910137875052955995469879992026463917260777691839101530903914949403895016756823248610403473965051387176371616401090230936217808461267213773496011758740127332959189283136385566169339136686819051249202756705786386650720374588471974649795470084609167877521169587944251712576852353897726810869282144630774107425650178629505751790192105911127383075319218007884621286572034113094696201342176277404782511222764816091468488915554965268312722362068249145238153124922281682350756579444639392044405976873080505203378324633595817932075246274376987676380877106407908352031362910360431183022303687471056787857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24227804367810513437847979649585651643419835110443114051410832978176664632226009842741081802152585369792642874688919300616400139732211369757246067112661438211040789768707281523607664711270275365219476145258282704559638521442961739486148048885970551719792663900457773687250902293583920375165904494396929587442542956529742217493254055556895841849141121676001580955282671077256969201444725287748538244848482732534913550865044470397381493025493077025433570794034471982453229151546596878192962768723377742516225328479265613477409294303485390811058058953375882057528972749089571897202627886887333575962632166194649142021033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19919027137937623798279501473777545331249825878416789543612689101624567468702433185600715691420463594742880417166520770715051860547356104755378510237623038138447566446142426915571791676670401125066752768620473541965862082081591832421525040945994926365603029436068090580127539790885790705263434154916725018409861998693250530211258640116185354212409371650258564851824255600423509731863040125361106991491595840107162585339038456053297370780190909055794135757178819033379262299774143903778147829418711547196188206589578555616494085820122234444691137499563849519204941989834256370343827793866473014664413409037080048924233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20127776319398890518206544441377260104772648687503994239682075107690087703128212813820276827985808909955863472910915952038475936798762911065131098687600058697254014755817460371345719027799861951796696293005967879194091965077594085371620962696854657788084768906895972417521058704152905409548369221286799779815655173042901623872494854855229018251751013656996993680721165377635182707423929426764130940772499603446097941093442275681742244095374752312154875179835771950350333146279844744646497640141621846335128291955957094335201949830644365472831345808510782443525684733351211311780503027048228003311522101138650841005971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21601641405208197333974913036812044453610238481929572427490205730591576331518038260753670674809508825723739706912397348627683614870481525920269718466622678231647867884989551011749924731013553587063424517213980961240306506365777192426327493249436063275282311720553636408195246687099593574576801102651857639453398558640200031066054093146230671476933641728967358386096232448940606055139161692590359649757051855898142325394493683927047307890804128653519168389872453751434488119837248356664818969437976108832637099001731465933550074527859883490698425031040333049899016544274196066372171395202263360500016726582962792672529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25536529259746760865189594215916898763039812029535457292718911210930228334538758699140258035395669316295465123257207844662318577368089479927003757930390299759892972637285665864283540558163517592668691477532270475620181951001951748365973371072830967198406601525767688356785553979901655893931277790193259027607084659078636781514555820572499695297341883534644355145484322067346210589123248921417265578735118685230572724020445653200925173483550467017311181439613756048039160470169273036998001994576147309408840009287646481075826544739809736340463408798639348166399313983113423764895986231644556992465621930794886461945451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23498871274164716564529201826214192776788608237835995504748661072877849455394777869265566011523310479662881217354169031753768687645560599366572352950094052259728111903875296507199398310750207519654149696822908736771444555384315664190115550220311606237414227312524122999572495332457894841972867727593565265234466073867320166799552668609385636749759695439425872731247448800859541758122467019351292727070302204239064770742833495546865333151746422855095397361237784450407926149322496198147236246398722527730846372062399658520813292289252101130097960810101620019613793775104540651397881136937197759134175092857660957636177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23901363874190925154087388033548490494678797924268442345952189089514453018906866930194151008677973070727228968803528203288086049684300580342012590666465786923104363594576993822914350355341056828763700754794628999461007044819032200584117023962879207876493033132089801875058797334606288555061140117592720021177803369957074392081960511530012661356441660328674025430831076512749102879895679236621535674056219791368372567810474967359522929930115129245747776223906113356308442726129165340199847092237012825572431835406582712566319815534179663388199128651468799083731011445897616147149874061510792685707788257365691175319771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24569802171618185574772609304637824212277294861732749064555047241959938770319129583697983590656034359343402885954593869378208330180978175528747581146439061710859216310045680370108359446259538620007889761694918344413454929435536469070518104624097620295640964926855764933465095335122472447344139215413837589215026760362628380832677840907287263044388174790758982496054351183033474948944811277344116743358742219360832354695153052013649386384002571799671559058090716631895262531580828636083360068132657636680600025307619258334324307607475818643715771715076123467371956392365004583848462356789388117946987491972783577595947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19680969796449624490780968201569206729569638315749196705062717330152736385730819377184804623806047205883575467149440279707971549401815402558501370096570943527500069217706095423174438977298414530236429550396028300331046438434365784820491306415529047028232965205822324071694137307361689645559786570306332773361339393126090771688667007276758750482230340536157291572419453750441876967330862408245890765657956665595629945173860216208788830520943416019690309551512109234741527458108773861180642151107711787213818511353649153431665797936608156305258224230343664433217739706923876628894249607351139409526323078965348579064547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22882610583753052866230297234382751086886142936260625948683034464262356965781825956412848295771801988953730783467821326615845257167312234773022067396597666730668152822695003441849942619264091376924117504781391720718955509001458984730611978190013474522708795947906806851459633436609450049032322994958106787147921765872125255551577917624501761128429322510471211717482694225736318763907071990935507573228052491061435356351119444753370888960160161100494499417104052974637237900063848392162303447524448108921733478089078920620924972336400719422305525049717452971255004189491744070668620526160260396587825828972615842641887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23363897647116161043513961733032757206544400177639636738025156097752657079018370936849850915494372796314345121886081821366036329129900638227199259374417596090539147477135288126913859590568512479895954748491462514628248841260850642097159967625561848726965152651342447456433860867573621875364230687487384319696711366007649675048571545036982014003074560329260796659011139627341504296510645038563440497143148776918787184207557053205101919002437026154151732014797261252427662154117122805741429903979062403944816380911604062679911046143026419361606994004744329568685254297771130632069744848880856366954990827690210533244441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27259218810888555255954202494086162828772382076986027406051132238297717504626243080971255482725999066377786727237082948699794178725740782714810769764050029643075652233173352137322981360253573509788951441243321613445558096661579067685693559296322006285315066549165816341467542606306494236619513766355600610306473985483751241078291327673734179869785698851707251344803063928936275017464003465848508065938601712210416613647550558912214706516216028528585996335313510959856334673471046729677477535868061926701041722049766984294043954099372020451402754407582564553726964482156886735064652640082752281982279956578324007812227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24817277045930113347776699987288569829409420608441702045613433904141407317712429662055806941747024303698794010106912150383221739630342970775272596496873147987210868930351393732211146981403643519895371019730157837012716530465619729731531162292704436594371153893845785034123113305034756046590759806884311125053857558673934800687331978595383393174696532347675620688874211103128170515480198088694776190408894295014752920715881064165428640985766935182231472678853790613168654608434490549494626772835063489823850053154210360701250731764474795733367989710918095828460393466228401137587393868950688288786765873381836092911047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24856752693965618976220459548178897638032431934453334421013610777485251863699925438008752824431646684072787081178139868730844395456626085530864859467494997862271593949427401641121967316263353963389453396021688984678456987797361513717125944811045942670187396208341791706354152577512984530393664678584857742638235880575072377091243711872925729677512102764851114336576001974267193912385135200145218784176523976140926753858557344243353566423391606199367327794225372977843823129253038992033035576813647040802445395308748550605952180199694858324865175186632571953057337706563765871123444087155425558218360225716606887313933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21031666385602974902841545155372894088022051875886071504284976168413143497756774229518850661116611658754347673974485072799806162000695049675397920622304084906595220150403647001503711291300517178071657718087200831133302447232160247283620268981961507204720227103485709612627083906608578745124200540530237803336063908639414798837823018843845456174165331712611150171132417636150793648771862206485242859198547340032735211438278104213874936479918089571568215694054725488443025762986755730624967394116382177055332314664341761000825889133254388621514285810760534185065735392790174202052705128170878933014752223699183487255193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25459977346624665762297324374561769335967390322558536955078202230884112192714630618598458633452218945174655105848202421616089700218311462321298319164021222043664620931818245276748675749983199375786170895911320120553635705146897261614342221003175501744298506018743701340104389628911802246781768008790274214507257560961531496139036511080455892944406874120959894493724447944452850721465764882997070918340828930543813634848950077621978136630183588329529851000552523353991950077691858896551700071994247590659772136236235442309017473014064051439209842110591998010992508706727708297943485765068762858121671530652601550148599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27244097222709154088068144179734749457060850053428103495075719409954575206630478359451495678532096244028338180716524785040850180324959715763472048559200336728583001875869015243304587923103901888457064775574523080116299004391117588360877574449319561941146228565758097485847470199453762346018955460914365255084439574261311029655014619546477300073438338430059966905854497272309612601467371714229685914123198900194354044512854204919769378157403360398178714589797115750757281914951566043571524583815218625483946190588222860952704677798490486782801863747914799605772589706181332880026843782522079099539318645637690430795769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27474488812644058419002548312942580953649359262951351696012299720292352331214104891523142415821621421429255899516371881888784516198753629579931806018252019448761105846853817236432478434084051116624873973324931896834380133767059540894803815766529336066011274581318575699738489974980500713723669465817690755188030930977213784934780964079727723078231332828788945393081897333086780308292893608104172885279986180046620042297171557039515772515911390285256422543450382309247138295090125967025124837359518094998189478133041697773166142600738132827216550730169594235909245766055158010101621852885022975254000289202535703082883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24692507045800469040261749022092002582749240059830231930343439650109799790807969770578407999288714626995263560542637542348628308887904152780353473756979575371483993728090930859463601126877874766047456897118066556666955467848485575725332184756106495966376149878732588005367292569094156391226776099271621990772308103425174345242604019973421593794181093836741749043115218278348338855443011137968158429680171370470135181272859928933758498324249131448931912346500611076762766487925536367143087546585179656970699383806701108597437807077740211849685498844070250513811889032320066374985113362650135006573654220883915812104677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23625383348862398864849954299003507274931403088469028112390812325683330361181140508173671689285146542901937204271821507433989922727988076938491883923380108574198715445555694669707477040463683209537735608860570080915829366445026348426589958767420273522893873304101147283796849952156648963840963266969164708178914330341595158256416915818854553581277948767972883114632222265884118099852597430003831816895926752091890291254263421688152277482376182133550139846708493208340423828323320935013075747409470993529294597296421252380003345923325682862077106558866306184518077803287633715680939768087265125139993761377937254702411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24480786801742808466337614119447418793088288654607788329261967407081589566039175964037904902392188360404244825420041148706097099749067918823470323464382867599980847222451361888082666651149484015060651003748119206698653280893050471653489344261888582570223558677368262256915208754254170979942102767468023854828044223922665945187246827197985732545495990158221947270648167226350453598087081715602609352777744795136101848202491958840328293375660186536499169273986296227401844566188784757321570548456408111089958930566697830331111912029385210905714637292160295483042884489242471628713573967400415543132385939960777282124961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25647430197763131484735660360986033631764525396258256551333862524073899112761678591175748458805729897174706128581084334708733502879495870162646416185004404116368682905929980814157483906904032462228480017309167006510921357980568692367061153755381553246738137824232512293210287434978952976609241742374540427955200225777537205573369915786447296286637460772525761618308687528409093626669997757060486226256385088641384395860124221161709081430427419683310228827706619106276993301267994415975364190105272481109051705109214906023911292903062490505425113110572395313414696888553076256663396505254959681376340885595019574697409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26066406658732649043295198438460697430950073511838031159808477045777076364216877372594252933758742952027873299854631999827530915016566925504503614313960482700354061630007150844533390039562627946859721697963945060845072368562015219942057051008855889487151069337046098562488722987394317067267665451669570389392134927734988272011607418772830363692630921028165974903754571687908233813391330100328994076192691637847703687787519595264245605674059746371363323613152515515128227016279500645553452060744824098953827307373439466333981442572151872291170145482722665438961645675160707711538407726575267562557369699154845862498763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26425336986235894605935534521075905280329575594988930293841813707921234113240722465186978449732823204934301252936026879081650791482905943937499080258240721771052079170066191218299247174202663603611517972215372023929402138300012390818686676191456877913700408573883394516979718747603633228303473426298560232837052727409530067890274689276151053131761614831941778813723398577208260626975329471373855914994907193737780400370838907815945493817254840856599309716529780674515001888352105425036513588818495961165903308974457495047923587689363963320101789533433987440797607007973197887846037701950911058652794955304781065628949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21672302244221503076764456760059669964266517684208010387687570034058624573726320923878094994674142431516688198542586979740786306460213427545436046449102090238392485670449850989228641958266817109864121033831838138924230397092841723537006548434257329100949646541775696700459021948555708271364037727540103300530991877348260932269704505372260853950460632311921767912689146284360612459915109911568786024342145548574479856258431692461322565910081598320506503461820656216114008010952542443957704722200328357492271590070573148203785299964137242076166023080723588369278651156714873739831246423540628615668645137355994643959619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18570511939360550152074243008919880149229963443741929380747609806575101623411989687315222429045323044382024035421364464942338486149929402433639135556778558074438474516820368672720262888314309477784191419777716761336608023376564757444804892493768386569665972332342593052622422882534377109837629268774728815783207555059475871628526269119627622490902579634841981719358772306823117653029711087437579765112398613185673444971470572075187544937698013433596105008674300092564647100599237189206721375237567794038671166340321409816758347517678602949893075441211359058481270163526970105130135186685903917366258839898795054790217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25038960404055462048199793889254001803055758502884396016779882769750478704682238671148711035170125498160303163945760913489380212254415871058020560129030234248315226587089041981051414143584003174057463567091019421943077913123107636531738225319492504869451865999300621795775701463491113436974261714848942999213277635074935475671502163072989314148620174653728418368921354985218313137539498215967258600644119149939852152227519256242383286905544608992765447937025347822304435240691798290021731691624389640519882718924721510285816655904632226359043344455672106656030744590157932309092018877181349923911264703784663032195561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21349892051748502430506412920040228770526761055220374792853577613048181575669677624696670902433232517822933425600078923980385988901909676643175963390785481164799734640664671861312531207251713320062605706616186750153123422497319913428465214958436007624094336397919033856552963367649858481349558739701635726567270269511805268434388966824596388140409616136120101539993162858537718516221128729462023588878343564680433201990357142557583008466186479931013178450744422604917212249332817530177974030698938164989624332766468913462219994562524277884732935081390234600162244082951516739600789033076929344915767835353350585483361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25487018929923414845822999354304780496989224338120308686861176064805906271063432269953606011418696124180037086905060670421890918232804650336097187067241764870072271004717389498450768530688453852130476763332017395831262699644913436682005015751052691208774588736583282416100527777463616129584746988328880246447696723759373156037470580440569764212339944208675482790409329734057006292783696509487927155776348519045082768391048682470817966966135268799291158781320332975754857054748654640592830621432791603370401161222696034948202746675512182993606530030885930825523753522618884756639378139747591386330644642608970531271017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22919021157476857622985729448970072164834000376285692295530937915839737480610344301556193958568987130581498753886047342665868909723672639503837733209504417947155282495610231221932077730459484241916857128745229761328270671002328129992079305569249498254221706339833989870087308423201267585591407300014841488135046535285484626881416175948101647696111248215073327211142873036482700301191527735278381109066859413444488262495066691561276858872378482252034529528853256614086670701577637445486480753342033097874856553859068864420799746630699946682011101019358494471447671837899776434156570267845950492937034778315701336279741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27872360608021595095714094813984230516648553559130217112710000237967491299207292742276613873220359235935739034722407762448286368983217931177542333118575806785795921672843022089810637503689160754311881383837821705195419229555227193454583315176790318906127229343307525368591902801593736975470202935937311264565781841825506279704832574492524490709101875070520218415427395502066144824914472754959542108947604238662960807620392568485443032521967714678651832895093379632095870584087220598475639654472688499015826518721627625495875653379267697632088496788548563420798333820212004205902637184314365204856909329393290233595933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21565263727986194924932105374335532628395989577235468639609016144688466864674691979068718110428825117999909953997701804266409940569483072930020938133520720481090847743398365941228796424272116479179886414577183597450217731982977111043716278940632262446990995904570074909121442866314058839393781474084843025387582756047850056093803156150269043488492560030085030271524308761998626315004527899050661532697789374953666373813130630617165530525221377011304291807479764661297850386289996784043806424954804618536175439606596685422125510341216363932357277298794047423425681470453625963349653805969901855902477252841265820707523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21653477928258400532774529686094117780832320000000128338280118562964924155087148473449847066039051035762490797043605185473427889411430304873309199465355446585061722394944184250829885343509614542481511429574340323915877989262742636927410426791990490946003671733081359371164430932916097314130833116637428089285389453411777663541928650198081923366982083822675115665062160104796466352043580254644304550390755839704634171459231774439382845075907980932541626275122900831376294575482868212267344930144034177826411324306017448074175016732529170809037076636100413819354330570949932635172275470176362900782912409986025111460109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27664934260256750984775351643451489936168501458786798376377305120614522364122248130955307686527457493102003888977758501758844776652300249749619781260178286587228396309423679727875010433923789733720799295774011723910026637540634317332204289253339852941286129061173961972759421617941997080121461157591260139483097117136136381380922066876335044875329272704844660782866388821321257580163107400486019184265404872039988816216510374148704818217842981346956790046731949620134796812347292205328981673699721617632337017568470822059375788724434207614691892035934788202223325205760351964469259587961630660821904544187474932235933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24886503447989315165251411120375729834858475006030516272082001651690753273587934331886496180240743594430101013875743098057282834856583182889358894722198841819696265804134696607498543288757990530331546330396470722096811065292603443269953131675401101227649854933237424896079311954472151158190901678742986658602717326097839204157109418925728079348103497956678323659689501528849678850062553196221964158854077704957347288594710798082014316975293812280871656970240665251006103128923526938855575336085419819211953833063154910493054796995517160346488258298225885367997517590752839085210393982000328676280371456388057706301787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24205373991503501811212712731381822994976461457152704897961421493451643861120491442934009177197545793643867579548412221226266583928638999159711821170607867341046445548093600201641406521411432216231558813650366483560583595193229034423408279357037162529832119479612834356198074283949471070641270746475281872879661176727230687642135120268323175732497770195282221720132545288883407536281743976230548697534553143038705890028882970711317362602463109937432354236768307406201591309637678111999507570645129336772135406271627754654606360640011936517456881067455517698257148996694001765938355036479589106832811536808879888490831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22600119974513713466030141090219441143293914755168603365062922253849125491032740687486132413526779198910682167692064544049937361932140129030952763119706945410006735887682462486362300908663958659825480180783831153325273331406356276072280507300650134135501550937378383638159877939096845709445594390730178863129290612542013227487864047837569358041596030110147452441244383226959587196919058199691511028238707794275682905639755134146578819778044499420853131528877983414770002948828271149156179673763411344962491521799300256096907857551797207753810810615122402438346625005293949163720289728277656255133984701416756283807953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23483397709528143700707777063601740702625196993084682731979291619147520946406724067345037580614399034929335343177103946085967356709001970849926983816747867550750293265738335837964962052611812514408236985585850784149558071828674761084299739645812435089587822037020847178889064702077536941961062551882803783158856874286605910882682163225925965496554518984086925099918527019486778311783000204037985486524987691144766005676193769142818903756375588772533581071764355693397194932548937805387251128402032958008271055695634455970795710082329994263040361723274409334273362304652845837914571767699217062137336247737352697513183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24184529821172910443979642778260036196785257374829282279167442312850407188794405943758367876237980442880430322204077738163102678923345372605439299273157208164117867968680176301386199499771929612104556764397521245572280221338910785339278544690149100459101515010106063968210422337729446362654718691605977162178213941330924694713529549039235155603906996391603819159918047764182115619928750205999357947795683315858727845556334865754901674335775999106402946880428293424382388714826217184418870670381920912583827911062894176397083650265357292848266274397199418320543473094377437906556544642392595230511255869342723858333971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28597526662975393592253726765202015972071627354897207961487276957516987989398602217106349206835545514884036241208886548828154803058798006942064361637551070166683645118797996789193090307442622946355790823960104589608782809677976670660935600263831550242144184564653724894312546138636377643344151551778927172236422139875255614727898961757519245957422425595859100739073430254350426985658585703329877891917460951223463706511183996338353693281931389363601707994733927977219516062967229449047810378886823312960669841461249504522262631499842632933783179871943631898722726207895784298721598982756533204728366379842091972515507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24777979795585390994426605988005520012577566868527478214083931185251415235717262972039301721889637236916583284185416723376956858956101155287949415724727522299789039655281567771381215193835544297088179063469363838878323297532279402887171765623958161612632727926365523900390465638593570749325869196879825186689084308804331814872637799183532420406646623598014807693772876938302738506109653619182767561609422678213049384656591313731705858241728640799003385838976402991229303461813848122983895932913137988854154976682700590226512786352506857296409542964392965497985584146090110100853654680886314027061570316565345240810589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23745841942847650244278943507820844989289854824835239773707350271025146586953890440782633266196205322106122009427905698504828406718199062024211997152154994846149117821636450990322176692294949544464287446250486790060157648259726677696601512849449271095521578146948134428568082126076543858243707694234791641525684647735122128024343192668220898946295774554362718555620801389239786956306857654217497266161340970381991409203524855821314452686759138289048762849331243847504985568589200187832382242593634739714003041204845003827741957218907736602807643505694972927122796698076751427368440579560446091761778531811962690153109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25026393413469616999824419117402013987808648960954208098908013139675647839750715969073170990299767293916215189574373214645667997962841468940594741468281793583275818337209790497934593420986735631810660223714101381443753208687724505835689510641474781151227154060594958360777411881006290738644651946456047883092187095933208230494846517405887932320170827331666673060691118489567812086851099338633563360809386109289027584326544107944350234293904127827062338973568861992801972704824855872173150337088332992142658859750627823155075611705613272935761906894789688819949318328823350503947940427934593552057067484640734589853449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29279980626346066597649112503125017839555995991497297407472232918513507754208826654997350379103608687151882158502913652559766794570612752914064602611395252958457576264335120618945595703245066837155906815384408774646392378070366015534634961775465250481040078489948701069447815109127765001036982649398252794443543743713215908722626945035709007841941020965018830093816612347192032544429803816308441212106169634719170774941353034975449042456744818516011193957327238422186671659039693723551985540603653002673213816109908197817850729704779073199134979102279987766257542336824639955333795390249766347857879800477353134720013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23560376569299965883066985019424231666720306792718588318263861354518185417432794371699324893317211010980686482105459921304607474257244616216516348066397831358336815971550586738367950130125011625331996941480752002950630308538593657796590569809942997695869615421040340177213409900309719184167205066471842078278862542275754663083980797875143240379108517421418201193952414431915009841793625891737689229502075600606110462304539323812726307567850301624730859577076637226597944754000517392105733745954150454780457628664202101662061803719203169328786967025314082305165609412230922454936814489117309975367359750650872939543649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26092663644645136509753735600413797262075726597179701759006581268806195408090634161248119535569839568008568794750173092245601050942514178779025589081512819261787461993065202531887047868925464282193505815904240332784222986145126448293294164398299166425191682394619072874445549503270722647979910706228547101424756254441631446201591577082059186655058468049318230494385683928318169418358941194341738235123273652630145005835231309013882566093372076533744429937872790572935274734740934111589016626313229376250116676765601806098895999572548812459984181668216576915024356472869526191662762459434656481621904874078179302204189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24539129069228892166004760738079715692297743954530536901500380373417078242900032743371404253135232297076550750816462219199363062678824098495680567790665001457025428151855390671551535255876077779417775013219854289770624260673212018015280223963602449508957722441690571755394705666080404343212136773211443199217681269532615004682139432153948566084628221403486080905399866676141796169838745981322666334305226437530537756470393163100296724493661640218849482605991863315423440887407320332201783929253556087267701330463404905171876386127094483327178174914065107126381643948674201875671155130949625015867497922020457290619379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27595174457686704053950270674047224339804662182516769672134734820748218644304285172374367835415192074913240214638091557818254780246159270261491490627081813297246432529446571398688431033976988048882529333348368409205146111448456476846922467144546083569564494449636500518369785088221650951499515526582961238922809307331337800914119228445890550652187232041703217645780814779816466626004331591017992069222171428589619059875139934663901116763894225520406974149481967732625443388557388799154421171022917570143438589259328671918444311050436890831302284618463664416931183107831060326617582875367325486114811468222308209464047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23061788871824085889553146346019871449062624002317701730637063740696885053369164994170378811486586654479570708952575083347311545084723709202093558706236961849119961026519793792398265313053219029051708109322580962165952631108652407957877532892327952501979481980910743573240043949763496952630505383814122031114925848669389028384791526921278473758068275099339752537143292738834813902249123537633604932790104520311577310961289543871890615095112067130880595221759283410205868273825265724641823455389580878475835847215074520062631835758094752347599803351416920543566811199618956104321636167870053120959174144065062320898243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28612633940792642788607932862887613525547455413067346095033389541929833588151835446064874135280368373611051637914145684008302082955144035650671829486846561151871471619138266707303482744126614592790639301189203647577250441765015869952807999519838486663144080951015131856928718767228753973155633767707790764762849127860445993224867507255216169495283762557538634630579838725175602775671378050760000786661830966636997317106765107965279830762518733327712641716678725104474245745503007832582267396045295619568896874671484074982795779943944826878674106667303338632614463125179350241357721256072420192864906857927381570762389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21044253156617222451038585383408533192764126636707157883762027606053604963981858909596903523297478624701169115422969768491282545741695067764795038921265033848613632603651006483889718882003586335520214680504449148953245024631595407731153548819569243036074072179784526996737845994700810179389215769644905405528302925424513831644191389111326469457380957622908738362571358559736198397077056997340953849104969445045530771531431783389390819659915810457823137089484049844766444637750753090405789631571997279350034839617322961601561329175505502284712412234214973384439127322845344101728670617221431596037973810784352639619391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21372404544374137551718004268107202240362950499742152204849564016854567679686462315057292852397706750575104462580344854639827740987051247899618156325870839988010433785310324660250493021915271532631755001897942120900533857984433879802379362294205248298309936603213442160887312693447697935219904881114625153467614461402259008551727174777595465295492572367578946736250226894799794557226187746878054922045116134851276223469208158315764976652466883134629578915599320700827956417841518549299003288097636801956254383127243651157470779220184190475386750776277508320417539148674399214994546542020848455546276356672211535045963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22828295213627021535697284307832402742009295379043858305819906763325820898057372839638095474698244454005845252599225403398268457489787371869357669179030288064340072522558062709493323200363887420263679618032148118510312608204999436480649133100284214825787595941094069643685904085652803299008227485140332883731839383362392117268454995358149499358357343545641049609896203109589132061786306927370663483157687771793611640177821590980694603877749852386012452688269109928625752233223997938705502295308940133160295295337206885898952121108906126249320202529074573192858648889268549720897487363232792254048893421086803785358523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20690444205665767942959169218514423123597271921888004369040120006203951071820990273905156530899258657507883742469398593432659790516922971018601098191170636607517013768045492787663589601880456839240861527771228176071347811003690687292134666009423884771022377767292404578014030804591138767876424328958088869072098030942559986931872433941310962453834638499513811499492816687516526601123377487135885437251543069222462782050506250892319616769423155369675394632753286849217180987065847907469735839072732892979761347386501446518331184042781968971555897158631705254396110436211453480910166896149222431497014962219588186570107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24711135781034059488206552361836146485806922206443929750483388540903341605456497196584555155156508620465697176926200857622860305230862172460374379490842853545025422599647698221891323875938571487572054525549276220766393205312887647037986088378612969476261467985332410739862510279903095518611656140532348506333555059620561704778475174846993829375513762294935304752785850868964247292762109388477019620066871359611639186725464041913163807401067680286557235968062480287350969931358218386581899316286205859763673270063695923775469463998216140849230472542057734008151176564504789242743800651043220278447865952675246565193087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26608613479731081975547582373063192004008383859325955508828997724818399569233398797196326636298678740950482423232230435971986995569967056820403871526177456027371597727083310517637940215521383572774470890326909217704217770579455967969738918073478797836883639131011831804819414804117908173629603734507579155731503400829864517054947180080145313128772218342511936201495150125680174772464519964404172208991717256847538855205593646936937680224072176563757147247712446477864470938935974557168964417394980593838262764232224711482733693499444581559989597060914195981360368054113200534056820232729958784806256220413060271976799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23557105161342658270989031558358726019797781790215908492190692236290874114435941090825350181264950032952803115159393190069126317671968219827609839300873937910198578573001704523704731543641037137341910495289606880531949011757175758288807141521752243495721496030707981868918662220206771045509307019273674359391054674779936760104875450044528902589880534058492765265188044654164129390960383505315883621462131288953150780691847579550925840097388438720364980297517234422777205398870398977682011533058224919977361025009423296266914737426929655660690045075648973671141802270868660025903084609566679863779118971454675757048933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25449260562431885424392779260720688894336140168831550388536473357826403327190943525658697148686708818127070458187254338407864606668825185885086991083109214338053092128230744299160971756856275766409272117585507120905951732785053162484972901274567935424072685545874422716262877380774232723809871754299630602932689886788878271384023120830614505126306128068367294676661245090029930345639713008602744900074441768301686435540623949382171471270553817845674483618356009737317249294295556409650815820205201765694646111875272462603437488267544798562942805677545870830032595140039993495545312324918158757546488049891196509256989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29468189483383504652031166629555759878177007776800277884893835314380311960579374816434004112628652722926539453545275095461697544876803484473811915983012721580559646906884257051245757115548115627638886067958558190008513610499364899490415297147554907732703537875672652910186540105810580037086368385916024566488414461372197555226256218077823373386173909987089001456073986764183756462460217982212500091963402144383737262930861740356490880746949828560669186428330118035553032168567321965854232043071843005585694905542507356982232541770481206638584316206905199490406654144184678572940489818022030007838509518539150165354233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21688238667251836345498200585316281520514598949706346286220537142259702485035208965487248402456507328467917754217093060871906031038100824297736029347977315381271722577153746459237913216522394692590183213568336286628569391073529719501001156206685578989578748800579274531877463041760105863836886846481031484176101542594976689905984615133686961893898090734219134815516456949202878797408966993693421649378502759997543172112999012707205562863274018434781643631602327135727662339630262247294278518529340886407717319476758862417500838782584289496946878867852994285169744016183432139109415144532148361933291159220344656855863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28091799892199252916844734183526867055634475739321411375534194054375510244770145740302983548747239224840814889341112076495555623993734265430138656743340708792151308333635680067118585181871981909504776683271852721291560129952225412241530338730280188785072238681068984402622328556889599214934280872738459047979076018091136546374975721394610571985558101915285441887668610040419381517065897671490222255780311824759868110999082662037420756286190290745451999488668129858450820486562977446385503934556345865662674061392070447241269957255010310355077521100236431253764700155021853269481938025423967647002540943609697946431233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23896988851908895842282676229843808572903545012425815591142067442018743694372462616909746094956123779083088105779279011364011133472306007816314116386224110113280601739796380703042324162946760598733118161445492785479832882865041499820467346924084606063158296329112714189570435079817781880523414047949977416671397251537879251039008696431584719602160253439114043888845019526830877214880910410644708871753185431773205532998253673297133503845379711760821697035717144318684271828544312394941670688232001152208173652503761857668786473776820737744964816645922152694306699309497268642942267583691934046581731744642915778314723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29850963320425129288963745165438289748602628692138977913779862337750877846100138988084040665775601502262196347465499245978067694809467026203353024408222602786132058344682893388361660936335230092112070280910235540484642676581115352720648106462343431682319863310208239450635342543490112964958045126114830209396652847864152717354999435461624991327529657387227378561348358956306203628976052418398409093255922201139154279724976164862054572243013260750156686954375121794690780455840985465046761575241696503904349417559908456664368019962346900295616200878253475632443116307287924010229432999395021402535062642909020968231621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23780157733331914344179647607980505499036519789315608036937051428763329425000257459344725842147954771183376968491352644770459529712484013966579341355867237641610816021862600207113282768978078191781913061650675683680110985234431730718812766986183888337647713529904706956150696379875821059370548737795897840774202811403843652919394279516504128928999343548311220177418945076765826351062983006322215376294111380181897940665103929659761826726018717727995535617528474312134826026806348116140091095331909888030231903208108908719343530641753790314173630352599395662733001296423386299704040591268366851846364340007338280169289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26397409018562615958061690060212899833616610907715435339322391573727912294223155631749671942526540251367973813845434826167692378202592981510519650516158487297069624126195050673561770658634059222644200856525171973090834377367615424558011943450424341084787360953139494997349814101157729474739830927634736250248744525138161229133823680068294977140449053087037851827149064729483810737185661665737132103682811176416551958259531962708698945220846054822492885725177537793973486544207048603504761866839952624171066596288672438395702279937754349804682015998394486341027162311449545343852834476619625935368403071020773689392659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30367596272155725039116177744134812257690442936047084639174606165909721433725160104868922205858548941917766191578041848188891437096628699633214838634005122633553248828626980668312187169952148205030879303761280711078538685927781206262854843577742037404714408465968528760149850500301441097942577032879972589319730846733346068319306494621905505628926935855957823643872442974943274147688581937002070209425830564751479472450405625525486732104632909808657838533778299320189973489511250171132961730125663199760681509437432744487222003136934298259792787402912408461815395897692162603070142771456064499745798423305312548515853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20905915550304858475826570357764864532464249025624972651204495203458157478621566133812311155765109976912066116232003584099355694972511768177601284289080786170305170893338218407196936153293261563698026141380174155578294511386272828733618982449569529006253037258778224079264219785941093597928842309602165827618490672706153114126149065671013208099076555722209322127230871559344738769522587222235448496401317696405152638862231334421033396815426952601718158496566776203409739368173392766520059262400193492301564527680792337418147146225690724756749865933505317624152774610218804169568610342787335360076165145173666273221313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19754664671416111739049572367933591029298870327041210289436770943214274050637601296738452625727440256448070759699624862489362923724702083479847188058984252068385240179637879414509224619779002450349892390155474888534813562218232223783700331966647720927248859325277289484625414221259600755387096607790402376587803832260441762726820493824490178323739736603321165235690437075968465680047862366180092393756508850193582057893120262333635397777115577383305426412470148216664453813011191568180140154098115063712462045463115673069154039151483551764449050641358184309441720387323650491916871646047563248015663915237810776369031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23886049640783567859021798902222402314451521313165273302977389534057848339698636135615739258058400339934160399189275849768179058457664155436044878366955049340049204232160912306128741496521626282069305813451118561440928579388518117714704093475331998243089222613935496900939286584700076335910755389769377307895836776759236777969029255479757845149304021336787308306942721305119943655398354670457322524332918931978370634759832931765341670938964969862044161358461990768101993259764841939288552037952135808537036012653440304086659988621274871478278256171723648160948667661004092366006107289968533165462609973450241469310719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23730378431705994660956093501427577495376886757016123469583076225247958070785961429985448037207362840170719815295091987508308941669534817248448025421005583065615113489989034783865850325733338171058845494748592867080474959022240268605642314310033913508804841466838428344630930249483335529791023825014919629735780983738401103972476445661576450649512885870440581642309178149463368202189736629246345800964566384467850496426093922664094934736149850674277462956647109726637089794206327090086238034898940115791327892131242023560163089666916375241424710149816168363609670963580726136905981041073009849952690120011397081985017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23681362997876822071323778183719443660870371836060117192005289884888485233974887871975343299242698944044886064661144644330165191986808058955273693324031351972908225985814063699112001415433400615792611373102318552495937287411598844536689360943977438055199948975521849034836672239246219726595863490213106160043778285814306456825048895565173837971113511986750535536529545168126722618304347719564871595058302040013279316562172014974760079657954648338245430255402888984918488216157280855128140182644473482055851359594692867438529891249747302478713560243892698452625204488916020489146742004241801329031763948140884291951989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27212244021208360579300720449018209943725973503500792942430293240724587203461137553015938567178685574317946871801499434403396435354131024412271490895086834193105830858772917118457680543424804333764809452726463556728309045687631327874991916931789700628318243862370611348292461459180181673457713756806425867737538901526475958271515899016708853348293556109269933653245120103693850021226297939080667627281244716734317204343841168521298245836012317371377032960744208944914371267952567876328203207517088028114607534429135896046766024845303158571694662862209552679194102932704902703208696915494983594042232422852231379479953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19703742553800800996739676214394727146010800678966976165525981148097273438673880070811923008536089939179855898096940208748290058694235227639117424311133794746179267957215576835905311990727357089747523812227679655954401888532528371680763060043740236723811847958247754026967454003553997210447997689900038547410898505780491241889973142429223851893483002619202683649422899491767399937795980543341031361304827605681609893051677536542034918592565776767806558420354149886532048097207961867258185162516682450161206245763952264788094527866416783314319892102410119127528471896496664864567330412708102886827409229576895391670301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24083287994375183292663962383575505092889290832590296965678664326697895979867654595279250135768775922540496008988178268829235395909502122156312947372076575641935546665461745526573756796464652357078859371146096314855760001541872758608944880274292151698818983024607864652785945501302829915973699644311638220381755846020634764462983878741137309194075065650619394024161548450081957123340332615237652535113667334851894327734894571352535514797438707346898993736058948694611049550916167308661797993374293685290000209339276562009099765807458996716205461717208030670774592619205364263516952072596368172706811115341420487061843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28894576540141217995672996393323230659243649081878335411108043050255419824512991699932697613894905717705333185552392775910218221532462809566151796406309103058170346878126510042641895319660173409740088325414845650974044987745358337743155092230942616799802857718652665073195177813395543701187293771823365948165843901773002687895853076996700889500498802233243836807659398539324766953148699978049072653526351495588767387486828160203068667990030674596570850850317989114238381630596629430085169723227613800872409430601727042664862398758131139078876926690185972752234430349952931655314442576392853798923310250230012046315629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22143102337519674486156114715544939718733513772118416022369504185837151354186721942024606490175497114055351961555639697521650089264196652458773771722416515418618206617579731735333024467791627048268428835748570262256326977863816101711726415522698676803916526067079728508864475032408503991687564406851223496080722365736864772388287205224680713090853251388883210622632185649830930008744714341839476111624650556705274571320973248323634250785326935116179261836878229519340377545001550770427492450911709072783683023872961830535352641421769039591219594933678179792581464199518283835228236924599230790168433726993299844133271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23757622621358370231948136563746763983696423797503823535814181581991438318879107276083666371430255392552388313745248372489842654189620838935804351316976028205682452168626733779079927326409134766830813530878034088574195117974513912850650020931144768214363223729352849523434027426670905624175100501233444896347808272763184586561473427803363930414195905218732323068135718064562769949420766509730459374661831913600063580064741912562228773273834065165264176245101122432003725941615290225325372061455846102108451778711620898488018686501559004720497901720013014974386418666013670612198440735272882912772295626786362208207191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26445953377800521408416949307279595477007798435646147097001621105738191912967053164028798270935520915661807868152355768596037203283534574391070899970144091945105701056777783624264908501887318461552328702078231657642921741983622017022342012390191422881752920777958826936579449095142581960967364741390768171158646961933252200041196095370062059649781773707997903518761112231768725756603757975898123028228015616637297757842376578835482756820761830873106427093849909727930454507479810413074160108780355446685924842768155164673612769282839956247027572151720857896253467956054208724896200074957461216204845594932681984991659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25515706938655642575467079645985892084916173938427315682782801149371499123674780716393173876124814122798720546952416961260706794422362003584018661781264631691716015842686786241076139353188658666548587648754535869846400606629925700775302528570328043342224978989519931605031415000766760623453534487057402451301500647264776508152810160898923771368673894057923712828392698592411381421158413153237647069579030416540555446232672269389945303155625435173817977024162761362828520789195578290368104770890827447683131229768083853359445852577444814827613939567048008049959357208586333897385291232169681681620978585380288838089567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24431437999790812286753193051738003954348960194807829989486460087353542452740674811437358760422575151458482750301350347592319804919091620659802539458502168059095591433365900928839405062559694466139621692213773590405967493294558545502240696850901157560826556846413025748358322239767068334123900536342874116897544317429237311618764444294884164465490888624837767452888068261612547676509526104398267348659212208418164954904500447588385471285307128650342693255239629451954406639128446181800546014835801779084345828236637292426906076089461752803199364529519313003134424312409854337096107694643552838076920116817545429824417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20396384345543255721616164332530284193443481501387263010324482420803491447651377878625360018392692068242696570057130332583722981871766111937748115620738176160958527935831900736294645505107051743288891423379640798212588504968677210773065436547963652891764750624065053440196095975486895269882700220228324939275782671141165284005579265231436635680160084014884211802295725094063972860022139548057475202982665654170911882567893033993954842887252257616927852563335315658476102584293046811888080473620603689593390253276144911774525523740977408560446551995775806461236934096913226791438732502699019559167848159520290921007161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21218649948140956484553019951807498031712996279590240030955238307917983656020229658438698720188838334044707052250232859991261594106343250409185924685005238220076875711926882972278799000589992789666132140116703626330649318801808947320287632708838114248743253787222207290650865077657164620204520305161647699504179510615632927808985160374454002176334146105417060557840820206827651625786150996997360297602858252968685639944663750336750821577352437731807329899377733133508941620457890399424671330066189563381870852665994863626217132511604268799278855945188458837766911602415121422227951071697050704781896384677127267267593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25322381553602773952665114838556318871088773593151711823739095231820028343029400796925233896846494697561954150428226278175728805723388361148674221826183724765751634904025198525990479710861751810870826085848071366264445223645608708020668034521491088503282272474247215819851587593542373040015432920816594214282841073752902177438812234107693023324161327305642631529730288170377969577182607704806687211630826382107575124661074230079039825796452599243127264748412959885589752613557016841945571777281773773530689426983142974066284156930002461780133671114327146602167226622614511066585766754064756822991896254696889687938531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25065363801443052720810660679690327270868702992497149642740301134859104291580336947481582276263394474898550557005662838977973473310387981599472240083166696153532309222730510080605067303905721964025733449805987447185599337245434871380722939871796159218325145697706227232056877506556098514780250611122429291956412035490449308567771921073572310084685095812359918221061247963737637224188122372625716525971123334855392508452711457625422453144988642802881171229878189005120174410615968400810378127500976205964890055097630817437439382162578313054856135842768560951539141014446175774390298268711448743946077495055905976573599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27077407886550746343959021839657283366357991327732137899857970380240011369949596193962365114708198190835036948765054983564948272684450254715397960872815154424292450072769556228923288620023169963648070770249411962035217374144289855059656728558922943083129706614110648160184250199566929439992819296355335930906709377665838656169942317994914928154577092536027868147954917658537189324202845666204104693474585118895371650150242596107070712860789003433562399455648509785200539438739574007703068934640760021451466142112307721271296284410916346366228626816025420967623859595685060318281964017247372311847209635529434511302969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28727660405284562569721216752244528190184054803307452934250805393618170841682988856641450372025120640953912468903767275839942585914417479037343125110468090715033099280444621797479492701097044711520079957294795260498798578116428182320913503759028465715087065885071089088273396139143159527223396949503329174846984551943373914290514662971340409624297261407753017286176822416791974501865009092157248363815360228223053705581845198864541131519048511392342968617831332252321289419350045390950465468694184469868656872081846984044480853833821659569355906640885440644175770396904922382142527758895440038945517906067160457802469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29230328113559933701647718136047786093401211922467642052460225346312035207299921082734564145597566635012520406518757041711383454786267738794851148357098932465919922075622127266992694539121652589975207867215317561002809587252759571436470792092371199601779796058905183984616162400041706713188996521426087233696652448249383898225154874535480634233690315535809105459719516727094320219474814607323774713665591797385061608934050287196750920122626003198689933154936315981900509429156441518067472041602904597033495131983050147554865611760444123883052379123236096492751867670641885289708132866073438180964755412579306855220193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27789963875331981952095279382241177564708608457037398301509849581623407226084721044989005573925164603977981845210118640586869522632395241568833224865012637395332345263060319150157896827804265648417273809013901645460196371820312692048725298140298022998040053340831848307410131295361484631510717910615606072684143035621853399574678323500486717976094729219779147096827755398835146656271825666958405058853456348739331346387361168787515633647129595639537167983937755077545185909430544603234688194285337642439590328021723453564053795516716671028071139390681139409115071727702629109425490110441865663804673426144027272160707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20567054554570949849313588773259356865819398626431514143237907011168793567755748478074676879572820829232670626705363325618057933887899573908995791274539652227819160570163272850857519353251935759558111224752734079782766099808304117358023260469793931305704697931428557380210349613961209661693708679232915595614691687256701557895531206647760589274262418848912160602596831086297168592673511341373179009431374996643199073806105343494822634534488625077822429730350805279113989166129619072663259823969392049911404044827117700914512567590852255178286421244683149258134657398888614491855678569192008036596541820032193230351669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26594961995890380913369375659929650655106352494439697800625429893471399851300648199744191834066264620354460989171384321981406081888388374360099323770435739046741018579948633071021348335881996232730036113275703142234463963417226644199229705097902091549120412472128993968091988510297525094073037559590039344217028635342539366741367778604216563429050417757880891136885568594671405113342042184601497541976950936014953197406912497606370009085570416852881519237872927182510634246187483959949206147707258572244902504760136755163258473336920745669045540549107953028712376810097666072327347968982484712339377426199682505589139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28480684974742586737934892649997541606457133589090749773720524765581379732544108436532108077512345027284102586892977238650681407293898240288592584435908268731046835192392770515336523204558684148485304033377365065581778993232638129652759538539125489021197768650024326550171914433193428041406330008543985788218330866015170911596308619916043785896159809590963045584685928631361677729543813403612158958311376750754837578174406879751442188739701738282898795697457113746370237813474435265423460791659743800634350144593287385595633389473360589443551116025119966697745478882347747708309915536275359687170006528516057018101557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29826437440586312881630014141960621894620574559729883453936944808714729047102053510164219869939315300032568955871914944934283463497510818275646422647790265851889085257749238200563068218668151656045697058293714297841398022942686999669121732593914216415299191589921060885484972898690826946003514142685173091187345154806142030688362086520063384630266652250459558190414098181121880784044366474674757974104686150404525278279314549663432071054992783371039952386248813748230835538857507557753215562162449747558962733884109658630247833950755685197181031361980137531535020381129415526409922384302108805782439946415004185230591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26238677952067530705180490256191541446465072525758990429399925458463335088868438764983322703532964546285858116859691022566924048734677156108871591827501992350824390379642389835233639895472051099712083344327260388148624564071782301753877687970050914383344803098307189896680609732559425179822264410068031336165589558922050772255370486671420914410423504359574095625654113229937719319088038024512379915420706392482852874158362497822192392823365532942366768384696598382435670798689791927554008151485593635052428877360329520971164356074351615892297164691349040755171435174022898435126278163428903977084441910911010364694437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19751330715264748522149156526519966884593399396442794884164489371474088637095889593497788268360353875883538397513988087405350231400287881091734769824461949207761441615760094489857923581479830772765585972358421758164368262350400267549856801493491719146586188040299808788029799452589342402575741461186049918170092621994145375149494534947887495385845763986875746684122286900171167967937566962711296464572597085784920504052228395164392189696788003644803273489786074736156555044515320540613840889315754673207292871681867942761416736116708513723190305476223792130288266790534313900585599924350516748711650215656027956422559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22237739167705359143107477854198163261778804153476960792295769693732589939252910974766203746978558049310625768676608212243130294178041527649223405125010619746560219104737337885100754771618570948050947248684001639945697641192950179530721299035863866455513232753788202837970198669937725469103282527205726145308227854459158664716899569652450684258682053884973612380405237922877764185753689622844217070371831714947660340328300073240263914615587999262252532057791936792758443550426850296672949145242980558327255680554295940323426412565438659040077345780614753935242097618564191581789572210264899401375531735374513179287989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23558462878974468804557260152010729573470176144173543731532487505750430778710451179177943000491467165389799966620213994851662486653348517229527191007446834228514499484774066705585711185254864348641985472068452951372968839116535286337634270067255129527194195923635500839984208384259892511405545860829678831643488797067891220759914032118056932637472929593447963654867440344943510509213512981172229187295149735812877500708951802333443492744938341900612737766774123948217800413498058267033371319208149814948301531903652203756883071283964897225283015961774145391474180822045016372445311394324304238542810239337957413633133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22107782801420020674914373431051136969859118386945085233658023320073933241435741891680898597168046182327027615992695430048911767352565348850902303403519649392681248368551617114931960914689789699112522121232761102168073393368649717272151082461397143507788802542231475698958585044600645104226072533432751479156590986755205100020875674971001856121189466155117284397139754737965912335780176718154774940898070305284633522407265026405538402035011158784684466295803540860045959956007986681503925712330150699434753786827021020808590608105280043448877383933870742917748106533597104351346218487767721173997184804756815134007821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24130430234111351434262696635086121990745291454181834474988976183768462081452440137031831790181592475361480883472892186479536118444823980735244653495913950930421548923829849386620935200375856493442057932808444319526556251780348719417997026979331598625483363392908813474014747248076591420120813832745957391340903674185522423218626258170838612279843629860349552835400978371161323079983397202189167627430876652207392949379055637191915377667512633367271554018949129807838459385249522744157162046509548069335586624613880101802788857031039702920094518929135528805700866091927558677589885080423278006012159846422069946575097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23788273277799997359323816463743904388906449938237823822430527034324600806208107128939329492033238298159024091000739347574204631178821305394904841043280013003535860214809102292902005183689380736148243823687625040645125782088988664997640426691590869191449705798410711037340502132332410986684819756112015585673906282366746913058243016968823797316376159647177737354554917743569019554876637554722127541259914960547671420473415158684818237172804833035864721274497386761701124170657829702365672175636091770110863439419561464529607617608647220369604466988008653413272299391350302732764744414109948689235444690842494478127377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22701788270879516867810744557315450016028482494238960570062218047943824374103673513059745345719984572610959207747123843030456340637733290238619064271860373564595988827283381102831056859876177517253531812802175899035221377257481223968895775557306189269056020627988947112192834060025569576640514571312460470628095628809397626741206201849784682998416333445514360575023885825740467988517477330559101948995904496810316879005863091060149355549216985677478661111325608153611408033211404921983517664885459579812058080324370970790110173984872272120738852302400437325663761140151113376493901758745281733838296339337920758166921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22056478352655316370932916790335907533747863474951159273850408772539293730331563379667868843652549761590623406393578210244032288999822206853589789840535845078328837360822835691282077785773437108055934844605091564829040421897425248121466673433919167343289263051644199895825605011954843425135714992583717566999877976178211129239336570334086980593646638922781318951311357092673773377209756691757975039396234477327694896400713484552655939498086021101147128732653805313554112493475492447417024642591558105793147307343225591462023968326488872010227000532556965796802999640082225554270108536967885998272396983391472659051389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24428545041311259065835193171888009658172602107898603835529020233067878385704852540365506583547315374359994333682405623373088945932149225523393914076706743822717222021445039026397176727803729916823791076647854310905036271242304318001334711335970049337875968538913921451959449727175552835482373958551560254700250116151919563844610165191225191154554923249347603594815234157092912216792279296688572235339303246928923232888301584526506621120966368448497350182954090069994452338174476374822261854663592642280574365622330910925166424270214478550443044597351255422963730043637711625143063689826663450182042460951783189298537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28397780846272791498493222067264853105194052395112781922806480050912190083641361380311573568955293473270538033761241657038586521453450565805493254348560742356326478810418345527458531765592988887949403316631673671889577005539926914404302817505040878776049566807977886777269216731075782800069232010011711953924728240020749488779036389448721554881456565053001488974068551955704578299364113161829551799812688095252159658702981844415181241870934750810423796553085686911973634311617388040914542789929501889032271595002024495292547253405762072487323274996962683941436328028951502040243044325501132978483333256810617288272413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22305859655418628243657035604226358342382802772690537268015642535698408472925462122100682153371682158473757031893390021412282451683193941792272011332292186787356912796234607365212752998483658736427437997125557372899352050259027060434673951736022384656592115658796895213683981737632971408297091590183934276493722401481101302645824312074262349868042905755936250029432855158704769504149076851953448058831497912220740957144713550193662775863213731264395494105401136195116567922052623875371292859867372175004571549281017379163813918386864236416010504971641151153633849723155082584961797405116571955559901224331611295495343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28646664964873218847219679603700270976783431083511229062728852867302643365734681096012440435796620240268436506908069801865614009500262268214776566183809745622752016345752505181622043968790517104165985613459969819273321599645060495094837253614833762640182863612968921835121364862290378191489984798552650724579114222315803546734222429802071748739847019174705829225734577761938201519482754198874038949438879421990972519614422337357772038932158036305286393356385632640017870896566364855526423127474223854397517583529228581227013658721813452396679749079368717789037190184915993711097875161034725703399929208659264801552061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24826882686834094014974576631262178692112613036042597511385975028478540640332526575371326062042289901344424923745717805726351962456627096943349206147519079328123123914667789062221016918114186575589014531656940795535208981389232382935896183187308617020087895831904708118250920056088187450578920751971887232127545901154476398281588053344050288398529701096900144575600515583885526104830407286528981929850341753210251995757654161698319592620279770353580498643421214499801076527864973340005620450072138382395065316083307733006696990885169287174009677509150198731714769305850385657152239945207137116025476312646230094837649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24210235511679849972118498673895073654898365792075219249951744254319232220271344988737797393611751550850100765557946873640166743890449633968431956155625878688762837394171228630271485575314306994933951759654826540089722272354599128171817550467833516719527641710507675587767629516148173725448921757705717038096332148805777749799482479179042214405068828945118215715487826596978922082764165814724606192820753161002988994435194324156204834544950831798081047919276885439094607558765358958919671934702505901608772309473886406181406997755999892307393458526476912557619158202726428407511082936516261054780263558083238397579671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22993427568917564808313712190088788366149610301148256724925861153038752151475647322138142971284255051024433822944337333658963884628465804757658936705872598988944042411181741677050464819724510702305082209048507137678798382970589022200261683624726612443091944609263433378857248075101634774467478669218256338407143601583324620843127506531898520534765483057754987581311893226248313572821673439925957570471501799680646466695083525639484122492250221077452195991906286138393781637668517821972121768992113857479012097250794810166644801421710881179642155045587914533442103781529698784807399969219461873121217641608713029388983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23207264562797251185031286764967769043550650417245099143354484934528054312407901316973318518290342922497167903689974845074388103340018647898514159000508982934558863287182645851971430500741088195138708157744306382137530786421378232678454901025920249306097495142875680142663911834325291906941358893328703638579058328403679523501654731972278058991763324500087768585143473739557371636480249996242394651426020663788345843715009179643934035299017080954186498859432970780144124225052313185564283234584458941146230309792850886015673068729513168390152085376796069596346673891691560615708270581937472048397978497475731045442353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24633377272267840924276865077642137226220523608375401293297238153769940985430831293596804359915629721217192820220264113202767225031243549234648220300683161984961084191350061370478138371592472902845290000804515076818116067071058230066292975828284038131560796319349082390472224474350831201867916510810679596314804340004974863134411219842760104958352203930250013436638939240782878003535407653970576085453174968053566999844622819612788563469078804782860622755514857974407937008127347463820665890681684133197704107710138978175191613623218228256645783904884958911923683623148969862554971050690908408734784379812554650688389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20981428505753181141844918079836153322319718985016217215376529091590355075462746926007809841944034425908862843102010405370178291978891630990461491485937366202172483570214357146509056338936099193957605499972268081668799611266701562379450711616083506056274669454860439352141452853290052868185599253605299938035688753848831956509389500879637773459373134760846419111519360058713761932379740538443203710256570105008829403216414819751064015800863117584837277216780115841131495401086618183848736685213505007203479603814317850204211850698982676325484488169462905691907390325564641512298766983163381693220217508688404548572617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23131442489079055608114979357310903871802242334741166289179388157600911746024994830831396151554203947764287629083930495696717049637053318328490582016147937047695876384056428667121205964447221769105479855845001147829547097798365041556045402803416056507493550997268747568971688129109841960100809067085031019913998358671360517989483270799249228340129024318705006929524386281967936318318601658940419076947730172380014709418659584269255188369411798559690130875159077537103827034623363839264530056170191563987556215215604678975519831137296568485568081637498914265110922842662288496731337710824840964813318029411251626573831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24871960787201479381494946185682989645810831334837394175778727203484036425009044976896938426724141487001616060283031436444456597223933372879373273716466672205864199385862582370798086732751582691918414743721473455277612898054232203627731910822502667668218082590178813582231628783862391824213456612248046830779434510082916971719704190867681782938150680984883733814004043846663163214356557371735773239814548488756476251117167289924155104023839668822254938747330979614872393700687859219906154435378590060391089604278310269687372184417142427493456278879522348741033181952707097874165698633985373361219194411463748964479499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22197623892194728989587241646585587660746209605864881130628078084593651767928344705733636126577378191963135093622026727810746754319977428742761220777667606291477651382505962224360834414852570681522854575648227478682337436475262889380872964937416157024842646981625633781963584851605904926789779750962171576350268358947301187442768974938088878101328501099303383058031410618766381961467089192614708669743274277509830579517555721064911440670729574619155616071421119733926673553918698525711481358832772580425714927924067880757080120705056504302369300058089732217957798603035234748824905542938835817544731561029430718328341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27534675477920583944510660144476158890730779509908489992742047347720317515219614522609582428968824793929936671381337225145139555831870469017466009170858069436639503885324135601134590042569605611675822107591576695684326104668101887650880274702234656395587099460660015823812361299095041196218797530815796085233677315321232680056075331879998441724114683862253103856376063264954271580462425231078757688737268173452110811939239862784007737210094266689524748073778316744809837079982403855003722946160855688003857767545252479772559792163507548963857435292377761590322832147689998142418518779126936941995232842201609741196891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24004533624724795466575824068417187400153793754495358146302187765611655494264507715524366232403612305078766728111825069316672959030580967725346326039728467658129830645590234453541099678644565601956766136403235891322016131150030109884479143939984665567306442645525710483445285938111464468452698273871163670137452028906761597280256001143750060474657276539564858794652603537020292313277516480443699374011401505735727737412573860993941321658362356341504831200414698158920018959648201736677179023297469484780434877429403946959201897653199684502273326425462648529574500079164929867548655276981927551531287370616881846803439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19945971947174720841314947635154096349111633508697830970388743432185218928347116139822275953383489941342316179070187424603365028986236993947145372932297653431028890332257676669821307438247203329500565268587122843940408076513899512865980899875855836483286941464714767879287256921373367254447839072314344409817552763018692558893350705846510928480789461015399066855455308110109441351646772927414481841026543893382981788651148689516405308449432282977892532905352510510113437853564819692089772671963355546042009167792891642340464856171729162043762790483768710162803601139600294802612423575577730971430305033175887509550649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23373923234141842128882561337954557453072075845840831999537262959258520304173226738117021025565098158875843047861573445986429508699798087939328391025046425151427270929264641050663617301725897091443077269797702519313677518667297072168309129300944070102721406732026637232133562706008570538261080496120140803159660321088790153702438008900659556325198636732036453280928886851407809333936061998345776557556790778920535798240523353360195058754296733692818071191923299513333635901589285816975665512536645960693943800446502239755709810645697549388430524031799957168199221595050798328207984210084922378908432914984350725606899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24530608142209241418115270728533410632051280679779849705217360198530274282155157348717282403886482323175928977839774293081196694870784537870966844233601606474422944670302412806517933495778785275097943783956238081878499388070509569982811167227856911408676680262026501019016708821649730151999004587211110334107805977418889247363948574908203581763781089824416167854830279661262097115045738225763936221738540244399380265164318240431535177844102773042909158580291745975968457253208006990599955272790294039322268456410345767085712656885182072170851433993790769937766838801974195612019014525388643792817343518891616116594417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25131092386919281432630504577253125753225133065119085431006315240699131040955679297128369323957964717597911408226801001703248265996393372822095524422561024717917267280336744703263272122587921556230823592634760902293860992445123591799864978530185505535916144990945619976946059217005541821275287697635778329244716856822311432526213545273536648828468567342622779085512414531548644203718398487324113761972244458235181853003105979272880087182569512122224259286995678330053037266224109254135581097276776452458821159943374400628462308986778078763215827764883812082631099526855207862180963631760631289142352831278006345078327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22898616918633328241857302615341285762167438061965999967554827836123849645922703270344617962363129690390311466721234382948273134474131056211290183556950516894345261170446292988922964294155026109378021913550724751554366920320653673260119522779363707829534623444081025831414814434965112618828832043583348918030518309041808019759781850056157034697706087631043006635290237610768445699515265209006378795217552325707107732573407582871917115932461646491873573453583712922742055330026647586916482075704001923973517135016783908724740382306320945096394193570611292109367866536918107589956676740338779433142007808409804864055513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23503946074294068129698802944121580721620800854328553206920134890317513648298469606215544643255536444885006284169232362164717693198830564784481347285610498142837403829471337620043216961810629026552571172980828874795498457919529270951558728069731975752578670597944631800521741384912944912128535586482364033918728545270753122585236414642837848555033996690467110551048312126131810435388176850909852778832686615739667151998713627442734847486639280467091307615364041909749922007214736517438617922355465807869088957852976372417482540762044884950049950660256513269053336476654175792577203484295544050858393525064326962885649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21345533715895645912028745209985820507191143951802321147409784332754978279301080221661861728727637650860499240695828947672239656988558772708998922305019225018250280864223689711162708189294287071959221848583886126704042148896747805965149085172155826938207773342153177834417538063280331028542807027911132152469295569090670276752066524281748587199746178245761041190866666576017491489951661160705765020015508144323141118116879918689085132365095915575862849272095351632938510891617669063458888402634387035316853675182769219873692688310882120916915546598865381222151064188761984783376344673742592921493256178037411719612153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24303615182001699207903312996347608181107561315352607683142853305361423529450760803215910547184126159157416583689147107294330495666529539917229073661466451670170442578227979423825453137720277097105703388741289340989832317823383543541524385070021412568494864005775674931229388982272007873696745528139599425641230510522451623463763010764510215522468380342070231389154852385174382947361615454872260144339628542256869752737516346046440357133786900954144881204185155351722997951970776848350651846615490933656889770932615099090523818182908042036007355330601254425095120970591876455609107645662884225611031011661553624098193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26705659563725127544796156022835863456378878196272783842731196775608467945164465273152385829518663635459344227235402972872578959183474247314976736705759881223162590060550152788420861649528655012258032234509441795752136968417682110986888428750812659326653894953096764077381038577991078092757865138199635912340057855487720096887612617802694052497156143477391557943707378302039727570881676855550636400654818722545156707689751820230194881544883049372805926062304944050523749967878357260825829562533265030799336638701734597050765180171833521868048776545486793616697216395806799494735381636705645997676214667060126783063029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23975146633925973154336016867124235132826182821168701486619507482075067680247680414640025002078192237663930161754374525008058381449572361236091870068655215249616759001643564932340702558960220519517161969585653124841224275495628990836483947103921816588479818010724027734783429487399197046716042422848741129993275913122005460863625252191017469267055731928048521797276984831566918401858095052523500935060001886968014940502474041802092361114051165975118603093417003170165809490366206397070257017787584934363362105002358328861645972357356847973166641589405335399767618432610645125532225619383076848141263856471715372828591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27347911581560097830077029267961216121306867617497993055363957756760213320549416389655707627590533472301667524962025112698845242733125176482683184504607951143331696215973373283488481840226696431967258693386326357204077262209864607293205759446994335716144636496369924827245522206745079915787851789088866022378471433967727829442194983691441609643439007228187629524570974203958487557920262669587834751743713211984941517727495266981100623471271117501123698683481051035882554417134147295531419774959647433501456715923025628544764759532556253065191570491911724217539366124185979740229242406846952083129087375720763889699361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22726824669921884030453472867365398289704521957381190847851814783559457856380761889934683590577309128520977606135810201173988997638714827389935925746040671302098924813104680401540651336094632618386527098223880014344874324837394273281050439696663052532912912172994463308674804993395133058454336652950083455822383683974850921069076636010950450012636028404993252928417423177992953037794848931998493318790340298876694954415614114696036686659152596395256370365484869688798283618669076999276127630443711707882806992839026556288129061708026264387716354468576269996043897962340158860365027196796187766161371695914250935436137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28924208233444889571042627140307938410861519333190432243088099412895180082616044278651856110991917716663403813743918158449843278920578127652328280878962310939254560909674059435783075405260790768085577983055601076552489737971168351489602807647703977809056294232410380071675289403479297021532526683725590446131207407449519007707058901458940245061291173177285528116186026026410832615801561976258085383601744726996045338506943957526609330393212341185931223446281680251922573322419800869240267120024224349412504840351709573559277761759458160198257218124658078231514137753580785397263031050478346944031425435495635798582819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25124693962216232147205746786054678013181200357351518595559336879490049953116032193237731359255716447574933686359863370124422173318088805529286322861630633680108364474658021888954120735312153170529101651238750600092528108734857234579327523296300194389879683181287197265970425983253063500777751039080045023200742012566843612146087375841440652713678870669902688497194177197824007457197475508379900489831824379734823680830086877282344946332909603647392196984286667434862208900722017668768250947464696489114876845942180194542539994508535052633879003899628637461031501575155709936889500772258046106902331237281281477643783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23455376860098621035217322824491698485407871483364228362858387855539100822348704290175840864051299551933888646101600644596868749627032213394182558613443033756472801617811146353684455132715750006710978754266050172011854435292363883153258401252371423240799844491247869786829781195799557779708546664243989224425232295215159648838313226860900474563400418162625075490619024816874168049036248944703380983179451640513259636702576572384473848629883019306834908326033034355778980416011558567521433933320511999176715566830817267882638490896450964651312437096908073172180884639505086609215704141454281752091995619125258971673639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31829943256977266754615608254149218066474732631042820019252439875723404774954693286899036398663264646815925069127644706905025393722505380955394522116087465372611971069895462725246440536106920773447284597580499052669853869224158617020442878696601103567891171873275004306001895408615617606518926655760129888036271757917010861183237349635497552141275170412134718724533776245418587900514352329932890637660937010614135821491089727208463874619629290947076676070909223755641965372920267542254718976904635742799194649045010864268738464049975343012453023646152624802839049015731500512515339387583574118249348996679972107908017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21271858809081650160848614554082716962738667492973642945423551513783266939438199002444188950358729998810982096108525960754151444659529980362209724050831102616198091556270279754686017269869582831283885032558437444915388423586927429488372387186003489051875675531653288909475168710985100476497584199325792364555716330193737089935208821984461932566689382582429438096829507497055833477832442784790108679243963953170896937788201226335751714912229292940105973000287819235894204597937775515189515277893064322261256072624615247635950945501520030432923924796156785336843811486962819731691032721779586193870596957848498035306687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22584001793691834747907873479792484570792729394944113050079779363072029644454605004845587247782067816858280250329715300799092012090636582244444724245332402984324681159035857283083483168365441387453989802332990863049452421588383210417333679615327820477985924738803429583217808769617647203291300209534429012261112792535575824697602528576002163950813239041878108751840397633763832198270459987953717728900646690962487028627434981655322419256165478454942584856319308265395785315013119445636677950252402670289909251573627720462335642820102241380526366085804276837960894495539241230538892041205376990661608431501250286059849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18971849847426089221053595860700273827101308587768357301322277693145614414628749861328582329404285080791754834523022412151876048778414598287730928550976446386250509117724050564134566055014803665355056657257432025545252089998070606860008332737833624432202343748503984946008838674070987910357792007280222017289528734235063071948028546732167588754516383907785847955174930642643567744972631476469287663806521368175282328297321849375933978893223267216187973983081133033667723958499958451215447538659314075180731019223325895418803749123431012195994472032707642144565844583024285750472933344896210951004102352497783048041901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24903324467462342351846035060495088639994588195464931070095870617969773535746877214593501571317850592228707826506387877211248399418325475238790763140975872604381666011809653370083470907948442245398425095157759753586217203865872095687565594585406234805957357805870579322401289377502705629710326403176959556923954626663043730536234225374441635469283046609824295782516928349666566821202784347844683960906707760300148924744626858564090108389275643378505712309585466066125172776777929185543780473441464738296867305985551949871455825301939908097723724502416657752454151360413484672400849249033656437128153972512288013403939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27952979522067883005925237603398064266494362493015278034449787341910155545005545881748699421032539673004184794892332752735833347228647955642235417934608732193648300856739585599785719655307289995032431943230461564091626551388904764500677540312207473932154343538578379929515334149573661368719535830104534603430406161362988026560584270789968780976285778736367109464639158073110797526163431109830103090559993550550287699024182935889402873719909492617159642155391422561567009642452570222330731994968706092343582138140702956384048248921480202625728461680683923275998611635332878556814806744341590694645719140131668508488349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24777850391875268749535197906869324898456260783015606178680279735654801367721964350384287141342220748728037095703109526281383016097149871838923796966632466292129989732454761779751237548301661388014058772830245793996148997893820921070962241374271566470018484557501074501348470855961831509303613003735356490291575605268324018575591219591736002776815969495738350100342583576681004008884537898406747505839175791273260100691321754086336338589021907453586665905340193025447558976744448739872881791243081170100788550904089490656832238320970619085033138993927973053952301353500998748316305288872091731908657265838171566046561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29627672058665889379780257661975059158803107646725332405417227226681898209437500369091585936866220198550830553742059982982128253239676863792927585162587941552761837491511922322384969528836007076851230503747675643478310529652429471601280017382725507793397348421906142027296564436624576757874913338869517140849503701624609258550269207351836371892164382062248939041616789635592262254195811774051351283914036333844684373811321692442076475496201517251764741165259357340207413752402357182257325046649692732146230019544072701365792351100964516374631754938794747091302023067863719054351070842802454315605689377048177980282001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23377629248899459665226371539467268635346053759183757224547930156269876860329489274259708558143205736684592458043840625722087164213246374448776769800138510254514486736208857486980812396217879301763694971399380799960654061376214360932142718624663421715898185610080333860391129887515797352834609343492436469206649854170328335107730455739546049013900445787697475745549376940211191822623456853757163806678229407981224011781329197440638833203007056600432790929960706558719358670272874529657830107261856942537874701587361109812029153201559125504643503664928934341311849680689075107736020444415173385871603918455885835242129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27056390287718665202383515039414573048895457513650901104031081716142530790537142079227281972667044671296765196978501960654957544894825900416511759849977493038744002130670050489807630241933675567245139164253870108488891390696197026376034548538201792638424268467528432221034195409664655462757474348776809023312361547414758795382256227069131835710897108103252234338937123062542323379634027290867325623245239758673526235745207260791103936966791893065744970613883397333347018128004709035265026501711489848316427522291696464868688527269815034459884154241981497211460893658297825670485813583898296409915159381720674829469259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27815985277258994847995878350500466620558976203913007476030799908418324700857579030188627927622991491790565080726225058379374325336765509822438304609381121254823780226741174399276525709175450007689468506127029984204368177042332200861294426387191036772307002308566400007842550424154667604994170039915464238000783317589087358148173649290579829468766924448584019820545820099784843239044129757890859411114396124763430180346891154254511435045181668096778475912263211192684616707999415361461508474151975786701511603346846811632228579133761478082165142028202740115357792367537521279339547296642420887948977986530732805534531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29223535484875663765897650486564062847270060383740252592543649704045946661945881001755563616547404157499634090108353874371632957232512069544362137584125589294680766343664461147431620085070878971118076155602947735604180604025633966818723956562988882543279459075057066647317123876703120576994075593244117850897445537323680389931708723911295759529303904441985609337373222416280184068037252169915161097956092686340132057986820277708037664025413778773725392888974081451491066575903336216172823524542000554203277569164556463494616944692715173135355544618818372294474735906660305858070320682967628316339761250718461208462629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22026441039288012566715197851990009267208338020167866349989810650200423772024061129507532217299385861702207136327348809589796338530468725185584539155130855724997962491737070936382445916421257647383978916469801663097362515503180175279783062021128266863497560738150428051471354615717945934763111891108772377732759507311448640682579330361946352459644745424131200409288117413891966670682041225127120709399436874049742397433452500869293377079964378358597148369299530223639151911355791142683953547040650084151889053759356952998794207042882185435209904471151703340218707437847090613862810666858249282312550211788866361069539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24652241117019137916233513144612875416482582941575396298648171860428497943941960310613650002879560415051125038696027437069702001538582419918637105702735772360112321257115669241320181112314052665863358695253751219280878652998301984690398323072715193379084087048277825967122387363590875887686369933465332401610339155573142012902248190739065015806422049556029114510840493088603076255740524486130729120984035940643963529539411616585567849690633397600126800223958459430996207590779523672961556248677814928679333148094014092262635722529245208032150819333480932267464339707373790750422093500863094729993050251691294800567779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24589877014166286847526210824687742324931637968239803771909004697743452774670491574632022705537469886633683359558209863647817646741266954939330880728462527263532574179225684252906771694377084076281722836757297892147593753820013577674480716559083245087612471652120533284246167959569075010118957468173600555216989251751594454335089536407025226624042134364148903320211288509977166800928108517659581281123954667654568700910592236251031560084371816985148637061998199520082550735877804515098133084105241579992816623400492924079058579399544341800305700064413481859636766745713464273724312667016982099061648114700858153035981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25359648420186746785676088523847355692222668765519447722531686488849774564377651297239964051801234171386668774064725227579326238348820819961070861809213089038631300588717119026448395774367572047035150157287415512629233018861471792073195951169997198581251920846017397919621396258136450351279892835443428819411601003852626317137482005722847874736673161074960892765927542197137568654321239207480063886398094567331373534925751955297283700702942799638178530661319438792346900688083876177900933501126520938667134605598933707864059259171404847190856300956800799807623231721855871960834336985581216361487526628077653888924697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30183428856249644840989232558690961982960176038208374656774696709890614880912918202437138472207009729398132388803492795925582037147671074451313148484401919117128245249664673724466868763703268530683028911756560385209628610703904184943336759913781652383896821030818328342078042154097175793818556007448534667792570174529275615142917597403811102172300797533295233339877150520889046441377545194634625207586018434500262088136996932228465209592363057760619883700275315627696398866575708087136518267038968083480618808304902910183267277644119169324804640339392693030859933715080095719255778876775581752417476273147453704377449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21150577008444771766261907966533854525526966036553885698014555907152991160983058135698875020999725113655633377892597706289067491228723038757861451831555177576064471915713776404007730712761432095861626112292687867689193684295081743847613996185555486634201439142429444146249700733860272013094976470108374995162470171305537358237522128562246197196268584397209861402148282565275966993274855709623028000234118045325142091928982711897067316272075306277432783234881298678894892532720955891660237777195900290451334442218061430036334116498591422917589563618707131850835119398182167453301494965377363556119821091259686065153881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25298753206777265347951778986709343658368816873610067160952617659454242711467474671306170285226654863003729656028665101211166750482054057934561391910284994495848831175917811434114776439740578572101173985632684183405317588729192261006796246593053489896680357587069093467689401093378784686169498190212201336126599817531280208836429602738563273101254274213753102315596949132211788510173943369103211396759937269360053293398605096257488580124566296149669423222046980179715827497674807948066735735704068848822373250960333429117737007497074625605495581167045038259888017494538994936331847393899132898512943651964909645677129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22598413028294132017697016207195813216034185688821141736040874288223908159286377653195220377925161906133780927155769806630259860401104458771837781395144280892460467625323893323738216376177322850180716905545023044529691247537308453131799091039297316515694563689785052359460282684986729193052334214547168424459626106713849633344097593164597793902716060621736101820515516344168963736159158974401886392440564901127335606140693843152555446565363802918621322602517898999847617522245218683106201919250292826488353965150895339156044379649076569728495287133700977383178848923798418758295187188767210580043703335905824376601573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31624673708182356334212154468314833869057562378452850126484097381061914082440834528873022698313213858713899161896569864109917753425616536636116677109945140387736075119317192573461171631775800843208936392154760212295824170492322796664467484401523025990433839345786408036990704562800614089888316962106473600011363365366919643039544785598492803179264198752008122906913009673192317819226169023906977139361949186827682483251040827160673458000177369240443093665074520419810316362247267191706813485248901579310739942834676108212350673583744235521209477639863836476117638536469524296144754296376978011917537834019373754642877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28094402773297005256059410297546532381236701080468708504431736262970760085554435710404482489047828961173683354082948744761968472342689128440117708733612413271262163485197770942235827783377736796503077556524352347071411605573282886453325287975798916969142647028863850597711855761989490075786144867502397248901424486119012759742283846724857921939868119984134349971699703417535529762961557806876627130122227794541553648905213238748367466583164706188277654022210287722007350238994997154233148659776174125785459146045363465292597319010895857715384446050099299308648177674606289614272596253441229333191441546966780357967533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27186300025554831168573230403461810567015788277052846330703541699193021325533376450551286653655555462767682644272762319894023650000792590681247251643535740770114316273409478700922697450286233181800032927176960017149182768253632937916413564235743421167621311855313338426510976204877794524088688179816921554957723409576164807114199361244027375910016310340109607613751562154127489926400033437752693917698924994750796821899941474659925366517286334773629904584976659622706192270826217727072776270401474112441386102211838655762261830218633647936498961888882677524631832330301948034468994932304576296392100145655507536765901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22738414810527856534211402732140093506950411576002124674679817326173038939110315530726225580909934422176220817371132423949680059380173552185430142402251494162720634716453768116436338761259756107045979240935949089396544811442178342833501876418150380164607668145775285557185917593991660214293550949849689145613267945094652406481366698620182253901861107578472940852032825687126668489448580339946324040790285761131900818175595161945257934068687932299721498164876476971809511646011290193791351381261915884626226165326655601001181071243123170322209638203873840235258708534427089755599590588802673347476979658398122791632559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24683693401393779752020034478572894764340711093368494652451985316703692536517733035020809419241748271410014204007611869319701808404136791409294015184952446700935282648851808753834475454765297480021905090592547643644944972676658027077906325859124338656438509719829761145338485693710844903516395633591434411737613007291635385184812813334950791750018858322802383465013226272842820871166195626218505370390801125079012933760785246497394584899303626049934588658358415909806013603709319234596075874200192983964496162222910158989166560257547012558851568958629071957723145250187740855266627155871231622836777740692622232199673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24429346895489010144811625703311315184097095160493387877110468837196194085639892721726150326569591369628965015559180013768408571873798159182043796993268419903502617534712215598600044400017321242916772519516920310257593170695938405213475629567950332803774279186515940903383497127810501730325245057714751416072651180841237092477171978768199121697849338010712244483530856823220655519846970691437665439237610107738744914012828138734555687439793950532752410871245299153597763817820875100745285199751734046577446691865220865766493344851993474784922932321681520576986293886968105602423917746349805379623565508557335072317017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28517048219890664175561823438843633572304313612934917557426716952042957911843168994639690834145420466344918991946537659440350901092566245484267105347654172105531218936605675762883182065892052586824336168849513935079770153123054045013864804310547172131843618241379166822821259633079426664532967216171168619296219238111961765123500870315300801852883892146053002003689999722822696124324471901551845405275471079442879424180826000333835845910738500534211034702978608997225694983121769752546885311363705621507492075085828545508860874051889177356871218087957136396504927822518651983103854994923285938207273431375129799867951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24223058565387279552374214715316952091909155613378989913165576795844924461904943968292415212342904480770357615800220099545633284259895993951935313696951308841825493842773677607090412576365280906820728403450520327918542527556572471172262728316298076223864761223709770418078360365808043355615767085696104487434149778209112214728983190373076189375853133183114537921142380532721344625213221829567691213083386336442440072762862078724524821608716299396149812191032028935492842896124440476817034707537234577716096757957624084111091427785619666015948083279438796716976076542206575271552161093841095944681509361882784148564321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21526299733011230669304661722335353009273630973307273977948378991292336810226956472850399443252885969484285903933280625527720609364896522182758038981624962229216910529868022249872677439888480919769173229297447939550994410423663075011249220420496295509193908770939877623601479308444797599316630097505558345615820560816749907244230800650735087747986043263635235006021050496973763764602911636178727846249844830798368703006634517592195526028190258344456075862247155840108083833572073846223285875262009297937803070545934043382253946765868419676663528877448233264037500312598833177060286619339176083762975265024008677948189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20895024333190138773825983823902739675008251968542927209515013247874847938114802666851475160387684920435059777203779544651842973694884838121563590960140598522913982568459492102132343456507442834100605809032852969336277967121886634495663752130882133934804620447102150962856883411640614053099511217291734455684685897598253912572941616258903726281814598850559461776537281402741739105727783219058163123133453000313952363905775672156175812204707785458417689419911722777730515230178473185881187233758244218703243198952185763232033165848723395330106814379841285487222244157253680020948265729580012525481868248353173138881421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23262213552337446256576249055764032192007091646225445856903101632608100231461650295270535566281321776843003277023423052697107555241364308879379400784986180396654395414732268833255731796253831996901143840712787553510668851446828775654318432791340093892283692914111863448445821874351135611815303089092943155318606040958838455681258508636424868013406830101029014602551833177236497784619616091993328453350776514059610679632336484218368311893993845174380469402181522262440308785331208421225677735843735916621627300996854050071029861542829805366440310483158376846082319972431783254044704513313979703845437346325650320141457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24526445345823979867667068797127166927653447825873841550438835993007171485452607164482100577453500369295408504860022139245157994757109666721232707010064333353912264867035901071101386979841047000872019587557117213881575713501095568461636078489298459106465018691986059887418931538019099236303211046587040255514695282804311291188466829089028476973620574312412279411795856809114427364443992032516794268920879548550551921926202567325194182127882700224391083958268264244043940723304001769679338214806879181487027580452525861281252471005235260320145084786436577298388666535912977065063762211398929444502358423037017237884589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25721069456282142440260871442600049285534802991159819548553605038787058668223536208386410838614576292266474588489232270614497783033395035348674324781824205349919813307165548636995979659677183186201543508123805303109811729712154413816414984301162286826010958376067020456555427594145875211944966875921126892037254666236898364167119312420542320777961461143772308247115228356615393839983868846082671027726022457194646453740573104006465744195651602228624549783129597704522865195895716562275050423923065148058448905725715584073287042456502197956257055485544239127414042708441318905088851277268155753532691376012496993222329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20489493747687990524541359955736658804236731207559059973599715890251164421755800469929818679788080101853454482200774485543823976698563971107485557594921684697695995427285797788835775407401700065010207524261244843543485257122393479577173057106667266329167537210698055690939710560646605593210000713273317218574048650697971307220699429049436463199858752628694036033303308514322404710557987211026660469860393747031729790081801230445909621645228428913545517596275697999258405182294228016250426602661944096765230715028736515199600170066132326855365182894376907577156025481928256942014669628792479636046893714112310720851221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23000525495613299700746726325922047490453538765667927493395120769067868716921559574951827670820563011864034424857327911199475929324267929109590143852999623239077150720735927273334815506422368571457580839400671761144616829303851525170264302135445590525918616638719540355456335350099071855629953005093187945637130856533371940722167348687031675756834952680485066406948732083334533395459959079806818265165731597039018975967158121645044966656196582484366864572056967742186865730797589574834536087362699222663020589845565972951665484032156684851730588745214799004484318462939613939285298651639481645434111714149817277684649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25690521442130220566205450932029263496493324708517934587096853970200387638525509886975853358587539947707742723495487568382755500434192183732250473470723940603000101470154503861332622182640207803912105651741411396772464998149058651653706720412325038000048385104823290010443624140079781122458322750674748410447096557060724710555946955950020058233461569917838156716827568122747320130629628960248119622162992346841124953876046880573764337201707865230635407628119747746405865113843358204602656709451446286458091889645484874762949869361687681194527232786412517144737592722927394383231006528800192599275194492940370136325029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21556434611115806807369315304674928640427728186451001045687412602461333252256747282753474172726535722879186161417873803782448381859505050889671463346047704525075693078744970797398515131063900356190622978251746181743448214693136199675748512864653111689379102024832422880822107930833584929401703589798432843582236776104653498888222184175415577266571244932166524490146727888417581189321668439047375873829217286655990684900617807862398595047739320347425693269969782035173021315454594281459798840407290709370653565587251422639866605434028893093692535481143441829990736800889400016142548871023982582348998707645288267759849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24158029508749223709954924554124939134959340826617363264703449201954886450156870157967446170934393660784946509337681218809094076858266472191749767500785929316638175958981842521370270335330951465378490850300282616623498452293256987462538073423556987746621841721650151410626148294748367148738824270909027799466670168398718811898184889459430898948084118873411985685390571427057018624869868163572723691393596980480761431569594608423844345872996029514981257762886612384835446951413049704720997991903772640346295511805103327110103567934725563599879667731361841080941738214950673753164517306213710126896501625866554818379361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23625866269290786101342087611042926892288166934630073007275399761695812720298880094634002471985113473434791053636388519021684175983954074391206354731369089428420197560745402101023644618816276412466593992979507558057855116664375100860884312574828937953247866161320200171857871865651611635929988414842569228748202105914191144767079290216009743981293965230773332508461577811294436027127785838742604137170600205891259814522500219886412105122896299828426511173702679836696215489152118300232088997698732054659321275497103661303745314276175883744851650550609400556268452272507760029875495275855110828624761919763708132273507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21502728702680152459859899916349020534621483178487043231249596678554355770427288730975736805314632284068206246279007516177349516758661941459217022821407054376128008272415015586624872477170430961423572898506064651184862850787666445317516212323077894483944325281237795564037605850879658782457241522657036326939586400745173713423348008801909082516790316933330664509616615448834394051830533176058491523803768964383575859119106440421188454614233701867644600202472742551895562058195662034710957428485022300092614004973099452161696391131176298169104515968799440217306078470478259565711193878075333711848586567662114554370363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21564383141704702858958131925361697979268682769142495544515119439890192203954267572703959182958698519973571662577845617055811827642799990455622939560131752071435555172934982092906667250860518519546841233620367447272117721942173587300977402754089910508127348126042651812834000696266259411196112988155949208053161058869194640506318424785267012939689808909601885371263087808551636581283232637361577757211291577594060492047665984143228511316988296945450924989627538778495926270700934343906232991178660242243114328134105102766028643029530815491590729238941779604668393958177005847135796530834271743054822545551629301623817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27635534124302029761740196648793829588722806586119422006796509806392381461656938651570926590595409633712081349001242595096219837620827787215738543421037496504861638554566785629230502964942361730895854518729349089723314386064220187125703162147515237747983571111285054017369410910381402870060431401887847160496177956134542472291146482185837048506910526942817711075162323177640818591858907991520876232800707385993022682626983591807049468267951464048477214204942971920969788354722186442422774335489902367790253451975478266684338866949351468257048211573170292813479106635212589019271926462930801222768333910176664417512167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24818564491157634131149258217211624946598493695224456990578571360069900083508657096703327790975171446179384185499297890681122994309115139246925651242070230294864562350412413912002161574620773005996569946402232756501515215472544539730450524299105032288780462849387067028635411711812964067147223975945613938262633201060094471952362809692670973756738901978887230810680624469485210556252601645327392572164743025841044104484176064615165222956303570552285981969415523111046047406848069387967588330374089815855635703878172074673122094052302709187353860727236505440033956608397824922914326765399633989670596516480131133838227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25776253477545992371168106701035105186779991941963600118007182939366677803457015868392847153604856841524365716878717198909037839270778560851222808482695785994606107929238379259951629850401116465158401678811845726061915636990038110424815732491242654947621708708120137936906695799573035255533534411158401819114941265894779343844867529485858508204726535361482563252143645534790792396638324989726456326141215213566782568669249494369583151282130504439500855023767486216320783622062616603454989542527360084381802533429340901353243917893385701511005968890312325555791683474745486744379692938388785224348267402375869175841413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21185278648627814772789940655982842986707498054653307120541714691472223870093665622894541015114150558011083524800542803009850764698034760677608474102916689045802732054535635625611472105319744804866492143900964554501430424967294133331379005622809048824773047576788468443794002256417379972641285271390002867846097558203456843260817775435203081719861093537627273800787191514009054774784649468965523439032945107626371030281238045724238854374136423851105634967117721635582413620321160476556249527164515682595593275061715499630542620807008819596092104494471936047392770258104310493630963443138077237288729406234775772706731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28199065286099218973529702149366541401019905059094939607534996402883972223215327350237143118233273149759520645203260987566081794193858434398677698025013945990910650688559684384292170527432302420368372245162897707901432662408187431607914071923146456208218016191367384048310872755853850796060671145775847278469411344798089455083732339345059234084485981674515892001056078970267850586782446587189162972713676889263470188379706447051437925424932382136196090983654035142166561798407636308945876599183502952938224760853037566988711625892949149183257325321899259529319029601354539754921684723849219660435018420778071720845867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28428272244706831805490511893350479708065797305917120935091404784790289870142835603716547217956198387185831076473351674902199270434548999489942582844287484675238993541377357519721402330143869210247060028188650800491891811236229790883922091538640017823630260743402019527754981647657853146324073350500078657877850408170681984772130419989146801560976117756354626978577337177524149897912197825099506274048903797835791065010731218785045165286943401401335768990183289890899828844373907696445830007486739510669745556077204099782014100019189135249829671406980143857664370774806240919733471545185089687065556559865216983117811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25045631037882085064686457937894173476660665655913647034848649581007480268761244512415218363267276018425767983044441700820900314104712105033740205793138183017652835304037015028852152899850504449912782239276767830004360828620753527735493634666439003624938645989263442519635620808272796185461986131380983801251144566792046581098308622563969473617395224013650495078316743588280055192854780157416756598150667884770284126380413788845920790625527565263223688859507178097225647227875641633660802467840198422163502889498470702958778920626740925305820576864811162731837449694235931095299298112836103633993747634580863668330171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18531877565532087908674921834134158808372357770902197444523456674488020390864797875951068529820873243806282237724067460898235871319079302633550180694149825241955816439149289155547858912942297828237436800644525508006168774359639937134658143442284619502049258893555957422123686929805200715190994972092879338220131968873443107860862995096860013533681792446970729484946955007217079229374853343290246783903017003121067020127535163914195291169396750443380000550593963400715709293037369331661078007432661201284599444717981098387785964155419824722177323997602398191926564653883018560018549999899285954339627037203646615870597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24282043747509166126385543991710938011202376496681558825458152731159602581921726981853677957854727980285483172843248285459473582220722105351149643727180263160916905150625500751557248630563353367410524017635377393517222014764166151947553407166052625229633872081836199766468646794769080374925892895264202822048198536799737040842433543363133898759457578327845038261580546574928796240557035308006618206243959272989075237399837176446613917953185617186030497698920368243796571656851403948872324949350864470896218780988782390043663892355548388771735828677186822467119576325688917830853885421045690799999249566095215339981289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29466925390675384976432228726847694486667486653725643268558119413755120644438584073365858446731719573253999755028135365747945464549633103316138697584815106193916954935331925920587232969445746584218968551081543427510439077245868331205126714261729434996995145927762270530612675028114106234094707778434190680631357735913055227089034836566916993994922522249888907271683916304410204594686086427565207343598771343987840073853142126211170156597667167004626941340421114101706760030966347686943486264407932474263824286637994569172842655102068107196699079391133026813805915324244909192949673196835874098005954873764159297975277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21790534238674445338151402293258140431530730512500667197101706215646570394188436036947286127827237091728475905944789712496406805217673122408816665478253679836265250663104462852903994682870364709538831338948523121472640751858443121604502728421717558163627676343093085325938017704489146278657050371787396946116223523268999079556868948577035190902960999263736445157267542334607461789966379391714672083446385443501923590612653469602462944324788868290173818393787936852485516061979190567348260830177905477955897135004482369522026610220397065621299581726950194492544838728562205156266196287913771909010327276436484970926297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25261077491333902455537686704474463677656902529825113772491698695601910974971253822793256423698321800277219861703454382007189591096494547440269581227199926432752392279209205220997768760540007687837374749018961090235211625882309805445032410531731189307764924019465329873923627120693315244478236336209783901392527665925215833854330289283032360295407989203272528926910715024872136067400832029620242836552583392929897607237620591597930853457848685750782724663462273530840636129323502536253227772214450001545042709371439659178529163840193802035032529289250905717057805310226188212092198151367617892632638075948635718754023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23653465958868945171689278025639207236570929622563347255522519098717335919310689778166982137761590901804967682786619611298016194000571115853471990456891496406624352588733498439225566755240095175586581140378960808609443404531137557954846170424033460928591745307460495633391258827217478767160031473192083703460232729244962087003282522259396543232746371654209169127857685801425853658277714864379959020271211977245725645204870366595708356020441817479307993522401980478052275712961813407282415991450246858024582199342772587893705361323109518652455489261701143679510955268034364599532793736711254158267493782662625875919079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21751935946566419175389990168915514731130111596258359765528060006352781795380683036018618386055279516618672738512643738261835405213671655789073854734475902236632150863779305489969039273339623692818051959175859074753723261411714799520742043152689469316323277780153460739364142004471642906034184440257020143820788619069897617952061135004540259592971000752913440489817472919726306495291669174740939305928671872068376379461531431397524985677867709375554701510006205506199224439024097016657701202919939166742572130785692464203096160550265267708159315638134373528512941084530096686010928988099448368265978899308230022649019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27286188022194368995805120485437142649028849529019143730696950660468793676599362653735135065714994412925315853551991640291108683322856582144141498248123736363924618223215613050708012761402718202299762078723591941698145479190148346867519942044904365907226205431886978634151912602465193803149197435238582771069659482397290419636825681491120367008295011974120867075061937574026164109343500546956152494169877055552374946016603044857569068140918871674770174525027603359896484788761950723522340581741747034987064471029513196235279223193560700729256577836192781671516662835788055555513204481101825903337419013090192895298969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27482227969341548411339370539377029859756015346915940735431305976552945062789738785395613383815999212411297193040992745468731488073678467850209977408178108594226695616667095895975930059532389951414298816991580642760947248108684811409994635444893847244014335349851627092284302184928990584157660237371526368302267989508551435847528939690435913573989768168849529283912839011934037263031185141732099996867310442733726706129288376426465816836496852169175708422462898011476761280935987478195483368142052674967076141067910006725236976088215840580214101597488709483718630143134051486094361043030014778755354596599983927230929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22704392510826554766853036751941182072248750151541308694166399939390786270980443441493313822047865934402520369036615370898037669866054709372880022556915481299856082549949441401701961701825998311539402418818273476926247887162664978220185466160513438729651412202374701884807328137008031373461755009495438723187651600380353054163825706466510293622575437153277194298266192468045829540537228206785675815647104073660843458667775010867245854916771363187372606640554554351164569154028186820423239451330410572050802294880506266086316293102218840348330134522660342813894057688443752444353405757299500957977885477016685221830927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20833942972355634907193765491996294133239286643514684872750584638433022965448726808365215845686787010794785134549657758073889094114387083640004146352030129929824384191615634997020156188270683098701722225245926523716057317290843958229872203481959448045821729922231382655169199779039146767268964000940772304131273476042971051690995384322955348688998152508059829322815908443572212869390719814327688294425254344792637556721404350964710379821860850276536254152167036551449043039890518793073367200679272853218284915113600105676771987133746978134417244976690553989021170183414744331226743080317118178890398821537421167599017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21171904353786763271771019838684816207182302972556603287617396046401393499193756634048673834430071049051694969324805133870793074425674264664379458674302911112081624332335879223154155694123574802281310746079905916463625872282676322482481328751679865317079612899056406649146171483207736398696758555952208668887771909275475768609955584273749222319268409952332497195300454907286845129160453285000169260927927113992005222884240730018817090081815199726646078918489814901878720977811519335719459638912350179198735919858111798944918781333718153045678448540119192180930623083548882161006692260617332355067053261327543681376813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20233333763377198961252240754809743719703825405012307882712226319921899445194343815418661489367761323241571159728929618512393577244496041091273943955482492232890610504939846862307189375885541129721944476233841218836482125819091302020248644125890819377460502330719248850495268756977485976749728319828542922467721694232072074173385593491604326508168839894523281150212590047367313945687486268711532111078449067224617667475325043446813233759336583353529623602532841588098390422158169578914008217779911684195190497239225827536486956806393057319478342465172468299155553431282273670888224743110200855496681602045473738965347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25475988421703185408217269367782919655843015680691467127579239471473409067144441525396925368872475854467327708987042722501738929958039064774587370257432148314989704979895538143371418966803271525706737242313681654564127386876432538345628533251235075601556877454804465775934447328934273098690991453287143477952627014617535799827263612655680674298680891431180530124339266772698679776830820370058998636950970668124036381284734202943515932684050731441987398805201803792798287102913800490913588526804300060103096574974059621830279410588996434789805624218880816653438777516267929310243805303792634846867246582480749283127843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24481403812468881895163735385578130143577700923109666240050647949583374889541112181674697342159904640541998162461753762137148745577896450310376413510021915516906143430443564775186789864048561595146198980803411003022080030663296115644146100882079085581879747846529209047546438992247102812100470998297878204463658505477714842670784775403800424402629329067769198557922064440702828076998767623063202161362277197655827042084418358747245087064253059813300919232133603613117874168786878229649343941516517739717601249701720422772560630060596192634421497729591706643482079148561971839592600649202432577244289447835221347624139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28884861273775694191464109419581888063421746388081558672460289040025896961594909818986475744723930932093777907550688257341708193836696131628667667186813011193677641558657913811232038126671351305579243225334818298307716193953515299347019968320216929157094822775139580398252676679348847701451398397931091864560184714433151064113993587987841727330733478606953234011476473204608178206928741340524749759418566455871200125843954967600835930855359013094465643320324441936961903885493542021256834507914795973077978213499837046828081312509980751771479973381192065680729582749162727789207719346290662954745686526594915344352539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24698975744157178746823139261755460055729164547425541025894734807158213741245197579746775640428929763548715054205170270904714430320874471841334630995660976138491821111240504355197213621225460040332370406293176226574652243944074584783248721228792719755922786202233056620687408502886913034847712366140366903225931762637655861063239541997311362482373235756449458110687000212961860744409474955798626870030930767475145710129582681496788982680974925875587885141297637042235917302898553206740598002685902191405849850529428053116420361332595927287577786859655068381687380149255367342392872553868573198703868308115189822751651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22576103858355120758688421725768178419207004515382872786560227006311686952111369929515135052423789020979295161077652566664054281606685296467099148614390883536103842444379592910339197114983451751384763189355541775611819846229187024414408552306399684236608217466950345863988766602110033879178647638216577666719159861588383765158751438332436024213835275032018396515589818089198351328848055806284059768898016766201805328595135294145751256579117033883845951386667627765012538894113707116908100949056203932266551607555485250169761219661222905439522498323508566991465645363818046343527639695213458408742773544077229855015113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25846078728551080818095969384365418142947584298888349335070439839592269254553546723926596203313150708025799715155493082428975427435626787501552129269654981682246208141861047378812834974271843174047448144039251728720263893627465335274044750362173332643672635215883385300899306103400342197309180154264499403601087139739913635670348316712388995325381298955613294132869404430249377273051733325294475922728218826095574881944198689016585359051835644322984919484042852635531733909252265571454702772654028016639969816931877207595409320323239529591123383534359696310529953249123053739254735779522811498918064337569298046902217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25130369253837351249023601260743509898746272699791459784950853275117579741792375022379946494601108012297526480183461875214086906772653027093826316220408563428156481032399327046004502072299191167708129761038107506363049009643859617147040816613876777063852904243936823398166257668082164390293840459705803863134326456488176122904894219091822890491163018466381057267643627637265972192580804753532149593135098730185108856524166199629392642674733853733205791985378159755982351111847553053874031845094647748285798265214767859789962073660818646614146603753192921032624098871854597550944835060223524834006297760277372736829889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28252130150178167629543649330814649169996737904261661169368744235373469120556868897528585627761495473339098129147973933827718465056479902165687531595999695973099805654851896700069694355392243640427360002181972542355895025498768345014793193780031348461123384657723087359174039874475952207833769509580458673973048977825254594865810822511208746443809704714433168200823988433619182611581128850062553289068654968879883365473354214863359908996440246857734370425540252073398207058268623618683798261847945540619760340211359195649170760338418950393043186493004643245321982077971744842934535760685736972296955220405128778411551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22481597517211648213074587028036238970558981203937172863049052408333334489069488312069158999630303571984391085680906494354395833858708784072816001196192251119602887914526840905256153131640648843869421103341498934791176963561900774281503671802583612006156344351481705416938616772840431850125234180329616401521288963007132208609038348652872059849645790968047342697016373145688540227892164284151166605505262666469047353139519001306075268429494170255917402637920478170699434853754484759784817915210617828220090317009539578307974308564996702741454520424497588146762624288354042173987580234331149408375623768369681293194211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28299687556421641329176498013791611294796860307057105141226300189430382650915640947077985467956091908273570430909166443934818254538285858002550330904916993856479790652082987999136297620911461709683505494126755420682922664729135583352019518743304433421147361828394488439917690725472228133646569613006180311819020898292228779430523533796450011113234343338441655890180166941981574947381195193255571662441838934386290795644520889522361499465490897196133845750719345269194024949377777398166903055418256089960878322730394370459046479446215760122339139074677512186181900058783376130774581579681941819426140056457146615979897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21718080382761986207655916022884229646215257927073974180696460334946137568899518437477519362794222602400536670441878807182251041761678225338092850122807552306082838986902871386548150367626820540285815007419102252175726344275479263940239679079875706097160562994594738446696626429298955159719723039694670807424333649511649530054469392576355474718905281415543990017130154737154653961806288105827499933157897075017245631491905308977192093530403650436130746439368843380671918594639508408158742613613772474016540816726829510390158148784159046155648262899071117486689711211690905479703131356098824409692115047316261527810041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24705939714327338481152894846391629681420679890661892019654814362452460143395489564910122988556917902633121207919662858400717181112118739415467063144785461656181036210746164019300278332373110092902501494605353801395121730645675832179851953676499280914250679732614826474456190802417312143826404777303799342416888223996945345278932964506186532001477896710764156013486416862778434699383849435810289650534561899285176131258607449463054746737246301312502500031515784432336663596336616733399044600259610998533230222879188592476525783079937386219130008486040189346812231238112990947833360850687680124802895412350363410660121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20142989692171198618481545344714924556636109742999342449346616235830593429482727660896932081622013343437057625203598521076989623883400544836526658719762668811778118604274558920665835544137032947042603383266648011256320705551513200650542722501550156494999345000577010585994087979172583637456520607415036253552779329642838641687977505412347685553309719725245739770944166104744890242989136210399605552470835494580354271263180587607489075189343185304453383836368585406987567544368992094478931949021320760824234383191940607501213039057333857312858908146982854817206313235205992002021163293781067720011152070270546803875361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23540643024039080810796769735705596084056270767336946983952189193628850571626954042253688435320258209663597879902968951902928920855941006295576002644299683096856363001699406334847615854341521151678498616249560375224730251631777540791762305710849396025817633227272911180078379605043435428377355540706425318138780871296329404727083901612025678808863715824625420029588877529499741985127707164340208244951658474591929485014016516165303198328835799412735708855862917952768910885813995299986682972356587522912668916275587441180720908348746626287882651350866419903504262766186897802613094014799150013953003810614351145926053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21171808989663081312661311803112922333012858854306774957043224271373497471351414139099244502370687394366301947637919855306425199541652254797711869126267563911611854018530281904768444794627138680408197358891770323959507523316879471187072014863126931757401075455248454523959363655484615974316506659951912424168876759077447202190577072585688341345807271750673818946183502794345966614637234830084877448574204036184189401347177989074660290694948612583866462169320257735444944711918876343389582551718552472158117244730060378421032920955767196127164896716804744966768312669158822950739673392681205749761695995896875868620059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25107851769146572234774884930180441940681035024759540893742205928177771964693847714123363829673840746922338141986375924137713159062867659322503245143663599004974847012453458430244534870776481512656724273745085335807695925801529020988794278020972077140627509185421941200916901477900400233603322667173379839725912622666367991274963107619133917736774738203428717785923110255819358405662480531012209197204324188580286698486185576696720649302122527088439670017224895544143398399688961459350849615954617249563895528586328525728579019939127675988091396659223980346513592209636753577081105397209912922915837699214348454278661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25317082417577141101286177078922951940648629973870585439649421251795149163516296305472639997176256722569810140949584129038105817752528105204489299521233072203483317563473022397304792662447118674966946082134667223936415531003275985799515512622851612257634454487184610159798984775746597009748170638500423639126811342613572652669631865581020125155835212259404368605517550775261057356899959155240205401821156891782515237837878412351146633838854357037779012227543448476090884176486522745685291485205618992878344032387800366533610002374558853553926052739727312360238431616422240489311249272034179438101737896579291730556989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26778494592793133130141557721395948300367620830603540530389425568649276896929394771240296690817664541817319377580727869700762300484824131237913947750949385672580969298963950109626164033658764571193288000880911352414314398690480696351062951008014624024954150653264712655724731927325374666010149110673652039647249978646681369080437291231525531315196600825143646932428305596584153754703520151542086316547334050082589116477821642396888885899838532404733782900026694517131335318457683359755733223912727622412290280592242050948216213398518987466271380830651313891719736509372152342917811810138070174889419703837810351302087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29112073395457990489036775415007495732839124982789166846688595315821291264719973967163473782609828024791880639920504331757289744349356409048895420479582211336464461540688321284899302936511295470396973350320704811945781998837656786067353278850581890982387626177012751814648464693238265420654727486850278985456058566074341441292145420882834217855509424857874408744605899969987982981586487110201853691509145834086721840006173694218337290077420316077785337562407100863513539861481924806652811642287515606715638941932280981771493540288293740863378537190420553804674720579190734012049323796602737430114987956387852248347511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27101264120633744875702676878764550751251542386074247089557670940084101457169756534467238443193701532557154152105658865104379976863712558380169356162817338365890251711674591259998472443583994530936330687779031114698631353287121697198981632275181131341374925985700587178078199409906260434791264827765485882749395993469742956271534568928880161492294475185008761618501770969051526094250635791985596720407009454439277723554549945383528429386705245950329062859072539316338947321557375030261719654934198902450821365930941580280055462547856893059811644669989785311797939082005892957141271112457307504395975181651492570657879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29881454193620963717756598725019074402822773983054129506305918456600971955072463607930863073382882961556224952446461080954134910207898602401515171812161054185621834801515949983809445854604047474529363341009590439357507138358237687606421081459625834910612321744612313526168084510866662820928103554433055078926971575648366600338954197160451175579540225309948224978980158906202501294199050387938314185888246951526333396833169663445758562414685792306192315138723183596665789176212508831202702362427749324935836227709735700305574580093719596103451171576502765948401622830782031923116843906131986059522527714925700101078729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26831206498436460563000876019249310811814903786540156384256615810490245174276660853975527103257451228784730370378010905711011836461101341374209566876139552247525707212264458531420036560284707229029476358239732626949301903982173294493574146188726128040075184009748305133082817620450638487526787164191230602639000712181365766793278730833942153576245618472886814556452106503506978848910535695275640747511578846999009919728538282613526217089618603420542213544796463759428179735450412432069241269167714026516401859790764908694855759039509723997653783264660744345184584302309035530594201333321909219469820997440365803125469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25118292707860997051680735209795299673761682005325969424965763760103469337329759749301211669895454659274753704846145633824559075755104265369987908952148856281723901353905727310014818229085756067632972913979391905588215093078987115625284815855931333981000264153409785544195528324341502508362793609734498727332645312098352698057936330608223259394319967327491663618191052716978885407237281720718801535223679494134209649588057050649635300751173984183358942037870540399821703915140608413986537862526991260378524324955875072259587318063942671803891480710434500135149656075298873910975231837344911904412571296246120045879783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22903464256220235003719206560306951564164914450779424120227661119904488428257533586897540663733672100932862703802916036476444102706676992989506004677955202817634622094860796683519895907923210561740555750019448448165601554143861885421219236362157592458165423235982069524405438772915497390482272826351346206842794137485138443596273059672560444346114379427331944529567266739027931682769210195212640259062363438865806541130081312952445124472827438103303560007453381870113979291606460999041663070766745261926867740751658270086099498024510737786969905782518728774801997387778003183949518247107989299585110814150790772045737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24976743663700220495839355188029320613750337375806747620909339199562496329053567248857196534958842786001303846529212315464876062692716467229547376243100172257130852107671913435919778024494617791910030480525486443339997030081192253491658538101213021635924520172814111259815869624179378093855551687162691112757379313023260694073340483057779171089612656551377664475504375509752281879520072763359313936427763806540725798693968670535813805854032490666247202000329559032199398768765777920429776617279969780793089736147400929396445041128404061177814337198314258896059078406740072593001454982682470548615359007058948338192101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29235012889991972408556190321120130419260538243761910005704855143556458925989250530514551957651043238936600920349702483334498766422217667540381590031506706856452864688950044926776374285113061688215279556489792468902803455455703116175351864700950607551972616314061164839604354673330409577996215932146039028472913535372175554631435128420109400190817125731185300559301259096849415018997612752332984393287310584722985775282632758597654662588776180630527619565182006351829883090749120093550719132953169248184283340057431006996460735703033005416845150952640551924939378188441206056108621095619489432953671808820658971207677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19986584082564086721892964019493777510325460743655328980575574804917581724153265989202938176200730390501489266657531004717614919643991215777163860846113571157003667988993843280723611831402783855849673923322885097834430957930890158969055322656081392193201696149605354264228242006183897072525252867911915734530299078358355995373784099837732000432235989829924829348814009709741973334628568993197781339694650695997737138429544185609796906596754728618424995382819069140924340426942843743737262429254116378887203458820276916994140164377320210082116903082485186117176807524661556423723906271639309584130919077719916282108393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24123800372717726314592262600199986335847346152795220512687387641061940035149623796924017782372858316657447180799929642011593614579382043399760732571946231611359945249331300574743884036543608827897141965399280029606607945800733011412075151575091393895478456832070532545882482459682763128288390242385731016270960482837039703506239479098405070341813662886438056436227948526658334288350753014913866049512624702492155144611596249681027472785126621078362968392989067400092033456599920942717503639550825950864123592546353797472265631703665819498985994450560597044711030618558750364669065413637226038561892467952887653767233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23341005877983269849189661444540405757557445333266665436278817098889661037030169529324714786682557179091872769996428216213294019115009933076068805441151306928832395355605445381048677784316907837800535933471783899970693467568188896194733597076344360077633815177247736218643875568688057435250234126727822469343381552640791432315490802994636375780884830293296887106788073270478008612636391393533556476714951369311074662476644809167437591372178973140362462934772419262183011292770194830926612950645042907587496097563738204530367783323529041693342623800272947946002903999886478034468201014747632249573042104576833486968327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23540846057568872291475559338020828637945821773055167013107867661575632616867761432076942197678072109021694876641430871660539167745937899686599914881640188949469459312072561458824177255582340564460387975322610250366603227289711416089830160609752580217873211140595789055062943617753419496489094937135522297105523010164445707411223365911737514734582759405843566250043928604425000383354625286019711648504983508128719137817592691078562632135284130589072034488770956385357232457905627402710266686817368787659704306752292826360319941443320104474808875890436040760060474166317007513936513584336645849742970359417228845487251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25457856542929686270189743250782800917573036025375784921747529299095641455137133037635961693757202562071086242003323559036879488276780411426359005764684163388386883273876691712145322657929149625177937471957370093237184646386400211253943762684779568151458256544023387173143699604385142809056676851964872954552212497246738280937496611451285736190502089437608473143824463761361592050668584227147526197279890565099285581739201676286762630847290516844063590456482303669300201978435191651481000764125768401084826521336914474243460994285805878360082903981781799638814369906510096375791701696668033058199661142471011497162683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23889565852272818760335898329313807918784384115666520958448686221719895782541017543566694892956526205565349883115577839574553844623671745061157549646437251151088843899387066349279354522999255497974014239511856177810525934138362425337306282177337478082612392491601884148199691235408299380551285582155369040466686731833893386041372662557240852463225883781398956072066605073777380147189286122290539799147424380748062482846984435740751549730661965440110917555821609826182708342075642237595695732597240956895249555520299669580296368580749417604402276718603307204995695453631628536561530734854294227074055637159524210278487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27348161616958815742901836375297334183171333548265246542554396188660217573796551689602100320849981073812082321756497435608224510515121184754540124026647759258822725487669424019764129232946554625791815609059531973273521393769435632876663638329932385723096938383159812668451668838379573466864788129855853605815840009502879442643225918232849796469418361914136227789598912471882870434017905892232271939239438459514363116438289638306901248210952950813987606059483716016843517421534081259362780404718128609687416385182127294595695851901649924082538583136663713699327697972649140383295110630867763460364910391473565721613981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25558144157441203017674858848595218936234821038924100535016502527986129653101783700189636038767234743442338947263764790050316486023377919137468553975257963663349684287167188215455485538903169891508645402969495609207709817235118207953789096883044381015240290125961344731982707389320154654959914178480809526507276178430347505005678559602842978430521060923733577296007302277719418168152923580900272461236015919837796209871095412253991698068865565502266288471527170712347424549199903391964227685988926368053609743721640350136947294480383736416897699842674204534003031423010490972243114072786279431146526592715290914675499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22563323103133508118259857399555379679538486013237162050390744320702232899769773024583688560411718083373603003483749396730848571146802236635012326229247383688875414347644253844198662527191140274257394515502206571296706924314277081575815018995671263955648390636412768672700779159030499045331106647061664695695305870118210600454017809041098552388439203537738879770903910172809507705897646376053564675997711555830970499685193421872226631873424960963825457577299221086367572438697397468234089922196119344426349021933660522679658178357472021330857696724204412981771278105364310635302732860428243916261870734037881644672523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24650679573011423632849247094041559377558910263176638202072650078935437977555350113067337267310252780062408906600286920152600210908484483977348387922594834020206737769201492756948442741743080697959784540976833213444487669431892475525823716516654122807058796027396639136359518694703732633473387528282997457880905500885188800097282747383540029326244022641934107712119935844220811659748591245490771109275716687534422091171555530120378829919313341599907779365559339896503705639080283293846752563632780172259571493052740306149148305329783641987739651903705697071476170557560849044544958423786552502920924526640507449051581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20690552010345038075994302908245027322957711728814899413463580834245018676295694744696676555440490356033154842964703683309088894128411595163440518581549006400452558754341948094257225666909102051608075740131489464741613630156009640540260640635282746433729389336912475288340420836937769372374646987602159969007031066967242840166468741498909994476452926785177760785448448348746457564401892422093619220275564747554178570720468045278160068606949146334867818030141840779902342971231100220917260787873690191799674231683949164443577149964350527934501416565362022334239263087718793169927314939230471518088797502702386229988699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25789450093248101548234262676425766581039371150975907002726735141355979903246852342409282441507844180685512967196679624373938449397126551477426430696895030774307776996817954594392867796607046806303466185504016912354967638871433431876712342780131723228543867859732485800955021999881911770134077464873220908774546075257501282893711540346083328867554436213401740164866859564910167070912991103086601016449716785355953589338117421562991373408676414043127567268932304996012856244062518756874664986354980489312741590442323388989156369062864572468333885236541152109917394623334325851598357889125371078355722774313773762280789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21595199436236990248003394911465327976899899301569034129910988553305150737620703939997320850101830732994291208875021641311410012412108905457269180535755339990216881314545141076572097735911574266314200239701604856318016137428249315959667889907287396449543274770386107656427966643898025230162323180257141383352026910368624776042638606675328776190900296959276309753899159635365284636097851580801572012940797334579826983528318471068145444869910867557552612310042225620260050066439761760646471542790998799144462106976685148911831457850724051720006405069266904860134333507492180988010771877472408166019862446370998697995627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26763612275183380829110871425162071420092614121232711105272673889391308905014776072915036537446871833820179969028689620694169756184751280889830962246523258302638922071224206023539566218430483555337524096673962026848322705472432329549606256892771617586432956953927599191486393128504740161692749340727856329203404808359159510174118733803829042418964744294234896899747763831276618928251735416199557096377430360798019327370532944318323332662885642077681382900560718293931712172368317136764464527508075064046954204307922221981139805558560825323283843389263656831979661591495426662923934918690516140730334496501194573416083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28639716527876944949183627379977884822504451360525333177950150347051263864301780082799352286993547470067888308930989600704350235006869977483546295473405545063566021135666691498697197355454024100328668303249093590675212056888932357062425167394966018384228513837193546203245798083750214126812582344305639946519808372490952887668360878617015650692448350027503830484338320005945126750459387533510339773230099257137494207975491903845697884493383497947739028077025226339519302632830682214028561717824148282588364690916893871320786359405172904044213002174628324633437795168011788590538127258012171550153196090616310992797831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20703453917832410070036714247463575057484899302025700300526113897418882609015808838540160412125407867519538814823226374726771455331609504099501550996791148543459228270088977261116185164334338264809521467802688322278813070397261044882017387302705560768615494180603350770076668969494054432214763977408906756771662581363266317702810707567910409215778668303931514013417999191323736338595366266874440727675124179792816134426880223310253277550909071215388194979183414860168830341639041639437311457409130628348947078341345376478379910815217501968698633492920707067336973315206682400267519995669320233248166545504315816444833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22960239378658707067890977758202442170682251855674907307515570164356935806343823780407636326592536021729451160402069252407252640038345299072131014343117040958159376691578660552690669436875411993939323989040381902584294177115458396272514267418432510111404693580017337578103359519714993211406652374677977853071031183233681819558569301225080199885455137362341353993107518571682687289602163954581237528140485920362306823517164428837366010643163295672812666562561880455017267619199078059371092583280820599107336482364149353419521660533780855167789644424702008564140462137824145406989317519641650043375611712516612374319013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25089304131460498085990638399682799825432424936060552264777158704120413493360081586782287848223241784686851740322510980849929331069225713417395919584540207401620252777678572961327833275363560110124876579852189431320425294933220489043745342414837247640473974717626082101582233460237748490900365636914573132904670138611197779938733745990413566319162340952096786605432482029879832834312072042176981204711457219102359314798642148790532412681866008912243503873447943103543790069055409305154922567248873980469207310841039844097819434049484706613113708539579778400055559246934919084521858457073223263725352061601314915317451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20098151947399698404277809055780691923349752456531167361926908154768186066731819557236531959735004835731791208700623496856678969035954497530800545448116429560795421130687708087408236803700918284768069248940027564452555580402326860467437303510731040663050473695931208180879807280069705424652799192598433287608618401904743793773676183852572231930103957128631967230386462947007211341314715259705183795768755868628156713893466204243565592144438857586998258910906595058790088018383664223937657079575826318955661663060489429470171837703479042067637826602240309686300181429127499994665075275333338313988199080999732878324559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29560146676698755151291937897592691910132210706137579112917430413887359657356160203568934890419427237444639449624762800763550786435398915628262637803873159724685929032772147731476339197783786691415411781639579390661758224005316249683805225705494325998106074399907290529424024858383406224161279835775836586130539752386587222052418450773320628389691349660280603941229825347347042555639311796919098697148162385246367750606425711138890320632914415487141663722968991078502407688689392056295259527268193452426215270202397568378618528502523496671924727143129795341803618583551788472827294775940925299364117317230142462366513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27167925651321773989445460447732093123808103803657160966413492866200620467850056617733576228467662599745649509950994061953295865615479571215684627154707820486387510436344625042943323596682627132621518142552671102407526353143611770326821622193040056007118885566339776653721527434904417307346607049830643759900585175746671782586687880728388025982227054936602393542720889463702577367926058483116468839177242236844492583660002354422129616016662941056484570019363518998948093464090734782495620412121266910425793622506615138545803267468975293728982982436712224269485245270532834455471003603006697785389764289898983110717783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25370833073735829519468896942325627031480827125061243958836858467321208059603570397388316376780072463244683424844215836076658244671435651582679998086940574409915198244235212743325063496725913498338878060055976860003107224234496395763176885174839035457181603641852231325082130607654371876309647071995657346807678055540827737523835204005921775278226853227842274351748782651708980632477442916088965552923460318214008087226220678829822634858033293735888246356356406508576849643903765100606300911623589578382926675345536938064338287520859851355313166219627943118719409867362579672774549092834697387994595120458033691899381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25123195338732220584861548357307266413344985421574398798762675781986185403051493743112733277269557672240319447254385437940347711281654723922738764723973493719004675189108553659359663731654851470465842716992747121457533329254620560935399344616281772327756636169947499964305376195502649030019735535089697732220222144902049274146725957408486476749251843150254043838862244684981072260223259439737420984804816340589981818512954400548483726598356964118916479572681714722110310959062449810008720381825402935583350376991655033651101590191690454024537732448736827600109725854574936408342514570811745339624353668022441738881483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28251584305984619477714166807652137899337003704691823249256009624890202909398790103224399157210421184509088150955337343095813284056423672441094956363468545057064156711340694579416942140370765433421193871955872770005373579653415004624101405159493219372604716832457127253308069500755077602950396345340629586060685982381160896594260640496010947642528500613857413769688146113032775321861251748475837408316433657375416128070431816137251041553357513800569288406117867098252024930648925827720791395121557940320047693641476740664619508763065248554388905491828233226761042577755558849717412008010473969605813796726748797947807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24101314244090293889337735300899246761586449537344786025319806175493365087274346132705459062538937094782644318405707631536850803746408499372905507049031482237449184377492152346448067604622203493723813062463687603937259044052636270204873222841143447952136353205831126649079908362537171217399698325130457346142492607524097725393888043550778192774167124531060088433499015709427858044110509359460093698991686335273661454967187508454934328722557664682905849626980801000097565355418874244863208728670753987717558206717106207416952949359412438086308426061384987579232110067888518274495344799292651928498466582407850649910911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24504694200908383526278613198935111870405063526637082366922306054601174754866067675083282616702314325880123320868067101477175603823140036481034718772944035756600140771991255085317145555824281008372297318395704428602408031338414548956870036323466214043937861160750985926362992694248918865816671007957390942882532527656613614971930579948698868619453826392032581181473009626607738039023960319943546783592234467080805874641844707972119504819078476501590252707946629157750380771769570793737234847891859939667597590788475789859165532096935519986541044854558608426161574930636177403940283210294047191393893559319977956171003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25979782025743488153986273303217569547892575371837147352848122369157803709861577810393002091962819076254470178844789012405552272076381478938632995452192693714788225204010229822020029991053342415967485549048362502783459898684636222554833985563426442633757803753824350809108033819943654621204696307470561714797422464776662620065707981380542243284075662840254105221836906244764720702211402387447734985172566454628965571110964018431043634449966166962896110049384946605702158438772458169468334580866721074361388843140954570743406802902606262736623406976732523325688389231264169600592620355737312595505909088384549840003791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26008394244506625414511798356716869538583374744059353740960078470257711432625472589508054387570641824800208644662850670192178609295912950577284722974940652902029881242011189817254294680705060709783234599678596880819683378466658944668137703823738423950543192386765261050590322137175317195159837075638314673688361073230131309291730484114443553770783034205525584939776168929174103772008247690896166437769317439101482289337827916667075726458587396697346330792776313255344464007962798292620678411798317131737251142284204899329388236591874256745453985698246667234905061084616407261943699966418015570175298208006776763129683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23093047119046597307073446994336792934740141624103875473931621904418488377142005616090782457639202296797712719658093140899559784218998013587724310605202147142665048761259545905854343183742151112042142284277551116702551415796915511755401313175881115124712265214512914174243894878565321178468806118035654106502497709746931839773174977516536268669314676788895233339954701842456093739653879966779729718403216524589549148420064154649152899783023519381138114325864526789353888499672804731032695994232281952915374133431156357120697847663901233451393309037855410235460207723954699927010817045750857367802940782061824918713147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30933469702593884302908984725513399067987332133637573871844311873200644440455833703374312975501635073687965327188929494849893884340777852257279919373742033046470732680418801621389615141704011349359305930659331184459571235159332903822207991218437579595827230597209292034621116722271347459915761416524513170597406809170622720831149535287658940924181336644313855372974492486740885726393306626161213537066069790725104503421018728018077917521911003936679703685430387366601868476890643967965959622098798093397633175494960056276535588000038976481680333860196741404971322212710127767957120834872878058400331664886959935955777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23735911141472718112202216235734418337244480754244396473801362767283630056182310522889018201834077565679651369884233384830979022434357943390536914771801663905829144884095690220279181522952422364947445583981048010740606549735712971330394453366678405109952572375116678066612820097273278255287862059873879064301336715492346286150450507725723762260690180440416936676948927946952951031198132824773937140367411420644344510008029649942256319750408296935503419242414299057396605424690521537459599867113963337402162977412370824879587255177778334731311549084591338534390740308672653844989590397714348490323987561466327086944547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27652807896147716722889439228995054192484710589580649057571948147096478328714175288237176789603173419781984942091131496320087052832236327580206268388365438671880766087210997832970070555687947933187435795084426972207302084415423659484883240577113396725457742903719996958961368140823067430340154440280552411847135664090519409808872621791182613469059107764704248107167272986454311825486474629058325425000632558386901294494004215284309461492514424744579278536559722767883809249280751145721214086802655705613020451844428083912361476219333237757880569375450069361280212240792172143227892660911562923998928393907040123711997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22829279027461707842500889216745087474632579307188807348326737875628032862843591671716220407823332553332744058780865711162936672306312256323463749042464184641654159965407475368923937036934587727191405879647655954399157962765291350909649841592753518176589621463442461341649052853502033374499625474087223862359999806297293690004961989677643686514138912139761022939665790994306072712557711164609124021505288904558961116335525497382778394618438978577421279014635971318959973228658849699325844680940250254572071973391808433984132315135079975722380165257017476091367061831407813425881864806416879834097132363706712934963837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "32130908791505583034192112627293479174597748204220185902023247368330694956527175562764507186656057665053397574324551542109920579337344791967491042933236802919425953318278257398028045347662099222611695497645111441171611804237203206362556829583297049957854470002699297910555002701777659158402055133780274955443326234318090637864852096096631340419567345268520332753299035816914091930322991430483398376505632783120583126560684719321231132246078651833416845715960702643047640413453144812516670008412219241559294008583135879524460577814146519392506923931015638144079317307067227171423268820663495130771919925440376790897947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24640178737341513763040230859681385222527815494588872411937520465573696731360564940696386123804188826410473288362157999881771030130721947973828283965441466382206137343425856731022617070447312196447873481396011092862644286330203364665193113217935648915204914375475460616986058395890257875414329666389997946018784815165751915225553599067825733638823268045845818355872225015996028686962549466193279172022789327830622749454981363966171479730291220325130044904362904964028093559366028401657264114303045786458594298053068545440030135042868902148785954190261537026810524953251158748875558701713669655839795655005265330070399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20327435727834019452191024066935356322506605544948549010399100423462388795408153886717323606527979643985934765076694287320582111173490440798681187129905717709682927284217372326227917215572621602830594470106343232240295198123579476312452719176362765394545064272784200865505616027715200582741948703375232313810651725340151530075584459924026299920307279017807931759743227887528649450142166761215766995865724909667153621173413393413898743861432303836026288635239632007273500805875032481890529340685473972464890774904517270820369034909975318865512657495336320428542757605107861413974547690693068063519827607695446735903301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25012357624874104419388529712261376405767877048711467387664311610303572498472467059594441882103737696084909327155798986863268930724818831843497687325070660282269183058453236399816661549797498382306957926607318161353249010277461722946996265443622656136000187916928991190419909375621374025795742047248856622975807512708329019909835438742717889043688655359398661246030039952129278103073651366505642324456126639434035236834462801134824036775299038056003203626039161149597798164547386931080663333397816750612554537166804781938504866653596210937443319598983933291815004487469598226344220831911590645689831685994677604118249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22304631349449152314481395068441319871932114683065331787164254746186527970084550081347783789249239092229476146225411504790885538202616857564060917937231953038963271389010240959373806885300328842865719463112516183143926506731765277834451682215999831356643166294645916368200030168844823919158690842504723285981632640036688394011178861183163648254937804546050240518908932718073491166146341031751694246979256096497404228729646394972372768625210052357544455412544179920241348041801476614820772571991791253818439493424962183459967030305994177247060366427107159508955633732356926757171584987962842966682438470178014565607243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25260611524776659409717729439483668416986704627055601444890511616008090526210145695725379981998216096712822044884786584771821408440085828914347659704853877390584340473367875005020691776269568717326719637404773481973846813842428207234146236555945835906744528050174622772181813978795722321724315021061947905203551500809544636695028504709090464445680690661428719050836637510890557603095461733255821568221269548040180247758727446270565251528457191043361431547569869412653627502932708379842662097407392575891779839467300764473498873462577412301869822262217122933631124305457494416020163204909904591753911667780322414971933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21510575499292185791079020027553061112455271763223648325217057909304745114868531665461330568993977918245607892314490287317959981507033359930326722963028024435099148515955708960278878172221115279655002110136454448461526066433437120050064001882860065321144506586148575067031055082005388582894109282982648950887641067523055643226870078940305713127059579049028166275462286517479056096635812368572833907671814432068055841951795822613083105902047924279501432298375451137845808558637089095533205722445343153512522531549365003008955853079621042927883503116680920742052816010773868579546267795435371688432834775972443950380973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23900623272708529464239907789809688406936563430543108188031479218951702813786629585376457557975385744111138464605445499403467349932880979049664926030777660039422070287934953596396938934592573775296275190839134678570207866652850666400495631005181791356617898303572731655785979726926441637143181868366620116974160823311651371453423402393568537662344676987867064637335467499546329425746994198077318505332232236153552671126993388257124357790064837398287685767873364545011420091234726503141687783074049035142867300477491736739964802000018379415056827039082904797628071737195332544579192665589991944846215726853971885399793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30752561329514368080518474295595976112458853987165790175807892820344441219532023507372610708083160920209325006770455301309768469688907647564195645199138685595394437024459581142995693479785277713897183311704408925792922660771828387024336953045575534049023855546515140653053277571182117275125872198608081180254297596883020964516274551607651261353283008464259388606266131814132205511243018539510401174736891100144966515383849745731552035580243580322026469792911220813540790545023953441863401201081880009729011709931767682415959042796286138027618092140928574923231900094114925386298715283213362834623970600854796659204737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21875313591009125225871501443711125980950702422868918054082604338174632180078181976098440280966307301248408060096870162481194884072995908553156747022600855301118176468535054641587743944606206660288912831766345726472921088851189378791076707040940425070842308509199109280442240121806800949436970205633650770771166968327455429179467538097062584720362047475153315060562504070821014373136939559864686399600465993639092619768953546461623106151157889772345565809184123307339354091578088958578823856254345583072923872461854280396011943371577206895631600023633601635350211637551375746928407077865783631360337052667110653730493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25325247273745107678485438106347466181850012117581086098905716597854582750482611749921841900312778443600302117417540021478284656433797546127844206149076505977567847800014243581963862243377747614509794483001963227375228642605436745607272206593347346318109169496801844014612382395854838974695219323494498817776630609754310231513603586542070068018749469378925609592231768682098127930623041268509826119864497522903515128461806651971554499035953565333525225553966911198548963837001022004016758289642468338435082550737143686508489783689448075292637485238319193939569024700100784577764236433923214480030091591973703372109269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25057360784124273880685332044914764184690881376904074897902891011237544788776654765748780679183778235758774427621152032073296963463446503739600178584583141586150570730135105819540278701712542127734089276071003184260311457686725215081789444364164187846417475602955299036644263519121234710302837127968848940254653018019809761768184126481433817033781403530311754922424998764894335975657258887320309188858959808358947782016781231785349436524396751120097694116395011673447801321876384494382864978153515893654829066561090961123870847179397980050982496084116264772781241842776276114317687147844140337802680212553490942131641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27947935310724313344949368977066027329683718187126935810538237686666191406971393205711762117243737499938127888886333071120670556549945811982454487523740223846902118954635298277997069243519036708544913644850396556702386500765166924540839782112193448183969612740819705593132029494630417681326989364903374333648974906908301463603306964306677321415618918977374636767629532061444723010492839593035579653054129467158806294982650471302748968084668524561377318244752405079862460612266960482430034771261941488119181276274634192922961560567092540412094727716164855945636653733625688240660989237261171293383432626492972114630867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24262285873691753989010678779490916776431184287041471880430931602439373219965933003684456196458362005512097621634644333743311538528661005316839802110299238996023945512050300373086795652296582327831915489089767526083662508499182224041812692777262643206848525338448110587678010136658257482355131269675553647913516051790884948681833336277418925982890652113821144291370625375579560627256769893534093275126854473188023965037875161877443686393416419981901345179178963265336754222898195602779155187493050534891569676271873269059578277449498795216811217807153952750493298273930937974672589240576020537960719120219591880446117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22410920774771570692590109174272367039856888991270168358754891013864517606937076545798541031514835115764570283578322055574766473317196202520387997250979722753790254712067261535209677749730626354345806011079835087016469426335129013595684248884419125870822906079186861372877280936256768054741334560013521497121686002314931733539806994250598574839657933914380667236372274544613400465762248629982269926251894545087218084883408399655971381851792819072111637824080760854361728189852087709770823737819972731727359479597526601214566878605827905108030661870253253674484156701869964307778786699987698562399492292989604473315507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24872034912381810975574901744007142693300081337760049702649992434084564412519936144217397599011179876540606724043348171465000973754518847452670990492373963179531463075589741051556084326778384769292899693625182051359035087706071185574003921353354702266499558030004531312955216230842363176362183892396619960524900788743801073688956372676655234342138631370924957338025714033963421342420093648496972189342646588799957432865912134987255461543791674919809339592392432649525337539672691335932624030797700769858508859654387005163195439514238286268174339438229380949815985446516330399385742878987246001395228955087583382838869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25774320640739584434065354940398755246363127128979711309396913582732074508158328599131909638999255725553507329336374270453364495187594852145252451230702495433989654307466306597120586701660949122174973698264133777079328206581646871022518998649282130866473583078814202947642613007620816771842267522980899505732333784522957216084031625879537295307020750995950121428171573372743659338012320840788476887470920949898325497127001454950834161419846054681306103934048801438004017143453334355739305648549431776665877009897478472595696826766088762268300503922740640931169020124602490420662671002090474253543088816788132043107193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24502836387372078855566191731964713908465511081208479652871947704910420605862339738076640691179169003609163553037123525558976930624079798667990819671857885416367753612075066567691790679209968847628522783587993315009410314237536288873241232798492539353351914992407529342345799673169323640548028045029349268984143326163220781757087872689786006121032137870287828941188499783320007528014142072275023079416238400734540277518719552771394944688150283901436454908432769692424551322917486014266952031990910945857101380906978718976607270688990138010178012418950135296274173764513147147797870733951578945395766320581592794272121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21282960465981188079227179129303185821155713009071299052895386120300764577806595545800896306501451878334286363342526075434025237581805684233537783365364114035154223833666685036337363179216482610650392450386394088836959778010614944519398369288650718600486420864353067307039887404949794361046517893264510354002329423467164109209969145853001361517687692367571864632724652373695390798561352396364546009526610021403163052320153115531196628459974639702001594130149177217586057963065084871093253460695488694606777061457256802919215174966432755978161090436497271663901348022198213920660303437018089036272631465953826053955469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27671620874221824291459652844230318937850262965771160207894359249830266318937454938643720481010989545668760434942830924200959123715047723889116332692739315591944536612990769122334219613600416226542495358195865992435614670809984502148592206038582322379984576297613345114773584173041801805010290143821033930712009707785189717790994512646446848949322463691716881322924270230467762445556813811696738244187402343420832591420912621288477909498160610853939464066830866956191832599892805362612931536294086318573848851391617055067208580284850687727362599826163702194996925392061975408802183126997797831821800089978331646636373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25075397596732116779807099000538291684253794936848685236176518025549996922889670150384190503407875639058884133295695673588742676637461263349670163359232206476460304930748133036257738046596772470540092947141889944851938689744147263643657483181188504282908018301101163759939537710668598236962906395056844190383415047773930980798471479547515525926667693984678613882171611748332634372513019988932323898865478124418304231706035023927344067125563371585829241568785375361534826013862170807724692967558688467241956537933600905925913736626124984360645547884228064792906663907266956025034948758577177610979474074717063042352527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26730136617126221702964822912668335142106636093021054405811165365870782692116058762624231334655669029523459580077296043518577472780261584088459258492125535629496611141029839825869750328639578018241941183667386255664233890547044458306914421834627170296425005214606947048361527014252547181254501157680429308581446978645077368999602912458390532826788339520803701202325611086163585283400160207141840754466140437674669920251253661930991449079889924796877570859582424731497297953317656811533103951286506280166627537546139649811359011757344731124941515979653736724128988687855200484305465041902292822764427001020597570766367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23223615054626273337537067982040761375385330810467894151159860042352559139965817328708403707673578476887973545036255500043466784506939030682291219320442953596330040696769048032594097994257973550332938788437686731852293768635582904511200596982780401804876336746664308053673357146842313467656643497222437373730031030939912879935525548866539995936772518908668116037121032208748602217306524794954674102932750444148699918619237616294385586428500249950085261660566742350189547468609939677601814472064503952865705146261631105132884001711891898941737217630501141825595404117682246939973348786059165091457987929790476560112759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26304974900823476012966098687266924235788096977144227362689876957977042862411253512667000996544891974809295339471970129875706326029271858605626888224140455028992793570889147363798501644966240885465292135151052213664489777794937069107670958425385529447773166264489500773356424062486153972088442508315692934986187976138968888391665822245354582842545118771319909843683298656416626319936293836529149654342463595476346550723693909122879430449469330111366407537559934174028359624907693743736308164725793462958564129135999357103294388170414967245402478164692120055921069450241786497153001891403161901476434210848343367635089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25817065423130676092252025805494921991162564972244736708384220850762288079117497275096365352975906552845780705231186313244941989562756112138400492112982143308582464395016286637153212557296822107947004669015504790195038439258028303531315395000566306015830549341981875645618838232679481023174209093069874253038328959763516577076988018271229834281845224850761440291601949702408825365554458775719362950629058727069013727009807758698916599975424400872079274760997394985621694747013094366448575297470568404317567165460276135905187809187976278506847729453836406502666333579370884062451074328986650533909803880655975306517643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27068353529418465365427750848947787868383680531072788332465223146937419058679499423462768860476989123276687007024209533995139362039507748913877386645834629319513900395436334826084569333322025741252510878315285503825253320239685286869658804259992028042977607579875248396071332707603058272906747452901813504453402128383321585605373987690804473899250643779359125733676988246861608769803341336114352277487010783257541208950828192157450322440982642494589275596618976625619069023442593530455607907035857312530123854320868185059740765309681955656918750493158416129220991556857000317030601845743435803784698484102684527644861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22951562865416489536959350471192001687024858227094174013647090311943819889440659919873548095293548292378271676105223648673787383900657420435442090179615630085586585132336435297339339425758024452560139015236109947705679619236902084324211111516822406954204220698027525299005318419344048329321000014724538831182394582842442074367052433758498967541036535437059817657410879066616121430122783334788251512704349218576057102198708079592584889407338173521589206587184615085947955741004527873465456790120274305014094779861740084111625228323802341750471405224297816773610156413503301629671192485281131663170027367273852570779661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23879996065981921906621592420902672595967779082039311555238233752087051251771423656810740298919143829314737693053853422864433466575965639110532283961800837138173868051275175324802956025846288108362008781199898181388968826334712882105604570943092572421414030366906384024437159284634959501989306112930618840322996951029293562408852396731119678731699634565135126044992028338285367752678437955787252404959007193892020556973251504969003593681061857700301852059608588442316816934264045537191251411632544544822811824391439411747274702321991692395564266110841071659318536200344759601117686043318903665671846507342542517221761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27439136424864417528901027385708660721816242958417775059460492902805161560326238768465125210263281902128650709091368384433431747877762438295704667734379585639811272148631219176683116316466236523446115039623189816640749415070736214576127953104131458816496524464210235474809616821645059275829021973074099148191031973264257728721568629830804409314916416000773264851109494578311342619809031340937368201089837906448514255103287755330947259876315263577606093439950014074552873844833525866834894973412504148843273214158380954689320608920506597182262405878507684979064231655119934768330376306054031675932736113052125518061161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21856705750259972448017342667989423829906317737622771742855919936979603570774861996327823102187183569055863695435811592215721524110836074884862827430692877132232374601827687777154263175767255007140993576302582764251650645345995685582341431049013118915902489988446338617040322807334574133161745258082310814678098221352426231556224049775237160683484355756019324063863016629768061690135606719281871824058639473405388175615402624780150669145453403211911835284623267078799592747028914230099673320698200950210281767916821187260327331493620264288132674767095910543552844186120351875056936801481040145646232690864913880265283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19508105344833251441481140696625357075808606746944207856753640014564890451930679566450006286550430016873697099313176147515456938120258426613979932414149596019738135405419124448015009157386724955402589415678014148535337176134759108177970686876238319946711442263437674951615026788824730025697608054348998327670388097620071654763066054136979577005630568356335180999356695496812821682999136609593983328137017663433885938800122314720780846760125397616396557748793672648826285979865703756167894692974104692288135983102165132676370453049969524469464318319764247892523850329403861488788625061210697294015500412014522217545759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27162479249851419512877741668839442192289289475853941176083442428650640127764645486351639616746825038125566799901018222277642761963095249641208153300522430479078567944703195772946565082696752968610283251942529647507099700720048480222395740842480317053530974857471986433897430133543197747119337889363977595014520873093802982187640816618487887196402678351409970818443640385359295517078140988565661618305985252872954910273391097235706979734025536219161403244560969365462329214568774721025247533355575416417072612514006128348421471997258008145891793797132287355752688100743597798926657236734436179219490023446918869441743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28196992529407049852481372473063978184794478561846684920937932297781758046100300338898972522246115981008692018040517937479536816644027387133066268781659098611992189894533424795741938808541295318594222912100643181526676982755456008067755030212104273965989881245043648396356163154876267533479900444618194833636644196442391187415092496488482267337765509506457378463655136138496155731830552545070968748026962456481142532948734013312572049925523230498693031981592128273897021270683140733619052173071798183382896883318966870456752558314615694898448633190452269734193433227588366307824638039338847267863342516515424048961989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24921420734629682666576700312645980945448747548848245093716305665858693442404870332994202941265548377647881624923688091171244258631178245615447836749167632422034173199736785353455877928133389668249728466799809271582141593101226723187482002674451591322580953790497640838087169747433476441319075035576293443692099239816517646774978285059504279683883107354417702216328565261952145813919191382329124006520793256358535361914562635530427852802638298423605285995511286747274349518392357904145712362805716533077484081245984829673799791219734792704810010213780030298296141332715737829525151235559300916551185488160098535375539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24767192598975609929819171972240558768197930566824089759598300261536400767408887544620273591825753140365264660267222333140706145660108761901656424969380074383704385966754909511584971716044388407069286142379168024482525395654374029065836690597515693192953495108374424577272278596844013890802855529260107689114683378529163560780413752260634821393269237877083878302636788562863632384568823062474752605809297095276786157289819783582725994135828439571546502639666032161090208612186921191904687868196329376124527957948056442327305809763239548599960139951444530104307914358449268420314364024668737181076243435274824196844441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21188015131871987479497942497616903033134483425857126927035901216097877818986745590352578353213669646370701119020862997829045117147904634791661847472804106464050968772043464950862284347685255171372372953487629621940216009160219348942377013107932029096160552134562885840926203678172308861677256093254677600826527644359831016965634285839271810355859389649428786218345753872243585587933086801482554500907495148945284452487046813753006012891069584383098948858230455434213580346144450547374492431525654713343024951215399421032295563288336588146886819685566522527983190109612329338332192221493161770723493578582568583893127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19597661963346435973281538927117452095491583665481331924863853434823508750222370849816403961475299245072700158032016028024135784796102947498891663658752360135603586960702644439665898006866404421762996810410196402844347179537505787931297286551306793191949969601943329941554012357523318962717933003541285485785217967721864807308840511294584414698888162981485953281570933772903217343341463574786924253529471668946790990336588736150803182292668218754379428500210325913191337668163438217621101563173154759546437030431832837368796085175902793980816566413943682361853606354075520326845878215599958950435280662688970791025519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23004762162466712783102268259747095042655640942046652521061969100650514434449144377989586473516693402037514945045874619061049122252240076141699714716815298067896778069857444710514141496238125974644283267020997992076975398200817840651485512786766462273300717190480194490743706226700534815537208520234357529510827777665725971269592884945167356320851853895839073160295022132695857996973005741221777711120874475506782335943875215821240843707010400113149413857092128294335859456937462293594167475085548372079422484165152815596517997577960270071475001365982150507302960615659180481872954433802819374327046926656551940115397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19925527865810094208528151481982402919712975191769299804874332599350314585586086640414392434708937317030024059848468367162777948745861089084027056248347714087379725171229198565683725125553160704537523770787920441235572042932923354235898006962550746109911982913405167074206487676558675637388125724330117066733897741740992641308249045166844710274788689449474422763626146748556165516459369014937350719503427040152415580680909619481825491724459261048080393739845495291142159113152207140932926763545473857195901609972446479028771890118043211448406989290898136610619693472124505737434028951983360814270386062235799911304769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20356230664460068577080157767173173954335330611354612002088602515064138691828124053000203981845162213048027791849157395265237147927393289496168916387474624386734761947206497708738885909409594206001095360618576429517190849291006670633959611771775733877882146319067673732112929977476937041176671720494249434829174134284177911297554162332154672106247655921972968478388454607647872955867589727933626844442445491397649229836329233048532328197629951815821143028109450766500054992828415492119415097015715166430026756596056133268485296338067603461639425337105607219481009147450003969805810540123982609129676730611702738560859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24244178748623767949254680549740995216851571843031140614465635402672835071011377585106061081764581805089194144907242077689141310426642622776454103282157172999450109759179852515793181100685272647583655735202532486118478671504401600892151390888139964909528838578345127499609483387568871584054180548650019354241546714433083080891494006310773988511535212461722041503413449192676820273270340772839675944230405596662344174480828910461625302821797347241127288249686100459018615143558701784689094881116028253854325500264296097643730836919728255585107013201268221661733322620809687837947761719977670688503093293102888652406301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21361803614754251347858651792016038262336671801496579544701499281017091842593858183319291884820777473244429279528264171705932320214373807935586482037503862147055680522494300564327120584528205520357142781941602473828414629959299664008530783202686065555112736111233007167317831292591121935100962394981423660457303926355792912030063414781666637337958486269046441239707487418661309891028072439918101691884553971220229289855031377054296077910050368428460555085996840183069736637949179179217365690052625433977627212625912929472160233325648319276329352772435316548594166302601655078645779192257410696740904569858072818007767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25874619191843967756113307124636432505445863144558385692144296045094454483088744260625044686926279452467406419950437315542578094225890970781631779678202925355001675984701250811611600185871069448304287143330254160462643993937835530043896576385875043439244094255712282291025802193330168109645617150940438224857142261800080337864633258851537004485669157373702094745287815897223928524393167765322107354372116806062502245422336947945300795105289270506663118515630599265528746444712033141526844233202217837848787926655203060342610231157289166615922497016252949045056680860949737948403608803373682294024046392343638052538843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19833933587131052382971140357917307532053635116383180164993272974221645979535103535563803732860896755280232081183515833347683111069485841790617151754972316333434017568909598699797255359632235445364986380588445783348856782398861449878243271118929330282369309457622325926858764482268419095590391934969239602814851477474733702183934459187333202131854848444714061299315894324413619358929745538105866072725855207454781585025355852779957554729601722447026484027717988164553484207374598484878661581056795630090077931417768475387879090922778457526733162883517924736857258559139486325989225811222925297332804869755856582402227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28796235004389699531858393525351886497167049721162678658246138652827931792021051915202776104024447990760320330242030710666271938178578443568637541257850648340988467608897947292632094337103729116841061829618347744803834486934151288754362422057338721828600655124211480476448345851969508123498294085785179722771648091345459258907466900670168932968465001979558947790457029319308031035694138557672387560811830214506757785422091300809463954071446770585429789680612712182105801095017869008964524094924389112462577344037071456316827895839176700699097831711419597591643617446256746665550509728814342556249195338414137583513707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29476298136707422450989000530748060620122088699822125446458668574380655526723272084289097317381641785226981744910859466535810811325237234409896570753291818204757921574468264266950086039253800409419163119437253358864056205044680125795625339399813588216993094110738080620233078760740164844347799677219861769699580238832049267657555401395926418167595616498552943209376601855933471214324763126459749170554304784653870320464144273185724184056821932528724088396766856242347266527364909223722001363897505982933170659505157380728614306561328840723306114371210021524112160031984375139754373848074604114832000608545639888984633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25013275112453403464600239727150553483348706420120680376838715580490435122673745871457023644832674801385992668428469065902899960989691069709341627525501042460909758532658105283390307563207005149982875453576739269837921606136837402261489761642042033417197223336231407062556312419166420599069043346080729514841257560623480392525596796471140447107074753822085439126037047959433921052974635390161328054687797714713445588202597710131947388885673909596579457399655882482918695838094655803658154646394639921206772317327238086517988167690885308990163883621745674367388948512862565072949074227443333466972115133739018065756607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26040748057173672218022091759706243891625944419177566230207992456977366296042829753933683113514753983006021028788598265024103011809731721247394315448544700671157952589908081556355968014005576983154435215264657560044257803276124311325739153756703784776504809860979500760494898132040551029578433536746585460048801705861453189146378472828658731793720308227857928486472367545138643754956673641567659828819086534991523461464742704727339780162089229636595028705125356858485739564429523635573300094611015327028411362352890388864853026178707205333501999237879710610583625714920998626017531733074600059611428486663852404468877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28422707182768119570952777603122951984021216407045423060317860172515043822007499944194376785034978551702671527186509452373955706024746759247588402307051923212827391684824158129538489350471567682364846186458116698325772780980377647688860833803560078234762966882254841003524385033225176527496786935614224984275815111703288325777225784571516999214286802872556049488390571969084503792053859221481745273969835768776981315276899583115371344186346856408166442766395304703619219209569493182988004061328162707368661917355161687630294366306671182067072487219306123913850007452095859352703473735755514905810660917003631197524013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28445597592177437192192450287212451725411299575583198474316354233968241673224383687528314170277505615956479499084100653378649802844910521756745060125546526582681544612461312217280838136268006278103721952226365520056532409700668359038681754850668277720659176185310520510864651496705945656801248195832256233622559334766188386510260151510023917067770379803515155068993344992185785491696467428831725704227995279436365560193285086965726357084030254580517012578596613299878161642733451493145827530763097540714293319061179573860825689872352121859389850509679889409759019799135397637146230865890659059330235362071465913053451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27481611566682401479301315370958728348261480128581896420189466538733444848173891341241530499243806117380393131423653793451576008320271007217998957190313789697595128037673491370103813820511678733078873510715587821925204023945822643369734318250884796936418397369313926193628555178511033763226480536307339406512055545080566424577756299208613185165253972342732437391947203411786097312076229432648569993160802336753474510858963263703413164808946944518392645789414624623127877213286155555790173269343191634326667178219913568221424475158921702027548227517705543082307249924638801064000902637851782740443585079512355403285993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23090576780312143472225041655222222178771191431877475007233944599279649812342366717886105229637184494205894818760050045694001047221778456189444935387644490921112424550760169203246142451468335957284168759056627960709783706494876593037510298956136462041964714629052665056944596296282229506762417858592606284669338137888800528178203999634244666832925350696972171444159977467429201112429314148779183547658649223417935329920607008996592278082699318760564229846342309395213120300683074221179897389180391654606610402194815461455719141792833061034364976770831532187089538892272445811996737215014815434685507066471657307290867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21770586084380377027612122672351411000181089054887414228209930429567880462400383566574505539078934997875399253616362788717947838646086600804894393245181370239943996636276019511263130856417399453809819821272263989313036118368878563626781167853316148693251381493341115716604254015775238400086117735447785534960700807658376750007479218172657581043393433017823496132056881610313849732356014172049881733523415149549006373003232354694844600599916021135503138074707397808797083177881601229193709747690103044067853963933170749939760334637424030171361078740749346527990569750272056951239352733077871871011296321711825669057279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19270904399325331300540710291400424980863040652175577508381397081499391332477713577353328104311647696838770083959343363089366467344066191906345321685540626276694557063654654180374324510862735758557703907902558620730498409603446999356358404773233879597353233915564125940568423237231009989580532678311227119376231826899418192634916660364716422681190916377106605383848930187614817929240992791548311742360466273795100142665112731400948214554951223900168064944824779898704147355256872765032958271936745028385173281874431495752360831950263082512498311108160640116457333678118398327825186018966430410157450419531025439366369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22643340840127176278757320043584084909132330982760905247302882132253148778439789073703115005348234644913040741032164221432787473993890115828326712173944955412390134961749686270487691332614382057645529864396248146741235716419330246250552455840739580281010252980779263739400316831394680147030685168356734094057428622089483964671451443290969730133870627109818805573696456078079802687436671247192695711013654089897629292386910134395891196100189564796088430433634332720850085934445430530613895541304813244205315130709687912096581961131616462587460018679224147963505997642725218304145615423366387739375220216023313035165343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27349768050015859865012397179944446600602798022080046889389765153675605551538244420598622862491175897795570278169195422604857054015562083253230419511621063833186281398080733879040108342610086229429286474185108017895003040993422239186348334565143917250302492169316120741549209966505914011406885291082869788783497387313734149963098187264812902812130428277717940685968528803395906319319165749837413702798273612037933965912392605811807719699934336054165643417391909269681002777317642703803259095401808135327917891442373225797396617268150012626953422935318372183169907658385729502132024473792631597190806313712479695839707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19964200776386016259578824790547988451702681617904314979013409714842632629962621048610495699182156016152872177436159377656562923797540538357344412062311094334975765758432537598375855464937910358936114872748978089798735397783566731358448296085895809198613332245218951274130495254885728737145315178707916508468758196740294525063693548429906287174539677994594056319960726236896091750215169326481244836820369845418668438501370396655434327812136953279137465240018535599565042474806006397653061044497225520451618808093361883974166071319954819153195288804064377578391670121153472512391495743486369696705624579556065786981753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24848970581688372675567797532641357788230394620882858154393588992823028906062944988702593287317673693540141920417329042966718408582861869341715655854608081418174162758261066011215118246898970318427721070086520863291437818735496627636138604827133792782092521320068361064150489310142413166286350820629766235505940104456529050332212330442160577986547142929302510332906745783657629851668369176022752789535116829479341860279146361925366076837325443823819907752925591493520492083185278797974426319837802743037110231380289931479078438978728793364453938533760326226274881637747578765921849762874594851809207701729287745378291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20425497002624002870564345796231595463339503198082500927725014707192440500421294378082854066393577528074918817710339096356268253616372113274492537514190598948297999228200219321213957510784010591108372880139751621309519101448166108222708657949399452890961480208717213148016907420612822292637873458249491578812518972568524253131190679294679107083969127534259666703514359455815331071673971706324427405927273664511642003139227198205118678812131681829672041394911081413807884746504287353610643534851019996597465563502810350255764309169822190394046030836395230277765402004421964494092237513633038018900112276304288093575351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25525518864645110075174440135905735036578941259628077971796965305253416821222381369128874399211286341888880293293599623358472445972093043500255219611510979398892125518938783325399091119383657293835309227362888277668546880705074416701895334657780640860034512388239366025374803274010947343588642204471917772018754651646357105133893651107302632601079239842308494833220494555851360712211032251402090418771097238021636759903590523036618868229038840488617307032913620000472879214665392173083303703291795787803878681169116007129672858710566701414674959984684190260917426000401738418921974791651010246514623713848397848920689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21142372277529373254288523707689677096697619161189462515887677281419414148712238009451704086877927053007520904873068401099366752397810596852552693537353686224997920586365302751305867741811483601018056550350494669656327073453584175471942351273419804487527509104674741069045356118303498415073945561704439709237794899096874822505268542370003566464234469780337903026629967942027394840418874160828571312206790038387290319802208637887163107038652882138915228695375252435249850284370727073785102742772896702175622193847261291007461235941739030576839984865458200278835429379657730115664050691025693670084810893560141607768519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23688673200356197713707845194185320441312961411205482143094122978512809149029928232170945724579374169711679429481691198215507851118700013250512373907494144840671149967956628208823021032212358902318171844943226547457670690253992677489626198245469027316788773146500229135762491195927147019157860182087864920568869490868361598079391046142813873932811736324962539554898347531868450840411535669970802792305226347375753290084746104506711495619793731872305331297201194490206499247617070829228228515784083844763263963437430280795577757510652335502343123460899294099959753587273121837398475397921860111804666079438486076658471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23651742121740742730129723372746294851861572334586673362654353095688394148197969208126466505547067100277283418193795687396061406172088736407655565616111829801757439089804062587330102097271578839719202338070621539299929079143691974577875739748928954003124320560631081813743681872382938932069115420938719283008502400448083602899325777322953207272693732565413731603889988243101876487614108088739506003347555962562836099821525705976039139287565399735945286864683786458665881028413264767516543920857572231670279268026831629340610092732899046530785294510103669632145025276198241932423846458001164231082024149585649837107613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26210843665094539085259979471691698120874634213345980744021992180971525627567592222726357214780287146301119701102450165306682794204750417429569148374792233725140559967644561654875713427699436831671691405918731242539692200226693543136265958586032790756488484998262616726146467703678497228540640631283784598288309429724959116335860651253224821813823120792375814422571381730333931059151620203191726373979239339818388426710767046581604240829311762586845959320808350095927178906586727925022111042811713014115261313333304415328365800874897409077239493891868523085220863238071542600320906406423116662527320467566263495145009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21060629756385507739086285873083566425340424699626355267214266243038040909493306023625392696721970475671585695806215381377649279090434099139410564186866891005349719640433699870147954085822263681508114743045467980250574574529973589462630893264386559169258384799138473963215940015058662243960524773620971762731921678527107033729080481268569457137600305356047597161115307999719830237304317683669154849768412406705369998379201321639138028400742850419825387238006419474699767494883061960194485483146406056476351126200430380468638331133410442353633481227096924812842474104743741314717255181024284809162127245355482756270033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24958376023095934592037769444290076950194285646343758690727516268250543655494779923762696405696264365145539577356523112146318894093529883505984499358625695442380856053684343647359033803255252869173164228460075248587658714943552597148442148239165345646298637347846937236120032462826966486744575719173818504301265604535921233289449520436198297498712039102062195191462501511076761885291647819263967820955516080297079588769025084353590293573961300569759707993739065725869013396048923352619014707172661503975836371366016938778319534260542615466868002195331939762939425551378938120473721417778087009112871618836630498369973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27898927964702272537165619489648647815068818357493592693157702706786272763653853509952021880893447099740738652604568269002425403059250347268187683579772511868932828601807810921367238646082044541239664392106145258941360448313572335800734676973919952503871552867558493225636905236594589180583415322869885716516162550492712384257706530320009097580180019906438515707059896756092890401634329088057533592926812710448567837187091589977254627270819789159577876145039223291595167157145773983689351913544379196834222677822582323046950118040038471599153371011388171525486529087941700936946981116395590463914334050247027722437947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30695450181192436014766293419562024873778697831305967154215856491173116936621143578575906238749479811840497536647347858274876104124582231322955061838223368941200800143584986632989612054512026748203986097589669774812895249151584207077232330142998621760373006053110209933975699451055242074862577715018035663880962397619927151732421684780230026736207574096412635395930650219661936444310470231332582824371965907947270649965295932715923752822587605275819449682518435816279923867784000327506373109362513435392334570454650819812706345933014166333557922540510987145708923684714560745975308075501684659741028007124003860697293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24683613104936370792154160042420063176920443937919505363055454521279661911290621445812264276405115374177550603539006844871234842330380565927311024919192352160413713630017253419986863006976622324571955635885293723658580937973342140506397020866622355992023897782134364542011253875278116472462403062668195253974357963986964305554870271253301255540421839873735024481542346641464738333296491850898754199175823797051774265684256934474549172960739825508805768128323598966642775407999234555058719664867669823557451554052760054448377233182396236950842591753653787424210840446799430959166723533259575760171855998378520983763453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24940265918540523334338822411119587303484405635628024772361269973400709301966754043800310176150886463557841775080337655061290773225358285346532784840526575984267968149124254756324556426192054216131998300289121400962852775554311228428969593331884628498142361432859778247388540503290857034128738411948730947646397409562565142718399295072900474223444138723505096735366506008752285035385965830781199645305224260405811450803773487203762094516419631599630354592953108266729572428251752289986189194942174252152981934615880204024680733500939247057892839171616341730773689318506541015538909843404700374097641868665758583662699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26743626425386649081757899559007857038779137228298261215613990120525977385490774911888377644667624829737744661670319651344730070927938248486194381652228763555596767049759383329523787840320520218087320258058936427298578725120388532700118888489709640922546904775694301089780968768620727917346774640276745465659922996851533085023757216262790132510306409464205968125894371765727321873365574713300741945309570534082675412605636785566405766985110082421748718781780643269775001459496411409312700006250368452038218574477751141646998519492093710058352327020118622265799305461994053775435071498712407763380859849723996199476641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23997502795220118216345423634320309073032672735705487547129912809813138673156750039467762176873035430019502465223081202288661634547401575799479791691266459927472494925200957921370610317319907081115606015940557458861120847363595261093891881519123076818996977606105833808378546135510059723879699070346573132887883920568128104119820906285499950202501158816106167435642241006504155021556113847808346693208159747478779785122915700839870675878278476072045808266507550566348479559639662359879907740856982162992782738914254562613470760168706529007293032716294111931819657291969798587146774360067727078163303818215285161524151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21998357701653253498078275043175827918411468769896013296157734628627916255271573030208301090367103225803377468741193777207311417231072920356560193556233958998189190899726266564996154091519883017431016296833810103190447096478757353226152814955544725838819113342982069853685567922071799571701982853727513110896622679675986319374279600292040714320236768824951671332145179629772891967832958387314098497692710483880515073429441741942545685968160374369612163177233320287119071146038902287399840271951061535015352100641275695304295059156251735642305658302655734508751136609186409438320251490006386839835735416340312486459843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25189699381527383328398229796820604927143849072123796960791307490694733919235169359824127274373929146367220012639008654018451065535554626841877683983644040472437523884525032582463767737367496586078778089938636876975798348607043508448864048610537365028319735803684280810138677849209377173186590527369081960673979943524737960200102073942502872726292505585113778367878795527173267550603924721816034304208706330278181498613512860458717307234410783225581573813058119872231659895623115513080188282898787498538771586901730610356805731871871721501168581465714317706530748295622056324042628538289535458563202748421120237884969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22490916970087401040361823848488546601723405798105301878831724095217238041774225965779526728952901975361745000361719099945896650761645969747765205527750462316610999689469653189970049749804424157333708677142011642385466030459403448257623881144251687034161042860530526763358084448629129374171621980617239261416965547867082107487586298397598949305422712716880440127977472230901094485457549375400097784334695009531019953189468657681449209135256410766126943531390430650422413537236151310313128720187487728772798565034202533950329442903826689271032068644574927879212255825866300167501575275576179113488279749560367384817599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21637046183432685773592003385214611675420926426683812119819847429465627618787634704640927426085775916022037497116217744782673871765314761730199747230079316499581949600120951670933040546062686289078370080964558060866563503670049857436040742944397236627214520400948038254971662487439690737921798000299598077043316771035080482631370731540492890125835262380852684132799648537281529356810423616479233626683072171490260896571047888923658318008539653019662406417593051256870207794241346282025144026615507139185737484864696163901423398543053525572428662179795519222880374612242332764381639551746897201524725804406532236040293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24526540601650449934580085931699255201246296190729913063963308595567247041497587810669384647963763049045507349243732578636256524655495462422841167098421480508335354612711508018098081823771049611849640084836811665566876250090364693433228837413218096197398674286674306654454829477117583167618888369703971952412167888056657851606724517612434882907677454364318680105834149942163819232878918881461221797140440943652309767543342088547775012355172807077885920748968582022938798168195869926835574368674268297359977947299149322069184396469776126400164085008843247680959116435187146251857072321917200887789989653408475254088649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28459352288075065943526001295628140353153137950448161990016693426050141216628746401555907340362966498925367405489175498328841242146710833986576500718928394607570574102473459591926350190790577871338615214223879245934330076516480971705252183890946617205281199078456500830568462912230336415756598994010075988053320847751264178301062069405782065870966356553481342220005001823199946917144780554754184808583227868787342213313261084803991293219984707083829330916696824920210451664458210442253246087113620610133108525057876399031396008372921848078246743581925173505033932951785519450046189161804119426738707726933487073594971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25106816432707264661564814232758045229096113512215280499322490191147873670775838448692639423246379141395761614435160022795025659093182697328261142707672832667828861503347212397330588674996669268608695945681348605439840583218944179097447102152268872056536227799249332701936996398787020405562431872877368303567877262100864096578469795906084901154110769841170299651689771661810358789371493237860866102830699124815555846568221403587167522653269941916790767961006132707796764867913226541126734091761301171949458774385643144272048171564301204412770801309857252400554553582743902579041708908548573770428866280116137513666447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25095050493775003047996264849553626552393170652523703816125055253327523607162634879552607471607393367878497102111139181961515241667591531769459796494829604828027538277884620151038200565095430290784543562500161235226079446040675928246196917294189861653399160981854120524981696446445106823316175393552920743294760712202728598258518935337548846813671784592958352305551644943278499134570193876458870082164604512306772990806145030522775682437756309436555581470141430664424691558220763393878042574521184150984609379248417894024487989989868144734563658642690570441337009958241391059626284793103953544934936860628358307544619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28339764542101916409270001633211348819688257353895890343782285866874087889684904425578242533015149422522125440479496474544350263842153062329371910110338258623343409760565552860674255601819663155187516850517990691733047019979916876541941471274058097540939266461618789366758215908990237900644691925380508543486847538545847047310528642239523899198535228937916727305913141555358155732241932759296107152218675799597838708208958710576940318717330756168023947937463813404710531933867242091061358706566797072580738267997257897498382200823054809528541650024974770611342910948949863062102843672154404175781899938990553309514533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27667101935157687839320617022558632299203303147327007228082382598209346562515432004910049285089825127860411976398572568160423147300341774544737562695651635281990629441179020034267391924291436036204317635010715080286853383711671883705135430587840139552299919039011313954029670116734465134271442814052604995629746616471800151979293317508615425440287103599216031278235926639958942898846209817703837806086891652902312231949660976730038006228845660735336713438497646407321249716952510789597360739554215002798613424947151137365661209478509225095729877607503328094513451321726068368205908880520125552721815369973517609701757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27417978920090362174869550764296371034947383798846129017024702265453538301727427171825986350384943161802967351133246442341752049893073156251452407256806969584314409086118943076005342022215958921137380351222098517176047855477267340479837687422542228592248814802529443537833725986477083605082478174882653724868233397462673005342204362358471719391437900081424500147280509493798531029650921512632953362717410730741297493132919410768713364496468778637448333372980846977914497297078509218772304658334186425285816323844276933822149562195013296861848787057057916556544266667482934062849687400738426232321673806405968204956603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28650286123207163267237327170176097726263087529468394148617658434856328745087342004938558496759316003928311020817816691209873997237326316979128341588608003026834751002388385804471887905340812279143243983049247978575621958942569058931983771677086555076074319826105085531934782806703756194381100431043995386662584056005060935301965426815473213936368776544896670883964347523997076225681997755951249257593634674559986597069770581072324549518915794150279624111078990793614168248632200110606312124271416196064533132095264806117552245623821781478171063154043579376398283303184614277146960436262013272795147558729339654890747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22488801387791453690932855231467292252387074427236762815135127871514854135943399319722449915126628548917246129095101974553371439875123462307995379395568382613353229506090432791751847367175712857769046844314900768165053182787482619289089252164210969504198608116805721635673638100122014130384214383935295440884230557139066031477481447830869993061424510090371723864045823120306318684204146657746669127515439075481266967139399256373678608769932045671726072219466251372872269294874507295775373306022205943168644760645383333157503730649160234795328344017942279628375739399800398781843987405849554702060204795480574415176851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18628500026539948031333791789968782401166937811681780564887626106712041222728681689146425730281952578357736550258177118057949562586020471232565790771192948155443269807435656476638438089125589299252788180570939894201191535682542521161635464480494659882604918274973253696653100175889053632349403491886572058525450370894282742006698036084961290280734965808117309630213329043201782054794849241475386571231569110977714880025085330935682543529278584815251039800478948064310197311003547989648775784670171563074249154618324213453835389635878210291190582396764106752071178803963685379146707621485047828994044047623736243494209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28429451549276610578400270162108189547192065509827162020306038115510511910574307696626271465108144246202792640620780666261245700434990282598484360694403292540204813000904865517382639388672693931513102358391685657487237325174400839058764103205609494870754286168184971095944301668800353774577583342942878210469740672779000158811540611837284561140804325544095961293987433969377729564367926473719697803784305829063232374306869896036890337510631378908191146167243836707024153136256696199331973443448764535527566144079984547495818662188888982615645027121998646243649909491946897486876896447499393777285408194244454062987837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23690705818329532898168951073407066813954266130183217618631827839222956777708661785035754014855985500098639715132349592216928986579851579701432654235105901231476917005535504667449039076749075312401538399396428356081824841996008626163484556189487814747006519708291090011638670035025871120751365006831826502351594838570236865447075718045947342410008872578680876010480234321764726802229216347761899477711312631237726849389556279855964173320330238423893376926171676005224093982689587871345198569779997999330463376875104092800434461494455940279934842679573887275251988133197397462291885778809363371877191251881019093944817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26905497196801699928175932574535085995516069028818486203534957662007498013966878225429799689876099943970434477363282749600558843580792560027004546168712741818449789639948264854872351732519357044720151529165639684064284954058225875213918720083007729754160222541224846677388666419986885042151089061396918160568819824372546109978767182412660416383298355477343428596132102168226164271871362876744283232716873964636969733585833067676295889021290545105271605565321396033546437649143999812879626155913046678367458006457581827993338119728817675484335376341853539905684025081869296192691865890600227816915967965719208584650133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27545919199504667748921055171599506105663130359948763040649229787955753121209759874441610252784216949993686895307068007275082781591413911538229258342673724988695366948164074214697495306035449156467265037666041497926174544355593582384977666478361494180239407851645500697839691781463670538882604412734191964643257326471404116968266318537939055900294390753977297933585554387858460923040641957779838519964449932184845391615855183225333710537727487851197750855114409729886377392857965819685773074883499501383557194841105603213167453210491253750693963251300557147377284855443346511896537119573083672227991643697762626739617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19420333121837575482765756076115798633922526879103023532275942037796789852174988276825624231530815212262482641357663776820629186319611155029464351639526882712623216237526418703443469093027398217946811101615378110917424549946218204256388181459014895885544029331496939944412544548471307396544637933023508066144952290497622271825545970056949742803532612472869704187016054237520874773281103667188869632979634186061371129166806952974847449201762097663092472236393875476576645639278329884563983857173310480070411877340128008658320256007649517238229067656660351469104656749542632737632355633430291249790307557767082878371493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21657495164089346343105565943068346749042933894712264342656487969245546006430086115152341166307205131567966718562428374283599879632965811928358456242465923328946447057599117119564652484011639385430082554444578473884397892581679382453824337081189482961005249738961962762493437450277249366207549094638781857477597236374299256389578146194296994451837515526338660915301857854195999718597600755028813536769587600947901258452380715876896664758261030599402201863043733736399180099056002875434757899917045272684928823213943044055547518919868526761960911660079392123804007662989039886274986537481498198612202967767672867289599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23568711499011972624398234478069643483149867202803485716513115485573213538674358456050804051236213924474471922025060386432252150308939057176334261704696581878611358541977581862054600414917734081525638880710024246034382067786212585351257903579906700444443033598087131445053270841189624843614938102297947803616565850345868583550192291320630574298656498318939179890143481998319326682038970229441275378415950640698218317688026982366697593742253071562713510997642304455939211520244718739532999320474769626134604327764097591315900358148001384017296628231304317351165541921722050509012443600030470873126560788518873281060449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23381128766110709913528426568616313157288780502815747197352603258575292082796499758125323735000225653920489519092161387168795890119317328073105339175865441382082471802890146680943874067039259413925254548221427100450119642269289190923778735240845151593467527929991892854822965760810893992997974519198457568056538961731090970426187302278908956393412332802846336781157184348371554583812692621672586176469161420263133702067864174430958810973705112096021671769310296473880307810827322720088059400516650771306035452331250179317086741859665109151032694800421752480806066557901605932264342556834917874252246689591971191644831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26393194276515554458262573416401705233604880599167538092270075566065986837894174604285737369090547674100170732880941412817294154732481369442421889662302068582792018186455296022633520417318081828799649581221839835200921301731807073561470358591680682635403774642521867393525531925868815643249164282210165283433253447908028131972942710790204508272228920396932754836057417057053470760362646912360997554708581968339097895311268550086558330496524980692368655101878946814149429247649459638301179484542974674276990890674444718823733472668198174418472994587147823792177525686090167802960040684943554383336686460741745563623307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23454056964414030550842984455742935472227360758911177752959017985068402799024176554972672009986393067784757605205157796568775236629038310563524196067685936273976249795408351350711534074617075536299150465133579646691894462797273590540823492861653815002010637714663380819328520812472984990089925789764374301047838741390291433296406390480933728227615203521106371721401969633763776670310279396215622056523742207289988335640538898071202900674447349524851008493016476459974408332919163458920184247122436304860856275510404361918961139155284768031669912355796323816583933674787539215651435137065667844646686974487493830809871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27112206976435756178799019491777345419510481065216250414482189541391893046024213925396689584779768197225942367191734342184496827388807233450909650411009054939282732847383800376781076911286779515298298641389041640349437698814389063331334002609681119215983966268527683928405033516084758924241294436761900669392559289126496544436877380404575407082620511165549681697992115191161820643435671249467101792008626830604371150069115336685354805694439433034201641797601832536186786382670355508922859497631368039032325364321110042727512891908855877053865238728355086698639219772255823756126803873196213982234464215348861221355833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22498116043161230897252575215076511363225709277937102269205692618782527491467358448711826533540972667134199450741165392345829864285297567404579406410675874026687637737069108403461100519345496277028806057009272361287671657400623715090393250870612401794091868899817036397151906114382589331182066329605958519817683226775790092966594500937997316690946489697965627078628685993690499869275708098389779305721882806304003711127922481121666109550506864316611923732346639256859048335927277921785099103888212131257152305951963829328936640576308662547105844135688031292902879468436613859191188231152664369209096260161896688442333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25542832163593449733576872301241247817106484569328729300092437400211200603004587796120782557975384715946168613693985649669302945446016198683460675129759032154402357983048995221714236074347914612519388328132058225624577549054302802914986637382084593168191399109618782655578144302357622022368225080601672962522646441533155323769130013149633339836047189537626809225485975406313528345310678628989112142824099005432602317069648524636430114892543329822594874039580483569612048867197896899067702172979812074297860783233421780611357382942014251666458292718547731981018808499701102732934048458403097049207229293799039382728379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21805788980038358991804093207845929344309201668638333447705268739955984820446713571405552329726634162961981529026116392122985214230369184896168761227420106406251721293441186441958658805829390448300671199072683008497081315564830347327231265495498013652899770631379547224524612893581924726818475163897206526690399991392609813305301506839756226958720132746670236948581820976719267801410419115601532950526752813460527308154917799818299278278139011109106498624968683717091284311184718902841541552342481704010176868818402755831596017562369524159842193414493701007207002603801209098749600715118881776687773672889798270901483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23677694205150301402789405203019180750693135904622837706421602443259264676686713788701360220818946962131375673105571268378897479386420231584345406960619667604671084273537232016174227093492582301920765834700592944173214796499697072075736899157503930605144281118162623904017921254960506409822571396544448534882118442134570785136827649656290300609620220838677004580996453183684463816358856347836280792412667140016703397815250484480327787960451799193537891558092680606435024237833500431841528236017530356124822706218486299286915164133514386524076840966151898836184671129226590420261240482826419709082101657392146597347989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28692972453107051113961166144658895762345870246612187819382968839418552383664505260111419417861461664884309955787804876083273963512140686762373282207483622909835040318919277757573094028390467904214870637290139914312993565893482383167661166923942215783223934395606914740043261878090988457311768445766602446068280856061541115407494616288590457895400803694436337212395845793632148359886237392455870421405360258093777676153075932454485289712894327521334636981421998456038015866990047821186999009526400240633156839644988798422383675820673659027286402186563566117012892509142441317935261380635631358347862343337277435541081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21761762560526723075360765767961583823528527960146886676098964292727842304278346797874201173237170201447546323541162877273802926599963853194586053869764683659650703004923472069656861200965813505955438860409540590278008195995201400767187561038979792465094833660156761607418026574110794918065544585362416964746565766549685722714960307249251489075267365068876680631774426158833030838267875141955874514328746124694549971533912056977241279138300199126026176192199230641394519943878244179169442783379588367490494050646583724759137346797010241010959297886500126709344023072768376230357217889764449845130948309025966473688173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25068150180687371792079454380378605623055529907247347371780241220182068682658287985703089289721460769022901494801067616839343748887580162894893965235695511376029486081109829548713472932688448084526823106657476927568213374665667004612971425969158669836320393722831782339718850048466909772445281542099395874081977619953842807129525040453998631835177726852156106099366085494052572170532201513160605661874286245060264792749170513596947963327587590288012752806909398478195448667323737975261151967882430105548205535993604111064636883930500770437606994892475841936420596999592990260894817573466860979893286382199211188407001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27646866753231400041734324896742971533436094623761546316645152700571947249336277977153074872391213901250924658540018401774289031640679537656110389125961925637675113129784156193550643809246493293339260308698257510781366933568906976148015300445790815288775473152631695786138045588908894876977955921611315016827818952548541346040914058552341346133698811591095922898808845202772216024189467674955159739631156022611491604399241073652248440036024757825190287198121485597484426320797373828845365583428756895111259228418283785191734187076525552826536008002507855975656540541353086130582326717213911550945772945453518984057717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20683215899366380903175728377161679341999013476683139159058934053656956399224443458330501406705437352358179833717953314909728890330087513126486145139842703831126210193808035924058989024146219228277399192706804310003479998197427431965896906463202096558480872525551105933760245581739891623641467003458100157239953982271254025017591027581142997858933385712263888749578521662455884904546027573057466630430371026632214407212529983070377577669602086448297658323313827719575592401166524707345306222822076706214415623087041773269334146471807164596990267190582960576293182963777466351843882089278020631404839043542478111927597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28242125157142703208419428187378552714680275541860427848005596912795745208042568261172026905408912432275131339293186708251362610489704720370024367295932204989841157271237412932598866029755230746690952525778616522012104401472652675040165014279752573534413013011446683046673170561366738972762505723330791220027724412096692092659962198412617755720043647555222026760342012714442434765250798730965062160653622146937273422856306695494685681180463321075151750003793872265894266302056705933815673529289317895776259201603841147035121293139541295221695845923665111754042693165032874368239588030913336139581125663435761057889877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19921149900913760416323633368596794849873228731351168665290432861204099697980218131739914039538022075659357864574713460445207388143913527499242081304694023844775544988377786179041254004264353331639193403326910755478738556011001902357710770075042670079590272822253745022990221483683457560367139293927301916593025290943552104337582373708748812615537112602690869709162605841719911035553579407334961323069124420209849187430883063759947027112809512458612579783076526425902672701387964843209396015115185497471731274858619559729299063491383606839534681859231317913678484945566511722484274345204437720737746031175289600326003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25366237007235798985088063648810779494120263194751535874681580708748017095157313755737285232342209315892329141108420696514821888629774430417486427362008594274576014066494488507087177394349750945442247419576700990430315070660719827362113955602128615479682779280905468477365616008438644791762464956391331340530332820205168991791908775132967051219687884200772956374959982918394856991838406014437802293100370266939873324746322011116282461075969537114779636818798425428587885147167665693304135393460847062016941946513876826293922575516617583189920921558724041472679291033843288098853727499056428678848941162194450245945961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23348094844531772992315255929563752959928198245904806615115162602427506931365922699288980323371739188435848570454059786017867375743670168528818232075269895771722908715680673610740515121975803246248057594627066873491001325191583543255876336660931138207444261670282791014196847750102492203548517301635547907083975005685094731054227568566624710201469836846135358580575423155507295035694077538797535342190701650628164258007631673489561236336522761531619725167628635335363309465706424244406234987878666483395521642037257079493063480862822482927459623345735106489005635942662787457195145503186606890290796247900538802927739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31526109251149601367985853584656953924836014216646197277773307380410812499206977851618011380765204758145922552107029458544037759402253216662232541638542412064962495070477238652572384609723444274339410683151977634173433406895039465340746393985466319229195043771089353943323965615601065115739515169733197561775379363704943763567824250414730723092319339521614727680501851630568344457958001240490625929961998088969611716975837872269008802962555994577556361574274763042821533245518717518713456232840214048273319939696687926743452751704036927547748611574899323555442031124672738151430533155445454284055665073430570344533329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25632491898374528958384377584791761855815535705187749113140620468890305482905127973837554379289368480819717493109093335337989492407049352707956135810547924404808223994995869765981571665515428012548033760008511743177405843332211952023315129865154814664259102881296433664781756300436893668300284536226852559259004268129005416668296769944700313604791455711313039750568849108253342855340004284383761607347236893349983100147445084306940817535405742581853479941907930916650266106821585649137865371482219834580726892080966724579929053444699285603109052928835058114182100977497496376017562305927702178366288549983178553162299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26398278730482023509234971076504180661909611435820758097222558080645482428662177654796186508027738915899533560411748442613122451316361181893910829786767924036502711219294885977329571403545893563386235356930116446160964337292495054636499503754998108196931083955867141590752229297349416604641424142046475631903361398636602050882713483277724969025352152090998844758144282556277807024900469664923497418343723141175310288027198538938010896180951228230969059917000461570963225437140690951220705296956539276184243576220976756897864156200860946320686433991529249274151508449135556447785051096395770184195374685229439784848321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25014808116051997324320984296286040079302481961662854503007532773881323362881428998038077370610412958945445526670887815404511439667952847303227668541745332318106888284725226490781676079834211094760944451386100918777166017194356895847547587140988342299618874518486789552716882223763600611158967690823252366101982951274087764022763071951504364036968197362870963204767170399016686707541356327451499375251370391554829453860466197351039900769154391636300851762077957729963992061925903240284118889811803679335956775470263231691256206412820326704037017600690473439738251001534072395000414220609933194396000737132498638874971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28697243741119707923592750530056724997385025658103142174153555616507852212855869656246977522130926899705732242725877119579912968747709056356060651569758018452058926887274075032458559953699320723853261607001987068182206346286753908319691961043688900173974407631990508023918206524219742926246176756915265084038953333808197956205543313453061817667397795479701835410980283501305516928341687997369398741182904229241690381039291881387355735334472483572927410002533347398019808737509919670771746195732449286399716212739056777943428096206922060547666274872936610217560658069527800259983886970081217637676926625996819589755101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30653779322113423707150173683660555292792727413883229600809225018517894375825251863415295664896328704069734236381484993046717173975334984989789530361034666475293450919488671368550628319022907576089620984400589495826262709585689975699487355377116842361730826884765614191224372724013378294029036996398038942086695841800769467341583821725782470702745044759986310399018176357640459164439164164862751790557907119608823095001757056085339591374478338129262253209450108939679140033849605360642120446439527040913717069604193872839943845853348617760551241012588441828163600697871972008880209341169025245276275341103598247323651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23558578713042690453836180493854114585090177089762310885150127048945666090194208306499987400540668249067596352462317973493680420190994542529316175710749575098131284088725296818491291893137032497375506430542885766108313714158803805827176369833530202161544566806391936876830348439095507193519779764683143098596372556631205358973480757347121979339717920075609551477567004320016063480046636476899015825034940745180943448571669499355265173495586181618662058956163308555764469126540014813229544024709097738443896909022154792911011287392079821413777965970547199124495478301582579825467007079013834181859288520921838349947691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27774014469644957093141233698800688736440076512452182649681943496491963529012665519604615280812710963773028577349125996547685986168786568808649629420058063139513797571406028358133394621771530564854214796572897079709951424200248315203658125026115963911585538820289927220977953693992756954743174096469919857640710921399571500676722147221632245251775404461458358184715754728935555069756733977741701025411137192220025493266021555736499004999156449183061924157458264486033132427640497077989041713486760958006571313981220999292758045352076980924788585138242248013322461256990314103743089671773564636627281300500041752668403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25110903961567281059544850833716363377591204705926953167455754851218683301732776904707691292826824399674215413326517459028042932192710448145084308929982372050173058096554068145704856224212940664359299913911089807541074109552711439628927499103642570020160988277566272926534313643960726660501292547084194987887605735109277023229406294285096347846576652726519220849328546585671797717453602801384831594724067146248407638348503734950844652585904117881949706480207906883765048207726675062940494399491331955013378270947259712705774197201947537319001585133775664157443474935921845832443969025181229998661404248729962985952937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27491045876615506692704813668329048123691374705180029210278311144302994462953720724731884713302122737119589425399041893474466666825357882651794818436435115847131148065443068990580229048061067456622080880108745698636330711249012824761038210374388746634386938627737088237867329762861426795142976226497629965263682847691830238489140426907453197716850815347900954305728645128201476134745057027763312547454062174526863430254540407657115423482182310427508592188314628724614728909407544950360713258036279009076788410683209837558063349202949988852069040532284739167183917416995782065177541312247104419523150861085693186620991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20344801802954372706230246768274516721829199148861935913656624637543800242560158466817550556761046801935697472115577333298299259702572982699603614051351313552093670881484304569370488747607311570122240679595436777750852741252511395734231780601003526737270010687986704600640932849708065155394944515315804258266300530462547180204316605997140105591452734903935692972753939280125989245558132103048660198617608673670824701176464532153355865558978008405807398737479661427314670562418657415446066407214154403362765404460417123320875925539743068507824689879450932831057286705369760841256643028769260068182810564334672448689923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25511288984235252050018842720628695457213630710469901473201699343072528837966503951182518313388254832655221257651644917722422669724815504788882790847122066618248794787534938645261442002078505946632053480137936950555625070773784873862199559610300619824838799697747120857226984457235926991994954760043228068414421578290010342496036803299115325666889651819857082285250455012987568941637931206166136246736533282917114875134725453508049354336304231468656339694573918074976713776831286366008549912620687031819272155792732135443158000338973490170427617919733218238235457557122610318642757172758698221731655360244365782717867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27848058795394609565090497578603288581259121256701050146832437560692302712280978741518575073324163043828944010001353192010550842703168246338873686558212047770558565639919875412945737601572643020522833633349329849189663365787327347015527390221682260271399563378653680432685020960102833565383210946889315847992371559584839370240426757514794206533593879582086017566805971690774233301287030494851367984085485195007174789422959595354493993503022831667355481324442771741339527302821722797740834182878294878987948552143408770688562575851219308285792372585030082005875275316652032627142176093844768906444844389669211953024571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25733774273898872899017424964608700016293947294775317839527876811644717532547483739260039516637423965548609161111754634816934261387106280617304892743758323466552239347974864456049808144428657008010102647110649645540002900233159735596414374732540862762283318792957297298221183061776599904049320982529310018256204751857005024035532610600341509669955466654904453701700179718952834245832507288067062842376911591449479431715814043106447418308317818759773198250177617518242120592520846391137834684155271067698034933504235163032872728685154405377327337091214001588521717559313524118488494898871865269924971573065801669003417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25393416832716110249132928548298633442604510828847766719624896061616811385006932673568621672302129248130894880312917397674445914089748900950095477453421525866558342271042595214439029062783920582768539754110123539088208698863839301966022162576018946324571063275468912974343810940715956432963157145327771689810314719555216795329254758978019671374800786472360741150621643714012053360206158332345881875565758045067770282735867006073650937196026065610375274767124229959889472426720096868165642767406015100077327196089469984407203068281623140247188340960712596619201633582756424651483367772929519426412530830459041555526551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27867752710618822649610230734984970338587320681720925284314334570105338537709024655927150132522553421413445332604091911751567140203725726562766221525928469064043097924630032796779759844954424965317074968384454120565227742519626231504411101642382098451739870839735064001611756474609461671437634901574447056347426859394702505832198235437418534331188858925743258763613028588122253962182746377616765139843418318787294629189045244761038667560078101448906000791821604232632746295922090546741356005448590459311709401343889247659567561174250933934347717833382465011473321897354144601166467060957455375912062229242294833832421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24615832307188618582804344598309041168399851137526302627725416302455942027470048638119905249865120313104019321328932455587028620205564258156972667488364624425655381187136960650764060781129513599764382855927379085525275845252426004047432479461547062684668459538077886257383301069325668651279210636192568637503204492703043407137034661352002427549759585572468746409990594805998461308559864710296006367140612936193991108593055427484358805819613206824407209138859060127424794185555488100075834649386238979439944238580236817285455555786220609878130705642270629613016512417688726571633000057047087387699932218195070800725441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28434425069679918265058302890840408218919180162366046715593484874076100582295843929046274736551721308586994413461471329492992626385841565750099332844850528186974216518211534246471966488817903608840538561127962492784181184789505922586475134357118453222719710869746123253132174716326222527327328092210690630044330170387427658113941087821843130698794483057278027749329577392147194120026980966566508427980073996003644783552290970878015927854845477199860187938136137242530710653479036725169169983668484338893735046913703357122261090667962675280022226304150090493670709369610243928848624375398472824906305050800372693814111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27350794142977205856636740448562893041408094169665499689182088666608171572259124852570456195399972030392183703286371331970135769430663928524407615809454965334169982093138777379326093016657461613268965953201037371195398270737353680610060588313421138323819509301743391773465474399041018119810477385154606577275602752795098458403756331269291350502285053350389286816481424488838552746532756643878849653535676913468336613172407523729542966622849254311664066018974820123211262170917807617729609369279560994694718039445376436115005109193804526745600185324160105217952749836402975339976319689727358606833469926328228487086529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25318158115681026669390592056044151736247460892332167412345072897072019204334028301662348959515533382239567345940559030183543300618859669649208643417659056121464766402222497750735287338249121531878258566685646341257426078249643379314777789957931067039978796130359787452101744072972238331980976336580660701403942453752388973871436888532320012686267547181748109510343813580901090987136615381431233606383128944211374106342574406143232408450787674137302559948941065615362068095073345904482379386098073371566779897190732298647383271026795668606874372115794152702744448780544313598627138097130905848520342260599179011302361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26258370024389905930746867463179401585237494699571560661276914154185719456255576654975347949674983123625263360188889413723297099481234906713797856300704625781535312311114582619958985365473313222933328405257769495380145147890906674489422484959624870100619858044688414510040571608258868202459273342653454910651486290006156201822196859294242566254927724297076155116667731545543509351709811608149433203611568334143831152639456240917442599923920981270178866940817973144895678619164726526318257172823982623197233765372803994689139858234891789178995047220124400623061979842830588131081484093346124169728391960663808656233401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21480469752489831156496359789705020099824085576695819441416885937767201572131830303845886639549807642942966598154538867164337521698265899738353792106333408271216161644113007028257968276036041715902616326382726964951066548300136189877158572504330912092782247531264005626967520834361133192726510566733197743489998731634355553966092699348270684661123520129303741013275155140753627256956811336560288887818636924989470841460272707209019923873528572695306315483532711799279619505729763412764676073576604197555091309513111437229739236994914531652696579566117326361021883149681553552496218920831664062411656662369100415926451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24601012281158745956413016134607032109016107419591094387795306349220589847625102482232453470865651422669250720688496489805770864094457165289709919359581258337202831112589839034184853327146945876860946463519814100829342351907119461808473027201496311928606047721794309144692669321688626594611717433351543943630001661278830294164644263158708562236391547242004881992757492796121472979240898764396485451479865782813360574327732156346079835815673419557672092414801873184092990108887796928087124694046989028422215342402623010665069002259903577471399688173424764730831498085579186968982478410644879770123093575570916108270221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21365367462574292932731811558490440734569149514971628910754820129198827843779559065380706295216474678099556009912483494189452657862280143864473196218557786645233764666145657124550386391284885662617063277490311719281708047088654807288203278664579415883256475590355388787362813715662599377716636047088140606564305809423273505371872762521713032548334192139890975445120640441726586739457979724469819941211081561553959154362150080121710378935213998404373651729103475554258223308343165277925719584826486998227846069594473904607197997291001951306546591121023508584802956064644498352398903742404635876016045630151676802779743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21942933291179674427354344467403590522847253031644842386505410756343032776143721893104370868805077459400431562848005714889368563510423405600041210025718451033859417302401277072780428458295051106285151028233032864677550719169048182827859104522531482503044112477972711226146095603056897801823858933337369806708808243540723027199217859932997716796869708801367977408226327928965185969688223904334840797251508009219597610339999166193495640622592918883811655326468432362990030839952170021363564065465719679445905454423412344602950706660854899046958196669126932811619625617859349047101573465862673667637603167179137876208901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22033121753591653085754388430153294914784075194860245921340170866102970819732653315957270686015253276922149072034358897995212797610238250958721167380937450659453647587247447099708251750221695392581870492874791994361521339112073503013091012928318245862455410300534959312367284835447332966069957878967593394464822496752157091150114153285060281492401076210753419734974051738221333006010061607705521725513593220850254830367143104955779279457521764214877063580312346833659783677505730244737597405995954380545162036709831336499887772432441323451312607128385445670824197832875147575636006040729345725384728377869197100737037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31968668706188253593708087633289651272098962028498230427791184419436223369788483713447839836495886156620717756127761396166432789565435298963164735147206863920732632577868958165917021600729842119728039532636028252937509567935698517386389430146584192230278835336614482126560883007212676410147360437792414673127013039048053626926524002682649503824802593958100722961495317393011480958362951332658720658596728535850640908872049197927183815309256835212966503021285277349822160919369924552621058824694903499020482595229099095968251781195207525859965940426873156072397843113439992214364047736440303296547171269519095224337393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25611613359084850160026591595223728454763607640927349804568805759897783378980230701988262195667115986034750039905625235729328308901133102071435226181324412177143362386675300184484752056146500959366372366025669360660327360624656024430820820344999017375038656726052099256285932624267030828012995106394831927967021142401894866291310668175431179136191614676648864213210460191408727016178943453308981601785098918847103783803161757907763799442991579024050801179974027208572237016315951780946003322528549532902903578798030296043264254047213337564434897281933957353930104613700630685490731762771385972444891497868914137845067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23851072281301103340593982501789988866186988534375328599328197686410103517230706260603440044512968636643208540828179990666730149714116605300261452230581728067865966796691867493376005378473336768277070571692276688813353958645923726157411257987246695653773596278007248596483064142448713100321855374218652551502413470437187917033481234545951086971046187838052868309529025064298107759205880196219364052206943813475199181331041381137954867314667268658678661742573565244450192964681458511366936150863321531711929352778122239342251560447544961606594544569237597831157850110312259916355150327782118589121344102612724490750053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23048959369460362193330307783757615720606928785811690158953567415880658295345809311641101704302383352383439941946437543335545841678662530682837262186955529733981498306702322515439475315743590761598451358217803336649946395272300133245350056673208831647600871812445063427163411184251392458645233308682337962137259178220593184566952204887282000234414291713163436314013446680574786949092014597659991458753699256775082218804351729804534517394940756590675719807867039807393242518098449632535869854853266040838333067536610523957690982932463514245759722704340848913042641986361260541092089933098560679897647859561642537098889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25811221450425438808917453514452762828535884277824822233826469656983539190064220756290984672026603190645353312860349159110227177612242885124347759909096095043239765157560399922001391595437877861024761084949381469296129837705313293275201765884201809336686679945142585488278311696177940673807285235969956633496706673263488067700407401221004806208725200380975360351487852573787819864530308947063795218414792140313489545138237843605174192185581803913258079845080008614453540290389707753600446476078325055365897600041067538525987029629348996723271970831366760256659100861501939407621588250704979622278550718984196301497941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19281992278401367096092945554038681251904397674305424983513718153352971360439844642876732178094735420312843532966380889310891311298394294369950464216230869256400896025245518732593909506338668720139907577039155027907360762692122511587861372741236297577163891410342769344166516256934634836766974582680697349441825156555661506733305346548311390600198292683063609767776755923892728000650576105616469729784544589233347646501613539539646637769508278690382758179757841066967017678865338338562914814241646570540771326489770549880653771006558788842559665533380405779678481303113278353212505336902255292810522330689653979695479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26889566640474965985847661294101517636615934849310318590654213849851705748827660691890650628858481171659609449653847476480000787701703206628036935727428732262953169358789307533172603179799632885391678072005734814843360060248618096305704169241853300149740993264280852049455094469227335148345288188753221732332274368806676244941195177764059202505805675011966896050132543187877034510393033638277428690484559083424264913941314128202418935841456983618464646525647002913164438693813447886488964964340443211370643315807826280513784678082890419418642337090842705797076245557861140479324977867672792214979227961378914548818629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27558614228292656944169648342759269486762960340301035022397295419564260628264954124966798124996363013831758085950635990885209422276856083074017066629536193766206017257086171872091624793945891011285268910306689729086829066811741962501926291259749388863980757692001933260041201562073254152233752466169153499637873982161988978672999886261903632383151794642071985451435430968314900159629383678517320751419325699842621984684452086816585951980040838679808810529910674056133651842269378959664181646946706238795955101258478414260840657408642369692090808977156025486595831237535973131570557405008987881459053360990531020973481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26058062994985202115016114565909755680977191874857456464488104151404723276285127131185566567207274464837999458128494837002704257159915333243244965217644300066448525339125977238478173303916099914586122828767674759432734306038118619275889406595841907497956859814897399939512548180270257645567910327409584152459882609854694393907022179152253947324542170777902895060439995369557082685509608994508292465292267256483671581983805005147048351299659915900287685387895316212632774625874340074326806864900128440111109548510255016605495613449526968276857459592769333628807226540744132388978793955532822077935661696483965835568053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25628146941434042067785925522896469399799122133103401097181371984863186668901948526911077334498951525713387875128016487211366430737944473325688726494390677356302345928951147519671288723739876177921898050076801920126107505023604880604499291089037962045939849341925014772467115788620227123032592840229752550455514793192483890133214157470790213624684354793550811763881264513308305410174143422160636118211269590689628523596923349795435491405350337025371151760988453930158725126533221032796943014913799067147366448696904173092153698398958108220403714389495230618429824531973422036854125072641679848152813611867826156243049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26255654765420408136505640414521163219843218488010140312909430806928058008460177896703520553845438724521018623398411697594267792049984489877951089624764507456433178079078776925626661156146698460348735673288941778198619108421853731177926948850364818253348335544245169351322069921575446774421986512194707268783005327738182742116779083621193297021075540301959905896519537938032161185517341023643973230892675157834015389206531430879650084455092447888845101384806198285971984566278864881628890835390760053210535226176363255874522970881147003231199816383235788458708442223602440133951831690892333362622443607258973023206479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21563238210422972737037244334348603130352607148777581228740196917757681020459211235099479028707239433679384618587003493081208748018774141812584622013153093249011082563169914736124682748296784764337343104469357010578578145114141810456664137240164480100084719262668203474957803103781642711034506697914785190188732718814484922255781817853959005776271884651906439604302657272719342625910251843508027766504217345035288544516810471861878310164197164065170239425703499291163306602777267095452031160140385395574776795142656459643250475826316561115131790205564777996549933441241468074041818038890559913669541647763477709155421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23111707945281431968181935041964274735535653954269546559213543628839669169077169089853084345786630688303809448444803920893698896585944990293712888794386648694172305280497742988176698922088067473044070275147963666393243871948715468740332782959978912830987575566571597064379390608845016922603674495279089087940825335253971286497974531453599872869924718538738511385035542324646327762121511118645550109762388362426115610605647332137345170867096234579379814385331241115132675383477803089096397527168107468275773713008153170352313696960088962623004461064490081892788276277847042110881325572288938994301022830982613697930173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21092338452229177287803175566585329971057711077925410609078519998177605858771357025729039092531009994761995919601047083272307401714994663648823266140672145668803089558515813030908899739158299943724933696350428221015811619526135177801091115521784591824326114859768401419994737200760686520450828693255867861901395128570439923791416510497276450259702749245066817290348980752661587897576460835759574974254946174879519851564119632724113631515226514950719145391382231478819518280536207016813917367401305765688798283052882236950546744713435044053110020507307515723812593934892250965902818120673195105403736492867172204253073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29315932010389304347821149309217796878319875504649977836676398262617049810996559638639989668948922486506916703311181813624126090619563882428918461105299221283442170225978888119055511105816559096700886122396684006450779113809579155691152603907197481959221445611926370873287236067241546446794814293685921564261669629504077140136443439620320579973152877340387818582717496129818405801246400092480887712289174203833852646562673636978149328103076558053639076437112086729316911202454749563165839455104375525198446190333073600311131337693152873960299580641335557809408634278347157205256994252149129261402510842982011986121203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19822115793622584276099853055271985052835895636935185263088477321782903676214663317145890490966488760766717860402589962419895148359461371653715015992585662186474852340009051750310473412569556500645325891775304801563205455189917045019349202771306544438261043542525839998253565826893315822643622348779654554426986403882183812652366675904695386727844929590283403339791836092042131046285339275531194521397805790938995004191111207092876782237250116414336222083714161671288203820734782323816210099751862132270914173661561776135368254031266479266909847099257398450689258077975816877071847664576668338015853225077879350020629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22390958607720533633570751073664277169741496288106298074868138945247237369962357885301040443335175011719600710195897423205292754324605772989334014885063071971392982337038195634036888778646021131934899845917023885316883533716014889035392459053242104313566077317193136504328624906661494340309012962535802956461940538660846003157281619228131445207670584188516693108532965751172088758276075494202055909067647847506347854866515048419322142004491669113319851959359644961315947483264777438934524880804444989409893684232568109669105832283058598044292885051340195851030597019784477441508482794857235972914210610391763631719579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26931231126723447016758615773237190715162700538293955996918265980500238721470696670287209090094018566292788451801826588943135541555684482323284625968792895673638697045036959063613221708757105012325409999680760693621197231823019215347700189320963377504643713852974617492373585228188159627786558737782441389754237929814462853930563296584793667634732065941839322733264579305226414420565351757597238505297159623385243147849919572822422077617642366092301589069232543085318763813498924115614615833348895487578481900786106119813666499511014378013480429681223753006841938415895284534991178373340139421066954052999864760078541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27230759625933920871389786837506862961539646901401260226699643190981194130776344033942276368636641644154404174324653256594837941710889768685455816693165893965309476097054665388277983956422858444613741268992124433309548929185082035678520276749301800283986712424872351097502304185025669064684167181014208248975132084764945503704096117407305691327888887162377976967954670288600410768833387363435469645106073719178989127741386549536454536792354843973484093738956645641399920926759824478331419237395820400150191057131907420463924097051215572769486231132709685390059313215409140367658018772387407444072938104782398093296993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22150881824820763725093264856482759562425707274453950226806158329354801428591311607936398791412217724010314908747614057117892365094364562297277944906147894004353330273950561970380980079815790245231329879849466872176364894910493577923950713686063532559244447874852229835957949001478661383333537870728036136432903551005713040110517674460919480305951605900474993776448294942107844904135987857523956828933899463699841216310934718808709515974016728465522702895642271084531710286683457661583860072403273326997076809208057337315691122391952851319087487678394605617354248957202023224474528716638516560077269302373126059298621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31317887102042404715605964165310623645841518348946408967968520010164184877650997139822926186345347438617218929193443827773929511656019153172802468328856709626250995390258423967010658910180567993355134563827733841657689997272327014015781273308827937274580694387931442393663748832607776089640850216829487309895235070275377500179927973999609487962104490205291694617108831260257666799696407151808936749864825627070770700320482238264661186345464000891300376758400872776740978708862336527844906848839438063139242291149678080936161378839812152901617012132227402172151437274972960540057317306168054385764884188179317589692823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30585110867789093123636817997676240031440805501968737686423867572085843899419695611437616163919357881360923458081199643636984640901055863517404915182688369759933134794356280374688523576857742999857055803202195035747701359521770088945502816475425019323190926643330081953207161097593114578972942758179603380349879790801087938054297711068998250672326433793950772204155737235684661743728647346238223698894317106008935144670847093587234046609593178583663740344494024376555654380367283501480243577841174695173342089044705492580323942941332864352919469694514288201747464734492066973020696809162337722239252318396025362285539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19941713116767882562287155881788170558917647993120447339047739779953132200436802311175755401385511919870395603023880161707351105324378178445806561033499932261557878227558228127339697719652255631430190704991683874036581197975934029659670469623140214719192346321101401625480103731771591386101113091685526865082684288431824466107621510328070032446481076230806811287583736939337636338263443920795463554447068773067513627710535632996829385323853518049245303686596363221908126085312002232553930847010626406284354921269120290253393625579837659402419258587747793202454323824572794841158207792243100712204270830698553818694523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29178759670128443321885507687540900516737078832268429619823883611329155446136284464441272582794415605666551988700442454670972742268837988543223339287960431761737853234693194935316712817227731726353401541851990221011389499392781853141551924131633259405702646180294031888993168505233193133649665931357703168425130887634122433377524309477617969689015106516635229290913121870929862707674913400265423310729932985793425907878558429149832479100555789511189351287911074369984093012419535364864304050089066505398331723085555494160615141073625090168181458245688005975652022552704597758390037056072923598500943993744486189813563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24998139823653860069820720979639847791889395701774069281493629091793499343898826687909589452151579783876872096598038993457382095357777734783055339721696570623723392952793295597316934638072434554972880315691071828344185783610780404986196370081438978869841553650912300048265050135375267740156547484653183540969265180540736930666300204669715850509176624923622560251313534674697181656004338155171268223494261153044537715148594718742428878590093886313261153259971322534076127186768767297815409042223533620785189252385522540533020477278068036096641559472872388382840937606349944968392228538157067345546466159901505561446409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20418726743453625568499806896382393101951334081492766151931273894361495557692316298552521420288075013076930207638251880990307203491131102925582551918040576828852598810693697048684543622083025274299077052907958279015409322326671777237398164490111088617589029416343660440885430669190337169369090464252306548041391584627607259380366438273657694308692195721313911811429121501835105475411411065928025802738201839309817238177133324960620853901599718743121571775131358610365047200572224743305187485916266901931852764650680527677860652210193516879375885609789690300474095896979513859406608657986201491128698780822793577372427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26527068343121402392378489864168132806163643819006242090401358491556366691520232956049085669629355232206064044468690839251675394377094856988901765918245327997402857522366540824581406190583174121408394292138627071842176366809108525544856226874652839974360645062907021046590300529242378553423820092267142743911763078962782744941504003644269130535113020473573191583077641370737066084016400585433913553368298028024592792388181782778323226434295098280115874555598339655667693623539885265237504738979661345575854742986076465074076748814850665606599518943440068906456712854562122143705158892756051306932933782536755834668401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25692365091692077823238070824851144501202690772470541433814358261369835981870761703146053734255503869735476710061388477781138365410629668691979618594721766560977136543404900274519358581535202130037470216658523288752864759577898278395593799723774542701247343704883336842841737253131215213598953827830311919663668270201707646702400435688638263834651401545975825083057255008781650741250016395655344057949079269149088102268640192812492302296531152102215806997913264079213438253009130660820182598992907688927054020889259314215763963718856279456626879340080069790938121279116733431841715488094947976547251958758111586185017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28250372992569803547396699555707386485747437730611818105824207018359420044301159486997465012052475363215546306189617181103056053210636544524903117997019724694745278547210671125588979705472870082536081728958753832573637353949145607228693307003264792486279713441870866066418413450376240651016087717769657926644384818827794659574660809319767180828579736484268341760911962302354958812502245675335377400396575759730884202404950948308285011689625126965020518415130321519478025790679162946866612666685208684829621616239258888148622690090100343181671495978169481813034136080127078593622622450356112392184928279238951723713793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22920619080961429434408228836553686408063058205575688305492165921730225309916088628611139790636389412707285150883544309675516149841370356171596182753067458473566675017463577098679685712041000360668475947976998104017559643145484565601903275505984844087709451938303084451526827305327638913131148701785642208064087448615251695336690158674807860979230597554540501155864982627573234728594840455617616635576089705607505493094237991772500967079371517482826085007987094957371494915647453211511663038284642153448331495934314942244675515072614227778188184415694313358088997674740795921197467761483703712200126365564742704520351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22503021319845968188255777608933154523090073713174289407208507951021311659206065236051557869213627440967776179142145708156712875619276519976503748404168793747022117953960271186337415138190596807249891143540323010518060646827033971206036784410529588740057569074859020758199878127666833729520283155517480460557446995522169108837160026634636665564777285456277267921800444293988156484572216050143078827417543010713147264972990433656918437693265221447628484740279111216874359878877659858255950311935093053827295888329742726830617129174573861665445280100012244659713643873322137471781251841609252781947175558879942303445893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28582522022541057045139126779574128639288209566354192731257048007410073399258080212636702561563887466606831276130067316107171333827447629874146035641802918379873661755928388630704311787244500683699862215417332710754876640701088361463187964642558586157308525982253838283890072092480251457179987118852915221364311774811072272231628053605146682181470660720464129447646704265295875542057610783629191556366753612918785445028863794179003258028849365842715022642061194956711603866278809472277782813237591436505012108135731072126027285032180673764046907653752800515095274124528594167216762678863354416311645487487938675562631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26743607017368815431846856991041869436742136789307726415198958644157873902889107908547150478543685738651957143542680204286085316250315298427491974199573205535753395886471837585836828277294387535119671490060082314253738717033454316866037730485693296457863813447913968115543187619233001118546850644030533959689410649204990078510732572980529956289729591654286174918071222682406693176124189878865975417718639553581420396449918383505442215797245186884841904681529585851634742329925751143587853104513055266101178410322710850437656465573518878901120395073230419758332727567814172994318491678176711632309230692248256874925289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27314064402495023549999833903626722442675042832467114665589520715633072136047612510776323700854814361878804862951438231469570191343591720075010959340929952799303055345690815810625062468734111015440046206771841165798445996515250741244912901246374821929334072779223080925273249137813252235279127631280562751675811680384692710152985945251017610534156954574132069726179462389073526438536505520665428140925230156573415850747412374848832312405116063543325112052236753668201568133172041708651836605690315280653914895720951413925514398533460785276054483289451696297681166532430779213383549854850232778110612339937948649898479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25629044186021734712497522720735254102800989556303469747607130681368086051460621693779486532376537952527919541040940597088504447557355782698295674573833683224108699714522978601651309470862737098591877552784457747731919291072240170303462330775909096314106431709045537836899418619043643217657946133142760824796468603434278873394516533620481278314072885554645786422542651858296421923711294985575202879691383580263739208285104177218630474508790469898915346505200028884907584910466171111818834146870176319074459959973764554437286669207931881679885485172301745839909463954157859418952579262300046582759150778572726284821403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24065926703833166136464913618663582903415082903296799335987046742120694422304792109734760607775678242106252034191704046147545062630574727756803592647246178221355886483704287861979904836312046937477145587558722705632448621484838378269583875062085319053422124224921962130648885422012180067931531129011331019075024313906684234438609461480610901692208302008162297276616778694378363609572139979933091573313519545001065392484039375590308705038998551652952384982068184474716813838865550774117672622722013073195981296751465185447599226697606780411197257708586757867197397583872639974261397454854139851247515726458626220656821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22621049125269980802136477840432406073831141241254592045184259213240260085475494644637622739752136443743197787245960771372885267207406901472547366033654353255912668498177509826686247638380673674428133650170457990476224888809639252845116021416374087976939959622967950840352537014297290967789846512687547216716515668473651368099720489469805692278685823509901663028503502411147749378590957969700999359635605106964181262842411240801225313906192128306331377062273440161110709348358864553754397080102439543539541030354540631192572043440837831570471582549136591022805327483596121905088317839321298014947948900203280326945349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23925278626351611462488441654894422908477394304830564969279468087373144764564576342294501179992682990619491949867664565663654691500796963964475344502774067340076669003725456880255122220461462431059545684786400925776855136973186407001491388974964426661934431566182328001928027019622919117533959053235836040671052821655952625613685425178847318003345631841206883112250074914274367197141340874951622647712227371852039751992582889176401458656390001722958348225780785330042649627457983084550721756446660517462544406364511751749570335090682479610228581763125875308389743454843597672030723539440663320368301656401903358008421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18935322499361765629416704890553160559151189844799154502957007043198575780551745476284885161337635544884982904636458473905044897949042462981492913834251524530558137880105621924242319905422652140701508943825474337912282489243688851633871176794008820149545907216202985223429464546009820754448093785573132225929074467575496723440658244434261371287430947360357602908784123115520986202276433641256695488202298941003500060283817231793625689987347015228662241524903135176236671081451031799385469404366985946685054416245669702440701540430653344845245138138484341448610110218194239297498824222783679579521035748736924522374749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26390972937449299475076253686845658470671281760059922612278748147773710778555099608398261004055398946907348764968106401661106119411871401126713179775181517264179956615193702904280710625918061005075032741965222270869556743949847023916015529878635378145777200596010586692431497249774572658019240564929430712344192286179426946703312537644378901419705756679353191139266176941874663665954183865976958193997729017766306215298075677057763843894530324244396352293395687422235753192053256917668108920603875130976970455796077308489511871399383264800623441192545321245584104896086391265405201586604694037103007998646090333129423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26689305976032969133378465122602432280999822032998625661471137512067685708966378696857721649478176373317111789037070060161768900862181432352383157823945589469723719289002921277605597975999820669166473629110805232383151761368312742073579560051953928637956814005665892314489195122043404565492195587795815895794582231105440918314092321852007699538229989879514038528254296675170707620827087186493433774993596291444725101187406596004663105459481999927027222993621157181033242523152996093290056998243655689072895033362483610389627547022658982500677524920175564825957246845125960808096677245555643723739765581460975170647609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22521872666384736359538185493116752014684696952840923637611528995088128168216056762666042303956518875148239832609293875210179497656046053883875130247438600578344705905228481738147963392771483928303983605599911171395691204330194063909921240752996756120739738789155276677776343484612954343272428068003171917783318596667730532744535041508256846335906760299252756927115842980840174985231703262594926550364305124145697052678850125673014991918511443577807660041429599172724306216200934041065962687383810548570420703183100065009905771341153709799299228594782039632273357648113454760014884625609324818101177531594385571112573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28273530550506740752135093685014849978442925831498133605628409791769138534358708835047671234294393881832136796395399915615626179338897008529420283760277801315991707439689962849479873726547452683063677072050544220641802502499562648357042898174691840536535054863757756195471999208634338020035987390999643595587142870471177418362548212176275874898305083278718925845682366273868773908921357380713686471806040381239091501734223593848429075187381067200140064897294123098850966839361429467239364725379667031935669138128206237053804558740036431045258399789070672026149932428846163532513122818347808056774563862944793528386743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23705883234071661964868481981849678795423403713679728646479599306817119177648216043200462906587785188331924975002578469324341184005190129856113424178381765750521215349541303925942726178382628414586432070175043108260610551133590485562772077516544655353314002718904287665080254057135135787949727659131010314017408785805914887294757911506326579203713796085221830647568812588348419902271196594010957485736759429867295057455376142265460593084115688600682546769794523416932985181951405188979126683248610747134419814040572993909393798710772403878966114567297847604790094297280177063470774382878687745285534622238647525270057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26424680252824093112100273866580386668958424695234487506302254086712181433272617409808645295890558779964555761673582190293377667553259254506105216458134893737985932743005571185547700273933101271566680226535999185862273842560014784096522395357782351208591114615651621597969721708372633374413603932432941879114362377311252470936671075898040473720472644645180741264378312800998334456281068897900391725631784050208767034878793506185906692377744852125297175769332129933836354758783000138801644729892891827510861830143300832380248300719320665133304230569525822074677369859313807235877637949976461895144689125098906332289137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21390367864047978939162566445050337838441632959192358725939584091052530530430604618926758202541655031638572811027682595641440630535681182303683866985919447343044127409734343818733568686066587679755055528996871928894180616652129100094687947015607606533471700545728266684198147968532008188974869472796773337176048335553727496291633764998350587719612017211541954764129883327303963795363831374960702539221388631046252528651704003927264239902556660460050441113177737618809781336684929655753483753816591545565268422581950131036945019563931925479438942467441987645007253327515064118489936086583861892104683225033570981591417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29983559418015287220017584899650784776427767873557796045093478380961831027321624904367445112496009090941211114506756507513341689289925992729018437076307882752635227258149757790469046092348352575588381467439396190308382207183911529765590289055248991541561445420324214998644095344727611866064176662127487439021972421202843096336906598175333119460524344655678819359620974444935234909964540660085785900527343940412978753427051946762173157126103890725282317275355505885505752698875906020807206389224853722569855880201173630363753053605826876486765890533770227796149520174581867859437371891150131202336969971455249024166889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24166577879481308869870567675114551893950712594483981550742451971479242349040681118552512299970467323117481179336758939179192613651904679057976522705911038915446898073730703873887543624238925732301310660953417469576612083233464546719991596425998172958106259020159859553343193923751795440274591191839298456178159978748298056542603596614684192227183486642897915669394619150146722192626124737847209345310383037480533751856358250486108399177561454524296247381206839371785843470206828809681765608727340082290731272685386401091133827926135188823841513880696834485362315790926714237258867347316111810185395505833373028242563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26836640595543706604147628364051623111693427719800142883398150652540926912475376410742003972947710438618849391657851930991007561006711243295321505817300729852517235744420667626598257360295531045266638894785128348689333503283396913773080472637102350721150899648490615693349083465881633415270495077610814741399892394421649635494835988167785155063475712941833670030828122286176930407390995163510889590259128763556644976115514080495629652340627970945177450607933803534559627612878268639083548864121325247405003918683033572567246601038554595236082823371932236926471912448353371454082604203573252579666321267059883265908027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24194303556009371923745923642707459573796577868683112286759834589555638504472074360671380375294435241390462005635665074874913435785394957403196558237130069877581351130630196144350725074790665254433653830310495903933811596391166373850334553349838625836456715118275451247745403512277325285149922251287049347125549622261856733730653142142213995385880146448337936557904274201769146957755349461859315792052954213121503074694871362675417304855915243842745713000574613975402497239154210227204607104767931350639204292482960606382765179694196148165670380465206895308929551111873869918595085099006395892499497131441324342905359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27059935382466015275682283635487338814108805554942348244398106077903547501741455370422805321098505356765609462989147654027186406307416744990825793517773751858003295499239991028078392176358888005369814759848617087002432270022731726864534339374460908022059167009954243431183292812001726972955481359800065145962647261117707461317702347228221657356983276385824276518079056516861497787483281645573746351709911358340939668707126095178508505624089285343575805453654478175665234232568427480841108570401514482774979227641169165315480266713383488979894878962273586380977070878844416805121510195056196701513319053127070795543589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24499688010908353150992050467598204652722022877227029180070523051279662123963876418163191871489753837120280593176260138227258496398145835968820273113193895571562074530761014568648941587248648066212056929145519093770048128237440115456903026599462441454941299533194725824643313626629755793197049152569854400373144876442374757996210679510258276960503879693168243245663175857242594296708990661850279062707363088452993315120439529165217987135241755442606851566865520534485502712048117508808042485826526015685648272165818417821184283512809887176494325970292710435808408907090644579001031669344255674025682790083971283874927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22961676864864249376048943161012412361946733146702371573079599195751726539355143528613413138333863969781712087371485497657266381223139729669158690848746861168955188437851666017717326673089541744760010062893579686074335321740708230356733801897789688741936263136475479401817575128622662647065736110517293345729913840692527633976307854786143940211699328369749254162005863617743564937113375022338621427039896190073731952366700226923925922078627023237641371481334773534708907045370999845021516370961386020731920780271832892389825342052223902984773355424434363565795788843583369025009716878522937427946418737761026539936219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21878299389231621981141684259836065823903424270497613476242342629649227828544429523600656316596008248800095463417436774926260215742183021692397690582088334470516880397815083479766833776058802954348437085717886083347196032447407623837160080065727091926822639852082367655321528675113523223796800305475685986523744231423871305694030814598824167462229176018258722041993247588533240376278779495462161695698723846203092307613482505464536407727154790957211436769597621358662509333727885088487091515487217659820670405575571912583479165689767461810322459626800892917900663472406191710685806680195367656490638466138540590485349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22448118923324937373254650098349866924893593501157603608961400220316866231018574648727939376143847746016622520377203781016933733928113941179061648928804648401663672542617375810420462154959999150765688965406437554553143939823604138381855382058904530556742233776320252113194641743137637804498362795414538470905118879348431993585853023323241301602392582116867199060718942161901535887892975770673278261107450116070238394709345674038123884188688668409501113173609054032936777628064285113712169452522212418443785993478581988407060682143786242012667620257404264865015005734670174900160697759843004092758089163149140234193259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22209874689503578390825882972788470570108950660100796730438419626902129583090063792579094644492205731740544543285634660399879230984944415254626891785286279181381470379972297578944254903846252054813193094138705170907845930982679773844756248296698530759579940524826174275804647559832229711056299766805104975715125858153138559899500180564327206989873844687832303196941946860506380141346633280940755469415680160483126653884731226391241029545907825250608881261650495483683222295102447448003998588026520960183564443355575567254139255099968694029441088754408382495958192564320117532712408572225144749689383593656305772206079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24360853955994419483077290615598460013505903782524123876534187344684875922287366625992218536022471793177023489149292815205037759179743068311905008365623792644134408768886619523921441071482259832785152176661999362478910880240080271083798256187275496504431449799103935556927585584966541425488429078703271143480226195628361348955453748037130726123792964911848095005132807082830165790291604495117168215874044906779963424669684237356634995959371746462837304351911255287683203129165662134802442942879151743376905513366598478397998444265475778896728866744730747409264439552458349454567590221435846216689427341239206239556981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22936322531917912400814321547573504783157255362350869397656136936410017791288824835672576176875503236127335735255041578720539803245624499892287362663877227913336923756488201618915066137433695517112169127631260230954962157483920921102658118612718290035249586829105840894651809039870032513149422049203734612102738668411510686193621060953327443213937368317399589346252327496712541491598441196659987440531864134091160103474609277226435557329832726735505269923219988016776675923063362086910739394224821350659779599197625753297302711682228606032053381288425490370031160071027625373804517183844564909550341812692635264031287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26988500839751055844190192879253962946152657501698115247684635765564776877226365761628696700383887039855982694957132641291383144789947823837371004243696561283291941530741882680517782118798381066652032289307561213912629224337719336954869654983509543102830811061923345808448499014208030408920178301677640108909468686070451716854136067031457064804221291941752727946732633714649707963360328908831425362268153587005695652796578931218049863639694817309883224587471375668347297595381187302610383717844504443328832523023539750709006413471965264297780099874963650376851659690937261717808589678345809889112940189285522039000267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25296081299860195756605863625743521776528348437411549393681814732755663046495498908332667708347941578535487794360128787537483856776529817028725783414135018793364874141802872136128864474352485262869731067513774093179530323173838994610425385709558657002253835490447406892403540961838643434362103481155687978386437428673407537380550744673282483783033801271571693673580299763795843072896145764800213848565507405021084525515362662528172154597653798260033379688270951238115906050482984936322618363563587312195673362770564326613751664417389715795719511613131189174815888449968421616665873735573348405636947613880819492575557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29265089111011138876044883545221840822629910222966075627957928610300863705131143225797433620707393986190362115646147570392150055394076258602155403311851199429200245589837689464822753865169726597603538169487691023883232243787637138948777559754872493080556333784557818844262512563887277771245119915487995408980441111758056348227915335078870659335784975850778021255117961358874825916188520542841825303575902438630524957273584611916170226478392429239850165018525468330999035552322386080745729750637392768480735518440478713626624341698949452005184920529390355053540457269843990854937610687582283618106342913262288484326109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24142738543949032773028294928472978117537253949094517117994363316959058294796764273157250318952689307408454927374686690086020188252082760100154900036276286380467492075208556077170518575920397774630515256188371343134878956302278667076166273249279671295482540355315737306455200657899029884283388236096940196845768238620721075569413866845158929073769418942516062995788747131284893572935088593391909114544899161375842012046738877621260105370138536528183772739919269021624622114303809609403041124551616358563230836999052781753347343704348516968013088925956663243795983515124239113890797455583779856955385040429149546773907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20828238528441934706686727597527949717479582327579937352893794275071794700064493123567555585241184799380010144831270157288570804797454920066722979793661045991930203861011830158160909472913681492954512356816055029004648517525157649707431539628942787804765583811893248522630456863669881108848593236799080024775461559582674083409106296041234486396058081682608629126356820208463400078052215951789492280445982802187465629351112748508424129901650132747778301551276771465361189463690563267696864031718406488188426052891487096257768315549902263645076774522037791897513779266071536668639955940877825939008004415124896811376429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23985743646824399757222259174789418049680203595588294946206331277122534060281355994847267097514800369313966190991356538854718639059056553013032692659363887600918768033215256849045402641531327683516017291990507515219473301298055276595287152589870357243597409072394854084420165488403406616240081211122296217006239837012255350610051844688953212190799238241232897121320617478362959571760664604724483119368425926852444934936238331315827034878639797757629269390141339215114552432879899969966599534508536178505873149875797969657584763859304370598920800079906022210366978217807255341187555707866566416090540665537371921368911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23760895568532880272117462774027926169849415283785786501367468444505845876296203618785551204040959164244224205979087689114904533982534687622239433063206205787848645688409250368327355109983664137911269975911044832502951666269375013028418980960766158222692269876497954198146697638824648270438337367119067704151198319627367802658370955102687247540934699485197879863504330991340032064192270746030684245830065432294653798240817756650949527944828008042843205382257251808932597661919206169085682833358891774391240075225449101210175089282684074196775266756175096951740463455077225342596196694489396110014887820797494303185223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20305972041388701695807609871693617663688439735943404173750556003398344923139289555962845634936936853901411982298567640750538356661519196501787894047837743354105966447309297080487443661493712546256456169118264368284010755865925452431638668276575619524728719843661136694675460808182811895278730080793186888788255690324200970622248083864772268624655309662331182666649349687184522864582949366688148083199091679767154811093867775098083807477404521079498276968111567898850718724492606635864245685958115535196806105648917084039748772913847538141409952733530248837316151461254868809421526341111437298026874500157235881192011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23392852727827619488921125884015622476835843333094549747227338897892747312201734519515656830700094374958035166703074372344960781262721182773944075144018471023336670892836242886618322778802439005693064430050673381296787559905355795648211620575443532662753642645899126849690745361800769345496687455291063402732151203741576026945037011672607004974580898296923850260002260263111933354995903267323929774129712861334065772509068159649084373194103405140588532228464423505446160908951508694453370233676903648816382266846993857875954845845488844168306016543618815127491270378912177816314827838965187867742616200729890569893323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23532405418676244310853364970821205652145776122507872706583700913668972215303918328490928324498764554016342305281193556909580357012970619297372340019896503621677744924110812315477009416919846518667737712718419531277858391088267792566544871165273499176843421403766055225521827055170015927215913860715502563281565543439319892041952177385269951448322983072016877920910469071708661302484735602638798420581396121683453094886328591729324123069000039519538572309749739773568158946974106044603843325074833894322765823436263096532426236091271710934880508114331719828431000331016392492111324393961202501994429904353259984303117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26390395271119007361318414153975413137825700538449729291554334635102862301430830512055788700321449646893278962753424077213678886404929972883636052807608720989967238991573140607883696731357742430324348504061246738856636834658337065975242894399455762131392296592614263088567416773023742524433191987940389583512166749349213937555750574446425762224562216324469067860880169494144602573398063187290770604207511216928841191659399227746980759484864598069510731781023885800453218257643200756064709530244901297020593664426259818127347219881363805725075035244403904248300741406373727149112027986636303724102952853896518569007529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22906006065891822039833712818663737043434783210594143844691079509525802075157897180818275476320873587966528780076040213417727876193196002480767292059208448864084714904544502263568442998244235873731604102998840744180367434189324466877719837331684459750924784607058691153253309913907165745378954026659435810609197078616003482005622845093731291574823187862470618843740399693870099338541672147888072037136870057279144418710556477313565547518515510648564009808703921456376656954671509221041710328950009997026310545069294973658390215966022636571501970219225350905077314563409920316097690240194584676198560805487062683520801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21063177969757813945444487643763698587495539399394642631209309834340872651760616943851623081293704704474707105130391570124286372971774377276412574028979071445790162583898970694047221288994664534860277195935549601287491038319691643942851673447467078499885453757118102808072397440388002788024048265951242650751390666651261985916274712216409165542401539125935441351070720896796639688473066849221076176227177923826019431714306909017304662121464036351094290891666972241976946713146273891589380260505945568780412710580667955729749618363831735539255775130854372302091210088662060359414436991987121081200738189967200237429859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19493265299130596478936122399099665328111214388072632432666788926929381323760812419903620137161958312480131032708128855945502580448279917917814054467313061632752316323413095522512057088152456687599911319865456038527489626237080394503586081159505022084041946466348632157730274234355208893103067255930752710702305839181082393116627415331291616950508539657264482601986459969894668073077006707487162729329681112699573490491694861514676512133339197883437567156799745552151005377423558996195231971792227341735253428634761828454249559432394419566588438752443115240264442359633747816219600768532001560158976942915792924052093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27716202801125107147392764354461220782046690714111390723334436202399021875917861381088904766922655744631802068621292385364067216284435448601356069684602520428933428096788645485818624275235121313764377897194078768275482791552336973763755693162510840466239829053742635649511175640378158155309196832782859528049821914726086283170028777938529283260310560088536368325232289500750199395118912354146166308400305864773903667308587390168820687146350998087645103110598352416531493162814534822590453617944966900787506412184046196994265626389393791946089464572943669204712871718411323277398062236869783796689440970882689217612271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25177728380528497046008096634780831725982936429298066797071204154550740586134951754469965749832913475451962841817692620535042634275953813149610363235296337303655798149781030837059453670940431236097802157516661465927992120722482364740586023641370452798962565264130635571526833877644367409215364340132630935077792658785264617497814409302214624422772986235221378749110467680005529137051298578892807524984231048604888625699669794886189670750590769542170157383806833397364156720406348229936832191025250442497153047189123295296400356646249911475688594545250763694556077852297854986149967718645221857199646349697126906427881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22538505077808938573822797007882414329229011303385636719409279752965174113155612408843491781284217079990318023228347503269808382475237027286173390612675996428082522842201114521381066528820287260240294029181217170096258309351081730414188054216920231474448828417794672805905875694794544358156422672836968484177121802728305119810625522232980451605558532509318534413740231376712586568567497698701795835908528949203842555499724820131359021487314952071582181578001264591155412738286864834246149310484737776018551941780003421422911070282552506006659280941519587478548354975282883675467381673962101160406207380780463851878621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26971431683170232779718160634828729416615507959698174637343937425673511428704549068358576974516762801103068381108311298316355717134087344916862450165578761544244752654809507383520046697809932583479439462743809542752288470267209683678666279445814617759266226302781750928687497254881623355860781091334246998802923642577069791085241985399125786850765715420828691607676309113754763340251558208453648045535999337887629402211307847082442794323379423084971006796250886171021915778624360728183730022360196675191540015094645256809269306286536932133006931894484260754594431962919445968279991224342530294271691295612419148397239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22141402657772027797004543202363654093745961474693022277676066192487305383505880220853171995426202813954594532620482722901302393855031134755827178218348293363364473504218849090711544995697368288169408066212898099472632069632084427209722869184982662584402764187047657599893726339332257816690655283093991681124375274653091193138783611681025539828694682201277607963172737238807201961409802276508198301693823851269992356293727174701907982251077734107844484635092440616656098874771368202653488083345107186558229586466182739376729188123559443486745031685660071015181224014654819181987854297364323500608071254851217976921833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30137366965075569880364153109574816604444222471217715505416872389625534429989383175114268059905719935409237094332308488491570352883856814627641994212201803230763007077624870151410487052240775260531271329839547167112859719259313545929115140779981398971036608526474060430191173832753334108666940851635170569702589657111700699320708716873712460573639939902596886793182476032295802700323476428721976665399272338347618191316222209502941128557490899138081233564530254240416434335871797454224811913625797369077206304173614337491552091075125778827144180452243949540351870339316866628674052206554164330927091328702230410181421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27989849466406466262968528673453897369745541746488183004616117795831384842864946083727123251486760792349238124042484628097639488751237563126215826244147349602985778012442452891430934377087192867137071466938356000750608050906448802536592030101167082875142866479973318204263734686177791047688674495229360396903462020365309982001710121618535182634082359094423471391976076017373036549148673613097860461233823803798172182413075178971077191178606717099175119904621583900732959562779570640826650086104475239166934830281940595307154085816729721780424023398222483318637911853214272668309117323789279909058345016821405732890157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20835920657609015414630825617531373920971974030759268342644212461062688334680438505614967750621946257617715061634553821873331252222860766364735275780644714778450354347437815688140749828905601893286031480107231066603343851175019929292576198044850280876581779145120956672935648184160516872426333835749232336604160608729389367438429572821979075278174592020392242878261500996667513103954365662385930995570063794111948594603057993007471864032752119779032641832115672048659851375371577338470190361088523193740718274724863502582708714872594712888535035106359363666698348759289552971124270241531399316154698010419149512801617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25853508413099014784410745480002016280578094963068715614177498980768386440895647770076013173363394445640643372284876197571619334681887050157541652871858848424246834898554047165898297920796138980869070537144558627749478192800348765439291144493702497255621266263170081372245493152341406721634020109798137625166057952556359054015974426112382168872119781951620240200535683650330911692453907570291257434683341262171304126711038595407455374757771355941581636403703594188444750401033835511994752845723718269578340059823073595121597402172888272016359855011187855060975192718951697494734732605212104556815269388859020709229293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26409652807694042891746734672662388675146239132493881267776482985758914386812561411566001751562365346301356472422648352146518848445189736356961922991842986593860022399967293643115307076121234164623624467261908953672134678998207939041100668558679473908493497605060397013802317345197237594408703784482523029853437062470405356237240986397811121416711165149310657695366483177545235568812935459493078258115063535886498863583250449187272035509002644227203049965763767165538202344659110503408643677274221339461304389363434774065772720364608218562692613013020977683606683002429063595706243612104872444017235346861203911210671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28820117421513956495280813948811191392501680761697562253969805203294654697307098998736571411977016199864539535479856169019994506855591883689490594552032793499068796392762293892525002998742036880770663492030426051028448252569407162713403407850302366845125725227882752996328113707164932139856438480582490661447482171357547808625771698913351724973432017696392940199977615278377499711878388154092570250077634710708985413151552848413878810028958061162370570422534051012320671067367267649202345046746435861693025532584968244835137332574127053427638067333765270825462070001850273707325956922124178020885534946428275474429393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19285174689134333891227067727804866822171812190884517267217391180419719479829436198863192934423837757167584992584744243948079879126897135663447481798020762039101477480042450901063177579600756378431435902445875218097635566130312116329684464739700133235028941734686537060995252162257875996425424027253363288671716191163695833359265540381590254799924840342326234506217853717306435298095667491342288732501556250799433980346931396173242294289503818533635320513090589559567371196806393058780944017137159669869325340287202652093254349871506762573040553462577219760316586398863732916339779539477114930449361427789564109100243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18345851915799040201472717188317494279551222502309354860989759063981364957469006204908424783356718122597715156736897344571284978621713874431078983007252817071970053868471010562424764337865583310326684040561970249147580528554056894900231845761103720175217735719535932921851982238809458189706464432548681893399988301531404039679223293441256885202188076260705178779384514567630107126409361009805973010004015872634452006949086988254616875094311887116194425804192635547326863487578376308428377371122263384182968542479182655472957953393435126352945419537666327165160217642009340312938522892097557894327291471721186449266181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19950885120298716248611259912865885026807022363407260953082819270815818699989030045210807515385557195938176243795986779141918161807360136665517759573127752383559985102877741358504327263620995889496214914606190340702605743369151439939891588647276555686140584825157998165294752324364522890566679619569986976836704789404653153392028511077671926173088483755646820642202548500523641082875094330974839162805420124389447847127325682679045932492369482351878307952505443627567655289032739234847253596349588441788286115583719164239334916767923948660348501156845666993012227936912843351320288321712963711925929644114219403764063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25444046088366553466185881246955858596421268792065195515079910720515385459593154587422671356593433327001053292788324866260679481880273962474395444304776460143638156313260962966988494772882341960447777812735342560543663624879179919849631782776800170233481753115184624995341283517250434518512324560632401032465007192748020764609233304119953476436570682927395093783344328522747714895763668526420319349796183065171358135666329421254256133547580036781177426632181704050297337213266453901331680222466795359274027510874684372971807142886127067010051325344819688047535841784883626890343228734415304341343071839093080399227073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29944930224410638917553449923434672762240926760637281920691729263940964442731835065681925973375410854897794453372736737808510314172745948137764641999065421519566514354107662426856641350261842534893567348759418391802982144539070641935804952592746785743244789677706993022455927299211671166440134160031112005457717490102422936316635663671422501662250255591458256323734508583029232988945561627442733054983440743891874279498327856823436300247077333008992950127051450114296355214578506013787742069242320881522463677651065689718760198644947694681362498499268685201602098750660495924943380963177140914563289107710844005520189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22692045859569404389488310830687158490173659001666059912073885236898531073761478789132657616775022153464072580522555284743950583892802768561118291049163704687382247967989604983285873698520251062257803668060536915406190759505441848961908308086387786947327516741732156331758667216877050370548110946233569996143444228683493336964823893563641406749896739373903101611832310696682539916394218532126485041073349594092287137253876788481804849291367080518027624100207644987165605473361187928479887505188287137756888843665149174233114379163998023194422730398500478902938060346992911816631586484827172726874098023727303296964583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30980553642787686394394441891615296657766930858925452654058215685075650976434798051957455665760889575625020305348562360410917226968176942599383208925752206076676275671486380091650987787845482996332018813874649001004422476588163856229999203427803494004753521324410401490034723675034849666636714190756259056318745310837985001441129121010957907101023883156624631768881074644895323175379781579037163331658138161536525737321943102623586641403999205723301418218640840323206841752692923128233839549321504869284369907835141977860258572479999838337492054764266342759429783687704070570394592126730803226492833699057931092184009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20418847838515220182007445838940589707303043676574865891329370721710021223242835139301040286036106732138232460999093212899720100277245181104475705573089251774565748816866958552502297178979153269313552557094193918483935252550537695657407059414401194493082105070981895333228465435908144089861409602872729988931607761206175892886360461593747603837401701457930411393708419932232313384156268724358964713914231517225223048406711128006825167158422853016297526413044147072061567881258118998844242060686538007082999982791678736915607555277516007850793829195727899680035042087257114746500698951816773000103363100383597282529329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30183307277349134383622976855600740847050997556554910813938247489933146952931993970792175413973362256838817094745798981500319262721209604893977435190971520964917527088971559231627439014265469656600224110608707396932385406708364280452899771851549036169237988870597415235221531290840053804712152987271306004315019043357565058655495492636641913024857746251720481880272364320455092806162193886329137486653210913293288272073226173159212673652631126169480559785072330089227541055360932408630876158091398676203148156488227997212134372300424979366205745577074527201954185717011782558835719490238635805451896923952586783563641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27501817794517248824510934936013085028166258094065079629740128806533867322548895602078607944734399934134808414654068274261552568639002899655563122876291400230956028976069799120341016518924586693844784520670083781873236747064908464798485217782995580362265338101098791717482165009121216895171951919776624814314544589211886303189998294627362828247305627631649099398822192765362382225022663438507304241021883743725123001630477236456100749998436420833035679024924062864615460724924621385501482226085071825497484404033958002000181418969857900753247678593114871038043493907055807320920705950033023730742233102522586508582949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26608605538314605152100812197683720346024892787596778386705216427493154326358346073499880735351355742691416818509922881242398556376984713215956973337029665635918155546504629680408668970116238483349526859520291772260837695176530080639740518896776570875354303079309708975090891813490869598855387691882810620211258769223966259964885671957316489138358404154107294056688606193719399468600978993853439809006826859801420151683074658016489722052149279446032826978828940811418068897851771406406021674956903092313583119039669087585396050606204079865659636295602985064519928470294023993345814939471498603396112071181912689473991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26730638769639524611425149790008036766725210734629875643374007401317669077112259957737934366302189658903642787080116654189013864556343149413578763075821161363909151819800382945423214329590148069271254338518714034846607285136829346704149400264415823617027620936649384926884256896704170643847815038575808434593131862777464391671636072945324050698225323703101920425102165252822840392516163856008756719533523791683785841085098690082595068170198299113691043128209541082003029885047099480154685972586525189021583597525084342329046261299548731092519883910760166690248084195370502050700981370631195981243499757114555643732073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25189746360832358971309440243495828541225068104405143635563460355742916312609379697307643754718825070419499740320822434908353438230312058076341401288008786136155062568887475808024490558521881528449525003297242351383067651548094982369474137154160971881173321497814307643472147479952751277466292183591529098028727335348194358151569153863093384473361250751101433977288894022044691094466996275692396046446676167675092439344181929369303909150142368881673689923066998812672995759599799569560978924443511068840324790531518368501513701645077562679118843722550361400095368292351096066076642467492571773777932054674042449416599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22560724796248292678646657670415548147127456845383021849902442663376178588833066774044980808629666893116518699452310958850885657008255716604873115069904420019544931081655287739560509935949243752145626677951844056892709630338020249155932045437563556958102179091420755925537024171661416711261165754060571907865378833947855479844806937249544990558399506159024627406432123112477652975519186644433876335579286075161503901994883288755966087900800245366441034503566581432424486132622488621215754942052604005852876382161815134037618442735580837444866811195370471697958088957934892882057596359531729874391551008457221008139489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24397932050321730036013474281338250511946515972135730561147816263851649450178374288930525231744683230922133931060754209229857400559912240656055323330763984894564960754814271150357341986270278932068065548953625314808468865990379680139021981983408006894743454103682806313725195814909348768105514763329529598179284214441358290790777003522873883239649415652245704056061629819838740660638736762831197851053097866191705625275890355430135319280283037140913831650758885148906527136235724358015584210028505522891837325753843950192142153396772175252117968215193450291033063631758532075009697177625138269428000887009228067248283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25424819347922921025020819297850656665315513066140027935927710369015327660042018271346484394164314658836265985789013093492489288773563791000561986677287629204845997377411928508423205634015104777637572574698107296656661569689456245424608713055777307080853579291972149392850770658283332856414403553957626971293743778467159812888798817537872737180445740828547086433111712742107220569947711415730996204823517738037761882219871530155435622263213987497275089926966551942881942074597522842430322579818986413459065125015132965009586340740644749137491086303676029713244292461443622067111452238948502302479558428285253935074713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24443282481447196601934196575535589930415354319465028229041302227729071499461946258753870005470603601785108785533376057500846279148035346972022468974732700066077430365822830080551743699328528207270804582654545755375334779823286028696119566386987646736851384064077424439602408267309839601303206634935861330689443336329225804221501030779412751037228777010445036810522368827757918021343682378495522046470460676564554560733762112545889008938900976048840050620339859624201902176121619661643013576286561683692926383316187780630586476521182255697550742219152391960752323769795365710144320267297663226882123765669952213644757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21540109445589324796578608241874210599524012572604830794922210493617517399107495928100853131543183834120865133367014642763019257649887595357565224126403799488610471197672101936198302380015000801566920309026014249748170370892286034661650561592001870551856943857761340387038333182139933491427809161886546454828737512263331505357989598653124224235206616400361832015529013883658775420439733710798650300849785623113613541714237019223034425248782927410297258890411374275682390676531383816717845725379289645941020751827284367089409131732621897817106639507920243108471079077083927980778075646068713720145888788404057851626213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25981971483263130186304715462995201716395192040236230904944171285114400409941118512070984256560336092519126306880394263204900748295127018668326623058455278603913052471684432924217388008173518385957534574263311368423316716283240360011665907785394411864858409041889572379258970296083808705401643650812234220420425529666887257156677777141601602129300630498200282956383516715829118797023574105775034126619839737214450031583455545140100348261003120636019784624755774687550733526787992747568819523773547519671313088057266735284880713975769345605610251762073531240629962390056263642310475180801084324776948392831257626139271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21286842887637991518740346862143729156585776882553754658363972843755037626570213142566700397111495357525682603269707364152561547815462192999876900634138917621694588514475988297194492483281176448647646373237489608027469497325900772780249026863394801524403619613102083562398484556620021224502368710296266443005617087634048090014692645509241384679413313429099307262872100015522229666379539000795703580189219645970683925202246579430224904409130745963470339534911893427852085519672566171864291746442412909714873919268179977490409245194418333509131317526542532294160920659396238705974332978885332324784598764832441903216621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24339827911703404696876308089638190337667389787536535456197955291361522274599668454726636048341192912521602520527606924878486015210887095849224518175084787818692485029059357599241989622507775842754566308629914764942156911600209546462381695301724543108225418403097315707024678786394311107522174409399281489549654701328953164693234499643636627378280520059556531047157183504828967874602614174371353482894804631230513746253709476805473040507276652374951219896607012985337236983014687236888839930855136920644217714355358666685516359045812996182844943678682220303380289907852694676333912804962043196125097061690270204819687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30785641349202512222941412153690793816150319003555406318020012356139343110518438971518586538842208494665965374124517573272386213876669604163335520092394898774380459664441666862668359583719077687581159203712682694684357747554380129504679358868249006060543586086358867702743636475794996315204951572385413504047775121827770833739797436688984967928915372738426687581950954785055858019328110305562270937018250919040427075633537670516246787761801251222067932108846985067451001362734818371893994405138338789527454046144924710743207107954995883290389672893450029551154781233756975460009155659613975930735641839226846134397689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22086840062294988550515314298289655000791188909898313453790988413473018614727634403296573381309148619637194782642262173960516187457514858435672504590235325289167529626258014868753289467349274269013800093352797528143309450030180984170704904413224547529986937561155124541772191054356113839804665733930991631583955134483879461936473021123942878559539676175454598742458762348933616787355873004558740233914045384404270163750943962653223202910375242985924939121534273541297566719787629754726723372486103372496069010222328725738414910994663656746949503833636349819364221555351055631362392800614776008470130648516044217610631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23871206060655036997027779906595497290054605639577564742684588970247160214526593781584137705974767988519599152216636934236051967453850045174069499488151935180228322258615556794597377609043528139674851661013550951339506430244844242626921915858143509350127294685070401272440021282352887028893872589632823281045992100057238397661270036958020259386228428722906281925286314508741044967578489769071169269349812087818944820558028137969384023738025339337238226369792052249168566172704489021888438263317890106482856406742973309699291867777035855537512449849487317554186438200454615621387312223491102254860885230773179810593597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24597296547091212799303277811999854268819715745395029131463189619909197542745026021750120077599399195278510501182996998921145573269524795097684643727597686560459306841416126957848844061135922817799364096399374666277593824696390777153333546973917281198116231732929945738505419825640785538427052461793496697692178473132429388349801692003180917528107550181925238957080340504661409009194619805047340325280547970103557812993625315588316311915093540006851968524163025188096926568658191638089112827955391201060760049437486579695007235238669580352308162295664034120987201053396817846508717244093654685913590640093453811710069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23606860369846960157421915230801942878428425562828539192491993224872050345888288896556738142302963069269289753099527500444216887378654023674575616963347421978077359645530365776806408352687110567168724129193059962134205107068419365482263141115743008199918067771660805584503465080487114198459653212858784454230965228776940375520021293931273066592447445642259439851098120250274517414848101751976048170410328398622643356202917907301773499701653930129228503804127047298029434168630356789655380199040844284631213491958573912868268271587532751016247180123269584021583583244112811249443409333585524891089610652254621102794337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23476837130616850218715374822896878106185675432700355067159087987370120970704264362936598506641323850763721518212037439201162891580369395222018377032512343275818639302430344175366857559969970487639267592501216311493609308027427389055830048680644358586083371531292619066025586377277174019426116860836555283710470819323793039411281599167671759790780910132354061149063057041720183899355660746791821804186735158708226807282528810733052328043055994802495512068669935631051708042583370627685524444533045561844773608900171040419013567649239887690015467303015873484091459010427906370946729573611274883150073226853773459452207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18542616271304349459622214628405965895172911107036617824945355275440756971044155404253451274076104144836596978323182138244750874355547398107869878996573050080645036860853374743141399216364567740575638662110768387472154258188555126807750613615131962323122636072779222324484877270938074584980258417781623597336883277078084512454423540186312851496426192873660112352048508772198349004906516459160127743725014444321348796142889377922601358944892495610540589298349504964492948632476122333789239774334726233201901289660479787705933283155864376928984460796634156695702388903201764842454788225273343656757547692886121181552511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24686174660605542220169352272971005286004324502239822542104979287253047017417734578344052487948446001088146723257673336419856249740935032085096968928678939173018992353106959961912016582849669748256953689812361514207101765933193512388545398410329025520183265407182017633059846215343996492053659381308531626948589569162759627688711992662000949996051930541834858741543421840878707958116118627878195853772166791457895729683630044443127670629028422143400725779246797153428464604865769065804550480597220290807297369015491168008614659187101663358814845507733952840069324777107681042678400557472585135096917698582228923672277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22445892837390904673061400105963027546388723806320594073315199828521020462405559848061464829429876886782103120605087066389387272825888477225353718292229613881424686105854131255710400306647349631376219721297288516377139068317286191225370616345459386790772652577519703119666692856530133724386311087953458376761952245710792147696377421642782315154558555204940659398993307093331018645866278153119724767051217667934966863596060568574452602373183350541869552229847740064698637532263073991564876949456465430582580154637314553327135087250464023939019423284060797555425755140613737677424009785515571105338656981101188213504087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23816475014221027401953759810035980443817336054603761726149637269007551603074535230112343245170758226574998879791491024767888654826074940248238454666649115685486586884893842136628734251329274065300592354362814389727431313970976592339056999630199358313638205060768971450008054030362136847859142502951945404643461302329807794546439529514565528765826981893039439003342040495555187073767968755156671715021076401586538888020097581270375200887375394375312560455937087302769817696758313842448622567510448423785589989800962519501728213543479698184580403381147276783274186281598393122801114667911844684736269909998452296418749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22932486523600665319797282176714532512612808030952871142561413397021001795637103241218875077436599998283934886665569346994586727998763907619115053161059701694742974714862641501638548365700858532549631154593230608631209905843477303859925746420516803203698650092269783473227942203048765368052649210142088950261302160793333125702887710129008106309988850205244591969738639423279602670983634539968760189458620043015514761113101556204714768867574133072645805258962348115937530901417354414147836805827388135473182928980884719394534067480563275747498823180178826333749284276271490044486315018164370628022847598940809122902981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23272224648315614950558664368877274997356946499521409595087306985240845578871064295020379157156118459071582047947160922008554409479277620426514742060025675221803521546221524463057508302832573961008586346001648888265141257626066981512746551059536351496651343447490896217947569656538993135435782616460639526282070913894349947114789674443267967080306665983623822268157961258187805000096411231445484632804631724627945901655691020054204061977118388603399318579633536152115708399869740535885413286816074307540961837213976477843918307826961021402837791701257044371112511475777846323135059735637847377017996529660983171615341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26577646152413694059172150958904092867494627792860925510164027201305963083703684697022706398735313984450462677437922782356850956759890249921936125053006301481723979085493393236497966427392126618227917397885951543190131883616552182105737532416281428799038314919559124933150828190513574197102985384254442389620965512539511144934033079076641517607448246817760572832797509773611772694759575989371950322680892356200160845458059992087851058179635169003529281173823591764599839901502110329163912688370097075857891915107801978641337337941205709771053021023753843600494207308477109992995729895079705196595174689612479809801871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29288278349869127526369421751821398327088994591533492264985766210738372792780586642404671587808845551648718820789068066220026620427400804503764499220152157878969405559236147829592872587564484745012351890392652980780060864911189312214155116544142672067045593036862591201772852323589440377462314994711228273037563369096266671977533557864354434026989009401545844552196210765972556314493325391131224177320331865087102441447463125391895170875612077972311129695027315415192364690002469973202048747342649622236124067578185349720624157835235442333980908266825073450484751224001985949207783676249261239831486193960936871149993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25473971748276959573184460181000902991329402476762749280796716631367868782292796361597450335828061317099944688765408457719566470656537195018756678183960984930488715108955422089794957072800386770113890024920013567798468364382418137500625314509254433157183859607717074547074137952541850869537405718149794132097418994511396711404363564462185797271490347073769230765284895333283020709882081926096742401406900879669591717782566059918570175172132186471350699896845063780617082979893026895551132350858587225193653789012551122976831395240965607338799567975367370532863936115798214071787273020366618265755214410433715954549041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19403674694272599515655335867819642705216573503175761207753792610751572231362687660578009474297937941987028912174123227884895952661883430978488110500487285470293388197216704243063385878574520941129684524494669765396942642463652386672241949772545564261036789485928051736672506845756296778907861662958308892604416451231549928146687560187405937896017670489550973075264298232586074256338865036525140257109676300620321422610182125152897338554173434723641893661885489309156798741349291274103747998826882786464411279014966651253513781058214934767140214023749234667950869490649405032182237318768332929466618193730448240616847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26476624572972132380672923786633662255254293311908645313048222518497710570290500979894672047730727636278195406222845437475493232741081326618607717279724224715649129400612039321479361040421970226160130122584912187579241844469270374462699278218449367850823697923568496624511317583673917952206619052312615228145571188942581296138099323296319057432760173283763383143881261338234108068725198663229287652080487189155957740266051804163115080670621344179906901410450226283539838672827316327660357040301087894953397080506840693773527509813640152070567760717395641155585008010144107519168014305629437997332833427759474082394301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28507870842463357505023832012658024611903259902303163937277142963090075832381678598625843795717642007532549902365773731260986880650528954195685303831166715749409306334225453821108284285059880772746030524114596362913644091317417817129736573855687869033529723954088255953681374085003348968880218475429114240088781904593101860135376206250042999146541864307119256640771312641831334248750553453195098147211175302899924949751171221213139679986123717855206403059557351223573038088622415004383034744139573982447722180413638201529041935265070455071431943361883249812989789389215316563663910189435758014656476882429625442504493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20592402507019320819081341884515434190892080075320552140841533903628796115254314902788252666873562165341018205011930612164378697154979260089643355903582049085669417986469159934649859827403516786877751019305683102940040372405135282956839537276693946484370792814276525191738009171358655878517794240624465087877607964419210367137951417978833471921938968789062292684733318619194562273463722637262458561047513532903031262592734515579955419696675603550243947066534373990672143924709825639565979831095291498984033708345138778595521930829007614690954174361953686968647626591350108033223599202349000390907525652925379931851911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21863136763251127230328369041861420426011348146012556865867765767443986270071048313315414334440597907135399086439659609704129944559590560694023886414821088896357116625869724121389268471080296470617994637464980101485481745663987053733113699714692214552800849106913463703600278899869832538135802153877806109225376486071011939798051598677982947029564002127074134262347379672415392645074956490116772049528546966065151032186020470487076658397981728639044502035629022675872413319325416323784007731795322094923924041095932568807306112231111669605798019380463823445477234907875856017372861293192425382816180942099689141502027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22039117122430190788850066367843094943047643327740114550727346364094304540726439384298028188940049520186505395180128234221958459557238567916925108704880215387022663304488780965100221232036525925807016658354942378624428990384797120811677387033639768455689670472572785772817234288405260683792583318378359090583759447451101391934607019694550654069771439769512037165148879574289958366475654553729252607176783334990567901731491892252786734751561940998937194673838017999620979454739043832795940016312140613232135952362391374310489974899434867985149157738123680122225581117067528980748787149622093599960540693811292521863143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24106310902675205799905088326051418832302218493494745872172894111560931884332035959003233426774997721627606070780407286415012334159592482958081602921878390581031616795353128966673014516585360152451518685351618795701561266889472737220463815995551526172653248093332430399761105996316599495415927328601374799646608897797293264081338096921346697809240171615143348193824031371335938569507686492045505541941571672579133113790297165948124080392572496235801756202210069515979106284354722423714214152800673215981530525272388950340021455147753508327092648671826995054620196642815136201066015191542747519163520579732180535721823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23090519157131253197998797897492599783160465136087210835592977723665463625401325589220647285302920601730854356883415202428496420088338744588792593106168546522122595020244564205453625611942108019399050353152608328541126131677220633708760496265099322767090996044416713405551964287764404844307419914207233796341263858047277087878394937475790449069983656401675752519304414655814135253588899169141285059793917138370413220409284823242251287453013885716183255418239590299988764621912816637220548144803952019292652448028070083777093756821122258517544009517930600524830286198257289593725810925844640942450737781729521469897111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27075884963988130578009488356272009463511523832983256974096636198654838102867458853965441009809427245014849289753552211726097246893334880415731676347398739904957151523496096768390554747666017475787519805125576397852493720792031024786263845495182716856632408759565942677963164879928789819503175652005431219222496960442740687114125266233020060785838467494533909671884485280301390586403103254849418812469537186887345645993188304452505253363777113351332482494262166929016140307487203197972473213799069595011810428571533439438972285884808544029436032245912460527120685948916401952453175039962165535157325102232290966416607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23091476508490199418388625051008146762915804704160610400109823772841005235871586572346132869800542284549793355265153996049780392219134942175715368445014122828053424408944078227293651477052010836668988546073874335640219171168717087285080698429436083613252220192172838475342408649735521636486533647885142538097464196090013922639092230642610244590539825980436709635081176311101591058073114110165559773726927148801213036563076636086444065804604653966048870129595410958999972298887820876075018638341824543057066107526934410790787385167983208827615930926106183738641197989430586532067136790596801551675402825509517808979051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24841727675522017126293437283505162611214033267047111744926540056590138138983613736714097750765924701950985315014693925917444621005079759722900500968142156072459043035834006558845816661280742984827743419371980359462529838533016214288935449234863902452032394924819418225587454280519143106996316647453283807907912145988265059335274195828973048086330480199093638562409283266183266292949677797821359094688893091510447079682244254737131162793667017302339479929984842949557634644277189563266032378230594710889455310775958187842889739119579994664132030941022385457098897848743026006570569649738532319529448981643609448066549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26085467414552290535580320513094880559176309787632967742249710667692069404500756039948229094578973893741783547776166506595575156987440193394800150593529621169193774474032536713109895704601782458232805873079160426136744847616241031778068683070661458465251292191055276862760278383177062335401768948370393194516517528242011175154962474815204290269285196163231877001946562339118688290771982052009927463455341436868199488993161853170832435780708168325578574313287532945154451368958267242421435231734109010529952487146208459355989488310330716072946112783495554131748525515338316143983343812244696449243099679262440823399141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25914679433900940063568610528610043643547846316433666471248292520187888105090746117262233552046761621118552712462591291759500254115574895837002595035080365545073904936835754389008727514549122918573388125857337914330195810830368153602410499420963619982489920601355178700527534849305510027246791933386038427085101653208158652053563297514777563243824532782626228414265198484120059825736351781882084043718388999188627230447128333936167777992003578015235255576910997886710601857504449261064986087046710000041500552364130939478752052036364041142343299577980909501846697497032460122329596501265571638336950360536266859433431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24382684004131877962066227004829232373246936283255552356991921824190909526037495885591300316831787473797408877359508535590234020109509212921816042457009172298394994234969315041707197620026240558007893887314622565057613883338063612784706188119736552771569878739648828556268384785852072534143303548103097912647820730657092334532243034144310976107176162405146764595560959376368485612587666350714389099115629754561099429578352089445942800673265712495265228514349487426533763500279758010511997626550904750990303254728708222261965205606654537400402103306780554111108352644898375833647716760773066369951239884124054577438687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24235636613242229984875522717418846859816008886494444754275752193882205994722128255831874901410106838007453413138141168324515927815089759844003594794050920205310654537664613755641486438588971941539274455318225504458623774596284630728503354521303813414281718658830667621625246526573582705407315732545920451502320916666326529849698513816750030249957276996119444426197665348530295641496326706620251081294529824466557387502701660445513702156259679978019519952067879056605141792767503729289421699769714656406166523152180542631558433588226306726503618763578261331216116374231414593744661693800384308464034927962205362013807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27051073461694093766116390224009111975043851800389600109915423880465530445805421188505474634501210570615349192888264340474143266046970944451695219079210443664271590170535722344044021049922363954867440477296333161334381261461129228613054070588319435647922284105966556575132843854706097599426447140728598442830455488068658748451251470842068466485299910699825650663971027048538932137142919454523624376356765479952037100372703847716328603747974614537827973100200831280144086778183107588357811639663754015675334922225893880865217450397854482441839458377001574445817260516133301484197987171096333859447686269572048653314517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21382696662106524751772237988642900221302074256127170728131745364686040272650191290222360119040267582507467162758162423685157588124105544720490591416895563406622523452490267404972342370152743472763547353389638995264442856031347226987005741966320289991901772976942988015926632066032900749246424929524973394051254049230514661695121988651704077696905870587267578827899071933296481247409488867547301271493136633440555379766354101865565898889388509691171792686765940826873810723458951120496915870014553803255057081261060253155040409795631167647213985734242818890641960710631107831609745090941515117313841101197253221273011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23051160769618289634026944852042965565577009974195213366615895174002830242816545887066635132943619048355193325806114221340105640352217182639636162287509542425544289427830807643264043500208689802057848212948123818792452318689568780086382006117139819647049852768409945453497812010595688966672391908636949293422103329727612823540137121392821944181306749554502568834428999602991527062494790047014782278549412470211988820977578411437414918155545201501936653936229788325856579209068357850373536930465685428687228394912938948794734417350824239726228288263564197602192591259509987983006250244882678450200300653986929806938689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26517272949802506755631493121638852028049061376698754442832735725667543357524232000857461262379759332234581537932246826937839950373542284857195371485215689307908149941193812613917161990183484911105402492116560397160665079951310864171422765831767465800425647136092136510682989764731898686489247537936747317796465661254094688658103091401732986202142957593380024259776739553088769263085691300377915071736457297130285829191350939423169347046764752952181042319118772515028757713523694695535163959734515395365290306112517554352401754691021517071963421939699916591868078461555537083771310970904474753920024749917425637646087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27860042562524131998752980353941268887489756206628889680478237186116585321327896601982778578072012514484494887332481873541697449871897239387956694830674455785171658924091631478761872956942143042124014651204195112663553838807624749121474564528889089147662266402867433925496043639689256123716835039048756808156710620809731364911251993025291454481069489871223269161050148436556694402977906931613111538960405157328646447217695255364455404926014229509206785928399251679871482491689947679860369624686432145197960228544078451319777469635307014077431868222485324957959765919087952363539517373808823089389428824440254804913879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25194358160054824374180393579555805438152423965016843610697815552416377332374131467125922552222664758382436934039703653693120609878101640002876583124520585009591477784362297475349124102933865275895014783713908889071705289321393618160268176218410051688016357394286284755631311356459525132214522838662413048151007693475681785112900792387011320726384701468431652852658038312903211127756801325803080029056792898408870315860593595093808872372858581932143497415294731417964191273456736550199672357717142392866328279833402736023282241450484131864583012827294184510999919196588132535967254345560148239066148557904464970903797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21510949601780995966077766447054962556566981729369887242374734589219783965283289532586400832895244520494434953804421000746910934683841405182815286692785405561666429722447147657486406050606775044290350705238188272647082954108051137441403823036473580134388178608326619355562214203688925748644119024167812827275592059477724818806482243020825273454310840368274795829677946166809986824504759903255860245826601760036385952632893326740555030330594100450675613653702610151871488264914786127551860445470638495603135317177606175219858603472557252799933287962687408584146631876416637219726630624390242901445296642042519431156697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22492172827298080417230366648221463243441209742429797990651486119550976132563989342910387707834694302508891975955180511981129353266987028682746528981439822395550108628671966130087449428738551777700123885040744442275120768479189645387325164679472866537198023877704822663630418965511654686343373769199018615804221511408297257458405438845803655352120839346798534904134254964987339535729867660767164931095831217008528699485095923490374073013442202045305110280258061097248271479612547171130857500032687848097566294985479756471614787409509065256532516402418084789422415180694863541241398711249320899709876068110494289322721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24526059238962277282559773398362065472863031038665162131696315628360937776279043220323182814657485656278657266644697357763693743895299360626916829640641914897614730867488533851344627480398839194132123350335441485978696377374079119504059870934062362294965236956854563501092998590295885309047071233769590963657010780946807458990280464838439733918601729071254356864858002918714726289711209960652308938789418565476640373046545916649265153274578282921199822927632703110957157378777351773936331849491599334380786880138679278490242018270337169924769415964291210675947689250911914258326748727363344636176734493735127029262713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24518281314405253393681859159644323083733435634143223479595977528351294731532512145143775387035386618915119083730925233775627738288382759823196171884988263441639759523225385777179502054103268725507872907966654700717196090595149869409567083831639823821405716507999920706659817944423504943042279683429305315592284364364548728891787996449402932252827749893846700461127448857622887283365560672719609283593339991224713400183605517312193233500221882697620927729936345254928280271746468819686077134092352438928687590818875664918808413909652653546051995525202997131962212865243009753061066973375352466615862270981903764597223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26371744163140994117652061605509426984071317845749200198996385257893055866844035127290083685489383200542063328387371071895422080275054746842533332004278138855341703945854308693704596310110507398071156652039908892687903455480544307538903340858824571681798679079351502641895099591623735379942974806412090800111436797470590648359273653205808740241026451311784175272144175241659233850013893648237228984904609512794673888746152189340813739947564062529245986213269581112770684632134956236841374436227884248863257691591665408321350119864043929262220150459401504850859275773140141491741068800463374436333561915678184975391713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25896907953777452024709938315654110949782906378896110011463131212114518794167072433332833490342056235301032642186113502279013680072672826857024949025891356135273015559913488776689016147198957525215102192071748464218075486268728337488958228924152871061427712542491558453595553319070527501978076435984653722696601110224870707384598083151345039902826146323249284058510426937979665960375732065845006226407265216395618123854329919733492611758210332565541958641173554090690161768916238598126296586102765156634278497132629199886869902855897540517449342590430780032926562244114941993246499565494517862896836552041976043750617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20215337308137018578035842965124609039011599371167110966800668487083483995268894772688598909611974690929314993047154096928234782711587585355083855298142267188429882290399014350576059190686996607570243881759910530925677115425150606164506030238338809923201900965504588001132607184440369422806446553663149889435198855439320346666535107501179476089082925380388951152655925363458024675744824424438638205542429637374740377238487339790879957201329560403776650073142201338081474395644435781494986290651916866580743449906130364277855825818813301396985153415259440904021132029837655990993939950188949267795297250722092889048687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18618716901736429256190682210752098779104058716397716723636182490741603126537406844715560623011180042300233069345812216616167988808042658606783556488016899362298142654009031357408184577698915590002973389957132042128128038034926582217202650285369951067134157992674194212214001342087453370659789090118003960282722057311486917192656363624772476384212627532621413006174680919975428137084512252693361750764371314852844401965818457159751063221632071271113135417694024422534239536489685192399780086889767226718505885021773948363795616601699734263983651023664456315037888812485884460017266018669131281658444364503462717803027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20185997802478474697575628472493857069390664114058520448327616646894626482455262122863530960798221279757850755525216731474555500401912807655531237402750809226086847848378844192381952310525832187086240140198633820872614183787424455466104829829790671402374930268052752141037713329591956700254003625002523632766768854812394443314092388511323338695885005246692459176430680347797488774734870803738830111062373586878589595762396025499687027355705547640925111474873017682623481348024122200845541710467522914985908573899163012214313198157784712467753324370213225917511947191826282199902287364167644389295038722558446609705459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27066565746616977271288394296032771106771523020931138762624482252960562275615209402885137390907187442614912386792800286208294804723034888620547904639697376684391717084425188938253168872973835366637141260281632560994070175557989162553033422832018584471088430437759762160221423110079329981068204434633736984540172558464534220312154428924399505539306932658557200963617622297360148052596721203344319536915872125654639182184430717905670689838845123073935191677346708738978453878977603919347301978642026580267970780450745135569927548428429059469512545864174242500703129008863378872175410934578226327223281598135661632302943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27957232277561888429641182146288148210092238959770383487872550622901609508249973711916089489287569737309862871640612054651599723763338013018119787582780847810358939563972476515027941069518263678725066693980577364003393169077906426523306080225474086759215423369732998157119398722472279086175626061381500926662288713254012959250708129666643064619273991467234304964886762650043651731423776387732331793990544022650974865673240912764799372994138946037087476192742214730618716337934185713291069641546679479302393296895815109419288252503282508317088678627688854436764631542248780481285280088981339710822084927196397687341469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22756038678654157759820661570607112149338224918741238231693227010743873732714340297685976577717309770186182612560955111928342090457780994448986649516961471393563675649631757905873832446282841383954996529299022885585278728853584398632359511126183405766875451214434811182996381732398832613139167919897252836231785694544803687943292469714175320160313224819910555950466243818990876308768536162392921099712237924735079677324151584185550621952371104078690506633197683231555262576788891621233767343647239390724192293412685155897468683689817020774879068372916336893176570178295632720487704437218526947800261991004871582815399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22243538173412469564343029248421655086230198204718737523715677334567230282182295290350493943060532419783555024511179615941447259516669602241033891749921345780704106159499313480740566610564612707883838895120523723393517397229241095626827152031267833266243771539155341424335714017493209632134880070117250176348013841483275300602154982693135923642241538289962401818094493289309365665382642778598184395484150399726615248723837758849464471323920982362645378960788040097731755158595097621746627173142229615864250884470496727689133690268652368591181652802888550117793841378452703756706854213678571997120501016113637101460429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25269032266890628280768615400624258919110406326657590463524131645978705563430884852056953813927441740143637766193395499556044516043084244474737112239136066211555519573211892291431315951338917324842578425983238255562897484309481364958240292637154820925357124926086949685349968912101652255300788950777056322654757287854731786403832394061755683860778412464631704545311465950941769510512433886428105617656312392949446873027527618965405249278500158216271984376879922593151709888607025939938389116412550012034411141897562578187979513788294262469439262597569191764431699383130632544403374294196921328603299844035979907125783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21926778553158151812355808427193653911305637674169849138870572331016403550762659430919353272299924901281706200805864712769674107651563597481492803348184037062723831993936901232045876519746440683005156401292015459467264312784166490735002759493141293287690670615406541384747542400864687696283498094913993725622728445317056979078809825352205592041913871883482571022907522281383649177842289669777310297730879804955514466839211072445095854868148309408408790662666015310330062893791895883958075464800374602243742212889997716604637567180450651272482622282330837040418664311327863266805296490121046526114840534031025139479989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21218827213692817338612053954099313190276611272690824677645362603432427813866133142355371160439508085077223985042764518683628468695559493930703391637585012250468367728044964669487433674320112348430905344712169315515426767517808184357470638703216153275472324483120760290083882426281363207596370209326502419335003478963747521682536619059977027314430900206501572516174855406487331541237526157210681491171507272928877262191996300944516824492025347009159534389026599751548687295514813959379649233601835860787487198695222900559306186009142354544853631100006388710364663286979311546639765191855795645577330147707190923423013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25094902440156552787917100401967187890058037747488881262633450964191227451657357444031590078831155146556161803469344438620534919869210733025375119298238812557026175300006730356027442145747240886528916242247306537362531787643495696300401752830507985607069120947869087553203849241568469085710674315340232990006277105671380028203390504421514317463864022114775342734736194429670745619641891041666297981572471672957688292430635306439648358121596034590002806988001839219151750501086191990931524923464779237080639236339028619954518408144090221881318223296383473671741584855861997115726351913975972940091736553689617071391343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24070049664492888987386684601365228229988086423416014689248582562716420728445846958673633664174218722880462544773004357092535638779014319097016959894966053380232020195786998043689945142325734709270327982539450289626871861854705641079300516631634017242764760381490939173482005063819161594533679239052565274262961529956988306534081482847033835718620186047925985173740735625616265127730047966749869499934088945954118296758149909932001428523935468807672495541435572769982626183648085635842567329801273216537767630046237147569942160468096014779960571973244569623150369021517289820842666102656654830510793251563280490625367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24265185238511915164047559610194881228866600568315417870950641850746239576033763678087290185646710169088180735734955467476610015917904227609491198279477955274436122390415710214701937948483047116007553871126382131727779776692868339077795452806618324961972326575180317682298397192645988108401343063366919117567218344001419458312100800009641754422492471453874704435098744884638674421604298163961214439189135163201742335673050996817053326415381105242460444066642566344089964939579468313374218416818902013333513184810666432390988898403927073229892789090569339437282734769799657473217146574643989945963402774130566485362679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24983339426945822404591858987738638034477406161635486596897133536655345432887007547076197389996946790337067506309119906695337377371988701328081013990516195879999161510710074747082018526828594859309867878402513340338991454835457519001330862160576576433637283551212996570368206816485854383495474630136271196235309047896684242069661697125926027198846111613957884104612246452252825043813989691606201297434877223530289840568768789526925401194685479853915162414792751297628228173664709638640259199463854011602424896352225951124876598894592509187220755023589812353882542108808564078458387394572999954854086879700757615837267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21638196773899591476919650347885789318208503487997104973020575785658017409605727555711651014093461350021452314085420543742819392198835252479926681435937702349710576706138813181119775281576323897888905750858019057581108805758880661235135837547075951437911643642281648584024399311424502940539609259353211969020656635036861684135367163587343070496362108108001685283986654918381076329010591649100686813834062491462458459082209395222593154450012765195590312909618413055897478336225510068597962742652147367073264296728106728500354365713907935837550211415994761852274635802042809599910753504900326808265764942918119603369179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24203436592677102819235177189528651508953570678991343968903507514664685549945340832300964769756345043403604607822223400647793605955094002208314597410967896921499562151913712467196711313241583539364195556354080837245913159063636483528536013827410196627956537324320260593294261428292353312085853366636336632295941362671710184865715951167201787914698572369739622645658715940920877069208112964443935749545201284881074943409782947694761723344954053854884477067027786897997777305615837243799468550713927246306581364797911695286376990006897636640250323355595373698379578203863379632913330065298940258941941474989474475358527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19805039882077010757972374535099312747093271747309795837782179712977825700688581152028854349729103930289270932613699282822780367277961954097068864643373823326745732175879566124543773103289148571093619606392205096552953385791434819501731047389241119120030542616347688819458288637751371124636010579688834578775577359809644103065825206649554093388365116240699719878066469702643625167514849913314167101981209396888915192668424055758576887279164032788114608833212766613322216967644664723898611486665042504882295847693442165014691432989274913718824013326562784928548526194666035009998213690277477488688383686419167073805511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23808098335201383652462709647778484573570815895647152615967282853688344457322548579948547314529159187521791182861549797848940003611873157815821113856835681086891744384020556238583091193506220205880256990729688337226213444559203420862295523633711747207909732016760422778312032247221693480350474386519453010219678727062335534182610629375018759190769384283397222403742242941865644232959372302883695174022477433964999922405672340987096494567766705579137652633242603788944528240782869154896982981843352936716939837496391714846968776087648391466528398836652161267303897454841672433480148203293330749221461178444643242432751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24310224322751101055909470572081138166395024276892901030241023813901923808074202592659121948051915115947598551828265720297642630422933269153367124168022453102382567884341276903606167330952614698529598694756286194587797884035909402769728269113766330935124220909899917448107464511685502918324981834764409430290003061948360682651568474716914040079412729081697309622981558072132017773772842361574985589222644601508525596126061799869994148931033428472499585787450380971559742455980731316685334534132212362534433987235257439369422326914892311155380218119141867288403663040204261668316088331583408996831154865958320890152849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27372760224651059134131206853519198116846451002280991946757530215467971236076141272783812612975881178592043774656063847783135407489440628240900143874709321645181256311308824138900711802867754827677249683536348659980456080812381192708366270473338694324102625110324776823177552567513341905443307672495391969408111042096634272856117837927066933837173311803797113971200270762485387931979301538223273938921483273329490458743072511255816151415830536946546649464315222015369860585201058188845834559919102141541467341587313377245115741753420561705291086809405522677851895086465916274257441212967907536419715963030390016086233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22834368678314167849106770942859962941726245297438603398028252647679717591284307618524714613497479866904709857092156886311243102977139323603383400333436548326977465173874016731262350115337023438931877037581473335160150658826605120572460363032187660983269887429761959041728826029965301583621553002484588551837109975883020753382923489831738843537513607467210190300429393721098956268823844027151847730785855822586553948926367623277661900703672000645819750429906200177447554337685693309783892152198178349162706937497334665760203330727698761780376189965392612406716605018780957124254081938662271982305115400423370191230607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24014601614404950539270720197693970152967537791701433785497793011221658762396880747559477552411599627337898074877271496767545279458991794295715268790721564503047539218750146212690092476079723572541091488337721453810687539534938222185965253099913289536920381210032266063303204197346044096264605736379590555317693322207114512468518014097202270687811564720649315916220672895245225694840132135745499612730616469961712609692653367190150661864832388471525076584534735696534289034081514853599163255444842462089063421209156047659557114684286014690222235110029835356494764405361398859472592101853291702549222632754699306263297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28264219001075466715488545278285970221217730867595540542000294867206667891310026857290010166969165831530460732831109473511417458075337530032502330039430451524716144950229221097423389100396087986339539068521949943587264975844550063723456001158582039073334392197488718140370151598585842091113072717577253292317800255653025281113135095619832001739227897796145341380325120071367974600281539703831197164490693163351459764818757356355140518142002950792938977819861941525648570598694140001841751801965748072829071288513535929397254992461775635476998034711957401601503968947387205807215991191966958073907622911147049323305353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19606302035823081302001352407357855857088593991416554125146812350453475595593995413423652186644054534579448111490577953136303107778534893075200781352739984438857778302194594087989138138198507488442520698116869569981179374513889290886394360681065524254165977216028521650873816908419919566340782041153914440707756319077826174392429284394921579506573711388461659945860465576826113896216413918552514497755150176799432535778130069770772439897542129671218910692724017005470353799927225093946484654758158839190807921599854084283919862257583822678869185670949216556947982264622441807405943567896247943028341100589617517190611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21989289389078556236687439500966871353328511474483717792095215970430633558461199918983719987919362473655238898581046089018174377514171341539975658034301691291340156177864428476498970483458990534092482087549180424090888236058694113428390105487670192909633004689036141718658148414006551722205774904561435785822888068066540386834974696278082878799147133877772606597233823682900133468778322284934510536129280552222396786682172592526874576595815548326721160095254591887119868677721857849446611083758769392185277221752793428078278899025497707956900926847231731123508683061414911356241688403667504603000803570862689160482813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21188719346377308332900267927092370828434128792248403030588309060587169739349239088738660289021306559951841302198442958613134285040831252685916301188281460829587024712254190512999015947897021654718310840089630210107881074114199283184854505753717577295594735758624981579988491293040121101525565000075831575730092520208717614394362057514617535215717005430527665211132608966129534225198114576024897637306250276857532112582038808281199564175609083562299213360543165434164484656390037215263040507408209128369670655220110812757516110872236452881084381151066538986795373025377186158204141591694176061185804051922341009347951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29025668968971741638729089708013006397417804766521452210896122241536250176459396576890303631862771260223719955883990700204113485065559672158320456593490312437377271724285957614576212198207452547342751216573274505454174716413380330096090134082586172784991201121446372273109671361733491230769747393617967361781504372237165086055370004043633583914761080727769501497921841540980826227328046800303456705478877786244494851513892863695674146930022676549598570031258081968460256796652245995779564985615728007469830228065115175081936895336978569974427427802588182536185322708100881518424997458266040363729626380389154132545449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23263781658459703635642129569985717942252451565703667443427984461562200187644425359072874847140888748585712629679717649661142011115990878290443210352637436297873539027805445712647901294689479538793883653547153114123778161601722068955591373007936690443082878687533393237761314781512870699853079893629566860869922418582691650842554475914774306192307694732398160815983124036661260354475983988807868351009170739678223656411503397735198098377633626958998405522977956202483521944391999804696031269198582633300045105061098853983795764456262606705019110174614648794183271807587577098205943808192337307212254751713813632431111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27086125688315599841773169130438093669851135985504405104965305508563294952375969676757168827258705426150449831237881986331599861519391861159945009486210618593020209977867511941173975292680769712399406853061146407287862582566711402934752714350871952949212382936003747215903229759734700887851296401931745101602706240731503950177599618658762596388094628621944073092243339746287493500476849317318800048293112605705563764320601075394793375660518359051251517089956953121817383685145822287409949441316337903365642610718882923181159042299860356847218014833862631942692612982760880784463787905470131565689462982233660574911919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22267404098601721503919693411457398532661530295196090123324015002555004333240357180752450050981062746468505389469221120102412919715428415808694726601273661275493350950108670635656136815798369967382614446680407798107770209107336317737999062405900608309308271562847608807901868649819429973436311790434939528368532738165874586675640767412505479304049891679493314829454267939931409446111193148125918133676638865600574036521361521027236554335790542813507694239152682380040835219864675555094702689626532764789948368022376596808712278222897563924981926786718546816488023298445171404642267525374782641250928690132441336842113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20754737253632578236669532444681068588907074623724504062747354281810614744437724332131006836251940804193823279858463643873553942441910498799380730537209474426823676554636890745630169518764856141051838325676448520353017607132849426126536986076473899202791106303769776981434569210951907468462949547863479221403050886244668918998421312517060939368723000066038936082162215186730722856477537645318955447857151980148695847346791865254143179287887614500084180828079089482707168494517373287627480038019690295061405912644903223551961536544906792544851587993816276323532879636656328598826640404422663123169636598839872815246119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27383012913207149788785583171256390886233537205769861977825107361840682179761184281707802781123717665688388837607376497674408089015170684208236352086403712344535066261912348099802794931002647454519125124387420399526495080495471386774916841325872380917815901432541356528454360671588842037894590652764209062705239242784890968374174857615401389195372766947353955751303742825224426314236733921869314126799793130887097345018457345434419574942685212231922998670453794465708334697014517091736671406071180213294712979232011383352409037216064058766260202305808756130475274372521088308329339438373538780809334879332112875133771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27563322947831524354941313200397802771300355250744978811491442050926193304631241433356499827392341255942399341678977564050166261778724656512924715796256074668290610932739866697545920585736809538180608439631372086461562196242630033368507981975296627648322010561475335801175250233952893163015168409604720890060027865696282698532034442218661549292822402128113520324330232940018818397824914236457481897184260743685749559817423532904748158168793237982468230745253162502078410727256150101419899804737975625659698789638323343459830854944134335515996681187687578300511592580778269157220665907384031550914514663954056969476317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19856204619592135875511578433246979344968656232832381327554441379393815322310592647230068374819991391154662263344415243100579109015394455103283811484907833097319773110159044808277018486553576358244807524312688741147475052520079209770727576609347971526193291847671789571087201707341939160701019295103130479795807304111415175506141900237021932583938542675657198984188537017177900700552037663925640205897243018939265104864086807262606995132822397966472493827854066260580035890073476734180384759981336522722687235701126647501336922643310423059810635795006847162345691967784033058519027232286935223938919856211547880484429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23279112550001993279410892008159353891488440987456315858161393997418038107290780460495972610136575702298479225664672450949828712641894701447862143271106707347661366548989673315019408901473923183666119499068622121031072920712476918004136176542696290436333217257607018912357533341134234819567955560158506979756160263185600729446023553532445277063471947429491864657007357418661366769422631726443219577528137881836736696824263167257306610258464741894394375183357912777181926618949735200908975169299014685681656457333337015944738692067616144465962778320038683559261232313625865779416557100536622223880049040768098548476887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24115872628638245710836748345039357838344680284645242828224015380973138032731388047566579004448580147539538188671809020616700389817109858638778038161667517176075676126808231870487912543317572773887691476377864574132674399938342742476096801818840141942978257487391118803350703345147278559146472444729593675111749555471315796862891545723564503075273975741772733689765348435678558163335419625802430019594020913738082511220245316623705857575795057564502021529374173621500382870839638295164654161627896538141148630016308468831717757129305851919956700679071947302839081096834361081612868302977276375070597179237011106406083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26826140759880837688829743359951748368123044939435511895851192684417027204413821099999786788464874091568672670766422635510546071892995805756562725598909161091338597554258313174251066372047433572517789094442453976627260303221634155596178071928901886929773691471013300267764462486804189049597238662873820855986607884476527360883913588828188293172759323464361145956654696602406921008412630854034654997062970921000862258298750208006810092918648245486972673495815729929874040340412462639482597438573716676626352092563711714278144404546477477422090478880722087068355592913747112681508309939902135763418119400013830352219761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21259245913536408431130040261402399593042088377340524682273099553499229639792879264464723952296744287457951958822454036821252982876562733092709736861231063879807036697876272342560451446717627087386506438215118716619710810793779107465086143012915308676227235136749439431037088308054513194633098338246826636299697148369918801316186581588178198952306307636061612862398748010861531617243858056251677402361602559377967795767257732553741455173292785800770417730162100801871644582245966581553350731681191530068306541173095818712019922580125643493239378533532258089719460095000440999031184781948365272069647060087531407407571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23865657250264606703591602179733819170964872429399719156831977611667821522840510374639967633666847415729057006074985068182138753431938319384101554474101286229904109677939072965983737877505304289193041265681871209719269992842385603213143168529801513782305508026661988353337963232462150999563651585103088309004498015663015395623872357176680822189511744555685642709473971674048512272612323788258808024233363191498024365313191293380277205917062077371056654469527202074548502510564220171470620990867809709194068234227349697732484030582883715551067742308216710955391256243491089351600487830437209826579814951721895777393797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21808716191833133062746752453882583575871281787653629356045897102278678419109484131670375248616664382685036069150273763762210458123658025888045563195606395421950158098015360004965111111154464988149708348203692685392220688656927841843968735388175426217858468834661346531089051370366267877773573036509633796877206208950471598242912503141038987664816562912957161845175687902119906648220568826741523060635901040607168715958267312872920194394247246446829291047326602306997099810291603874342332231114606634362557856841112035526583650258751365120884836719268383402954046529359352212649083107028873357317053855621874352157533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20046321091420564757629702185661431661461106759725686407249841853520993912968368747568185542381913037496980953624430278997698921423138549273020542431882361668482896347349073968014614478161445026346010909674621255970598002036946502514765767433455297155162522306835004473243910114178852423266975856412949005355642082366725812616660468276725218205244081288075888527555693132043500079516769652532385753981912335630800830436716698208567993350091223864884815513245801322258247400301373645144476198058088430092787242073772080791834170692130753312131697449412222991929861576192056777121604636584232046446154889082218118869979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24497277275109324115339340530999448720463226006593401004009326140964294150840882050522166139449747969735621224186604442943161725966425528578223742025206419030031681835371941042903148863002473090458322914078202634899623752941927055813007749938837113184168331583417302109277884473118103270955591450879194821889656229966091697231988303106187991945319858911755701329102369722443003586913219122868854020939208089546825857647886138726452750538639358893245381137270940678551865263744092662335716950757654693774721848961083865279635762369617009069037418928774762337661656003860417935405796955069393154998764010361675844469891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25374874623726658066299931079339217511641219967763499988574507904951099406268853334199002342657219253706750734744023789457706462973900730407774309400869403732230175508236677630301464143739205034410413713849618290209377369335268224181892719290873550004303780775811693618032110862093240791667664284359646687064089883152837378939500880903995141968484356243506259901588791155961623121977309314698062654583053174855799466269192546102248288139892655897815923223169133813532672686536882273097665853011955075205019176481777300686269378190764644524358349612127633606572777230994029141603095274608720688196332244973505256304747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20153492965473103689007171560743120407296058746301860664703076516763484365163976625690404663041929351707691274308525802738976391151054968580889797337029634124125171012252996966758869254944391781410450471828670962382386564364433896342963923966758471525142043022213769382604706645227064783358096905531706931411164571134467906450518232112760976043968744859292445429076037016136106225733579176076340180494535512982980942339764610707640492212352457473580024130650446155158886263257678576067372366831041515490635812663882668720456178021652794539782273932219088633134650640262787530491962813693716635415871186685423966227751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21110118727953895545228641573297140750866848056958791934117323080072374426533716564972307059482005591325140897187376301908829782333933081724989543215918633383282531536540202245162951313063581436990991703705778211221212632683302534591011125530730758400301036393655612831648373380934196462083075734735968350848965039294286101453749913453243092141583888637572912283179694123547572742846295685916499497915648331549153698723586770648157877798599893015295260416250026069110718075241564037975710335905094655279026695819387654839755229379074036889167862120956271231586118656620740520369379702590683800081016728246883100516923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24742027006176330887040209363426887663934871804140325720666113031144014040616020426359469382197059910662235293463131353313117196799693706190952519938049807855183100149583839736106858318166569634179681906531016001198472496000237602766643504112100631130081916882912673241349988267703709046990317938295326893572376576893003647063458243415268049192732513679893896196469603809121994257710328748934953926953656030024983615117429141995207861728414461826421055546555547042087187328071461288687048773618904334459730657566140938288353988696890268735262879443711339382786909796583125828886874038993793513929806221216869226557901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23730854988860797885646063840477887939685775428578747694372655756045510036582699472613423085313114476163743847920388149352154632907684874130763997766303037876156190824670613109108082003678423869197303419915440833176301723352063240840314118014188187581465644750069772701423058385544908855162442675879236807960643800650483696281414850566139716396817957957356829467806486743510829599353585462365142792044767245691749028405520511231378506286241294146965798392176566022810975952325412003171914752043301068360500224907800357817991115636093939834286305011690585505712206452982770869534083608758830724562429797726802861261241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20012072957998880454289600343670255005149708104600311262190580105669968033782848595560969319645960324071439080504404406859543367662413616432118116261798675359152777834246512843242694166096843910909939293997006225418856478179663283456993080725632046331031434180657396080017314962742241543761881059037828052941463931155639247229771829074231681531065845687833185913669677962355552839223829577283526102804976158744879033276647338116398001546817255439983263190836438557976918416127700852487152680560948127200758235672584388655098266364054430838959307531881473026055145999117997291603078283999849341977341653891196184149677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27626702450507439429243069478890097691922392744071657863590566154897064660600695854770736427336914475053584937148665079123025052534814532190724703577523644791262833544153033715232221794005729170851654754060840268666173501760851233810530437766205842573248178233286122691209101084843608707506884531819173528387289613003266861966246790912350742534266127897304104624116512049282201241086240601368226126217281100061810002862177337811366568467215787167254277417494716469638920933496137813990451850681754319345061546796801700994656925998044771072198737925769279359473773073380491825398942618625014465612414800897090661521383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28373804422788660141030836401147551365033758493587430332871053776025478027807604694782034218953052970474161863241102454580892407295998805926408479245164615403189347395909388267119068885584324872892350281941118669338967716370756171071365013558362234406474627705826524627800952383262872637958011817157970158624038357742821049379234539557886756914832169664992499323604731835446896748523127857929650875715287986532766275314302115711253936069230058771771687774263208457338097218410886323109915965924601474049525312451304277661781932620955077858833686763363013142661384233775633745298893782455262756802677878637104958319819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30551471418135494186365559602055918492082930105436586379294412234516024366843449692117358682968136311633457963702833048408552446650620025200042171049235279744672577213810966417809994276276300635656721511905826124619846232830844350084526334587338726646308739078801145678494796949511693897551535009033304683622703311347713743617994585506098711569780611221997214440360939355046984921771767500116882520334036354020260809159935350705699219588793673024277078866807761402959391381301440076298886593740297393793673134475663250964874535364961833327418657672693834952857438399695779067155393988460101428019490890278303359535381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23846351352749183620323428587394058524336104497698016415175692837198403547787829256851252997430362476694896152769047652892075239661571014334245379064146004082192279871828150323080437483360608424486903833331082846418454919460508530200301841150768536244590098510079896784320834851737629708739305377656324619978511852462205014921536591818474438950272252104641793865039860684489658184869588257907439983815883353265753921337518585080913687093623747400218685271431869231003332040921414296304008665498031566979186698727153220339668053570291774307656742096543298779611145224869882510812335131557152416482550597832862549737951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19552093710665319573504086453331397738208137835283977469039344047658644002516276868295309734884612687972413609867353745759694983361316803856006903663886224185007821486216270337891801075428520850863784112761905606265168861543895471252058562286059635711307044782565951493340509491382547714451808559858419343662457990311917350601036327686548607379161495825607058729016112268650062555390289953222952675810190329336350363678603067250476205385467122459916704683886601715623614937567030133397299376285088107770851537687020581368085979263271348253952537368373618164800368726636219002256557539524859377643749789817971290571713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23786253006287721361957739711473978865036572817821571496616737957977955307791901212037632164537703410552456227383175597664708578452592727352922575219895368288681435263570905382409155771713208646998953757978827247244307382575948177983574069116596653341531036469579640492174144766927833611104013623993160085447592546177117674098054931451812794231311559869364039892950054425633159536477462409244581485293092570116625082102765569345180989463531936559151546110944517136693527824180758116544150108939559993679901499320095310706070473470544775547103824173321559178412709430058359365557636694659548130164209144202361996679339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24643569814254264881796502918521221021700820274230919388271477241410654621682823049161871856391968669602751309207665413607336026287522266333241945151982543488603695839958498391081311651855953620435966126079645536083710449168339933015463442722617132695178564994653880785457237365406569697439032199334839489793877419734893461667569400582484812880497980759653015665039105971380705418331356764521177995970135118054954493113252691318012571040690185316047739719485832536869772146358975738476588225010874119158300588431712138814735707118385769251562941525220578475812338689583869644590965338950524143833731056259767099198601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24429230001159559841768230312252859235787522216886198467663443288383943133117849941785393278811451495921894645239722246411487487290209682472727263141925917729283875764922079303094575243912404373177231174847604915988687529509173897454333730916985190908987191974553410111502425456236815385829642376948135019250124489827694552997588079655535055414480250493222477467299760613518284360113782501208700857372318055078966403518707775527361493292765683156846990736704218081667694021993622970743973626486717254277658220552966165423049800931160845431871837785936872920254415608552074226014666201278250123381124617723034456709591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24982538102372632589309688264590587867205644094532404672993088041817398936228769079341269353366818378200695850248133439509919280860546705315888121168222825610903920184001131715783773817112166110402542685552537992377043414253975658834730289582189945939600161014716607030072125686951245496985507686724111452336690066790433385955858017035678712594811473710213068077718490378022239832011080126968584261457124730787554033035459477233927752663607206451542535769704859576557293519605842934614937564734042496034808299410040138164993140798765506200916524160819117059718925270766493577219841410004304043212439948559818077577173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24123209294005117862113241172167485854584756930395505733607696598612703300282317643097445921297250708670143069269480083460343628692416860474889056699447876358237514231888455131241476866250537286589716909759242014155727322735009069465257775850771359231002246217250292097217386208516938671258138202625321285618290716747440589252696980064536178863895406326933833015433723136505277947863334411460687564136639758883291615057893394316866769035855602984080045787894815774163720651344076047252666050943140438823542107147287052352535131559013981847894322054231178258402934706544172375672344568799086783343196103946541994376573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21830086624561113542605929192692364241181433925359938857834789925310475579822568014480439354815802143729987871186959304411825158089846859123807018646658168090637477801211191035332130183119860994292930624558528996229489064800986491947901948267441511797315787218419246100050089147217352896847597153422239916776596654083992869246358122272270383435404993891062845507342184569200618618285103664699697848137065539962307026846803177382184823092060087748716281163654389570480950990751072010482171848269500293403340924913225181126531388258210408624208935405347649664021435334360594154323217599757412070470097763658767005787367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25816318395700561153589884176828530461069554944196846099226458214817799361896967255695696482625379546541626490755621563939302957128114243862179070650396806725347751993387824183716651743855049656392992853630756108020299623983964915025136225799064874308793668289360070229095425391750868822410740938160525037393853368424740299094976673751221695464290994917589868209421754807339197259299624219705167198968258244276264295901311445425490281566728509209509307757553452965643627804134754921775151913740817760310080805031026753336920623967235271580632588807401809111045030552305245503954027728336850681043012119756900402519709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21800560633415860402570170796285063199205253206150752630343820652102922809468254230504116460983860328675643793012919882801843461774030911783885393608049697246975935065855270989144616928279404817875311740952029095924916702945224160851024013622863744932343154376103317085812174562141631895586062517455520945618405436572506017170471945476888840127823298420799254463921978171106853256916837245749116692950088007429108491153096826598446468889584754862191661005699970007263843424804202763281198994635968470607379492039225534992834530903145577966590586779919868965471778992405645058587925811123770408839985649950683564774359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23848359204189987156093801536820159672759159862839637325024147428732914978860180699516902520258513258160959940428783707001563734388620644845584477847974837895813424006331220112171818656300952525695780327274926035241723849148279791167240228306206833336809683136464103289423157050553377935864737615144395902101793035005648220466673087221630524566254053670901740121245676470853304223476516842359124299873479918467688304478842064201040746252083058411487284390871924399319761258647197917917592688386871810668968488073728139173882700847684831254067773196258960905126457774255446718076895789571670552496015570910867573373623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24268706774140773678980080580629002923770929385879200081188398244095817312965146014515328417502718039220554672955050674299419009895161069465739734584187711312560012616764117268350505996191939509164193580040587961610866041524445754314112746155464253843153422398896004835619576467078532700967581799106209814483590596876118005181948124268048691052975555704460876716483882179149806691906253291959179580663380053846403559323749370604228152012917355283688177785318588495651315774644678839695976266450661471172294048784663309772584923312909881642473368774979633382252252754110802152025910202461690726413480568675478616736779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28754901946103784594320644685106137557052855705859729193433586928097031382196720783490293485938498082552452708686141346687012268008311344216901824857538778518989633767063301196078619489468868916689492419460019525394544439324431418321920124957167745979256480749198315745045246230066409884270624092682894423522961427951825410401926950499001352305497652557354930701388560829961983631931861448500650908134753602916091234860417218018213734742109993230974937742602671801262349471744201620255792810609231677981249346331897068876034551074595899869382252643224136734574784295521130343359499125427993043071128855762844045474753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21356104918921808010393856421823542548069223545103825098117450933860972486415351029761402861748159927886034028122670866554473301257861965702718465097723945117788277740093632490676609693299756144716509368620893349316015083336295615693222915643694355503084342621207996699588639566055277837362019624105326695522754350360042610972028162525687089889359359493431767752437782962240646483581161598900106648533262722061066732318148772776951818787833371285773067981748522523915157830129401815763822107276627240771289666396020960506945492827734969293800352175454959651047617934153993290821111709421917598716660572770166491207607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21334026664782529962845261751766060447515094171227828200886196973408151595588463455392980433251477321683616984969955419424824442469434008813186589168931247946396766664260145185055225438734572581490458092544274557107929764663848755576437582788444679305533447847514857191295167937856372460700896028063795033798017887345335196426362475209033104473302090238921574643724074256561461002755903995262630339565722889340153831918932942256901766109798132957243604106552904177980811654367097557529089168860864066800724824094507486447672694870993674508571344676553016253203629749245737513931713299083302652462792953802819878987991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29282429020441442331277595087258632804632359129486819451726094136613358520552749752365887505066908866154684864513338892660185632216738314297364876513413987725070197171513185486793711936669292453412753792433785525601244592155272853258233480333458858615271545516777884298965234396855619283932736694561304830854182219049316652720169886808405295815721958544165470104038714122073113371876648004725233107700970705377647835039895369244726001369197361359941025793996463502678331158602599614736227551769381625587644924605382237747972792331316499134731419391166110481742953031321306547789538931527473059747691082240402389574663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26436862532271920999189855914712509269887358386054733336535700621498804579964343051212856692542408500010012433779960506446718372645913690729428202866342910801416113276214285934635672391036726517179466665382733422899664023647638824113636377335266184659541668362429115164158129780459340668888750877808472112530706665349612945067182498119246040369580656326643543822585235129965026864682595577699932012777541356510042013883756452459110294888287898283373483851292376104302315086207748866500372235672791062899507307441598504984232551101314303912640965986277845036653522251114628851419011325888538763792886602449757361683627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25617335229345044500271712425655869073796942816625403313544893406437045252014398065056750400342082790887096518833599273974082339510108934577271030432251833977709081256706321801530405814555045758233595139250005698420419664778634921575542333538701731030853560809315189409562751727280689298719450234978288832004782264779555921713709665183722227940031752455002747816308593036066728812657048316980833436083639923240366495987644428390232491118022103644436463207786158524123028896077973510890783365832181303054012571407855392064494105385281929671630455243760388309855164983917757023065276172895608249797626003231412879913671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23842565558904638375870021814943346018741938213818945950222798704278053467642391806878648282140245970357093590408424045766234024965721721707256925588599323702777995077407326537016317727828378828922895442348858820635897904279268582777969408367322202487690116852160313918170086887163425465796725994393387338195547197150389921009473600388869100696313131638055862390410234248071619886309041998921323346961965504036582961154820991699127116099691545276004328933968442809346010280909882656910154157226144985444694775229769599479986827477246567241027930663726522572741546562628128636859670704984176211499156509432694093710229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22030814795829012783660345653469452028070837091842333996513396840944915765879856426922862828828243352366244545478718020710410110376792467902226733573926845836589657166142421962023751396746956005844861339989425903934153746652889906352928138986110806747102123667229724221367102461071283171201267151910409878371844342818199283521958841048720294605678930257784995964827723722606870262185775398647935415408545022245641186839172819972554656602208676674455980483139540754964240700253506122302061173766705044785456750462009275016074931671910346514616325439717692742507811700821225854355517363850706546496707364908211034301067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24080909043161620320553305972098231172213438380839937568582081320254312091297352519689866464633385634602139208234730527089756597453515130252529089825204790391845452996501681356008645244531895483277752771259207002718557352369553683969144632409677941282690200166451339387158418864275622941482970508166050695678285578442176743330207486986728212094068073939205221339735749258446316250436488245393284161300455045958307769991678859088214411354959597492934257433753556900487369649937329125370393961028789179240916412721429313556912826082251019934563169139000738581051755282624428182736870787848759556359948895615808335846407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22453961307481594149637867079581995252913346509982766870562270939714166132571469852412890683101138117149268756546715739334707024801453133984783766010513750414295449419427298723470413978291770496094594050320194690962106498867647431282568640157914787835120472806428961142396211775796829943040815702863727654245468970458289586334507473698471170624904512452175818080648637792841389507897611007200120748844425532228618107197715529829524766326729980015536621041556661205602478439368801310637873379374493260879360196474986920534451371749698906595182040700170350798966830810373745617627777280443733032642515021911097042599723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23453322254388967420997010844037429835490740878449650068795404794245608891310324410292272825034152315967883123015102607770403354809169265110352491344862486177904099459521932200764161205754273241661207340173190906221206767074100455186975791801347750829019781677649292492721150181271101770872737996448303845971215253503712836899084185003923469312359380647784719814362603043296849105343793227799091781872609228716170828565636719294733526360629931617263786140089320658386743074911289323562249051388653791686229488757456625465816143395620091131821102705737940640942319903517754338604890080954784192291757635307271197545473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26377795265948958324992840095457829668244531405352482935189714733423599830532150119560892006826930884641536946340343903697676937577053607131010195757609655946205592492286025818604571790631365684673004425135625818985839872228923206200847029076301217956296044061509987315580500497365077796118650485090906554047261921216981300680958244660345774236363796269951902906765328464656473079992348999519393209692423151546002052583504956702388657932153132283036171467824077241067048535078603528757188223824389094570277102053962073229548169338344957421114418309890848656733321253140731415220397595038335398329300885429950216605601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20890415718228502858003728048198379290640924697270934040887276496834445988708839113852996350995239701619027068122128429581675356664508176094419960553952799951128817977558424286349246869444424325879631864212866137748925013189725294354428828880373496427590254823223470956127210686661115204211443975817199700155840593198288181151544575212482871515383430606836635966293331081864903197823763142056866127194108331224558741216425212228625925617442674583716272111527953027881565125693423771815175770457962695972159478513735761778775633726984927689376930485038464725035592306147971230322833360371425880616970083685873685898869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24703909945500508336083980943672732771725479723628147856799485492540016695903125204145306105902650249797070357876146752549233440420934863276718231048212992246299178421901276167902190680485313693380693501998959540676446810714393449580810953832160386075233388717411778518039091536639108688150834016466380052576134244615916984043525696450666347803258852951832273890304903126347217398755643512242585487494755656960621356325202401752833973854649043589197695978283136234280099594593282258266952611080591519949660682236513792503858234514981900655413360091431032206845190034980873854434957206024442990582032656829481301484131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22910302851325877779155849419871775561595735545300914762269130981187144932940960541207410865139553563813988639498987772325821685489418749898418354311651613914980835490431386342421941873009353096334634472345633841345778322268261235068571417804136668364019188723624898551976227853589839507731436134742705661884727768729894247355318825253405318591833176037401740031175065221348615925329557036969642430192378080487570610582800602451819213558893938657537947830464472852135542923312771615816093665814199191170544217661612088006479570174411110885956850686990133275617131394987680759913019948223582241699090444340881802156687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24558144613011786085021766740948230761134954187492775809568960273032951862613963026467352217062391229488199354479425563677082841768412272947449966738358078646054252619715918610510472865015147307071856061460092047934175094210997697928042225741861814864396734851905813718401005389899335402970522199008118896246555698463097981984549203885671278304228878868461356335636524448559448307161702355822158326393341195268712566601740046552014500914513891305698771011470777342194676881500279395737924092223597587972358843792664551354566016298691174715871728637019484246102626694087715636879943368111600567482459820890110794292621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25610576324924687584408406793793858008341058695577849324084939864304925043433110854924371321643906114560474972811270177140689676129533214696769123027423766116938930959215388019308020440835170611589857753115145474973306958426267820956353601239620571617148294714277659633402612374998760239441614091100676641682894634890593207753137795603072280585372949045349601894124765286182105756165253595683348149476275748597917028277925580211122283238902599322245347944959684045854515965004112241090074757024934114730348743444319567210840035196968330479493703141889999615274410921204460707070929453550506954689188342725416954189091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23688710648342916774931299522796024634518363906801941701202305025819813162970488324333353128395806272391479482484773856220094101731737112401587279957848814877029781267427694095660692470734762889624201943104045080829231219769122836055434964276511655813276999321500516252528701413990689098525246696335636470565547564431515119540543347984318775979560378335780623908750872959651182825453914283320348249849081270746944285977729016481169503696322458731190272907463359525738791745973715376276303727391429494576109119485075311539864530028720207861586177777154218192051584116202541096579180765869036095899020550766035158378871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23860737188101556970129889704789420695729145179529288410450804674185658833915768882463999969568838022375540700334409017702852958913276045856326837013628444153411336001686735943402648578818262988914938506574072257660578897920737537021294371591440941898094775105604496352455803020773366910478518943724629814022839888491148463966933174942306101772938485860963010922819964389667159571543662726611884597636888160488739858877684267811920308973511771422601508333919353807027581291165481491851741097547599841217826913755758563468309379642428674787739478963828434894462327348916576125750004945516607277744507858772548361040693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29780981198365476539346650201901215874907882034288703810393638615275292401726690882922475296284675957684830354330931347696738841416558411937545798852576581850894215797047744618461410770225889663086824186781217107639164293079794352743073490411196116134145016671152524718791601217979569061579674427670500812364736836098791902077962561900711650706541480459807678281564098985813565898138401033261172348204652193761385809097863355557401299323005137437905380216943921051670507134799885518722876237640781100730633033887114112182541001361999230709596909661403445268707704137588438321926666051235015377754304041390049844795761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21451937214597831060969145878989823880289156761934212082929714687997422644704165129343210257078929887525828327131330785470766302774820922738510802685362757875992926099219501312750585882780024814281123458985227384632656220879077774222653996181099334821659110032769204999355382692272808424634181720505072110379717291711563605041155631742482419255131081339045252602258201623824269123675613490750657134410566347868573425654336809648275718795159646309758747061089572336405662359858108711823160100696585317310950768343428575518746068195715934804304251725870238088004571230011318434663114589320623592685636950876043518313267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27981142676892735818453147382007375086160460183952527123546028493529426682935922162723349223699738244830363730938149513320274079875049654617826611657190928760215466436769835893768378693594163945744284786648230538814735691066709395488605797231921849267895170499818298297379977603880461938538091962222720405412760937902510834076375882174785066812941870260879482823376235883917723956510412068106609367633260941664293652631884655612844829903254470695383135381313768673628728508265544067118026781326412262766581634883080604005349337528432455980181936367839780551640770234389740496474615236312039686965591322234914810913317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19338231923973589941508717357176591736062298402056139406837624452174243053586160593054351190956135189016084678726991341198804954703498275038026274021634397394240094362249367157247385236940099725098795117311246279359272092030465677379989262979480179709955461320769483654723431642281252945839669222057069569874346031149588905016901292995578220516433916739079134707778023594081020969991333629298507944500122934986924975730277296814831874603323845335744689979743618295753604896895331981197823795193379373502627333267889787487555291398368402028466437474867705605591600332293945951999685261295052222617672046366059244409733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24200629994042440418489482596826585452275870295397157927117485348726414928440527038459328586428541977445684931107353434098658331348258656841567258700932493105949433431970484153793746346156406089120878148684185964642403528892342749362343312668934009474362251016110589433529469929678691866395968539510263537580412996193250173666229723463008956315311237590607871758544680807544883403268558921503258472774729579103453636070251094546559491578334975037371444123291263141709254844985941761682832804940490238059964953720826809559346099344783405519113865126591309700609000962802157578796507330470902993277185203388183272806523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23116481323050164326910084626416340515125475577849806864009704932394890141208612069977782270857911351270849797899048995842154381777943943012333153317781657557938902967552934972919925155578199218281213164505613140489591837824810948670477496572547962360685567659424209194602721427631498258191305228523988072889022463579999860943732439420674783248310706937629064386103530818399721443836046187934912227205143690419919807273545032539510351466176323162124581913489087327240988427920481397413050988206526895172912315825360962211275045184032549653637416957027733809402175644473052921615386265799262196681229063913700515873793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28700405419004085634633356638693449716190555637802373913376980095899995440441109931627389267080201025558088532720002800885327372918094593452144161262438925839300064438104941058879022429096865762019371934901517751098063002720914396271927597964397194186435343387595127002131925475301896145735124433993618920793811825752425972243339922864066195457688751214024269439963703543693574375239242444755047337881194763124671300926819038552898943503498938405539682655541210789928290028162381277646729311382671430088346634688254351704662581613169362908768440928585521146768577036141929416228300918763778234614343497838158671327159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24900460267505950109725844630147429061013395244605295906683738464204900601599505934040938521692596695447320596474161897018832777896329525404851251099099052080689701831320820059736051064954838547358181670237070038994350209793256759982710158057630334187881173375332122810422011924116482466568678668754528697984554952902125596309067746571158764540765890077598411724186043161198716157324437861763634176583634682012885422677708076093214531223321669556692094091674489415380366633898887754970091707903498077153727386732051326928438309287734966132324942699704823130676905389646901902495616100956649109849894166193592373226373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21774057807160113510026740932428966270632045199891250620943937442869026140154581315314337155386022180638797484935515645161028993974989758703542464054542272524788637707138154271674914283856693000858887163590170761915774403171323559641497426184990942473216644064050683909427359091258968961905618103585983798227801086521287074749619573250827943647821146902358761237531297167790423147912032303372332832843316857528751151802167672059527142505549191264340498211893762027531812361005080848676094858036324990191866377140478217820491854303420697727174513860490348669807545205026303998051144475849549141326101161053477116002649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21177975517923242616148036846572794695919330155810865395203862291894914843419403451445787016049154826291109943591714036977122376608677820938247598822914656146531919905846200969352866527996834755450720889487888793517349593158325980174233438882756634122309189094182076793760665693495551421069647500840832934421524775376180219327417717238938566473581856973178933514482302913275983478597944569082165608800063579842370936240473872451571308084225755506749866589110059323380124379784390391845764142750559078521995318311285307909498399334663300366006690203517086221670571042751953135252954526784747277651905003075154479389617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21013900046597816328689614353993420524005826402394642715467357161393949253565132260553999701343852810719656510688891346295579787135277804265284812298889331344409842648732324363442358833449922966074446468100948015550844898571589411059837092933551790689121471685866366026501237465694004284391881222867679746475251197404932357436447525992521354858499890203995517705602119369981730233447506894230068449448877505412078005033680793511722502415790941070110150177558690723652880620591182941147065723286168751919825341459658408184765327222882618432331454000036607614605264252987068908122183395271712992328508536061578839578903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24754499455543875807022694831072095798589390368305094915018587059646580609124958467544598853149300764766643329221228602924621558833685625410396987595804354266704721492263235306162388237168070161063301007101438407688885874457166486944389984545138499098863727661297056437873353619101579406301975499754052171996328426881339379961805818186573014001464159362712090978310443882713389166316651101467536309517319877393233870631438768080904946444724737267389244737880915365686069826542342506959119118996955035018563608899963357443429414665565767559196925572650594360129875513908734420438143940697267022969149737809186770682869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24276641406398348993409562574928498634719436808301192096518831368497168913679118064426505010654642233869766094193876412599746633197020780436331882464399052195430228024391594951403439309832720086758716544969471452502078750209213882640780607335402270059101564471612888005635025368626034186190937943733453306815250479988754359445745136064809612388945494311572079894783339749271612247403814351138123122869020316415569073909167241629402077657025632720906906638008552800218367255744602830963382975685054014813278273123971468438654640339514943479950655808857712109134406437264059370928542506086170829947476819384166774019827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29719878784231457363743664693213629862361256242478578342396432294423426193345034870323962614221174590917709050677570472757447357362194521939910687245658551908378871646393839663957567570185758332298642206346850951941825643495578631938376222632152488527864562032625348627709011458036005564485566278059787155443058168034866381657590441399675043904228645013114789163661269462332772002574388714810657765951817065756091766140936451467479528524624802134079673841716717483993528847813601575168301864571802498560389522670336553264663122875637822204705939355385973627746660862526369629260776700889395474481242047150180515886869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26068774669398251730988731075679707969436730154642418388071657526101280060542964721676393478817465105151638594427488007343506362888609678672892302216308321069659519746993361865805439648896864651719167243319890848259372547939589495389891947523203740091202681104252499431151679076704039387759114398462009637689868759476105217971915645887928625621400083815171095388266568337879409113324251268709835677569944673407494129528428866856845088513630655503931556572872298066163954021741323737767311814146994477522605997333624542099724328832312377323498393575762621821600718645451525591196778534862038160523609401328213344087809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21810867752706966307766672058332460425834597773823683210737999262125755549842834306948844602318758578553999451347364660508775859845918895807953110728957420499407722243916448963191059302543066977700382183107440123304415841985870132667119062032084794753022721179958896433790274251498759726123304553229297631172342538773753934896879178612155056981204819073345319656388254229087527178817588046751127540436688383993055145863447510138522625486839896653900413547844615757073962175696093676490597659670685404426233312806073936930578112252941885557893665607969602779290129985463284677928552174066433993212773016262147048965701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24641499562709950866088842055152754701248395449659902442254706299940117806868700985216911466065369918565733015965699062047768168791378626464415040069194099194249603363731728536694426519161068731367723682966957538511971623745254612344515758773125542051958099615664328824672258371515427538202372888627316217512299236401098420204437859563479673438094260131850343473786088143502840443974351077275323239147454411519288535882865517615252690084133522035599352135851795921548931454285565989077908116597604219469908734581295407165107022827536842862774608364720647344565729883556693535043226525338389781153042000569708087534251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24129110118629174827868302053615857661366651677096528011366331058704584073267184148684253891596594491853104602966232136387219197350389529240698365476398404725413650215352022640170676168727260847692765992746350729045986684119325297618131205222023649566439062821026164261228003004673324689314756435804042095311709539777151121497570017984968065588791945016787297451857335535554458434637864231923251380042565957622372212371465196502428202047303125999712612896767733225166986529053434312581849123417317182244496295902739361052602045031269422242738023160183199726631331495084293771310139532287377812384468119615847432099393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25702600384137408793708830923627895878412528906826282340525261579085943472974222023103182756798442493023983481990300239267411094712142856766220872907960573884244044013816531858701468144471411860155089590474227474536849246139583221191082043107512316567698836377723544153845689427383649618625475096419994330272494401182089008835431933646905202554052615498918452918186006803364007978815838655985569851718039755586464683431742152077580125553664356037962303562547298086385529791196978727816426664466000989624154352800635271631397824553990687769500597436334438370281928267069091688389171472240003171368396665014403918596299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25018911388276900264515093916724815597995526009348901756979886545498004990876287264313680402750334836560170817317680097524332584178880723771537651100686561802664914468127444340942132086480987320066635171742728139771818090062387529296595414756464370571460927968886442697822534312352983839432206431411418513328213495325264742854942289032028682598069972779316885359091086501158800253638867422477782198172280475986494950347899037745964651851929842686818147075365722206695654604790984356028564542825653031840291442652465368174341811162101234291563495414653331591540861924745002259416200785555365248043914191072564366217941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24540351364032517290929634460684582991305756790155649956682560488919174263205228550469722337576185922330674658119175774265006885175456886053394064864597347096300066845587262644266296184149094332996704663309205850827219283820212557886269186615876402117068028948196671304417623563854161454647073953678036129157416638020725900751398489186531202067374235912260047708393697288071527807904509258650387055391396004810575331944995251208969376277634026766610295535187245529673526208784810732669295627124381089598880252272536644966389605743463803751939853003315672555805346157305169907846283553665163987837611442890250961809009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21650101162705615601885298161254159497121911171579547424229953921658138127938707963144402338813099928997950532846056296975163045750334412064464050055873470678586324236816670599045685734172183572298478106670495297417564902740117664552981623237536288662411646457229089237549551305573344609180324150523794148087794728582748708063559164620025889368717761940258448005016204486838185501788885715365831856687251973661859227801638307824325855670749641781799148938370541484258354172812615729446476519417193734117821763207946751834873795557580975020256270993725919364775511622766830080890497235472695355127410412292259975618459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23030367975561892293753305915594346488735405038579435938415291984676222576471707356469937043286221836551335871425325142881281730788370914717877413467678088483978959451859437859692086616694825424130333720251746419777413655148933000270252015426991497760333054674840126979953596125404092651123458617745923859077346484388556414347758571948331992385462187198016009180282972424675965467309161119568969908404327604499922690187217938974201188856295440608438022698857010617085600151032609224716640002403764261294002857018974922982012061100844710550662471942101431768211295980263584816578567832032465745527279381868483957187707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22194006617508838765993378956068716631570205956371136917784313550219512216382950186455363674049557816094982979307373335183024797574174046488764809065976769833851403962928666588851028499789079045048507222972275482075523955513697452284094265817202959518732875268235081030392559790913393248006777629304405683772938992268309501814180324231818265238783781660186030302872985409378667978503286452248260222764486844904625708242060447132758532124849602005483628961084595016358770386541648188911085538020338680143067222905724642718058486710142811375625091057861879065071456056391670270780100458345742605814409614548459626763423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26610963676902384973839617071512299571265547551039042329883140831510663345752599826886948839259906181720271952020741302107947177567550819778048446046802767618432100474626618318574921943471936649281021622603538501983851985563024105982560954829917232242117919465520302338392565890579059243645480297256472836621388952609349152218048182074609249654898458126520056092722033321800051354898128378826962435770372993813776201786721691510029226823844348422942690630793357551463194315437393120458843018518087430579548307295168657540204430235854464460140282358319400712949854198191067628793014306212599649703966895687894141899191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20981248235946633546949738176042488558837873274917238045938210101310536079158741518420820398234200911808938844011774673202795519535923081719767181409338506307309603986385010117341592741847935301894296923770374552417278498964536892301582090780893763075641260462492106376961468477486224338455378569542594674433166267197204150922405497877092860296097852310931229578325462270947193376752478121562332751874853221055582433955396150332166588676046503194372208093960013207714417610168282621758487916816261950111698551435585634101100577978147977393405098149858161843535351084957455792741439055294380959614086900475401303107843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21049187452941880925982385323659862132804937849856507304887258107165263262438707594929884598589296955617762532101287122783355057263668990829338270409305945270232817679630688388583917913086999783772056376405303593383760534362742552539960101581295145023735753566320592634012610945115721377071233509179100702438949098270624027351354650421111918471467655859913342864911446688761595064452014327827566830669481052806825029595032871516911586435117485293181797600560663670988877442130973234685009477113060878662089295484208421248650118359142703715087242810107886633302450188508667735725071826124167239143566092294634753041153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21832634553276252943095658754532325195188209562782108127511606874159980122136889909423866495385412589747527657532468652438360223089556091679870050071730310343724289016129597108496183834059249502381496428183458635267316115565600369284463370843117961966948680430998268718330491986760805762784177424014939392677576203391817805752025381810693780722158263992710472254329600899571195828659404620096798743203090057794302554855451759559877837011479375782789678372711074273632546463327159342212799662810119530971693929121863576375905492573200853878450135304044561577323787847751083080775977805117824659738477933930926136290571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22569412158528655047306359171291536289922235260736875691721096955240019519277427719341809905328637014268843947168456365453133306756636209956178553349053711569227335454064654428412032339035063316609876508966236945300258739187714201114201347767001898457296421113228348916445610412349609111255623978120900371816371470562995140750048600019155392649625907503334858599009944698137478889605268673486087137662842814351992492099143940178109231666592221609552426412630996317778494544531430172428839446401623746947230035312388619090883480984942418597752029209690846730608277694911721682462100111978749287526965180264586005902341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29143666563568870159004597218831436805434194842965437676227742231928183642506640861625451364067114919525247027757477390834715240137700815087137331157641002497515575246345821450070082903361831473932359842338012822518923914196977371825326649775314770482396199149721127251418165437096509941968410869057046863824691320953310577008318204549436210963180409061936191720016908749881433708925540257207470477080115746708671202181234214397954111997498604449853114340863952781032428975526898487839679404515673920636741475013203828539568283615628059985413900879703249752655377120024602618943977032047121509995111008380826152093479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28497962453607456994043790075065339626894417781823230531330979787373137228607156577837520046429017870919873899746570461419490273386197955128875930337116516362853379408101948399335363319997227768619237040424476543215123109518756415661045683296914168964400089713228304191789841172363984020213365137556295142903011076036651982007503906537853796762907329536114971462018842605996756250761876680504678228152802371756152947421418736827573379338563348769731029544864372540171811384098266439037295104693517215722930432833372538747426236209599988376167071053943474803967170474432713780337992654350107220654441151162288355739931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27081663808655646597682857834609792937347847580614312258429300744858232270686787912412419296879250209700729172634074261305065885873016068579241612813367331648866459519711976535342381417151280122973279981572826280638649335374369260486009492212235571177690788120361390012721645467213627775484442673564304784667611517350148879284842684038394141730967110143768717502491006033723962495979676626444883380849292858271755113753567410013513004207202192855392872796832138859079503199571514381986712177702523995209983121673542296911616338028153839807947491225863647186878920294464399181726947786185142486923495391819567079863417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25348822808424205178419100607248433753057361292377846192062366574644981949330300159950014434675349344063856323788513597219198423363296239400574136997787867973455882057844915817567029099572457123475492918323669234648956836676645849986964246182476395436040076025208655146398588159863254523055161386274065562629332001807300590118395098987578871805293255909019155940677610391888510160889672408352849002325724389080816583092933364786631938765104465039333318626856858814675906789049081453193991293143813115026148397099930818555115898943387446904332626827168178429175335303673595087667503702444566016670072138519905233749887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27711451230549930429071618065427771131946427242783364657612617002967501761112942577473962800949978556705354779261737641912568044014353863115354749922890571956071006250977943562640259788686462778616084746327825336695895477996575490293563861265538679876296987742551315844406110444863336055575523679812683112652945444430115809680757259437823090954825187284055155035387411508326326965135736416558905413944608823733506391829344489185464749502579037599337465187223739981172422418291753019301465307201813324693715064861333884949992954290347529047206210166327123948331106936994856807724190949596484330016288829405322093867071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20094301340706539531838126616509148525964575410931113688594939360878918919590147924215349940670315101609841904848183649117649628013317379389790277994140629614774381027282979777358209400069395093230668948335598104508214700053287295266714790141112642037260604790331442910179394297578743183233749389202753680773978795986478526621664086274449838523845417298068399173625946473540391550930338854568677882541132209000677279993039987075038595299092698154743039967758227977389021584081718985192603722412315402885701363422980094531078443630559976763021538514262113444675957301105438554610503844266948457878274835977163816658931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22213709624087868276962189148748869877973944676144667894817979062768640587747194024184140623519378278927220794643007819259945401274969993248571252617027550288656269366105572876183196316513180046245161169194571449332989211423965442251388632396068139887956629039458421681164709422533096189799061596194914730068700548184120327264935996250345872573854156106734101070082672665364116121837281658471108285540887575683626111385406151064698282245619282552629325549912038433714892709059720825050603843364896955770494659156395503298418984817448068691586862683640555692922086099425441114212081293725487069000295732807243825202311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28682785246828493946539350868001477318254568991604946242542412306351691029778324269008705087229476278169928047059952836162327794481833584692867298862460909750122367454774671718873806967889337029051801291244372648609218509346145763058148383568095279032362133701946278769449661618518844674723734745880206919829736058790080508115077642241468927922104742611778598086463576643491247471925889385709719222495320444271613423450656685209860029415741021266092801270983441587900322858818149861869065967968324453872861379188157277448425320606947145265975443468903014222633917914313868509510380155733374379328361109705900895683039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28574412011888167633692374469451972240228800898383332984186507600619011387969085875555730505943919903815062212151596316107149131066021197006978013611115840071386764949738988430295315701958114952602930646413941756621756467186744828284787533274350129630567157178559541282602738748891812598002016847366060127140202964461090216027097455231902087573495325035446387650707406820503145022203721675779625412132914919335155356522611699046439878931649917920947873074927353154518697209792812547041423697984960481982941158174743226285041232819040790675308093143453776406048304622168203490401581979191032834867525918177652174853179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26412665559265702400056404866147589478680670961795122041528333793654978082495414297859617757477578382089370983251300285606549409896014879050719331841508777674535133861609728130655888018614904115271090885929292295851266687271389308956116997244631604762391967536589495430361519211431566159660546386961619285445301488877911071822020747721933274183476110893586010360847511243858775156373379082157415889140823798867259383361428888732035061828645882528925657188590729570674307504049643109129006438169578050404394632252486124729484308757971764217416908927346491549038387259140458133105088820024937160790645611902464336355847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25414415497453833605330027681121855051725094998382178494640095327478940800277253589307610023973654038269061009100595115622240633585419153683614204320614872766486398135531343633331965427380821768215611712699272082603739609815569485922621822652673285642777137236872316254722605882062505800794724165719687025829536384407439406069658017174755110429265210156426963845277731197716583955610924188975489955798263884803006870314776034528552678387608872674502243724743394402631803502006501504587907395505545325139708803227070236493329346085259555628205419160317670149069655574417038888347917234176929037513563872926422159729341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27306318083131606484150371626379005452802964920761632306049615436418316569489871453429432616725253650597521466998724830762875754804633906515487375552322585872513396030106558444533245060433785422485823648461709661148747494314792690800958047036233192389876193562725847911317427507187618222751604637642824829123515799903909801017216406011074084005978580709251022567574834746718679358295023921581614206845908976783564523623774515188817879213759123725720294852999559557934709285531495189456657836068215911121604847907982833692772785979622042257614339013507824558278465809650532213305802185743182013871681205610107227676051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23396802676701525172936913312826117510499660514489835987848242725917758747165078999913270275914188579262518394296954910585263637669249159081014137912502982155116542815882056162940968318939734815511943342052028483493690839486940562917196790189092984172658271288306256346100637803907924571841210171405010287229735225298632815006735123137292050045244844214503236440341040804647291889367325962024224516329605833370065306871492532476405911972038336374166563698013458849261264366036329651298666880320184478081687219826956579808401536737874717286313692631212798272826520649066508630867019443938831787002865228235583240038747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23676279137285584138361010460464877426294429785947969509582836314627314811995220686414984990818761569349983388647259843266785183833734413483750099363307750183124332566766818607569199647049533500345898139872664750781455974843177483882706562249752696276655460409633386570570206383224843806878563443069623700772228139894185325483117152230828371032580509827509736455672764915515454366659532899508387185403442250942431999948810077834141172177246666838237016605887890913823438925341999009569955246311427862591773969557706164370786917056205808480198401495381972557819443341779708656632734555662545382770065225665776323530017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27289457238683293247489253497143190985597161263626988009747536240777754380176175936610701565225711051608905734892540441908977104201164298837878781154820535196141597743198567418063873626992032115487217001407889531975449339988092213730234709631452936389788395426150600491467294681699397066770450083964242058232871641882395994641093297930680221887252019810085713875902715561778460553223377910090618449160578895277678432125430575422135391234170155454387109682502143184031346931176371789716419100625120419315125334367184956091615330291938225523155304182330948581221362718706682280413054661168501313667898280800024303477713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22464336882654154281691990903742435477738277784003319567370602664227886911882716009039128177892095262473493869168891372799491438649511640611763930529828910265824297667395122120634144741920034855753202329951399505714725821133835565738448666761347328117345888357452790919002169170574308587653563637801409105504298429840698455546140492011384453599118903809113719185351942727832239430232363329612631111831977985241763128571168132978263179158894591213331092933015400779147043625227641722657650791507158451996072451787897973248355109449182336843671035215439823688994029320345579609792167665556906062423455012628522194421853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22665295049024834705572243765374221963968926860573590152404207690040923144401877452882864572341982994572000410691199299141160611079574445851259049567398572155775254609161533509546686831823046089346612232649341373623402794832572094450675749984604704032804438053705672815761917412436112809688038522208502466949292973596749911923159186574793067870591805812777128739452934239326524473995125017754034980239003205960120883944575205499198151503712224938611112681289913176699867019492013328361913210655416411403544198834306103917146562972603247071009892538701832307634064617985879940211770423155376749437960340538021300085741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29512592395228631416953540966978727947285134420068994231517098336572749378895641225296308744979698124907978243574126745478003248208300080489923225052977126695031177620239389686367303356137340039304464788687411386889439918788572397216413759559527402298719085290518600711530552663532900597539099490343534929816307926806162815866563537385286064401264170150278072446354679164216368998546777049662737107745416326152494678024292698858351223123266830861747964201820845620271720944919717464682193687516735263956298870560909951235139645200945750311163554005217590235355635143174140628803082058812423637042911389161233881496691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20251328179763455121995542904628918268561666032819481104118230883426247480227199669403868106091612813801820513908741798112933343900711663355872392583955533547425404416978208219367000323968926479667006061659755283063302456055164125941196867605198017576178574039450838382442831046230407501239445708966497859762081979599134751084266617170695569739433742003457368334370053945418401318920021989561756138020086445592480623153152028128797846106057964607676052357062002296200153032361220288814492764902106975001094744957987969703988900906623371447875770475014348288102188851763666102714092308697841364243733149868099680821101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27311037944091392448845065406406966209663460401636208279882245789938887374973907138569176465365874335653096111626445259257991034788839919752787846523532216754903192497946659367138722278781601185089193930444730763984198492297717552454141506608847969510430921995367035332998544745016408792548340172259719652708171000692678854524525977778553058810773955368153674645207242125709362387633519139346167844414833050274384965810975663540732920332797485473702479546483382940139640565068050162289516357438871961756004154721625688509767534519747166406051831563889129715876070535349343099244178524183911158309273562039388897678027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23762437652757490830923254011896496441631398115715285627327568403563262785286727035309635739450217981899923032026363291522498475572037446632037867466827106776002698849875811715572995484946896928475785574797826334151597914275525306606711236566030398128328184539527920432025143470840323871383387952077410747959974073177296059347874994883481770403661868259952302237476883893339090737658444526621608377420945917960306253043170012877013658361389236794658747057534290963147738652471624244571397844043312109370462975774292543793661930241014383077066416689898280272504729588939972623746549182661633134323550431058026887622603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22759018502538029237199685273405853472331771354532007773096868282113068213774762623622602568676346294962195150231177881338871691049201946651650639769902841671645438866898752036261428889914794838595513391906731070566230618527251219123765613005427387705308736013728243930393777158132601810412344031211133435571348077019858401523329825446773842314525603267220556401365026146029407447904960770898723767839897146214726658603808905596302111054604355675908456025007415912619339021515710891093244807173104588087399161788697207972379572255550092923678844393923895041596402653254416817881509290918361316584690851831928026582419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21233145034296843113374130781277869715490479922267374010894756838314231006313787104395290926558603679704330613677547320749732500463628969479171238988446821590998991665988269611127718832258989331175526409218954914379954032473729484351572229194759714613296482881469567290309627428539309823132661353708840323786265948960802372973718591761091732561169232655629826221821617805758148172671029589432036616738297299562276625210119887513286823723459540726788512305693605066700624592728549041417746774890082399446935741825956240592297653840233954626589704275450994059346319121672364223374601895570710896199623815165024093972593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22596400362680779997204635075153924033037401450094466431170530440988157043390305056700696418829581712006658965584082700983594878481941138369522836746272029341967885500305850219549083111005480949524935622583097642074401148706388844749316963413025580780061731823284535004319160557446704140314178826634982262502361254542967441033792767417280151131598857301709896899273951447922428633828157011429572966942941134286364488410507421541034364265124097389001616705525642579778404000764105093309896231669675975408753471750719997782899032135203820652246264517242735637259771038395213781711288310965339451620129994174263917851933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29974672880689038108857535864329988953119879347682082221072193122149023414612500730144813792556476225512953803822653977256174198940327463077710450713418161262866509155242812982537172300919487578779653750895722731731219176933641492442221671108798302654366627816574257597995439192554383884424066465989252448242001868585560956234758276671657412321720319410604010408166535968696768044042715395246479944588742897126633899973832698610434888439561039495679871318044917226772036707787532141396277204877940172075355421904385944783575871127739443567935558601798460530925530737404540570761467741234780286291275505142733520075287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26979419314524182786283810959587106465088735932595107341561810460713489220235952464236246470753435583658783128197541192757872859753515629183358465056503716811021879844319182641864189891439771251146718581014797038331049516555545492246265803682309843821638520528818207320079487820807055593682660019699060253784820496182934426874623946591047323294549349757166369104487079810826857968056729988915685131064980781619948967689152496859886737579996774252171856066290485120208326094520705134362636374906034233907068514574966529237639187544760833862125500860722663568510989083644285024102058572558517089357503048252897273787463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25002465943710364151872618848971847348566553174577548803776655845330827089758417835728535139810734138118026625462410577173334061391958410715614035618495087702389343232792703264204116016199377110605571917222454891681847825562969223790946997290430341169830851645248584624055063395871040468952228853447765464040971688546264472821588636663687628031930954762456858029405678407536243179511963402993321932132579573663157540914569822558496490452056163786701725781915076531678928830992510669092311557773791248549634319721325593626883387096175875966727994989254777444203676827322945534854466846651360386215661362018980109834427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24568699378916895572351046193739074152428917106785261097850478535748349035170150771865714240651704056390952277731643975110830932813062122426125372015703148543694123595009492143296645895020748932253318886897160961051142921188479451889030636198086274077455951782201279252695902870557619295151664283222152300939107582900385854787432092344390359403651485025830402873006143975217207636464899143676066330380632518624220302272923505039648761493263255734030353388809531329371472712053524368883694753622314055069020213262601065472976994670120276691894595323569818165791071834658573407399707617076844372457090225682924447994521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25504817602876254942743659325404475371080166055334655447703438934510102617304203785739165995490133608452964396918761204888780926241414181517376615306745328269587919039438733971889791478383528958023818652578635645834158489534418254762996597674709521829604589732437236113552256780100967837298807323529441867215138981399201119780775859272130442577532342956496897400017771886091113408418323642175103814700133946266224832682561027674470923847822085405683640866795357671701886165670929697140824404721698941587038437953082593587256064288636851414541826585788042165475160566614072323480586281687202907865463231997286281259633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22448086585808305141349064021160267139044608717308930047078325681090019818807004352429654140823671774425656904051656957865446433435689566584517004466177475571838765270237306891110424729293603569219696138752004223331089771435230707797529370873969634604315880844976254775499116284386315826675610803610430256842616072244903747764966277373730571361845878548999103000988147522708733154664414414737498813710263954517883977590979386868790459829173444718020571662768739219604222285490518865048557534778627218569597597854127140936312675099806608053419418449798918272989229286210469148752502838245363407436364787533061977199331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24460089516809742353600364142027044439939761311054035443962863763045084485558724789776572661471780997255599481799646615766875348422138945929503188909434417561742033379964509009966680978124050405446863002010235005987162899049413313120003592266047201201655718905344576968030597162958911962342881164349697392232126211057666018205338259634667255018860588210164515713580724564878270849763594326114116862155718549974601988715503747027677033869425521922511365565700338035063134584083993494577792790689377902575229645608509873754782735048845781063860136061150111793705457713636184502183351813972034315657425395440322801332997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29274169405020253594025999865122612993684377839696685183990226351709090711113987529601472799661705575278963601082182470085224672738814551211865935653498715249862002438855271767806704645109539345229323596141519276362785212072356121658665960322433293802422221100858293472600351845557206219791257844250986725224020867670291888634812596053009397170264071358472379597592464373522695091148935129935302174119212299843503498899657808022792145317918475801832462566151200150261701278112646600017341650252996797354072088493450183126233857192364572819005149098567595943885352721224607363994444717164803440484575774567117362130287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22359724831615071043505824768173289626706043803308716338753601781200209193208213676315625123986353002917100804920433001785256604836774397678749522488810625102349411194005199041661314074355881979224356727797786749630784862606862356353354025338260827123260420060168498844195162011629501577206492922081499307308991240944223624660411155377358086072354926480408151731678896413502443603276132623607906936378961631585440036855694468528579762126490774672419837514052617313032612112897497034745884917731468646288305891937258080564617620913778880900450089187953768012926589053554691813662220478260674246690939655571708611498609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21318366815218460183976293964412312807359543131894060305888728639790329532830600207967395496923051617312361708944382515515087111824225587455520901182272496546056261837217780131204514948216918365314061028157687098442305883745538954881251364082234399238287741239986099110616511579341947417789314304007171311652810897470943983428374912988768184360836291801772277720383725073685594075081704708330626565143939689925881739402156692440928738516976207815605837295767531817278462549414776119234119965377651299475764049219517765956310608789921001717678957609890935605087243343472818122452924819918245892140570388861348451953419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25558741091811404217432573576885019681551198106847128691115291309583949860947262049687366666945311918438582609272136024554605167476477964458298218250695400450278898619795943101932388076356344043713213229125324870041966565373154536124940050361374329912201156553057609153682356742488329811952047758736890030040757702331209560529152536609089691122004325250882788811599694300976057130200776584084225921959596538174125722793195578809467133201007899030971899171938386685025345174457942271798348488186477028589407286942639915362632624958931073739939681761342524487285752815777941969058875901395309992441409017797498422519727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22319445214958264279176347173088127286886447802462171753122116508792704174624855053643473364177101629184436336555607033822691111608946536595811483114958121552385785478453703427302590239612201954159873509091756889783649213705630269781175436770655405051621561056884709419297430594863752097734795729552706096810707362667034628080807269380412940478574194872520964426941850947309303644017917987903646013224112321830354102383128243395775655425751251781896978969653874722412711968819245675574102804544104235939017188962156070532756131517787721137123180848044369452314086964131400593907896061871034939796765210046528872614753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24160071097144886093369515954918407017005866026265760652180028559899342009976202396386979033140563269206646259041521633539930320017331098133377095673433669372988207720855436444316787411879770139163850916421110920861883659451258308485565796402695330052645443513459468911605609266444480666838967121142526757286060365917669898631755021372022625005420967083323173433419802598247445262772587553172751915362994660719160545471290539484923083090151402808740392124080388056818452339639273270387745054288518685923156626001230362781644283497978706958995194166090395511254880409188801233492959072969176215886780487969695264054419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25339657494749166203223258750683516326381140427644686407898490728351696805791670933390699986451080454281831052269780394968489125849663733180949143256353774748402950726931729473776854949203678912509180450454332439078612992170966697974776203027774421508187990963468495597658181533373491605074988607812998853942184468424303082270141484185324339919525394403664422842764617518409671819638461410633795362805663735818837751168569325122834620488061043773940125779011951702449709756318246669648074068710642215162292830493753034260600640360814970129148203160631158750926486565657864092906688934350292820479531912678167222956671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24860156965241315227374004104694634920809242470405047672545032671600039636895474682177438602686948176788352266380724223667919027112484366760934646381730757524974777961121024192162570565881454422224962079305039869907041829015898006040385190540298908193982441787247637635657980380171834999762268082957253055670324488069783748980660600074197879612420416790678153291945897192023964063031292123484398935553041096294662332097140498923586073938570293168110262401354904293381243800356138678978769205599285874405962076293313674016472261717929489436956959885514709151309084317175407140535689404854047820835932646496284130915297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23270540891401820687351301638168841436481682373136509577296424286085607272018769410788682735443045973714310425335421041973055201252200126809291325686132379238955389507215399593805835785426339041777727592205324095447303030694186828489168572858443241843537657707504278726887050694556692903894441289878715254192085831288261234074053439869530072493120858616583587368099590025464687119953217495825350319774469959089573142022969746464131867591773462271880924464479450824226049655651763436777085551363840864224842322219319395029596490729050479456876700304575169857455482240284114948556404927306184936691156023717442390261827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25506996125170330397656373600897142658151675823417306794985314627939895478170850516764873080928714655872912001971103245261553942655233318880667127016682365617731009796303128102595754209431088517310606640276458358668819788522242302365059204341530933740857856339160909613713180456306831967953387189601456961872141379833258252943159504467717506249434840085436420308204129314003104291703359568904570408193082572319296000939105029254476423878513522972950734739156503061186707595011024413806768887130854630555327242063513357398524523357840752149024277781624039020608366531853232580352728978492744556689877187030325991488027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26231830288058218489715539503022566759480183671397339990113167317723754154460507039208855484618874600773235464645655533695395941302948861240492155380084014457455261351260666841477152833899822572765600453421014962699738189314807308253564122402537805392223864127473602570045693152089960887591630578504851604684185606048383656669841923829515245081138361392377463807261195932150403355981010261076585981611764865748608805060505634896075295334438395418950803301600453494900308634647701432798058662165042866628719337990005945721775365190866411549942598398969290433079127587902032243707759623147553058708295321276974644486499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26287919851667485192569749764425419611485545891802897018184016561568095554842662966992865414430132035060133536321049721094741347731021736537622228808043675801850776913830269673638023566080902656175674436525901181299697408185044120081522165449143168162235586785601445797180913458594349527374844724321685871937221065810426692145137062759712255468389335635447125395251456549642414293815766539453227988055753396837125076389315122462641053148833634175341858059044695392771850613119424004939621975686553585570331808922089104097315121956751906002988103100645239184429556450471201294824581508994644417691341269355233494355831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27058643648793346167589313827173011858526290618410638031624357794495789805832907865047929911345385204798601274416998028885118650241320116727346540039804030097266042565687441545679650811690278465212318205800173113341822407098055226932197086853364317856442902416009847982124408259687783516962307295170479913456003129838494178554543883608953610840026127813766763727707012269411775103802711008754908594495189496900572289054425680657130574082362280157755409761654193376365598465706352767935503131965462960600912051480356891371060903844206767453273655718634010965302291445723554134046178763080328215616940346417358243662349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25608742451421434539497919766057278874263764390140526742257197934847384212278278451071907652120348919088627731379897387712423418802427286206467776549278878159371288733115823285766045828568149058858020633979419681942300984109071967743159388285643672484824781957624956289008478735979293749118139391799466228167867620073946274496986370514809154030065495918437227963773593775335162739803946831000709485361430070490529490150766752565265502126831019154394630745751086249244522721428375366040537491565948279330402116559210722356810117971098727643373840542408208850782836526468821514119426978839772139728374827914652835017991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31462580967713614387843180006908627127426730659218276160841816714093883017429898848365000642352372021801553578788534502256048782107952640046763383108134376299589356063604161930075236986347811533718225708460445511938300330197164245367271146530072723210251254959370940639213047594926037795431651881063774632934699373595200944926638008257480988644378276605231518442684463556484671499780998505878780498896876695964720756989897698352408990159796225757375509968056548812860896836445151211325432823355657742860065273950933066458307966353929204162808576132081979879793370555228548966947782517139711797439407649264332974398291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20356796373356646751887593574842189274497304215084292686799075886737811272378436594477362497252663069704355524348418427264880792006495001219142640371325296942541433550812576606663755259272776977360871925829773959762208261004706435929397883639855287383733849858558381461691879530319758803272334531074601597045303268974252037854138163789416252331945124113714122963659243708008388393034405422478428606222816525210787409304372668289945201220919360860896101870760492830652394698652196172559519569836784201990750963830217819708787062958834869748156602375970705584950685438933353785746391565801908581627735740845816771096073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24623557321944688833357085858094812308497186691346291526161175508363532557419742150948834653898284498176393171202396647974970871672501193401103428550633839448610013404232554557107983763690988565242464032363097596982844020892119806994174864047713238252044804774931324515358009747961622717118507930797610855752875825611984269442640537227988169240394465842511954592530595021123080025631528813529461594461847143824787969176549957226971771313601506687701356646288075091210696928933942809501610812534383607481185551141664897226361121209765598024331624056488999699325135144094698108774301807228141602769374005977253903490867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28131263293519833863000015802210154841322594992737031915681955558643122909520820849417378873338168195535402965251188199615168100992480125825258930911882653064319340936126525803945318458859557834150232297506371035076113323267851855030998414781268194230737460006104035721565765966367563696077645457346020962452555522037137290323481889253393806840345927243850804233736001105676073958503822149949014702607420727381430882473658647336286597895344991013790979183017119839145936275457612876249587742939751801558756201203301788009741604936596002992919578209991562809733809610671169699435104213672874172721271456408240438016639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28087404394984069358551022780476765385048927817945416902486649740891655851641243235554215441275951001848650729742131423539659822502059750590407304168483823471727464937483450697388568767932429886976894433173376317050223456896697821348157549639819793680472986365181926734635327225912115063153438436573085199153189614129551013351376521227226560292724797036795087375714876684734343448672753096037171824757122091450842636542762980793163001236840861452994260247086684314744668764381147067356333004208088343432139520617829213493073079256695984207553469374648788682929468766685037201592971182555814158751636896260792496133627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21045764305610110707165099389333635166155720254833709471227634455410872893902606040872527133040111237303599211652780763618881829521448568553962638119073947580091911447872452848322010261453771311622037588363798677887743269703612112672213640560555367471775795513487220757375069439266195949386086738879448050640398223411808968381987158319555654115480776835102045108355855032380077625665777872398120395673219339743437407365427743244415307657138222815939400263267314274788405784698352461266506462565957902842967473939098089801888775936853191215608977066855153851445323973890956296976146678717424242987829274712243349984519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21012167397372365285959916632360264041847909215099314207691518879080492864695955886914532154939925931041771974078984031160233337267684628659586494586424789689717125762736961326252436342117480966440328510642498399590863036098310603952211272336339272941360022726759381360951891367716183654019545631801690662163493491446712012011455191947357697468105802856917627181882969799050241749046167210919215995647046502107159027492008402208732411480870580461774808354526316085597596437309766934901486234087720765951319921617005198917313111318133603347062980670438427720876368076786661642069835199700814479876836378675916151339171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20494702919542865077894073500136904373276093986018466821834686019965562354843356536691180345280652164252055459993899388479022199763034386850183254220436253506222476079177521120527468975759022945175920062589217203214729606736213594830810672972486162836465963701015925069378970269377821790198083964664289325484603308962187437825338241734883971416008654733080084455588923010988641060856849100719938860234760083674403082786247834004482820481605786137003357223719381711694391769278164748204184313682433763278511512387537364225128315028655668997757269409609549271573352542154900981754578183811746544544827526389648192420939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25783946184932445737493461258627086608456698786430935597512956533975290389953327082207269199084981068974420238081036477489196818918913717813237038004624654337160916670215575961003544850308159078068244120765694929466875190849583321920503334715286698163971282305944188803013763926899832891227794698654541704278272936156825356702589130942317760187752108743512349548026123378372004936294677456725606115785913690044366011092602427431232921718571370881457318816900392559144055933223797261724216391621961952604726434729164454561015913063730951146243854111319350188005005459109637772702906334437781035846387377669296945733413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18628833958951315423271101116450584443524121818400927219190203930250087921011520331866112457829008169789619398932825127807481693908741154107055683985067241627450595453456017862310491881859119960415298322889465008588390932433309841274176608485071747369056695898048276408056196140776446438286886863656595176293088454884665273657475627280292534058592428111344394289289985311703206196154567929460827819124831916628998453246907430162061846025131285778389395690877296349408963288701083719111870151302215518015174336465518171367714284200502050177929812818410578095489632927251256648976272579902314886049068779149490137990611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23305369273079189234385309484259898173119047085107263013698448190931721630248772719876595973820984321482364577836159634075344751150239181176781551277460982471683146575806781055575999580809767448853044952481209486156009400606256232026465299728475993526070642168180591043179450622069240355301475585002501986745084498646468165019901325269725996091660981781174089588614264621465011361463108207456195762674453140236786963396452176759781257293992936840936489444814561274457706733909878003444648410987895697759603161418406788092687625192330816589416206004708957541783469197719218110812126975421291015541068760035152631738069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25187496046833944642454549817945641064689095177304998186669303317557529368053970491503432782734510091287347452180175632632232318287544418717762858531660313408432602525211055532211858062372985043400266169955223278354356543750721227336018747942730591796478012523764045143380181777701754875907382678828506927717526996315319178328252488743517747709437424291637770060099405983414234783166868658794332496795668188391657306336010118967782866148362791210855631491674884772486411271160474192522947461181778622945532841277212462413576766490485644403367794655052946340318517431599041472674672345691078227527502687926326328882397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28733579603536220055253408969613603891617113344693915668881921316100430200804168372372192630416842166356413270275247523395429922712982363299472082304169778159802982801593840958097328529022863251240392030074582820341421984400981754225096297797050186877579726556594993167589398993233301775871883697355599337508684172526244237817127106920551358700054976416114429105021239438075960484052357477098140705715893835453050496318137340396582851641070536972337565163439339133777922340486729745604721461710033542927626237417898707320419841539422627266400092855579470125922290637809469935774834421799278728708534384824921574363689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24398891196023432338816954970226172450078941029278588381046446230634255804719446338945637788776021411796032953345892790634956335775722619444555230646581818534579211225545536139785269840070686288634691002457175877049141304259257893884566845943272921903754045190874676800846042884879100346244202561925771059972273859780774178561331416004368478010552209719316281937799198031063707258386238949224873922337326241185568874637637992623519530317859000873523078829653954395161995564945412352573262412510410024538482479835358013845319082350087292685999369328262099623348426909909304089603260953030790710399526844419253501138713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19778971460472246856097357554363349455131718942445046106353495624792238678099510532169654622590621981550442523818151346575896963573574578733457174495911098717913238874824996640604822265157766223782596383902055993591916622884751092136838824836464677301707077582196690458014690337237616510279332406159454030986183262024797155792926173844658387818360088445829899512888860624863937336883813792707214307599999600967826923903288564416819751934343459083334244270396532767612921101521039932636923702765277417125578406791830601425745616634641988162370182071064629708324058116411274280726497174458866436516681120686040814795979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23977602433599689667121717779893390628596170368864950751001972094643050655830074046727271653368148440999518164537979542082840849933874367633903319812259752011721707796718871198774499412218234064859295175123853069254639039826156562712873163335239480127487111676609424014762467645901612428277750816649573920667401841448410237706919798462739423907121164123592065004090018189059415963284415090422199293950231762617385843813824854027489175149194807976887406983824849377551050245452354320341834051017568738888689621730240592943435549193158034561385574396035839477628244522226456182347452238553226966791672375632513983198401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28727725305556688698809948594414097761363271886339364059973487357196346723834599316668096218018351840384950188578331961850204073741851351573672488587614721789512334337792650926427175012868024877164131882621986719688527515224283627148861193558503730067367686606324662141247136348951961500837934824392792762927918428233702545324961636063922682380602729214263234176650547161764979183483653890062590796281957741306219021298487815025778359428750757929556517309509930151850832304115929432233663659364771983857012404649505228314681234971765545283365635915596912196741204335539695257568017554943914835359907848446812553000969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23479273899647043574197758746973856714510081452525602285906964072261450467231726110266088716994401746605626103603024093197512356645224794698219860716798706469612056080770059431787098539378148955623948360407325080015197743395576059736958522831663512518819976523235574115697724160651511605223382581800094768634121140118380712764183823988470675981841829544687554367978419853632592747287910642447181736437411760053040153475792365722488079871132383690444566216007859228343927451166354485132997164879875597014717935466686965988622200500819247275438985540252297393893722292299010758013219856204461039727721452946625516273249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19299492665566238351924206327321204409416775359820902107035218987501253270477600502199399200110515470125340703490735987245448143295423172861806736284537651524647398545302285131856549671714053222267868977462997394728061294071362177408238188655932921274592253100304291366554791531338477929202154279475940556232417937434731638942854003874860939111689680407528852369039976569765843018369148926333884529097451376307216643456915593880289705957583572440592511145871876784777366336168656354166602681924958125964077839003740156603478825194015284541116093303342739945658336725302141741500669499030717814742763385341728267042553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20568571815282600914919291817725621931696893351753660661605257546783836014151429096131439553851036882881903126523906326792671500604065292469968107353318729239978674193995862447711299400736866180394972289166126706994285854572013331009508500793801318010225396927920255494608923350895383127108740581913287245792717366292119098404389156046499540005914991827810913914011543160499601802739963610096518517828276801066172755107567567756354485153104870673465220219036413100182592400366812861421891673600450506873073010469495547249680654182410234588607864972548464747812964427910201159029882075551266265740601415489078270457287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20407063092380006665289012987095849849776922550777337684976638598330194389511015137934220154786818025938986141782729868427690519608660752914234474661123133488930008484726743772683631071499702623058265505821526068110862739708013692989421428603645625881709212239426892924088565201580860926957615440090341492234574062845998346194518618414221876010750722047745878333783324252596798387640209019474493829455729514424224308255444375620324335617874293636058861599210500495706661817929896469418641753598723578445374480881417167228446411909761960054648090959454670297501289625528455180087856000231802387466518253157793265851147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26461986320651161469886842064181571751479197659661179956369047392798774429988247432650738973393711583580523335141919613500634598366992483685952625953881304366761886837927840926001149935598986481445801795222584389617172297772125729485206155640481610872480064487669163667551469716687411554278231782306746073773013157702616226445248568659407223027663786250793790773356334236134729250613657113005119154659283947649741563519064649290469751093837312714822088612368851131997923008333412309951270280337585340313472169202923782892895650335436069689215462996766410020328243876194298015084771445927626350213356885240964341072861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23257564831234831914625614020512486264027913940407895794588855092094300531153195681834790724081188499157583914805021440165784317626601772851754690936438891144331238104928360572543693623977305725533996309963195101042870226753913359918630048768064062861269346433006102568227724228292895839903338188338349145400586350061112982173031552147666945730100586293485629722723180830281471238060182017058523528010090271495554864359732305058228103812251386687476149106912346199806261626706135821030185854027002845481949847381913323904356417144074303631040489266340203264055450005343598815807991515950339886100639796290404835486199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25586806273136596667560149587707229634146921800377402588821799512294261056373821180734223159878913308039768881751765455394464636124691862396680268958572788671561994802707443338568229249380941279656702905856260744289121746501139718573733607222438052685245347138729695369281789021875979948730684522027620937244920196394613300325401469104810852479439488120013924306823645851115013911131113856159282005367288239071283650182841562361155788608563319261120102744075686135927319387701050843779999517485025758053196436713505619322288951914595014248018911304911718525852570994456992961228154639786478261587696667240731227744719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20989846932064146170702644169754151555302773899429516245249391772085277303159568354538491055319939217047516554424753658958792941025749340225169158394960308645592126201546073578647615352049655810151114189549311437481912731580548779886188663800213386325697249544241365183966997090961497831742692703861602538591518784489261985987844862356346609528429270965050504776691851284162952270688384504596104593249665642994868576879906536933526482787088894089632140301686877626388873684834366090739107610682902949955296786546110709001293071726988669950082875440054539305330172539426813590548739796985971322452182437495258635945923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23508347820637960032683460829323555589762319757838673486228998746977442114328099202239269640836083112930877592319782465294751501190542097983351167882337479575860359021666587369880823483396564484409709157429332370615050575893331626851872751362742346926967728491742145732621187169638222575533347459136314016845342723043522713519323006623948229835417274520954089964384156173757812962477307276494979241756212506975456743320722705460535882270566195569649950390930087550825759977696807417335938445689487422931028013574382791385255302378151036383996773526283541499151396860326611400029438376510738897743161027385601325718459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22372408707566003148153148706844556625137095748075656095169149627662332836258367690737722154927579403755919806198999093662137466175373531090503668858250328477307040343333762005128595949485943948808786572474815623957793272783021731781200805789073929420933515674563142823820523314755119244319960471887882160461813168365858478835587512157425185736471227592683495054359800028055397593706240291271215397159783169396182043302027826913333126726412674961062660694739982592829215652871667161970675753734227506482879886856682571608792315590109788803087892151180516092652400674934135053442484051522304505390255153601432720649443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20940876470231681916712842666772504991316258505249732566095099230343111160249288395280863834206077520096082152618642955623541508696828224153239731904756362468082084704650413057654427593702283800688135528405496765039684458962969407586317518175385870256832920974117237215315253711594631200028192716279831176093206940857720254620373697419894393529865597061980782827386134697429742300266858599625255597360672885599922176095977346498972093129814893652414300940611736404053798447084727722971234375717347482508189056157535756266821957193007273601086669743291055381366897249090145105213163836175219143942243787504867073406123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21419763586214299469568403513966974921156439839096167730248911378397593459492717163088559449044316360953488646839155740677843178001303938409262077815726913224560713129650759063441830892172893764241543374130187265512912934321939083087451633306966234904767338336703147006700089790483588494637131142525059777403468116951396395253819767475782769474261080028036980874317938523964344962907982487008452637861812705732283134583733368403484318890924853338333897682949201392975297699649211690926856960672688510613608431586503215156736718604647246403401885240248088132454396353182501855108855337263523132614594089696028269630951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23734305660184552575925603917251136770425195943679216740800802785886895604747281576375542128662816946782372920781304552610527812636868620595573036103076591975133223165064670494721954115190099309125150350066260915923668157059186182773690899768158534341386248860915184554521012345315176929727117342405995719576106169847340372630529998130500544858868767709689808567567465768142431081715888924455315963978203672036012027058738454394281008551793814206378325904092490927302386232175649409528743611644205831695552900017076627224566189073662968270478036874172279320638260869459618547938547433207508478253302614508970979622393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30680898136592489291519950001504841397179044231715433521285945350835037704504477442264929909275953358981413422367831485354263134244541428309728959756420991693695461486548685288543032038959932982760848643658410603663830333128645989868059465125020261630240400820189731438736335004254930954884408751125692807397526338997480752211669932597139904763255602515870830362460081766549184794314986172024965044699986231805767208688907982958358052994202966686482902858677669527915561970941905944146982779734656911932085363065239846744462369538288928983244539500806387431117264646474165847438099503979319553534192274332269454427457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23601138362032344631408291380169263006910737234837231877730274365514789818323264157162623507363494584771762183294389863933456439996967382509367838624415869946512959781048856192564504975114963906651489082487367788010394399454480410815839762406378749530764157588543110610892589064221384659884186417464079185796633452076566215391619946082701258208064881010087336483470052983812420891576063163812841464243152138476515347118720392996966138661067150236639742116733186776174054275780519185765619769030851428346720234543762035053532102504750624298057888819810163456394019197831468758911437305621234353374776397357564619319189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23520388183829853345882209755021927911323245651405339125236035840314898962258599144698433157558237221546528922455328404504235822802556552091629378633693364194921854156767495178609779429805549275337985192071268410663215323272199099263722916549729200724246649382626837171947287567921778883035860264028472559706160105450519879571482717468037063780631398508031242053382710262836191673215877722624404972385478858405415572142692316001197489088448794612436381425767534930667670932431459959991495358854877219952498622779515851575695822289935373908939064079157531810163838903649130590188081322719035236256431241940721614346537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25275706365212547723851282896540110112797825232313387069359024626564558523540322609882164118065018547969653380183730871013941182369382088608117329655295875796033868628057484894013803067362694896122038525401891592885036094315070410556566487540652729999721307773067612678599757713705913974235198268139762903230638183804773898805217335266832817393796760534439562443349570446460350557777153137046521641731729763545130394657210926655110143087251185522000679528402226051403644899307086380708149876440000832878768778754145357947292028661556225345592965521426408899322176097469387620670010398609843922772076023924965930869841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25535645312514969276123436558135846426937211629419992460457398086674322332718375434036936174189942959995437173655186183883218022773618980427860047393000620183355254188120080058821150877595099936679272789003395715259315928243193358358072897966111178853534063954280789454128263898923285671070745873055842099298088909056832381577087258283258909873998788585102701165163473302025545162072617253224555092403608692779656306239018610061507856343405725755006179253782997579977692082080188899109914690932377503431349549308282641531305297852586489434406783990621658300955973999845818466408963182752272337028778279034861805894657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29574584477592833304083792301378371965719001691950217939938538973623742110983506072748406242644996368230363982906708786519014744351739318235892669836133056868290406602494764983347956563825775080320888058672714605364048932394156105973750069465154473933212220793851963537356656393127680667356548005592977371299457946356743267233051279914277983085089709245513015832552899847594271996964929511682735079541280660956217767457554854175133326047683054909294896477468921844241932313761338692938535530566866061858973624362453971823914457055036307374143486631820934423961719613467588342942506907190757480889792964559186766355659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23639446141843649497862214012333068816633015332842209886011780111827090337849292708441846337000241447883077862816676601506241994664513291332322644018055769597583949191260082103914707588704775720628237957856738139267853511860861999053526576668721849784129446785415284854721472911817210205230508112024169749082199903079962141237148831791559970085349861702414953799782533917622166369408501048087534360802469661335036787767053929157074322461175181051755215858364852707210627270810280841008018838392525952530319780608828429124841677012522220800924259768088260855365183793379518815243354174476463372270024330017011480010389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24297667148628879136270632633084712903829894574807832596267945797992115441513690796912979971755696710229092586660496028343875124963105572526588149115500215080362426444451783827955004430410077656179907307669102234282528985757358604931179417724931722631606946569393003610669826917283173796416401623146672223154232639795175524775934085627487905191501343365870012444018767357118255051443910982960832503163351635299516857642797658992539935370324840273896836521291022603282381474307800541903453100436596703258063057303767625504556514427603070759860618163682090424263637296847872189242885092637092347414004254638048134382927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21795606099529394776453816683142529472787938143298530763801801011016204258412109313223450613099210770677048453371580070933931746056188193375539910117868794159627206446725420959080020343976046964432716711440719908545787658321224249608691327120745425713028077365545633727659378500546977659426449612374256662066076205591818657705610614665689787323979351904318438139790365587045324333991533430010790070615316938474765834901588011217166618692521445280573501079797190156689896658122000727628837390666330212951995763733141318671154832551512758383419756623238761978465973482702005254772513302673190399202975659712849621524699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28550829779689135027100920295676247191282474948077451086273037042549804360974590869121097246631850758492593871861009740760679794156296822081712856756156122322090677523399901835650585760676365765005483263898302895109764238600387304435633942660879977621509755245870020490428746468697437414550138561609806870066559915366898621201802083969533974498025043223616861580467110484002846170674931588119130468734451606598234851166307686435173238674857294490738373378186444767096592064660151236568045210491333348159194886178503513719612947164286946202735779941420456040557209735543479101678028581728197330481270323440158001789539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27369687034520545563907614136503974158639299544012686336047563369806101064758495197829566765296918257711446066079298627272560720594229312243874432918620392613674544342603570528697214072102254872775424317372221848517558298391696434184909284127699466597964619959734191235855584630110739785019569666128291133350707257584443901224326537684877777148759482946528068892862601490564772363000229775309153472070739769705934676499783750655201516928490169759597056847840792829311422500705365839732733750241910090748308808885664237862464427692308519395218135550394389106678635495659652092673712307494454248978340849669506353482051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21275575711387226135280294225135754555309145137602288718196790922969104211326317519378615693160798664321673240681870384930630046182940822315623143027419154738826334215794744275000318302260031629002516522071367771812450664766216884419841755839965626765558316521375489609277547360290280950330833309009820133776582773394272157147945101502966772854343261662087227284227183287799667031747413585463614986974969411388573571848790764378451682232719287128461531644610208309185005653755413614986484539401262713875198994848513476303673661260689598403788679836059286341480910236018255037293872065368747723582384502990529304607421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28163085418348881362595576413002280226873707986319528036474681248229374626279089081553893774519002862091926836735644892136687317454848578733768012767878530282776762285624757992948322197699305284286298952248697754518103645493169039401667413292966010824546047069823279570490084099372974650672164057271046150981881345796990257099199563881363409108051174340738337891013338801326936332660362236411039341325687937657139975350914505940617807054227847075777246795676146561509179894393147638156137101674428357845244925168636824724113911632179354897291507942312388780237180172458145185790374854434240034818176463627162789984761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28600289263543224284925964177711054524378594293520966098795558282202263844278800500987191563910695698490342248609020908030608987690454596426853939619397942029223980299750063253795133087916525555495327981873965040435561347682733540217537106748851706950178415825172305525029404284787953950223440759058360742929986463999450156238124325940836794496556947232908157065706908648339330609588935251437082777328941243466033273980730674278984717276865373267896296611100672170007496612283342703252412778747414496336811238224259921825566991441852865365834194948523900634266505086869248169814192001039736603596207816520572275101067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21779092609960089539177454328273549432913018913335243707299171003306970649053900616447252425132625773750872139056376307087390378297992774590857238109361406492845566067888076618225937049393292218545368091244515604143359808342612978712408627952399124867165532914153113851885148544407040273360007504631577396384596445945564283147840668766521512481074284020688934611135300196307245223681088197847891474099200985187586127146813967054008630575140604424018614265807187083479624183983243633900871490189177106893913820106624870472663615216487741575253339255980895013223680016130693813542446904917156499950493652791895576305849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21940517099858854319455048528316294667391808652009848958110692768952470649179478294603517271570757136008520322851737034031107471645018974887730218925942940482314608994332654212511026790454209613129136719197273735009792382096625683928562524797373186538614037710467323880860242542927314119682561392502731385197680272330757940572164607810058211430077606491475470972301994828560310186463847505314173202360060250873911000640087549027615582696661828782250034390522233305379599875584558794843114614934483410786505062610435075905063368444470287011881794497073496635733365985407208374473968048057875632580687813588218951559173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20975671141100032149237502454327259992400684485916333411237683992431899101161977508430952210595506288283927092274522005420967173683276161410619173592678224700643388745895154801429439243391101654071263154539696059792964532323962554914675541488038684334762265758079843031781132598109589659402989140603400662992050033071629938540349895539766484897093820833575864876943401071641075883462753969711966878054097820064902377581847565720858456694336651758056926063228822287694157254790558123120760177271461708668648059752284906842494605948725685106003682312727522437585798617593442555952710096515507443870738210834056044948959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21116328779856682669685272546493253569632672844939627496842788216370221843177762796842191641447889755562969119515184668388229807034833714295837806610413378765436906849464459222788548271178167306815511977687282353478852111709046696755297659956554396398346548398335260079410159354021484172305978614461736906460981286432874376671865663700703942678138254366049721648478686814373237741702403787948611148382104086761124793445494832852588017713620353150715054284863277750270792227436082351785745663378485670394258607973007370262061794404600741487661612195563783174812090385600129384815605148770969648536248309423893357023069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29310855497914966070438495212968884675835410589771911262007470684303463694918213654570577576689521680040060755334064545825453458921175017614627113654116402937782884883941017066863409338250999937972430794687683988533452337724045486199308151869237339056608867132117903748374690941717526826930575360445949250950508504601537104295873729908152981355398467579165072460009888403995847230634389968409266237445387814802316318628606078424962393703828133550425173947520049649863363220228606487086831721887065971073635771181379903616552640747320823081442411538113665115286365628660355301073721399214535883397577602102576088400333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23288806596917939258624942701896794551790163273499285000207162752896806185013476571872369561480327377685613960881087507913135559967132192331199639189034984686480010179874167024382547369989095497480982697478197583434897213462359960324086064711942769450581666762356314157500240614076445539495389742761500195062799869359717299830118608860184836460178180380726051307847730268956019569254567829763790104547960969800253280319261512400693350409382341396035055891847239076529504479532977916248406547750652055723031420319576284667068682066409457779703387565015290948903721384173501358713715009658909974306761585062748653676111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25658634113490967139229811428176221204726032983048738147968147025854552946083157512623794335110208734201285161614804864360897571643537893395945148015327608680317748254882351892489392082817688124555056459576577734776895876782891851421131139618222232195955858017799437242836256966428130721003998109698604191268735739905207305030842303956129300714030282266170214626601921598846697704993248162643502066446706047540856166613483767320653983914911151864073335214215502225861076031838532546513274366121771210390375263278660052552262512671305991772391200970247769262847275528270671903093313577796676994101214180021455663541437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29144852221801223036771788808441070413637875798522672403690528030830938949713507624317369387570886747138240154774059534639848136050622270434509882590266699021668367293801342291389896644267740523733146676698493938754733475809554100518315791034297567900416325552732564684223397591312036618736274123270204143476174055141812838307569101582611909917126422225052505613992497306802029164564920236660111528301135557378850843895828508468440969774336043842989815653606705719665081609611957133785139888414988445328797384251258482080983088730307464903010873943823843759079071446696646136118241675536544405941536306203715573253333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26307208136214712513645925538384664178295548031297468475397417653217340949438004385981173071522335436340495770714789161801070460431647275546531316695473787743569829997676979499835307027600520207983326186759034320442907094126306076647702428320524492982809295032618835245137923658945863600594769109952454077978451285277587153878984228342378796077439368850099580231179369729880320423915217788274102704691314419673379702932138293298071622769988592719095369433812258177487688597807791952000052388168278750256750315943505863936986089179358227164899859060271056220856564308604895951184072543201678859171496878079347497589539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29758639769818020529717563333403994772273838444293196983102968720515590621573059655836963163248133746995095335175570440969763267129704372930295770362996720287486715828203500214086615655270841264432584068361455285700621536334952982075847220307156923702139209205181594111669521726697588909148228727232380777406931778385067567531284375297644602025170324328555713075844134632949039230462834656809129014670769956966917656715576522922036251897884148156325271474685239422933038547966371988100433400656387192401944500020383695171997096556654738023803346627350842435731782518213090435096101270230297639410399129284520734440047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25949992622449903720172845528499326483392978182798002843677812103296609130030455482968047019355013328927263642039275147258800241189314345753141543799659241799213034367510501082129682364067710502162086789295982000432877893970742813924931591058151833464932069361210542315612137522129315604008812866103730990788705589816097475628893403502629356113082297396034529692871578744817610957204824720422304177672469925903829850892433627713876084095889120282502015558999329284137864613422041346731006638160546528809243720964350501778836648163767700935404932481582789064176940281312188989362070570512775400695786258202851962194061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22948257381312368532878902131634045522190078463810421229451306846214989935007307430023588834488668773793451684598774278866048082064745441523274443882996560252700825526745770683615886688746052264624414543550579403503692824163293290570362289558689307205468117319846179990306362506991933709012143837979100213498893194991843266303465607707555480022042920852045326552881001348622575831834223712587347353086097020748240660719398616835386524231956547447749685756065577990618157958476488045002958191198327283738041694340261276467017761535926541869795750224301126448432314358843467836982808565899608828198811828380333401849983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25418790629316126840182812027987194533081403028228871071400118766075203785172536355583483813598161840999764219087580189583853464646999448878209440381312761719523325906631190130756022183481794112246223326961596918014865491418032675225689663439546745058481520056104316946640965097501670109461996409426527269748224395107366242672521758336345362140351372955129346317830505104666031111119121411545761560065162251670927808528440824560077284643450848863541505183631146415817236031926918193607612205313881851882583300603329524894023996497796657854594838383558528705458852560453750203056259291084662381035324186359980091820237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25168586884464929201680002718393644726395161697475318687314701834865352705974054589721178710967003467783257192756650850451930975158844330504775769952629441858727360755138087229730106673765181152706257459533086920741646129036832024034980900056845007545002313375528299716655256213757025164632901308170269099350955583664101748370186481359482845424623543144582237987472137467233801539837569020822818866528297296966454380939249693977871317190472768335343594931586089705180905451804178559951837264301045327349972759244087889897614835958909240746328015710359835407590212435925106527718842037661592055187852984936288395969267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27208314677932372348472988171063716589052640421441088053946467931601908469415766094460312762516225158368243020706689758871559247046246940953399080995022854869624646819929831397205616710470587898477721870519493904726367270739781114013841629155529816157042836607621643840009674821317116462769676953298545050119424530377325237202980463877717905173193672972841780173438536077722615190003383677103517444954442811066759955523292039714126386935079624133294676710353229720764460649349794981666765663431453748501659283213235400439185898863349648377852808109868721355864004053435629276492069552518431973189793893137712289959947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25672472081434530906629985945741760629191802056217621941980102156548265740554732183390920394347853326297964626195618617026052921838498607434130245809664456663085250410933787623128771517154203143211226737312435868763951126119561981868501264583841462352173188679792779362115183938011292158215345176174664051869825203457678667447431395517162902708165499660176443633132754139070190948836491670064400290318009256747637392523202221087177581053285003974934231610817995512161492461404842562869794548224190223853089128517203256808649228465702092109586688619773382044706999020314674869495828444330220920261567377255423174732429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24577324481123521862138618265457283124877979624122790395715467393833691032010411851977056700662989461847165766808589693625796981222604399282477308891163219776610604726939416191296014195408348468757401010305221733514698281721812361677236237816009134644809455091644366571498271304329058153831622505508861107391020818202742162781576692295029085721674798611540242323642577162233336503993403349222462490841848006565284646522226613780521603670717685716121660855638672739728256439258540564648906888843258082892528586069139219819617506269256105153838970851366469994304161796179416647110491786561639643992699652236511405328813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20762765392755121349577579780454087006061546152747761609651140582655003820600166345875892130947441569915104658681540624099380585170725982469706781313461796597815276592908102750973543651866413103894275077056955776191243908872216193974138834516728756386110575491228701020173753291886177906570601987539506508210208592316305014841936019191224241959529567919375825142736508727676942028819900939070040746636497711947328286784057210478291090441008178746528968772416179061646634432225130855047692096975430563413139440522108988385418199387054741316144471260776837921474600958953155339287199598039210832265661210031555266737261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24762949200026707443286205114420123979986641176182840182182331136834798759736146492105326064093730496921109479876024107421318297808157461538297918463732063480393893254601171882335137481758049197052953344820402352554734147588692248616140581614361876981429980456092125944835355104432585930348549051849198487990175439662813837336968587600459547203544398187007456441564916221238963481413317333541287953337270850969496167040744815297827348425210956405986960806239542787832762833685412004549416202288810723689652437777496622467558958198105088575323315270231229180936276173261866343441794674420383889905519141682360725513763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25519924402174554773463595667176187875299372877022038947084825489776612374109780624426834147148496805139269679781443450941816573100217453955999743579639812620232934488975793078321382148160341346361007165115228327067673365585971654259813007934403657265391297337693366839127424775192147468457895980390547383829403735011562178485572004702032403564034504879867869579422152067504430711217552047570833866599387951054155022390472810532042288844899819148853721039717923211803293013848165937288973200978083637530548745442054873375673184414954922954668013313189539059739725789613990760740824448935998550549602050251451470117973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24521119848152853486741680323735201908109517361425864000174267621805317613886591528725731254022689988834375986876859595632984521465351642168781157489524302558567845013508509359001050729201712592894479186876076118810325503149785379963770914870479785969415368701229371828338618931522057040790833485812396125645643403830405117593380757451153090551454753699040679534997554021522471632377939643964704333769816065472176506212707144545515718420256569530903196235114619978768690190784869061012799895102887702614207288201982340400053978309810110226389203117123797949407686280415901569863804296587084293186327021661510628238101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29772436184500133936509352224237815240722699187752235831542232957837806752780706503919125817491941771258753094486838684334169413808623230226632534821889175127148884773453071930862701930223145730652559585201735294656167830482199332778512951187786147075667099405281986045928805231320059704625830962105531502468626748489550900315394924751893647827520722370059243762483403586136753080873137623795137899958137957218462696126131987460336840346181867197505027626182459117949752311470359231008384859646730440852213179895122071549889451529486905405443596153087681322464522328505543966954490133067310094617936281593033076931589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29036308839557874465588167970998416638608654278209841480480051759665273640415480021363467465020023559264386237179155104575757461071989432112476586351616234451476251810677309679648291584163217766486772399875875586295743501835273863044638972405589486462570526410021281168439284258508748728700377428664201051182142594775256279368491038883074671828758857985240927121439109509624731089447353120801538287578127449339818422447037783072848039722177550948731774376313784115931146553191184585462088505162975481377038811514043258619030136593301775433750228479315062424957545439242339708283892340700709715404667766050070278115153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26833112892186775128767740604386536087767113056594348312048241510754442984602208481188144263803638581732485265759919398340896019390962965710784870743715347834557390310804141624238395565978864828746806258625540315408638452490510740856875109025272625527470091822119700863443284783362115015905298040795642921034963839820173828487728517264730375486625233341783785788905339452144710022222992955275030261007940678458947103895129277517777640426327325926170776664939627680147769574361507755661615849252983931801476878450832365457069531743369642755869735893214924773853108274070276646473946954170373327195083276364430878145381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21275400310265921442697799895615538852712048047296062791945698207529973656755582651704012247778833176693836293452473906397406312866537792968088761619857362655656065912629329645926832224798548654269698848102422634013158970919814590550016441891985382212386629813603290110527313675264516762044695552133542853123052713719789881841356490791951911159156790378340319348732832578638607661599867551035378469980525654356724623030406508684596201165707973338119901211368377208364533585470676850396099611870824831576210648926788320057273225583191857400152781222599318046463949723055564649326814967395335623574530916992138458388233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24421075100440917084794849268906857733796739702359926661873482874761954352030145814118642777826723787409271955085521439655977502419702169735429111364041965187565754618663620101391243170019247018580425158322868924773770362712919897854410009043285894561616643445090229522624595906866824481241837541315002587224581084279541794029477960114505716085937175385395297900603722074137865865035898701346523122518112024490898728026222631969046905325941111245952246642252629498256833864234892463068470154887953338086378764362916241538756699582765473802556836693217685712595784379643348748215199904546492995843815923838027615144917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26955716031036049222874540204661519749216387487826432897426985179731550918616324843209096593023676176291008568217561479419002271983649300452767326929136232229899716267172899699487166100565451539222524819345932743182009579087060265731532920723605146468115628203778710909555088191856801646349132217523670397093538271211761524589180397347654102360381535983593411336434428552813037835915023958210445319488336534421188715923720580223880088311946856418583355414447057750736870567670291359848479503418186543677719625639216893719028906647090775841255060437901229884647459094583698941527147817022197462974410203547245875324961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23005820035439657007224956353842993447802401436775832988451192970023959714369655416441837715112296311303091246223074654801607782189561371013488021592025580630847843403714186968581250745190045359453789765379113514696358038191671243310716779081769545258898951089104490231699545155007502159636397944423090983112033400175023099543552843736671612368572208374178831728418513128553709574907379395642234428447134556226351162186899391497557582348349543391633229369660282983178864412896061847838190478613449341630120970282550297146756178550094316641480658781609534506937533523249461483772968094146166611197429045115148741832277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20095577666942643429234334503396786704194464795540300816779188274157074450924578435944807918353526279622309489359340261236604520728189753831364210358644573919406111039495587463626707036581487343879880862336007305008927737989680872415915023044725362220899628810893709151775946447438728398725150192394961067379199656257700534125989152722689089873367033036209453921461813926305864058265026770100845043090626351882828064979233404068853906324649747919603224582203824062638311863774781668768342003836533976972997277218739304454500018313355708715882454815765197074134198807541325136346669790971238083356126294854611653213699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23524687591810917435211937635737725795603612552465715205809857306229614939852963274910193123261212857638924931114588573217601336918950630160917430083345141316860792099779932570952246279048376562150447656136936283385925721222879248169853752151655137805268421049512414857808276785803956805162162303944217304777461648057988922649852506630305330461019963390690933850738630033803585660484874987600719331543392101190562374426221994338756276458138227894673020856169903599271501807280597991956201304669664829321155884277327131005395938968357118364597667856019845968144317671185062780478510165549958846117496547084444387407157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26959839421638707967376416223143333366274573387231699600755288562081209249391147826382570982687148007495630642725934579304969939164487390949028556626274672423637446284723928273865294602415707636041763082357337585936805152549638505923895310774352328371891286684714226661012679974871594922570411334409322952287382343679375444951429581640818993703139097982333648586564590624039032394923683891517232890634005183183099377578342859924332773256203418699068054771369056107922897029065256955651122747111487941084649158749492388091130942866212915761025621748202021252226892674585962451816644628482766732864071777827821443617899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24616149965001034793360722553569469165328347969326684885018938203385420160195735322413528531684963977350312065259973508758035557023151830160803820237894152961752659601276527982531492398658502762668320051535777122084395606786188223741766410886101388384411923718853206540152887180019245839519490880945257999084705784555469125174821355355369872707960318610863680962398210082416987072981472143824905026423266083479401978535220247143989962904921344649911572625824418019971610561594512544559317690859341849640784006447233673085949863285384676855059211905174974676839420632862804417116921956534668253801923821537105073044523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25851849832276308737126218063774293902775579284952129821616892081292419974299621231582226328238610524957149165257837412246768618645938372324373933594039605275132139486210164367458860247208134089723376124791456565649962074648481859960172213072566672064307015827021056841910977180079575506517848312281405100566306946150654978357359343157259468968510324138712509498690830165047848209033590846694718985220160759870521029630151353380779166614167740783341946420455887055582008456563928228804560327612462297664898930104686259415272982662610765891269510197149124984568554244907357515008713132511087522349974020111458231410341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31391599817718895002558947665982621352448597869983323089161268400828432882685198764386131152926443926492995441725245999754979711462927664842414601510041266050253432402114083020087835875433507773926391949148366644980407272155507696244701292197825443256280281784046788819630060700945401251122283850703548577919287512852937714444258695515223944565963553668096395058265238918483181998626276601274719205698188528559304151470020125842379257154420190394260590346554252248632053124537706534262636391468844682166258852077643242715714518282251105776651986803124526454155434865377053438359385025143679970652830697631169550822309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20556807981169150478495770064549345054009563390761318546638532215815816279015737640342617172886959305745681496993420765190425513214206531476796952156743476290839535152385106051551890229491391013799258411881431642821294386442956144615512810851325839716503928614755060594046748678091624871586333906647120254747985113320892460463287955601964987482143878261842374165628130970588237818318762010916982803397686216056619095500389919245055251068612588323720001481745344263665472007340169148262493185777846776474172137988076535715023330158446372774886267677424843115805481161881334908758069135394898326150699018309223115540361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25792452119274923733060395455147964425307500555071047274307474162404743363390947980731290184706048527601511626971310789708346203397104259263931407530672408553959183817749190897233826762075840623984220388632032977320876444618328812292755412452874000976694408249985769354384291114026535261622814286761813238768233280546221755734028676735549955877168666281660817551682759860296185021550255353524441368290516922514322417299813887334684048601506958302646690718564816221913835838995889129360969019719338998941724993765145402683645338094330565713799092558461490857015765285948105975836325999081384661252311286528773899015779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22511820016708679609553966519828413679434862385637189458505559429846281762998031097404097739918963976861833714666112326636700050715410925008801082363934970155615207437387079241753109875528990572241114517795020874581532370786985390659077047970758212512681233203571192281341865436019973807113973914714804887276397335481214461028230395325018348199235846066541360488049467608943980413856852418140490568314128815721984081145599786906751860930853583612067906952111230578562384581283367520212851080712060253053533902972765051355539103269764981705015534472041203397446745414799517904168696229789956327662796423254937630922967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27582314138154968979221604313980327888372929896655306145117003059764515002429023718379089537465002834557722583132498130521777596384999216202195665887629400427315743573325126793913483498554087794379686622212339474301798732815999869186056565494897499734255096332980131615910555146890175690376602182204885159298727264376599634574222746555855807695446195097721415724270288490973698170581029910520793084987665913122308698475793568523668981585137642558624681904709079085517123516341511821611625366287567534848482767686609670422717998964281148076553484546210949399627768932602480809726065177620743346185112407435979210107139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22835170798657712097333523867369737499935996063494915872859293053542185848687661671238363370433170942816383518743613415504994778622900061290545721546625902751795395466557809631657533585540974376830669622698570834486054215527342718506644400565478133536140544734033467978833356636463380284348601562369684743079751237020126656649557142796915472755673929845129801929085428933199896601105783446794893528881363425334716180411210537255386541484189976310088411320791656845233565658651280966693639384866230424230791199316980380385891770404062837614538556736460695655142675627366764952128199512652748759152981972230886845670517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25137886970112797873858379155485197983007515033215008461244554100700460102077142630173478304044984364272506257673673908702701582230701278814998609498113338203565139276923629329569858222022894189685429462746552077915762573948869626065987151064582743742442188836247796493586169476737823371644719807535214691967239442265087544443603753916125391700071033025184381661404139720733018024544542770608046906006611281284044082934410314774902477329076979867663838882118474752581892600102172614485384323840357225955366628236773959827679607001960289865086037816873934581740842106397719657688749025401749730116473629537783354086087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25182189472971590683013563226565916372429331544671945771395226037893924948684428767351911458671591344124512850196628713384444835222882917152007607751310467938232667881029883871286180153987191577548866645480449456798010013114386384122703244826333369426582194487584294726636302390709764055676243329450880752233608831492402823991828949591727065488427765164334375676904530320111090257557461653783250414904358580715676879825065285043465570782733201319754468411652557226929113346247963089485576038591658024449371777537163573167230872644475898871650179817783678222739055605547475273256884793621566073945312137260932725657287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21872952867858379910917230931743206389178383814804009793059429164737951517781132961451071048551702565936956366426632667743755632444357508826734624172600622290933601773724566090614182986846184763313274659656267274313319107435379332427026701111963879710343210380302793268482585307293696541451109090196881581502635705329025310793047537392584971267793337640383759819120774954755773971127319144797878936598723718907671505743036171691340958697939024140591479573747652669439216528534581576638564496399253107661530544592465161552568564609969948244875371663598643254308062784333494650442223697321322257823970076201948561883609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25929923643928912390199695843007629262614191514056323510544205045276471816520872476503490405320156063935467023822691391627829573550019912621213617132797542728014706460092814291665013202576184127196632254822539779541968670402678460119997463116476071234758759345519260304154611518830075459739920936378927191222974093084786595021209363455736653138326024792218928965268560061713382218070528898719983386094464515278948386333940673373335566369722297726287361668859788645779108204802361493007377764578027590509982803309215158055489953660214140489527916183468298137966067862066847207396417889919704025300600960495800872773663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27354806675044512622558015551788592510142452443688697432022259862538811466550054068455874967894392561973513430294148495530525460096966356958511312884912158582711857936396126094905808651740125618676535533643321469797094931887273733423688804257206831184956866439323447285519745016372136673006315197964247697795253514557460385877126347641261599415120260449579305635685654272687243200723855022100213573597958843965987217541267000945599210979931517875758816638753465181492451028418429831788075463641468894333546027242823249614361196658125217478821951886572212076704306128184287437666065629006343382289744908710153742080993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24831824248677751278714654606405213427642440247617054262426801247767960260324808156949747913938286728128213678326491406583043793243294971292723821875487499808036460144381930493498816068971679521507749190215809627595518440766624736119553574585840998436283721427420893635903050018690959525839099432266254095556438747306451010036907403854822489582867580801329555206254726148680622025893982449176319719558058446377352652665698915927616968306650755816496834837011471395630887921154423664708199448225292783194009268695029214057446472249135069833876726671268311455802063784000028272225388734154819782623694538830929567310461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23896438908122595153039461454285304937227334029790779043322077513544734394759674735678594984886358093693031148421588785759755956828792028782905682553705712432265873524071666844687109318839993787366125160769192503391065700692561715496607435756704225078747200606948445365330104110506865812668359232778225075165381047259231112595404841470725289964830170217757216379025355349489270012248984992452695361267761284450659001202142753030562373096976942309817486170588674942035565241135203993921701767547663495052367662750977764244947786895818694964378862676012887527740277969726227810454951718218172443719434511448227637716067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21220323308872964305916804671327450652577658246410916571281056337621047885211035394598880768924624163301526461331336169614295032307405354445661840966616906748598677875825327029026146431852354866418463038209354650916263635866645340173178261270234526393565653933167886021803640462373651160648313368378127334529773089247454972739516828331292675796137937462019456524556280072076158252842833077235794795658791399810667463920589819613157467386369819076221591257194984811417130016163867257566511766055932195601390612738936126394499918758791227406011897818444346009511592780505298280133594108761602391818294813835604678648981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28608998909436009202121980681254342201949020589139107771046739892641084189428836196932637278739330751761711696162263313193048559873672295871800169163705809173619624969747023124416619334362335967649250818465027230255367850235211238918091298020246476914685708336937938384511380259234036526033203168710359553939943046521868307023684571326136039560637491467764983068644782522945904714736895089092600441971766609157113400478058825093807603523157154724269273309794567619927889292594844143637208246293655393107336435366443984134768025758227624745167168987066154844491175610132617094824209619730862792997346193826416995807663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23381479196528783192440023102648787333857994052093388327513984109687674303074511800759218149941168242854017306845688115707740189793024616883324052808122309108813771791886931234180640481680763911576940332713956865669310680491462328765019090181867194358541295281729353960254933883041605802281876124127526841903598217752529158476658988249897308944291866477814428209985234875456870097583255066339354285382364039365775065784459146392743197185854487066877850751542755325105804458989481038882520615870249298012259597168403062438637826248849357083180509572854340662047180203038344081199016462890418740440474842595928946625713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29170216378442024270036630329932726914551602811531069624938516231795409563226323185254691174034890544248967100958002207074736776611570530731230885449628524067209504921961055874716007645318570861673802009877048801264442203729768827762039617282466568930155413988174563382098301795271547956675135540972250331979604979913262303159916851876792317050380652278685261756512666356977015513632221518154877859006714641634627874738709072675214959643358109106356693642548669424644755060224865471289752856499430083684004102933884926072110163541537755254247441363730045670959098510163042758392166089870197230537276312891152509336899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29782625528310116032285577045534173549267812467036760246135794396670367194345508698450680365187846353767029828820351120128460821932512844898884711229834673079685056839453564330028962675336191539687995562426828147028773525493286802503058030882539463669723763877685193619669531333304906730147121589933231038732319892435979455239503404054374272799291946196433946196942186770262058514885799806606836044277785202831298542979055140813883996034586869078770852471385065301527807643396833824189171003871002233126171458131940006588289941854061084637240656520787562104849771827707885270529315257503414612583441632933511145463383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22564259231787028730821402989616896109964880077626053258617252528678235741362289478960685424886181106658740411710104846397226765778054429503886948000442340401134317160903396967302634977881213305556834609343573471913370593027955357716594306273272055975782811386248941363850949251137941891854229103031028762361678159633021933439240289608163162772358077548669616370489380968676901446339315029481843138844290217224685199391740994487844997513453648402891885993974453359903719507392512538766074190597902629073411078363654701426288511040017876770685474760590943643161882188806990558765855269069430684158455747914054620365061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27219557164930219737701207351849187094364977731483380654272703795856554635696291830940245796538752284539245178855315170550923600679985837437374127362650036688942422306931298501200458916795137291463601944247397490697897584859609789827224028102865594525752948785740471238951028604611872256426533059379401442675010855313937549998262729299556116276307923948652914540674006291807436142576064495035731639698517254993227125476579949695494769672560653517835866120151160725425799076329273166318437004188543048415667243230200615012994111204964863759886216920406689095895018605912218706312304286513757250312896830160494368136641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30840111832229370103780640303983962073236120499661106272291215333909532269293659358197015554571612133963874918032671041112362920391612656045856822877270239903326670691916197547529992562061221214265234926151920024393889139233548989826336107095315486819815671478201514625123336960556777909460803432712294851048106063260670138657190876398327053639127007958013573184258125878336293641360449955990590991493505595200816703742489441291663328335105527125370375618603740948916506806798762451599336423011022411489287031320403002777190099700769746075792925441624276953029730186671545498535235332262535099326381226207947263691533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29837142371155567932361208601187243798593736604845457730778562980458935347194738227876679269563998930346535512369763117972424144340568715526452074796385462041851785460331620270796854682681932388316259933612230702049445451131729303406632494481448857122606612173252304367294942197968063773707669665335971472309347882959028476545026559591131049310787395615178052426039691085086012422065718574772928891725266170937516254736659428959509940353141858597682081340768977019828547573495700033644057183760097513134459384529123001820812663205770877285703058342495208190682750227465798339523697335878813171463894512937029991197251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24316963760903066954973190991567810130791295837860909299909263742478645114018602690558400242091862543528218946821614697236964417189391001118802192791560258578922011688160466770008004895616497143544658608623428586301512805701404047470335778730626053408644441281063099886283778487801535744355886862516496163497385007824854423461168506735156348260894926899634656477926200926458534699359434697331260230029992917813088894240387760052856573168728918002562842703237010137978520522013130552598096961980157977062325233197578328999837339977473559396083356192381069401396023729007503428744836521404688738782395345796932222245337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27229039698589075307709986005752401267348893713825493661570145419497658388670086858006895817722655945204939832029573219253347866664696900629741886398746396234307741247314940945242418377842164590370828440404616686584978955243095314534131681539806533441146922852629742212321279298362817012753882852285107575750565131538196863322543323192870734050206051265110877549707887595367337925732762307012262875123221199932363972531223973282656147265068765500831585307738497083004108890533018543875429760605397811619665567340400856448225057718149349512008773497830081177191794448692615592293446348393702791416622676809340253407937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27361611915917353894450731362564229723642959402279063051489732893483527882596679308648282345495951072665393666436844168968424212956961585543101994396615498025839855554287533268090531333856769647662666008489202087941307628687305410935415725192789006354140430245426769337637061011685638393483540421009513354365777167732783903346212203215366030912156865030963646465371222966299379108368081261137849453174931999117521531581729225648427945671661647728882415576961500728181544047822891536075161187213210975805598036902738474871623334264962005030851111715517306782917427077755252404296363575717675732536674779467346135362691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22000115254774504308862267056445386193123879375261626628244516353857587233507921051963263338716203548225713853279335072839024095400085246344070175716289964904697941801681292333508097992834842570599455796076099241189889643618809250660473457661872717354401695579678217256087235773166735150311551063656346644743763192153870587814904736014276547012445034081928323944283166103218106510837463785164651027960646767057658440879947565220436529884137781174970373361258916391624189968428379609945608271023615759049898043347402757789357319356216580500881434483630733629155757948239145593962895380164619385418449902501289273287083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22352972699201650179250718092888950684537095377913798555282102432845872780796143355492751814406049504787776612225915575227483122494989803214715983071254720913005813391007169514627529624772369878822014035459864336964385104073726777821981390696160454819660577504391567751585850122207061114779794940629551284557994242602386075319161842355640630135388110923674760038084442035347797279022225013851269518181145859594946066247499585800164625848189842901224250752956019621037101724426297329747086451825033897674864950929888021479231371875645727286936181165495843365583572299762071601048831488814080833687668197221925599483429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24368619582457486285550301794281256310053645298502608264292620153243485497739842597849023822899909123910918810746983430805181389455623164023676453785799290335267920805168095471989307931138455150875743268623019308447548120878979053032720332552408918925422010000489363403257602163178839148382093332317011455753385168438364332221942342549892491498380869843488864812014525788420891908224644545298520151712123934015349762985547624374781135853576084044471751657101588722995221874390695231315050613898957833544925629765907217589256605317243236650272204251861357687617433647161789208873657693882253140937170706274594417956269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25212387909173598363756124602540471028145700804939220339664147592380532490883770905214646148374927082460504198302591392316372766923243953471582852026977978230578880744910361841934383867490535250861735658720378132504993055043810555075132711035783444110336159078037492484765253746006730040720069327822282634557002884280628827324702525086060065483762776776882287831303152399850371353301208546514693747649887352121868105722302321976309991677675772813963238977169326690118511977200346959686767169032449710070780492163348041028013063512688549243347965258345487390514087051258566530555929531878550664746056905093967872837821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24847325285699720394422299134106247448368737586476514302140266127406682522602200509510065077562955482038704228835250989842990382105817375475644639344657956563345890481140602252661323020787494490526027441837128552695300716767788353857604191411560703505723328694236105201826012442496913198159293825564043009475416758650160711077516904918258759280596675350312639463970037261046307319632463947038310173220569931242867156525416533202038155273746292415363923534232787004495270185242325478565843994219213563400820127620425774551128868388409225147782693582499844072802521430202993258055714295181737083050882209785280568658213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27195317333050642318202311187960086384311478992324498855012155474666110657291189418399936327348534135851244565089984137243509001330559570946412641201547492356667986038333197120701587885574973750281506998062314265370525510983850142062114455314267810681964099861427127396473293762364198428780992716548244905699157353740008426754445543360148289987115040960706141838632439823636217367136868391165354194022589505169616980715137141872648414412164180734513146368007890250641377326247799407367526505944336089464039933822542978561061467542166059976927162623062732269581000131501080382155436770075306809193816017056620181342741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24201739183146303085245165320744912380427651496221532254424405619307110647881059175374409257409088502533120742050343676531953901283953086680719152496332690604905285979424274870923263138413920785242904969240739537932758068896716526713814148147593419243718825679198178970188687285076014978321335792065778987287426433500980986345326892997894465851234656789495089716903427277402003189563468394213525209842225595244085891143217654561577222695361098200305034318326394768103382767161170652790730331220666265969778284397269726332127975371272523905184352673887778971827376696782718373690425099765639700482216956269485860566467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24729987753884209536864115835213155484174418172454479503623127220011469750183322189438634050342019751343626832379954870268329113824717171993073738308343867129053489434537110693247804452407527602239724286253330067868560780961588680056246310856731137165506101828369013660166855549716899901984308305548279847758354289538751428169426419998929907253897874549976923397796679548700434457232863902069388000815939648667978843516472541317400508475362387610456225770160258071135940979749922720411305479950976238312148718337313453948348701800546987880873919501506868846626832028324810098356208193184667709828254325312172364211443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27185373097157408522522116710106747987822290553247429151042870184413732511932833663133422208459915187236467971995600944324052350586243145702060585756313051307195159408714695460722238223476725321148909909168786394022249491060190878535138070299950167443584905568637102484575217205005004521769379805779965570279944216941109852526067608922368397279739387651540008929817793450043926577455051099059485350781460794782016702595508007059364800669984448497916628152906581938245415377264418537093087135062651913857720643206532974460624818231552612222493051407473247726294900122414868054904321388914293516965351958765386333715193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24197687604952514287322070737501563878362329138480351046560809137901691473111816249926498241029815862048111135391541319351671811041848042598332738388905487129385060443670809818168290011257403853174652984817985091182998060132810414608729700538040417077944592380177852175768342261842743249300745936080423801870524281987149616999258739965627148075904260611908704028496190224505396277809911737763385486335428856670414977778410487823988419528087052225437188842454202713963551027131112142458460979448769879566462286230629161958195743636437596042124535487921912524421213305157930252240286088159517329372409968654636604974209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23098825862091629091287906026121857804000616837047957143954486282663491459080499867121411364625771237283662191533507423629251401638136962902496392154870498676544735932504088780683854431411251022785914720872343465810493386028958282043860579972029910576054664465675546297856985626619022970084668855797963067534152986527274241879488669304473030935725786840405650717411066554218934996790427363150989669054051462082013484322848858296614196093108467680858931050218873156395575477919588469153702726099132282069933676645046288590225124044162366636053901398458970846489181228200547716864917169326757439624216120788138663836691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24132714630257977407787777661337090870383584426089339459210959734242180684703095015064753241756158582537434760435081589923366103679944234533257993849343486484651259328926483543545642207081655099816543382906506122759271576859325337605723730802807205334688564171661361129215523192916408449129252931716052608664861791484610884428420150947539965443172036772387489948367931540995362355795892919177711327007865833271926520139484972661763047180400656122997245531397809934215886347164420491860430679375510194063561479578626234019413960175220761270799018208311723635185051968507815567154002863704876681255034160090878014189069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29107718413053938509798724322361590118882496114264707966816935946319130686884760081557655105165433823107934233774008486734235013678171550881867820219027560639142829281317552470665540292601212321081646697696636722464223247621430736265514058983981485203038149931190837914506435897675428156380528930145318782640835772941843003203113965205572007103290393761149482382186714646885902805381407668085075430200792515155535300487705303919680943648137308369950052409607443005474120077052229307757748905460287227785138980387838725025005647737346736443080078386137462212226435038817511921740771479762667593705046734769584283803521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27330596829833246788359440631835312771976881261085924468507016762345099656233401954395874658778501670435620360171646684707851880163048698636382503214824581712094294594869672350961595895881176460909688293125764473909040239303606188507027045667119289937967396760859424809914005307527201763335466068735298805117885644553606102446116102396110160823478769112853035528583353969693484914985042983385324121735066178173974160025150515172923412980771079362086823089527762780826728480768728418784826238422447489214277699310672728528667814940449860477300755727854117232286652567683891131511843891122557698642548777098473081773521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19255963961031336038868661359842666404270584774002895204018527715191840673402453231763621340785594122449819308496124841369835766047344284925324837330815662401498218511915923832561987605669390476402465753928232049276613262080730366379995379442221041694527055473091512613442883138644883064528254467430519104316058396525321480634672828700794454797144112286146153159705429451497912147156335168688572091512714811628099277730621692595257388508509121355003902661379641972071146853645112110101615721758018937380508549602941981473922075092682651874812305535496836968606697056097330152222980876267597245712658852057884685645219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20072896204219145660859529189604501813783957109754152281380022150604928483505777672807625032762572743668125500532126636617787986059701313814049167811269130679579489385744353243725945079759834882229973375172781480491361230057284848028304188993231238747589537025840081174636972972107929953680737554366016740837524865664675734240850581750032507113886444224987744220435331275305277757393434589793522305563840058222758331048485280110139461444886254808672034726903426464508646306966008436575635107732579445417039751937064515631623868881793083418056442117472435894972913918815317344918013121954309598767322328864535960080217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26372532010071604432729649021189635747936385628242605419899556653958889052360792541575920602253073830351938006356809361937418919298859592049140780932233034193937480275268548599719389482005714263742426791474602349357445089578405936545345555365578954390326290230456231677442618789973988810027700664855801773912754664008921795802564412981278024842858012175296149127382334551243846482923520907499389533168607792243009850243814301608470710546572880550448503877638277214755267932750649232264042172549081482080057857603444632878921284456555442792865158860219365191301781168607029556320683067379688874161127883501220308356793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26179856876888279212713056355893496052489891109564332352308630504570426651264590328794399828323342763674722447226441402937750566984557460368917299275918649294364140710775030293642476112223217307883307149364576170103805758823414545984621649649627564048127881125690141342909119052849247938044236076243925233890378150019274183725981442268082027896100278746946728092361522352858272880840768342261838046539635276059920553340686027297647707441186637538044291713497473633274264822010961120416929975498843240920364849673250085730382218082191030883621482320801816426519224731055290120574351221175662374132091565496283490914087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27352646951170524814055911269464529597684714988993050181319989073870472124858008133387470729878612612121756778645073882659060060658652466719454817366048385515928050471414778877965960238910283409744130190864101766075168925007850872447837074172242561520524623847152819431058208077859285025315795497180912539854910309425259898645136505300011945588076805966710246766058991647980559483820474230618734039663349525412341988257340277808756989761081368115373481870035948914691065754955853140557598723974730019180231651982113596567582855652677164109155214192952420909621956055327497647608533350911219454291541308827054748673659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22079902737540088567242588486391690414640040981283425248006998238043150625892717119306845872869215331847501934616754235982759447455947731449339428640431575763372307668488379496470075934069335235869708447154836143788903527498113710979114747415827926961065338216228813556781179725198839823125241756291397542162126192652315857398867841797975022353089663740681090468405318419884620249097640590201675628362556951023348909447895754775812154506847252736073791167116520192172160376107594371168701611819803040915626576866019303002676047126006814266335968477381514832656863956200788083782889814688705537625326434795409659624477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25997927656494122240373119993124141457829430048942768375524647477133130754924257632514949425991174972596257298718851666483765069247920862861214121132815614417487583113114889922780982068978142193737928688158802655965002350276517230399999711591581700508425259512115515262231075083555955932413727036203151838165562121141573467432564461357580408438719695166717373789630069760711079287431578982096042517507289445131782454897951189462729506739779736121535514873154118277641500899118627830124585591428505258689084290224508926849354974305082124581632836498404166644860461662791563916651311983965673855469583887751792686690171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23527520974160628316742417367847395635998381617145704534152801019154301835182070145825275206792889699854728618168712234465905046113140791021657270573958233190806561519915505209582761173280988711273443503486688887534460658369260410441507792079540330282187412990954977116447585231337589511676577229531473374192839390957651491757793298059443696408194757661202146881724468030012009319220169802469555888911422240412633455378261313754040558585078203132628575804140450766624269994886459977496823249672176730592892348870240851991689933756943918217895442657873654051092734936439574507477643231985619787480983733128465719746931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26370075364554686309144549452636792663101226205449379962033984854835085093083366109095928329575019093929143148536373966080989384780665975381138818719313276894907653375794301118024780269249435202758226393614346323449079646820443598143784403211890638155490678770685237991988716954155683690009873184361727919928480618722984122740202978472278413284441134808059106272379261097489003485771779726877313098353116812497837322513582756050585607674919403189838880856364355111014608683044924665666150648889002961020631116656689072652949162120785590384647954409995879324079951226932164130873663539825133940226990394884826490673407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24031022474084913263713008228953713005848547627659624041755517707389677992653557800374910937365087960602582797533209997859541260804866856759354519261427759102078865460130916733742518576299322192652356341193131995155773165030460941885441822001328898698559840318008461214713603159398391029811004801247679291054109351992712995403589383787722890891140089067755723600591423982399710008829226693666107901211281815284560239682050939701834554674687783877868424922806889767441195812212477856664616032660860391687213442733141950436354738767231650305349551691547442530212734713243434360606614866173481882479409145034990710146961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29625536686534593311277075743942450996017777596171388205234034387984053666583029198892300964190890045128823471237332482263673744087005919836262701103826884101224562514446293899521582380456482718502091004845608332768240610235096013395318561112416860974582159472518304587531966366163569491083057937601162429622951155814978850230917207510765993005389164519090657897893702340610741663617016666172823941732166696592670957735343166669385674938024370695526015312120787305817593047135669028160648068705827710769359244473550010756413755837155084564907199530961206537112401752377486290620462870693969702970528900268879953875529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29094769355818694144332030467383094460624139488236581022379623569947256342145393379427517039695343940832624672830140167974735723437794673628020433547307098244785808575057926623977435962915093695757047144157044797613909270487348916654979813939645141861828459122934728491688792438715019493046619023933724726882403052930784832879861346588254468625242981912201478404807422841158155773303129092697509009213796493348888605537873724908354353068293393488178269021871204544493796347631082831883736314850027883621840464233395144183526519885745775000726679147011628385620654354265456443542903209968364475705739281969820061208313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26092473820254144570374936425038477495396832236014267767225013515290554570734320579287396743161284281551437890192399043213942540240567721655927709055549807219893767329606695542212708603523936762548006628635958214767853994068657466373003743197579909187285031225231164743535312159495444218887793736033897315261959226499178113655488254746713522388982861928808434883383702526481497496226950305125445511170085196398540427411061644954335250749812952367962737752915974045395713526817221554573735740873102465695393177310976132306266327704208724522513622764479181878434961251354005756133489568894725121026962786702836821677657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20564827824172176035791292178288602171726077053652175782463753023865500497667283919244378141182506517456272712516212815815398606779155183212535868688191126216435465015992547442603212444940994907090634805629595381491305640102975635665544042151956893051596196032881963164383995013044780880137851709855137937514175088302014211576294477494169474854008820284203134974880972128334479167963733905216532487948660711450687213026009929592973888201853035115918482235455381649611358508838868144607744425127726120404575319163443299019255871120619877068366494903455610155439307333093843681484481449169983456044468955235899006754399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26239909015320794413829852717289420677506046606949283305580151461556291410192497340950850082233268033028060391408080453777213141749414225078671589994761751857616688499602934866433770536146539930503600064568186343637680807450337503607838213617113741652784587577728592870797246432375412489550576743026423319686873643053883271527596061000095894423964341007416798477003370877225007102097061477426272669508358637393576172890392069510151387430985779297877920694364826236596473285099323372591772414245558007481717331000030695338594778152335991350438150705941262035001965352598446622553889608051089555090371564980643963439293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20117956045398572229023058103282348997628974498894020719833516934624429333040861977113244617099520165991372140268591567586003144762146685716667553070732633732346415256563902401081681541725168338839871380296401817816970559965334741932262928107409698773252247789590443282671044070468741296106763005864921664449990065893875103461125620639817459395995834663797714225596417417006087129502296052797470329085563766569042826411123044414426709744621092955717487817295758653954227618154533009856550067742822275363088833066911607639336181201938239955518343144208557961858337197976189464334897669945443222143082035417303106143899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29834016518691263806354646264768495379845489401457904913176419288235877987454885177086276399309702997385847084594824620514718410322811907001363386233587367362035249966422989646265029521206038197925497915810744385145740726341267666515890307768377754042111475358875852776530042630009729791569565466661938989031864118303815085301842900324943911410833181912589689695799426341949186584035079755601677085213284760976675436634323934834241946277893848631543601680633806381647979276458085003820816689905699324531381329964455221450876419850743235682225243680901620883785444880086438423158639827056554189111166111348891246176199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21074748183579656150017955169128312710296254424581121611683574668081181614724968839793331374085782166309752505289052998424639931117261900142709537781538764992339198295094550605775260020356335381141772377615586821844676055775498581501466396861035537089193420782202185112820746510502228432819152644783159275587692498840694531541154600947479321334889457732903409368663806842111140751892388912581009361547020620970615267603632353663897527883886149880641748573767930159142551245563840183998157776641218477578004307592419768387991694240443867502450957718126655748859762643818200621239718598485843386733267020444336936476127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23021082078107119316055741897574906809891424184611834741117161144801232521354454788989706105301610378146255959826920187846736580912346378369048671823239992000443186668954850382828771454171255806656323293628217686793104585151588654644786586419728559239551515017940310262203887944859196438481966460255578844144956329378519193739084471964810175012794200834607709202353121526648917510732768911840346571118583326822275595166744677937048735829612419177720823000925599765653266752627311046283089368809175781318986765871874117352897366447834742005385604656731605375060614114874941758353140981867625574422337872190407717376059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24327186375898753196790936271502453109059096583512001630360751615495702940755005917771480620358488709605599583471107216653838750130562423186285919472183319681744847720334717974755603447857561048470375494896973242268323445278857046757875731889932566457398728512431036063054229639334907198355097505774906737382276554521932220677047658861705459440164629904657358112384937652417295829122799003863438879535354057717223405049917842732970232077224346004460228654869511367821797690402564904525665830124342981305315881008931934289454064273853872165180744111550020156170703312533808793145058904992119021024612145038346989462617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30973116054703169734925593438499114171601890619222228496351127734438773167163777645458914385937119486662705220122723019699170507901803256285442752511620886928487187026922718960845214281799500818787933265114317537095288015870682608530412334025837108141977578543660397162439314546044594169280335516603691049768208311752887279253524403741085832029997547272930957719854108379593010886312784677895669852825340710422430688025556660757643615128915614886924520439611816144894346613364850629838470794434483064948674564034701681577779325786519380767245738998620984848229044507471475182204799932897844422760817689000463307978171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23663515778754384382482910733056848827359189706568693755178777690539600756482067188281685783838666192199633811370285833897929767008773677260187822619807435792900436861328618179130039584501764664579872152764671905481182494278185687439402315703448720392215520700184126563542181873632524513263514370453512431917751502251779668740378565993418547519744513432810474002097328993686658957461270774584870614764303740170374319823536285014397070122344752158401330558118716939799946126247894902474474556623834496784720016913218226761421106649528769808713959554586469905978360857158632938043440194147496612618187587843035816813651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24728327039609968574382256360145520739604352286514671686005225808397469408894164308960373341459835739112611950148115418881815018670717168241672465092366524784623854035326020551409636699832680934613937555568394536715956511060767579570548655283410025476347894355824213990256976001065607805173831165685223911322548522412840060597875282817783431779967678783506171487417129753626915819810470066881542156138844983092414611295242167269868201831923313024353003307329321716140094485929986134585034776688362762700158947270513596100772134851800412380782394161994499757881588247284000207635025402435518595588961062847656462675063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23748096458981982922670443131518062208372215605720716398202156241144146055418026202184900249933228245911044657926997497530595611041688146808016684722065017830404240207653691203226833059801695712046996615834040551120429362744379753705072712123790971097906869712063646747265004501309093113998131458681605148117646398432784767625420910563397210619795047776126673983013035732363267057011261984113999187710631910274033805346913361890289907605959177982005110038679742184202367354756570513174170714488401624378079484127742385681603541061495840460328419300796599238520211034598794185419855780017304618713205478142515095230493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21457789449087084305389419457730248218573417098525481777863353828375866631938470232568065308872424476128145267677723538042576430408387403223003548340030531428009188779552531404575919278777539605378285691557887375747534904960123229398527402409240304948839049817194929524753660903058498349842659260071893063063945816094942188106017611931784115983046086840007503912207952931564019558582627484977137192653199698977083471334870008980828318972191369475657829034752749035001968182441341176915347036307444005348028963689063951586794803890294803731223617560922256320338245677710281528133450449575756452761020538211640367369233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20965982596965885930033033882467641304303210855643230355363240419933536972846083435137120488562412600672492252578018425876016506931500274766287360379300697614710426397742710743523241350076054307329984839524086934975801432952685138911159413386631861252980221610579804056072118730464994418990860494623752618345158630098276630807272817513884815957181948820455954171723843673476507229105697931503014390284777894729520589517451657188608774247261964755695829200106728632378355217281095631326723443272306066229532701022982559132244948098956003498671388109154891062674560454433030445343718555172877648403096497309273774622603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30463367626701942089586386651852333566419206470846665071540048161971813501764217881458227335982130061703530908111538297078698846210307446946525756458120917963099804227868357802352591535041388598068280574553229897200971625040860410973832849551147187696570405211863135843443212390485765356205134224626675020034178537681665802830356024273712713929667324356410840496953401536400184474395020545076781590769225560176064667741537397891023042946938571461076223033663869282720121339833175072780945472723533353594818892998584301903516961584233794570359302592670748237275732170119068027040522377436012533199475887243721392543887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28443661702157886117985907075197886545870365615672770117149949068659946266432200152938626556498395005791482088114159394269537498056542249067730730335788620504571126805632770923289878668412614153059578313767845188283002457152912762712980633091343201344123709795249976991764004734706243971212623767718212841235837077399185408516382456737179655327487352666198840333023544565455699598161082338958944915945690611614871071754845695652678459264830115466099278166054819006331564743202882571530252930526444128161799110301728820937926319113166353803941800477311353298179101541415074626440062297516070618764382682681326030752379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29894906296454046733600910583116897183272374217326601741376599234076297686231320730111420088763946744707001961313491605882668710804323663039970217677725092432435572168449181929471617956158068887394291448662033092852541134393044368411716862307146215909716572902565451144333042885488580284952713937259434743595780894937764424176501016428308780869063990389594482654802795591840869528806850614069906877592480577780467805171101044957371848010451451709264931823948270301303217216253711528260126425027143488319672583644136479244738458015601232196971261155289751050180162618310856866513850657554026507410384028786298209874469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19948771202302396540033311784364237237110286149406719230992468332336051199548207566436676330768594305990781416945030378087372250678448908970233361390640875104389157974181046423971507815927184459718649509485579099987294048250078906250112614315678639468301236358293560457098369462596897628902717398459147906315069227577688867795120701799630805967382207424675870674810894076839817519121064872304560951473685807452316203571766319098110680480189300396329954489588075563666351543624050851583525850634983510373735771383281621664524432188897763522330008253025085100436015957077180339122579472372816866292630153408545601088067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25352565089769088266866541005926176363426368950580882833765175624709939780515735685316420754995581880633356058875032668980997453811273573003323570744724297026588518455893993774737929927884513315724693380547182104282232344051831014232239526226679102049375185651438708228583044861250459318109459244163568768150707569426661323144731308990406181307606742593633625385638439786120392687111371211460602646365303758060666037212437748973604326256831486248545859114470407848689984646778513212639507509715185518397474427374533517368141790839795608211921447408892325996066762264146598018435201612274796876470764398631209747572089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23075576494548376742944869585643645430388238896971680113619106897450995717432831039983029852715140364339160903322877911490129718681094827129832490889610382840306502590195298597918526326205333752214489142057060332592381297499801112079517352272677040871127815747659876357345060068139809896937100010370507204362412732799261264656120909383250363279139739805793395491826603599657681116090164676778965472633432039266700693173535660981300872774603014858702758408830896258242755399252814321849459868828062893424945495604561046810810674862362342836125731701619950609480597466516127167084470428695920821623351085439083699305209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27771542212698205180111240512769006847560273447657928137140033978843852168688618044818126747493076763361066420286748879000833475131412631433306863139462049531305999412571134845221240570031645770597922641161929190266837003965125150016052133941262933890409911385402244797447973913942696418554625990035059059667371806598107436576250710044328996548714180864662763876750519936921217630655639725804866429552111806297536551235106341097770798175619998596425852164870140545527884211839462161020841304043208372632899273466861535137924920239037552434484485537630318211423220549754291108036820823193231815231686612949491902978657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27241921310293044440685880567254562490307078406801540107295329488449990418625358042403625629162061303555467484826290504548410057778478970966436298615386393223779358012357526476242555075427572274556596049037520868867930570098258153054410169302714539357585478342522354563859721122790195233560538794084841939126212805223587484304556757022115473181114256239894368115509879344921933732736793137151918459862774237051679257099610423918003945365395613360774854582442990592463930065473355981925282387553574856906726007537548098494889635876701930496872966004424546080964559058767838148767483064508682647281863466783429845204641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29301735248876930103748398719620009158889002389798938353340231955978109100171374084244589007742212650055610324357454429784208818395379033812497593411770215713401109418648745581110143830080468068404852274718291620478338650549177425943608326225274857454042931436877495535559635490282525269894186975631716106014914856321545879710337847261780589511994106028060760343526216921353873839372231548382439327735842486994739867776763259630911914843407470661337151888594306952604280108847876744461006858346347260787142377926387996892815658727332746581784971608353614431591032178783915472938365136181950387966714190443326085935089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26201368792543882847448138769281836543917017823459549932323336427017573747910020490262700404108901405549178030153304399663589071249256416338202399039415425332396554558924957702952264437961275001178670628962923219275996443881859213312520524998913965418725835209641430804050493980477246635587575672534076516552612446049234352605160853541542151107344875952729914100249676305773832292329923644813660184806263093158110885963002332371018242991033223839608371258667335090897628565001483016101765419997557524307542816372583702185856186659912775369623366138707646960215043898444931898671741323566113684179040116950094694761173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26743342730553640293732095226216995876502641714737776042300982090882390952507322332216269185844982067730867007371149167181316157743464909683845143012627968474547787528211627590392803450212368203903698758322155578774222184682417026836895580883052207979920527219853673866922540040452457415401602365703252265111296781120235664610913180773967962743608056464213875383808973214724421694865551338912607660142608091183218478083431355881795516953251901464867101371609140049644676685056155284218292654421397166764950216887823455581061355508595485384342888518770744896475901466708514582340659258361418795794863651590723458584487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24499984633330644919369261718493452302333040796913166302380357947921694160582514405768484895095479513884164846795795962128328957773773554628486286574180180166649283237522695777668853989657489338630518860188922443821014076901688360196880248805221436230143468030258856188902923132886822833656786204056345032715385119642908612230156273756687989989524763432218270427415880773008944510463927478500561711398347211769418785683718394866109569049602792066445752758286420575700778315645346399943894597164671060271783964169995121552000299354590058951393367479552432920005437020678508846155719128776333898572201644795804339875247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23809177083913825473019920766086578166354292293458752492119517184904524824145507386497591434704481169212486330616043189904484235914312588626136472365349213415310454461220356526208694743292342948825452203887153899260550029320648281406564999569965269489075714588107392429909037124193055492572547594478431467720740959002576973486955231982354477682832238795331133537478424720299938566468206694506538116451193426372104863371603904430462569522191480989989874108161879394295170518766246433238514476050670250305819593802697400820697478486059142531831769065639443662307208259100969053150906441678919404440883459875389270936237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23006347205139645714642454750179022942574878720959891828810341707350321917641187847698479252381516274881456755001213284879437776548462048814511461593563068295039403410548906024796907897038009045856000102031088722796647320587505474700048052017391979318412221233138980684572329115700703621790369042708590103929199618257110119505246846402306084299508047925517833147578620639157966853397997867909786797746843289192726192914599171966623928874036479233327805918257345831217404229712878333106124963697498657261562188166026651142606449417901867296569792151709686380901798496522699142415110210800664927767233913827208291056719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23852612417453936338728668369943194276673360709339013557321341905221514571203584751511864421757543949200785165837555059795786034858432147818165884083754901115091764139455876423594825974795063390044590292074824999809854723300748811767386471342652120731418976916226086846328052969127927416627087413636384101026343760346993437169434917692271613335809388849587956479638453129737050219854741403250514909785556727147592305154646798519456251318473877151905747339737974305077084343028948146464199321885780055930091478895844252755349543294436564139194667181950438378501390601318331084131128376184549023545847476072227887013111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19439674951031162564231291998117207457955777535469779690321158621313402778182605045124244081266536136592017647155561290639164423833737709158751253160946959175209417509407346332971171283941865354829966308952944289299903309929545577154878187776569928916667999075031715331845625414614183529499902709792208951656130672615083042975609219057644946909169581176351201311828317614980601980952275882899760795814563170315863551122352110023022230977912063838216298911628879529076861865288920555826423159919236146264635000572924803497306979492716117014971463653969642837669543164086706908898820266356468875799996949077509304766159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25634794327842219572904680295175973249304442762504549517021728690508820455342992759577915243585810397220080388563699816356186236269732368080440813282487090680512438140485784878757804089215759413375655674201038637311155705077863852336848113654373088845338028406830529967476185345330891534918034425281691708026421437936062192480862603297666202220879728122240637812750574751241737396549622930856452454025251244092160343967381862427994982232763463414682782796224100774971603693939163685346848575525288153413095986039758773199874537746601741488760742596829111073770905076244772717439391374062883249538544006600803195479821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29467454302434346846417685678879025336418993936800089722308325681334394043004971757612547686774097987316243919333942824992262052639159862038691576736684878890395995836961555352502769809179448130259277452829242283318510925155590724755373802805947750042662671284310757291173356875126576928363614388445974454692197925638485353057758628335640505835751955925789489476417235500511447448798248582920620222391892193545588946093165745554343395285177439543244842513882270699541960079249880520023544870769733925972765276686563474610563074242285629194559687833005195786998750202609741002820942498307918067414313353892825177103273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21624402578685588750525150669409363366586656608555244466603663078388210921663405439770776953799872375639551527376328526775389090831905475175778803220214211100181757764627208587875299125890244943499230701234265368700162040573222646180815171331398176424776516251856674960403818555905038351898879593386216554254570467875825965361267181657180647080475524401558113001143479450950998157489782688511107888458738694292504089365287283446740639255005201517665030282428965788180022916046433494333521762258185944067826143149973275755227022017212932599637956481851737990089368681018265638187948253826813503893385493915212332628681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22969845950909968988737338655756865087167148062596325648735309229243624777082079442947120787871324055421278672537811319890124884437350986602171153349210968122642079800923083253043489337932226449285292787593522137183282158051966859038468397553174348622492710892242515471121320312640867069670174293937089653338194974687895958122584353460359455223576123536074274418889440544343651215668113694114953758840438205620340508582856674879346292942241526915274940696434905949771044515058080982099753049428987993589639078440686573724290044649515373448838299499540660775553824350304830678670902904685476191558122375508548118883141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28965760756817454721054569288756189948082169467395698236587343723576716916556729253999823787824998189244523656755949213279269257608384451478928226480573839293500896495643797192100174510171382841145201207807419389925153495342278892583894356953872514715385445983486725710224033864483437052380045901410578035272664037234626504760043132362071548442594560650391804006149480590677905670133559317906224950121185402552775783881541081180463132566513125086295396593439604112758763839415201135979124989569014672381202405395470675377731269732614590801661082868995259125320750422552366483453974169925935052344566315873864117489497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22648251394025016289103622499554683164005714851472777639362655730204533359671097665538740573520685409840092549677271844855436635715816477381704653399313481001594239640121103458629827322214510288932328904738299441249897100216585596049465763437296012320555596185399352509421427354911623341830152082067346740420876737308790074677568982922738181062990242454137788998098165585389011891678226355615185320137029783248964096367199154202591986867533807990683689993436999017368995232507835602510210727962546308154779271665852685351020476389611672972741678866606002499609439679238385745305415293267687932243237706422026888508873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22732795225074240824180102896798016867053924197860150285106220530173443375513527304740315955839499301136525970257329373768810386755708685118286622498008794173061625116904817351964068218227328230723877821584737295270409331620123408832076392481693241032141875383366442214634764755868984227613986044156247724918399601149655358253716706991398340519763062562223341792239338849205804381218999985748568562321647092144335420470149014170439095515585206245081164488304979063288921465450272351755903378477238849060688902715266250863725372829012874782939855118914197718430545470565216195384409056432223444484170158943771411402281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24801977018493643199104649901609763528526161922043897065649559909159028011441086330422966674567880842011596627293153498073393538115207865652542643298780363371362566077190446012342664841677699942107984267554725640995261198107749452528670645788356677168801503939544011989394800553146451743073115800060054119045802751723186165478274340996930403544502713651580751765292619145515822606171834374098390215986746556325966985132309520013330212980940492172929211517520726960595166787189884515620512189946995519403287714122094155335180562734327301380872065699572663343166449760171679467808171298454116298385528803925207411061509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26356461668464182820839975785191695645957213356790723636247177799185951139362821400772524613376132823500512431963645533175491545447435471504322798483663731623475262036672450258993926079541200112539835538067844312681347853471376143321207772600445091896270635123061182936031483723893441470458773841548737440611907809472497567657877475799678022022333560255415897246446550703527988541859356347234371171548642846516086246053340869984802006696857800530362515843669693352980327774645897584477130606082381023005777180555279650112484840717353537969316477963101388627862025523812517372456740361162215408402631141727686283998481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21819555096783140393520848585273415948162869627251345251447063701444404258650125899883609604688419804616802329287242674697450069354283474077284202086835294156685949188328238790824411858282741590529941718032629912223143686584685841371360017172108772748562738971126845291852444536345815435620377547298975469725620746196189999767293090546560238292004330117778668512539264943182234789149830384302982280952562592678589955875976497852606150408184614947486585506259923315163896602699678358537205104402933714061513787879998665151795267504130320282076554953100359690867692658537216129528892778135725517954517890341502349056819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29481169673297422531922020087718471621573542724355832795191319534874550242879374984579970431361232391053939278249206296588083758557697198313400114580804753428752557693396572208047889512577666905568702574731816586793978104541235751766729367303973383804279393512094915482082068940399377184823262697062884346923362351563266979486465331377218100635689227468048816826149789500524280918696076461771396932835615230903772852567695380685035695773938349875106012061199578394606359431485613063988374935583414407001854896454806148130690287126518025840167717253974735307399506102287519256997673576585801598480410807757983425968597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22013243680606414359646593780824303017303411643836111826040969496599481475643893426979221142112935042447799624069833808783732700992296222458171780828149610114908006111500948872965007181004642685698405922971888552382786953067562314198731415855374373401714931739197066561314807406508583687055222183799277158365554011497902412660032780289504474691544640160731652873947809724205199186825188807679472924389875813342041838680432335904538021899617224343132875037965644530778725423972226817100529817202707340927423576493429365589965333719470851054684556572628492961318386806112063578334376500479331461266262566664446830466887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27846494109491888022583615342152414777938388976226673871739643636982408896195530055841809316276544902378490837944449082408110828512763478848104382205204194588132876750076450122763398127201157197658219399348524901922605532315066542495635808502806048762147760134506433017242376477812214169371381943403132163182442483909688425506778685334989902390763339636715282622032661236590103660952857123816484974295698657693103593022207948078193729512046762992368318443342996076435749615632472488801940876781123389059360746028270190094648357235475286129495617038809386945418536082001459749543914980527357241257633341521666407207823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21311956180323197165260787540958573114688104943796890334714060953172236471296393719896713565496622110780385237647123614315691934499393939150098482716291836146849152381110732879676154202860134687554474736081317557716548006206938387338821498122515763381209808100656285172344443406754378374772079006580920100495248371181123085120360844668319958557719449449488585178857518961340993710869090934828077544050230779109290061549005006547381176522769536169694273119317336910855627452531846327685529093806557233816162374070839923089996475443567034637402970124342187929172998567057876783119844074168292858994581219782400160367313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20620512945998974116672506397311764268349118292867995286126427640024953886002292344889421766725417338350184079805668598254557428901475727323609125592136067551768484095541128911349246493848945110065311327265672409368905191073493113844270771260604503403269915838333890805282872698472887195872336485040447902272948071557862803079212174137202752577272790993777876535030386678457763055871534132954252466958032334255991416833623104855468192511374364253941041663052507236350558681306481960442425279608218237342057829794824184769151489040877232509846112155039627998672833556303755725689846554680112241543187450740438879933729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26603398225137117065176426572336546065388123494609338948825573626263559310346826104263379902074944911589237564991763109162241277467017877424332565110561662639918496872942239387667843998361370299069048609975936392005942306178657016347124292410006878681129954428446589316079222443884628104606980516884144046889102361167835930412581864773199332397149215215865537306082734064138643834374119587239527027097939870879399269513234449427477810220506647882650773233603252369229162799121789090784611796211814546542035418426236791072717415078600178232529658353288142242391147133098249591337676027406381258018826369326023257779049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24673038954155611847858900361181729935204150098079716247887009754925678520081814177965834010980763405693779685152490044147288347479207421966458025284154704431540305422129127449217532687013863905350610820842262028389347526117160698335753493026886889730987630434956655377941315204660851265964456080188168395625577430852008821978153827797545849792606743397572622244639055203816201784929756508282299607330722676936793366460623833861160550497924323000779808836012870498947227852159225638597307203093881796778690447531340791204076232360855731156162902585618689604263124661440087916046189821579923769061657073535518913982969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24662633547235417049352963398815932970232678320950409853698379360645198760112795109995618553289876039174627375023292095649610094019856818466873538740962863619065278855862074779913765213825525598693574017362969360126302444454051901745984700377525408022329682926489962503718213458639078294103820473747437506623694869280733009001140035056256098874529274736539833812032871325174729253807466598811483740230619565900961109355211250963352897662702799189474503701837054943899611237894085950693714723162430741382975204363778535508271012770439498543768014762026564807785848328241891147445731130744502090110207675955289423395761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19958791457486626570179548483068001158808387847818201055659300694710127290444029923297506852469783553059237275718538585610787589833938029275586500415898937954932159083325503447338571022273453655248838251444923724537744277500107453780560710219500115759233492865180679088393731707528933957913012176266564566460699873242406103078109215950704990086316662236655877275651214087620447655217250243095947971104421642963805093655634554595268488114304096932165625432963180666476101740061942676420725193057641265402500557612531776614440022731134977152725923213948178179469036943251281243709658128961934318175914049614743218824109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23586775291193688209038448482322735392518094777701309673128173274732986397515852280802775509977418532084888004321878633095671147853780747163920285445061111345703449218774693069217984119959182763645089413198758747464006177109216785234328046309441761623151179900232593867019029558256866441972474785405564142754676194781374720527244592494747537137621343479549089639921404899795696721683206064180020981854296439956689592721233438044061105879487040777261721197674685453886326025143805020829514786387114351489064968016155888013594787431059852329657144391221443190527708485320662153766386613840538853024950533108820283215361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21699375377318426282639820920781032914737493933559212182352202483082762791721922405755468605911776682670484343627248638383052419290404477303832485412412419682876602694760628806137258981367766269147930131877410083834524087359491286148722254287053942728664835002636716178295050103985820531835150461262667972084728133772157283150332012237159855301830393807781302561730593406707641373564054740347607661020877222221430948989207989521134783590898345209453925584804435583521919318964571515994251677299603808398681572709376454662299383612963490890861455184479200813349168092755796984213376479513024639403740503191048792973501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18599645099725116151571076499256233357094593531542413085489454425186455948992294213156241465189934608747660127343757849361191740262983112967046513260700150630828078548688975688440822783519113378626526386449760741732842098693356420786518961790228071299788536194619436352480534731920599085848966688035085486355024191123915145871451180215334393696250281269068042075287134054668866134519178697473632530856235644824554183574378047518931090519605513277474771604277666412685530490578053497446628442834207805010786499141761825928024582758616229738973827977434039618036482847828908218327192044788495790176505699238539297293437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24525501755460358517077337127672498665828935278150526880503653480210101036265218914648748194521422891600667524505477662106509680445985968216419734217630923196284469758854765767835738299192834104581614406732670315858556924585431419687936230191202606395501536911119949002770131474213969839715558387994882570294333844890465396245445480970676776054205747394125116589809267730083396527457690397010524032002551536009045032782030669470876548891612783391214934421313086834982596289459890392599386075898347707992513866553692564799840158419679536472187129925279584541830398739293624780538377413753805262060818836660250864226843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24670065840578368730642726997837263638986601687215625460159159747542072812464900386385578631895424667437053364130219825882824532594889827050334431233416643350493002559804206431524598743270409280266463475263420104036353675402476529931044450103241685824462307627410190907524320293524213663342328625309393242715223266953640689321888045167748410616961887721220381997604685201112785047757032903101764098017155308918044288726961051974593795718964220009334990890347213755036402115569290704963470976786702919736702865884095124015887424511639285479922348836048293253705405958285149518167475780329515069935568750210374733125731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22430907579500409614556628438332477656268858358000158301512638437441356832278069357601873687911435829949735420857246059695843273527412675151075897278602453707923550810318578851565962364521604853408473634105170743926430463979225275529025889476274202387166242795335944470198233230277626190587852018108461165331736050172222836513075610094440864423046338778753546828323358743371045974708912757631849201492316024729618951450320860417422405292852819080685148722821424065188315274635289428057860010442346999418401758602594935669733581810878472107149079943157657588344600690158916276666645508482497694943348221958179550747119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26065929865674248720936515148160654860479430976105008776285511193114646133924682497941952776064992327129658459856930356070835409629452536488140881762553019207893250647996694663976376238807439522925516926472891860682287670688241405786355845011068439220521666538146322029815847734261189253420651123101965068207321996188112112989789244641028202976145656933593966203872490529287052685125667613502302868636146949661640178013312382634380964409024391748285918513278626498002382711911300411153993042045870958375221027572202838346630387126853827153017801863150556636536310790137977843268353804730980661682093518935380743966459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30318572792337773130183227765617727563738562769296460834077917994378677428406306730404460579304370098147596542036018309785361117527711012086904139092795962103091121119060087855239864905869476352131185527692873077800694660283817320721492935813710085022307428294062241134814988999242531761897993129522276687882910428351609342233312016625319755699662257845792820543166350797897102079359683280947700303031514592311676849492263838740041046747938912538643791089137455649211364481027093224483926222950558933593259199761358518869769176450070701980409112966751705874106096618582879531839748607633518049351307454536645325767217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24160546569638451223923545143251763086856452057127358750189705867125873604422958123018482922687438393847554110608652384159137331799896230899088134464675460702598302241098121402342618670483689454027790190857115053011080328323338623647131847209602816160777594349324468826614845578520011758607212718842583516925795169647095713870339936248651319604273609810379277491119962691306666397167240447696828805086317439999572870584681806434671375953573580118013558551565919733202754893302041238261148819738209806190570431444396525985934165469752950555345843615016012501531683141942493581385749214724984684970655085481455870962219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26970331954183590117012376324787648327703454223039507560256918429010205991999571989406816703326022180159865658442248558549009267479469538376652638055424131247143079389341251554521171743811010482124141611394392900658448386712427432880451106586610785036204665620665139919266520969806547208473688966565879341660414970635469271459210978154129544667115916065197170009830083326134693803021306730112481331457644212301210996606899411032299269100075034152970643393541422146661142597775231620553379424794185591156482698595228279101709071754518214337793365215574332618650294258426225928458409752509239340755212665432298933405191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26410809717017153164737109287131478242358685464837934892177779047431836907684773774221725324642782035625431407143762325268848385216634791325345467038696175333355414602784034989315869807206019950539896533788390647766338758893810316104012485628235437857778194256633764590318145512837645182033047574052825625127357930194868163414816590685144364287533568666984673557439713673423124313931042256981932934108882179382189416123398553635456409413076467716015507191107525638878874459210504663375193559866358307233239711073420540626544202721412775953366380357429073803061188194002673181312433368273445361797407902987889131244059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26035430117972839417978227431468425042333943062951809201380456889399315281732201605163468172159054803991515117843004523614037200067179904951986668882365593018448746685876990771904405607175133837786411075812398533919212076504337366458657775931987287065405262307554085048858816175689238537698142579455613099165157646500379923828876340294015292231874738918979478803194247239706345878802763132087629953107811528242578534107386552904268160456324111577783544279727574057819844749033261488385846761369611805058995024107093390964544251356119477562869022703265986172813949583271531588343886868816568690141841477346758240296159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27152078995898195855748114391126071703975093490538865612932818640163304925121369960079719569380882745942631342204152503085331281348315351750956745791346524012796849144037636369847567495682434318852030318809539012278414054943333601835681134796100001565250415526019491894761939124567805699217018435281124920040490871479632928365233362093668284122705283599531683926446373739590205665669412545746875478495386721072455323694249394056261755927055471576604555191213303206854776256559687618145630678873639902315384939652053499631419191663938997565200484353101492396339127280742045664497120129285561210835172991785121537828393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20798717619061490441793641547052859940238346695163996329176593626684666750734594872111632294209398738284140788804239247431353015613596663522211804911644811722108484355048063636787834607016624868488114805767345059034097749195169574363264440086167931189515794038671784291692375822297262405551554433148182991591167240797343261001110483406974577198902057433230119493135131276743462226405296223293144709919527038222806360391423981960361499176732815605576295440437554862923894735291050386003587403911749422752032511166737938306009214529376082533983730143709047944241717580194481434597798452189734749182119017575312845510041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26362018174804978266347044186563431541387852780594111026333145409954718974912377608621610777232785972332768143272868831487525229626014319482535136730344227614544982831746200438821582118233389159981548717864790252361681608916621351254466780949900777198657036178444940434817024646865916478830939519494809211294455748582764896280758556846989933799654110538428565928366265753985367596965391329236864166500410211837992290973997013972167686227603947387925242845337275448812136459469914064030868130390399275054408613708871803412307688536382175784637291022805426993489385212428164347866301669988175838926968737255871425586287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23042728235642075160192425299205490969199903613165247847769469986624991817321944681081978726223497804576127207268251475410523473413443752410798043108038407687548934611547303350738983993272204827607067113837660524518445170892249706024586405716731005637158225511610971155466171809328043770676413916731432261937607945441502563549005133852371619453864068846167413509225637465264088174711421951369375857164433599586410812908534989079910863111996901083741883959446616848862908565066141032645669311664118003481744483215551860524734668600634480459857613931831266536880011238141472941114995068380774736812167657867264759838419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20266916214984231012560936852657932671477553237760173119793571051002753758187996632584939794672865079308201827623983251400235509443246845158163363870855204266619503251177455637961343288951875231972436447565724340921768176633460235393681073890294954592656520288338964135782403478437890762485954348872970169548579357115785667781119315463893168762037747035296731369208208703085966964418679652301515044649465167494610971553353769553391194372792426408266182176427563731894868784993030597488395833439498010807036065283971245186653180997290119861754920913392530353669311742237637770193606152267520987328705075945059233086013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25799995968939067486580288143629630402437508526073590923851572705376693816523409921685447594932398113299455824663822931651561397108742582163894890885759951909314816740553690265470956502574397691076922817989271029570824192046148665624523220723466967594343532671238299745477750372528197176969046085897902814481361320166149896519719094213729891409566983754734640621703615207901777479835775789118481882726178205704374421341381620421264351279214186481780341747098141400687934819353716826395481649057147059982712692631399143457901427223779248204973554965911143630589561583658751441060678767301394599126522552488620212818469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23473547099383514338399850560906332649481356715330994802827393504156542350981252962369340452729359969445399756795219033954657508513896067834697848075987013404077048357324678033639273920642158778638769782116850293467186547159255374918618357596557492531732401329067682675888534638139234734132829033967660179331282414419045122517655139947490534647915395080977889438198897192280763451205589519611610030942320823200866657809019523376486058671741283685818637525275671735133541150500050288701073525250994122872142386267347528925952385982373438452986322102920118593871327554102806690391455079929850634911684242416499892029303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25905064663825859452921108900456004780918086532658479760466936094200903999398189597102582416981843511342849287901100972578037569511390790140583503819227791657904859651676383034877357347649155986389839612487486960320774981618084930238538389626986161244299912610020647805754030524680383253196921940407995379288502594929837652085626847982785924779041992371224789735867712755002473920816861316748653297244758963508594660030941539701557182450148838554244538786368076407574527121005604714824303613440963821529143504573425585779493073976977607092143028882626851363701395440414792000688899057488271209291529531062129217304499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28244353135037038464752509980091258896424638752557213803500309832324634077190534609546543888598138958465249397975586676612959160165074201053408340652344804669259746982448151280599978012300123317309120122569786642830382059239878522616471696858810266481636823165011782886191040358190187737094232927934499325752701055205550009066974175234149916932352091436410339568600801851941956945599824752636067242918735037151780451821440005702845036577986551813719441930072275358912221915492615432704365966455877387809373219069074467192674780960667574535851279086579752998097891720234823319953412877235607534584287320649712070882889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24650677315652962795709970321935060447352342024002959001207881491689466069254577686255568308652091923021239613226482441946985508955148320709614365785252274712656771169237847529117058766127185624232313416380530493261062889279534685147530440889352764843546898918013046839198022297533626690367660233477634181616550362765358580488725439413377775199613695499731382697185375469957602665586572606934824786808995710978266849052969732495422827027195129498677240382474269996718858775831791113931348316686050437408160993984738888018789956938465792121022522526778443419378779132854423387761511587616121599626509157875969699486381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24253443608784043526202717795028191698001130721587891316361048648466795703382547021816040095882615360511452211448538656606154075472979044847237596251510378458864050657839379853519323390122998576447139056906108501625777454699091725277983291633531861378983232933663320564832932011722038480858805123531706712102520058764844114229699722272898109334722073939451930895428703379703917193559569000837451289092766867323557247977887346417633032812460088575702342070675633241405177273432862518068076999575007859192228761558505157786497904988571256790847784325445676201243383272083210190573802018733919180186303236197686681347847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25326765256680056006413179557353418288642335215171209409881906133211646790088053417375188354069102723878933168082123188964433079716506925495323302411201794426677827937539658601728493568723730021047737735850631760670271246434761569447436143888037312391902747097294950933781119007527240744379303394777934388513095315363497495442376285435914751208692751523837099287592493319946635853480106885176545082385564590069846080720620462047331953753073482479649086705690241827815497674650667202406673784761006898828282698930936635843439956758569726728689045370401339023555076643373674121202118253923314548524190003521460056433537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24902342627814549125146180165983694998720325609150354993964894278329490213524870941465635888064505144207132789856103696644857471790242206862970460766516575908464003779520828152025444260294694022024042264085385665982295865377603008320059334781048054422424382164972321196692897008786895507850149779651045016580492700494353247852776681438437122886405529687730892306397350188670684472216425184563697270550807190269947200828343121878189600815554889580241410634508283044077921630444575634075889175929716991750161565606594634616257592396898963393208300872063264048792749294969734955940488093750386155971488310511402154051103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24763124188645958636624113968943257744174282443777663836934797765889858031484316959805186175754186837760818767600025583652263765044310222625789205818595819123462628010649786463078979272481143464460523622331498126935521459292911191994812232628559409300335718561409138916555383415785710524197086821980512145839154205646654916169997584161940980586019298034440273921467922557653253773690930724323275215802393373395434961579977078684870710273223107980814212883676701986506169280520608105289072264460347224321578386405810641325200761115742947075358832411073881303187669340562367229689596324258611701049488576549000976834583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22538758034067247327988951572672293568625034189388270760858272980647076779461620229000533254138304097142927518948546560809199562176443614058642290951792899494086279300684798435818685199393869461770825220546954300913620564800228622816840279431171803906931382141459195075253334113994024596134003449085630385131503634134723291203651217229350539675689896821330746810868887188727562069278138205626998009985722466625842336151350987496341575104758471943512103726764788710111587055950154509219385622410859195841067043332961866955251441331115269487176242382216748590181141782339712006703358226910608266317149903211943510217589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22922918890349096627269132232102384219370305382956974971937207186080828501495586614739571138209886096829925150782620500408891981308714066060963708443027703156782782462094563417844403843488065923339841753845416475026303938254844849982685710038927145327457397016433763073435151622936214904824158004594681917861474053712359275233101017482669522979225032923513934609670212620368711460788685566042326517680650287308646388319703856292529234265003952524664206052346507535812097608080942677602658166177692935119631339856016350216829113754918169514192415183173193123141075704891187155791955947940889161454472095193922789542207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27253551800966672145859249151396161627099590032107641886183209168928400966497494470553824421315149622777660291475588538310775555864532768893113723201205020843610960805936430659302417283992608277940824296562131613897229249398831070401341478464037952984090964083468757376751503425428608000031264217559123496211414368230889526876289161787331922020401997558204523272582823997941399668113445227093888313278079014477013537883623760299592268569795874633187696666715645230983624272930188252681422549916508021683622825724930824922544128228330270196574360961369615148162957989212538632864241335470177489872513128649693997294851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21365095556287944232677484952097706215076057003946113403898315459706230108190426487881518022360002918550669895538866797406993191078490651755403526636115839736158112270996265471356382552864665268730964324292358779390894937341981521147388203543275382525803379834131613207112152900363262256891384913425003551532507099299982720901107338463079786067389028092561067636123104472676347819193403253366553836900477312509821370418101987536357516016263454271456971907364141708285772345124171393088950024955123734065881393335071729660433901142094894585298431988644718878625562785844081070577345908173355882534557988886463827180107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21773841447041534796090428287321323901894988472340444035357348797389673806209315520775878333080977018702554164759708240117676081542706269987452532456985525197975103568005046590154163337468394598637919749356176230208131753352816565378267498787263258509307985585316535133441227165210317925693216142162378611816995311843925494510436517584338285259353975905858232655195941453266799451064941259542357589187588397430264983496219039696808395579100398641529499163434897136907505533917071538684147945409884722621275165299114716961986363483462782892878323232275036606263075197194197387051428922118747162148579938056304428358599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26638906690126784202268344378490124294337032920992688803064112689529975071965086911629141133785496628478400646848919290671466374786787790877302069697508571107063031401493452594111270573836976662325233303879563557076414599113300853668566271249297684865612996368314843255385345688538752849547107368981244197613708033643425742716816163650741046342224950576517151384348166007783069656462155129233878935402917304051537882495913610541606894229997864315377361359395521014406301390495018735030296029717698267792524767782186108269596781662415051988397450509716012829036827660554057581491418726430105854918968530396661078791103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25812695121738906072950941203933113485787193121213585896874095005483769247417523225213617082722422490323749512811889892690528148562178214184221516450263861914272405445260275051066604463324315721196744687878312145466519331197545160293792430833545891603496668953187738891375887821159346575999401245734806609364558265407616864009736237689633260099745082531845637981364626381487115497570308215317350918509986747245212639769633053252912229949705588968810431692948186201547374953692965253596721942299063825296570525111677850217116640758978626318590044643524026741053437155213636972616143444204742852411152176133239625714767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25771886602947414382382720606989571342529450533866953207678180206611430007350535887504907263685696023872232556720971946730125975860879942126128140483655725742891620019316712189638686406819397714001296727593949538273246191304162751313092839579451858736351278428225784615761655025050060995196205214445116781765763460007628450940789069961742235931213008580741896868500112969244732187835526730354661824457352435397417718731205851326356763213460076372021115783971180821933449680830337630665325430026258986748516318851863715058771159925344269985454819458592905804959873774527334093005094162907417178436284288973120924390603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21320346962311710351704523119851105653621401424923369661295902599074131021211392716401310549799632124591680073350879724547829240119102502806051506268150833268327628003945355698300906938231537866452324062208420045317215710383354196456612522048193530662337594918292856324513740145151395309812950942059744035387521203429270742457329171445207226439646612196954638669544039104160896922685881257319231916671302934054768022543595522638710338013589502411347975521340395235821203343228381216780482729835709300494640500785407488152309977579073913553253722018435207454056606160112274009052586444096014804547233493507032410451833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30451213557243538559589091247603559478600711241114983917193920402108944137566590647360457001603457415981381934798275937487108163058104783904665795196466285842883697695756706145970369091744216837973945229723788566006307882703412553893267818608186737949845193210440424277609519528125537418072987254921368712593792331811919468873655965622188821587054384117926030939226043312343737270791757274528245760749810150036922164353961925958781236757556488060534852103234668545135167081546384045330828491188956866023080178072749389128184216878622201376750117648088778817261451747409752913975438086325563227048348095625232384734821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23022944903326331974103832580890523595610886330755790090679238183178600203048342338138597159611066724041922023835778349283851888090490877418377251167113651353343907715519291101235241580246094513541005195514568999385791341784910638048414833231620269620603899761168541963385956227024403742564129905309173655367485596305535434958001070546078764044347468145094232060035570702759781860158005419147336222289370015524751646022356605327126141313874437572127424875448514171174765186700119458230528654983406076222020671476562441630949978718840233807151347552439336496382811399376949282132163737807254453963435731763786153426921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21977516397399023673079533971816396656995549792555351046319871432987087165510337263599496579865599685251387557008828320684764513152596795821841826599859272316327906908837221857780033254224805641016715455239919422090392368756833938687271781449357615324631248791037097746787188391750646566492394738668440815612326947051882729338895507416489221322034920216440109197704934822532949801397274618139931864970392768685893654014428781115400397064375601185445918629607185398461974322117988411094878162131258227750480052076092780615413307358421314990001647055469909408888382582701152209584744358931437119142943975317742901805653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24333009049149718534130901811721970032631667968238649085826986052473963580146845841667574939935006852633645428936769115606980408507246141265858451899372773419812814553954470493410391323438503170884977740708112382597450227159287530437282007160822292311720037270765694318002266949680159448225370412977621979989925809703374204173326979172351909510254600772069086418813581352493538873568814979979376243290595509496185004362245839458683618564554005244388993683423343117627869085423645673785919772720618681758235583143794880226345557639411171656220448833236292270338198468950089470780912503813392423866783492475387648484897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27407640779110388270346859120171351196974420154810637328395969340620772999832516233676521231772476141105401644826801128076040163724361987246904851050773563099165522600085208277170358408034028264502115167567635739204969832612569076892275611463498271309490985509701655658626596457013745124864313971485539834439395931457013598075914495427964723019883415707420962628791602871768331409592947106536545021171979899081594205733557706078949558643384642663694453147233898924617393413905268764291180226055230512373930444784516431699685475884566299605064800758628775554629505092542777262079796992115075248376259231649684261345691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19294768073411647754472933127627094948678805866076516511615438333308058710829126083437823317509236196342748658851022035220766772213832166438380776121404030107018175632549612898444869839339755190176479698995894356222590833103413468148039274998361939275132246979236212285863837116123091023690928848485130310846418556222550506683576032424854661887690103444004980082920226744816124634361238380724197242870141519908153427092854163350267372868894178905406632020064906531647451903272535377647912152976690248851521712565937841987358089167798714289888164073599843884225356015853647570057154860329001884184905754552525119869639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23992854764881481340491317061383978262010243857560483378945800255006973441462432471385313121752722316152273808617592363201961861378636481622654237343677090248469429618126156624994779959290747236286382496322973905916089216555338328922095610180124294576999521685526836960811399464937923789368545676457814362802396512922190303895901812343855523591938282539017829995494870850970036627719936197658421549911490248738498973213591144138482848430360674784094177589693584976687473583577249374363091222224049472350866519235621316218000142551864640593931024149949346096734522461824733815289318236212480202834038569035683899185543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29343917629860716729405858851345441828059178557122868260895881478420726694229181894931124694192597768132482137363004691794921717645793317984444144558067425792866348396669764006394360751163693687656920433525723936243150969582210182847712894594181373688010273334550553854686579159470143190172742068974910404173648039551283709199361391007884176514751133052169855600620201567451149824530330883181584058725170366249296712002807382863278878627416564036684720377048719323742085617094473765512080101860346268302008321200442684135051028415588760914122116348273955860351191126331664237472366551100226992060804878581352400910619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29378737137060176754750889842258850211230204522640287378856075816420430108855280030300094774847166093828659739449066775830288774909937563310102564774047156780051929898516704847201063562721405169570516977850605920219215722903931765705104560825030659784162355516628208824537614656098110033936148723110021699366754043849396085170665172510051836128411032548294027839452194062906817594277290867757111173634431645007747747634372954918662573464120807306210348987346962268034550439841830165802743973920146948320609912674163345951357677981735586919852087366980863198332149370866889633410520637647760090470802175047802225762093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26165784452120596742196826806713820045324138801320588319935881872895537977959071845225404577682395473300581656270127211900809744060932047669325959119557093136183588377770924582527085252550185728238840264054603967252943683561903202946175959162655585002490361627038416041088761756197828767847641905245573008575564214562413794636056347280693415600337779245919705343561031159265236078965435759813993080895127907927795262671662674219539324438487306645334645834069679284710536930158988684262593171218399052915636490268479387354872543664847754505762087260021433313291487764926320766436154547581528395457261620389248210325779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22035850451974574306630069430894716317525674885665925734945319024085097676363101428682413052055815693933935315631563179679603672511775848744731708852891192691535734779558491812437722563492432252149530635184108818448576847111927089061401110789257589086087761695671882670572241095435966596524124601587929714281591868146627423295240044107051179733902448686773326482985854906809886545497087192419786701606084013834038324673317678717350072423635212627325324539606510279435369354737321221144236881302326714582753105250921887915056493324043849102105471018264016636530439493807698374653630049268630159453963852061015857635371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21889911467485290846958920764666099751053480511949175786502680416469401211034498545883243514168537299571023409434399468162833303974373648066220378065411551242148979328873580303324085792628908545166543805100963744509532006828084862286401410956663222964907817841660012974501169020062011524698335498591820512493152303399182605232875425644978452595619392608229876030263456695881668485899508276670307330482236924945382351249040336422854229567739894140297487670730311016650577464676653199625882162934574824305952675524531458997702666502326272774668540216031136153067569730925786439726639581296178768000962239280843693492267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29919200081223271402842690602012365069121813542505391035204607349445298901204388401724134845221253169697966910826902796949850666252326165756523687140846507902598914654865760668766934903413525142975982769283662924511080294657372632700300024295792186539775940318056542757262855168802921515591574592820185453885631876546420639904898875387703961616763086458230463073881179866941137178765742503346736530280043457808193476331633177807114289082453824588837770152477010840604053079886542815990904277189768419359484186198714416098647573887444661595923906749925251718088721888002658598229668213815603319995909821233448175470499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29199662397498680593534701382498657436175837987941043042788101299587489868439749816415070117852018641773888989340277855095780950593099756509528042704303722768606305467011518078972927968038232986642077597888583499533572667827377546986565206028684727025808211077363503570774311901471976791535343097973068043977120834564669489863944526046906544500716196480555282101803464560621901107136506240566586949600431767563767097969531170859707245619693320559775408637150541065781924741950319620590944784244052013563154828734987151227605251622636352179141147634298023716961264699154899476413608118963571812794913080273116105157923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26933277400484117813636883082334257562045830079084227028147359680891569060844021613319188259053813329632148529429477718178466398796130989515676341024859684050752585017967081975971187040520686309780538178225879365396636712208297701063205379149206087971881489033812560960469570878497726926103317104124411124437771923078975155604644034131294417617945349780879111951460451323623679382667971943434386733758137149253859397404835411719038802517801143092956683352308520844507012787218466134403134738296171091246439230154052680205119309627466812618988418204773887118835878535305980273306006731327470675874608577634926227011303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23539318603356858612690580811413844081038636672538773018641381869020552159851615258930391766795230844649282169415852432461689619423910562153060353669954759225733241522327119595870841560265383845582149650632415286341904825811685193439710101183801274748125404910689635443471623304045240934565415354347961696120939995677756124034156792766420605685351578667442145934923659204782693955455065988686462151983109111697349901644049908127785261603116298481174294774624559217127866650117563942376708651910915252749541943226365026844531756043634642156559261095875657150126391727795047639723892582732013713134971131959385545874811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30303827563790780058013137561506374827378956813727025817174582421563510738596421830766936676486682473018701803677309487637662820436787853096922267959176677083637007205200000657099625207358751536046658262338463482578421877606202849970399435431943732227985782117785695386267016341982724445436835075417047061209192864782407179507597527193260946443477666746835887004417083698376448852778127887381373630389129509376265540295923710055778766012026605620737422714516619584280231116726279860102306896421963390305201337685864152892333451323408842468003033417142130968733647324175582386177737801597377535408275074886945528383359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20542250789808095298747937158950781994858254621075085519124375169209773096045054143988576194625617683194694934395473506696550475087905786895152532044675649569566406835280763596674130162743757520614672169050763958881812442839468750255215212705739098058601938046365921089031883710483040921188953104758528718700944503308231675488408910841912464073883995417830535472972997634763240745604632332102343459783390487879929591196142991951189412209613341857257651138327410142889118354724418352645815915031426139652542869488022879151430746857606653102073159650407478223205508794841266799443412122133908901405138242035147596998473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23529629294414341169365387604649630555789560727766832696507039450940850469225072838812052105597610738792005390140524048645628704108102224299188811297369238606483853383654914398250409986195987595517656305308572620874660452749185161421419995351372760894795126099678157606227081972332244303212137645030398075363986257009543542064052223972187714816684837737210713637411484516090079963109918017424282550910978627383982484834894560177349718743251356924012700773071702658218578559288817158811031507141520899158233263753354101393944441664648343493496796172007726257154458901586377865138455671942121426388456003338980041525591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21641733401896893586679361040239086712241714889037972266021152342335868015443824150306296762955481801485807620621791207948945681472012563965325350634695776648063564915813233949309792346954573412309738502678508373420120594504763036235701559267978602171355150859083971622933158405024762736947866705873524183274989910433696904194180364042217852609002927287575156455279436692814153054929005579134978874640119304253959000873553176708243472937315097040572052399426925653063884037359782704216604214771860553360681662342917784761619705092054263372363890440208858169716074004223069553518648628936435417832927690099738388937761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19465336820078406189701768995751127657676836796702860472741149143917078429605610495300240890129635033731248419752541164644938479314415279659494948771836917933206016082421162712407100729638218185604572669598941659374806252338465671544670625211821194458574012117467483690741194201866258039546001862641605310356463013450059966029815114842768087411383062191950391769684339549482306446912348167359189620788364381219808405430683170676305261622961909345862450247061609591807459241391630586114978738849175726566047488739324052661171670612531514656309582434254768123877683123424159935017769602204781998993072222002683660760239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29575476194709680840026551684350190580847357478342328385870518133712719323879795325987444692973947138602304451271394882729486797573227014476309635065778406365612508399242466080864944956484777660515607067430237989262214726332661840711668372058963061727489339205897600724972912257900917824215538524094094611760143134591319506546458848302994133265850985408068456592683340474840745539156991126988057487591416420293546456939453145045836763034039221569855371605212328961494440286140581815816757404107631249490664144134643767707857715596420509004951671503517470847686058213733161731499417936383414046245734087326020666447983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28709578914186471560147835954108681764640324439274438597227256246224191224148216974411584960776774649080898389121111948641212264002371145754886109832402777068135404587821070010878402531121116249245565372685908098981033575853845534798305895595355031998260136085767539685340249714325293722151382735240598364672234718930012910552346403232548729152459073483457898068397115529898803095092617757302427218715853626883387176237045567361999357980616154122612468114411507040897608013284073643098451490902339598825303806845826074679949772710660900193205065067213845074240255512282292021965097831388796735182755609950803212671551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28575583167712082136729118400539933741056322346597360439112834587827795352852917582736541117939573234783350658820343680593987602616224781058809148160227701318562895523011704892643875262185587122310632929093452008555706217244964451985690579887508450791480136685242970940760599670185846117172079018121525033175522339210420632550799911611007639646519666600233202830041511664332684886762904652622187177126879230133685927108061711477353845034811462971674170425187674411307572222948222252604576542663187881441670372298948345316264898298987362190695668181966774905947877589535004168502106705012981463040522595167663426201389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30090351924346375743339171032231792992507255607107234589311635179616580898966687515362261894141493210075209391218235416640667442703879399463909336274608880889776425803594967379660647199946703395987805845390552928283597139439235052447083238779222057923444595486596609580474118617764467113090650330857061490072765774714691517651050050141320511085763523864538633549738380439539029406943235287711236785465020256773176901178786461859471897770211621780771348635944197255381292773572214469276496143138516148420172940375942350876660060275074056673128349486248366155384496023041420923322502502998677422096146722342356256371881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23955128469144005278518939542820654828228047882757646035523578041996567428205285666080152509316039018190748703309774329228628671934081461179363942982089926634971089437457036701685632745850052890832640713558379722747239722235141941595807489825059741760287075172935486724594610453495889142449464294635699793036207378531388610208851275611548374619458105409385028353303437625054808585352225226117776932769670301335575370061380716516707697103941218531432618050649132793227240162872462833628020156950317264322346770527743064480826172328109878786072869894244641662746504984702774307181084548996554994893453334740655476237357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29662221997613133715223791564499854996072666310076266658615562463888030270442170646715479549664267913365063955526824852153330421026494707404052728317771093340829941206759273238227265176389642725056521352372062850202853544124060632040362487495446998254092592618873400914036518067367102468995400961041486292715327930503558263953837404363127854193013945682958024696595421946669418388304542659306855624219138416415624892192280778908151293732847396549209826041268271590918094754554021974291766157066902188691431192080168962142117236942617497935579247610115911557367101985784516511944173151739324463562278932176040498570431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23590008602434613280268015392716980808699524601279834226192509120542918619919695644090688907105541963631523795936150711621663426494089613263877212617359615494702487976465500798372388222639499393177924330462199481479245017054922266250043098288920489269251246990630699770030433647554336385287934571609775808591342290238220254485394234395702925521411372643722891319231382017357617500295411031938934938206783424778368163722820077676944282346480096006103260844197659588731267994616446259093566775982069696735605528824028933831717321307378642452360524092358011140075987982854501156283696996749411484571919327466087137199777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26644409339848646828880526331628453701776477640139307027445370218953065032261532117423709537921378845868822968268754941073819654257686326894059935124102986017644752666471167467526822323487492444380017817746657396914850592083520685678813137821818433196990540182587712846748918874685246310286282458931275427596054316631766180991716341498501861495401337677922172632958329372923105600924257179605189505917627721213911659835514345832695559598819048064330151122304907853055202484326239845283124630336975627670514136874775081823083283789155901343924863238327088584785670027403929958700894178430720929577014468411660377754887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23198361537258918915331707495139377638197486655766995053985512449940208412349033699951864693961430298353717956481873321949259596481636960058568910729115499912646838247799385278900361302934213514115910799665520565702449071129537107464556338002863194616085113208890034816766874102707526313688622904878109817281122001468173341035012282232730177493197165897868402202435230718524469123867734452812094995497668516880660460185562147250084992791234970764100169808149045203135400602745724018753239755880305446948518296766561829667994246600422755381624397614444732782685353462691461589515662511581161982981877175487098544242641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25979035679832833380870405899641558702614333834384442646375227487531237358975548695379264114586840499192580298199717626835100747785885161724214153951415615075813342161361638802689795760984895809855585524707288112825577542479784715442378978988270652208763461387418676810157947743503278249946549092574193791886368401743620731198329290524778218910032020893357010407006266598643261721048499024410575789694918033653151266252133969235070816647700981388242094717043709946227637554809675858749011149812995592262016827107452273918452984747585603782342740164089402671122836419582436364016478603955036314392084809666666243607659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23033000765242039925293060075279428453170797826998748022447258606939826701019156574699394371916312036709993687728335513063198040424699584809413201672067997099556146688742591907979721007750034207903282781827340795349823789300039654677124124906698781468006514660628950507449389255917543400523011288260361813294044885182774114666958084157345735079853577388526488864804492746611925684624637738785445837831175702266079276667956723139178150964189330837735583941421770167427967373327094887105174109911052809255155703411974881887105085250861467856461203168021017116536451069323448743195058132021846493024834822292372949969839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20638977409408628362485119154428505677825961877286005423205312344708206459902332374132480948326174077482527961830068794683026951843038758362416505018765162190820404136633963354200072801780454618490851848944083553711103326922884211340402950070190224644332967266528614456464590800012586327220753951278398211440770908573808665931495133895303608842775815250434607851857336131675943902377347390018748687201244755120724259139257808550996582114123385489150243042837511175104320616951024099862892573275984144875463972038532620202170919442617682844179641479146862183407026433761573026651846152503913043525374637288401440399433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26664114280763722172792540531976154672319237524762800997277322300037290900496115631274868570384055695063850077729344500747344455167480998397940517752833958373181936465628370232202842968568445099903821927225815137632423749344581309459431389867163668867010226920560849990296852147616864156239684849469783231367098892789339460047299036266721323200540392643846303088733410997016960623763212828206626094447769153640885926961005477709569712962751537292582179013502659825326207874190955820410560125485886447187559895018552961657249587009262525724340020058913468536136519600756146445989610118273056907041173045833255482551749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24420306237552229748069709618890540630081135536603953531312046128071865009930351340495073936922801044565225824407888011693455539508912339982684617903047866626287136325166418266096704642494395767759692411036999697057434594606892124736489280197734461048377636436140956423092180300196596529488685992045948383186711382381573558232445850903095876218430003570704899588414874786385055634833473933741642419002543925304739662458931079578339730024138728625962130347763911522306049666922026830438033063813848647626723621126796398726008481487119140329582694992938269632719159612735729230386074057650265843939778415885139598709121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22851439173935521959302752188063973807267286046977406600370615019628050779501931198745527065710497178311538601775081537537467401023548337084320101830927282391619910023459142877323378203567078786485502781569830864601255832134423262335432729666315279835005104262119366775931529416377323509832413469630049167718692366564912160771792213322071957994462445848325891977548730071044290117875432697294119986967905067390708210454595281371956470248960708799432431056062575450441371265298259563365963735149007666187309110043090285315420097716337550697009796549925671902592228583060248075641544118176762909387620004026687885088767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20191947491510936654068088392642116054936013224044436159141674053340265803450071171165624615035031478692709859566693062623829708174894517593765424857516224468517909956444816603955253388923815957871867424829616357763915253438087671698004421062362127424984131291792831232322128488748617679237320970624678612207518718598407304744310762487281105080214585547443363398374999337720226354835079193636636358486422227021030635922472247278783177277492759213025918379829877984674483198485109247057708317001434858868560449548487298394814165312500860353491715447378853843410563687415923481868114968209098755333331193676073274027359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21938261709276894138530644485150272515760441750343522081067763490288174648755689754799237044003118311578919005462010838771341514574469344290590807245684534908255107132924566823098792782690654827200158471845980123882759308888195509537413531441354532783865359629101815229983284554010415325363478058854103753230833448961390704526723220384054463897612835082933890792936571322188746311108215324800791773281110798546779321001085915784605746588750733832989441213802949166707919535431353240937554822261726076591165639464256640609449176704836977539375632812395315256181324188155830975776642516998809687682937262710112782760981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24644000039880332932126810814383057272170913638846546385273330788539433204498390879271191886115954142307832950797654229497152027395254771320957691472341825840095047256711433655575006636975289894484995548325047259262867879084034247247889269275693102007649343146197072493970149877068698036201788853802818601577162921627619181433618314556696622279585249005022541150648326422489189870040807227496361066593703835984794698020589884297173782745789694691249000727824414979449450113795863516652163050132176391003536449826754957032791798951820149774671793777198219306350585505053638980809111683546742528209359837837363032630967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27028580206981869983967410758353366850476883278724837140903430086117287966738764107384873090860430576126800841841616964811298119705479306290732385875189716745349684491689453039173703248930400384266078638810581363672664712046432647186116949240735848987204184506646800971403943482868315947509618724406349463561589927436480902006795015563831631128449367949024050778334884299827214766743896313689041286613287054913566885483528680359290345153965124321987611198875092404666915102169810917840486597133342414555824901809874160195200201983306743852456799102358836253085572864634292895111420634232416782920804218676506533906361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21514802592152770099258319052465526083833207659479819567682746540812354057152166673821187200630824808704766233392642883003214063847491122809053980014811829199617138654162067432598229165975653796817545416085629198010478451430362046431640077361950092630792483495446931075359224533030529373918545708272764888392533122621683058060726453244591961644298260397983766547472358854442468683534949805089378337443225699090167014573347523740528406702011519553028288825362684398642212469088603806783197597071331647712314703834362801167144806149174000000047858697937341366989399024155888594252809489641908401376958872390258779030647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21134576533787128169261902632157186252372739621333843454820340668504349075061733635220232399475849641660494980508085971028610134837888185868001045187642001880214320733102570655431566993461066699965909064994981578294059669510867885781165847899714783156994800366727455962442148743117650971168684248711988704412464807059517234461871825115529354663802008630189165320141222344987583349450799484337485254403447102470481295214991801415985711490318891024594494657843399930918416916868858000630372870682054333724934941850298892661023315010886825405766965973200705787343407918440405926277918954055473355160010390396661488855313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26216230779936507805837942405245553123017256406902291399714019582322762993543581150253619003862100154730809580539997739288333928194035636651917488559406540454186607580632157471174573539872301060807903838959737379869959372677124847963441776683127688367221396032726924783492636763650901167326481569798683040683175373924486569334323264557408018054587481751413591994484734130615449831187592812087670069873455099984522644637825212543429212136543696191465298176340294478290555194914254189789027060293702206574523630857083590710363401778377238830199943495561509294006120404376357487628225151455062424495025860458832341158251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29640549728594957106433137406251905095169307654096037902908082289727971305133016129691858571777766626055394093858050127047515804853517964244217113036237429219019424629368990903364566053785170315290165711941544459933647529947536211438579948408314124414223589809286672131809494201174903272412500730150192018441157258464950596452433469471721244771485565187294505379958884966178471604199011317282256634276674594216128940088377259539144931350210536998894705064777329757441180843188780160081606839599722092050035484465168365186665541099275290725938858946929649918628354463652240072552876146110815683922404238116509936983961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22560173594994524352046367657157655833271574044782527180983717452687072799172103970736709129449885303868578631962221889262884590563897435345324543809383630619896291596119406376957050724299663263445059375438807622339650143367053726621780083472426476337174163248333556079669832404408829780972272311360827103715379156409437863684374838608848455863779399928538041608941764159860196821778664530372984443118179531072778680066087843968635150139184825418011511899561054075015216304263075045858003528014617838406817157879678855208658114693118760050599718354385266103100065872661469931767338681630032945938055293502808905271657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23323324348977722800197644996247650119523952394854684698243962028854601540475565417701974891385998560885156998099481254036885222810683894105397633616116167669657254176198846692128151002778108868248672834354083407712937540505779095760731968853222860625198451199463687370263795020555838162934552423670255281751677001624930302981858463858380116723380893422238811930620087366950749129710273005240714226640669115789175775955146849828401483742926202778044167032472769509950643462097398814734697597565260639078474506525181154870207791295083992889539228888008992281286049815538693658574822667989521943613564660754194124773339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26850168103342997864386701417379278856353653557183097480331135202870178057562610095333981681667328483882210996892304934416190755044484912000932853237588539702065027786040356996474117403398778242767182371666162924818360129316785966042747624473949224451947235254189385259802312283014798209971668057425704545846271954761091944074151573709739026507009901778707274088688671172489809320871621814224468936605481965758973394155438584842089965366376272481925640329120603483419837662779243682567694413606375454818577288712692854170121627325246253242769842694208764510766078231759079713233501829389855917188744739772106664837703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23593438230846172859303119267647000957587207366131857065489900421645363021360620309377130265521777010244529432575657613908302223474844869125894425900849975736275194406871025847286415603517995694628145860206519395371919076262276285005310415970586043000855088549424018431210362928189929974778520984182249676207910847933097240360948643436078020709555236930528243498396087083011345333355632570258714102087691225447247179546105532899490650243430148254961591677073085175222936819453568001475160661984490855044737244050762609599437093815748153145188611168955132767640208036751611966465609745366839706226639466957009134481097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28235344388562257351229648471208559748744197838194796117426688360434871276341086674498076092606768178059507485857152098675202022239602071059351384124667031815970640660662126043401163304276104957449107417274758045073141346199201998907553232206034638201107093094926325909979018457353868503017174881472570198484303006794620083265251543412731798744619081084498249426152052234287140899602935935561634769997767678867262954030484825067448538916561332401380455288904493809546050652498094816544739976687390012270759672285835335714042315448067440003317229926352406756171109029338597426430349076675846425107389490468882033178821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29067621272096877397534235070502087586914123767882354436636352649731547827445336453540327843353876394282426432586283595920965033743412299165256804970606936340654798322122745845590725887725843397970667362776644300778569801693488913459720870214053183697736692863096082628327198627044206953292275003200830132412533276830203904232364039380881569110166070341295133095459243092276094156801923891449772595321992432341720530679776696367818893679816796216545131677396660538714266917429235441980731930528725876841721631745732283677548997420730875048237683406847728713941149321813844515378631116439170170988760932303842543175563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23945813197907007327074553962498692605185892661349312555828547978337553012391739505869640790738440985433198773763814449703289556467908976551443000735632251053443523539944459847320093311560060266004546509084346803837405209128915988503947772445066633783266597290381413303513877473993744958617095365152757537745872116462410339595321921096705779898548304715003348838663499840023130188474395373000322820823048235626936146664342599573612538789728514614808132931254739365688549961362881321713189945749877792735906814387161636830378807237436281352525326052186264211544664741907878222984505631874894221914101850325755361909421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27927935328210892633791005894672756765575966748577914752424736122849356221311333385917808591056575922206578700749790075059187726597541349204685538267036391650755159871997814656267343963712597524476214213694558959758342228097311382147332684551599676544936370444583323854156476388951071896691448954473420103256372989428895077852535829642276589612867724995773412611131802045959878090651904027743754298520274623014447113113130681127406451367152803198498003862064744284717987921491645126599495642968108981533071277151930954495620331741472789462922654010923199874265528752525706014853036234639394741435578681007504912944821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23918763279832411952189987217244292699536365710208366920711916792024697563796121312238995049597223654514671087754272087006891036080471833027862265525149808872637733571810176045305344124247907238442795149207966316017961959567091650716066370229722385203049509261626571584381082225736611777164251420414139544642399085403628097297695986299922257910418621424719919303335863598241764341065152339367626904514619751660453504913326101000907827435527289431561251776492262696777283392338278700567606452829127907481126832311942649463699168686023247034924288032136735489250436385036777349230069071449146097741060201639547840444933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26213679384280185018754665851869783555597414015491863432607527730706841504826356549137983464003842036930630890433292216324195903056558342011588192069701333172367843471491694191444466441563941346232645503047966318106479261603288186870030732809940194346824280597705967738400250481992953111059098649867343550501261977798277720960982801702350654353165884712688141594246836130402435505103666434023937539779635637161085093247224840748564528474288751159080496149773431191336914659219090752483956369033870349424454149447293298497458217534827229321770980872262665839898966487735136670956333858358871048615181608673813278720847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23776335050883435984604750709202736767913924093219713582957817656074006952799151584494235795965947553881745646093599013087878285394398831883775046318455172582923612108010196999833653121576933535697883025871274686717939666172062605668483498866376273400343977847682040965188840944406362100925214080913983193351141732286885174801048723651027814493611233446044369137189523362189470635833082395404535817932322492013660038842166497374600042311709083075644590653831393097389453624858858346911833477708608697368066213201962182733205358138274830087144305674557464873714736768646849649573596575617766496566960851708824322373761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31308063717486041874945040413605498801192130340788286384534121693176010946056043907580033602965899193766846336596111808077397183019517747404859250228217147105421888576558751734477377830686193534084378746887888650025659413091042541698445012486851163687738807878640174985896636394798936108763233951496893614508638715273963464211260531877962127697948803272431186789295312154777820274888446228969807002954375279036360484034622762639540100392420497404348641898198714040939808968448391741615872768872488406419089066223345636816249210754857159940577066376501071055381161669249986447517122726103624115567904603764660983219683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23672516182791797640751000465921279247158656642573501151201145695519537364080804212551536181823251248424728504313290593075391643741971014223712357340179234638575464669212467773376680209600490804690237749232436046292694982640971243303640086139295494779176298469657725236928351297122467202138636163727000656986713745369617890333892961204171092157630463071874766994455946980003655682387836966306382062805397325330412471587266728272926352192437649569971582279536846054531930783275896447340553311198305249708130361946657821102322560940869969678444679630304417400102613686994649865796758458738533151884742953347144746851861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28134895677977597645790702352267441454637597425312586366915992674564701987112242001405592868762059340471340285034497328029203252951479399149823226155597168198924894693753118529379382384791371051930867045383720877069644376152763152549932479138647829532629725209837730581297008906841540253413352069342002726516765688133470936533281550497955841596027491648599963859530327610601219107905188717144944255367003266069254856881237856980304477014073722963268455011725330968650578066251204889059575177742053621789337421027787049072616922277103344611094831968980737898395352961894293718032941610231029705945382232421059547263707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27243968068936035298726243054382774781874603190832803938608062996748266898675601996399174391980896027675758521830964156632040506325003754964061919062579095237122280362166397501306020598855504246914612541780620618218787767796310554496369339810655384545578738528906412107615698544172079811559375129248560598362378209587872687874270677621096324673074586586189381920325490566137474681022520092170575918237312924769477562752523014896613102785091737714763293203400108905417299134634272357608430320997798169508905416963187477921411870017353998420176970407589931297534261222437957648891869810271943818072350524211029444965719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29282782162101484138645858820166666077596797341086811183355676419731271363683239518151864996098745541832083455818421770265062199650948649382472771570228150209166476594709711193825196833477247634631551736702797859473472699645547311806516927716139410909231186741340841487205898388066333508064850195826313814081640267050126180371203948014499634156636070201896933769141322810675431467040888498560892627378903493102769001478662928888730860226483507147318254592394149843565551872212751167794223934413148217675070099314017029441868374804951817359089862122909535731393493533046929657372705669215557424087114987022861619476807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27823572803790064444586746164145641189090808676371319022611146643536462555184568480792967008555087730479476624988404055696841200353475246290444252716333848983216553710579271533019832470244632904476390928175821063458382074516919839314427874686919938211569289512849790726489837421020919107107279343645844249537828232501766015093030068944426292072535402048850718129180678471039108202581290726512349702751690710310347047547143792948108172896670310066954678147516984282851770732466508457650973936746923281224148977019028978348913951346819269808630292543124019465267980835356718597690652173657692632769698888126248701715309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "18748127780182832287566329088970809697673037100008240160435694475599901319768410708828267643145237295057580153818965985766208300877353352586660991778345011367990817089015233862134076973680642086100232213109208892380875775641739316338126624517077247520368684088447880047410982352891120922214259688046535273628074119754891882709803293145654374280961964620297543356837258163488970223675395777001984410134829458617157591556928323654849149917332472122947178818620956912515080224182755388426799785845445790149580345942782264035939701361327126594011173147314936653903337016942298441319992486855335272394112617104355615175499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23521098411158930434663919682524328744941290682189437177269438284136350069760282431457463635960194668370166923075233335187981895797772760794589365258306825489635412815514412222785210531607155844854751353316243678360883600288531698476720262923020016806698053772516043725755367872289979167949264970803321241382868954345297248333236166606002101193466433291860986694611865540119244872052413796334160685746940094215308562354738976299384824392481702292126472167939684245139643995272181087597843219067685564153655792902556799318005477484993643869318115015904812996258066732422138164013506664465303241049867234082576659892883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24045736589579860491725077813915828865440028745692492134548248129018260471559947500457545057675318229652868810058851281498735756631322844670556374524957724994549494383565082914909425370597576732463986147567577163186907520248542406022633546265191332403880878341343170479861182969778565174519900415992866183144859837838590003994934433893702474373390314661238191766100781500744264612870820899743771775205309130004734492482749600604752433366974893231996350325251865617535556324428133382859069741330862015173247098662619492775223565007839443339265630484614092097817806207320118139479198145545488687484551259264817921399147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24803237599469242677421988180590833018228078707307850317179273653022560751662920809304508291332649062545435166069759725718828037844577084803821293553393984707067659148543439457487390056789488732664775043300235817818741625123354739327317879631189300990953714074859183856346210339331520648163558099278475805799668848640967864994452975429009868257582725837436488172750304814234227328930420738667601718921542544241247951044209438040128223482762526806593812508913185972927472322733409340596741006164314231040909695806490209725689245596846389535217419095927022825924915786519973226964501583760940450399365862147350043092537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20393595901277560102198797419372065658804978928541585682236124443015711564953174926189188672594411937107681175377202039923466149419503589877530766869416247917205250584681784715220230424061631875990327130794891684127646164301872363578746873498712776850564615169047218306102355747580121901838751554238091924012683124839491213846533200592854345919851463904473248530832238499955648645395372324175670144159981731978739387245025121913131785815260997926815011308071351385451161012322796529254910737197701303512726168564160299313988736669436806044695300955919028072936205267860504431183147500576698280829855620046446696004937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22110381803873259037642532236278922310321692024358971582748553562092543230556706974941017140856425108978676790806537835648538629469919923164488037087972095071995959618721854674819598465232573507984071452745419007753874743798753116080696999811524668860755354387344507542118462694887768420249365792341930984823493448292510106981576363364589184351689126071824457540557801247809839070337181530045633563021421318780970639524217802666535885671281434764638656298298734257526072081199172315775623002308060452762807855718229853263643734444042364558850212585718387416779833576304035239165639406796078542344420298481310711152403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28594968393176540106660179320635731164985010331610282628197871416805950399677031305976478578502203116527431656637285588577586236992019288928511184838468994088798694217476303377951355869070411843621110012102655335903298694009653522603940194930170964614291225595929629767858025869595180210062188945208607784535864913488220916042734977283390345777262174988026251300893681701981434592855165239094542019808633888991100979603330928034588322231328366592460567306538111519862549473371292477892416072451735365832428737924600528461131870977946162504795000011955560554171576026933729817856516114065816717214300289714831454471253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26222408385188675896497480780756465307829245437461097546233312492258147554272241239450656659470060030886384002516412629643946264937035466981139828834376408856278634041716751498583966296876761015867900069342337355626750356112127204211359956136047024284494289500517909520302153048770387298635950009802126753900662102080994099504295310603687187198894978783227920092918445835302359988647534615032165676230790556098647692846017314244657642168990129370664077643385669560285250304170939145750668106018965499250817476713345955747876850296147193067279606842735923957963591181576573745327222477491246644152713045777039522875763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22563011529801263744002873030788517086982930540113554278736906519763840136872142373324556977860518558442163513817624783497357472010630592253074430341759359945819563669051949051300064256641959145574040868832378988574949379617059770165221122507528412706153152678452750169276510526301116994608940767856808102525237909749160688646116813796300311108626915929156529255094927768023169762477351730980817322698851641995839839615044723110698508834779131553160825196434165264736818825242574006697599864967376133321829369480883529631061377507735482603186801223957554494965577896448980696637164760601303455499258072741183868706089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26907276638628454728048823206556282219600343903122112787247544077032996925947316620095842404208173175561260720151276252339226719884404925625747131246631445290455508322327095286357459749682949290309588525388331045083434076041302996598936186043144835382439849761494821453832241555997825062102903130104017515711010471502824200761313597554212890615880418902465927380774820018968571479169755407522847391347013990093015616367171206084939166290050406294410156457640243507064033208826061642405594371424957232595965201829914380418894734742859040841104372677467547998220686810460486732070316838767769659423572582076740838521159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28781557871479732531830031282105338151193573701089107635276593149312165809387407885668483735882342046372095690285700937511347092471609717005898211619027233446220171567280026663741930399654424306070039020636930435696343089859238456597861024169570496904817517868937684919550039998313063338333324203294183064781194668035714580073338183317558598692113820052970221694613198139940910313381188207718425094755434548300743056752320438071867061588279780132502078100663029964510845716537395454349550539316071153838258945484553028073625144626542039429109577772905011094976426086017153115312869824436389182909233243926045229605301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30690394763888954740177278370985718361722021154144827066307973653502704700616624391724992836490740103586592436248389097229808854735835875716337811949746618988564503127138296854205918376050031647009424976597412188781441541141467130718091536198326979501620320846404177753993310282160747139831320809987961167032595392012802853706317354267129500740931723053392673578820036112750169920838301106064167544195086896390918371557365278152067635405203571086401673164693101634448011446983341530398321084566509860063042961998395605350387642331808205882453758914180658251882569144914405870002342693920590744663162429475984640370929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25244940032256649669312011055238370475569017454379070105833803660240689268511316082851930086388485437756903529203323914818799873680674339841960453062982865018477446063439926257049656519601441446086600252530170170083371672551360768169136090178745702072947109290380941462143291083002052658595037819099920954554460264373032711698153173993951586378473255607170715445963046536982360406494253361793647967753244953549026530223587972695117631225855994147925244831302524543755731048174542233809845384204671174146431848047232526150448067409215174699910372992184153074473761205998539486415655848296394522225110469311979528014411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25141785892296931457846091747293649836633763034311165346976518868169729725793115698881211725660962325619028524185633056438372989401070139279312516056586216725152606307904666150471995825308958005442228045860673992056715153518450480688571620193109475192756648523353993880297063089075446573509130625760976223509518191069657908613854585000361520126139566236819682346652381910278851786413097499935266354144681771982250494070775091462748111208838650969084023324930839170013954004757811393655562529056181490505288699103599406621755627057556601279554510234411450692613348500545486531739868629759363259069182061969996994215207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20738973153165685595949886272578841187518976379062367757353312282578029224161232593911485534782263581437651882998347265927803180497148979283636796660283171326853716072102029137503380328343289983852928996299259117891398496439929374299270591801512675614092633263693844021982067180526197000997795128041379569685111781198282662660385271359284012605787298162731167529849653031744864166765438768017700652315152996951172178816304561988106505823147629050348926823447644391198454543920989765765884503075119667718226674276912220619129169602849139232632344847108133632071244551428148616914611292453232768855004779519990031202157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28473586558652725520450339501343964270373533468850620404286993129505688214155734591445470894779468197965255096496567131630162247533575141651977052078420878076765011682283480068016138133629186489698214087275841900997188553371857767765771699232573601324070558143291765514924792888267073818671869517928687262422927693930225315671105606717799683021830109764154717558458611141450248443681211356403893780616304615833477040298664644708066892456467674427660121214570744619427014168401768212287598168517858143260812078042422414256156225082591971110197591950687825187421491283895104530611095114606564603260172797372120257935741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25475071887948609669510958054656651675688734805430818638096668820306504450087359610680749563101668327619855698354269979148180976660156090150865490631162140273191883091062163624604084805163170028205399492389235638202600656617777146369515376597742775773294676002702994255588493630757134019740518700018272040362258323315022938960915497834980641466692970366792373522855036019341644547557849407251307197417330794920400987107946413724746808170150092970679447173390194366679170847183158405350369396907704689872446019606374428680326664898120140612989078791814074795181419619564887323386414643345419549703361458239682755408071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27728308865169600806448401969909785751036467942537070850643809448654387696147491646052418950547777787781707996808830798677630811480031754626785603915780114671807225313295925558670533665405103347470952290854072214898387416729218258761928770787919926483154406166864320524935589173453213765279679667670259798262006057221552669410319308345638259802050840336593004591683286512668812222671636943888279804974897085926300005457309232261113451683937866568442075110636929104718525484538635011890935313762730294072460135119288772184232166190875183980316584881044343663866528310098341034484951722916733360310176415187877788568189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27469946808415048020833851367130009876549352996183967983743693964262284574697774542586832706151506288306167014636599708462961527144262893872621396360686707249351991644899735943697506821534267628415988173692033083527565511782830035506650949368789075030727924021622734348622021674770139363566553735575835152603603673530014842100273119023944788067545276836471513542436756800387854425303183730529538797478426070843839437593534308378895240692285718490711398435964692262657803108353840877339021535483878073921058040912576394457701501251330320154934390969157220483734195243057241154870466593022401448877426383133530431257933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "31044507321394363807879103379813719542868304197500075146977349413516893405049527607002305294538579342505307634815233170984578676081690209644889474728631291822761524884245891020073470140145161819699573470396799454866443242133149406689639371569941559382723811516067535756778250851243672016635688331039650269585179170594632192170850173829413947827406936332643033829825136036571054716119105275045309190958068271933216978555317473624606187897202878122965558090763371295834413201152994146454137564960953310356231632771887409313651321061433521585776719502907052572788229180527557691938009301990767005322120597858039959578789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30126762122904994078554995510306592267817355586444222098544596099945910423876920515564654713585825739376029158247084534746317548412731505946904888608429439805120932578913094048746199451889312882428769375542313087892254695371017433689717248267677206766778098192321904061430751006690615548755233224260167702849617835437907647045275293373790282320255988294705335475906757884665199782822452955996372789124867486520256487359385944149419456054879426714744504538823669468636083665247836460118921516833351940866240824861739946945330141237829844000795250195736297494325702347993674077721644671977744625446740393823395476538317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25447670142910380345101176945064167901142845819621262646533152291626178827548683395720990309765464165111070700188180505051083667232037297912025315601959312562075451706177684222065848936420432044523613247639312656969425508036731422648240225901757171552886466681071803097586752473876640041796404248731316259734144356506672070330747921070289538220780985875546424846819043384387233551072340455111380320292883788949246192115296791908789472280167943965588847652366156774685896141240382069197065104995449861150751848638913092559172974810071095781811725524855966897456258772013194597091369608686749640910475718864568005892611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21740184427016811386020652454499669602183259615155998485918366802306387574356333470830785972521289416339811950714773826325764737079705411394569601147383799554428341548313950660648476681400869750966269343807570238687683962331881933281758864500536213878020998479582173199945133988992715241590992380395919139543849349583114707786989637615216538174337107794526358939362854427438957436669085478465644415378938473904234032924728381482612743961412052014273525553492144171529153863687489022378520448159538598617060218095035856777969530060000073163265208023407011436824887154330324501984311574872165544658183453699779168373397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27441588926245012536016327673324946881892523348701010710044147847305828727607389585778805777128319802464972678674629515068155258946552862988957715966458780101654266299606748279597640723643023858844853343386439776452960979288879111774357842149249747408832440695766353701980437508781536894617755643396623927347718643681841315401608667283630199042321445076972070825457381209428406014213949381172510972845721483125770764128326584195785120747150318694832458107722138844920679006324233477216673244145368874487352181491062107847665635861218641796556927216875407082870227881102519813279780417330294448032975295196456058609147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28852808903919304622970476058550980307212140723407606310171340177379998597259829444345071102075172650197797079499312854590529038052574944131348718752859020418153511298101297636614165788049038493121714970299841364715886854594079337180506543837913654511518319619157437472347579917529942865007369491715976447089556488682892526652510735240356844078961792621099777161005230931450735992824630998922206317874672680762373822253214696301257479209922551613890511136638364847028843449342861441045094741235120521514871516843522603072250110314485993393492582738552710479544075214089510309825090893332099961029065820549238150056017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25196737334952037190014301942201495835798920031422478946805217878778077276528935729083520798818194455692394962992785285127150303871823735790932518293513377795265356430695039814565015049198120178919781524833868061237127923071124439494179951158542015156877466593276508529943311082375820510067630626723776759661415086389366217462645852070588034935329643819806704171919509427156513181882333777215123689050501217967492121989233998227879198226358067562295170092142376904942685170575221164081139974328863579575525676984282883998613730075135389544834340957245484173004539526887352706988657355054009952552108464085761183949489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28272797251961982011627077917959847953686961211691966368205806718060308850196888242412836001966134241941616570198796123399019874291689412498218342576451560475807651303324286645941886066904345681651639078875760919043859836922475301294785237199253897544287790511525128445602298718982709134572242445909341314645837202424117125265576080763512984363556128393946524385765138269800637223748798420624423675640369769090889837891522099871830644504707810441563723429168365201661783994274790842879754833759675340224118661224715946955364736087582827257759273183367260903066120070285561059585968504571996595687806269843391940570983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26109023926293000230118438036942479859081182788075696819793190111303424449645515378159809151939402650454164587500106517637335713851732751837787576618573332903403675810924144643033116607660983137280232182557082243561111425185728325481679250335672098509791980128188380887261909976517459278257578049796276185164254073970809086340272516994612506863843450605565241411944110312630270961240870327854296727182748093034924840503070169677183149488621635285239997638659809942644965674577565148061399522557505995320376155611331233885432678851350982029744890882740266979843030403466880816548231243401910062571493364423478421684803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "19049485810929627073437378104321379774837024581942563472333416293672793285085849542244168633365054777683221837297419840312203527216716721657609325977263753930682509843771658889905943897180380355250527076532859791570107670395551570636981571975742582546708513008399804550655036360568901947844923963997095492992504402281870276971527808590552899378232630212082521258764717702371693018604484564985696319931945743420707103727880274055926951991085488778971831800610203885520169810945025414042178655993614235681922345755667897160316827700833965296484834638734861445614257404898301872347048968768507544124269075248242997173427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24086499887195000797119817539705963339033688026734043616547909800766361830216768007205913812986209148243903603235070590505870917173018417950540595361365512190848751359999725361481976083090126227486107535605648396992829880444735878705156605141504906561962058368708911324084487925115028391378684827625726108258413933941741703136129758150674088652115883671673316780055027350565886423086581789393824517133699775075386402355247912214508352817123236490386536290865868311428148828674178518076036532199620030361440932616618578126323266477172725398104333220071920486667207820693742301526243993401752069043368690629142952082929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23221890973876780282812575615006591755845026328918617968934982283560756823174398994669727320703208277400277374043188570188054088187589404631839481310311496299950130501083718581558815980836873148370954489120730432460020360283699545575781872940541903230467025837234997145649788293711759565045826012588861072555905444649120640472316959686803442796175082643470865799658778524842755770186186007194065379866986374504706027021268338906777726650615275367236231388542110389363920077897259569379168661945273622962507468627120598283879339959438719231886733659608645477450738967644385570372295305449381072398979101889147828549243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24627188695030650879725914995317431969072810806756588533526416748234395341041796271443948432567511489873440248387291619969498645088170752771963081796375013492597282116437239535051147042239670470632178658113482624538981695276688776147126070900061622347199328977057238244640292551285092912514608342582525986835158400331905426521620486387946395241799797697204367883494918526207679204189221843512005165412901081537310362699982369443033730512071043929163829459041677460297155196155087784435633300961100303199401885514848929565480364010078799147777175289823018008738005650969792475714533351177966745959274241982889712408217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21331658962846407872730284137746004840291600647750938225077086651291480621765090021964353886376222280639639185919470867532092347163909080859419822346972588489291177170501548754993272167905015170955925650153274629833630148836264326060365393621757136843115692950696607651655721440753401770820686622395078034646827816376737826764570321548994880995970088753592458809821754767241653813307950448235071781976848495116785092021521849037323208830452505059792497024441522188866300143025147518411238422133324044910067961998646461318598076018280327500870430439624648367072297292439543140254798515386299417305863112981703273830063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21123122509526403349256406862434081958244070141191461469229125861875418774298568656531116881747385210164617701315510841249476383934681818341998334795661136217560184268806921152374209906720620232438848007007716858250805046793162871075667835500376576180756328615839837053199725734172436172929614695816480975375161133204566853665768592453817209600604167419323655798114641325282294443271944513352677963529656340544461739757630314563349982892045107471244625037727223968315611537772118358941749161830391572508797250060087851272041948473309903294338070961046125213552371104212135895854762269230843868507319068667796263900659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24292474102843034760393792404142879691530607111073909496264247174544970332713055840802646685668958077796771526640739405628756643769224795739550979380841337462799643749662058569164355481971572696197608489493169998918134809603818981595679759987611709472316562851102978905658836388687697900721694635334912222864056967260122899164761193610648597382899224255854077504936496062426900830923405483119635019679016919296396555207571909114691377602196217218182129117437612349512222729697465695408591490521965044756365370881001949544024346663574288836823786224698090318848585623558064833566392630684910241300274663071455523291929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22821205966893907326133358606658972892905371112704259693621410278841704690699001731674201309185145172741468955275789571995526004975952645242615053893421616893887701309645057196925200329490486051561170971648427841280945350334912383598536862086118023992412673330485951561655956252558653509731105446041761226391027490289039142201612514090242873119338965876927545328934160893491281518579049950992148525697549499782446327757795833727698839291587853133852115074949683903055826553786498220584532203854480071428352616483448761994004461717286511201089746502249042661135835349010522523358907249233487664143185330153786776661953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23980278827217075506485153315955264670791244226741865728680742815310819008526980579209072723737569252932172425098429973161931160185878641408225846689967782815431554284489058592272300151415274832735858627058775109110533036970550027878123841822010562643474499156319992220004390599575045030559887209477685677681277562799701619774517843791457003853550852576724588583858730404874652553496507703651888503246809580820581416470646721032473330963178376088390297774507827226560333993465952199802723281500252542583501289365093824911127239296706096855969394125322808447408865453293970620799178927297520204512344558527279072433891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26360681994594280429380524323945256148756146226293147716465444844654423509662923775165064107861898108669251490871595181484993223231142488870704333869225549725403560325602388620173376728370858799679316403361896409897908178569580957257254474490298608460834318280868436802072065523563851214399710680227670905862842825295514828054033988265866097143801185241412467732055564202343624978278466159428273473517659458654477923410803288924046634640832494754267746700404939980467353786554012033680129342759185366726584210232835448657550016722054056690949320762663278501364916434172311824968225978790828654922939946070838070462149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21692976047202024114352325553480619322572755635744175809261904012530060230021008051632954534486795887986648943986032027237371610843870835871772191898561047280466181800635729639313244434798585023708535324355907419434907837089465481168550370116595951746096834042301702869581916309954492726091654111926666736659310259717201391532768867794288377291057720666942372302988328670482419564472301686815182711851491794196872496690933463723806881223969886364658307646248787213065054911723003116113130594134618173741612054704676325823620474067792973272021689413334826770867904770375186171810820513635666924567510523919707350586127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26649711426894674276068450865273681843519781665948372754957960283958687827729240411336118874509650547353655525578908200120538297385496869672713237198280125234491877136250966212585385761485448982987051470837846075515186349641291766319002077067006455759910759649414870800034387149276798829902108335455298652010491773305751746726155157340450077889941285335209952784940939556604184442738622875192462774052187860456893463398326768762548638450469282042252735930560752742372577311965438404390550997136523375779733470558933632146965278139529267508124165331145408993961853573605496561887910856995875414520271638928537266066373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26370467395535054323474239068419335877849258519084358846715305891986053973393238045163127418516698636180899498213863821388173089224599752013651348628064506257013065953015836504406646921689965142277733854892455683530654576916754990301363081715249767300480531388592035060922761631735468890903470650571700353320732852654448712131401080561940926705534667542878438571388437598538552731536302043866398934618452625768481351727079579887435969116106615584997905913447746664983928138544262194686810580120350166256459598204145331333689368598038029498895919576609171991481725901543232464926969670270104377317233305821067950465051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25825873541477721981437526183229449269739961658428268367169289192419821007977697527622079914831855950137360401363374708523678237822524738596585423448624126853024192710228788942632280407365211572885496411903112120440186234690860397626280378160530244476376626287482064969929366373270192159473981590596999707387316294293475792076295639777616368894291411164310811436841564969995618307825151739723272587261554578066012349072278283489349093591520595120515110924896694374510506708440819413433368143444490405156307028949125368341132905618308526752257517034608064640399798852322853017542044995400076361396474141041051059121973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23420574643825457868648452126468050624117549681689169724737779656031335110619343621647260694517167864726484529320513227001562934162720313251630097378138379981905457896119735554869630555497861118341041266517391850966041702924993735572658077929669648513124605468914557645925506542569055928591499256924256668424903149081893874252863575810010697877107203948146227579784146077733303263099800408290181257138750647216402343424257763337315320099057744106728665366404466302004707921156564610957452041200237051310670486741241526474930430720077823568678921624305752964661511549218348905993995010819197038025074287470486918483051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25046861839705989719979494059106865531440096460120051670744094360389037334965751215853988262019496886930904611048549966258013959819403907572263810556191086081359475261953481989556727804069604131793075645150494582387381055143309835404286185782082270455692502436447292603455919600589931029419504606732832062920062676225310646411271035859922875358570024368052989521002386278290149029654334442131594848540819154432842417677095165532217149187799582266374521784089078625032021812704479962560926481993376837206501601491234412678500383649589878751108501727042898778809655499035197305185547754094016566186789133090798112730049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27953713677615574909746039665381974089094878162369799411444112431641101237676482648399164418677872565528070247893442183647090998177632177371529447175199258410569060832809097988833898486888971741901447593005874902839178070480368118642794474062104931264747094711626874976467856919489386790762141298860233157621831661732185528748162034716470028482718234835670445945665429640374381488826689019528634831630006298484667630406488984537885123935978103603652336692416671411548572269266502331452742940697658833700512954942146053185024425207161183707481626761806762970791803377383641086039208488616370430097155933148842348148241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25751648324391315061779038272814868506139047048745580410834529037574336792914577758260806182676784540897643266777801437243864097143874193081368466445582690139030668514351921403425368858664127095740596554256437077899368092700025848178421808459796781278202548709258750406335215347316528804475198534124062476398708801844241194729589103795677080386123554989313569939999852620978575488702798214632455849915428241175377722570073088535607087902855018422095815674950670363213876971971014752004559963072716035553640605749604848393948430912314609345619073876063858689472880286093481323059378633888974277108464378148668008937569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23043511744894513626896296976715099120955174352834909672416565692165497582245028361970780245139536946182067049161737490118580920608707760430175097195208420306422723411324537133781273708676908696711618345318575885329719234218391453303674260597230463841009114286482983844621995772923213175044450725518122268948769937297942204711636674784202595626033854576237857084172847585788418599790137411559202036662184491109789995214174969085477452031793581458524581592690027421442776516975101949703156868383495712332797651975947204988081144312110026332148160720820078944171924812471651074232393951389012748621969236999631681716879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20183015475898746222272034617613316505604459181800031405610364324233452334878851260246832191277866811187425437139006768107321377303228853796219684658121315513414556298810799465620286248154562922806191335326210820386447916282530309292560305950934053211192952224147981017750839632665174468751021996497669126659234225880993774869294982928805508444242854507045226376290870196202380355943525424368763506553681294420039531132342638074618194446250954826233741948789744455919387321515142339350778046200174112063695812906069848166150090995124094268863491562335898362449496684213949602865816561453457149186586888807195038380031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28103646447081433161083995796636229995147954785187264388690675835978266369682336515997950486035132342869631574258924175250329956013943543375753546718335070565591734413017830314054626728085812423055113504918463583483470927374997127372081759876871778658342154892400085838814988093184965259992302110508106756718545966981999116626516922494346698533684170153576350318096685998714614129592345753697406376279284289644050856668479493164660439587417062115822646441111118624473073822853817452888539189377318237407039200151773953826793144878280273476552218127672202518908080893617539675034530375201750087331252683192480103619599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24392631252782895730225617144300533425767382611036415044477224326933478617674506653538262794073376695822786267498027094934642740383229215821309532320449194777837372958987987094826125173279513808665532950227511892409250196826634730177956840224661056368132626483376054992869731534347547018009246466168367137348125216787462978216929403738360132042804764206847241458897541423810942626688276633329281626311326714041215241487667879499005933326483332578956861627920350160217692479495409042381163621581325993551536776232129261109089451196098618645596225729764095253483250680362876492914940668384060090327515069115953674748757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24400217396777835263699030893603456176247830979637833434254611761562166583513603730942677011739576471500640829110540665312009685206526925836715409504812398843871433532072565047734731387055081661499517867665065179571708623932179161122121511200454999370101479171739181605195538930504373177664847475536017985194212215475629063368964638778831910061428400731745141433181617143640193800240159099610351588728432389121389896504333987641817784849168970438190626294615387788340033324351888785374822995925586347182630939998451541694629507128524959477080201049112635164939393468691694831509297472991981556365074283178678915408719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22774777155805774920552946306240505281571773444329392809840791864834317480451412650985199046398491902844920824625556961110731913518564219804778004097020179859111897459531825600934895797036170285616037799244214732522203339691210193779863398018523733960798685189804477165983528894463740059295756628306284425924526094867131206195460516349907583187470734089430593117896254887997748244817071272880053027910212918498315912743738883119710353417210047661769985499952510650900241950179380906065146138226556218802556299224212026867770311705026769347356604964876981119174754669508249645405171026993938431242833310649036104440801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25669979740252096811793630919824562120827075810919450610453971780720434237849533873988363266206593303767306511167287276576156667277055958571459116120289006427893430773572408921363408165521849143641365262714720641846636015560172770310730612664983556927329774161750631483617920073307470387455598914136975397318288611267972958557268433035624758640768864966435928001560336594658261491209805633638104765583053910839854539238480833071119845962836717139756214819977297799683018659799440131430295849827157205042193392889720717596893776850366734169069097739960134314736600499286809020183826465205507786764462457126482206992423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27442173323647004301785429726372401205311554782354506844248188529011824416205269376837371877216508682271785181562237988745011504982050402862281174188667858920743064583116834777861866814972546590840670557404524498860769109938523853995000722183777853023984652936312343581823188907591244614558097456435214812509170020449148705872247312364577641249556634397243726116466869764760521535414164215437257355362512456618212488758952388462558862559596524346656788400501651419226046016925646018635586838968492463150572040351651837292282073959652376247799852939236380713318098760219943091691762814595227875264088363039820976800013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25568167092617673347664640691767671995120690526042533387601141297452597488068478597839942715916946329805831198539240116679410778425020812243184472111185722491845956414695010021812993636128432010139411930699885365788549960757280061230185674068965923658652678602150651242621559720655328146890843532652276978004422699185201980978778916153009278169468199238426371716989008992549279623043224331037103231381230864323927428007537843330619453919751836750287267903691149529437595082421951931751395221251656668066297638714448039868521330267009128598936983933594940552074367292663556074285878098248577771329906564689705969877203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24897228683863174026082925150377054105060388250181553890897400477667892535451739860135643825335320125533499177550253894905297678221195282325182711475747449776420630767733453255651750666613842684638941599318053392941179635361573028131208891845833255730235913510852594982718453620154484995361770864680994959038870326825559628243718271254636734430929351569970295320528819422047174195184139161392767062965078496884223907129045657370796197329161283828725517700956660071969554201302083354789882710660645687340019392871064264345987571290577202687667980187786331252022083768272571109229677116632176717958255106597866738081931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25511075124497205465747184547363864799098414690426779052951890772559812104313522119529091761079816445500725673106756594439056694274623625267976171480441861675107804761889832061865998244340082158080487090279819068776334670941202432847421029679434267924957352366052582968260236570639696751047787377778026132281254054405219627961845709486748341187107266125363968568673230995915068108302292326780296618760434723740351183672977142886603207819191878414404809147409003555980224370669540884374976079812564536031531437788552502599874890426824304965458022152122688302180169991998120691046384420206897183865372201993486923016723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "18445840224483910499980894729773074054757218456472661726621367168688799904061465107829020681688917027556291943183382381770473730061290211590132519544879119410012219916979457047701811387554797502103564258046152479859505964821383346794443558891979034649733957147895200650109113012415083674316924124020331657648979185557620434197589995238744013608653070537477596985993634352391394011878149602433322827398170313031548673609328582028768242636246800084849121386516470433008621252677127612449285775109167692122933802612049298593614270482728486690903953070966002804869823027514943083267468334288606739069016604052606780366373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23701386948926642176457458464591723008200481163867091935571021558730613461776495504981123883655362407816071288181411398364882794411259639606019980040257496830658630472094484316084398186578774273493757675790522709244765141441729045939996830342248041764215336620362570416721251206058202046054591037121177233585151498047255880344051573896483349505505870449453703470845269645791977682375196618337268714723264222255294736661683520893453999090195350851872555508345275846805883260338937716964278573197882714648326843139957990695131459732725785697614111414982904565886271356843340090524197894157568241405091083633041428581201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20456122832225024728199658530151045135787088620181060296486707977184000425572652319035250510867622957826480677446474866301465254512630729887816488581673454945149320527070716424295323822270361144361913076682185844614538228113621570459258815229267241454836495647664624879426549915294830339158200564801059238990400405169492006507697206014171338754163756293142910081636838130829869604206132185508243073011065644410001493913718191407213295304179705033368466559941565418204284645599816316931285779014696451193924332357431812494183728883187353498362840141024834793736966594667756358695637117597256369521322131317922526415909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "31173705748411624552384897941630386572320185292571000219189038842135876875040701844581548883362653342579938574784292048142839561027239146929666671474218025957508264841541224462670312260196197151147881472727487393115179049496285324438961543328895849354845204969496452059223307251144601038503746141039592896296747186062723793436516886383406980373787338546167171048771693494755181228530217196550238771798088236671915382474587915716864521254482911281007585469898985325161525056578707935301835784138768342400410004966515689153586898102859095487491970167719579910482781715791757946137248304910854854522682557457955138295337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24303169555611126442565854414855159926604196282404637742960850305996717747875295718537744013891806027025680346573907470240239664766040551481845451789575665498658147340899103964286854348436729783850913213676392301322889040772754921947081052169873584937202472421027381781211359630370566747375760152650895595798972025511332462285410005243829240360804095057439049405856938560793522838102894223511486459110378628470795331078854103580151859887862533372046154011625351327048669947409433722258148218966200025840798318878183564690862049885121281158614327302435607836962131856445250524716375562039919879500455410395094975842609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20832777781928121193259559289702658187418093940304378681556480723461069767285132523048889626527333750416080357266663275579669044634422970830575974135406841440101003578615321468872176414340364355056473577594041704131159316052015968676343316275528391473119755278604437379475305934318399223651534444277742017651731323450097987779390966571723756091592417096867141659966803264911543253159461549071383921392716151205509145944319349431204694277669342434172767684528878019894158352000392672357652627545252559089164691372681547449265697759839638622491913798862933566585276879442921665992440006974129732143035549096612076762157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23664848655340717590082324859194820328030569890541321891187428524208992484976615443262612077913656232221002472987708317211123061276988152794427267279608605758065003667087860206738515477563376162007281862886452694018919173902829488806594194952115362182217227810840962824758073906741601453171730967970969106329302403030218838558784639458964285546220175323752401587752083672894934128887977945558476889983003870946711524433792056655924463422535139822762236472036085598158032696541743702560129835864058186687079624412147175058332413598954752155321367581020154993521559921927762574609858962636694395621034921956947479641101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29218286248244583205655951919418283760626999916285746763071235600115908846458407637819770023849565936579645305464851620957628138194160811259553238615295479266392562503580720080407766583535400807064586011087054703843032645648730658193883071407346897780430733531723656482593887439877359077134698710858809634458808512031709218179798370866480545741393895118937982362728679104044212188212810463536940042095305914610838221207498760196362191552959862931463254161304269706383516136624153965577546018092116716959420235019753079384473296491413767037050451835223821058323930859335613031927989387901091176811836450010647971176449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28583948600503514454757169398248364517992488600522294176697483033169743816635498197521883298596939246030262135868827504275547609807874815491472887727201930478136512160835146366248313775546396740303361735032130166516645428872876864377510375752846421743748968766095731593037698390288379893320576154319333183558307867553388879599614840358019586925917876547861670857683457708391818362440077349570850404141833995258645653245439365063031212774530400063599938022552027852111126088252732461289818110804542450351467918503047686769248667202680429078296138281489107988052371398171358445647135457933430006642823385867975645084167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22394129253708423591657234926750386175320525106220452127821383749195334641515927003874927070213124879799387126401625216186946988720813731428217248199708150191750858867768180020759420800209922988907987198829188084020448683791835608560157711692555437285726555045539677758619374025585923634070268134864973966475672246571551743190326411321550835651750145216395930997582399607818743872046959430122688018548711178332939081349940295345342213869988609923108952518584086785151500694561948807414743249595826249676281949441221644355518821588709491547591370539500250416675551093577161232549775866679810093863830372959700846863283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26204396278544675118137002118648659090168447591115718688272748647608115900555124622754031837216146890726801197626776641518476318257198084751059260103168941750620437291252136080838960728886896679157270005928687097579103515614329045339868676942862685346995535020871899025703228285924241812152927202962675136769240175841519290046716439758645245482800861577771834812696158304120898125104455616495143114440717905620845984070557942045335959416846336937196418320617982591929640120110321830902004400662001499471217219542651154358213661580347765135615104971125666464849369072271300545025650319394692207204553217531084500658009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23344624469228154221892588161342999445346354930242041808846440702395896060311752231415670179897177038925848402379200338850237791963656007538267460509904024374803792832793689672029042063801188748818740263331865073902891707630715110377600570526571798007525205213098608772299070683420162475256320358658543367083103479351183632258114724584110479788077119061427365687396704873494310975924287581524558721986513792967614901125656823948678993042686103611038883023387429062155603051145530873441768197349114751815053828245097022151349032238975600196708613378262803932034522785831050167231658418821408566994231924442612445878279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22353281691206008904859849005648584519862397517620314254816539778491786700573135029595524977780720706362237098861061332903260406809621417576109520489783520140967692437747794287825542902166498268282460555238343578192575114050939065063468814949698834158663994498965205390754655079090513880211956878082487660369737908728037083185986214082139221831045096201763956250687367672657988376935816354122886843693900066839436538032656793312123455793275626318569552153759136266092323561644851030053761473184033472172930667013152082081634087978566606857180007195516534282335056424558028907896897588667946170739722978012504972568607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29978562372304048501617473855929814259312874396108039046538262999190646498583691811569689286079955834016447233959998845057373831139974965574048126590210354613144851893037161614391137991184050259567173889293980117999728034817555320605183701220470867001872048044409043844588947582908777115065577397933201669990440686486995823639135477847329588013676839925123444690702412761493218686232481228779946747396092359518832999960612669050468223556907136710844293366462382750049019219632965952791867511712297623115367255807585075697158810163386515613698518950226365784975478945486185936644992311158219391968350721440388524183979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25664932074571524050546317748844539319776535062468507822714167139930642719750927656731335718309366340976858504202616346645368511977462713413326710839012870477383715022982693716165514340936306333989261582791954402835256880737954604150348951453145639564447162845976010944909843984152093632576984903251754239131162001171235331431823912528480817493337771215814246293514802414985788260026383073093426074051906808843887654123908396994549510252947779771889027657179748586167743989068051383772626600364080288040306181717439866730461182286867626561308929160949346048867939933200566929300029778948334983437667697119282310130237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24816929801228716585136414411378132378212509323625164692999304049348277004064546243631091486178783455514727430880763824588599734267582243903532874113193855422200693721789894075006930910910275046003270246023681159848596272249063631748686987229818667769247550759421407464161561450088596782846940507675308419890764918766196580026864389440239741374491100229242740242279030702017415113469086529565479617093474918842847756862157792124379906951890214248142599430207645104285911207348469306767254156896305153922568442661859845831617164517323173871919169358753052208731374150962884974504667094643452779947242610926050809148863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28168720718341884041291793686160276267041773172109460355583295993910579546048674059711825057838819833923380699092181527218408466390519955563423374742873677215550683493791825883135418613420969586302181443227963479572728338184884780386843448279946884482281521783977145884923089679239148662547000628030041322563559422939422172565185112125207386749883520830584971681666633867816439114784461540831020023675358345623438442027099787547852692689782035060838549284861009341172200323873412144024875419942083826773640519933164585149114285163067873484556700323911436248527336145634005540576186123794381710491387415693253994466697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27437782478230633165861049278568304128150975798524936381345523423921543399310193871606223185808641337527488298383002248736022430790163132044034917935901879341093746910108297785521155265818603203869957807854240170719759533352420644011610854270663322139245126770343563771573483676714742774148619870601112311528763879101850225039336302160950737109404131898155364145595842253059725722015637421993557382142697007881974250507554469568070958898840728869137781527488570393089073156978240574321671565981057307514040170639172551115725322046448791523356636501865182019787098939999002153285554167959619776520140414856858296477009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20480103354926756063127262972165798445083290948209393130858300533113518514217708219462280696675665009555738060564705077399041472962137273824483066066004595547832704879956527935049454081308295430849968538930549289271199294265238032538477430596284291195312807584700768248847982392664402475264320776813951430706583195414782141905919935569762838138124063577318667012651069790297866071124895463376840352324487344208587613361648066350819712321653124939824709913298195664517090378285707570244392620103336745355726695863307599993418190107137276699497718653226165955470766722366203161866504566726666722322423140730801926807721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25515217028248107518194975595641261732385886214305611432501315776603666754643743007188591648067533057250920142973291356961718700622520010609233152401667449092321891728792126045154282324790846285454847641565015041603634714992363087375320067446706464660550145236688612370562416472250920157627564074042937579567518945323894838942525132737773293747111428205200129837160627436180984933076789120898321373895358217374964528944860795312182039305553741007748952633314514635409559697531566429775307153175939195369970472152410352731857413851788731240328445145892103895888464134756974656870641745609220919433226589431512338199941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23790102620576813394879117652603438346381866757278630441142940001312934739459208731076365398292923319148882814971490660069745339786313612758293314284457504619923327087177890200728934691662823064530968805567228793624037945088750179287547231662437515025519292920644731586375430052186930926061368366374306386804131310376356738803214260255570040506630294851614359693166814535995816992882832801272201793113274621068817583575900128241087133963669539402988221843575177844019657216295515380149542648362566062612594567002805439824393755897582558999840462989038231988949002561854047586568668301789209715199896010486762992093879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23950102575918996952070294979232289452977652079635084992269695965143909004538791745463424531602548257773567117235525354365374904164854229244888691889886371486178450350486026858109845364631169968769034195176852970582366904104929097227504205541259345247501803531373743980136038544777852482919883903597527142669611695730143322502320454914875740171514601094508446380817259113717682232424680056472611217199563947874417297992422346186591697988827243568127003916816264872910556355687512656603086353106416560296049577473883308462062082925220102144516190502152297709678762019851195872141181364534720925867248496353072328433987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23534226138938217217381284742205871345600958839856017655292914866884505896183232114201648810746420892162292209278274942618995188658502455458426809689189833333660144992867499225461772084952640442933218311378969731466457997624395251913798406484209277763490013568901227711422652550916047693048892361523685046781431919938153894742819220259278662873132194077985066215703728875587665363290571517729188379331229118593912834447299381392766588230868183266626459755759209064504348941906047898856657910785646591714548558296155915883890378527362490484775320472146870154318332701976048046001682106662723537381304549515814746909321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24002130426851960983114880878075432537386769686559684939623540378972892102873751716919747944695450524836359673833731073406498514040034272186233107415814802683252864625693193226232999122913567796607310127018406354832626156188146106382385366259318811706862044852887963123301642019159767798884604621980490747875667723440069640291442925736903708218375476146160399562239417038670070652516177164065766869360454380021424859130367971624709720421234240406195765005104886527194748467558781493719869651157969821549776896417747580521809818676938243247342470651477333613390002059128927001285004967350526925753197275713431442459937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24112957970015841837937489813766436948802756697536722596544538909884798681317147776147567600809222521859346957988443004798703388830090982343534224770043433420976796498240394307807643008118037826010001000642378799676113287957998459541347965962761992473741976860022186874476396259826701639985688988960393971051776112258977447640414589010138470506474480584391469522758175207813473089246047312262053233752807977720308121850643104932072613590055346902274263630772797028354387896985420215459102667668467964419488714250543393962763813546600289615807994953356489992688976036646651685226523646684433140460595950461927480844131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "29064877841647353880375815781341032200173192773681862172403034537796162549409519602681768327040762253604437198904199176332304472678717118749464167448129102937044360443801655106987074512357945544325270384488934202596022649302379888082426589339420809663239676669483043044085143140437077926997426466665895762702209288398064735843816130222136257347451294851926685842917530218539503220951206805852439100816202686850587513119501780245935552787343796362726358740265198279988947548496770546997603267268013188356014309207588350319910344751652505817002953671116151313900876268842092738568496611683768977449934293838217079663227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24896465094769108490210808552766594742896569190224980838071122172993752785205414856495368210592717749076952934908994404383204474310130355017657623744849217033311219821870673462031503061395387844862808218470334623930395468810409427136886738578627013722048824238627150709479118896623200638391000043446336934400608853490503685811240040687865999203721449410340560401777388308440715723728449951100692648233417171190108840504144505915076893116723059588405883625059825875853290625632406471861072033304176417841896509860859185914347399518671631537974933335511081381984898924819673967596956135872073094696659085320528400185373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27745013727594904435443404863011181839475510854922455230414826362980892478887090745158664711785717551974037696874410699273941010121962450483862053107491847662986111316004543489224495854572511889513558818061776737755068441808818462733085369363019499689632272407800641571079629817866547036330661378641675005701089313894612724028930082116367681909659184284188566617857665563532019262953229478966416513893584691272071120077551099544648538667950336977334368930110148592445294875367604630511313918235594676359984813857687087689072789833271947471744877111872923303071615418063176400836186861988731040815748153710808794785269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23481682489434863532359362895188452016294400395609151703389923992218973811886565872033028427853378940563835254717070808906290994794729930106908506344756942788406335076753969336601360153771236428301369945904702492798213409533924799851253638104101958139634849688989689968849115163491751172616476648632651707701823141284806547547869608902448965091754418711068566860099549754487979786995416973599354756783633831365861406326340840160357171526652132550585764569152060522161132754693949441156409804524562992999935745890172684788740283129148102154523684651841248878519838039018962379450564061692014687373700627193032637841991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25686634391207075050421930660801403020044937398845791479175367392038775520662492892182680665478461490032221612629585478043992028117241529707585449528398447137578886912272706188769723152424870591849741459500855047821723918461115590117609528514225011440014846329577389710484412904094961738389016436990470113696712412383054701948713534451976240007959548040385426856947814422155130257201172355654166062775435556815200098231493094936484325945708009398379726531088265080987959395721837912615425740879640432351263899895044836471895542993224864604201553012254005862261274471932589724075398295015546408790459439049538086779827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27483987707095879564696123500575022560312043129810441720403282246525703237042992141816958374370045514782779588383327216910731381141312835056130848368444221686298774500702100536860029793856010962933085548480577981862264835071345864913789262551846675247039081316860605573191431100770465647955484813268131526590496652473285518062270053728282263259956901465168700979674132374690720680139039111471635538190394365665399080443275725529869298719992189490420631898580146191123221801243243558088492721876953063252556260315762704930847445312873868057852521850842018990355115069447370557043579062128450842311052080560713307386931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22032301172795019030054760127154016930836691520484608477137927061440984326885924087692841325546012676327652949921231355505424568339735406501461160330067443178631735995134112052665910766934845741832441730216746820163443010133726911397635615234401671814108373629184657212443241480621639417693489574530819332389699653828348561432536512189468135821980542469407081874391036132062827612270511729044323472131323479775392682244842348078589133466375458069199293870777322207867077632532391666229574242549498675868524371125704600604182744822910037287763985140666953980296805860411728551022906417541423315490762008790860251169657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28315369044385468407983727493814168457386209508816518272268178576837873941979445884707530844639634578268096435556842640758129340882129859059508699579716329031480793037616577857955363637092033561593434441655360147697852488482185543645295043500757424704203103659028372068990139777533401181837252690744303534547554698148308587053703936296492131639965579644331448859511887837398509603220647509968894099254629904695926323515303577820640086901633564744938686579161479966584083641463324208231731707685082964695958862032930171858695292059444900708422911567519072953062190380066484052175682573052118390817465254790332715356609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24734279280995185246256609664095291393974615135268652667003789188083908747425016121860807327578832996921345100255477341077798609224612451592760869852623442002177660511074669417161969791013757741483063236580382066422527345682248035702350621799254747317352717099365913155330929923334178306744112652091894600249497989490980609282509295795185487720789884436146470660435926525846781715424364380216709269658798298053242436175395946970618108134371182953061056694667216004809967097950087859650758607815229097989747137333164109755161798637010942691026189104522460847252622893745414800689263172765489720972438607796297285621491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25716843457742176274583408438169567143230862814414222107652311726316997830183013010802285976795503896080940225723036469961015227619033417544876667697978205631099549897858698112990260201990889772847450257120177797245855282220724455009460227454113504026289152839897301649320597349695449260139393817015279723051157725065602538605709107297580942228784043572731781261116569187422305667226991422709909281929801156533978772807282524386151146216244783987173357954692866837463892654682055031370505340400255562465787326349072647404873664102300719524011377249048801392101139613430832797778356139549458807269529186772381167760357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23321941307444708097839762512693271262412288268234046922054303790747877359134624681573026218404819004234178522385021588398514781548570149117324266117097342472792122095107851097685263898666328739019595243658104848251038525458991436834690785371864928885039323004281997212818064554277769868338140573028337198104446222180870166944787872370756648407076840321341119593871967956333041241111360636306028003309290322248795925149993413000628210072639714884822036255634000958916068925183101179820269248544427611001623437514605576049367911925852498293339841351436052430263470194509555610365785516289702227222421767824997408606361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24116502046048806989771653348489524868202343398451059592521620654372252306675496025870312925646256267281789606517626707464621863642238685417828013075605308985621211646866605357516512571121296295771699054026242667554939619808526635741468262828128418154245243450421048100492290850417557722383212935020180853559939164221765560384197724819260943011460190479838027262640286813405228577332191276542612383071691614638714096559224039634183329430189872858877152338463618502292112486549919985636866742304632385230152161820892031042921336610344583684075722970626909097682344824933910146563686711075985716222845456914403216089129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26075264167526821598837591630794778195654163821039181246007012668214535314066483707708217367095774971055231129711812342088556939659398334279396467959427004400549103978818849830301186634366443379590771166214340195574633220136338323531665709041259050009400789811583369503207937975869074697581053343836441588416961354132499262693633049779759832557695362103126741606211907015255471949498486802867790352440055057054517503046175348016045711754229608824924349368643260623742099046490598545613917932553974313644457846870603221642737408438237509203132754858202198327126340284230060948993563430134766361697398109271419861623221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26340770554981764208531163405665473652741884392543221098537683467885080694718664708184468829684903272738286318817603618856366985991467968836964177092709115955934198461378372207411168626764908868655318218680507635123704609817685411760033891166879692135400540479756373100348182006132437524463079595193579835458769352757361377055747530772927043580460357906031334714653376127589529867339796424721997429025791055876149664300849378410227685430393736074466768790329545269857800998902219520048126395603692454824899181020272909733763793548303405724749520830416741473980223020195349340309428776780767782955370667627690536798839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28211296897259547190378503904287952528126304118546321139973806590577224358922662424065378817093274658033742405220558408894022340924352913612362345376710777352537215154919377976819987459733941789305489650177380027330448330936362348569037052533918376584578108158975732069909001901083427641253363623342122063240145614866224394125259137042217062127501525212585655578764431395848878617800824967866756680837013354939485337848128822620301917685357152939889660938081427646510026629792403592414078726780860617061718437151572137416661114888590863504504782700505375378291223906066530598782223070764917393238392636074705658225417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24231461101601091219228950816506268681012709117169008545149275070097414090060591825475545972618774630278237668043685244865689391787894338582491183809514919739551092002610309346387819144833550194971589168579240577972740986321199898291731173714433738303056785226754133004961840533685603229337045915233336733752990737146669045601303532823455506785246907399279607980446587556677069759421742969460920267334885495638669964085365613418868531757667736242578403998066878351281286007467590946086203097562505191885007576262826110425118375478927879857861009560810796504289475759875671832830426598659822327628846827158263207679729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28927667566432768166038996189609926739211751292576952551017243709838055032328830851749288896211813457323790126891604822602817131159668107716703308738262401599155463289958932360330863572764070205073962091664382888345833299474986798027709536877497798624816014542913071639703300824822957051882309566609187115756828749164507593133532061432949937134750272867297873676592938404638019800646821558237249760295245005354205562568920264140045576389568878927740799584417237242649032678040701763700201328672475344958621433788825485420193864914702564303149538194576618307062117505879351111059532913193687622009560676443606049407099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28716241665386588178858958351969749472327076367052926742873514823826387981911736901827349542743842954163060582093279637022780273933981641946283371447112118226440808791692875282605475611144700110987923011050237814991349069688801804457210141405634500828236906297024147386863253859137707398797615774821917567077075880952196862698768932868513319852138910290566856899979625667094165990134468266918060283451409249048711075964794910992915785652352907995104029020703192714550204272471776899973153246953763199953715934297437323717384381312252175476513931787456569639777866804927157512525168920202767703023236561448696447418897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22722846723606065903772802921429721944565782308140359696967357729348489737119937474292257307303281612313842481804171016386118928882001722986458921113686108255102555788963206021783694305243951001263885074631177009202464817471659851154092648557645874116361129964502176346742024648627258392697350975462329632351444552847895094484677879729957393183650407149618439030622619865093628310538020728384663729715519831905682881496874037734298915452920320544088443023931052154120985990299920909550740529556614085481080491219065826439861511087063087393694467442984187306923211110162045792190050230827559247243378489874061929245861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22609137747682906937217011976750613767841262738624105564511729478172905912241106122403079036537058707924235062023331444168592775026962262741354235701981448080569624281587787580263309231859168572154396684011868889170888560297660317295488493136886369160087810952717056836244922141173077133744189158638114076050932958590573053301256696566138686688866322563704253849248448620130104017943543912469526756127421603058519214223452309652980846177293721113424304490359088496470524320329269550205805673175029155839406890471710507869106162738490627412544123061180902169275039414663361380674710998600645800918010739260440352052711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26182220279889157167123492276833498833672560816068774513749557143238340289557302194014955561203593690327553059303500873234606136671070084255241378726972547821791027754911808593594288797324554458508427272586247957780659226734518472879613163243067452724217431115980648770025631593806562387438363474283633202168152649390085890471458679092028425730191005819933268796846927478027840291530076196255283982059533995213732922250176465698947759847311899247022338887997549234869497235397958436141307166987459609072107865612244241760500991174074107603840485470635956260664000091387619678964227399710783442781168299112236410387721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25888095236543637268273837478830085793565101472012992541299189237110651834337956735047515548041848519871356646745288546370284089620011620735506754510231384239492975223014996625320136726086192475542789949403728544408101726883204125525642544987212343314780944976437006440469407823802745844841295327936448050979671070952903421747636044389223312334286544228063194746787792123959481572578326177709726353236810499999248637832543510556376720440944468758819576941280091270158385669014572710556626053496538510481544925964943221760912838268987966630424793641331926401620665701134158308206227558243284733397209994370772052189107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20110101211784773302897799252340793200207626675230699312534183011956353292105993291147170831391891197222944156893144881640126669997563365208576680050802576235684152754079479774022276622349019965394583033604664725545116313753182697590736276196800795787254701722092949449374652826708644902274395536176508435824845014965506609490823610280846970031063307909901275646388103113735943088956486274971693155653224388579339940243267161778117431988604163624297859586303730326306422387452244350193645509216368509120998531198922743942620452241609353070631077956040642978262555756528419594832738109279927017264814201063273255850829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25273724989495919907228046215929894318103415978553192655069841494536028581189060389836821663052565460930629348115558687828769305418421866104064121229901254302603358195992822582858896084981420119069636283416348475242294133540343818019467895002902613919588298943954656124621451603031952455124453914862469487489808136770295216005760502799983029050421520945355845646399442056036667065630013623709177506036716275163769312291004421933470198769943680210975186364576527796527883314656292129243171626788973645486138664615885998332693503066003295853135563168729710672602527096193083327369016119274216014948056711188235822787893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25134213809743743142423571150704456996678189170341996591755960644900117934270953119496116576183686315640710156180664634336264576768063817714984254976333218971298889751938741194541218311589527629596054145633118623867373613401196518403053414649676595120315445930134843199498626568002507570102843134532619450066168876239290607644731796335556777380247949067085675136148834064989639394214586638558091630920442187719136337684788448383455531816181006909477036611229425512195278988120226985986902111127787418083608805913798974188395024306532528027281226809265940147034662698044232947338037349536800037850243724641649167294187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24201635607247117275319033277534456426913995246159026143754737347102302887388472236874624532526057727442709233013660458160009996194133465632379053376088437230179747488062783438837511154580506810648621009199858582363868699852715663186971219988609440935044591151183787295919761970276256800813700081284783248366848501381667714816174704524407672982021394518587611297587557431187275721153072900528778956508280010673983747343936907748781267075027266906759474825797416623491489992065763711597213689625538543865438093161870059729643600035931046544560602328030927920714870556013781991329322317558552873876287334384287928940557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25265132035326005085000880954915076165810851222213930109504102282315134681992269974693670984997550436376954643477821153669840436471624550308376186538815162066414973388703893532922636815412593150343297297870865730458654703537118616328817509390353269171315220212494473371560438473244457012630947731949097505004608118213043765538966788470375875376857864460671673311707416643350783833755466407336132514224317777828038214794604575612299301186833795517955050718799995743673195405489094797345252359195958311513423971530567769674834457974769474684058041385913785358394821198867936047353594472466757640066342337172641647840499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27551469106088426543599437863344895785527570708416253548170942305391378333897866201389640259404159935332717562882846096814735656430657118542224679170032837347022920198663225397556947950515848650788192173427797931935278694678304207019787240563455788359758592302753051152995010858808954807115271848629463832846547704573375732705866050783143555051875368350999205798089810309229208983191163627534536833706981333075710353468404796122164768790456246259997035582970252927969195750175019082074376213709181345786936024306836159221010872473822820893326778901862928466994934124382717878233357628982500999644892991020489945248179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25558718242379057100991524753039884030041497817233419487998540863424499840391994593319794701360108994759735584091055470930685927494405936401060019728838453168243590066336975283991624151338602164380071124305905338454550293414426752376924542801512214331469249744490048001886778254592764743322167552873485606829847724272757978464727510459486008633466592424492568351879552938964102305656303774126041793482890765031408495362360975679350097484777338404289753838468899299332203667887714834418330227804667520114342252031845868073658605623298452381428143736195208964737503375233495258246011199998991673122455394916197470310797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26015008832518132577246814913187962669964504438050192186897366092559182810044877916429732715742932807875328472418764563793974837798389742517601267525531065023266471072736675047680998177480906699391480975715426721269109583676438556290087526868908993653667189330719740526296000849029834831580710013377966773718983102417471684653654204193041869161958111773076516819983371621656864982551205563905691074054923264986503976038297780409151208329063308464926088179912684695821844617222601262807377776037372518904965720282189191744565655310606172471602233742349250276440248641585953175814992704148483414721456816711274303174469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20695576199010048195250920168099551024170511389910288456318099919290870339500055561006434093455654722752482562161208844701547462617667540844926173612565826353253651723749801637379802665253058451302760262430267361452566338805984639789678281375013988993509464036204572232277894227772196536186837050140403755358103681633926739055909203631520183019501223757783111265477260343838976874729378496388410239979143101144597964132887263779819977520651135142295431094409676523141316476303657660038936286258965105424108880103052256348617141098913734194601235197522915517171616957740802503723561370782845837872967957279696720389257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20987517090104963549375109806074702230574409484812851932368203625737521389477200391635921319355957312852409465885704641027600258960629002560549139793003108953193604723282891326587380819697339985745371483412299024911191448521955273358546915910873161840738314119629346496572026231097040843957488931856378409807383957577390865557026260158411775676583980043971589179131717846194039996123415108109328405133455473279646461688333842367783301522195302476801602147177115420103104171458618776716413149945553053362088268916998714783321370052869254169468407136181082371591913134446624961513262007441678786079674176365068790531489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22525637086667801265296454359544101209632848220628318461697721997478388405868367613140918198547818501605236613972768259150824922039113139343855602866216872674395298685189765777264554043842130411216909274475400672301622031143863279347438451329570603884485134820493517970568929773028774213331738318033282781874009515705438921924714796260537006085278198375988874020500682477258551518346545802635035542199096376186582959326047223834026345027736341299011702607498174866919082540074259134044263089578130556304874703391797711634273260082547627325101708751474481343182014990366153380566526221987531738662048178719064889589229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27177334577645490902391006474173917364090402443753791856756791742032123097346933973888497342226276208352908183125417560209916240944397871705128911798057734265928596328842215550516581127223666966088986771682440217895547293839052314363037666153103360448122912914885584409307906323952668350492199742758905210827769335394826651760839380878721363397783125877948877623578369366414764211651003429201915137213955060030253544542923678197742869397392353973416056403569887192090460646428261236003993763574462805236497357490115741076811884049566399675360270032049178164117609826623322719696630176014239957695609480702913154576231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24597773810375064230048426532339924431431427244491234959270647778377504359648298718000003245677025968375258603760746537513173098085070541393490794786172590085114287519085788506304466144266767507047927288257256751944851489735204105045830813281379315336913553103739883604372799975066902034948408397127411581521978400867581147397751126219687530431605668807518268133942642164237214779452895643099215559082189492226793656887630162949515292993191554066551577792822868286135288075516605215860189796393503027115853534566692146154463755436059163983829256914472736927658996793640820045234628571574798427520794238828063974281263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24947342250318660794484767842256137381734401064094432218033065264479467513285089282794333395778328387560295042435786034149940088288482068447983190573091293499861998404176494046404429648855079373207909801260959894969789966731698248858895597282742308500199772148900677560570637317522296650036091220312467610128477974192635152529467938490907399576926614547850505659480644347419991001532484642279172346653447933659321667637242983535489475596964429730979568459740165060463021391587016726984965261210414562780405735302418957046607817089580719539042186736856306390786115447955972119974444665674176250338641799937253524972639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28414330986238557726908926644458301663612689341969190990561729747159467346416376254884708132628220978894175996955875060474273509279524718437548352578757896385536857152513111648345581535655049015081927571261949652298121577654404525662560558274588802624083291590497960033641377045695010532323545388295093484238991517290297651795574173619107132842266482483641761195469528975571471478229594419872661980716559372757186925288176121004286868706488538480808373524507086290898025596545659649743453995843144585400814035067180833160770400525840903413007029479180846648785255242041120751217724105925509129053798492874919849665547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30440298031279714721371076622607759390223065191313236601673834816311703006523994413008552264287432489505451897212871206667618894918311546200095331068016513634905569335305389393708744367313100073530864597349160037849325784523349427805287829469025918976612202904759052933723247233906172620604566416137077621530367348464232728200654733758150466031047547789052163549858093647408906410617690259861516438475170886187271503421211517794722696696649334404226688942637021775331710363021962202815536196506863437039244424176648897420200553961160676913398491210181420775612472338086118842136739009661921647090491128819554992894587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27590067148511727290422468768665378220813583217886672897485858196659814831931148979640786540682722424722403153255489552270462461872279774202056339132831802064197463719470015299256379705944937136375828478493994352070694879389012364549043556898484811560886054363099737225457235623803049595510760674825711151156464389445112022253086270918179598516784485357139203160146028356459357139575266467241690916715649889265658157378269545641567736371584762002992224234876647943423773791300812122208801509937697809592431810269541440389330666397235086165820990371202828680527962590091278038303019101629803731276150930368774035905543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23903883971540923353236044507752148740299906844827002745469611486908124364181430014756424802300807226534410296878047134093122901874894632913940614521239706216625006062283690677184300524109388418207106404054291812925090484198610667708686416142035643350210338738138899822877444948181111834355863635208820597603505713320077944514505720845489594467973880266239395348663776887907583715643515394311630775698296467442180592899069992230727837249990154957383691589633286634023490882229631905482458940903292236148268477358752172418336166650147662712213827405238611146616057176924381102974831046113548560015958794340721219710331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24829240395810504351025799807089725045015599593896296495389080261557539688934246014021940080278096806929765151342490214562012840253036467843689058467796133645430203969503658479340615944351827856221995851531035881789285433437417534837883338750641979253258086953575961916495443495269277630995944915115742212003675464768384085220751956523387919927256324869981070669722495347109683186899029557564651374961106923504045331231748118469634221816952623983796995233324468164585699969596377783985194178555756422340803501771519040837220774849688884893533955997140707478578002420881975002918144918197001731469241797853236584482333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "20760010071983347849969747055230817155597350321491909688599593947606247398472257113617860929966464676874532670058005640128199528424405413088962820758780221243135209996003159253198062817928243227782927847154859216598443899841764142628702181190806312973919047836047688877052309397558485370675850915429888264847676023990945811069149246258103233996614333965421596040656110392293947320166647203909517983347064204661355324560046142353571143947248094998311136001566358096301301778801389894237654979789705511309087314937474824490858834310848888275222857327642828752811167718749793361144738519628647921179902460351803502805601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28095763885416569306429966275633613314650989757682634315423439095375981753236992909878934968876049256252169655152136308660781749721600030945315839014078409737922805412972863786774241330631841653954986602922036243896169875787604028746630598281673093698648132790332554469840362322936113463592858425855644347594563136469833640896382693180903137346344108258398598796320394923431679222412846645557091664353804102471462909837290422427041329517297097914466632490478546903015100049311167633935888652205393535167589670278364194603945593027080372772612964435765141393008007229143494463339835913559289403210296249686398954175071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24724150803234845562977894099802630327052021805862586642517936145698452259862768886836579342932403718601162264935115543808459029673075451024227890809739863083593162752087675817986557525550269095514918488484676414359476588687734231901307002772730613427790124211498367079008318889857458361458459563122007949454812161328285980392182774462261302455763590622356907250647855772564956224118115674110941890743445031959242364552126289374907819256990277691434371093537277246056985763169068234118582092904885751884969820828637845116300046234279250835732285902695377541918093751628021108946070611506766556614446087454121598290409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24977690736988061073063034007826097963563063754961433965675308388122779596826859135839106281682187664219549170113909208346530510856713697143344394843751343571575421222002555885739465126332494541239444581950781550718939174378469009052579675974677965397547030486242387820031481499914060896537605864457777510815237466778838228515874963789276446175324983504268944401486680689852320441361176883215432910890624514281273530535513462475791521044718849210450321633529546266342496092057939167004591583234952089716843522203253064757469647812520331561271998602158618673728526039512443435702305280070124708145476307372307160469407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24243786568660034059038953667646047688140204014370328274188012812668964352082691518597870854715118261907765749565585074167631493769148618568095458239176348713368703042165290097976848207325001803980533442898190925187384545866907325449914171042044662687313364746501068088804956166071182000362224941544900291032210447784170442570376663961138978110448867414814384124531048145901620379247406611167628814871322871717894454518029292437063301812932008162658894980602097285806085088028473725590827154491347622997966492710677713307213267419570331198692632548070737617046005715224348725287217073335362425198279651757820702689457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24870598108211182788629992665980315214058826639061413485945330713774163180209573068795444045398187669294861934204097840046873524995039345686924784045367673897095629575341710859121608215358225058272124609184387446565620770941580478972738901247930291779256412272582420293522342982321316106698232456364630788092849652768379386952964992457355104112434865732314142072072684285860403250670276292803537252414888105864384523394528789318307877589168524866374005240106436314579329273703194248894079509447297320471309207774001057378670326717332437376606146610592662366330546884428895615230850494153456383194540063188986863169243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30236569658123713861614551628692981433592166690448644279480033799727921615734879132447282809420742572250371298168695489464029179979232832017041003434620110961236678143195805380178759349481864492320334208607644098470132222117697919588018256116444839163596586153029423346491198733765890858303154068246728340412892770892010967342544858235122683113554372825110010103206044424858153309022565428611885657265542146793169465820373417723125789658698175447698759168380579504697401793755441493832847360006839512572867964980208659359367755556891120113088056141658243392354641750993310830261317642411999409266229912867151316959237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23703733323281117590611108751663894757637132010282322227623033071809327134168995881783527663191790962957658560658615654673220453492317249536244532748571098462956173782558808843484775750161206861094960017040181674672889587052070986338941271379870491162170853922383596847769784926075304336490103689986325773852779630071695218728805344417119623737577002779031961406045824103477649103163762952056992005653064421289180851672071584281720340688300146933936353838372640401904466028100048567399241224916473543086908496487480925350758375094844892062525811032809754458040213482701146940773114683736533529535675598600405198659877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24463749995905680447091571973798663901788651736610954737188372994739056505483504462780373764138774334323260837045308900477905753839514734005476271377767263823747796070362885446193225468802464889165822746177554513721411452402154928750561915009997508677170541231413998993598957610551586178904620589171322171816251053664456614955034426828334690810448956844210950695531002109854604994924421786250643855902915091281364363701981942571179565293371439974589265405802311203011800052515444980267189255474225467799512337414466095768775422389538044224839297469464572774358925016344977617551450163858389787024451819580072752625209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "28271844928915738925135409434091380336141708108164323101700727230814906923912436678178109061477657645701305822064688947157509981284753127695221031299019550309517050436310877116077600836498146580326543954292268141312656566507248879927813815629076802829595511764839839356652524054459892220320979726087511371394686523254868199743838113180040101982528031756207512420442075244490232953001127034065545314028576947042064446790434634933460973192373238086123509763573071324725892847630459445108668887506184369386833229496264222751274345190504237229369692111554841810477958853710061184137571130514495739951159486180425482580721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24378810667678040054382869871421382254979802083503216620111333707117431986202909326703082410860181860279885016093691863141585174313156072650504031479266463613663399730743447834739858132016016610104613019602315272824934951242398937079489496776097952952079857865964164720445627684978881720071779134039288351655128628071648760748817976172972592925147865157251085240755636356915271019964912045085164745492552735520254055766500068742681689777794153360821613376848920341257659733698827108080013005618043261510944736091717808265522572566233093096757606220988652254687232694000123927916913343123941978881118814180936827621221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22296942206497129410419757493267607075358666169698866270291227449974336150299474435859467356650557918460553455500387519234503333011091144320618020159628256622731654669305313242103246878243515357354347970679748201033527245753799225023934266214358011514909990036808180066018328730425263249467706572592662418532497564526333321844532812589481060614807185485511263369409263090363942383235792006226732940964389662546902991882745981290471167131530471591804695559120273348305137962618236626684798115793510661195738716640782094698913366883897986611548503903962602467867555819226227886899599818338413802972062415438735547365997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23357518008998940588653132058373984127148744511285980258565044294136656464956365995949405456182623678996997385366804799417706927717804414199981404514928528548900899290407355031861804881997271794082655074141591457149867997414586065470190940344769738411039154390628258727448994838435087154622127890420029561367195518893832861722230902357164425796834032517005714481086410072268494153144930519481192527900166411113662476669425958511950109934112910364658575880589160850091123349382415916792598526796496213306314000212839650681548067868936409380663529293730578625899885557231437698967977077913738251513242637494194756687003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27639666015330469968074731068692570514452192059073611981660518814181761987160636561059338443773645694958665179862281947905687880918293731697262020485645956623095448405029416425762391504074942994131761352559668860674107298080127956207419676716345395738334830097344269194937374138139537358191591118195051525275396527218053138130946547361440334127787908605172394448480773173654612290902690831836510148482794379819233993842862807707303557808357815718337549048404529199306774823435218398391374726069753793179147393194261947559092994268564373756307235586017413347084879874886565240318637262482165670703266533031859273684837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25926983301935143350535470050485890924211928259388021762306298320551420568904796324831403781703538507039897953236271062227933591703500818381685377298938790354297171086902713499898939347337120749470375642289591711106924017903269387184753449757255695780484853909214079394620589677622386380813071497866472128068726623797829019634415386559925253925755213410825411248659618430786504361317940986827815501269099449414263068542556629493819955667685737242078696063170909745668691112008607961839864277742011849358427761058228430584940306574623926712476336302643658645899860233417344192226431250854244305183318339266927994382939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24591282226976325726375089824792640219638597762867375769701001105619579246268734749483349142949471427823257502170602187148292927502352846177885493918331340745349108168579452813751089125643364736954641864715214642104793867615371379721257727874257612431115773690135314736142635192699594459943232387073562301663152797312506858008046932009918615710009780322225556575047467851462693698517165889950779007956505277342802377579528234910523505565006893964247408783417386870500167022765651202420700111491852859627753621412462068223665612679126415716806579511416559701145157588062078037581893482129790068630001954667619560738003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22004378208528070061886391765208439824803473090011125005126821579745616140267360687103676788147662797867248476969321488103948693016370173422890960038853001931516254075614640139028690632791752824200089398313800861794994367656759418916445492507444864155963632992097710052917978805247006801439473768225450660548685782617927137436554551113977812043634118855367439676154670688495494487384126837442643596062824677723649730065527833388308493184830323276571473159826579367809513878799192522469830583536377655892483938542115055756210398138122960982890220515805528270549480683999034736345406430281021878920455440746545485009541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22179161532948492860776098412056637228808379881331109374917831996906424400516418875718916321593187215404696539700089345004442854576839801211505710979203988530757092850613978228573003500530160062355033071978199949743145101861791179132769694928048568277105495935455014689946299696866434756439375761647372936591737166011935348897819955396681399015169994182769337618025473243850598639605492575140609441597195825700907957734027948788174493805253006363837445246117941800180478643653859348457466812152278597955595239811249643823662677823038249911331511814956299881889490663557084212696760251173565108800091093632634385820483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26801184368685759118860217786810476917479412114382865192941834853145802780378890249380420197187099263354966902531748950735718535787454307335438337664382421502979001429063712023229821601962531518672170826860760109982103236099730941195674946641109091512678857242443860149558179483356050547128890902133898023264631067320218002563360651198907290910489569509975171464869885565246556372826123485207634488759121648666326444838210200019054550726919704323216010089369410862152674717095923309398526839466715209982340676782243257528136713431246165323805100302851751433848821522750059954522573163043447140175437715906513714812649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26159043340054696092391410187623055976817207544087244686134714772694660817096523886434084729640402585326458048175142840779155577036336184619737219146710997442365367696031394778973619806546124897676056412070416783762582822585855348085442812792554922623249946563658948061302650972033683760444379833871024213061281510528347451952485554956380890350315033331098479485510782394016916442709330727790658711951936522890055035485225626202955529697453874359797581868084890263106563592012138842709906245919253386175222703764080476804171888888143287553573532285180060331054674648856008296895428152146647482806301214736049202952913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25154039976309957375145342362126784719392008903610735617805257968866871837190828353418917856107758289934044972343806404645992146606645715144252383037295679390856003810029330744553870949574015791278989555336975242841386823535431810566305035204643564431694986448672722380475249432540145550124735503659044053230590552687511742958877659442441677027768516588001666733887971001548287815067422871773300994505608397647237311922909827336005097839705620138495441309300828567471684978279758490697717802261755260632902456412236670565232749051212854157465513116968174021883554937614950368391243071879764594853384159111560266885651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "25404049317009192135564709560620589180057182442311107171230027385571279713400213741820300639673887744316404752052780938543018827891973822694347395431154283954959320705467359495977997757838554135096578705149075706816844954501522148196146718133773949353756855699109848673643192976153056437764208750351892065787165124400429791578474029958875677612787600522265576714547555761850874092155835353022262638519024586829858529496802431343815599302795004761534935973722356117040830526327744676103614445324751268728574593062502517309856740741538164640617199095134674418393195178059313008620265691456096721711235081256459999383953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21895475071151552708554903913004731282333359415546735015992047286872008822458651048651997608737098090607010959372885274848654096399927165592489828419267823680338668993349795822558870104878003312978529329565100300940568594575667386049044120589118892710430245320338474435738092492107703475909093170290375202334239010495096844043310006252736184460795618039961559357301088249481954115260691434135087079618237381304193350428386255639959023666828243653722677526325657745199440223360787083024381336232255405638502553049206194322537667028555238038709391667604278479305376366873384882930101032192762722878739356209635153615309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "27929507161173912778529409207955445601344481657727483036828324993656290842824839502422460030423197096538233410801082620369975656258446851900770518708519468139049284226420813370048030166449127444927838735481125015193420007323452584620417408240476333055825180741259888719363505225638536358826838180156546457657248727112773461583990085039269042319176193554769566438885635692847651213339949117678935870520008814503279328207515759865382068400511782797490758924571063913653725236156718180289065459812784581092885805661211387765721331913005642306840539960102111800539204844681004700287007383915828535008768113191376381712891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "26948796618689222957311290332297096441471900517055743254782566208345632168143383951192262260853515591334419309796041234250611611276752615985965766240283492554685111411389532583313546308966091674899394912344124584596585805019655278938441157598318055975906821832635634606799144229915020630811539065309863281374874659754768930168243699066887842474354720386097665978893615008979313975366662427050686114807206648566371957054656348466182859255679055076546796215152324981641170475020687011595296463703730095567355725664458185784400530604094999894095013009270522858722325825060308414135778646221638927268198394820050761427351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "30679478850506775051470662379013204625411034426733491480553071255526373962007477464135768157298686326050419614459853149352236702214740059670915563426660172783749424529214619563306100312257937188087359854587536781719662242896907538481481061617422351902601651334759922523576054160942218644375666193549920856714774805681632262239180891384936641471163764237701592825516746367346934243789383489690728112615142192810273749471326550562519410446031294104227330574810634670513857740960993643194417112174858726550590312052030723113299900411628013652753279379527281457551243228315093223958877189888810310811277430639061612265029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23729233644102452551067142152984263767198964508687744799381230100476301565978640926410015447642022523511236298144245074799665017229758641456639091793444047968277751770230072349726942494794398246985283926296764721157835273066059196991803803887612904266295746576708793958766136272724500649979010375827184714983923559082168721412379644150167775372632798339432167582984127891206932110439616049503652797808273150031891379473911139142957757070739970876513972293507001718596998559267474263311277059682565570129045727202929200606510466404189360191222862500444822414021687425899984523698333292241901168178440346295269767345583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23412337660726097097553985947295714871604831412097621230973816175247457063249891653863816319757167165236758705743699475220333421856183220953453727171490745266842372708377676239628591968805792058890773708093809576284729625238621088526724423876922190016618192088357677574597934655848404804991848043026737391074611521353916373371073920718272225228173257462751587808930683559295438038192755651070994398552780828019141766335086879183298984084118076972645357698926824324335403976070520875891734836281841702235348037056885704734603440954599376225571381843077376593097556244020418701870675397793124285383308948689530352917849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21893842062410965636847880632709951285209103479696583963673232079716488537166059643891015844844038375259364623847134664720162799277269681367292667382363094728825010206507986123169746399892733696169067790299376170361621689279034959918024754881978464378819709012515553346539541024205874170084956501190600273744384205560556001953371591725893913403468235052247774665939871119549249688693438263265737091857254444143756471102162812555768069964715309641816735265561097812071293265906446256894201661261630672111767026788651005414652424034983003592518439987980081025060018096404314939866514076363342305232894683342627814795723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24937505291321728497835557801571385271328470318466529122589137680437135469178306599237299151494212666973161115512208348261027829713297831026704020563777392461848643155019258611302582085847032555754868559190035733937879258682725577194501031335282575630294089719483310003346809457635747227799655125303649885380143319737347665997625607883182147048801808380521339705229966608256513366449684164292772301957119645938554374628110229982963968021949023353274591608405988433731431096032158561827157465569314569339551790414419743998940578214451737669995151711028078976815298320396996067470679482836471105779244819488435222929597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "21966022570998082899506930574694252659164997041732187624813267184196778552029973016000193630758725351162827242481512651438911831830513641935786702049258773583577991538226290467239074431305436018709248428124364830617585836026221978119196919721548134681191455737831037409328201667501150408528264825749214160726937205712919499297840593528702448165497121363221387125706185555319040000419086668273445965288007187030299911107087295285873383658312815619114980995759755501019431895372473223860727337189310682388704310297452767645054436504166630938148618528764718891222434429619867822869515515319546352228933216592467546766057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "23223798767478063976678116846721421233158665573075210176293756018188174651913036829277529044599068906608056872682123509571574275217467181886852077981353845711188065266060579823332142613505608744906068541853545811897645617712035006935646427161500286801271689069193416608904117731899060892773703991827520673899331211098966062333791117289050256397465043642458806961164838230219162558717323415451477174662102657116123586900323676475794199678589501199178610109711225027884870659476586067446048250947253076328140150373752536186189620373302097177781190716573410272458504986449372068636275846820286028548926357801100352713607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24617128296070597672367190116298191279915343069599512508741695576148381963728970845353580424154341380939203636141499866730770071483985113965637558638937448334419179690985413289793981910398039158850013434818468435203842631451419913556291236449143477386966850210967509501816927018299942344913623931221022114936267733422141636329043359373898725861150861336182550902893960918156504890749357895855965421743512546184303009762837588600783093521867414191616319463958204646178626308212631149184910639282153479649093325481888331807374231478500794719780661075569674026015628039019980845700736457633730854347041376907219110590613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21937296848790661902929138319292366503883686568415663195129783924127472258134499400077475392534158889863990230662048991396183087091243279261156877729481068519602371338540916545906442650136315909046635048800644741975455470611957039030843662190266989111337983340035204442458318674302744045671888311721562405898468513041004707551965661564310595292887977131382621537784119859186773511444501728818312737296121879310934463046482595685899502914672334352847299750219366290649019729758939778928316720487294668919268714825978539893165307164547204094835320755474358274065775995434785345939751984826682726063716114570857469626331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24451070621136108735898173188947618254504553778219452766309676041270176452188947688837896495556888294314671848852627140311192401243647169004709095056219105096372962189566952928863145821963538483780191052285036571849568858486009709201883575096567333989640176748078442074216614399676582052320561067929429470775413623490986591458827360518448280589353458065376614830009135059425251937219624693521800138185178796996235357977771453209806973332537720511403711551830096765883552431038590238305175239597910713033288646397536791258809336126542543625175771436805987993004673870636873405801327514929931869448125497806529290370649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "22470901457112350375654014851694461692229927202856476660561361158860199472182287731300437985913009582172115592299961196985829346735696278610779817485088286742209952090443316669376121017293606911982202332552289957547299760575914406441323071912937299140046629316892865780342457282600877503925157496772260880642342402368832196113601665832865673863146378163200818472498447680636925240392344448374567342701229089068373845709376213584714301867295724550121655847043360415736622272890036976418057708955777095041626990792009042294295638497020190739041025309644109133138366816798571907883345330933018562393422743714281602417243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = gb, O = UKKPA, CN = Country Signing Authority", + "modulus": "24013656018521132579456364909657932036886305795978743039664247960508988705727121548868041044779080216845103244808774424306279938185597056537811382315651293587214666103752033681530566541391054671380274026162931190507775558701336387673972880549081734775620544904450930381939370653466296788075644437803645057933805274229361005170647904333570050049299618906459446160400705349813787410642616589742929495615694971523616409862453733048462305780745031288987475380405203950037286369321990492775778560135230365560318872530862987974331811055963629881758113241197163830000250797955942330734624640015565938885659387721585569264491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "18505945082102090344682450539826332472968274087967986824779449673700168238486225916590880882288500496301766539753477447414164768382897050275647956815051030196778484799041837207023794234221127976474254109147511223954040783661235210448143690993057431099085457322100073734373102845963607542791441437763799737651836689957543829039714592441636522700377900331048867446934365518518923873896942348022394967185474722063768666282573010785590742141535457668645799233061146633330029553715834783190860909709376012294483894604201384575033908199505698183110008084181297875735091234032719764263279599807115938113921432595867053083171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "19518063685715455314258026431968011877290038100587552318475748022832195311506832516078884887466366075560013359816953292704141471093321012074970691923825835013915941880151473863471401375704603445277452226048521061531435777478397182516206061168211127411541738271156783199014378139058294873542979281095504895348103248872981176375283458246943527690298900205427798569237186674234662700298023519935423626246699779869171148003486800405065416841827710962010878424649400257675399052768547625931887081667648374894560022678732808621422944820844735274514720350478018332804788038286402391631541201404628552728641571339496486736671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "23487741802841235944458182729812258740548184365865275382503451262392948194543500597836839144753830082992609145298763455709721286946965762441381261842241232255243008072752488534722005495801177118029791446252082033542778457283626988923353607720579001301643781643030930110377553213875883655555405378271442804585492673449445583778143495344036105004191716155286317567974467643531942597397812709605991871386777995710080431846228635521808634717725307847286933751557296912687986062229480238770099863349986556202397908997722035147053598081218220521720646281494471300627915102066162614132496114907464604683606307423052411167241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "25929550719595844708385731006786869795696248183356350467809160086564931913774921686656662618528742941775331608885239042528933626635360595049054321705738395882342394769729019201411138952384174623727947194899308246082929697628071966264013237613151990795697737255660384909162110564162400985139396183347918000540671703150330784761970224809972200499214206883117585556688425014650599263694675604962053992969446423944303655878874094155956895459865021774384507447463139706247636173183041003703811403588722791349931064759267816694459889825652024532368177358516806451310876860548712776682046582127385781917699102227661424079633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "21675276147866742068366895799888340754910249030725451953368439040099672884389206656198160954906260506125618534921194283910894719391548404804189294299915148818915888531118742264888513007455261035877752742109910158105371915739987179833597176375487428939184973993742644453999586594462582232510127995986679558814028671918695137897915430272695646080053069569670819183577961524369117607545704435908030184652064097137986654187931242215863335123466960533764063279772144453604317735819243950856364694038531915651908717641093521941273342296717880984854577836403237870988902577888226186357736468333870022706774617184779872614517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "20459837239231905537161578050962208998752877106246264912003622295498780042807035300178022226282684432560437029734194765219515010161662513308313228399492350409285304229316119311938696072953016427320140463090693209874001925680449366722251297115259184444432963522836314468573866315556242717856190639782323724403442583891475391309896751792070365028293462573495088376707735285266136569244706159345350081701756696831628514255148229743627156268816918379495545118370359106134142367946889566381164700263528189921068211554765132621999279075436924063701720477269848854559479904918430064778946829841435155720842477621808632693661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "30631137733247073440252768902728521900384265590032573025610502944131606192839305811471782082998992642061458841072550828874844491163925539473851377003418438977732384764602200986308487256030291135585706744975902540228757962172096621349906008230923199106342022020471523096050118323824347982625747478493562153982636748450639770915577553869891002129911299269656196248502653966149920753830244046028217609069887013714232162428631562541724539429541353083695410838973760558266214381263145991174866580199542614004448134245705148392169378668698656885089530890412826653825874491116442675021698382587531706707352528162774845890719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "20362235871699598118563434557217815530004000754598408445812260624437313494722442082358580878900893735581652954641478921259121638008240828577865413663386622635860082914943744103149023372851519816733022435275383636350799301123827000402020445716500093611248337798582316578754861044579887474488224488124646725679267199719130297317177864595737065960418807113880618516431215433172674249163190618810107730698061548666574143395641118975674953168821879405944909392530203416098758150866029210470418553666938971657655922821433995863253000086922869830677143419139687877910438254049263633711359266243591962669355850774850084633361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "21004512208197661262736600517718566028723624430785317480675280411385290355128798104965791193250310685338788411581430312928122732607207712393911421107901062537024137338035468276922220756418871852425619833425098609569721961326601413329927493448634072694657603601284723155424743560312187010945075425849663291961366887190010455985673403621331717404358096044809006458184794399729668464286544571151053237239736329761913113906820101864018811812548134964469678720981382539987074294994418106927811912372673843170378715431586851054210093115245187515241002100460108581299876452426873939571981275278399813382573937825122781867683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "28688487962287082946348391740497188509042232545634508760079042756139675173745211034403552152092128822985893447151592160781438607785934591896161290337102443446864209665042376925468555883348930666508256630104864824978555599460740752463178234886099358276253784297220620759710892318238006613742437583650309717674635317718280816954472199463315197676915387367107505842711007910183886147981973215600849293399714287215090766156751041402094986498496733391190646278042816982442225879753064293050647525038031796688459990537980204667130879545027054095933059860692896776964062346930489561968403382255124741121689273514998125387337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "22865625074993756677503561196788915424882357696656007050918887987502356459143072851045451783934600414121337620134045722608362182859486646926608574574759471022281256668631261956236252390982197224367464769794664449951313964846685716766401389971369648665803559876206078016036839238444532973870277750564657689641904146157642808052975836733537661121053096569915692916928526413958664488606787033186173013498937658730474028374168562146568164248212705374171386204496338694604665347917059104898468272933105894233203815047867657754070124688940917087573829420873336820820767400153521851835316343877057694985872754661990658485093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "24484625472860578754999938790092837320976646982822485223474880488860673607468781877227244175533836255643121591392163574818954827382055979364914484483949924812472351759765827322680495355590433040124468435298945148941053996014447681414174442785838175989091318206331143358067186352761056033115400721908562465139500811617474810543748694225705311159842089032340412520251575884172931830779737273019620718147973025733644509168412885150105870300183906379647495516504158702116721495641545094274116196433692484887899097261672484054062245498015100696216849757073211639325082928497591520322371476729516311094948779428140209264827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "25679114403201956402871822416270165102792978577942963309071792832787384557033548190965797729246636370220964048564826653710477374562747262650515769632461571808745033306578144410098673454903563449184338360866853985552249461264361977922510218744888516226902484835355693221820138436250260666840089388170675668388023054643594446308646444938273785614484045002836904888957663138263717484845961093800004571785239644269211258500151150443181053102151721041719048142380302346795959351963243437623451738705819340018383928997809671174627468684772281811508374247506405929317561311562907796844597689810918001653118295777260083957677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "24438044546476336320814800578326786197634209727460976379742938285250226138041381911114805693002197337031434486931312471271317448529898784333440073543598836386670883495511256427297634426329275467598240265729764329639109030470099253542999473560066216451997166403724556068932182809066033783072503582282942756322093599597025714026471802244490481210402142471089052226729762524643432524243156840863205544050581620653368079020030728353107971080351796094792953563745517336550946924402868459482461672880059842291891233464705383745313248611793008882432630369586485906025950851040609338409808699296712611212477954016306547310381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "22033676909726245640536254081338489845370219025118516807737227894972094077540231898054467769003564306226294537050592146412241447702612498093634875712113007357353840841382112124995801041345780172811952494641943903154931731673311927136290320074496777435544037516694008130184269293974053946741708298069574852727108758228835608514661975439689857866473789807592297801948652287965904561998874415126639667234389423681268466121966147738671992092475380319556969694701560957061645477658510544691274381580707618673904521636767495566190287817240348961695722922509564006126494523794551465717692647808379306995237728783081741628967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "21866249193938131760757926881100956465090467640015738061148260704953047110016757909566422877181229277739361394563328127626453770188533277742106597264557104582476191919407304580706252433437464444231494432508629343310832518159674731510768895360816763715894262887993954105929589629045792394156056825159059922948298052036094498618537509613993441899668389941827323127861968886929741719753898666588805537386854133857102775572148256443693480996623997845222817255885904621481216637034797879618496556233283165865057692626991410167778531536568041665157047337109334883069451065285875707477754567424243681633342291743352837212553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "21450829562603903472416789553610478288004562192876776754183590422182711339758956770607032980002259452459474339699906378333002671026944486508943399504487552156216511998232735190930735837698214937868806672154802290940758306709797288589889570643649779072106819069032029359457826161223611911065206085406717355619478024704659107271637237364238691123912242471770925120929992726634325829613208623118343698610043204188323848808202711992197680716901750882245737760378977392426302716709636068783988930419027446024243986302755319472660392775174394796427794500663623759929315342872048595943702698770253798359154037578840274307449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "29780625614686532534103610668579963280446951376606080590204797628131885924289479802997153571924223611585817856974375297978745498195614725350244608189967802550338506359834315385574393439243687209187264656058318940432743357668385266966020523277248550709174104698464706846239354931725034669221935766465268026734766171478463769474349683960278507707205453584093967127592396987395507778329361223675067052367813823502721484921962450886277687067029734805117704651474018948937468302330494037306027480867746380042416825778982617174937391190690619717428079736761203985690772365959903765774209142759363611208225690325368586054901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "27149541518273641380614985178939215395089175114478130043679306934329614712670539562929966693222491917038474395977645033868419716019577171126925146443230256714120800990072871523200068675144676850525892731187691935550046707790990093785018605402361525052159488700191407053246893990134841344814524393211568537770996467613238242700411574706139010187693815072851351340500998581611559375866779968959111399918924807610517957276436247877564908477703357879123627296743504137950085731353903287464366620138558608519866526975717869438398833491184825457464994645662098013200958207416301032163993129859871072681980576485236970166833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "23494444931525276307765999206619958719775680846370947641138750997198902591870463632099293523312801525832341841835251663851887276871928983841119005148058548831392243196945913238016963618287826285426355389384503491361896129436376589896295457907278117626847898176027275149141679943011126942622769590411767829504277072223205185568780964135325081196721402471222792026625694018239773486824460673063526990605372641396167308644115856752362698174158732452191325756713507805042950706503604950632544660242354444923462461492040510360741728420301981604791962890047165088055108340836547378397462230672465040847924116549302310102557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "23618301861134430523619635798870910698176320262139039726254177142734308547474753118570262531657701352270047687189324204636334963816074328210481507128444313415588062984969642097574971192891638743162509893506047592313495339093886859706381286337931712524588375047198055050170683297913083909351427951365285848601986100695096486172761042274275265281880332430268208530913439842393284937318153906752487799678894986034682168602889344317109445412133146032317796976181933591532103322667125713100246472154890936968264046911801407317791853788248239255625502657049921733588992516961164202117897344201411476274843871732724409890629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "23736816621014037394200072056387606185505724647674283541394917893242107044247260733555812533631337773685437632315929301145123068243189340119280645908690530186339178424437540708403987283373241519946499741793479062859363046946922881234251264775724052223564705207017862034223575991182143334648423777915205715734243425805889253348745000323873525627525475518561031148772310890659915413372846706811606465824571946475704484726200046698211344022114139059711350842612465011256400418617957524707919169500691833851019398149170395358919654223501791773127924168747863090914663479723370889775875928859736057825874647777716460355083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "28757097988277180920452325243687839274007600350676721667443162972327930515791097263362178405723604135817915440324199032151514720627148346873218973312321478338475358666831747482624564936059965522508091047594314526396647356157935186073706990122623712400397783596421926123391854511276066285822129637147854779343672772243249134254185640964639150663283790297605109569267561233658206991181326736005819675372975148599651010610466418041424282876107259978029039589962050968365602888153962563351828827395269546335062984101566315769764255213088032143416101404091188750452803455612696919791499026201841728094553097389975699611673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "26626199902205060838773712389280116763731818857522267646454255994449433877000939646032329366080013848337605500039997363367355337203883904888668090270524020954581841744100791187938783898019928558575105829842348412355760933066840411735898195463087115392950904770348037402652326372256607595482760948331598953909869890759684201664618274284920380683606732086199799027295652275113012411270676883785199609736304146451922074416856068412525555666136566807260187662157644618955276855173948991130999008565514852026925315371589189146123683456721634102477903838168516977620418267647029540088884949349707689981043945283967352422803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "25303115763315407142199980365210699869508133383399515722515871737702512772262340259423590899783500760638475768787357672894861021437546878949894341626778126964863834379910737365852447597428527242783584577282108037316517391370287338404743851680426702585072323298149387584504922849642103475659181623459588774458043291842667662423324783513709910653340982537841351105383230950256762391211649761326504446875418309991725775632479801488850013093715536459478421745828533770193215770676987256141734681282863194671205022073982205630703691506901985361939981875951655211438828907626271118227403239120223951838654508452915369871903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "23057003502737051903774882542654348478516189789405762375177716807001989252345939983989489618226904246059144159820168443257530370060719701991771842877830392321554735596576389049955058563818682151497345729595389426848722364781827619586015474919026679379723825494941209782442400701490969572090627685112466321647669999235720091865761929972182097884528426287088411491901465334987105607674724007881167433870628646834541869749758236915536175822451055550247686489918354518017811855029559554140644131987885473860140827464043469145271556003576030377312977087240735069472229449792901763138829525254779185632414102683195817523261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "21634380365520649828425427590010585340671076519402862352278822878689787844301699228323973708948964688718263326559001666762594707504894368488857502651043617941515350139669483721841692559453065381569115436868389816171887508011553711307734631699390005028628977785518613569902736213445947412112008344059319564755378647804515209012718764423509901690012324846131602733327522108232357400855100095935975848659248070242185788867341487626656656361650956666152261893378599635589580940878651101228304302753266356530275598379874226177424605901605857060851283869781860417329704832607559835898052891975064261003106674749670686812637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "24931125719058165433758264660436868590573015749146810502322191733221653220052753615792989410752512164940711945413260085789748629343307968600625762642266585070469747860715265337374237781031460903466160665640277689813935579049289165797172053535695481157312885653208222932296972219073108061991730577616899651530384790269964372842773203131716776225308166464128174227947180532426419620610837747449817492091213704913282606241811650709011228823168524296356023905190723803979624004497080914562835602264377980483854595632631247435654609477116777258178112548818008330203130052303353901570297194924602393646092687485701472790511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "21608026768894331977977425967714260442253701649505741090676066042693587919397668555659631816404921584171245388154873655226854408074655686409694983947173018062686121108856590050152041068091773630677733337076686563358868775087119526645307753743584432686581081135176327153040542425012708184671668326907017295600850379720514287711158926742542684032484258374869649893793602345697526717603089863060949036908444458638062776425229488670986365054935894313321724216956862795508237675286626264731628547588171215600024359213745228035203408604757712277412413390588177312278934328370915316983223241797899926255410225847059934922067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "26563031565187663752688140144791878227490439743039058756829431730563895214217336853389936251947819727636205307608637772856399650083794447073195232364051887892832804693855549933328694633479777478117210088329561817366018911186015270493184076024677584761262062192623801171601056962057900792746385040436860305950547129779146667259972971144904997278590014630062227959765341442932379741150181746676282044832497430780733332277862747343417860923954450361777975415557229873106991175526485573039993666100088608610891559375992286496303945380455075264427640155675726826064256776992299737812379488976206047530710056159308763831761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "18286948896981391464693569669531946585547664229968795017257527900946638814007944164796974508469191018388155063285415124943605768455092010705201390079905609198398109096413017805954865770258276544198495375161646715238755273278523941123177267763608624710550436784931278351283412909575169039199811125184819214454307767876206657691030244103669810922711218011566453173690303332631704364485771391367682863997677997383618250080775039371368200417976749009880557885043841771139555757501043077505693405255322896947876322632306666199888358539745815587454449130069398830358983045103322032014766740517366994063076675600597181672263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "22090610954494091309276913560373755717983681241905416231876527991667889868541802944408542317500354762416932184837148397763427942729787144354000075505392435944234584787437124664749987186182172624097646837198494586691911521465414110772069065076944558150381195928104598253328037138017603068098745395257021799507041595876723004017145785343221010021944792905300419847444340431716812874556021596510333844923384483587566640945058420202755384332191395726761510480734755275342219151981411880232468376885862841825518944747257842148976694915986503832197063515843807593917094197253484860052190567230472054895886972296193997033413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "27591482254806108967340788626625358279034243900244031790590899219851101020635810285893526559934168699179499059336732884499908773789740871608460121697996851166946936047822732134477679282708329823184825156664805005929506838549622739504110234305111175385718283393567230186831667741190863589474609183421123006248728471110360173796837865474024931294375804232764113586740995528680408198535436960424851533511008509301028338818985998295342612647345259804796846594267434522057752787692534118679073162333137056441836914444214191561010310698095849995500107343976155839529741817691011133846443992334456124155105056865467656864319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "24909360175906090861498208347057370118269644055033641469921926459347170484965265148880353233639055740387383425249127248825485660526023779668651389831560005361320998246188952225471163228684862755396012786871468471797193783724038276683548232953175381915879456171731317751652849882637805876502778244944734239491015371778278968107573591092965891266573577923713812350626399391175874783642049364307883009963857143593106087207399278944060199564160496716890141121407370865393888916238938984527691184506570765979946711319838261555806199438450834713470784000536118591869559265839558069038385507606253206888265360003839047019387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "19415373389847287954004351212984916149504101324111839166360530577552307324831422814476354660799746253395179118951047263563601447976793831297661819626661701163997432802786364693568548665969374804182374798777428586355248708448789447638368367312397301447647207961582800338085212656040570619749329122289128927227681173366693474563522017670493470987927320147175878021526174678014165282382497425678044736064519763613378599607538671650311371487951531775301335000121924685076988823815760673022495292440154055319472380740998628723392292397510310243235516129588161065059518586638662443536172351248487764019606161974620476364657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "19966345998807479306347955214452538810949363212491722074153692427031080457382043606171333156844321440001155968602199803232011218050142515667343722180772000810151814483681241344594724158789778870732390465533640986417797567789059112210041545726824691979590382747331513660914416534214883299978302557673641175201186452448102663289734470789578124303088136931814793258737348672350182907346547974617100026337625317182709588236789409154761661549736539548867497486462592253688546063390976877445785468110385395944682546841497549592753025093957257465422440383116046742700936248689228562067904242296658789218482950000136246453297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "24992346209980483685139590605287875503137957291680931759176793574923427324308405050860823630881559723569181528579541186286467966551811133850104434132932184406850618208549668649521023303094029450408836317974924331778314967543155994342212272866163783806243517284244279833749832842247324815096958662670859400846757974662274551970639451297783002700538146811285663393815346580074132448187931394664531186541051870176144133485294658663282080215283724107070745967537696731993542966779380688232526733129773662197596769029858491912500366062509552863410369732704764153807869812352381709047905924595827045902996297767133306746083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "24565561216652926887640148391803252949326352574236104745157738135096017260842042563804670465181531062665841060015940259889587235956113486755165900086740223951818882562258011259950891359491859045119524291260597004530514706935364675163678461454854496159404945945419668521775880769507985574288764549263367642873107590791249302034172709947348934137479958083326236413711150948427408201213748200531207103528029301477840658396779806823420674892678160125336842532114372446382446338538688514425050701214295560998484411352453476172567131367696631614888316760260025074905191147769497100209139144347455804266268795364496823947199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY", + "modulus": "26561320644897646842965632245960064399041688817544764561739542703261675365884827859373872568779314639663621812104394852712670946257031565068989506066831735748381757885155968061437932632193633261705440400160561318035900520176428061722412939534126195686768445258024306817631277234806782809232144325637016002467556533458192472587325633666188500845225835847058286429738742202105011181738139655333912197961001113139265067340555023573132192979281809727883006296515628332499714029912056392660392231994867009545072823172005579650210530894946865992769083436049972474076682202991711095549725926866254304344650026078797589990717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "23434352259812018786941122403154392293936449291255864400267527386872103394607025074600958499981929780130720548425388006924711266110264938872686096126616926273255694455823691856943944378590035968242827310204577555034227935755203303997256013294737147386966400812784196969972491621839977084437775148766840711324148336374962389318258806252151041674969687401172146354551756869806938499347433291344980165233648363493444742404952911486378828425626869215319003761597302853338030794552977698043045372048166697926997528795366372461933531479052739574536548069765402692466908200470399253918729297997701368174913800560403251258491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22746199182437862393843960829390742184658166028542230583710356006188169680113404523396778106429429153143824683401809930112648337163809693725644113449940294083067325762746713475389722297841655116168866664070185046422652788247929304634624346205426805064369803240737181299263933472620791907087194026007362894164599398151315554169372473726706083092509403765225503402553064911077907750265697355047522380182319471280428727820935837785021845933167405742441790933527231711793089050740845130067231217730495829051214734649778746683252402651462144548044458730152932498804778785097157904488158613016292275831919657669276072182143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22260160711142876227097082020876440769693836606396983729386572728011635128894840416977457318924793769786670932461820537348404899765758536885567702431029543974535023359916492967096492609014420009560201224836235782900793269365279857253722890334804328402747428727507803991534128771248562690235078917135108100058886403660447616855453275257013413132660258820270204456017003372517024634025252781248339456949876230117441143187227063023441949211907406753628153241772002093455040728864782023386704350767922315411524770620830643863264304648243256206121049336458863801566262988908802351801508505392777996616928021771115691426771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23002074608012368177617726518381816754931025812853924844708414451268714983626828015739668320556906729301428118600922029456864784777413282656743492474928494911523072898375764276130050669239214714950001758009262458675418283519549808372706542542827402386710053445044358520977107004551874486260453054379479036688147549685146366566095129110509908629359024714396681844811312617846124361317189987967334638668266987741257781391004039862692955999116519991161042404193669012567559286008248202137255527362116848930965240257465093907562240741142157028550080951043163371662583693150132208480069073505319149029567098233722114284283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27413125142654666432880956736457190564894441964367924686058113324961649174502805630321856716466938304888240747384309701513459417331345365212026080648932204972912526851633629687931842450165582711479818759426207140129420614991170815957276819214543291201240861700021204803998467995389671258773993532861362049218252946795634464451873719455969372542260019647672347084210459261048072561867838903731719280943679241127298502268454125270808796884674177105869735313045654550253657990375979233070362081250524798486121736550431545714414868308356618685776977182277885615754399768396320678904181315154534898758275943714085158279179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27011670347856768771569615525933197723635058656101275688178764057626119480799723541706461001604346706370932959616908948400106065523328558175453229591048654526354885738913235805904105042224320841416687220599860428553637652429789042913739979719912025261640731332682299717999839625556162319872250387114459411429779743187321628568241033340159798348225779963030885005485623054443782254266813913860579841882121299704421557085379836268339285491439566447007453728880044928980554757915068736637442347048297178901265811008709329767014300440187055079352008065423066076604003853312119685931717474241504663788078536408238105988949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21872612175723039217453444731921059776725593235773678629115533137763539695098094415962160238420019427497048729373429279654276589033970593551498627556753813916593401709182716619920581548059627870338965684886295552568113763882408208478262885807363495218289020468609390295348407568371523187235991522052616734682163325030021370059356726612935669051812037381111414643737913123718701648449681556445191417952675731385439118063464686322896907054102300627246412863423946806378442980853538255359955333413021356586094653104973222458128742966216044839705563130682122099245101414762478068605643031390274596919667020817905823356667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21229743827675058602883429610719139204597411782232902793203810063549669099823024657707115085795270554461119019067998036970164339473483144274825911540542743040234545666837009582622178078609109423494549299458854452935504305237858316882728650953740940593853413774303896142787217567694789869184109172782784741776588477925821534772033260200399440198603051121833195445570746095337486496011681520044126570273849253758268054864302428625859327596813859377598803177328247507978367465006402320734590573965202917208825447526610464933724569747170056874845457455091276195021350874195799441862975672361558289870050499090987602531747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "19194853663578113660501836680754925455390829111069306186612181694881592597074420860421702227528958453080577493136167778196526166998073071104273136677321160346154227243059171266690270797578016238269647555395695805167749662404520591110309138268445497619537571193232444159030189425984911425279897406632459357110278109304402272676354154548730837092244455219587647217648326129593981437485020398992228624436891000841355418705828787383172662649921048910295013501324968674663199520625277981535442359388176568399821986250363487204546306894184993829442996989079503857171967658991082739597820453599574204119917412860937468322593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27194868471246401658523674867695671252406528836098268459768175647612856107637107012401208590983624644207815116394356779272333206708288530872037284843310698268937854005187969000672978178749637933370655956877088008190112820429636446081128815226508810582718619865070053456352383059298997814282506887152998772118818420976299052858816525601106482270317630495134882183617843876700541454714016649224221762053556191415735188393649096553897906634798264606039136273907814591091564116928413875388065049996727337132803779544064296268132742955611862114689754621830181833250988863764563516728892038133201240649251658358854149409743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23093835669460742707823117941089453460104164509354233845546888823532516461689792156177644239527131973240417661539322350073912733237510332109460832845078353446090925599488508844599799575521122093025605397396288915285982010163025535098771168183492320229363601391651809654614819546389208215322011459924309592515827682163687346483128643957913960140343548933647783225435392734881662140868519963753175434938615160042970027400877730589086547343217540876706218548495992868626204511632132324998904970802786140448293133711669611452951750627334489779685799436864062204253484860042652641221283965927556317431114197703514356620927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "29860121731853263946749875352029219849093797702736805939692398903946451785264545716905581678135262997187483167402330070795961005236092275591145364053955315732164502301907865561362007264386821293313098787289580625644464329397267377566153454990889503342158806812060796941451268181397783287001799180498232218882630637179271424100623834201768954595021229993446160533983058113024703089640154969914991095793239196834964411879955909572341730267603642710611862519218909639021306405019485841232253520281544449695120475177801093946930739112507926615061597744389748348031435495090832245438073207451459623214157570807728687107341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "30121978531256517869782475230956173200687812234986321231967698427231619250227354095023627855101882952096617485064925348508899129782383014979998096659362982590134598002765854596923454573762254131041867403805294675324734984835267615797524721686745209465212732066045098370479921013386681816798660976772049463183906314790413229734078664189111554951678376093643058823349057891397957350502246784392507797225949442311005196054567203756801574620270734902974519337202505689045472633365594727160209210301269354347387103144858386786751991674778226405285541384595527587137403655901587594246765520832453903780943576857087238335687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23189430877929804731153424461238095150900112139773026201632158366818933095600388482831899029484901851212501172624791415728100581123181118956037649538985232606859871758933181988192521681618067605751891787673473286123352089825919722969045501072305222680293156290681816761827015225750672445249335931257528240901683323541622201002806736664735939353313263174796479057374734294256389297814410040513374821785420576516812073299562405865284599489339438921411699879203057559650029045103209731834597022183126751823650101269223014996884119209782155113000801202125987774566370570426954358209842203061732150443076501279824743765531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22690586759835535787131623522165234838682116697376777649251571832535165708203974098390863244301687828737127556614105892530765557625177355159958441914659895419860563311475663525481358622940011524637930269672032262936324642338355536022610762910872807804822425402000839305919765331657524245799548171584660557606336617471941917758525640785468462987637241316539462728078537726676071542216954950457798286132430057784472686706851720450482873255113244182219341523377339830860705600558638390071977126691803474464489214454530355128809035732908624833581328026826898901459609165307521362943521761365312715744576967165035391755821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25034623795271802373466417939728192052423394755320191141701710971516836705051348387094238470075580430535091832189913343187675350489143016104764478960312779079718217570266464465379455320951804194465684891788222980543752439211754201655497402150114540380749461144694116747933732241184090849459242177197339439151888044152048948371390292515161883213760061912476472413814412786639211877755366170091674474928227430489579641777371324923293642383670134099207775249246631811301993206792221976212851396751265330325220576945403716522283808987836123479255225720634386127974565976083235974158846826930771915606694027852867622934669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26253826243624569510839373764397688579920721213228302229969456282817827549482042378475115867699740289675864333277063430641291412392129058995843975288378079640860388164916008415505494223175984488672960791243903645361147409358293421192815722624880163513546554890987740812907393447235267014511014999832790876199270645149163722639973579404973738980009858087849131169242195609668720880898878653606866914413240145329301851342535197837929830685699806718180856803436654905147880904074466947402626319997009560349930676970860062502799944803952417735971649251832101998851051016761680259522473100410241417998498404869126854528349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "29692456329978122017946841707269641895372221879494828749242091198857525998093289687579157806991724907093212808766666443054915912636401032126254875454895829648376129053945240639564208466156994055981843183042139729419431872068347371883714546307659990487024280221639316114889965031354188719548299210234153823544049036279764377637131457986695538522682139213536478299193437778892684662249249150079854609187351755657867312379703113492028181021147725533561941086073556513677293957050213678350263874667140852596343447152683002143637100543086478320121723252999906359563282061348666607400697190139408201931176644321346931678721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21232921671204737823905212313620997739914587300707921959865956414924608348005484714126919863963050943818828775784471049970838841362532324717296378998353781358634175364896072276563977420125483820556837036960155745991897988784967511107674580576894334166082259832968151348000178674118211305705633614742052303407541322694055895372182797478411938385764261674318333819954897365001428519885153880093957162871928229499862718905547566047983330064755265652018896113645587474461437534502565856721566694377077016498203040817095961575469511356891445249002899027234581880660916726735247585607381007519196969513908249428261296454533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27909815075551789121776405229355300154769335856387598984278691531908547458222986939140425073190175702092907632519298311628900150460567287766689044884700816848806540783046008266787916222129399093785860481376153635512678549573924350343762363770667543259609062318617540601731732499897222377234297683655119039924266012855587872168561213996019604704842406534699541379589804950163006447928600059131567116818859714220933011116687439481486132156083556350395670130268879943071723995170224453960693720772795529758381457399086513092601301009417497704960805780559929868219139068936569352036175232179548974044870905381554600795021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "20320750769552730847560533836959674587472238726108251255859106550662412597157715430508354320292276435548665579807501270272101339606752390234306634234117089266390042408566013330852513623113413654360411266827625714604164863260033280424966466705566696502165785234508393896127276314941853056383063010835771756403199464338490681632573168584293688711883285140049895169797196363201356612404133280341831498266652754626957785713347611850355017524915408052616080845132580273075252552480579521583087850212727864773398467645423693586525731586738929578950813273693723914948025836470388580731901399918891496543226578001655210882197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26020308512388000515557385608940623786650511703716613812879157929359614261029084939353246175634897698167760739938352958447115476406097869713942782183804797931425993700044403706090095464809308360100553635164136659288295510149905139436978652593922915063260093123092889588383805458548632121560575500774606094041790682113982664191288905107580905291492654049439407118424284986996167681142412341412620086011663527732133054789362075923009373698025240996561718644989510277871815403520880340870451008788203104602862560311830020506868637214887958923311612820291445686240998494559940869337007818528595720766240277775317269779861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26063314970980847318195903860325269821171007312693022846684434372216131927390236540109392739469001721235711045307073198010150507104415445297535495981326765710604789577540144140202297181207923785295001103623311409587859284766428243068478283617073906086653169085845689231800336189871888448560043650745815999444572639611221794467199325390031993585450347426297059078112542366141242572352255448279162752944807729272128855369317945978322741772057778086675458906462533754430543880292080716087293752066457564167320630421716245568929958616382382661149342340711777528803929742761469269765129769866659864533451785775811887063951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25406268997955951666329369314404796100673160876496906557183552926693382685630489852335776459855494102726321689728593841059225383969204480152619245853027418654934481973252360413365157949426180694630989279282988030368223639185043415639494578977389198330172522622234666826716122857953324223419889140512532278509745744725826844207555719826124263900314692983927037968069881756027849795718646522603417280801996547538265017373434747443733564578042756094296324936131090191530992898255373349017068339323649128219402715183621466409868342509100245055276637539939316889176558920034436146431611719129988687549083137604178512765183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25410009257090465503933053630783754988914807315237540542720796950968567788039318253776629662669131663250666590436454867108508987648338777220729212783748080872243048979736825837982500961079031080920266934322447293843831470404202460745023375704376853712065329868726144377483693666422297545306281179367470172764217536661746350099856003440009947172227584854811257180292735934498633365079997479027413518857520354250722395164458355100137901779259468898812577857964222620428780196416756236303481389980338966562297974798865256857974194602120818862280254452024863324183280996198499806425679337534138292350941625188944376078091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23442182963741879851796793503178757883162737123376814688549920343305953067827710200898336901277694091773068884241547067847941964676318508534024411996751039808969430912803427761331824947771198719541441591964755491591915942847763232051836276648758687375470498680343479408309862083576228844521402328264988351771005082439223951144537231567512482515417074704292102056835886219176921844814192407210622556207930442776386868596482609972745948385287024553846857261660708704633344882441383954043105361586573208894906541925702366864786136826698226518910508357685220989902925810176333601998873926967628457844196499835573661693523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23542861750258142798686570672425698006808933134056185666257796054020403401107244954331544441476150757433396196837437524229834126338612131592750832404215941588202853930579372160775995681564865855633045278072214243237308770561830905609546127187302940794836175681455933166918301350891825456992304319411096707243937543863742744956699847409004279718485134532685937783102716998064997159994015139188200056476292233065002010943525006848733972929237469315182860186845044260443247681667104728402803429547125878606122334979140185584269218770226060550452937934797179542574959497593834039618226404963060590314831729564591448116829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26095986168477500113897772193678844173469965345111086604108503896710645419981799283651912377948805855852717510215943851412025657503483931214926379200000017930017043283525797654081823122018358682439529211649383256555469512627794947188260412292299664777889380384622390315509260138029112239071564749310807776838267455852832571375833358698466757190206861650048596669863842033870125093135669450313665640010079648596714911200410432875190971640885158002240692000585460604511978500836431960214404359801938742050458883348765895715366262314166102461572470782305802712455398066417363041557234489654292849145250247411180313694441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24989429719786583883400018674726570625395114580188216448266632346642073193914947522233003118057763468767330283987288873482642628863924263002845566227114509782302713942091914956409582243522744291729219590532278380067120781861052919404266397157596298254090967705684940653160738645865094564559982400105791587745484508952057550288961362513666507284819912097580763616910286726217317913187762349655778289953889098778727262100831848562958094863896507666390670226536775757417155978073125280391410559793207537855928000828136870537530187338909777996128454700094130735830947490706396703622850754853693443023517792180710637464669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22043169863610508996465702022529688638710930073457298419123506613900696197394092342509147505875021557863368717261473018916655533392216652506113235027379810408403336095046977204889314752611333605805614567435808162647820273429410611500313266626657948104493104313428864377302211840610972753558751350949757254191291747254372376791715973694701156822333734665233521218700550002155455881501002566691443449878730758407941192633953159001099283182335962832899135510742771501001916128681272907551472921141635252628684224715719437842523674021771372494614708169303352090581000366380698515353969432750549826404822988434646441865637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "29657087009017448852317716714583418594690885313395495613502214718337302402533543797024883878257525392502525479842437764549493514993582250751821198035588035172291709477715771602982033172905700081381233303800900734588133477960458960102382630107404449547003715974874001344577178994984946279304619727131585660017085418796594311332799677126028898013860128026597822325620828316788964675153707737594019140622192913560755201912203921247920495731401747071379159796968722176004720594123880143280692049059343774106342739038986728023586383683204922425393537546523302162196438510737818468282897161325958466247161741256980100032067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23500370906795829209795393460810460375720984679911200649219668468911163991900645634084639355119293876959446251890824532559678605241336620612112925772421976023993464794018587063852905516539164626984864404419354984414291068096669137365576612217755403698592278398082680712710012637473491101804523303824020980921240222656490761984534553919165187314147230640782345252383497776934772220058000028446409462829435109418742407781823076201563921397921077773192939467733465534086579239622528501549153908007593914753370503510860732894054993226249172245476009912293214371656488931900650151439583555507020459541906420200542783467631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26195624057836720750386628914585700200737950206909989366048134509312992767940167709041841584066695092604294852715976578631551448439235657505072319019695256933643387222895278358190250089408716122219924059461366343099731630574335009655162939506615829539189522955379857565135396493237316996755665440149473298593031584104409535957280845230004189772380789742292230254778992596323988334612381540940428160181183042142824250752939905985848520167817848341917136379802174085601451367611988124380033874319325432858543166104611088763892275077293393724270051806326487395695171707105550178128712913068023120247125951951135729601471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23638613943803625156415933364222539721136579021461704663284365647739616334360082551629412472140329700363135282965738307800155460177437456924822046013730985276016519517697539923227490106209821624979046088835465800771746793969368065889205996013163618400663836624616409044448294383330898322130101910262655323604671325806970602000730863644297767662272611278740955707575943927748857274473781287243267763635521388348908976499434021434306566205788147528809104881194996806854785510012871721011708888864110998915470552435063285394915078588622277414946656756751370346220926954097752751945838000320627840895818301042395744421499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23450186918473014744293380997863696953811669758519010927779147611844376277483176676121120358967471554396311062085869235843314643293945747547210261882395117632823499354197352430711091114203715636616710850275403767244609440273193628027329529521095074522804661783912386103711711291628277338999451051288605365312882539181623966511117742035572573073226412106974923984743048798496692351295591074502496960222019562653818019692315331027968212706733672512780285058928864244872850562777595928534953197811823806817934197963267544316609441505574230953145639519578744912037897725412569707431214715064338998085764280079255851245731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "20093156041606383224895145614143901285260916203482063703246197844618418458757331877657879408074905582964470746168830333234341231035347618834798223060105421564193690507772996948919636472902844437487598939850879861757988932849374923840850221972874264406781127920199784645087464704880323671101170027275829129933777324181084378574374844198224016099179300445310568481526407514608031768744620496404203468961519287290161483034249348256868787105634858512611306528339265292464067487952317820942398617644833739141546447785375947593015018010665419892954871267898765602383387437776760639535241169114680648080943341008893428766317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23673546427136548914663219424388710069821706281002926112746039802586931272329529194285828614884057822915952701814794005116562087293337030800200500291505283254386386813897672427312486183121476204197019312676168301616914899080056260474365637058327495778161186250022604579472690514909434717861144891481541031068621261895155839541592296385661169583120069627538961898781210275187787368147628181128756521016901517209361789832760366109299810051278696011725707120020082166622457507704512089132771837858869214464527792774534377406894212260309706817828742302742802279299741801485958258306192751358823177852784229697918298752529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25457452070242137518847623522770592446367841701294182500218956584201434872120159736309448494208716821739785676192516607880327357029404366718816492231972871523143783635019391026130731567599624207515988782614093877275679583271583516090519164883302799560884739306790987338622724237359395217786058298627268259572313871891684854969891442879611674537773368341626123021650914221785034505475561617015404364269196680553607597390510910172263672959455212830179077994396757859936152005517350055336155079933438818726526225844748993410247563658408367277971681523875685041792949098903416687075349575113301661539554360247591812180187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22988591528073746318698589117919509850317404468563267223256952093661356507206783477352949211089021930307934609705212813883524612308562513327916268931181915852704404721306917595099603141731730910713353483515187218567186363718700306718779665797396224755296212994491576719634710285512720322967330960260501530043205884848670453197305483921626869425419815047513061712559456946673712175220832729746986781369003088554018788424873443579099800814717107504941071392649415639124718276020911880851367719788066841669705284510819894222258723761939895710245494749399182086211088689485141800323908019175758957080922454629447085771971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "28402063684700795110859845453645134826588200101538880196933292326281556403903414041770514613003372885001442911458179517702629014265695907212897721066548679913999298838506807985654992200808383362911404523231141947803068434272430841011773844646846152279343689898153813928349486353090942519525146020388395739122734444192535241177436109397609901010634731964980971300628813454287767022641511752227159977139652443270460669414727073663902561099081292782073731009218641894879149191490910859079418790483709081543212769205322498659610046548850811744674651301133268016729951308505179445496766663984348679575810841275348552303559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22234133816249074626759542271928566098565561729493713251969814898350062132626257347786505051646654402181768310768093536408232987502425201996716720337648314736856493725955944493163619199235769630561149150936548142178217983692694518057260029659812323413407268168956049146879722828128720752133547050092840369139728706688724017884047452386161835146289041920441651605087945450027372240358911112876863067958260771791514620859562246580175797813144166486604645536188754209791531793589456667991078936379859335473438576563629604204375264710770132020591971212641022298565960740441566191023147847137083191404040117822736125182099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30704009627522881054755351696325354121286580134944989609107854015363447427987158068414121245500002264399045495261629364774777510963223590769301615290182420771413001397270108026024461807149302572927729529628570983839010973347211677122192357743205706150174921746070809340822169274550833714750842833864832271477137617295433191526380389093640600852731705403290582772381551920848205944427768313301540373617169795099258213310104832256868085919624278295881932906027933018786321371861557921487311339342861131677478844479975685550495099098508924731400261867917309593162740949802860526015214753479762359890621017400816594942077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21695938658552868833127682065089547858949378763180056806856107971902944275757272160298161846534930084700031146825514057663746052918437266506895641614970431504613778858703295750718897038552339453498204129397763579413584940088214029685790063726305648201460757261267877809188362032264269227856697351920480308269377066398744422263205170336431822465118246600522209179637160044587190327650399511643690061758662467115931425279298862107050587648577032494600804674251978970823388251347577950169891395999865007189292747130576236320830791908994201578013977469874519915303500273121927648386116129505148179847321343840956410370599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23555278485033912435012036616333790814167453417296032032311585340282801805557394001160079026131045089225370661251744356612047129033641974309843778954525740009056049327893585120223099262858611275221240792512998685806152872617149872162719048105264547916423353574134376430352550605502369864882733785421420074594238055946033441572308872854368382356890286078912900649955488935076986928050374322812915109865107313510658526373905394022874460610059352507068828652830934734960164452107915901419335081426749241137517769608338674851757650456310598612081246288377116344884191722103637010349815935434552568400646415260655449520953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29662134927330678058127320515999753598197095876074045114016019169946733099786828648965200767388066320749557816372421855934065886780664216401513462520518008986198806135689653944755147660630822812033733496420533993754021434021942045247968178533441411645984634790838829217265918931036012527802665303319496374713086879228478074890258461580744756624138718102907203605670281850938008544490804430436200733203342836486486175298877058818929139984272191965776468635094489488918737818183837254671727881397424908191964758729284398427051351118623086330769506147984021808159191399900525058101130701451856863823408392802157622404021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25883436231193145958130819836055880831815472319343358990038829053822117316835061682616009492265539279004869362336354701789207165216679092592447614444474700263722024333071588187753507448788849154266955762426325440820996901863224861435602585361989748804595132011870007856713275070549398108008222687735369782943797099590057058978903133304089951234470179562264698587909920451147216157183345423664682998608135373101896286120657898726474380862700777438693760279929516011644354797552021023051341420312862254364019771732360664196282184337640826000214087270405766144965037199725657272021617220673947863073076563537831910829967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28368987017933557684660268106350774743389601652649398672336912745201825946677249204842895239143099527348129455228240905561341834158800359314843561325904798320506708085153944518628595821902942092540636339274448391623333064275255501468875682778889466761145048994909635753854491914273807172943085760152889086148977049811538999311650486071480311569317793095392756925899005319533996015851393871769456846348701231090510434002330173192478754746939252465867644427372984889740710669431071787297094869396226371562114980975679313275260250548619361039578413402924237180513061294495810558805265335950645758081130779144585054179411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23372361141973074920643150897674177534325149442124236086484831090001809233426633087756994421957783972668603058268079718408690522034068556316572087585371423272509753956596916982059497023348367631811325676019985523379578718458450096824504158716566320849909003841575049974048909293489525758179542820319761126395409748749584470728494652039493551517755877497824341789528063776702891609128188328247506269793362463064598351667153237430400637327442223871754695902228964249655501084432148438436320563651026203899465620851789069757002011538025776896973759664877018502062585677402051366863397061635700618060523128235013647813151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25637166428882384162158239460376300247805145393891032366271799781118245344546118153732979101643743599538784943345831972056761402821641427322586629307767340817201893489559624934472019417288326444569803595442897042508807227790118347700680862111819415136017092674694766310031520714350190142496237764747365781251218956531749481851078941602106498290315074742810132434593241898509665384129280374354867308041802805152418453563185247696331840680548077842017769272995331587443023758370002303980023956009785574901039614509186964604968228932089273973474736934126365617797493729108455941215280551287450674382755910488725872041829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23310251629908479773656989287072925780067377874543490535873954329094238307269532066150295150517772383290422727697475989465391934820451336617117645834131849760963582264477281419691229219334023635353685681838323536360467922164909059404439196483399971892244623297913641533776774890092467150127901931564749589617656806467711241543413409184037611423508932590496184885640061424761027433720795254971931842569115111919615432997003867583551135317770992950577204437127697433593242148497445400175264924391808640465417256339625678862547750567306039326869101390160049622625873866183179961360906272628939101871844658215199211635311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24594172266748647954353272917859943980536286168838506992478351228550913451655208158822312726401110542831082602730232564926136606621130345704566914528440194582466958605264200230945015340200331842018953543286688586759924347197384282679123898610257235248665941772318845706402404731328179093847218056679310583128420432900694085908384270512278096625946375391045994215310663343178985985223891407295326252979248085943122445618447189815168868121867495009679996926847644081100610765112855951744152950092331191087790342157111192431876169400165897983420563646579188453989486284986019562983880594735805388181199113378252226423567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28646173215837070110818197225267661245473857043099016689120136308120844657570081321425070330959870467679191529143133024978500515288478774037466138276926051905607262009597151291214702333732781400024536251284992508249512437906187154795178353425907297882039697298027412962327553567005769824430233933577770598008881401012663048898478092460181617487048522344762523558093708523036661704037178031209301244883891548811468746904522209465051832054042558023785177368627689895999139549025817429893707630014639349947978396751135018512599373082590005111969203944282427929341009213327552484229923548083308290260426793710928130367689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27412994316552188938704128510006540423856105257515571045785221109118551485162695319604012105268980177875300732278946820176157516937763213386665362378641078169987233671299539930009430350890513108502723236109072621994967307723726819931352291359836819445572558810676022383230986031989043501948326494038370556106552562691959536089784074018185687327929023019906619554785788567187936145050810394406777004266575620839538347634908146901939750204531971941834427233745383421051241653500115048636686483086679243424720780546330854249403368146797130305755683500586768979760258494688003164078711595923640793453710758590473336709197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28449930075922715805896726114992834991991841862451009058455594647723711080244557574231715614548247671103731485616862343037835687953280495777948061854855268406644687916854651199653377429580250802012258889846225882454634912426913015014898766946904457468043744055472584768149644776323976084176769260832416488175787446246896242227221663637436301184882713528566503959991392939712167304423770248293020200689828561439742490399525177856463492756513779492629179473301226646080154020285210360901599036807322279506919715230303509105005286597028971662404104712695983554150501622819870572564767924641071882727140748204831848905263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29146005313207597119493452788177006808118456314865487762364913999945772172155138578849464859426788486558423680039562691197211830306909534232682910612869760070455596007690798513790003539965668288038249829187636823707253569154117181128368701574609855045072924950862520500915734163927514007734822180847305663867063709000325287788806454692594860055048443290637942563668348085535065636360292045294692564857333900442275599819980577227731688052441369517243608129060146459523784048349906917065767878427317627643248634463344784983655246147445965098997270534247031543506110346287648179361025950347258194550858997935682100567923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20541693838099582370167429983017324529188198808561816596528715503495218794187230092777323019978672586152956104588453519784139279804121279376294681115292977535719017660165919319945308289199876545299618718956193478442636107439878965773414120025886469120973060417791720309332745386160462202553873470658128193674851437814898254426548863616769586615174683108510159376375285188426816693852820406090560279659384240242838751325722521856437628325462535356386394089983921994467771976013554220509895167399883148452989172558392190024831301870851142055515926807593995391240393963047021199943397169568003215377166681812078126857301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20093412778775255390032637088012686599017908901089610944567021262149572293603965895456016114533255448499013976380731809138596192765933572796482046682099791494627174576638951227799482924437551212983766353524356580837687464335221188913154954043192434937328866620547816449101484880244395502809537292675246681067370991434395687867064686866191121197888333968616009802519368467469095500777495833009449564252678787456153875865811029433622205849024225059884224039866394183090500019027629593531580488160724250426757328272764358832085802311174165818567744614975648006805141766763957450746421798111426634252502987610469514470107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27147878787744197705069093081692598890082180288611902359670191303402738810728728173296209517219406916761408948571275335162610859834999873444662003471267182262919876803347328233747438569091272588104458659921907165751985636591300543972217498459863170683431144362221110638798682060937310520317063761464390421354970796872246944223391778278849849863992732671160402111202214034490099353326134285049587078442710023072559332884208979033389501436120614172650448578563025542703296384594739103851350816246608743573132442855607025188222534886991733083158810891066804118375878492054126767839741611606398854879373369615327175959761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24011335219145886674747786814073223916023114049809277700612593123366268035884186344605923911559503856793449044408683891915136149213659436944000960816230377880462417139531357421927257583191652721220297198154380512364781802818267475663085912799888611267814096998802076647964404239051216060594992957878191701796613355177845690372942653777430294056629737549604682835981921390556355573107382052030706741313312068651144702746530303314119127429245605959094453616189420208958186524272768347621870341306906948994220538195113485335529662715846420987897354620059261964035359359167054021215637781569092336898332652947870391147053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19821973235813160583582096017623435352202530064161573317161760980961291512612982097518831073014443540194838885386023081694186384532381918894987803972056310903680435977826456721476993888773067947386982813641357570701753163627566725031482352718078991304891499513290918471752200104089009368553761960839092768218396698202593204477072550669972441142024347355847038253048968320214029948972221108587576286308339803350165969881627809961678684970927858929673025092464980209758113111111812473646774377135012062554958342741654521679884156778129708682076997944654439573614658413842329313991708274513932445109132583267893865870899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25286603147021064923163898220783772053425967908232967266312781830681119388523303705786357174054892670176910224541388793085808410232070986790697958502660516143460760766292618500507571629100811559178769654320610037471691127008424549516600275402699389899118572708306631939760960655898893405893581281477080866889195412133113272880207356230630508454885273451796526631535110311649203269878951738830048419896415560862631223290236854614531004346144189047844635698095294001357464524458170707882067331508243014281598001865059751174862260175005941780446110208290457703299260087930913973510541439584813547626520511960552828254311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23017591285272113475971656384956308497000348307548169443742611275400663137034848824240858420226993003711191973459191892538775353909311853719307451999878367483049477800921111348597816288403453378725308885389487659300929601986061624113015575268853377729706831457436447626762490141174092986021830090955008674045724325797959616491829565015969351471505653521059257533898643311589989876878257436686010950489245340272295002351178686468475737294196684046700301508595841770199011026291312833803711258860920115655577084432482321442898969328862414216212190173012287753442859937285178101601226082416041460335609248894039788056601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21399632275953819549188670037127177349836155943288599353054479388447579569026623361911755247364011832023116242688842521092504119038227469644836230054329776409777156788689368793648509054246075075459590557505921085440688043622839378843425489194186724583540398131002346890725505539567011198157748609972820662133749570837563770366949339243663418183405526217898167640413133860356010776814203508922904468770580996991350488576491106649877627308882390750869596318267128165303569998290180796831527127617220357067607022633926440017126199419076054610063239737479547332653549536829798538656536796594682295651419019044171732040887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24378508699287150030737673225066039352664303320345671926537603993058356060312124799772389297401640065274320478622418441493391019734217170114633009570232790668740532051851688277526953127502109471371668436655160350736564416708267289704950837855645809146663772562159151489333531082462510304777947278195185074955349986118993061949071257964289228173690321571574738542097125296020794605281637522609075404770090670243967589492335554766729307159821082438870276208224693256529015671494219073270383489189315671516259624085391629031335259608919228280187763009365023073815288486218528946029052851207507155705711318398503637506203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26175924068274049083693601878928304536451840470404272594897362868194969198032346105729708788258935483196183116325594926092688121119203526455382036127512184870742996141487564983985057434841881190357425520653366260448498979183927069318230075286285288002094204558245515732437783345061864070078980897549334305171262186989990732748347290842705856979085778115134850248722955226773577732349615463146269094219627674214005453225386492571864082508576565244170996408568681813761104628071308322438801210441883166774151972115529464504844031548024199924196163426873132718156111161779361080532049429345427810262237120493830784503327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25465234134308382544155983763919009833977155665662365183503952361498357912301618312633363089710977573215907729835409367477433134579317408510937422159407552002070641989232189518934995332758028121963936556689287259307570332995110506524686562361962511766144146842312918172773185789701851752473369363850063088268862427022895866960973894032294271886674107631544680007548860677833556917005195443765992313891630897688497966373362349199810720110129056163967423150775710225099449486643780196245037129321942472147434249280837413636322096211073384579598577017192877153025986667960526692745107996112303642279231909327618653417243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27106695497217109681358142196772295922069062302836114329241366532662240739956180153479645470226478013424651726531751104527993401671687121912725144155441717760030056746364114921509561185661830973310726747942430701789899250905123226648009710666275829615175700743161995076568139103152719838323751777293580657249383773290710533499569485084605536115004398160781248201755485954644909355593457750473560908746758853682667124548779137534597108287496746603532771070635273033542688085576638676813419889805755768543466288446620350893861481958546509379759443937457342542070430550888777646180557852197445510625080794569522886058167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25373069884212141818910224816812017352147616912520387737628409732868646870906407508800810641331721657243689281955678892911649713412750035411821511175968289286461842602859270847821064109435654110656319908961731414144893271863676370925529288701932173642720138264210687491324088891841439135156343266057407739250597806507740796389364621736158818582026202040583335433428261146697453202246979758591427564584713716571547247771998034770998146681086217487802263992515584271779413067705417528821331659906197670943674586709740284421578920552192166777621000577733215646543954085744228869717169919943439327012047631261331347099121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29242442540872805057420636344259491548584753135746031186251190084892174050902946993806191332771150760957509426467988545841039102888216430398750376352490180369479242049416714434984377410751979913349991152721434894346201740719444174127351601876751392781180617238606964549314675566569762854842084757715556699639683148196021931892778362340584649923672663700500772150575158015212194662797763675376270289873568616273876062870810108973873180047815603553200024725217361526007420888703138416936621755244472221609816095655931408107893905264001092213196632272540404108316555533282392859252941729402723269093467730524216072782043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20568888061136914946760482077485667642787446441064564838941271828969209611074329050152803316174135473182038004851964650212238816911452034625118613888714171533301667179063653142811557816600632696063339881909341237403533087870667546489497312388156696561194025226753616427042752875801570800063193908375920037605239060722863901834738335726932914273079482507795370655823763316373646579866485082613740648524957738640980867790963878155917878279309610163674471952615038757695337602192499410152886552279093937075309342624998600025632220605359030259330587285621879681151087096200862253965080138882126377333655282700796743792329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26819247411451072319144408611616213922577829694521423756267334050754341289749444949162685293291148612447804609167593863493673685246310307992862782138571740772487127129358276853437741633829399936621674810906934274836551413072916444671936702273338290693203476184377055422000151465675520302230542953435489639348043180474695083840542271317314939050642380672954899951687719974761045761437331964753417561008033347702013025873475215771904838181439360446942824669891216085497946238069355593835821708468803617929176176916487081322466704273090450806219594395763190848534131560901276036630881832161315434333234119723976216335107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24715793753792685474522817967884518008059961230294776505335233550254217524148556046889903273602300182604692866726999456813608277151539631743209678380788596504466624338155107809440984055848018199582060258575542989550969204139044964407191410985210126406194281616509140987620421226938229129533360129682004114776880343249388418670477373883541686769328835860653966603579939019298400519813019327570727255887121939957432571065802461648577245419055610912247498714706549326016277382535914597730484657681587488975316375137959426633498381655822708970853525024111308070008148080210336967646311359080534422526584351234801689557843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22160227959245941578794979497958907211041126737473535893537437965158356937548455900103981006048503813358480210021582855631759113614680599353652737490039480977724053605710038860232601238303147602111504105742529900019742561878100554821421736760475532160487063604766846341705177202981754564192811077015182510213131410124148803776643854559309580825021701562445937077583538028659076924908946724567808871522711852297445070259195468397215577727892808400648268972722800464907444742254930880670897443758678180884351810560696551607336270996532184784671973559577055399068244599064957811686425566008123366009907375980573049377941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22246470767192815913728055311603740541278221101778609103634174017000392088103121975838371146423472747750896869626932716163486679967395209327089151328096331015481484860037493005792008323453798297384666321813346701287897749180336199846620701900078904038477757640683194710697268572142224298334773124512377894259283290077282199008107769922911762665711475520605948887351662982094756464577084604373839494138969112864152263319494897324998993853617552740276327363137719725531365756667182233234654122564592664605272308645061913478901260862750807200997835190698956678535269813426825893412764208434356977383672958157249123073377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26153318673512468126816981500237910346772401868118716899177889358622987488915009214410459054948807030845030007013819542026771043200172396302300236677805992197577345569581388396662932716532583055540993450678034594483802567834795209385150682814000459433726639716309021234563312967370489001417533606529386016994727200112178438792636946307377309283410836836129517369750907044955080420571300950581269305428785554482924679481253567016953021957571275946452376902976698482497721502892647525187165705764959577512475329311656059025473113182024933959722180197621555035525456806118750914100406842001666739451011180074605656887379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28226596202951098285970824264097543652782262542594946903595834523696120573411298518473838539911721299945280327308689541931325317712119548745161508729298948954828004074362016294766704674852297499987094324043485235811937443670080255790585188551462207923008670715472935362938411664789145413104207193279744122738535370035481792255741696114071262126109709128270142312628795952309277988609930161830961122797398161522431246645553411115020569603335681407810804938884831249735113445324979323998789536594223168638303239508394755410556023630964844596432095437770733304938573262569762847766403979411864243481497546244021781669321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26711158237678191794298915347892869280475508834987580454417818473631036254646797335763436086291334829945408917936124966811489485193506021510221275363652178479180904310283572063965350315588687423833706247043119641987907777017907572912820646179705473477065430876559361014707545037466471042739535495437051497419191439262521922719253318944815659751026112030923623541364537880450450668668287346693604883709301511400106506208730541624544840877562934263971166555522830266173250794239468245325439139149471716130440956072726155164756828906386027635306986023659301758999468344491469219678006476333540967379466337047360743413877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25175222809579656157931158649745834692647776266012061694729307921077623987544551906828411774954785818151998965436420953712836403636487088720154206999473780567043769598038193039727299824069268069859681933636669320558994794057557736208905677016556691055041135668263071150096328084407481163359771959791748673694734164331120081155322684423560894659987361347366185797490426429375267641218673691917112087777765950980654439918575452752721565189546561908475184186624625751755111998092086689531021187968547793404906932111517308799206384803629784839434129585775752714152593872399989492817452031092027187028517535335925192397959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24247311031324964924253638067001244573306712336811418915246651075689514765574907484580167527767710037775964900024610953883064567784690817298563128724854488807210351426936518344798629111721016289547369164016038677670094986296246864929050161240610892273128795902484641629962479759962286678155895985679089121758742668452331854604261009119755126342072455396601693611194729487582445522200361038435619101194877929522363430454699287090494733771537676688352191567060782943268922151799092773388640899160699789314052490741464444610375568618862854651062682372551706872004243626425007608370201840402271249705092120425535603034367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22123877826344638107241847089361072231455184905645056328824960419536274753343598081373724824417194620155378386411726846232152654591888676241778627073513713381247417770388880039100608102079955714977815706008387374350315484052045932278742620946697232948075190107433808007362367240538355081144434523811145066172600760550525386508517336002713443309449190281167627057055192671050371073509955920463527148309083032791087831368322829634115745920727340976952058508198364983466663804443136789798347103536177606308288457526652451905018605679020859544211944289494559954353278914228237411996236267621299286724995154900578528448693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21404841977231623704280777265749510639204002559763870618916105529916558640586758677616687634421450555323692744246240657574006142057384056639463420032316028319491870813331842711179042969726118057252095035576649624891293289591827206104875148392145592211226062081903422556535218162366926397788819953944781146167883109641035452004055902193425989292174001965562948961659400295445738247143259663587608027800380095774176823630105710900002594096209451899964954004035775848665155190559257847999020866089970516370169429355368891140470688552362142321475488696293529011513540793978549808506941842058473594806207616935871203236423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26997085955810831897565099864957053843174258422898414703131185455175601959505353570050295386455517862136839163272020858195006051007118157206240448705870098439028010378504349973943128561927783833117872465110526746082499519048436625330919244780802468613118653154072981400647093033544023080280675071568552019751079052310369375790120055528856433112629767309630685551391545774467849638981181701490143333297704631926690658781550447289379225642776374599827456771218829292647004692054643927773616568597580114385144860119004171123529231561734266209135284903369327161688177661406305214223382046631750071429238685613321560953823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21992093238128280542283366489351099597253237081780161629298912584537384208048747885577354975543901209941366930850716773882163235669296680533721374402517668095333289800649939015241543018163009810787791262127544083721021714268368018140275563060735089004918866300891682807499805366364021109084460162652806194251708866499722435330297147182627011033684591470391284334592685668808678766134635183186661374704612248488722761562668087774112104780670728823769371043519892366207150480074059703140818861452511695763432679845255852579515868445632149494882355284819418282747572258832173379718045527751174921263521985542476377334077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23789364272876412823927314599044831569905188743282064099354384010798226717483199760002854021904842439738311172043066397130885188353858459636496754795070747372336674429479436068739739199126178472397658336367920603241741931576675215648076593747805601587647206491910497585712735926778302162230847396982261775835127082767472516557527416416020280290240362764725258671934536968096558744360943749063477035792539360642054599352769381731789410388590223072617407795632692778540102748725210591306576929250726472517880147034036243739047808533634627080904174043102426712567286852218829468298057326218174277525703538855035253514793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25551285466890087306926091869286268707278978207137505419537198492243679034466786789532170025247121862701562620704834283638604965497042747088000993795218423443015515396053713256425448663001604499179895266104108669304551511319745592495470183284267396371543328962478358969649935513983718015994816371210022308960049751985900943187903327892628144665266043212607348663764839004070450314223178278521390928235280218962975411542635593647070569168609492444496877131640247875809418833614096100168590233393931088226738620554561316890738084311192477218647281869595921685378295501164844648839719180991242440313755867449905476702343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24961558888364795390641815882171784542834478217060599920260309190615917843172822660918801282503137877722643332388472279771469340037044634031207855953672597241188546886544024194827105054524155303417360664392361042709758531251075865664203885729165959750894655718616912472384707075337437455819888406016033766088291369755563086770133599419294021379663583968382436936731671765738032861996451233018218901378982565289093638210928131201589325655305658517802317947750236938176830034698023132757217325575049049837609745457831065173062059452987431332707284535927856122434460372762284034492589117448750767680934407541146352346779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23107163498714005774253705321750969098470707975588168934575270830565685209747924184514362419378574456014343031928313112818197467768581945510280661559463430853115165380777601833851339824249724312253955684938778299493176155598367973139034477049372698633726304151600054991805338407041561586773406077402323363775002317412249755767985604605727911191591846575042222448809982075725781702311135950055805018724058177556695959741449300340397699207483702203310403514759877238665596544062737150863327756599431297081482004347111058207786559648862577886372023977327153843227234545477038345956971909427594308264882392950384638328629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23944573533505321329354158831275707229730554635177925807028153707415123587030704229270667487501411571664120854396007198773345007896936322635084473378689723853425681408233496076109888814549732805299758245977655297110133315274744466792051655128392451505990004676254447732638999978332947777153304151654700437011948095852512600686294638523316245513982110900499188825735370045317744799862519148292976518415142802943085217080647448831283354867148454296955270142887381337848767012685552107346969420719996202894284505943814844505753085679496938931335651186056954096378904590703741943711899609577923377140812374182805898172487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21909157601680952076742001310203056614560265855286396495296503416110505994789991477723789565505656593097511597615862169173300432165055927726804538538629449768627526516142750599756533262075381377525342921820467678553479330904927687433112606135721482279652270663464730850212141189104313400379380983261442567842395106278249612645726276915467904878202040269974764628001383910684217384417382558100648815135460111880139427592420191854767806928358270816196504632480740604888726015813218031603879067234447901208356253329780416684751953796379009637408919638775599790163349406627988282925364868130198168286923406886976719607777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25161755197504069333870550065407418947733019480425493496988338848049600392571099064801785706297264149928330965435512233040846448145171588216885372535340517968291007063591750549328006334798701579164303578537924940495878194971708829501723213438194352434875590212830098316920862105725901423615442137585594060667217999420717782387076238114273738895570338409460607073817051330404671207586925125827650867633841445513885207231138939289569898612114241251491323815179588884487571673293499720976078446672551747644063098644328509553189504475978016634172899483971979722039343860353596292907576360767332497527824475186840836008743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24384661616504787048148985954287411472270552353561418575671384458457425542575387685677066794368571329318676785708377120547195521614855004452431683000446485840867948214848981860570208688296777097424495226067712422222461212096891397602775639029666744313909971604239170186318003061138178130020360199144244791610208360708231224269310469894109729884877443461746391447719867225005038850461759261950296671692669281367908444661521878384728132202538888785576304918094261657129438190203301033758378205727725965834672900379983655616079168146516506707046934186655263088954390551226880777789918595149754157071290391796598641298473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22370643072221664126048514485977941779682903817020081922747485768070430931122700049786976251776375646278283781632246326478390898192253787745381921564482720819261423244485932872619427974804792731453301802573715708431705725099807999780163962911334495031742070537796591125893406541775565644269961449962111758562521633142066159668158291975090924307084398451267266696643627387331779067291818089903476154670206531737543858435533508421479875949676858287302134449213114373824410291422182142675001958678181911155793538291085809498903874549454509403031002019802404885217435857264163106289887602893688597040903293081004318374163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23508601578810044295629254021810272553575688186839894812221985284262355675995551225795222801753947010060071582877458418699749257088458558081799170895540846792256458308303291981557740684600394196080390776234214278574311950832145085683705823312660339905185323245846738983659141723447388585680471609896404401758714320970816578162667675673735735471887272528091522744166649798309494685921110524221927953686580125842302205844253353211295387501531568007604899250200624810249683930352067826762434817869673680793015062507703835425951008636438328634768307838187765985573159805106898453687695045451739046856367836832009936082411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22345046546431577008311597035946860950484680044135089572926521365246173670713962206630841977198908693227564455665737852827164203082883338791894303164083089769189529909267352602917377428288929226173467969535805773782627269886419640410698072737070657706769249238676627499825081199580658967786128884367783737394222311456880497824953465776540823728427118104116251469019787191544556888290687339484087333178917995901046284399691117110588588448343313788561411909652366962813372318481382807359782789417088769081472549080547936329278435998368474347799126821251920889085952591561777407460845527901877404536082695558117164367323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22861228374000489191502426558995830066500634089506371648286995375397852456923341862319292979501448062607482185498109201716678838022775967157800620970712767522322889554192466357323231653474145062054428019325697751443203592380419253461665881120128896097158342311759870916420571457278843229951483213250418762627378206263990277516543663846168685154550464805391297677094485918059879774365058829365113127383564970550641866942975074961017290920756301356218427014834039683939755428213802287952349100965201022430038578888474749266591773660652481650008302701139021281467001242218521438979396554670656677745653220853349877904429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21004468964748386171782015625289460450512299895077649780441738968835613724207867841627976049845458922646725778024638435445461165120386163059687412090436682454029945669927700832734607957026156839391070606141863686881948568945939151657161913686486880514347908215732155790042194923026992952099030628386784175388455079336146206544494873481035344286221771549780021983476015452995458023691166099840235368743633689207942661240583531456451143906151480248356026532173704583829130009402999737382808316739796570178950892180913872250314459860284341014726342117627334520208506956617902569580904267729883226024502524572585338537239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22513292388694446532094540462887019840077946114347742479643206012239123890719204147026191905076874569937797377146303928004270079376432367745268881464307448785696283863971561533019632286104028467223152476302161206952815061253316378244103075854434177418710344026815180835092330797453467080228179148153612691138051184110138983173819874715784230265696122320450018382256074897469267859413985913580009605699095140885761272583733794753276764364521496594893486607732528443264432325534777117171207070763972261895863788816263615560240517062720954789613809260493034633379173954046733885137905171876636592164152048651773041056571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20953152330752179173123005352816034578958668790251643620073342697499317786383959650415641138466133246833120832180788457541401842323122701890377632626288710489598305960820522355087938634263320425910736788453416117155798267809403895846242121811204482280656032341815216585696455224792830632736758582184303723988299966988045276991414527261220132128635575337930681455623308815218888214882401286853501711417485425792092370701478402980882960343363869458685377279073008151651569265489636334669535050814898206408892632247506635960324349411612459156947176904155725426975941276655599574119412292398928028454391449315791749733543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23282292827566041517349104201129324560131188070027508318509254558425198944537024094541460480316117980599406297339607971705335936223617747285636415731070333420479630788714161341777675605690294734007041250588978422123249088518202383787725419978351708002203595400443064249542029753306721858906645621801042496451600874885091401675433879591292867366056140296552316294499273095421303427753462653021021065287346858398762056134461087890882762735022931161808104129233479086737092675727718798484235348529102105061198729876757590477122331118489383525522074503526194054678961788328075466536281520482464223207803057160415734465681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24735437394349662540628882632226444177511046180367494369139601609078719932946244242431480216028332114788312227351475259497962652095742096893944184012388314726630946736940170774781027018409227143518262686639823080187050522681628433794514916400924704991315586795982050591615150598474808937021521041367922172738627155934213112415662008609370160308502103025886934888954798116038271249272093064372807012787360623787401397481380317976674734104329844705030031950341270996323667449762924273050570486744937046365436773829308638434013934743669072106923335320172859232322096421638539718411181325640532342236986300881010911411297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30551093557196830474537477242709792451412722980178519334322702382691146777132697083649433987224237863771431974254260755188064434304075114683378782098220352285474110770175559165477068476492637607523546325276134707135156563325034189536275924423508727489775715216991455508733401899851555468363242377318487068838320163842789896412724699070364927525322001651390336895339831693076706923890752027954730656313533184270901162314760094385571427519337779518564917681388935430246469482327054759322070067436122775653436565076853952883067304705858477422320732252732111527354942334840662520603631782986662006961154430696378889363303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27358344086794995791722204637518633830128000680515002995422634906068876843493629194980490813756986808740790493459185295454109352495369874949719732929200403219697820374584694099293852678995851915199110346715892987110736959335220432197926534624700620376003010180724163189268957144059085832138640539840327532030794334556996057061991794857159105700827884766037555289358247435817423968205965895486812879569324159628476782246847467240916047326534412738040160611747595102669155906678653677118013349078947833343283272825873179393101339460368979080140099922706264047615762637907121000607085655900055320889914128966732807441887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23726493778275992779218223533904588148630488838869631775034553755805210339659736233514657058312005622905434983929616873335644349195772116255638820314049997064888553541246551829748336001717905538686956077168149255382342602401496161070956869544892793341674647490655869742618978874010499527662612531577000435267560898630835465829942708979232333411998064508464000215474504482452108780216162484389846523033483816557766951406116120678522463880404678153721339856482639970443751672303846778902649782402486721628145941361094320200690571256914130768303841679532989570114171595576044774373423712007769160467075030491596980096679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23595916865495528936725472444741731535752888715669011110075124870528440262849878642642299845772310850671142915813976001894649258765767388100314798574646238384476334978687972595207548961149139963674358634022839487915299187883617498836932947429537372434087272540874538534950707312071856552220877928247338879379397871257914951954330953340090675119087612432152420971376689886066865765832088358073370991639915230477437869224916215363051884106504224179349377364089512157769296425455799257406713655035436450989907014273492834725161610208009407676242347359295370598357729220133025868944111177938469246677810150133384765904081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26763221928069211603454652052289062922578163417318180549112562536424305937084111697125350165905744339546465717924461337530334651172965942548731575487351675224261697772990586894881563028423417160815667932541783615144016341157999689166912763474827330471851391856731988321509240075535374042011821067934097551697391722244411505022722782555220155851850249057502734835049721323984496266222451550867407699451677665006832179136154893359840833002743776954836602513264045271872643106584261530096535596999999365707447131517067135322122694767392347949472039960865549991973811163364916259230717853172614598038276297300126760023033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26694594400748246356662695299997029246973792011415838677786472115044811640089392984245026226442542313064682827612036759649373485204739518240581343396789406589560381589907913325314336982956928882189923950317019871231352413328208359852677228980067735958229583564727951639354665146577240851519902962881455941343905015638827327502365835404923709731219658453615581225390980122273047206971174928499151691836985306169492391134840362745623796952720323594005925381285621868987481663607097141963839207625347909711422338356232049186100842782100125318841745388218767641689783858067000676495490623623713998019307304000419155420509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29413324555723254741028521611342176825881317187426029821531603216156556962029096692785320714316773232832487818431935318370145407397097571014717406586939598571799301686443162245892301041578234693930738376386368192873656284972786460662206031358634236570038496232890925724423823096366964357381724210807162060974680112458348126506722795533600958796687830219112881996745319058502697653966570765515858997619348928727349682582867095509267560756574522208801488701970210678899508816313367005270122145425911866183409382854513186934540535613305430628606579926264304878332000715571474525726029429781725780268171259506387198833437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22623836637270522373072297536909337102425635412603394486890361301500439286954345025538988925608203353773244887196305091472352409499850825504749719776478196371698623639566261792731286140271383018861144789934864549079732832250258251204696202757638657241922014987091468179625040098650139705133736947070295211114885719617289432339895725630459305420964889115815377060724841180673869017603054428276242589148314989743333051947221676721497424158965328548200521501921104297609953839571882880940537892990085220840079342944761507589834094102582862641824910420601397751927365992172173111631037016432781029456706829111676461593013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25310807936978876902560130255669908993850651800395608279522329330278982405331054813108009544002480106194056593397144997192652069638624969706849298932211755247532862954574540482485937225418461993135972019999464985952089977845791188743220771976169545706768502305857388601706487221205544426431539265869907616174507348648387474387296946618772120435923817527764184708055560125716785276230387979821710784851829807155258050843488787991520178532949907606531783192801475541967779053896548508474288669774025466804625043993890598759578307108363698681661764325247365823765346928669216689395468805592548866515279806493882519331589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24439842574364075838117573865881159488099357285270605209351929785129595832934003687794031949300212591967649037081979798830704056775351411640449085869322182874134704897829445282043336949839189274472474980120006685614723595875786708216609653257839179967663897663613258328222961194811793065004191588841268563197788149044372331967014475844819722717668668863391429086694646432127126367875089361752150583319870323678662650103475228920857797441378132528323160112568978669290364875039594411813798116507796758884170663237030240645094208522888919914108620889698816992325883805089859087490233138620609475984795133393767339485029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22335711071524837389303464977757420077998628369039250832895956354081515259853819565065310204190883536432713238888617347754791981321142650142284617198418580927405156527018690422948324407704512550079427854900259404482961568167948160824553677753605395190171749368408585443706113483182015207293985979208450045019238234714429997586714904752680703340540105834004048253415692230424585377846301457587734798871203237547323480456504444959838588331684816965427524091944774791924862733834795132749636299899838464241726558568924194669383312096312281815715875910391110353097725564798650171478643640512417796908819600852276489797361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21154096198298433564627919511909014927606832214886266937707063833058980644048134112735183481719776631421651819172529998976219322749759213508285568322245215947556564158218815749552133739557242628564825171122010615586592501960316596122814512687942234197127554915623309399257746073728393898380802052951060446865032036641238987673901427452852277630999854664938982140622851403674372345585726107398961137405776381303559734681326431509172587752531547714074365177063806297975398637902187942163507438722545907655134970480365846594325740611555376501283941467498496874248748970075981883406929177914758306620095892426894177556253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20197833604743612870523739882353805158964906184833957388023474923313468430254151370917470713645688423272158663842878685958517202048303082624944675550508539220374436954823764463473182889110090388813640008016054247901872997714649902505964865793518101875506328199275374358279081667055669474480517295819068788999305866040827928357281102235396860851071816607236627556658632286149919329747349253449609400517016303768229111433483944145888880291889291336173094328306975535037095383791693425845893892115574844581047393536038648183987906513757743327049622848355769119428901827287785734753157223008471196111560099062217215923583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24768737192504728202482855714226523720798517921576475017242467053726217223533044875213476213791411002648699439877585220857621232634068902372172366729083868713987115501360171632979687005313616738251518281388971130976899452464020954160303831385717444580631892829049865096331600431271822917780438792313553396271507539977488443558061808047370878468356432717865777652895386377605468390228081369430815211429694388148185508985690942091498216722879463839144864241693569060303991795420334042266314767778487872971190024558695590556761746495463222863360221527858760784658332728237714214788828701734420043238203407182359631418401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22985091964423058123156767549749904412949519631936033213980045626244224788611196020117704539622839339696720160843560255265889475065582339728491266744631407480656596847377179585115185620539143379992633218158830193719484925064475778243346876217082227739382180435631090002149996146309644395744906046635916076411437629460087447333107246054688858959299617733369770626478321646721109279957697847722377808900756475219064048672412718008109251572576244404569169606580729176054089873377713684857269726447923465162963910504770964106544916644136678811477595503037670469554478381726866575917935481572646870013099396520563552063599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23836083024683920061902323752457545942433536009032170881787355660251188524416938105840940782266232522206678015865341829028290703862418921608050097763139313258532624914168807288577437824625681766755241584447103596306065908483112714523954168403340341728149956006928625901433037305471727079113155681167523728881894762389619533420808501118405092490571986715371980532472578688368024514385196736796705844364516912593770989037765523388263784558633235819882349457768952154342935853482857226448392064170072072278080812089398490224770383670598931128165523491152219296844914171033193151107660107693132461772254789360880932886551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22098893313335918192714340443921874519877749580976935602356660119462154157807745068590057288088169226303075102982586059780365322595072343019305987143067943470573229355441763769463922487157349561785375958119298252686127958553821794139266910461846749482916990710443638952516872098520308531452042335965768616024710222283970802891389751176150724289201106164399885367457701129933768275958040957653575676284248957636040376453519125661838809772801420612440656095230085485233066531409358104101747842922759147396887302162595087556048794401355561573197888567459516490662324425111776338748676633013832712302681872005710067684201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23926305730494228595482552380658070063651684067230896327877619134728513665604647918518421132927786062441903971269364562403212026222053422350321071249864892645908379854251591268836486711388492629173248899027473555603408278331445422036761916473908522188083066034471975745954136320080882606909369167996272229976511598298323956617276299378414039223356410057174920830817005715904322204994044594632695379263028152425855201004339590418567545964907958068672600600510658841238729244650325412020286036819317303279618727139972187388803440712761286156936941595219377267893137212933428460301906608560177978898476613097706439439779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27467649301694165996783152861220998726072112503467951624195613588127089705134376494461156753595366098370927580239297191638565718623179161787377216633374917999209900562872121277333671472422825816297871879059293117076370887172822153985589143588808860855417033160464403450705437422734187243639270243816412468966511205094594423901587143590441761716085360171157813589558060738871029004293454595394231886893438473562061876978390557744797248601705563160746073644268215215887220984603207871715924183541408338708446870444805624364143207283262560837891623206129564314563373493224473234548046466702496855568207845094996071660563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23964189676341649122370904195513591350710753945419126993258526245309334475796211471343130258382394404730422490216134254471173566642845607257982345190155391516581272939636781111290693273745529714416015762998700481994602350108305881838623032363794821162855453456688997989643060486856653884032784980233805252142346686690391533149732257547533892584935712075028635065118608539338442328071020689095759925965806845799244105977367360512725955769292955481715030085285857414819154461488194118697733878288493096706570288511943843753068047616872874496775297221361302324933839788731776042577892420906087539589579081482808811021729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22711988479939669531277374249618001200826865018520995289281853975629303129934214817786075476440826737331039095823917174577544040352754909350414412879626943040406883901902433988360228500932527108253267290418204008783350991776655767754411192150685778553942958318450494527016348852250424371717843609368924311695133899455469616926917431267903131232898841576370237781447215211231339717718490618846089895182176667919131607726617572465835668832947771078325765904535442065543645951623699941779095675345871014250812414017387761433142043268539711357300018072756000590130150318906777809600755163924011418464589411691398349434261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25238017696679845976943537090516702317382513221090027500294076091645444721702934209942247396791045622031181945829055396349798168765104397223656282471631939035441249031410573478664907502114738800358853208346186196214824334236244724952579726375655857997298624197131758773834904164281679118161936646143866195482284826588444113033486567077821891504423172012747402017767106795924521349904199545471072388004490631799241301410381320849685128375063490465564833931811694714935114910162541421001584973714325092147135573014458063007191339600065792985819587325961194963246747933669894121735785989941344557592420427879541319265163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21315182075653448379072181236296024622077459272453368367580994404452714613247905752084930974686920121157719061581671761985474759849914169992641463564714622465807517007265206151783998471993317965225877826682650039254490955229066531907931146404872517659832397308086612925984707000573864959116807999462557445805889259933354258563490218648706390864169598226348984122938029273288070316818274968468742013500594847662059488401879787740665710750843729268451903228251224608402342752952521434516108790049658457002660465342489184751014894329808490592262846791202570554750123277723476360321625886703203359037699128088206761168891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21346088031970093468412347411436742602622317237409998301710351935313969248349205191523489064870533490230474576941985713742748342372240204385146128778961845433236103889840106891539738943614447150451667973179126703702367410515970633668874128210060166053700641686238222310664339791567611150822168548713841515966325685217954816141999919825052772608733092516192096704317414400534520687066043748644981925362761673590820173775338611644079047687871118414214249106114340026483528882566596614242423202344784960887168611766960740085129748327974103480308352571589569950637023259418788209459668219547113332699490178136261189175899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25571788030999932108382464561384046975187455683884146089227768050840590849582813540531910640389368176978125477543716561329145928518323518651704910153508284770930865508573295755721331026490811243875100929215789677080713882605129256796629147984139185905946449353498350035980978451192468842580730036307162697144022324134166684652077077836258662040705013666313480207539764725192837142990418811011210822672807408101822981355785933431134139708996489562973485971208453472831045406531037988946754353948825134412229600138798737358023038305445080833342883765970906889710330677470723735912676138476382949468587533818243842691767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29682994615473777053636253534045304915976577132875866127663715424499988890449614933003175172926893108373956881597477374467710661550764192616133890481303851673517857867896892904170670093488337164842692264804360863596884438078532153299538308778260685686360323606264929148913140463878712843831445416668501564594047496663236020443155599737972523661775629223250565874654815752757993756001286856484902411329292358470498471547020274400847212068000476625895356315596572759652331088276808284270466940032743642957160901273630331309565627093501653462169924839699406442519226108618951288759347536686978587942635780083087440139767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25006943403026682410646086817167878407082925401291081498622052327448754895043470456517490529316836873542130792907813863315150091884826644930170276123148899668360763687785111876933678021888215714743805099350359200618485971105136265649196122260844106488705143421985658763666552039446946602520424357141453211741616659462590499436959605709233246204544696614075379137507858035840005782215268495703696903864490809680148363340263810576374825508796747442827534506513617045243070028719380818625131210243783948919108107134335891143793144481806325915109350012228696644017774547981508976605261626868622522008543538556473346929691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24495087171553157618010050376613367309607959963425944202315074639183904703643658615293648069012617689788253155966585375119859866294865486067360525175860512853471233818561330263519471797999073770906415504220658325313560475033122892578885017229728399898899848136140451579422909580305639381155953443646629389249245729787192776994261323347761287981488818076172095157643280067238978833042990927422222895774308296532415618701699958916671086966113401456488363843535861299521511968742478076565109277506837910044118847973640128808189375447366534718019285679019778674275304807213545418695113842991665500325584744718673023296891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24153950429668210771395344751369421363746935486462965420351600203178104192135184335410607368543101677895318412651884153651142897522562192850109512574683589521790337751253933221083812923257526932044226815695905536192048915394005288763890068437593186896068136762399266219252272458807511857469317663942476069895356810696008821995621807285906444094609307998241880496290830345395163372661221656977667170910413986076648868897711596751015811233341262808815874909259238709052789515513190740576914418774601585695319322014901740087892080527439290968721918511847386152639995625033107621311562669740030444380888229454628957102077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26411235326304700993623058102603311641183543357725385877940910738212896815824546534552753046915074780176799173090790763690118357720135620083401073223711461056055353576458409309973773047563077023587435482293051038690362453620911538554735763336428842284668356222937180374651874405591388090926284302659671510538245510705013427139669024638957397171741558188287192000117459285920986293444704922135014129639401003250733898805312281293869239437623885442146082619758512068798138424505038758245951115886569849245233832834088303751480717761081386903978347150884563819624924350799956454865383096877132865430895015118932759771909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28021553851062459859619286765914511730754351015075813337788144814149275437710935934368639788266082457791872564036733733483503506435877363504337054247931604786475405371729949980206560568215342113577557675212695967940883146191675374295118165532045427365727870125050296676220320621880772427107537202259940181993738288772080580645494968650405425476341533338216988269635131083722733596390305194020458344327611562448398738610675320355216384598450538861926805391161295315302631240932791034675952342433053831852412560092443819171554172077105641130881456779597647312306618467898765175858396440337783979353746265904423994244869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24295157195380786953006698024800519460459531703090188441001666959600262097562068758358336163271239115441478659011810689756692228697276241371906701314822984885488385065095528759436067532387090521565789503613811037917765974688785225172500159932665970284652957461034225631302832781562840908332715855634942376918193744712200972813741056545982222609534781174823425564902274329601671672401017453890413751958835112046024368161634981012324754926236492279792711879615125058847314773063776617322633551834144019100184516502052329548945469479366699848225616752722346803323296498419047553252537255906150448357680127092586680471937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25837349485199170855749478281346890663700277191020897324005223642486679225949292971211902540908641836758867344286497210194063845014952358939120464007793005383002859596418754038312584293561400777759851167849450844834132515575900277552071614101303469477408003480177487706554878916258572618559261721352167568892213463564996032045705327678808171222751744751734813633403780874649474284004407285816640997157060122890246526769978187812419680689236769089190499283890925714469194714178442143807440072470721309815898971577799412281383372996825052108938752066360075759356417012839994025784551836860028493743525279482954163897909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25278287670661629455823268140315774671232282673311173148695014111838121770781389092222682147160667082058991566678734441559861261439387777974774330985201579865960825078714033276684960510191337292233967362885897345818226565971693603887605854775741846497846750069754715391912559792392897299432977714682502278764000572195139426506160085971418954163305956607231235059763757605280542126568842685862654748793917997735582788396364655514353462953351000598709927097246325132134401907101891705308675934455167302710440157288201520439077976928080196042916437311740469869191915968156614657558507782991142058745075844836384711155559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25428157335961360550349290196669005601634104383144425813700488758139932392367863695161646631368817284252243171065481904900176779379767026408844824908829182161528121168036814269005200573334211161327549368598110334033998341145386891858348290092021479370913067688734152326581904047192007588710558501896437951078140652384673993461509679960477401250416369444454355162940908583059909727993803468787092192294787831091544741264941018139809133239375221614219358462395083766706444029523171446930192592445313476943600016549642026024812795858282559191237156552842307141667849964747581355351484838356091461745361488714300526422239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27696048328463833762756552563546402971761111863738005266358785336109158600974991460121094529515506962783875583402612427292212325928882658022534416878861563111843773637315297837564607019158097484925490508634552926615791997031396808481311684142581968434862669770734021316898172726604317757074157579214797897109550425637214909717574644407070879262978022928123064288179401959601261416857227496562403289749581220114352486952520897779962355113222829646801406987629761086837850139497154541253599389195628222679578725843314657943227858729862995102236131669731974178853386014085117668936807575864250982656164214028426505741313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20287763955338929263819810472190508284233794350304495330769574432073743930180713157060946678808804160937763816319537856111955790178773837021064072306178072880804697085697956183632802154272012441896181100332069445572176679739431755339792896236925819969296312843781819028160402999450167697503809410279579227672428772465310961782099684247106879233462348689717318625558585905377804414835848529530386940180448599124696566810230657281518877776604355279547831158870344462848690973444827572033260948033775373404274989638664374555819242595174427544370306287880934976456491309046846160522295968277593098991726350087227448014113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22980284102866967737473130360996393702940090020456219841004937788814058224637143085270660658757946945770070650900041608972337109153997982188627812296889603547026632055789788930845004068589771199765424308502004855063178971702861471530108538877624456903700104198456261296257530361939364262969989301744828969618880549090642859587650274586258651492071459786674762065730900382258486834182586007451007025120892365114855990255563384133339987239860350334442180647651361035706123880613568523675686587754975646666681038897865343432524945820931114526330876500714976873669568956591454452851672485970419969783144338637834249577951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19727011785640463479845569202647285598391968090282375070755385910955846014644589613681613022802736397543727542603702445932840339717143438858145597492779035431988445912470530066470720047084790251058205546390663605514034133192605625401691931451806493750471415364030294840486385397684224297264127166411303054169848971965911735243957314179195166569924655850628171685410783134792342620983907876688181993769915125187753197842938694446605570180295781243269673831194797150564166535178422385387901013865111191368945962283654371067028017067751717627576070041110017148813267853853970351181619269405156531907776448569956069907469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21055759597910537080007547129377665093963922304304015976035389450386156564925098946426485456487345112410193391170304801272074761820289412168365650208975609510264187543776550346697743521483468686582229182809491025948385905367389947018912982389321804568671414862810758333087628384957479557502673276796512966240525512397955965534892854660191020617240988865118846066332149032858136987251575723710283637567149168721023166965673761566375939521297251303322912792178348628897340071072277943556635524960461179100973569878087931661189085974968024437097485040581831967546180287144488005713214646605849040307085567937924007412089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24281793440098319313752711537743461301851999571102681367802495046374292238470876033619364841656792061068393614824094683839020624650492413191078142846593451061298245859012418986672201052066053556615428656528648433057123688818484255860981852855507512666134540360462475951664536816885730327069902551889007373007498449642183348191319899358680709350880748124969389664718611486453894914791742848359547318055268198188843522825754567129530355273445264364300550001656923384540967772614919877767140717939882104023685478091227574010520927906091785128210351790296583639935312616597638379917271500160225044110783463271051729428741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25396855118650245018227362927343702933040128013123704356640429063395029585335112857661362870573289097275465142989983635686139401195278730579837537701420901196163840722462453983960572075025818764803071504513197041661626753785763351083066479138700397078845009946637636608806435267362259477928549254352289429733187250137112833927256915159408039624420391557184319414424898009605590427248915721604093891704547457664232118104705259974481357356891845356211845706454469711388133848250475695999163423426474537095307884368630056800921720459636231044200004553017420924032660775964366695356148416726437934979794974470631832860761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19731381846704328997538098138580808836619019039011410887279950050228611206402920130243454002778982133064640180538303837370454635704819692007488375688401947838988663251845543462422880527577679252783519579473407968065570909771053384960411953393729538466134453177584125145596828413449558941301941344397672522884467732174488320135817538009585921118390220967830998922850693187400091912826525820111470451645632956964616710198492787920185363409122113797449879130651444927853503906935538035934690640237350310331003946865888662347412952181313924511480526819186742983352286292390106893141324036047929790748701976538644188403753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24946936194802477450717010499251055016949596448162205393481412811338445620864534740708973144778649957388183327679620272031225726125047180913720515418555050301816687401098265854980538235080010005504891690900548763989869260285039704896946673172942919150633380528078574561540402961181274150137540820263479000955050593694202756050511875814126684618562910662434753045960002635422197257806051747955700797165952277509633177060589977566939688323373857159792341723614733608880747373423778607111884894372782834598889889095122059093463053599347428771076120599696861356193796997619810971700747604329660249469378912408195402239747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23802040535635558662660469272860020510866734955203010487249826793432385263431190738032416842583587462863398895172239593524899557777787200893045881677717589009123687448985669788582295306151080213024357964075961614791909893762817403009415410846365337951444288735852606449623175759255558196250828958995128454663057788146606576086558129690174572190286514510347469855438479237504343005791756977217897239567034183502630592467664895649073919668538663316032519854125643289187761368991024051604149721872580664357219472979408002742950207898578747552603130775238102990248126237938492047102465303427777198845860561557821975960917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29103881929734857748913175563228979605925337371732332181032624932448242077132157279295573868036949162124337842196508401842749770293560806703312361463094744934609264615739342272587815948729082635699257697494295068366026886630880188013415277251634916568947236633428094574213493174320273527189295061707849549540023982358363059527300142391705435212599397114996384335845767872982048084762112564405879580356327960952251946365431654040724832056155163898289386704490835931215222097187773683434602503867266881781496619343078565638963119833131176967418585716324647087131157163247368644796842707019813038096784824202427046722687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23483578335822838655570950695052682191023047790133226952397841586020542083146858294677196979761394021468430520690337630196151936716462960104129010040930032585098504552511162686493019050131993856083272325911183196266751737354770771905358573498566227085387145583092828067899405701179625087514936149648439669959264699178437807726856176423804038233710324605871877866448899882536075432574213645194437487847566852877244532929742590579774922997632264832186253763395130571956676239157882025372190130555144739590180896194671057635426980905046823643187219473872117409952916467141319795576664176741969230730156824207100169861247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29912970610661479459254879964046060157015636724011616985167407066131263621205399324008825978287163705027226749565201401463285688740168353787077372778027967297641289043245364580714676535591835127989713891428338480930882110107648152071784112640408622740865415616737112681148420119978054809020806171187610170457398900104602319345811392216459965427747995436738699911836634490772855939839630651703623682810580247312597965838573494475132437121023114977365177495809151713834867557986716132243763720628588028586111612305584624644772525582778888047754278924766932198678543658281341369121358510028462920890060947830230705092913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22448721274129609598329948308691003335320813525701475625639425633995862045568613916891699369098652600967484559542677561517823865064491687491557522723673016761692390671736221574033935572575965555243870464464156968390276689440462036760889439595217961129555894096015006469298505127102913795641389450687234206198264101114837135482173785774837193160313676946982962349371282467224968343536120934068866481716534596342302554304672723075010180243293422671084068098028493725325080509132446139089902853841790892540338543606353249973137194791804590156496424771655620657569217957176600860464890566689385255306350401551617261964779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23807750415050561252517383067734364481416588314196520214718780250726950375810187551742293596782077546684682650430899112574355987242925383228693714810315888360928940658862442972642583238194254062075687559160184542490064671762710671087364156361878260996173979969090332245198029504056547230811424138276775767771733624621488531662876464434558819316709230696529395685313579580152910597026492664392960482682693338732078790556985513736159676728937862837750301870627020837465818758860080697839875747302688954660379728937369569978076701108411003100699982871626506427639868752667696595778633850135476241637189226159727641444417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28465354210416634605323260497354179697468639203172537104366358802185838996692105464964058692885998099218054342263222481839538995464394234127920779553197429360317751414236632160263612933953155911637481542199500633754324685561378411561111992596961868604331552858675017804896846875848044980679929683409921683091095054507087879397621026721454044305380005712651065683143871031714282800492202394287771276914584272312576538407323208754217647350115767883763345034243162966204467070970285971372414502550591168301790625424051851974370564517391724347104977869751663961773531840688149667235232037308782383751067991346763886662733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23984993844003897430921417636230007282789379657448376201112289211018822647103863335080514292388250891786202493683562623681541254942370792849157792014536484216617764765845617090998820916931906781050871078817494015381639070465414743399859841463643382916426687885404573332458501757711420647379917049201145689706762805810177596757578567017256427448386194171936427921392111394493664969643532896262599169402374122966911888319672375485951347642918728784014652737618326073127888029578076454562558568054797562346998412046759722182127148520486126789796253769686214567169153901956432054256265155120302314373861216435540948769667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21417155421039159356333720185801661682829860842500935385083533373711493950370060343522625503365919877311744273312820084669727791009697683023612103535159198091259993448495637674060355003207715702302160235948257064099448511562002607758332452417715395293343946413082520631535746526149670151570471299527973431298075803267776247969374672662850683523233356305705122378256669737469944870446686869852565342974306939146029384377329383422455274529724529277376864880359888774637060224718063586736784631925637464119929330890029169993679536143541309888622391590882023345868785155775211264137560639395384794946736296526121009565911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23184730149770326327086656675835401592276705874286004431083478404653152033245189784793014566476523970554840666106895091598589969640677269941825276685794970893481024905715776844058194704446428750980298816650769860753629815499366320878507176466705931499370502147498577194385882534401920245116260234471500894705207686547407533256065430914543025840139652441630109108314318222332410975242212118790960868872251105124385753797715504248920297631331143427280274796198889365554760629426195415296018169246137748418611852294275591877809751099703048101330560087743565750321046787950681626014593294611800522373207357349107946128507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23243773749656662705384949804995889765415278364704033560181997976341786466654151745299357275777881212509077914112250380350586737190576328738867588220930663813349242980025682543281481457477880597239723091547353020957042721671045406116183458782083170402994991746913111069989876782003234285211323831135508755958110594410034587086535620731661173054550607946241179977054270499489913101401966863570804973479402001799270733840838095324362337986197615213041105025039104071719399284951637221548103452965850371194147149000616364247505107930807753393764088140220125357717586581827539300523727318292191147282865607364241393655237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25205588599221940661401804242167681231075847140128246363417191904891999117848554930281911176249919251813914861027836161128389899858362110159543479571320061572641080446030350571975924132721442827191667357104473042450082453586699787074210839008519128154475911665441148374336036180687111848868066642898741801237281276991367976263897519860655734810299297621618828640981162024887664935453814520528527335796559527368380234099510346633245388636601040409224349124046412080027858572120188941218751852372989476917294910966640625340296311935553808857989978691969229485570913498456641729389023896093619541581448276284570442336511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20865387887377005681351804498238523279324679570760496634202776712889018816740628600712750278825180359874126881235055016336596785369222495802229752168110867315112754902817167764866219950287613194958989444479735635654615759015444958458095881258383867051476241162224347626939901965742088564193609449411668366339654800133225004889246595953898952194421919201671762160830378596709497162513609743582838114186648567608021082475503144816352303855956798203802197861361503777328058054785042714889708588543046101574765059719821082378785442462700684520908227201132142078657064489981149500432252573541368408861173673686853814136589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27595186020967207046502909275214051052792037213905845036298994057109044293072856349984781199000690535640968159975828253604027098592430300774907602204195811533531637377892276812777161626672104449794988836032268679485516074197375131459419199400950458461644232450614408833850542591564449510235712963723592977119642460579931108516628836190517938170664047561786688339408311057661089866770686355766022923661457306305700239634443955033091248677656590280789436499718524253452702373921454559443643895456143075788162109912106677223907928245336222656910983590947687743596535112677497278133879080733205955002839838062957988033301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25054731407435298113257475146092249332197242045159584834347104801383715498342809102803552813586881450539793833893610043877036977658096464766484179309440467087330275812680367917124452903763490983369857749685854252867588155520883530377845861980884882444061261942496403661849190361487330866746267371078562110772012373301868555560980040735423277903537533904776129041909233424759451886774967466977272277833271239598345180268921645490451033111334948175067251601118197376812026459768665136415330551918961729920643563692757989421621562938035786650305489681822974944785240884256036232256999717238760589155623064124954648547001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25810477951228187180942745767261159312328182292000781126098396115980239510182265453847928131445658017286412279253571611050851398254667682727335047082530482202702993259595929905295213269355762475605188675062754903199056968472636708700931160416856906392732578357843734986924553505564365447482043834303132659092671228547469794804864287867737754719523964585051275797295445063474260245099281155208388658975279816669391432787949591446213334138243095624677151404266463571488874658119560841648932317191500462649373606224328470769512968649651259176829451320362302840925628830485021280806349487671658559923687075232781203363951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26805698804042296911453738306987294025786621834147349743128509117050905054895425659623327457892295710178039845225499782126115733734805392410504571007223868991950988499812933083416815383932161287853863753341884272351146705657825092519401180831930742403169442703742184196478246063549485078905296745555978793137454881905338955260360792563045133983122768436605756090537070065535465334083436994895335155215173150540782366796052009198082873606882313961425051508939772979495681685296270190864239421633762286468809667886951419372466807051459624755997198315544371627610035690150059127715982004939616400485643288270439854573839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22148816765242815595105430183986405298558722791802654969922584622905791498544106342354938863690059959910079340279052919585502794165140971875798220463723279851854979143113573341712362934253763346815441022127648443807692717871748611471027711866028186040329367870848878803749924329413984334628301021283978677373333183445135535279565157432666416882522960279694303947927190744178736731222648018293831953731791396370859791983120284144163346216245843100635259538894159103395549836929271282050966618426602707741802121304900811810427980781864991682827412478642638711223610507315452437043273728421879158869672760661086110912907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28473201218825145033863805006573141561247915736613396103757014250328443493313191324692995164569793990771256130447172366757403220745141658054718331237704892719304421186089257372600135143807697835815155269758156265137874529361468048583111024521656892722723507342977886335919680299407349930132412757333438691743711231052279587474146482254640236015860114184272262564222083477238813066980612692604336137984436818262402780162881808036547514568622528702912487838197304540555198708042875608394255082118118209498640779655901441430892867275009565547684175908588893139754227709101204578577593299942811441329330136783793190211587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25574501626768634922810859337433378856567902855304326310857399482314271071345636950864958172448610407416009237197780244518033185555580630306505772026964282357809342977951536063582823267361051307989395497430471364605688589168743624256663778852617458987938651775511543341947621964494213025396503693840987512004529734299630216370491127430759734667761450542857119331866358190810455257492016966320960123768748610341475549435095726610888541091373089204934090340713741696374974240329611414048814588287514351635626031278890372043791230830041924316937992711088511785952330499759224668379271564136169297346049198144647601009243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19034076647513190193738751668579904888706990811195372420313964472732758631450313618927393409612024705605701089854198032613210511706279979103211317602975344071996045775909696777031845779882107739526455311143232045429208308418388169795992444528560041666249802763457547757833542754980389151727336601470417313845240918542868569396151918206355299679300856838462478678895872039443111081882758282493393266182178501336924321066168290589159892104979226332433886061222011732716016087687488040378795763352729340980722812635519339579167158092970348465736626909285128240839307289057024861734803346386117889823739141550539800991131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18581192749316501470722434887576310409263398359313523070748829824845475888397226227917192511750528684457976442730003558914414616629586634127906566201717675986488245237485818635950083306216522723730578062189254722734755677760257773566580469550412921491502165090591221834692435709672336962921744739493610885432601741017591803033427851858662836634122381453681719443559972299307836528623764533891092931220510249907021261606946626587209853003006011529659684274062017864698989928118155226590553232490498375460655456418614465106974295530100259156563849045078917502280187793691088111405817832197701355604894705812867956033691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24531558353390791289228772788363043137682041567613360419181545502932705648689494948043433068739793112950900905060797138586211176902726221390159301268185007216969988903739860348514932407455177761746632258459963884730253932606908568791217099430203882618256863145641984298210530748725870661542644139669332572192327031067248875213295432729240907887482816911011993947470939313496788371004653017971953094984842098467707227494796791677842384764833501355858504740372086134986384536610060353485455247010260150962761119974368024072706402066840929378527198610368534113139412365277902647323902855119745686006761636009826408737551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24971007570568760386063383000530072063658262143848270037890459983678681999711505324300491133933539526761808740608826173388714473750150713342366028215696881478159998588971918154441994772535145000763159569433872619296628177938873543503341864078235909586619785604911023073433346646044589991739862477403964578220948577081064443568758386105271826448687284574236341954088029085670198865380106942217064457130529785304857120482710128223706387018208553043889836619651196658244094317037723527337717306901964681871122318724763425698966575741494868305678148902216499778273834287768533479241493131978797684101797311292065636310751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26661088887561860784748794524967105743175352157117281585846265739410065933080067668439243585863377856421957854579641945155639797860299328469305562462736837051867748424284678215673693885877492850586885413335204514940633581222350341776001791508484726428690058622943120537224504957007467945861594798669159374919335244068433428394886888550979286664613098552931663483933812555788543870747466560206655389185080888830687992295916583543057408302622442688584102366411269731593695349867515977084462817503339598828326010447215009748671740527702724923188458110166584837107172075329887630965478356769730591860466328755373972891517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24156481049811512220902527881478164415355765989142192449269380248982581909327345410673168882513170150130371238975858316667903108501351863526158949138479546239525458320805952537424277127337334355977378195691472195475070290751011174465934493957212146412498925048390108207806230782167020697073660969906492209362684588036077744255484608961831546367490124062952310035916014738897887067171623872903470958956598857814141427966799029320751204222655348684902481966420048194213167757813705204106462320297899737206708381905658212830153767236668168994293393116406131955173618432744025022141332482990891038961369512373500010053441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25883285097337945651029558833883652654921275378096402016619855515739871172589579935587786952537121411765303672367652795268814264837776122009646186521681691722778879864358336575129937750266411989385379241148083877013575967289018630252589850560842950593402739308896843616784684206522974862296477270998171704497474430588334965534216118904515363655492591824927167206269649675761190671700362039285355702794963248073148777250839816379214217814903423292229990714287492679387188581998575565831576982563383870085320910417739931534302699400423741171102550756766590558311483666117381026555878383218421056781992063995630269700021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24535414041413319401932397024438792488412206168261379621134151304231700579723102574143765498535292143262830174809110427779568091709912542236590348738018876512654993161776370761578107583425286647909229981733446928284532177094042093302389844014471831862176642932181194345329218002520801270386316337297423374645217941109014428375946015836335189275107794193018820933131053818679761361324538729678851369202753433005864652161651655231465335679668914296706380486197504759425743441183882636516618937566097331355819215968125650328344511188036030281191023767605823233608341569593409821559832106921912445446324592577154061681843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25400096420471595569157795136365462569808990069468365172470467177649271204226558014566645075386780349134548991279106719268797093754680610731218112585728235262680235903569965731011159183662233648125643651286191283948534227884588459160571589887290418160896106513184299622158294637328923124723094215668235049796989500904805042448749734174896021652622027561509070853982883211310986573155429336932810380014386582619435639558403944505291570460655020103105653256164828133970426116784399627585591562520026828510775574426470615636143576562755627006464237295796359430329969289957578507130604958636722565657308940020907730327131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24052471759470513338532376436551642437424289619975987689966032391378346274617857536470281754783877441740495438008635639464148872464559476119283730035328562473705439077896351984311077643370833632319553243796844943897523451058442578999667317818625708572677361012488019510180925325451430032342347794565881641844163322021023679884355482780020724656883128813403730134200325225611819978071490554231257906968137408623261308940079711053944979171952911761969271559609327185050925369328610525148449721930911144475955896539982423533964423841115490052058325944956995032758219313709538063258209747763902722611793751258336427120823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21967737112681668220038014306567814674213507073460513703801322051475438331866793858551837141984157177938361010820115240784447261941937474874965094239518379556666308232151177620874366390200712983235101777187315546837177075630272253222845561819031818571029701857963799204745740779463009422205305714258137086951915586299998772918634304720853321185622330023707191660628051153975077283502451293231548711987318332205641253117271814483611340410099813032800309439174385850560578619779250137538579235722990781873053614489822777680097537581985274372539354894229036271394553524683236663502287153284910641207599620015740996458589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25289667591529522596597897119408192410901972988626803113205745255244232083369452526392093382192966890289364325117658110781056368105567040416971322151539016106740097496211688472110081796354080403150843018052985378051070655020772448860369817938797761144864911370971318421919560757395576401516159083933190283559883101004207032678185438538325289463624079098577421801446094601763862876668703721539343328394035056060937951665231572178004211590873944336878527737243046478351257769956585965207345606844821001601791012338816549104402577751681204051469312816744219759174404450857911746106097865203298247359199273297591778533541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26464695552623817733968443458472880978066469749984586297267325825416413339437124317374484215714227106810417657198027169440723769603242436053359896034823248312907933206465456408793914014513956850132158769740505638735986878019924306718349785386330116556578386586190783907225972753472540506412342839011791325664916838352904840940453090472783360674466781493959789368968969176731296871951270778547103490502407407803171936663395842810796507247644291220281299398792888563792028053295254487260798949414172178507033621745625030270280060903301823401947035240614904003161010016904580896471808925244901808391972809664210795842047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25755482324331592514498702956092898781007516052153269506592718002909729208566689011005254826703642543486113452026151078628254565676005941764088733287477302426142140492625418083677525086713364632406186178916681318936296486529981590355013455632741728775543120772966132885861857717775698492693182170107965100136403425238707287736149836020633672480359695762082710618654805220564501876841610355531532637525426531949357639345588957624631059316151256141995446240427522209350438138978697440911228404032607447561072326571727633638544296526581611411632798407839499964087409242633173185282242077500013776510223613299651425715077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24691432720161004422355547832180428689193132992862873444608794896245223078169476498554906338450813428639260021263044971111014724737010550630583526816129425054056244788136052060422251623843143530992596159386816596030299951825644304280031271544048787786986504275495566504449050113946274033290286525734110443999715550985200477264583518740736325208140077157483570436111037356516683362737037925597618330715011491070952893470491216512238805778788019111449688221560091366836474743888906632280321374330053180040265187777159878709347073876798399554032891730303695050332659440723736911553537539664682163539853267070982767395707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29308096745338637766422336395424939546338003021570454952127128155457718762437470096238401013744329960930480031813617919102087974375598364350038409309983649145296314930991115773360479412724552233237658165490024717472920455696050391403152243798522096292877643500521568594984699642750691516383083968353701411457342422384602626022492721071796774762644752144289477418586277898032956437939387471843740849263104815951829645868408307489306832644226907883769547675636430704516180706598641958187795957647382124413487959809138064282263045923524060469497921296295365174491077425179299755450968859292274433255327718385275930493013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20779727982034490273869130481106759305441601521011182095896218256416141743204258524020172819727765612732807032904389455958115853374247157485803008958784500291317881470402091844437051209966649313766388949210071876459638580769246142025360864501195131766979919673279074209529698247701222582053529809191483035409097371313478289052687894580969100982768863778790781247880603956957862680557222725050392263428771277519010179248322232331532920876954238191318221453162214609938739812994082626397072163307681666219244549514246808917151097230616595239392741709706274576903599940663221670990359945366622599008251189685756689947061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31609439913717529410962352319399603185238275666356126970978413087794279331540824598730505084672240816011129525838099970765459702925033118280554066331476462968928274355166825887113834260637746360036626604782513902241055375022293941901198932033523152849516825211388591109399227371892462661729549468364060055304258127299308810955967753723623453017284590092207150275430646919907676419993607053960500453514407167066515583271151512577283892738131299972337473826825919301586349342818880822641136234472819385349004465856955706601839548305522370524064563314766927315450430304456936191750724690991841471138838327171723208621979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25576277634104618638355221052983373776398620101461555580967465197064457255027896326739536282411727888395744042460172193211386493379725181019352071939736399221375943735372836362506014874053930390812379641538417663549055544045471497477361928547397694026382160375329246490742716824337181036622962279821219975201296332301209454306860851049607103909046597372086927302530971941243041139372276533869129095709894892671628806390780601737386803391060371394284539696201529745969243247919267746482533183462081619556566635126327114484027417684570166274973961967259949696797445960270853539272249772553276920372953617299337858779327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20789218461306928873691290191054334748120551922988530537601503796322156926488942700560329991975299370734790567844392075379183662001892748861846594387496455494519503907023959539315826428892204230890515012705194170306025600806384638327594382148045922091286975662923118222079132297821088353598265622719526692712598054057568381398321278249531304731715625226367945501603366033290750049353177507160170785350927853993029636376598020408316306662161614078492169688796253867616807568417525541007476793932485576299839797670407826771187661864860673860799667690837196464827220106805391683946442779708287492655683516410324274738191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23618090268629755412548097227559336874124856692797219436214554544790095765188125924232688624795513396380788458150453958372102870964762613028518373251032302249735522742095276090068075649230842385238096765928952073790488439914305289487040751817030686854211099890481829668445120493212830452627499208008390864584433768039903567301207729675474304999921001183023460076774879662791129749175413270642534400138759579349822801117822219822287519902742848842659822597071896536068011969813750386014221373752863699202892436832231655592672350478388686397910713391394004604384647641712213243263034765597392805566493198844542118506157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22389692878352552934954686485309349375542643028816772827719041738659561751478695852735799696776269827023014761965365246026534471452279846137136620159335545539926909072452020246493248127120881016488607609781205992426159823249379933806768796021816982162162850448791833041864498538458782509069968456930235596681871645605095135441521402903388797048565366764169794987444978305690025705803504455551583283062879023885444409183172530355222639417813161274775264573242251142310063834397229266861122588517629527330867472519086369698254385086476444400374343588631881322002940992206470099293615977077752470181868941535788547389087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24998094862288056942353070092529531467881694567354646987834877272173510823374183852862775719249798658762104328466251701190058309007584946038549506812405012252551618556713144503314510840882755209838947142044874719132416493936726959364852663712901224781830053111621975602874420326178061863663408352642167003639701562080682025120229336296484567299583714132959250176930969735739363505203369429540986819966024275186090317317193904436824569375007739026926043872985112075665661845447666936596457335504887284049402350887981107557417123240159656993360972122334860069297923712667621235470349241584221036210680818979001433806239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23739471695368644923523477588746368477973462140391362075596887023373908578746862346092134275393395014974508684703892997533286241031495354894260055089798731847267062435672923730937238926894131645612993337187268992709229122301033157618852636842807577659905664429526567924469072716034855600394209940006152016655218473945889957856399336366844341808196593325521338932636204440941228530448481051445223800596890415913753325560374251817292802923750276496517227852548248084954599991796827379377008486407072103737854817160160602102945769297865139952226330560880991708609714525151702025734069481489401902320755996628719655394039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22042411056333058219786826586582586509178979118672423242397712975977639758105145792879148416743350180400819779510879915257165172303852552707185034299008911966727536975647309027643710069649761359584199294954725648675984702962052882693987049593223668720120407373306694780628435048148435673721612293881019127007450539855434199631037847728425974336689481467206987006189384518381343880256733832620825821777885575632678258669207315631445844958722597635254379503564716359612253086274864199798112357705706568546448039085655951923410421037570399872414416013253752612038992661598435559089586375346405660796086135405257227192227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27722778868424657696277557997610752201713588156397379998614012590970293833513714396034928647536890748783778559184591700346470166825575996354540386252522334298661054319291039977414007580553841067312787293024583792951783287132464968329594194761115448870000500193084096457620621706979737608912248775880614306749134346938183627000591200909060640980872576165044621941889793435475604177078240154603801831429768730711678535765845092164566528711049749333112452978047830386315920386989206014578401115443450650368797897860919681522633591033744690418166122344383631239674363883266477567732290152614116789611152709532461981981731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25968830121057700671634759988641447998776526754940460527465058926628703019814059058053773062457289351124871871161805134383745934029852907896306492742410883112568469780357242098999777073158395336172024548299181952332505170110228306850979272373183285908396870160844398968348215036234738881729200451379123877463950397167209739252267901467615028968606111296592249601092064443498302092920686598609584828115168133147623086020231928961338174124099855456035862175009998465823606628537636956910809245285401437272064351835160158182155361108586251522337128889955634579653440087985558899108536125314895452229273136154654307140831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22271396204062123606497921513507166209655778071869777548133897522344608074357871817366791746103819202341584392501810967321240664050459487662517634141474946634445468627584943856422643230792700792485751055723419889985738734007087157948000892914061987306228254554512517641251671584585645460504166947456490393880227313358014436496169393231152024961300604760305060187152953871890639729060417941330214544901694028810073007291440804138752596377613017664450331939904686036791001999588433025795958234736483172628335272176637369698231476783735535169556208892354277986403046884805147742350907770173540111604304368811095856775457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22781972736002247116634455970395165096450338534334967065420176446252963856867178460652089666684997200452390499999881821821317752330794230353342801937310488919994151270254545877083476286987323813489163657891217700094114233265640837260052148347150395290226365840590242658344386301553605473526839096500662841878576278894906270455684582502799403040474296427860079056223837486337079944327934194471839828754461084287205206010099189473575246995910580277079509671279033311723175844006288823555831674259983904867781883913868954963220511219207237213258596303668878168899414388914992771175163102342485835470684003409602181324667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21044791968284464633586101006742486044481677844337252945242572103644733009124223707842717607509225521575508476632721215143527442071875965407196813665520101388230506275925780588986092844454560933472106598051037576691495744746830837061741871059796855983584062025992752642030110270443015263391039147818990711049090422977600324293289094099727284069878351387627096188706279497457206348266621393945411708127548595116841875860152158357135755789799117475893730018536139970821644892781686933540504074962131598727034191409657388509873094378282258483716428636235276414929265494290105142430245250147797973609902408032260060587963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21368266565377427953104296438659958994340772688798586129259381618096119535403811663119645628179394263806263542186195043692796698181789750613483219058013852259471760442023908955359407193482994551152413799136115044887175408980808651507915108468182901174509780535623069567170782358421126587110822741098474776040709298374307045960601021604818591278648537716000040203743889214367739554571398747210294824851803923265781069471774641175451828846398985815488158540377828692827607142304682770198305380770892439137204739463928655501261873061396163299328524044496342328810701342570440328271002950628030516401853608240897061227361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24385309604059206572378623334080151539845766556672590387947134055075397995041849069372025612146449444009872909080846602615490596065270834344224903683820802218566105830502505838576762853319259729651198816442410395588354086719122928068305452652327432839815260303713335060364944488868893580425073771842478865103662112315222539621430318634012145079469040652081002889264366985543591342852374822731239225325827891609363829620536563203338797006231801325767874446603689560661520754144939527925915782531312566338699786725896604601914218532719761796790450011419724243137045022663017166714526897185731232235653961267882151355049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23463225515858864762765363574537168952702934244735281113289639856725673308924728700677026583116754135659037911076774400284963542039949559865730758308759404200994987963838897347597760719624705596333904319196637303014253072170728760968320938747606875785464152177929953673512722355126502596905692074687769274704353227909392802190096687480037242193999789142784698614362160604625574175327029203239162380448070338117017620127942232333983554400042995316900694801940644227296753213336535231010654739972008330496630649254838771006553514423250238003186493465684762861455210089607638111947753822682828589854750421106999046715203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24026154340820814349400965465867912746248125494689628785788598682807368118558122742625065274155072760578359476167058477014354889937484693360113851917099864469531694477854899258058163776862718682271126927804117184651038026078023388762657405014237385356846025566669694060897680946765021672573914920843643099167434820435080172135288922906261181829955335224332828880306625260616016963856075911098871157910965473280764546321998481105466685899794528663335573500194509623941788662139874854295433784165584904282158614576806625315451768962187291768750276191866192641177890120338357882387374714055324632887722192211235785763903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28367971820250942712109884778944189233851907638074988213320811279326431381123999900436981197818574243873506935676629238303134457748466262177317745951027181404440862161879861139945714439896987058480965604493023138103266600409394340193736416646042615438114028977183966366657608996679172148953209223697766716107815928977719473234942113122684784476883271242514763312169708852351776977197117620614225781547513243377884839456181354225164800071196090190339243127735874537812795211950240895733021460853596720415424939494088162345731562234205042804137981141562173464477188998347570571415172017495391049541084297496672933889473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30260853284184385756355727451626161305486128294086502231036801921172557715061071284634773792470791874603928568251558008310936912528882505017559375058884365823032880245899713469138450674589214528447610439721174923919820998932708065401439895322746543082105072588930740050622707514888553305747168803729087201803955614965856486156466909020739044858168406889129009716107328884353785126407974334270483595749187234421353357393275450392834374148021739881629610250551459019623791344285683266216066188922701180751841245416477921008674397263842496090493616845017614007689123183488715399041182286251777092776366047809166966120609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30473681596760289130749422219860435343135924711272015719678120624916319215033519908109213483168930588860848082345028136655828512719283794925432744914345889576905297437086401785392647462193805420345744655804010684514862749383858757330498749246573575445437494776433113687836890655111669444136551837071082190666904760149635580375691850129948632232326579281911850429546028161866103237104164760438038832469127905718589812576094242506324886127504165463869774308459364932506347083025282499883365882413928139536153976470972633457346095390968339455292939165276912486799256607921013174236170755352409053981756966910361835336683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23391736111097627667894529630336968343013473599229162756909975771354905314766654839615556359722832392383061579048869266204723202949250324128475831255685814267659650428761598023154824676102020722071111567742192035833587858035831829295302891710036271929475287493052152594821466311584454462188363201998940832207910449391978247231830793958273887218651178375060331780826962412852464625253940339693112260364829144065330671263237055188619371964604409886833889622029941724090277584193959710361660454626683392309279793623468694139253922109844033621081340044109385049301833955503335249428697899212550979710318348609073269716963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24919130311080947768935638874822050241578463920433178879550123217123167129086741426691714915145554725343665569080674597150596127495820498296891398311090385013070040114925192866777804921849071536418283893306556684318727302404513600483200790546457112985174016606960503143166796081123439101063553915141086974710959465791961869662305132704774648636347522488998534738964385516612229701445964658202015478792840211525626045698757261727778626558720144395860635100300659611708865033673735106359092772072330673860827736922005716192600714229583247839824870789100810793163713147978092777958245556589855885181145562767886715231613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21194144314405227143493105372976838333257691455370913058126109935372278994447001978258935446796715693694430137919972318069156466600860160495843341926106167247347214511139398052289442091723247704239091431095325182770060064195239485804004458253990610445399682153180237809354074084618142141382068921322155626332265733547288852600172544847500027236963521646882112805948584029239073797824907121705013041722226284412237308914986103335690026343295060888527526861643931913447190990543885928004760055410581174352174654627536278656521419322270247379307622660488850444485841136976630277959567183461042500128718732146102851480717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19075242055950802796933331844382088120769271901423970314874014296099069890679754407191173036881322324666422422271349025354532465760889586303971830532791697094819800597378980525129718065955370839260333558267674073687121740791187691091640189851989999796845191219390086658466608738815591466436481754664596937767478884282365362759084854901939281113133641609111340869901624319340063801661686950093556081772608470317160966734765890038125217340231786252541086968149637986864819973684200908573519452324458743142164440936008353444293105030890463702054682019589603938546303717341824567627545173495804457214348847543380414705973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29316703134411464060234199929127834379835595232597119230104910047989521824375010348504103950898944963442555712989338777115784626191371679211698447235492711671977275812558631744934142456860297557409510074015798356137938552194123031547159984675845785514163305840533964308979175879784689213774796059464449780843565610769863614295598019751365033798913014477647986616797046145799338168205065889889891495230074351987517446162583778687753762563961455657999097797002367143139196491395651570798756181188669018302599544544065240299159804233544883494484498996713091581322707893577127486600198566800227144363930335951025834430791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24712435442006876786534273410991008827026905580051364117605438816094058242877011782475187904413160411205877336470206210905759496274321952984594533256300299669988625815022117679060762444207688566371318167823339737738201087615721954987360255244421100186477839530625613619047280690151435826820643510596384596188650100415922009459796260114764586143123830262671654682008399137143916586076043674260584544069514825390218118417398212585687595569244823186716023194829451620117525112826016895098186417081171235260567409215656778760366718608333932398579063882806474702969879129256806901532687711369586142617359636984188078388419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19335218855605257761896807898142711059266257845569205145898973279313553084912434895730698592025074720732240653660518507882096909184421906644945883334088464031367845839720981183164021040681785048117158968390275070129850946567994780356470674555817946687763816624324885274688842315984096721588911911413760734207864114707812939349625184835891412562621187650919909277858104604997438866377504507119756018969834619163221975507005308898120027409073833821554681817285315531146748988562344639973043789673023694380684481206430210466481994582389938858115251916465294918545101303519759363755059791660987718503626119836903719523559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21574285534685560044872893759516437636404774810405269814205830992278952283354697708617189210169545001377985780772053813737016811511073491085579343898578845434763470653379375422245748825018640615259142830338752656806406112053031737342919850232169120470683289040988304403383387462980568165199342951139162292710348507597940982741008365910875907568760297453469288884289369629641631010002982743616646884574491348573401550182982490118167490826947434350992429254313649726314095299327470129582167392530302488471687876189014841160060011232768866238687882790180204750620652891713472202010927526506263783186265639467519123137959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24781686636466630537738081287016377738320711130937102137360981973748524871067710863982911347458528863906316521760585973511276871690194726519531419667409299959152393893549822561796550466185312964915402242330744716049959674605451211691289323615985801188907071869597486738189377856333813944083178186726879549968330215479782465784914435866218140708880366326036216256559849091231605749686557774337043975118141088781087557385560170080750884241719497602980576522670202987882115567556080436572701318617834646127732522635876887554128625185656058738755202699205997122804589012718530927155365667029754649499974508198900007713467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29778834838660918755920956035944789688838844928800494239693342732330644988901085908079601976010360999628177165876083437377260983799476447388459335314933200118005353646520062720075848570107152791461792517683242107799471531383247373166025153107596416439245120202605187259853293997059632176015091653968026900812697083787728275216936358411136339525627408836092197094030109100179709051742047016884446380146371686775979951290762257328787241040923236673787204193383710994488326319060752430214546062421182387024196982381428742086049897859564245717150766715383622033284465733330201971324611254341992063396212249976522035488561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26829563077374404348276569714852242822042281365681891997021579464535511800613234395820272018042350000585885796539993953836892709897589050756334328663380230702510567825484889639525127475354571208347484002579112886480374577716938671515525280405090638362333672548926199462531357945071180829031158729257427510673937689996490925727677012351038004523247717085766205017483069556401090452426139830527169637942915796192898867902674447207499962148219302649132158872881257425303202580645831886744180820229664955875347701316287457230156424906554699313463728072500283236369368117814815898295116463243509662920202528162416056099551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25338843155533998428495895371186599208963280492946126433127771464442018479140240765966269433606983808669677854007816753159516497320086914042887176805548719220839484568215466889240792655858593261545179816811063489486242095484246060443528198042083984486605502158059852014181689281460709686051260032958538096055901563986284750783972314908231066232837173742723369576961144221444062551140701712555024657672917654740199840994716424876388524157085787367773932843193544606172190873564823187644804990280821750248505626455441848621765762680585556508118946873706492901200742532295435388474164177845365480067598382287488178144801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27173419373392634286607915697565441922247780102072418730736298120548596704965713541679794279751055335607085633472629752048033057709260486829184675980813680218090466313923816470628661250966271257684194423587165970590579941078027164922670037588820857922602359907058527983582669805682658836598619581740932898227938934043464756624180216493055534969832785171414933821167876556521697906876764667839446808644504607647992673576830045001994571783322556897884211602759248318489220197873495170805279747977864235212477263935562868351779837376253588377495158616293325526716306460832584145086319201789141223916207603613719730010483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30205946108224789559284455773329414022799566815864328927447148627361049892469511047988203561208806400190918268574484314297925395441477699668808506223450896041982894705657178340790762276601839398536702634258745564734725250493851217364273587352577554096709178785952195611253581025528823661765466510297882163186815130802348736649463034666748855855360142331585311531052884767572635893297480846738999585724173280104696838668834987291410323538551333304297139689973227186238100758828708015394831562405079129190275114624847164652824726215110931550919039209863650704617583114798574125435049957715607006303023355222579021743127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25185913922145790983338846182794780609110545596350437422498830412389401652209625644458430682062261783949771012022861768120315205071383967555796209731877641593820763761991778420484361357046688128729339778383804558458781817000002770104865045163333898750031181052022145927151686717639323544801282019981792776000679623472620456261941870179442687940858153409099697506397495928937071799530991037348244387127000004449778538703032748411749889565364755361739735483441419952148961052390916331621921637923749707475631432110817271666893247386249791512790288435275959639974457977679890599238632125905639804150699382236664731942317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23236544101236254195799843597748241389055915755346207630893595466054831614394711015752521811314087200744996587537506068399429313037609262948416538433808766713830432107960983778135364032402664178730627943484176544080130480937428299756594948390371045902230394993168654492583804172956427072370934956795852595609017676059725098336774939942700099123382779655928518964956784089246884157076962133140002331263660649990922541358340422046573136526431707314132719231888477212232850766079961426588666275023048822323349605755235364533063962992245483328944644565508066120888010962181018193717654150371897484667927817533430897521731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25447368249364622576790208964139628294476288591049298513030087305582810533219099283581366881001064036772163556557863147727332021915909161287294194471556812646581352615556237330981731039616469356171375892179399036082270816158764534763467325929545746207704650253083222569670319521624846122133154716045799693449944165445332555110126041101636531812784226253184665701465781897059926854166186379898771239978666040734131553828048367294410798930366296429693410584938494772891834439607898973584951040589615207747485884901952413464493992304544478192650401118619186432871908935201165323100925928589923703556764444577832202135371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27458020606469070153495238061035510674410625848540366034781925107406274765305846785174389772750681004019526284095808337880923196722233287271408003766335601259974320478332338235142560936261737777135084183914531062168090815841703967185756797731076778995198356284549138841750170237783650275105800381789657464296879158573444794407524671224053974810934441423572750238039768124323433413931569730682718335085513881733555196795789932199341291894178704509131015320249144394155540482386970650262740934834305439882224960197061504569537457452773444483227525719499421325140381307607825027725805597044468463070649427932735485711149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24258547482315650566536402738965811288548164020951494869633616026754120608614530572962133442132615261749488573616468674090587303714506382181181975863412349799950057855485876389883004642191405500468972132268892372448455844742945038642271310010727283929707913345893984195406027656289633052113359795723351132747146066941813497978641350153198045120712420921356046528854072072825061707680581474023093410437844531336904282685364353228042871533645711657489903928179719849534389259628281337200719198145799568403120410108795236454302710898196904182578948262604333404229215258550180932043053872636005998886503975402111759547289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21047286080960135775921534483662056718894858700644154873230009469278663135087447085146107187619418615208798718840920040328935038160842495793100946513746713888885395940266029195352967259374315669298502214249403340267826237710727189150653216796536978827084777186604120221059580804407682718691689878407706348198265487394789701931513800211313869052581763841455130632665209496516480820748717811911959480930826990764586419940276102594823654848007332289105003543250990270774779307659057695989380299106107249653724902038337921093915701815913435313160864338848453031939910337608466838551398109419387859393275899053730573614937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28575653239896069686029223990809763416908802877768179198879633255847403492177750878559319734147215456209249841650076437341889362508884462089336094568786586666224243008135091786299861781468933960385597188099867582843155505449903647716872520704020972578309883945942036910245769675203540093033245741779632535642022814801302848108726369827267371174765032445482960830658368770362518899872232121487352866768778529460973175076214421409071000656881979658183068962786327972645703113221188739940430314799867778438756828259535244161781589060476422897509472316388664231808091149479011594558608592717615685716750157727926506900581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25826388290944545873831913980195349856314939250267231235670172684035992634159633671464622515374632527691898965039502194813862369423841782209870071115151482596558935673965782050033800583901243622563673620638944648566386173096130882729367672748080310484243347878457968593897044024280637473725703575416843131936062755624696735435191554080793453643068056076090879593095712766761223916859672656385217671072356156786128380423487032081279204394243104658969334788210800718110234008300200768880597480518461866093528834228203690148490422935646457765637564919798088913532083022353028143783250672899812703626996482426103983805569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25864369665099493037915375290866332425049586230224694826525936399782351367651118653820254932422992619764687622842238631886845308341570213938828420529006442102948322471557335512059539575402769442287786021293026721016633369843170297899067705075695572359383884273243223924926958623945832633357453938909884629310288662071843601928798457473249307547475022881863389091519729593111729340726445162832031014608906726094334797489907890532660129160787124014627352282380186532446421512252497522150707522936457942423452113171616218475899844892277145409113495606241340221214837255153011424222732763480391362358646902547249760828447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20918306781452458558243592949531411293658625052392304356606576901369128621074560785114299869827402971474227527843708762821788129023479389615687386192754938900437928659421927745256490414602953701183179381408261359779447197991432870361676246456271616564760787768250066590907926546339771243967579356205843376065346558543956109240989322893279220393417692488038434261011547479994794926519986133872832096831027421091124352551144717767424625686889627045802435575796163143518563291650911347920904913055689971849479204474246425121045124816387356782175288520843369259151378550028344463536101165574273030222344597172018517460573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20434232180233029656969893704412359063214326071195838450164823286897708703561551328615376217293607311685746192962288286127093173870190659062650707118802589973368455067893541473763682109247369179825154474612260562024591596576041741098071988265681821941085379952985274592003861353408196773768931427078349586314207281066557210200283154989505925622081182843333759793542070713811111198395355895758169178092538278268213884051878431743158104654551660122894163421877402427104998633675527936622768507588652307995250977222069185968331989604551018954949470322335023652699469899718940966802098248377956873707874750551118505388073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25474910244297501078842330829440384215281783999756488788451073330834800901169603947581601899925937897307184609965881873885966732915670066795918559591689610012219447652051890490689023705214197291968098155588343687875077668748661022826043189578755411212794329787056158363301727994669689049248296262494608726149699148799934171366099985638004460678380600211504687307865576766238865226919286505164670844335899340486455548157817998747767421629349465820140308123476807495823079894107517083299139870658137290807011567806285017050480421900620726032531683562198328751962740965641017141540156955387262238675575072299238918733967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = ca, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28573889885551090331985192326767883597560711099782902181147183471629073470903174599094998396501726571223162517658899014148752577433162535244539644371861517974128555339484948841946131889570717002209570230773919108087527716409528755909208768093097145969540244286017039206307392512587108075850286049240342966568981673697995724489679954194708877953955192381820830241078785718475675682477822508846071548153000150498319246586675432010488806541250362051936579929332363700643834768513815063968389754394056294337324431791422235299996316885007198343581694191680182757397415850039517855444128722531327483538574447200661992140109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23579545648188097210791273187377846591997309879218701421471524324590565409749667598087066862823409233595485306109587294616134712100623099229225167190471382725445879175464787546573848401151796013061387000802984042027721870082919285384390158921702090748541599267145898575631855474922344907273269768259803835569281719005321656588273496222275780517278427834762304194642806364959880815841711607554467975316925335589823401935049790824901281016759808780430232005440203277690743510491278383022481002760619072862513367964196123961519315886771775154712829750495699847022211465408134147953620197361336228799453436929887187090369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20644295195108362407794956398856907204799788853486226120568117831966821075725634544535782884400933145225884050069632423661129216800223094692470026261014302703790619694009657710065985540672014180746511874953470878570214183003219548415279124447700037228644171419220360711982311714210102008612183524078186296122779071157450948260402088967144812746852135030403837067121457462533142078681262228645056924154561166895329619446796599683334316566564897378562543355903529672557208768140300597402443724790585457730817406288320981408689756546905160451627913184799513056783401331827226841031580766504850269972711871289261982499223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29375077629662444364347881326602474475306960096660081088185554180247002934249553457960529625223896292854240370776535234243042818953415556684670733141769907176266909409154571198256666586978298400341402011463613676335760776644258969099669800602530301071999153138924368245112632317571560893721920443910507640553102359186657012195900148529023391396307779894225123123927418605501448567305866947358393497660063793235236088508333929571748099350539276491263566478865112352321277014062878997155551680969410040847394868750885718662976070170650859278053794943997523151540820189572562978591025476809914373731984851959296411330481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22896816286052895737877514786772892", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24163951766632945676874085760409976", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21287196379452230870453972716611947", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24055434512393881850255811631022554", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21764499211872838926889899234076336", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23744492652821575456653059745900989", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23721401652176758034231342259867993", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21944112577804887565779408590034171", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24152096569390308261791842886989104", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22864943139740661465486802091517466", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20783593166430826372290821363561165", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22751907632138799990460884261741768", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22463819625721485932577549279616351", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21903011910096989727118252285604310", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23507559879443720930400902227355302", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22349401675200277343906212103430162", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20944274497380055919675885709817017", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20894128511112262536330604006882850", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22788315761199865473681349740786834", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20859542545115831026165901628493990", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22163403576627315605268678216711838", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23910809957116938360681064452744212", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22278066466513574512644076208099200", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22393540883058744209378430282757536", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21204552548383723175516403611710329", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21024956296719330119018100157508331", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21519637247946595131411713799846140", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22079545552664058007212425257241327", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21832729262224324632763196036048429", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22195473058442538600494209629860557", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24214517316106240828841936501474195", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21953305609819256062043547662108023", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21610096420841578767453187701887863", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21429095632194889401345737601170461", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21618224987094687650895227794367908", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23447480002449018470774695124354436", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22093197804257000114611147276605694", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23618825236628132102830056866018597", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24177588206148256855019254658303808", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21809448394998709696067796495243279", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23571436554109261634407096341662155", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22334584976095130011404802291907655", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21550449095031786588000381397799052", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23023153543324967045654930462679502", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24195461682383055279863091628818405", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20842536138129482931869090703459141", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22784429394538014427953061830205123", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22945480074892886168315520680409750", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23326936765347058423262106599468350", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23994749125562802051584277093441956", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21925665411862628965039927029827367", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23769783794763076865744672437506009", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21216033694711233464319470646697124", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23926283423287723320811255902867102", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21074893145691297196934177999918344", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24057484596358318384941219566136954", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21152970419549513180098737257920202", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21904786182385772130153335582406478", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23651358508011757298952400991123175", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20899670091970597822017095347088812", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22238843265409601303738427288022906", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22293139607976295982606463810215150", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23064087375575462361661943003995070", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "147984574978046747332520103840502094068245773361223835470692963591654428810967607316893781388191089848721313390685058194644017191936132644541794380612132198986934751020083543069330353513628727939679690980671748466038128995679428889211199509311038739885077160614293409983446302329510191067322319235566089505151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "130681685671831830110545235742521588598107627046271901263123995990165235549907645127908388410890558492712141597862682215486739774043608230510250787300015941219898463965707904625108241213383833909159078960479615641020082078599447161362800567251396099634584920866186880265808663333367397939409551133008973107409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "136307336697186973113816541558190680652669742233515852612797941770096139259581189025906213521657655392086588110960282707388016767870557211341265783854977579240904637652514994515272650234765308759167394777348108626416035543477191409587016748840649474984831972317560509274314899056137491093881855405912919066319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "132575691173669025534811902215792792256488593538403475349331066655047733785738983134423564485806475247493041530801950208894114764133856315235539847043666017319241350105336674260962736849838870260175542593685256473463269508821494755911072897537306450849341930011220560914454867638619593360898162857816355486869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "125813326939273021126589260294706666824909457744284621289828172327367366373325410760387554402488139967323717996047964290913842017304366661605907434403209499808353118552287948075108816991531816882701070613100363353197250269261594829250401908383007157084239361176499925095272119412896540072419737424271238362129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "140284187978267732159269192190264791928137860506922611340222515414690951987550281287097879765142504876097905923279519852179556998684544157203294687805620441344663513355262366214977275647339949629020967870667704999129854967279953977537062558103438591887436055989523185488537479068762524450026898733337249117653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "129796347067342720297404246189823947074696288439017395467324396315531682280424905714594227276312187701103252112527405731317923459564557561568883360725342825036070994385704045070044362776286845780567975751619874885354817369824270429067767216716146903315111562090506694867604178803557841526353471020685042929571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "135600314266313054108545567334910911702739234902564389000154768601880536267114047306188039188736924668675457912376684575303323334441728250848577393670569634675224986226989408384948901496573744778122654238487123009023486582258837838137729351611805579534099120479011202502927765545959421311264036847847393647713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "137043018238714042421667114133598620049974823448119989810755253256796748925198005815319353330883054672823839352522944797184954258273580379478331698868139920010967973596754526878142567717470425837542447190028538796715269849255353164965411463157087164038273091392298326381691714891135925389132774840026663152823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "137461989076988821969654525290736400401066239458341358660049505856501475656446628123355480673410069226911195205418616892285300297914940539097046893656669774995236357241239788885402549670524738920701654064055946909392551499734319694133375626490293476909353212147883597474989232518376273394598396328203686130271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "135017777843588899748325488827772905563991097814113089216986741838882236513533619852937192479309178507285978104462882731854626221673638727694415258580370958682288446895822301114470973548466026536047051760450181588124606959119415105713616850439011059781955006454271513060725134649031617661772859694067631402671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "129194351378268931998271252546176819379888192247637437281713763411549112542975463664353636189945209710742224465436745905427544370115853049027239782556295469596863067290089373259329610951772062786192958989115641494592272888988213649015340824747380562183083206841839215395910813789453758338222729953986860104411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "127145985531833430660207136578210479937134718475928226818205445859158132409626610613302927408228503355990595973969485869733527924067748325465210205762542090701686527008006379054286728980521826926852705198733704875782399449801972318438740728362065250664636027715945716994172918979500116836900786999873905197567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "141594363202688925600089106782222931993165915367250379033204054120857079240906521671685728262813794663185894859932823520708953598874810902803695157909035700722833092156855732665121561603484773341390243718284907413812792776301467885330823800557749302312480466774748062145774306976294159468198487523221159239919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "137885876952338422349706179118724219192779477398976302945684472434629188105647246744745068033933945219311015287678505829736149707322482127275264742355897401296162550371101695851348704424155923210452243097675068872185630522928738703408407734610960804736546548519700689013072236295954713092500927162698770006669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "125785011101390696939779964105611752544548068180851702660312340173315482934028029353193699522340612341930728742346622716889788958564671111680709555794996930144325941935052163378521142114616652789476403522557006605245608571435387052542742311258871418003037080401588087765831974677537273604976328908485809414413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "122850434504808934324346251671609610282940573195215884834187119382442634972564767312617981740400871653296214614666547348157942745976064092927927861335138166956779075451073913210252916175324391351473047539961346678311356665222946089026037135599034035364052602786827344785477823403646077850409988379465166193517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "120801276291059194749042463632345614975422408035840288980226803071857305685784305273795148619325303579367824724784559681741362685397865588120683335561804197524900210541262998037408255346462592608682527889172739871518144533195441835466128460501111049193806535518342026653605795555221779356091697340766085790617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "143074774291974172410608259472338033591802943502451744232346048616184990926908566476753064576933274385010829838554049303261699281907443644140887771606072604264559199122078522574196993475952749542793052170548861496295525835843053805849916905769142073381675690324345892706555277904170522219276331086155557141459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "145804548408397896830212924076300354953626055033480796807435998144652519490302743387197114273030477691332716735652297903774472812971119146463943631604476278525997256887618166150032091319174568221025299933209838138509044740998179760739035783179458786986007569824248228985967198763353489969202001045066515845523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "122817185676895782477459200083769762528641875150384472802392274797784098573985251822135195117667752922677095955246421297973224741064030760535570978138405112627017965199511445287094472539245248666165181552752777088200118035151095610757468475236046216461044739264685018605474465837400066660701927621987332942661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "125048268803775837941145017548703950301913522591304078408536996944253229444719812586066277084074657967440662262591473255298108394553185526326384835262414077167140667000867354783776641625869058148934912326230867127318589770304544295009441350588436002269746461420891883557115256071975446646149298083863346193933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "114193011153448349453984260140190886464724725358287568102351993845971288886906430120063324136508243211879833965289104650164764663531938693435907268983988947586637344414110692903390361544320659781132851991215081244518714941951580463576237797801217242682651034816563596993714428281882858331525668257529961128001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "152302187554006007568582174039561627709563003298450929290237062113745484538676823139743432038830694723372790911112855583134148093616937757029468444171384390906843773757401595264160322087517482455946255952820380739979048083526834482593091525543306573487131300302141773193182874246100511972313625456456144710627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "132398996205471153691287346232128527025423195630042392344296740731402688098247051699003704295813509854900056035514265877140490320014101342780336550543987365555014393459997960237901224417277298024912887767674783503043795711992314092619001044323662226597026439071273882211540575421358371734620313593875716300143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "125520452067366354830934663074254393345110021134504404676452535835647129884193159826027665514931039733905290317520166481908577142226803743778287638255213582394345323425964377926076811837567906978057801546360031215636906756634338637644593061339063137670308797941294283130458363245299353158047688573572972289211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "135306656258627540463586384334218875888657280277599718639846121176860668129505880666836095366651976618795890949837737140391442668781481482204069788630619057380665877962403114437851144015908017156123492521130563517298482160438379359523180201017832818880333117007319286002216651369002048350148133370256042695639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29921263167661756930004563022251558742940780892530926336787673853832388161726915972799786186953372193130809513091442029173252677258906334220182032386042570384591974402411357434582486771595402148674808496159762720321400038424335708546696355241410300599025250084961849134542849933030688709262038711190055174317849024543873051647243483252258248969353315626637420307074159985961088096735351736404810514370825717213459134252560498082884365645385421951438663185678896162426666989650392293180387895106860983103463803951026894832339962867719574279245036400183462089781264053778560878388906651642248685328034518567956745298481", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22582161043551064166097676862779364506364682943055281977472115067599375457005740942929083027627033921991650469217372061839892138965723814107992411323150810064321943718849051425379997488255422589813817817682844108618168978604466298457957110014702517649729496874791912798319668801782316128850328616409231396104191184649092997111507339960501098743212986866463266441195872575718483134391425547177608130606488155340129962152118805043765939400780032733838691887026074525363860861327717490502261960180628403031363275484704444739277436424908095545398236981426387706528162185267889023416270399010760161505813746321822037560687", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24806036759912512837753468203314483500313756054576089117292439926322711162150030357489430081628144261698314897671119779012478958764109477050907696217308365626490198105036518121581687656826975351740520947821375590530873087526249500084373950713209852788161456151058435384509681876277584647863197438444096583206601178162230277725940167824858428105685658171346851949948948080855346395645088356978680977252395561736035261723889674847968151971424408371530223460801588722448842222510523742816699667674043763469769984506162456340346548567400380530320815710363242768481671661022128326901702058759402596510507028044515036548241", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25554965632720284965071104948955730743647617409421425102816911620688415303656277547063316998310926472637057501294931814849736094833988393164744559199261667255399998316177107336242667658527072948775688851093677424746169579119085436476445095866171947545199400471273771171608527343610649112228528259020235516359609088412292679532082328715673664204871135580550157506926345245783694678344698618140718444785594007766958275814190293220555861694093892668745402075883026940148259275682080287360597363289400963675082030742423525646971199958387721391112742160742517003336076730417915692339908685810396257392423333565668284862719", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25569099289879835446881004195828385259733570291015506205911896748063878589489807464187676634375500993221188089031027645465711071416734421949095481510835694539187471497985588830932828890886487827072346288613545817275092749168905736319198120237610680682240597592996885757014468247012391574949212559627491246645644892945719127687699483991181052919511810734995904420576212143788583574843375873337205948344818506284641834679694369472875696416105005298933448195974062229496159241600489370210932943501983058052778817752917759370280647991101138076212017920259216380926111585733942524603555125786938445246315910115584025336813", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25946640025672940890215017944852657986639326599502100114041177956560653602993012292601751258060992557847629206915647871114055926237800260451983061157469486896945901316243872716348603274928667021026768875396695747601419574229446823848253119988112258210701580161379910435187886797134693129626600512149625397827670226772577512111644671065140933122910723787295701436937227235811188976621627928953552191021065830967945028747153541332202352884078342211051101659769042216236842419068328471216103776578075379042823792789320358410459736955933698175592804654123386268891098588543087923006246313901651731357002805509054965206299", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24983104820472884817260296920646120142366895167997326907782347581930958205510884444702866522775203540940040075577435476284277914765381580157506294062625012180763668397472025393733346257817380221885523785309782972613058949514259315684395894043022348873577582650495466169493919525740191849968923988794917543761607491170499543765939890318231823621013825490805046309336422831345023092722483028332284886707462523724685078328411309375511958125660574581361218049172559949809125456027552285952791756722333734606664677119703836970160405125642628291457546763658546390035355632864439403091842282351319547232623674628634108250487", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21629893539640882854043372626445239467268342169673243616145677425283073295484108631248548393863579473098773063085235578563503405226729491621219700108662433653804961715169524701587299959313248657191357779055402357186960347966681459605028428934657708495489616594201896787945442065739249659944126439305565207088684219860881719871215458063328938815195887642936740300220350945257299620793283449090917926217009956475694918964700648285214437011490224658846769752898717271373342836039064381023348538240711866680496181381333537740940873185662382746417685408826449600635233847808007172491366816340824480130201315023268960989229", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24695494975118637738531457842503560933655962723096943778813690978454808566152214505151784056653936635121798155896431993699191343102815509573617546797265680637384364368053251408183103801341949002200466323711761043731694315326188937664602485437065263723027121137463468620581531076412851105653566877660408101376390293876464086784204778903869586610681584224824366266525550430486121611163666307986990108177058963250209132018545693271012103889639900029983345712869293060964010588797511023219142308135062772474245231420240489617224705997904618591398006264414161377796619401757465219976922177248606017533189898945887766667519", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24836097953419966953068662009142893127176800709900757714275328713545298782990145585199751751968942710430080163456379359549484056790878192651824012994559784404284179335184914909124163815930819296166768495691516671775105764471042419183975529889534149997080442400552997385139818929445607404639372269653605686096050039254368982281578378216263118414539735338936495771948100540437370677396037659821446434109282255357035261164873441149591671906484083605116976003236695068944482627462060221669126724870708156106308098964444705489440660995288119168045523192776221274477151854725282986319793791633095833498181802081402181000359", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29520356098925062327266344836673102113682094822150415238803164211644755614706014704078873506329595760572183970914283213717055712169095576733711948919285175662822959500540410384669244500184311864249115692814544316703848273531159943928743208678143557524630284532924876847912321050755096454851389834598400977482456227799301594727455161825470610269581866536626115783792120118755643502735976579391501272398582490682231807219593865988701450632611253743136941973220595866405320924236801659131424970089860835616619693649913952498285340757290685715259249255020764116531512566903814314676987906861966390291158845562379785687641", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23988264237466425822882918100092529662543109156403533310648058831428218182632118911369718808481432878507427983755448877196773853460142825184005679482863579428279529197435800503085778943266167513284530902910103780396383372571493940977804735168048648609564014970005855744741345474668505228557818221346889664556442007326232885380278526739639687876089008111905560067900316200702628037518079049638137973430564756902488003413420819970426916850924479040579266437967153692269754795256692616107691748087657774750595746211417483738922992282539117425395177883960223986707038764630003818120203689644688892967722514681748258430837", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23917827669761776203341007360152617367476451070713569411111111928299112956091987950005571505072276684398212549617442494690870006346322844125607702581430179987192217067355179796090789048471054639955935065181916256189060574858246337907332319758369863488535101112776328598532340964449371324912356497526818677667654568664656054875117202020910378300946585126028943543343409894105285704189458809791407370259102538987971730727742556426908912251404458397527731037569339550806218183432465835156941025024542171268294132712953750647798643093658018248709117092761381021794396723608769448240267032801363483389268369384855386478327", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29530403742602240924628381317644072195415514252921520246249511854083439599009862960473608931434150785570681665568524036659726800494555338055091900741875850225056186657234058568778911514724587109686000426660201381233136770110727420599695662310842238204936902616764242455120947155096883268540463040239739820940478845853564857771025701226546541669957194594158875113909090132633916493980635713877669868936457846497607049537747400799096041845004869748683878441009370537226599371321252351187161959781141167813840691455963317223383665219185586571284754737598626272009206622300399616161636830493633002206172368371992267806309", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20349741984336813715705383233421106059575858586226779197145467717372468573784443944428197071279454680575063586594660686772604286922227583933609217803210559181099724469817727715656975524364171257485525296972321446371556614112229229613618830151169771233355999757923194522666043916510182196306982790948462768067968539112891082002239612002017264862987285898803285605059117433686052089486037705867504935804222162785006775009786791339620711618044441826010878597457189573871119396307625778434327331465417490566296049264491819805005179873905809486867050389065015627585988998776585785401058638194323883343618884060077239791937", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26756079601216403745558040757191133556318376862938527843568559256330240363396166382790586737307110304524750531418763514684366540723931998868387748579145394807085438771427393192676077528880132041127728803785003218757096816272379970136375573429409152428607544504198150365669320648106426272675612117597486136063796993882770844078114699019245037062942921469362722331197036013387514115950208768286446853382729095245575409186135639079764349763026778597819858462744956522886348043000974581424015407849398939261395203184173745668842080409169265448414051828234986468248734654158165228099250782138268314344855022124032824391983", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23887733121767304837322104299356698237459201988758638034416083518979576708978575370415233594363363689849849375153458760136512995766868842784192540840490050880534271724762568027023077303339415661921019798892446144660156602458193801435077950373260074235600423284165548630624523389461110783320957255797149918402657700351426938765947173998916373672615599951618304602146482713092981737217693915391314787204121121572556212316547383255512082609951489432683434423424875682172761107628515015066249917100622491844683502369073123568817553421951329071068250932230863530817337412496243234554616274121796315581896962595054276813227", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22647017449822562547679984770392267914053135875469224305208541048277022799990677787710978737397946271066145290072101893512067466487742119162669937854086345157082560631821514965398249045859808892167530983752602043185181063043255940980142138078159382880128582111322431934339999325051827311757124886325726285474779327773035494334737813024953981465412874254920579881088286153320007169425620751598342439851915221639429258825246591326388156086557064212706356241367610993928360411655309856190732371959367273668342266380715540961678602028658057270217322876173508666877982279039364623157459309677935054270390220896071071288237", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26831230856785277543934212170660850162700557707734977287661825241477731632121065738121819477534671098013785682886435529564286040395577303861834194509710853076338040445467377406133686915074833382272539830501792996577953734476720210550054761665623459348482280863987672800553414076350616298100245468890307075211226176491213128865760671130015316833914278143251975855581033036478552193502953469901200184824347376852399306369126664107735526270212442826271805165416617546134767886342143202671754490550325850822178706858454082082870997869820192009405168339488683318212241759337555004845867784766401113707075015923648178868583", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28122198139864309220047509403732172191714725121923067530273597386614478042816776323467515329113201169850900309548999416653722379843696374137697675371418334813592064526077112870993765006347131945426816119939944836701535890483630343165224037937829841022419932771214728707063964374713106536523152614144674737372021538910447883242209962181740442122174332728268734079749642601591168657665858960782713526730238964930993989478605799841697459320896344877638949300264110897135089896759095212597865846810388351792280211797722410961314373238014419905005248290836951310768003190926436478103180544265814015839841382527258723833899", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25507426973765641872608904463257333973958463187124520290038852397698257722549893927975143529657963241521373590924862876074481553536061800690705307603560151297249500489376014246256111799801442827897399599332789719143354441829416587020245051815079419363455008585978149366281224743580949058221475493224304978669822473247803602258263620368907501282921353127074980998362644017444730493988794973213004487956447408155888789018394051808695798312219456422093436764703971853136214498691273065701465303130178274795338336513920007352387252413314666271284776296426409344053943239162019974082081530680465347510687964946828716859113", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30591792763519435838759871264380919338631635748697868926022457596892155446413584559103436998229596914314630735816334811355782933136977550363510452670412255124007009397749593003805898989521713909090896023066552988887427116520811635336984986459557586610416585580380763830713648863186626739054332703991837635819624096515192135881944609144902793856155253723240230339642991538430023511144582242481435083456885006883639539157030881666812535162006303159994558183491957207251424417973136656871225385900318016992683747325776961903473569187417354745939868274671363126707965865822631806950236220043810055555660348384431998488383", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23036594753934474209408392543410466092492013770912381344230712756976247042765528214062404404272861066706159503679030594563105687439509600216453605259178797063914416602613956640185034232722936593768694190803018044894606694887195364527396277806339225330944242610419233287580581947764287707674928982123375713359362417473228250425530596440013439339187835699984903372006145642063428164039796240310570433251877217000873697262025202306586595923319069640544501391575988557433263823634777660900700487172251438863485909576558960394066082153589418896849129991096226515800750019187976829684520230821973998971770302891514405284267", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23643766719658799373238358534942367245578144686514260152047079013024160055072907703767008174921175301386459026496392758737747113529623353376968564946899403111251565920164833564066670550840968482810859913141954327657681757124212328091608433535235803902106334080354560819224689068510014041554810686609312055135203095540123862674203233456486870197272221296346457576134134401982658546216703900699556511402801500049215858292685358308380654986602864171701504594051632122553738319466934235307394084216150584282548691374616244271323495099880218877653456080464993667367124367041184799990905024324804827167855798739072338497381", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22816459700389015371556970948904681446646342250169553087155207902843779175843782502582556108624384755961011209034488919641631864822288584266712580739565773693943421012788384255649193090946597538472303318337658676272723635728249583780104636544601244923968241689408388279107469332905796977419817941110879878660825771381039965114806581090222049173588334434536474247296699349845190403185582646067483686450735915913138566386719976578466993675258544751722011495898924044863453332514439074784480017834739785017253610051435867895806918156734221938794635400166968907675007935184054685932545264976565631478573592274978735526043", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28685422792411519951219503555286334553876657945336334539161299542025335947598154543604043955472551144285945722376054577967373388743186162990919363958863718527838747599677378577036619893261431936219812670177100820246785781196505196062938916660987131756543949134417595686430990830512533743051935886399166930077948747772073170882695336390759303926807082266407744383613827713391263539974379529154659570934160268918286683357155928571956568562076081303663814442721887060481594528015493514071620782406561844295898491914241886872316997518295720776790069330254219030896012213798024816924950701458491959672916520203116807607441", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24885354977115253142537607302340538001986782900575113232760655845171685640678075405257129926229472369456417973667265645356003006114293575060075555269800032729321217818197938533810845351008920889861418875061879223060909319777155123549292980438322913467748413340953538973487976266551930435434253521924781058097152200588115280718953274377103150959304317670011140718269502523232822375676513177898162859570687780904132930024611009439788905453971429307743506530186512391311931638146218048181136546557670146716598370181565546107908872015711348917517181685570927521042261298169640656258812090743537879365296134652337858287677", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24184488607847128409631085117355228402868325314247755716998898415551499005409454357916825065143991210871916385608025921441084171502364654267326235608836022600500548863359063483389007219171198009076858402376630129006169724106344756202961170778122853811423264241628818614417627795141532984873195155312736706570290452299748894625675828885584009977577444930710085848247926694466795511984406346842020399129176557009460233498808664881695319180988287336219364471553896542259657830350337107263175075253913114868902310352685092444245258450659410998272588003653672045857637390655428912300209066706746805008383981956143830393327", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23230655374697713895430159688971275185315268155731597040074528891001717505064276388707227106962112338859249522856147161598988416817705476867698493203882160222604080202612413670957833588509743494680324155670303409227925923793787437227483588521800376908443998626716930513321390442333484782473161699961560249462348440461898336320290669349566151185145314606327095107800122080425847001499614030082278556968692018238736299232867640548823421589161626866473025970104201056887997717962224540986862426357244660518832871291707121512254500557771803628507400704815090286321103942998661371194440937221655264132343529890477175886017", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21682224624096048218003706093192618943791449418220737270201468423349941887177107322776225177632381435413085616781647426795297732159785534407812080829833604684632738610513918857055024951764054941901486263708876032984908201387566138206332853444461622361467701288366101871555299258501682610093988054723095698910892587054191919228355959953403857180141475116596123225561435416532319202412027692441388417246747996283529103033817635368140994687343316218426962064760381412206398829546289581175576401519969143309806085372828435599490430755473416435181972801067234337787170798930688369467747541166706083606215098889080384058201", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24738069927709815196781507232834166243299995859360883714836649694465412041188628157368760586045944079114840685265414075716380959405434208939657045991850955274747643543829714635657948216317446357885959484404240117262211703096270699813706189193770293141560024391083970227338297024514257697739374505514505994021749806819725823158704082004672927829550887996485928001703603902579719802569670170356702541864623757998294952097611646425798819162455331099236007403758868282905235219770878218834555179398138619585491625979676978454626096447865889135913503127047138987554562134143657481806780232709484503635635668232399217922497", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24835198799914374284582424504551440629813321375113366358007340618673214228216972175672736975462874973648903258189091014909604188504700232334734518634247780382331326173126296735803927435765986117713267810384255354643190744258355826010013528734761510978974484426772048554622054455964397880728500965786859212275646628568421305004535311762085736810862248888718487631424360088075669061319052462007570277446820786518873352955721757541434581114625154653097659166282250727094125372634345349205407777555150838463574987827672067874016934013539250528681708595712286985322739531552624853342088325484697954020080741148464808201403", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23156203843254274778195749791215749472391532058183473327213198569095439349354831280437438049651786731572622585744480796195648547672096116575546073130642019128923228394628167432655807440843029282052723040544672235118608978255413557891844074856753824359453480931536301735966257866673995617465684751833463986239915170698077526875778831986604983762681572427625651843297751942388973323859777664249214867769569177389381283334218629146155342963209081353208430314769684004781475611186648737810264869658975378917126649807820483494352804492089182433447187782670419028812049729538178887136773365765535467776368297439810772128399", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27748016083476973614060928663975547170152575723530567121766202305176484851480325906291032468234676414750051527884032199427007553056779017604015533967254854804720701240000286053745481476659594198327588050501586845634147240097349501927942790112159873333171994257996844024836117510120669154898185932692354673436357631499196887269887429034897974171693762392277956335120590172626254519239094118800238925121610616627626120738822161701376183858848631433099952311160152211450389461407512285919127781838193894282620554612015325412367273911650916343215901885118907429341495834299592058263961817439135911584136594142672664688459", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30591792763519435838759871264380919338631635748697868926022457596892155446413584559103436998229596914314630735816334811355782933136977550363510452670412255124007009397749593003805898989521713909090896023066552988887427116520811635336984986459557586610416585580380763830713648863186626739054332703991837635819624096515192135881944609144902793856155253723240230339642991538430023511144582242481435083456885006883639539157030881666812535162006303159994558183491957207251424417973136656871225385900318016992683747325776961903473569187417354745939868274671363126707965865822631806950236220043810055555660348384431998488383", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25072339050834089107325915010495455063995178313063859671070582446470407655012526864189400325766611743315758765260770395871760946390113716683092800207794248903495549207945026466996190399377353311536413608531202148496479785190783489156945172942696208158470747704588530659154361552255409589471464236826898688173399248637118295315488321701858889403840242037327745786566188178675160955247872133609836607370980578601759519605521142840435898484418712199133301769444735941979076609326209021576734976246699579698823808348824426563119911366940792239104049781898640307195289038084587771072373527353587614921287926777666947931289", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21685989604783986613630487799201858492467071636670729385807405427615764819674527685963457194373332377202843133787581850749207923016331100067839889737622749514923443548298814724656781963258968974222962686288321049800247862752466648205011843684414114780773339154872849597386301153452609667218126383700533238661144812698520346684736454475934353900497273326735960468280374331943683241962835742474266259357042389343706307351142342942612276645298509993262728562777990960375235807063214279414331308497469196908987687251035561871216519037291731836789889243623750016087312376425147561120193859070865067971533309670397950821037", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23940310458453480386260700159340910657419895642450041898132361564122515605245239800886413337435218485397400137118974693064268486325451796088016209987896915396956397016628950406204094712754243472599192604473806350898292145520522228630601286953410210808653338413924702186378673160138335195316068400528094839377662961633118727575560658091298703694003269437330198624876134381805971659535629025510123957538244140600502073375049744799965406653794017640623908570980468420621014066199012916523270272105506633563341417820218886640394651932204316192350340405729003097775271911960485757652556330630216798340693011275936475461369", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24826274788558328435176848957564265749184057751746838617868406784127197735696557490626238761653365390918563358327766286629774960262399578936024522870781746362152098301617847101765222586796218830855157173109466759200786258647817650359399204612342074258593789613663611647254953611254573746286657280219093112974430587927028647415136225704278126338581933632722892056487980129893548594358581799820555640117979401661395487045604095893537100714476232905198060173243437794125951967860549980491816043410155066275256928410785578896137307869429385997326375602025831683049884070164390256398606772070492116602091307935405725060617", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21009782893157418466609827761629887846996161706088320804783375098522737290618766893297867158679778012991277671499481685803907646193807826820168606964395311938517783928178824857335051538022817434746843458274312476248184079543679535750420069999301181925517503549706911693511083717277215096955828629962900979872407210152149766228652504471980355424217009513401979829086339860380347489627588976203160858394936799840822836107136823001706400962021563192326236920859514044608776909863164498299481107447373104266712013531243127690116369703483399590321324201154973403841719634082007867867840007061136147838950316285083990025529", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22973372833438637280434608496411687251984180700325502214841474632623144761127687571534958996834321487952804356006385149915872572434803458485730765691248547973527656890073587147390225770211894871778091212754563195326660260779680261996582509632112035058301237510238797725865534110296090808822949053074525745838035055467266996627019240190626272492300292936156386440848953890577450968697180915605218002551564675086853311962461323506213789460507047664870817857028078054194521303131956357872145105743759614468609223944381008039843875918419309403222630713992770165045122633223141595006686933039200227163225559070798648515061", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29211585320173275791721605017021664912085080323803831856256922319500949150791195670357300195662679689779441956722366341631447518038145145026956937581318509691281937727007531194513699751575675018847815545092805848297819107414646324030640295229944352767482510253500562736053554180074627276234259941978541417083095802509038182153128122115438475097408901439565743272772454473944005144370169895263848619357660832916787765693876846237517358701966342550366470839161974688060300235705110176259213880574091010451338403207050944218815652168785423970536809068569818336647380050213343091442478606353127056745491269079570011841077", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23251532593236988351196256033525772365585197526975827970357801475692121721308003542100864909231965857487236143423105170363425540745502254464054843517705292542473507698020192955233340538514997473932728647504523994432582601051862252794618400800395697563685525791645288678733239101820081670496594425880424200787583773213730549274479541321280287751156346712064698474172980831422046977553028533054201217875789159926437590043954354523374075331421288050118371944538963827060028025963584525461300970869046001601793634957194377795395569831431134709995942530314535893651826856734125747351498937372324149221954070109232970030119", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23676142952884301144577981929989373820568500068237395949180076323056763848178239121089772089991642163753764111574527529837774992758320870170804493318958592843719010514479345108011863374682040553365734936126032611036902647440779037047114608585646167601896529124192906011682501026347768122925777426008353528113991755133907910797764721663115442827030855600767584938189860592759352390860447492228760781450138586678516062766907857602992149527431437649191498269185225932980390954474578215846690832826231562044731852336986726047605328296216603908436430126726182127160417254905356309245479510621205987499802712714842677984521", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25302470925074280882334667565973799640316581202160437960505032571367976335518649711360273593471088453583948749432108545115122570027344474026068110770988903279965247088394942716334716981350587044667894978367330325607165178304488482285246798930311170653215211009649359018498444035523474894859518787092741708640321516929095476661157088027112632460486529634108924294962962392939214931695615453270918801271548694641385501364579252226547009987409989362399030786429349316222621518888545020156795458081152262928760499939337768001088100975203554902287902851176931438392455416388718489367998292556331255075343394357178825053827", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26544097599159204062784793117487555637924710701464511557497777868498870281469270430068149525698699589711888327925065912294138094924480609502860201511665361573235766284943356063784578767655485820621320750209801396796701970506518789364163602657413321319772814397705136311605510192884295460501758363612514701423600585947007640849616783199147656159203380173007804944198590572914916849577676676322173562632881714094079690858757156644901491727981404415969997389976123209355041103579263687314703663194099110227438242247468832513794289767542176803343172566194303401013132677845491540715170793452286143054353245774696017529059", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24527815732875322212765788910281681559421653937697405471765085181584931510145790511136071644515710690198630954826588305783430259192011315352230055121745903869092855411655391274160187690276665918166374037415490331706978334793448881881837316321758126871435944559237514783852522223320920797915914666323201923417134567696282728480088124381996890288157103076774809320089149295327955505926259827496665088838110421444945872937165309993980140175248622016101515885999819026148672364096840065514295826212652118696687904260350246634364062444439278721811325217933340239710837203820456102668021857433152485814483443179115205788401", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21629619693740791160389271527504094026227124393494762628575427587996042972374507658173002867912973072531293156300646698622845348394121485164747538772440783052701927819565917083041262677565912255085447522528569634202753471301282476710470944531289482158398844697926049001193279606798737872295157765264864832816416235384505429083612382739328733568637350373724197026836411305608452387766830694991879761371277885044280005126477396427667081131335295351007144005217414365133254879345829335331409994304051146175946304321312335250044204723605630867148362234032064428053917877490385719992772405267142948779874538458805094451847", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19699331225561338427099762484521920403873211408474561640753752398220070548271171115832757799162086623347482641984683900539223368259444741225451089661126991197546499045741010163157863708808427562567684448357658045083401660136045838227415860289514744380820027493617758717367150820056023868231928687686394242600198857418696802841544886898812868948555799259880282449501432604804280715892802394844635416590820762872802762363871780152667038614198905786795003309680619509260412563425469699977595403669379025836042590986497739983692217614289246998297115399354096962459484767046094416591530649457229741564556614050993740256041", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22450424482245364333491467249832984665780426434154520043614967903884913496328341522880809092589823497983868608951436430929717436868533971743584933822013869627283091770765614400258093919338372484585763441543656849757184949819940014686974573070163617945863584182380957504774408223194344968136904962910443221035374223425280195760638315418691464292303950496313591719350583326154596821234520300178750675512302581281788175102814813804569218377391592576861860543628602491509026625675852031707961257788929694230877710089695505361294744824482875025305726717946577087198132753950605066841317619347215508995340521291733331919471", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28380046606865772339820327173417461811643057864972397753345123618187393892463146915555405759891237478793844178505242408026597016860974126742910382688956132775001474937634655660430101952424941655746741867654075133348510789607980435894085728013998069633984365993319056423952344826580161602255762943389929075033635494926449369095385624020020012928273549022411498820306883319886487361634053061537410252855884122055323554779863623423098731369149330300922065167429621722042128193977965444851983286637520079855462713489843126307354754665462616084004569337539475360039908442579364101900772662695416629762455545530171450612141", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22293145132478332934088448863363829690605203996127161651531634132927888400736915878446703251090170256190791757774135688096138932895863283215567017438484759512350718246493864209634784287568394044484926445581729234257883702607826024929891214202225300126210032128622799478519627942251415576695366046083651319066297867855526543209372540567524005098358767242887824201076781152982749749482939607863747871172208288711140328551226395882757882714677834318101101954733235977531645574554758112771971859524580236330383827990256066129183996080948081291361086003388331909517463376789722677177343596477921570509715316295670460540171", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24810448457875185363112845200201725648981920909753779225852109031879113999639160325833767232748370332861512347415512386585751082557210230313994380967429268389972148827319318195061972709812978489150469098143870152830538149368181089762674607931417393704204431857853974073265215137858483832829525037331206722819729574214396536706674394121276780539345007478144722354993219394543011536815557466004272273278366641596388542923328764167842929741981611279082414582447143657551858473827905162467306211356813655214487956249393324943755385999994515408933400479723492213723179820289392023305741715941645351396896032664533397130253", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25946188055403532253565535516899525784531436918744049948272853895461786256978138293174689224972444083755889366059995172653244634136287719678257189649888641741982364384117325428640246266743062570014845832102337654549978684567737820612928461459851571021448398401742799401947011713596087519698148083445444858673823163771932135995250797468024548171352090373735845337799214522990325894554510660192944225234130200989463327721531144095190392033224159929917803284739749643606985697918316620261299114148885355780027360815400825393454175779331891801376720510182381602775105476788363801001311989341879673220734927072111317992341", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22660101699550473250260338183192765443760976484981129189881665642228365613770342110434001797784848694034700560520676179660989943871249501193735197932887810829972193416657732122204113869543300678538596343198099971845838466060678909208847206156906716772390736104357893241614269486846186342536832458467842142538871613078188224667158471848839433493749604154365843277755852995149701795741059899641989666135227328124033036260765083747026177421915552777308628057249129836534397372943341867304905119332298983255457414969621260377397186648490775807957072918401599807414890715720654962781846313753526172093033282704596804879267", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28477627853805335597720488074819917705200315544464782156509377805001641708993565643608940014623280330490615602123952271125725416582502133374622674165159152046915371135562693815237187884979110909257352059885641977265193179337589191253364067407202378421099921467839122443326227696299867503832556904386354409352138843120053214259809135557118208295832205825844235440842949717860533166650851830066396164378902197836114105415613725939208447175653166985628789723519342797298051025836987357759162658128891742754248456726636337792204118461894764042042648801018046265901097268989294402618326570162816990955296137734887230603253", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20201624317303281246418413481910129961216286756737105179756391402721360748904689239045274988577530150396073905711537000478180334191444710824792726585657829971628181308037063802056078501264744469582309469281676536654239593705225529412082395838791448749606334823513026440236601128649867844033424258137858376759513844606129682768822604579999999579079440794603662955944733921649773468273967737284110484957492321699833895936434817570563382146997913869769278121349351963888265224179642228446772551775182393323784546934744624756191789361141803825841135779728508743566642360402902828528813165624791098788010416529456739102333", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24002677484990555848913964206831621306098427411296435340578470997461338470181028533979306689061793482915016410203403500995885026133302107357692408709992267302371513412446079205215918332016713043379475429158794729744010930808831095501438567702098041189512637733615072361926383641266578942770750620220368567574866226908465352547576857527586063949620063600833666330229762570523487530904061619834596344558176482027359882009710038545359441930704984456291455483664497512754449236514241151518147429568147057587035610924215551900205944751348881198394172908385616112392902346119856104932268454074546219067557259616760038078653", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23903649832775098513370739128245105124293565911285679026104099162221489917568868446721206213201163760072792332375322651973353192214467422009921866060794236577098462577298394013048315514665440132185728891189103591316137313188612190857418189047017061760459783829925288107477435037820302492205639819997913195280835251331539963140135291758950297061536532194987247984403318245066353639723807488144396867763243600812381706882016424014025637331388490510496993471032324518193055594116533556650252225043953403814511903382528045396453076152574421139542085125269358666292973602374787420299175390120944480844644254448631336851017", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25481096701320369295084557804270700348745659182290872458653287931470655761259870994808584092178455952432016746912816228550646250963933020484177882054416666623044159869264105643708990548906180198693512440326621721014291624618169387932906389747756333623652427870159926432570797829149765526721098720966067434845110910341158983506859676654516687514514052204136777195985277393152701174830461551671505584636865740517659750975260735879641304585282428540849944696559186317552725314399079461475411412362253039141965256165388305202856544614939582351356042071974959979519005189000143118298955764447718163484392683478966024753269", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24207321012609674749534390296381633270192242782697503200639461847559791195629985790345454712393902971724217382770745797752174950244799190065390816874760439591373727916507825133990304753903059782319647296617838109372348581875803886764888191481613519455400947523454061043124489465656501346496476364183905901265379578096762583290517363950673287735081588144908874879744732324534063455106352286718257286222710539150422501515882819790943618565323265386337937391863184179857499570222600017096840097819681815412606263781347144984117222241262287757451468955450900349307471359657534730042749041751255810211942978765835001678683", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22580413527098260659320746506921757288812289016442703389540997371083623746652345894971446386536567422988963702387646401435835789470124611301046300454790345891539441913956956200744493391153437020457941744323539975596653511224668473150064077237313739858931429317599733930615376654457510392211469566785818140586934433909723667181146673248589183115805320201540287116863864846573579812428087468521540561314312433197549837084391164443640225496497316755526273154550489074398688508111676401020856486861374573553555932298590193662464160806652606297637719527297653875052422719284843911554665910198016435729445161509275897316497", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26854118900591915618161866893815788034881445014395283983706921868962263202353524518573900154759243665158516420579287451788210234061386752295703997141967251150322582424457699542635069205730642470705498471297507756920492261665835648700750927171217059962902437728039078617002282042884148141438668930278376478843711738513835086316567317753167863480883565231662178724064212117810226584381802267287099725959241287937878509973342829006984704357407052083994760103282204146334096090126676876820183180586541237785259560019338859867013328920815361672782357249158261026219984262772372828907784218599251263330649836435856049191613", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29849509962308169607613109160213457184049221074208503326626321980744595971164577649815443364353737739285642400354047894931249395184322389213153313760080887260349785108935778097700543563600715596217174930653798350494778196074769917679438981174799644528494966261401152068041244828722280372984660726912765861079051621995238097751578386496361995736785253755147820612923193035131138877298692654304288130407173552268604432062221303699586229278637808634369697106624877753656894661859846756875005185282719320909600862955990159244608094043161659420746275070317454882734792418962412011311189306221275033867199976397362652051511", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27026909691447905356198206633453743586868165460870592599378417065091103697921973046079377709312975308676052843608172851782606065389840490908479575794229461328411560711079344106808291037707933090135292699106890602706140516098718428461506341479593831527638551681422143832621479390223720591901124424855636005148851887765610427120012461850188808446192241905066829677608705226731712759730247942206742822230295484539760757109561298842649789871040171118206032617302066360735515218544784592876943363837110541326107854669312610054727393742667530414966686856010018415296801961141709743650250991768168181457337916026728560624031", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28281570921972359325173319497308779497176067086299178230990452539826066447869122589291561370504085367546495985587014789464880236180950694284477970658741426337631906198717991937709888200099691572623154853762305581431892313384496012333449690535597959412831874794946850810740626937721364712844746352374491995064139173985654698057032793345212989880073251789354843674870883717524321737372323232097611644091069085612348260966755176078285265916677469267898445045139352006668358493681161915155230060257094748879517392527895421890328112374173063831325371062239654136862452333189677893358977493263034623435284667712791101926553", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23881132458535609379302566118306151042642976288910938358544091785682955588608162799603724970312760689646809503732808084819146626998564729109983087999863996337738847558616720983610527955413793127797888952986454312050849235904091107344176301429164549998207310931631472571094170680394927626265326482305644418131157242866846532829044491556866023148588410163161987460861938969374388043799901820130672579391684786001527917716234200487443379534965038825102968232461506889167395506625650989347211771312896673266826616641749468980131495280605953628139101803072605854205998723971040022023631315659868757566667560669327358455123", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28405045654719482313141280865402116515635933107663121390297899872892520572723181035096540459028568028247904849586724074032310841576614238432652640286073941230102667149974228366160674175613845816947202637280469996759899102025851194366579634580972189583284791373857222288089657549945485718778463513462274396850964639300697524400051471557362719261971834486714836177428364256617766667045084747899191967127163796161933119276747049960884628403442703678735169100805126378981869182253461498581666448322777793299511610508385636434807446904959330205551638224369733743904044945325002855475601592455733763066974573405376231028747", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28477627853805335597720488074819917705200315544464782156509377805001641708993565643608940014623280330490615602123952271125725416582502133374622674165159152046915371135562693815237187884979110909257352059885641977265193179337589191253364067407202378421099921467839122443326227696299867503832556904386354409352138843120053214259809135557118208295832205825844235440842949717860533166650851830066396164378902197836114105415613725939208447175653166985628789723519342797298051025836987357759162658128891742754248456726636337792204118461894764042042648801018046265901097268989294402618326570162816990955296137734887230603253", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25103648090087418386759831114461745129679910308421038602601136446820829652579623356661438944773486519949374708948739243644948021103453047523303516835555834217368225086277971238817418532234353344129933048785775842735731604254446373503473182665263433047834735104270731989641874987131725373325054274739945205506718899050561816541607353741485057958052168362284102676906333682862811545445530611386502070008048425465430182242740054544881227795403495355634726034931136805885228657664514509620593326759776456707734275202756312080287391545266752769994529329621904441517859033057184264210759410050244515856797092695953410742109", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27405734879542627361591466040267197443275115556065418642631991118635572704158701018211807301070210692260741846674577746185708014222761383892224703122100070291356585061623832735089062946861872806956209727171852303564024059130355660463834521042714827614865684818126143581141660337944504847038819182334817836067531321209632942115912572571285098801800234821638054950811604514566598832561255128507721848979688640226731285773674784950035619016964331882153919479741473728577717391763037602359082305852857166482140110964109514065094623818610963358991765203880898238992592706286285717979001111694169133802180651553373931074303", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23865121902617715738240270826689102162705162965272173636698341612986772492666956809839425057918134547205886831132968760723885346647547238502503067704277018891694849296030478428429227307599463968603200003660649662445296063951039144097139993251065175254963117859796554502648596176942755287181514691470183298898828715378271701127949161476589330810518153872831501641584091767854254905206655243393863025508339704586730674757040064496003524667186208083282067727316720531646581007797485518201585562718176138173320103036987062510437132147403903733758498111096420584634246775536466331265052569902223265272626225875899807449177", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23353780312176731979031809188904071938126332721104759270746639304137178165898109144848772736708001324979121258621100698010298542101943508408934999959184959970321382363726504645903039846924145485097909793659623024885300235862022228015034270528603782266969388346556840769925071076197979656899809114025382122741390196346384012825125476992064340577315504942726364682899390872118732451143025918854463744496800088264832622032516097075942998598984641100129996137829964926878867234483000876318356481495884736411916836612177395573168326053366395155376677140275226540694654589145286223606407484012851469098067710640218967359741", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26111686177577473071340526128025543638458749081139449422490871256623876470170920325295221255334083106872416550460834843883588460335676860769470699731958507909191113045073124816314420228128356792516868195257405360681338517909326461408372494540383280176133295706575733594140251007975251553749136597044914894365124695092625267447715857112265567151365976357288542314400991562333428018913987172478600005441414073293197653111350400685486326685990061546973323103728503803205677260680123316097602482516102817042196326373776964479693813007847519041324672398720008943673592918400970070204836409168546929946458681146437546396767", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23147341035657877527640140822819712854010637706990507835931577965286417523582088266081273104413367353223098880690909115815625919209432693895939440168046209856519657520216606945173932486848219503244712057529745164360792225611704698754485576237064302456575397848534025960657701869293859244676333151169153665777531869706329286844340250733110426268073162906191926343250155436079562160726782168631684023554409813268526466514528446076723133291319366640529243224952157833538652515817365639662249012206783216114586711675583912493724863520665845865533608020420662407934487985211135050455868645214797196323116297094398329885183", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23572985893242779070477373315432341685472390756785759842742947918542449037882198994586874781486750388809641187950714917605443607389360748068820618023176356634728678357013092536111841655161228003994217324613400316444515968371820209600660615429913915912340725528166794107751808259984515207639951328264609546701965722692440766909129411232414675062660507030423488731853207998988437445910299565452667082382661497768147438129246582890640548259163402715513886798988394653624139343309362656926679968792476002174690164544055031787414427191295595145201106984442977590760109691311070166555155482703437699691007070127880532811699", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21200575039317002953068605131880420536898235513866146920011439800695562708016710131248797134978558035933613312300656209959984228835643679542681212845894723994951328439458171428992121188312645007985446044273312958592141403523420455109374928095893162880661625751305085013274104214375280661464513413987431140731619884012232249007759753865456273924872169830561478146581733527824095382923900250866067688879444392889786106634478468516077985002358725696140779616695248300869419235745646120229147278487926736518862250078581659531343501889408830228121623647686002734809673189681877555721076609056338427107486645379935427830881", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19996393609605628173884211510076790895581523566542484809560051729365269016662209503766875162739504825984121689045038518192463813893985314175022450959290266623407492778847556346609704997122008923182722113109631071480288223337184878462380272919702584801166180882661178056410485779719808115896172084129783985226395057770806259360650695313974424506684451113082452053554454591085852214959491239920497002867728675102358573568765689617661165849721359921849292326791381407671364996988507457089392660479311628805005821283932084853551636748652846524696147501675234512176596682470609388980478967035008412689749663624155133148359", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29084458280505207894841593346543081184341966528100890935321730577970678152113761931603315189962952281405802512421617853025195940108671149553518094432925217449674366544673143597627396060675161222897529709321392570374501014820942728382118978460687816642854237010020479055303614432052682415827432620672422165462297067024535783198835452531218883867064757091119845305081498122495379642229337235176557979565936410058019885389106017774504811768184109360824642621491726915017959996453125646537065180709715056644292999231088724333202033409615284729321964488381942919233525630187450480798571080926984148701294057659824561416037", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19125946650544050816940907268272142929601146291304608601985343444566701928126255844132522934778704157765344531883823181449533549363831118308426544333510732743883300123722677316024986786637585709605239186064661292216311097673610128899758031391948042578810409635065674770725963470165290105057895032305530491145450945381301934929119679575177652284321164034912801298545134601937192651517047694505408639417178167646014590501007295130274939328033983908682844658232222138330438734459425884879502746064229665233648172999857096952363155921273891277205963532179667671957703263531891661797212613162644328298608041181083343728419", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19257736966612292533389151368713480124527238260832755049582906076532199315477412142386554596671711954360404216735760223349840432271623672594838668352051705872274229748209882454346254756319480513407007816721452651383156990440304951074779282422405201918494714221072989370668978550139513961175041019753269319936402750844235684528151634922194908037452217893694692191162218262527383594614897719196040348485215797210173062089953408008338836602478770265352526565660974343827610336377356514129323451608432748249728203084220642663671981634995548055791630113625851092909668863112911665959956462575789431025524355885031395331411", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22142581002651593944515727542799341377750309511611946899887385098529563072851693819455684582880773884073308414518877099952117363393862188765405718654433346530462205315146560513096542605757406677072133001893135577856752378305325041705904336572779625577089562025830076867296684857986475360291530176624011021620510171441710784191699339232774952115059083738471503565281898794205219628788534296459277679835211012517099510074067203361397431956288438387962008910154421207805381806301987335329353059617733600175198155624270064197186731454386648381315103094915522938261956136483649783777624537104197833478886764449043437251229", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26626617335127810810856851178826859190223453408801900792795938046365079645522676020662089875634316091289821061307417733839919003008713622961625559296758457924313971039693736627936606913494289705958310392114924284014225311235094643475697514224554518023152057511058295104812905630404694995170722949514273209161919528126676020048059191959615041224444013389261896662067883581303942002939057578293050157152980246513002710610801327564632925029370057068630134774830368495705522990934018696765488706956589146324859808594815300047141763193687449170456033530392041471832855015972916483469154378547703693438913162584124901949357", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21641400252240284435632070942922146253948563283028715453648537386838398632636404694410768412438694540704985890071043553949324452799881821488558316329969594236973588812894780878698269729298968028979864884367228769554416069030998467465633910608388037045295308035351387840218342147854216455977176092896457175934687806003191285339721890628218714430222877888751685416888321454685410549119224058217504386500617007601898251213472519188992284171903057996412200816722369530875789815034493875390845887191936188107732485278577014837804980686205135979996004435285382901170647620625047609246976338820642497147098786965695294172179", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25669065595048607211256549483736046655288816507442786237320079135685418793703398106678691769424414762756236520040709689896326989742977427564059160882896667927077257595854930548822150318781888017923434461655030133672329953663740393191390938271494916053768857840130696783797861789687574342071362259286157698488974267380936876739508590864357471153721719871954589619083597571747653998271023376438394039531341955573789276734464617818347750562390814538084422547972948875025624647216577833758846302047692072494253743127808130552581064700940734582802002062983682430524667075825944522878613643189141105041489313923317156315979", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23739965723878840406308948309177212685320462105363410718665448013990224258055150943908380766558243251306004314712316864709555762388719286786494012787503724727607927664361123908912319120303193238868073524284797476316602808273651378807261465107719742677605601060023686668074883730256574544231614013745037525009576527456150520498454953199074914629583377144084548617084289005831740670971625633286102590052280746252284520929641993169605778544992344164059966785257519883486621117925697524251745444532490720315087478812198201346737172350934486748486949681220737965229732562297426187745651785563917905697011247112330360310039", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20686215821683915502941852194158667573867344053413127189865979013858447849547253501080436787246208046773626613810143039320566517625298638393488575111235737689710710992099047208208153835182838762384176734785154131056489059672298880216409177591500426644430255792009648111366725928061156853771988247720046171501376093848843493001334178504429064338023689874044190143146400319825520628529221218502583523316057264157244458088893657490692515342078932141615982825376433879516860344342732641390945656219389542311758979115688598228156061671105940997267045511169567840763499032153547388364647557711576214842790108523105497396301", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22513472964957093981426291590202703810199491003262411972390447071335784748685802230405042706938303818535534377909475285889582933123871758375606584626733137133110240921167739712005941703220806536707197731563175700525223042941404757075178837179533796760369097162680800548423689478484687435827947213984452778559815192050339721341111318891731580488440676978739193892317157135839307380423303891547729377889036307513263640602304324774818117547139643674313803133431585545509772107923003539289479768353965175487824686766929751969418964983954506353688663712678397402432034395481474928377535318159326738816666287995256854556817", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24009705888654239524428249251903262721692627742046196087774551513652526440800568885458818521453550963033558620108346983225060221484338906212504372732417467877920476071953247569209736898425556898609238804434896274511055701439394932016649680319520780498507601747944265341383526004563044017751648502929542824814418025982679676564122282759884946257622827887892880681297613920468216490819840881626070551678600730080396214629624612263930284911790574100955788819896123487015374746568021640092300140254266060509917544354714127672584574900130376208220491303412990614955409669513129403514190354997434657454998738481201944699439", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21719616345789203295925135864685730709301060563447678162840407606788132136949092690649717311982856250125765911342853452370296689332340981279138608587876817263558271348587775482908805789690209381803210243632582938766666316505709107544071201168283092052600279947821588587008382345718907184178935452196836965424557787350779483005199970223474414652658684657712632411188220632736285637915089727388760399837317517709402554987231236448369425520811360264534595047373433242152650070817540067940853659445300169662948701874244368944032435181199683190101283377363307175211085467304258695777217783889070285060861744808433517339103", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20323135046029207749159977379538654103929842533558032771171357185872658859923925925559012967031132382592511688885372198324816301086741043175821810668456941746276762692765298363159866498819055720890150436596481005042937012753169415316438082666847836218717695191740794625153716127662592700634743769845650008171963025901554422484698753569088082617937185684902296650550198989948218647175353918294551584123306056343289093642065585421468242401270632094509475175738030744247905272444594118428760033675062825639252092090258210320989500364089246859154939914698864385588146641818650662632728395219837444950486429990778791229911", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23998744828336723084470145860018840206170640224092603375806333139428394648746264332747590070407785578336563120940843231402804421632840897181212771804238940151215477488180052653536606971062139638526309670930413125853249290404990374218958283220553804488847851988514699195597821366016515277327889108734933507612871046656589623652719622642961714966749254220750751332828417738978435386744285000408517989413361294069929658076138240554608800874580104386892537093269745467170690064310786287031055670123315617522491583176240189029320642477943707155892084665494153292848150672210040800493319047615386886483758795979014112633591", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22916408393428906639602145230295424900592311064927515741848715771497300032568255144331936499174624207636325143423774971224891498440248969334801309337862963984857418843705070604964083845952143547864946826056167157149177269898034643660351218741434806723298736479549220493945451678042323550280340614637698747481382200161063058229425284977179485390510306453153424799415021587229808039846509104177005858524075341807367671826008960621905000746661707827241305776783909422261277930330993197717131232056906902579297523842480298801730920749444537442706117121340855145372102215394968745339599215958048350890917508112904629222229", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20541838522082775043025591198159418365514122729009261083093969906013186187058568112278121751951071847950313360467422233586879243069628912399038111738729994218317743556052219537997522119916618580301412903863142160315204233523730408545866232082834408851744725578182329442127499846967086994987970985657228888870819269784295286198193036672260583825887597397505650243734491349979692469124524308309687236848381452991288764157219585163829755777288242299667295887843095679016302383703722075829536064048611594628020135028663643457349617463750481953721744308816089730071146829261287640618158491946154569189707558374119327690963", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30604198132230468636529980147735867397203131942853297946528996226461366055254459681007679643001782885814884389946792946863108718687294881726188542306597962936165963594236778023051563892424511169749444136587746141729553971965916133515177139835494482149031755947672957149984494800749655578873380747362049750246259210772994253890650167313667382855651065641644428678506833041125895771782288144222055519551627902196654064613685279650800876525058244237828230238650792250464361932966954495590361994921504476511823888600479712340467153630727482212223555385849925578645071668857642998713236774161450842449122722754359877825769", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26448018856004315731568538356507328508114996523686828238933041312128854547797486215195140267767148816639714727667984816646921412627257183614959851069929637404787897225169818944885297061672593509223376855669631086806556522791952535886238338164849925983962930053483011977025445018645922989915767176836714592279107368296055801436592805511287321624198245899886277311059367107841558247921653342879336665777405768069205123160956989708542063237331505129489475611778068529195743264153517924226979281323424901392849256620806127134703854003217513292539002430550369391472120371794219278758109534127044143608746822911135680865033", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28766189543065539829976433922597896406655679227280407175503011059567153347821765380480131226940781750737340279936088105946421530642077937025373582729046318225760421989318623168739574432375368113818619701262996436120011867211862395587402423385021238996785461091501780651432298386005303313757693644799200750401210548569385626215514361898073164254159969077541937234262632689346282391526711865110748085831644785267280861851992170367124366461523452825986355044057651346057363505434907559250699821666294728088910067311619374575040717901235973810500119189375633913121244255538950289155372163595043744821605549437582345822481", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24257173185536966669376832650295737788557912378953702380985721699989418311172626758567344531228100833179710226685352139451582743917441948487839389728629092390015695152506172816370817137593409516080590673600765468338975541308940338146483409741689081551684046246521279663560114672478011509183705595620626932063158678517338126628281736939171653388048944290429568395036576306372385340686990436544094287325423099731909479885534090424232444396757421598555548168247823526407438624739165350561083680949706074749327564744542000437612386761583879524528107277445142499311761984263464598967920409383236645617020060185600679296223", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24692173208150023927494511945592441041877870087051704635780097255857588356515720431461887119669709409547798945603324709437077661557648726896200835412869914075485564206254417044748263345201995175676847993303408244872233227804753671423687141795485838917386977777220001166914439128988138326110270782775236909115018090821666548819754470475155335618170020785470989987932127872287695353077181392636899141672654613707519068978795787349001363038279100244873690505536055760994741031164274677468631867248335112166433376320524911671913268688668523760300297596295973932212818442348814558621503980598634978366052066041314633012497", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26049822883712654789570520826487187206182662415067291089589096588402594643315240866417383763574527101376644254891261313373655374095526278963977174482610326773012116308125527465684980146816252116619542831105992786665084082963601836321238591767353685530996937341515546949017031794753731306912083363733305464759659672018041404537681632651379056200143298848728188315313629523625051917622107998690276098514596170007480309632753365587658003015396556837371419356489116215809331489308619486632934019061715433408451041982975026849574793848461179607089826165724041712857762666951281398151886262876168859527326267966476160631437", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24757036574347978789749079040209022580250239780713084525119028181778769322664308515857018255812336494274704854069187816517298547149347254903011511705465951790811747099387818935368869509241926678344323303755737708353530070285205941246885749349237545451659000886384905028044576215910457784731458100466631559970618218811807953890603471150138110500051094608519052274289993361262823996058008180162013034343718458846622851226374151945676310031539419215485644001600642220523968986237558043027325523073533338692705238458254088589626546125277030247895714599797212812288531063810647959067340687733354703135195096308285306627583", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25921401491556266024166247740570709007760259791274541782638756479534244022534873238765885069501647926622597371828454611342622429664405295595849257409733147418344498159636297636830282911855813471139234843041750744322479448727974699677083395986397590165273260634677837880252556050036885544981468335860739424768093279592789014570154852166037032166575023154638843638670445032361001408206789942231404825887190221255530174042157502672198147808220621920224651980693605101613732295551788234851419438105980424713624479196112373796985216182733452117918146339765504452362147096294473589664938468774837626972593176958704262551923", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25635831531865917158186226906263112559418921010463933617941466352101664916795836249639668205587656211786717424303949484820210540232816407558853216103989085588425398395792042819744651464573302817801290436514586175817921675239635338475541802785167327713150802951641274597930563564731597929291594472750068463307148768408250867770276190358339880297071967067104628875542508242007254295028278825600873892721681512459258432083157417167074603572956080873976382675913984808825126862591003390860336118814831090598009101644260223615950751637027154318339286411620680743454588621310239245182407677790441470693992208309098782415399", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29757866167051963357268481454629101345365157401494218682707461348996452785552329424421967068897171489330827265458225716662664134522526603543789073082775031243548470111163113139904386909169050716218028548357232214374242581597245131710763783764208637754639780112054010482385363608206722910033898880974711202418624066826033113701581145293050730651672302453335346178430021079076361657858881300274419833206836519227881664620759919243880426077939121805804477684431650324736452967303071189282155496663987533761048790911414291367750934281020507077278781426495567006554857692105699951474770661507702400187715805061629064301267", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24354004388528916115035626643673633162091831952092969094071619470864132067880628633635128511788750482666036228588635327274485432876639044899073404917955490488669171633561229105168025977216949945874363021926479344074313110156963758890436289346624561802478322163265997769527007838487794183885984210721536509413925989704953577671087206743196096581438861970356183191945720572626734289292826954646664991595428063495342259173074166258991002901158396576844517178870640225791627769275557280165080127652739479746961237389571237882467530285016985039102134180944024625755559793850468042872975051235225359141190432876159356380229", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29686368648999805847898278798981957100291672102065617988609372465035406358032514535464561107449361460346900794515701125894348936472063895411765040150895771575757284237095578845386512681591781943541639626779181671948046271892048304402588847271896430767326085868985686636473005047239699275263588113075961802061600186957132671235690707179542378668989495449577882776795936032080190008045827074190268418616327513996610888335965908623336056901701432880613437194020345509861635682397554562787629086237924531630104857316623587977540391761330755314687988924159873429143783211962448491684642497488648965523807209939442275207117", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "18812574931184452045252745778235035201478896350808865952278051583211297624154958592357363984613812975637738657638940543174981675819446873305399460361296666586777575661153204253758630427126508544230487943578634137408484360295072172517500082429620177531607600760569697348827246461739171658972012645191247224685897880725226061911880824187219186634045886245117147212055902477253076265753673699983376358655539856801988774600313952413574864740630314035279634785205274583596671380522926801734064061267930513786033292680605417660976417125540238161909184284840653120285851750235486772562816150503222450160592755728081479276007", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26802644728755446449692979957832076391685315243057584337216539637185974974959664953986133864537553249813900667713115685752625152259767714523141352271617893547000891388494450213087768162906389781830644223828571039779535443232896050303649370026006836529626153187891573666242266101135913554119911108012740456915125835206224472843444293613230616299690810095536433385431417171790919930160781716202387550681452073334610234003605315656216441746029330715925118159421401537211328320158649631661944965785636657333253873026437547386167759577242038807419876460156631640470533603213347177194706526809890461853091772853899039960117", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20410973864325947928640446070988821230039100051950471039559020163398675818719617789158836903711469271962165475328505474137894744219155753000678490747022308316404893959248127953842581986985133784753264500862676828036318992720299616982655276620588711367289357996226917921687260170753451455030080244858947210382040971111063399983811197236767602486620689195586010231513214927413730390930646537521719725021368606312075810295717147364278840359797854344825765508905105601848132500022323994830366809692758692044096997587568233821067283461784198510371689010268089601253751833618083836190059696491616667894317602768451042442613", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24385151209609352980372166771121507681713171794697164825327442161779938246619421943784554586999170004580211644837938748407650654287906511138474150721731323407371417929243382464901795392976485088236250503258815910229463843198314855072188121621647172057494761627733322692921186744700866771819814200415471267120703548817098047924545058075729932910502533614399398652581523863868627597502107837168710353093878928535368097632791083266809426659173056248021006385407496294156935637486715965204487300175523362746096907425985263559915122435045195597493436302319572871222404725250942031456065211287488133912357136134780547068029", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25072339050834089107325915010495455063995178313063859671070582446470407655012526864189400325766611743315758765260770395871760946390113716683092800207794248903495549207945026466996190399377353311536413608531202148496479785190783489156945172942696208158470747704588530659154361552255409589471464236826898688173399248637118295315488321701858889403840242037327745786566188178675160955247872133609836607370980578601759519605521142840435898484418712199133301769444735941979076609326209021576734976246699579698823808348824426563119911366940792239104049781898640307195289038084587771072373527353587614921287926777666947931289", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26109883535061525286710715761646432453639745976533249857155293725559302009231262969421170163618346982854531077261638600540832092310579159167600237536277130478782317739771878877574421643721359087256858109834171243474148672217204777391334219892340574868692984785845220025324203585881518051982963346038219956516997076806090652418064556761923517901445417627122655116683325455079495945898634646908801665930209584501241986568589525898636170058116720702029574456218306348091155819945672217327315989412699539416926789287868782882396511161998445171307997367616425107667412425899726825308206301908211610405230063799253349588919", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21531097706141028569287074739790051995116154639513914989801501699084788511728112100585994060262972721087621974650432430003981389015311354275191389499887296184771414924116201948028132163025151483111536216539479810046661572799050377696719251976079651120221421934937120423292137602488288984423518721576230071358537326050603110103584725131935411438788884141851956197555989508445393715725218641975941001485522177808444844434054855811225859225475192759847365478945483913026403439033240120279910096147386467379444320191776500919893186435400539720040993794765399859427693856082265897704405144845473765078903210914221510201633", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23648111190202943504156643440754119548092329892965855567515429730543355166285515652163210351389472564935406265529127855883070640725475536638614862473246574297396106639286254157659698551723978097443464105065170329096062561105250755169100084906956709954358079314596919896117550779947764899935641419227203760428006250634263484251601254449669950512487428580257722160636311235653648106132877280653906779994502995396803728056871794510962888781653239887242702570590678400631911166661392111669639510087253050428873383032221880872174012465957523173135384644967825649689309219740880216943973792511354274796556606493969824061803", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25569509638534966743641183781503391042644309154066726510282717427471161122849584336858527875951456224379279001140946861606933282924852638944375838121129946989761238382896192982749592922861694209818899600954414808336514484319414250461173342450142582074724766132665160715563331872256541862829735352566173690637411414376162655270038317203509968964425467349806431491204733860261294488141449000395051437744609067741030963137347102305671632252492772589075783308599681918462447515021253922147143686257034207344824536619950032903997912987085753940453648953164481725505338973151839099677405583248694578175021282381143222408217", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20701375621278058348717020959232764305139625070747542995140859120990249899789098377510766074586523687295429632845075610531390629945710938853912768507073208517406038852533400964385996120006282717878476970195906772618445686456802695875742547038354952610623340170213972795936221400009763669344118669306198857670313406958651356172511191918212534266855254911769097571721383093778688887626225023218255906939828238098589815088272318220329822554876279564868026767797047056181009999541850594226152272183572652401803722942164382814974759524700220425524734322376338398641207216180985319544389339376358055215744617823377455206093", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24130660495049134244770941678335129739698761118071756702629446465549653526390665854433583212787314476492806316827778844065757845463959698750193464527836665296342366277856916117443451744880063407938559445819650610544701886235522021012610008243899135411122006843354596841996468940562257443948034086523267751357963335701792196022847698784709795485131655922151295581363070872824352787268509947562522490830247816046862841558726228320152312639073031260166924793273539563806229871553712157305249521981911343095455366065114727746071721541070035560939193891317316759607950104714219559793634347706339992436816074154902714402319", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30473327218159140114511010570700536313118933064665914700473710966373453959191277043877374253948038032849051028839991962877731407430925663346073490384926590910144806674997369931695522971336652836044604467888561600575358255392651020447287463715886003951726399235185176625726004236849212637673921946833136309464245879373111325234952164216451264633423344007743550945463409667570933948700771435610921262496104793507139651915464072587816793918246398171013671262182340006365066571910719624083119083542444893339790052502301631548808606540991416246374953260981385763504634467523430768604983920597484465532976633042248465881591", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24134665270209344115655115001306795484569877102795493306694621640301848091328885415678463652831390621618276929508797173283973323139446342586467096265148983533008252930334747592709152190827048824039201287321795459006759903559108106470863503048508730137582998455624871340494212822641638678060853520738809009243127813406387200164748113652968124539762822638721346512419330798576058032817984474208649291578583702660741036875241305296750172732373563709696687885923557942283097043672100337164650400447260037669428155759629301656976789354023655703622868962597760259157495437263711135972763092481639058994570374491282147996387", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "20354609616253107468160180800515485700889185154883034972076462264063760814028667571893913335997300048436083451084313105501594919222281715534373604269027141601525771769686375734296200678878710732121113692129856173204940831109880325471330677009339125086502147983287559814239844674552331760823590439848685528290168350593303709064901323169913194072213769809547921937457128714029543151855497152795305494158344197004875881160220228912649844199879417172515997454905266740020758714071487859296688769818451052400242220756744420406759148781923706218403466985064587970601740873217640359622825507486689786887501215464157235064091", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "27021761482204863831617264964605922701305551718016809762538046237089013412744521759259054049972678643440858451229598526888320295965385359371183483686012477254626444949691959186140522756426709665739987155094766561885200781881445419127966559870359560266273203099814629642873138355054701136054996573269512229206995210254308677949911522074880276519580787380766026426077761150120614951305833728759443764033385972974533440786625011735453001730687083791491931287558636544528392062870221065225869839916832574799452067669764338145518237805814983270886476615290757270702216731272194316560926867136505245684430329165810592814781", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21655039169819415962134470968838922200054048708829371922492990496324517708743040956720064162673541359202823085565870675514682145924089142354196539491199305683615810613017467667609285509000365848074952036289242499443032636288966719283899964606853102333220928099694068112078524560588763063572850068218265839668264387413261564316344815256253480512719859870186399212386777995577089961472469260238308357096124391756313036770645884224195786025872653780299174774882398229379532073613623297858789983761595018686926577856539472950217937364332423174632846886416241644866548308203539273328128217668453147302192504148157444458693", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "22364499389309004012850759975165054548505372912458530796302360652620712743277356290622701671851994575449142905580944501971090708586805282877455850999155316010140065372584929155990556278225780205364168045346990687624180393724247446566764858493677173025806545815293810356646269231182247460934611731363130994776436507973294543543132624134558405324767913538087380755861361194582240984956484270111328339059558686861085456677398911464736354246840727200561348568025413514591453566589334803493931640169609359730303542461609095572170164935814508928933698351882219018482854263591413158203218656266206645370481632189875094527343", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25980962874597823305854827754115474819418142455714442536589469182577197209456447906720285165911026276789855719350517460160713798055194214910090913190362451168999087804334755457290511860825253541682733063761843652514136082750327381767607499299839906187585918310655056861439671763428062989838846052437428534978789952344759135660743712303807144045949245685226137741960119464656044406301452737857781469686247906810040411283165046847096009465685533097268455446412523785233367621184698036149485997797580550179680369822948288006935878949074179670974760268171632128628447448253278478855019689297986340185805623078877034342137", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24579480489232912191730523483902885459422983380985182846617738199874615978865703002597695119409695049849734855687754825787213578583380945356823693568093513104248158667071125670249557024712007789002105625016818062681556405823621087590114238496924683343559912260266399456882422668702472134747246689120276495276507927827490911317743062278278780593748918892645949707582031831819555904825565553958232622878071187942528012477498240169704827166674571372454557247934515154898981151325361281763701984806583914592589823499970620299817458806442974130867638178205279174848098783929599291214525346772209989855271308195844362721991", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24907548312508963334972381086956746063148840354340850623894272086751146269468059675982955273841649071512146186821168709448150048901067475256232346046231465976340603580928897224462069656470882062648594703885576995775017557272454952602231466403024947657023620237962462054091872259312517691966595313545633534091275129456701122999416183804807416294745643924656965273007044507085372497906227308770634847446253815502002355548950273221802639510689853069762890769454190669483121407130015428445662963054919871728932736759181768326478621052445038058650259222793638017234962462490810627371163090251363673665861381307384332471693", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26165029609393506382464771901575581022346332167929758798985296333253573574608429669247115791931884095556677107719199386288503125890343050434693448816104697252333785753580822564827888611778562427887590467696604125375922366344007899773589274717264838475329336773986555078147914195462246781767251577940738868307673876601238303182328055245775466774027123481964998871580993873831734195251188595005539469830868507003949809580219698585492563089977093395660427255372801327943842373169813733822897478424891256294470068829855470867566203491817334392323671616588158146824885365286708065094713197935162706898743864758296797632833", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24580701208828108016432104034944018509209131236515618805196619422408631489323486490511999140091961382406159475125285717835423564852515175490486586179803553404171949977761755377228994170450628741831106704555381994692168360129875127419800015401853031863640279184123106238039406604113465413913410195783731855498071435275954328750166147337372041758380056926917216897704709914709809263955949839176048738657246521621956009854472257364615306409265023110598640774913706466476440104803494151519375890122250135783657167417260287609199624406826745371116897950920957545521908549899381756066196494582864951213198261963089324735801", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25474327595601519325388523041948575918430452088506304129629966866695029251868561811286947422105375973990040631410295305861311415723367532035034267876479838696566041039871067062041845791158515289922221983263502170600464886329128573872782519730477717327331465064116262179893691125277969119500372839016100535582968104641780677512111262111384396048661272000983068636087589654634747917872143961010641342058604971656158552757213677960446889928884168353689133686943496966773473474436576758214653897625297937416462109287008796011985424430617231584823794076133960746881966777005010053777607011218889435913822429364545923911717", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "19961746297571088814798011574921939160376437782386806790729345017813741194245595115963291997819444597186706682163132625366284918046382315175388622067756801865452259755566281915598586481104183723609008752141324479619361014182808646867382135579824914112139268839686671062328482916094828165271265590203932924084055921409326595184148881574019177005623766679614851115562748916187022055410644988293927813616864936173715895646333670394650186315925647693337484034488323338006470950248873627455561169342676455640069483914104440037859482534551314256899705360076907077356733222005454144250985255077427662417698569062091467769063", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "29473119809538314408167626219124244493644749254436105509613349847520953463767452027576546250726768389964439593814547338233102167575250487408198086525077484567838481470922258090979241014662899450984488155991617270592094206197967680267736822120806787226853082717794742450332143285608467710038429561585708037810463076053892780943340059178758572812310675318907967925122420900838831306059727448341217313810025523158260884874425026806373486841749524114013949504113263461046447974915931591613767824859431033719359930576538965157815523952295070820695277706291189996304140831836374506819283059703420206410730338797502524873869", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26497960785700216949048553521332903647507546764011721839380978674339088274048524794301939136586546157000340972859172843475988888376634390597287966246789504580547617872373768373637541247079630513095033570278183218243263004968772555378845552890767963478740534950766264496314015504492822015921416354325836226868951131739469094204668955520308599184995824972597535241714605127517686285873476386077360166823715848257297384931167472329132631776326831955010315236358594687215872346198522765130020545724797760121964964812954282896918841267141627904283991898144664040063864076521462076379357454844105103992709584728974881983559", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25731053814563763419605433945178101632859497658302204227606099331852914822655959039556450746334325455388888460263805563416932184746444113359710363893113101171924081298686462887617012726524363568903308942102032202012603587804276519673444710800731932375654023104876619186802145158949025969508511128127250983985587557369816825547479157319564560999652789554291306205229723180459794848276993659355138320822683077223345746111763438318446362177293173475930648432508622431453914109199866980607134771916827555143899814499187471029425829979289036032035180333156037656648411862252812129923590006287068860032192426518120174498271", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24265957458311754869243914162446958447955094851061163672646206197220947333503793399840626090546758006056334270142754812234077240207018415812944720658577284506500196387314576310622127044471652353840789624652745350015134395986846547955343958344584775488876926109594106391765323440179074754640048413526996959421490654811222355108042441052832571325091154407882707774676342216802654576209700330074801259527466274197068381594919927436094369906692334026449638278209787798142816032318111482890543249063841641831155152238276802226791298980062944993832986309263460898322874821484726665147686007833760020404962137535297159401947", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25343869505410613954079035168730234058838229332202127915393816036366473226013279390528206181725387648956240978906324399318470688818718652667905466999160999177926623130374587855996251292402614290860941886801768094214813946840043239694198092767568640750255128446727914295389532192094031135233696187064117585126163834771056162189250333338283407795141170957211344820740734962606624296951009730045331006071223322752665850939390229296468439891657122487763859877483431871965875355511535634472011180137593435739229560554907222333086341567561635327770220162955133034865242310935363333565014813187120750877665608413713955338417", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "23367733469443526494460262003235721718783043850841094121531390707929587741831246293012842892676109296672814109005965440709905846038111285562596339634430959036733564333793137194651727122350069477942894977585680612109138913431104590505648928193272245774467556857919384878679210070887079665747984426849989086493987795316351883781735038389347683818854525860137917930321066562023248589292746968508718499207702271182693276720638958169110441144992274912209185688120150241484069470879836604307397307423636062226546593106336984259828138684409429194912488092089383978895552546753320988191597655460651295545923093177601115447851", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26466356829082812249568783691160146130770353422729498165174522101446771983543657290310919509478472944833638827314972016223007585083958943434053137046181271470928040197681359890978590562277529780040716884301855887025264426343535940026759067667019264273573855974827414889089669508031511094318764303492391436792255622933704711781025292074604401560931088211917342636843789971319135281189943162538154095176836155748267499093713642117006943229951437568258561683260391757766625825765767559754110751217638422980977698566748224193517647012788273961107917002018639791373413407369711266667310961146457608439580558835395867152793", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21785018742895669000401286916839988334415546452538668942232364214035131661335429614120989629941869341695910457891829081922411085113714988151507234345914290996903759434800789768056394932623141999404958741959419496672546573054704337334284995920330539985898152795008228885033307954540820074406924668237748341723221845730164513165672689796853070567226013611046905750442267998662531520772904368162060149781056461985871975357500641064068453823940438962184736225304279085792118502895216329801370149258275307740529416227379748456456314320441053158553380674125009413818118303647824341099150981215329185903104741966627529880219", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28519499773393714791749396768460238887403181450151267457424709509580840496394647701585003748261887814398803458895926891086057609649922775305698396212438646506784586527534630694673687060736395257990951938311227430038160469677948942504348544573526382299311929702598494859215354107081860639791555917819540885396708530664435207329410594321880295554832818567541758877973038606956116953434250800293455326917741079424071224703485956320193114893834488635726595394487102518986757133002291116993327583442913623147496614116199912184655924696804063614823291665659747856290480819325671453985939221231416376694024463192939952261767", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26602611613470341337234617774750996259272408704018582285973864352142836495321264818953452120617580125079296264826994882393476340115414993388705026006669675090295733646281917969172053571764541955043884878440645588811733878024283761941829780851158497726505728130520613354521073755285028028848592551747163864862047319319543975293203262741065378118504202312438276148717217666177769538457415768048621697292221646898491943934807576908752221257961244847787434430491549928762981415392674760329861585359797518297819905533208906207496271420229659164514298778181911273185481069754689857321059857894312504097247226343061258767353", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23792639046243982263284431116886565050364892915289577706709567769782856277223100798929111771314534203666817551706439726941219244056796804232320867623124840811675571419398248438460985456560790058715461706811946217922988187995756375767469719473920508214352542774200968221022303736536971552946074040864666761033534012007969000895755849926177435602498084007766026891280133613071387281383351030048535465008406223977772949782609568239935666787535970050055665334971585590131329786225493240449227360480220839856197042713893475810639741476405837176318206176249818079959881221411140158439598742318530125846836491804497359163693", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21589527008639095885506058237206924111420169647072776549185860085699966382444868602674951488842763842647360626722964921609335787869348973499833033996862727500548405359269197687786602371371254671262936363042224747901985307775957549715599132063694593048434360389834741582852542689969369907681008939941535186766498664789896877778178958285075167552124484215120474840477819859517564138483933305616143134329586019459934163878645390308292967987789651860689557650960873954416511812315541301352136902876196120093967357683601242835782493002080221295392404875480185887805546686059189580687926360232615007518485167452298014394421", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25415829856133141365941702898373231551206747396602320981623156025447052337564819484715050607145048753149667000102738543733058261110882192312225273134510370702210814255166448729199699148595506210500416861154671666260339933365184187817100494805940754802707893404192971182050501991486551732176046792740931862367465831654269681647705823942852736114776634588771907385711010389481706496099274794726251714424717890437239111681761940613312723091137658398882739835854277058113197237306585921913800667337083410254596517422678028994496788741535838542774919664750489618171890704637351643751736616261015535042512153156163761077191", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "22610529607452631226463941943689994701792381089234862559985160607533949076016039636285984822960963923225897309841091267486045633476724595268695497315743427463716988250086891206803537853207341713500761858547109258420145770770525623458008598546784479697745020649400174910718707135169314958239921909650213077619911376271080970182715095148046944719561154225574681248466431327015606014162298949799491729638734316452168314945914353020991566317881331762517484678340424373238787736381287130993612627355624991503941664867164982656861816521932104990348939767465469879433920131737404208156845908547360446051047711202114467912821", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "23882024146448011035586574829295322571388224342113103175739461800537342378848537029016038100372550972361958804593322495367647217031045625388416894275828223949579505879158217528836272279360346034754871511150539869590451486308836062492921695564323829347767127959343654107332670818415731473244246679239905753834643169881824472114492449258374580952726023973899188821190010725939487838927961723711272135524165929112984314839006264774332349359690213633686586068075651304505346416903195184860587850310603669419233636752819835859466055948998433239079546775141810338428315849875787832497925252032882875876474851578162664663187", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "19587771234613800921257692853094805846920571294574323121151083222698347684925151219192854317492902246450887148062756366190774089122626478154066085509205157095475533820840610451913280537949814607499934832595012972898389361374228117204313032822380509458600463413305424382189256831295161418875514402710241238294606093279714964022788821717125417594398895147562117167391264760317846950279906656450847324480970661294231966724564142779478910589776834247418978602118209028928757615072974673931549824879441585528420090423742691669936339042355973967712917030542120129163043399198633616210335159339725812548146981775128323966037", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28726061267953809573935609143530725328108896611584506125439897350376217997907707365270526466506754478864669579574936488589365787599647378888864908442261828706955551360528530552952151306607316797597403314295164087887024050720270888730678173291549615477206822231834535730937529549173270745433030902490828410659839280406575383344142364672594819611305381395659541213121256174776794908751298726607888329622875507650029022958538092024667036112363906114777063633717977428175627082821330077879444053091622579070868162294421645798245311080937136818026138171098810434121048876696053654179025515221631226084720503180443979282531", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25480428800404128323517615083682076811817512659524606358582188142014316826812388018675266094096034632250531711971951053576993535820813062589931454852079796753310923620068952815445506941189389795133455084535386069427027675320891065515743357192537689911347549567775682189096422587577327650958968947176612341555301610293659847467976069266283879637780867365117064760368836057505105849122587303082201400952267320923458691974676928715966537848835929212311392107488554009694400334121403704486585994384960039345328884772753463060811665565008199653246644275816551062122927475274595889917247018720233056563610393693836713489663", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26354185246178203522572307362965983352892859700770173444220897205717457806336450094911803106605724330390511305347831400580550097114881999954750149799084764791778083175376943938576184064779949399580417979527666650267698806493906147260129930181889726314447325464666450127950284933330132066278968610606058486216532952360120154117728316581519302640113954075406631559655805470969287959416410535729081520603376930852980818415176734941499525559480292410757055618136342344920045820824505046809090952194203098570152430938599163107449601339424257824006953646277700312672955684911209610332311113535288772630373419017385542788653", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "29599298951984706470198362244498843194208834269298462288463905330388489559924325848749821320714602512342495618702410222137271318591573514062861682910478679616420475907998551701580276595148465435176391293627959858682077273770948439835178228860347099476187122476372548284306515784063688674755889033159173343011417355427333239990860370458563274061232898033339404004218644185415964325610426256709610231948299599364021771664867674090879078100013070090818551783959506026208223594448092255044823383769073955508827652317582535350381187783006768089322468343063051278153486021228042597028423439696315971491549798899606581519131", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25928761834710841979820431121879331556654626365417369856341403413991157074905023556768451958295565577616355205544941823787277585268064542922538635096401233136404642577229911152352860681215477971224223583521203821923423322486925368094027225324239335395451063069570849885533417418655409337079484010247602516175851779971598855584787759248036910295350048256342005261778520237893182120886622982892430070335904012727852339784780363684803673620051365104500941642963383199724035787299415779575063736575351525000059117669556921077018442785684025273285842348924226679571293407800145419618630413704770082328774245447609295784439", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "27179940011062467722620880795303579714967995369588751705717747208692340564499228150486087888851100011720997770346959453991045893330967419434476100592844011963034957718654027729505142925528706980664591957226426710208530945770263934941701440942517650945032847764459964016248074100575343376659872725204285394096689431383438411953324525196068608719655412831110177473299068516263997465671039471680683201534064322575670089166363750606847370965703477809757403574446172421804731184616208679709471879753853338121838282012984855811192152944918068541528924138940566902351390838199546093836940107907787489465873140592661429609169", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "32246480003477048463648418824921477961836210494069188826480305923724698954513743199856002569095276887574354639234785808449194103792495291128180253565521265346716398938880423203185763779586319470188001702784393505924568247911865387995031562793062008971878520208092192255232853973430155801817948082119159619706585165789482705610853352872405604152917220763467044785410318116352349943765374266480277886420835147639960948712066920169193315527600184735519690290172803435674491992161796685824792246077689609941086206616028918163644402875065637257361614678259066527159379860514591592328683294724617804253645621432870242889227", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "23803248008200704759411848343776510304989036732640534009159883608085791402589536290634844282161177014508047328358902062152464927104257293668261691206650677217005375017155747811240582523504576178268973984065833205844114207767755957612389690942760269551477077597152157854967027762215049057102811934820022064685917004719936345194936286256141703205451275296405691809480998673387847829808336166285390055971945055154265285796358349881831231094765558395450006076842125488096784752370032643474831713159360250191241214734368757937870055152411423930710942107206202062496872396086178212229517248602866746757692644499842971525661", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24931940446356143135805425165979403773065464612441712891404815559885526352548553883555296262812867611729304889391073191293770022241372390843796216176384667988471841033603510837962948789076241647909623495628252269887011973805752948092051572724225501271986432036903828111509061148019009085501426838326556201545810878112911048369674239720320713544950400617933347124186458437969327735441448247750329043014326554257900862119637832779133417161615187944912831172801782101022592693470052616812240382651408681434780862151262620803863808235942255846886002933394219155858107860241178569518448878203216558984718417537513831138789", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25801675255912761587068252360426925209452074563328660656961315900505657980947342575801852195151491698357916929964787285282912825447897383446319495848170421823101085871843142162822596737254686406917402429299919410351340471321394725451999731869374866493111544416645968698634707927711662261872871049047570022092610649099867206799216574376138757092161608981815801211757437994866886093931987237679201526490403095024514999168960476575497080349069803956942414528473785217255235585159848641069266424572712734217409726173607679076502878153495623633152089867918006935956961729387425729125435298672554758007780477301220101480063", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "22504828170234229920203781485931611085817703301580571045482927964407500910248881726747662583551373600996609832987181370986221101010832010506176026727927733029940515894600384260452413100093765575703911730278577916028810664701972844013412889868098299404787991951504108642064402473833388280965393470453002025105569180603487796289861669224854922060028755922491851103081389683438126501049964788811219503179943519840369283545769918784242567641120943396700795287607407233917855890642096002885200674118939475144227698385329765247764944275053269623882870137582075568604110493187442566870941086065211228071074383320393157121283", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25540125769502470711938410724625598043179483443571194363068372175961874638454337226882309977933846554645922748252612360830057425750008453209782249828313317163712826989466839685457818268777557742357979769408923887176133121346022753957340693705319474260235663511487059056844183856248888376143585647360086252914424778293453157490756656954733276645594013154515014634473451305077957422504892498285066873812885276861663231373372641096420432454848029886451518219328657626512125503841379787187694767968002850790276557502150917486950463469699263733896155297882933248196279097357561143290575163349320618134281439930985381468511", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24910769710468074190873160559967248188031753409991316762353711302639978559774529954285610073062706846177834921603519378285406284772143919183805131099242691533327568578659622272237629659443033426190992413139567805351752345211188973101488405172510640205132106936455465719070404793143161055996855226132708291829824435768979096102739613736556779419265115124212357355064594909977364205627974995086064485497277768797809019273434755458723058690972465021336786245108957623176475348839345362965389653160837058843690671543227233027308318559521330769536126616970544471856235390240044006528459412057328392334310990863670905481277", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26452303670962825004647768777241493144474072422236122516311107558733373366225411680591703400814594865503625481641389991451282184208603459866590435925193346083843804751136541231788454765465711479174025358317027758844903562496442543186857577310199454849824912123461054725860822695949970747735944886347307325561030281640372400200322776116232648963926760761321363500362249740520712224599642088680124369897152478399885168541126271382819126377174950587077770489310306850375916395678466116236566836629966089983770261367508209985974136948327889567806980911721480851589391188640265785523636866805330235408227915588179022276157", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "27359347484588187526340935742656649512248079443998038086902993469368346930327978431621911469762980821527419541498990614867131836485319646921080667352558846485684295734056862093420886232607633546603315984958624215431962910456911313165387559695717689730902904309892734445160452587155842419031986786017114684118157182624455026066542184864090255376828791430611252705422274186583268475503398336648861822051405154797965666144133606863439409715435147125553164321759593502484038037370332431566826717453237236371751846097010667828431170239689958609211891535531389693282799746974939276420003917384783660993867818730268854618799", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "19623509414585020354072820342520325325602417502199501535658345211490285354385035810306828718649689442530501015196811566936666456559455193468943742147114678591715336168638098443785131102630040924794249032620912413887915929537997503315095162344201191821882080763881958109928416430976602510482367209883041583520158492994575866316122425220211553652527466719204468113143507494439318026786366884904231028308443795769161948552465122265512018903533011027842436359078889974670259763894526246656095775593785119318027487780318633992727595948054333722905256578438422303805238030054132660263131458653290607741669801874913623057231", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "31433192275367154730690459880924842771334220684750172916752479661082773197990732613227803744939541218173691652812702742387601193424268744089407471996841434814969204361045391207831869513127556824454940059267576611539398849021323855299956957127466532742356163692910801317556047669631060308579734797897230064912760862293312757753784330769216028878869909513041186163131594101302440815982844155081271354647963445947649477712937718154334620771354288095806406112844230038944866042279324475489874839963396197608806057440552257237502168338210342474336037931854666177817197277338641522117899886635558343658488521520255502240659", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "19584405381560973161121007138322930208006755784947830321858652886381613102322747144659879915370511279131052755138067960473972475025767537744072096197722301753027049237250646640862350683107589958616672127459264883647375699527409295513749763987381793573047704406098827603262303536131383427925790594066594090285662724554368085257257100232200909436138348154699268439535709776364438356310049939099790710140795417698050441716437075627870875275609200784476307899698945009720557049251288119496590849719108914498684265006106409108553501387582717118883673860864277220102732291472823143850533639429050871380743361544450253870471", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "22177952939158616930895116485832496895990024517283201694962781795764119582449791552087244917142933070185863138332702788424441157251600002595829947019394226128878657928582320340739683127327371869874626262364402462829992419092422324470947567427016865921873253073032771499793131325236990638120746764094017574475744980608152714453477502851869775021283456143944752510392991567603013511664937993803669834612869360518452799741770171443527768729213437319488738658152318320234310967560186711610476943895494065468603562609705806591162901902532123439448067950807219073193586549931201623101080584219980673171897024714977127967823", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24107795792863189876379088308459493214252870769693642922420986554416940864669704009184400806857812589935785958156176407784773763189789702093196447068017631876797233858301693469953293284055169055185550952785474682000748022251411271542517914675376763121393579638408894967734275472476906908885348860077948550237524676463079690215047017260999596772153598379495266025888066100759956948573706885673328052668116423628950335086307926845077891107576599259993410902362495209065951269271667784065987332549869671364636052138630452731157018752989202678872771065789530239695533596810988422366885696947688382670066630427597056651257", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24286262395964890921209431680233737439701332731391569192325920465708738820973167588460783837292388308039283014340918637899914215599644419453351361771363311583069550500287181804914128378102932763934029657713085156647785228455038419798540354355550937040385055253259338315773856024348053269335384339283689985222502904898961206650598962747833323806101003898667066806546257617204360756286082034461136214160314283563974836192219205504696208835505071605715568216121520263105549908310952518548450054459235960488320185390595314343840507270166365818444775289695674628976490553155274910374613118345319146526477273176300627811799", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25085770055708937091291381101459169116535174996029558710400861785064591563488090975027012433591055838462316517925181117881298535625117917173650821757123928251986239283083718108116776691544176062271046591321525811504339964178438124556930067804904268227664798591927625821460306043258083029118689864103366477478623281287896934154404220492378879263799858882061141815941652266461444049875690368885027555088233877598137815696524051329271033434601819236279163835217595326948442504314077303164265631819782727818200305858076069245147450655072118409483325655059065144326329097639196034361870120451490976212832845242659069007859", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26407621624142588798357172175487666066383049513223935560440134072110258583270462038977861925960754363380543993551583396173187538793852434464190312503411026586426712484392440782987353152588583507338359935573189723781287843113516854931066118015860872312677286897055639097910046225113387363020478911184919059436051420615160022668059929347697496870235094899908585911698079242362369421120971772985190757979131654059023137527777224995225126568185303064388671705348872829278983582968738757560562348667015166063555506199857700476387470073652891750350063201036308929172064913284336065577895303311201377298245394885924797784299", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "28393521975142671025562463712167355586307329603643615764165430570810588400537274222291243053094494338042851434037047953230384283998203901623368283083308298984882823487139065913649863201191656856000107169797687916008154637966191944971684881155127878796786474531302951505509203850426018089825753630244525089105114011741276044357004913614571460398668065193970942397195640128486922123923531622810658004681673885310737258751979036882463917664118440010635688137180587509057753863298411155499079164019001187057733317095559607051785366567220104185827635925405154926090292907259514892376233563046086217181643705394595683889213", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25295270839372520621601339335757420903857825516159280768694610538295730830994470513772289651210891933479423377582271831382767615528201172901400821087443832199250594211072416312630466340625180786523573422825954721033594589846627831623647009986081707327457590387215846530957228954995140273012892841295217622171945577639481227363527928323908245976526581379644556190390451193090254776181733133037462937440226161206069771778914800821150717528326820539517717935644712594760588255169488780301541355814693781789468246241379614208480096022081071457680725659028897418931241309327832068213299510770106890683858665282318691939387", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "23169697810242514657224358981431054080926798106874261713181426226562432729647068352128835803847883978611320537814139800966118823170638077693486017560723962747946276891609622471457917064193218140620544777543475184757943828539550634270545849987246778142810496665916114405449155383935458646257718763392599867193737249331405417667716325691283290017001719152378989919089677367968113394135263748264818939639723879001521779782825805853359729862966900973717751662560761157314998199597477279036396283783540725383335734556990839468114073433740519826721874160300691581583198301319885420914904507428599625550188690752193583974257", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25676595953706355710247163095062584344600951691195997419345448700976963254995594297396260105264076527460288194062572938639391790894097309293501051269437600283723121777634862543404193459407991791846046481302819634092765382290865166157371085358546579521125680465468771206741743170639609040104268954420505109071471712460924970458426071375995366178901634126273006561745805985551322844572460966605017758792191598207050743850538640234608269768379954061088718007639066942216464187461908772533979989924286025083624107100894413980300792816517467546481358175744291741168717751558260513941453690197055434395364620189390733961501", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "28901928139115788286167551424732836888912528801944791885484124401176087572704737193839897395322508796672600101639893643576688969182413807760763645692593129512431899131628444996444442175901085258361982307559573183631506532103460194093878013749852133044970467281637280344824485819809906837100517876208592704431507494869981804849788517124337267737614329843480895163172364705359891953076436672295438467141147039636060827778044852703190995004582012415723314087624101956479889774766010966305731566634668655391368592150596814573555076074886184022269753193199015522489469894624400400815623366421461620531351085103368020051017", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21183872704093848355475558701192355944703270778223135216213566464540234346075827567358556160360083451241357277575574545825082034486827194315141952178147720599184608649114401909555864566988752176837513425084668528672007511344201458234420053689226109372369487290452074635217007650791327083388243211360778428029321007310489474855678706256812824041574025387985904781217681032203727080265264244583818520265205931637807971851458165422064578878725443394629484758885429227647335909831206637542668269338153374728607340072363714074676168382456253965361591771095789992455540520526501265388247719383359727268429241870245115998969", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24181167207544075451256835159877459890755535476120647171774310990009873966417541166927769520122274297550225310296336588283760765696057930543584341402672873609883334172333913292902009555452706424290103130935520693500944525370350207620452802077799027029904062655984068460942833802819791816600005894441211679417789323136219663550224739397221896822318276168912761174487433525415060466942430843292275609073119429440628354361660943199905702849836128722400710068984093535757159991514533185732290565976570026270732517234936796205780113967226154925387403254574238436802143416954800211298311077632837762364152924648286509339217", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "19452541746236994828058409990466950361564534754892089993095980896959934389602194251201928707709448676327007079076128755503002245255248920580927310492868389308736090609466957201267276661933087231838757961074072155782259246592587899473044355023846750721188419268075376496397293506103892830744728697208014579610619635907131286766980798044275452719690486410406873450749543620643464644197060904537208856229922144980954447506208330411161427927660882091977843091537411272344001458705505864071683998549705096458329732388861530922476608931083883942809182927249902872619919707942640113173787098648234252686776432308837288024459", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24521213769732202437372596335830519228127114348302935511331691622152172115527694955951552742096150243610262294882487265040434103461007618166730186326212783213038050198721235869770704042323258687672987090145823987621666500998771453436496069262772897076138601642678870746649274608450729334273534726423090596805707671995327420186097576273960740030357717708414042682116740173457270533587974745540479189337652327653575318310631240317640380232220427602811288506712596946786123942531357422555900876467342516589546305764640189002432689574891924067333612472922510439946790913020731437111314162718587648118589082285013458604769", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24370163986646655522494736356705355190997353313375467883753315453855468025255734926401573059359067854231331274248237683435196481666649927347603238320664490788551955045008726920165933669126772963161385990948568453401076746153753372524129081495799155659438868406715027728912893770809689594378991579603327807253923673894729991855875891977354206629267790629795967876599279363876559939794052714786399188035239655530551121822746628272731625481693838238499624660294219758575933154420928270026176504277700224823924751686834093372653880980970264144549470903548250997109114354775088733731694732364746880402834623461877121313767", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "20017917952978087614531681389781691361011261103106420319344586970950244319836214341898534011957887212873350342393306435427249267523824739865984701139089556784329448962466905227925511099172469866756738824575475166166447633257492597283270644030026302709177332380405045377474875914983334527633605875378877989801750591864146935118697714290810243436892823466698497410684381875680150800791395584288652371400575418305366996941915184344752830858369706011480806196990570373075811009484865972671694612849923280036208580931276491659326810690235108637069028854961964985129655051059098517131102058793521715415377667125331054355279", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26707362123468830183756251502725764289169985384140285167184346864575573099314260443013033953707008525095834503585721269116976541630871724505432665450362556362471444891439586621560279540841729700758553909385140166795998343997742955127550378997914361564737076977447677214057176112569555542532526385528049267723731364906362691101067300744893180931424071841990925350434651700243264071779226477491310374270082662514781759402142603075454369589413812754143407508494322270151991275693724840891176318801321796279990357497995238958484115223632476127185089628550624216292743368152179902278870462852569079716641803305971575931141", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "28684218094490544093474702392290408658628404742659881272153333759060635318825616652579924885911278141583599289181810595320845412667131076171052218166788605595280817052078282395839931756552121110703027761468684583993445157588732882627781640015485879497988735907095096951307885557028435832457130111369105989615249096051598311989946549835070858184449226709941246484175719620843226998850185425151555353123235307663569945746333492560024160625647463540140303842177473797440222259747784566953002315505931561204371869474874154596965653157192215832042450550968023604881542832752424872614867076192801093477459140520000777265219", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "30057892386726880123447395681317029464584549869451083851859911517429828575684417215540218170553770549821273337124315419890730810838491641368999585935346863028884877821328829071377561638623603052528951265165853349383265704349551914652847138381347690419713592101407974187910187057401028417877935189952405034437402034168882514400724040577158537605721674174064769194157934149258008228070457767460167097822136165502616661839846069441356766093029452664156539381224440241499833255284409606104247416908971717811513316655640321750021942891993547452568696779872579614304958285545257743778983514111236912051985830016803606638761", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "23527156527432679619522022597938063110523174911055877018507014904115455792231082947172616277161646779962652962062153711467706818936655865757882737070524332867973459713421364178555567432917050108800198277185832447786973100901491585200128078924981163143745392910777149840209552671339500152129385524669609825571113186376843661804831584617080531902131341485999347868108057155746577917569725072457655040865722897942396681586436512572599969385917924049123631493246529058359029315253457645360993929954671543977550194303720106031250355269186699840876264052078240172641681792906695149081931540393188808663109531122908897636787", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26296624907819475957633022710990586249950884740366009887353904613062206524384847310144611708150236621958162997580201882286912480315858126491797343528397495027516297768866803197133566985709596171270131267067504017224400242528357579959305184892531034397885030276943920968654958114352120956335146559723641348212345058814316517694614855629687377693350189667505209791785632605866162576988651439158716684545482406915682245617103692694032011603432673492193268534293981166342916194357903148752958016291621298092136965757427024260454804217670988374432382061033402146929078425944577395711940430844188834728412381224250206558269", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26710375116949858179740032025788474949269119189114748692859635504127802927243404447921790349736252977617680650651239918795573286592963981232731884504246750908626264229087859592125429107258590424739479070334500400763149241844201223279136617619564553394652254976932974401713849597536498437858462660073202598469285832431672852695513787956714368306593928737351801900874837092122222926012178050390838015888215515480280905374410192026520325072795019806692260321779130772144860371905503880511539318940676639019123029260595850648170185644145533833075453201838695541518812144645740632099974055834347176804002793475014652993743", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24315168079025501024604430741645928256753593278906715973888717081061788950001795237294527320038030843292682321371295237779690153341598645737995392303541510021603284890139665280755773313299907213264507252645758180598853114941584193891313360776225944660587496246102003984613807554880579921253648623236539007950503349139039847326870993642841373796107910606179465379669780268521833106983850389010930784550312433416316127556226603466321305054505792385353280566522449752931922136167996755262496545361035121217237707735014725854567085742652784279737838261691250633128158956639110762804266546421130381789942414068081655221691", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "27048621111741869313770530719156611643119552380591339480058410681221181019689417604239265024883591485592400770953134844586667782970942966340036213826126347872047504066873290915739886504784253767031942884255845235472381861863779782799150979224839447580325143605671707947790135058650209683070698172064308528771144876660596157747517317507165019657037724094440446848225824736525737130934222726310481982466111267031718426973051574622235384060584935366351053720379246688990197853450008809753426476086753559587430177602874219898157884795103635166668547314880900843863019657508991297576630737613375024336975676707769112434381", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24129952653390505031394210235872004994720171355731236989056652356694609335698072584552088163376763238940625685672668635379341817658689001938404857819044722233690060022475875193841392505306773489034735018643794051869359043645363065165088871012450279039223620727734515673034840056439017494064204456158945487335069134862655239530936835950469436759216562055335527776577864346621768741460346441834846235849475305681129472203082297005958549260426089325170760671333900643717182038234629531161913375341462043556529235615341973872706776168081666733321288728567413496914969178519585447353480304255117464896753703273718481661303", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28173652336677442733163716176968200683499684356209831459778402968875221284425551335610399903118766148067748653315804422637591241864707903864141981610667169521249441432158013182053687212928689935675956852752450801649456370748530184249646783740569262868356761837825625363675831768655825907681352630465358783503730391086221686517245655503583032392635139656410662315660306591860949871507891479796240582953941631323864141215436050457431432768778977827944853432659116547641587900915590483781386819859441371314197018510093825684460038228394939324203652237826194652418380679495610372516080958761714029751765278445128301554747", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23731154229819246768887166335915000207663293467851248994903297883613584779420982248787137960851036688433754789510168530153556567932735847612716035007862256735535644084342680763591184102732783058260159416434934608871064422695835246951487891672609109010575773153859762281636317278007630500409806622563046617431841207799712296335447919372620680487533761707331478809558309338376432319927917146717480310946816843664743534234769212778202006393667946655981383648017081742316075451908509967705269459080187970584535746543157432949279924633624418017134095750739218473514242855382996147811312691632521182742743105755414166620437", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "30003717907018969636006109598588271815710548093435144341055515905269696844720922906160546986792728202948986587039336811284629476995158837513708248079711601068416350851533817499326355258084748523749610102777128686648528578695852634865731415866765586520408594089874661543223396244062091682397831299081227661260021852535540290615939260992242696718807724737716858678953368757201827834378471456652870463794433380714720110806465801456786584440237690825413511100442838777112113935069714449166802976332434502295699687594753403295666190668927247541678750077428519628701635037591810664257393923589238916780028053664554258388019", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24613136701246096968752838841653404979546344755502911118703478869083491685909205313947675241990768009317356778667721562627423171114481952651791385295298375073483529800055923436718730389305643953775774587967727798962243020186267631174527079842491266154829518582168946189466369778460544230242309508573181402668566904920236254338394429239171664728789151151685835825372673926652161755353363041304231216133205183498509358392144158584487749049062407189068434316626364499193585798234141306987285372729091314373486828252949191329986012967698844734692428444118132198292247140234033750403329157204114299471912024081577084920011", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25748314285846084962237838041903850185467618814238467926700139671135698643462483550762188840099962501365545581881276963430225711871900506797429338629934927498824731381062778369050659359681214060504643196052888604365002674696640136219055460567087124584908415869592646153972924925464925752747793775361046196291464824917049299006866569548306706934342844952525997525465472420780077340868082506078386921804122258177428727004915586132579825082775664175930468028451648608114603832809343498563884157001937590416529009198873220179974071992082716314267106974944361000369375740114130523759869104928898495187093110910893567050513", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23213317778765245282635286229051398896649740187634851823042189036618882749692269687706525123682439018346650722557575479915179180949861829672070307178857874049885009367237454887044681990288770324654480244319988903690630903688973243498637437624140979707918989762570693327730754226893972620575342814476940170055444582149083487796804433950482923335377050673159602836418827486189761561893648514566396525226607868231824125333545306866086091974264666819059383461590654005493634303735217803326028816493697341272725046192088462045017273371804446538054463904387948993924190660388367223816380613426824058858373129784598702987129", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21211613213238042544450435872886447875982499153978779111233554366537953651668367797435135797524562468584986837564840616137390612964101410698924382526519142632356404721515044699655647134744076833380047356837278561605722207428984621711215920234746679931315491783629627111887688045268875552343601761216383868752066711628234132538312621326587270970807551425285356902678526502554832934783043922298726606917178348670108517549203993614028518108150584001167147904085323040282925922714594420574547574426500473012923969132205117097023424980475321597993051574824040107310108007850487419266189863429100328099699809919511233211969", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24351629775469587657622659202012629056748062270740455817769090450677650437376563766302363715630482501619166525872997276921434715018018011852913577074482548571475908801634699114630930692120795330744157049633169579121586849740236494351312585196486973140028299070650424961855883936543222133513110671995406470922809279774129466185000750716238689495600355244897307174260502035287362024877932322610891256138708832853387475988723439377856657227719483439446488839738360168725917454539468703940646599224939175819078291968903081756030683983714381262528126354327845331487737831604887255422232248173341352738211338455870844417763", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "20404762582306722832437922125776847791935661193601004865595060362468500139439434828498047003946379277898080867733471686203562270385534577937649650426877898378053720455492346687606612181258170204392529775111797618550749450783348445336399795263337787488287838215423760824035409610068837795757334752224011082310489227365452696009988846250560634540735700149729183356518163498617311373899060273891440936875125352069768539998887346354908779492671421378602498495443198994346589467497504341351651491953913927210283167121848121340808392413563210512770627780221523469920880958000549419028117614483410027036553091114322388006233", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25541517653811201630823949088947058064658188392738931815421100309526408804336604793165736814444628173053751136717421482743821651140024702733191585872547321784310211976559213915706100421292878715525695616577187004482135458904880862782654458065213167696512778627040254524683122510118005903910858452901542770148098717737400176585424700588424347362594564152603597339436327502792659477796558189902658220718022611186205708668502644948764506164884017789973887508822707508008259437454659380770731223123045220889062316337323369940733178698958086929594012066393251513441482936062964226200702190242313535297541175411633215482931", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "19448675964368940807103722463438137664167849985232135640384160779515114969624621247610860577853137736035266273779751254835004410471015045842192850017742924328729842123480234680195284496715436295703505395209778152047530450545996357028225666904762081433072264512088410575858800915320337518007660512808104675563196263217255998147189976351073441086450298287196344969378878342696639632951407989365168733365150325416103443974716695954535848053068309784642012748221706676205834256325448407755938979136332503407179716015188922982476519865495620172166466179218976077896091879283288900912515850461080705521633255515404821538699", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28124199823939222451211201222050320071418713011304263578775592501556932896241167476691049009123311655672966945720777268716256115728836376845048417412995808638386604740802970943118834944873895579962042287349716610270969817262353998550638031492248532459632808051819088525844543101987905084379986867806703472178911144256094402464991076682990413252784077990346257113335729794855045936732959814722401562726798272404444077029876433624014883369316385535365255372204702061779047432251047666131946084395830559943172005116229085045068666823307965097005812134317085262541435621976425058001627268344828687738258650258763271495997", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25591870383059543177216510153464684413471479114914567034296562777050558953207674006392019207145422945024842093210633403040867295801886349067225461583774160884790105015776498489196274022878562136189292585077667406420396037552414100266866891113681853993241286087329436202634446176330506601169420491549050513796133689505742189537430578217056075455601697964860624777996301352832872349338388106837098999372400869818797973631516973237755075246123184122955953383216614374522210601516636931112264010151772027025136750681748775899889946892677654417456172391874280816182534832670372910496412560830161404075477335024560011370201", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24254664249031287425285963227601428801644656792204637862028417835651974933227162574632771395672200369989693886354105754502207702198465416836510037883499346159725677169481419426799876394155587997894770396076613619753812010934025639544761025358611516410719917242181572633144265950857312364802389725748601359848792001993632970046289487163631292943879668178932314232486328269594807913023456825652325868827551999634094218547908096046946987369726258202768217130969981756032983137146853767723296887082085089894653380269368711344561134675734060562626460219732133014669729318823831899273752216657670950500921431854857178014339", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "28012046123553347296951026819623723944776329365040327438743698283763123441166865211549446239232725070602577086618944222827907553872197297898608081542171428201686945275070709095410299941587107831163519685972334962395111091808549084601519741016634011658505370785294066189423381919698133370745910714427079649839864776952245000814587117988597217235243890011441066675949495199707136950867963176844825176665162023332771617383918623411991096210377246891673817673927212568495231224671523978114780681001571304984907073872591249633955538584167587045041176726120691780650959884089864419966759398236740249135490482422472475015307", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "20295898764224091751619054181496772743687662219146392453554340917132627558737156497880920457306290344944344344909865498960278608106389046639666298185250173774080683574556585076319395535674452017264839024874782946061554591384512161455596381407725680965135285893054028434013963375378298229190589611161512721543350133932591589983008156126259014875975515925382679714186715126064471274073675520799584025972743185506908995815725998874568656943352830353367217810023241851327821018790420997899977981140014126988582669178085140221267398572314657887924718290225926037589404584018964168826434371873013485015863399456017987394161", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24911046594447939799478349664742103751723560247664957022722235593472764206346538935141954525845345360144698058662869265525390793765997211723270335202308418755451971079512145769612594477813047809243384894837216034122631452225713407217062556665255352265826712887972171257587084283262580050210211316063291611950569004663095338510686617724025348615111018219949548265149003524102790781553677806451153141986258086805629992670960746292357531919348573610244042634364092964567640790713220154218396651711000494504496960256314232502037483356074844345766352794951477416625644961741024284831284034754190444427872349510316779947851", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26453889766459778211349909770686907331631270093426210952360205775219272293196224254388599034415874812124433835859100284152313312879979735484150927476868328994410756761686739674183518576594547479361645263115399297085073923375825358201062253913545998710791695282433018528674682485260492950530137187564120727104949988988807358768967047459656136751468582750549811032203372998931549726487566823559178401348012661130447018199083091021168960972367370444427528335098116918907454489941486753745078673099610794421263117772981665042225759495026978571870461890043061648164563906459870738167928396705664020774070124770993714646561", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24808507448710960623425345441739218357183404401914803767207532270731089363317566711242789929056849247497172569301855127196127481050943069645824389525260150458968432625359050019675116305955463812455414471955001907349272260334344934500510801000692952737403646518951487724909191307591755802571441295085262182274380847790208540752815236768761601099596986009289295143733796689053614354799649829925503453572199609887540671871402693022603690803934144772089223759913859383482076876622675969917294778428697082144643152107478067410597208782505526238919890102732538908426848918084203011448444591112415553982063796879240247613871", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "21854426529883907641422346848441269729295924514883332406268448699954791989099469964968676222318601978530957188031942858581059486933344957553049623517892969907334614695885495656780345396087644142542733797036096105648979785173856288405660471052349188805565504941418856906830964642027820670579056814376314488984980843397413548321218520564039832272666151472855216796309795763320368930713546628638117188160972440537710245405146060065741320890895452273007374395260069497376451342979549171724703774267704826246192210986606883902712590430491311073636093076721669892354792304728097844064828496420515131074996772411799812257189", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25746613325466832096592709130349447768723045989674139857678324158082353170664315527646917864615040122732312958270632686160306197419172175893027113108225795891045387219433522513202764017466522588453636452853424188094992663417381381793314769790901726564309273741667567069700564050766814254579461612059328990628022411638577580719223698853486590786629194671228022973596793167233359503046332019918469123551905102211500315824340386808623923962468345288293251303613114364007822620875245000133916463083666675923203663093641335680155818136358688987698295824084527522150728954648169564172354417777539253547167865659674593980869", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26235185634494255059125072589311754288475795875280139257102131683344252459983060271225610372007003725960005786251566879050492896844274616115519776275843915050743861533393192788678502476756055356685622233461158064248545437906796660513752240904069123871994409949438810738144108172415632727679224780526039934770405160423324753518649800945548303654971141754481375474983043223154049464787281718080122270308979537096450505687569943933630472974331621348755233614611102563902455748267155927214972178190305709730158557076112460505222500465029091779041425491233318241099208981491289329582420804068458266295375832567901473054133", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26896916903674667694747174882686082867736329504462274855003902601921064801628622385414854269022268600115402098559207188943607763066912112224048052610134660579692735566839752470582889278150235453715932890641855779222407620914228642160674382948128836300713260165805421155340569735460517669689992593019581989968357028000956210522299167828550124799450736676872646201795426330509069126110890757125326344542809957834558381679491706442661774424371452550453748043627086510916698700845216744179725187040372303892993489378439331476582650219393334616471078182642402385216990164579383741891969108755490034417701434428954793296347", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24468597372850124835308553602146294400805566433505660774834111195997009701406790543926919374709392476094701879263203332330622958810710589921229461267219716794595553116970489038087553154580817572123283803375711903782482958216681926390110673005061058718036470187143729018630624244273572847407159983108564683236137638867321746563339163988058137764687853570436459143856326821533623580788179416229902568815225895516682379026027388785640586646264311337541483150414899660765678340215529817783185077034285183962421105627518513274192264725719014506543655073253774919682404163780395569890149505655582682469310811362172316270693", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26051575125924069816695671304341126315097796057345232668558285169839643377710654866674946286341515558463894757288451056808239883471508207383025337658812961800557792268044032873726784617967886724219244559424622231076863724358739704771205529721013827739563848539047304570498747540612565715514697301558095146369050357794869123244157725261746912534063990566499225701956938812530456346796084219280708883682151460844648371620425259163753214901268029657307871822068465776862961306020530731170536273844769875293853302196811148727267120951147007162062108460359182749231044426164573833363149745423347034487886470027282919905461", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24542608865340138505050609248123050127397670999898174276080737187228499122153139269811633424473982657528706608223312333472346552195466402546772162433656645095300795381427490531019193587665058277795226808244092517313212689907381833476633135996710466219579006867582339365702920455001340799642773360226895063776258062297214458478621204245844474402713339275714534976012286888096779521972154027394305475061711303171972685494064132138148591571821613576350846074130629790572556707213473385442263740552320241846336997846795064254439174904966513613497770998861688673660477991527024677923789200940693386456051988754671946180139", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "22686533024604323001283881590414270167091030402873887039411588633808774342345360560559100189868387850425641018051650133359405251577882642449272844848136011779593985655663556911726210572271217160597079872369801599143935390153699040673477922482846253535449821017740656305899529932248551738770428191326042709463317636317820614163467187697976908462335110997139053206914524805107201923435990501625540976228534033240879181329955739334752858464301577086780422954982144921041623029484782758256367710348300617151681286118599601020234602440611139105698951941965525662078940130941897863127316559875022073905261604575987464580069", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "27673042396691816655413051547556641871059918632495311469974173751988291061930738838035754166005209192077342886556159316460345030742475906725790656940770899795982241073488022903857566404444307482068815911488788146306896049181797970178145786216582376833324757511426620238848929965074970424600282717851114710676804195775967881951576895173843042022529232773454424909715057079995810629990464278938730526209097719588562738796712067384409384893419369263825576297998446724930807409982127467994842774023574860352481465150714427710464554641681101659866921145944033260135532490574703733024473464991396883344219830174797705811101", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26750578142401022882442969359296107004380332592901462709325187927864154794107258739718763644846812386536198050624052177881564889568209383190640212645710607387912825483124389320101676627730636127959782548216223273518634798702969837752364685268149105405254585142522870716970145249137355791656064155392993684412387266517605175305786006839964102581729156538482232554819356213888528505338733369406660201272509438264605901510900919036378580648516613840611600885998039825912411404780058063371742292125127100056851626124940472145587730295895590549919241049055936582714298367302976820462850563161512709263854025813897808712921", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "22306906286830345589477586627068148277857646491041980836748569216724951610273759424823152134024686288479512701955940979147292043548788814510408580991768528063584015757903945921943469111071599928045984345558589611186012753308590069725648909533856014991730824306814862481860457536699818241381531507607841873202913441567591326660975498701713702633024943993510989878403747266202407421116070252297239932498119036112803585111462040838835308568781934040648418168959745030607256628700982604120867034979163485597252193862191453762317329601508152133085865085171333180100705943331501762224811703881661934632393622436177395959507", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21732143663739551787807883374610805288755579275625291995249991984700461425670270224593379680793585976121575625977565811372179971272604218925207568488452013129448039611018651780666080774050508293877652441830346871702242962953179628463440140522898445282056983831311901178021806309186345618276249986402977166812367506447481987199617992032708995926427402322935709617933350956485679758632527749616976889099771062532337652858543619055858459889524669676594644821604208869924413808855948648671028632996186274212011316965399429330021672441897129205969987589154156218921000240755190346195186785871230104963182593873414012258087", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24661677611628492524895695188547636738055419876864378729954048418914383267311250734245201645078706510021844434339662037944950457103247155638727933221027379923688087734829017836035729735690630592202397748078036308368367563310124632756778514188396047813520176649500419541266321220305756549548677851031337824047073305283464132266740720025247060146975385713391343493214241204501508079558098535284068367155375928533557542225222751319431509249580402089698297452043542016606590152876921073122178158246260568906997790777713763793795452792157262503689285810064232143614662820536350499189454104356810144967340269742293215227403", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28082168638626390081882817198298955119479222776561945610851775393969728327401580433599400921868115802820243794042702564900598775159727597782937271814664652584230073896395337317110913997473318995002139268037261777502333960165301061083208890872148759392937415541491990068506927626586088181828119577633202696212875809114542623554532462013990267653157095343939979795033514099005599242656229925417039397630091809018815934128696252934714863311038293856819192041375355218406139101184691250493476444097215012564881911082000853175931576536120456654494963827550999325787910537566218088526130717990936084138278799529881137963957", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "20870620034575793290862054946014117033739379639247590967414563824722937753270761702814462425678372924585450144134395116431678600662007795558941623760760234587378403679586725733262062962421131611329364426079647520166502396978643857389872321094668813513091023925900650892826001815318150166737366484076595958007286808731481242397648503150383058167168593788719044305809013192294813777433315226989702206822120508839496987113266847809566481985013713248965158604938219707012195606130441678235663245363903250317471603859314994803714946189674466499179641159227390499067491518164878120113995833192196165369541769182189524930119", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25222189588674466195283094296216607772765223426837374392930229121343056675484266912125368647295565684714585448969411967760621568111610628467631495597492911071706462955871698864343853392591432586137694056506690965093431625302911127818273321379754057090994315547751831815866941630732504364191010537544128767631522375470928890869042416891919148020354931990642868369266559009688729080379009542457124611917930987079250920865757193309275445631956215230787873111093054643377885580590715497194944256498966247588764232135850117065908360842881680885711188911254455393403803334418817740937509899884645783332771774000353977021017", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26555520377869474991397349756627129285101501466338162554392808524068426907019450821507521653813870759679349677098512380503716953930748135723527178016288888616057138917768059775220954997294261919691950614163795168307189519002969731827519400230982095565191486530595244705884002805714598198094647786840008028963439239258973090907198654383766798320904696629651720475205273600773898395016604098205229819450976980512017018848763584633245138627246616117879787016703342733628296797596777185729212822350620158282909506225984043481786381513815688647277963578663172238997559902213454798939145109416767563161141960280613618893817", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25340717516885834484068622953225579134312946633643723775972334483571892660622938821474521334844759920227706770763877423321702807004226633928341697364227619585811520499924896802143322592285977427063764681841074733137026481716878418839619580094229186091388953644482039188256585154764044770774007639822635296998236533416261441968874935854975444747937470020226076948562251966976891451244638268177668268450171811233433809575232621431069233989437284564114629740247111818963805353258306462650278289739132871927190324421193037350263719924334845983739722565058980591654579119366405988327411602833069308362770319907985293091199", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25439221801574112413071504047854707145379366858923537863508488866691776964735184193313399982154427504848054290037065761105514192739063156355570723089047603523207759244814838325760533923150210630748400033563535649836410401682225512666496548079996021973188276926876423716645694378295849885790728904788841134423691860161363368416419901072188306436132102121312727306122947258969317140648487294045339372784210310167409205840565168868416915586153914592882719046319122000076521141924706051602199317003132862144003834229229111036792524854940585404868684700250899485861820158526991693061813422840549611651969802835053485901751", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "22745531838935886102087991238311182674502909548479196817872592639155010347683648714481558444658021263153992040813552000103534605597401857377811925328338852304047585581719448352727020803789583719792863847343493679401775515980532667309551685030891145349728060467886690295016356285043800332943357679119775303499083983354828355703451791265215952741542538378117627618101211695160362273160422906324570812142780944651807170384908059902077852086302223803928796664371317098605896318558165754879410849698705020828099563251996847778907415421040507082143172069917324953140003660951742274328444759057288984043503185794748468694361", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "26230980707778468686789921216601741672447650023076724284983531500712777888110100493947110005916422456297581884126835925889439381928630090842045347738301124876031673858054790592486968920924698654995464256358916573345389012186918924209923474615802933558894848861705911000883669330610143486351707291261765116487527120465965485584119763956083632958267112315989206050528044793077272021452269929243942592439860414793135038494701262779345111791526022017174056986321509640992842432603895143600731820410780452266451577449682895585880833986670604142111931569046992564736736616836152928053792310721237324632194273930452248268113", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23754675150845247409073662521027050942217107711678033313986634365073008510214036373990339511191616323363613908345096549879961372372803177861303582527451477059799327312521722603764719076713741297047011970829458980042831189555339909296740447278261342175224715907889192684426919649612120818714804696356972392781153189659005145668506088919046352790566504719467076906062461222549660537825993791820106970163906786444124771700169828723933305302833070773452198238403276248446796082138647366252366266157527676669138968249389694486005277977968584674549805224873502606050379516216238431806843508532615072420524482345585644944771", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "27121739096349797809195741929282670640855700970683597924881509837260206799631092902713075615152837501421062770887322222984755689129700647317647210615473134098902907851365034320141919431290949854258342414160191689247906625334087186630176090659512659833996721910494755651036109562167360034261851716028311889092841947522489405627646417941146529777470891621818275022760547935585797699217012720606325397630017093350464913029468164651905583097151271968539106405655655786171989471471145396386236544857458452704454322503883526807354414931371693428894931425078575166367652885583099080157479327061565846567423959318064539116267", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24208872283971249434095933366397412769039178404636771286056872158970332169779098645652790983138782390614787375910659907174646804011296146592160859217102875862506180649628937935618646622229099182041324480423998662625697822059124023584835431205767697801993374894665158301932259428929787562468602156853973017174761835087743894378207625473712878863891490515558375419643907029499736626305838366796827227444210626456924973852559757694579262570743198437622093747674346056309854481542425354433107821974167608881684654179737187594256011195085584620554789061915882044056276416253742937639238813304121709758805653858079600692691", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "24824820193819489937482919335922288263308740548452157479576084324973127188341693927594022216736830174945160158795713524688014862359463179158911429668127243693079308129695085370168081406896000308975051528120841023008549650521425232704367810407361944463843022331653901036486502953828743259608617408551041430064667933938429652816131240827484921244774957726982039425327307022236575033866203972598409376843349933498292639147781769448818918191192535529911191471609976943413944913368965383694993896880774036129283238066704144113085297756582664748720429648516982006175361971421049500596058972182016724582724314837924545910677", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21369676642621100973151861011228768563826257550804186712998351020434156479428408425933543302720130903304491494191484693426009168812100934462281361885829760948380484636328908280720200207082452626772178242985239241369868614035153536840487158524390064396179652983174483306851384553733642076131142078466918502866969206646325680968371672224208413537010285074301450570587351182282219882083462164475906800718869499977646038393240066683970322696134446112748066492771023999469794991390323128084784503720691418876991877120136614923454053046393170848484570060751438165271399483838359126422535178950094413350721396934342102657793", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "27275921665834100309878030649444027096134989768833672379314309906513463570443461361066593464854339033507763350657427185786521414082974425004899720819714460475151760168270254386228524544860247817575760844965110882106966089796873572887186525234811328689280123363230664200859194278766798067168511548222204551627386965307296391226542816973901613971519389137489170722942249246265752626105771607674657602574780863304798260103768560902546482178933442563691350648213584970376913892893733968708157416302606315415906827973402416823595051341826795464280652858781899736296697809489781732154360312730227595050965508189325549798457", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "29368684662439259105030466715918174125627367902673072151352198123965185745228675170492579326499524016645071955440082214987701395451270414974834425157277004739166089204651359928454721337945658714819545818516365123598140119543832007219540993825745459373016228150202073251110086145933826484650724121902335744183698813687570691373185484695504016674103981367632247649353837822277246368802958126973379138074566942866032868513140062699055736340203893037405171635519657299130467942465789154067619816228556709420881474994025212558281529718085406261538229304852275290342603622814331596039400172902545239788140119230379898968431", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "20255011143401185978772711427742771622464538897449458809774264762910943396562617162621202240581768888057776012745598687501930581680639086905470656249143715793019547222103525970537601657544937335546662111632776835316088595034137898381661359055011327726432603390071237028567388725553155480612785375013491406524906274125143961222387617833819852528344411023988955710835849419726104660356807154485504515474259363306938265795766816027989441224870799113566724767162484842483701890082856978933098413109865605853584277101226324159882240853492114501954829664098286561860370828369532977567446089734659427975598392249551642897689", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFAT, CN = CSCA", + "modulus": "25616697650701219201507653659925090727373306255823566720570072401331207106333775541571270556259640559345683285372890436513647087901071261388775679164659142808715673526038684909764094463719397735297275335425706992329784087062448848005164089955345003768513474309350826625689183418976162944648261258507599750747912514876975072223555755297712196320523874660503942213506468260858763010828246252708184655823151443404675388700626805768613124722055772942551076612843072049072261295008372315183988385636687651612672388119553253650734145173562372549329053850946974950468790875273869383328527773607490627571200885633748928647779", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = QA, O = Gov, CN = CSCA-QATAR", + "modulus": "19218499482354555901778367680318016459453269287039848206944970776448140261671576708141182568870001389283525433921999412057517797613737509835178474301244856731615331480463741810842352259698440080204388344921459849713519394056622186808359008938824466128800241965763557738265211990536079678937409948346084648253751193519602990008021590273589415540756302152622351717098370577095790371821109912318471251040135495313237754556282490234954089312285823067195071346009669890679751114898757279590494538703424636763808850216744755729557911376061557399320665683822090564060903049709681742960074123351177577449500661926382760741521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = QA, O = Gov, CN = CSCA-QATAR", + "modulus": "22959045444318281544652875345555650441871598854081147799381102419825449118993908747195733060636517658427132360547971853034447714739625610097092652950989277597129908658588858855108820204536349745255672218118075078472683709401863733663894472097058173584534213478461326571543117359073906322020811436120334597911279986179672790230796324113108289156778178714475319179391623804658537753686893504672650424456969803237792046072410815733381180289957858380122976059755873980947924888475491238783739743073694133292711052923828968037821092461397519792934618213920872477588127031257698147619909383900060982282529542719593379543027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = QA, O = Gov, CN = CSCA-QATAR", + "modulus": "30855844696491909257020787495896662722297965912784068702074018502076856746467750477233127774273698632777850599952016828510888562801356647689435086798794533287758781760120211739723290809670358105639456978936648333513664787138176994975141467042295487380843850873553154084338535382345954811230551269814371132547049411382855015500248723670941010233943496089743612906324616300786905462037152724558683923288695279528844138736727087933213936635257831147333432786163321108858558828738643401923754070916986983505612678848016296173745609155976088344249363788290338064351686620781890054191343049892569714663921591878582487287333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "30281252903026831431604754905350414335492163191859606836983058360163259658725250448531721637632348585134348162474309325106412800271758233736827887614194197094975432728473614570301411253725753463908408847248490885308261537673884949686672500275084670991847799448891206994531920791581021579841582015660951719063660734638118787453669873077255611421168599803801072665813238995316644319868435599574411118404242270371609380548944743276075113539031741153106915120255378014799573636493892921447558539098057396103130523730942756365078476282737252717256209091092303655163286250132629078328549160468250209067814411219923326299387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "31164423677028978244590436064087861690678341643195897029911717972978059076730291895726979146224669580481332837410642726047497571975120302915277869863020007945943949672348922505619645778485926195279647989336037179024712734120321711225717634145458549112022366380637755587668377577115680557069933015137222491541742967256844153035572769786038558914178116131794009323214287219003663308058651562388781681680567256385975284277276886015547729301335292046058712728474734163787597568680951395128182055757452959492623466957530185962745736553434116546106638752536029973857300596293151009032298702181031768658455962216255199421973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "27874837108550539920016103826717873435662319667761429081344021464754486749433948075988134987704134241954033984726957377857324130944280654452738340195425296176451154281495663938034608142176450632016608102931775721541354093278467732228307127774282690514918254295961189665920043417344210521261318845358730249491220521598710347743107286213567499970887287732913190915139637018233026458548438807691398501209889858504881858968519775522833518989762713212254585660041258061057019021472566198452933184149857585455939305560764170516951469025473345606124679148285159367208615118262206220512270762298992011014123412411017532723449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "20818140190107256737729549426873439060495557665550337740643227574867620054189707215343849447677726519363321151645469187991755790498740321354184705850764310903044852044562909349183342714936517312404066741097513017873196891877427362838273912876386136822635838168019557689741932932837313183511909413596510256570516815859587047348456680408549806037067293275925173857494742391398993206278827483603602591099173425480581075020464162029871990703702353644619153893083152700703390024347926878309154966367930852897128855370318660102298786012822431457016460891117450383581091758127872663834614821982355239874626138823139551844813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "20555381369206613222813281164897073899877476264472114700802291061486336437241148668146858878412970193302017801120246994451117582860673276282015476753972601806211937514966371809448469886431902788006267165008491225076685869061549194842232316222902372430464931550025518153262298267419509099607800162528289662894397070631155422269450209009838028288281304191246501953591795373981034418645092815455509149491104887283420585371072226298973924649907100802460402529292378587534006281016968757393501508902099565620992563048531061099166808557965538363559499042630397391710580701809916856076532930484869784658598284334821965587571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Trial Passport CA", + "modulus": "27031763672441496354465745678982509013972650075477322053542897682599932021489176712994877817089904884088979588936550318422898201636377933856951592964062192675523060853040816765025897113665119779385267384876644306946822409147180814620857947661048452824507659287276097058561912427551211368674597663251379607164669751913063322769381177935938538913752413617588408295504389598424186937349110730224478304858842093022624560401152384902490478564591399760792307798365241383810755657137954965687702456584630409667217755843692150883690593564650699196360010829193114337903399346624011699900789471828536632851791481421699112803817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "26120709333919119052438333314270029668650665743657486762784506638439932215911254205328622052944857001128140639954164888778279623968788997857343908184125531915301905154658998259404505492486752799442054253660416457856189326580218310563070911164379475504485014736748209982232732020857192654531403772962260319471549836847520866385372363234568855470552149728201953926760694818672632084168654250925613572848979597821325134200393304776690526668623545763201256593091366349198103327018564633572235734220182553557042931622342065703096761354141525857042125912883973002674050063546069539141573536476656164576991526846007472710269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "28752958659387044191474867988565794547613578623370015316131570668886135239106534554851838248959371586417234872160900586972592046662557745746171094465306521368334653767358942030220829653196552595882106804473805960630428385296994727917371015618296497801737461654282644300349878463566151278175802643079395718354095338741441861481239143994838510975388094635211767986335808156721060248174704349456632712488375705541021429529763052839051511507890741485284637490679926977023916794402119405040484532719288681279569755914402595619369677174796646262205423527123734188809960412497983870692428920063121647588554629471880931062927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "29203267937774991218084972443850619078534017350468830530022106841968501393817935711529103995439956520313868598152580273571226067429333389016703540820823352591905923839146268276960189806233220035399807039059889794361604397486966497160619786368093672035363461333756713199742402249355834441142619362743250662626505774616132282146514324991150984717573760280397508234366867170755301358436662868499746587392545340738239172510356395527390724050747224851557938607509712452360056876434035815415097414025257913074355441812400789069138708224834028749468995212745064918791846749286457416001263110276810305033139569472709395845533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "27214588466177584536621842749755695964408534392463652292930305926460371452024058261741846739010093616983535487962966364893064859873861505890774182365647044551467384298019605025022025168403298456108524665795919424032738056864569212354477744053989179842976096442147116898226681302789489807903951325074215115006605445135976331067318818760963927287539352450427532659271482305439845044766286706474626400769115563885939797368830362747214515054624305040472319781706710432247696608871725365102573204368763177307772979578954600546254322272627070675125981450073795782576853438280133001519603793941022496307574145546925450868717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "22852552284631805404634983010980990880879486446683569403049096600782481069849762212004830125840402041045780403368929404068659569633472704716083998173175412248974218552123577236655632459185761437367029779546238883187878661725898954561015720022521022902306786412275237255955930238261079142744313672828141405547463556175866163390878658447275567030425264901558298719680235621977360575454185654911579109416108904392716565075841595267436217340675471225158871705852235170757408419499502548387101832075706094744128976226192698443720338503798707913663821770279513662839544972530059414675000232533775163353834410033975561146569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "28276233863157859972116862164919501999439705126866412780628689250198004101227467144790858293515105882267194180720759758244339163463404193629879447772133705714309240710652780867437268866710611511381475245424398338768723758478239132079595519332069825031446726658867097183760351053602370334552958007612777312395616711963788965555553174162391455578026629746440525036881512846607023667075221537668408987578627654804239177605222442232066221483857546218687360959607295771544907372626465898875270871792286363057604696762432254727621185279561626653829803547702594557931396718099280313893249146975106775821369576218923341721097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "27794856935646932190080559811307232526664851845804658304508554321436409167429897745288590994639001513174376769891130264222840477113404581180336197472783849099693161626290127007416645175924910873994342310557324638603215312408365784703549413329540912235287620612017876980598135219368966576281232233726957584660405711361937311088669389730539013086517462624814292552991568030037207210294608239824384361574483573794818450358294065999223169536776507888734290088907980039482248521242837340433373177899214820903210275381845814285516582099029864764894316482277525891847781769987571697797127125541849187328808194522321445077323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "20329383215362435926028476587922235324685001716065688547275631831273026234765495870752533061924671218274113251042173458350386836621698112610194452864421039987085989275280979860632351781174903679436354513488811341911646140926236619732599994350570593074812216513569956266685316330107391083278272129795716726290442525048095677210074629450066621352699103616890436655952047179415197317721886747692087919188975651412746787548548567235956044061093444301007017610108507930840543443353627766294004503180273037323288312664597624068563449178910844912043337123636588778452504684286933413251167998039845647574624589057782833858903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "22486991048786968588348697871076789554251566409379725383133088832229681745825773215069345393954984851745053416702098097311220935262343115949063890762676833764574255298091598490661786622533930585169886763325992602625831942177019175985943274962625858016637583192245315197998776835120601215467844658738375338105987598154579921183075616084985310256956800504856410378062709829271730825804126900843619107546798975626597505545488004168600755183966156312721538238027318327982002987393544237773770363929170689697654191743001006943805329381426594016425507702612941008871822408974160134293253199620934856404107625743326688585087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "20698952372246772418652182168721201481056367506579873439971398207279121520153600537951567282482623569535409994819916791913429329427394367692717842608338515179695155853851045034115020406779505557073245603529132264900160877729854704512916108262256777432623680342528642997768908370502321442085166453443954363813145438685081597857586429685965400424930763308020735398244416976250385877610107051168117645637639910606532749960280059812302926959942404039339200250834580431596110887814263630809431308709219581147717372750536454504810372607887782291161152441437875698587204342730479391638117853391830738921140766914485688946873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "24200201552252679454066715162410814756000925719484028196765736539726989083466426533272877104003247167359046505057033585735181035884271669397188237444268179625440258253693872426965554150338934216185416106515523517157974664512986077698096724362907852288716962241980119837041205533662988753952066670675992311469681252729895141254090634352204888090309313601971396739881427711070341690493766589248900670815466904209629785894142535268921047069654441873631693920618230433447000622076872230952154816699582457516440195292627433026108379470707209266589246641855105293086110489629592123974582581759712117522157246709208035599439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "23251608563570836183151627917350041861093302968568022545568686268116060868768635076251951252793120844200819149816215842134342066287135030321743634135630918524450379108205432396059367692869630992741191052393450846007737997012824976801846146918625574121414802511730866499213271384860697397826766490467237892893498687709429418488459991148627034420964432072243627060146353364349731865522918366525272729095407006907119458392930899926260574501373989289319068054756203358994444469055406477347772326308781760996649094633511112162834161593199165386706714893221851432063079779855847895695379237184866570072714784674782532377461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "23102312600067907065785451445804915219619411596226384922448519088570794012927558693926036832853868594471117560746931685074355922078306580708860918563001370321588868976405556763126329311122741730646114036918725989699773526123349947089744799956994004606204791896563419572620803592108290574907498137367688315206158516456652612004632749259338917635953957652782305768248774956392856489765406871336499081405391104744755016976953514643595892124019505999695626553244094148409035239230433198765574452854243919197499919109686100543424832627461282539358658311778987427937655126930685085265268285643336246030581519085744287481167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "26143848927369226458017624227968642395346577906675202504689115851335103987212202997103440753927322983805787969946301841116221443456176766038316203432468200786680454968032582438314257258247885365489333244819474957462258141055249911356628065389590874046826841627660356726989292057715557464378053913824996365551430214440866071518018473652825039760698267999422624911551408156646878312932282351295177543800192168061973249419354112891713487026879145856944592237295206093355736575009656581840061137742614038968875061143607484591357343065128465435625941960101550846446522287586052242092738415103743874286468730595850400916583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "21515592480579823190936433257167444251364040466222940757936053708078356360213522973628026111477793981692453405844884513278784067060512409573945603024240372590829860966399592882410731157054075390161683139412659454085590982675043133790385283934449136159048091822114086086408785478661266136098839427737848650054265546093918097285096204566857672749618334443108942272251081676981724118228198233820833148435197922932842421556798365533642312079063398557273802591469828847067150926307225973981102170943546680492659808983105305298918097849785805173198648707158612095533065120604325746703675299273044847791276010400262175691811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "30241475382689648468301497487662388550037232846007201960557682342728466643381548137623701704896494966041542908379681926851285605800150271361112300867357549070124122928058771353421917980981300698634959359692009180943005988311386340177327536787560411191253909166859772045067985998181051625791586399513755200280266434314919100123214495014207775161040508744550070129139710113578202248934783776831745774817618117379988745511776412655302448006650280091163343661757679113235642797603781861303356184724871478215000753183702797152218272097344539932080846471345477124522333263587642048304781558338640194287833585995228233134939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "20354133565955453653384989654395837900120539352385968431942492284604818746759729697911845097272824021212460842830276535015180544128547769940149416601750514858578492216983720476219745766882100691754174389410056709529401879225772600105327379347514697577589347756176090773698298156993016076499444622529077547257823508181440660651360753775678401063321627060734090772760813039068680910398209363484259198917613635069695710209647115003988896841513731010649859111645893359767602752365697012506415167552103152647155384227575862429988022613537616964104731754256819888340402829189803734070558884674698346176107028383979443038093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "21039853421885050371105565034152480117130829009974647424237347491785198402401190075726473376571258835205396104148019833512510703130369449828422690243511273901803878344649004739234050064206639466074132053689590582271675139988907659740023656205733275783644336907720092749699270224350582373595637142660120236957535487369289643967859509120950441590242098908858681602377644263997654401208386887613005013752923410200914161294177392795550090083017193401910999279636350907533423952910370683089439499957974782427850052956875396951021433309290734634800330125924051888287677337610959742549217864824777812544211967029238162403839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "25501780062250673779253484644696078512754388773936132758314405714020293564242801306130903278609704156203796601626144106684690322225967649319678452259089550524501758886215898010897503926228583622073101755026234683423121445076409309234140533679591078917347294314876489912912239531340183531302978865656888160146145961089218266898817431135764176366540532119569561838804803514472365204279053958585023226150336365432899987766956824596858180454780234619638384240233640785579527215513419377506252373969806982691915055571666344735666097525544041027437561273773659033203213870252754783272290514739516816948426330857508343844243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "28447317561558385910660601163534662995243677033948041487157258507997603457408120840099240980979791130207176565905938508787920848975523203307445321445452491843414922424992306976811901610117166877228425362056582452986787077544413116102901811144107342842415346179085272170407326537285614387502636663388290051818540102774287713241437844050200100758181680942783882209689594994813944646559860096408553959485624301676781588592529722605295043593034961002962450415660443903627890495392808826740240320828208132810828857441483801930339698127002458483803651956890315480584176802088951317284176679782615787286130592941766992450701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "26622133327079578958673750748639627543874929790556510551240963806880383779773437089966604172423344607049074163218592481574180313281465511363802482270624491342658786570881611238774467507731735654883168021005060977560868229955433257075408891111046834098853812259110811045909119803451725116138234059134985828116797493744665560086107325485348504128274418238897105749041887813637160632684969037588361698723166149008547781635006138583336196341942803058403428385115169182125428546389522263371204899920883255848266597325472733872204872490141849917510832255401101248675236047722780316322054703668962002434849568528852716559211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "22509242702764689854050688192741258566550436730869073402203329470029780033084813115091135568003680154950415250041149418154986728179454650040918704369805667242498938059208454523691513150450847464852211959597124846672627370403520462390117371162852350623142639752035190750269034256197199237860606624471334049221170740061380420207331642704942173951611544345658525006813454445382794156693227364275051809697646276113065210403783103639428355578400174632714940696922697223006464216131084561503587010974364426692415322907601865576022223691229880207748100879414320868075304469110666728203947663380702500187270870813016982712783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "27406490259451501728980303735762821847077469573563266455353113561044631865540739913336469180570777045040002143597371605402102427481175101509516540504616194557303071541786667359301689620457550861460841919265248626187947673275194364881623940735551086149504087692653166746897803133139472748865919927508263278010750898083369164569465973339042059250771333748140044568630319436822691021308931825746451872355484708716008813811620954094246972448517461524345964637063609018065666904457854759622115135405363414423856503532893140668061568941575390815316156051356999766514177852973026963686583172140046349884621087851940118296137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "27118353632479926124932546128834706414718691840423454168199258246999330573061047526724292310315671507865031997277172266095034003586602056084141203084721349350004406166173030532249780013655234451770613421077655746039404590590317014989485121465733424742649786068517694052707826555292499883620954409106744637021122378503295084051587938441730735047973202410233678822571754153260456865910194023479986341851578827674911429407026232410319461936470002795722329711789746158465118500776820273514588775203923516248619072460903825490546625647923619070668002909114199238566035844615310384262522597794049875735940591236487408594069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "25313673857481088366750367778566298977809425757330870182160615002406846627103696263031315943564926226708353271208039375272455635336898645271045343153494047733964952692078789803653162970119217906909164263846240170150081312474894579330609424571092366492640996830520337148885832464501109183418979125620056234236589982683046188957151234999814914284870563925648127799439143559100264047110162748980717227052597813836610821840847272700560715442264670362904172321932353661214068689528257387290923762329907944555331493880744236028667768590742852616093306419344183552115814154333520695111300045977002111077441337160465527821391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "29303276919126010421576507297089408497681005479332669337550157312350774874449179116919035191059741500856552921480884689465049381697604873214151632361043945106245532718240112846947004597129958848875090081151039490714495697551728762755703718227063659164145175245950822028091512005880297567549432459235207124479211669790814413540309800624683685427123154155674391884356931982485195703616275200466852005488392946235726354569259635080380339740297293891086177054104901668433792643151428960082317145982267618765418190407386922476091729559169681914168100790643187121058191793934652340260139012412569690506083342719212002400723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "21418781480459045912476406658781208343554219160603388671594716278123374550895377148926803915673954346454816160073721576229224513901374115777347139978208481628955457257579187464280111455251805086594101106943723857567623368364426315633388480821117529158600891254855514420694422221236456198143812903868140010331705627406487720003407212319910247198162242613922165229970891050018660305380851418195995811433454270088870923245540803394343278399343579795081127770542163686744473620439731893611231443598823265243878634135597431029319306277058239521753806605538642379511458074020700174545647598547609385769116700886793623012459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "27519530391829398005387044520363696221210544010363978993436313913320952908357428282750843526595333387957342454162428684412758095626193737380441999106125254085755191557233195175716196967043949940961763685347381241839812986502388422277273812103839545372932059904858135358308698807784207697158127320909453782639077844372283352617094185371547824960045524616403454479942387041178317250300109260473819919687346606848665598511188988617389352571007820574613997862372884322992046369570367964995848143380154320909254689958448624351174232199201857647791488427091105003357038860254692028791737725146666456076713623503539052833031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "23918370810475035933964113544245198831076156350441487440787805288476351494321851119885975596197766727931481805200984774171100796703988014595190152701966622628375587410140924323841287805605897750618780496069720736306404416258733751067371504212486455794086422567955018973481406012654389277115128279703048910860726707545448835779424497973240640691746416225976277172161419596263149760581913566432611254437465455414163480744286909202811208759984329733268457049425512569904233095660453131629656934972605546382847103563707414108594752590159743706340735166033512118671379376461086392052151832792440672245010323157413874910239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "22983813698625410028791404275394521615033114524195089822586994199190697881953026542470705956688030528925465006789963463720871654349815808797517941599297548883606860461989944349497615200962011935417000845676225167064228641741577384534359003364400431088460156960857714092573101857142495983784669223265395395310036739731807807609150208723585985136524004612523664879227774737678713444718177653820297828945251121753216312129761284012577903971035713219071103307369074065038534486370111653941462854765746752944008310555120167775414595440829579274636993731552689298196114462064392265446415652028492027211850606857248447122877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "23713696280363918146768806569213515392416040814450121664626381789913204354206763657808505780767212941120977454548698584774241877651250287225547264375640152342771165351688076141298633183114745483067040054081106403189289126647434526401410682974382107402255388623924225033975718663250482337098707253992833792479140406520842887335590456686124179851441390524333675593045349810126077804079100574503536103804252252412638476929845612503200241727350354267501595347268935000713738048812541263191750421778448715065142637458039908642845829624847660523028091072953447069729287340514824660753620749620196189493307339234574150273933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA", + "modulus": "20824264275758620003944858396492819532025180104517905127504648227937583062600391820803974450688236879002954839901349528571674568566382828673743405422223457227571663479502407853637357549433274342623043136399229301160972538012890751040857871951456706092670380632377929843243780401448079549915901139546569165479928774223016365522977221610659158812029401290023142894415124117799185827836493770201833738252888732513537391335833623820776557113164886712360026938729533904566867540524593925284555257269839781661098709725867129629141178086286144353936699695330213708165868293416859503881680601247331530141706670973099965250639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = Singapore Passport CA2", + "modulus": "19849731661117791595694871344924966389681010494384025009424944191311062964039981689717167794923254472613790532340932893608153690555832579300182714999091380104567474461649613233718231652475276880566515092565735397373125037811373747867289821814428780471009609427920421430788896357432720192921013750543777892787955374445288653027110854442315343198706080481986409666809188404135655835865987520890314181825458014945545923064642076209432033297453087270648639615853091712464917348317366933535763981429900322809782299057847968491393368042030362257412009947024155290935197280924042523774096517870842680812610782844608913647597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "878019327530249712774586431932397699722480951094573260494109726636542830296506894833148644801030937098675475511560091508882406404497267460246221136734337356609740394838705915915612307354921565875116893720592605890339496900030051364040360676984961018888258092440416873958465152580339102190846050941461191407716132844860444508425058648617957132960723565879828684933642332309588311408008189149303951313681248456684595573914816851458029950509878277720488892548053306351825983011474238129451924828172544827699351360646907436382042616888063174269242188420275228053110766304369400644063864538860268180234907191409270891577937323719004321662314689125739506398600217229116489771687388009112480842301140924156550472667879021417555202105973915667652203131160396866322272441680011709275367621245720700495916074288732206265914552816510284234842054028368772977444397524727744726421647016318482393305463343184759297746962698757884932007828083869831558252955686027822171076347455461808532697826838763263509593923311048704006863865807576627117726227240788255202359210342709481584609952078723439706412656250031137442582768604845933386769067695744676910541664556836395639798194800129349292450523254799859058886631856857861228809722466291958370115307113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "892256363432613516117938126142037777668082811552818619948221221277816396911937100650682368435495941862102957455274206105502123925824135752899033524101910483802168078817356236955204367900940509256499311416509078576297226330451538545919851074707931128579840490837365809973647733974229140814805246698388873355758077126816417411745620438709815539256784665974653956490531662422660172872039443931401168564111490407273777316346409806986682053851223153828408017563082154476634688727881307446394234901298629531808056432026586178670252295545322844303672885691725730278638737194738806168360627781918292976008948293423658117564409209040833782093927270752413425035873898296532129085005463927564685437674175815444345403289543676868282150084215025857396940508680579262487801495537648529160072232375535467138307398196648013222733852920004988604777354191032664089254505335514536205767408312019420285749581698124876832696057541386762524757827340389431105746287949253458066792670217532829203124777866185323714385674341873275523097254714673967432048908031905925615046376373260418474425397841778183182448690106643327636708697302843386194264460960789994540247774206097355263475477251560132566705730253432665274123072789342131246877160889748691376864514473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "832641463455105940298670669922313028631861226517261179224281070867486484090633831839217931490123126099291361926181845117066787743507455215698709098244941378816853670928880065436211472979937202047260741439062109283948440679853541573773365474216646881081463778380524351686885629309269861977288523961276444293358079503922271594907625289256935108993757228074167880626754676436424410215275323075519781002040933704723533099592229763931216895422901878279321410765557174429921371869519504921455594888601963487016131617904176168770330362349356128281707244266153076776133673315764573302535400206884022422243694100122058829259223692731613844238247000942018471472823098111293022181238552113984693340318320877611210688575748454237957439684741358928323025516491964306573408833469240124582753224794927335578843163171492591653951159823537316141645234513925444484741801922577120871490677758518116687040571501584210804241708821737167934369551553569426580377806997534890539641322777868711846877796282707723880557580312756424265190138838564019370924893607180589386912488933166562264553979940939421327329023531464980804716662540550039727099156165884229174322305344081520772741438482596375841340940660286729328045809256008033093004417075879363423326844203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "838467912943900050608972545278319731177261186825077752343533797453300700906906534885683529388041328453921001868944540897173279664103976551018699912263035836838439133244386467087067799706947770780455565368288542909321964396580758026665523669180432530470865712122889743405170603444251862939129542365519679468592229375817225286855073590283508909066924270530436498657241847372319771393681728716095195114087152112035541170231639653450765007223060400564468833283001256376572106159062828478483034705652697059654101319891130916630893838287951743021993163769081719609977357579762242011183450584431547976383330563449328823115573629373061286123318256602878477165509740380347545716799750849558166159089898301442892176381369947647525142947011714565899231776247279802124081554063129227171268478950240448314264278595682373770962295868192449065049926646987292789296111900920352043434286409535370352135101671757328813565168637707429705818895144233724527425227639064780120264959007319219823942582966930928056037756310463430477039578653873968627462002256904017801343572264640282225927168504193214801665804170943591442144345475523105800011627131268537707291741010136507831329268649893430885279157405927219453911882188459462143482966006349945747827777199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "861905746790497607963978345096421190983951245672415778306586508289875532005484979451170409080671726320367763117493192523843798526450832558234910628428942293369506917710276534948025240694159921892423396107712851142132275477016830754869810358060553006224041169041179461153475663850865441883873603189105444237074147087638735094160064773785338050565193625990455919398566601646697781721524992832858452507682315134758798488584062782227107600664152419434532310299928014895996804105715939693434377328418940509669267525381249717333136654816924417143222000783751878458050244436453276463184802566046081757832863803026529626258694541138577851426945599684877972661760605555979941103082437532503274554370376756184731133750525778046193888677863518152553233224621834953869028270945961616598771601506753636936428557859991832512785929209380025180041608553375648845359577099576054611024012324635700106495448192724437659684825045617869609720234499803022729047361350075531740289304598390932770986379469201917610553009929098206294385847188851298410140597317602085535109660070322153799400947307349802688473693910108995299492202369734899749049961060252066457316172629779978963792858872703307793925773892849063829195690839590396422214074015125321547388547827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "715857460716881282944636025579774355131136526834855191772541265711002828374448738208700257937366710405086376749359333563616621161290764156228049010954273978429915957153528756849105452977202238528183287081879381584556094591371958190617930649035348496616027567164680226476412355040315786418493489336690760647705882657726280221469902731176569507524350520592192200116330974419627768508935234423149370940982626362370006333389657207762568956811019040137378650381593274568355501245643039367337618308531697128604656602911104019780758941612515684668133861405486193480635220829684982203747790023785721207129703975288120051131495177653055111421832744559789855262573639211900947745580936261094158673060645822240897737899333239343266120115216706230819319740964963746841667981485852459311593457650118040010118131153292952620144500910357111710474443825540989334703893318315434562446894941409030301118048373809124272247528135562724635820360038908053754588803040633245887891284525218725630907837059994599598302879029851815212699716920621852337909809218783855298314895842786537715274004857432405919585044339151868019442886384529688520562000541461072084872069449140148143635004007512718415507082155398127513447264054517270253445741973054642664761598607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "867782439480901229908440748253875673326490723896828366604338314787537957545920771495756012357686073144682681742494130067454812884645157884880995609041505844710153755716797649379052320453547023006488390439816400894100765868487991354148634376368036431405601968564430120464538842147490906102037540175771373859338607028570230632528746252425924206934091874282231533300256062988950054082304261833271319547782039739902206483785327856068236428558741596828969856440280069472780410345099038393900650765957132426095760583991398770750784441906372854052501843538926414614443036466490411110854949860349194089176813351938168898225409080540411697529818586523624156946631343648493637416206820202540163641134648938043899608398292283310197570767975709124632757098047924277892118136247269848913701697853991327855263630483505377547746847253000129045596933773924721765478814318787393041220251283813091049419400658044108955355758185457998479728761804132051040987031541851958704857264444069278615617456213135184398254346544848185307216680811687297399362690008418506848492549774744622329120653775573226409929953166409542225435554517261210786506880770934939732252740793627903252866472212129368574459452240413845339022746117239381214784444745084053591908667039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "682721963351279925158003078906298578502108676350135085572334681309920171507745494252005263862720924744982370456701153627829192341391560191991867250921108476642484583775810836245227308073721996939823391769961020446445156485283025582031013846889373118536538436858917446294028522576343039204510276785780239615489647311729858664588890280122402493897439231885654782463170774050877067682334617017759120443948498115188578972720868721972590132229567623253098972694714404318353422006219306855832267311315117817772986010757069270179129759987389829212455489400825214253424842942094914750075051159164681435077380629190911721483877250806310988475052228027103880068675738089594157600224459393484018933994680952709047289120075778543465242789961017184539285469962819552502483945141275436256542993146767972309316358749489492321917136125844297699085857167530836199941569641151418498959321396669917640503974948598696957361322108342203689914348643541937491778082046116217253970877448806384192052073576822847475265764052648569638074972072800191941351509103870165195754337274909298228357806506765424386607947482863883738598131374107410695718406130802568248988010398918236837191135434997246034934181018857340730409613430068960281893880367277468442379340087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "642345481317760846872995528884253899579015786580165933718802905105806852515755800253958952724576434633383397527162575847458968515541460708062483685378048319690633211635345966757184585920933063589361368955015540225414819793924837251957707563336478410950983968622694559172200622020946053324207647250590001123297569786189358587507906804615878527912471228808839816800360215862120262959755876299697570513236528178777820049018091562767694873163484250657470488498599003459873613357544002535595474111067324283964453142041103466496045975479767047350897143081900210209331506146021556215929640380776629020759418309704133482431870846282562625044873462619438683779512646139626516898529080046908569138779378945153299099401177628567294524056904116492767576348310274140752043745360628419511351031528670403734059488302180645533767156789338690851278798559045493115009251728510825305973126815861160932477898780469593920396453426043224441490136856791799018375115343153079487788038898462586536683911134999580196986010914768835757045348112365434175024227574278735731326587385990686626007919983944260993173189363009505274208466153608276197289578561152618870973953270637270936582232304618174552224582670094870105560906211469881744311869960849750843889717129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "849597954362416585777122249405818650821801424627284518406593354287749665400299146888162732430279933874252874295028989591383667157692640174243363149523723607407137622351097398042640535864625640625048350962879960821916065721876049226498375830720188862074406942461785798789171959704644331554954499253474112541537340995485307993568029836418624464957915033370950201372264724318835250167795919618696909183779282763019618120709820271806532898890094555587591198642178254327733853375868728991188783189778009102233996744694750492319740869844830350174364179856868352652467962809526506892639890655024559182784826939354709086657209597287127952705499742261625789525358767016737852053682709662843164009125824616086786996879247816034120180591564208530155582387005771771865591359649736687185239369422891693430830523993820413895823570333191969104111371207839228747078249210951136464069817617519388729642112019209587407359937646645123630140866679923280464642779204197220364544644540418434082836769736758530639932096526719538014470582595018424383972783223341322954381940848937101492204736294539803531540011054980341660150106966534092452829198924587122766987747812058131591998412439325839196006691820770867999335808037384759837100205645924857221787510169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "785917842918861619177841016660061122800596618362477058044086360142681686379301828832484414617145347431759505932521870469517048760835216174632432698451564533576663366853290687798552345055590857821048333047771558130259917053153754422042840255381328839870120543275693657698211041209517593112278923334110047086820995638523453608007040451060126644517687429566517003355959067718756130410494554924252348350687624154587157406421244171927500717456677014098116959828376586053316271813021572871605618285195882382656418565825409169351910018089005610497499822385322940207902833444120979218129566195514546474103550432376706074154919950800266955822547257482201976116071268327611348928864645078034428970881449176300085072019354863344002063656076312756530278944482336161864696764446007096745958983729809109039686994565255399193605495476516550138872750056392080308502587382551808699617769406359538006406439150671879977759356186312572051517961740781014705348231582570167393167297036285555871429361234583968767875945744905227566180770284805752460991189482766189128828635794187064980711278202730474990729162653726842087443499948861589359420549495299041637796952343616754167432131197824615549640573356880153382292403246983856648028415816236361448405000021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "766647896448920683881616774571261184665771026304336809802514378376545274729864087033280155656627880743794634263827422661102903878476043653466239495406450583721783516007677617902874283022280864532768474040311492759983717873296306065453456492441008927879432357871237122229815003470560400966301040332608813218512636066020605257248664758391447160027877265913150802791615536916759695113068902304023868288622328480868850249755215442004220667580971783931261087271049260116440014193962854466001388046602755240264192314629912498497654888358733238070412573428982907334562327083391833108641483965737396186936350301346806879651624695773381085470407213937582713205206368421308421961421350884965035171276661446046873723136021334799362764834747890888969787666428950591358575982290387416706288186102778256408634176278010727894190289059974190226850875156520517387819690861041149124471887586463873032372966219335601101204883710633623164333688818695514227577640301125231737944480446565233016068599906859364304507873091781355189226077342248070722258631823716217614015548090608219368800847138593160831390219227977903411912480685960698715796538621965531610547325967259379297437345422841870433810636269399884269215757377146895744627156115292470341602516417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NO, O = The Ministry of Justice, OU = PDMT, CN = CSCA_NO", + "modulus": "27274008966862438157889043986873643900126518399461516959129852988590991484527821432710664145296139560994893028703202299275881459334406785591708005685268605321347949908365237351255962582837703535132871964804633217559885678288259777184268358940731603552119354508392931050533641674599896434949321111150992674426094803566978951528529933512171568651369983273632204257889722479323239065192395306968742106302535323154825691889049921122252410314865210382294694981590726241780924300999101999680760756492624917370358755079433050810370455087604179997696165016322371175153710454107259181676463307414095865899084240064870783477471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "5030293182851896285933454849626880990634808464761213189348302482434266707955282392071570764582733095312506796700330754148616471118660841177101498054801635129577875689207235267742937063243390609873167508832904018785433294349748488256551089396158995193341334949229724137574639414710809045195693016192770903244236150369953838601431655117020002100998357149801927586390147966661185628800542115300827954751079271862510575910555090110287979649279824603078052555376492442498579536951952596646177996538374557216958352594801829099168796564860890561146108618325071585992033532337649203503778655597345213236577678269152127001456894577977668570815041510935677028447593120866088479351395394137086308172615119275672437791742637359444871193697973690357495835130780061126337560717260339372696920048854923138316030541110698986775418818769804748154349605351383992456320914913348156515634079669514881763124732642836727144000635964433351184617729", + "exponent": "61181" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "26042085680234991917338971641743024432621798044252645803983652409033685685778403854342595104999880705610054615573830113069623575616385731687319673662384392983487227582645264388301539981442091571790689493747686843072125576842532283980818751878277070689511783669047716849740272174513321565072384167751427825739404868250689575477350571624949809510624141038920271966966173509262968948152068263883548093970352562903246391811841901021689527572362041233591468010301532085206228321020805654129413412613062566350993651802278620265910322614247147150510372106742713050051012766227661040200340462606669164644279699380371871201367", + "exponent": "48081" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22412125596493034267045876567260095", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4785236044941540830325217711388812050710163032583163830170385134815296842209512239123490621016610736148105475570244380772456432404335310874583872180962395087585369984755954388925127743124843928081936603330915535953145192062975163344163749786611470130310468721550394514458614567211123700619311388405604425279556967616523174056523639129991181133078093595115955451081374353907368836820609558181411421623955828095862870247943361969846996644706487225944010189810541475050665587206550344879007608521674615765782365982127320136621706127873337224638952383178349548394459423795793679452878407712796784355145686822915714409413069194115190166399574602276026017671432830187243686175249636758447980884812065930820588252788016363382814493115120274883448929220212562741162587043093204469078318280131130369923904246247767274405561511752373070418251559273788316338621381487807999795441104157667798834749000692080455239135545191308105996454999", + "exponent": "45279" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "25264245233672950821907317059567861271696585966209704009475779364538844085178648757011127396964432726222444633566548638022216873381894770961475081090516970750588248421136848927179481055859541244463681442964661709251271623730699154024002328900027996591306453565742792011885697837417556532537831954092798703146631280928524821490186500779797567230768848041958876857265917478884021197693988481080539688467847412197335826722212628159805978771275387863195364211575179413489304000636300734332731068720577430035721938666004561652714328596100854905997480755664918407731343478317058355358179223185123791384684991595531390490551", + "exponent": "51925" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "24807683701166661188743311680359064025699884966074749204732363673915140040144786082313566987289895776920105438984972943652390205303732567180373744516897975791601922696755256928083128480150010344427095193492989512947944338431254794887844781013198657311177610969867697258386017403498216451305432124144166488073786864504289985615519957068871334931593881717829294559971570939295634225076912544028136009872100161809407324916583882093395248708436650194055000461059908859110117842101031088063086323915492750740140894426854006665196531553704012269229047415161327541842073966801570654229226977382564436927558590607565263354073", + "exponent": "37121" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "3901147818175385527682726380389731986878681399551840933282224902426641733080068462654476772485308907838272081157480712641580000602135566634609212236371310813162880015364800548751547003910379178345441588614013568906131817907662840558264072179478870520009448236539822241191508709551830676936885879776737023357583538335908630002361242306212559237803426613742033843413174256432114288597516394012909294170863794173529657286793251811453410146731886721528771924852599261838566229000808453686560755660464754579976467599530754023499970408560167508521774878389733821524420016196637234074979483522050496973513745488013410871759031865985315967389403222799402734154102858816680689872238588246827709637043953340676467533031086994321493947072298745199432681186717319836942128034499656452503747067482373585912268961975862346547353444511265535162443651298922252087435267488245306722193673176995871896822521597824821269298961666714158436689707", + "exponent": "35033" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "23195266886054836323216237796074519768803652728203102995758942936207072780085963506620622243401033727737053002565285852868285017067375277001652552075523513332644016727193490781504755248882900257254618698330376777382170334838459988017816594978220212702502730812902232207469691916259925408718330374791986255373594414906545072216887918547351072620200689416117326671397970440706640519672562582481681056965498009787390836706597014156118465303903001509230850342537530465771509025359902973741867410372407642561826832235774446508590872230442709779068561949737200849519652894846751007417368055346813385152838989154560324875607", + "exponent": "33579" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "26136996303994555104902439026751899269233143174995356380434831226511118944627390374782933691294381157693176306509815525848522101831517244499601243826165225196799799162288089815852963514010563043754352630498771136146261283517754841108190023941971708024383872976539029726959370510910568551931242258804299128214611794279229320048310281183373267910447528613717647831655028730026834662245707735718902127079505274393153405723546034136213226455630636976752953217916823515630063162078078696269749210346579953822632196771036777486278341177961919184626023831373197278848778162533186382768742906318984788468258381082023828479143", + "exponent": "35221" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "5102884305841240124182160695404591802668680425746757794600613353682517586364693465145919373623798428248700822193626307014147972757695405918586973949888416168150540908967313090384930507469312944811712751439458279797613852353666167163584438987384558175846067242161389264596173737126106278077192018247616698832484579072569570688692844943732037397115148177994650372232299607349201388307973008313400139548345366143095118371275725655892222140774036639481064591944172150477798611071891317046674211904335458639782027610502569408117673936981524703424603638716900522969005692066623075148302869049749555647028380699567523254750745858124376723861623872596018494969841194461305262988658087377354314226826630468644063362371272945145977780814345868670252984945171633650825075986490957848184312308842850539727925521705031614892027013735816430434394246817579292238902652315974062544343300943668495634621052401826373003101413713094638249705649", + "exponent": "44681" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22179210193608967031039736812503370", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4345914082161403335731835352975006220036363399300671622008219663278269265282583101845536935776624974833341890314064893704815618774401393111791291924086436000211889786905434782558653164965998040436540021611209359794061994224837528058435813111295340233706084337871308008929392609644047969259662005808868192918045825120092305641674255400709498898333930525344852487014806667186888627386190783048135923756887476935884009429651810452415418855403324128496887121253888971433125106098558303115519477502875495272175211708042863705086958276935341721550437329094058847765157888052213661843839255695882667632316941834408468135389281848657530826712838440743945153631516008351729949701809758089249628429277293512243680308663863603416876513993219009015430255612641494463195997797977086377644281213182832247309010262040253465012428591863139321099969749138037106479147506722653912333442886622140695704202756107824757142303870845084056893769979", + "exponent": "44591" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4484559936478080813377788404382771384405469930063076162080991007682047377262339586010606551055593861072547410606427155801853476387558839830970460274052653307511664586663910381121238215711286608560208877251627854970156530932144080533502735148645734220090072516686817124207839429553265134308226024876095576053858896516196485391472454295709136527783996548716612242919517708231993123282528705892580854316004972180887034290242521264029378625745973755345630744936639518983950430847635255384258635885012986142568801500223537815374057122121276837311039012229839333135191395010778940624471416164737041079725838479416565162336402149312892294961451262226748623443268243664813270441411959067328322651366605813071772811001223940972108768679045121536800787982707147731246750240589585231858125543484235061610595593005121213277844283781162206556115702196336940835652659353894611352959564441797949108372863918477764654078520114390710930176867", + "exponent": "36515" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "25827201991204133024118197837024820718614827079767521910464265297852397226670849565993865777382647067713818325967090865925694716643478245933993292988151664302268626774168661552164415437734639521503758580494700522979636925327041433311436950902780903427213001493105221758328597508826929844014769426864600560447430024348513921632342529811932300986306245598009094293256101144836976154770096194976451270483122887644424828686796581403713022794483647826238899513800107217637902812130154336363564003956718327345928257449477956104699941541136838725671584272148984246012051480107609990705416872221455734360720055955089998197421", + "exponent": "62785" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4828091388282111817145112102657844548153396297202138001679336369687767437163692339545922523345811581448794881494688747572327378305680792892654470070905116673629726921980787003978618321692126020554919197771997159633252011195082021388896225349782274587867914881197806626612794056028490900073572441435861923365398136394176326324830576017295247625559409875631778391298911815990520752361061561547975132280612228523206159509180224536317176045722924722021525351306485921494521377869310545321004950949587689215650913792910142468102379089269936071599506422245039116746767905776344097616318643137834911290599354107235136399546444895111249209807800330461884345474307971672119061904844358320672298787971128060969286246572942654834367279807417828670170269477663923814353766526787520315638213793408177629937471234669094103799897094382398525078116847829697431626568177420168933874158254782774370301684311915452417596593819259634743216136511", + "exponent": "64113" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4625767507293179835884573609173260877746657979759998006616315114965739710551769503606974332438039434421476861220817918889455548313286371670091257051352694109575948178880973922407006519504396283972340197719461675766749717610924213455951577080273189511248417216543445121396486590995819574563703706276081801985466162638525163070954280721777813811122655537203490910898234635285536061928489903166453097894260019390383133611363224757390923496647241363394962892146016329625727009513738533029688812315949782376922936082876620131071920779302096597327502262574607293236734671654780949450340953481680005205064190894103440217014773228142204878397852648598764270436134698208302585935025135921371496828230305073793915275644070753706413210642879398907195390128877910215054135904261409565838928130153504090857371825394268714531260463080836445893799594640600924777774612452884314779030226160041207301383283353851335128780793463427070910271247", + "exponent": "36291" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "19844806020441119677390379488362440869801674772902568384310675817257986191418349057498498767679807481656097001640499620783657122492526507781496011541237832475035984232349721548069235446728247952232570836431973131575876798396519070769638186623528154245525102782307570959476862986150007865275988957134018151576011263603897182314895099333385890625087131455539758874561229306313526730782851841823817023254437998589605226041871027607337797847303273341476322777508709477580692355212102828620461200736381225052244635340064397178197857931667777870124313770764183295526948941133565464764035289493544066129566044666517200958671", + "exponent": "64721" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22043769996821387713001219553178970", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22489541018698251410935332761905049", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "3893098745310590919879282675096748107107688529644605967501100403686320040883851594371497626267345305274910615082171327255226997690879791600820519868215733874123514465205891974476964077285833068202587341140734990762367843752815960089962431472834532386898318328715930445606530742812436375220039143044429710644623960624556786001061809276368428103796941631313318782818627797020449067040123484782805931968426024858286490461256449786967134070195896368898717761392415164916078157856042141426174230373080901841760412112365880645745210870306031958817309222564253198515540069608471140356885209223659475982751162529173335399617051307528735349724121907131941878212807085871856918978553192375979799303436416948946634641354052743380476024867257572747607583813945706535097033562688251399855385365151553527841511145304803051109088022637079940342406882992628858709742365342910066042135848284280129581504743397364681073691511743331674828940101", + "exponent": "65123" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "24963258917569868901766004608983405670544565441208639128916769335346705978706072643956227680729239286562307400696239564478023071854599465878797836664570170987138424444412341380836617857443829452540509490023678035744700419408645635628771036895580381104744135429504224480215544633955962057484797439630850069334531717290776571830780806989124544947411416576494801092698158803574985699975339811470062660881290484338462160697208108820280234860164037582828700640286829556416721561254635636537657844427842064505613002501626185171007755482042360702587514370270739303967093101151215994498945862491857045833814371842157352594537", + "exponent": "63701" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "28821056997022962660155097357258991716039453248114527379015358506901419794835023883703679911682454861149577232741806229715852986562348817493758305080068219591951404378258873894206787827748830594599048778053080989897272723509321588650015478194760605288272204174658562390569699705716367026014508661381438972646058427805084867378979808228543488096758634698885212008961805937535620771777344668123095767315828319465628596468427746833623641646237614202314328688380046196359196687945936031770085955634541798527109169254459047103018261335982939406121790990491685085604449332634000580255962711960643657685988624297486322485727", + "exponent": "53873" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4900164177634704081441111098311136132233634396748064935477810933156949306448172116436668870413537427181309826859681617488104793987385622179864736925116157889849743907272337643694982007772196629674079562478435579348465287348007894439624955388286161830850934088015014850954170211774860680826121912746994203588492402680929335700591909178942074460145154653966079742782593832848098296104611609018364497025396564426170902744868482606984437030347904511240461588489816596551384134332008597273952122459648462031918258534394646706221431975504375967258120478090913473040597436103448306737546681307684824052337565740745262054964485879951612408990250456798832022135004202418282684108898026383208011125475655982776891693727644665957616656176292193163775651068209970947887014606380441700813413522626491574547008551714969448726355218858026366579273437441863141249300424690631641216050060242025116851195649967560861418183157993221982797809009", + "exponent": "47415" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "30664492143590460051440137997121043159538624144537173103144774865563197633014613491451183560840525279130232039955390260976536737850404810551621655784323657174624972298165590927469615153436784431529876719108056768731906789582506000004114454513602658787744635819458333461401644270897817511250524798051936454892075888943600062338591431314381375559565796968390761992077238331099089154932036644138330435680812860322047625618115072017585044628985277351215871225897010488286495764365358413190900639949826705899415110631360974614764556245027211759423098254465862094485830334961623131228600646888734720222699846480012279140169", + "exponent": "42743" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4290536203051052649584625211904152925260119494353188028688375344179547352767886629711438858408225373867139847535862777788182613773570961805677563334695446025224241386955834594150277368941503227240488854579004304029228582989459522634298288330540633728460950031460656519085331457204495152056817999605915109670060385885781203336340922580531748275471120987425217336095226411590650089064930397547564734644457682434294161371517693235979118809576656168647885472936623620441381309337923615292636733512060824942638819404577833065561502353960953871004351900932190277779424180803653847418287714503920682932826128713346324951469745356473383766206292422611986700990945204471722609419815639299858155506987121217448637696935992449503902386646044099015608497577159279604641724948599028630711335794413206277004566816093608952032917028272808155475314886880765401331583471297189480831810841628492435886788981053356085161794771632437542295931521", + "exponent": "62765" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22849415804547563006872520498369756", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "18823843714242893091491518980396731792677870819762164909069226521911860261895060979919021733019684400424538655377031071394569222264567276504850581864224199547229150391637816510752180239044143598766354097040243884719892162121847331715317227105167738574046281769512278336741903188419491597959835807637251725393477422501852026706657188228913286995567643374700398978177282950918371782677891671400123018836733258573491415386731095473591339109143373631327091060382586441597200393550315575018357783003010227692740634036992661669347543294716987895507984960547057439315251933075373201491831285570369468139609747010536726615399", + "exponent": "53037" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "25061242744914414831560051865140513391317723299874711184528283456524795493694733040400769285465698689105151570889193275979077614129294673310813986208999062495302741681592925327877544955195481983599071946896354283823981287910450849871168848684324955888190341814446368362157525035386162468632916069717658215006682499042272137611695568517384714261081519355671970095978454685945356186769501939955322588980493409538974867588432690677631138330737120573554758470137625120048878418202987878309353090675237185404201296115601640450258887669202819936043760530013147535766434673858145964757354609435564471085093194444276678718339", + "exponent": "34779" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "23467055938178852887064081212076967341180081800391612004218296584921589203629906549032462120745911140583923397737688401967974351244626569829678896349816457858135090560474413475470230055581612168644486696370663298027157440795129228523551926394766136250140011785249848307542267305307603455096922499206381551064993022541450447602336804122536714816050443591334962412508617840163732849765368078668549017681457834891856589020808890640133691242279058396195767737856926435241559009681986350472804347340143881105241413594576008401551432771004366332806048087678886355453099971301519078317512992753587358388901451916641378905803", + "exponent": "59793" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "19345708583312842614371610416879394685415559556118498538770886591275383656365276068632117450589974004133389341612069292140528791089929830562770968885751921383083537401178530077556995543232073782051832226904954895751826041117071623935364926595725766273827273847065929585190718851089452694135050543166376676173705711176707781521298682693738172967141589686069870672671329363561573129515484626691520761222576725846765001452717951201889632377190559410509105700642920895804315001011131769143613214696275814627555522491729909415549000642122688817070646130403304653177863607296093497660155373458349150070574472169407082205119", + "exponent": "58127" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4703358205913293003675332715557883768180866338217930194313910042155285570669156984506226922657379748746344835970064200270775104876459988405531546071720286342945736035886872377163926005078874259679803490627915538487897541070119330352526032544892133077142227165607207134472732966423853142108091291776637000474842936771880149537885186789551404932684537411734539618556202458371919787239595664979668871373536227478170648399072212100868506125094941812889622336333707592057132226743955512075145574155023281228216156105112643063877604054017522437387550570721953124068669071621601427235195789021038066407409406882505975956640588081450374244082455923918423188942821888550531922299705651078524908895810983559979372585246631539347000179621842891452743923537663130436443405519350854655948381437723763777840087253320769568959134031516815702086771266291540785128344307160725829110386015108506558273164422275498000509752754688740242781276423", + "exponent": "33769" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23910456437644528089574327362895451", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4641305560097053874416135424024243507136345523221403244358819340102710259793439512603069264618404527958257075980711303648843036835798699895191231640856127348350276044918412615955579598949452995209336764821650962544358191695895459747988294364494872345324755301998610431893073989255688273023082140873150327025128436345209631560838978108527867920849871645688208297773039169324404206879842965608119311842835719264651253570245187331616113357678708212454711310918828524999511077751371797458913026672346513823162091643481120590557037204276809914591165449298543886745450446104752099444404622088952915033628530886985324340552102656262439364177795206726671409117034297626359020155325668325656304036924052897317359699508701608659331174018673363716433416625056537545062452727783707123499370577147606084863601328136161770020379211176865890333548105202543040092662945435512282394700819617594994666049853709715046624193823453833139218799087", + "exponent": "41817" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22073873753680281955041482578160580", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "27771565092309064405193390378193363180482895158746102652253359715443427770925991827906329307300503595356921689371646124801337209944630098870366641746508127030992821617678565419694508827259310559230805853197887767279778739426234479860315148904110019978193065433835520290694578449693152280648991211005661220284246852811284899945160076345964353356627019643318033844043447565147054829578666450811282815911650588288234608449666824411626986183007023958058559006921195207795928628901101670464529092863214852276226783978254478108211427192506353995380611998549571310534302567618803413016792334057999028276752852838059498941273", + "exponent": "33225" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "20162995721469489199170115846236962453247735263015407867069291997677832632125973337533717892992716429353172471825458085149703029284914756485368629082676218504271954104844777013095273001432278418412785543258957819057447202693707297680760906489332959195480329735981149286004069323911310456021543325740583981885606497798198942690743401279633105775628921337899613597870127904090591988399615316889658077436819430204116791237341634576640994082405144323420049522409036802589197658794598412686608465163097362186600921035601115128473447816264036197488675777552022462157736219834085305843300516797920057358198969848725968378893", + "exponent": "49371" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4356658847434746671597753432231213751674155432266431877649045565857893401148515642009448202279047004036193000090387394422513323923529593493892320044288303337641927227557355311254815253615728395248835713907329215477524018434386169576976038729249477556713925387019798833250214801898158779101344953410621452950915587671350409417160370068878846252754643560744844346190058726455452370025748484642132963642043213705033016833167443690911921169335089594328065183088344668082956546477421532432125817552512215857233491652998520020906810647931904588680898853716521956201771420935011047751102849497099672649459360334825332428906261403315779889384201883158400855599619064814827585606359274052279925544275924341450988924305200092777821725374324233908707532396953733938645365187033282543060405221336983693472200399119949770363784062368243865048210211052785990011145136021417635560348103543769363402049940777052731305401708402521719662254959", + "exponent": "65427" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "21450278486392589027183225517798521462595743128631450969721270884847534595371331287717477890102535261333863169660015272336884558203341933179783125304914153913260718981953862504871699816728734030010551142352635000229956373537910667611567399466026441154061791863483431589348760578571717006607245803102440193046258561982208575230894566848770464610526437361161808625361962903967661723384109509584064035808645095991740066077825162931549013909187121971704997608222716963871293791727443730326739277374183431337246239089370444470608919859766076767247625245746864683121506553264678617089983875432125985486624351881344963656389", + "exponent": "59575" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "23089802927360440246115137965705236511673872828375532231053467299075767636846929687702062371100219322633183472628591606619927758165508402766298034971522652718925121950529173150451052823294857369327365641908640461281801698610832681960927296925475138323486054126586362745289159225450414554002935008665330000280852800584720307450332731507188289081295688690827467573123741552408845152050768073623831767230274372599190816168645423891720528904338582901202985872525399651068645470474685503886628968588826098779944058191425003321067211613333571016633754277903108983156373526205842252759921606593950255807230790220313717280283", + "exponent": "53741" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "30215243366864309572454651291885043441121386772534497331457059257344535219252386926350353924109010137995284258097253409012199371153814702398510025993620036295623862189574282134356550166444346003839787353139440348566420734228224029013703802592081280504988139073133126576266268075707904489052597312233725316510477010234454542406535766536359868508757254328728693227793267091284634094951579523419086837191317853193093008563161250520608771993148947867894882119998196909962087882525114447186704939111409099308289703234797783543226105921934196957220596720180856119056463181154286246328994144557777427819786018362943016364007", + "exponent": "38105" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "4418812199166180590327433531635695979569955538981341144774001477909673807994447047721741799590424487588312555683959607058736378737288550995945616910427310370753201513516938690311437887166308675031581486519517649380756430773154385085877414354248321515140066483823270721481438959822315607213555368114116972521976003018803020252673906632245426179856912989547251836214693747280385474757092385350085576375945624761080242790775947265651286554707965971945926268095850156531299566761330358479471172149177648265937623825630638321035016228748232350850938284503315375606974096169050909960877891876334250804766177727134754484988184885591994602262876030726819891232410348339433155390661423584474148055816956658211603038118821590962249453255326050845917958676099510727197469338746190006908734946131212123414853900879259439508632011106115274537743589313160197552899954429081998549779080247608954052595819757860280726116577008068845231442333", + "exponent": "61957" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "modulus": "26749799503706370431173312802419429790719485453002330423501923977191473643076330953158899557032265053705947118800413509191006754556431969729197415328406535247601415515786396788951186686762400984704435843678731777840000558453922950204616987703856828444086672796100173399555007804107945323333758518118735017032121888161585827102264997612153476075707977011108845262546560760624186708542952400603150390645731720290177913271523551006606663168744008273008387258165921296741081935780382352802542507476695909214604545721107553959732753852587431295070395891514496790588880992132212506802880535101800585876401363605199072773687", + "exponent": "61735" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22894119132002151144570148125677875620791182137453432118190783498630505742982020566124405610069730497850949982230612377147217027752849991337886892069712960504576446702203969021605052840532915533882551647206229552702063968368211578308954758053510206826571946405024046062656334436647536218688105076850226109023878211748237581362854052319446753763549244352316290165821315452182631463225446953926821031524305269579926819704091092003069243570321194209869879579994637234717621976584204880811590941454586239554879451736236692710000911412486833176002900596890824998192322764455459344576487016941079085706956244867746873406891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28155850703552295692826251509156860090564365478403064301097886319806938450965345019319401646588452089238328073948100127712324266180751355626700979478027710968044435809919829254498203156560578065797823713822280276598704363963724271357595124106483452282561178240924670746385939156456000705546431063357948738206746922299962813345190288939723579776112798135907102580418378670311411300656056877474420452273641824288386514722215706391939127572797331173906313179616101717572922430345677281036047034049530541355098818440096760572188789045620280873402052384471516139997557616270698160672291379106209015829971317101036314812553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20296182705816865011002796616764457062636709214623136399298418830516818245283976401852567814112440230643816240568491773750704587258417052525609721436266778609034459361925550218497648740781526169734534992745841379201266705297274901809760132835710638166537996294890610865358536929245722238724257429884070023688226207981802142758223179632243360060161849295570797143568709369273581095580928103074979491083721007552525565676196042234190460625287319973494206681097989496008985440986977934123461117724784336212195010758827203857818740409027117922986118851450032079108093119621680635128332116074731767896059406324883285317203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25800919177398287091904746104100676978943504660456302061648579228455899354869132024037960491631650118297114823494719497451614675623099769035859849136818580125682632861630157824631934730565525307742562426275420335337187583140970056473106448140927596445235348294705551899950153001107997962149070002998103165720096379003364783550437195591308571985826880320466379117641442750403145812720690219316174745801875025324832890354597827509209888117885480531636229971590228780041479652208253304591989617786601362217706784024056645974289541253992242776899497702205303188799730342304363687630155750696346945652964384551867124728057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25149328798831583917926775081705521791719517437379977305643122086561525782969714465629858492499308607006233243956153235869936060870957297571404710625487481128518079439758717127317875635729657250581534856070793899683408057693679903687728182722618852729826187792093607293813795279405492054605515808293167902001055287004158279389835710297635908678561144727634432514429816198345751856847345363552559338282267438785673849188078992380353113062388783300498683514022746098164640107554443284740473909042557342319804961840749718687859417829748038285256938529554551339451593750890840857096019171047463849131581999062069391948631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24115226112610839345753477301148693154602680405315464576849669525108242887087867170046943097836824856676667949173739610012607915305094800445440717791423011631357079304238283508178894157132620925518818907926163905428671461032167156571849175815933768560093896067500294503291293598212440528399566039103650394160959396277722265034343214011499079174691140542723835499762280813233937341248926895561978795814964054756780769808666301275864479750806987575263370492858466846014184438565865216965391453840028832641635768251313546037791774937747630444381406761356935555102779608162552117977667647817309887152539871436846203617793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27357959806622810252183206948866295148861717018892119028407109374658498187932124882124956059283675191468386216222926570400418267365334941642236138684240958260619962233561601788323646584052400687920832546514099697859126454190296710005583856469055709521634132565520272488543233257945961179131330373978422994687572602306224147275434068801978031064801794133495662254937582430026523573326550607124652769949595841895146142161961092807549966396442010575137470717805865074986130732684331929936716573834427300545212708919388460186489182911688061498244132593196385784974728485543812299578991467365099152247108786440796317437307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25728480457119753882254832111939165864025334928668031680087302235132050453017828007515565187765564408083903707495082447219366792336219310975461978861395682088526387680391893692999322905918349657381819671491783947039173177117588774980521119047164495050840354477065908531015917623960484322930698661491336341193093938295988559809146155672849153873141371495362537304755646855619130021960530081369693783805420314639718085252154522466957454299691593884579902431392431068165904502154193026870167038497702519731073790071418854616132389679292894075875211879682381087765209171286065834589787254534166599872506414526409047121129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "30397450383917975332820870821397431073538802699815470874607327064068365440318414010538301526206453443305228445893206167605159333940520195957305974674837371433070635819237133648403959574256249319568026554968025727291371310241913783043816358322040383006938460357088106424732735602098523912728069609479265516934491815007636420869321118440435870693027877769960845726481901484928594480392887789282546874681395572899914542870540213772418524843831194391214964384378119721897661656687800242662230179574765984768086043648449797861678865291779713853297160157144848678272939144723929043722998069133935361104978059739831809029323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "30293815449474343792384718564309989384004960720786403010623699679522385588925500187821798471673323961454308951019208766378435164592487151781304852517998064044455870454050069937948489406695393757784153225871207765158796916106443036023986545272371018499847626618655903609182345309400807764976441915156573479476080117891028039753642817901239625347516413305928181984711646919514654485900980706884097461826983298971398149050068294979508609803423542783027122090074323794610125921308355612449491986050270315982519699881253791642740379746878905702655821709215463844126113661020757368090947656764039164699718657066696553920359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27128937813471891756018514486606953365528729591559246833721984267466797223525766058172249915867051817916678748014882294177676079708703577894089246919087578940166799062523472964549858307264170186215285414302949972429710220458582922184843146577662321930300234276650905022488359660714819588985565647596299827709548446683061603395740442994318137254979642752886526522828137060969336015296854237379605513741316922414171036693418039000400241529203425439279186482859747324209170292010285187126233881498897911243707283878851526833490671019414596584687411139205963304809192187767431079005811283038255625836519222513221486108179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24879612818192101873171210620276321896906932110828182929770576863023712384662688831406046427027130986706229451862849871800784996397655225740503785676292714782497843451864822684996829520147532101902254687011910718462709033133674202695132110912282581795083685527576387603100194606488160865405047474342668621496721856274057536279338955386720337469041573138932722222970036491012693651902787210343576401196295872130321948290840137457664330169637777730200682405820176492111078237230815405723589628066423733475892389960315423395012853135073116695499642780551736834511033212920504386688165168167230027915489388794695649690399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19846703383371522666758290730406023190244947583526258753756829710787555345870610387568607779789055398611394701018335536211469634188961529277588410770614838715274979826454016121701585948884865232018474952505450723451493169288883351487832218812280408297289234044373480179199908608774729272536366393794111572116388096811003849689264574572043499322380660853398598595998306772357842077736996571116648705213290212838941729661265905093307128214911551487534193547512119467099814111104132477178629814616006814527602789406202241271601530500510107677750458114551149916127767386122132085803122608021779306779613063985232074613473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23000482138038381934487539535029120387382012532093222680237629055994927208909495524832885206183666969240676477891200838976393624302630642089477398196572665166184823660444477603821627732102078422656119246015631846435140493603585792301620302598003741922352711210167143073264992120926168431398610737115731858272645748969647649055135689126209588061006535377359499172217926647131172891394423021303295406004492918216622659703256226891017822203509752575486906004545801339558885770515152909599631103319471797776012355181665024680066397168677761840514499448912436828739441118329870484666605164991358519509407881038712546605181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25826929668023083683278656787259406689168473258165097342085961683256685692704578445343349986154241956676194583817178354738838342982680780081155198653352703950123262680403502808189490367924011997015815417099825493837344944673525753466586185744557876669865353137477588564128441275821926108205524859068609024873978145932101393095422723183119706456422205922694211901589200731826093073305852900996364700291643719560275695610531622204726965696337933147645075011715026004036578980338064038467478845105116837804761915126277136491655841979664825619265238426922891927819460891110137814669608362835769806323205818217027408349261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27746136803801526786827424482379171336503679932640791251456056162114124333491103620487643375244615134157985234845123016850070755983193497610727737244049739580886641021898815800315167800760408249647083139351888935717579731732258062208400731144243788279219232614709422126698993520395700134884399524741321201193968178363862765869559655197641770966845743363492348206861404938917330336317193963565517713037578330344261684204350417012295340497085947354259065450035673762370536684198620361580262545073485500694799935382301353519128920166254140189291439656663538219058958971870343180230500999785374045287622760220524683790329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24036751147541709969395126921147952706292109468147138067483905882915407788656787251258717535942432308139389385643015550314088718035750370057662799185497116396507757509886068758562127482372894663616724292559984445254245072130489552065712006932341750405084829019502761060689452139267687840911864234803250315154329751641217494357224583837776890029973523010946837617780377496806705742302146144212658831081234261392858542917635584782373782805191816398404035061402373863977123329477458858528649172640192831160902147255980402002471581768878883504193465051430556823239236229307649679411205540792660687407560113583356716036311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31117989250545648592521574043961203150078578063295348666897655582046121952153098039998288666519013866008553776061828134309581641680172604782238928051890006777756877566560043101016245601106347826254692337234032661829670700124488044658214963987143310354924381817962094158891379098989029565359637830492700994333227421844626331293890083545228610365112995166770129182163325072140688355952269946511567832817285846535791481614821107590396117680001084341129506776194901186529672619570761227451813320084629316281069723797418816605315515138626104882109541959078049761155011570399752620149767676150877830099326830797420926376137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20990675483923228431074313377980522262197309204965735865010239041903261720088919932088765027663606870138441168065195063349387917402006588203572182139009278985373317323804509198514586829094764566841997377058589784555630624681037347967871899057695267464712308651673414939476593000126054757173301019625658312407107601469959947530763187355344531910484726293772835539035477805232636296977093835121790109718829180207440548061852241078331919577684694544348561349851964998542310507973714923445625593432612473930606334493769638770953562983275304545860391389608001340119052529271185829472187779513968346683004933637476718777733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25356207943422860866253581985149939805624895338702036453980902947706426803720498357516719811895150721424277921088306106616798023134848026515443493682633241897224813260201824269747627081362110059744377739553722080110779856856235089910963409984479449963255597975884831546041343651149152595669244194748079084831223151966732766391908501204154508499154606404496744223087329788052724332665838684615223500520996053698503659297311997156387350456370080945232907143812562220941233053370212266752371553199306685184281378152559963963146516382645459528524466141865298026834352856923428496894790233823356051813565738950343160074251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23626688928404121230935245148994108669078129138811473052928345874675173527172234892065617597803834596653400823756091820093062399168637715563540283749754064410663612845266072095652785612246747286451196317131616092533450973525894408592902856088956230465363021162007534395174388797978825322431817199446431591505098765522565398512049850821097318149904057395415293869614366979143196707282224174429211759058300028049454800337821054761288953483107609062630504072311055879796729521162863541770558834968343973319536663673062887483950979502460616264603769878075435186563075950772646923394489896515672384031170814401197671719991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27386617752851925975039323817103618493993428993512083647595101295844983832965244899861008023178696797939590962252140719448831820032283820165743973780464472087476682934950548817861670458590205273232226126880277165387369749202469246119243477568203684234783475997683243648926778071283302703388531344050616122302739439416774591879450146787685369580356629565634423485763707614343776232734465013582834833983173234425855390596451083964992882421152292828063774748636921144288217523926233989530618841852869759733674197967377427283372722216515357475604684775371837865665373287221845736009933560022898165638159446370161027417837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25251298149485947421895147650272019077287897419196696730771035366524252897343107057631275568132791470819785049717943200688108839275789140641308587571864114414200487829380968135767643379670968013851074593043935056433873280552935482735701403034143519682534591519676675187947182053800359902473128011956336555918383713481960887940506457316629648949822181268337270554064709410193769667540762995165768248283025236467414469180629637313498622548320278689256868665810549544438712445568619230623933734795356851954871945874382497236928657494299844165505846983790270355249898115490339798230721554794560725393974649429698490310017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25243542883711429875401451077124178236078764421640597580157322896134150729763442414017954725948533794965432368467507005163605409123524837844945965659125621538868162661163372149366100923113836726690373142342213769992752039616456110334060048282485916462941259980223100353227372834802894835854292753326575443871813365898919335462019420564387852038486969174273749642787309128801747175316071832207724353656373138462617149930846098855423843417485968234971738814164531949417465758948642429005124630243098160389193420209838637522765411028939830157376441863873162749462452294209323978788596815788179540804320506400134102588673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22441893743719462237863787579563918016779580225746968535546497502423642703794154674054502761877676846731962250862161857288434256057154382338462252925008155686960182822721923854233367976010474456863431798861840941644598852280632858223039335621754908119472856856458711949697268103965313592281268386240536497671393908746574949849869590650665041484610279912717466614030843924372002109179391181938654109723762057015227592275021295307148147045339163055051109241215515292811982774260602237083146804118078224412759559755483570225442661952358698413082897496061253692912974469808210195586141991745310814317518467643524846568569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29015328153094274612733694021586378040263702461037744043253940630464151287133646890074579552892740958781223094687565802243745857247217119964348677513396532161387885482014662354046505391646016381165716298216582875018694909656016613051903415643824523353721663079561006980721701038356273418064162651572522460839065727260025615044552219094556201284645401643809566649452440831063723798579663612214559864384761904918403551278679729306038462425302652075454235519013246005794566976277551098880493754955322018728171791011527047565157428797669897825025870862204670208517353907391529529186536800747683687968192821154680052558571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19861814215482639785062172231685883097610553660351021582184900572419728053666206542346228161931585581885489362133246474224337996534570139419751882062079401412389325962352593446741082842433563581809494671182382802793345192328134837905530534365881517582556932428486806880598707110715732984639199528763970220783470958765538191677560354613341511343514750984433800637895648622461774498329215713349759935921334326137342623813051339577248546460756967681972774097816905738763063414391971019572325715583118270045688974527169413197443833749395274081708964797551350539976040865621457047558753985702739187322442960550330913436351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26592087317547832332769156472738183011020445564344012298237386114838796743406132952031639238629823534535761894704727075703237597440314221259240329036684225604567301157992660400522986954321667659083259682612718140703488552181125805312845738915175138405688207355020263742309663545025387424190417835546068520190623276965509796331775492787032086958857307533635946209994768095926584246618141538418472601625079327188794115129878923070619619678677159459738054365864265778079244764195330867901843674003031600933597160315670755263899083627057071069047226051593725957957380324586255697078075186302632679386943662367072114284757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27224424011420165433408645356564090376094184304662701790472358676970023534358833614014602558562340152278846878477543875081399825942957574989458770861127754347092612166039970604545179659955673438569981614902414563055190816853023261630863093730541250032964785970991137747603905471894452712678766864586461792242567244268231020810456831853765846689301362749499099520414125750066245742163432215196937735008370637398851870490711326114055716521585501807848926055338247842904455856442451829133575557644941598339723008668974790196637436603519972293754103648241149230650588637417002461182815691386138475301272677682152550392181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25394558340158807466626072705215200575651422650290668005019238028882277752928434773750502051463267754862167689100874533500185638496549330484716989643981432540936652810461841027764610548497089202360299683357356925902459477575451050110995106113612520857337476937812518450655642220108993101118306406110156095976555565642757528960125987272287261453017669025997898511653649390599280903014435249417820052824985400548299043268887625945039093991906418540611899996731617798988264174015822557088052396608317408102781388743734512604090044632442528369811658853636073376789105917723541778371662920906625668181362439693487447084257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22989788215418808765192961834327622030885020829643652549685137357986055385648104706646036812514432995318464120343227214218696759054310216361301449422485075571371747664433972049670923146422834669048399031271401148248160521394693481035092983115073999631026126978092167881831220972943018960563422664447655324578317702220812428634245820842848074525581448158750097892207256514406602265741030859831132735094182770237618777341466422460799783813290762725116451740739523678366127848819928010083142983088961156348637585831598323089751229892276324512284818664689208438409136339952606726500814040189772027212803577852615957640831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20708866469647521147591682958653162734710735360037866286196176493771556282732376899762508993332010983834480832640358217527446838142670656490498411145652427154957874205612963479021902719021803732944161895255659600918861387627062052957343173999021546563006455052319187693469420290007730635360121266286099663776653460092386767833392920754207844481312716652806854579834506340748065627766095202305186689327298190955138549272672950125252987264172114169579356326020443560254604928059007057091473806401356225854566232147275023953017854453145469406167798558534560133385553333493725294330226309849495137918997321926952342219259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22744175134507934248096159789851067501532355416611958422378436354035281754149157413461803552884695708523759604039922677117025713105029267751917445914368000834373184499274018332426751607171503249404811518435356166426126136366473238001055424920539032148595825265311986330079554494712762082215426247874003729577234454868244312460356208000318025031335419368372984635386587978605235827074279827228736927879987646603487505618022618861928279265791603202274569710199891274787298420692351198898787841601176272737026667216985663339051297117934708660162459260070281094469050010376475647057414521619872459130163420505790677361803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25909564821960346411974221831487271656483685669874167339393816972772569114484316442168241286509619658130580062776211932603834939225007385633295459207517615744792074154903949749884828568434292341824910257652681684774593988463953779790273290660885678833530765737975805933117601327411135601012786137479636494644727047407140459110052639054353291952269794639888411505224899881782731107522590110539805573354536276756795590372131461940488004749048967613030992712229077780181405085716322718688267252523408228027066581483565371501353280208505926899420576333746690289480825671012852854796340442992566475315148080695829543184901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23578983745439972453291778005335777437939129719371958323627649588170292596870479773986802065282328320084289127900474059727286594772789310144008263491867059586882335831682808418541987370914001360179503337491094327429574650796370620003659450241807675115481661476190818513091964316821978536134454183762684943529766254088346825259480670550311957587246418425553707222850442723588565683818688460166883657171174345638659862026589564353219091871124565681640251074093125316457467308933092184843144211111656432973677784097211345981644102219047916357243705668034244012995180261176286992700814276345178803016590102518884935898067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23712633902436703484949136721802743329298700959892778215188714848331352738508945418854542604200973816918161122143192624293494771128578478733036789895824231220248063075820295484453729435307031997364525353233800701836149703517419929767701817373097765608057633553573257908059488688626721380562403380234844256462757307313625265530765966408498973603252231715376349792054777659958886730041034885881478809654711152764919653070886740102579365570751754106269249009209175154050767255086361345472523618430435710992752197778523977466431910565159455486258183928414745320815869728793648128876628715025848288273552305776371346436323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26629162798646072312635394359089091158677372128337904369372700379557686107628847524522710522994701280816708799074059622616542310173173247317520318337432233496567800257951733702208407881790198793566531274661731567633446916153771103878011454835125675590249049035875304571789094111707206299849759468535673437578283772329585798321364982470373781376021417703436950284491295613334557878070506300921122700104603522907426697859451254244173281668701815758838645220808769307411655847031110140077395970984975055091838874038726717023619832418670255822204985034954468379275010749477584093743006605257874894163168175231818796899719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22805754514224605052083931281922139955595831245005002371494014694294172769178157285288455367729525940784509765188357973003574988375848039515339896912747971959552903274538348061834383086423360095888670298951153099285056457355039479844783249123444083123770453168853362045585350727795020307029279318131053358218507640081213448858758102262228848004333498463327352801915761613604945888799407505962616062808619078265436064416321327637728352018799921433793459525815676043036820737312421235161841763789930596873396069744282089731073333090746268596131066935560735684721293762518550175733830897637967009288542925987847511379463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20252668309804726450955092238784068775379853182416876129552143832835850515882839323871019315855973922383675553683373627196787073572964184822721105838335512432903149112950438619175720362999675785625204701254424899809243362806071257752992400514325737758424135508237539912931636324886527194228781685805731538520833515859306997328217575558152563676567139485759594315677136291122070612699927576802949147190718273430972130630565112991125116203937388904821626020826008675807008754319472778903997136475079133018533291188873182396582517216697527679548636593091021516479926914494881865427324934918508096355420773706874444159129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22995067856363598277859905195187311978499344575384757541007246273876365292957993821352368168204108380930675125982060011106323402006396530992168373617925935251494344669962752799471578527381028159229784578151230772802566305357036198725039218850165943068331348730802335714972441028059934408701498870488621729734113565815035598833685431599040184313360461279550385426340874486520453898674513337612844814032452493179939381618550670710041201584356002859978873479679868239897697682536756127241191624808166280109666911940644841797362544817572610916455198901696291451708697191964450087671029315977666800846437095953043945600311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24101994610928057818041919605595688266007147663757092533601677016994792966697001360707129650752126083236624881529398960174930359025924874648809775063889678988003285094692898195154192351126215581176478241431779571516313259771337434271734308090256278631862538837627861681989874073054260895507907460853835410420649610192018643959926922982351200344207780372253104693153213959212181678172639148604473093791491402172591963075321781890343331425971456977734762811383736385886419612499699214889141628308234721955899915400511189939255380366402875021752148987007301787707321794850647293198856735974492949517537594297211050493331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26839379153498824757569728198973620205808073941048936306726381100897333149569274038574967388783782476911280755791382621469879180946289940314231798525017698676319495598070533184757172977056318182861428046603115619009571383999532863688191608637028948782546334162726877524297877534924668713768431854542381089858001936510294184758418505202350884072743424229404658893467054967241477437360443191271656617716350157949101229614852818128761862154308873385469165204432907262178460794374615707109939104813876048172668340410466817894682930947219749091248465880114542302417483186084185438687253881783649616721159243063120618379831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20933206415570941134898158971224837644970405670841600690066276988468744871877375859909003056899290174089581182263724065822076421489099227301156255339008069941208425793686675231544652838376474126842617494592317456856641767905143416712802263538462745209738052716502629789782743556634452721386957419327803482280555314351639588319865451972038974314901250876921452051547814472046996665881753135666527823700306243160479919925754813342706752148973503696772550127122476053734173450886072922778836587610764871143086359056832764464163919769326268512199381152154334925409048100626401702304247796014127415575177720994567252176013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24759660481189815896798649508632192626555218096567385470180913843138661632025030818102433838633771990552391085677084247183708738199361020154391161059214109256864747859163866541480575634871181264048549819719485067042841612821963265293807696785269897098937644089144391832187858501037422547236335941985161443017697588310222122377689553858887888429168422110170153580332987136108601910749557090653819350099091244752882562643066409955494098263170282322437378391318028810361658707624198333297889460108940773206615080828829752263551969765210565599859007223910469735491793012222312475790170550485469797337134679467998859766803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25290811799960600289770009077419735308258923084367963804533002541812399445797808790750419833610478674467844417133277194369091998307128546031630411526225947480234425257052484549919132422371453090684296019741969549469766513973115811853714965330305838030616630425379717555237373125648462171883269697999815582846900173365968124917218934646289097340953513750131202594918055138917638174576663645921945389350888756652933595644768951299024469092302575446903567292669793910235882924624530453463830093020305382963216998090588509678632867309408167279612236736940203362306347234095186911825640476215141266261995185971054877853159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22700891391739545101056927878317842850474995964921699109377857880420309069181854550812001655832869925112505556612142610824277349097669726046812637408311841960169065309552692837110212429882451464066303854785107742512818007254689469694356944730371589469009362555212973665509237222895194319582496873341206486820188622888356492881479417173724618836506309177028236083299898250540022704397820752014412786868602554977818044952483776619646118014293950428128839222361304522715969379963690285880171923876275631813388422189603677282612000670729596563632429154663575861679501530693682050287762771188051372162086734372700848879659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19503298235587703395314589120966100089061434726458234713072100763986425694892290000032543044086356196844097154789821076362302889956333309426584669470862635329351879822226890184189110339214431209923765199696750599945314956659673515858761558731592263703741737017999572574648869455311140071088593344556538392088173673358835677968367214421410577415013242732435346780207181520223050911565465829404075211575182193132668584307839893997042381941709416247948388895959958145057953903358282581517229277324656397917383906658967077931509814324233637706907284464491433249160769227487140840012176183285768929388593339794029624006681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27968311099536244132733441997903297479057450329599854912454338285343056877044535410374230653594240633453675423452053883794454659648669256702977969936822242133860228790831096512613325357965110935537968872574568955253419511633312680336075587413084530852154660849714449026423795713364029894739126864950866338018347912296374777765863756536882923435295543827637423594701262235080319158878449587357276573500062666748540497385778339262882032962267184068394908021429528774309062722611690466350820750006318744357957055249001369077005452137205644360426780124276398553739690634278596010344316441761178797678941909243587552479583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24101011268703730114537812297766918668958891658825078255071691675084048313298053365174805124689493697686361096582962561446800655843142040764365982749816024436201951825623652568708982211900090177097846091091698058045515254137369859398701869480408292185441811144958826764555599813672751532673758506849058266505783319966942743968454495151940322015239241746215519362395708668974634582895592798990296425867542834087273610347502168904226031247459242959825590330037283365702242245669677267370935660022454171884220104534109085021727480372343368347484428287138392380744836009710317009371962639256021176921029041943879122086733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31470115423901348653766802183902533743620653182600594496805903991776454551230177256338304940827947811334880324867456398988881372477184317958313965940705093056133350505869503896446328279247935099659394683396488700971349987810542613484735305268334843207538241847035974869017194365642927427918386901481081942609955424271277322686437628939870275811105182713894591108934203239999116444033347304776193133080353606169195090154481855358836921351826165146822142737118075267436045083645733760579526828913332087759216994077130239057232191358553318865230202153436232919742054177258611947094282797387126124814348149808544427277739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31214900658728980784957473444927883914880750297684118233966756802035800764486704944062942518688553106904630996071971541774866525969376576295723606329532573360435599492484636201912602061826510847458133773069695139524389241530581879473786125166702512071245103560664766206619651169906770881911312896470002230712345874178848630334976610753095829701819553949787751291895689842731888504893566190737374039913079437331279530695568542487876832789184028496131274133725968457829792275289027978083175655329817432863209549526572746594066810821126518526665313343470179749719580254373525078257497090357354434404575558572618036971371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22673481929298611448938186450785813828246655805367095215441902269225738919900617940836604599452177767594962459352736740567559326719741561129068855456040213180019444386167722885332242273732910328445352189852592608249243881284465607529981099244664695863855015919839215327419141580951444631871122713045139517441074653949002308639813887855001687295954002090078493568145022613011417178822696843482025594678100084248650304547105353964465133043165065545625112185125022084924061719923921354118910006760218424572166562075011734823408107546883189796900789631431257506012494961337006837966982987956926858015069614960590678176439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25606692541758876193315712823180404079997945680414527565011311909605904420951451996632380376721255433353150982035153506966188335818621425444328897594204434497467721224822960668385402126348792789311480102732332158320840915354920511543171798123355286379070329634795950688955233340213306607912744492805573418318320265189228432467913278746037390696402572839651925173188632140983742066272659115178545744854189577026747767091540836891985320143377027012015931282398592858447702595231020729601216467125085891165105490775373980116200370720298193522223979176878025421660136517739379975676833942598031967038945544518024385479019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20871207560283470598507160042992719319200253433803530938801219665187587528976149823042678527483597429255710279568705827610388494206557603387326409597772311088910808957174487415832025317087331503778787469823929237374820531078011668311380620979827350700114241508972370144203037172188583379616684508602594795727446663663206344227452208212831625315896530841174830809050717821100806067847170714656277616856308457304035987061013537042897189805962848720353719077673769795541655595150102961692222200259880469704048513817373031935899892637200988391794071429932222240476583670429939748020263526053954076004806932418439211805439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27743822122573775303229215375920113304588208274219943961212323698279350606388645351305306184779898030636621076895183958632391308763520574381708077742100346222891462071214317574461769396451326465074558742070195216678774938595857451649867540870065461751165798263542889872745257427674637249318014911728814065167574319327589294868667219811521124930842618657135686609016661829584895422555550508985841573709584379706320341767343848836519938480457254906147272753158189408164455199674524812886737299578746114474716835949738699422193607698922132410607584532828444520313304087267545336160072330806263312841438637004238695486451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24286826100141977752556264828297819340776785083514388878434822597339257068581285785272539713114485645710107455008534238195420454410996175924306583625646193280436015673125197089621731290798944215886692466798868600985851458594137714922180027393181740503361589235290121241109288076006683289384798586211237552894847065366826693097028130312243989925478745483165608065088067227827365136381514144552468886596637225618893411891301915149172527578106981311266448516948216758810396161421479600074335417043755659777292863564327315591155727035470408527572081808465185981563277435491898141004983960152189008365135778775623787398131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21814434575753850532028255159804313198549126079871333130721184073270275517899294676446745031946289742196724595688362700709213143916616283255461788997332069036616503820820013509290009486143036347656267714596575551812118538799971201933532420945355690867762369621963007010792549592665535886608698336448639539296854573722955192081509217080958023764619901979278588361943585868447249776213026907689675467307207671337673357750596272831122043446253150112958153015938062510347053761510103682610639834670433939434346620729627900250148670748841868526082780180616049688217704582015649990107135942424930719848663124204169603529643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28691454440455139930319471315005944288057230049843125788010214563615586589865668816719278424207964833923199736373514596159865480123322699646579721919505529682840784693682638145646435682786658682017415722413626773709514632923564212240644249844293690956747615634000547913607461962530381496415424701559064036600931361627889506724222351955264686892903868260292673454951744505228549821532478602137829998788274811710749800654004880988040369201980244236914327659749937052205324331876018880351345593959007537918719763358141008260444946400749757142498682607204443645225686298187923931697373943073466610643924074559383898424563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25040070921457178111444140623648291258895380473725715914562617912280417569051861663313964599635896303065445867051841910745035262134007642907583815529621714179378205495637111080181154383514956789306246437540065672772110964243062850015739755289975806020198546434990004357022584956029442285916589420798911899558378007270844153641286965955758445440708652241978511270208668242538329822706940410953062544125236981586887901057920305088330789009729897126617880286455579679717010996207172901647230233890581755980233087681828806532493968255330175912033327606212874361817359707500657765580660447986378272233974329968106936427943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "CN = Autoridade Certificadora Ministerio das Relacoes Exteriores, OU = Autoridade Certificadora Raiz Brasileira v4, O = ICP-Brasil, C = BR", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "21636372714424863787690711609115255", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "CN = Autoridade Certificadora Ministerio das Relacoes Exteriores, OU = Autoridade Certificadora Raiz Brasileira v4, O = ICP-Brasil, C = BR", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23048192172347840869638055167605935", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22809735818284951324794901181089208327131509274928397348161753123525601815635253204860248473690617640724895388603062307172580489764115377663965641189339546508666789336640700145675403313022068546557230689214866356117985767649438547691561501821360165423145771683439277770170517706330467114695412328206882679947845389014039018988862823963523909864811524568738793312038227887062341274500772265044181131899855754569591954122322559483911225642703319273151794139779142325764674650076938803823356288025145426080814085082266192357107978834470273868325222407376936429560383190944103422521104824893739264676217019147413104919427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25189896196219069709042677255918740410022895011867713073504543894441501496855684121300895507083351429056360466369896786585630917386432337081341182489368010247074061261429886808034424383744921732118579210700739647888862941837425023704462526880435581871637340763040757905477375941083915472585304722950979814285829356169249018413086958460133730697023593060038219207941598116336208063554267802549964859568334965313599791994984518833431860747733104615861111979005161125367777390518389326213545727822141036956655034929774917436978262339429584586550004846922678114904331971555747765706632512276870934298619285690627574548403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25533188524816069171900047917324991539165176437253242267610463393604678241426928025505278502454578966887427433670802682740169467398607321561973818513265752379759300305997781462816069093407681360073398832059203604283735346590320882114852410936900358195781504577420096493533896345672061939493076161173293503019206419319617919261283587338767157715842321126176295135382965932230108495292581611241031535321539517260332703043401880013137899195365320138048151511678965965150854125262970757929168748224867406124783975565563226543363616778231520780014982258694103738032875050755307297572627845869144886847299396882931441377057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25902894062956803048527120016889048045639928437346761698837921659544560624461165348995272072579137170026172281539983040019698420172331193036656496123743420628513335320171630477063977822361722502722407952761506332258332562203021218104736326296873041762821491845726701165888767492426094752515062297576370908032846603358366939470347180135776573725237454262673262517197159779853195587847476668163271607749853301436108358541256200430135124797965433583702176077909607178014239176054890349574075279078260705982043392084328280897628038409493516636965670464173625203901443438721246825669134710467313643269276781845568682152779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27293894120612680335884137300833401969004039385352563479710339158518998157308310184357466753520102113245678633271385751975087052152428545596209533341393874921017148623440574560850950462177508853101676554169960872285099548152788233789190060086135502749377864818313976493517301828190725684587076801071659448084122926181793084983834812684911444158107245281911991526851066220176937293413428533653721491661035479360117482950524445447441938920920405003123403205987560224213836585657036331161955715560881621588420686170383192059196451674754537422325054161933122078854189872406592166853351760786453993706195899598148068483953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25424195212053083324848353205327339043590941992201297899100173093860336404176152046313174156219235745881461007022421763173736664944110183668243106737024850766428248386719571210121349539971290761607417512692387295481542043848456086694682349429971502847515669653772350498997984268816749192725143233670619151521274820076691127455136895256350842545102690581813391882256711344930096898671061075461886524641578598761212695544314957378195341345259926035004321570945400234582361613953848103716360513059850885995763113477889095782135849777696355316932572754286760074667162867902685052623428750113784970159623103183757111409053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24555886493930238601596436306090203057527540735605160715805680877652474761086837327671620188172287210888587688728426562301172792792298317881976131442088670211397335403120188200560441186526268492013375415682407466722587277850180648400335575183831222307854822306094694406953647346711374043338568443665312755656466191021695804131036957242846786416810342785131599357302114848386783513944627469062700855952282898573042511144275227908618824982384825485353307089598440510643708322639582450319653879499915670828753469966470284570614998098885765516280489646819493664469613071571946835209553801056582214039762730493589546547009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22756964469861047975382526465013603418327581611510269826063530619355860600235740794247305612896637805345773705121964010004073537182402256635673714982129361169943933065402565452255598337738834167809297798145934369387298335615003964236230857548300969239733314895338537520504832750072686003006111834985186959229518634611741681371214577738960257732078672000602100519372640108221200800232064027997635027309012294923492671932635405188499383232789233085256369748986433718699135806844993927658031081526918247195521371337141298217214049857750695471627363713263005130741342988523341694508430733486684823111195516497416675560733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24471976953260340336715791654374425700816725578408160940639097883548743558345805178612909668329342356488135452257299441174556220485972764513032981705191819723185683188764123262327098350929137070321593542873814568783556593286823481589174197291247597077490679196153293504577613905218476324024215062939555162071544464708200246110234132534532117796956880927490243296622621660659986069766835847496330147637819032557619885433256336768996144426571710815520644725447807287690112401198524720938161876686017566642014540992255392390960448009693384451666560389047337325303564723205447543536965556116222337434158846546303227838089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25852499925100949070223014037306370460748584647831725647665826769274626755643644185575052188085154726534883895157173557653213464344787360889754707441499250152953063009089568292816736453196452902321938534984577652292076720664106877032943536264006529236679773760890454669579593830072801631309256779553917468819864976931409667534885140303482048164352752873467426728283225403083162362543271569632905352974290595581455726301980780536103893452583371014741446432045810700597390040626181985424118419873834799290740260393505962158878813408043785390759140302561588223640176705663415654228762408603176127509530109380759193971561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24269456489120268609350117038801341893058601024902944390382206612044157816202285983642538779323993791777055297895380983168834987739554813938200850951764109928259208630521395872771841429259272476722725194873491440816657769889297873573850617853207174622770600775794479789231815323434283561379819482396277403257860265618718454465304114272105999350904914387813996942472530931843076778723707903105135436685712569134635771542195724065918432179521609404409767970476135527701851526631609167063497770066236949571874572662719345352375144719218381356302808809265645230752591632456260386350713436248967966945187482727096663304469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24409423097329800126959921376913042625713487488822432505809589355409051950151524226677568304374274837952309054057963608431955413253918027591010157689526573022170261411893221637416336463550985945205220085936066514523660285974562563450450624075989915515576843428260152326074533850989739027867384131363266953750242329375621041931043931207214215946622478235861766889070737528814491927562213831370168409003004064050824209953508378068461327167104983055440651937413745168682865959854238508310742490187417926417288607049860341689612908379118632294430574579035200445856587964597095721846383061246751867565836386597356731478843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26832527202516240619132984038591482992963858075369016839663264539656927904320344085853312009984823427352163617781044070472764997954556820678151157929191861806678915029264284270003176571524788272183637952697881978617062774155420438858101734932100251511018273512784510027824532119429088518175528247162784463224232456666465723092096024825992898722640076736576490483547419890735942836709238671273470699415883575346830295831198210336580880367618592986933875324893278029203513792678683456725804925698361856098204556639701414693384861601021418551481744520487036188511403353456679745402547787920914205278527369738519040063359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26315125289421350306998682865095109912221218213954380408654965266941521027081877521596785000339395722754187932793651789583631381382601111856728852300559446020782621551213601523842490523973297560836365275040899187208917773637403443827492962178272642340883994111248792769934128921671246164659626175585902492084434711992188620654950871632039592500988078587771533175931097464266650389199408734167432288336810598889788097661266343827594354792726949203288455503468919646871151602593737130926723326615120651284219048874589985825520703457176771547554449188638286924632049141164196119048021544349609397324315810553601386848109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23385357414988966389241952562571501241568576224194141143929816190268928306717465328518381228572973026963569760162991226515986967742459041987012595938187413100247347444816928286418482266092703135922458559955559274111315294367510284518556720125634371208307272098292044469788325489821793157208571835884642545002521757397412527501371999400511938647616469177124230964441425041890794280627597406785813635258077605508958018886102796121102593630628072095484849632536586910290994214641410755256561053158504491810508987774727506291866054914738785894315283796893195399206235479952344138061327433179157900769367495248832226644319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22441979643107963167897846366248426208261243423316048668066690338581264298852487139963051417319134636702605824982992546344650970640285388887384456668555199709820960795793477770171200737545577227415287017100988318371169514042961729100361966752809612332502573080735233946281261632726449738056001640123584232263447616938474289028614600854083917681538740236503169561114147910574913135537942897526190339369560242526968043727497097891848298295991541191382736415496313078617025184513539338390388473468084862008827528078158187088325857997105061279362007971568880045936601085626709628685122773087998011761816203741189612485349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23627772789982551659298479116884672329222135148113205061379255933350509660461478453662740729284487302220477288140024252378444083568773594450154607436019020739049240048195136539427328241459250874439994714377033628508953906672269278656087114083250450415699888120883532212111703512888853731463192883455891137028424630836287118049169839837717593335455035963892849124742257644321134402469918827180044225594609017768004205623420374871148674374984916397527803140224102559404759375176677868300993334475533122328237528609224696551815825629137918580671766323608196897147505572029178221347432448581604772959279556248397024003983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16917077293281561345644107809717704148526183379576640188832648285318960562766303500431861169405704728731116986800373430994147825127303126025854679636698858701228281705036481419992393873823858673093373173806502444525949295913725326877466799773853691361433803036473282089290170559784381317143976657629325566578573911159503257540676826940520984973235408183249509128154145816793031521989727494113534843202743160921169793288230482804001189025814810105594035792214253859799134739239640341538763780852894264492345460687023190654274476389059729775021329062242840821294547893685273232508534850660351406063192429792535628314707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "22060486668406528733333098044182731521377291381223788556628518802122554009567572900057471057303321231364319587295320029646820131708635979474386600620157380323965519615740238495145575319966702753877499812820343118870327699316428274442641276163949417266041627107921290767510224081516326146184031522248508010761271201541071735454112372320175457878111591745386809614727677272845834746930845400736256334917008404067895631294979918184054287621202034348305121580160536642548077999186728703971945408183306267020444961330518872748451717363285944679979722538225951289671562570544396463469081378379931898500989162221036604125477", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25362296531754073402204820440551641009419594771910696639196139932669772613793313471540035522227685622495817599282767013990100929318488159607891021407012131261755387586385638916311041128464226469944839494944893334669814549531445430965769055736465048071933339306827480685260568638882300974547788393456210738075573652394341418609115275836097504010852675269001984292674361856667700323700273512121001247768366408904020561187609255657015764494847011467225696049428695256636876664877828838161669941083025739310072836341243877054754757225073591205505013951301433815515217495963681768634395746274734333047210297078309061929537", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "27245712182917759252672656413513880516148027905681331307820108474692222799453689268342766416016099121327163727324892541483845190790867886302551035047697364916101543907901849399804666435863252419403546062731551607960801080513897203592776235380798401311291748129319215916326607478974661194160427248195903302076573803448411656458049272446556739471772580512896926361194052546379727864691355087879123739845879251593276355859802769486207629283615454519562325215132369540843166761834128523208065706093668954049342988361123490807797887465331878910313668569255076183891137536478248294803067400240594456875133622917758144072259", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326059858917515702057475114624879367696186847976481454092687031137120263568979187910651969740235812714241890400037440869936128635021164762533130930992040460094692185517175460597159628069648480416057155899354935116416414106298540877527058101419704256157278232899830297221310620513403391008211704840599253803618806588317081377778486648761776573457840601800289148486992767321646667178114041955828386291629753100995071287342130278012805052449796672081812573309425678782811530318018872941122538252892980119437910004780132025285008597017181433004838434010329617126766594219670764487105737973893091413498947448884518867271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297997370355756485892340218053006719588100164604342637118114298049895856550818652931891961901947639625335424850657608586549823624696132946317673082357177054108006686177247508034665519770542379472676719137431698717567742326699768070248402545021280038746878598977195027786901068966341633091556225304732201953883424411949051780646948381080114080446390522205199287147684580841624318477430022048370864572368449320432467318968149528297878135806433784483652454290067676970825268006150261888365828897285397281593727440534636814321156010146205006536226924202166151402823516060049078746259097232659253606799631810558707814467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22520156852011772136767945723768839728007693146774570619311026210119782041314652333582198577044775401077490671294856912900313848415132048580473468098431220105760886128101201033310842608304888005845364202734433863014084456405661593069434368004490583100026157425602591335016477774398617333059990867690861980476158375730514138255233213563103303391820994968458744101895184541934272415078109958488584064075946738393501879822208719085925907960511243283208184166711684424354058403803257057335527055757909912312034992379467180937392412617954061805468202798159396999819705853446736638093574083568826253862626038037529878296653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21794917716113326486914112318420218107845406661171357389739566235170838259509905541656706320143192815340102317989071387954577679755401440536223938186177291214630435841900130395482559319730286193405973783730776254206864292960927209820989381992260932473355028924444372935614621395707067886171821730729748247414369180605311070944749779299010184136447733316440616538807254868340136398237125205738778302432661733988361773750576286005659701580110438760220947827528365227288790466011316635004911009990955717829022597489607786393828306780924459046324957256232569450638828291280901357430658307332970101578703083912456614148133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18033201532478521104982328663228615547817126486748238082946578160519416510825155575497903258126658383486454456173133643101351676701185591219608904579242773314906432963921313034064516794361874935997472686105712156493329353379846502096123342224144385180267150232702357314714540309002375922232783265232617004825151169613178757913690731022532239597901074216287638508813903179536006054462432309337570078879423018705873383649150358221435988749771118143055180492485127748545298881889811516496249319792007766362551256014869270616618433798661889533866435540220050137225610123764819327431193699104418341557714025596144200367959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19849609282038727814672237078233099572676908952112392999227129326175268228655003776881288703963304781478504174664196845484611323150479068904972239332279894128117917467348813374527380720889235849279030389810156958673663984027729481925950997919874573250545084171600574746713996660081886685420297870561387306302283965276497165463295530432055932935385703586470152168746247030336109941385284414541189695315954366479783998763762914632992550357416434973715147255217967909892819028782658952246862453215581570581336032678039125248542194159749529681699891924068965878176186668321642906136818375236413386063922583878173332900019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27427568569300192261899179479750374181106704465343107879014662597785735015851776428037275943362435045013658474739423919871463378124430427601144287203545305435949579324604962351318115153629398733807490294978450524099273825822710098310965759592994397718277968240295644437207002479227042346366713934979924183945134469434743284315485084363450707289471215711282091971672046049906806288244614061969392257859103895907227695867375280368306486783376802791110181766284480483956123814273113161456006922476420914521284614036014336482267192097344756272900179716282785197893447128118507281436282871174765385721646994396078848615393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17813534201564021552513336233522516819061246038489146687341277481395951977172014897717389093013324967515424963614645517456728973966193403050866338630032040090212550159844537148795615445692989340650864781020696282400089176266933479416088976923194982323291675922436269846016132519302699004252382567475756968202002007157810451775808012306786001334994207984417478444084058149945312346888608293938809364199281091760783293558459759084497267805290775139821605802122913563796568948176106435975626604562369504317939755836638662942966280901271238673955662017152026789469023100161108254615079193809899098849054314069196538204699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336785984318183624375405821128124118099352894501078317925696353987570313266656824524525456017368979919087091825980187580765433501212067511582846006873860628895478897655669992398874122413981231008441458954074281444909433442598173536851498948186148047764980552997706304863133373086745231537354164466284858491764557602368832747279308989002108145482536774298376664808910525845915271517586324531957427595894021718283136474146055086189559801792916105181072267736063839523216824476755353048205456332975199339034520619416870308585433710453075529150879814354015062980546706041047730513326202658096773661163733437359148181421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27722589928582298223193922226753474901351398598012663664586032580100151616647388401210407129378924848637542251745806860563345425435934463952790187395717402599862520644302576397932337205131516697501002056304466712581467754862908951066500121467234340861629396327179103478386567682553090114344945578308711996182190596054111272904597087527291785456251360239997028233079692405452201498285880549310770938475488287667237097467196268623760160303363301712650573934863608029098657535651417903280817891114324808113920502986746345941589323524139783696972650566062907390230700950856920515101658223085504618860912901626806752036573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25538844934096705151109342257378495173160342266026464746555145518363995052777138989723065509171159683084724067966113115072338711560993420273361434029012200875598295394507136758615205663505968133569199174920779251591062584961634922434691115928520968051710237048653258948177577565987067042912120303721513288641543665977267323945326780349048142719778999811267656943485293371179270871344975738342371595965336260166069304879191337888672189526255575705427207675372666351925670462429859507275150873899666460631945738036296861008051602739158824290791677759013142433627225108495303374708929562666004879958324775614288614450819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361320472485687026997454423877815613589297001753626722662265543401592138087123328197705782528693509314465292247390845711326129176785680352717107816110510559239536455071435676920642291904282791150848937822497118351529633093749233231426218864915365924911512095871173618753803122243329332788680590791356184739054867200057889364691356299760649096924119482295317871913187095889820626887780513884981884826956155986245051670439172808055917856973285851127301611832802996254073342470221402988128648906837973551566028147674530739776334688042939588481644999999268994697429886622514754841945998171016754640439637436895144479137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317812941804352895877588773962474270169171427910773957897170255966064271457355162099141113600818461688706152981478812502859118867366048806939827999367586836498169060591319512635774090251996974010987750505119948034879502521865370949177981986832533004704472552471085354398795995910426373082053285040988143528640791960916992631411549525725490543851067826251448567066391514944242163115402223647154175648361537777676791142055647063609313179269818628796857138768904207674901619140235747578770845017988130707087630477663737645181309684856474132722896086110073708752064581412544861055603039248471842136270579570814853035041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16728597769061808822285653126783113133334608029938268018466037744110403381761865916622633693905776073589106618428865082935035469622245794530549399222449725810599602757201116450089481767382518020137036733800793873202755258102106305721411307033212174482122463709605033683243312480462098058030992975778190371921844881335047533712849473586866711760108807050315886163336671092221006063487872065000402773832524162116400503995965605150889719986980367000033882794522733345215136333256968646485649413034223882994750497297064867529016576887526130984431714163337936971391545418279086593034253576213606862752814850399612690423331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19842126601013388343421205624072463461247602587769028503961685389548603520581806026000288793518146181699348138700196744254433269015359712641199369384538117098044529681530682283460961110028224621577144799883730656007616120936493447448209214557602107396777285839827079138489472214398142749518358565279145523029123262906356432908431861644503453735230403217771739772460640109291883561653016596496713530693217298940687899822828457650153585123854459374373644492370110556421404556954050672830607614215877759004956827130164354195360243902221846651377532733128471631213909936949921985079660712897345826989594233214235990447291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271735571785128981822709692872435102865739917462604823326201198137519403184781479150455921245687499168206308972585711394577512204146366193339210700528215351716729263822241400866436731723549577766046712882536272311958189747781261334578599411059279541974646037105744350316447479075755403463139101589981211211734963563084294010394694392277671943481062101620754621238567691854141772845622367389785415915043772103110617870711715691889300027057420527134418015842589556368830870588295464615230724697316316425748980853780202140600500471971342150300760667700579070401913856975126184249066119299663547529451413912930944028899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16262786476206229051475447412481325997605554767588200492817908816003175467125005150270261894652510991089013988322693615752494721374455253220847443567912226030316485087689279437695560770882957789896151525280960373649706963392829529534362593795504331392265879860115184630979644678450604678556763146449658999387372712181329805276063282720047449608826235899595800869270804644348646399569001734203182771338431454913429407718487326483499034753728147429208466969188186177103502937264388105333585072778107809276518884136290184208694691872963736866133310672982214391792475143305818186150801799035821785620469741566453870639719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357425230826179479945268296294133519314398996739256327598979533907079660149220291761703965636718172504792047580088700866574990461348078088691502091651299482307896920411837843693954946641701930761747815237680133684581371476877986899237577931105818493198736570463676107572860533819973935858590928843414768922938728820951952613930885786773996925753540935398264887336039592133630355104115732128305795974055120148131461387212765885755871334590755839731545515691977205224393792260716857864239534596304505524282188223765719876915583035234532481027695332191618363204380175645804209121304583246001750146260539133215071259243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17637843850119853408057861910807363612061403304315298938292056132890898055413681080245697293521220379019720997225859139457962248057492474357959994261190907627388067378155747455255109883899623583383843584930269101602166464943316452538037101315172729976506543370962036906675990545633815632204116367133531407438388410211186900650855432188555819098814302774406860592487891689745533194277898278964252884613757230799982631688385491129985000400830499519783482290281357025290768878705116533630190247431646198355782136827220006459818838379373111978557976277051892210869786770253378706612173984289189538170874976402683704519233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304264481369233767443282881330844327723232032918321222246173631142402170106192000649996753703124908492188628006295260766791524129715953596591077840486332358118681354716556909779373362889919869656927517053825057309056867792695405045546888552074466452388894178462146379304973493821180928911203390159455493893939274219397836680541135448920021409258924452041999349447862634410165557051695513476865709881975854030175273684962251970000136265801733160506244676204860753382790806549571816755390084205679796659503876805670946745951915273619423343561307701578819886937757599478304825173740158138782277575542384625683107579987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20274163071359490236155182974926502310885206941663381976792411605829976915212352299403242722945461691504272149319466408128037640934097572796172574635850395912565125924722798170833524331615445647334852590477084437363470059890080455278616405753717614943677586640633919079736541125695385540085860855473239551940487745929599827447123092093318151924478230815945498372054993685436919525076984456797941316141894353077127881540411592519113371235656573735834021939787460218779953081984823158354140954674364517951687726930232592072917860898647619357342128004726099322659625027345529269641733365070561884050572428095795603078759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19086243885928265216244842401395721071582522409528565360914598088854599259552073967605071447819538162828853587084366187403698992448726122228763285180161154095434973210040598046476678927145539127879841485391829528458473613949518533632339342833461128332405378019071904110041641765584929147394044434563536247802480555409029112813629719461764954031878572190067803270499661230999924041451332513252747652584225895705026355607528599057170724415412220329779359188235711285167398593083675182503200811250587573658001676084242357469275186373691773006426234493988095245751261924351405097352486891167430395816427619119830865668111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22774997960634182098199366285473864924143066611598369477864359859298391120072366041081535997345232123863369958293038138355267069090506269096756190409279786266213489105881923853969140342698028927862628706907844247267166170835221516551396033590873539369170271115544136082021095795207835589187647837057220813395380708496765725625509480866223904408311900856268679105373199396289260781833076878415496705198187153321486602600392923965206798708479393994946242944660459220731915327741411082867164794102376892641888280929814549288856978382434291149059190534831859396219445708367188568745413954043162700406480714007156995815887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16223094271839067506457277257370499235402486774396675739315174866915218805104053185663702247736812349472192817708683696656296096455616905651529740023364640953018210628922310646883744549451542909524399970588551848751503652893218418023051411836470088468678779557017903330226124995759541738321035204919287756206837994676808005514267294104734152256646852882836810543389344863962120874743038835888317958415146872637021072673184463797441792289492244594438285384354431061273835047408405960557603261117905768958434106768462580375364168816248678791426276940456489867450775756336156770616182569923451704264936845707972930570647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17795494169258858318880572006126724839788260038088607888756424995609610517148277377701696189551503213929825106848693748251684614887927135102227687435432141909776009853547015528626607966751417625259220361129561986261133748080942941604117316358036223929161996988422742995820775616054921835995575188798063812371701741901391166760952439578386279171192469773898765171591642470036155775959173015895376425568085835047902957731739993032742830075542596797972646993835154075083158545826560820597131117967493940928247297294620282954786301154470322469282097375452218668093274083833323005289900740446163180183016789552865510615193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257137874899264145024653262840473645834462128875393876490493363570746501689516944878665113501077588392840894930406246851846684389696425894974882785217293784536819778279957918756595353446622145701450421466475678610473213802275819278852056058863712133826843278605444087677118836655009801806095830063860984955044490234180291048312758652644221022083574234020702023147283210431266114368865277952677450868620115627640927322367977076072223011514340477164954331263146270465329798942412413899005226526808332855699290454436154404956853239010494466755540679986417447699137344499780768316255909639918649779238548640802598525513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23783398022991687258533815696742111654745555850006060979747206509081310359825867231663510770939613376576802151654070684131899064665036831457224768681193108249985803143890919392827230422703618382790809844109229813301379245432788143319869780184244304701703174481914354932599860602804061595833596095402210786882122439404757574781228092321643543460577661971106629722414778669432761634732201034643421025178820433334901373428650631293631296457921632881713681377850933379555026384639080949784709819290379981684207844141948574461622419401249592750737110405086303662095437741723646391094957256247504884998158955033835516843431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27146582770797298212588064661055195722260818003029134709264819371685029133290363714520932970471689252299902070369494255076601201189252029903936162845389870117307237474391705083868396261803600143027741690932521966124495890521515487945965161204875651992928128670264073614788117826453675530510584567120379127974557955493073873740138146278888662463579633466413801139009755288712625846961800286091648767866151853860796665692673360812200381258345916430913790844744776388971793118495585967893866764710704915582724422469117198810652491199882513443973170019433563831890301691291415565788520670772630648873173504968829650685113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332732598458501199474766926486234418425634705491576122437039970151005429962162219245050356570246256184785771982359342666705690535379017676835219758510868371711631974112665571221101569224040909408712326259747281104110485823780490803525109406705366549240311235233387827006212164303052264309762783159861154813476529256886877419143814860997799243390906931343393199990001055378808743475145565073041334910713548796707414871230034791885219283815218060651645085116325553133853420618786115334042053850698899203453518178037553505824431723522210369290530162313177873188488813854384731827856927323168196711370948591382879794369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21280215729368918411028997158841933858104866332478611968751161912481560360448153665085814122095358695286701223930788828804245787025544025969256717037757961640566446820702803234436342279505668820085497430523363707413415915449310440676287936413818918390061724030849946329233897103644904893831396470880036799424116281593513532813250940234901686978553937239649450182973282747674096953930689053322721664670807883727540336768353616096776192803813680529974613060393898450168345193105559066455791481603462522774286898634720168087314436999705942676365250769223006798958148926189915985363255170911827877445306631179737456469491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319381182241501363547623440236308597014517773302469053565416971422568913775112943443942635216513207862758675758290778937027116540228219258210343539748799427417430422149960719724550893119372647267983150940026772769428616353116143929859317523315589532034508952430160273781010574939375058001207932543517414919548661965753001209910830513468983671229422282896278631721750173648694973590480112607453502711603331946252367690161530496339423421210768247277573773562087184125730602466001711781711267256621291061335914717695228024867675287802545393575012403849748685883113268012528631312069118522174174330545362304435364492231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26748696785455387038111217843920189232530525972262680079358755180069705479795175416614380041297021266844941619369700619645538756139886922060682043691649128750372262430311301529619222007762900546078602207573507852505846786661721829694716697772606084721889058085525154928692436230271242948173379231533896160253047500675536424536280830649233628569114352342208768640270972182706546168268169036552042131752994716888001388974631998175315831850759335716076447335314563888324347323003313911727850364275947350912832505901171178407816759180948366214382788348262512842430267688053734585018655458749898266847620064180494771077781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235906862481276095917891643703649268979862526317426016222049597165813647757158721603547368097285168600066705591108427313581602417472542219926740556327986043924068280683794730760752498311811802402959881875765807820406328700929718183171159630001016394068008922164649434489006984008230656670053195875474961217558184877374612715030083582213162805117779215536020227332190599317495655304587065943653946522083552373012678575970128388629506314701573096939028544878234624867718035618578098282470879900844306424788842519984942719651416451399056833508186495808314760061095318616337175997205899213371373584209749641442611764463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26202853043716812245887464685688193817763054545967938868885436862966396639559134080642167467162664293896027684257449745162675497938582599224543040657453618295339338735222555499002412608477753295274152503114437683779220202253850266371311218384613668875959821116017724765933057914560985533592576365880145541919288807369346041355842739787841315956743929606674357247249730472377046568940239912348338152962313674013671743794652673863892594248018923661994802156720172711777174695327869322473852213331716552386490800851816401390808661692352384993780515097342721400823211520383235156136699444255398636064060866827858464098687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16223252903961467376522066093820371038562164576871593551530384407488626534400529247740591251086734800145240567683920319349460528244402046809508298986221523919856890610834450287488102375783344122512846762877747125810414895113229700354235746699799965437214346504348382703817175022326281328464187440441054729584659699531624976610591521233341286157414732849923871025971418837846027431168266074490910635752168252912066058017499460635999826065072379330158449714659901001837297994614218022267790475587743838436990098618903352529867949484495028853458492294147171214808975037646674522429125450834479653346433789649415704410887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25570896672490126382940158514985223807202894344356750537503832633069775856641671650055232721405525560379782595542306812773571254202475108904297539480850562958427510558761708813754797286094877407791105463021087736620245821954994811387893773585033395452273919320467664130337763571110203366325094696505440515066566644970650124552506459572518589176299496548867840863357553282451606809906218725194730328186325365399924111012975442862353551871481349421908575335119419953473121892002913763055914303952175197174015878926383641370549090560998943987678374751923657705061372881082368994755720068802340432850069570825662356619367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315046885530962025416016740073876908358175034689562157274147536090182050964565400200773441060082508718401903657066153413437779920866983874363914765365493427015842139156579577614918083883668365915438705837705582026179794265924641331938389983181790367811464027813389935870572930153925645286081956910308651270380155809448120114577719435248003960468707795056657022271694072289814604107057716489702802438128378319614629079456533261394697844940962879626627963776633090462887576844985368940505450989432733679085351019223232755121706967419451952755924050843820350394780365046046168243455303450092778814021542776957558818179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283704298194220163754327652919730300432018221168547061386090232400001477405959102402314037968221960050084304471775611908360798683027869286690651167449463202413585597429084099528649408086186406348881618056766770915803060694519367571468056476841392367892925818182169724092169254032578634949520841623524119677108743580027134273067689041945404131738170822690845522338346823338158850214379180741093065860507239374913711413547071332759115524976909260554106366971660206846602751077416128775637917672571169019357277950022061248940720914296679755533078856749502281571450894180236023417445098534073372684862868055220305226399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23096261184998460638894409650419587551674514244634630387173780985709460924990661655650871251799574484710206867150796988076412149568482899256152617536829387069362465534730629922617621661965958994918135674262199004860056884528823407468869921959896215566725405189727937377080027894105223484354210131853732948341350884451632196173792481209514238617702396587457348596452369277282805313783489491453866393412947873094795451869070128204388931251863077111437291577680261049437762446929875401662025734203505768290922534710667668805269563831690533059665813382229108644602899073581446678819558833582404140423243183120250162681993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25835622585567767040395682464862368244025936909213256363201521273909989903018088309512203226679280547181537362106522393892099905129966453163511955362535944241101704158319799083862165397828491770780209618498185014582126718563851467189806515746392445586588634882561421033895922786388759631250719402618427730374964432840193361447203408740478755210649940477936803806622072126888380981988940535778018096445612352205381150944774919958471031170272725835664993496701870182409276263254686399347060963862588494488938980262523711338376864225209323775137775922168591152740555684633356111793252966652930623323661598509173517026667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378712117215771442454117592676917616228407494844863427993426998581659840843348308209130724398751266792223772595223945621452888521012545354064935190499509082721325205208809720293864402644729847501003143531277055399318203188749170475105942750526712026777097176913315794833021563508442440660787508510546357205099873139572054267615561498521048399559581371972399365106653802249585311923558266530209499349068483894259904325955926876881045881289885107956660058438254383840747187751375045089943069149205540625314626453227916480489202394768235128975685004299230255244195054410203744088799032705148280840047368246663466783623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16685793987620515002847107241562283591256779278723762557210937350797608708019625094104155380444871795410596282194313532486491211389938322058439654931865442245797906990655502912256411205777450134535004457397541314414096238311483593960472991094192662150695714127863883294956172899531846503020106670507944383002808758659524386395414304975121240043196848821196343684017543332261929556209789435021922792847308479785053912943288214952653958197944601385573785838091592361474534071851634260996330650032324991054913303022193815972234103538738391315601787105349806956975888064301717201426362307925147481969556772721613010757537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246833902876714946381958029967720590286133207991494875540766521952901488653855648971327113451477007552495166473346524312238861635205299995692428415310768455761125230120980341738042572713323214919706231814101624891211201391076344498555432976237882565303393383976480969901232823384242939135253334369062696946253120130045159238237111081450160350154547051193972883386039381569207650298994166050090634799324713613870650959851574821464465996690377878116492203329319322623791291005532481078477748750747774686788026309457646282991087139330522900077472851352148430520732661424759243684829340333264340423864914184512942993839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343664190755769561751494468044720435200249289538895625419853720282321268325517055093185374222685064385100508319827802842898345183484710172707510352216658078396869979012256908060611041814312874595125937238765526140790795673989075273756509574587040029885414146547830939895957959799672198867445270575087024336812757392759071539351744608416709477464001788384954004227970706819861361093029099785816618279396498481039256228957616119058909952668756054837857023192483691616340817022543746659223320395100495869594622504436870132173088432232741365148781537191231384589643163463013490931984409841789011393011349053609192534539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273358413725576351055207133254027646355312729904750467509570966012471855620308277005466472516287291031548847945353504046662726627881715281728502027503130745966846077365770470715043712572234414202004220175485533024397590884440136693246420333929170542016569522818153028376485648533901409675295204092167740453504908031492323743773977912220140883344193441155680894572584778064825035875492431470998953105524496169265962888644835512375555133252604710854368011094672559404414128332631447709990669905900409491620182986065125204189265288826167111587372506710881224522385276351674798404784396531831109562708479945224614352499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24511782739539527374869375983391125766280140425098066106390452660379528935369281952377511759813698219746997403884654715449202541372031047459690518408116510477337513442160582245716959383969708851189779073054482607472193042344848651128180360725853171484398428748612661394521516036084601219970890421436519803926626796269013960152114690994260488014886420287613504968046862627259710687432201645294742499197440324123139842921611798287629304431795136970713395259230997920284234600471520268577662684222308325032626742073310948745380113402730006453098628722831225250458116585749339251395655485431077177468178074814872235116161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17178493193446096834681676429841069350253318254443437414748432459065502224526454554164847726083080487168763313280215837357838201472775155944819022444311656887097149184938974921144673575441679346167585954077804964826454852900175848804419016123935086467629963438866675028226429457642913891785124701857012945356058867796619372663288060155108923447304978862539598444698977305956060044435902831963692231624639946032291932330337586041748214166479497389943001093089981061988518490108347244346405958036529886512020730299161747769559995776897502046450650429251815180586270501656781827796403065626672633954186923746307938192587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16348368848476501836589994425532168969086437803110924484265087738448533957334089313746966418578871415854499319935190182190755609929746189162018241514754773867980554722826191177161189209816659315950004409346415218700540497893288478382873595702327546326304623022943877559987146329651853054072850190308660506934911912618231020080079952800263219814183925238714605384040186262154731439098091461021933502639265168843039099523704779969913534325521177522366034085541105311456418207840650247697832956380403399624481858274657438717353586471163603256521733479593542375326259968566701828871028806954255339933343569269532149365573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21357092419791640187510669798662287718406610077902482950265152247563833180623829272630538670625736841464496990002249613310237906787856813857510834235499307874979109643532151715928192201552941646802120385690365431694732297400982916873751732068079453278756674326477680432091177808075199739262095550239291501838240610602507087713924347608884097743958390975721408938933515176254328310209263565635760226770499984040144177128559164764284334082424679624300229495338108769428733084196019631092619255476444533812307188634375400559270150381728018249413648288439732302612675027210830038814930437058659772484082855178741306324837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23936900979389045564858807331468997496213974519032666903995897974004603953159881202180275098475186662512710902393656463864113221401188450765820021356354389969122745857018453915887264017335103770881364855578379668667193099053822993648645410434982499997942775917555222199292430565214947900896403457798545236301926048072409276591452054869289990010484362842948110311024963808608382425497055035202357859502928401129257369141998790875899874749389322068987224915439566805579485207655083894505076992878396324116473710938924037805153886796383913085930902713579941477566737678061685360284801096177158461702088216836389463391809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330644946264691146047569165012125435700013354675398486687698109879203461446761319151471582599395445073290721638592849361968088276666373398068982993840747471154734192183341723977481058497923139712719991382341577927207852953257354817718691069119735533367647977754963218301448886690650710363882588093868303291294982746023127492809314076812724702526130708516784732493010773767675775429574806684285572493101769357034454864726106943367468174727364907028339649476994291496149133645273792789021611043932656562892748167833628025977182703774894885110468069509168901652261334341411910368339231623150212525354731201782825234529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16588345575862783070248889585665168673994809419457013229841091766763469368875673670736201723623251806374046201295061495279839321611549859235282138647377165521858777086725197332902675929515201055651522574301012623049355925321069294424497389271497964033007739100424575215282409893182969545005074833807845335754980750658950393448241811528716454051898098963314272187849467973635183139298074745611920544149811187094479130400103901668729891129383151009968099269034741429287553504013009227986789317476396917378229819808994869871798316045641570071132775046532409353320693471147332832612988252034602516894652571093664608757513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16219695108508216146780578046059647424090371496185425866773126424040092812532367086183787962627511467831409247351468304663553982328447380065232689035420451372815445853578634323855439496502730471985618169663351412852205585609900521733545585948700322672611258725619674504022203451610035526776293751337107275803732738882887867992448932294256735871292941201077965149809973396569433285649186706869056574641915594244004880823824582071848243307650624012701839063778322372562175253914895544038800497873551841080861422796408179118390073611783412541050134371273252948748714651407112894258601713227537742615680159222488676711073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24813321520738105291420033384997941136397492161971915076772931624219719150907792193987920305611538089111983783049785324034597860803160365916069452944980829924179684039292201592280194045497410503502718990530973557283059056921706955875922001493147779672967895200730267675568177610564666129561998716642371434668851691040715394673431154465007450739807142782056157339286899421437872537982904861186685128452792588687333307544009046031924735417044207365745678123050851660603027093320445707577504146593966446051387841815977907541267506173900355572161767765346613088523657029569757365758995826842479644595253811647859825853369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358436965755004556024007043983802224006493644112533527915967406722738174453954862981022225101761536423218096577177152478629191387220206027179791904387961104266396198028710488337517180791029852960468774627454986660948775882121606478215881110638106236068056676015892617915710953910040602452439502326381117828886401717341301179175345159790977577589178509312032490341535696390902565909741082434054403092433344833981027287740342975736335019341359530730365986494900813944163724814631307674738216537366013972090339215522352007576478466586630717130283570216358994847573335606028957755920201352347700100319987611841007541511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357498841135175923990535567163899355042385216204571205931141888774706009615582925714756862748473528617948116716119091978192197049871828315503465176027384233676548179520938468261393641838496093796835899256327742296058349150952653101392386172771057504679934307506516729072108716992958592350192176229786038563158740465815406979962982670626568605768453561620791422273210400445789661827838638113826760006247334880372568439099897251978347758407294003340557764007848701906070064413095764822891264835873871453626865045356356805607473014225654960071632872854565284398461433413789626483675412965370597395759342566538535800361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16241405523013214986394927808543730120480591079690455912835207377180260977955409157689862489121034330997266555061909380844135585053057691876942443299831501849679283899239528178644915076425937105626553074354338208644268944464865711918305169665904460013049261880458980030890695490334362707388925851921616583212763379223369041648317508328044721171076783221958429254636077052479455501368198853595547938252787930974052340185753414662308718087182075070633259295048268025695262698674294491088847025781360175965766289124659206139219969120110080654444275203508711297964439672204906778191681892462482230471402054697511551063553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287177072298812264321310367071643401984200851446829732898894450600668342367587623747998804167494049159135482679380075352866758255674750876962181773309651444003043063371379151650371675566661425900004247408492503713171395063774211586935302381848849837967223049282944039882115675950069048749210694811490558925184462260176204091727207982119635871519364226679299120788458802572712229217503456034254573936043555614480595666373854082273281623889287544951345594391958673758255578226019624042181614938178234940067654995211246610143853202231676076267090028202179848542291688723454385748181361726205773189926805403554081308729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16354678247432022846696909722371755403204822842924225038533193471982732078979968813014537131361109491266313621831610482896471330370327444625463840303391401924916881141016931819826819739549069276318980982972640110623470531427269861702263034126644276980209589905270653607463390723459456043471020266175638304146701992455400862237218252378877536615589310729312395832924365310361677765332576387438197755240395410031518535076320541827312152589247410800311143011047065931741305742912916697919261712882296054844877107677739986586277287692155580778651446430112789954883005989309298525956664367023417961404152696467637274807081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16802747420301186679269645831448621132191789278365490404474264951625768294328791497077089343448115023715469987714577414066371892104383164540075386544228437103927655626842283618078635022619392782810210937197815081373592065227800813223681155640900691449309688385269004841498522831234104806204568485299706849623183241220720966485426549981172630948882104425011059292646027587239358054648266799425015111897925060888722648553615329013778487916180669477218780680341295000377725448563924701363697025106353386556930298987246364045566063908263592385573727857927282761134642553277567626880594207832493267786389774689781955935553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20872809882195743982831622175992438127554566346901377521204633183272175302556075457404534713359860202267744338727058420688961336409886562750404438188240721590941242322146245268446795113543472148922200782095197690269349702989243742945412870317568104342778226533231463812119791868014786917644314746914921989690038963291423669946035580133381396114868436540953374766183405985761410100930451393260223137805652118984869879919612146317534984341914462472492723698376414370452286182802887640072402383390118906933346977272713994639684035469343173018646735691715900188636039861755280249285463251704340813372331702540019908382663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260335434221080041566266498000831786275894881533711539954970185707357206499799832971904162301369354749915372227775363687393845264929198607131276042067860272752402224829975347015569176117057488646867123764255809521353988922251465276804330167254074687704711696784571695867846532985761173626127208479107232000882563818374817400884606773209968762269992331962659547224142644348363468647205576422893499697135216362714784700113203286438088456764140596574431657045794790618082059432533134006943799734122140409205294537732071981419329321076033585116805783903405695573460485796711677142473124763854092406224329959136404954871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23906253606217427134809669114650658553026211377062056920406592262750146276712910836685250290498359122913633052648634869452354509263812912097334308174820355568097885236405697939062661328587904522233371210876628292284363446526385039354087960017108771526348094817324237339854663591938630255994942728066452116686914356608540931090607970441367358135302424982703882659659992754593128227487191778541768979222650232115019908840966166009746149205386745034043892396386406943511730497597703609155933332794361009392939877233566871201505441019957924442081779659193022674892022316524549015099277763757182369182366656966356523504921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28680667718352614624463708045654547941414462559151965707266274528790645902028823114538098501274284341608380325118467220588236804642730434833265877119284724454311945781819962532227167721983869049930698767055876477054403940497200772801894908237423832290728845001507085626992065803225440140346224402607226199349891750909457589197562221984566208237287978138478450855238987880179368104609147751266236485810291205595226056052872209853814171035637575777675610530213331593087464460701942114155805010103780577340544501132755748357423992612018158515439006401070030055540120525293034287106437412370799087332665152172806100149463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26382306419523461890904947213724442893796841995436940476053846318725776569138301730932325978159059224926499971108396006630478181948368207814175324738401591374202948067115582796493196737873053543476243677072676087199645099141249246501358506920383481512755242098962875378735610658631568349641906747324237460241528741773924184423160205972005149996653924883784297629865764403042149945658084540981102423657563342725641207484217117922551546280778181762542664505647931807751891855539484002838313781881817659519901900521527166755507427411742181880549708952014148796755705540606145377396708205015718068995036428829105806586229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20172547221720506479694067859073677697523096475554178090149319092907101642379711678656011554860525947597617479560160971686019362685708532807399984261899198264402563237189468481715709565555548818531226532267944697704761203766476961722337392201603504369694169730119278146942726342585660557990854883919316252717344056568045856454989841252006076002705540318556134487959076797031390548656924182014506241319697292695121389473747035741980367116077584377003214159924195162779041508521402203645143512485908773576873958532742725470609020008467088167858736047300451073539027851551361908894578387827370308693026629168109206610053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16441675272597160885934482183195556869473127033390127408397992968913512690638145338834656436148592708290249686086491678047552147610220723325864357217737701910420634633446132503752229689328940948183308240491307137805061824079662419331114671416719083878728403270843907047417997643619158484601991911243306324191525177149373936349245232126236834344478778962665404919854044101191767148022479568938731774130760387385231802188609318341215721316931409168076060001849597528669561665251691043660853906679821481788183380262321092819487571886852596639022877357989598470475741054541108219848760418900176267219876630698540920433149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24415347644210774233550459351533701393214480650184751756450490998671034291708312200000902679751124735682674984063635012639400386354959119457880796667812336119364024209615691603802498194695611128433435696717342835035159702788635544606319041270307805458369665118697897813384000460804763502573147096683481938101673308139883490784066197326453523229030891774642733770074669351593491062960119601897936430742976300008860676842675297704859252213136981114198570713805282857445297679416716618653084503101897880577358846900197135686051885044237334958339013666840925101448999339045720273246624797267082119780648737042418220774611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16906989310728463290672897185021123153599451202895579241371693806692389063323093355999070860169763868634067310930755797797423064791963243366839943042829527287549747103666739575795064519487073011674721715156863536126152049225078113687850484936324835468157860320275052573157631641632690755483751852131124190680849659495070278715474059979197169723959373187100679197148971874292131713154117455807022121982845641227280512463178649187647067223258261766924967189570213253372227521330347887936332745421818845244012058960501398511810570192706784939182493042904743972333212784439942650553399520454422869171932674145191809867231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18081050323392174482416234280692549372673804018994805797120063401603813931332519355238906395347134008561461900971290532033530603610307484674976221491892599573595558471250327635741047401009537503683641833675538896134283669650273970615126901484465058584247570536954169014879207274864495929333151519322363589483712715169946133167795878491432549620999783509557775667793520916454815488013154443202142629447169586550134453737042703298770197241392126244986708444533455128208094208161114882211481837608290430346684577951398739116641605550101151320989767813789099942567973030256703543639812741657786457855058161279687513964197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18744959520333458575250668270341594917559331105823553881699489692681298169399580996691763385034641838046287140616138445160090958267545390632164255485800745011102210747380573709528394430464291116973892724910736589057897182210314736855022973455102686061822120948487085598629678220176896850255006591137574809749950915339836099358631488456556852240532701164711755425255581560966174859990905840033561269945833477143082221151741003068189987267967817516077884601678292924404783831777233094582441272198128195358777944701154063969055500871791361560185425958573090775582436229458709950691986166362330684024921792180461578769377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281517438068302137258002904938736615937226723028714852918434282057276866289015941932675640801620802513725212724533018861569142040352744222472669018092862316145596982777240204514401521042622152858212248013978575765842648610558478986242616705283720940789340367669272025970476294848563692216489387168392402106201148381353319916175212657858633835038776666469231965057179975162190536015064988993673441533667341206928938092115724937522062205200316052390111108375628407491483514370074495414960284378828005645665676876073158956637888116652253067801041800611171727351112936326854457383690414364374496967687814781678036893771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302835875698599304844513571476556591093433961418569017182843650862154733927167104049692026045583488117105764460167720186063923932680190058250569689779527303871089475322513065487043434497724454633995660601568696887755050333791230678193337159111199670924318502531674295756993221774736989936352176516351684670922714822030412789789063169041429688650325097539051202420941382190954721924308079776151992734707045522789213282858308387631757210711389909827949984163181517978256025274607260695763420249523639899350841233729211583631989557092901942874281553415303345228818613100983248880683363715904582702167413018554324852299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24843938466293167793815651919904049647509649131266459519455321950582497292958622240414329707054547626679298477518011597199093349151655921302631762682366002431303175956726590380049110642139713617192240241781256393397475079905823678054179087015089666935657802700548011600168139247654873022212459158401104236466889992901794226463077474042822163881428443705212442345721701316034605751525184074921942671661550779425183396312734872218703207536862836269471286659846287324032022229890079746238752629068748579587582996788245907864357603878583430575515221661773421435026698307093763938940254695975034264891302026889022603929237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26114712599690705242275069885332026475276683140011889891994597891434628640386514691367791049956364082960084294902686273478330147027427704052302267171183492597369996507929969492912475301554052067074664361132777588599058616354678444211760422156919267048130267257070273571061640304991948124229151243367974129550810583479717966150569872788511437145312113946995139718176479766213004155745859720027254683560718689357499518896032164161279225301101337799340145825541660489227066041009641846670024793168888246230860943548099485229948566028611874538875793154783734108323971483171149020442721733486672309272244510467719107569179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19671460058483799239986155844645382651442192428893015818764004072194853219565731402179491382054482180837009495648847954914092950470944256394199498780970765799956909840009372643510191438006714090778607641116595401800567762928176954107947071484360773234306110834012689564251411490639640924029134190411432545067241987869428093324634213040695155780400378574248413810912963936258328208111974414936143116820073310637233633801759676324142473982430574848868300985195881653623679931390865751243867506519172348382681764553101681301002270386175944548810699765548589131202351804364221784162457492564997963189655312724328402890933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27609975483537172650965923311147761861443093130778875256327104952453365883960057039394609292671285248445843308358355005983224433229298639216649634945977849175284175367583848497699270991891392336762975655457456437264366660037331942516637824917367797891346892135385882540969585655828096424825677100587950654669576875182113485460891752204667071751898571389059404959733609217761058019232257173303588995486561628755099588905735174803076010264206747035612393079574690223224383372730998750352742457203564575372973148609417103349176577007235603613254412127464379285408453173300374129540967260277342582382498432862464662044497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30129585185003481273512343707258135265525627709533992170471996691059243204737584868751746089182546697439116129153280868086379881769088317629459668167241236957085467398294645027899317986188840450331357197091860772878134844215758344146195732168189014961467093077235411026269587367452568220720936660931474613560464870798466005180487016542206313532943628032119920647903752530631315621524543380864996492534578275661317612819122498295783313006245733361235719794097529398417902117781297049056591741337353454399261212951460260353957027064353926599456317016087191730133305990555220916458671935577092167262201164998901648207269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22510821329121211172905635375668425937655851116974681915684904165076885999332748803529867986970140873069946349572384621052552187285408910787957182718425628272886334440351577492003405452793692478913313763847368478092241779473658583219858259970302735346286105967664033815248284716596406336027593917948932654539870743108164526610557126039884895165772138214307187562714198643687151342237131297365355985072994453515342455105461658735228158573373464174498738996324853237087212020811607544828736827911202995327491517167523009232380002487405274545767991939665573586479118393912868381568981537601018301075926067808737539164691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20085750489875503215389048730958858367820878320540141920520278061904202915414952198197516560538707365848645124557786690076236561637437386957987410400241228989541063315649166398581434037054789539831438881246060988278681559136655194859491462339454979243497205779946233891262776625301041209296464461416730078770352788270839344236593484674875298620899965359651779261366414813199322127266487964018167876088130965255851745343405658661487946334646000369436453214770529526099343896410467656343417650571369489985858283535835022084063141971769708118775413102216075650095200472935784675576085862517271853885616028367541077233411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24954200231624936735389775146623728300336190524701264515245979556939024540397339216899536657488039286875690308387062149931137691483674893304681268853596645158182620423178133751544720244184269048520210880316111014932045044157303375387041037603814362187378523475801302632099606671977571353989344370801015465539324403717472611506777343500448620517323108685796543694986829501121948834795012034070296962281601413901337062538416205621602988393240275216101143321642721226675239816375230860883808461849669633339633634789049516905830683925146295495558630237161668796399316948461004618233283439274329639630923860170684119089621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23457096779244614058599133635087174157200195183380565756868416545168151659750020857807320855723616773895118131453460810834993774389200103210841985104946777002861342873917821133590799510075040744850758029315107585102485878261345556409632117637574435387512318996921610537375636938071244054800979345964604051122048396873635162174232891255445606214276244035214478716423726348119588387093228843903348624778926769968802018541545840469808626373670573059827749855737828899539772368134431813355460759163122696558431266827502962355858494432738868298657344331784647026452664925412001241944563550929149311447794982379364567849051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21995942935489916684195521088754717250540442739207845580774840952746228142127537432137899553549855684685796232039253317099984652218448737826757666973777911753113429355128471386470948088758878765617856100975704172962274608147146233134163719305398054325569133733711724240036736578755273660817689725204486438445178679804599124007834504002901005141906362416614878759429924457658101371086348999107599355203422531089760970335944176004895517225375054314386133992055432234286642783004264094261776224644066273818387144812323653016343020155577060203364417204924698356399607108616982285564648654160580385937268537334749512366987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28836178366966014142856270399280753713053620027242943879466549046442209657876889427895931065286092849806381603919298370022665794818140067623976535817362217168179249111059942885134386822750009516174252930589707769308876466424689811707465806239121869363429819092582226964606436306712216946855457530348458343699437065043835755706109730837746224357211814441354850578688519021784261405733327322892957827344647566564631347988440721034747930451542754802942624087040322923922207651883015474645834631957818027803860560011952128947855055899600884342750210016542791059814161279848407540982765213043591439399449170949491761711371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23800154401589861468206148675685726558202701258374366851223962264367796356381669675208864257326294305927352732016898310255231372804707724473132362645239062452968702309839422816518229524273149631359503460150076941967834978258122267892299564607530830523488796434893816524435994912906186274861896575522219529648505311095851175817485363976122016936355737392112543068434599780401597447276197324716325843360610122609155533251371267492656376573600492528665992610025701003049547665768705133456643238968673250717318303076044163945010156071681182800763463017809143338053094443188578080220188580655006909369594398667514037520491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26559428613036663030701116736622545886740486740901498841242977276246156771187735754210976677865557640687825141439983513948870952466863921622776134871268503932327320749788974415504247099402086016396921013169347883757930704609637268387296183743745345200734357265655306605463021202651162991428942037992868866650902581274103979388155934666246756229906351162909065621808722250496285572462781931279522856966561737096596889896756968095010830325499276045220127750871940200273318384335541174221227990334804366820520370133009301848495611223931112830221518234700885009628635986228838843989993257000320387696164076011219683235333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22957027030964877258179300705358744281755573925813213512544862246636573815572617430909145043229821819508765962208367072771471593868487775113781632797681280938049679589035802668440147189984810563204692560060150521228146347510569536524760125760108373026366541940085539770029119746765877714070822093782846568668587141007017924100632959706109544688006552709551136771771251969673614681059039265015590481512684827891135602341351686566608401108630482803541400090748675472346956857804668559028261323157535211303833529415455524828329463290897048765189931602354146376363940272799120086586295256303436505398187629363143134263833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19924728242369306891047775310026567608795463631850765908975654716034789154181042769677658716581584643225366580801250004002326776461407095367753114469635768332034165831833672948611437334848606644238048594246202585017601240929156830317747868351153970416185903767261370081583834824073104580907774384760319095215587878878281514185520146883167163837376639731514984179773241110707021647765975400699597684598984555258225976907324098033310850740009293592083759934442594264418032400896755508897170421969525454263179085211688464210990413231206382545459046285491442013965435165465347672971424111108353804176946808912334275387971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26149141184011120724443556707429096595257494286788985960735917539859790524823035151277780278295872074065751612896211056357918514924474464571148353962058858225953594754499412128958630912841986052318409519823111254696486998020556319456400269852239138851432821946852397206451078726642862715203723503724161225278665695092289073827342855762062551942965899297049716699009614622977207370842962303683545557818833647989590714685581606594092018700338268248547453461468536541119003349649218653684465605618989223312787070396883444489518604727021202705173927725587482702332202324119614083812515855104110510060776902090223091756409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30198587363489041143310301860420716203230635597231172096016231395881046425858535671259730884562996918679459716879151251949003583020178738741180638218049241926925971869022631888209696727532810035609830346336808196392416991428851798383772788789286083365986380319635408479739647572680988651236768548152993301733143918718210233041620565561616240894554155591169562563499809207481202784850332049114919932374798348892555615540524306905794160534648252548008549280614433944151790477361590874364475228884691726751685019030003774136124952235259765207305751062477500385277606860150150760902098579170033315320900753255396329705249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23355687013733410883952353804993218083471981486012128002290694042468539582337190001252671183339707228641864929606277263856350731307123909212534367414338175675452727412608134957171538134191383380717786133467074682688699806501486988323733087328952607203735648314403111411440181148219708370819460269463941968752043183878944942553938781162235264049677189328128231530925090113918055513351610867673103180360414421174979011231002884682180584264053953502851661436873985851736546312532244116792886107368410877415233264453737775933078403185704373016596459867746668023146270487665409422114768424653888323842254320692352485810129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25988298252634184245033865701793973944236328807544487916111448623993886867152176481100862963159066092731513831810238164899984075016090354915825299569743800367492814978868437542134188594979034130451793485047601072218132352040470373926847104698119041694544451175954771237135354194126264036349761150665231143181661266145147863249029538627572847965020546711984938765230328310901896456631724289688163882573306651535976974635084074688934139184189844560026252433475893328534448910458139249096552558765126827515533450426393952474808938402775655192831503905651496066352413023029834594830589248548310268279201755108035388984941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26480944765289504841782999751324147443254758930847148330879760194517754069210622985096033576911850716093853838826188518821303165305334923812921518077397215371496798132162507098845725149233871663293399916675846596957594201000283416895582599622121772994212102481276776345592495262625990531954028620604529165513529571998496484311930688632462649603667367313462176799857018175990254943403805133429463810466713810651581077879550585409128866442039313896915406985755259361265327819168570655308351872352635786445525118195934326962398641294162114217679466102149457926486279154315642525225910251677732368194152356248877715338981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "20837522187727654038135823547507512", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22000522241069382909860937436706018", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22966414234069037207024709754328702677751163082945747458154624336657681576375375469326261284765589343816697732610353509810363166533471820356929295412667324559395229306602067904310797780946715649676277280557405594806767806012101273465442398676649476262640084899609952257592407858437453604186994965911088057372692370305226392898021612931194781350645336027894044821925854499817349902251222470567832991302680644431526371125278467340610076422337859270161373248819256661168435635489112126187295056058866098244225249212132542203794639272342938547661468963283371463365276879481789833208800519500052716703567208336546480313863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23499176670727092494567596550995306716281541260452795691490762513333737063515610185233854643877722559538775521372607542282136804989344454665379784412810415964205856406572827382434074537149353531824061467580974875110308334462133007225295509888686891462996976110643679503465516869714394325595371408390315127286548268848049752353044527868716047408250194076818618252432840421301910983580240558892079620451052761642517343741565392452969569891678042914719995886968769671979425796059459227851844831108790854984429932026238997525875573826101865329205734858536786720161697445491762653963206686258019183218094355778169468197347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23922573107276648605493684292788542392667537645600404745016082346350995281891443500012096549030724947004448832508409784381611399516726293022280451351453824000907646419453539382688279971990795078188239951117771979571460118138617729695177299191610149690507211549207393617759448369237196243321069119865719601976410238240620697869890170602684729467952138981941573575530330943634197975326847347688797127881400284454379801323110934222696938694266201015450061714734874480512454052539151791660001032954923216462446522662707884024246938290696204982528337180672826210338474400677683561660447926512220849037794623761196788281311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "164269298871067349057016204717476229812187430296928120969786590287128903252513574550237219207830476003294883921413855453247059356004640968138853971899328870141000234597150092321788384780103890944979617214850338202876200929395088276396114365276758049346091907640138674183311672238882882943035328976204956947301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28927166910541347332703004823988430942528503944513917918171971252600085158099417951181447092622506393053049737166650355654774088787947409878128844563511304497194410894393496103455715751307256296642788578940166553452249148770976890374209603539374782206886533081296000945703122648586257172685064524257063041812600398396206434254669983322749608005988009088632795321258216423796698500925948874641985283913695388571726120371003759433749267801890656958383356583262236194425226681747505205822182055221480916451486260571843252481109347112668338536795185164777905183457442034386147386059851826925498247786568473594359300527527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21684779707881906597185672507263175", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21148871148722136984854708679151355", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21018322934277337362846394745963113", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20777949881541402733143403762271088", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27209200028400644652927708262592703702785389969814885596662671696717054369724297096770162292836341134263902185117313047343712653893915856803618152978376874164636666902408844756512336930711151392570293511759140804571447646033364754728583221723379110980519236361550814631954885805620433631189569668767358433251650547816770626703860004676191348491631181324981954603759029914206896165930288136498631384906560800115948678300840461071356517877896148483932031866228226328733871066061794344901616112251841572393789052837091543808898411880432520405132300661557273017706084586822262379546653247970160248149207747888553692728131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23794785869849053851670511424479203400542631899661196151402104290931331376271414315651125574859182689370804046354967318818672779518056060457618745602626564039636171739253722251614231028040979585107674494880936894230528048268672264508698380769606116668392882006428611697963008019339975208821034901889358975913384673792782432023855712129209938889652594575133837208726201995764420625811989942020183352198814571657305614772827443175997392785731161315073336829987955813940955753679035995246877847018864238382048335414407421504247296405262046882092913786844887860359615309620911094009173260635827477360557194954261647199279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25792032614909030770103590434247431848718526524759124426699523847708482365281197216036041780757500094612131066219986910396188435608601425631564285787607144033362542513820393618766512737510362985546149435505831192898959163097702550970566994903345286663092902442268557221260961256510112261216103211169722721897607989936426365852777293492283536115099221196778911889500408588761048399463524731179995262047189024811579241060142408851269565643193404756127829226446981151152143710756777997311088891665816212924442140437394472573962560525594636494583336724116223148818812875978483261329604524083791633629389953293808518671999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27888729945616492428055384384254794097267852405648507253491848025042827751069500789769814555915369491254205786281331545384097587760382679208263836759009191741117373234073590671797233708192259513367259277008024459083927874540173300886743198064971413509168149439973530934022907681591209607000207468032710858142904506994771075900823877078294189168586536888467606468710228344715859349194848226561148200671766294085240039350027804361558740219192686450258860974935485775885357355519463313337226409466629492457369469597431874014354462999602393324849467973139352923251953260758678851115652909478394940858691745105382635645163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27238993278898879844682477178120763380107485763601578093662802025434615764852343997153938289072435527513983905474314747032182761635699710522194358117755301742151610401890053760048252112049946684074509886634163908595220005646453423268480174788332217836241886377040207671814068556583802342051465391625145765279310851453677964611850969340364797777220808180632263167983382671766534231463693040132815612929192781685125786049353860097522854745485760772955472869685293808870709937434755848783636463095536775265308784895239848668363377987432225928005244095561671244241156315869615551597757164241784021816658419015443009080279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20885857177248901248151978303025215166503331387201137916507575256976206484692824260352108583207796496271064007107771862506203944917849387480364354546183909456613278155399114855204180540453676572138539334628185043275532165201454155546435505626670077763204627031118435488567384158803544638679394170217474410173589210124892915951291214149554124890252460171730361631903521549224223785419476072630856788811655199337556689252820936208088265484154723002157564486839707511982393746089372320198283121672811815512143744612725535403577570995100253996326112518591677736553296624738974403514691063198376311200940701065843078029219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19344315100396588022825440247447677903541594024481356213534165123455614121748678363450068968638852187952774785330689962458883414023440917648107140762610819648149800477232279740429879605366008728763756919285367372150265030991655357889903417693769790005018234208282639578934219457234196045821506760530132754707934003710498368925531471936593691065461404170185110196485052680416661548794564229729565923285192173731297488039528750956035268541040993560739704517620046903244664180168321492376364655805247284288462509022427287192379584559273263551081345991993216827235883354790462472692269814661378533848457294974464649302937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23886417596437961231646642286102541071006410261443493832014679412538609064268578151285626005008992990808058800834860582409990174772606807395025199712922282965222485170036025969995211274778472362774176290628301250524401492221911733948413573130868724649594413943548482256298162316453809310166214109655790395350515144995287191379640355329805612298749455540922480531565846410761423474301473406004057039834917974768006326124287278143348795390476246337677213022623646275562635481472160872220526720036820383480712183842077912141650959077533375071242117475881015097066977073471654959158777054747252102279903804334456751764683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27283887615412721190996734016051817975936959814370006825598220066748652667574985393505766087414414261514171644011650325632748706749777193487712001555499196648180565163588624294053442178379973503374249757356967319286496649518465443498869452553770309741626310558487037165769758179023101921030053103248680381606625042613116396432185100709966314909582191278366428607785055989989160281842516645864650527441865141889211669339034491689280569746282770398926993268361634783884523918870029542537320188010582277995783519946562147030179939276613308448354650597588423302794926405945433595834350057882801883285930306711157157737663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20752425682610298350542408859366430747590306764157383944767224361370973954549986879447468646700173558962117902920587144640420805436712863391019429631370738368709046038569554364657743588951293579813052529196682649228385288646234000199367711833703033232431806912030164675142622154829058351880718490086706343611458122425960036904957886004502495381863864506453695563198200600636349045035343293803539010566423998725350299979750588731274182001854705770760785909216858134937777210483765145758754189864596568717104923092626777968300868249396030836147841893665417369038854992696904107761700785964312249655521807786259658551429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26456402952416981412006618101653394908437220963621745470079238987954285501967361064427027736588918691737768778779922135712349089386663800485449982720732544551358365056574873578204289681353719216399410478243232258830061192657535506256484705902810773407451615301218939883594680386843440632672702750724637782319868162487964194922293628702389242482181378775939030487250667874384825915290077171461415605561011433819940515476771194699650964791927744194217697947969464241900065496728201337479705320711212245533896244550403000741872992145768342781827896725016672791603655523391652033132619442518096774056393742075740561801013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23812985981038645642171275993119849003697293532020446654471076483034238738105860939576793896660336616278734795374160093060412751660617573123031882611207276798972642703156346823337906266466933985848877881483723534607747867911343155749603866211634293499401918134115666209510915245717100211953437069528546590761626847022045542331046014227618345004718934907592343588622520563014522931170469980506126093812396803961899691919195950629045207208968647223958872028087194320455898789578911596392486173290358379138044713398330697776010880200780496421030920404180840495628475710081947477138623078037932653390867563322280590515267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22005925188921916611013646011991231783181307683650578392880951174508572064949376617887974480777365723556472089213704702632293886775393705049851540966003040911244683443403911056024953740629845551528946780091472093162078088544090307466578023795936616669458835809077070148383658558281011815751830786323626845360590572638892559025105026620053721015866453376804853211809046707745125475785316055386852539051985528772520325617902244213310164897650113507711188335282149716347280654216772085702244899497948141375386792757172782517493258288770448301306093474831059368928098490312638942558909580096349160170416505330575843130717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21903444982006888749367968225603823675089394100846616831763191260957950487600509698477918363660833753645991945390887448750229234658314590587199540627271819579968074977754025023464580863905700446099570533503458525733642072489260375571692149539082192138028822967356050587661644272758727698395964368609175305746595534434634820296008147441530015937946010141955472416111968023846473955523098837713691154231598344598970027691182399616677307937701245704922608672582845389720978611277778961361431428344401965349258092256874489266740811416335438565292072819798819310520787481107702936188355860337258878139488968424581516940863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27196698650399203435078640231268462417971493770229724723541846233145544155363559695327244967217406407084490572628481985693971714552679301940623398841892191250456312530696963346041813050504075970530459433597094188103968428543576687313553136234712558299929360729866685491100714837055129714004611676172625499201651977395887336977646974827561178228731372345500212111580272110742078916978886008763913851274884625064211062979992433669054963452652352758281699929103535422260364687461004021166225394053676165362913146694833419815810368556935503825198274380862705627033900894691954789760617848387401680340182413820905347476683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26450082740307760183245764248706279874459977878780905427183494445694119786714571464739803966003097411659374825312531638934674759738762136148071904509700480672342533777438056574527512108303631116753026365500615362420955856034127213451559884428759811264988397485085592544523807892974065020028780485886208412981744022512977420844569623774077656769915879281618346921987210126631387701934723817144999693038869699824778272858833217999466713462753563602269613328807214060173919145798634010770943020697781310357623042627401197405849366095941630980693013507664545673627327181697052692849249682370467277497054637496755254563067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27530335870871829017453582358926518941043620110562248637196065066041809919675342335967715873350748259815803108634651257340568855040504952938530442701882700445047976559467788716615889297706984490615819813569029784047171222278179052146727868113746095250238760601190839375601574535630380960222780509132558585281311855106449395868379505856171774990110947649068098802788995022634158943873543536339067981081583747612190470631241585943609167301057438893647982663190845185411942019417266267564566330843510764706295675261427285997990833093742896683958031552990641189380174813059875695980360612015207184375292513138436620742349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "136843861080264589908834747571509685982380607954110509353599014339298656263922150010735453424605734545443789586622807419145571918621942014178566524282948205361835792905667646512655581594288733800175726553027333491268974748103736340014422065907134040777784860910566148208349166781986236575929028649417454651307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "120829359305438799904973167291024535574224167877781439677905872184611786845260109554667288311952109883482469663702121728308439839894208777032645333277534678989350193495485980172344289445581781564077833124825879529155312824999195799355747664322842178564392959550002015926618436673398093926292767682455916833349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23162770246462434615441147826696569885467587395232475979117909504677265479273467432158000130009165667661187967152545545524931585489053087662505813552718293358826474054104691421075348748937169135748801118798315357894029717288781181409169770365616457496240204804740112540114058866715215753297360915064859487472470483201591104166803481393301649782558772386003342004529103762486092237811157963927449406517890060255419483303483679396694042296595770866490689765398383643978378163842247297121490168666710207264210039110299857302595701414993284545837604286859619874804803934303260731056217544488836037023810706440131063972939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24140744557427357902684130483609766629061901725530668597598632677288731192621922403617384245874222337971967924925670574214878047821311856399578860438646994706059319482071509826071056550028631751642151477489418535776176393883441806270342528184922088263736010610228930350354340604298171220913638845865673009235945436924558889177907743710830706680244915356108521276614820022229632971994747303539881921235684000251773386700800261484294875025121336135980675319534995519242845912366687058755187747166756465701053077427657504164318246790393919658595208937920135807850640828243583152513287065205537663411953229348659193615287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21206655118098949488958168762948020908613518082044649588792836797390268596410949953164478967210903701780402841762401812830722357773480801478266234308253606413632694640194289485955382617661739821667159726185184941113994267454151288814181806227298486639665885499775122662120686223260189753890659378513642928347253291180680407936448871031011407106202729836051015771237500251784445761034132596389582042387257848093823227284955331377753585018269057956716763617369051271197465179698535883959269449543246393859810901883144859680344722733684393711957081925217914396727609349565645754544669482781337298695410986345645878483459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "23767084682845499458404734763956529101156062240729743801072725633423180145795435911868928739823097004585227274622067807073106611949711167995493840738470458558926918807675978975318254781120775290278398751957961163536281026243310894704159736873525623204432208359096317897383490871623739743335921641698185286537256820102655444025114054704356902075009494050529295270225161338920963460668333428277655736070779893546200710636142479971428432204258113913166126808210057338525202597076212539241561607370981654263564566610270271387857141010103485529576896853117546181856395632116497765515166282396288553309014233902729110479047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26945631051978319007316427925257221026299212547880988571797227127008681279080013310393838134977146911634932606503313057374345348850176767696363722497781613203513730250954266180703951692290930912461304775025489299016332546844260463056729395133336974468629641578818066488102250047575259698812696448434579475993819224226899842647920400641349386862543772150516973334676786542652462556061070067053977746867279421553020116455121011361377144100385041209120366202871261719540162461547901024067337250929717595335757729171218310374151217668475222779417729349042099945630412481404966520946922951346621866308679795237680600314893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27106679413070850797800512514014796037970588140260796119049793397282461899238943885292730229469926903148187412344654774605725546485073899302671638005641364698405368657217360151707307111848370254076743676713254494019301473595157482597735217900114567507271486774972501104383287016849633247627359809240574823202326112373782189308840956961174076617160154727892497513430819714597147809318735677340595217878387304351601079207580274033951020212777638327282015078140292141726694744825109556047823284128632818539769560130986174471368303403043076507582307608253531746190750119814925430849104842004944083757635572053710610288389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26706411418666685398884595079690658333726334123697419283607662705214255879709659943666032225146451203777577995364644637075556057026742757131617577722260667440292920837064690421885472224043664652555492840046890349376888262999346558246829864343179139142202869254551665960497722262090585350915597543279538152870067264266768632252714341731514266026118747444404727117287002555339657512077786475317398010450282913821440057159145349481687015604526638900944914436941535603463019779801457466800916287387160910957747192640667417827669115754249553025750002211289677234807910630818309784480300641485304123697014056140190355606801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27071669197952737763285656314109118597702456793002828617417285814332557330113245884913022018383004113534036580332538731028064812088094508789027015225266376736983902779374217132051341821886610547923053937762675157826131365143978406402413681352935657946404096669450730092217447749984496540611399036876726553907161221580211941806781214831531549444869792326328712373179011006481871183578009868768166439338311811088113464701798239863527945576455655120637486030966088625054381773877906040137421557834939363899965169479323017989244253535200554736420988178951393123752016832420441241761238453632953654537004914876538638986827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "19129696635423479734807331972906722539879038988476673435818993268679990488248821713915434233520066439736282873689703862538270685980978541002059257345589747412125348892816932376176247639425032240884109238271521816215610619121963757681211852442439729113774517931934524719587373081221171045380092610968600746756902279765291357906741992561228269345368180159909555961113220288661163501795257310850326155727513036752334597464370506230628891423397087660290858331348888617104400456791293410216217108964543523767156283585138408056971080692865535928792492494095843482038661395118097315569014236908294181385711047395049328330439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "124278870545514041093005226930174355662237994386100223152639891978523482830116354184277285743854598794220168986992879278612537277533201194280197173993087346486444245683893718679112390282252802430581592976820331975713395836819743451082765554624326439290726711281850303378830966209408356892486498145021840533347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24058415971385587911782555274691167895493191128048348122236396213135776815394940421026360481391757440073844827582948840822215752177724212031264464254276499006798251158439158577897111388580656635620471844832957541171485365286176456725293113196518965399069023554337771569481795058891873894903832937772589418330502334632402832987496406607067586534682406164321821409873206563625001351217633658189199866485134058984559554211657352467735419376055317781152843501059385964523980219824280018901630759125543672926769737442379366933706650482877258408708052158858398133526874354324312584343706065355196379416584738394780532450219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21244350308084286918481006512760893142484858473029159599189237681339143762164977698814188043295277123024134005408703150568401388342245811597485016835779513337300809475798170506718109253298331097091935034777666817434014396711814418260005870832203940631680707049691279808070485950379431843019904349721427810808544682009266332341265930261452550160131682173654346132484475175837989944879511186516509986959120383034495832048009980296058821998875782599695485630036764984572027736611377350278314708467272580152907280346773616717474827591054401068100252193481128025505196595840993180450681681273844940983714380605489368408767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26928755336566912494669773918892728815532854462568583632193728500254944702802116121748106522468834111850908203610391162250749269916381951714483698835549090193034933086276328677102210393505865860570830642360972575301830766005901286266577845558687278476995000476707557482195330148549601117196120771233563408267300489226977123135551692402262824486735511742464228297081685484074391982585588266589086539623277068643623738172743013101975741097359647933512626208462679857146807434279903436448505983232029171854074575814281623857308430904736232200310439392201092144932461862202355581448891161199570943807963694735902403805453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20450902282873400419312057270733935133309931168179635535566436631987832542038042131245453998620024917581085864557906994966383006821132193716876806284765882689190017272989604545085475212688705786670448118996963144013940156352176828847650448418077036916716368477138459795822567074162197367546897227182344120359572203603224887079978515122038587979962661719173440913469906300446419308051708082595969139013606823875731036144196210561501420173928404265114290687062509160431436524820383125696001126274544435851022623648930053671381305043605182276678918142024121150756712629335458463807928620829742749778273350537207336616753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29426817680170483539230649098638292693340302921898008580753502382755360150404486342204868779986662184544370216350167099587280755366778291103179706701314458607651365193056662157093809227692607450291271062881898055671787368212589350987308594866817532678109251875356995942323436945297122070856204425293010333048467368580955813387010494273984675918378794322138807781052081770904982505129665093402392791820274911480817323494697128175460277176840534840787688141546123974071492343881489528613999556876811230434106427730877248667556097568635063654782016434887040293079806800847954156811363789780543697190464932969795450456311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29581493826158472484033920480452974833771806152733208156888162938519850013096640098235013926471495145645995507940084219141641355194865596182717613887687460922088270240089656993200543298266193143115372643234342983490621742806041707504452869522823138308240920509276104163606717346182806082487983710844113847571696356749252655063249263060430314292972456779813257038475684431479527602259576726431616242798250930602330739720838921724971438927591615792668566496834089240248414971787032139236756044306787566653885944446762960569846637614241867202581613158308636690677584094509329562983825816532391734581700572102967885771131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25029146692375482198496360428589696138085234964393316415149466279275915797370929808988872982437526983393236254348237504615368281602310121869098331840480406211656385435044165010546090886743174280894330267028983857082137231064625345023523225600175760165235559724759951633318316545217487211840619108195756622157363978349511691790407938112599688217720552716412185330322156126492394171989060184365437182174801214125346707995365911226047054436929266815377285400768053718980452575665641843018387575583931087995078949974164822776891172805983070487077464172217029761759249092240405368030278291705447136464286613650424338699403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24472967641459462087447157333008553347710120734111648961893863760164047247336146298575003451545451833189360150652907058108692073199981025570089244934676264148577051063956010111205063143335726686219460893203919829615222470540993695629165402497712558373673462324687992159621928454466273170233421455605152446635950584045118297048254207767625093202017363531729725169519468661229458865732707179917867332389177687700372410978866733834207655848809043370816815138805002587868453998908949226825832982756482166251623071184854972728501238569829877076152990495663779064959816321488013746987365168664487480447607131905109137630869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29994845434453496332224794489157354939386101905351443410897487473793064721921018920324617314863476657149406124093440277521209887812143817637001184418108903941281480567230697235763504975895914080432465412674962327154395345303111511793376560841053251150148789641355369299263324069281818424956537072838332599658859817527389610983153859671517543612511403700673931935262323581671211904180501938841999653231157452581361025170260653091455929260615655242897551389445020899463897710436694600896396496052559719266373554749420169539075998562693598382755160301168279055293585351365909056173811203411644720308783938732593552074661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24473650825944071933099151470312968351942660287961290594571625415715276214575832940548794811684472012964715754109539357320076094976508690207930845428554430662258496161659036378365141015719712945668818300207191683247101526074855759753564928940101351050998395500192842271248540520990487033050872662266752683674419770973192518810161606174227008340451530924657242344273717735821022367381104334261258322910116546670805473789893959838133637109867474860059904954597237556174663516908831457213548024292191899029603034082227079065296820235137486545052144471959484414357692800136703646343023522329799960885269585972269642818823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22098898309224213067661496102241811079726612697901303752868018306325575345214388989850477263744971422383013060921687763859202352126248531724136237514591967507508260370971432372954204176065570706418863616948809790218452752317940964511291645517052732961624878160209260772530548577905132532683053489215550648553452353932261888651202477007291051419457845075454799204016841631859476174108690347284130113996778802194789177769340291012971659672359013206965532002418976941018139215221287609181497273160585714877999529256919356268124400214824174991625140204151775780206167135017917362876680639491666935715209828878028778188309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26298456762264409794103609485291307986950382783629042778252351171924847512489594544883607858757128853238130131726150678232121935263427950634575429198882463427413320418880762226767660189233815694402163148322934150137914573983658788690857633359737172477345491115366996005352085244507150781302262887828350156125410822407488108899757309694375835122693719658321708609923914541600769555977503144173427916197476815018143155001916225077499773513824945935172438556087390659353236714035579265501001199929796382528962448340380185817539073298089685015364356073168783631829680162911870260773935899961741109110619021168307227650643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22186208172833633619062353600085463401240833569566021408734529490623740047147489010883930274797149546610288995315293162709146564260207771887965729126218844208964374429225499699776697425824647889382524865349522783916175615828726552794795184157850841427371718240868208049656400998062359508353665077930409237173191403163095299654180994053191101423560063018842041376727565985916054946257468340724909944802973799642513410147251522221809791801143139020990377307870749978756607556827856485918336410147257654957987725086463830201882842980530530148331606743475644796245358955648064958399229655590476973116004937953310418542437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26675905160375200069922885950776560973841773045843812018539247632409892552045213183713988502623399880462304894458198625913779752525995405951342383425321003243879475430649240518401612670304480842325638417343424467731130977200382664707826480647347367855593121006136207124395474781884023599655532736310970232444195959000889866453670253331997646942302306291589640512836072168126903849388735439137380300348880418576384117665841572841989137426774511743837207304964017923890618255929053189356984038668973036410953485129522473929555369863778099243362867689201650004618394116365636976104142466800118380142528468689308726120937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22451872649334352868019727524833639294839182206945713712468644416954373544592510572755810213446537730466662539085274160002892282852742769108679978335735252306214656657523288396574515297822370151579142817071351537006130356117320850920662765068098304138428345550337719699574302839330699149663750513221979970496988518480442786628209286071124845154326923918735882577984479009374308253138841322408846253816170207298060180465669974171985390955605078321635388167978733111102234894788675538571527170508645744930848889213369478453732857432145443004361857182875210044809446232457306810287378347736550967678602699149998783006249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22629903632190254284687705785416493682476442700373390904775074110626142448908892323837253662254225194694048760354415840079581199153836840327458783377818949485226756909548309378681455923290321661801548751161513249662885570035221339235842056174049907321551650168961032049800735527812863827804344097621490913358876098689497280579575922600131883304403108993422085461635469209112544121565171902671497916118646543349277007081408117504205022636006046514879217345045476372436729672358875898633522870818522510679695277481731265859170633300800858610129225813424811791102215765938667860102205791989402661387779856044296242055189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21088819654676126595338880917683309407198312069016430077538274943092203183871489751898745930014958001498036423102239976996686442340585699051530433156579886789881516024857373928677416141848577935036790463595179649531395594532910538237103088378316379509678781286745064986160743218701125334776071163373057251636441909718897794883626721305551864881472067943107623651949877856986150485670011553645976528481800141849315995184340629068122867998630320462848074208723607275148933256130016288899240022594103310666316023424154469244691448285959065469154500841018375025796757768452850618940452544962922436247864598890589268952213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27710176429052105362700677587492451935692999251524734928367597925652397071445748871547898233575456798637744849796722536077995305388592035599597540802414753314958936644178782240222200550640752575595574082688325276883664866024817175140720469577780059399303025462119256490517643309986147899940711054749419931801217799857711354651763286835736443640171833375085190023639232659093513455445624995348254054383462301469001802728236630205599812951149646357585443955685238175068293620535530252687508363584305477756554427946428043429466711840316557071591433856209652004737925467663172592388001259673709724188055215037025035215593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23645728728797609289062734517534225063522955872616602115592740377480577576096427711927862542083342898997792922485118014672321947335685253820729773235913627717307399308676408139812280676922075492790517041139899716327182880325852430977218646661476877355172228867095569373279935106812965268508533511888455423645040212952346470331814484065409066540499489696599137390933178876711480779664156621615975646109499181701876101139250626736628571976027349192971844470425488667579621274845772828352585273826777184736215807859139960528709544208196066343839695094033469829945294586090133602031651525575393804680909182883115337293599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25420714383559965055543280661947231711611756963089337681330609737547850776528775700740536951529015818526161941343494900735357441725298803297102177903948092787178910177265389413401050254531986960559520718506796458970754359715059472749826266484451882904832091179876775278473079403305914208669899108615041587237112756381248502324099949108059284524024450323495693736977384435919782863184117667450447646746862446184365484685903833169924137102965984768846488410749841947684019263292333365622534303999183910642727602593974004229300940823821603755312087574126705911082169062643910277694358602737437431395426913201690397388489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26481608064128648968398135301655192531096892503105631649905718714096164923707190183335083483419348264135671456377495295296963637880509276826032203115233473493406108403281072060106070098561000337153341723989967536829435752368405050577904856982018364028606170745295944736613544547078786897243445725501252745088694497635356125848619103436478071701589862772154296133737692569330633863182499061417279898642772782038549648082211659973246791295530951117528081185057181773128437068061526730897458248337210882941348003543968187402953214286471144509095417966468965115080888940981306232801893512382970132543927737463501580559241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27860339116983133432478195654282558739218007996800400210840673200807191939315240965322769115474750308378800047430978019434652395193320846623486265364433655721762286697173300129612520717926755854285262708959947499454691184226704473384467168092198435126559697922626320116290780555448168536790374711222608509359628037178737543357289517135843496160363463512992520738689084617340581946271306895623585164600714694695772537908925871509112468796113364257368957395035701537087580924255450335542680835590540303025253475086624538879857214817042552274764373618910092788106078955685953755547036529159856929151291223351837837560771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23173830491897080838495628586983356053911765712288937563530475252916738981768858265163198613302165159197717740638875466822329349829553994378862323040840114042141871368048763549498418150976027793877439896312166498895284417788780861323016154576640659103049872059049364243848946271057927038878196922952318314852092624035952157063514419175465186715896935669670387980431036326906600815551779504861412084421371426658053039072221756068547748538202209159825391616671644261004878666973765517861486050751388534179773898990974431748836352910014758470513136830431570486538388149831087658931948589497616861883791315816171899695207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27971922306685449833123064604301427328476371532172029377106647953395509211506364661633778475038991016250117810249267878019058225485401617157995188983326207117514442397554331318875862574003828635500993941435751204929165672666525169063174840691212681864019607789876610484176235947148685418142706165115641790931226603504332918469355025560690605045587944720604418968642466323435343042447225566066798119878273392527557631451318778678242594990131586478402900240986106912297155679241860245202543854724057733996693613501480602200897743724369404875768894754631893244553580079441549706834280228808821776194206334406062282319629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20325683906918614106603985388688600809577741940872775172906377981945797735291187672265902773194223383354836567187262989581885484497970313846781974387818266558447053623297032561545607570111583040536129618663750803677476073614420852042885710990353371907294089649758272503488248896953669947066743772677758474682316400387876593852990520179071976273952120787326483047498844205383746838624591891170839364652340424927399105193678671078275148522808270870815399293843697475793391794795532124368800184583532737659253228498682674653323745903633411790414253544639917622441803568237249247972848225243569350187508891824776949461469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19651889659871095120096198418005996713538035706328899021507532529006963341607712410667027578513732980341527623645637998129980120521575994232819760312446254226055459926581689856985342535486199245996516705124078406989408925601029293993133429039154972555195297068764985845639315372231225189485883331126605164441735947678863939607489662460358451052023063631986995218060686099004549528321140485986854328174975884793348807085035453463758165244636265406337784632599431062295110252049749949054142533874026064489970262995100677515101922051677163529392079067409878593504236726779478698099127053833539546834544069865713668359269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "31058817204445603720001444154809649228401484687998418512857150925607497541683462673099590129688167826270552800190756270502666188220034293691024484495180426608632510832378220972582595347791649286158493810049383257038983312561570087055353987473955532026042001581707144979629424090731345936115224385615758422176403959940253184783141922793977246802464992928202252729492151658082619886335127691999028615670080093005219962245579015494611187548915246278963274733146307303399475851174507049824847423904852514909970950722284899935675771934860036587871982277288711751904673726383903948011967654448633095112348184150268632323459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27248575102244700400482683894217086707559287238278440850976756695115047059546052710546450104222975947660776474702371683155248834245814379706918007398313544833053734335340780585492493615634422394918474686885889849163236219733288788921596447218214431575064576706164708661625524154618932768545249679061237515951483270087037486410438332333215157846964788239352860999176888473716592584887698964007635823907336128007528893287216893509213980413058100379287229051696013464089706422417587668885151271873279448896919767652994142082390665571279919917632841636410814064401400150212896178794030737869045969955325361044223518141891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26382414097844903971920917052578798328488632982773512708441319525878516583739331595096869936090315410744521263701718995184289909854729519656842345870883322704660283281580868727540345013077487754339244850204114096796071228528562573727504170695714755945002298400848388693774994515633783996341720815385573949048103478803940961764899181590780786472051668118476708028763979253935876894945339203009807260419335042219358499508535060332514753417879958557221034861952664470066890492311157227843698958892594439823776536485524138377561471434146446364131823550460545218321664275377158830817624466146901219162186456981635680098429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25508345483629746362518830484404117107793303001557729225684637032730133062313726765698306448610417632845716665321398755009525527925895858862195473852733375147094480603521907024956604233274311156576886467855765488874507025222406908216431406991875280907963467334593635429782837950255300505780161077279053119039696883656249808143417096896297096781982232794764775377701414920430390616920726869137357104768743304611367739512469316652600115339096016224768332823185673862214292390499711882479895758106738703488222506423957568657226979100609915738663637836900494779528818231307182562649807981140966646043109645371143148243477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21647825521626028987524882635956280387254466302989674409053473592822862127799012053109712909879631064754661525970504803037772721323511556624267165848546801342143056503577910356969652355456038604330729816365163255367195287664501770583072425893805086175578144384057462052076583609737015008011298083227794765413824055385440116078335846137082463280386247006412075181446460314048378571999017519307940503561239266402603920358889987857265739308075569433199086512071174661930632765679050542129273403946954549651347870360025095543005524357715287461402931806685029200844836460686854973107234152924086942794003893802337297616869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24960442612529787918624038453278624279252751189328847517477958214935922175239928360933175182019258051492824167132583370390124766286219854477289364362231820769019180396872180271147005693808338596185694754459365360078550809310803405138008773824360300286925791264683907379188828788301579382736604666794989579983519699491867181909893379698291456904278364701551263702711573497956309830999984389065653392753217726592005962770112133280444545904241074208040389436206688560553656484560526300211662092720581972927261159899970527660363209228889918688651418188311915553537116548136567342546470857378336067345413080077820868808927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21958686133009537145828467100018898716896267793742115659314314132639853824989288479205893102162732711651793948512855506567702353451968336288619726292697539391500334148334550307694761654207164237364920037617705044433334474766625341605311260715538651672505861543288810627381532618597514627445128505134986378083396411924258186059308092476997804574373582335281973753296664592425099776015168588605395738321228268257504146567406125545190885591515440881531420408736086951100018313760688230170741167672182912006193834777063481673101481427509081751646025942457662231918251044555782447144027797948266855464493192445777995087871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26884225503246916522224015635392435846845310419007324128192201127634180327972390258042315665846648101038132926915039200611811717836260573631503815108578052798314865143335364269845285918052234263348881387869852583531967971047996156896306879690912595773159937774885247957296410915957469570416913443479376654078541630345672158371797161386575204272555820956847162059183656181717977700369008276255381336514310159717595193413180012892735298750226670353590912600723799204169196585267438188648888230770978008622295725982934539480727411583890542832823776854428312931705025676426151632727301463783103494581285680681332489625563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30572728826058840062771667143573107239391514256680436456811688318277083161159988104043137258141364895563199622707358290446579025759222878354204446525670201736204833250048856174756263839103514464438583909006577589130171828969602211775183994703793085808657441070538413951610834910660847229365238679050826227734741759672702820364177787411522035494424578861756677431622816011059622054963223967067085913031666912906260491116040305527417064263300185100883312220229460630619332069733989795328316623760820077414736855200113505809190871981636678761704169568980431122060138162350885536430072132463843868188300058787009677139743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27949871803875672499378123750029120407744391227018307545418397559108748737942801990846716106546532387010201334263220077612642824617401480360951433521381772598705495398347827367577352385210795025878074314847396385142130981703588834588533782451587321885383415785361359492550170235380620725566741861519553870028706935638911831756267700459928760448062713637914071206371166568677710522031222064062598258278871295158981018035892610264064832346368274619185558198411800768387619227374406856040960825511187082828899131559928141767342232010233593682857942148260218001588427761555483863728734020282196028081981900414741438709119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24217743591517281484165552382008807514263340798733590019884106431758362144438870256667840947831782577859148362359661460330561893197308171508968204396246395670269877892244767009201868745559535125605025577606354187918859436300901754547786309121768285257318278702315537688828067625675915401070190957498722770254984382744054257766234647674272916104287839509008922593158260094430765061248823952063725387988379641692864300585508148041133274268971319796395686145309058084693599059761635388752593879061459906900714708734495034743550680011542481561012030583582166322653759776654246294430557183416449521844650399674298923535859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25962909382158521018684511025933978657816807789425724652850635048042009681389399523567952574798627311806387408146278206487009940724151707868756356800928590984815333072648763317567606704201009522242372856251529427722964883822107615161621095066934466622836903994510973214626300215100195361851842666705215556210743380374472538117428708136692146249049881240489047584501619380026877931599422332514374081285626362101081984170851117561401871913406024412082727579623520158287403184746903162035686579945472015450818353034555805298642329848177026444932618147485555366647218037497231165988516788134101734050429592169898895586747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25211326749027047407867386135191184927989764062639467656947742505996375566081998235762136231762765059523315322510552191855518613046890203009346111852919581802113338660423433941016374459700974364280204452882522206619116683298185485172461054578017194067538385974590084854551993225913285249807912476634215666085154256606993782112995992125494594622704178671608257796966017719537550985383435294737565053025245614146884436187847175793740494322035727267893829009578311687343177540717360587990241657401938941695252039605301228060484259887912425954394895942752651899754154086934220464961475370011418091599214485437955692756839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22501089003405016048268159771711910007151881406545806342314336611469214506093944111814615602332938924565212118333248807026740215139168299861834916151369225368290229554430224699913364643809031184823193836962113292761583679037925341220743205589389895505866957721795728275384069236902638018782724786373318839964604313332068798765610068202421692945969363657439904355289209573570219132167518361003151031854971834781638121822037900667128064463955195043923431669272044940686798276973321689010984568907942719908661815250367256376011543082269867699750262500843670112920929452389288607983065769447363592443962385107886009890949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28321161649660903676062755255052412139308925560393329210125976603433278694933216133724318622053565804778903349491314038827703118379359743689507588897249436513867670240734785128357657291677130530379778480642198139959063386384852925841387678818188694956864918297197444454624842191798864800978811759862256011954896742423021598866781051290198198455599919087830758995902981899933825877990438134719913994485815828571828293719202999947034004806420384476920829185284877399328736807931985805903873055077020189880873477383179266360928243650791396399065652826080850203706207688300412675127902248027420292458480897145064543831781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25494060024477476635041170487325029819284108116184867777595836028035502414943285633128164564218564978049508595150323477981868346623649993596286230843279546082760422756526938927720689780018784230906484508226947506867763398587762509396189828315136607607855919763850892519084999511652548263268787178081997328518408736813114766216394033857943304174762723221307774539416125921919376779073397126627992355763737682222459173728529840390460060597471039750093049752189608111485359024309069478341582558408490359018223850508970309283463918392671380312836620863273225034714482364957379647548421042479857193599369144317749686555473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20241061413069430293178466292425746899754501032447868923105264640509990588800465626710326682172388412045368160967039475885759979881831638382288034293776653288629439146766362612601918106365985324315249845723187270668336441607555324147957195827828215236408835837122097139998951135770951420831567517656163804990466562360081860977429492801841663895210103315016544787820657627141322640855701866814896446561937574781873050684072981310121552471128638994355612318776082049002191733245407700972848011036291534082028323629494773339442485106308212419836639297111056820454857844435056390403369859865445608030679908871122900567523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25066564533222147332799864797905257488801626579165037647351506331397826161812298894405744710630866312695865574846152203672351114630076318387870060713835660263584223227841855093829572478815850349496408614387422821430612802963521636609467714411535484698482631070071340641254515913867763494695615287548284629040621929163572908195724329786815136178181313853273978794723881936308934273298232132988291502918829145734591058488665619836839603436846353690899325208937689767935645140015030976068928901034063928779332133668142507111514281902076329389418777356069224761113272052751765769929751622510368974012293022040749649880149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23820654756402457491055519816142418724082127958918284770705784464363494381307388350728093105702668340232091251077097396387516762481622022040050521460813117611553209054203148741838603238108499115044324390811228904319667623671577452966994253160921554718159372992721113428116453410781687058185167202240932196341173176973037239064691352204399456292305173404613154924121679809463220976706283502877352563020358028238767766973252113071466387911145343844497384395280742105962114562819586365774669316246809990580905121725173664267182334121417764387468056205490234836484332148836350346070342284105090515180772184881491660220477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25945016426237164109402223567344016025302546118691861421807927440217721460263181306209687299406814332488117687074491580922930252993450156675977527329012496933578831001347513736901790332048393208872395710758981709941246897845393833927107190813035300066756628415793814439697555663338794052046805207417474708378049663742377689284654447050471877886890992997298268066438042454587228040235386827325863003503926637217922240059265597797137119110089125710803398965331161884115495077926516873206343518402962799252717792558457477004647885634505167493853901715430652763159897528932668303867907720295482556994667096853182385298041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24370894654486828892224997422000297312247026489017578808866823085221443538666765289778827223803380376776494579649859102155820222692486518218929546155725991688537638901142218256548522845580843044999478442583619343239321592185519606807071263312606722516095707487477441452942352457602722040430739380621281177479003579389985501978529383631951764258343515388812681351930886483629376416020635588826464839766369490268309287828246726462603168136283838756974794325195485198466104115624715467600872520202828425724628957975526202780354598662511560012868846233252773717462123248923383181518603701247635613818471669924985064360637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29960421612815948299889511541440986247556581635368853406799210895522917168375572721973693263179338046137444882758504036542538882280793924116118573532707354464807990765495644231045019052076653739633256877388349419835685799358194347422382158701987537382439737965761247493783159085609467497609441687914005783239878809138440871594224322958212429642588744914616628469312561492712081675284126918468940650725573073884328568729886900847535429766548408409169088507916874519960081847492859072104441129520330550417904417238198213703083847514653486017139528577120427470381173015239156506695054070266835685313009304676477301140223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22870300744592206783552892073883610629502700468186228599115540960322181054509401060289052480129121969236983327660633525502976223350432952195653204129647705721177926371842925808961434671616074558637569111733475475325370624606014171192258704461839549545347455558286138456832663307409025901724625659040268135566773309720694093948517345274370935369337548941324259552244293924993909039637176050305318970119730035115165819848849791892482415183422563570858599820472964189004492063692904683196735576376911155396562257581100902645333672439409740408899668410883908081255913664832045660503118404338453819058377559216388842931643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21463451677309564849824960170514309117487828423439246065992268637450262667358686348528691619698526125829057332054544221251246252914163584727276943748837588626228790175027674925439992499631023662888986632881938540718719751765814537280554055943323692175321326816587439924336910544608649661434282902581445661870314881675129497517792531258616834964003788855109263284582016225542666753744942505042646796904565501570803532204875201277871452106375233277112763050193852688392450346397362979637704170937076263840706690155239110317286518242226301920214855752469333471521189602332958195099435273383848560566792311769473792578219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23816611460051191632996370394363408652147226249049304985986701445646156145190880736087969677310224110134195642628212212539210850865533768848570827527563277883556201784622857340481194299761210807100504866704281787798507983615534270031342041861985443717035470412555673462943128006092901876960706369362506888501450771567255567104146227476188999904615180222511567624721445595387581641442864653234426600694213655647627174407221787201530490048863668975700677191507447823850028204240605928265514619117112767584419289887913422001227680680487838835375829022041257883991065369593557410444335716782813091673842517105865445984179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360761020402619260196481873662435818984974334380578910483876197083342111385175254470302526070838579194573297256976347018538815296927439900690854180856848676647926243634692225541360393395934438187918194582104862909617224399707414910803876445571524273426538876099831833741858038572799295095781531269159698891213188283619484303690411043239181578023262569378053157466590391430124446466311748056062075895000395213386828868083999547556221065351590844172556616159452863708554768497159845103914144227696709361311655776109646007609579393362765079704979131751094647231216398530789868074491535210216290068589064284606593171431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291576279059347376691421918796957374716420410207587165973396768675722134660675794296040408077039441545912049610399529135847898528411037741509643464106355314970774749498525208024771366341236405291793645119532951868000833288407050694593967857456304251538513042458872098124659725154353894457747068244104366964416161656348995683308171777004466755412905884386494137125109383617027760280029647673803920526005375092153978218262245636773146438130175136814007838155271197309870913997768102982806037802284066617658277908095159238967820880212695476579805164745719758750205214730425062469776235450260778669820506402631042420877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290420059439499603617094674649930760964317536055358173988562538666703535587166837088444497125257609354332358489404542639244596172270886673973912898643755498355553983304417162665597515793858049083073729656126901449019389472478131997210461275592910945461023267224322881286988745969716978449160994748575149442185336980062400926766023561799105124614187530303612261994772114092058655102561363105679930911648130504004046302964071776164280035447991157422592374833635430697614186388990043452595704754882394311898632236048449402533842768796565613271072540333376185527814969833933157786641491960373501199470877118052384062811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31773016120288868420222404152386835810008504823001355446754833352332511893828260433563316961799167567102688341286259639871168721320065770394425966139549114570746481776993287307741759270416132865296315955767336692866601878852404913365314436300293493508969751160664019390172564769952971254244911710916408925083526627885396222955231136960379832629604433212050456837359288436194486660656040238899705951295187220338102483370104860292338624472064976049167236211722539824569859821573965790503732756729856511696920862690394751273616038705048354487497792319726459704597346279197436944318025294304671995004510750070604366683469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19704730572718675897782801856024225386407197183506030311697981688517946978408391975937447601603342840296330721991555244211844949776211557999268455547759878446936965193327538477007099798362036556307935913640608204019418574235265844660656189060778079699277428503727581348385452282570143705605110765609427027122332956437372274626188941358342319988933203626167779156881699814714652975860496902521444714643273421140824323289625868992311469996680159358104472746456467451634508817213906710915955838710175285513327174221955289626433374143410420702412028861817952784373459215793772794638714226280207739689659875281434068850963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26090523767887831619525857784285257866537835551109161601955902339067101023648067965374356937255700523343334346060760879493220884073382031020784800572022637035066573342079072944031071181166319561383486094313612012686043403034950957703651811039725159598621015261663472630837431433602417355673618296608007583757328284695731702231808328882334011373121451198741401694988545864722359467742350626757649601889583024178351857556876153587441638231040199106180088232469367377930817595761339475701244525219042474790789699177316403896939970397415762518379499965976842855316868975753106587732229701896399027506778309112629027082389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26020937824915517399721390599660218376089362325230143030409473733555550923331479291744620448522271017777971647616626547734917800425759306789100719641809330359967887086501964996802890357940078628062477390388083028283053767695083829639085653395882184606607709908958657301988802846839475263724836507941080233597573181387287987304813937717459229384573084484762995244075864455251362537000751677567150990224821314393569826712035662424133674483477226821400497511426288310052651715611965953715763746009330047122443911663476209918906349239282454766436826673220501251692821104508607599289821954247651289750253021800083993260929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22197706208282198157133876395183118882525516271423678115206803575452716204291722690732867275547277905826490875977162711953827317290270768400965910092099663617033839409726316075624783455688550865378990843920413328403701771351025896736882925230051698106644187761699332556151226077505070022860498607751878929379414618327497863995440449955658443739809522271733227385561278771650101729117355561517816126889162821953820470100135804071354972142012459899496256243140978345736752687900352332497228794025105005777062700527980878457698736889775013716814576065419960826483007152465392264673356001077872075272242867549257841530053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25305191074718103299145058751723117301910656700931350627993665376859287046834744681980520444580336195454861604361348100051516918864999216525848759069783033827602067632832551703878129911917013909043427665441178789000538067541429604790874026698867885023211815096415372436820255555059728262503945458202150095090917377579098581688906209183917663813520823346334080473827348000296246878188534211033326254855809230315576193362527730589901465836081253743522230732832668279243344713149819886033009672153548537884508171958875783466968947240044631022607943324967886669652065479377958321048482232153856837684287621392108506387569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19988534867741916455783320518626506960803474651033814551646943038133393967524917885185807807631401789896524938705317069125319158150376707795213887323826365123977643755846152437454080734143212028488142513011751178740334904418290900663130005132535486433791364057966510851429145256310253587362712467344688300684077722734079541037776534235084455744264057927836833985984427674123503300967890667456880620648133142138607307599240272619614556573439845466574564921504425074283758524304013438996982543947373473475143167767530289325210003364023157448671628463373393423134383788046307787344965734266167029449438920926411117412453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "29900719205068904380499188411229775863605258402308684734408786662166937190856213522360895581515805581619412089479152016575379069472433475012050317878192404276898214785285009171819208480790705084517824277605889706041742071294181839874436909895224586874471453875627800607640312336731951491897955335944289505216759071213844398445288532770095036427558234250154722313969923758233081562680985659236265789705260422723694207371837925556221089199227193018456739033941787186327523505600989647327939689283202795079175063607498264069731138339645391449868229846310659443094957893497059888739418353938572805079539871345551464866617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "18869149397723659358167393009942480658369982693850230457993704572393785420920124118071992590902010012327364162307964153107494827669173009430766692118696274642717275894905653312914710557248924782059276963970822447479120216698391885627047510570168462425254941393841881579490203996772085427627873554494567377944103531918353374274017318854143374607883455049809829464498664424807477118116916524565712867679306331034792554489913813247626609205026707627158780967020486404963695836758054336263186273774240936478824792928658460531910119987837925702379821689212163408775828181222069295681492155077408880060056468601308191237233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26581401755318311718614770394906922440195706621103409870342273834400097682723516891372428974325441795793077013895475744733673841876403935853207854160556485178327456393703870875582528472927138243783500735140228938746418296958188138526580996931431507268151029959363362417194779975187978534266435339006211508420923253343679687599222503988324578405996858334392059226247668991575399523671290170442020433169786422768812076955223704753784491376049164343744058835567922477929739267393455179133792301341630006664184171504442029495969992636241668526324315235813536405134890479956442121683365545639876523138666003209439684327233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "19394919785167097866270411914903404383709719781929384949572141360846191023976347359869751931421427548676795450636663501889288252448978755115598505992752680477748901830623622683823441665157181966081886234061899385568306639920827551357438270286578904721927205857341589176255395158655154326211445596704662618372513146109349234301202404518225669656192609829082368540315646096684544332569017541208733158235539406236575554945478870257842964256033284879409260173629124388557219346987068666896683113265163074025588816447300825971107767051843605985910448810392674427071838836886418213898655305381179730231675886416898753889661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "21883541398345575931809079494457099289446001882299106905673654568306256387142859229406377258541350986550599678293207017048319914910155455604481983467809768449958013055268677152563490049600386562814041231104255035021283679100780191531849269194545097279833138137086817279294186876135565628876404942863749964667099249489498635886957858296750529865256008705058029037692425498332472135162451567473802538478691863909892523868735450642980354501631514666540117799892098608612646282464434899695626395620879397552283488066828443107514690122048867065825345904065331469298000632938805175241774863519539375938477395704699305503553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27184839994373490809617388401619959625617918796266835414989199221606698970329862337208006066040792913910068591720343660012280093196313557607820944799475970899055741686184161131142458333254572671963354771710045849463567115520382038289301625531006755111510217583581331486926950959646973158803114837958438510932282280684062092432909702172894051298371032853215177925611048103015429681984416520806381455874520484285415051041302538672563901143312498631096078358132287495438407390959780714187858731281390539741511793146310341767485002620158016128337102758441776139833664722783092255109122285535136045118478392938839541534941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24412644252656963441777703945027553713760257462474845885217652526875270578793403720204736446413296384416393746686541217620798337622049533293853193868835449154105438591370991248023773751442900959844960270833444640705224817066323672816619485494793728909965025407121090195600894653030925009878667977148545494481066171441792134890241497860849782692631473452143856172395667590272341390737913114878885969652787335328551275844084260105756936093680933486550692149260632554077353973045003598668724726097449353767194711780545206590998533597961795882854022568630274749618010251218398308915686131889803964234882962544834559835757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "26154352005256804465868251325684157351728753785209253925629135462455022819222144424233567960468108476031154998917227096934267234729128746886071980125043037834458442488235977717916283575992469411654085456427543793456276274434387374933585764766678497965785574543697171073080802015529502561619229244555231930893809766154402726891166964773908020193729736693795608561629488935987194534970021047557625353280558809054460023254151288640252417115234730294210161815248430933701295719535402577872192202429154267646021975637723579278534083002531675474062443939001395825703995685622131265034544146585749439999548054946310801599713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "25604744642164066683995823235850836585691627912398700575507473122029650535930877510165505742355134711543603458590753705537936301107709991162127388323956592285861412177197425694314850258594478467174795703476168214449557338101779576106032298184069972457699770793533377276822566228139209600014103767057773889790092783963807290696801997318544524762932419244931212507740503340845248489322758672922348054159912941013075177601479945638316691986214503917136622014057922803465855661698616527616610791695472559972498123073120966655932672961440397979883249771540074907194132653700704984914184046403837675878197455122360068964909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20032163575658953844392056703982520888379895755659248987920343065135413440151572356934951202652157197411921114958744594150474193654109003140589196559251382770890454477321477716106006944683520639370466040586702668669878704409149821829558129392147211879404692031788743589661080923200994072275284827676551005434930220488515772932624669573181464665468439332245221152027215787455929086595640301453365203148809734627315982425071867546484000224900706834291843153639012668283067022678826958236129220178381385615577074273995422793495862767354883920910300335017900607019233342617846191005434159084388350773621918359900342800677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "27234133835199566853886034800355217940275410800273351000301592564855121887531971869328859440216825167510166784816705976594427248130540498631215740069355911418626521570292477657010243184054496764911562541229083199314433408685993135422706234406190744550182717950786066200401572402573389472470560315775796891580456659193801358708633866078860641969506058402891797184022572085046701305865287360253289581735379283593901204628239375267985511866477185181864868565167817684719267024150715305982947914045754559841947431141418833107463043297443982364979565403947044416098889414261861699557862310084975799107103129977837138208929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "22027111759522060565191376302417221833313317453852311088289959239144713985360101713906674995457226652974287834619705270069622125243717617357306813163265108703565630227327979042451676577896734082399080601179661237179179460217330932375497137419788033798936502585715958678344679460776661428287439048276012385444305693471490467521916597278687649492805784931881962136558037691627844827231840485202185792165449028498744846841984249774521926160484127492434785622022175047020498867914187122592937422638448831084579683871312016072358114656359283151564300477022728913428054875415046679895748026805760317662044053868085686134077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23896680655514015832069792735797732195180878817215947908768947317576889042637847981038658510681390219707755388972288617761294301921703520115526185533773312825959854287840761036633827224546008974990239646844755207272483832103979660887590653632069546120347054880841955364551847234830918025478613417106679616369769106772637669339148706668576975295149505937812142128563391356997950632056661624376462114659519939415678519397021531378812374622360450377803776499672513593949337353568857118536208388379858099093218874508162386676426227548266229713437171151775393853642100393848525496813727262475966714520527380136953387439349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "17995811665382210061079725250162016930436552113246553931557595268130300791069551047817824538614952883639491465832248440641709771650903211390138026766164622115210393507577616769732453116685868145826258887604221857852174161123253615783166536129822176965934072197891624184858216797489066964305815100213988710878890731877354356398223645820202728698806643995255960864546505610876824618761288657287394101006115841167180697789813825688607096392083681510877990379049165039991810438289036043259390043811153268815466265162277015929769452837743220235155056183431963954169755656478701252342488031358061717213611931013477684249233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "23427683149468587637551507231314178434961387365912159735789985006961138193099701756110262327353837113987210316436622924404464159722626701604996260835209384794635346985590570681016069153055982701216329895853537871285959552735354308259144912802934254193910687741292391370871820610410976502609280506923312949427565267098825713504308078932835473769926364226105822073970403439160309141489485961887447560054775932863066818316486650367420347847799511504752939371398773643066979201315842909274632051304836455742115838895348998240994124881001939610057941598084596926659044111253383911453115541446070792112230051561799329013349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "20522428570023008814830880764088995580140885726366326317401692917367691122680128689633753190352204778262834919650969424345057120055311763786559314854636799164634818785889094798981647367206461680303243048024271652645639671333260582960878510867138205518076398226338892425951946203981259084732261388727891530874879264844519095634465361445802837435019521958576847116806891858618809924109958607067640584388765922529198716154443900822780126526219960662597071547259685214531392330836067868114522079288607768403470419118053607914887012154496754672806295490109227237059774979469007888323284418703641969327521294338630473087201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MY, O = Jabatan Imigresen Malaysia, ST = WP, L = Putrajaya, OU = Bahagian Keselamatan dan Pasport, CN = Malaysia Country Signer", + "modulus": "24825656904398069888909576301671271970265361700796354572175297830227672151834319626899685364786343315020270717100473542146801935990499092719715680360269668093957213820119111156050943363446597916387048533870462078381122153523185343104764064843477709637847327481254771288426921849542617465894483654072355288948831902297137760170337565605422824210837567983152702869554789119555428900834848514560068168675560854334193454165367480728973079474021433574707707627679908886670620073084502641158259275164286431557200377063357803104420685716146293371235258641027665274554964688311053769232404477876730983456169908345133962249369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22148192195543534982881414260914518211817505359649648925834591200398126394533489880780111532642145717928524621695461555188403329195119494423683138040459373514544451055574707484775681840507319718636794859123549323731650200459734859299934372310295296582992124762420700094533987964140789481853792341589637847548919884102777485795663344607534286786232093211653466035700839578433988164889776341234538301241936676637575655090380397144871853952335865658667639479189205467675340241294740958120304851323973704321364003488788895079944188713440161759779235916339993186091637175857285762048433460362380869566069637405768839654483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25151258946268089486149742242039290268399734923772161566626848717192691265837188430048331207429428219375360396467128682920882125610697885861649106988329619146604899874311575760513543492085331757075404977380439957850575610248014411944269433535262941257719132524029131656631029828356775645675179674325986033043736749537730881510066688823336897824298873216775385366838699250926477885489798675145425894906252802464666738271612034247741482678919665155667484893533358413571804053452115154648646038661755397538681742626209753564281307490476375060083566435769275280663779325304159225866437377228284613743360909619983004314317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28693989149244453664082360531483466496041672660504570464729746857433900916606347362523568948826033670088352841482463750851505383902333538394324880467532968202290795457400486891193301610231294478187274382528792457068275226164623218444198808063918140123820770227000717911039056643238086486544277372451432223052209451816015465187835925930459568139403395819674319612064730524930566608102091552576955172933812071368512348403681712987387024254587322790043244437741805051295033176764807870291345438399304224975979402855896141256918548181271663485328130753614088172444022222996434538232457582262508416261296555859096322405993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24479411119914339356041235234880408830537991687643703865231201313285954411407687612869075045170766188163947316808047458385553596945527849966148539425291221117043989553997440457526422578307427284273722359585561491505112848581785763742624186336608806866181060474887640204811223812634934383551077082307192225894818001913774524630902858675616242608243848459064769127688415969931549240270075393718938220116223572584780399468359768082187923104427423838265245246990415358001015561167210829852229565768872331502004902017086350217785539617844478237133908113808696820300212781303855859485420520124978553338928792839299399126199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20896598914866770681176205605700571246806719836549307062410306903036784980356178299515553546524728275628783322870873131006518452104708358505357326721722287214657272302480512010686893461201893560020684659832439060960248714767290037220835868077608866321113081607837087214301691203982907022422918332057527185666675451153898234817784210249982898875910479064940453709109737456287677233471670290794006335015099419456497547837252240825864889178365977355607083507261442569664223029684743861977845551109099582235578277534294136385741727831315171340526494869804755558327039288576457671771887532244027676411387918937852019415781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25709593698276237180818241632681225078381704833704255154214886723252160417554561439792345594142280777027695060202137224292255085822401669503888462188523089789101054585843846064255576354715519541319946590533319332314806609448566915129257609316572701321817468700900653507549718260066978231354618000530436379104885835491267467671293326825163359487261172046878579955844517765624960647594585849689339491021415405726895421202161565138997225866098080788293551295760200254370656648696554890756332202475480672383531959369271471644397717408157526363422285857421770762500886899069683633701933579875942110243513754216647461059723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19810205487699068862859769110811505706804713763139522339467353325859209371258358086741271222209850738424068917923669542091238051515241074079123160347452305853634166347383084167716596444640879584976654975672450826242318937500087029656251115080600851032546394013561775611973358564793446034679365381912318355052762888086469169494713680453519156294519702405303877450362764994564965846263689239516713971734353673866942723251946950160244925707509726887550861563392497082543238278221783166178605802812032444301025263346209966286052793496222965830644005798663650360980057193297035824643291347899958803065704753760184015940179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24129774147602977183149511036594642395347934097895675663969108698209662454303320535450627254951423674060707342041656688573687170440784287480107591804473947967447697843450346785470183369973874562669985605736849346540297904698754960046117470306356664027499073959207909746147297570319162368785477142009570525903573022254398315968679590235713993222612097210014466156525545487483314764039523946769083746822892404143398682976803092030653237330270871227454811495085002105963555797734064333300204198857748776377357306108105683664441235812862876330227383014605235050364591231444549943505849198658106893911372961160116906459351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21000074703760109590632510113613453935988541843488180743366291046471637741496656409507703738427850229048276840527290450827310865668861211146406427873363724207519854718249927668247597488623841992624246928872325917126077104359874806236253590704901932510092399577966128669868098163719853278407480001463670790398924383078010580226533581364124602766451090812333092038623040984605641496298454914388035201780440088604513379574759714840085034300036656716208135023760454128190009940222034230669451288147567304947224557415929052952177070173021659426233501841242689618261454810522430999310519380904812149540268996127865712684283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22890179976187462129543048595801882530937481438257792063125130281074511902646240420232757526180257360830929493623676589138350114398819172469723022956467978787866483588810172219254178963729563272269794936711029971535607243187651023587090412085862924524117215815771144066254584401138700939654945754234822050906074862965291643471567169115653140462117809839108308883528345908775588033513442988494090694073451437064181882743121269213957563118536438949965400558769602465925375261368949350371079130691587335384621824775075314096208343002465809426539013064631993828993161733132108619279782084316213806149466618774787034198519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28211852963620080540255009581571855205830063918474541717796091909875523402969285912701269363185042724312495320098416060995996621778708541836938697828801478326391772885981760208916524369048371863466384234307043523469426190570878947287913136822670630959519797482321480786826093272030124340625828441790439545823660466121275606795328378741248473953823969759979152204898124157235028043110910420185816565624086434177624851634833353214407813139270578501861231094150594849854641738759196192572021589880904022053714239217083837963003041171608551377445299603506703472511082395868949939124057561995558816842819396358687020498073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23822632254891587637914990217358620046942263569462076260658387337359226202538578330291469915146836903525517706507982130398117454414688177047165757635596282620918556209366536298566105921110955105612155840691032476090142336975355578648549763354993801976639013797681380412898076037495785417020531015771951516014671545152103591828408338578655377819384208596525216528025424442422470442612251039257091593791657773008613296255066609256771295002317898489641657125891776627552208791154614987205898302043736514693749532290549278743681745274190794356028825760378897112781407136260141373810270363159318250347664359615720961816561", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22154231934224470997589656432516465484615873821277729585514646976578582743198996100744288396347959258836179317621882608712809626735095159427072831141180829957901480473757811616471840603164702519535146747082900902115061695268458301392713391830230625263391836383966601578682521302305402510299851270262477981187261945031720139704240598580443449309523309863625046989602638263785819528473371872996894520528762875791821364705143948508600534015015665260010938660525720923871139310040417418267826833231100781582543494099910619671103677546033740484576062234593023408681618643426463851688730266136542669448509009729205120406761", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22842016576774247188462534658665479846113831733647996246799134392798090172117689448392216347104744019782411678507971017512329984779256750082770373025253551432748258536936443075043916415203941870068720402112265048925872779303732187283743847825518204511084754854660002767654170951490480004640653544804666941581045109473081108809592300835918715510426050746253251994513168393412085995499727178864746974575700074158094295485003855152636475196861126185123757877124388532736149669750087544179528161396220893350166766998728094304273405364910412941472167033793549386981653329819010564891129190938252923652790521999016426411037", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24677713724072649748993890884233881257949342850621593252300938648325433179835386444154671049595561264651584689423670327994524930593204668331989648121868144743617034919945690329805962360415300768583092970220281812013845224874781394510645410065702072912786922386092264554312751205627007046425399200684325412889034893649487723425224784451450343242237932582269096814824652271889446676634615663502561013124233500650774064630451525550811653138598544149857147887172842521705079156646878520262157118001513858799035672151190424184545868582335039748131436409974295825629402487547242716331464435663113665466350817240699861815083", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "18948649396869070483548733773574114028296882604013091834374629147603495325872285684718769194630284326100545942995235372740632547306266281749066815295115015403927281580157831848403840321040860139892652877353768961372313829595282823943197733785485807690251012155962669329976191956350640917844985330301662427204695223475450966774501712664995155338130916239432811441613855895215040569936455771876740882112779759460881545546303479029569977486119341510970992395714310139186191371470568501528387444640757898364413066768963057511966059097145195731727884820809348313564764480056585281810596212887602968421169298218739521263561", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27382441135749381018317554373794642185217017395898670046265477699401460587866065722107730351781954721657202603442036987298959845381882593007875401331772970455573764544970388877830604877390929069963987824095812611684857279931072555614114678785810796278982718959528843262086407284824991965257104740158706480866603652032895055382280917281787788186987034630283455716352205935814158083646022391470830992708466904068328445911242446210138427300983237014484704514277576901208776875412788904545257431952228972465264457918083347263322103723568738312092846430716436521177014080312062269397799416357161909934799124768971161037101", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26874973019290750058652125515796292740015274279956614280379006499828828671852101327932762547857139364148167637448593250500218258006659645319575366940621088445944308969826534049052037604765423386447996890440383970584963510107386822726666473704071840487542077410095587017032378585969231536685184985294756118459726650601268494649615657676771983750362217912715974109602544654450678413163683469354346418929789318690512996642496045832880968413486372013256677739104656956820056894191779107133859636939657315018007153794759878757790024395189488805967463268656151195539906522233836914780178783464880566995967135067577195288399", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22560178423564926251487316326605009394340775824212576066800184782272901375416318615558891033856913614919315355775184280924766696309248589536107335115954296677249911361842681627562661768468533933054300112081520643041628645654951124743285140739916131341068663405866618001475873625966544002409934981399790982462466308445392647953273412192027185765057002838052412854742516878277400530585588659662668520171470711093225617264508552556164499606591266317508964683020897513227925744679580893855336418898594157842065628910373727108930157726051698301205724190780741706313704510147755540251150052332817189351166421969437204220609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25149652130411704878290098193687983672441512405840986635030068848218079987817765682069874243769216896675745478535183950699945174987868888217020859792534640171179213299508200326603136742394983893756989750450139737884815118104508378277071259009170869907563021803061158490014280777376735658291636234154689437749047868449920226940609620268958556640828356352128134431309436918026419825965989945991052731482919019489961398466203105417732716309140374002028597615530927883247309950633140137636789195582255172578064622890612031801821195991199673208645749361722893896478467881613557602251060891255899906597480991581671628972589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28212363785690142679446695135122745208131996400128581699774764534651692648362260642624830068483822204257071278107707073148793395004047273084095236491392982842555512590009079012461317857738398196100101050029070321506716593324154948880249386190656866164332684220456887555368128168436855521967849155457977272733320935570912593642280520536007617744876735701628037210406557304280087877597597487346225811872585056678066568594652804472472467561984328860655806878671137513703157570033286400964633990745787294834282175511352658662078895981231666276528063626986009889547036661580164813582241677806090205215381516208887584640299", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25123544570176420399694181299761578148184522803562866442550401876098204873821258681383364490527854974004965518676995572846311752870791381529291163331142180172500767950537183709022757234039096500621347178861473534926433590119320763967140357505058385671530680716647619944478186515887266667151911765904032747064838036865693016132963739247045437907048958241497709244056684936984590492160008719456338107000527996602695416411707631161365066592327241540794361375826023240351116046935618852190950881141789997395329546961581659718389013355325417254965567748554627913158184221290880278857380779649107182235554950754049361531931", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313881230260962698424702704138256157924843151402359635138153127937583900396568319367191359318998759282326260661648938246196380194032314081036965037893437964374064391979737189771847222199868074910045793036202384000902010380623085460020000130424005357383134491327814872372091340973739873120623748028848550140474551168365070780197324665651637121330651419518285867784664412152879353664211945730326568950975308274311890458764188596863182973899156950460541148487865249811862488603974497432779045578622653064429028325527455893601218311187575522843626265219209320383956301768132520941086514569924238458230162167969045393989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23849781977088530890087383738103113056460167509094626958925956275589181257058978717496253100185965770598838271723587805062020777528566144532367636921407195626718116370399366196958182396508627558657738530334191498091245294024970147126627334409130644956925533047696115704859668426281658397961424941133044481028866638405464378905964090213276290452836808885814936862739190422875178189035405882859152649916235326633959087929127674546820643059222359304008294745892129145330407246446357793285325334133851456903294324095565364056976746137993324030797358257807633532212053982051071316216187539948963180321057702318796501916941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360250590899676417925936294067249923897365419821003434017822020952626311126493972762049126413949261731522489413278268251683877680093881553543551783514078244910938632702847775074883718791469977937910182882092944928273062662778626303580422342687016193325173472308160789074634933310195901851780860437277628496937025792906557669361846457980606558143392609572836979437591478366945815016737726530620114509495772525942080011019155667203708342468099674468519877327258835114826633701005953673434281866151874216866033456279419199928638404149772790453145799769018443421123256320474047188316873874160243196741095345344949245999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18180296754198541048362288677301096926647596034255363064763785700547090228351478109927313280460377318114025503710531930852024090923739601110912357460867743476882275856266148415029428776736682529238012067261612093929064579437518948632543085698556173174520446260807343883592470479776676171577297214170005044974543324067935562879621445178375423424077636375024427472030486836087260991820370176984249958236779340836770098265201902652663363013056393166545630390239134916489527380039884535110532739860976155220429322395903389191868137758126424080448776613098549024301470179228290172347389981297666767974148961878376737503857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268472939290584968565734441695454372642505442556594141826352998356500325139078295144592377615163113633817344211110766720727933849009346838478916958841052928428598627640357046428614283032927252695339757974244188216957896977493202380102264566002868455507977002834352463919773253723765507017957554774378083878381243349223109892763507496257527042534257059046410686313469981144229392455432825702646134517231115906827538281913131329353526394277996055987111086002645196417879928686323867044461578843828125653485498225577257279896179885232381785955488474870649750184368474953911113056966699844776963267300604750652268162677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297930373575348762630181549097326542938195960522911488428717965478145195413377957894579707596008798152451564116774243710163733206740566683449795422635357865636670057666755907787745315126528938008208728283487738654141068911401456098900774195142586177360156579409840298838148683706997876051147806454024107578969031892985325351311391200221881995551073153011066903617724119215175696700047164917897449027829888798640382416016994280040474264019829715940121908241256235552170516289130722252967987253999886132587579036146199160544657980991817748701654387109588347703105815443465928489606415082985433057472065040206309156671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19824382991407422527939023484857612230133239667759082566911841962968610515479408484214897054612803628995840179004140010018462705234808005810075880238299106684738959865754716381072298205826344284973127741131234848292678347613678258945108458660917886676965356535720878006604199119991514937650130558792874708138032265296700210499784893449508498742534015067526243132358340492176803786657390360635497768158227449452633769096018424109992594087724277050749917070923149160252240518772520687755944688240847723530814659347749846148483323352997090521719417734538768339044748251436034498022528480958461942854113806974890980020267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21031433090441856405274184473760304565326301661207238378539869074046669504065511695548589876168577706115578250607683927734587214006571598629193874767387101758208264041165279874654911795500235376674343355964921613042289833430753371251250602746704369147331269862282285057088782606766762175537019421642133545038802165564483770138104246166713592732682696280330157706279904870965587989942479599182077752638730100284663309170955791360870541669960640443799518901999897997682875914039040464690001418219790850247434319221459610462464506240948390929398771296515162699557194756602879796649253210657575063696004252581365034032363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20623702978111908279531409943262577598817795241866658953690041456609962332659737989586744732661827993604301797170264790850497239980493574432487893416056466406430241390925315492256065355131711545649431219709678264153265913264979705688803965711164362176835521430077992277687156588282401612084688204808187801123725051536411144805976805421426964105627386908421492883559864094004424304933908035111330503836157377473694310198470425485075519278441864559291805952797460758653912425709842380306912655034288963449319066684535884276122413772810166888644437812995184066100426909851787913532510915482415512528243937907410072383913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331309420985164836714882373929493125583148536482252885638531362832418712893442171388149819058715405980493321605681616554703592497317596973694937829083521592518318939295689609400832925047924434195927862504918096959103158436074757166537696191140749699764837280760531717035550935081642306210786097823016395715370557215960221789150724692889658531886703871856820836925252778869284776459619545678284535016949929513408403854908262131669333463165607222397619590176353818159503058699937753529173122596608307872020044022655249863014343872394555178585170886604909907463398475914821475888253951786235146811155437282103093963327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22641765372620129595702909754516616654837340405206932002604866607368704779691186101017485631363045595202544711116399487768570890015302677099522169640828376100371587166652055955824479498202586870618703634086895408165045267069578199151285745959244407234777094775592616298720919981527920907188194588731680930517237583561826723214486935131483039291386882643091621356283254616057867776374760647671768454828848910302169610837944790670209682741820966871988226390907190793868717580791794854534888343693970291430995837699796801692577881166643203731706457153506068532143824353288171542854476211232015085177040455445632516207897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18718449356296050922373992573052006629509135940544959106265869751401336747079955375579801270063172090115655497549615148357128192978862932850788042679196918616152108280985933384065684002221678571053109873372551596611139805118187039076845017600577535132174147238824755063147126993746958540682102204936562131855460368559719965241658810228891375714312433820492120364887860699072101799786451231536596365736334521461811287537051669017483659160429536342583009215567202152335563220468727896430883585944420007186681414919554279003200347033405068948399766141547719001636249311403972060950847000033338712949918013186082007950629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19158983074163599597465487536413619246945540212313860833158050139371465332556688266186600998041804438559244010719719773549655269275133762976142954266863536017219773413172062589011255051322842893324085237882600250352889175294224447977869728152345576264708285262696181173172605503439145896862147864755715338274264094900334938987623629465186316173731827762597725004775984671736205929869980108209588934054953095324594461151035221506304534788163696231490177303991959016561284128858449351415809300652430455039026092411323736055961514561502951084103909522737236996297782176948206565259481717370263263885049248280458604260881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29391522504351782076757433803672366720051799292314459151835373422793529341541755454570462551035249676936620370809259842839711723460821889182515906009939065553098487417415824495639326915909390522155784617721593220785852684444939850255669287952438021152030696740810253172816946578143727691949354879987278750289001634463517128731507017309468475652100530534647460250561592392352668449764009403863894317744882552238160655446119632468271483349202638473411838679221752402725903076417709151835053610644378568280890053061351871371595056261894041575434099761609429336491606362931258162306390966914926365877021574744791433761477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19012945497795973508560743600222337785869078022344172713042686384876370533910679766780168652000912877425021914017331530530628239693380900770358020631481522677184632392805915950833686046345126710909921563603401707187268395900618220754954584767575876315224536089610182108948322852938742249077054681435765146382307686203062033457429424200528587929238323740070948288059460712716321766346603999142822071191403422066203859067820492762743355060432696651804833503346241386669258520362752239478701649601116354504563599847022706959052314248136641145801353289706495368222052360844370835592421296362312662783094917487188570565419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17661822408100959101027597165269249328709233047324626636147743322452968021727473599128406926261301112592481414219950285863129836628142947136570600363841810942391895830541487793143506301872761522505724437735796251460127281932148189911265896966523920842235031394635477411287655026692359086999232120029855773911184648590070448864825000367939353741899859014338887134638176697060586454342871486719168603394175773937926136558412952962843676323682147017514860370195988456735870741630931986470010555841105127395916005949584994136338135054333822040848263684897171428969957675899269138600604316999644308587490390316231944179783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19629775324158020742496024329125668226858478326719585208680809370340404870159865102164452710229410564894475282410784632625245773332577580636043898098760307498323047805924279163509388861160580497198607518868812093778872803097012631500495043249747429011789451247070352647382084413039143758893249635978560592215528498345650364363945092715531601969140874154133158010984769383063146244229689070606887125169667362413704513128020224298192888989493816051515035059714339191334324006931896574265104384776349362932354882867338006755198105652133550647394991267026268934157948298769050308540899924590590344144302968006089755405337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340194176586668097464514483769299654378208188186058249270604733169537397493422361363336413752313326492117402600127942723163796062714203512640640355525237854073114865781528941581842989423554730653534384997946633044284124269615453519078271111687694275566309764773783582158319348738717871435084979362429236086515792293477763621824380704688683895292153156095483768852836115930502942721717804828606644087519552713053389867157127983830594110503905231323913018835499671753728117176425135267676810716150088303501130895098885932690788872158014336202446875103688557475498502759225207855890930315764662370212016124670891494071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301315625099896390746727375935815400760219215607099762652818752184923574313439766893777537652587531822841749611248788985838485959715395021937176529205396250847323505017895018852081917615118848714354799149847765752072666269986078721344939304439090728318845167166253069731565756803238026655061924357066282206562114115760782217014783588898456980003361955314583466320271364904233016199691658978699339862466289440016761654486120474350723918826486092395256926688987512037345618843356468014181154663799274051179363769517180955155354068471687135620465490028601201782124505596818860395211852734737342903490742475290855297919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17597719070275035639080334471828137163761670677960207577658391609798097480883027313764395199940620369012778378885150991405672735072826298914557560261374966311180221067073977683778835223041138449089653092479071649737283027694638451687518251518606948598416621492257737225774186217565807033481979274932942237009474074852828743459033418921334879499511126221332829513766383153293254098909336772533527068833419146296346020824154265690995700478698238648580564767622863987681816332308800476053024264764317832145026470873913148248959829954650532093935323962978254807274812813196045785446880930805428527258273971010111007162321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321347964967869084277345062227607509228318852077196648750886723789691795587215073461122338777273963331690852646664592768655156565786672541523257659774583536176425906753848076972210848702528274003798611068598499886293489569386457330514309222024928061563639440966015552596042477819302632173389079077209539613342134897706423226019272418383325292440686752801119683493960957229041206863222851224894075724266780371538229015295020804412004030658295074973058549187630489327296789291777814190880333712371098862620022165475858406068906108129853789608880154105305339155650749275396829515467030301791052044919327512877414439999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17400936761854530423683463702760455612753783628005339870376361680914866269432373532494676946980325645327555590779196248973355277289173132143393166111987944196099785066725329490971198194441295505157328892423080339638978756615652967659813994805217543205759346641220039416856308488669273772985944643483682693126456933832532583579503184484756391724990880100987715115804417054446359205279503902808060049778608334089715226404399405172750038648050877277322323050727015044368570289016444896041677351058733940960765235892699067686673164784777590663346460213170210812765514044760730761697776550603118161004963761451317301102797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18596855831203427715776922358732304937131820612682243773411381578203914108172843779811959944920980149087019693201195739322126872133086420700715635320669060922141833271476557136496412045023999315779823874803006523895421436665240144464827001914404577044578982100197806059293126938442740766555489273995877579814484175964062542299020893829505897268753261515561104237747091841690775530920191668191894562147890644296904590651899250400377903377856342700012357041119885485537753926219488658008160097265886138832931785132652934918670541126284865656927294038201013830940828728538284980545969576373067740586065219490366824252853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268491130114018379046143968142880894694891712084713596664509837706226186701418234692019288186011622929946258616635601040762566037734065152525228569233565831938590865815024640934347418509584863538721148830186024189062311799445158660286539883908506151585292384692113174556024739235292773743050498537467608574914195320265125425308170470962272499556668213456465304063020478625120101825792089086217159761675393466096393674411707976847855022545307866946534219469182779508674613980998259805218537476520851430870454966245517504655495251117930791643414342270613431178632800817320140769250686636524243656983487738979837683531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16211901310661004716182469505850594251826612625011225894389769329493625674611751982524378632242449487793045563232010122330592797919429496977779046834198483254122937409234440741061437775502758161670235588801893859256551147522644152855529309813717366864397254568770533659558961595976706997866774567269712479456914562880288775318855686157857569199915404234268052573707112046135672166333392609144022195780458039679639797517129845926643378088815027381400448760093678194485331851664108961229289112597092576542481252245800733159976081012844928793040088996655996686239802338641341134768839975616568381970100114478379564384673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24834645983165145066891386595696811537609494452740483768851257480662796625006983434915434244036637914325030804753762161033599545368132139888826715652986530828004149030111050661187998405160501014809545294747254965205950080745239541556306587803864839793217875222370955757755844381317630588376113314157324241949977152662406669100921336468515216762378087938604241522442104417733020704695679917213144329337216706186736280109277811930768399678749329129801294351764000806188649118638071910615669065504965867012210059780999204997306632523845902653080780506288300925883939275974934359640109699895314484864486297370738358229547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291453535360259150771455389642901968722337963710618803206046765281059120070681979098063159424970263309564507055644296650163028728637235020507556521064726887915115325070539933843274309470426918704089646184870482033222695612362573799272778633200895801849746087490080713877667791680507982195557689443196007681725133104319199790414935343676650299357468342741730710788562148629064477574700845125722383067299565629754276960565128730857834194273235090482662033794793813405700259745873351571522587380756830812199588863924212344392967903987837877211818116199360437021455444992166439575277922939759867234609049122770249445057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19854708514094518668645619398562029467835715933372619101827869008840704449386200933868548036512427488588110682165510252418677301596530853636126212411612547071840845413535586648821291516875124566897879733723332563158918033446166035472922822765094569990454911605022218695715523383608704487911637634575256510103050350230478572401326915579884300662217125358362493447148214856213074124193055078375976923884724712311753928824034872923638284698103980025210192543723803812210742472501650414704105566229347343347702225173871976180299737243171490591915126006006844191282647438038480654930021782617589241132472370199990105477573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20189464207974322286082859288636383405811688817248012482503373882146554995522729189148853007636636588219782248928182796739989323954432832543876816688666748504442068944620596672812969260306130070111233167210492173370493833356402693348140254408454385775105296070783216680972336232304409659299169451119154483831751347286828390077644015676694926163411391230317818257382522314685714937169600436415185903948129003389420616162421442163661789327208143745845778948258654145476987541256416534313570963199653817600094474583303219926552843347503883807239623494024594533384217959346513677221505749622640405225183533602884439018727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17029850277699574876240812273663195533613110147295563248997175928152617190894015271614306016066295645964215632798574899729807338309311249488970781032782959676049098654113108169383482010205605495104497401686486206571546319972426531722447964129463010139867223933235337324179569325603984001543644833444525099448253243709958339572352489808928203334844141461009390522969274231739752205000931103264498018644978269618073420566932899907441970348968013863733206505068701964637631894007929383295472002772870732106639520315170339492003751981521193947733261113127999516857170013690751738244049802439355630436709522212914879719687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20429146369429078134030652653033876075482481194720092532033680443975821400996149684340064266003189388509943478916594773843303656571419433982240507690473382266309244794985347515583247750214948696217956411270117367434260167426817991836656479033869553285094698886444527231553608624980214711002218740930920058992822735751255588166239779028250050012564185024473626434824760167541327453381828033570716724892164082544068979124537214619557247549319507219052489116050150375619042987604175862993502974655495959744756804876937695898068403536201576340857594452435385341359228721798453663750482889595581476391853531943862683632617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19699019494548714817101415528890305138586627325335585081923579384826471330626116178179920781380699290740115648013569275243053461419694066896880801803572403078863017800928602905431118970743744355468254586849945236072302465425745040958037061055005972971145754289354877943913625037899041422662391686749431478327366042044527154209545168117449184917225261151847822707594583333217615415974482979057644504094444623504196299609877877798232124995907869888927889147131904794452307096117801577947049030938300645892330185885648818207257297748200060057581632314157423585211243972366851602531699169312494487684799051441730817738597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17300084833839178850886535367196773136540298618290451631237518720184270195196705493904576155635636659714129781855761639316918932499437470421899632019656642118832630770333741839795810341319101946640768445923415799082763564128126992056316708982731205139670332778129436536422395178529851919876793010476993867276729125056302642605827377160339120661175611508243790235774161039567185460704558805238005300782285417214595075949813993843210156812227863676916914823434196800113468444131294836737651034151874401981144264629294808927537982324425432294001003870250767796018916048870106448727584184622291570714883137227237615494177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16264761614890982831999997360980985668716707771080163993908486950655854198501454082163750848955068511972072503361715535178328245378469422929905911412817877859723553601267809250398355094736404664669970017603049028753803710094648993006899217556425948495607126425305670652051907725653702388155145273440145904579357747212021925966696385096719375132934028504862559199206489266407441439058070079178966172372545946682920708408553603016590830768264655872443574981684835947847145081915370365167082549704355696997842052760543610696358807187877312874199168620381251466644772724819435424875180295705534343096312302591876099838323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257094816525732311676395092439094551788860584329727438455247863493821133078791500366157041746321398895167010349180072709083657470591087832632417178226990866582881125707174286467424657121974958171562094784420002865413595048161068329405938938887542657425365945244409844922194895745894051667234265728463301134245098807776110577732589000879849974342961643446529762484307728530890597081782124019986915581351564129104807622706123186530004970298181084620826704548279038261835017061505642243475447511538736590183413568945951255660872478754147086704876415027059393478112626601615827742442411265159064915856610369952284250917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29764901084028357069770333649196480372594362205418283999723074175929082074404539617093529592663669985962276350612222651030935099615023417055774162765453751552877777775290784382793428174676051755459187348133438758707451249196194319073004279914940727975340706623089447432828605958154057364956599079237141414549842937065298897627867706675924379565887327281362450146905581085457675714764294139685739286849479761788299507791059179330829327530220885398273901866552431889520953259055082164892784355599275264681296309234065210664865896928244173624021264226768565517351322825517544778691589037270623003663450951800352558175251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16335936510467741977989035584825453667328671272056114275557193994756369051174195039406590388647446931266313916940271826642346920751592998104614456133213029858870693617435679078489812486300608425478693360130331126786585362184913415345884193091769627746839781639994244725049386237173521534411069905456180745349047778732929785533222990127413612078659855637448031314339413061783603950936690551625481214457733402102650104136486078319226277727214474311840627503382378439559244196334268390125324151524366140374173853419050588361814875227980422920615579806859897299847493727256023481092701482247753422944485839786159359400407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22092980197631081155031008513801333532180848405672891023704118219652663840999112712368719220305513695091683837840062333859857008862889348657681603442331316032137866014800918780259069270487824183662277240648110061324347688144607147814612334137448140073337787956030176681045134790225241555987968516872935952830926487165642762665475395869210158305874567285344528118235815346294507168972794350059358946930940831527307536412205898130944581893006916684559533903976441851166934572033928004226664992407834153710727660549619909363221737538799807343242530395009729010442401523647320644007179491756091425820798515529912311616109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16388781863804580746366842376334582747996381201303253412942995339455573581059722919432498487599484062532833643870235196103299959456816557402404552697288439682031589235203823324532863593160363727702534446849063494039818615938338051279589568425576827675420005748203189876533784350161551331000744171149019396370514360961456842883893344414828562717428223503856529788873053682023067455792603358063003589693613592288645414357751926885510131896579620317639944884779329498657434703083516866157291163171237039730907060394038881041133639061121849907587147419031317548655065550132468721639978056323487994372806381545089740183957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283160839595757297147496471565441543723230179983983834819197982195983882135508704696703870120734603905386075870995190146171507669325595721274088022486962972932809449744172554190461225104104335507970689474790679212863744523564032559504517436265201953467890458124043292211250975812773670468769442094585522239060939383841339062771273737526025899874047726990288095105169680505346281236970061426205994459889424115140988291446682144493162559857750875829141781241674705189230878991729937338336021633510829806085726443984181842597799508414397693779673790130334068012146706317357227792078165527209094321651008678249352389909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22392586710186971114313598730658993253500197065045775164440923568862746116728069780878348092364813190620634894054511299209936090690610733146630604750245260584274890699278103569703586735520945450655043576729882038724575609626837287004550445583509648719795957534959769626702913932445316078882180172350435850655011742714720791102662423912573995264176445823816425590934798049018518970786413344115401420906826351551076748423113963984153182804881995680620778671667383443512308501400859931951625876840860389048023913048379714775428283220588092969822281916467211211302171132969397761216421238035546184145916881475698971155753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16368173547736086770243425887084921851248511089076263601009865674882918564700235394810030177807687846862934481570494049950296633567968484102500885696552354711574740380333979559724993193226156108472127244983090992810926497683427011629756033792984654527029054708055289680307620465533621219074091492547593788441185092262612075791786732673527339129336729006001368252901715699145512156701320190590089915266473395018762242175649388748138720627657961605077501449729894932714214886755297372837693507159838897841017514798419399331238298660339849438572445339711836885034966211222700305208222716564010288403949769949389072253047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23906668268866714344753841483070185640355591712435751735767584560510323651820703813005452236173171582237343780015850091772393695790176120705162797108778915679237673230083187891389349910673925408867338206862840082507744398351088040823587595538360977005863463383377878881512856000099431464668517739269567943537538185097350004828749026840311742436338467455833604518150092125578255920742407183468369883744519870947671793483506789099601397525020537406353020043211728485797066716670245033979351649903835797581316245569767486054499516744771505683808228400090418926994709628609157648813068143174790434185642589980995402509939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17591337863304032289827270923201524205785083615732309679889390836304612343919349670468572736068705521629368699410810263745377164125306786941137358756893920358892662110193034360980238874998529026121346924906821922068725897199284740956767744306987412913997460744631492070043547760872327838584021093803905730843458230452477609699622382288692608104544669611771164296399092802255134489715555546932223779764504332884342548638025081904578303918090768241803000495892057320185445840961530456513708312154034561214004289051721591606362007382738084797779745539142835724208131629609537144105082607950221517385212082750159975616489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327203267171383848358821440229344479597426730017736681457325427423255575074906289568049747528624120159958586258717522955491602141708220746786491845036878980851418831050093659878541316766057646609894188039243826729171434298534633362738771465968941077343057473788559222918165753464331072277557653427157871686200157688651237495436105970892665825328899670860409412937048351232830175519870918753769030989282746138148686588037732730374374963557224029975557556823619747565772395167344174143769301292443023339488051842716393225136901121953443590857783697567064194353653835867963707363952554524369738048590575526758818759259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17383772392831386208073182993348540840005998467491051709601636602473864997739215262623344941794428492358481991359626266954285911629804391872554250770038517070724951126992064483701522784407768579618080119950383625174196344324926338903983415319646717342201966778420392640956938204144014785105935328992063577162804237500519088440959804482233095794410799214611835441436216276987317373957432263098007761052844213271189216384811235348525206599635210632980789823239954906497226086164155465317714625001761682910412899236351209859674796425517904461604144833071408632863506921118373701120456133577753894038202543188333787734083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321521570360516310637483007063333708736502825463446045191758440458963858309141397391263094109225953782771224818911305761659757786188360511740900338994961250243889618835387827531753095351549039600353155087330870623911860568981971488850992720614120004299439634434693843515638668626702559678112207311030183366576819986267077735641720313792284718676892431312297290369822801613642477639777838850468584028438061759387706650900251844972265447941656582034506037722051253487308901307696780697308974783804964770562153562368236413777309772507698853856224921733525113684650040636487835500921110526882776587812432978502473704631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18989518092431718339869929336916729948236952117766765181943661092273200555058323253230712337567224984542206686880930122815305299283025859818977641993736846426718498124378599112870412923866551878669473108583627808173336223416047512520322879613385194256534955135615382366943077596083026992936089389935453790372951687726462437400944143377769029611531853049940502092419275843418355978858382973312881312329810169848382927575331757783412497891799800087109959765802247412986760663913674985955405399106429022339979787910379438390077258906824479485083996755312770847516650679963010942254234362065559386189126647030361874553079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21019376303757791595914135973909683700141729654220240358951749125263829675507769542697069563892114663629228412939269895373059011194547474867329192634504457764249919964315633819301270147324123847633964118078714135465026471494523979124597579939369539113641307923484762916091244251717559697972620609950157367863510937126748499068360923832741429934073437878969514363270297709422261805712315852705733686309800364449479870423921288837399700343335883468714138353253901054119663074410529235761103554340575447248745973801794930776125936032991765674317780024235854287850070981531750176908644900109369138612076071689887303625259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16606418972436443354030920271785260705990587933228459495163953784653443633079942650973510818172694008121241119786421299986621708405957043102579110639783204748180018513728663903948922241688363427877735837737490023575639676504402148572480618145777494244194891543476538725620960678110026019313515052760992840040828589634152003462085738836124143014590991692691617553081662409022358127707580541868598422824815058713656277322128207469988166291226761042038967544108820544933332906638979892680713891687902233126035868711227912489801500316803281572576561229884590460751813845189066002639607150608132393552537906852715736955599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24087630682343241318568934160859219296463783114880963973881309133544358372399905643524238159988029938623709803797520470914834858624616719693333944898984199778055212490966292549741738289750959413444990651931591596341519438738019200798094666309265326938179218172133421616970696089874011876616804689950695745638427558748857520482596368917350682849245562442844823222755926421503834011487310625759261816796102099087856203017778036303193147705716615974311000205501616023419486816003827708850309682553999774548207656877781122196542501851189888302808401239973443342646219636621615594798386276054651641371967791275515683694923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370375282658558886787665531599955419538239562058799850143698156958174125132770220990127243536950806512062955461276544397924660666769453891425222550091712565647139897707824540587931381372709309729427725575443678445797233947835485419892377360694240353673618743888801195381518862692745062741970829075589992802393062560426595718009912414683120943156097808787048871571721261641566789387769719063707345466736857723271415422049472470568569933283698126917307374687603829259607648616485412804029749859685862600208825844645565260999409173803087401076759151799510037569059081526210748910619358142413467527869212440372258345953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299609385133629611248242401918714184053048998602408082881514678443391636027942040837233914119844124089493812122400477945055820078962528746992003096209028872243601198123355500363173304021689497238571264611767883711727379782229328708989620387605108180125756437843885392915639812413114446783296895892482109698111213211710178790766038244049893944241050593998376867743854538238683135296407578350909520071492425027925678874962601720142094543509920163967052295553635089860560316961739488762951838502097693847723967404303500159392367141154144970915027036684697137562954409756760574729281925734941394601609720630562256425773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21716216136520232722031674674408214835303571584734869237002208432509672675848170188232255964000133232846969613766680245669153976924949617064310435232052751845515109012279685183393186120871871670854630143780338224063665391773999827759976727787705491317559707223317202761762843125614932070626622857319506353767264599371399260274009790878121192896094251320110210173462604608226090973651203034686996969231764136922348771629163823815100689883498815339081987565194014029433815624495214659287910694710781766033199684202433240345195076650356945608782736731587763551809734409005660370107145341894509541771525242790179607012233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16812477834221567889702027079267982584168988203096813175882805298448895068386693019157477258415097368684591032186064367018189872579487178520106920539165879644818897763632345461859302298380411702171489883801809536719728355094542714868253790725895643098133211288190407935288481324666723398909898580825708700419706339718646187526949928290808244584678950565161247713341541638209032853416319289568905526081715026725775122902548499239988375424024776703760668394841999519474428723804098585792792712227360532687328814622217567183548839403416714829490233755313927232987354111041607823461686618824246247733916018669882889195831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290415911856694692865469081361264402367812813229146338572054916004780374765388144554707143107458008603770624958856500475643998268190867319197323156578605708884770942048344785639483531414589722918493273111591192633341391214485275901530756048996879423931188490927514989331737805832239529652993410077052074903865536342740992090225897452972520357324939888266814690511836883946195541393709017102541267994448441385436713835945051210435673755077109481053138946104088979972440468988893180169656881772929353716761750678321582695907316919020413564284752409706447243739036917642248522533347325225445230126247337156405666311349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25823996697113182221387521314430726258440391747871921124124969310694819698444635555710219388418647871346111569096794027031482776079744858615640805590317731440953072583211210472785269827820899939534429516787847841791499832875290823044363581021825150002032964668253017470718508283083257992434547167411877556869884620618257209759094064251204995703823837736000574310679270026596401161723764676514395264062113522007252897772067960272005711180326464049593081436834989060673042884855970455733151316632335688601911902920405596744219821111189931854836600420309856511527479610014224388324355796648840386082068119992170232188699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294608672843065831347056645307097521123867613658191932602875515176038997396742636241879059711167874946004075054708229092808706199253184913241976146306615973272417161263420378674542057068388202224799877309638589560244056902037975908303923027080267739999171891924288003839386135995260656032305839277286024597046445801059777540129902270461555593830565848973070037009168353368905473735960813058018325924029359043950567922330664494386227416210873929399109383356864976757756357858509619444158975372327834134351156628047986041114205989284425405642593916326187856223059675794051400538334749728979470008529922495911049936087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23809296343489717077571041846094033783782103760135135052580602337464083629102803610734576402205618486512468407569337592687398809742488331569016748367720496206658832436203053178490942695227525530654996685627304217094501847076481310459021574870553036767766294634726402406860328450655801827693146896379238169720070393346970934359431625299205675210171633365046694248592390511700055359779343092259173754084531520432981781314720084497150416094151035050495027292892943379491848427818734007193666123616124872916127489524210663218905488222280446430879124585766798130965113828416794207145396249411050688794557845294874175339469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16229191224932819602154382448087143512177323166204850915160990724070585051685584893460958013287496307640651988885429259806822064006964239703152598103452321566672878062761735117078151722771907442963574120949761994448008273549864171225101450183008045572027417345396793314262322511560778851118357026827659129951976435062018311776405451535276210787303402623739540689031974368895817040890208870453363991209944341240564835494135346565545151123817350726544489621959918637985363291154019823046493135530339688357594596185276006416467047190170220197338189418699897602620469455232498429968198258489164243831943977856252796586219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19941755522532752397259596283274658033548688234179271338098969862503830283582146935077076499999463151034781343411069260468465648761949738629341993031112949896350905526562475298628285259996462913226080962552141988368217816960296463760344850382116219851742316695857038437270208376580885385643222233890439654100552536070593412707514439124396390508306663289039251624602166152661615590607009134954461930481119170600699335827324009992969964530804553102005658866656139602502240799904660188476165091891890537926880386546139203431631853212058843220796098030705712890913274951934301879119151018826466469006957526272077617616517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19905784678758051533414380224002189658436319193572275609842681671004823010487039692963589061225300357072852767168988467437747782523882038748613801825085136983678598175832603986862713876831534829292950557831860950747937408076828667488462135301740229521827344487660016054613531759253534684485952230501299018323930624056508823570651604289137243971227591661325081139360637446043153300483924804842702727061493753355075366222228659801957476322047729963369854868407564063373672916975625721778459416804803055690609748154164999451758755014381665899651581640680084755321950045601655606308726940748439768224990057270680606551113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17139408454533044486507865231855623681926537598751259133469402018176917169946671734736296644459248456881821400345433536315391820606680015096592783167392231743759649736990065712875490109862193172903226209144724778198393115086429652037214913259598829612175617023172608062289418546535297967436026229684869243862592660407507914215490835704029273950106598290593261573926435204646215861430855351755095242077226160200018740063740822931769288079381975687665866864697800001111091232147791137581866365477174695109682181250071832944075374148102337037940282736426661552441578722814420979763868716653069779862504860392876713852601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301097937345647801609928729317764147067965768759637046758241353712884886766746342979406608333497875407837168396166371860741685057647137082257327049298729947237605891413614219991165124140503832771666612777403890460022520446899673905535500083212636168103692671150019531609367250003955772387777211698665334238838434910765941789172107138041258329963190200262059254474438934184038463209814801760507339472324601582779881538718382446462533451846108832105119062683565000063061014786440426230086350992311779779093141046556318140254623717559935339691454362657179097807420104641861335800046727489306619342710076305483381169489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21216299015213489758660627913434612104260832749093951689554199104775787024866321665841524068507404504653519068746024639677889575726911699173177718143884120888080657159393020835951911360659332608497325849004350935517291307702519611174848430780132429161071413191961166225993535090031744009284151030911593023618848570820770106272309891891620966860203848788267726218752615117716066228912708190382883797293224743708894607025745493500892349713779840612821045971431292541428650828121464430763210127966742688758142005320907618033824250216150397621891992450613033882549148325171900059423482179997663623302484392913174773135881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316713945183549027528785921454909081284837754563649429471525925814323222893224932559810449608668766508064105189791890805184542458273825281116630871091930066228610858755027626853761101520742055092480766738689149183878250907001145093975337950881969646333684760155624699578278345502932846747313137755250511416010790162207602279531131025746837776422863831455889263873592153200023050490610618227819992033996825206119256892323630279201294299957801297108012814721003976620630254812068625792357597442619022865631225504317990329897547891300951846584556642203225182234781613060206746423370449029285962382813021525778553129831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302746625606647884139485189866269073050709468011278770933229214033777057278304350912780192482934486843417588762929406775102894309829690249544749104810803018225885366831877594115925727008329360871822153700820144316869088662029548929919315713098880264065353603594017606822000035237659475877574802493040836401784521582224934083636717182249684407574516786979511842561383200314957519774108051592802678430870080168826662465495589022598211000912981106204445674460133481271153643141692174615426538541716085057122573129940516438447013971953558014505483222243643213916206407154542624383281015365177921575160275072131932129301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286046614000221553066496034744840370610204649009279543022583733329867318916056678848413104454757867614039041760686224908357543747720245563276840263817732124395579604618548909713437353546593081581289986804585276334910369681389209652859958812551843208323323363197887711982086126108438791022730526086891421945786968719865347456417123579880493575947393700445113116330410469000943395584852111893181772579967977173197395465882370798896966372372641987440882304409815927240668622935648823070376561528501681778154079362188235794888879482628811318727761185424747356420158358699634811277565806702324377730707015094523038083933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226919115425328259491887842792341025487961253445498566518884731812202767754463901370068929796932039580097920405487970230234231646302274187224755427669635902700002630303322324914298848667120436096929115750780665449581548351293472785664335015048518016613597305491727298238074560083440363255435803277888819537342524462571629891046761834170567359640344129321145825845332336226773646510881709052953878304179365554087918620715319542800595104468612173254073137755531759535487260608500473010765652643021710485200899026876719031158336378428977350712030308233394387311727033796646664394869070883085259589001358415583120276929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21029314779238178221116005459316428818696496793364393251607703812691014423114730216636909992402734317755208944943973386850227714874125627013518581835103790284105924339938876466351577894895064821725115889006417357629297994216336896626152898848508063491157996048218519162647869653485659331887700377639337351808113163808139743436327405251031290686751590413366120818237806335282674479040664618283852239591306378318147655381096852961849985385419661989428278668937070410050387407386445603140281405724128060918643889055959135542700198178456601243266932230649042422384818667187040858227216262841047534599669670592928359553363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18867361138946446454561132302744453582734622841763282579494835316247558198092984067229387389429837569160574911808164710816111270668186060959998949691405609847132718772123507693542405196948388641684489322742260769714349909349548866696773350803007070061633657857780950650228884094945548763997285689038490079466636406701116668281009182056246496133339744033510033227675958426902909121394803243164287446140066183950944100320888458160509317537867841476515464092428573451043690515721259787043899895884955942779578757994220464232915487563592288371802137045170762492268275777723063775384390580718777686122564675691319596052479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20907414163940316627374553582258956539563895901968121905324371123386414708663454081314773886012258775390177188978072200050798471942789408338180684949629622270369279840194113591087607892365558987411744125594102038051132655665394911825108256139222544870215743221450311334070268215474665497520562398190613193800545093405614499665596922751442593043701584685068915391710047712320665794323538949694694226036959697755122674504718743005678597029164732214779667806333052720639431391888461559449336076023562552056242372578849062848617706154519490704353674269565916174730761626485872812986766634751578223328836975735288549288231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16259217349937650435392818757260261410038941274830673703644201918794879205209830600682950684606869135674888513795924510377589006038066070176074936746396940213793033810103700386609343808351264848366340292458684559136972130591823139624249009028897600652541724818757850404333966605728752788898609466956314188860427296323530900564376702324324316424078899533421560327347174525503095438708916639664308915325009144606816652648726769059436242057841737823399709523282328252511538377377280906713925309455496043182699599316398823118287318891232058416744909197669514404892497284330112017457647571379911092559526402680405703169619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290931529855696796676573813818663933861809222946613035491411067577352365916319712488515294602152063166978986343965388084008385258809483012483471215380005387182242938653185364534808177817027139907175598439421920376337630574229822402595283541977709049935989895764260304187894557732296448575716027806885857867166892841875629459787647512531804666274856917176376575057160902003705376424728170180944391204691272516631597103437193609951560921806814505461870863939163081010700645563918621816156614649360324611843764163195268564576954549590178882724746942590746596095673946587763692696436410109740664285888332341149064373511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19956125011828579908955677280136722696562824299365209981796447760549951127209211248290038734293173161385620523427062567823167563278472626885438868142836650884525053036150732592756136360948241709398509571676062085717429206858015640003109531759635452347072607263881010910710822872577603752331785977050933714198892356855408440025235054438260292137536666296378435166599332023523395605068056305975765407198564842734974198031131925248547748490404825617610674085095950817224357053768059126097036976237008079652112906914009035684014317525878691122564117011673080692483445089511479237444525600170839001974330686141584400342119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29362930326788532019210027108070018840385003480995841654155180733386725511967780202025376017661927585375058892274359239986447880523301674875448852843343438547141406236995002782922066425812183003528238945953662234490397473238353064114463969958132432587585356965057398170195528428230327437964283262196090047786687144087211926150681354016221419310552911025411120985629958417709066250283596345849940420988625305524769067987776683451941339160684092016656692793905274560341855878860006954591209415442514180765070529283794498739217489062923155747587026091861021690535680638050219090936384014206387106160531820006917687491101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18084762458203343992441723202727913234807527805436003231248071911803034215401534333674833698437760147992592107242835636416688994783828572734612131245473091982120316267973244215646260142570045724460969804213499088277168353593836430466429235267241806875945727264574430871801564927659300245656513915759781863659684019478503319363954186085520144385131107116243489428278997090732538377577207845488398019223602308822375736228262628791524515009384060552326051109507227094963204994063765471598922608842795221746882921233796985076790324654032707569954971088443335307028558044202022319600154267387606455102054930472930371568689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292551303166830936923238247067806252081915082392586465567944324999352110199943297520863696998267165373243759136590389428382631190487751848005570495116867664324060916457184747132307547798422923721681114364730363584025650131974673582804943214069535681844211035018639424290342014675076556371498122068047423664297534543064536199652002798920893407862561127161178393675873171523804444552252405001043551013727015952540789165690962753073364288983808178594179368426154030993738813482116474891569553236699352462791167715476054845356896540914963772966836166726748292661005230012028770568438608734557834273280896852507509470229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20677427234653122695299026219257763861707605738302600798483022066325583543476409663211067537942166532424234674158146094429304582736394840908722652153980654670062585090175452196254221689897068167774778844821654142133631478613868264929174519000506852517622466011226517894164759046873080070130546672448527391855477996372602105325756346362964969170851278415621767598548573288463805709931048592213060385534060417460347733725529200964990323855531462061448287394219496033589075335370636949138384392634663958465010611935393240503274850252954324010256088528496031130659939423844015744224723698194863621664996160709450359670743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23374389475239829569047880810062702382179170254829783315100426438239679901526864567142408150150498771663467532807617383946608665251112935423088373548258997362861993479198894897194569519810333819089880862915471676587482600940198272963211162069205542820235874924076927653955577672047262375737458146246736222025004295113924571787581794883868198761961870758159009227921862285987723285152249924217572228078667956526550028911390944097477611565790020002615466617892469702150672175281727255945760319608585447033645503172796812668883861620463358789332664821071402861542515032320447483971136320826616600153567287303998843932581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28719325080687404649861655713672997784346292550189702980766198402721642409186862089660765166703442124914172916848782315593077231659899022445348148185877752180198907806485439847819530995984209709986271357433284902141186316300446070740198412684876054506634125364424075575738900638134780468391155733378457530857901397643661176675897990945562920455166510293918303425268367382645552325755613445279870941581164191305519014956292923291069948726653743883600898212312837165975419375675254222522101495824679258249914457700080391298759780672236300980879698165029532941570826598847988744585197494791335651912123582702663187834009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27270228933229898715739662073140961836045986807099521134169943049037536981466534803761361442183469679946522926428294680680676821051542196273280445322699200494418913338570713862028256366433231198835311293405778216420754263679738911123294544300488706682735397022409608723082588302621653897969323595527252037851389591860748299842625642910234275015727980700758808334605005331246713280403496899041243215034465243948366153366663508250548227968953605398158144750318933763107998750682543118300557791611673081650538085772653194530805551149564326941596475154359898986231644134870921379332973964166930072987367327683328766735281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21976760458352240897087238610796079699199322476698411752078977335154410477617529354877782604119073406541621904407175131632044195200191701747409805741248399516536733988891773786801392985433474099672369446680375846627735565233767266981051788400358206522168293485084476725306487340494070116507232424611669662174075045923607937841484729066270983546075261081618275672584345870244760190621159759306936151789084641335379334504700520221850026851807012550649403466624657008694403224401945573496305308905511662882051366964832464597826756382001476696125610054267773344784488661998077703641933503548601575937668831496781310561207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21198906828135226581736508736444114774125644595664938306736886343869188324799571471847948398420028815289524794816844932503776692096708928465376658017804389704446621003590939199492202408079496507339133549833484856832001780382022094844566624487702677726786042350627041215200341596901036079383186517876604486217090642609022037370574863754834810358503657983340164155450145898664491942523402108021470058150438141969598646005900179975499281175894723604038475499487073440859249193210235897407857549017682457900029551279101248971045753219239742663422086894526172982459722585009643342369379250039658070744818162013770805919591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25836931998377956519267575862320266486089797687828468084200842020556600512720633250781813933916344961897536874052141426131184261055541457640159858898479567078480715130913348845112847753093958511825963471765561948354555514228799027084863506891734546841752123075895118098733678576123098282177431183402967616371343900642516985684940830047965813976346029334812725591908875164154155467144977861822156639514968190231008737678075538733639247445906572657651850149422784791278173354457748106308292744254975195284298368546859855137354531851096550557040208918032070664621713525980930704445823198479438738541816139362766083358009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23638222399329975371964907493912756533109099254394179300582239406644078832812791704532537864110668637959169166734093859111500616975834361190034322079577618241600937718207719722750025040944098309597203026646373635364497879241377840917371432446877018102710596000264435649786204496954481385226903694978175925204363434164776092563655821681445654756222736603684237883064510107472673917656759948779287898116653816748536889176421738186266839371039361183354818148488128125419916640440873692200841149494147166630986071876222755496708943040915380863411249589074904457723300106419826390302157930832383651087323891659785683884589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29008739282925286110338174055608321365105561324425095744192232822878369376634506477692652454896520204367083384808529129692344677380545663572683156047128205881716183184784989784957816969625655106622827616740939840158543197708757572597293161396738300078707010718511165047269989706737030511756680159201136215885682726920899820656899287065742563707385461720018642324025219940699268078246605183999259133316300807063125532489059961442614924902726881190589511421439381376861043218663804277453855589373640605520076828613775205856979384289922402114102550613513292689708264550199074064309373242232782415393702518176611118359443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31007031055394783413259802416434825776096433192658173175708228540727780792517669771833670452676296122073492185318168785777526068703559410707684821952789933185600615883654924924011830266728291276635117805670817365098929933037920088089299799821362146130494970145823602343008976259884822559870663668355168510670148164892737071692572286472921569255100298537314762981904693362421793965145630205063966263879401213031271834532605317906507782603476308667241983751923376389183918285494428761713651675811655442341963345742874094140543639460179888702017568954044938294531678528629268674382844830233925148260637512012324495401731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24167941574287734311316682781001869903076780531682095280802480800123158111831865250678041010362403026437924806974662593398447810325182342339647169544413551151989657852741743887371083085751162600401476439778578666819765634702579177370855275489122594698934263334730222714999744496981152440844759385057473521708384634013718754255260652983453928056605098822708737629352125477920633851961321721578568638890426154795802802537840577206095015847787279039831655739895664885121811859052679951105963256129206309613168757432708496161503513739726431174383110261528275602351491131049957348647761035052892544915415420399652644324147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21661550689401253948602415489762164989154299584714390350075069929960088391442012648449376027570849466065282144164888790115935464281546851480570040490262763811108038273108484273963756747060309102936505187396206997571385577535611978811984583020569258168166669683731458102634355093242174632006501045951097799636027937672725862100888571821492671216838328332787803528334491918837749744197471845474765839976555458280697970765478606132014885278179179464439916466814381629820632983694341607171316543887545476715994938410505507784186345616535714979958475701621780939339079627348569810074469943086748503629741487678181201097973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28838543902651210604308266904552916690679906619497933260576410343342313169769831459827350036325250784941769058222128258001888684756084076916150206455803310966304964252869092795663704997278775866816376828789736654618905340816122540155726848599856432840092624575472434513284769466899752625051250656059790520464373044564466412797956453841845941783073335470710987892999492621456782978394165187714357446244452575502467765217671429745472264094964225462870766113101071898291906271295448985144294011402661214165031503513109103094261735811232138413141916173840831829244158708232098422664707492078526320465490288307930251648487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28278223470085639773829494612277699681791326141455542376200505346151895151021891379428555758254335497654767370268216826911439745955956712787384047527373748048798285233203664067079208613252999776530667093338310899733205712575347791511408715262962680186316451766818056870947036966114763710038138491189597122011263797159245082084454968500975185830067396182314405061076781330947389327171137620881017369617482077633602055607669999581595120525122947680728978256835083695821135406354758477580918369873386632189466401245066754271776215498694024320943737878311004185760383597772095908186291967917525509687635937181567196779637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24167741251103087137764503397154176664202292366353057673009325801594655667537562743042023095582713173055537347299121653734929727424991261723196192160944078965391712756600250045402110130936971666731867349949034474447592192546738838146117425006484609452380626310116108840701772442133236600661927390404021496831410006290661226886147034193267352738227833225164402524371987846962054347700316961473512608568478711262113407534776920712530308505454581348627583896182432846644054403624170747531958642310625714209935219526555146503193858007819649680369010345648110020368655215087690852360028724771061923280203556532295772011873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20065208594388846809928132069631104801769642529913036288623892775490208773550114048038685836799583746348835993226755974149382100416047895243529258634158227773638046099161389048235613110593555571626324192279705546517736434597355882562779229444589635677339904288522854163391271700526379926246549474351311942620551281527914618580046667974107024567592414368904666494263412301843504247851398692493415536738174421457729435876407833423113431871567640487993200524767497704428368153584352081834872468352273291776533615764644453339627865499434128174332728614962904238796987592306675654629350000040456441496570586871724890372077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23952468191981154808691851780144178806214476420855930029647500544667941523631613139581167658540932863290716875804691386805253152970099195389087371013879861897892327197745909498875912143227583775121317657255491744508420488156280954161466562273943546762386407181521698854003444141717716965518987379981569165435851519247280769355477318515236662380991477165777856368031364653567051398860357756390042606637400967249407213832477077479132714804373030702251411814859863209610792925855153228191448588345697768292046311950266839560921905823370729896507658487884850808861089741576053673142340665367827875781537468666754948320609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "29692348968043463126596087310458050085019230951337324120747959056603442378767032969156015605182441260131868366874808644758271336548830820023883727845007034529545239466446774918871233373524401159596173523026817051883071062415900182236592017353591500624328752677853663467089148243047577433997146918029641371534257486065479413071974482053955856711764586815146944634373773339021632706104658349891771897604213648533168118061558079059992834848326514587388168364555697694793626805225879522484535225221777216284450786721325135835469124822169519328003118979947244375995248189199457218326744308068787330457012149191428757884769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24474080602611190604117741023253857", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22556985222517805136327674465895322", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22150399058115698018761847193386908", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27491690579582521584711079963146677067329967112682873868940696010216204130009264570357113818144320632736864006063005595803457282853394908787353676079900550306439370345237141490515691682835476948194693008631893974854000284029342855522547956490849120598925454417066046119649704610232967680818949160667043989797771539164162966954878061450658051028848713374869144655599629379899404388791078667175913384765836378444518878928280588469371550218408694259436738618190297532727731862460810736012680292460693390846447924791330600453214979778430075488689358272024354946802307938352190153562746719070502877803608357645884502493983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23137921235854602067170702978118962566706870241794931033811920049576181255701597889274347342236990771731216287819542153794930921533514256929212950438054610835219755990137174740549084486468328457234833169635885690046336532406348189117474481253205626670159767720511921099648229222637328699543464373309470162302606936880521024267909795008322040969109246725564953435395550224479350821026425481186916781120129186156903809390129058080293630155636486560737784447636143534793830057288932938909527122563002885212262694853223921582381127123011714263340067440830904651255584507041215772997103444019910946147951012651031087851651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24275253162231151651636807912274710404882528211527163425657095255799210455533208570239553902447656474651962240782439691964792034826092199361212435685244995698636736184299014838531037190081658636683050782279344186897068309743929333215625510305992181362429710518788002620787662645389850821564259820102766645490973002394182250781823771194618591015276565787278576900491294817202151989733641307807580035693924977441613240033927252251133978207626238864659567063205416365358888082619510598921720453511073277140235442476486798909329032625718353196349494446816179159838266396775992007635434219127759082642615284250496096604747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25121209039126783732471422773292217487651153072886166567542343744985656807498404410041525706036152257463229047751376981699275978087370499752559202111289722910897949826070298463618323946117422172571594368897779401315462953171641696842915026082700659594307889964127004945243126331569840316941588330071130643095381700883130340236736254296270759079499028593395669325306643589137471044851485157121253635462056719513861236460885466034897395087407895906697954239254419720851403582131812328572072172313300896228472763563480473229637372045913092936097273622343439811843398351072453826404282529020245563167025701133142977476431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27095852199591927293392485797038769147684196611727988804917083363498090979240136492705695483949617440939383335721289167660727239769573749588180559452787989751478401290037812566116345284108593355930369645100183931175754605733656091220095216641909920041299132112995652252825963704101329137578272141768530265777521710022770451213527902034811944411868595056767779279368595940982331638810374587026727721577779932660801264521073613339609537536728611327493463195918010442142768955008464997980106263367907242380988141641001295273901333687282102654578974428986434497664343934318284170026524327923391528657514503459145257546793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25790335433566085955170866698564606443838613537917648587327405619884542611474935384537227957940225959391067067080982449237276167673515106844356705007593719636524398959315687171057396577195365728124717160765384512525271049706092162122583273021577337899677269878666023169360540571709513718030596275205779361884855795929199668514672435278686074853519933950912799004934961612812681806207826870863109098696731086493036817333283547094428223550506805492163051441013026117119713699955741830863718448070355530004483802802306725158241750630651056616740000210938147820526483727302101520212498072063890098391114208312566602621961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22621339183722652334020858088190562561274096924472157353913045549102797979537985346944491389901536646042735771711924023304656229546860250593751841574337343514551900345111567951923968169666239124451195434077874094586638564081440214813220852268311752110124056113043472448932418390919725853151982206991125228407829708434644262082822974798077943697173767082656339542634616953299269725675647370029889990582638518200579431211900688148892714933853909208348172218838959030010615077806688271509005168790954130680429677292230169483222552559246674320896069455724583934522419494650653713661948969411667260698016407661187640843649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26091113260434451229385558733542316636414954938533979244412141809622185741929869393073104575951754471342203619639824491089058811761069327742707882611111287143356768299720764185267300932341220173099652058350093998219420053349281252834809163637025527653903479471893911219075561150509788485176208669194964443447048497022971873394260619986539422409000990016827103684147073160688197432998491135358626543355213310662921453631446639950493315973984731775948931210993096733372642923517672440767959660719202051323056853515103008177164029433993371979130985506487879847891944308800137975109520798417753002170842626120807581540151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25220625598984774748194596377828364307594722153366410591732467761460331329407822545001330562091244723106597432006076141811825825602710305542294991783305166591848033098368049259652816480549207872189969076259669464476539614640356957092687777452667246838821135793414348223785725022198192605879800330364001560227606867724255713601802003599481170989968559450997227320844537704962097887741580083691813175151746389907209165209197412438548247973702786231604833627105995780479478037026396913074066812365007376807784910342851194395688652617464240234672034380877738390004689098157227192314138230003518242721670320282036523428129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19861789848148492465003533233927396855637284106608933024090893636420000167772083845851928200311742734415783432972255593127515771393577759935005041343376269467955841035809612866454355880986706341798045832040270965244000228884589470367563954519419412588564673314660357609905614650448460261013433440243829337866971022385966975985548221323059787383325013222576743947629499422734578701347183288459326183142447559941668401377598444130889456775494241196655731147291763785508674359172450701515281597845252666198231751965122756619512336079676189363529502546175410672977638949392993017667873028450360830435543256165803286421387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28161193290901325099822166179685665470475513326517833656457295868622981085063281272162988622411704132145316159373371412731057213274591567394863953019720930133082692570759864832212914004203076390447908442111389139258179870008139584226347874142690985259076088121438991254591059761478549494448407691017527798322248695174275955877980621674559964817057394782446661613839844446695044542975291673162100353808270842573429867785380838652661646615518983506173008664006269686532637387840469371209477420736694259173859332960063572906608458108041939773098060982826479208033409018480877102056291391243523282508488507630082238044443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21057772737913251508746022093238053971630417128282364812685437215030861548619065121812070097733650646258039383466606826223699156596403006008739978842528229043536191210391037376139197336960972450390082332197689980219333188129890622286858118688904027763156973843582914874526434122892272989685129554437628210781591724724005394566129716407620208074494479353892727258067263287190950762631548215507204732201646826832155195317321744792471869613174478865340538200884223302382447530959098121797789117700693577995517480947913749064314714295187431405026395418703495236924393632378237352733345232669980183105765072866819248327129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27694135047945200083938743135341042805569916245903469183865302471273448016265277887294017402717960003422836933577915167535637279122231783695434724316747239029388108162312727975328312758660573289941895634382457510820886129191176316225218990265445796132917591054531637336500102945175931602514692513002441846720149130650119294963773200929508562811781528181677074344509605335334121565701049165218218325211426343800551937687384639310403758499095351288619700520393948659099759486321462591739494890802882604457116347153966504721245849425637093194621855861521117703411361676509218561946446148961770158722236763370965555205453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24381617832488252601814676808024436111360054415613731710122215623362148414272857367183358531136933346126771290874007912190199228818524681081878419488775830242874855472284440860081883968603861716214997862497187306934076538735225149793672312987756857062027781257664776874262015245179408539910258355865818259966578867839154779283619861624301465212555048119560590408569481429441083369693975442421986078554406954835838953995417068910124998633263728240752136481890494183843084063602550808946538929669447381692517144670445328718094728262253338167950893911057888818063547988779671143749951710577236717447061262404640100356599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25390498970838585877869796316175637684400147725701945635400872826628773842336239470767180763515563452298957955272899037382129076905275548489272238077343205271409217775622785259665309627476218988582120122240186682890998214271955952842662518116355704056816075087335501170822025306088328049538637823155131573784964239574337663957668187146629862813141298100150592719927034989060762418019117556745779194304158451705646719818161609416303536290490980422050748752438443418474324553814824691486086680882389132614707003952622259537716243368816939717684902832093192644653516033394314047326782024116446673739359531698114617170453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20271138568240114205176536614576855276179562188106353477458898913152171377468931027533205337608247526958036393966813287912278960305721216335634541668873639740070920079582922533853851036870784958014252903840258401904790096521608698616556059271206753555642230675528610516058488385755058084173363667311144910305018923663788797981280368415600195367269374920943127700726558227014883277051546835975368275724813533961208744525078064594507453012007326639609713242860477275648875153998433573853149533039129683967971653485605727075774380342415851673756362416151937985331653099095063278287587820636317866514554116441421012071651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20126528952295785880457927254245107398731941137429113796357329907651147486044771636556582577410670370676321774438591859994821916505142903827050355745091831750381195199577847911915209939115325159117630409301270654822015421190080616855034129290284492012451181411659235053688895642698659056000079700324742541672698697920432070923131391449071995740432048035976827789389783375521015477244763796585542768374826450382827980336432675824689034600297958999258499791883727492114559037384678764232515345837608272084216256992182280760551704379447788949945559699990615117398402528749505646561744187606134761693120016548302776921971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26456665595656136377700765068130323229748458555414034064279849103719485422706390147641321162744602364304524660396427510469865282938790278745845871407907922727331043177694120946711777334576359274559528249832357343102504907481497268254696842535803812618524767352787105982062814364259815684342304904576295823877861407462030561325440071620384725377972730001814099425882493084593342713690918415946307062634838546850380397981394823523144907479890297494602421687338094577856355277997945734482074754326303439849751509481692650423616109967808178405916849767412658066405983222412815835206131180166033516661689470844181578662251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23115658915800756987974061894353233213607955536996297173083378938627774419458412578853268343738428244475412606153314341506036904815719030645028908257642489241256915180208071103358609774656719531524674547832257246460368971419195214021394798580599579810874188492009557828223799801126369622332746656930451556087388818556164449023212197852461449324144662070513394147211904603520176522394377838327537912941543862201277253567213741514704224260621761581891001551014997060735616413562495233453448409444044007797251803237082898850621340575592214180330166349106052339553087513194738529134862473478464132214268404240769485663141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23385989787802572068091053548461205219104835164808560127396823184678285174597693735602337972377525661414378243071101114988692452212708169521361227065345681803047645569370726464033966488466249309161795687352433856524697841413420288933639943775892889802972130118573991200275704586682908375591084920001163369942496327638252099865211229973075233086323703071371213097127488144113617468168370148617873539367900359647088896399009596932183645393116487924878157321941598689979099776278321506195561517680177006117195046285838901567623200666418753412200389876606976421759914620722018579861492123317119656843946531543337832116681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24204130594039995518775664933818015147125996608414555292787386199584156060562337865525215298743890399122203575819246391677988542676776993657476834726049765488005042237178815266767954543812146840208835917868493040220258582927125326537430788601249763638817342308657414772352369218358831293179210658299627691470183680920988240048940700787329763165831272852091468318093599383649261013661004188386046472713287481254900532072647059724481468717819049950889226990093209343597854873549996918851975421887030543825304727483450181514238954901479926953251114512038327706084814605769017638661521035259956189589862298893881261010821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25639917521282682075220577883254805764184461944228928915735607820875574301666390773006390606777186076501911175183392425822125426720508130151573333009556397201311034882144015258477551681167059478825071735540351817001068895468873348510445829152331631775984735336048739685946198784801162364578525649126071217479805248911768224836277986956819241145839163599726561256852787890404891820492409152087074690793407727466665829222312013966137510736743974866639022803255864581277389251512987540439110750467836800962070558308803970315042131683906547156932230792770127806283521831116413738414378775784621893337271835794172062600283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22335988749653698797224186986915767454771235874022466450354206256415556394243698656947929449124008622071900282510774688367966071193721327265507613155639123338118760892792082487988812294683599673381316865131083581282154217457156791296143726451589604827446962800198742106549352701972506802008539198421231769725608085244656324047503565492280804638893137246411298193131835701765821250347166669672709418649121177568075156637784420958568407300651656102434832475711308775202471522526655494559814916082098841498809124349240671621271849258599656239204102888492231056073079008339600542314926142774402799349910089727995707366299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30159790582102598453218456617132424907207245434415059736334971641781248626282143268946219004762705737103451126556686031136074150635648036037378920221879041205290995515587307384925007789524244773353696954164933759254425249850530593194295764128935854064189701767491450992045939091465873911363358320085938105809240045066614965082297410625617289550970262318853626943409729921201700537695671661633946493367459825989440851472538530614121245524360264310744374199855290810501060330385982631917461400319195068113901857071388512563599214956712527756123080554837299235024289727935343982053385274349209347186287393073642579667217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30572578364219521395740367131939987127234929373532051443915577124315314633572677864150324246093852384320650761097028543494301409173175114511295612236373964807431828772141989270759607312522535582549627051050874443965757853849245747538037923161227401281038789810178812078620087210072232224439105217659021227379787456136852577936281972879571954796557084417536091053308675266240046914868296840454461451256494076611958009810754663013733363889421165729304657982075530722285948680364626692752570950574179506425270982649356679342905720631835283180841632212650068882161946240565645162939142921680030684903900292884643750056843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21030939270574402188678661887140794947089893175283838231027581009089600196856802738284753979668214910900521753371942742795334924546468381260390373845742525294499177019574820766930987584346495029060650446891236911300046722883209758228192091712612375744042381583760790289030112320450467522021048524060192722259783436382159425782762957315562995431941913835129844192682555936589017156622894471736404147729591888306209284280018787049101803014040061072768740174198815489055322037260269228870399819801932398480992424596872673508559106232284038788672977253358125376291489542120121190774683621527505643807825261568233741593217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30469639775043538057409017770081536396181679198489800046705247716206981318173773926155478893118962213605821501404585565650312915277791223191721271940707166422207201138995388914826639011827394704664995003946832816419179189908070340820491677261541703247372142054244107162868580384090819307200666849781399695646259155666434777742572640057227995872248989500977967113575341333449897918264047757006083321096836411883005203829643634012152817172136122891854635018259108405245740477043767813983909571807764658660784084113810999217792743821019813569965006951457110996845019236202616287847703381510903874121337159897854563986689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23869934149204860905286443584875665322771726222087327349701239529325476869465265937773791263551764127679488863474167643786163414479411038393688588281875823797515255399743556581924912823300832570121628727394555506794021361354918831042409745561130833123086411940586844672365202267735048227544896228072850720781220511352963015898987128266019569774337380600857460333432182969110587389760939989337591588038950618308068228181567518973457935308110930026998514508995067236982068982889057304289029544266791136539982953735752187783208135919598987331783447106484708201176674746286517557162473168634449197192724798855726613764947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25855690824937527891902727370078387628563832363444535703853596050779553920123250386800097704202763348385396959196988157936552695904635738798390640385796309654587774657805221879989096038331168141507762411284507260418510635025078336544823733577402555507991483882900495176931618208584748582897882557348589710389595119932386505448400432623099327341258817780101175407140895425335723072479988298241907267119811830002310587259334665407402606425005948478461472946306334636011074873782011213373546046190487096337093068126344070020649885972376231784171936221660586457903030453897067756584581499981561588000364226769594761131809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24387524863852479339358835788311537294611800112648725722202116383961217917571176731323323796062316078546138422363173296275513557583884539249265665752674545076568563844972502366095578820323829929409913798230105726028587161961950486769007761995094503359617076625850192882692009208329226189929157337278861897327070613615609178325523785561164600626464106647611395664304079329430623153140889848414751613180311251324594088391863181102230735555496108376482252126965242605396747960373994578187677805923626353896967721502257806448187438599249852873215295872038063364949158556796083595479768278300283704594581735392063921012533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21608353058746151273868172720919543552802404855351339894590741403309688900001208581664147625276023789259830255036520673735324565850022884261413569918329952242265115287754244047863107654830781947679491286945229089481712983030971867936322114228127474212992102607268248115232602716470182902132947465294865092554695333540368957675686424491174480915953863221134985242299694219382623505288022272888588462760069579436853270046332563759384676267538097478212557260479728677593648675743601546100140957786842503700556060394521924062822527209594782482573402079313700721830188336121725285454930796303884357278088511178949005222151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21269013228833547922577074569702229406904346364821841383946013438917653516502529345646249934225362011168264879133482318597317324804171681865333194442732028080532738668461493611085003222352304655495406897207841953261430232971454918190883098137085843759345743867564981117155251279270337964138869404045252630967959886794309312529522270011265376195271437394411079882015875309432199451065731416377395691609707581102599995359074199437989389736756645739999802799451625499076255136059041658321592518748279103718712383938082606867686643011443819024408097011857808402277929003885229573711288414976466243102474288187234863121481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22190135247692444247539729436436072862848598329620488658952298499288369586408391841466318892869526255743496933447882367704784862861090507042293115603764296524610932258189404072619607004976532939023435348050952181216418965464822212532465706998028071854279660369635984713583518752456839208863142722563351442390156349734230394416987056125930542752363703824008739179910597976888759202271803577032847699913462483540410140968134379701119842911611355309124468656397520217102326336720269565297231136628284279398860190576521147867329179160252786066674316550927233874854078859533965682413007923878298588564858510103314806375117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23369817784510388177020751269486063750876055504260457724174360779880441544649762460103877429084495855015587794581125002143296748067458424149742929508633442459546871246229721630152013848753619067294539828071963760462094205658945659735857824323907665820618139381366132930490313229260258199471238047906812523536175023741125380278179353773598697209768857514475019923916989889291894078940041262674376891487771611488788302236780315526745902295551785629589671364406558781300806200656332918110902323523753616926025456712924493646120657493896703142051914972808209508362411181072775630880452530148415807629120715722747500095323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20199884835076144502926897812196714066287127294851162165412378990397068707461113427484652586314791806318079280855218524150584709267153160135550159646452730940579252437338780312523662228802672768484686894006791776986018402350368088629060451067585056627663101374516799385523990771367833515299984723086653821115462357625035494714371783473741421298630100279884723362269932744569201681060732255204707936694063348847420643585941499293048619453762087012650809164838536300851974743900706831445198624823764615194103757136114287501309470878619493900011115407403136394871093720998393602607894029622713248998132607738287843372631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23919734323139650443728068897920487544622330782034115598415802166246588805407597035291290238357986671250987177530596413622915092088156940046376083792975651616247902171491952142255632375234924752702543787377829944325156987275944147147067662133975267160725814463394191856492590073322728298355008226161523359305321621676489577739969510190494653076619184667517670464144244894636661520253039522295846444277461395443453896160674776692832604021390300306086709029969101401969830094695718856675518741800204663368967674542583439030121683902339213857442023230841809991575728613926911651189132982360445845727080825035284775083231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30324755102225261262341136588556569153726780282694946673491506939425678849105840031541898808505064495622347288868102243546989991132744850323807890446841098084001897246357564336831453735775416836398316854663436922853632432557851679561689453160663789834856235055831227804186732968955107716382209460689650856679247747407231228315770689532912340368050777717859404900733313283268336911755952113748712444300334225318471837169301912916001190445102323394660434419612608278840776206657669658627553766340217563000266414924260522328506414740289766214731642389236985080135802220586935456778081250706989173482990300756920884921769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24179377649538209174900211975690103238471955756135556455611014244190715938649192573054536316177041108182189215071485499684829220807198985462674265708628814536113870939932176425147415608402109899519117246920835385891146449613803457546953843497747428172720884456737220846444647596122234870889908733878619377192444465738217038912214927242919182415135809990159599245896609609969912464198481545016737857047643808840623306626568095153940480376266812919316886535424705105750770741674044615220241789120950914775247077521219942748861694411024294329107422267772057900050720053176201294866001123517356348929746703797672222544679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "modulus": "20683665240999975184458241977872849736662534201375694056966080337673732855239542619591546354067098752951164610469911532502139874622203903575904795870100639237818338520902979458535235816745447072003627813554168373098091648091404761073610279061154074660083142873919481781617567599527732031094533483001935338630028929439117707739402365240845298821490985317360089813365104160125489443316974466597538310056674375692400400377220564302963472489524867445545900195575086144338175798592850444328628606257590876565158635442589248192549618803912811429123950682644716704884757143381698063456035667632840201753757774924705833821329", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27928770466310101903915511259877709009984773603195094675841191503451044281873973541668990662263728981670893433179699480779585374969994446724531798281394994918384576476382193873882743714935760630637941937839320485943264337911969694118578231988393848861943063967152206366652389039624623970406592069322629734450051575145853454936641376768297329669574435523941750793701696279020885141641186102711458942847595447389820114652248915303781044731552285517770897753927462760443500628241118583361139360623261186313324629324568305040671223613263522122107520033758858429508374150664872219153323456381932452448274785152229174188413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26903322373971076374477855996636061098201787916659618566332514055583020581522705463507142225905054733955238611607249874083056410857654264059849495239027266753420580912027925136447447967342458253130342888057233216747881567204848058636280809506374537147698651648084663652380279981205184619369781651615005166813603086874941198418091577158239716079433495309194605956313621280402050017397557417268052251025586030199512260631461408977283849947586552684312049646363989906072175329971439038295277708846387212678772808360110715221751824601005531598305556881725060665418285659423437292790967635307941274266312074035511427417919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24158914877733243261929170894190790743552853374395286618716365051385425935911869838683851438765053682638096346579567356886219196291399049045539866491452537820588564204009145568391828673927811060908556128306103780254738217360086926870559765830195100920410707120644354471358412242178349571792429977645114866692927525972653750548123202092428685944837967780397263439422858451952651338434362058069771481965234466371812198630904499585561375259024106971927357110343703303603462231484803374840449031708300931606288313226566075399828424203070765981306256657981466840368719034274811299517881590367147673062606852318677162038539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22520762416431298299772892268780495843380991993104178628213959660130416401978626528803475755014605446703538059029553966706839046178484250202454492362284526116671797013229144884629800096291533730973913419830939222406326599061529014156138539686165726001081871816892714685907270383839139201211508818856910310834959866250300944933349463991142933067971114660413723492581348180593499110594485770447720607104169187921556524060533339454772462743171835011628954665685121892541637435942763545183403414596386219716230039227786067170649767199575283521528554288696292864627515414975895378718731297017166514909723130999997791614913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26476240800946976846949154477188602282001524036296288144582791720795552357618908476528934047486583475539675255318006481696105510542196944417294353014401471956443876850107785332599357142760128334597833561370731747150821981607987902730800678920738433314725955925733368502614254872710565195922382661425127517377593604312610709809188028864116829556784324553336561325881478899100873321439000243614434675110649307093964687727226808096879046711706201126398591699502881853671017644806691304594742521216311170565332473827567500694085251536242467787142473058264866402458859736133695399566613420729674508707657331771847922803499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27685009250317743411442416402691652850928974023668745279408803425621918488754122348784789747903320258531124117550940368713064061236837750986156984768192413718193088767843284692584880629525006563515879624356622314652051010715921711320335535527750914609313889759840631162905032001101853252244198251342477520139185593121448703839464896728492507752229956003167073978064054667197686601122561433088225833893555258459314557006477407047401022571047885219373369654153458929827299035531135222777735113942420407441467153084863554567966534998538280608479066498434962514167685701109720688818612848642136497142427361273559397449051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "23227502292452732536938775886092411649683558026838862675861489968764710829087835239442795986279688363671239591548433319054149253368601241039366107110630177202061598549087427092066727549038112136524625724400683137014460636974629443468129817827840927868793613023639537823376830130755827376614440150946095130364683489370639575816587847052367903544694373845720960430795015464949921258084101246620893814257853495298820455799096587917883840172049249943561729062353019131181087857821716962976122142899427682301545448493657230046650585359070993748467985434290097916856217063272949299097644864516230693438306069428192853511529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "21201290732806651369566395354960558136589927273693861290243250303954844657254780207185544870451484895034769967017278121697338164104749399511762569668303521229959652882141442104024376727021985263365258954222457204101076517250922680276850710584214004127634756947638048142873628887452045967996531286801497215214829856976604718875711569049870628198200165037123839222328234831070472371834728613418648915651371538292421184144535068786622875748261292664344551611055335948300891328256687940283361514954218316739222260945232576860377495466327825214718011230438345935818267908660197562157207571272064980830687803856774669418001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "22249701408657500331649093359979807063864030890071965744199186088398536433609008705213066269675689775308717994833850463434480778766569493895993162329205146241071932320055740253678161038407922507849227230633480207059413119228231635096154267518719086966522077594505479437037285228536938601314517585145464060773516625058129765630412847298540099987447360307769268238230176831535813186195004795847814917208349920076816055120514201238391142346683288826034975288933086135320138355286584421820848677385459908464704136134798054406697219397681714224380323350072549383544187089486969001007408082306911435466449473684216326869399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25845642787438387373275841002518699327118783497771958187340144979786865656128825223500523050473982081530687573729886972450506218967248681582586904438344347953558908757049969705284425887512100330988109268408342803646794477515463468189425092411252464224241149005106553601288085240967064465688298319827667620538259729381627097702250128666783618872433045138151308032559287203931377772623214105196925617197684898607752639620939148008617861481513302201869139313255233284480995999755999081874917056659814737526836973126599561168311490007097428416364512820800407749369089763209143692099319201682812100528355750875710425313357", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "19701282766834052987918853267596822137993516761274561840050780481350709748405666714872459243060344762926553816623577415350073458185947436288628355100674210058186459820613383133520571132563197899543307617392108779427598952395809653225796352440680895039881411960019954120752453472300402035770156493720715261520544991829463753480928493131059360970846280096744029526586885002348427846974995287916724034606856133867382567042977214546311085910048258156255826330272781355750890583319886663833482005427319040929440182984110495249611678061501251995522201431382840628127049582697563834084529304874575902269257008297303926068257", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23550975245646907907847826170292576442769086259125564131395456735991104522185459464912380462912731604580427712973210063908791567906324036807760649222571694818496025471389201070656889260766642882179159138101970060245991305210331464389278264010666935355349117292203635856131672452317725802353996977214052963299244623078414142962994021566306531539871750269182102802827284549407170936183212865147587244727718944739289377008514462835252108037828700323523604546124419072515883748517809355227766023526969260571055400066283619558234599456714895692238515967403691820300558374399520886115996123924787477205888563343574915701187", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26592072743206730131852618530110352678898824203864223581535219163357885975814978864011808019286934720739253641090713843796792876640768017776361278447512298346352571871336055174590167102467349607258581067735287023084132488644165542883901529610151085918882847614241170705914564341640088556772684206802996468489256877960065075089285710225840273519693386039702545070188254223446450862675873449431069401395921541319894740042009315693214004109047236565237514901243533253116937379967724649575644119726106931415847081055186228655931473858544000155037672264735941342970604342625941842917335624892487850521040841061437551554319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25386501607370175788314335595687229359854795634915165589440583920874877228105783424253751565269275301269811299466753910925332202383376579424932439105934134551399818995278396927054507040137656062157501518313144281027192239254642593681173173252390496036382974434106293156481879393319511932894977278545320457111498709273800917429474417077778747034915522762715029589263593268604449854369681494798130320249308960404280623259091651053789377235061285942669942477029411990763148632236880735065752821412556017094415293765285385222341646289488717706569270431144800829052359976767112859773275950159703362926204427479144780800487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25642459790977321102673697946218170753620198200780943710411626397718422343863972024189340622149907816157053091859584831802523134679236179960969478588890395691543834115036997931512298413650074892209635350076044627471861726911521581810341306404760363660014764580287228628488638345946871130236328208393694570369989041843083392406230367445208593885680235088681832343987659867643987531486428919716695236277818144946857650150924923298919118971966378612070711940808190739426405262520835245622002646813857816281128420473169774594929188810860539681646017060029168503119074932693146711089190550406330090947359210816390741432157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25522085401358716026757498587394160544026634295237688986429522849343695506018691554485678843385686641821222829456520171422386439047025948388629842826655064439782180120690055555805645816245001944396303558300464029513982864469127990270982602657672968539193150922806681277594698530949758968905489387232467818267217532039876950609634651381628098097035536403927415308355657490899991446417802425122408617662435166092783055521600834954249908398244244354327248062920467203712560048830430591790168951143387197141527854683324292690164317266500949006417099347218529208259827129359851699280217580336961857362250556164933899668079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18841549747578687888904504680727515226595972027972524398981158122102683689569749011289424068876888104185910074469343203683888966666816667857749864516235504335299313134998514381607185851635692529298728900286455147321718979261658465723085884644833522646407230910306209452882465839213827084699745805153241264068853144459042990991247084949330838031412082507897710276267118695116461294458324549922933635697072199154884968927944267983520379228429008260507907792691473499943469953604061518369817868748498563298146220708864824920336787770894272242266801581043223258311028931271074219457342087927132020722660461160917335315437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28897232444137148248632601841522235276719560657811293018302528257596939069039602665206061734362245490518235305694926556395590214851323425913050911992859848773440285130811540179150720749275472236150407784067219053621777380451910743535286298021070189062258695468214521320181172404282809040317740570534596844340247919266168544885032630628416374876783327672486134737407737187199070200175209241560624184214505745885348568763208688736713255154174703834854409150460028251095979063044941866230462229951323561944209062966225626935529366306725706651554416659691224993010709662761711058217041944829237694119212213642591605239389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "22147464558408043858898742642165511785703201103961057842980938692888099911594613412907603825569909530161285494131442899039293826678486842746419956125017620649816373279986598512876205188756620672589786811636892890297255351860614102006293291519217170114221522885546791726265118527637402554600628430601778157769186377765023856023094421549329449525545338301639232859606708856992486987871684324564047246895612761837237239353463498259972171005254145421609473959222360594195269267761964968296743694746082611514503910811772156425823623428556354667045522442696017169977081716733455623036460880571808532154492463379357666724231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16190026883851618615775695100525841011187327274939828870430796785997421469785339325771023720813907590083136776855613076779161012780703762069916066323297273361634378754712383535713116046714551708375229834468762787435531827200296174574780152007950502014264124480709174555906858223255876012113272411364426032692245809008444839455439087637917750450298673008196769868548442114468661363371522394415169841600221187121221221982126348064797046721692871976788838011627112424518607284930634162813586185108909685086784697649326185058235259749624237728055089790723933274231259853929483488983388058115437455551683342160712629604543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16261991573683937260558139734979881797208499028312853420250469086893724983910628372512231958444380223185233840810603982783192370608313131807902794154508256751700673379634272726394966877079242827578127043496362680245432300932257776436236678986922971641540412263745557879930294744089735154810726198334030402747684684932187340212588666541884231014964381467969981630327287099759832662749599252425845150178784864955056078641499563216837979612830147907209126816453371318215731602570425043651818138513535882828753040882386568441041629616710482059253525316164129911203510501102651066537608082785531270969504391973067745639363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361364066412188013534248280307888436334032695197063832691104833886062869520786224902744315621797679681003971869831906995171605552098968659929619564740783497236815480612151315404932937314215915036070081850914676911452595107417846831220333643217021765047274888959920355434133346531861102264340505421983993081478468845631488893999806798949902381475050046624392915993847794206191796883423686331577106295904211709350725917178540636674468845982611865904446633443888991750933314408914410303313036952962524082896737610253894391291592816694848931670452923560163006224436214889443895839999490440982594685743572035766282689511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17217314688870491750457237542378677543992783473319906945248033927865542265694827086001166037644752492536299211601994009800931825226747730646416166658290965902433002428254400060575564537832969826600271685349334343990324184118589512160402913653040142659038337464918815909913100023517435335568066465669776870209819416637847777562430893927458105215438680738511962125372542399315716105619959422709104925975206113816276713781022872599598936880851244124116861414721552052397281651590346867751457799419178440743127022258256774558590981235188402919109717096927606697281278640078129254216976803259907222304339637155989875939329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358493100773225411378705447212072163169647489275115822794976532133616869610241576207381790433098656448778342308631023840358376185351815460695436409928313801528053436674912195977175012149383921876694857987273175223994700893955680731541429042283342087283713174119208470573597442042355412703651725761989224046172753780667772241360590369571973604641557021618780691316963667744754730273079670761330456879246295167623656690988077324072249846664171094575203391681181630908441057217620897746477292894727205852549741776905845272573431718090769399902211161473364962663495753957964080391294830065682132311486794050900287775267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22897927224416376796912185115420616396391561416697641270002443230033528043978064050264180476151389534128175557132226559464514539231828602332846458858621639834553921255715718295294125823333753210341781605082525817473168882427983199640042258771910329493141181012264230351761297115013510878157874885269958217080338243109245700821258622169319127368210458734805705485026789787833843243654387488298547843435953852442046646692547749298744438737373251619312185775165297834908044777079409235914806083224604810616060300413299186964345344137249662275771084889610814036089093132669457198314005052976150390726863271532839693252369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21806026799986671794657383714624585911989197635084688053700228348537251341308908869119469231386710073309882611549902202912773311493316568274689704101666132436860012761051643189034720444229151490731160274225095536739148700491375591570037478859677302368575646028470223049181335788385227636039849571202957230100476718914494132073329987322301962529800005597823362240002063974699493028404503694572859048731527925006835274560760763839025298037266721115124140055716568419004884774688684242001479624784788561246283916310947108091946717990702385047913088199490544484614324261403099926057411846244625156642991659427330313878113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16418275527155439663491048052863626381667388738544791073131534997507844431648561757459056582583467865708459383937892123558934060268585632215041791179282805430886683752536947220667978245409610392312879819188160294038012271911155014084849077886331535144942922229612439754165472195963515998017516354181823178507802984416176265159926841048703246166620225296159435096283450899249342889888393193713513344632911480866739694833181098679709520613508839685482925076927918507231738665417879609559891242857673878789002069505260693859060123429247107725463070096262737268306639998761279403271688299579106861798974875890965111497221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339678310057609012957478167289394358011304688977012494333742154960030385844790955106949757027723421895669052661114909829003958359729165308786259849187677022152512133998256953214195567127699069522958449674107099163043844931150210753309271773260103830258399726786592997619161057459117015707051732072271219110543196919768516548926781946064589291660163328868612685971708570197064214072178382416067611096302856779147642581571737680494307159836491971014027193709450564603211019609400102693312744281559738778453064232789698315139833161092095602825475151118537289020423844418826371365584777822484867454969257382292362713881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300734825788849894625414833787599052816021936401401518816945979356199357453903241324400730338799483053606065774270616263746062458065463087566408757713704448403110769280687920924897578074186771647705657022952694560120452623636592723713280861037808037615941092461891735162966539818205686030529720043756163381595697653061570672341146594234896080536987519178347062951025445892301847096779769310975798491585682431668942455920990558996225023657409866266773652618866213526453626623776676768239896311713183014987876146326031237684805981032033293493378065879703882946236468225166549884237520360340305354086573458725734038937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21367188815255460824228890996755176195163845098779050348021099006579201110277177482927863796039601288272318791484996840265895355950795334552056539021527759301172952162059883817466699398576908282861841368991660214639793825930424881370152901502624592037752854671843255578249592870230173219128674548661215719838641453130807197099735858799444145176464867684679959853832428832409505822775351484354821707604429019601868297898673236866473524494872083979909789471020438170087485929712527937487695608333427707859093311789748366819178828501233852064377782063436534615779519432086034407284341656778366233107436225094990750944357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235042545644814398718225986528784267066197200419890452658164351017823481954214831038351757883922093471280078766597177273868949754205048132218036189232438442498997563860522771336457056677028048979292194785374837503648579779514432176160002409396706110874061248214825155806573089826131601129388209340768637725663141351093410869767828702084675994084095093563322191027970480133686197664160361904747754866124092469136562815294626265657330966265234714924848843552367950301994121427380130942577294018348365470593217278793201001842082429094725414830060641327549589294565042771180839090347900667444950524210962424053900233617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16214508270696261875955140277543982414314394506159444130300174956403555855228210050828327645977628000599085519336844823977926328484164663591083989681496091557197770730869555232870550167125986427038634990801215564543505257924384797535047651370601897826417475550546391412488958811995010693219490599221816748439533872610848792402196992374133713122229620390933317536398132095866353092048168475463935603013439550837470054826985351488949683517485643772604952421726234158280940439894525380918095909098153190809797182718233995745381759636680548166396296416392767794699386693629015741152931866806191844526391049918722521297481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310385729551183762426161335409975634553898817989252555364261687113691554025289692593759115632718243796025690582702524429871444786961600767443798467550054025365068728035577074930449926585133126151435276325092370625847549426563537954360380897781903545165169699428627704297254576843064197858933946544476489193125061745535673456554260561331818163311446370555827278457474458822050861478913464993450420342839699072899807536346720356531488899213718868517549452680409826401431798035820249340417375078102611771552882223225562387292591642459629868933938552023237455333825385783200324019133704615721938832889085499689373560803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337561326383380221455994454284161221570002634222565459030529224200026899701185083863123877486892419842440713397841649577276039845068499715149202785971748115279446082251318268371328034749361752009733519224700934044689375538210774000608526527074975996817699235819019257729216860660648265094091920607680674831320029040281992081245103989473607184128239748037748115605289063684788684766944925800211586306269840781022671467197402183459206604864562116982943785408836832811873166647950476673605770325698553052568082422361784210226945069195198738035128638307561055367013070614868165176087507608306446201032260657511403674079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18871960561987495268467915235481872568455347138848926392758945214584220885070713830678068834259678518904925068376022134269956476351299185251771783461458018289140581796544597517033788932669154001132057775801884499045821438812074444225590808548333524653410895580073283350151032345522849656055366030691970482683844947609356317848796831728080266978672951942556615883032845460639493819450362982181970601118487794450896516018003096973677889962817670880930338268050234017900931793867229958119868244836194515492660190700951113265096822469387770507566715820148725007270281599699347225616787339958012539552124927878107051801301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29371765829243949601975156320669015853562388881246838739955561044169602735919279058663757507158875142759612079396045181332002908930935175749593387533596754315168764014979199972285682908851655530544992100450299745820215792771785350281112430295393310068294792193038379239916620989784056142736559364129976971385294480105182571983742111764729324629460497305690171596796903409708904541660594504316962719866117192716728415361124538331162434480272544982807506161722575172088798629857217972120611774610149136206855706106281271461567967428282072477296399978529636026846314726008296057240552001861108034306540823334377373540927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19953605990988650407751721629432834751078598997664228655074622035105322932742905480499440458420176521075783224068719860100096455992470822863144195076641855850877669042171320998911979693636871906658639710313672657671758875357022960780654782872742104469598639985099345135443167677055817026291100160929655232640637839361584127215026336065957253218001720799875025742080104157501662772523401310898904551567566596620503230776002620738327916045521542496313832112700711681910654880623460296347166947461846452005677425785893145927040374099717855723005087521321928431282663236080329783039525559006485963931491757824361324226677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18909221841355285167641457353881005423061903013765238980795397062901149237623488432711321403542215089770317684925490520071903655217490520032099081049132915685792949002752024671936379266207263900772717210423651691459636369067918089027656317033271494231567552122334951826011186567889206294276196774269150396829038594014424563609725031837389247773901462904170396419229622819619898446254825323457592923791852571850265196073851124572883549713654702972220136703066968405909855587841050356382012496445520683074305446005482866958000864810072511709896430717785907837683295758039312937792808896840550386391690411784200495846063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293299766942562560830601680424134901150802314275288167841478582584805316714879796115832510434717271152329597505947730749812507189239240547806121986455645028972706738037708155584634733195050233494922317626696247885670850641151495680999741815673360925154556471725156602742846067892301521474980543509991674118419661757641756348177932067743038502359346129041817911363868244487031462021804913564346751161228774716953551431301441105400495269823460501927253466642697716209229009257132644043005606764989593935966147027191673796827162618052895888578420796296541367065790416621118196003814861328362297997593696248402529411987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20531599015836370180639657927319176395956520370212778630561822812680916343970994753226004006619296101769696452298925181789766157084628684831743588521392910031071856712701445655175157562000310444677652268427287740673499961607117052288663442459930188960898820797422258846083700955641793370730163701244751678683641427629493474211674504970040700916553797226774104300032214661636092086410479170227762422252142715909412329769090246206920261393894842297877439973086694315748948189438039207581399845030152962708374577459613886759622497658127987746297409540698046522877154808027391942002802461630260753361381391829830445919137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337291371234920160489390903235303239364717814844519727306355048320145987840008074905094459170661802338028066794838480468483011590405505942268991185236111702009206719468350049740962722147683595621647161040144311794470075215499607214159444218628156127817360114719315028439623243200048491419741061915773625544419078619122373697232738814340543469627393176195942183508792631593258115402572034326665724592079063516696071511107262158437099057439462589067764688155878779371441111008661365702483685080875428815306461991972394376391174411324204376598008365177714775902204883657411172797122262323078038804568261814373516217769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21555848413215167122502880239831784623022692720318360421927781139179663289752671743782439066655374909122648704768289192700569094752852141716916751735959827448832232202674879715728109327926290814310548395814627554555859519707428212334205651917655343478907787770921287737644614777954595260937714022361361983664109163580119520232580492149939409240685793946709297165959533629870540057908603208934652285772618581107484617613417667178127453512396711560896171521622786501862526773228489463575900525288988379101788082807511263527617546388655040330364651876195928330413022785229208781829021505773169883693731209464605625186771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23303167530932653551743975783691869780863843384104462378907712305567861057270818444888091357719727435377045829810887584752723850041930762441532578775064395645207251389917796474209992931315164651998674039825591054730340869611888990068868630925701339527619190421213646037249262183265874177736623828905546389416245299443373969498091479710098828771402470840743250010743699891533798512764536211609356214188646793255435585825890576057395153401815148506536125117840734641376230070090797376826585926319926815518611645270422832201661158567334112329665658158116262860530485313817110383663349797055487646048897303453322541756739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26401574432009346025266914669505917824762376823438137295434022424688751489560451014076530159977055628709696187069829835998451660131653981552957683747754181095839061864026183577547582740737501543030376955383167801876553310148335378981295811246113551751761367557830798871328300170868064551566889390447948838760153056146817100607035160273406231697059314859634278869948219726547324762092441592565165817178333299838009274608430935462197009755982867216220764418752617230799354536427296051695357391968638433864828159664387303816675477504980329443396506884084164997886116819902551650729604068245175134775471498847242103665569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22872692925158754798473487064389244655834516719244119164012842330045984831107610914274652252148531824370055805191460188411658738791222420110061381342577005979696104058159263185984611692060941288996349372113511564348109300364876650667796813778534988276311719345631254993454926133273499747720097238951551251809417730089682977999926186385859636649287593009890377796717944942079183498051981385079195896139864687175237940831190540549880785399526882185659393623216916453496733869377047194990616922977055440873069968346321125517219645891254125500397726146210554601235593836195547766254770641523660175499203099011270409312161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24166895444350103867884778653435410697642895920010917305929636688653539332831731762961089335819167551635314336181733362979336429759675391315980406056681313923597230174668172197636956820993025986470991696776912250087591343751615624690981740446066128156645131120138929892937779916158056350048905333431695783405740220422918199299743501972984903215690064127357092185257177299732999098095773105271956711621441475911734910122880165633350319796388874657030556465828852005731181996965299074680008615202626598595260235494236143623960505785091210830727631857119088073042679536682760308203193183855131358415511185642409341421711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19756027966126052973274395885638860756108705600090145639698135455587322889190300700390580259209169057747937163224911053641189359259154789156132815894953513095309547683383251995227553398141148982111322873651946402565110933351146450270589456886476077857779224851439839885792335787384252191780559123888790530935191110539891866941205786298436094451348584580619823333722951250689255497091336321309774896319753486676811602915935104069285598122846326721666921749716848100624615387449835210299538839884177071685438447190032561529332406442462904518459761422063113222693311439504491527977041067937918453539011252533752036192647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27998326298936516510696902271043232256480121874815933901123845334847047913547369293414933842172223532347440443899565080080150555428788111316606508308485612475009918991000261286810214872847610040572734037367652337646547511006525509468172484910457422341148453014741012859061866673489500330247471181817701829023101252159962394777981740942694215268229914271404499415360158374819795129427618198783445058176251667606931450717428127817914371195641345292260284455803162508959153029082705719579059184960624278708271718164490767765679087045362026564202833894822527139112332959343062491441513527668715476256622335942492237860869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24404378054251362549810823444558538065077153820147815204345748973509234055067008855459818868934236390213721928839722543069929904806953295349902148005171694306548301365842663005144350595281515179719622946937919946773691942354085699042958550044053017000354771237974966919947980403006872370217071539051718958235695640832235828437637914203781244160209619139267200528809433306309814782710567741292854010976208760562556716682932970765526957415099709600370826242424855448242212541185678304836563720422357323050172297741916376383722959596891402352546951515342589140499437860380355922047946611401385800376280414635332214211473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30808215960231408319729047527342476635720394925511056984218261071259767757255239951409061772556520370009658981501149680854496596803345537083478405803456950927038989171127185325599829756027516943983782173796846218040397450455696205689113734198800272512600889572966099806509594359389498998272362102320510796441917536364075599727862540760217177397015694733016939694503088800610520612820455329677233922814534638000758406491160371413180342954652408806181792369031716197907392569566117880921435181079388689294603856215419358395302213836737424754387549203267113316135832968941770868506751544066647707844597302430724123195583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24587800591742460106349316782390418183161383391106674642773872050213291149717338170718124828305132396178457897268005260407007543957875840906895595401845520054406005396785300931537731918551261638597040123360792510814911435672628028525891775412959971891637154921427550420621603443862617164272336430035338184380624741908770503240474710462586823664289023418114513901191103418225046286728991766605154839671198692801178243577545857863654227329448002515650505820096789023109804281936836726577797622818830148104617209662849219386492464408664688309099055042124581207231080914867545407521703563104002302398529515133935158445843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25494025543715871389750561722260329839295407273033298693770413559937127316900567651712345044170397757268400648909354079989367109911355089108022273027249861038175205847326556870372750729176895491951449963314385686622608811235040882028281479761288831747744802088907183780378639901008629386491846936974224076142256153297751703588399876069057225013101473882996852615451210395602153477924042591551988491961611314064190947064394220336914215582543975552939229732726979178576988931706815851616369809727437782845564294639915050183615324866775007501901733292104825049690319634491572675389836430513705694259852676673904819485283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28357879107721718991486626381661599146468173335422371719511460260059490447026632139813559097654259558090704726903615071335862776144637745389943503723767632985809151992305187246125192057529125605893266554622353314225902758430509301180526164902523073838523550786192895604454093889992606512469320794897630938045838336698182208246959099129965402305221085016157090150983260543400773060418533261845890613287866180826347610082951571936867560597277030129732914714312239671438716366764605233772740871141832870941134181261745924325365148718550421554051760263602775734887277940806187486004293766599633063380706857689549642908023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23018121025301250907505140867544139435371353352041099968481432516787729552623236673190231941479511979279705985092262532011897835034248510064281406955424333371543926433014198263070855582653287611263852313588188985999007519463350065214093492514244005708037324006966218742209403841485195308225651218426495807678767044507239583838969972764605713200129135882113389668689776609721565693551853018788378388501070658582431224652077375535771117305346077870527127936663792186801938725285647042835308422960150273701574242467996511231923452343264219516690919817957981134192995948054342044280651648723783697752347455295987261516821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25750471260251702212531197729789532696487177816460087750234491298816391167794904071366211156055620661355371771307475059299976709028362752124159208383956574131653593501564195508527100611782375088030280230237258823886135592592050120981243361655432459981617542749824778334958632258309907471521019629419159439512680228201364536279301077993324076006237659338611264240605976756683174500829921048783667095791077550947745224442116849610113910385673775556283490631738970983091107102015748414696924342398848319981561234503175591856109474770864079575333806727252609351494622520735027028114839785702397922872251535235453662078037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23099860802663857405166840868587117285318629610941773899063385775636212715852296793412020121234185032214834506988298784098399544449018251595753099635837460102686053827017299020181027458414408373114784798323702242795990569780378478287638022501959537227162922756590215340016621786046973381703615544335493559135069981326021975914602288841930060214330854742619156453510608650397309843396203769547604781315111042183631211637752008594858434193505985786428090216140454190653581484845589846183709930637798678215896543942219588108535960865321197730634821120659154097977102698855440205970299213280120827305656612699394818109197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19743287885972426863390204739950382387963341542897857618674244181397740396197843268913005344085123289187118723633965994398607209166667487207878743155012952412978485042852076391538272270268871354102499259533049890895410014521599997732762235669622092189608243187590970044053730057738806610193898742891914488280215394732989164732093853017115772870617674566789895051701017008097212263432512804032908822418106352461407198254213842744847621007741203946275684389854754832931022212622923630086104867344834913144565929889946301355608477475817471962970329522537540005545248118447289670535132917124411846429263206630491893470379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29609826271674677057839215352196857040967601890726615778222018290538074704265716320744269570156276940149429129272229375196272876623727529123097638573660209279278704476644620950365222894087891882815221991247995268912683457092546570426558452366471686991747806736085903037437444874455422502527976470103425683446478722560128220548844782973607980171139254981855106297895846849518826004260044891318947641935939194108840429587099428554073700962009360424776747484197386149957324154490446215217808006042036068770932233693774043994535690239767871071845848294414975376593208545305035289638523273996320473330282378704028394868933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19804148216483381907760892797070242802772853869405924751682216833029216933108276959165001431929008576788714161064686188733470672681614733504971291085286526701488542314010632075223788947320794303224063686027836393381013340477157647868959227734062920254460203203225807586971440248984919329340019137383561820278992585764859764695270065372557373577055910204367496270378288336048918012820602507003344827503393233321922971221538092094911979171848433388488272729146057187399917230125404550187999273887428152744048919174331692635151014721778833914446957232625100483112597881574038090458638262149475045639670561593421066430981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22492186669074569023518198119845403784225780190009643159717404002138581718881740680394415188620489179856830935880161065555056582772997256947213690736181742758938255237712512620127969745416170657407515546461149562662629431170087709088207383959465718975148217716943624979841230800932978932061753933611177706753610880191256789575613444550994596404102321261094923043020548368953504927772446866569359947309167724869926509333614644907988710431478930064871203846095556147469633736269542855253043050262715981106299665802084572563680996029858391842002286216480856752227021105378227203092472147170619206549982509187088042482981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21845773724424439026927793537323935127763542940703758878318322198070194106089728511335127256252356800784575942492862842197805053194595163339772717540407060826560063829015905765076475812842292527639199300650262523614354255663691003490349435307373618554824688027660677431925989895265026915518951455289488601748804906910358630280814336632884951300279602622369480986625615079587803951938456020867846825296753597408316141038678039184361386717149385635284707503372311999369668895547051075251410706977213865173047658804214237539992527718906729947031026702520114392811106107428827095559380901411912987236390330974204536029003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "17566156599724249125859766453459739419030245561453927885106766566472869353966068605946262265117797353727401507854503544003184356819442740726087888129935831441317208723238156128105006215277265831796095803875202009217527741590924412856854496755059728145925229421627814265105089418475216961586622143370877628061263388459388492349578533959838222816850927248966066424798804813904556981369375425653764545467406213921207901996444110713946192202009170661672190208362919704793862568826116548315185258137764421962221738100091298730475858463574309353260443076260404165848230322030534944130694143001336286369855837029043776731223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28050098217377305997729124777138437823600915820784817231132625795118611707505407706984747614280973407756518496130413955745402921741957186350624134308219677399102609438086460811603141123900496956152546590870369713857933889145298749339786087181804860712711147952573259612556013485761559640321927210745263697256165805657364876820675944151304029729918723438553841424790597197055662783802049745083241192726424536143126478812616952277664542436944520247980841672150944712838640750341779544826993621362181310418124283113196187192436037107976095079827399176252367843123914862367295869867979038102455319119708911717094726731111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24145041190258244928748016128384121097816667817337181144056980044345076240498521793800294722172091094932113079984429235780626980674937781406603481241526424006308395117790511707009381216366719177245309112722706302721554579667001404348771955596186557173879929982497479756488796330245730363220309766630142858067107148090098199676404287106451812110086201112738890183912080241205330226683965898534620475856536429739194682112892898160127232710254411551409726305337496079404183104795171384495009836471609705910947649501118553628707685500544978669454980278689194331799893845591522298289047795321127579099879583575115484162223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23934547356505554517430668113013550175945506206940417874223319461732298019097985957601706371233480349393724264960360173092168767341248351507719090296736724932958797389564373485722903838002915060568200612504498952591676082048285086480690194615879145993526663358472680886145841492368843187223410582651276739527326966042016774677734866358412533839863329764413895002501533533603452685011487004875439337073576902885714378863770888610390852956761572421344769481670781731824634882219389251545803179205421986249709824804858109155411275883447127017226530135328554222503026624877219263771076648660147809570767164160995589453827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "31274810686604246466067181916732379509176325512878642132355728691445089546158020998954264849045648194276876006784679875048612671419912172853948221040061172023505328159405949221840250291468833450816964424394263285208549664128086089938923542920730356173801819168239740907532967672673626445211493050352323690901150098064632244094269272823961655665677059717689202688290819003368697103705518103026325892618203513159882673070219849461625875539079150283566268026289290405084788093619834451885675876290362850472711096029487592998631032912948223752425865011109372392238259512164007546858372941317321267193008495087948694678139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "21943887122414221053279941907122072625350544573156987022676516002585808601283656404003799048248997438525247887048411358571093518436673816690467422793509349369695194481149655288846761318829926169954459799458711054270676224976475849774090886473757233287331037656806722078704972040831947549445231545557724387935476374275292483235176241206440929283098405106954153994060428706637384231381426689165657307834275165223940930882963030264987339147394521676698106822694899422772932141810174356763681078531828130750238760742079963722537290852178057112769456632326175896786880908488436475355260860104986158254553545725779895426259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24600563245037365918131387065405729", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23472802649950764296641274357969252", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "156534047682043961670967519670869065470732646372377806598548561248465636823379692269106409258935314806268411454532992720776747898890353618344714425690234596776540159759111444645952964959947224902086113344642220188584806898111936309607962969405632072691398246841356622292355049983525378045422942679195561286991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23910184841542552943590371937116821121243832443958817724336090858588177002159070294638674126367228063940886739728699342199518871366024398547242638573020042952573411520217644965765146287832497813811022879500067248885971201566660112931344171870538786580854394437993792303464406808480796449029016764605087642062557930228295913687539759358083135062447668186224862157749176855978099385050305325123790464394608722180608408340100456458841661589888234484736645576263986413912299054631584273449333838571198782153466046601773629915109876175531527258220439424363549206288899523703786954791623695218306189874766977921709751984393", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26812983200491735634239750628671407421259942807105541405676301767380097119402028355606772731945306590534237003012473832506503101475078341023532440910324425823514897181764086372811288869408752894380694485255695868540026319968022459344588996982254254750120371493477385859862173017603702970863889446035001847088140784922296915559533250194671737416430436090106831946239503866341515539162199419051457664136337467775199220421487685904864571901490330085162373704793922227830604938317268957995035617470845756838895168016393376643228517174525401324458140234726844540760588938508470564844179322933047215880118662452469819725627", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24687152368244751477815516422620182111974406836341830396867947036053604234841598044568536055144464673853417833486638549488967870694903308747460303712749314945088513900003482369168629922076711220853576903115173454673796041669767544059221719286275855798386682946339049529846617255046784942791150756685064391568685798622998442194127604073919147468664567858771858958090942278304817669409284038123671574550599774294016189256940831133718552386345720453141940924062650568511986762362734297902715614640244748322481312842655997254296787091069706756327516889656793851798215569632673010027540626790479624482759257637031469407433", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25492273457684420923710609991337764699687005726010511908239665233734846742143836815705996421325244061767047620681116348375158423865288710130221889737319774995259114440914001688185865064984416295849481952935688812121717502473823305965859871150298818600182184713071519930532079402914629636979918814131526397996382648200745465091876310554722208591214162437639028009628083825032579922589730562430759696579570125618339550364649852755111552790168606321824644109501417140414060418853516408791686836814548454236362126904462814462392648168863973800796099310981368128573346069283920374464887433762128631056278276525574398925481", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23631263727222367025625843111066956395430350255047921415308000694914135458267058808763791112153408910540077446848371252753989445289633855038164062650075939789133817277642271709145057276547599908807114046532510441178773151619380408693254095804020570034055736004694507546245068486239778019392680077934523784380672847547095721984375046777000276026299257835596710140460071075859340247355732517940387423504574307251556920436762325194809250428041926198701223165461550648207500274790556797774812348938687476150988368297493445490265458021477186841333569775647064243053319127834914418580898947246820356198555697794539810993153", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22510147764842263980982883649508724962588313587129435962285666799644197828980011629592030945700261290369162900781779149127094421431589594791598471182148748751173203263197981790940956917858583874398621383081878796656572088747339318289723069805577396042417370022001328737845907538197181967608320725752334660094628009410739480285571080788712202972777629732379669294444401980639105544859407775407593061001044407008266153080540984431163970085702409016531977697640248215398333216865581519303794675971995464013450272375168514512865571724484557131982526503176847712128752877199303911739062355166739497461511982901591745248279", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28403218464506960126591626551056586536573284720005950169403300891783156589171394630345777514995331026013742755897221984553852688777313199882269150676657613383632727447750780946374703749828766422825387251162800351588858142983959896738425661391176064563204421389475639127138428633098596584966021443160663160281736141409184866742684794000294080625678156826179962157921778610816548666384996913783551465657634528862700295674610892545046033991359509215122953534472999198999404840103884249998271152213285055550686773803928851378410369188770921001136935736998160493299036722937429576004835899773481148185601601628847445075449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22132787779269465936227358318016784330517780739478669189770158432358437862106098758238421843334289192239679652977968264337329271217197368262685425374027536762339434159758590709769498170675358030660780619199704372809434877391901851377546627375419886169532639215124391008319803732088595663560149836591866633282139511822492845438814023648064361955237242825201881460347300405370792039478817975596546979237131323859773340834057127627539917535754537505899084173659650820466559326147857891396175695698745714521013494497783423461673787318997549909134608393353353424807386770316319975687358581226042676274116972353477317519031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24066475044058434475759615525280818598894812896195176801712666850771901167374180294741383797956651262419250827509882502788300794450496910947453230359181726859744745165823804098182242254781325891907633870362860550020315664393394013377789531590215317717808774773804739430918504670999852261628245014321075649575035881918283365290809473849414388592115523791094836538173670006388140915357479981032647541451524079808073354104370008092621825931246090245996649351553407766733789680026369096853024974842834702359577509464160940313108044243985444160902170874131067338832413907921073577092408743142394495030728422555119968379001", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19099566970382648195202650513406508367140397288334502073025863918112029613699299750690796737491678552316491108229000901401624607745207092587644186921135916232441073766718935877552191769436619699776604562135413891017667895676932153702890168410270792257162375652200801427808874997736509102947754796130573233596996194490663935721152940513481384053489481280575492411567309370597241947688475665488769696945238449034169327214297893441842433715101216551603540044134623089105035686413365428833957226689271870783230542345702773138900583395251203651697789422342967654464184469263984269596390463199686108791576030490198992317141", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22289400853054971525604641602230121", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23612710163153852456691583718390683", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21000557639138641939559039899069374", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22005016675011648924030420214531009", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28206660000402422081829019113366017200329361941786546484663405121576372574955690022805634955996288533825823447143625377838158135685794316457434809601765935307651957760894837097719957187229772489640662490903012823917614372767215512333953827507362360418467864612866282290301799746866882258597855740692853942753086446128888061524432372003797358914130426508639438525623815440076017994112098985613260875658966523042360872541974463862900048282695455921526964217153672340957170995149704352543386443938541801006949170462435841862367926298605416881355454827536387235891264100932875001536058297198901383435750175891503435539449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24208654802441333291201196499770398561031501716373963740531793991496802325729736805474108343708908205935816824707624076187150997644697924015513679510020592787737168160158881251485177594285965811238812366932192283350594042967283611099200638377015890885655423401123451623926559315093671243722809855394247407711660172621809211178034029771551596318334289166124325739269650195981747763881995208619464970712229197985910757508846105344345406066857924345708284235202569273302885425299535474185740472621545853274090041254584001408851139507469398700233642341322501505535275916320082152302006608812469215436241900050064539444721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20984767495870027001181739321449230058553992011350779540056576563430448191025086971969800194515159099338414990366742454658970124619801673602699680387919439037626289165000436047513448529229956875594115983572344579418078683687677518935655189787490925258710509768491694935709677532360833878176127732517051307245507204362149042028984883386338990510958880436528539549369487966266397763822724344627937232711233495933051309119841569771078389568966468050762461983771984982932555476797923908646364467049814789020579818314143196401303625468104702509497589998003725746931617124057625644468625495671685239510161082700896580214909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26462134122754299583396379729894432636251353316363105605087140378605537756651541964637704401107080553815837965126341858749348601925303936745686379440831273609641936361383267911550206842661397443273470477376555902599633165794420048655275485518658964481359513345969293880224965241613455763583005201513690684356962390327863758129478188699703751814138814942134011769764584695560361800183754778547850565749730196533683824215154080477669395570328165880750416450372468142440182521496674300929541183539509533652700752553971198947684703302230209655012269746157640637482597750485507363608058615890874133577669644653128850488513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21382960266772121979143076422217571546206463564012007351668188268629310388400221078825099338647625267750790372695165888537803081831438231980730116215445417264532060344068196266092627070442504845448166340061875684666683459748096427555284866128256432168128889283764865716887457691719703291915770677748303440220127154382977271533082143478997999296714347505976343157989737791196547527839546211054910354717481561365254089051203847873049004562961238399916066705789654948188367881939558391458191927661575699870529535990687889012650190883797528009207939684266972550395426043240050193461008185913216311990121825231922203936863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25601479642860118322949870229726085562787558597034870434391763354279419932515151154154647488500580284057953650318100060704901193943069432136559196569652003128236445079978769012320595054391285942571306653857526135602065433030987618179853220636013089128135877196993975352634554182693294423587227224093330480335883456258401714904737229048615685011669644788486340198385585255284196671383537605413487122853378756342579637747954949553991381975198018283255799033960583778533995424808242343629218096478405865730639210133997042014594036692568736856788358824018701789519377229305027657029179533068808165669665692720075035239769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29315666186684662990310650254713399797177622930034524256424586868492223049474033352346351562781938190799369054574924371203519232085421090724182213346935127269136672700547227265893372241820582484433830164633544093216271464336225970724301871638188455010916647866204212929802846791567607017153738564145200716869908431399444370794760701776120338049072555373490836116874590695483862418352373598541742210437673953056334048082735360418398111218947405309636476109819032380548583833832744668278894489712845561987031734841303081831872605644166674942350926963289003684078316520887190573439867499593693637822708431791889525612857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23291044099446944000943972277025931077345908864892865633893649568244127112615619241926164948805165353655804622744680626680450748186674582076391072346394523141998150701351665895055978299420198172622255635602515245647741076413145860941798819299831251745004583932098912642638834331853970574801505316398388756651353556249231465664041497979059731986664748960092120208535494202415415851558374194325392007104245722962887957537451298923377545837350693807569194238512499225269239694602874712852106767583187251660676952527342152814000336835285570138491836098699930378670838067758697490597693294447495889161758366820665239777937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353832797883078026621121921234079703856474142242092660765011674091403449137810023589445117672366454410760531245073460418489467486413113391951090671415246362466806107964320530593933305308550249902613767637236038154144515362881146918350593731407046623627766508836653840349150676989949738154665781328458045809901127979496555999653505089752034202362226580818137094101881135785138172920640859516564474494679051207746037809589005871071897279502738574037510000091166126742591401535598501056973552039333052817952171008065077661558124906810395865102267679699682666082201972291673221231994066916857680010065770989704829512857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16230358096548713568990290503274020658431602551602694418363260008332429843785017959199234763365506850831528037408198892474787102384584807652727133858851136227963706415879988211441694285327945469731535557298379096343070369759764474399349168387201543557437134287951067314295212945947862221368670607096299922997947469225844634874451742173985199738177173258075249219940698714262304252894356477247926648136574429213312098902449730424141439493106753424775078646393595589088970104443015727625535546887022707252590914352442884719514191030825306700581236602939384012904081057891155845190797206742560404261834977167255197766867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16189431244991015369781886648577239660852824327231904387953809557957832468342698516835516602067444918391952781214187896618885495340490369930314181364074074168807627064838851153822026240789662689242718590841454528132980364082194361862530817259673175288236563737333687168319725198749826252326363594749653822133862313652465762353189651604924889029523952132507554211534862838501477992788711253706632880928102383633185310040953281075661938310474651493887792194815503892788486039746817089535914367283885526530115666647901647520824580832857887831729031068220370675586688891319625306487847313238557398308232278261056241414467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24761995101076204827989550991177300830099876521589361584440366677302997576935240769553798735526920364747527152276141602319457585824703926266909861855543050557181641112681397845295460383697298273174256331274595976446240248703898553284765403118066790301853879038284371912919080070008563319775510872805304558694700248309546433126479663225040594905111271771853408915809087829825060150537589535452568007465702791381422376964696752744311244558385733266508940329788532574597482621452404843496526536666020006968021007586737610482827158966818932462753320669155546462821334807460349916412798175906671829914910671798470653952511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26587126605451246314358541627371304162072495914669008723502477617605010518571083260199931749812237338837482943610311098164909835685340182476914903655043169083156911306720474360252691348992441549403305773486154788403049335988716126887017806470815836363397591595567729681157335767997720999738874171531328861961566433406282997617722042448382097763010163034291182300299099335212617757560668112633954861300681682841863506126147881707287383754606117251142020587632782928543582519866590384939381547556564236216719979477632458499246391728958936804700477439740599507726490562727496467253169967914791174065607417947320511341831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17030093973203054882286790726864020860937152498224872490168235971397314267873888338631407305596350409437693386193084122444078658559582496522164648309796667747779473924668601885143077971098494144646852307921123619025058962933273361566127122867430574570999026142302310703994085898887213507256930143309930977057454815066905069006754331867524530718167059892407158077442177046143949288047942634264902652140453920601950495955072411891513411845344105514100032385346030309530541493009288753792368820174379033912001131221416411851317175585339580287091117425885199955718387851856837262002001390354565418653055494919784117476199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20613796525741073418011327875081646621182891267232325382657817446682185463172939736786955399601610063779451645496765921067292972780403114129917929015331767129921368608844682834778096350761265399236538174425302458503517518551122524543935415792849772445214018545846803609732967800424432705119059050347262648398096595633494508131381132806188886222845484367787168815515720289356016460659959414679962161594541346203061747653818862441694881257972585429270710808610534287201342490698670332787875511621814973481823188100408626264467892818099832894184644376642464338070704310581863799322898034002936657463578115250013282386129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16218162696652966856675368130618605947114663931808537325338616753337899190889358507784626380474628172776057514940710556169187441629213820958704069355688191523012342231370888704605566125010531316967910629620485809802867258829330500164812158553109103937094707887668005184162528748795818050408872212205598777446024256476906068201667433140442830676706382593320716762581512988670892813899979092065508151887048500732630234853761876303114523970015264010193801673999535480064869499795071805033484079660085751740425752432402350623065294664521044147099943398587898878500941663323127175134916371986101915893238989657668892878151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16248734980695743027421738216915643039465052662604081559254541155051391697409133548610271857334950893039021242792022129485059505875595103532211314058757825264665368704695474780381898183998987091017378322466143456404952501819893550381553896396011723317805974814014369921405545105478091819216336121629935265270362256147619566087279962888316140044736459502684267206551774008976352725459862889222477642072894629968682801375735143891866328025449785238183515587302176318612548327779066943672747386401218620582239312686949779652676800311003156849374197457199629166346315974346772448167716282504407179680482530596918156547033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22150414735165065722324333746270447018591179681810686247298184442131478166041726997656938696741287015300403092662756138505673006295465848198557159550551843430035553643442483255039935118902105996269866122506166441318672217976207423166382841607496209028984231957731536645281998210348428121707018351879492982492796200842250650173588168414655647052883855202354460952365329777549537510227367891041442010886885526232700951766600986522140520822569347727399663494639438785787137067728473019222954590154189347942901901318049687870741498575364754948923858579785683374035662845830746957582065919874623494846054352676588426221641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23624080741090103491897879496133029663101276698824444575172791212191462583252107897404463043509254727480806004039715104531275548594067704979416379121243406468932262368037026783015240142955316476962943947112799710974216337601238061387081814599309816556744077940204033526624722823633011730933009992021262483075912367192612993881138268419448439486867610593703662076869868716199729493430814851953983288184049095447629304026791449286618923045927069936032337396735813665037684645873236180255808400622510595947918278731924000668400447836046881247325308447670708641903314699790261435634539821218078852449319439070458909032327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22036858651522823559381262424743189556428204997411349471449993211836464412887336080788806561843439800783800116255530128799097598072855900295690737182796249869753763894026512527525006884267595002308701543431734193014057524895971630585942112213404106491206442298839342793696510654769244057501065858505902077091605683598522525084606099849666486186409298431126297057867399812303560325474302890764654273703661781885155839336396427609649300032784007636317612990303072743098027311006657539268987957734765103221724226987597229262781262191058247176352788103580950879363405696341482478141383847998131310188369029864595676436211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "16801954989091823556055678025155716159109624440343563537051604512155648639364465675733249100021594553863315609709534017717639079677022266609554192776322499325419983865773535893228459299038378358022394304683642645029071031796941506268707787244496468502735406328708670961863386138338300446488430417337520159818490862153947998314002411083178953146129036000452194222173722775031818270697909291995517279091507599259680511698806693598335706859776045636134439146520525593720738490158828963712128898365119481327970689929081446091678365340012585025190314160024578176179857893700982961810642021876716024407480960408620646691377", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26717714114074562755665274597562347671815424026289110017050098573646608623428316666971141876493942008897079841174263250479011999313372651779789807653057243057015296109036983160941346579176393549156555657521139361835763178665282845267243946086730319106482217301726109633138365125457039029961371127449062253962767974327951773523298843166607693779421928648082293980540069281894026265569170654132816095242533090805049680458201427147189536317290719357074375603867920479812706660678138059544494421269834060333878912164198087940597694801590617519489922824500524226022905643940906591398081613735863516948424942466465107970417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23072845863020966958070135461602213908650436927959879799880934062703476558454457508011706231030932508663965740724294092589436382559730594336410293016327676744740121446996241658675721020438556610679897136824564204504433530459855423560092219034446906127776078407348580817060504936013857518015409148444890757596103323077607436301308808103857059462824736210493636174431041624582028412681609209662322598457247186673605846957588487024930115102161260088043306260937926091343758414455178641605074727429462022611712161742649390009140103246628130545826677434558320824749119465646419309412897468790308996097745289204127486643871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23300790127391475880130976056309213047247422452388674774295093043926134066589013732404492778125307366903889151360267281191366775378139491644140809070279401100957461361792574859929184712768136699412297883400169549290761852983437353358621969872701658026975408288614204754293470099269834954006064803850210264885281918855581173780033193774384023898292728140452856364401820128872970286294758255813351574236854561003206031239765028705864073504911594354006483869187547914539057731566077012072420373016264159410491168076009018741267640963904812678999621629628160485118445805904399549312475539056052838125977258821095396735737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24412299899026279877416305223248545301496434248786729458546175490017689918271335339769124472640019689593573632281918735035267069737126290895250560374759258256006755507081221383959775826184848439095411451144348447345193596331060763395264782233620344081762748942089925423482206352178774909811334792339241129342708068400920610897495521031005062993041891836817319885186469866608727486953649372436505888111234615610041071822445667185914400662261542859437035490866022469874765098258768901445926327841321369011355914075181220043713737291577564492057164789514082647723712627813105268531877704127592238623361952508437566415387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20718809852520261916813600152974015381388298775002648432583655529011010279889924888361694186911141873849203657191352150303420909234309598867487565539155826969421580340841626379608251576422775194917720324647527514127911077981400901831515693514130935905700148256803496259655056974353335758725988800438104852036465921947523445173558834369234713124282974317696788033179361978187916972624344130893786607356926175390999465633427558198360949671668023169036019421433430318033064186403472920605912703014897249859208622076888523280564414869702601432294190413220218392590380049193645431507165201360342513764934971658580959754739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28917422200744245648662538002038514145709552261010129127609071075994303110345526446958424687938696648341393939537662419347563510512990883264716097304040076543691106061112626151535793725147685829940754130383394191928340539052505955239619819500056431978380761028449803648677371201962160276098381447314885678015581520151008013532537687388225931275587689201671508749606190336225510466122882624037658687314716757414160468460597384732591322148453896956844084248110679641268429066771813145603183411548983898760995808465443354789783331947312968980941556924380748425115995074496443934916342317575010705814433666713863416012337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25961537846097003983028763666618456437830330088434889578629278133318523785247699363434736386199288334947461865188304241985749733605814717669602677542665221429384270260373183341618970914840827952951803294992606399700355873968018489295227158072136206331248160575593794710524230628794216297170254747192060202511062739141826339800938938259361963118210321980277657952879093745007402256663377931368090974658409315408007024963621207782117542657443251078498280810557350608214876598238515095072700234797134697136298128027027052704191051438053824435072589944926681570076215432889309885452519160320965701322031193491457824351751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22165587416485671599949360701379884229280862896641672483428030886758400566145164393576487838819127738845703736706862573047463565761332973391972302932887301465566876765825306076260332047825500646114175633278859248619231928543343387516110542883622550402849746342213785314996219669089608390600718945459519962415565960759994396262005246965696738550612626339583427700920134511749568884159115006645508706809965426062481435433214381684465658008640630839286670053912573179076034473980611209974520682944376244464263424830869690059544430260674668401519330790564891659693384923351719262611672274500880280260606294894324368943527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23015307853907620851420513457951969841420617428587745367628352073853241019378797520761119215676353088432182408486100109666525096894503647751557399041014629810650289892916081880441212707056763239806595552956379706500637893058671386439644233471738517655877455739532528034666663093182861395281340025691616007925175816971042495587924030706330214486613447988701736042169682472449098423829263589171509139622618017720245561529095404899032434048732544552698615127758064784524641760789310431823315187853962201156705784715128006942634949461403719402242356405215583049452520069940360629709888690316072624535736941032966362965447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25332256676774603350996268156597978920885758343776965548080835681220029607025970907036157241348448165941712578340214720240861093896516726181414061680572684963963199891258718504003964982984069466682760350715607513606066008443925193911252824802338116247662309563707504166147418783438470922456738985820008797432458906422204785227511192249201323557266703998825054160170696251821312309644920933809417935291074462023909818904354990635668495927441544835835660003974903424888712998333552271889425377201516140220045289926269429041738997186450014853492681495615980661262549379494709559358873745572148373013408041456450099713271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24422376848922217572751037913027045776660254416646356477100181244657492009971998402319892046937515524082971757238710633777067012032471964205080304614968401045817378313971640593661800580579867168947303152392497496062165603867535797835428884040269308739176634118913990758626220406494556997532281797615986142536892122295875144907088838601164619033833537187377124238302117546929241030485938669436459612041160694175328642293404935008075579404702273840298062016677080095854781012633365563660521367831930005145067797158716905384813764647730621565012770220494223103931250437569511492929455381395516029351015493629555155242383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22073936213198793433519424183647599839205181743602250735425407530039549898917160316919529622932661195493842255494149851283601621155808865283399160208540796718740028115179915974423382289812905556852674511975945247090080645438187000401806698015252051026612233137961001313951901663092063169269913116462969358403476738813099738372972651186178516917089666812293491652293243987614786600450813003792948110862897121142744230190309688786733299575956110602812680700447517914475060966815113143831527820609869519872525481991166932179893464622235911803326264263935244536038072421215041782321897351620119369848524182799731872882793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22405785284541271685686891953862202283318726400285771552786681671444559426135482148779338804655776573481478965418983205358954151070568319036302894744313940401063933366637032839766888202204860059109703691377613075594248782535686756135153038343921976945104926869669236195497530949901608579120168115217563079108242116549583992384379141927253788334350479998949124873046158025837646067302689139336661084152653224443822016336301111177613549276933376416691593024196157893668353346331016666994083293020052925439418854710084707671120658432642178250867343840867367655754392593727437240598139102962188982983881978402708582691283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25227368101908999922729472480794208979281511600022514576792058393736729847491698709452787675222983046454089485146309984515302917881061098843710837905161298009384266856590564898872029097987529003662832758649624916350257248918460494016212485445347446690152577455319158588426153439849436351207881328384298893470401520218956604188537260007358669445831334101671282389324384732001261429836232658314663082618474414217568825470706100041025724853142584581382781708266132364316297580358931282880539389309649529102516628247471326357864523318168224966423428052167309245200623539597412627609523677191648550521504859411237945377509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23751625383262836991758371918667681299763794554964736738718335792458467372137267091872884919661644661457762351393817240251161797752305609499916617194011076937001179232583944074046604642039512258892911245241829441037948811255853135131981521016694104744266094645998837784448959603968249820775498164669303002453629599663769800544324698076402454518625074276677004472397767195316745871198431527014426281066736755463486719625266117028140037598392123969046777766338235022070187702954532169520593815887103455079824628565053363961087579352760606805598780654938744156176961149248271252490587390603079597009371110911311539147193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27491604063000332263022725664094538704214547255950989589574578688127246949769431737968366166632901640778407798521695827170446209848377291363986450287485512581613858743567466423296157174359986078589080461648461720647876746426411449781350653083522900614200448674937335298124251407260420142319664757653419477756462976983977640255469988772342815840811013548188926774377335211163789973569012987750494608207956753419603902412993277648924859804062555955057028647822743795024539756779330432424007511014026147576262431929788029829244289263243061437254218309076463782858841150996156700769814106474748346672548676040112589495809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27049802175901645834690612740790674739576688151238944565785457049392215449022919672536932550466810452745343432097157755111815059139659206382809169192637706277341084326545455127036652438555867362221609138493623725062974688580069278623836698114404974305782382935468205355606855186982812602276127557639729513485433748800241735353498373943579365690496091182083518260153167706431540688042040453122735394459661586170225338580108940194087537014930327244164416472111931139911189790257203845336640061500708228299427340785671162884270401613069295026606444816760858429372265348733737970397375784924248735695702855645270772185681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22874279759542262812241832049834741285987475922991280737722163838914981134651771797118426584048151738438490142312326492406607095854479909410003632124393007372198180362529064243877448079460650693540877116391588764811538189055625110665454561967543590487311581307905506910373324901428174854985953420401106850196719769979674451831320217867589057330356472614175495420485936660239534399457228451518463323132962140864712640115938871996211186825127285416557543673186193414473690708485532220419633407152500719979902308991398678375470653499214116528421935074476290211329451583105866464282487021703454322628668627437720521277729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26301288243742881830995708251647725116267103272038351007916614537303329591661841085658512690249941076492233593219732920725264987020076862005931320722549459448154137400483360495183487185869149041531972240289911666461903543264810449623485844915712542260925459819703195651221930762717313498418916262675477581228873327722100037862255228120551579288086615987784239580828052008742553700886532136681005968262486644661046164615604888532681489497612521661416331232224596588049976930732349219009143686088237297226396848474226427157670543595339345483565970388582235198363485050054783678673267243650573819651729211190710794286097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26389067708015581206854084496877387686879373336411785732500303745620212291850426999543019181276066226488263097831220869145358662536253636431489985806801201510161003344326390084741666558409722818957445196602812632247728207602590988826796769811924287618620361028366261544002921513700632830320265471120279699885825725305334999044076548172222052792011422099751450894830158523889630950914652537710055754575343108021878069915163032488485108974783951624533328682896994661735054740870035708254767313390213176713657974276154473330747647429544774154630633799836637897842802163974669094463989766960059898409418154157203453840831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22807566017614123801960659813580406695525542314326938705779377948958470537462910730402088115857144472300495239632016936974448076328100823565682867749776111782418468685440370434862276804385133097348373074991974895824025625362530479873752800303509009168757438288834248558060947321636177072426153577302228404190890537550164491084747015224084625536381928820999588282448396201388265586489823636709225352224602864309169223210326874204041013919220573226062674119430468613085755176911609295460480416403946923578010644295501580067159195903014775485561779767757432074167450314080256389502406332153937635485881413166359622025693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24216084404094756946464425376630704363135410761571355642026127647934930087318527551036061056581428988780692474299820225513137803467772670728988718612088462887781997410530038222884975378451502787294909353847874939545926028053490748780397961509058641295843704923902115334085036605038118905524714790959298353338859606430678617383796504307058628312128431152087192454157499867756423385868609146598753178936752134973390230526186140668821797136171477513814976576835193562862183483815984284482930817743712053163012609496938790676829753322489859557867949022488580145752390418491978896129860672376350634768501288588253992572569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20165938272086457553564956474782360177684703441993052126120940391375170658631876725709216519680124904410463487757931018999208245727892749469616992528045595877579143585998138520332051082183962547209077750486063585289214383235072620534522728365618209038547751397197648302676670005434752230361961971516970535776755968695499342099342162238644184236557009920975419247596706817626477229355483323131269700839836343097674414092672951944411950557076380172628671753692532559048546844722959744770293855430778158561448131929565173489115533718457873837307125165227515672121096659865925718502743809289587663682269574760808678610709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26250209604960078486553114249441177296898394770042358008743766083956541735019131207014524413126900731237677266169452568425445753300318111725970939395535074201600721781745860909708702697922209730369008420714500385417296524114506018642290970141329210344708739298572044874002285649978292900944477876489278821941617886797841318626460494500219927107510776528820962866386745241512971135663973740789886121491678742486110700325672972228705668767711366310288194210590292099914286159808649967265525248450997737245497943173786830799408815467950682067601328862707162907965284196845045392207309622766162351191079561319555309744793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27276204285041002380843940645267789530367617236352669928557776306431583495944220759815810557344609053832223218373050644083388743394316907771460050641066060621299078321644097050202536291992305628850661942369737887901929698388090274433823014086278068160006169161250857724710764860666474468865830924410835103804221633724309419614796454589178421088670905461478381717441278908918104739473821437605665728135945005841025192269064383781922517736091911910506191869399363399854268460960535499168861161055404483953990770167024522635998281932382355706224998034813367390512963418751902061645220598209208711011040482277580968777377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23894404748401629224504771825238624891608933323331330694162405337498787793804888992461237019520010135654485471831076506987964541706034136534259771909643260397872052351184775349401789140545245439775695591694631579937995290075870975561586564920278083607540524957044936903441003402052008754790316138430735983727451776790563570174218886845301982103017261514112215310037291175233765902725046122312616275176294938359316706874499459310922192288272596294848457357735634880256574790910701983675953177845695319281394373592358944095598822925222666100054749550974816762404013896464484206347484152883739309658714200205736202606399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30808800930522561714435010032980064600298658181759455063432631163683483090053490481585761137819983872785005727718528796184790315808913737200869781584056857744113871964934956637566753486915675826911130605083743129811357198759940792651588035397901752024129070407283708048928327128676033621673530225843127049538926202076552694861951187563772331172040437879748095528809921677884029025235132436955558650639735692459187222169873112517600450634710402569834889514187565228682669342442363371794084227427583178722775572265481493138552118376385525920707686136993307422297672743449892597421860915711455093026490700313755831745361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21581797369063621029203834429299992721701523713899410833760469506922918840335041319504328074208312280098914505264897907000376087018951561373546143861548793472844555467082097834247711887733685480787391343993368789920069433595984153949489929468724827731194647745067932513801885997492889405310044346989848235897777828124780487592274933114647549538528012311272608893815780245940750327303117419525565168510452222257950578004847216619117501251582093827505665417403528280445290612460377843966101869395313036337201257524064841448912687012081644230148417187686017183727752879874603634750041682126046000176041142315899263472293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26253996939766319496070376679029824497874352290437792387998264508568093216238708820028099818992401629018184423807992801386553459949822633666677916869747250220381028837100860012802069546022742598362892395165515560962374824350861148702408597511854921143736838747477315253034871780838731155916581200305596052065977550400815930051918705603799397703645903689770541854915900475070024570523278272356393533244205308378267148854927993001365968386250401764409581822485689953572685573748517779098435373936751545951920505089171228880946127268705463891501709322763555585912437791400867842815691746843191412773589447504952231553551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21760043681368044462421816003911508140743229409540995257041189598165868097887831139862277423485061417782867680959010939063048469045352975891919771168467709447567167431544200118309384133351976139801455098682260132340226717628049424053132575227339302536033443713926002050372493960289998111441931580477804741635713043638164637088470980658260317435452444745335988298898686107901802498003770300030679867630161122419095906692576012463328952381119811699574976024920376567240772102327113716739803472880185392254371498599327687350820780281702115870172917365185070192030407522248662021952103620580441504964421400540144198849881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27371052516224303346351878997648956796244541997728635523414687792263309545125225917512550195088696965927537213926518036311645458990474607737582459344823646551529812417110361329548460526558951515092342133670009612505027146593522360283949813569536290683913615110183579764901487126166074086234451532791284430395155336275442875620414307155393668959430512430804068114481559122180783024517738403616872746639200168298321640337772853422907014603487587208824607258451002183196629012905157906294074701275303288039219845431954043321406536399957283452513679196263549709740538093865751590076211193664283056227296534838637355158001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26294795464880999449954013931245737972676322272248284977307603300551116102851836359301369509262584814036934053695239092477128978003646099077293396932747980381237123670713178327090927829365253843798024903267024428134964063277639086824896602098918507915819225017215450916015394557197248719820837544052371002968970315440905356365861489866455660608894402048085919360926541568549418958489337908022045177386496137456246557689751872156918398683753237552201831079874750327912365951767443094658704967333300704534081362128419505092411786297128049215357530202850391314706000936115412071425824249784776981056064238206817565566609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20892653275654852199293166261477197181745194000267979132368842304014316277021144015993736435132604201207801731511930608459107123298908880116240262059825000716354072749493683825358280887521301079901911100016130868213997215885658007212120750871814761135739766996113073023422525921016295861577571946700629602956264439972600980235420505322757670738974127103014315516038363591001338778548094072416384396833726268906317901702270245618788816465599849983404716105041837052987473715949926867314699438736562351769190456604382475116010460196241430232969333897766815738611902609459980099502062510725160280112532878425837651363649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27112536910189968098057677453569313550145759504256282769116247795372773151662904550050506521935786544290892666973862121034724625631334117914628656217590392378070776951297688529830626499517160916475793080045510935200756890583408028353401189555306163724006567639283747801199530704511136854240358447294475877735677026122813882226210234412874584550045158018086764883763859854297692328543566304407371572619181389934527787794778926094174562882674145538429483780878673850988571046372305962719989850664684301103960103021558006403846720219261637675128193837149558831604317842261875230822452628629784313025354714685838565698997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22813240819955153840370703666538725319918584083024689805802801486712808922851158378364134079177217451260540619795535968929520691768554288748645600767392009513106378190358247279651748330771476233346582462622767014422248122933046307072950414238047743724630034587158098812602885804840736995799358919936270630121164362741678323366769911655600399616055421669480334174234122369061478846110198780133758764692574223535757088903577849345371798732533152886437483691138657123227927521878486338973834896502706435223470121464116726292695651124015934193263513542340835036007399661682743593962867276124079039302417385643475549785329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26458429211254423256816575984543157206145966677843609265230873380904353552793140997571107830916053310440131373405768806692603766647154022589327932736380936991111125303007983700346674166159650052872753888191512609120611981217132884146873762562821183273142937884389427260529288393247897513931054315801679195884473219840203550932367766355901922367243120069541828262371715375399341119985915031082005458658473255863666425958917095891178955866529029153377108579283907630095700855262101591958816498227115212674813654715980009529258248545076691602385761678800239553731880601285091348001995252120417271293465395525976426299899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19350570518676750296834641070855989787555753031524916311594361734599915772679661673696943772070022019460424569882947089386392666676524469503746739458650256196498933824400818419314542250963930972749624383534731905613964743224698659714063957658695359200521323114278932752245133582709041893026736535711794313953690785491502084031327879327336697249987997089393282334284581500790440842055095319430303082632729603871741240704724804400180825205409722666164361119665332142977774358443372047836824598902290508377457377778312420610613867329582456430652597607693757658108555119089388117275335436121901051521425284685318544107749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24589996489118035203937838723860823103238181003032363199927737250940725117277237496511949149408660699878429687863179746611926421413596358168396902130767234890772458285191122673201412222188529911624467560141118900992543389138330573179236493531409586214753567753363021110752887167920626644177243264200549463443618696142248424264588524299939532439196046352877165244128767539516042274129932544325828826008656528282023268854422820473108133500886719796516544244374778204901062656448927396158916535113249760321952131281249624909889711254033350045882122548254264749947151403546496232017992085433693853035261171798433738666967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25374404222158079950771812955844913597929872350308573536277974395147706794059997438354543052830309397931543199428236101796451627836107642966480081651763264228853161191240469695288596184409226722796868615955807823328159882436179224964925206908825458249401220891998900013543199975727040692767290438717587225877699782280084100672066704287274800079256197956834540325706631867036019763101225613445915406919239282412320169590263246612275233314341988509762373299495288630744799222859833702916611053124863128220620398866494675224430388941388487328801674925401176656819680434476708608843778708436476023923302373354766330958237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24193421534542453787242337862083958190754987407530136318154936281059616204045408659015146627027168207883303668064050326831682066564374839350719976409835793649498794987164498994564080425523088971533535485449426499733253110987221789498661402591315023117946264902949905433951662830300400256012920086946020572728191626941232378381520830365079543146450224813394300076117773834124852923482652517521777679497659997101665079943996116811654835834250355088543328455423382957053347587106756613779917660102935749925261875190937346075013833263834467929457896752495285474483315275749368034101657904910485544867483548705740095376029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21682983714953512655552947955642736545703995407912185584108150148200515520598673650704412719313088112402979996039465037149529059288114766990021601488240984835426091485478095695791127262671527377888444296497571257245007080318539824976272043763326216743625657259642679842456053262530468381025473816948797207172214840458940263494747018400119280520585605757076520704484073595370720404908108248906547023293070846084393295397110475142501135512926824839603828973302714770616382877938144184283095344708193382800892440994433458349705137423921467124507433228263760509174803176195938878171499227952249829258845494640824142187519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29510123078934991407063467976603850241534445437928620764099289597782069190093684921117026437619940378302776723953438769458279425380529516995444166381181674393763794159947689067961217556897468681552753568214824263491061011375265285161982725787092971258953273988894915505660787243944386130764612040477386432583994556688727645175593213291157283307118136693666718903230103755558967327974531830957445145985904024282223633916792537261269807737646392420893818834823525609697018260567819084508969939169287396719826184037709834951254878530495321841784294979108802762012773531026956950659975434400215688217154388226555559495059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27337130806919998082377053019909684694323073498338967450099347561158343672188999810657506383945734665773703474520861568382015061738258835071829133387671677675617812834322334002080999047460564095370385673011825283955423746048662825381621315259387476769330075087370475554543191396266196286109853377168805172275279121255352276227750332662686936209754645009798369488265571995359372199715204887542484669952828578431372246729789857186333191295847306052030420600325881452356576098420512717205159585580621939232164659388505514687125602895445683896313579566202102131531364670078260725468943464222535043265707902091268404131317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23712223096020218879312234458731998083247684525945324661826255393347999756457285744164491089916721625391100927673075995770015810388124781081701796134944863019068297715556390709542748196617614131594445933243377415717432879049541085432699851728167605891873268534639442189630742156607913361230302163724278136643389714785072301256463962713675943639766599907768441997156821004871358603698929131840449420662675083754699758199029431139173971005442389805620608909713776525895445261530525208226348077977547606693085566772228692882321007429249836442252165530143181194633660250825550667038002294300759713792358017350475486474589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21464665572843610036308134168073610762269150248229478287402878507161532820178538279294422785754537743445067386313177941272340229884864078124072785897171801993932522606838793266304419629903983140937961905117605701850195999652467537427154012958043906161784205468692346625287000607205788328884362381534061431696866252171655245759456140805483333310358251028690943330349511625371295792376116358032683143930519146478877484650181471083408526669188747765151863557348031227212479161832709836339029560173188903636820453189981117627611013626053721601662790489642892825188001624319225037508321243752299746416072535355382312858813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23791101149633193364215126360397190381133992858118367858023285196123732640485460692278493533580129849650742317694623630558390001312090835451445893549153632766924207875219007849285669298982073205954610335805864165391010421776273072359453553331103976252544105352909007678222633194217416126666182616117326981301518932113366238366836979792795422289301164958681320020140855848926951729110127462391763621000850749561905941477651087226705343718384582983705887840470063130284178004534528096056779994227731282092674004381629386957383230402742313323929921956584758095036519960286139662917462036783655541469127835845571266462659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21957497912914482285114003956711298056196051270558608304376105009880291512802109335815561729849733028570103081953801329808833933889539196836393498316536260761652762929799312177217815285726263793192461235842079421952154053014644933904340762350649850197135445650387713599174989474301546172320135082451589052489189074801130115823673568947151913948902777410843407361185920944274436394287348489364873274989706451715913809319333565113476493254736028556226361063550678310954270635159500819620393444201645384471175671839373768690023491691038470518737442792660636156493911015867059856974269431055358113708427691657130603635653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "22787685941545891323537522275914399416202048148540799743547350249399383882787703599564535557700770224001120540976034745737684588578151827706368644734199781274162826256428191767646472059431439347598642076442351999734001252517529891436585693009759899315030230430181239242628957515022032115196680181590072444217392669800657452743278657237420445872193072542202392266345241269880610961909204157384685361984469269306850300628895143324284231248126127047552806749235214263031225709539989596600224290898117761302802828748214209772588950618612935581239248503233085135556249099732543341020280487085275837461143298473539953441091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "26464441310671729487414903700263633608265847925258877624093328051176585842243767000621797689985475527654857767763530276349396684566645068981775202895889385199734190885390720288859133328741022874507671920379110166681408929769903884981499419341097751978173280872411211946945791557367426443651174214318488706831357789809489822787388168721734303220960235865190919706010820760699594457423932257572134073120271718906064266205399940169730062136257165930070304725375156085495969319951974559877756580351197907675962193144177086016679854957826851214427737949472917024582427617228166791037911106445258430500854414194718260975947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24422220887424109071534731162708073092792812128171288940428100582405745292492532350744403436685060100872188807453004436549510475755106574608677802232980503250989320106120231199238816787591364853504763098486183215605615280036183096856178573773191495544025568705257938663598729073722484756451546271155340198088598443387719529554727683663167530782019630833574375597434527294735835366887481945183825694134655650811487542701646774541137325041913010998501809731922935430531689903744562494910156144303551827046873685478573464812004305807438638997195250667898308515970767372844926469352974266429834337273297130930403731973461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21144608762520946206540461367268728514519240445218459405831361676466555035363491040187358592852361499960036427614667749568076506074460431693219952160130994045020887868808115039293546115387276586925618629414075236662519996316766643401068909467197602820452166473153113693383397097519913416363525148733589570158814636519737227947492834901780557304261714657966151423067478267466017200568383199657581783262434860955799322443041775703536195210085952624094402587033280069926963368329662737823724867922046490521331345546591970101202159230233414389026602945889586415686985296628859332734924012668345874718121314664975824948663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29714821314654071404818429754684222635209387105911410821995854133260831872355976262541184876464350290487291607298998924483037169503204394498933155306774681466297007252330751429381458418166810055124776539620848858483925310932147263933957275740777106587779066016818872759028227779772240207133092842685399320053765390861958929579123777990872952097784829001695314560763684541779595385908289654989357561209080254459778991353818385091372102853558218195735923926721667369414186128734914048382003569105820740896744795641467519421402663164808668534543324947485978812867659430449782891388663406101808490135087361573152266535139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23297058397510162274803238152654039262539975025064706700333658639163531995034254436559680112361293231035657548185791584115683100797335083544211235791693008250916884660147156070882977771291444027096972586541516592595053296881793882989795332759466722206409594977206044797965793706142049298736153260036908405548557107261902038270258602307910906286151743552278374284603529531080740947169417875397305947665809103014380889775505715936918151913206745657176216035922799248490240734606878228884858474124842826619265920533369078634893865356774406107041699089871403102938724814398373970462740008761075864991229452821679854770103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "28716166038698766333342657725188540285653943356028113326638748724131120138872352754365727025843262807930555021043342385731188531926613657444882411170871929889137351431977761393378670983276498755181874796332876882083749804036785976514621380604362676868659816713094752319980167652512851628735879226023666247700050521212009997431180370075076827736612913139929320118251748040854529926457244630309324675647183381967039375900220171007643621610903437162828704255763216297479135088699945504627255445285542710198086158299002978110474552138513450749964416254166012190640099677515158830793726335078531088798899816762635892440491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29201499912123815563249839040715231745643488448777015566509127841594808622070572239857066776203028787462450375254590084393346255101484223464318945259012916038173026026668465573701627171110230281659090238556060113084377979898386257639629832126266101197781716172516260312231653813591739591587483500399213076617994127710295024067569346450031404489249878152532187524008872320847135739993930772437460992464207604503868209224686220547254586202134197942991905067506552941668979316236292960032867977413120027439997219976187873406194321149916031978888961060846557082683343980733054235717032992542437555947259929442418608764343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "29559659657823978764491702418199717428186348436552363056882116725789489034459884198553498376512177656660067801531291455541599846643935617736971786304290291328108578042333316689094566199062430730936360528741308679281356558831778806296905575166836289485540294300163999346726437777834381086022077821769722869308148702305514259879552217876855713618606423368899711731277757491435232406144937858836575496563244807410867772112402928048521187506063120531472671036401057045369158357477050721969215452060262642298014126147695221179049035798834403543065741621794330388943808257582959765497413265923767448530629711411756344154477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "19938320593228800814307192870164420811509594141399625029979081309194759772801612356844686144110702512905346229687133348237362804783982016995607649025391518725779822309756411364639106023963772051035938053090653368785343821631284913051231085640798840874755526815532587774794242134370603350348054376568151957675986422982783538106586826168979468825159239691952501197133484125695672107575862118720397476762013504481344588344840404057868287732043812525357501579901285682845483598253276142546373547082482061397200617278931453313052795407229445399904845323179418620682695424132345170693376218639565144116618462537472600262271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "31434985053268039363667014126217948673592991118475762220924919118693509299915272296681417586732258657894913518710872029825948368640523707777018890702748001846696239491647453567779384897595364381881710483699690365959861602399252924290249934283413954889810658373584667950604348011792759873817869494463520413928052219422590056698408416263015211168986192243003344244405459734592869814971709244947591939891853511619115223701569234380180418402269749154622225858521487863418616168712882549863135958576668318292317908105184281506816332201340199438912708923325016751268650515733711321708000833015663500741912647982922259042291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24331536389386162054467119957964742494995210690838050427929815961020275226045872358246749458343604434259720342510745710127786626460098006639618615647135337151249460689526569845811012820595423904236972439204820134307329902874297611246639017424049157025012670881704190293225010417106231458528950064008146689302443399206910120330144569171957680011932685659647409170967388113464699397311570161056539895125028792689808513705134819214729753083557816709659379486882281188339803582803389772310561289165460059036107832484069100630821442746196882373306140914330972523139667485046787083593216738630011570702913223710069942810973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27273322307378372844322119039851045335831337599059902512818026350139024222932503990285297233735745430574004935674805792609130485780361568800660347413399780851213655827754613440907912987094277799371429172055856441984269757720772952741128420997673553549248631349262912298954429806945775238830737948302415535623299947571903050027352359307683846299538826412358711605768904824944347849492172985559856524255364571051018762742688625645532492413454989687070801686402746223324882837960084000947446739944884567734304547597689890829993070898166538750599353416464842700863895387903747961485664658397320262437123229034561366258207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "20775618359634179389967436501033399354874138419836383457686357689082343147510075318020734201049637796582196409341685571271891360833707884660880785214670918432178434516758743442826505860401608077780280150692527406183140059281191175668569744485425239306275608680334403320989787356455924793768021594502537093308981666490007281649807385296029989153422462516286357503060971690192036033102682444835949019990375985235611563677614775083146240006496599399272893802191449674946003464199226460005661669089697154970579363551535865984849976297258450820651521595063207574828348906941877864830835217378628490292670676232822114636257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "25626213647310512289429780238659014597561027144828130537263950129878986799107901333700648562692507550017879950302578077207623402356333533311578313450479283709837675365647426209893970530729773767074401635841009547527026446500967673555398151969210462476480695177831657810884895758028993860044831905853147589322095147822538648298121763228198787889106651885143078628943007545929028396906719272061262316192619712901931523162999675395435056832377546409906362534755858746106625977879301034563585660522136743847465813438491566786442622428244612832504832768215184187384354292203437696210324073391374168619238351420932164034039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "27236695870453449899569936962994774089581459915804860605640113576787860472135693258106884184927792777273575823269614356741126102965895803309945178564467023951761165239416557111280999387760140268409473584098750630725207044377541513935662600031507546729932789947653385067365361968210486139366037069506955535663608276261877187665988300306471906018881431396306945158849385702204263844167040756725855306752571495840736230271173354985756812103735283615540628473308779792651144969030801055559623892348741055146734293563609000909432566413402384737998675581326025365424385749057829276879779909731376040783231176244151005855429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "23905196992618415135484937018661995713248646761617149481005939422555102886565960419090541172548735287203078670255160673385698106197810541393263229880888269730203703428096945668807766052436163018973732933548242023399530306915321229698644404371225867409687836950085051830469342367938248971238708651673671122250393616737278994288271381416081212005461079282023914943990446643764581915739925898259827510542414458253297648492129508141191000244051330315483789396666910226169163652891932634536469165960468461144002872618562986047491210083868814393502455576300614517684843241434591350887558140433253156499131055222616044346611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "30740645391983197829950704822737613324924279708150461680732626496756520902584868827452320149533592056071207994093754977118356427787957980869698316412657533928983898292426607370549289588637443939166564548299273125187825718686552887168332213768306107309396876988831370458055185514721197249794715724694146510128230527714489862765066005801398765818411758654597633882154158834221350580110351384764931684654123559521252844031111510483512034897533138218870720401041280122762847396060492026776784188612259117130806775337334075600024623910509694437752000857179021687557066902262539611384775951795618540583252936141707944841501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21630877297711796488889804542475658235546415219716335061680797968264461795588606435362682681657781063517920494846747137096688159317947553943275710634043089504817158721130662699141161025356129049289529239430289479382664936886820136236736814794138353260940533747241315443102863138588635611300378917245847058505180523537927658533791255442980945926386213523826136079492970367010505953072718413683217001919950743224325615690197322149803073886775414402138243581998307013981378119417830508966536423661113412789247347216005750681872566156923244513153133588739736231422861112078024426575321866210395053573516539873957878194289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24512801887036641186446093941880082353228975347371704971709413509717943350776070129328564378796209774680103421281283240586703291582857157546610425695428885319900187637444180403474454588895350840608880824118989935958679801514735652766320153987634625064848520401481267334058534192112917208067804972519774909190786994436748026193148110857255999780071068497011405150993606545858697949028748430924222090050208947869482134269295471151767412122645334804227446866906520192909247526399945034500655009394327988583763305791957434895052021499700251691565167239542495486169552574696868463224542488698527658124814827045694943513339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "21970871141225616422711382595949428425806547560225987056773206545792212995224573924999810932248750217455510336489815900469629795431260724204451930361287451376229718276689246371866181124726541424292240116125951525289665967124241596818252574717205843593298878857467676864766625841766298155289587215758577449642322089188452571576206257067093223866725052005061907998719792431108981512453570928777064950803393986614031457909840330573856201079249654653793172792684815871514370329809569518231189211425625400272154867427485081310287095961390969081897361841792577969565863605316310857819580760714520556653449495024496204337963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "modulus": "24325960941520813214290445310375674260948528406164236325754078500376772188746622531245471570448431612629299489584201662490568766564626043939661898355214304374680617054694803040665625564400149402012808654000516476696250136998937484469235214164933180421825439710034191990170018022747216075348220963452997259090455248833288137438365853202682469783027190378153921691568345912062939563330445065718548977078387891847098984631857565748794423134719255384782560491117096363002587909343281447183425471548751037067373695983851135853270424629149330083577116152469762143323591201838572434801900164063581746689868411445187266703133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "826668658687710421533692185345645310251412184393478027912526573787244434206277500624602472052205661790402704138972519467413257565995654771793383765548826094408704630203278731435646504963950365834133537896910911955467848758068527773464878936625809007514588056158377881208958571558255292476440781129599108884216600890865597701064766655875005761771917248307264589834356835059921623523432727265167619008763204166534681520745156818497705550791861638331502200418690000673902928543301881296052042160681059932135777347989249393679106752007320414394287572941790181116672275922972714396844979387513316820470018037695590668740755699735811922224201443555664020286329772535483926255344054718679311641217752542784657254985745052378000023994193462326297902415806941255161979869286194497502409263867931099155494087685640123680931851320585750579381102285536042879905326304301655799866878380208957379967955729958060563615589368606958556042832370463662945606081168098554332834393150367298252315779550041928931038944381060805183899648243719581793277544149654924231445792271957105903901004690518379951165237044667000910163545722573360099196335958515830862935561956383103931251899367853474585326329646694090154798287447298598917815826563288623728081623973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286055233640300462863133025260288090977871808899747605564907461528158043881421774014510800420462368655933383074702031523262764635491895316005859140988074497513869520614790903248627920011711467670584352558842051578838319531890419469846442214136705015040550131020662574174883754835985169517100917638369417706154897315309719713297614549232789105681148060855335316559095789781297091258226493563878058358349698520473058789545974075592393250834085401633033116641693493898170164403550633882186478293890013703939310172317319018428640860379999297542861797699896098803878718852060295216919474903014891683078326650674441826283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21533431105669882022217436325195819430900321902560360848421744949933697185473648328331434664939457311260888678424447621931972649931006525286443170130756995257332326961012080308280923778388576106955764008882350133412624896282123598820543523327370344962005335712630925368649653113032276975742719632746573370474915751586836388969600138843446561682984166808329382537436563371341115794459456684139222778395130962318203866861449529678145062236630868170332277171101562395325214374630065200759801423212655092398988235827359440747770440360913210966636331050348874888425140849694635338399413239106919365887291214274847074971199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245648783379038779334152613203609409902195816751510033393792912917988872076903348469489700864810424688810732157736748434333964166715072732098320374790031160447559196371072532764424711150619479126223060618992745467287691700552289273294661511759404819579330201794285163975071079986860345220024298978445813692402371965496442524295035183932942401389579469627956822080574078320266442025829267229376123884626643463002739885021543850206157196053096114571106150717182558550770785466976864497526907564843612102355493954934728234170936060951133347384873275082901445959523812982366065646706521983032434780782426337391030092561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18971124433116774873532782174202554290491532324612420751540360922515765502344952785804956475292524847756600734167892650121146181491774838968988811091291554554603186873584080688964720766316729611438977980515365650534268144548893361956743358361652543402037836851385726954074591130516696171181943945141278699419289475648857290694393154074259807137096767473226439154094383730740779911816409805627245276495860333521918217513435116466862483729239854327367312212436566036847163616848784376276506834073503318471726337825272629910214344714196641317022250879548979957154032511878359449144509664722234742322823550772984456971051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19410055204957261679664834395067867516917964038686988268544432647010884558342976120209151197363143053307954432783828865262023253960168856656055294310634612259682778301419825552762960068854450033209625050893247063269516924359889397585232298010807794687137662615829493862196158898448964642260115043914912715812206910370099114020817843480992744815648310243848732721038790975619199711766278537157148911924492756676398335095788965480268309438128254650964507175746873217382300209844039088641601520521548617178489390679944655694200460411495508862378972502154477449216142649302130705505496146895476782775212818439347619244001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23712561029094151424993826670835969856112426727504813555862357302222795584071214537064431471175224030167493741792644252239174776919589721932720888763976474734933955436160644602720075121052741339942511079373579074351617526773651788745934345529804980931007013570533420193924829159616605975795475567288449724294360380350344400871613338051584756276604505146010337483188665591169140170673267946502259691496643438834124807211737269531749494445342239911189920159687816318374884553206536819916250168819973842582525394658210435246581599522514763226215450228445418098427664851914838303639921580948015790933634090756725341008883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16373046694451624777303651975240713015580276769590151569172334401366664024867790479590800958352702463050732214952983690234986683702675474067032370830931491453249978166231984638600223670064080129405999458647728459504984454049082921353650436624737228257321159591490491114863954907754188759112504763580280545786760165665491036973406874865153035502253069335214170068706535960612965488515988803726587415671256853370282854162080086147130978391300462095097928516305331225716174709697801839647798961646086133266929075966735541506835966647510966002846807797790256939781005260396725010626984606447443694511640334121361523225039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22385569921513405368657974464958576892333116754574937895586258782506888683389176261795893775394025936780716765752354875109238298673912082832903439442568782919015325865841279174195628842194257002274612321938766476773886027142759728582715896917341374356206391644327499438891851347795553725168229879316066018270484359712252201476265690110223856601905495644872298167227407466946627703548226203634484336234192420617797720873157883280069965214837228574901246602143338552761087728266334384363134903027708914512579266629774324676373663022720372296351432417288616375535574336300817900111640435878203916413222285685022261695187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16368076319862200842034634903790281140481496312216547837221434275844006432623934050923139311026659566241374895373697766832127732050772611097484292586002307873756080502655325686965475430906921192249287651164791800313095833928231073424082691821386555623140657145843125803931740077735523434497648993965625316018560261444291998647548355260907397616360231279878556779586916646584534566284766408995600497900700517099374581796029732320913211742578973255292984487540839011934752268274030867333662005619115979245818722168691902060267178110914156958273298491467263103167739323446315253511684497607989062047721515126772472363503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249358595118559671189258135392686230083338953943087606770799731825375584242034215127944881370040261130967098692396676048722369053756156936582411966993670613675585244941295786259150378231591420222360792250562952280728453151402014221434540209994423844811256745835435955624249870515876498861854869543326957025555109199744413516305656786669062050116629348447272187486202607388007922557063675101576347331758235468947112406371966902801291911678528880969109098407595440812339853074218736442651968089575914286379466253040065582562411732022586605380979943644092459665195615944381857113430524327389358213466343828695237818409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17688270406535358693913671369030999185143066463314678804410621548355182656576869674076989998081297022657763888246634212805214419509319523465781932077775157443299956418626374053958914002137996133744667256649378850631919098249598587730067094361123023989052763129281283375618261861859556974045194356840239122208264002487946674983163152303326625423429160462060829604538314157544297933445473816257398738023689974692795285095525671364334718926698508812842795340347098802156741688706319838777978014055868539038209253682209658402414229906688401360337405476731236419989210034082883268419021244640124184110333010386711574398673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22479412336754213086775381668165245898455000053656730252318293102925632422815284789394895622071633912460469936621216317411971255301305453152383785154138966458080519285189413509211679807225201489042304628971771248949290431757369893542276277924497682239464378011095136706724838772351310562780803277229567422188308640484485113059962560175976099775876163272374991879372055597022794306940464117268920074903587096091859495932637260187683031077142616566052812270697213987908124806246851732875548848667617106147013262084192593567175763752509342649692547642157282528635225267380055679644776275484123724137487223327770275965617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16377674242099271320398888533912831646675969773401564932848609165028471221608482095923022094458198064602713504183274551355040973470835126030380150325926397356437022704570770456013011941028949102695587099775948534801905870280740222233347275756415721649431767831088910849742033648631403332790785318021985055631029811282978339849972257296712302973950576820841781875586896970789541536004033049900876168724732912803894293291266155734953638661474254519403939411515495618050797596058499303301056332177784658349364282638232683206646968523793722576780670994397798721785178323769651815446927903593513277897180305953016215920753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340109608569903281553969888297531060954027759455340422446860508396987381452069591357654307866535364387185498882760557710620457743148288398252165733778695455361849142837975098418697054347939929197471081429689749821058015259420559118526427611881523164913818314218027901660153174742836408721997252520346527486698720905996868885111447620964808248859782847881955377890684444735029009224558082433507863246710630180079296098661605372717643043280460916418596477433727704920647684228570560669130676044182931327254534435389870597716023673997700607650094977083241117781203163514243183097936210141049239879973554295916939018511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268676461164485031884707246972897071275828769062575336254201282275944624089468281968276827630080460972296271932401417911474739598023258854293047327244104938287350518148388866912858919687074946794875349236429203818882375863471698941092708920642547414006048746426230303567859535429856009736950038853448800200079432409699945650502186502032034429552156330529436853648947805672356699530911878551484956534888865942721821010862441276086968598909032839864705594770005361081378359149462130541596041121006653819049702759399035358388975059758082944630292817274815901225719074679493766343616575321967591948311713381770134453903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358426239314767913804305071744961713382501968732949197703111546427893194315125703898018652318870786437173706977973031065764325332920345106667802909273140659263947310174896067613484802873853204126602358991421839997765254243663697071904438095805056431565340161336189153161355682525934618092880238598843780229118804778232552155737389606169474742180236415510231810161188269401762810975702001357301926271595942149283470875484711572157861299016637741592687424095935940869976154975617637655094156622666735255083046702481598403267017420996561345481292329187307668676530919051233665746770264248138625676473321656449767473367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279319396785453044138462341715605275231075402402167953620728414689161654950771381715205950163587550725880765737204197958841404686718172418934284528446016486051644747276979409976190654532731611508497840684091956233738031387537597321288182029012694106249060444290626135040171348473217152868729036610774007567743995975667916803425206376293314242948729957029598749929669611447780556805233319778961147017795339971673186504479650144468028661417373385533725510648004178182122536139988153600118047389560355669654521953710260920567949882805924632393916181526744355629373868644457977512213821338729893760252099672235635430837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28147331161269386293673384836836506203423260925606110921540255605574921463928256173545965727177922488440366012933930018959107081431116834681474163273750196667962429625921929258576035632989148090353412280153258434294319288551654025399637565916133611186655298548893344318637057921393773396426437611228854748932058646016965525938994039399183674367994754998073251011873729020559447185688503988918118006824844328437303932071505932881737723507188451458118148129130280691933449466975887194269851391855395243231312206430442698402239770861284164370395225508437434522008634965857410368354276116686285851496408063337270645388481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23218282283507891047824691250415545427045154971067524336908434563147721678446642319640224478624993490179496926626034338781426244338088410627399161154237760685777125273605767929218707918089534386277049661438461874869203050499359247046304341645701216168373958855924485688318524407177952014347694962316227403243127867300965710091190118562401939477400995181648672201664901067002614434343581905776446910104484258941007944669741918801091211403464987612080617334832801209468870185489110107792282375405024737530924923390385546410715310895578580635731372352573852739763758396309558710304271482416377899957297486115278321620727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25546202083838780891159604821351340842203018192426226652228238275633915382102702936940582176838845058921970812038866912164018425700551013805495652992522081236650079788242742740824927740386783659354866829300061131076083197526106571940306967667004473599556731081790067210846911268978048542682196645696401461285517687357978295872525301780229710698654428612525359985250775022676939304075766238819241642112502797811618967806789679491647751580266137655769632950632314736746211486507186090576914632497392978401073695105535631308636485244951588657649448582219246762672174397588162986457059958493917170308333792626517766180621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22935796366600859911843527080685008301366138743386599391011825536136204932748952815693459273933213467446905169763906036871854945202268601992258256109723418872890415188818776227900295181076392224052977679393763120410099852474497211643305378707617190332211516931528576563110899868645473661443286653061396838452929057272963744442786664942871541738766431955732483522055482505551064089734611800076862023681702419585822930588658903016914801644028160196270956103338147287775296181668652685151699945392062473218319856742773146369112968290233130481253791260600564145248470723383457657578065849346725279089587581773207384664821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315961245834810564163159884109958686586899742448335037222735752404861030440162109422776344941916296701969535681551531386236747986374908824220661600944894456735839820089382126350728669439399853666042837617923873135749828854257796509378326008885325973180210922340048534053646904275883582389483967581964988609462747212987375692676630310485271687596154328571525403586104030927055763280405969651423627848229166273223240987007324424742673766654919154157328300880829428473619044534060734259964746402445976394477731421895002893675277470697134639971936280796770791055694725391957206445527953533486278855634455274942555427437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18287549929961517099512895673141590853751690600237756497432766712077782573557660586304588755663830184368847451188060180173884050160449027661835300108344085767629540403787607072078817897340099390660519248653713100828260718670653467040838539485640627757473732701857750364890829408698537945868148963232495389290660075859619519408032337884315020200769252373598558494047568630367321028334542760425848332145718047571190032638217148325020818422721348954674278161424829372104470565617528138437333182343951961247742852512918625800344918077849574880425494238454982468149119818023095552334097213255576000477993121435475641190181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273667938157257158167106365019672701677345288298802979950651691512275906682330766647280351303434054215640119349720141131587873527668844498571104052256377497762726438620504773984872729304558746299417043474894786190628970466400627851887962052047972174919172953701182658324897730406230733669101708520171844992360963087038025299204406760930749529669807723002958324884902782682649383259174158681466450967003197136356832697415046143015720411539903106378215509110899211070129326041943251077691933619154428438631495468821785090469597026395210901874581725649191420280290137162165959585620395055982825480264672790521521985089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303757727967557057610278253704567897858933345769759192782408327164579342207430667980161439954343185393145114678017752415842498651691934856126426366102521422890134067940713940297560668563503987950319201499045923791673278480401964878863017955529000228448143386556143375481652493886374654492753075495113426251242952641849753126284408430868704089410217660263154200436990408980687528651232206151919474578332753354414020147705684824956735917090690673821327899667549341935889746638536613045349703563793693854190173456891259746022964924244830827815273149500087458510199608273278196818255455381471669459036046606761442053343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16707956202741858257548992644074800051809282596875446674964980308199589049363670490641132154778902825678717459647916006526285026150266375359777357441021556934513375796754745032997157536196971457000844278463496156590303928038088391315462364765616806407886583485555853466599719884244234219760753146953051819524639789960322894869900861110275257167340371490174512462540063005115917703315842246730892671174705401132418922272504225857442936650459755984074012539290530337587316208697348910359794102759473032247504408580149100810222380965209625487628402500029789729045559971159895269983700965565135937636095294102827538332343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379144767951191907097570906971774356036868471274975925518672158288425410862728748069590601427933694398850070174810606202618348433398299503650793906910662973297925783790694682471816075507487218586196198802578561820157646220370326294114022094880208884317360316748289182510223825149319417052313111366461174938823914181705743984051164481598552077305033107971340704055650274416013789803298838810343355709742525533658755838423539278348365820562920359720569504059207154952477874171540678029701596350427859658967055491311603631815647572132472364294270220048016341074688621788251281974911985420822529596376724237808228262249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19660231483461163106621080122416896965423562555096974854734515210924338566717671045583167338203942130573382940614598774221124878316045212884866422067225634553311943069522986767714686870465891651904757623382817868075370619216284802069980813201415216222382550240141496094816425465915757168470256352435998702829037743505383166463803811023525202447763762465793479320583161117643122735692807612024955288879595649634930041945396572481350214625704763217907141741352145826179107483951145231925274413733111629914980146723461296200766127318018208312633921055255948095793667364717696108362440462146806049178723821897375900413129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317867962262118774485756711155496310882821799354646478278933062443567960532227650009189055078447865408734146469600045108565187456016938107885205865105658891535608046340163165095531825115834707293524426753847135482709712434605747032173752095348103877607540025153536290771378721175744301801193395569781070957348785670257723068501758270853116520938488875986803897521459855650635606184881822554803987073197908152786176354575743468208398928652912197885766103837469881560975276436326993952476832471586958731192000318844111701548353085057328296322065935594426721641035323423309905372382729938213326624247251647068405639719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16844591941903357279948372293311223496789631680432830822948896042152333403089910626306063077756854445735633076189055457969462767788699499129790518724182690679447071067100891118614689739318406170215893784669792409266301860145646443197121821666567986847748825168059209296300629375542315338590182712874647453811536727592107094016580826806236023904941461118169721481582378133595255573827513584167160294032577351481117229611748343973861992251434411551468993776668355532084108001635341336120861313500004024620847524812468867608413653825399312262888705635797268672980387201393759618554019565529641383590798694298878787743821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21393623749274514248069076546154236938620770839094749035028160426733999150709568296011182526974782943883403999019200867577045830303637848598401322038462232807693312041742846584085362184961058866715995930356204442653512394137841379907270553523361946282108284786468316951049557883011871101711500169283367455866562104820337501575950485070521255536367663134427125758559665728601053443272972525394576333615194272542053592892706326764416639931601054846140362465968923709189884163494665937584622499877469977187135451812758038065889593363396919442241399523726928199654126213890717550236720358469765840894033621500733937617569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19861848618341082762570998525717435854206617495092100991285832371556367507631563373717557225053371749802865465742089777315180790464017304066724829150146561832208095384206275175249378838881578261925058570829638430319973517864249585027187452893556123492412010666458773190989855226298168888224783336999163914649595338115236401878203058933036151760785554293896954249690741045243793330550389198019799698357965149275829078568846643881590776534174645673472073784881121335689831665699963423483142184419226536524534387060241252330415662318059505793695009733588331163543717038022807859291885543682472487578317315870136174855599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21636366725072723169875916523153464965596990741713706355579773795571699000918870300434988013350583112762917766124116841186844549238972649841890998439216731318447425701415838893553141708784403494994763009593637207720492974815335539638984927789772122391542997596539002737300414454606466427126140756607724640295623226093590394877239410926450038529821904274246301220111178940056372756214833974081549528840172928530802173390956789167251765247851541424188596568892206102232157079534212784242837406875877510666214223414752082870283702682924501306154062484193329920356445255183196329416023940848035016204030881190265130731491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19883035007944522799217038440252495075298881629333216138641645140510268515358813516110822550998444747739208460541079478678789023176590982388349737226254071419528774445770566641747729363736126529465969757549142035737587397410630619576189590145134823041614068088391386884456722871761956935967873066937824813511633792033231680890566172854353083569506719370610218715311892082741900123865785137367156598416906371394897569374401506958322415018751167237903308934158820780071690058107786869779774355936579580286115325373948029831100802632237385878088468210365330579188866719977246764873772150865820530161914673363902401917641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17847917458186056850814883532478558214502884162059712377007128446212253284334511962311106223988445048481461667290806158462375925015893021092057926245120856370290722084266170998162014364053392393970401840210497248228047260664669257635194451757719671998691371260034011066403748470394805657996106519570728663222940961442799393788370490326597178443435759484741997250048740459505837411451957771581981222049885920756988961420001758420726679453956959790269756091867843194079615967206443822795260286632071119616607340752653663699526092949962014010751351280207757352985985805076605252814806978999680392632419971586907513409571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17757916834111993409336183302780589223247308374122939626394473004664318453784689128615996166402578229124306658685071965134926369664561550067650829893902497548751524868215493879442025229504008797577192551650006149132023721152352840966378696736985173307717386822595725630410658985179413573159903544981844185619497532198565137780892652538486028932242396045663338797933881250300941822690375049021608236891282621190295678170031437938490278765421292928005063502968971308743824237557362520214713014418011248327684390529052796740131878089882576161893056072862975194756195362608570180565431971099525490613729077436340839901371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16377655664036673141188754709832709731704501595522320682686677771885344035006426523142510454607698364194010080854426308555110201469056200488391328813573629426599048656966294522158034595303615265506734165792191391609090941283186083499503739853615279256922044906962578142548195033268680652308602927160381538995920491302987367402365883298774491483312879750172150212559265468534404828020643925631373263256425384873620500815115178490717016546742477691595105799774703641866941811009877512291430765745371255260508748221281587799921802868874101709964093759236137443863328884791324906922389741134929791937451224020833178364413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287830386451675693146984014798691519032335718940642950147095100363050713386205029215032087228441112320486846327944797845250806159045609554778807493045125734745519285600606894179339174547674401067972276656635315040004035648313834720656921315092451822503721624566177431410790891780586184309805877753421925693876150251579529734432651900752829422426694966980986217942619603622158787300738667413899718439493869462818033455119419727921283743058553223082616786782826439200944512230941488238057472569037683652771449134425544672981395860263104655249190050693859540948085517898525101367368568395578695244705259024504665927091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326976406500101036311171355920149196802497626174590027644187569133734793868582528929376954123539907879047420164921473075512910739822016895371393377791577154575259033249660553936832464113581043842248796596865371842566443614555994962954778932843201229876981156959019927471129169808763094481166945899021307550156983952064563219786502144730193757566846541883129685984403876997032429789963307911363737039558716456953449099249298979292442262078693896451536891835330028546893632866003864565857801998108587862507598267321995470760237163956269559777033143466416270032726498276938355601310465940892173313640195396885458010391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23086042639173484177274286142792190683263333060141882073745549140656813739661701074836640899205358287918137595084291808225963366351356106540719456773643676090851132211825888404205938189265877777972797088826543463368438506925150466671162543997733016757288275037401698275934310913280696075337160434788380456107650092426877064248225616236941121417674655941793594256242821903673853974852659006958292124651734642389792858762257407870514644878587631977110540510712133153979363337221462242864998933562218526073556316169251409252658180234791175070023418894765990780145784216156153882704363474309215619779412434288759876829733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331704343823570936029444166495409889815240773189914579083125183175391547589996337405359351008670571791083247668780517668373088898864822034280096357231913152119178311356266866630087074495772642316042301468088049175192397102121054866059481887874111823797741663266029424291648444705369515967685780344718278329646073615651496401604251755693970847722111260953030634300683767703015361355400113253879352948583201806296490958358216696685072602131274823652167085329212247051911681098633107323878789332915887295624222346371996248524562985691611908018008541798249823132356872629924759255132181506245973545279058238603074164743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22329084498030419952190621919648574855424764350949258517378055238765042725338024186782239889910309169422696568415193275758040815673382452386058912325215878356738355679306187896677815534745132574270047124594603277245964179925564015041930818909073610377823948687337677225762138279180411692797733781335271382146517033299433181923891114369015384632078016825574755135872323214452003421335174741920394145716831166938966003468946473430260475621747462665659748078771412995214248513516342626052906971115662799930009539263030412895418970991606468308537189326761443245533237286056750395416027409947283009920685590681250302738439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27090685745920560335407880251403870073669573285656160622673141338723261777603456332112479759734434044202957676729101439654554706613311642687169833371724503848663558104688557474247363640611686236982126091316059789645478947115023725907074238495773421561586196119214432022667049604322559649074741562215261049796501649356573270563593028534157389085108415567315619223838219789816738066877811694681633982757999571228910669392154965211557648357263356087312490254007143304534838133639740346797368842996357506355140594473399745108455479039217858556275218599902483350294391105833678534468866661244447738236667052296458087679829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322077832821779591539099633573230214365334426855337455865198150536577872194714599894043283387195418886830510789435127018932225728589055147449945808424224841042037232308882242775697413833823561632692135688559967525575290655832407724158458693927763445416703752232330467139844903996940954739765229190564929909513876128091200377147002617066979631144771255499903271311064675723590198236133775435320514628016066051866067175067228522437202658342998693544156142631037137878952058625479493191345946936174977914427961955659306181665028291166791790636013548808361079428058049131883403414601239263118495158003640038610411045763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24451860323818343573233346188258887293316739001903410427332504215001463599173390717788113641970113862166390258075619180290178804629265243985415400553672969640750271875623707833004910408435299091011496708971176909431319583570573406298228181522212228462053896532622243885794245844636664583906548586910293416836863087742372314014506969497342564692536399145483925087923446047135338936981097853025625243877575773816664633584615945922932652981624281676489680507149405448837829050044133914803910126040266638183550154393343452490406855650507997162241787647947403605486980677731068597582208001271249896038998058761255538794013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333486408901052404833465987681111176246877687483620608271136115138317492840012347076985592579532997892953220486781098200246894294186736630087727339797819761379033161800865205510258581108584749634738344902672707182274249131986652387635568272871328804655198270731006050759850792080645242833206835459193426597784097269939838631859038793819104718241868374396212166729304543236771656801641035768020936770420626071414403222902526934692932092727575697283160988238552454859998614389023369208422595572308215862394324781234387060087892656742577509804678751820033409462511672051674424619638026227165273386725924020200551245773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17697789030750028752403871652679514665848863280369712284023488205132644979832178693324618238769530677439556079041883636095564846868574288699412663685868313352722345454283951013473160261961220414713534615989136195508263924834435871732826539277112696403615070418453018717011441084905624656457629016281057484697202355842533345408180704261679227873035677204029448572697381109747660525618649253177224221904220518174051373080607061780412765112277013053148605542226196768935683239862392637761955769894050280875340972873795770969532618653859052431786670478890451332709276433766555640191973619825658584558868198924829712057097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16824853584988139010951927965707029409792383107489512451709818238834530986691386257593371095800301278091455043296667590452155333405408851926579792347217352852176207065339561391323973200339276671676096261226114809437758681549268759336693838785121601421385610927541406076759347747592790695369001447108536869279171857191443409257926531506396614910995791945362781986630471176329149860374158871529434807160736587148512648419662889801505116487251885015185223006563235769207776611302526393772262433508126480807259465276328354572956510144042107202991418542546920258737258893927919242836265977354066528911682816331771615683987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279280669003064362690866526765902743466019532250902428157318280860974799109153260197511990211726222641425270791358427991765273648137111812125223069923467842131916168179945239609699316133992075121048224840888844365074316585149356685511214368263441953942396341341693086148481483954974444812709557011379046132725123276032966053542127395980017815184050777373613218946522291008960854910996960290050052704047772866572392411263474252275120713638688863690504089314247221404939939939258824103286724811749907379465824933218381705114200527035907487232573939157448458621544385653722820726916238581482499331448839112185830544839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16399528340574201190466743282668191657966114997068844085323512895360978605859874304949576510608541917413845761978248852854158856264257153794521919297673488557703012314716585528039693876052066425580431625498066778534113238960863005947176730153069347827971711294358817974513996144133236707846016104376316610182866369946234025776611829658268844583054099017463756344588563201674005627262445355095213566133204405972407549762128611750908423832264796829822373802249663889404663741022737719714265460124989045645038717951417430753407228535065073477616325522571924945079953579483704381044562007856511000315968872379495946450607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16372261397091489113964584609937968414353489880042179118762547313350445254862938620474500179985762103630070816727795366325190740254327358877409766635552624966284712367827088572256541326708467081305083977239289765224450731869734617689630719491660256992437290937666624970380096212011326588078391446736745185312544411774274289517812100749560112964006401641748579560874892408028015773524581440714319812853993053702208341592325746545076958977022992908242822397096723288397729837191161015314454488524446510195076703640334596449238376870735424366594122339636787712249919612848739950712060493203472055245627241974156887464267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269945925850381803051204978108939209164137745640554530141914278006801304619983537144840064377826322950322587108659732519291969612430555689597915021746296170015191385943536913763105687418564177082351698333068476086164599168516537116036670347547380734660595281330403065482284030939959408649090597763977871922670500894497508021642797100638292426836731916094165888393820115208960922818986634549685877030340048759579281818008767980834791237496462636304217571787580186361503632262496757720520539116634081095403231765644891251048552292507289030786172851905053673449023676988598649252679296867267255909915989297253330546587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22306479365496763166347348276006726655474967969449014386152126298704663259570083851161072317324544211378149159689230173916836156249099824398297332882851284359234169550523075070139630562066949692942583586152698383322109267390989392667939434007244645190500865474930254597307501013049513061794443870208955431928411524879074373020753611013362873735896584784480380956050416808459474370080960072437723717131568909274584027719510963328520707997255684160466204496941486818409800388531208808472362383549194083408624871154846946665578318435333276681492330984727730291865588366234551913051046678336727418670722278069943700083769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337765107963312993393036077677344715150961976954721172492188632826093050214820731718775409025235580453000773246874021983661226880236309154817573909427796360721300342934784857750047090470386985095258279764105129708006571290438365229783342445696754268260382187691108869110353782403691394790992992445208667004345945059498134960940400810871451654339833363211128643835985569528045020298428926284123668276696926480717761138307994507335476630002792509235279725309342307086682185638359919943029920271735720007807068324369558357361551686841618462674266171144684952093178629655937165065296711401182447179018376846643456161251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313894398261474012362483541757107782770547931966834827702805920895565731415009866997443974201747159023799361989317795099145051233422821816314694082865722561428897842103151754040090424489272944737779562387293596461958799816007214964495367970738007508355127326266273861903023292757855021013493110522224745489958239683148791435213504680876687833540513855657998495792975817641328956878183443819009936459145950707639835613341764958957180758853034035433776474154243514853414779398592517209409624536873653519064551581545528379451454954245058559745496203177834488329588068677053124549313653047720502305020483087562465075999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16817500948683607165997495235771367230903617659234154777297596380006861866952440774156704655765704772993081969626162856404043197098476637016374142053275343131245761586736108684303330575086330395056420351730955805149209045805593194683717424055563444215692732641532522738901751704264966369330582479253438120419464430521603833189875471707965191811423626361881414220283713182186360846991232228353869822434941909895980975106538301648496021546716626801841799042390612318202695471317373765551354804894612867233758175145800824182238162944756352420253780280674347896751100299000988369888409300251944964287326144762145055187977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21359361482519593753339467992862764187964395393574528669492685527833283283202374928876859132671509438508047839186586706278137248215775859178576465189174165575113550933046211943689188568115671231155872753976691809273366141913324362742709446161531587386972827736791435180399859290209585844116916805892596333948559253596565526593956929664434438406708391142764914276477854030500063749046974433084112979560625625064009887143219378276986740223687368446682662216656256647203196466871550248112762024892467405714233792376784256433406624282263395069812659538892712130420653791607645580708119389229860668118268684931571523452683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332753830191823676647448748556397077659677537833972362733205317262031193833514260454440614252971168970739328149523408851157696127536651767748521010104360899020737254932161303979777529470990452477327691929297889535081303811172468267001350745282513468514881785500419817882754742704375579357011170186038013284453844797601767639690305461775348235337239011920635649693083034439244616643446105122327362865525556280060170834402044991332677968351788817705220704277943276902412649522194006165337974305397348911615748032723650986754198212595518602277323322011081347566582672435275242342804533833695283846615804096744205694733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20301469849561627104021022195719270350292348331554421837122229851354869654744954484338456653906531566582322816763052328041855023253830408777846190000546932022216655141704498101016013310956004190231807857247462567621055955799055132825106551910592392132154894826907817482990345443167122989076130706796804148818622079618580630429556946316886123491836434189521664200206142047290645509081066825034177739615609360677755110158642940402269063999618811994564446474792560752026052150654268236068098611414566334239674183992587234207381138216767879665952136973140519546206698609322689546066327992467706479791720087458299165056869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21536143563348155828096456410758147623268905848609836614169903652339903871488800676380020994322367060815087658276803072553309590070876924313932328070300784603661582839748869423752360795855650532556874701297979741662102359556143836321095656587712478041713008990475350835786499724893339482445972775130825599972921749443719179287883872919392559030283475161955719525814190000333687209963964607371836519965562788870635004251466978945844104110478137961732044765375209783112368134443695872130159757180951977518123562420732572683807683930532416972456981344222928081536096450337917968651031243059416181179217492394811238185319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257212957306443854645117105089376942697066780109296842929404299777465345081216194308471511106301167478004109998922697395261050145196627942248448180385029283369325655018637563763647598456523624699433296730131668858621026610204189712512397758036124906827650771617830836750270923320700494055919661731586708092130847424925610623576385287343576717145772096295280229485621539266698912130423697397950047578826159287010683604441796565278107433594799479846934668603301774663678769786952113366118932570036100398629806042789367659018546323837980307003559515992276997008575648008094719714989757851028122311265894951478866395317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25075035477333990279016850585093630478120816668020882646003305586695792547779916430090378110597521756652273994627148324279531403421025877618057306106511744570553585464265664960696775244041206126282208943190807178069081621365274147838333999310747438206530781679147526618710795100865307724642905866887035764349352216728332883953513675675689159947396463917788465857561010686490763179056500275584433144573367629073136774094189935356831794212686360988104172277809631215052811795362578236066511492673611585685231099564886192089379351669743410200131543759983496203663052977202298811017331908700866386604067175600671902554099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291337325903776210699810615489698193068413220366478148675188004818219734969205143468768315356327778279845747472249818274561054547952431429524708916255324851777284147436046957367600660306205529556496603188202586415041929831954649382317542445342362371973211387120757138934628551801681210169367379553492630416922016349044715250234469615950921385774662650312623366526655657811884464190624505339422518621742235890583909238781279009965726237201347055868038372013465060219651058226391204933619024677276741245381397084113718815407901095786540916777977580745725368285087346259744970636498642237598606213433837712666610818811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16377050554581227563538380586903396125658229973505534442249508042837479809235809876498977073397569874224054750864038458191302291247757780031751830773979223765971070613313239372024101524653720024456329200289761227284223678035861102587559092788048335628555928743761346924560024190498609160692959312252544543951927937102947348887375739909959252581133371216674232305192414849249957266237707466933069305779695125241747494696852823236256608461658462799721395605643891030089402170773215329769668440770423989430800788503381097587070521612605939499253876620882412402419783569205143383985305002029851715172664023489307478628523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17170210897196507423131429292395433226357440509477914179598982964834998345940895579134704126253124506483207815808894058929897224778605765270711421300657032260312736600686873741640870151283443081919129965323270156309828564980182773632729104493380774747193798866228582213739873120874218617222874792050345171158395825788925990531136997738561537674741326498283675048911541061175406863484923393399373652030105525792232892342106925176146499317502412346444699541144143269308441905260868915324095476259076700928944149465256579623656082756258707369994114232107631168919917921055134613759245096417698147385362006720724944800161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22571724616149766518454203396938514531566776073079159356144271971798303445222687842177244458088153435105726430327580869587041299573540379912346306338313073168589948937690517419211051821064214107065209727999603076842951311422796914843670264087243243747894147243252291905615270855142657323007741484531714746182519982446857063408806020462461677952062648729113024674295782405915234929129045667450229754046648899944573483637958832739684816569099115666115879114448908806989456167377896543813096347945886401331182675945493586358077790306061046912934390499036727086300618780010047013963196885347246180952082306035554776660051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29205961950367991564373881332524841203677941306732447671000593865770427400499560160145358179179783764075475190859251123790170599546993259021644268297810710894465049461048322953978078720460710067043266779491926860205258237422865610462016762868246208165128457189226222229719089645882373395591597963020904257009747123259922066699490463168988279880081359975328828152199965756743262667064350974284275184344958866199659042436655319969688992386802152286440783613682202880565355105752645489029847852086657893638118881487957666489981104595762346921430248396463146589519729863401823910589192005778227533187935694640811058692107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26075738760034036289427963552063462315636996559832754968245699949343403468156463982523823498659035260753064978726265477001946554317591392084112711752450094014199478779357608791710493409450349239287466832185752256231973371828587144999420758862020427061442451639269792429680967825419917301002328630388100542500493280387430620608465934372771574442066377987539531101497741769035318487738832379279259865651960131667285136582700295366840933115433431516701461670760090078221851004119364195080396215571073963922777678519631134774393042234659356084706710312267346809150141934801796986122336292596538799324877746929471764609223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19254999104618502737870145966319759838546540271102473561656440228155136668238557070754236362265433035031638342949041722279580781637949974077352337501785255704609415875158379958579535099029086506313223739397048356199696491822364049091435070231534026105725903020962347887421066877911691945229186790614196244059001333598647811224833150520607508094089883492404032144370397051537014219968794786170793590414835671013885172803004190090265959267921018069934308555296535945925635128995086748195581471818642963809635599546772032287783286213998580195046179151186311030618553720663222591652505590582561350261032723630782741692641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331262131646149724639217378068959740827265760578101471245415210391361077942529078613494334788792329012842132230262353239823041559777959641991703122274713848569713077701970242973243258048202986310609697303693047580103102126046236824026535995253834421665298713081630946525732628702509483681037194334766027117808241654524890579602670274060603214678178382543315318192807536670857287411883815917472540552486018408975341594954319566655302633754291301263099260059549914532063694364558372089131737546102860745338782121191066805295723710534638662778538159459677426512050083665587406144486212180780546013957153304877669206987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22935188955044603565016540899677919289176103778871935962582370924850043124289201959396042115289220460775609665364281325829523653984497072787668354610303697493541332423462655821070757611178600010729184716123921984207708965187889833426962025193569168580193213620591652705487735073672866869648741050718372309090037996312070745999630078746297497425448948866689173885763028460020185734165796566068675029248196881284899907006065891202978064271743041603164960253377057335771662537778807897509770029108891499890845136946332900784443900266199668144387093999939934019407227869359653129564396850565883657345864809793309687974497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17575944329711771660862535799032388441136489289313961066898774720309266936152880816444143386020219034912613543020928981406293173531826521384495106035892647360011114293655190511029745652990439877153388134735953607587384506735711761320426470472412895554722075076604664551034679087496319993496162747025791250529092074213266539482030659027996297722904100853237851148616640372535147564741527300372954665747237010783632022982692544538164469063053463574469340925325127065546490652390745413083814838223552764238592434665339586710770686197964024531630110660935925739285151634942971498026128265177957411765338505600515876601549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17608664500864581862468964159070464192003515449025745495968259693825533982621089397371201166488445964010781607357002899871735756988006638581037918801003189273841181210160190604031687614187334691618477348563366251900387862668386068466567174472257822801455415742251581011480410383820326816757293348059534009138537602484572432787268929399894668142715168138450818526848292347592475626819447989910474603520349228976214234420931490928629343371680602996624541013194456493299847543292828411063583792119675445366210995081370249462193832207010779274169395028123799019037538730502115625704317287341164813272097362609149983224029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289288376882639209554812599443879682007828625362453349181748954412623458047380525112459732358306854231585871614685208550535928526394584126150381437208244762907356639443805573115433366078127178595858097672666092477840996378577797005846407104234815470891919097118440576801046708240588445869304677141593050086181436781975644364454338187420628923053879745146256915058926161465866227898765581455324072452816048024316039113427737035868346298688508637058079576205125938398565697821360837469356189643307239154362867279343399672361102289222869871539828543891498474460037116449761602778531231332921845540508019919551293470361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20788887709457346648348141288786508483621287627593351569598414708035823254350076764638750111060176769620748029312830028405862999749778759568932019733961323053388208747853347504850424931505818540047935757772885823379061066720681896244437860813133192628814977597648038023148593922034839435936333618155454280863389319853605122341062339104709766825448349660282934553386691066456504970143382838834577537040514960003123599605366401833939917155780960623112731479638488885923400427998806470093763474322332590572921105791327085757639837368046860495830525784666657274247368234783364756705947064058864322314623782288442271974853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310238449221182815721684386933061555324042580062347881854605163678995961694673670909752712143728663539897782119219857317433706256266127408052853784347061527570422674646616752156145515821270897857954593919413806878759012631890704073587215527564008532670394669265528707633819199232768692923207503739093963796301276492520872702374133273087807937575460840871877352886560753950994555725598216745747204306739628610250162376428050095751904685688559933418738236674319203762572335605998415559242236179749123319446343194062057780170481048392911271732633054513245234253455096207873009727676042227702951527760606625407373063551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16215369988136513679708083033772305638612924494911223403091070326246698045952065564307124872339482491459869000892843694395694024389827612496399844327659543744519433461119253173569044776035152187131513898395590158213211553680616522537391087242694422637185777403253529453169428915053309531890796915267973673154687540707365127907215029379914303412764945878053296059303650598299203846936973504597212084972223327233618503723669446095408206969710364111733552725009583204019450449143080662226014961517702360989230493566502987957387723478943413699106792008735874962086821688686048981343840703327126299559327754291952783343201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31380218948502171230297365340394417499849265015364591992477492747618380556975961822722462332001794765175780614176962243612959392339930679442324740259449079800800580973006898204932288701890484893574013066750290300061839206983412269463045697453750377987936240786433300961740563020656902754785397306393030072879951471620677883973886822801677466196963542679240665407663846136274355803832800830882374525974607585410054932618037066882459841054628209649676998826537058902677853948588911243662407836065441462740081382406925281273297309917926343870917870890029176518737940099093647507048258411660318928554673819812852039422991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21872185001857013287897929963137176655127974229194801958349504642836828011516097624891806139980192258135089618820039192304230001786961154515673104443734151907451532343849398460330995992385800811414542555891851136950384200705072315273467616848215193722794213826410802269812940890272160508922591312585377209469072627544792636643728197050192727800456535773504064330997933468793827121663855340926907537735393599297897086550694256608271633711687887066832046166962778522644238229268305525422112510552933076900757900509005576817349048218042250693153477449016184294457720138655170795773517730134829142526737677590559856820201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22314349242222725096870182566155231682815255486219158389722825334088767064746330939086827119610025486809263553384986109548662064846392901028594332567336528530147741913598667037410352792560691591130193983887921127545705396064675033626797496430472555443443986708598041376673643694491451365601238088011364938632044582187000322855423567739437796500735365227240709971089289360439447308460303564662603065400161130966962829836009492586806366030673482664976639254279304972474975688925751956142692176903534753244891963981305114252731774318242609709784093511468734164339611450540301570412617356752987613182800666092000253867037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25587084642640881556194265841276671534095408020912464884944735630815177793448435878239765328207649167111119601911376913381824057604713265849694285983211602040930707312331606587847944549677667758997157432036229909474012216018244960972029868765457141177619863340091438861589629142719640806721367829310751069705769869762240822146086554398010018786692988246449238012924183059480824813465787695737701095488558078792059525190838356877698743401517006246614761187279515527781879456213402924413990105096808031991171865619405222916673515913773449378504932895642802971880846680010982692005600573026239272398498653940160551609561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27477605957660559084057249369965667970575930993983327448172248295405194524217423052071803975590399276068386984890621799026545935528967825575067526015388745677731423525453256650634019370679642329071913060979425666134494808957747674856439623543274694549986779983939157134019723003618616983012541523428389669183632417883948078028439869171258501387543196210569167469516764236736578835106085256902321733348112852047840795317321207491476963922998209807577323797733273205229221000848993096722791438343480608294175255971549856009457574050111475453867181214637312055775521834830982348444975921949900109038556091817625222186937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21941383058165117053550931243649767435789548049077004669447687542150835454856717388529947246345674152020804261741750871517697605167045354934673219535878107773577623728432083378913232512382520105404663350854592155425801803892320091114619182106439742583935832708896108239964301713933119092540913376478050669347951971903797940123659646648478012080827757011567668375016099913504440575343829531361550550990383128287452812060289911008733433256381696185784871811010539068371435861126011536068037608867355094348006712040117549035123928751871675390621394707684254120307966574674714293420881180245423302171916883716855100171043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24004913369304557582579740806624510104279225928157404513031269875805226311726623493986565492870530911937853269622631104938434171488987315597570045519352976233366757888685226214799134716005821010841848867337366654504216686792602517168058266023723937531197602168978736913093793534393983918765601388148819520922777283900776705341589079137822006644588751168689825777575928072461019835301438145780404716487773684690714409687181600307119257171738596942299045228130452672885070632739767775020450194973867337386092990496035106643169225256493086534396162887381792230176781974357870328567788883902558887878543405686235072391509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28435897783778933945122926972358927112121206306072729214498691650071135508351706738706724734196809671524219455415101752363220188055321813879354118587489385395650399495702578133455824464941281193427172067593406159453072966022647889214476972100627084784988643470257525511816356458415247954852912041191922268949222406383305408386735673454183348022690347623537183003514532275887318514240918861583573906799791574286463298397889173679578106283845502261248694050147062353581235985666171426838287065425989970287445986256943142216418643971086364182924016472060605876232947650883008207046916516239161493883895810875356446874389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20275975114392472838120938575413738892130779688375447807480261097245621035389636811769801894288462469732412992812521497420779807803501900910345333827401341246411575862104937770793911116586843885458712283346227118795857247671220543409423914692379661775984679570653041133737231348279215471790850940990472992438925578746992246253007718143117234179635403724683570726481435044577070044536611710009871929170309923486185358749962211898475389574000292400428603250817008209886447869764749184859545686734887558827697612589167934335572229766032849239993800367066324112069629076050898600018162040741301875130381354886370218479377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20500662164414888287292057277793801395664458211087105434224959143997873916468093953476031207227898650970148920561179606046116127529143090632815882250108963132067095934543878218833392604807649234414387600623487850823219179752312418826661453807174649963033921872507661592415891312769480235678034331978763936080015134397236219100382912134006922325811555147706879343979440165760497214403875313209962477466992546157720718220927863076805553797902873888431319819268026746046138654015371401346129081640175680936083395365033485137389733239258281647816829142961874115220726815091575254325440870007550205452537494999046770953579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18831497009053896942159602152053163136374710684153451251854213667929504022527167162046157679287910759114916702241904202516696354852365599641439448236442191804090831366181012259096552506202838754055887806828318894510822146746240249236827901554330908330057124365300899958524160570292921129507301882531305260037951175833030092697183079176018219438669592467241733589278699849088325577661355535988995463515864433355592435514059730594565309530443940895611636277709097780859702382246511647715659062034939272076165739832937522636327737571401182256413985670487202135293002836488283472445671079624320097227495782248732534911837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29898391761385411131333406717260449758656182519860659684461774932150615151142374686201291669293137161704089033282495390972135329937604019417750760989684588844458227358412082951208425075564904647835642141675102208854014665780195400744120301726665709230598829135393315905116842663950485009331110257694735279384249034431654433488076846907283802049288064813036859951396220032200838037565797386491597888150534545894359477290995213667387008830760296896331321989184408260389275240145288227254084620132758355876160678061747620043850720505823964401619879172052107227609870667419399016629457053892250156702956118332314293571087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26388450408348049185026444716796167561138621061906699777232463325807229371174763528457795871366628594305980540401402026979082093138158879461134303993679314675899977845756491861514345946621748912142116185760826592811555137007870728579873099614088839737104385415698567822651573225888538740356149182037908425526619034018269935448705047680368853302799816888909042164787632104612019566732708033569499583767724288642058228001904275852312030085073769273660280056049991790274923103025483127223106203917385558927162088376387797167012494172707661437622920536597566903820947054971876547051598748975308506945749414513226154218879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22956765785329475390260851584185125291040573984599898850660864622812459950688772254777299609399703643533188326279895371195934951766418104151959363228445595862575698590929025132167628233646667013022962437476975734475248870019247019919081333933430549977177603275217446196995960745422025741406963670600362244854124508222129312347906505392289040290810155715661884678439622658361384827022324121398267835302923033899525374542846808131094367158852033679183388984006609282061488675559565285240532978127656271193756968941087050205335752290344872708233577426063348412316275330062154280174356190874895252756439144745418356640361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26320881254655059093566725382891137188606204223216680924757650890765146502969517693173279574899612188594549761498364503898058688167463129862764625395801608851459870029397629716748080838968217624478781487785860838463539372258045858660306464682603999213044158783770782188213113565359060382250517892328930029040061531908204804025130418583424864171407387847636747111185889885439838328935931072630929187808925231879348454480988848502674827656689580188453458644465451849855301934913992628022719355197421843287633712864505288848580893261062115610119338807030976555476817653620701558082072327061164111714911352923288504434669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "624954706065438880667695860989684837921462245411414233070900614523259397924177614178685806993902519066217214597486721892571910628996026599930617376678879904834541250117565778464269386171280932401678223321478429471585321644572272992335039732520612266106573928617605190734442000920424983356022207694961466170406561601848284071182231585762432091803461224507917662851633560685314553349896274049699814683326479698729811193997968960282951370347486670314480815148704289836570020444551905097568079325768069969578231766336528570198490810315893734256080790647394798256031093672189281743134000750529496403606958409913714327846396840564318251358559732783820561541441410531066410067539697778568182988626788614468519588921092077182168888440459210997205862831571387705519267266943408569092768753370440923900928567332110633380945879648968822160171856613587457969561777754242603246811514655620755284403355031806857775398449339835723907081098030505345461357485418181364461251575832980727768962462572093289847291681758097265892948132354422049966678961854342818097313972381571683525846102863072204760618554326429774220843373583073698779578214864270720870545543767918441030218734654925681576563211577656408511591263166044015509080052213300007288769226523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "1015657211683538223295744216672007303784134720534735085896156867657102982595787129809995087525560366194150971269784781590891485642916070278179531949477195067335555162188802248166602066123042336617531651649887972569278832614519421066009038583697749500747958214766299409107460983545680124111448614433749776531061410649104689355348285138182425076314048223602616260338918704914564202285575588000326688037815524656271300893058561112555415349744408931723881074778541024231128648246583444979910506503083413781246539677731360789959438923077727319303703544826416970413335546189569382669872495070649056424973830502758341625529463484128878470838653216775694433765861025046023200987727322924113031929539855576224451915810939370211413040582124829370352389777968467934827402650795965365575021797282666302271603643367445467605635694056098206887532865595149316114115878645426220197431300624605463598580184034831212200649899929529082903360794787702241538289065140919692800329947124181677086336725971586672865544071329625079068555886329881577327687976338247767239649511023302273667349058441024028880232661588720590772088905450025845131602067337139092099371866907261458564420147609327054953471914059099015849802830578014480104515420076468296323716397463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24199303383823046463534074313418117", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29568248817806446304102652431606345424217609039305506245123094520916617285644510045754216075427688771511483587878120247869163888648252215965129735947274625329888671625472630567476349225043296591129950321781379135384384966348319940368658822376292373967005355971310697646394750174603741808961458207291689663439698313252642739829899915100530495433934357616445498896887960714760181230667772105419331197541870611207646466883167207522665146680793081481987079457403145351289761922889226498373968935442120778011392401009786113354697773238356601062748970758403020426387451711484714393618656367537060806902277248805049861679449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24714911506146742542824341994937069096944868567714891692103036418810784549734132180235339942160301181738466237257641624467830682589983591495604782699652030984900375112958542923582861494145402401280562437192754228231110343328263416837596531843390102898116251774327336911273533553022612084137974152975068852610127021173756145050692909298969915588295188362235367603783745210962456565856059826962119723282439485052004738601944096244778992789378970304850166371939611188945514397294088278775955620506474361979845503496996984622139373851362200832250603775176329261814391889904851051033905562425009936382391965538934471246669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "575390369410099703392361842911771746161820305747667157189255131810575927644122849412238897417563111712200180864587961362906535244889164005829013515967274184596672516688184562918141633101566835882414933817794186042505164376708599121855903982203064516940300367530930737521153111167542332172235292913578283889850853576427048223140516648554414655865933124117208668473924654861691182721422620509041301059497996377326488306685783277380030105157806164631509176063095310434792675947936348431039072142096340781468041770392255421110850244862679521261897016629510947469086450311614754222012693051435249789448901133035938076131486072910845744260073793496220177525791912280728494890492497783736350443103272415166120787072616989638643084351487041576305596267296156516082686470940320264868405259026264784454628421773641788675215344762233770854125991558874654056617796657736371937286761211958514832017040121136553028324233743663711371513407116595535946817556593684224782634578781283094548198720721711056499436652434691179315574891027711397235461899623116294791316599630906191670089128121455278852423805910999501619825100146966385491248256755913852969844210826246712618336631193124664128278690485405809040078796101770947960205432399802363560661973319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "619343917304877456229578218747503275138569774672720711278396814884847880590104801961269476861765867722375883680187290031155835563855466916835025501613702639609905896161604794789006317184577823346579875759609424718015714149473327131364804736981615677352997516806362018104252145560398578076462713314593805487555587764001185358904809147961456004522729250715577203716173123607488288045005719406572411345843441986292341880963803615038885207445507950059527159126095080639483039468107650097408951558125591023029223545600819332733660512088266799106196022192541827715389921573847244217790244183180317794661919934733277058004900738240056640248443028060144381681889959261200819723127638973072030024695147430050380282544634218947678025879977033605244794412556060900046447879124534397548595070498118257480764412954898168442786354117139114936493669231774044071818113180856574893475998155213882754481477680077593614494109398633589486010938490129077725347543459174747366916422417033399516239590119907294274483717109858681340145750954768078582170028692497152212447068357274511884209340616528996593866642315715656615728105840991155334219391514130502667932838605091000802786821045716781001893206592119710508926179151466901938279791878508610900617857711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "540413131476070684228663236059282080325168354046054479160620776010276538318658454613624626857113283968875654158561492307798219435522880876289735710472153213493565746347368403726550749785463547124717067024131565256433915553564783366567999699881821911007862377169605532790831064109814968016301582819075284446653802043842103340089944917845853733088317589552977827167258636222635869446675006862588707334138521188555878039270711098328175228545883931992673378700635390105456750135026843251834025165254824963564255603648563438885670995767266306277228211833877295061914963048879252371464501035451342730867495944476332190321681219281067621026735277698344442349205060199095809776610328721747176235836174297193973944547720468491119962247852543855051979856988442293025180605195552008246403814631757910512384804586355699830688404611004264334295823653313304917684822154883040312061069379792316056444287217417298623555417594218293116225922087937936217604289631002332162236293661908263746547933508989127340414465562374639415164629013082271979264687477702132396728511623060685549509243870433763118520274398998703712959699044482076850799766832800693083725181072305851462004045949165503139497010636871251660586760159212472492217297389966144740550615657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "993115429819931748317667639021814134308626623211255128214226977922156929432817039446212084343984155454306206448954924257594089940028435539648727401129285574282934513843317097106920529190165583703591262922764813096345725306541399333027812826522029062810360669203613450547696354449604835019047308647829189744376168889583236226271701166154108566287045114761620122915596490488456270500360406568389163865596217598775993678116095942558517603451019487750872319864638305228750999245328409037342089791384066701983717988431835260030785492844671437505730341641836773258812485408144915325836287931601715033893723643820242721544974066197628808110976235083712677793263291178943857411272499843507235301670620649403428651308076323415409372897301706534159220391177819850915997273594120029949781022494360738396991931149010287435637482120712589783581882400882998552738057456763636366763480738239458421963720882094896952343229520137632852466971473440107525359945716834205805591613597955069102904822888646676803877674732963550932450108620226317123009562759747795894277443168679936937307172853205737872502360014320899340646521135345221485881585731312832801128892446030876728980090026717945771071113594385919941826632561151690002700304326534323500784308807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "722290048153602261319553006438346950061747449905747748155860501853489293871662061283836807570082750135980986854229086036597312269781284852473614523766900642685292527792212575153145894564755413967813838935962203974351406646310763558325038600263613463144364220827622150929459486524124324227419228947060469359029062550803849434917341154662502591128124110129154915353121605282898133731208244887739689602625979183526693940312884611422504026903892064935388481808199207411665698724946858446912283505345188593002621820577870778568890687373838937567039985798716697126040579558373406077517766390180547559800066027360188363857753210932479022177510417182436143956242702125280987407705627314405172868182004489782060809190864569120198373844234155055455727559711041142096930108804825183330928434723291488634655029271659016443951253276318232429944349740531233922184121426069996179682599391004805300663383931949025111171560472249610407877432940535314294469114097730811869770910259125720007171362679452213944487763223632925414281125675790469235028974553979454627900068308886448910215269148792704973111375484474250468897340372128862942084369128062855531935582393962327267477125710731628064197579492275216590564844241774256289122136803965544034838178567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "531741874708994038004429397647231488106306945705890475001239346833053827028202732783553023064451901872394095988211181626717877146752254521158673398719937040294976877857607792724124108503167898485310767395917007012359363213059438154957171933798507906081007248882372404152467830416967470959065935268585084707677272455180918810920732252478819144399212788908171567929975970822557511917497787793564858969513850372352735935731166658170686495427229286459191664866826161719747760159226189978922754677952042021025390557041820577212257885439872939516073285386867838810559308622126488147210381458416438216311550397686583181270815556155691573525198022494019752369940109898753645203641786075130057702220743466071030375794871088568012186783334209676856850792698434294232408112024955597658315666469019468970004608590918217849744339269082683736775450524188624838015868315672134482363782476035164610584549854339732047014974379972645119992234699500987550723442291020018109851086459443751427035454912460777267767138969343072621357642245917135015024945012926273490182379086670632508002417972083661184157390995848093317859498457570518197066482187580642670607204387634051244935967743086927292146939410380705443569692645188040567566266546811149495853549419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "844572439685684578230041318021226935557587925007637210412332139450208770679276976752285860775450099696742666161345578866723984869978417318627916983617496401122905972397527870185238919160670570161451840439324108409193152026067738983570742915129104015052722614510484583704432800288327226529212867824000843763650714169092566560088254307946059854426609596561179288019171662056161578038365304783064442838952131248885621056057767462565996363454926623502554451334456218351313970471445183240770473453781961774185402930862703370360975044219569631444114914964837230373148596745274028317979248093606534559296992678193219476930698182095777118041297523738062820334020790106322192762342454633864939361713367940684817957686660406356037800951861099225048833633577077337586599817917061365931758824292311436305316733313434247830412644223952048742444321664317641561879599694809626306995310605949969061229866423583953306556048411423565757966395473509679827936115143695011446248349934844771062604104797914440387845789309061693255691967957623837853431568813148119164620754102614539395556614724996789902861047088537210130895958501402792204270780646386129750177705076890311787882219383810515825374016640011559020315767987803548244375804313620606123981135471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20551137005755632737856939744037041815008623260717375147154200998031039177271786128688544593988194467823529179306561074904616222018285382052737744871527924248175930704540812828322581108331502128135379721916859492735583967790338972160522899839978758481782756579729886538678490316538392243745725998563046364468794774221395077528552962407400998798294478452768854784377433989073566971205109018157436323784402517505315202922370821739153166235444427948709772554416714448959044098835615941055947211363290447851145972067799009616616683757306800469253977167925405000040819643961671856077573114429150610560992416330529467144733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29119561496093938767502291374311755571679945295120493047508413528297199343874478148630027542970890688325950042512228935727948636682028808927713600850920560243271881246852574184298227008933363337881045780769317539689396477817798684520112185291031923010032364039964920079946188061886824233738965648721813492361750066370136321721496276343577640660966241747214651875690922515800506805189625089227848300556088009417917512673674104299703523527729032835727765166821676794274903486532669530175866146173070528364882892725658258755325524135252848995082098241774372593109431434979017113718216457162739482847103806733937551558561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25304952617188600985643411006033851290341568540138037894452510803894257180581926856140765252561189942969889256978605883379286976858406714723993389738769207161991928363155371253864261123068515129110384692025915006976556994108135724849687121180101374916274110832967006910493448479693823746201829582300961633532218134497666305488507804608746318969368854187374009362941547748437645641940705613008193365174388274315148909238385956542827957729509958668314833439670314481771752715792616116643782338522084106177058536128824424725537672627010517261052984360096053126659178445984227484965542515840035334216923055749015933287687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "24832610858825999294628566661716891804485523739495521508742504943713615428895304610930759509253153042589130043178962309877718192122417517187070886644169646585119043447432848679563111795970919356779152515768763988844426157552079135980645902699809026094780565605330404128815066935108079419402850206129526995991375877650117767228190624410023582586311302524823846771521050604290500421123376226298772194197335996156877794949727128893964640723175811255372673850473304846404069775335616471351563699457315758022096983979298709884914071843488254386341050749269874446755400503189862358439619535722189477960105192792810035064533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23868966070570918979755486080235577229988387875358889725850884426533296365330306530212283426923393451547811689826754813459356203440959234292107060855151971036193067892131996570027242644140155104435678020435526098386250300761375749973592959165036658975261505068514278499446136759092216800289658294614819767928336761828215228821716214975396889394923132572391970620951217446752632364595407286712155362831779883544514444818502517006543494316466191023221490421628455396021920857751814946152191677670647948960422614973655636674567998775030887741474019911819514433221947277763302723625817441576354587164496218694842360026313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "21255757675457463560301019435917227", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21769474621005421127787068904765383", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19928772847866588655653976687733536502063263807482149419538411916925898944565374961515208869526384504491859785184595301920238643419556191577893261103620384434145239198001131831476002802079190143140504857681450590941673144428002378778163952979999778074213876199132171907204748017081097569460141465585397482497024644420008255788702902485019980792763337810591466551488784048847345029321034076417293634980587054019488071535007084737530081929868788356589694401057020118243322231708613883357643192775864183762630193171639186717906962302913881975731727984654155651558214790218749368720138180054054170042905345659855669771861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24584758667424200363482475583337832025736466680798124304162499500951900306412492039366258849592759765134997962814516817224132417883213186563662851521622816791425770871841026848519302493745379251540882532939814830245645178267241945688032630053915188895036170253341902192965785416723585247401969375221065270276140138270873332018324205258468248531535513198192331173626972129362158690284020611256734311483634395022710428622375310624736773445473693391825600961863299875893664751312071936672807335480921560400057932287745384696537145927159518432367292625613719341428441543286882386620445478082767836812746503532673312884711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22648741265647775228874654008158387740063167765315280164458366000420867583391933176775326263350857859421645718214182034707837826103085266070940836486622646686305735753429014048781462335831724078417449757262455041440037548384376735906376747316677876663528814185663096249610442291941471835297346672967848757264324521307407189178553221831082220110371667656659311681399890641293488320054361461611856746767720674277739105031033976977200302835632104755606091368352334382434785305309539140758048773787143704694158390415089393098481306004543134200812092827066528159797993152567642971283904976200757520575421273327514563716703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23247127520111775577659296021634117461270441720746117928587898685476492110152579187290709553899424263259164764163791704537379234926866180990970851061337785906832665593552147967575947919094998590378110250425466216598322247438946137933515433024086629700622610245070431105393193902109706074213622982940881256561401420847437450018973093286317889788842785160509324607049091049309770311324170214487622745819441772262780454445137117746134230583809837295508024551245651176040716080339151130423234663424080679155856483375092525875534396020600779497025253207554690502880197571763078795025228636343337252937437393618915196143789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21077416884786556897430964728562372616272028841612485015146154808484035283147200928301496186835013792208026073928107497544911579679948784291195355838675104468299153244482808409028917082933123611529441619033824181277365819123518227713416252051735568968507363452645380080840670066266599096022648693934660128532977588244238771333108305470795895683474858924104365596837103980126663367195189809162262357676420319706622270338417994942049873499403723469110708076473158928249122265098376738466919360664723078547794296913734460290249676581004182156974562047700616156066336286000070881240862784549764491682284904303482746911691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21517706228439111404907277029476200841058988977107779804555365142542115333446533363907748420343202254249302624277829144872271834505487386087398375261534675278620632239537001837198619555338391098022620324319346948201726195941965572472624176816213905124841431507536898142904727839707295385532887928003169169350480454999086272297092115139226524309859713770958984649477455221946090144772341852707678353405901384696554267536574238109036293259944076770524075629455908573130433996296432892036360281888934454483952834625998935006334930988879174097126524066882719265253421346639232464630057911300386508002950411200770369141651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20556831001850981878865381809083410134470488588146640447604889008926037370661693758573818079575522992049065046013021816580152517211938707430719140789355995120067298878743809000556151852728170678100629582020379510163198631192647331281451453910430721781885611820699682743733755273898101839454891312892495075129727827526206380647322066219766068160091913789931649088926487371607699463290904292088022858156805823117001308828390826417323185610757685650343908788381225942027267542687389942105527209512424818267577635210953870655620603916860755277471398798365031868961337320140399001368604833503979329219211036358397846552469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21904177733751968983752071439738923518259557664683509412862563017880577462661614266106264106100196088312219955148364294698846339782605609390530789942888370006526753075824636490342946014189291539326740414889302177585575378694725678258370211028265484687895675869806908543852026171523512803054168578366953487838006998787209740018135979521698776182932974079900214113156108021111287263794598513096900111362872786748172524920668918224680586530247063063205359962637118179047226171113387685298131655446780805553902253298177149323398148382609872663584856209395564285276021910717438084207249297398111430136833908988182179242303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24335610199528468456315427743577233634997289658992991924246814090189068009959403928084814244675507169647134522453169857297357865615802329847124595716166233415235925739332405733025865939701651875221552049490017792713810783483991555976110405053801918384523215345669208924394699036026446495472255545900594022429370707603073429328316670339861413064913257065090270466962484347340999557794240991571573186438791509024873780255529594079737504021174517927407839496030131424711003525204854553453010163410633364543997236103588329643138010285933099684640747214331177089100215894480501540799816051155115838132900019016858528004471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23654116503136326774460468965324584884110527220654779361214342669730707531374756826050518551072996753166510717924684020274607267074856247500238644250904073954859287964599897176796404663340174818476286288730034008861616517108797970179229324440522979864620870473080046253755316233364610138781293058285334829807556776030977586334927129096284364887953949928843016746886103614267761943793199243108045963111722318546813672782975401617431123453665359093156176516473490127845375039127732582164011988473789428610568837950914463275093011934484965962526935820579948084907498539485121685223158277512942466045817339237613908883347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27447730976131376716363478646056541636157492889459652635316634614703078998665593206387628176792503754133772704118409541718632797597526780580374819487828469566709988122732682697335536325377738710220230544174843996488031789983118157078160052864192448561947944485593402178363558181346822673507983436402931352521055865897422395719534671133104628076432157947612541673501120370035126111460087429785608866898743317015217090926208255279591650754644295517344744795255917843053771822894257324402355374325844945267901595549878428360477891628585666011659915004993958573373035657505168170347262197524781188597341009963193379192271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24123501087579377006404266365654886211693374299621691246181998448268665869050546361277554666053160718189168392572595899815351809438001426631429335920245808392021687841795845233361669261368959942286557909957933208152759072377532438962263296853257665876552688586885167369922144421463288734672331895072654759572002632880880528085114024294397771985671464560422922809048219121909053414588203597329784411987727529976608572014840289570754859512455711239030769856993479408966112907209198776115018669576779184880625919556236399361195870043018959014765688860545025866588503370281845021483616967058092458898391462208035847149073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24287020938297351692524199526707884851342454016050330295786593405897826293172547457555286600383453625114402704686506908109286775733232247284618456164072162161916403772186505836853462031535123137619018364412939460998987278463587496948266738626252098366806181491584925747052600473339471499166209189615808974770425355644735396102969114880622536377583868271119235400897573475543115029096330501802168084846270397176692730465136286361037465296046171142482014107161019403252204093679549471211553491462049262874990796510383692178102618468813520041465052484634426051900474429176501188430509120009941967980654342293781279618299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24790158127537637539816578584223335135579558063721500700546161442956209753906948750821295621618332799485044818043617636333388274488177377872310566230574085823951730712833006957605639445033554492501630552079624740167593683980777370241781934110153064656575193795233222907180394665837509997535910404357211988883540802740567042182062953143840535490608964157557989890001871194334834365121269523523368832284287867137937814272890186969591315148129022222794971423439978691660146292565764086611876381554535493394163389316253618822869640758918678032383202327557748086157450465648557302736255118130114708973270413389865794289729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21016020566812405739894736048833794351070608045765547797757767173360979325769480919183558698025136941641232351063787634006638642128809343967046273269322548780769558637010579084617818356387241268407104249214035891393196386095222908138491565918824098798682472259920247204407632090205171315972025290730301242427778401108940404960135424688753120062993039856559619873729765282907597292956282612809351315806620340427049023961511906688720451991024574923202028288519372147181203303564169866962855397822045988536894075452042145652830366341010711384273521387342369908035010624619146240901827468550016648786445345236371882711637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24503790878163079331221646138587655743587386121773922718149045173898134601546423752480816909237696661719387548514742729006646102164382209969948111942869156250099620352714132561779033256258257878540385786397510385835227541530312620858314941042897219746650348476603031464906537250624318129948592584726335031549241548362058185907026731537131858107582040788156816834938220009671792178324870606356625855089519714111274000928171460562664418594700667096403122898073684790475568475278472470678733939605810493739059784029154322122437735404390790766026853841429603289661124035350692161574614774801268395380872366361140164101197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24750207987712414396885198597137037785597022004595743815051599065521238676216282905546126348046800741614556193035894974641028542531581905666725305795256129557040603552522711999460064586473486452165409540933561069371188801247234481281629395490234666370312054274143043322923987768732793743761899114336113539068695121883629307915893531561488903864815907213195129504439643217304217219567548143994023042945464475844947224014725163601437529105598704722417502060789209268091506807123815603388314559091879255557108409959627213091107120003037733664122089193827426618606645384049866274344944859021261370293242316036598097626691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30059427955537625689318533564222966804152162947162684471209839623100954042003357975214468890151202974856588147440495877570640765018348635598306541873452240421945817418404120241975144119065278793234104089266596746028669060528338774411639101759458098427907179990021084800807563777371776324292553278775039639450466062780320754826840960168092234915935654899236874555123208705596315493495913028373055947189091148383015569327899627063677374850744412017281538808145232313099141493962950313132173938478300756099972958488550803017662468090517167507516226000912703933369943575491767587415026633190596500643059566181105546244977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20921239853999093943719838612378982995779572586545508368307492017612109537293960996581972874377341873181483750698592978617119467930859756436163601449703596360287623001977936043811670769936677954276194789528252552161255506815222045264271567299152578580948637587765528272612727118200424415659596261491642076371751458696042711137928495434785329805437036597130995320903508255334380595803154616572778004651509548289583790806835687897714298603408503744103114821700569685001619737448723123202312061165185250051267121268301624131364984692836611501815496406423843024985163325612444414805187353852130498006808161094501857419703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "24356853515861519520228542394856362793057866379037839343135387579455994596942245851194928496896791388290540195817989188221587346514769252038079007164639733061984633412315746393587739886109989915359519757894184466756067015523358963517858821723278511880664860690618378296575571557364980836727985973952183724460605401271306396716915864295038564253394940780583632118804659874834712802846604334903882036303590122841524982760829744381223688001624369023411169446720516048062061118516408155476415410958527928534757876540915516572298794744335575705520883369674906827291825308822283074315492461722955180446854741915818290191213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21090325209918940422955547015801294802793801563436271242512073119204816067204836411438010548280836089594690523844635239560813350412483774159262339312587633634740330177381582110196362909713662382043580798117447637831199767900104751617932593785795859726577106371455940263692419037258026392592944916585120388994664323650866221169268294452463910524159227796585842625822855578587621717695875736476991866311033576337647850316257978413688840308628990145727359700729039950040332815325786541956217791848554376731152921805524965203730191027129963646428529167035135933903803401598487476018640283859929417976042192595810311087817", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19336699795268894284541173708566553043275217919898919544096902327460707498206961819805358553824939506767339788642915785729035674391225615788231904897262443273086077978380318809399040168596327752783360068070702179597501769300634141218310326109677827924107719798194994300641557149564480551508683221947768018014525788621683554154772251505704963000488702842363951458885325683886587970151551686882169424021402962985333256952524749538452665218390115042107162204099931715356523007340194837778020975299850494953728818425137657314486206767268016815724194104801280199817110275097016765729535679713437950126330529466929622238473", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22607144002614744621863433354440361343164141910844037535482633905424856773123965106050683081817967973032993214748532457317240490638518796740082613927799187066846273432341512740923233063448980281519863153718237666770950077309942341908415872165579274739924911623478011080539629516584992838228977480109976234274885164513023014446129162582501226948753644717008285680387814645488881994059436502141612006512053343885570090132897128315864090568758987250873753153509000909232119410323729114149968536945436332000851030059543855559790062918862541739100745570523761843050142786936782373697285425434331662504907824367700324757479", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19592809215663813528036628130858455017323624502366408261002018229429006188823171564149235632849411561381663757927147179282243582511936065725210789488915516028622869105624804077729671203656136545759458912699487577809478354543282180838110066662303407436840505566951069155053325082819128868989141291392283444944591607408890994225445116512107915359093243972385919174875251173803523564074449158258475796209962752833877295934251148345298180791858248305833995274105419023135000181391761083483187680283192732615190673632226705307639695667667499574919731641684003935790275525815208187917795285514263156607788922397676646295981", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23491957807647200336659908175815162267905861494312543461220483909112265148378632074419654447275130150491563288403640700099580027107650109139136808155600803980614125645960069432470741984210542481928573714301724229982701227711324139038860144958535335941564936759032449093431578112944022451311540365629724997036216017382230623529836232888333090993149175340180858683463042978094072515586783750129792178320287910082094589280758044397828559684040773231483506939651032448369732559598157127180393463299959531229637674292341305729557713633483921935746171830176562357389815977096104347111379955110003600681493187008076999829359", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22790564604097915849637950119604090826688754911266612200116269517453107954746848211100753250355366306174163079607510801866581402896121750585980413918341204747100168161891218837774979911644987298987344433035168696248651159174787827533855831541637600747773086133759767036823593154803341307436258784164760973119708877352159556508124235255849797907052987894202257086064122138058185813003244971825934929182579076141253130039045469132857927462444779188597473933882786416863199681106605879073028921800486237775326492140859712643882888055180263636564612330785282287732905971307200461997197497906941609721067394567613063497907", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23734935031543745140720006034750697750227367825512617005091708722925987599302353500950402247103722994058934030240793665160467760428269949072669169268817568122056059212339797013885938899366580344682054423341513443908784758938103385971331917870672195062934347719598297346906216463329996646661183085701347110200391844280195021350137861667347757080910842584847262710943205507160435979011461000089061609887197472424551665364795501565348697620789803448535584937941340308993900373678063820533093423320130537722482384848035303897606314262153283081310227784972618666422645262547120943480741383352068057610046020063090845609819", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25399514199532250856062952010508186859197044914657839439616571734047449421931984631382772789212960418750245589943222388171848315053380434297878466861180690419726950368281327819841663628749778205744574576383208350062562539648100212246213880209142860344681122750785478071485079127974922022024643047909076059428717284998140645832000443095613598600332544489590607776053198600316421856483207229261315364729166693048018275928879100433254739733652990236774494895930261039050266365754743480885738554748205282379956142984327143178446798456326458223518805213065031300006213956203730926476515162760636092947519280878855772046619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19311848267722349275589268812419428234411668337275312160168287959565973938083890751326557920293161227605678564243388468850971847011166626714779080662028877367815137567797618342678739205629688194205783845327353006346030995979346095770597770328131446449330230965589944225242531856092623789774869720330805516431284293946147607793864328732008859747322332991410903345080014522093397461193351629564327208302451305022271962551588229971029046264212084011867539473691985790964626811520407466229044784933716875500645955061194470795724562274270525889748924028961809460009990595211480201725464155418450157371564739134774443998557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24481536408286289254288693021436562950972162231708176252299575483129728085803308290835175420919622931499434199386316739110193142826590219282616813394695890635780202861785233819211869876760871073203129743772681738894179193191266886013989388669493794040831127153737530932348694306121537927664965406207242323752029378033264492816581132202974051752558679194358418315395517270319400985598446319411470057591718268140915949681286894181858170775420228176059872963577032842532527140361038211650485512899070665617998783787423344583302989945769603852691888055797020754477971650801154000513422083639022623430571905835780330625463", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27404916145322061968043055612206408104647283458682062964031942534450950961575750177895645172190260514231203496494944942724247373720288953283649949014898393569661629762435590784436871603206161869769849028291389399606208860597998510725650496386248918902893140295444920820101040946810439439894785762832792488635609791537485904294974599320640066898392923678992188260124478435569698748880699992628659651275450634741764174763112192163615230126619856268165305286582588611700181717712827795343905797720488433506993668318284748608477138925287555335775328492928030725187100844395207804502069164942438794119946774471766661889701", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23811450078620274515900995135066104140614332429939347883082897617462462937847553597167284452663180414300646937561901032938777579472205988103422205741196712798672670868902784772402149873467839427080321226161712950980586450242871828610831899361078927031943141996984517717086375032910358681745164067567384325407192995188645868315694076269683943322595239786752947683584986078345538795605481827366410011377710694270786493535773207520809935006069289290978622484254629150841516796736354032134280738516689152415413940353136655517165187891701124821229768557451607048085036827669424765541080900771773746069771350319834917862337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26646955627446775443805025855627870015662780083731661667989073444539377134282235047324752584199182306383191622432387311376548596410610535454824456620973183714792647380906107642817448802656219118081336502154024265494032590207214425241889932919240675198606848475895162770364454842623197435010513482007506643310416309125971405963170669257860784767020085045842015358442710563893147227252933997011154076097588618481826725260718376386732343397126591926961688609293931619513997546582991469359068667438252782391736689835995562825101370714763383125526273745507200057768964226137550596429109083424831400691779524763760093158189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27487349579011866602322383216030017363841034231409854696297235615571153588713561599787079661237075608538765147558555328453882625933198623061123218090046920369436255956212305259724624044673060229478471313357857010286056308712319219304377819159514982661397326031894253005677348076828165295274232119813217726550474337325662934784097784616064728673476735655977090760599590650097458683386274306780130529361000804560993668768279395187598348532643970333288899142813307005417467841660851653990250259251584079352175858213549273040163001655599177386637187283948039196164125355558333791426702321758224132153977174331181141389097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20945964283921363005941726634029158839068882487134218460674468205465803894081862780366623326077321669617485049353103465741522664595103619131588680932275649237806961202348966467276686093400552902969225937441945753346831343425011053078178514390084428615991533447603463113458943251143655540379629204685815089350800642635387927684281947769294078829165746309651623396391126042394189063039661066242676312929269135104597405584949169790725771720342503806037723193603878688392156396241692751490057196222882336857985431100181005788120069827854149735852450444548831274286759982816238711180203895068523571493936015933193890106061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26209897040261369794106092307922884479031570294277322870742186049926017142789516565152459716202375427247206779258890598242511998870356718121321106849216745722815631702081619630657635570538368374373586335592607072547768122842730626540406155069417147342045662419952921281623044306538559000070445092937869541788059902722194665558485400512511690592047904086972002601420892115505339137299338155447268016081639395321813113781030716258657436138229089350640501666706124167426551713121339728075955857493941562784846479222568464466515331921471404589433364098643254133405973969893158603918350618043339861053121820305235466559299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25032127029825152710248404177729786462950838107841181355218753185439410782662969059626721847754349531630952785622843464020525590794283504473005615854552125223318235304300250794584302787280339387597074241370382395447127612619224909317334343700534782406379774693473078073026719322583981675362686882936414241295218258435661670331108531690553998507316954685386950995211167921904222933827981422225726390662745997094132919687698414599518407554773073650067084203201545666280360468683520810655102732107278275578617374280979618599989929923711408191723526663203405795496372052721654175824780135556192355238099683767510567088673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25839662113718349946016403972817619343750397212818291019846801614613099909091672161182135435114820894821115163644232618379197318116631829439950406947474380663268845149653524471764271062238437209705307982161673733781225886993111098375821613664424116719899807930093828578936259845305494075600663624521717602031841191448476467669470029530133343534791989818440356254359397529087854821136890031361038322971100877441930589016527195639999997848223748398673121949789880904112385362555848996176836251155906503220750994815685756825127035854937182089302028055104259872760763411244128062102914505860044514569638975400121480093367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25783730952748500924190602422728139652564831178234109428319377635549685656605382847172421077494493838857297120357540273361093379161406692437342317518412398799373688249570906117785240392835875952471590529123510831961630573453393022074599554389701039730163714417792453516412171443751270113847915686723304819876935055526622887616610236740185613203961357762374451380019196465711243431821102811113839475148560455973114286553596733538233575584463092271970763447702580110032655473949789535649259041335180779462532096071019978059368353859214430779630957846020811139535026745116381256154754598134622301672256732429680145033427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20761719481090104116292546270913986587405869162171010801277525089370722280852128872571313543413896522229847747489547359244217929275449578500544140237361438653826910600150048209054792584480990026872928602595165747838031603922355470803545641339189033501322006810356819788041948980761742601339059938559611135580520828459118749321155967823724275000509689062905560647423227665316323755254191738319831375424152534438597591767581334080183817294112958855193487232287970666469889005033297601037409943157616960856402254965326527543187276264118304895720804024079730135690529670142455789416913964156971515710513078834393409835333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25279242659747626040431019967496507957605317695357039415375280781981039198295232045694550944749644554560439185897276373684327043977074357545254710131809226881211376791985083844554980621423963628248032420676890740340835263753296393238266060955334837361769916432858042328990108862362884977693360520862218221755171224166173489098165439345096032777998922499824788034106772237196359775601121290796486116003355620880001926801667586486651346350662312919305511522737861523081636118988000918710133269882760212300234972918050819392385036889051909031584912504285511328054077225464518529568271572261048197142349599700267326139303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26702251820978315209856102080500234883374846658543102262034013654363261503352775113908801001208958444448843907979743882265324695040873585892174651190111681960913887758496178198014916136003296567694155961115317912590178854778851629913924102088331582566478667534855138671364226571643987387843848948716483713674296003173754979362733021178986407436853206575290838073810382473054920784389116024552992702326248586577947561194502440003994962978639203228086184494264623298296973641418937184364025880579420530165514645441142145587863631754211062757633509163964499553347252383655777848161597377353918180204344128952699086130961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26861700426524287222317972691078520681062550075906218716588029825852859515268664044832802668407941038922327670662331713592905517579475432093819377891792364859215391672263600544450903144105250798287732518403580673397722861168016661646207620297847691097068793459802205909526566342041072978647617444128491172837411264532642982952099087151981457359226116174302204978061325267344990473747768107673109773346136088195533271983582466428677673064111487461875237728074648466185197897718725700059542234310928912802359428508662244273881694996952672898443965835504914372073613825976561619272404866555211012601284086153303362936463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23593670309122153131087019327349917950835477721413232582940684087959481872705863029720900329238222723623300954994412678617015551283969466120152718115970489612172310638426858851024707232441067455596208191190367748395208414266853659438653086691571952940878486654553997108683447560019901580010970758652927857290545044403754748653892773071070943387309144670118132625518375379990608431358777193735465413580552674983261175391403756393721335662705617155677518930518879555724566939266083298139338323370425498193592560920061582424307014348107716737632709174448659466895370189551727616562751999954200455638808235417657338580583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26755368506546895463180554456712076859222466971542610141623466203335564734616187074286920880962784280144911048565983550951427498052757516969435064902113045526750531180719464092254838838337356761723235431074743199052318099109871883420003314420501604494191001128065603663930355213899580549456835601633001150098479647556346139402296285735851336683768770069473988311388822528821919202435251454211982696959762258416907499183072526469468440227326549418046388969406232564646480188810202868022884050260649787757962085377003403651833053432935869070178055845088997345311620453547796366685758485893289237137070001907437448107217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "921072262832792673138937209929389542025004134729673752519275655645463117061060264542580784288583018769312093728522883211089049064078030901907424633608354809502688209560070877948133159399790040771039181566878364081474619833801850643828608915060845306653508472304614130010958748416367607597241217146572329703442285708795320795496934294874806414401291089131707671935312407290751684679011278512266697766219331120339939330476193715716367398516163895497147377760683986776069564981470160190256267691126340373467123497727886262854964737453515875197877360131526163801969855524013058389451798466748451298422266791792110200822511928640814361838409893534917062447082233423301177920235167279862261275150732292019749120325440779573359236221103570528906871739629241520942655700915917316976782896544961384424052881155622008032700375144795836025351205778347368361332950252401422542755211562261388145723026667280297186095858576928223909930218026375934456013887274225634829634622694198234192533356588489045885239195034613204316503525334146015287871482165845569864983059039627701401339955604945945049274060472405290888484904064125443618216193982532747889551215584095646565062241777070439369616889269035385206405082490245019903910230127177178436233158161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "685825783151754924810128212958774377574095741582522993432033979077422648868190480095697484838766094434239905028717362264138292667700981872071969986218856932363058475016808535911891822186250459156574533590859435607026185547155797734549393840723563582877203195306840387285259064618807082994529526892796018119973469072387919831541703463351070022482064877506184302664360296327690173124090071311581671907989163960001740405698731467604897373869587462923819041529907535516058824308954074261578112516741331369307445315509094861047399086431424886190564304865667995336113257271514097887158969439202663111937710662084427184036773039117402795245733005529894703584784792765342106282622654004967966876161090387985682375769555235363326888109858326981612667308601801630279755166376350392342560006860663528872599405371277621300803639829886080110825599169835279423182086857122974207823831845221764166387420468216678291521492576754712164857760719066905705875967190651345853264133679841289974656674019663432856511763031364305626287377175802367942635475990469217649464823560880519606306621577270868748316316416224826644694452439342437692782037136756221046136865222923557694647279859105579605816798512324083734025402839579152127142458168991057318027924659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24724928686202239006182505183773407302865961286900376039694650231327673511222492771161443380155507175857649597369477153540211383565658011728460072225233822094241092977543769299513404551511780900592184046181589055293709347628405524717346763778576427768313829027268010113827752224066309093180765868817540179214987891096632325461982862132634515142278194227844615989365112122361005642190078436670589768031773756421056875134549756195235725909223821277603168869700659154169881037400310772886695353689349252940461065228809015505641522519766724299740425913588482978487342236299462990641987994868496067700495496571360707302523", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21762842124540534789078907262032789549754979943488066239881350434225799102056745843626693739298012895344156880131630404098893614163058953108125983173072277711872799582932120669316282326345100596950999741892679022187551857286110287758452317994277984288560552793806931655938850986149277911579995187265663082594994965562028472229289530141094650904280064438822618868030732152795218888415112100182609694708645014210113288874566476340329800775875814661425222713793194964188876466890799968805749262755127580810088672322764673680025901706040811766204517542409998728976613401669960484204609025997378979228056461093317095088951", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24529665700868312609703510951533667398634208855964589908429851817421288024782845700323020934431407392350143374540869732259222858244859315579540503649930807941679997176769283096892942114146909895902136495285648955774438259487685990512073987860245855461408496136020449341621032863780654949645232398564287914883665467902563152662507617034736310033038704533590143863227644247887280950634296454362581232553461921452723578688404894154880910933597146470458586570710699308453788775919584854022380349526371060409286298979178524685974578313956130098979891117094628774867587678335076828116612356117268800694133864648676186202069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "28371019774145944390342512498724707352888167464774837809575375815594240208781539371310711759507000490256166581668107101188990256138516864822106688642350614613441398880630171711376377139842279997287396177690758069576865294872626619544665431734670081430881239304638734304731144005276185559869513436351691338621275950039054756476827752752441854565371091266148155721501400949285736557743783199293131858730595279558064212983253913603621511915244133174640307991853225281633577937223182447043693072826517969370575628979401373194909519068093073778369725931145645132380596667618339093577309160021267289010584483251905159058133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "17024576501310536879527568988205259359254109960123131264221228405685792410581377890023269696115780082590915435419432040702324419583260293619140043520784935143145442420155446442113815967222153055812057543615358981824463816943032950144546798246991572469889009793688539252745354545229306709358888963528605050660419002034165685842750178322232084966569709751491717129768420237351826128478971468349178061801766867477211857341819107277217158528394551714623159134680077268026949015141304527270608471597017511498834461785953348772373773881552147100029990721537251990455013137007283526518438246729064655477565463068861026210549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24325143242337263812981638872999130521877049220558599481361094238686877055395635382683165976416789696491803956811762795766913112257264721670371910351808369779786043462595701022081306719383995230649294384462273035541230802291576627204405150309540247844477623318262397958344277873238934488782571349213336021490105205309261848079444431425552261324693002258737668380418507550217398798339806553058759878671373080655545360659480977003804096315138232945556205249691799901508244250721093866176192671272724980333170434498925625928178904769520175858515524497344352296109216904039495963554576010992368234480602105004899717717477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21447449406435596272136898298159302487734545985422409243190729804834422041546953238940202279498615178040954944691650658541432113618882161483514965916373918548819028172189226112052499412034788684777071765826317237201239611321524882219297671410639410418843666499845367710030910754617669680068705273700049569979367536323289726099437561322882536156983850037195912178478353701186641704664583349319096923567937241817717853553178827076261661512417754821542750360840460527298119306601803574169726730110957308218278631719810572317233549408751397237575796225971143013801664627560036952505164859926868383550838471239311085175557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20445604467505282297395789076040566837878880501552494442905635914544120714806886357737531157238040464888854821557610137595896513696076322772511816517098285334502369934712775208834266359089669790838441557875234305427795909458446095257681299846404851591289024923325154887049311009672587856173722686926975279190905945176414003341283518421297075738969685641856358380920911154085262682466067532521224127958522619299653229526197534810023086244499492383119940938250504792177352713009895039902446356481787712191471954695984835723150479317329220266355981610196740464350142590419099789989660581831721555296198334734373168455831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "23133051426772991025717426466107036737371638595178126144793903079221278683121769827832418910840206933217381208641435390178017804904459915501058398138592785332817238313429181268723512040895818080893585721915839910288213969274862484133336290068899857094981467355418551066686994204589605844836170453495651029939531641235065029875467307174967617819500403940422246587016373780159926195740242503168161602455684258136240221116632373909330274975607968094099199100308718071415528584575439073728986482309297557133465995337956749824577099429636015878184253395482074132048456118979989989186942427472144209169361025928103968131593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25397020462817511228096331676872430315778480911457740869658321489307130173180418074600105216627791532746171106573051356324925218753691265422322752438805346333111086825534983510288042780998483206050144675221647166629384758496494886007694429758711090151741263029451446814530356876472926002556746291758195847177464413749180290328484055053253953471561229895898029138426360806936052965992709066073228211967951379517403105105959593320302762735284433263185475836393172581689038740891058071360426515585336747961717743464688418662577764975812580029146852043027285548467410608392011954567212011579640142413612898014055448681179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "29866940310806798045490161618999446368415917220979274029541082911178510231115950887161530314955273469450682283389834435650401281925737915535921589921666361317874457953611888020727276451242729934951691321908629607457604647170701765569861312817441690398460037007438579790181048971834357577519967134699250794550557883916566809242557949470498252108113813106588280914191442228947902168678332839216838309008007671658922770708549447595070467138302513758000035227243248349147860011811923587734104163339039512912495879847235882848612221087036439639325783272232262836010162780083220643177893466092839248719348585447284950230173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "27682165901919347811235676718868529095610100378110115331512790763978327659045323392137961042826531578336798388436209377439984902110868212881453357535023128171736692171572015387385413270464298339590191256908313661003282098325718116684972523314815571563156431339881319123324205853505181138014313381659536470215581088237133427369216583870714214388860426520006902674078136698995760966923935663434183402068052086908183829219518571549955713174709335177576139748208280289638545838480618753115829272721852150082975423046800804292914409061320085556038383700156544424463863769120467513899959408008304317486579623913832884486367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20079795309107555519410729764886740552486033943580542287134014703608364754792571393386296277982783611494299353497616484098561876780401989966656333761101208012454458601268601801448795569503332047961079146116191048476211411701171868463461692201507704410480268689126561022880314753424452698908003380538388306756678377928959409397105572229045265004295032004620506578220990643213365302341709585583349328126189938216158643484113523295035117040194212567230622199690675918427850581051187338396819685241699976810250906191772434526307184363574039359921051977395016360582837171974871729976827995155110291068787224239483562037783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24266811963769184989885488796751046956516483812587353705816169143950842215962856069986608380120776205216365683796145318209355158186972038868455169392103988328565023397356444736376766120679064886800817629417916754033099630225526417685734697807642857729572830198791050084781839091464249433689696114414229459933229700111331056349751590042183241514290749120469665509557482334152117271886791176346088371473717528682261013852859888780692576302400159381955112115390074887021046549302526643179919381925628069972757987282651888722615295786807501916815965427030457605275066597456374965053673925055296348106707971344896053290649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23947991258769627726463402072382952727314685227098394816420166915420089053109043151673669873705209431728239398693413768752430066087634922721549914691097981538713070008946172823078422318247840806370103734361536468567229108486987796948618635590742589761573143852398234383331012366401361300716046977321361473044256060726078532623921740278956991626299640632043395052664562680406026152368176333580039907610370963371438225076948026189275665279895306685441233146000622458730473425355076452852289207850495116810501131193713280661642377490373890821559967016511212432784207735674633547968193384459752992576945745033494126752613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23429101351911586706020980962913420434082685573290778413663995293373588257966330319527048422557153293737256517537546474360804751529221375807960948199116028644686501413201270125841076638104004235808104188764673866772054531271451309509038106978773108223833023673658691184679683980549663299827520959662258293288393380770250571322527278883429630802956002760898286808185913338956199672101335283674563311323026611727856814235041749492286486416769650046653959553099185334507990920865373723763472221521335774062274814139347033693284588767812364904716654915779649633867257787321979175297806034869769154924666523691007435244923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 101, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23788169025683302373009806575079883", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27481683663356334983403376434765198498158894357753013532260201025706271954945642688818841080820754500433291807906290722683568461055734643781012142916903649548295342313752650691048537649559061055813454599449180064157136685241087790454750664952003083523495615183749013046661380198677929311020101655017712881075254079600173957499223861595779470157577783480810947714071252339411433409018868221340167704281141531265074428712373970043358826478370725909381696077108078368944616045529923335235474636057650202902948987829915751561947192796305466235988135273099783604489577084637089800638003638093041332757671536073613014551139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23872837145916841479597201638866306412782169113144889757089071021865961661336268473703990458439060462600767603338688026529545380729782517473480073856886683248308876742629129905258228510008563463605057858643567789875740117482022729986486209292173968750322297583196706433802227659424823746066255772558527783283126944770448197340894392378918709502701467330383480658621947673557359153672936114079038845913397144733892207033616056170180120801086762595785896502998819200738262563515975069022723167817165253792347502960830059106090714535628098053759742544903665745461012064236014559129845723462737485221213405209050319199583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24321791359864431033476792562848183922451108373193922596559382639497018017089748958556818964945068231226608722228766647854693591008956381273199452952996736804928053776012730882508430956347114964786163286066397473935147264431335531196972936008604290195786296213045820026735529382696988542884768576980706818179316410277256071057672429872703249270986302673875775060903901018712934668969588804439145851532211289990028647008509466690108293125411375548447775822260117406093621309155767576476499690936840491162314120482118709478894566202728589350078456216749775017479460302731083944246699524019978906211579681628451199881109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24163279987771332066841783337131310452981538721319058455542295928354125911715195496715016706769017691183441490273196457003129236701697612096594854682547040954389990495711456940522057559429905993372563347530123575712926125507294774768078621005264013346296968585871359258586464854577132992661803387786472333316059252562779401374787014681632053610213105631599416230481087908317157645280196078593974622163705324847017977589072595397872857250643170792091596910208441404633795323897556761471445211023036295527413655928612315169383778432700291696361226234402704586845000129182499235981096901939648657007027450047684937628539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "153227476306751936044682412046793431213662426677632546997825451010168116734184919328380866789644236871421517494353934665258250201592226351083234412606999908622819722063270183858443734954364010860712116345667986128854635719625752158273350427942290890360049190402296545627586681417328715275877419907506797519181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "138270055738510488510711640474608894413012307986896291633735148509830525871357495017851627925291748993321297889763906093922648621108225019080089697915140762055888453108763836903410145706612888050096445177816200360663710395123841984929391692443021967234336332385755954076224509038218916526025794914810734861247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16241256111760974083843322389781314320939830938861553043399909246888222690589054251257409978572300854092373467606315531975205488347718329766935881620119904525776609297004043263690155120005332377452338308089751392040240830745625388521823423006529531379132224857688421036106567919511394174657603401946934163367433872071153494815676198075534482743584500656597659376344571554142241636517931265257322086269406859390603130417424403059002550897576443379033902232073300398237916645257895922784573023127654731991404226999404873342358049036450826290035135916456353315236227855329859152489950304103286538032900299644268784063917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21340049583680483421612050600359847808458358735795064308998276490581626393822531318531260280402003683314659088844866575202310754487312283979442105535754541040680595278009138146653848224975899650154854922244973434361305379063992777476786894768103344399478766231356700632734266540554503526741206259109566247219380342544512349520604597186922509165082687868287260793492432343518640834291276921374613132646485560372047335405806356750452311156626704311662417152834012966878413728122301353771930573760725368884422600947184710502066747805949805899062811057148948419754636828428459654465605110565588950624190090082445921158393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16616206327275355753984740523602941061271869798766902985942387515847912238171386128550857994464050900303277466110247261959063335030563509147179227916881512408487543553622957366581789991130327623825913067250449577227343888014221263022775910918971541702664110568090763107200856653454470162742112019070121963738926470132199166528987907562882338999053546967971634670134623737252529063697810480235815687290770501156208849361320239934856910191612600809417386189043003014544201733513902955546703892604040107912606453415411021584961598595537637415483076477267772406072980034006588424773691535348944133925089240178280288223943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17537496606656924645752542170867449973841553354927227059587103093542012003569933866607129884357519833939472133369295665893459655921156364741941209099781899638774964034482337330832073914626432535853436489968601093149386912478927274768681682798062343445796465893796556906746702251312771636701439729382668616219944965037376451953025610179738445880639348195813176055418633922217505759686569258345098903394720952207529564500647646118201984129974754813170197288127620480830983763743106481553183710076289182868748675526766645967951168619535418043739117817361992029421816408558687531159955730139268037572608176148152639228717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20300893912200088632249377817527224620279588920017940321377999918343471144900122791916656335731251603822083970322848929105305543119357675050104857521171804459953454819592593959791202191559646753537687749587612861574325856664505861541511503930867841272726527087499742299788943279288594046810675944095282364358239774470595755625936369443557488123544138488156602677618445387246180788034705748457007501526957460531037281452939601374141222158978084652605645792071589189543904941911827917708429504779264446175347405527268518912433454627483440885647725108119640962189639629150577202075232908585359927519210989008269421390931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21060278989448798195333474776573605839087748705898904739116517822957159631095778683744674869381334877745931547220576237696993663057603394579781509088489372535853437335027323483539759383233921311461275375742063716921963678226872043672500019895316198473256751164253170301272131496113201228634731630981013938048906285721554817759017140107572694191141833129796512339976781120988730449562428864973078055680707260906361812597254279230789821243610542113488826792615152386097695315727775389137885812291639828826873743556342286919637781739272369606684237067311871575323468791200785659062050093504639477888517117738413086471937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328536691551969841646892015081796914615474359668420358128302695430355333849485551191907965099631916645746415485961523255269927692834870414384804494031373276411665674458583069948431030631837603870494101807048867191019524719139694816308829416072940085116525819600702210601413641832353292312720815048795143495668140838842698042325780817254221728293997646656633901387929220274654134521668912122836885542040268261868652424667322684850548330882510297293647022412442095665913303229606953229972153210111652279448572745545519977918089373383420356937845567935349216446699413731916113054810988475885704760855188536948540292313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19574325919278285248698966805209750617074305584397477534168785167785460212139719614901173864473076036809566969706941128182898721904948540391399532763769354101294520526585530350610906206938059987609535029779141940546882881864977798915339798955769724580542596344560412723287424593470925420113070978848397718967603878568224093576036238181344095264622286035653379484809885493199616201501351272571456543790388343377618576170039764358050901954108439191526907046130205199820781863311709524028695909191413018126405155964573922768682270972396902768685858989793893343950518162469109936086557159431975670467143871331883020685373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385940037343239195416765286668711871637485366081121831722109144484260057381103950857012845857358311701544217971394106227597517143924586738002688497704582590228645110013970398840458614029804413982429292798884723419261838369810740465016877293175595799069879074431059901983752312671496037466713408199251315136804857668437377624087077579147547901675032450830529783726181546296746442960180858025721919053506706356010861814994073767252744695304574175594597640324102755714368860189764418279369003124960781922328270335243099615526541154842857446864745347404895444662193633042722822202617452344007742621100624641067078296349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288254590651451957600952707282998776242345403812784022204732321432301448486306112172176793834636768531250731830072001748134465393487358737261223104594212854714219182654911173454866744589523802175003284084999205131926213135923481984966923771827140697200913028625848025894762901579114709583860220144255768644761615903747650410551133436941271095882732663022183208337477320068323551790125140563782302105518064438882048700330967137618960417045000179335884431502073645763534982502658608218302106364622301372365964307650818375928313682826196868681404273230423974518049190057950328238066224042485301191898655420590096941019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16919454270637769541645898284958496877413017272314651154141575521651353903916305970747748303781990497924001626396622287118109415632491881564022294220876185478040763792124845109238143466424311450122197125350510907514330553855539469617268417427640896708879433515230552266356210280030778462163027293054105935964490006130616865670158364207338434814853331439722882408170810370632316231757616209173687677960855949692914144537446488662531746438688552128553554822696152883423318110447309911149036670860402389659224292362689980001112656962691986465658220655353695203386759932120250853916358714245092292926035886649830664946081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22896186239970813295811842771457178126276251026373810466220886067504363560743718076732994155669849034703167262566090145128542593874458869707698210479943349964262156056744148442753707515942002058881094762508167121051852580204343820019428448340154158598522885511921303669663753872988177270287861458990347521053315929633665768449586362098010319533192607914138065908680737551582072479972775528699592186491768293797201243334204476861681683674175817511886729298023087597022474528784730709970796350862959286192987203413339316771232419926363263448877244207284023089297631650055185614196158793547737472013049046318606938229997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22569886755178317303501114315026550029568776371040869777060245081584028281178308646989583108130722281646009799591813349983845542255263216167119560183420148052475334546655129275800760735300338613286566912242121751770621231009443859452017301326173853101735073516901422577439832262783414469602785564723208918489610978025963600099771545209413640513908476009443959402469980782329544865741092380375874634360206236594007224581535206374886271455030379721584942492535833533432496336028003547802296883139210754313857424377269012440045479213468536873664158909738170073497302079494947284078065362149796417549751106532885934433777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266177751907513183406785697348022265771374705574424581312839441850758051329224429349301458429148917886494741687076035898422149885732705458668163161094316344671422550270612810813274884170899146229448718026108723266041937323861906015345375802874466776700969284317604572491937564423920731278002416380116425052453899895498944955219943197024259752158527299328354481731302711227262284525800740157190581737284769346914700498417144182505353492389126202135779097331791701225757416371071099970219183834837019640400431600244913154105178891803051440281227644910015997197599175478580075051850978511748346876950278922878741873399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30634725315850793456265901830900663255081118622303258847096813553153940719077952053856006370123481885774562116391502548979438533128756570438227985268159357202499394836602058926379114071751641262410685288696617494000058807296457191937147075004946760462935702633017431199939786706832824047618356630126419024113662546583561917651190550824926009766962215453144653835210890550640722484761756820746760633967515360539028687957833985680398621737989209400619869632368199092269541953828788275040217434570961312743955119350365130802219107824584858629522261474763763095142822266719610119367787214676123262614767514171115324637507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24739047863804247102167399746900070354276380571588200089642351479456927016096283186295981228207847059637180188056783233825628096020575005710930098960385444984479891504057587096311288685699868837674173668814853531181895877807932736612893287791220088625925393654704108949435012523249485649374541390332480709637011578952120685349979632921185723926014853459172341044437046752613009564223604847286014875436321262130610651410797111691551706708920714676470336396029570138156566331490646562417014006387527188094541850461329071831585507872115956548179469025024285399631111955625437914830090719849851595681498560616268257574399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257499475470397578344884686829597714777137662019507949891038866884212858065655969027192240727714853357657189800677192333115100957415911717789924542978995620271861151424168516715006989444559114753606454702875712069871018114927877821713462030421749545374832399286415286105245284126396534524014703475004996313333073033928597996062065603165331547446193194303249819984121520177853075684930558766022685261852443317061049723126103072957428626547574297332578457821987158111612729335897271254962967272287246141647109812635616090073389612835829726658442486071791290914757389583238511612244088464927293999593903413916831204057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23178833634779095350056171130487058806984603549701724889052884975463416299384513410258722432156676708548755631683679052457433696461034655344060914215539157413787416651295580196642474746060602539500677157731652623265307449968636233402849277612344590997237092228896987313644182012194358313277431749698189800289759728312330636029860305650175337101892953347641939134995641122601991160725360370375043358390534970034715176930269674035680631808649470040635070280307752609976633332918576761932369768400753702924055442510888617641032492312365658625881165807950101506284958515634310826393418967358038114833272306219796230936681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17880569693990626705604348983270781548887508804372716564693891099781412336862663912364863198137897533468658346715505238766192015030648117344350338074526772715856482751308776409002440656137159443081280125788300568155572162794218025896629038159041200898548203396678027226119865942641353788918733402723411014213952396317628318975345404657875216137783216565348486498556669364940324002727462940381312317689704298636660916192948250784275491270025920972064201392066825410062535235028703836556959735105333088885068900093223664256130163374914930546569499146635763298384122221353351451412987681591393635943999017648190109795341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251680575999156945543110515469180795601037444526681153557503548089734021946818534040292702050958662163085007534432421063809708653295385364675254710295080707657974712466870008951569618729788780709183811152984815761389314798076442853371175313106357660441157574523718628576681457036182507043761290672035449394418562250717370105641896040174947539235400741344481277999554595377896031286541288483157237293973368027195218879161367526271339346271372217788892944319692414687877687667593380350466377723318026949189913838704100025884735879769092881365215695235603153835299354681452530648637603515935271886189650615858830559537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22183509612664119656337048711604049750379558358714476852997722272170151793484094732600223777023883481193517260219065104128237135630347263988239150215944852198482067932259059947387331199701561242547988907589406329214690657336605630741274089168941791624296031986416111138614671667854142631755707182314672985445222199557519572732157579266855971405962129081691897964589370935854055730843161972729125982070437610150151837533621021143322451262337304414892717350853004764075946533795850673701752298575205552388176127472899320969852786431229140004504926781817083425270306864803780210701968143260831749129251926651263217940153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20913474583782308520823723104236217604034438980864914665296109418665276967787580995883391858038626883247602298974738162641314740633170307023215844440654767109072246822529057558344137102147021439709170245856707656813694902312210197707358259358071954212960243386426546670719867180409453610484002668267236677852533262320559830547860799994491113073130818807913455325871633142179725554388064732333680374926363711707845420506127211713540530641241518775758832881453520006197982174995849435323604847223037811729545884332216254213977572750760133474696764336992345911536003448236630714675690618717040408457723238727995673550181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22465164066749914688664577075036534256151260171558418052719440206857624821294482696857931914318673128289698980990654079056515344741965604927192695393480888282497021295103297242621500028036210769424435956407646545890862780162589518549104276297046164077816536697550838361301085000861344525173001154960059464849635299565350045998068643710191331135809415837951067372336391122206838945885301321677139849725684185376727470461826129335547537912172944504438891803233289378371713445160715571888632263802840239893057908130877774947412948744007178010971518912156340343808815848516661894969729537500213332539509593737187733839049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18852898718932296973071559679947369766550935035980220551602700720237266860060626481285865574522513317720676865618287721196576229638754459185591600575386189790443237250092060984611855202930991098769127018039138484634660113659185361944432203952402541178645593214484015107906112210035716874639646190883791538165260568961622629609400282453217936605315335493464046622108900457161779435071597747123907502531187852671100394854291525679232134707160901741851599319482517525926689067049161427050865708498234865395604826881916757986967153511239069421707789307357577844322964503132985566372563856425931106542410429025445534626809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23058370653327028997829969348930373648725083207436921003572126616540252926397828442654227404651974393071576161520942847163734867789705994615419713919215061707305076551749224945629657326315603087761684552410671825048209032992265656768453488568602028752176903034717007681865701621620460318940661896248718417207033738244953927267423733278635959458876921537652705196510845298725645048154770641942637900386161863562570849715987458047291789384448061663803304519564264724180895540675134889726325914901716144069393528157195479634391991428217238895918158562604374843691315236877181275610803947115224378938078215253888944201241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30343518130433875077991498051336585303264102759954582420051720593580014383395477715570807156987807650062507446006544258169765767562511903970832757057786588491323491459512570054754156748404684095597976521936244302524346718310230971552576841271882750961912998651390974479467605214152303769088933755909952010930859990185536270164496788851283312593893250047570980102370248058920137301223313877528547822527637200668480721559639482685682809867886871683235176903457943410823841898258938657253373804587751862747420209055475041595243335737889416370655406391676227975271860558424490837661904067450484760988617230620229050151317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22054069723096075143141651066502125979662516987530038871833335441464577290180450971165327923489168887285771154024087818310061925560140689434532827655661075365234419673044350151732823077842875694015027709735253046848205928913428634349999631774366531218405017686124050407985666008223701138396071114826176881199159943834282209800707255153846344884218672998706095535326932950510759885727581078402048791968210485211758136330418964281107717125741044749473080890018992847922782843180566722709285781087230400957965024235007116378085061997252829536022209114029519332373057464718857393781375938319906274813355157266930690126113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23292149935985705278772852198165612033924487966679752601808668521431799464243068863588481753662443644087120544053351478906151636896118994112385680195915129173945915423231072101652153235304268717029368883606872680412448831108087661028065427806379572784444412115502059304588936365472868655573580297579882726615357830279398421081486710738689805077116868436350227496356819224097300411932658697311918101045857567976845260625869990959944214513891683423102654029984997742229756796790793140358071751666180015347780151251497237813284272503469315665166893650287700518381369948713182714576856371465544092559868710269084762092263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26975445142114153138739957409227556964912942675198489309370636627824498841876084461815089930949666412453276418631158462430246617373118796604663730868123617780759617869465923390178218677088865433181706971352591700206595053982203482700643723617208253435736942032848948765714146955973825308674848124211374292618911601766867845730365344308605188496690754648366609003443311403412988511277971489566157804912465258682542641956419958919763483340848412585605453379109520945030361040702661889602758085686236944650983823855329009420642099275820273405909679600913955825369399751706599690702507186552413854310786400957408438082001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24386552426466225537331290419863051889662505555142815531005905636123567315191309050945182671069284172068904049810414906035874734478692370033566841251046027665650354175344770340120498038967790658031473932102322626907300953973345864212212667885175290731877152071737000944829935734678836744246249496098553959415497932427540626331609197783825422052007906803990346945395994360920977516410467438609348160430082794275849932469636366544263175852125572672689712918506972618019457205065925422289804194736875773163885084438531598549245835363236424470706460427716616698732829831102948593026917313381079648790914903068424507738889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21479469064017466057242677647711590149061471019504628055805959312300331967940116241320538282949897766761587904057831076830732636941553099255360246978341514684367176224109646384563970856395051352989166664068367601919139552749103500648586364074140632699529763825455405009457523425754416424414945089633378568736202531161313487667778522069789576493412988939377505793816011042713675544393307044811688558237210153957585835495629886338067406602043684151709607597221849492863523761891712941306244866919862799873536499311416565468224187423316109741235021765133746416894842159517118099527128770713398263653843794308683909270433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22579572322065024621288977118843500744789634910983743329233317262062915680886139408317703473589890186189940086453273880219107284874470658684062564207642361539985316302682854192852951911802343744434661076432383604336648375606226404441981662812551968936764798314919271565088531978263958083424839270220077726704662325493716670532708828343452822068109291385778189044038174755436440443520528991052579085997716883567103739056831105720266811262535766430294496710682779198795588127691663889602048854081044885378058952905759722710787021859750726470207601868580184834689821477612102822854267930203914146059919915933850158331397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27753904429543103491651757992513306152396704250696883955309408772292483697857406977549235088602722772982807617546194089682334709928927568572774033158867296192814226458737069471500917927321402098023062346339512219403456137071902125354680747612352476734266408018918225169399174814477071136115857843518041375195832941163701817573550322672951360288327091366080618389333314589147313436338690123578044321660650974058479743925049534082805158350118867437616927789932299475964462280852455161039310134270872130110436086641408527934324811085336140114185292993831592290891927269538255305526140557889643802303937521894320055465803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24733893095035548300273193462465828991720093396262152190536243555697872236871367481680641403171455338983478358595509576533253280022277127230514122931233055430948832858301986140757212254439827815043788700515076776873820060209601994267021056966920492346050257856433986045171908525704829535227075136984579008661468811041420843363177608749477136215857510690345811426994211534528978450781814995065314391649303612712729692766980650511424817935283241100621744473309361977628778057658056743984188905709952038036388837850346307101145685262835666128741534111504246967632956690711733805683815912920071341626776997586555666195749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22391370681190319183414410508361727662880770305054848849382143835550550522269914669565118998988738089725462194024612690081586608398310445870892309869833268194136017452872976602924515829401193873249920618108712092036858262374224494539655604054383664559540139684209777184081639615986776095053900728109790476195608085988896444586519377362410204834921990291089994312997276800432454585369517757478364753594226834244817092588967859921096908470303111842381076092558321751820099933230481965063367007858683741353591588759658696824368535373718306637862446544565345248491471049584481819197406216293168105918866133695488936913293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20593022312087370794780797173898311050510285976047728425387368113997098445346031384954852945476644741277255477529811116506530475383404059507549458448636024300923499980791420437810623175640134039713805793624654925716149422577378209776043375592914220771815668915366237266727250928556071872887594883363233793831019065069678693652115435753650318869939174467682470753332721799970966327701033539001710973651890073253974056144712692149352694373181383958272102957434497675068259177142020892124678213916375349612729954999717193720757264481122047172757836300311707955867240886889961851037314680204820052486999424077639614278489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21383502621556120235308270799577757422234795950294891497725554289452154071349963077016254758061965370964180218039550287136109814491132290146204428347541148287676901131037834428552850070232597710814293415983627603211674813574549159229316836057383126185793781907479399140923188992890524172155274952451512556321268331658475450230935841524426925008426463267501257137391299191958532821639975544846141045000966879912653827366407481879484972396596295080027888430658074633657971771839186547117467742071872985361461161984058114542062673494663016461854323990905085509093714186927171838436731538394041103262163831246833566887801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22153013670684959439390416472856013606647849893462635969825999367543961320771579907610611362661765493073156972862883162973929938536116272951220567741506482971170125436976267950557992904542005843596946347182495187048034460473914538004576505462051795549418819994480253056776196290581559674481383645129349472156685465625998923224998452285738190042762328430143976419499159653540957378525808562194562223219661140583693905182320087753155602592776147066362435357219373886933417389750418869929660518914643951829082596900236419936335255627689957516159597474133568550172041406627171210641683069018436371629199991237616462103671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29424441499867628831568409871262932073250069414133878537657684647222604921701221532370252117365412887464189846389736659813139442574872160668997855761286876046159247461055653555124367149809475225884537141467772215928179299565965511576296931592772908233004007816299015438156672272078309835875977989338160206454531933416584995345441923172343619870613937457804675629153211394522777886341005744387996934899342472560517711737074764281236110539499049645361440496521148377851441239602532782184892958744883660313415935815941187170676238617554499134106227936965733004891548469256936026871036325116684755372206965769994650301949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22136220028338145715832745196848467300121387402955450095558157422813886804847899366312766608853842755616211553496812386050426045155010158793278295348739045759347243050147394808457782084191008009693327369804747354783161329433289957002891929307386086882114531620770501880801908446206375594039507512852821968651026758075016440040506600990076395468356359496973638304035603902875380264795628775380280280536521161978954787470412047848873884733019585025528760923592284846665100718575227636556851766760568215046630977073248811355680864021609682809324475725163322879242484303080571731174723713602447934376066610770955776000841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26929489079661474364625598996574537679872647410153048162235635453215220787170909943807375127033224189258739351246594700971115394604897543849573937669942871971110213629335673480309550163548206380420742790391721583567853117464196028835886632855459127920907013311975429036346218850900989581855836878009018220412554347681911236808152052593691658560422831618690518120897322214914815142099956247626626391606782167871203717446773607865752433163961127104039759572032272264852987638299178783419659988990493674186877243893298400405271094848851559343801014695064584527549233212586335938953484095584423957352674433609402505554683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25134218596557750644197109242033796720601814048842334405475627019431901845861293674835088030231641622799297167938021363697660436292742446291307212190549100694497128015978536596096938990083160950393175770880196489399152293068288660654119944351787778409404465294600820059641008845970352065707479160225493944415116862506136271608123900234551778973954566072607327141286555995330427567505372139049897163480825215763838371913157806781815698147108073457027970732893452134457620577775651941055268075491293178041196922597618611156363752240499584405085501998470392212410080254083499603289587597266613135771713874847798204288497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22053759907384639810835496857754822971660801534013509008633964711514721876023092478926032465327400327243532333197055093695667466910324875215502726922483168601859659274120275121430243421658152476051030480582270061384495055095310401849037365390265096545828791821735559481324952019598714684532298360825623459051940757997465356708335858088361566827328572780936450508293169830523401092953812699529006114874588048043810194868242048663327355477635461113232273163459325883286861885433265798101751778095330894925145943563672840383271420024359857842296598970335530124638740652865512139069528479899069843933083751864295242955519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20934460561432570176707516387936735", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20792442250665637641109276485249174", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23899838443417629774620938015896204", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22727296545881443804714997375663089", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "20808834711351363031035509817337619130504366090784361916808500863511440212907435372912462176047879285921254717057951935064789080374648257244980912212173853153870977196033188699450806794036856909427674895681676689565537988762155644379022444693673760857097945461209353989961079454633734484157437269924631957108753595669735079384532913270132884585584484326211365329921038891193257994699198495920488295400558816767467748157408956454996938454392218022003870372691492756933129664964882788782472768413955539109723323264016889389912738738517356377853739314639945900263669912566821392652897292584866709634696714457954791340081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23643287663703862483778616347938638901735764638975228734529580619914839875177165511175465022786198126799777921099564474471627853452591447011550135039387032509059535245748385424297830393664594168222275449411407966996087711293562037876123745756312906503156408015011186526536301785390003616209910274483004217882320191047016191943552415735309823438238946678383042213945043871906885717374447705213277075790924162886250228838574819618029593702332562349814142658965631415139693641287926731417135068795393687308569621009894931902629560548382824760321624122068197182159137867023093103930993585692435309232062843148971637401233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24725352826471296016463316455430040089827488887816503653947212844069492919309069589379732598745457547476956857140353527982437425895938022125640095154387695201268266138612784174372265399805368409182002544561820498742934864166460789983232444229417378049759762147305069879330504581408553223522904647178776594406586492852730795979715950795190868008847671818779924720952194398419804666689322886015115294831273401164011739154996263067193071393692255965813180037758797613704031334162051104046983195536858330586422849116427885260436549885352628976384497984133517206624969160524519278342272287809469228234271613458737535311461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23900106057769376677498739226569008712069740748674587065260480261710391228418677537778364374261863455609363398063858008506268623155138042260490669570720485862620933211954297184134715309901460556895847877202689231204323387522114297833592677216395719781755132897032110751277404986764074118322603192258005264995603381499328719381920426137833542277440226193622803449921515612465131223793916625423428132410976788736630781958225245833480311775429420366381635142943040466006722212056344328136548891516797505571246907177594339531858868076689340028214152662203799921220460725651609666501663237019019065289054888912854261693409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245083182200816944187989643391675117918734549048345042806321454874249665267053616013349296738453214613341557955229942451142704305727859826780013197648546596580783114708990819182622185325996698436972730258881808990789544661179334650764777552148653925122528156638932982937693112437479518294373758129332694599838046526673522793069245302222049179148982255155055008816220995857022351764162333676438970833312417271158233290013060048828043096217427318781375176861354529718922858213015102443986430156363240484657459335107728914214819782841855413721832164245198877791026487076847310354630563228537309996420724316418013895609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29364364559191242005130115237538797456767656134521179005779346599804896033687481688920015394582630611061595044944483624876761603548038834585203004777793126436778227062980870679541759389272732620111026834039758174907801343889623202082689381160937757613440467816065413995018952823476098125740254135627672261188090952558137673679063578091742004604503857304216696247766753632864000857259368894225142401284597995586666489245367525505723872036892306999558276831863901887464037305929134809030330117586130969967440098260545051154939169983617334448998357846860714699874674890401459257648498186210857841406590667719726510093611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22520729900953818472139586808833466632360485842922283362502083410627759188585354909110413712103274128235934504682986783047892281092084054196562988247023739529166251558342920262867318407771212598999311496745337996918647888166375934824839416612864535419725981361563933422109625552202479247938740140057782074630405133284125348843283711180109138702034841519942467206809494079171413032939585416828405346720377903878643908469487549116324790250974053886810100818645724168580018006169934041901349686048688747472469544781963393985095983347967998499444618305107519934032730645680261639387177661655743467477073191146648433573081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20708066643966658645868199599822455290657406757743216393218404907206365592136125158285396932134750717346088624216176940873372826905105518279466082330642330009566769867906690311447716588854914697353108507394455847994328101875579119166632473974786703311628494300648984376290426349523594943979080075265552559231709597032570347691224263882504478631386485330620540259076811116776491001522468451887861497793436284122269220008704014428601382398758426516024944182615094808210124637037166619454194669451494167205632679752891251959148530079132600154406656870036969355278155779774031324000835850955117138174782847992108084902651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17687148503552363241242741648157621572912007169199060302552824751285891548008042105638645482738914135788620335161556979910101513166419521109127901327647115979918151029772448811280736985841343000127255651083969947266200936036759774867938617387660876657145270849912067647451844535926295295172891519938937583651575299413901872816732439219619384167169599733534301717670970989868119568500199819269077236268833154167568627806959310190037592384440260424409243062518652360680103702429769307449097565995703963026600302202735542632031263377160925572224835504706518896777294304482341787962931254622432479468337298217413511193783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313301565301194252972604685748615887439725029038470382823022372884374119925066441544850933102263287487778298691135778848746208121906296969237484386036613766763211884193070541325236690903226919653493688160721127557058284073121372963678102653153202740548668516039208952056641977667279391547064046281324017174906124950373713662471076260759465653778115706524568886698671064767374953061798825840241469795401377453620300048272063326315900798737135127035003205875083483158225142594420749545487786805139782989192942104583989608374714389603215879906745653249546545296657753591604984017482272198915024259113333967616477059717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379246007411771204220105078533315518179738311278834459894321869468593098128136558073224005752303821864256445709405221286443163984343064573306508219704152160599011900927661830498959417545030666081693997742595213590645504518708184939271809914869503784154907922178146750854136929426798042068914683068917607351107734388948791362470275848883083431238557718341711170135066527504250849659031668084503526410043008973619834557703479326293901202874771182015869655380905229488616451830799403000114257834988391288552631876554385910925263554057494633628063122524056645800027412671184303561460198194716555192877876457176345912847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24284264131946358905295449743697346018358631897486052545999391714511971888548782283376951036703626669992972907916666213596118387031894599381761530328156897021688216371602813370299159353782955824323519094118065544209095796289700588723147808251909980414300533973820012183766601224418855187306623584372388248736214235678234688723048488138205348443267889174508879698945697903485455689287924025834471898566691657085397840936405884152211183855960325130132131171586226135537119818170178060398458087282857027887609287250663585013610619914769430703675642181207336766653277742567158254991070278185157132802587845681586408792741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24525666222826499868313816948021677732162017779100651696125215378799718941197137403786710558731894995653640186482391992840338620197920458964905205878523087385680961841993910416046088688391428795077175807128415052778055129077029371764740858972853715021394327628876912018740320919550656705065252898456513278348573940092062349954372979864718200483782479655909851074398371223452256184401743833968271671333673490102264101916109505395128624393644475065774713517341972767892462538790999910101642259106477544417543732527655566441355281718823769551503292412579280684164869203634411403220604350036355360100193414540584158514423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27193272432198962363048823135985470133711749443032203051953068664687127937060193844238233637049022240257430576556814629773777831996914575912034136137031864176387735871835479729224398080615877008967901393036761663273812342374769970132132789636313437464741161423784019137696775057267279236569979489255630100400871967052972154252967633364816110163547669103619289568961168650084280466313230037017983169163626595918070095265684845309369971095486618758064082363153409769579943046699512177335927040085451549808486255448480403080742506197757831389941700195678670607916936455389140109765825829619691841546408221525926587916973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322495616265118006798629740600509493429799115059485972537645786440693256366120268293036275716532927567176043717633245612711474484066757362907421873783656854284697518197682005897572365997211134755415218500707674824739769457794333303230996599092859757168414141029354410905758877290021793321488392120918269815827748628242547925555099661562997230863704380974199494817571498253324835300717441611034712871515734368459547713920710872735000377740341981290678271518810840456657881156215020248349246047205067967441550550790137765560710556668335734519757125695163795726061172446658893684632512597682321378180123883292239517487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22864318409871381588261104456546767449922104052291060807691114166920921638831944455960434124535235120123817529691663378272775018879303824146679139208839814535998491111655782838079152775956784762258455126796684516879614401407037678318964174598482239141583941703785189632031922911142264776224698417144500653203891097229994443014778374731519873636556756142000448127604503050073134295382570679275928605041457943328585763158438786409959637240337753007598477626813393359361756771244959702752583896668914546022854687023951216586826089346172863811009958989160593702945774921849424261986067309904997627591506220510326111528729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25235635113796042763840123622389208250956757402870606813851211449780503753187391507997603170724161049465132719206647769364666065428242362506399129709027590209945034857040779609362881918351266942623844870340939058432504339927811267456342853413669070816828223101892386479041001559329063660407012324649331123310008328957706359844208785472323634707154530538278466752142220935684205760208313430725151911116934604495762762060732263273059389396837915054916933719649799968467930184352399055843127947742332981430373103382881392962649138089168850443033321039750029035107525710038611104962502510688030768845995707314114961425741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30680807449509284873339975278868801913043285426213882829238288435729254157366237900718132126325903275377307881026380210409411864294632537271970496819094236358974771021614744372874262835061467162618289443289808858151796985866619999627075862700009692762672116911222539031631804952914990825249736395506046376336456710679579155790235107571133106250376030245029971404233691003826088924665350246368111025121554738256581503310552885185060539115822927058632921202501421255045547671639718680100716180771998544466816903868344757248414058568300372583806612744266876773695201180260566015233460913423345382783310961900488969510061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25206556710274684782490130993317201306827666061063298346127581881409568320676487523649288362821850426652079569815633279833164032628598795385058732576099939840098430937889993130790012378673551349629161134682534558388460086490629213174331082331105063589100857104633376520046117150959815406901775059776259300979004893729669853825905868159002223828761535248406872994575982889834653109698483009676296850972464170023177239078611127289593469916987771295528447411973193458724439985289057937320622171558297530777037760432304170542249002530541240896009240847502663182738673243547018630130313179762738057359636211375400455239783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29133001811833022761130223084498844022613357299525979790207955433080084485429468093030511083413192931320017052295106624133609230756135517215355743466381008696613311496855325946326118857650991214834148724605751755673006853164305425584559733554490291281384740670013779279958605418251211856900386838509681024813545573526276586325472874732663507283141328778337412215586478529495238962318520603977959871812386355356055275984673980023277961199656724902706702111752948590167704960283327436599141776956974734711030095624994206723756220336811982034761414117934067725209027601694795378464672607088101429838652324900599538231771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26260747667169705728914315380877229025313346196963446395307991174738583692708707052091107130884404982669733926760884086244675444606293730764314287935267519354028482524389660845028220145113619223119358400610140691375185020737548798174462889577727355257419423069835043624034455885686312119473319154934005564712175833854109397430455594268192779872317923054421153663729453359042836429241966079774142575387499973317210898455515023675134285991656135217369982944241072416939860595426439814938003628007691454168821224855829655801454964561044443197989759977035068294182198302597809441544153841139408633508311396988604566071643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29874510732276275272434185748968954328677757104991960633191715821567192839663443685861019398679345678453842827292192735546527375383560093559959767876369462125324956782814612468022847857706281972234222537662207510994949354393659669938397260677311782904234864766267786694883612571327816811399317784551521615372157797407421899111324920808870611037443893969229798016887042416911049693315669763512737356231952201555871725747589485113077909855126309049344364228026758443169891117418522299665364919186571131701643388933551579898363285103749736242480751883208860167341659145602653319179971200037574770733633727632661557986073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27556758283229945475086388818283863370795575827014344187618882161581566785529186492844399776836241945786258739712359151992799353821682843820026085850086154871874993092827770400520745304507846113240721239726378674378988656478761173714981499792397909574013575173735651224863707204498513823319214884099830272982040547879553326911696762231853221546807011789803683395431263543567669240239481495795893308645532588730209004850409456794981486485475144478005817859383069519492017242780598101619159628632110292285192035084555050102200583489128623910547169359856529075997635743244636240780383268067963014520146467859340372659189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24227647102237000534151772432569696311713962213981217058288005954187542663268876212358135932607588069536408407954788874537498733127577735314575722788539815511943663196057918186424237435966967534641375642006598521288917377249571565274666024330113888179949717964211942415317740835281007528217094479956982331455743784202534494644395755838795169710233768825781643914449186776373863231174138853738399758397115845427482734121814544599799252132074669553633345501653070391612711276073111844144312030825008268583873833954369306809266505421512605615289963985843972704891581727773435169793415572570563843571258772097476294508091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23294917533475589955523586893691424871276856259254146470084421015020558495169703381775466930634889822925520423843286960586011054826055405688170201365828226632516437014786514617810935707734217058288126291361893116226152995486688676829125080878625898114941288585606658249247414050827579309431751060338131505383617657090231720681666356143737163233993431146370164386063220502014423577131613903731145124944449518409654894331525370569395170450701515829694296405667768844398585799363460889091892851456686572794841990196239791172163960449637922430621747764645263458370226897551597919846077408970526714374911463326727331699123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22133945619658903303884100761337362334996043223545127655350921826742359352260364676905916797978222397063185387122204770275640479215019405081347737668748317755914382092788315486861221255569007102054920851877838966408805365204666797158615492921337160397077415805884242844099218587401796539147867404252132043173010631073453577853644706372434651002122260884904262359128547318336707150420902813686736450243084303985008556291500675426403788655851625433876679737355847110559624935380625545803106595586103937593976440883965213924994391338783371899499765056273604896944573976262819967284084658220331889545967019300592269652461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23050953088982404449107876235800868646890734627440013986517701207183254560154288016880586084708089560165796667377570803695688242131589318348146485446707391986399027554926585966747846959766273132195415061456021126771752499834484683882405548785215096520032526968842321603557876154099375153584229822989021951032602572560039645355101334832620771333716806643387630184353306964288232901416596857601549643332558534902684003645616141352951597820334308554545188776815475852844550476532923027232404554137836250646014667100692948975676778063283692288178556754420665458379322679313262963342154622556120061191218168902539355043339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27863325645341815367320330115321971278494497441206655880446606671556231117191347625128757818473813341927170514291143894254322503223244305470164315527376410685338032674799025032898173498035338299576951557717791107614537395592357698785148314424995086409143555935964118176862573370519458526269067548411007476507856079464175671915866988315171368126533448408901824207902024894174002654594107854022418041697326864705794874345581537265207128852477167459136654170704803940236929866154900806391028260404856306731908614188978247544785151291544671926269188125531051409669875439596995858818153988116744543164997538902161736545297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23588971213346544576444443768383237347701924102374244982004348977831796508690035202413242032553081141249258366204742538263586784738328755964790814448491470849120649247092281251692518439710070564178313348300370289566379477745342232046881577135851738435124714618741205886878928947311727750974603530278818490079844024746342208905307267578464637475993217318031738908409556316524278771802292639734801209536816588056436785532594094161259001485414774706210414604284011570997254568132225822374324618111946383369688056748420693362165095818684140167206447259378776652283495382059384219635413380193888483535049897986075672539769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27915061131669427448293997214867213297435703490644278207828056526366146234692889691622483179945832397014394907875075370741478531627300370803289500091656117260485996551944321313121650309237940065723344945878422123780613008742517506451265176534993828798291095937265019807016524037301358664243179527035456679959300811637078562080786532517120899272476019110042698547388535199616387037147478699861876411532088851274738233790952568988394830599531593005425685843560442133873584845976501105889556968676687488808812670255053359723426621697069991443942855212954239069724476788403326214004763752390314632909111616701403700539869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26332027524198092649864081091084550875855101502970844382827012524458105175975322785106420216466420863338386553123750289276975654205126015222399292599109031238774927028888739709439980077562955250591388535474163704605113917842811746968691661398575799909202739128529418494216701427482393983503672908499974259078077309715265518403320178454676893380545868117415061644580047638504597643604516805658737788628321226022493513812581083904880268310428734697414909727691767227750451969020226888992002541479935614516911123380655626978514372173751047218695915411477531105137745257539281370986176053117142906696682099008791186631557", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29243727422999808478875446836360282509395525692166492709720068665040491103893743609812600508604265221985705176157510066348325424486165346900543794592979193384085925847566882550318969687628759995619107822468712295980716652403576534368714548344314849854879152778778023612096683658219830673268477762268284166522592340745708520058396005446933051799194351710699541876693394339921925297703174954371744190626874563377775107536300938520322339101170639871541804129502986003178242555513706618102398032170007699195340827352395932074750964792295881563024451323967923056679033859333156030706739563125078940441527145391511899523227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25375354584512896669691852107610408308305715648394157377186209163692016503117967301072190351360877802834414443881207051384841947404255107074799608745419177365117137040558778084007851550263823792930342896284748986598922978429000839362048671364743007903801921262796743919972940202227685181492783707520099157170282906080795714511258754103851503123832454108631881494931463589747693804544685829327228226116914087572471812509675708796834910600098986152384670650386399283756403210912408377675216145059683648155333101588283656471884700588249064776806986575145288228488805661839318761094213785642665660223331159849382378907729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21645345720259157762763013770888474409561408111447428601748276794079232412488008345589482339664771647595487122036966779387404946964807458839867044719578261652756964104188164379726270459608194306858290648025230302847234290757786358610258269457461825974582283091904024160139724456384751410789053226606631951303194551799482191779323433564195326408031062314331910012398207808105662997971653625662771187723479842572376484593068458113365927068279248615730388229776319001494090201993406269031757948224673227012743742947138566756886459571624430767570799120646696770170767235654583643500069107010439233275736498717847014017521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22782269329494131768627617060454813670910951402356409404145033699339453782963027642906328354950496718987812018054865100601437821270435854518397106483166959372294071662026530820416333200965611212810388134134581787391477293113807891371259089078684391045578236010059745658807798808217039751706047223851568722042100484209455030699165956807661390114019716968235912508408622205594862429882083717612062568936480717343116672196364752283609954075141209611651265497077448074325038304465525863569256314893893162060285092408561459898427745442552160029753461356929732916845999739975295866634397888620208075722009024020999160905207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24165598670320262925540294445467863475732113946269623670468186882444282304704539067483619534052719286586301691791275630040657350534521528032995842076498886969550693719760344657148624724725189305462469861735881112224676412283806093674280523790050709084468262920900501883168497767383515610030957323510680851410897293321642686351746061638102766197029266906563482221978503932849759462065153557889650128935437502518745155570317911789451861203947601811830629091171014081238102556523568612283385123262547775343622709424988211748024892521112059700461261818859084123760398652651785271033505713389570511355150533065578420906711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27068886791757050890309165732173214343923722450064773569549344807229527409964413820633216005569075666718646126997554854469336015582618071198362346964496861270664668499425631054060778102780848753460018868291627706207197925912721166193471357229501003796275447001947460906602097358904307439542736767625717806273453510627951367022248607206510866084515404863763759061786090273621872412889299071868642832008053330360061708153795183910788447255724140097666140756527963921705279214390818666984244756568703489471290530380619753525942134040438707401484273711079076494421880354176050235377271235251290000996826173745036088397499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24585678036940135722446489385898474596578683606665126917081313066472166748283010326179989214762978867856412942283244344222296679345378080938348959048277164693874294402234993365047448411470907418744933836850117796929371005841283081551302883890208454474658131439968568021847730764563486433827799588041964184471364165036453434539827380173832795350571602241097986428181020320188693736335113348729228366819335432626467984009751772807633353632126546240577697297261885603493142232760427605681045231267703262190968449851386589029933628061749852314394952492335295924432970762173686061289736918693629153896150104365720002287079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20111560663491099234165131074030814890261499740611402126703009728386917239836954626307535071633786867631705227598911063016473833435372435393701516921282030755277480605247445068731855766099961901796791605140842054291655547058934461502159463135393282543819187822773682690685369221294995435166848801965952589447238722144172432542079650368634614629375311322300520323993527977015033429200931250241903175170318634926917203875698154205168600616678585650485992426131275001657036843702445262912137017275312436141950462006493894860549621869587402072197889455669001191002778600644283568539083486004943603080497684813266839584977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25671808502410112180400670022919647310521348922226450200634981208183656566278754128712864648486654064769982833025693400852753382645264752032516251322804620089793781263597917207626284003030423556689577664366721127767559054261390394867467445853290260133065378590895817521839589642744189741346206857972301497899916897144910414423483059916194958436176131592456961423501619744236203181035131890848652562687299130817780930251526086841272922834162721098499575646044227206702404643272575561843394040883621445416852116133190538783597142866744487649447072341019156387101756562670881949012486916113713843216058376058567207471973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29519833383554695335943228204277799406295109224485633084719182265551173577999006333335182247921394862147155891513839205225205058789103412251787588931027362195360218754019687913796850745541310669844390120453599197689104047945388324177622954189105869926474432035916210827787783744555489006022618933458974262158395832961962348388572428241146540036996130508862735472672543137026917031494646587224689743559724901868747803866370152398159747758190387281452726243032955851412124562002411246126028630187134596343316613873433717719846502699850366025123222004829865958732387321910216049286449014190507178211934842689328476884431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21079604661060562348235425166382431390964694375184246759893923251740623432256875014922293919620721142214113145560681317902169772043925719595220617552407399669116268537994237407464685952744328633340225992472598465867023332972623896239992027224610424822326454749397156669864575607434264410350453381341662638844487300739906386719209087896339112030823441154658673986901953191137312555526538989317923370968145770166927287743896747385295318355930851003996368241835315773238944658516848052376306996519237857249037002287208422364010869572899229045482124537983449000743792543872488469193844965985246384569950348996562228041901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27478517661977693872197185512974230326882684463431375838652718927058391668328025449570372628225091458578994969518112984629925416825525093084860788175136518375702516564460454792346743194077651789319698825318369672513856507886835172006913375196534479273216186473712309377392859939588544763940830770873186486849919925888301603814441274957791440630770564695487039188311002442750654440600403321742494577322528930362647649351557372276514025524625528210261131372710339248244928970204554703715058099106066647428838571575466751082635032945059406631952219562928016478402880733953704576418901263585292447975618825665621052592661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24894012228885194718931943338477033588237589152410146282008060948484471284537064278781576177888680479619455379513223922218747997292371258110007254349246940983431513825377030948983942982796911293055937578770126780919913118223915541457972780506367143941906946719263742398273437190590376996794824824192895960992971822980013876117745834078876296489146839893080386403692567442198580965510090031919641416940075699508579568930762193109521660154548789836172919952962047452820286252598395642039807238630897251259494153093557635816525498655597611881379166775322570612179871182625593609399088687994948454486400165263790875104501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20604311892529003859512287736205449453323922457539165126832278148247581275662212284281980972717194893415377812271266325062749600317422673066939250406176183904453990392432876795744295909381627572566306220100595815097797205007659946204629012453809463149001444608311950726975182388978344316594554370695638968104504336645470406740403160479763607702845615840343200595622051907383303113525551132449284943801693780277673991686923178313122039975850211739402840996780061440263166898832033325623945789044073977378008822305731765570523817804552131593583929015710067202829874843747587234119217801599844389946973941454826435011953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26810954916838755845345362795546739763374750885197693632824207155619710960737121196240157112580533084294382125027425786876377229954030268515197055945931988456616572203033156645771404191831458266405663082348535494529615789929455599542808564882703965578307355628254907494377983860248186005156353101348171607832056320464687732431357722573682830901750361385993363055811510450540819492190699807921410191981098132151589845327498768651497143941766397885398501690428002066563848539219347137492362132787858624669835564856895067330904414760948170062502057270391390707972419005802099802651957193083293431522066746637305548560979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29562527551299159111691096746403109133812588510961695781773407937946663872801871207115544934807568335430244465139264257277138835719581931776671806402513560520278359137096759152701081736020718885259152380357126888303685837637465691577995679638952775336859549630810425009020566556009410567997209621086691494246399014536605807457771471106334001178419647094243100265813959940944617373664450790541249162540444924004584356616728206205975105095786537057908056692856600909957116318891632974519914511694180947952576762107986790467629669313561755670093770348095047201634446404125417601590886920031246712573024419466521852452001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27789210521018700816937073330553569028000270646688956842038547288889676054128675602311790298042655919823242484485781550410003325808349803284774796380405695185991444772100326792790273116627797209868694415387800703324957459924195129428520877719419146469753929951960822917713037784376862630988658961351598876568396540134492660626798655493655791023038487600442794145050801093454989684292821398351140511033157124707075353470988657116481630020865146650895599567259526610705589404771677973481870107816153844392523419653191915707919565029672072104548677248623124739152857568604600594504894138601165239505151050325431218148571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22959635639699242292605723674545662845486635693599395808487846506523674168661429618474994445269404903224837886374782711002182810523492232626830641967595265263445189402086360224245049787904020959833317224191920839992903657164547054250860890314614720990503555513665150110932896821415485114768996916480569614657358066209681087152993175711439454109041323229746274155803821387403864569837629128069180978119767256964928518642122402096973209064395491015167903416071513849450567625383043663675873487972963411252658181021359893436489646551095272575495483719628258318288680968781006024901676902995815069348968969433206000178417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22828873902415663355144172367942396555490437707055701019422340928940512622102412762876988852953606884392200668114710813826962827249923966861423778239409875782631503587451915070868540628623072731865778312338928070357989615161088546748310553755396452345307354729334342515785417024455866049366372716916981815625595286088608750158575595029445960212753043030025818734793793798516458202843253085970950621531470182388353788659471304187129693238216795746915314264962126028419146526994486190245071597092321053272780724285681944938556353781264896525391615597788456257168672897099162196077662025109163141814901677599161084632187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26084168265263884922787875524960129579423201549578315903778165814611613069248403165645944368411852236166406139587678173546252550192812731903983526206942423184601985884581484088413745725373968322377047260874729321932700732402003177383520354739924719885649810087543383472311104230222887681563920730444355789480861627464990526469912378614833156021674711325575277685413448594260194700703916551877109059033659918130994246522073276076924350865001955957584719833549416444965488005024568471464588826178728447339059120156958721398739208031112424902042070615651328636919751171769089883257181812942453213383778748858675215118023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22730106339892682073722006470193910417354710977881869429314370859750650620373840331105903923316527824249929519922484901387070504204081945107438555272021180989546956707433306447279775761089552626496623846204408708265732577247083091638075448132853021180492964241518579335162781065287649519311246439853686946522010913401139535543526226974388483083596598679434281845413740846328060294874174139402917528019183487864990779413794367681979376480472815393653810318759865973907902831627591923532557812242608226093093207402986147640013187476840051328356446212968428332046496448934883609930126019861320009282891503716980926142937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26170844838194530263317914481776790688501595185570211363738419043218430390889626284437332738915970387177312629198624421439036726404124910676201917023093645593790265316791376171155551694740020797589613808236603562543060746443517869095462444477845534461928652304294764304205303451346661942087707136504180353915902838897128364065400968597434166315872587951270479794068359089299197398849798059351772411819638019930205874693240802678286299056007229207975517873365979044010204149710313749346217878257593527885281386940653858848045279374234550516552605924815543259918946715252398269993300725107084683749541441316330900356991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23670581307363838202800598083958006", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21317269501720223691291800176817105", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26742638603917911823979212615776193236306441287241409471087806988929820417563960744176366127248722714642714525989637852052797392679772971610850408871676125520502640553685063100917475448615447874656181441019538093385407717646215973394805264853962835976694968576590056396110127212605221535913913057167231802735620982833039888783396098409671239705576443319850757514850670654898325627659672558885433503659651169472793268221526745521815697210748216999502220130339165434639732253067110709543328245036877906452322126050599165543859123023886823993601272871170636927611440600179823592192392873441979180494754896330206248646633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "16358049602023030474733160349526703672724744238843194153074706113162864586223892498505079985494260207249645415587233729369368359872635925691806725278313911959187415415861252299659852351423152513416636228101587245782324940445874976427938616479316690060757548422416639340695588523790859051161947144715706957236886836843065366009175436278280412095124951168162143090308946270865464685857893404301895186304704446714835028358763669393315758498195128702822881701835201199863547288961299219827391603776794392885998908044362961009723079880571423932972272911881658218691417063782037992471803755067480860500883235600703843878097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27487656438983611881345870164459478075675046639561913787425482894886485006262834882090314226256892473374493524620815116993649397992256901087964378221169289829149423491022432886439943134432860600757376540646198044062594496498531925423503065606725469532757842013903834745706019158316341509763144098220562417872356683927520289710548220471608158929178453131801282872958486899482527729397761331383927771037079509471940487757582975047087224673661050983241474086865725566300371997900477724411564610268645001827428017191956070832805735453207814879788956079731502352463126695118036960097166392427647856024423655962679919580331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21905251032735528537611783328993743777493361570349841931207454915792022639073015272933948528763595234383189351465672059902723679516520313033338728919390455013279797415220195914576824748158590725653207508662023449862761696198156374777333056550578885375718778181666204618942029768747482721514885907369209677272522073812753503463262370273246256177060367781631658022710775546243060877146078747456958808059887619617893256870131058171160724675148289427704161206205174996569100163862304602930944325336566507377663214857626721012159996065180352391523837133806712272704123069472050842698108003242926366480627881469817959855239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27873897664540301661556659735212871572733468705679172700872475231201226076717708192654072296924902140751695593413469350830464995662374726444764438061957342437598801197000277173743279572560189046057853253048790187535493156055194795269392931526090741327317844995306254013430833356936410693592704062689990671777256107610703861602395506943651624957245576052194797816247649210767388444141427861903881566353332815712506390457063234703879201590384320834320113817519557796911567060183480405692973673537215823515390063935921053141405492718584306144540343456732577663232460161000028969674714863080621567306758793568859016802267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20603350183379023402120313534970920513139980669784757585947485618295363203970052411216773454075170086782695895640593176491092096963558937415964743122349680051161644589062956590338617360130105279468677846418183655186782488317934790625889456941896056396606392575784723336386224841497795201988519389178566942494471330199288523941822717975535577912850811388221449870002628702738404367367234293316270582023908089036217324226174229933326756051836200383716427553090214455759312464122728996304777868524443590981727087332970897924027686505119693390097152952917585519282668196935265937327673612694257457502713638183741797059869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23654222514235758301344416900572106308331707724650836106494711314669793254032240931888653095740362311390811066327214085180959248067985584837072116629930636039329011932883047561317904896584212097652377888561863875997898468768786590723471901858068034111297063768650597900700346806368769482732330252576851353241393761600310372939473283028006771352848992974792169651283891271277265477370769725338933166901331743189527853449636135808030814706438869602040380521302579866672913211087029463959801790123046252736043379301659894370888290702580378075911466308306281638622799052339532956676119440244749668633870156040815982250679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29380397389575741614937432478347072022135383682674322495110905160481297267262911990818017998147599843752510033400443192535663903972700142138562951179046276561735289070547631401068151946530133353184428747520592300755699513422223540795629976526423905677608595618942577147147998466881743069153579100351713492675650985410089195948690686041479726855395370851291941968395856933709791952217152348609763585977809060143298318554512073759157150077056727509084745324229775132654073993400471174435327932612576631258260292343746685675859752141099191425239459636797774729879316556533839302945998723421142307526711478109771068677873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23769750664878948083262260637547009359787948830455638623957538018741059351885058770469652112221172373764889184666010428560235617493786814015649751875713113170329591818320695177490252743820982757323484902803528194247598362626486263223515425631152529533314558065649186149993751175811263242163124496623146066222385898212958246818099858240334106370762525986611201180805290989261422055870725912195554891983891213063818209266891437436330266971304241422772642872236300176347660916852079868425574268159317050822172334893508198683271031619770416290825094393203394015174418975732880306967024989794024219190576805217228659381191", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29815005721579684150396828748311262491503237867343471766322958382530450865904937310143345844278179482220394463274908681362229927707471212170106262788988146597495434703782507651554663057872652705064614286171367889276698910320001311550318017947722857257416756150768509627376982334490916073637694924397619388529321580001718503145042242982379171474414528544657248400301652527325805605001191512560480008739703606192773597858509252458938848521814748618875427283465511558928238399577327463077526827249429448449871512750697783676436428843091003003918572961659916040361811886117604363910955109111666730458337212545637737180743", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22958678908471756561127677715170479378009119247009667684583318156355308875734090339794410955640759297291882614621772012313411975810526255546783655546882302343978209206920721308809498710990592964645949736716165802684097418962939760610234304790064502261709195567006249719336487292269503107918276702223271773574969546484980399734122490693785854646737993268209604687723029915114403619853441805396337166115776102289290603044330266305971675225985721836682651327099893974578947792589991281166111940989087980547256310495728400291658452108476991930647826736813467692941444478614775807110661818416499455503734895790529279692041", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24726228189008900340927100598856757990663853750549412431279565462129500208851560597405070097101848671010282104533366325766256410687530253680194153224532136253206168490938846345941493884181359216458318127887707606254204568852894367603444214659872482125561206621551140866279657567632009013129855765653153313255033276883813861181754823634447946652097969884649860908584032805772259021686140026509332683414555388568804600234961101818471578818836362898269522671324049268056528250941020003624572421534249385147582023578714579996773215350265304353724308873321779154660365305433213995298183694558826425175226038864403040026713", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21346574622441386558385463317473792938255930618159642316708772515887923144691278205495868080202803355640116742255486920809452576349512542521183409594363010423444804596243304617236413269598865282162654186060826717542325634299400301622110710755363534866670094471679650119735694298273433146406178459145532772637762968510324644271462145193476028343996773329662596308057057752876200736199588268921414817781449252619602020918204208343656129775269940344540318998366640244889677609170036628825942696202590502181710328015119761930585160056507369409013825151080928956161022408402954560062869260396872935606424498721285757901783", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29928126941742298403611801897354818047942558751448226704148596554176284670037292528774559002741099239798758294422936220532648913355135794366580800384645801633086760190041197841568308842882467656856665613276698119451627749634606562773536036323397903300576361302984564516539523830760785698832662158978674586600911730567253302301309844223958459554520082595182208132983851651797294872682638229167125781660159364717084057173159089112182757192878085697435741051097151160756669549153208853912574939025085725289209688191541626150553679853164580697814575352632458743223212360159442405321359477603739580594426768941524342514147", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27031569207126030472575217228488821935903496340725481234835929039283536837541050077394954128541879925285970610009545404298795308526322616933240981874087782113958895016398758590340002041609451466843385434204743066871369908065579882265575226064714341773213673832868438539101829962183441568511122126470026222469988181869562823649769392355165497422429519900303705560775026031282664557224665165241903809635746025951378478826682798429263140961722806357469005109462816467568336938111511044256193508884669470692802614050276114678185457945200129315536884205630992534240107737135875341902589158759219736068868371406168270433671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20714101392660958235212001796045302476252056265432245581622176452208641638391331240552172979691413447207642397400251258617512729884025353708954711947216467173945777923203668137963032460053103978052196129847855075293670970286219309088965292054870001490556641409521787838457188348607490649801197466676539962097300264295871799290463195994820741048348193228658889744815253699908365957880303881175169160401205744006510174708050490573920939627015867145645717615261091224494124059037243512738838774472045262259063554505040694892391634677878285444781135156584651340375638601279083848813424931446776973131177765492795313612093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27015202034589560994679047638878724372342209978722815349655099388416995096903472732870818927412035449980485108447464270452242719612383104688438506431717682734652454179080667830598588015790778267991209359687295878525022716762088130981579064505343800739735586395212883295768714850660687964929518346375548148256994258291589523947444513648942148107350510532566119762761326479640931450695435854695496800339488633955517073785952803793715028298957598469896408767851550802623623613140889088996753720524035481438943352071510240211002673841684088464317108896834238580319876006771483528259153701452448759335210712546604853124209", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25798488721785466383222266978865957534508447952621866644277553449231081487412582201807012402455073622062003832664036616428844258268192458665433539045501589572163817223026470495647931351091034875971216612247619893592720187770893282353790557525897654845376220498634709869627419944519291304427615610154791671873893861981449027635747735388818954228916439531473350756681056491325043653154268858216885231671251525727799229089583523330026267360920291093581827943727648779452764319574161538533944679563633038181772648768390314886960012972437545534434036504299984586405018663644437589104054897498476665676031151453690764057131", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "705198354015322703326464680507633692675640762266636579239638741066192102726053986123501211357279893406390192492834045792229301228810216331696769855094248356911248012192200572631359664740235129222145108954073862392642073164821805395142090052245519496038310921467949753712514903269673802893702102634106396319145405527324618896175604269762010363653794989352332205635897412316710957033093040118357596977967029644494526876662959482266745104339968156762545407906852695407956196862291940863452468849394597808355946813194119852445247134193994250902268025140411827892493983058651937677166658330948342693031924864648210598219481909265400571328289887011004121799876430836418047750574703806539609199563238895736087548259100420904387946924104309678770378672689202135520034493247255681255881206002090101535973442851811311433642254970531578231998034252883572314132352030867850283792931863328235978936587240973637209154312280238257646145814902049635070289947770665187996180434623936085492135740127381779708170660195704941134917166331214552034608501487979240179223273658530540437486867494339597871309377885387023501943619198003470169103157386161446635634682617753839849131057147543731404966306389207329418526050621845217140308611868185915865170440263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22181409832432429031672407322475281", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24964265796315732438544113660980710", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21606293788415861005592115471819176", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21110423733854741633481300721928211", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21713250771556670903527596555091429", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22887237601315186921803427338716040", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24267818845506557151662542679155649", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21315666882621516572502069544395231", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22165693420175014910719247750272475", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21575314253420231568012959247275581", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24530188069608556917994053211134597", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22376539175049122145705141227437570", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23683956139913472450303365563776464", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24235972981925354402400329756484140", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22160953500680152995640514884306995", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25831846740749320236217516492544705", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21220204894244650863281517609757412", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20838603431636634787855787639479996", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24186468845171194500192753414275441", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25690021166404077758929521955762509", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22724378422944743710606612098559604", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24664817071932649655531165670325423", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22545960064475489456649675520524804", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24051025596014615162130227585013123", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24763367786495497654184728215284383", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25421125350617185641770933341812405", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22903200433624447295131908527875122", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22835880077099330864186429354857293", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20957812914548700447409753459589887", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21804087808181531298034731624483089", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23244719411966106146545197016576788", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22603625434499653993356782433419995", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25796286492860023937587737221431043", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21889294421607364452556575479273415", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20935278631280200081960284472057592", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24861530407339731288513824621455410", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22804046209225658361580796818076871", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25162890040087144893248492951153234", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23359703772655601996301394419526019", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22109578603783872713498330797532255", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21582277275271444422904698842607842", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21099556391421640304202253536365062", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24639674273214286568217964946222085", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25207684508248463855017796869978631", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22596030305265437466182251468972853", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25811143535237227129146252769608941", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25156145889321386471542130939783415", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23583045187452302211788074908087657", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24837871304005298101033528200274465", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22958567615920687096858803952973022", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21250546949002308567081722564445031", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23558541682127353950543316389890782", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26141618621337169516445663002366079909489797536718496818271560062528290286366125875311554285940913811562127203010340111354102485388812785636732849470571698619977786796155009343558331763569457643573233955097296250543800599415778849419127807893436735217855141131767276797646406238814883807108288023578708286475720741213365381481668590167818553960033758334636891805074498702601017909607073381213022324720569927730859424604995345531531836361176174620479919341242879722927845485897870596930988062180077130827762890160507385343240495194131644819879804687746391880515153746268699255005713842479446749600754640766514352869283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27274263951248690807505426120359053415123425989908330710201337471340501470399759484933668520870600966477035537360711811229868687923894842165394374120632592479773540506649252273616062534735577287803805574316203696903021642405660171289349871306373153826987409549698680870014121227237859423138617645042659173850543893638610678810621500043075833289853618026593089302646059020863531166944780825628788120825529510048067793985430490315910754426748061805301232204830043960905881997587232099688897018824941945418500367158951512640935068362801882369226542929825138183571760263924806019155580884467098146718545888795801068990321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24051769109668308654885139477265518688869889993828641996917653236829749833288671031752823578397873458662740340316568446284017393690243707078234192905742752423019091808093608506047687377613727396042476286713841381210345581547207061214076236880725163013221164325960605453638145036779721703163393251123507961214471793768183625078236491378209183587800648787116605607655648268555141876439843603277507308313278924355071475473925220242546357403915588516031661547946421305672196014331723433522048119999706256169839465174995531258646270067651232410866215622363435309976206535790353489547042217012691077002456694359066433090411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26641012075300363234023800790265599903937537916637959894354328187793172595949642810967101853915359970303188306199162818097928349649346228469150684472412711447511700400882641578158634010740312738782902434521572052358304525095840071249216412737421817820841953732884380653370819146598218710436263825268484452383416404881160676836965699897657008699839327623042336064776120031202092223810405652438361508626849452310568485308620338903534676460626359280780161075501744644788050466321837501349197776469620889415861033786772302968911535376834908051340587892129957791420144583632438657207216613405703201613757322724337458535301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24465454916044050736349142509940782444977230231066628010000954743732022074151870352646392919685444527918848109080806274302087255469458789924610941331984544109908739931781390304203040856849648533243862605725994197054013093539183858243847775633573308835040176702659158945031679201527908076525840876658527350271695378684418354173247831898530275711097874327148946022900620472023268693845489669139564746830910109265066007842169639887639448704449778950639970224468279342151238501074008902444099881078814826856003774914197151093791550916231736226267434198951840683187122708686825807740968906879249820800936058786082335714971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27550326643509805856417301677058088389974456594290078481816729821956902124394538735734130887611441292277843425476609331559095248289411556311354588051920232204436034260696688668589762810165296897531377674410571192348390671680528304037370403857189125868846300896083189551501397598477079483620842997304099602452239596960706429003656478665953245210783260082227510360774578842367134118019315472275043422776600224826512668519027670464067547422672817845626304216295517709387988104004473325304850483115126192985882771480746309941198752786492762035653402227784555052881924772659181284625046854499687480080143937208755703613987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20798033473688937099644244510849668", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26392785624715693403116780666958397319368434271517903280803843599527934968470969772375809482381531267712453126578797819100922955305979129367650832105766451276355744875460006122802304138175595004447430384844125093163803217642652571870842281565719061817345278526285321734437681742984428245542567010453755116457138076351286916744207053634033298680310979181670732506512982438322314292135736444891028667453556904682502266674534010188668217480351096048983407308313217833082839717860740738342476501698469887149609115262819233216117076695862751780020357826894452600499347334719241674825173351265676623420943377837443100568313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19760636806455787725972496775426076523368890295759641138193825162734910635766124769862701669375935693589836255349947048686778537895994063633485134909674717132261015221658043898585007076458486396613945798510754716955169114654686010993997071438299958923137277469541967563850981820456526740494866713249474931492489486468353821069782995162031881236078114952224750668363080525659306346028016452669160956844538661154228629198960577948724042247305923186919408598391347301438613152512424249400553625266283002724298553617934725305040117496484382404344170525868961346646257322577983324691290312856409449074694635527946067227313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21129515762983633058239703944575466311062361100368688698476245469411605636174705873637062301003688788200649630890429062868920123285874658901604231560656091275161156691285033658483292822912089029946329770718155903709022276479319145425800296861241052603613637343805734315146054859054200475146273268750916092428049440457616301202841609293001046671326971511050242987168107270685434040786887466154447222031827924789474584053253025027735979506776677192030945241660930575102215496068685484478239387392691377095230174615625097600577012253451424804784143419050199234981848332566104169618082205966322289348116944028334312099351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27733461472285594064819999651866986175738967728154083573696885671189835983584909040586424379014567932810937702428215896649772686631259889110552963579386511711197388004317015719359757199483645113075189862319272663141685569600605541602916726817045525542582825361930622652888227850284114597119242558417580099808811495514741679885072753073102920669395617789674079835664107443291870382923680285352926265298198973708146342584034720012226234856353138475431463314556050480148696627101359849953169603083406336801608875564831334804914592825314411570953263807175613516572945370898544931814230220418872224656085894720985902730719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24702128002339350187482006407730928761078539785549755570311764751433155835389506477443764119999268390383553524626612925515716703771340717823044414631033436460435252904045070764590994451090003654777279135691639275925208338333668259330377519597962163197826130412021894123851001805232016227647921200868754644522569063179715694005186166373799962459235172207338382248080829042148755169800209387117134217514385594251559649200766177290618386782955936939652201335620787429687129640953960788043090125275175691382507787511482865456100428592119899688589201270862694733183515735142858465132375202318693916661644186241551963449253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21980427156894551984886705104347246242835803762025049579357630662851739919835531960094177684615872639427341136490621650505903061871508997391390262821569302922635298401471816848912375511370401589413547165928095344454802723149752133427859724854135716996685100341857863111971920424119064119559122389015878820226906170486080229502405796242570443991776854614346510732150212954876594399921745872847659186601837250357916823156265006771888628875884242591280072232584689720336519765663984083641044607007169728902196507936531978609982923097167862457676106419274384392738740519905335566688634863418135656212557375722118105729703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25765544102332351604220125417271587026556576939597636595289288632171744740193217590152737452961479206789515113820943417141733732352050251313322795856918439666046168132505714314150460313781207958880664008961695335327497530993504423734412829286318838078588621998085660137611307371681847347221260530113491706911386222260812866749469989510386519472776578362343388938115316131553232373814046520135753977233951175676591914282128608205886997893325311400932616863034436874624889601183979727574110397064348523399823344672349094330753180249008481068017259796432000771366787464919886216703550727154190818515098338433183940143521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28547842878989264545910965887749770744499940613009468000597928282025146768196573092266384169398931558246323811175417984893215624145576253083535910830177811995022373598169023438351573463295233485189590465125519979207578861072077249843928275223129288984606709662911075329422481217065316989167488132844083353105466279421483397636460295006919772704569769977798090944613563101110072802358720093570918461837836071523647007739385272064090195345281500533128158179180867025210349724770499854326506718000848359067280036710950779337368717670564314907779047883843169725867783211143523941886160982614337942936582199320081146583753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "855727632655939365721005412464603594029708360708201583534808912138307797547786720895918610517183592729475089426034678795127953977129387400002845707027752381738021200101773750239133017561529430726722174256417938503867165251216957204082411034148714711144807783721484954162302831596720252779160350344831163402775932964220537073397276356198079967121637588596663622332000008812828990792129950836005239993223214009383202192939052895481829008695880796818253884696346767099044685259301613944925419090356597234936271680617160837449568636083186619352053689722178742530930714177342891986820365789375821113758904761708420760973338287708728074357706388784918322316315377607091534968750577929922041773062572595927864016437767566230925267055958808166381504357296783177203818063903994949421900837212941085761494281621133530522851231973597351391096070182144066894985636215028530890616084845931621628520499847075051053633641810230268494675771076472556726030397767308998946909820167740760637272420754140524137309995395585166338683467205095779514000933997087499224550266091521985593697334089524314939424173491740112973441263136927003622021977504222909410287435798523498120793876027906359688546184040298846119421377006036789927180742025868181729103328923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "846036772129034356326859709358122334382587500548140656542817666003926930553112829785363058475964513567951501613638567909721546569878064791840736520134131323560986751566309767603392134644196033775733870409873111259430703873646485759552948285024271200812905126338333385608003890095307359592293733322779488706732604603764052132844311614556699129967424309318258873501196307213725542846456799104466949664166774036126587961286037150589121695828229772290597327125118890177960967859584485692611078270863939740105047522165867227070836387002972916431353989022172795268807350144265869905668418773606205908850713350322084521062676554365200277316683658490719766947978878250563876834545188899786283723274575642922461780496272024443772972758215291494261998411373285787647459704152410408316653613668942476680347874070321242894181579668111520555489370220168606941423703948121076750290788346648322343515892830027892544404945506508587568967871617192895540236059120593328346263261848319895099190430442966723149244399165683610938784530556756792144600618461076494095104551865281598872726256969811676457990334770307832741971407709579080075894417982754887450949466845674352375799663700502173255222706571693639207482075380546693445150550324760996524053667651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24173897892019893125733654562195534321391084159262103461616546344800142622171688250720335667855081823557741818485064055947537048393732038789496990863413742585143915130516403877995437702205230095647096376130882429491395471067338559074781003914064038676200220983756382374157514815282487608478419102697990091405406208027120363736103435694112747621803670296102049443672425540707068346043980632176079711236569968730651020759728752875984078416746499146220818803819942880187059396945579806738829753822007040135106613472311737256970062843321862757320729011113665563003733414914407880375338109369746871525826714028713871495941", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "22484826841661686307421674602776014102699845127285012195694839104554071519276493450378802605237135755624552075389773750702520219483899144351215852552853843745019371823751865793673079798261529106061782829575765790372670121860473477065168399933861683577593086368709001251974046719133096594419574573912744460871827816085289429977385029964057066670472400506109138508218609120163598329268420114238801760238977171918735933861541348025473153800804966573863239975077128495744499595859267324110460175974245152754877364306079860368619450121349759134374550072411752368556363843120687533426191554774753182482313089993714620721217", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23258083969101401810791893065467209", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23336025189900136656221236522326697", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "17735758264008953819975380691262094059598238993247251651064394734212293500097933211728087925586454673535806761021377259170192262762087448448378578714900834375726090262546024744512879573014969648290410115866506299023883118981115075955488601601925066404922135421842464239444255377222232611141115758697650106707252190657043843767864905572913335473198984249762772444228224487639854268287655418638504119522020949724351729458402367986199110532486959980793076353491668836591291657212567985687308732187442685168154552976082259927108119309364728321663858168222928692968527170041691472785106308959006356066447508161630827836193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25563171855040390020029784434196506779796357950982809670523667623850193096373710039001751196248036154822382885414643525872387982326101543234634757946275359466708431017947803218128855365169299699342458519844232650816684281180478977462388634341174646662902605136720480801806676262791011828900502253727518994335238860723379014193008008220336182888953700312521796483183143065550103342286141271228462219360997149146784302537605718993558045715357134047876214325073234588563736320586959807315027356641816806290986295088483334924015503480359598224590269038216202015242176445386310961701434503281076920503624632745178232390007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23148330810010587506342284522505595380451468564924958500009364206163086229726361727087527126527331560548477918119115962700665106592539295897745805835443549409898943900322252394750979743989245662639207785660423010356245411355083537930442217823188167605886438217885286246329275564900053427068754369016714125395084822723658189441674539738729393928603638519535581170024367877085381503335139615640326741762491750313376387409808135533698102948458513378675993746550393072673739490427431481239951192779858255166833747185189662620473294851238065667229337416184704318403245579914644103288075467646356916747645171725617646256541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26126760935815163125228768834662435415769817154037369017840639011679366196340652377713702760717875223905646457949349025746087098687661965702291968211601566525181291687017156599415851163864139000539336207594346833401068689705045882063503377090288237680201693708942728339284962200213323035806347003797559658717056278607088617563301242912372114071739153728287928790799685680096978443802198817372497476288109477402894393705171087437185553368301430135079263517733707198797115434615186280817051850724838602191009914105888365467108546860200955071876906212132737793118784728433380901696560097248430036493931402473461957320687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23567773912501440861072218429187539460251501779759601203002367786167155935082216096614766720302094603389808294455624388684049644755036717773290710587857260002596640131723552749824803338151889268399472259055332035960062474711005499081672305266760772031951399799521849767071014103416239537028544374347807895057482369448724635148152946610899802235113720032956927332534685823589755865378062238299771848945065820723773943007895357697797442384528328229588560407689943226416323241186025570821426005617388480267762053514154662654671706395565129226245332123249330075837529849179336249965245288936202496396814778362601877141533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27954959323759243204388907008653119219360888658569652538515420180858103004065952157068860616063578634486093253814727006712798656101146358864476722928691402412828737849992107718862035975305834498759150639188550020213175300870574704948917089632103551432426564498208849875765205366072082954102024769360567299982717031342453810578752551204088837929311456668267631708938934344067782705095325688568736179468873281977911775178154220591615019850826786086083407326154430360712069384751072213127024382981703448635746345491011290672425185535262386829985151103628959998845941667408699572859373207435482270453519594182591600340539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30873662095356313095282697302264957713830532774952958961713813716593996703341819045007803078558028455306437470489037605108634733766527836745976342511862559738294389925830035217606634692722746855237178001007508563066149121074116850252838306878906885932714663030150306351738470042660492655000176584187319242689833247262984730150036150128205451946006926605189499290971589476001287416689581921517403543686983369487996200489188599133075656040201338138716184069896797047614793836608347484309161723016739930429664391756322840756538328274670695174994544031731848818480871579723275187793241768522980492236378325240042420340949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24653866559045873199752541549906618308333780591746620596956683060276882895535709560286489883315163771420478797723733298586661647440556240846535768260730985775487665099369400560752560024059439648576452058930408203529679879298831791389460319872893141164672344703908116629946710991390802513018822841759374668461140842347264696121998792014003630114634478871348255425708351201574995476055860084305826392469310203086958936452905909127206411808954415599388949164666780350006529063308234914365517937172344495890604995039058914574256339738418215032360286163251467287997345912510499927408352694755037918913570141040150004165427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26252880171254940009317834955736586184333842709556417339324676082280420091382402009018623066900092510328457931284456460143840322608880811708407836053330882223945280063690650368568072611070013915511494412109113490738792709240211413687934274521102746952296426012294087242130495476737014823329002183831940173337524007130156764810902046941821077506993685926528485023695767944247908738229324686221349871345409817702020462489078024629160167932185442533796512843290565175652344555302406520320647630753986848639558072712111677808944051853156254729631493784070538236180002697956943406089249388161788966640986593045880714067663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28161512506934192020221801114100458988575840397543271140379584999651324207992065621575650568528814468078074190615356197862518888142874994984305447902529148231204144236135830685347840826642362653916045977594800028017142255010013234152253091381543232833086920787886037069141269087652033879565310090875155460832463403976298927621047483157244945590329951025996517806469744795164998506807134926404132483550371913672549531913913768531516194033856332988076388199957234495797644385527434793779027527231268326013048931223840502059963463706958724743129766118243319492880296425275999603536096614390737094483519937878115729598897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "23279996948091166411270652169736867804188005218332672438588306808296030657467879379962885589871455025024631689158939107992477546075033615718551136419717815261153200546250624877434246631493412056775082475851489181099241792641119519155751587967038307837871535998203951385766499312907023375662863067005523044231113895048734350604955875580413707357726231611479912534703425415438784900235568306765770138931290564543224283428783717404681808947916165007750821011130042164585462468264482132253475579133215090325612858252550636649652441659675141997120429645410515994488183122402629632316685128714252702523326069085310034337747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26812959766395974727498915397164805361852455892566004604204596819140840137653325060003255852563258501560623586739305045921479247875694078015148979064591403336117855043915410761562055594110661625869923886775932337406955191704812204795664812352536386466208118985840209022474231677552594658841924078209938064899101292813232755805803421537089562790690048831261398357228103219308639602476780107772884274683885090175487485350259733509824606749499522757389685232339232982322146954598625012501317094125145402893217433913056430465960794303010696180286802755375821740568165380052799110250853560070425168267999490522568790765179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24378948997321624587675483652539958232860899719000286210397889414188628480517626007469484714568457758907171809335591757370553331135696650160690555611311417700586288536328454646226841635635664247537909858525260350450867401501740512695580718589495228952770813346190609206878927752934167499015015658589242462248982129529971074069626936151191217202397222544658571633205195405032703884343357368600432033581028123084104063101483134536267138270647660235119398208523112845708970642191932033093101842888571854990936642216969744210586140604374869862254151557194558725679336869889397300656695564969117108537099572429245676062401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24476428673631563122941453471924251334283694426902028205958667020913961219902231712799889628180115723602584142694684700334727823319632075131333674045275418078495182926239455153264695033053869949330937258256296989113470943494429632307711524676280635552644877849727526857398904644640894226876840097936523276733736522830250935891783587225398318946143881706627780941033138940372661038157440940208948550016096849354475361446504248171750030949545023903840477558016779136738046395983311754523147470416370514291776743335377751168532860526065190733344460415489959170658835456567140515361130124150192394046226526749806148912029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30506845770570127454099989599991568029733694046446564011687768015293095939161584631068809269918126476005336990352443840602932549711157022914062673612386983122308504429730014428139491122849575461175481181071559096615291284770238820123383467856796590022114067694769054970417892875814295115986516998902893769983564742117490245001105532658192429648558373829407728573425733600538833147286885014233003745203161552063100032080894555154857892280581397993977323927025387072613052016755525742405249058547196514217382232975948113446265269682734952149821308180271445435069738231843293344595480729190772772649295504401796616994033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22622303259608892255924985820827934862540107919479468741518048960383653293483969874364715539964105409690177125563900607993435498924431133241610495482373666247556668328630732276384776340453522978305453312109146378668042944821674068872588472691061116536516017549055035290026161350415137494841867678745966241974311439226174642477057553068557609746816696239580908688084518255933033184504628077692845647518040773073192059401884169518737004575392504868851594295120111841212290684832505577946440193932422171670666282368361965357217718197408700987970113475656127748779499910712957140557433595632856841688238725165515558926431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "26324089516778257031226106370313938220670905194539603080623493086666976273744116688087416674309854030691103111502095635757774706268332843642741413001375070117670545029510346552289167057203628842627409024720354575921542774379580149598735773001144873029803189762994248725233839173544546575785042190686973911887043718817296545927974910844552954529956186773009931914060461054080069401327272422294229766490180444241096094053588543580949960225849045358303944912542467431660550462195350072309914821113316106866222912346820043267881130541063603607307416318026337552642680377405609930020446642357193057764029991280420369161913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "152905061981615401730165987778857340906525561644123670823016856896284487379799170802262283035914610803356229338349819658062022102088610602772494837216353693790707447347737443608666124222746239051264176909811874440034881677647161200665261613760239516564985868290448837530514191152088534561504173460253194703009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "20878248171855854033088031765498556401152075587578653232188570410344551404210462856994843926844861711029819832773240737391403239878772319019655284712762308345013321175385699776781863565100364345129053599834427719887090390596181485806899781804488667963361658444506364498733423664198413615708513146097691505618807449931198757894533798131097672171814296251487950326706973935384425220272551855952129675019383886049737243772770039518185509283755000987253472464838469608013585022361638036310390179209803641638806950709777312102470125290971374066813661606418782624924546979516798182291566957384272808420446671162473883559071", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "19039833540937099560073497687554095592854025194733067090537524550070593770185596666003388305091378706705975494540469430504930031020605560030953661780313723323117882235362487585239942384651400495550718594131830810945150205985121404196523533794777175055848197399760899930961309165558394691609978251756155203115064549807089557214595407083402406540282317493809798845093967985361323556788814215765804256173276881261617586259744763731677006372881670505799697337667404072422367340151738015215850013446854247013910736658321566727071933345291938559174550867563618413701482401521957539578418407336005046070185566086826925599083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25708123944602628711460539593596203015609039659490691478080523378448193078379863221476305415869891982706888964140679388530420135135880021987973268291789178316932353803107877655621550611238433881765713515951241545917394568110788653210210129420458408756085583233117725350047915209070901143354730687661411804233002422448348102090235371916740066331568104367976375534748553696600494217578455428570307953768207038172359536998893248156791209087661683432813895077563378060003048828721588473433472291644482908619688295736456007529128014187089157998784103485520069212015700444384427033960318013523613176226902849301382346219463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29408181316804343316134821121044647271048076512871198542957716918560212129861923423427210433592721902939034243538740576082975929417139498357549018795674864694877884116902682309172825622833891479646297933368481133117748033159434380235155547772815696132264551581392358394025755931567693210848374748657535091591690472408060141640328274847332911996335303533896736746791955084886549913392349141645070583285051028419526648281373193633971092803292263987020400291153900967757896311223231119128175209045081242368112254841712237158991946372923510048661993367055555127513288176748384695256942727803532820910803351230777238376177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26156391911240608069049356074208853073313739895603834080666762592458232866750669740458309335780650107902257654611196221505049410252322691458342815346276236462604263205585152657630510798768221571901741659876361034463604728272538613027676779342553892407534906501125651438538531443207230945242251206311167973790089849170802645720844876481378958987376537893905800953390248050212066084538447481513807989087188354713796144058671664107908931115403233484388841556869594415707337053740355891509187619702820313508255637571033211202914875014888740569940327944600989139386218095042586727886642058973517548452965435986166402213829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21884712096245252492894451156606905493165485369593599964136450597098014437050396496054227061213484607087940582004917007588226907322582054902269621590853498635436561466512735789863916889774367684484463140691320737953833895660613141762930280921118576936699588391368484040165919798676172535796835889580716408450634670121487312991937006498115007575324139510989309544726015921674909129541390347404732229254616258856292166534483457973564615474070337303454065874437289611841998830845771022192189796316144753969879494471952863093635716030837109961153491306474122534642353753365830185923206539116508499616428445678298125969973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27708257452285680804678761575085733367366148936075456809330090913900960678364093144243092163949505671080427458571138096073871958283870040411441291997229733258815858798678323767362655203316240443424576644234134813787685170847699318101883181388252641940920335326243116702983159664061973250431424881447349772371880606434501757759031577420945554731216328222899096287045284779905666301602529745883015093705243708219747164244968768686456572845709933178677335853536044867388218832894520238954156477135203274916973605419292212530925816738004049897058329354477782807858680709322767165109802538219941504833491596472066110935403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30656601303241657488241182420144220923776354643465507967943613449769270717505257269920058232436179981585764102619302356831495625360952802674365327306391877204270393030315725880791011561634566413230187615662628378375086925055286544904927587290005712915354743432978874558548356484567918814892455821534265218570593593805119338172732960932488737181489009433157197383621933677732344477448405697464888153633096646118848934117052878288022421117997582185275920344980317838809405445245173509711569034941379829791909415852665142105990657566101115648174373126880954649526374017065662565598047821144533267629287085156194203938127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30091229428576260067675698537969589571449167260750408420394266147369770456568794630615113167408055787099016398711939377809760241551015772057079951796727472671932116399816238869234310135267686002437997073086108289866467731031345561162931078976949124960543247233261280140841882269732116664905104184970324079943718450837566275592621163109759401646363447040201419890338435668427529913530871882882841850931916623700534532640648485202272932381912051437278135814522250838704616920988811033012991515245457980639565338315688436065666644272398802350934570211855509636311172996804056970227311952636458296699630149342248041953089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20826834975079163983060115586135826197533220176874998427161096498203889083606658707840790029629537900560870415974664400375629881461820115475250460862785257448573243576261637968921764385466619806439343909592897569079164120989570190799247748923990371906834170765841819660130056735788640808763775793057597637125786323703752343985325843024241892070637869291441427042749875982805263268549269609462233057119600148863385954710111147624485612113055171563775012695773263470940107382936939200867788421458762091371035097039445001097483036531544510470371170313041098982104313065328250342503522827153131655152514841815955132525973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28322269300190793039252318185022303735048718276365936141869580929855120515484005802133616046113053448956472470712903854145608553428370453794767422687263942111918914592513088572732392835078453503936068952870071303505369927819940177655473729131659945716639604566766357377424446724616485582221429812682403136889517631150320473264123829475161969421606747769680973094615056797792986833147855920023360531903810368451467448720950077287085926731016153922857013459289468411657939682822782032344679474162443060456522880462092614520486601130439875136511266251749252254554956206266097999714543095921463647122007247033194784759793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21972240628300472257821896350964978345614557566379234400952052372510552793572855482695827436677857789806557661501194759417780120111403825419297098268781883443033775769652924704124727765457757834641691417661783326090545896847895984938116012482910878559548214131486104878134280272744742275493112658368713052028681723686565329378417276705434786121340266030823404270937757738354018506920928790794572701315662617565904683181785472620487590482057718782863227841622212759019124449189796544187582463515620343273559651720230147426246408336285817491851241266582225068763767279808514658334383793212371808213205951260957998948433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27269219977149916822334916362888528365980185299338366962152300926289238198449938842194166055741427429628397195393740323333890918051902992133193750994980032703059876934593015477771241707728745033823704594998241765289016064735895678134634145512505673334258544681268964635243864300480259668968551018773477352982699050766252964644054493633767882191364315389836238360081802305893101546912236963734386825485008873416798468010436420945152555836310126702017388961067821243454944211212969445486911279864525513055809059291114314522842627103508162450620634475734818622702593871299869252883517339700078795983981855044369030892449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23091919834378041235892782502827268229041183200917410551717605577668986733226937546066163160418298666128457701925690254299973800174425847907165237563396941389279143347207127033158819576698573743157661845504010812080078012304562486092760987366204067890436810468008560359507969675813786352387823417411187481677016635792278581460875092671452056097243418802040460322184206609996383639217270760174349403472937716542563813830927129241953020756701226471568615278323809579888457654740006728420700272180979785146680585770915197624342245852193972044694235619568771660174364312701545668258666362158332375049945900103747593123221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24319057486154668093342271023865221552006597080968434229582685925278786860490570913276223871085690165332148873042321524231815057259833141505714176602447704671131689824576830262801215052040922458203541979902816959007918533689941468236865937986417602322774848730989296568526724984883318480771531221208762250487829456947618185083304793527754110257218745027455898475955001999812316055797088776240637140247977562053327034260511066637505522679887115711169145139960397766099937232482961920017242165275711198842058744281059024005925893622686079723944861335865674883667930966811257355904611881947226440719269182918551896884433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23608720900950388844819862680886221878585539087780300390793125346254800541570911379166091307019416693510786156867192446250512812215925921046248912679476250991730573095979094582161818271657580366121838593680601183801144337436333175744676079882171417971858709625451882186415295284420136052820467387365649831457303643668001851621125667490864621062949349467476218181117504577508575377022271705717494615767877276261502776529679869480483889956563585381943267239895362034812947613043017578125677723204398675699355524852354385107229514774424216520006916027246687766998291422503854019475740845441349293351534984502324208441319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22911236635381003529544660472152937813493395258448987375591247162537612210759587909940661025246060804566903684287864821694747017205819511300513165560649939591461805417992618438118431320010222430672334389955899755117046468606236865312369785224468953293271619639859894837741142590318262387703531700398537550614970246094467448914758361259397509806151075226663542192363700131832386212938843917763784138201260966685335708048643530893683589787865217469870348382674327581370937940394977212158887507299579043279632713224300010587115961183176993055717814598743488467884117230323803097087860589150074764621453850131487762633207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23467032629390702257228524321946167107153016159966111175882784364393411171934110388098249458641358458341793033588978765404613070722233784684660736518236446690718062918350781963643064727403825486501082163961191710767460640153891653624285342667744026509747911150837896579356296028251850359301233781507963491340357851695430430159285877972323236242773798616282228970206421662761360872284848205976839948277818406529012747001998503620148666488998499705122030352669797732678518331618598586686284661304069310067446352415775074398226613699575496968140529119996234031764926940645988211766625768616090496839727597534415449276009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27148223661096562016436908079683202199574683423013316174216015690913921762709489394392993560764830435493723281343559981179316006446587979848421567800055101826082596148992364388830120835961289173149333861902654235585482200225789098890260470236910850078633629546384206791983294874794551169044245002564344865081992806099840915826701501928456752665198171962909405894570195539555507290786699233343917869861195552619688482351614718483113695443202456537567044918996270709872904404666613149650853223695812199554559481093070287692841497234211531685459814367775716994136871962430211799653588812126233021759751926545991863843091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21046812434209355780165115801861367340540101490727822119829679559874420560360642440428498701176207066983902549746402779960324868415615847528530271971991594916438111749892851264315552204097583034060702436710075422033614499557450894167797445366385809250807104300836822220019038607269609528858758959063489468880160335319525280555606588538503552181311225720609122082653801505708247494807458470747693254529958685800356880973770539158314847760466835271784090596191818079972019456990909695148831341200197440314818297475979062521754258811495952379399404582298965271858299557220993129567008068305133588960887656169882089776803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28154034956684065181702649082972399155771484238998344027320840891129403007957054026045773720966410230725915738270928045208496417493700948627590453247533785948453471071310033881662178501939979711971219801937565503715673652427468227104421601619148227830704305715991796276993644241529535943685248049958522063870814271687152493176674640643412925011591871464285325845370345434088697532628222363178719422553561548938769335181247019197338893231883333753748025007718463129399883816642029094963055432029127725403667365250837679264212590387755493032655497444042642596840536337816837569124831029283632735603662313287505275608399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269900092230746063336916232166547222686824189878498034432001843473845148203096863608002734481528056010493371911646276288861243886780791095428780733306810216739980560883350095765454162582338831305532424571974871899498501388042705390069647645317391232600389837709361545964919441784293953379559949203285353162743954863885456182473348021328773282615863997103070640185405040495875439652746166385550860000061677978622495517878984834311573950918240231206819343030061758544369215428612939258071492696293628796143761140649529779952090521009419680577710097869431713318582976304581341942625902184124887547361112448528772432441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16234721391362234606067667261894870788821684921596492798903243735414450260913794734872051102634325329136119424544011339674636778584510661856307537369103537733945399150899455953698655810863726831203927455923133675266333118299428132559111902947989864221282799127665520343290160585911544339901393307457934196698223944791113611051339908744378243285017711556118319178655908570260899859639401482548932397912165664568675635990303421708766283951172258824259375064372385090687266464159581719078089505288690089733852255056673755968401250500489991319206736745283607554881767536139743143379952429036547125158923441839484675510649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19760834859336693328431661527282625562537653225373231036495825686942900806136384221298836164372753566502735432417098192146521088095410269117683164965786857605286418773812874696826797024794400916896884189154908535772988872524216648886039550932760283673024476519471033403409417994381906906193513794671004338124853495834469613338011821207336267271905796432198712954210788597039572661074816387516937916048625919097651606678166220938394029575449685272635619716899882735538608123263072554023373314445442685873478159692787120385214188995239517755500193281148261576893992259424363262534743100565198850737497531892887126156681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17921608467465697603261259746236594707288562096522639541264504372917819509679481752751372007293091070650035465975936123169430507002725255696204727332857108211429624639690545098937249207109651202703220444828000271465272935098849972554806132305822290806555346295593764726638947074263972094636206338955144337831149235609654641793274102517700203735954942347409126964585429812014222173798498252895209233716636191253896686124720920783243003737850858848155787707723706488225167092838662346117323084655774270336798380002519089780535527164390271418837116172598842765277243736246415162629654598906248240357988725003307382331651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19790460343293260441879882422068535177181192138606555245141121495113999944583921358721142603671138518304088021208308849251874421964391074918605297319384229976967240825345779290964411805375187667806866253962050068162139344885010573645931915396541727737179065972274700435660395198016393435222513587125091037779554160457566839115343479576345854053608900709117650086165931903425385200742945366565181054989992904724178721958141473385913500116604500116820002425748388111991920006597791228534246761895156954887220613588393119559080537636201548601804751161520987497388648386426938910429309866374534680073871207748651792137077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20171190108392636867508377305884111874545576191084223771672117860025280845034355164880992293760019814813422351835738068992452743907083244638189176784093480729709798202110486272930308076429337666844151108542143325608514980216232730930452139329841441688920434672870856043162119109786224778431719611015408378638165845964363826025437205236306029147714705551155772491052321957486883168086571620275399244534937565932559080610835124382938647367898653420425144988433574787773233732721226756749586566678478345214940300455069928774808515077096419324974697631847041678499667173440844386324263325053475741642208587639340908012623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19881419411817888266761226941666328921781188339508736834140280288658636397667149805499012830630855562093924932470662455277886142207175612295497804335574804762601656120869465353752085721471033334545971372787064575014221923095085223731118669592731675174470592322090563779505716388343493642691708676575026870815434071121409050649179656350573907833756269658473895590444127114412938989288341121111219994550392300816714140043918181307306800317416617090885055394151976821604835950188497960310274454783536189428079877451401993652793266976379536115818453532484777417105285594775717523700235935943941245308673072859375039160249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284640270251750199020293088386038888187314626985970816460716586454333992160467492237417896134251332899239118356166067353129440584311114065550924041186233339780183175557482209502596086947221233713013744616441738368281271502466432363542309946992049714225554662455199847649128007217766440710131924505391928837984255487935855450751755811377493721781460133402103702356829424941440383756458487563539805417684284950401486705252074099680095362325239422701702430973885079253632447459817566721214296924144114147247776890689358110932548236777431567198327927830530554307526527928356151334836589582048675630183970721230920235719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19039207427375408769783823860421520410658861691082670096500482266617041854390655852102429444617212739617124672976629350062452621022212918173537559198926612149265299231368065097700795383941606568041060040997392470226274370813263045917576406270229328964281434207116635105494332088739652190549680013031794395207976177834461740452902467614523038314871461076678268627625409477346014763483791336065926380602487564156998783094903699928248843813816925240680717846346704908384983915122815506988171876523913098606646047964823861966000850250635203852214960378615172540447655867511000940251015729795319457824240156448612759307723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343766557797883987092474491804698039985078965232790871061424003937359131201773232605883500133828675667275860943126476047518650221677128637483238713174533085116456376498701581787190925858265437980341524996415420232855440331724779047921998195967420107142015590876104809586803384458422827834962027734749692758390872612817664577905279047696779550687355803883373982691519830046957530168535947700869270349638076553167186812952818331924052825744738465630675710787192997444595611107454756656134223863108226344924220714624277099107313569172738028109875476355587661643086852606763844378590640258048030674974917058951782870353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31526422786816759311826111293773959011941403127633652060869052995323120680601242020073101671494298882671735798731704919320808744687893096351687302679760028170183494202086061233272058267632146412073462427743654150253514002234702651803409364590859957045207479758125003224083378421633282342712747695807804903930904552826260220629993323797174896536988138765892883296216984299524185507045206528781432203127847322956509920890868744869851463828632549781264018476031587330653428283379206533795746610760885883504225016139547898755771743402514042936049657845269642959949639491270238999138569456901713202681127839041720097379119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16230718999296977296020468508751843000766532808956203318076204418799402770812026666823042116706271912775199498075229520657411490021660716844864943597721241842079562359835317742136953464420952372835158879659137378354965092052132169729753596118720840176383694444313043581231649634644628694470283899423407503983211370379709310949732373483669740445032677820113525009010397261678630340485037939140629002789547765645783062520282512469594294808946465770050497784899455021791343821120355857902897428415895265732654121022192327373475630349220021065044008604490840837395704169435449924900993954800153257544910849413020645666799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24305858784106895974949908724354255762981923575589982510334067433634737960920935169350916485595337232688328828847433488050192336215963129606306504821091113278465811278348736433409021697406834125203939275571990955293041825014464300604324309306810843209017417116636676129862584905955608347798609618571285096218319652144080244504496610295931349424133559184129625728478340877029087142855066853644288781488582730517583051573840699224116205540373119435166840802563660303019694671663204192905671664308530789024019641665926118942960534298053438533604252840720388162875894045562838806050780343137962456279810598299183816345271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24324246281609031846499597604284322365492658240337454947578568471867663404616291072496271008455082841845579525884299141667731372920361424183381052815029262935605044073398666346111954897599132070707200268413686436232718931703073251635798159583820227630398308494281384487723556924986548159429098650007973039641985452904118635737749471467182501817076402352962145647651364855869514696270057448933537784751134571096999099788184395193677904239498155473605211772668605066141236873981889657765970870635051704174591485616922785335370446087524066064814929870335021119473464746210693098084658161412605409437136952561150061852607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306735148250615210362144387673010462165757313833604799306876450443013267006823321473682428195081771561671955996066575227390837549169420026392979571184389819468658201445288176340613922446664733300354250675154626778575856227729069449920814747621757429779487840322875584960694727958778141070821531169754720093468578881525318460542082589232695612907965392410930407592807232176846595406565184372908615920075811312220486482897201130014611729300038705560363653353225468712377631632155817521257380047094876684890641974451184055001596564797245335745300769735667036814801542349677189899813659090869279056333018181567135705661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18085715343431935748316448284156903688719138387148958536246304559066967100342320358147272243028100159232056151003684330679573309282318008444192949515354822601057387493031747630858485046674146314840071534054572654055357150928388824406505525641133828743832402993409156171992211100232515922500296590491989616063520768802047482386456541404077302395997222818420190677898598659152268140169570514684122924676955765866614865165611377269900194897407264427317984210197361527896704998599435947944818130801176569953687509143248396418869574724854461971281730167082341682150515156382437286592894397543510867563248731327049687973617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17320606756389643942816107720517196379185634773816485131551648981225253998192346719537518274090810982076831549325661606673609738795688920544325440525173565657440067324023109229955842225968252520052751664734024077636168928981357633838325485435624206738196828177066799214029538281469986111046862786250200508946334695430458684918563272854209387723945527334291955967289614496913402737152921130980507953994296004328912758625025673446124700627637253735471098198047879370686487414427175721785349104476593747204943113444647767958155960719008928694215026988980001076663608925692568258690148619030066699602495081948751017179491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301694635623974797554078771069817980716474086513219607673654773178274492073889866919484940361624912679815688884230595458990923293952066295741535784267305681713614562862532850493146951826611165806545012733384527106605250677463579638938665546494716164091063051168112766178889971722877579968113455282406142361762595931669470659140000025568241195816786015205163588007450466670817486469207108976019992299556227714095144009157156409162445433335622720171372047508861435834617290472178287401771859410996574582882618262544999077680127408084151943986644331537282000963550661454758115567725810876060084749086967016429931761031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25360066492494017018791949604779372813251993843176085862361991543084598084420989846373425156820627728114313026642008697307614824457021695354631754350772532283616434646295578819022707092937958327360024664764992681115760845240961753468328825855801862741783762150892446662795171128098653705105735693557828974708831590229862895437068824650757099073237718064288369750780169965787632896435698143718800704774046967332652945471470714582212174906574778798914714188149652966032416047139020772455789808947743500565511222076143145005180123480560530750402974242346348546626763143380146184463407622031672454203073489274197735373781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304298199194485275992352918855050134876390514029544645474507719452612164501474209018827385930962314020998492144050275988350205601159330971377773682560425446244614738696977739409146229494985999077748364313235162033905430818447731462363404264493383943961402412122428735042322825358166383777371280324266433854818224506840496970687966611591334342811624802263847020022055147361330390399795347020211230585312522769390909765903814501448608920228011503459909042969941031867561773144073381042957366539429473242233686994417392187737919004370337242927618299833318644491294149204922637443225997775333271157416907469514673005899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26829022122202265522215719989808653060754610248309341049599956026860690378691907829216460897443247715059191988271964249448227111606768832216175550752254544170799980850293173993546176650756497663009784209864737641312875884637195012009517987735439218030123884944747722466089611875352108514070804971131299246456479522151655602195568818654280978934192817180001357572476365710128372138650257736974879278576272931337955043602513325875219735065157746242507032153322457339384213866613298829579045159107825887437697978996311868475916643208808873170992564180391252405041101781105797638485786889684898239672405232226027957601729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293464176358171629426165883604270821831972081319343858892403881596118211296888625831022574799600321756285940305020477469465714285703859037466581713094626554206582571912508241673376039404093428799514310764335615783447642222253508886256360945074573999902531180511549306828725618528619912953910995361898224051499063376862105522478473812985563110651296960439511348433480329518846935308095769907879241465258619986344863252311843607240117733181881727597311499774474146590116181353754235197841552834773508633426388292829306476967172005021583793996631246555813680071040285144822235828239931626762244372676461161700002539651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19410134886794645399411019615062366056848069776177258651234523767418402321594851650297475362952468698041192745131282776659334372204054657777600481256384709494403786081199622198517392343954759193261663528210033678583986978638074754780811351192469826851220655759194226214248338973332053704277438590069803452958886522706050965404393014769673655425001731833082309782700963546272137096256375763556807857359019084647074076991329888349312728853711390923363086285420111402856836666436443317925325321216784211232030801195049049459732552397141603380672280936346624762049408544415468227576286082324288880212755961850915614071449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21391965320076188446250364416092145958997414126410053962667051777404288088199980945462977594547289773043728134395285993151242383279672185916959624472186058707476205889082284461796588971785614703199617734524540489722515602985813585458441030558844019660033070121762690500031784122228489978658171937987475577622439913555008037312010507020097388679123103077966441586699657897662256913286580158821520102446063046710739914386795598994479972883704590018916843822982964490070147062511924327681108789928536263098340575840166379340482078911592569127530442556123098397834903949591035173573211008667689232501607738283137365872919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350494575889210479964657342740857259952758774146119864435785550279018588025285745424350230747259706879207512626845622613035716897668882125369522973644371393539908850273196125693840261728244503682393029219974509302123439984767271870795661087625176023996955812663223833148957015676811825590983321845282847506908320331505886795908242588597713749351282259939846347700555294141877249708376494186440739906363379082709713806519305075616235066770466989308680358601089802577490141809924176370644992225332488249374823532299579670465920264420804570299231967247462765117845647674459859880330129471662199656135032861689741482361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350072744228176526918961165191844578684332667170345017482450163911031742560469621246802156843443139894839742412922083118386104148076171464142357924926601196603838634352044383557056528404976084129949308451173013177230434537032874902091419821035383483275845296762986374461247451981660633543785112394736986550735321372245109981327232508471686651715223715018695762198808368837204667910501922990598884449778696121270408278250330201226652773807912007572516052818531612630189497647775425443614006601136559754658228168161972158159137251667467147076816496246827539578170652829614675748596020906371549176931533003515908521383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23509456631313235028724816867124393902211717566624654539061118339654703936244814235709607629853065687274873829259683353706298304366205395695309537708922243428272026140205216184414214456150458837575716777685577951892390576244451304430373818784199287008244653861668116642991672682519100961783992022598816507521667951252693558012910115336631202474211084377699760336289485371543106814070357657353258164367038524098780231452577297730415774626902255577099455725795094432266054309992255911319693024395120242491024549762864943722916137913623158242681559910724694447504304628048196319987136217606597419189732495243314582759653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16366281658965501251168177637717099202424954555787764166474321268496169159892926358383675475162510304854875713021818568365741785081732432663394481240154182054796172387795511744593176077299599308151095892114884608358599019879011022888313264420535711446917632144944452808432640863306139556794525352046724203207574823534194987462608534882993980350598899886451423744752681338876102400662870780476338742695230818623875004461509735397795413713743576059339240690483685751169789510087400281725160176554258816681820857519877803637618605180401149979583156082802567814787437225964973495927478333250381481876957287472224486281049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16726727557145906400218025275094044743553759133417853456426527844151193777757856089735744202493031178322870133264476030724495346118772057152527231276909728931810476974102894818182627779723313816728489868217024559950510209353004239966536146974408521985283028188023945527835873289848891410546384858708425061620937659225626007612043704750155932626848800820261163679313639325013048329944144239230045735577391789824802867600096880325439430183581322565338193808559646065555142762380595236587340646391595694949592205479156301925743554436426008718517565852737728025060191839454162680719217727839302667570511171506889935558751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16373188160754681102524934486157674515497871261238718205956698109543266162042322175427236698259257337539525213469058594936148559616951958873010296905202737423279070550686420258550710538263332367627705938841135499453412397890953181901512162698826357600796900859446306976875702364209335981918953894414557201602850302004408908171845236570325429245259331543597705199219174283416430883797936814460006881011394367180103089001734832096457450726877385889527714779237392660181030978743288547900135541006750232464844539464444802872286380250520189605480709880470808460524024675381987046852667176782258564812090489765880369315463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23887639387454640262469778517892392554777071568925472952336085519183183403213204600430330391266542424776518759191781229968895117629285782357840669653277424749632497342155408888453427943696720600213208594692631376583663598628755638960752785292072831922094588073721764921706176228415853271797210515902998330611476903387464434336490342874059474083005799757126564858832492069524805665148549840794165721689987985572797861552589540323032837096102443558197488434238690136320592970391147660863071508346466148784634794940595281609113722117541031413930990728339630713739133172074911310356879276133497229086070871949465614669099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287907707736584409916118646250639721922134535528580640725379607793936026924437066546171257047883513567840604577673434961294220096706234775703397482051965710343143334928200613445123852570132653756636238853063079911247803170937789940693173663555154816536454441625577273250208579693020533791062475263727591476826260322025513835731362187440731252598027106295332095366018041498898709460461974871312944741661209207756761624523497406467195585506544681405330492419816972746836372344899086251075734986495129879302310371538022606922414517876724828866853139670223168092578016477434066177309663813400509249011333215106719170431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21456546095761385057165375736835466533828509172264553502412046176672796114402648041690441002665033917743663181045680757909644028049503212092768049268556203067761264333716080286523391166132295972216424741293731659348409577817218219205530801699491966003068087544588418324955051359167823392571160027100290051795072208859753666037293658915957240748994027964554529196826967837019284300358251681502875108171933667587093962064913816171509198653731789121174439597928960402317693276694296843270822688850215793996356703591845175608984485626441370111869421689602191940356505114392601729812255878713386388450041695664519218658647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20992598532236989026571896733217647085054397196811980197956536358714773015024179650972702263504742943409451253736821737238164297345852647443375090921434992671934544528615402901269366980891652406790510092142910024134318779439520050036356955265361242842599379149661888261874084985328405147189984519042998931945552776181829599323287171072383544237938069656261090493009663441617097090921635366294627849636048044844320302798895562247691044950403626909889956482792727290819446164629365064827623944976419370685637081663569486835037153178352011363485505390151764259477120011372760782514395496956923708382554762291125366400817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22318313596611464554686781637761117455852368145517290705835510341375375229292161046116027867222427101379710055562749177823825035557083568597840011613312261520570692667070286944275048871256118008441103561075515886127638096406042005961420233782700570361009444327288461548681535944962608920530893214040166418972364364357489307947787229916956303969786817009408180952175291849290498457431733525883118215438794371196530505760626965315004564098099055173621931453597661324388020844127069420568969796509558676568685499443059551575611677996000450375176369107245476962743920202217131544294704477331273423668163071819843781655129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16380315089310708978390795111129446024754490786734605905198122984499303799724818035180322772147560157219966499637819329675484988908022872217831028525695760784411197673856103995952321338561748319912212831166890811643492337241648359556160618593791587109950029187046878498260052238559180910607824117504380593474957737865779106135694542329084238532237515558803136905726670715554138352796475352952814298406909951970680071015743277557374042378568976501451980959069869111053556688767297557188368593921535255469419081541511379782479189923108802616596782930596948465776439574319033553562422598582837902111205013578054726996389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20158306659515882762217291032691412504743031093615913133460392477651335005989264190607743481993885808730946595719780363440498624471654452317357035813868198202164123731055698101420833187995556838974213039672379422988744773812886301858663163226499987009037745350188366398026312373795593966388515679765791096329143886487311934992835270856313456735311739371336584328108484445104443567484026799330871325088671040342036962404107220773946367222745876293199260300148735058065120529477017012141445975724712187597192027410414549672067494809026351227981492342537558042393824408716493854277221719833773906544614251336038239786251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290719069135189145211289457938785566911407182292353622615652034382557769377052448213169495732234617455931977827655067860351330868650880319578798595154871253826510215323900179430069471684675761431254146473655277322053681137937698572611109166212430693161723727307812983310701736391274658626300398717918805655302043872923871129290352862038793880532574247393713106662117525055107628680526944088513705318368093453611750324684828883785029189684990440858936611410058769004865031370769749502978048219042757690232239667774532447346756166191459223066677708330891689511695843846735621662854999930896564705239942695973994159893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23186191096644119160751715094890881594082066442757320075119083215524126949965607955760002343839799029116538505667097105047572827294982215120712762604962492696218750778061060352639398646488284835900906719446305311501889979334589421831191844303352512961012903510315298847549145321963662511648566362083041025397220353721005343779362909104566674586744959486409862685441251754646154432670722003235726938553266578653693433134454605663423596038572925228200512244909029947450650912183532667072797602183012438497557655103172948070629519632166613370124204536457013126067052416722379814874843922494124406519971863343616386254631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319162002465717968045632841463269661515121994049755359248113187221587768891758093228845711619075593503021934336642213134708985145322390830587009799731177048533299629494160344144884103728885597118605511895782446566780358196098558710350597935179431084010516241023785502047611550870783308225289297888708737846729076743367783567548082731329682635748203751981006685060324887171765858083553338654921995740944291670583667393191755568164734401893865057869468281469876379452814729487459399118241249326420014159279165868244308123062937579068848433594345377062202415352973687011784716191657804097437463537535177567190305369213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16613200816634062834626855601243508404016701119871193231291058073656775262478427658411298579671203951129139361821488944222194055505693423467966834510129918145434308272463796121470703992965067594291367611958103822297249278133775626381320217775515109144764946888113371408913502597777805144503267546921880779561772028008369934412127526591733355446440813542632908628897871803508373523962663105046312396442929042398543120301573476721991300936779720286668457906077485627050738607895072639572154412139068321484477742789462937831100710595184878665100997586121525957963622370802844421829757291624614773295599147906798732184389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16234735748731915977843833865741788608472273126520272404128522173219773186709792181832097545229049193212513506030882542032170859007638837458653697900230522928578078217463304100317762709386280998573530875330393257595122387476995445085205480506612457940402196588364810322244009552507943706511085146566090274072203199316445505229756023442962330616887431904054751419148704489168933850762505100283943697554991122129987832354938055832799865562371510206033340426223835485567550841108153878955428706177795158837937760755918463801296016725489479972981602014361079846122405353791160326026241974461835984848204665410542224023197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17242788888529858660520502317790702725218130198326161434332746809474374318557856284884616757895300684307221353393887428206803530521950131169484546070326153905460019666578797286577478200123035054242940786157853251253586246744024304881685374002344594074236143888366660620108545868225234159678292801563998781273316064802952814487373833219140793768685383753384088476001837356156710205415908118288968371498150823472191970914612401254575013857210989059641588013929728522033635522833303033235996091442014972700639680640595957496903473809214949101431098847885602231913225670855821452963089886815473514132966414437735027000699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16386985535191425370139670471608190610964809604783668119841696809224724504040315750065785928474670797496530018423300489141343296842800980791038577051875300278475933438125180092772566692054192435327593718315612556174495777237888670763923392655442915767992095274973504100117203257535427328583998579626334780188862376005398204687586842741501119801926976683554848962314632621137508315105452922922061696913086831205462749502190502455522816691991010571204858553969431024789061355677383240779921748955850196629358892411838982937956160825741558691778196391228481662405225748379430229048156949357789940081988257035862460405347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328715047429164068775070119292094049692559258728591569916383850974473572093392794532146319713451710166481195310565198382075450189175129245411923272003015590372203441816503336320979247933776449572662760337418346528541302711036964268736267019152225940038050329466458525210939917851067527704826957294207773228049022205399765452957619036155302088146743504645230886352612997607139078392468720888948646727921853795049100926838742510335508436755893913060606610774323234270167073904332454946033795454906745321035510200880547820688081533482248667594475155178125896251937551914996357437901101917427148012658503384272381880511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21570629538062080282629774836484913841800602366188893408740566622533014059054024827581499426622093259072099830092158781324409373018574927793139886731556025160270528040389151546382166459681554110126150107305455088647297481901447892349237793815036060872675514518309918894235760675894258908007045986015099469742526167250397341132277206778162098192455272617491317811684400880243885324829143573741207460933320662099048052527374974358260393908043096758451336785599998756364590622436062425845435078697084403168085230032728886410879420128573521622344769034461746619746587447904689602522456931530855897555289624231702946188793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267189225894501202447675465746057669470614981430163304179425028220407420040977957191013353327957197177914904875015202013599808458674808178570067121692289168292985561119664778588491535141988270350542453850730573595135177997458786913326228190999934680341882195152730595112564047693713470741553608646156247999999655358477834023086670574076677962080300211067102540009856175050854310862084530127456133048397747592896897873174040755116692874755480908560863522535253269799928666188139920291445456293299641662776679511042560670322901966985360034900244818725587976067730318414779060267619918285299928334315143068062472336123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325810697532475996149207928478618880729704844211844825534366173002500224993821400515693985538624974832662083569789505776514270769153308999249242326378134298599579331091104684079902250936728745794004905371030487752440570352843219855993943365293893874585481957112357372362184230582512390345574484999231243308325870791477000160405532053348098224870664830024804233845555678598785595612405018354047330446284523554161091519817780408383857268942951162711127237464786398594026848390992708950169128381905193742009400332174481223340657393125165908433478931487598081916400174979404728776047386640713806480298140320680975106463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21825837653049250033937731276216735738374953313530661334653593936421071582869162334528718249178620015741282735483627876842718287170084514471602596992882061038099187443080525034982281453313095839359036914753805745884618866790393075694907962441802270275034168335942615058058682587385879791707649262271240163963804751449236222976674737842142396724812935537163435378209465285448355079520586445235103080862349913977017708319371679974010952386903325961071710019795377940637525886124724142332047798245935760540348527618288843648773522058581653652883500441744633185689027265217602915269022741244222876467227976071500021479689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337216222313254302885271155617176693097055101381620734852576256815844580922518318715949991081572206551024908420516640310160082120209160664097290807655876760598169416115451538439970558213866260786411537153818693416367966474791214816359272592025460083959250073870960592715885014450598512512914565887920221814401665723635731987340900737483717250316690297367722206247119800682522208135393921238596132120214400043917129095624631669576904059061339598108918780949705540733028617685789483737393671344157395907354929865884211033810132970063613680697206377247028531378728614900753398608479521668047286213144900241558698867853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25627969956622789524242286598670136493201890441162206781368946407893902724938230608155730916356712761498082815531621853868711261143937857406216978433354715127950436018133847495173214797223730443169077162868882787243755358563993722006355122197969858871324419758958202770062273339059103204801087001806361264478162951908306624413462483946223002887408364405496638498888684343450719987465337530461887213599535516964911259457234501224000438232345035441289836701233527235035103959829486435410204429936245203855376430629752636612627095153134916246261225692624975591242459562372739931313031042557969794438968697200081939908021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20418228311494506282855161223077783096299164798965253537878713724996484673417377125921508713774308483830248401044560625745373295289160776153825934853037113309724667479305437643794149941438808867562567324463469429796600207469302646841005174236506702824513447244481228409496286467045967090123381560948507790286999424077190230694755689642449170957825436602619298386496984300909122997570257996605192243570944833743251108046764204594269473925058561135439334877170655386503712653500645200369305777550721161675279559197763351918503319636607578962055794884077174493967662057156154753220109485690258110019286425325875479297871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300298613276853098661706240818199783413668866447872229495129533539709958959890685206199649138092469223253235782589395622660821240798833475762387157130574099936387382503477496431522545746296228882180175917609518251975477104215680803650426666956657784594690265012053484596730260856840611672638577693410583803002251487395289369200766605756052003735267115742362646693668914221439582149274038682827179802286399115326461831092450963007773157010950763755582123596996500278073853918195695147080173683749920898163475572146713369789272907067224742301334491103869883986074060737024634359038650798824729051524524563631107899103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24622721777121533668321350849843444966269561806665153732525887108082500770297393445303895822862185328975178298644440135582294352147038022800384067737368294903818925391222652609887931893925349081090465678857067428449898037953567276201590087424645359132337318914886491776372548992489323539750867676538987873615467382034433124915834798593526458167054582800130144150117365452190977852810619669729513147185769435956350385169510822065832887514396979594008106824300880800036256205031160268390513071741891996746742561478530143092715186354379001633077928166274760602560906257586688051012060264184474364124046259255872443461771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17703432183409186144578901897484373638761761940706483519850602793297148778353106767243998339169139983675656161273392918646519393439641598400580068041615667183085224797822237773452404867167256387004793820897109021216497634632994121744348088170781882440692822508186660838801837527927090147541991812519946200410919540401349396822995920287374030672852159081363213072903403651207960088659204163809319971814312730005214226880304140221538324473204867481783720568520986947830014821038656625728248987500297566606722988023622497894238788617296083332367752941507778459092906460219568580243698555980814666612480001903435799978839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21469637195264780477128893631303433212526539435983889457900991301325135278604882100134529252671143570827492953418570327166530831785331338987864629506241335216679906255499053896428556082737760994437396352822643774936993910958858398606151320196671317620865466480815142900757090983259674518771744680147468005520970965380752426761879573918755594659705956131702234411989325132939725569293169574657512951778010205296396067528036697841136802157193295847752398664006994177359130577179327723927082829329344099556681140827912213963740322914285386863880974472363992129086235971390763091132900333985861574241383721235310285145379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25099323851596376073357293948502743336207712630342748419732504491887296789325837077930216057918827336138044859151718583765960188187032463070750738566138955640315083679824723819505976358717132730150780169337640099702216119499882913996285985073216778842804660265919895694792098017662391018709586791934370743721628475440460909476271335683545456366180611051761934350527500416962908769461172136241234403533827982029600861379363597986311378097433920824310568015935761661108740608739458727807421126592933372871625924796701222976321553299315025985454459295910780526770959070608625212792926521390342395725880321111862758227757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24361559781029456376607021405527620159160577170122585664494949153993378000351749993181213709478895609870536569236426631891824406189176971458138812457663345735463227741128500190847360435933347474149319746917893635243253696100042750262924410472234037343785900809186541998506497751670843338074033824392337059310229031344515841240761992139306795931967734296949061627173414559027711649790426017030361306021196052762162779685925026162774220334603915441638139745000379288725118330917249905486579139685708968455604958452762594949232608403869420484253869877273981630760825632238802656775776065129640348917131109262944855523683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24658371243931455679894957375984525256417357292544085291927571065988327275773728761744327688406012467248872703222532318778787012617389755056763399424372193673919277425123366756046708114816555523965843981501190063087995303555091110068059076223020136319643082869079124787367512010712333710889903607491959196990746092092442681927660483152705219287589646233738979647582259912891274759366406593784852361799839601948440541349705080029026020503179209524693756020979006114512033150974041560385232083248002609230311722615433842611608326313438032378039173917050601729766881375767770492606286498050019390808424402695089020369181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24424336390171134847890013141061489104878460247579339627984524051190321440184256952399077750555193911531086535352577449090902908999601518190634601724658596933991816422863562932159855840427646546411694442813448833771696538889162473586861066541228040646769491880678982333153899366681330082845967464145916743124544854109558629451526823668151038793207586708650697186511064499001665049365328924748488965420698407548955244167280907349625779918121049379765967716256347716386297849639212169077545193446227798221561528271206539402248340379516978833657842993992761475762713368856625219151170230617700982041891654570683365788467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25608704323135469772911559447758642004926105852235814244889173421780942197651983247256187467013122991224601247894095619354379013735653247973652507629768888584514860865891041076944996199519159272801539645981825414464363821816359053631097106171045081636099459666332281118233201690407334881871892910593600679944178186740785093146584416057669987720744642000141687322603334306945254644526661415073673233669497525426662836791143762182903177240018323721235093742254326257383453072621582979256155928366284715001961816793547107924340054135408480855618359921557471694799446136374748990009976179935737440977723953317535343310503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352901103677000674123485301904011742035536761471065709369014279436717709049537124225111342787015479805919150208454293201562583223198838996610516943027341370677866806332911043019549256482404879576135504104283715336898254815353207864730131742258550999968720514872086109182509178142753342380574535507502216845309908442548124832717035486465978962847712994966366080488508241240064306764355332578778157716182899119960545741379259055145050229229387075539988202573011691411712350594288617654569802070135097250287174091404117963371712587675914196863958850946413482406964972071096430178616279124944102446481438995061484872513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289963965373896839319208798834577602056389786584349503016187873126004957532776974790258092364977465287114315424725104594141644690301534546711590106759374753652793290852738453843406327320966792186703976868224625905353605748117597658369631048823035083465468936565583583511054343170489603215347635675889704920135831625756180600822230586902153725621770222875687096358250855242399421038690573905063123256101485592882935620901952873428177587394278242360308816654124712960115537412029759099046443959558219163448659940475914514370423209611099057053102616136746824618379254222224317720402782368914456935728643442912393895087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22005304491998801299648086508406782362821373327300313688124037513483400429454083750936122943912460926652157712412660738464316616507964049162169460655728239629698390301168465918317481714833520277966884934841132076240388004424828270736574671694330457115863934868385003534096483944273769000294173075503613183080902371874947451587894248514741497450543645334448656355825196384033395349534197669665436348744173081458632769281622137227204601518471782948790310393295288879207118435880387235461767476162208783482595226549978415794901491586218530876111021826328546403897332582768463926839203619408706031976749792113341116909233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19827329543975106588185982797587610732880175280772455981777551322171779851208620582148237079170523191104328579748752147526152376062121875653197229731487234208649183242403447157639338786118378661762698849395323494098177112734063127225816140009854354283525866510521531270704356866610370166458871553868527265855443795766057359436553945341984194744916667776639780799720633351731562280162874041775523333677774858771555500056319011808058566952247987302247070976850742521774836812732463268845862668064654118971294486721064482873842159619412317793058058242596137617294233054516073480659317350142631862404798862666166541084179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22405252444504160822238719792397428065816888167375668004397600662552053394390518111579172143548949649056199379288651309343412621586261354686087651326609618781616299602251682068722817909547974154184806887007932087164458563237461741388617966433935874455079297112875099590025769088609513090265091463670738859540364898838012802855673873800723629063186497573931358568007185947215944326049159761426042975745960708144570633576494734065689937211686262181504122272688244246915334006182335915017731951651503528425354844311672296255660996299724990777852072638345505118286439539630002989444547841438228709613065191003137628453153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19974881043706138231103632679502178833670137610253201982024450884023990321660368079780122674854868680196519260500595426116257801297388926145798908753090146903581138058878980933454183177453752585767011745770769332803777267086582061405349260700664416850656728646114288406884705089112059731275610113995214146761347709175396914283177331357692086703392432359168245838460717806925450765929187721838411826632183442811183032309098297582488100999958071048674700346064188554376334917774222267633589029363056916361976848814912070869889303129128465074988816571438749342162958261606065181448311344718195631592661185656065894024549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23441825708998499329225238842223191079142343648177597647837772099071100783343133825717740380949355682704813622668662664357583612232287015005648267652269392180685272046595168814888996768052867220002414457699425243487837262161079213733410895493881852142950847164042358716736646197156377372860816363500928808185481088687822326851285527160582606292741839932304969882979725237495593459988544080497616290952401223655136864650284198819608790519888133562973203117161251742918701890948761862352678298432631894091294736994527146512587802537330125319723957994646496846330317530726008577133799329891663112025824942256542949802479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26294080964083524745476869559258028202222918739403572972618711252031940539492159297992525602262940801151441908509228531569261634430459555401037534640316165906169177640025098352386287284851364188249029982833544229808140811574010844747717094080508071382969662799817529500561522408100511237592928405716833172724893821286093268110477376569602882227153249213516554985914703464280585197514786870977901789127249482836468714741996161403903095717804659333073687126827149495798104458467654931510911500868483249808852743436721005650630842902279545171194514659543092469121365594616867703313489489404861542805509371374014461198059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18821541936112833484754526855459544507509430189558665032194249748966436149273618917837845634573707966811245062377097021623994207406516975386028697284794400689223184422346957169822568684630265099719188322560942296957916718732274354634743386887271284051440261631981060947155459776832119909799962113059922141001822483640452540045390367630234186248681705516456987489952949400954886766626607352015970511929027298435796576371426455187839783497022049358120157672716347950912145538463531964790296145188623029434738979908622215890623629354671536628315109842462638591817561148232075645392139009150698585971978297271435590499877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17575253633259023465314464163717467837343844734918444192271665985564461644713517292344378857394350665262163001225929103096853712829844307127003871365447212519598852556953552040694217022712603621142346317295385942363304732418001880713662351390734358270944699155639230050616437870156507461555581368618959457289561164373344400104582728243765990860768455062863751111633071809103032451585872123233229500861684738733959745252907955002278787699958849196266117586710234372005441366250918769640554835331532563689498277250414172302186014699528905391860323178173085645334490165440199692311311857736766114373081768976287931480321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311987523348618093578309716834034018841904322039571680318064599064837941622045563214986176631132817901126797974312461277515932805455550283370635909647345491205960142706970823279426527485450856686232151084776469640757468700837933191867159652441666050435670837435059603690088513046727086084858282793748178165322404846230013898576088659382392796777510145381255604596685577941693503225766016832329922263222466461850860537821763260587652251390121567513633918732827472857897964836939945677086967730155741693169051833491756372754540630401946516279778075118649083661755395661901262135450041324693614356911478739026704123793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18734775964884987326100613735497584051745134477457206045816640624900939217368968360024371084264313096097291265973040950443390746188513148279118223684861594679260521056577396338377344131983378287279962293969828120494746784297779845264521047561187159160109485031431958447147300175459490215505123798029027943167322688527585733941468948564738171998109942777084731838561715440533184503104375967962293513042919670176891132748549459569123038702871658928505915541621701585217413138162069798631663452299414375222464576292461063568654084084321123941192963728208364346927058932284411942591966196896617319292533621146504276971251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367903187173286701027303066980118487483734672417812701596570296505767893676961180693509046149566328240069525106175471875572072335594092535754166807924838281786372428757452215898266563512932391467241343032137899623999383015879004096157883392805549933882266578076496827520760877323505552929580271375465181886424396477759676756341927252093433879767685229145503611585461511571506953943290886404234401073942770024043285891382130552743588341830568911397755064964207699336408584508371676164962497122848944020384662425719237250468197269939672889777117401958024171936334883429028897623182827813567523682727422422743856842787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24964431244209486377084997614320904306613334174823661826598054158698725004391357886994489825364171439553417997201893985267912145438748625445394601126013748907702082000983974865071652646815320772934052896542834648619770132972304590554924082211302090477028205173513545688459600244747983399092174983300193406345285354470207994569441775010240700349997701686916801520725116143893968241471198817301090367315318685488881242764457382541139751670523591702020311720314046087044931248404047628279645641349379465691581680101567568922521813516720792164225889490902398086228086962088714212557791981289226575948250003235434876295011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16721270641840874573406626685024707523186475953036692190089068498578808528264751041242885868352591606342716819162065630488342452556214280908377506292665580611402434093990770284431711181187630610128135849732212207721713368637456380803510994143785166469865219758344700600581667770083385274761692241056141989834763523528588484944013043945155360885595694289691757133498621716934266321292333304183778553753169153172503422965773984700495424121683058105925639860626032538882929997361626871206546483709276542791734150304158711120250100220105007707393123477257512667200090649558943569085973077958846007879260965917157722493021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17144665603211372412740333173343913634824991007857019487298820086337729056576642165029951483472678671935958135091586063697729499447993637984466151916199951050977795905429074489250012769303138466303025682567736385172771527397190052535628753921250708624632468454424521865143776007326526891554487081879630626789729447330744927711452546975865889771189630909138287606176506371381726659055763715753903094559666852959825046156105249056357177274233865296209119461508481027319929262427773879063078461082399545483140797099869789606199844356626201912502700222518818688472217352704780683830338588276255230436419961049589862675481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21927070942824228830450331842977624377070629344737862194397566343467586751256281924349450879650874959827117819459646294195214342419259385179137911096398469402741006088609779216804768207413667337692788240458526846583668079516303769380254462153632969293600774206627992630445616477185257692672169568631549709352990822584879219025782671096190695276263040614071640725443874946059091105802763235850246572218378337180056625876670347988291839751221059826929138864271482958101316241667458132430763635507494490573522451463365557228276001194678212790044978892525298011921268843852224641555013226989002152346528878188334270691983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29995382411632099301370236449793614107833053106820554869053156987870174917559700223329199969357512811905255940587519352487248820616385043420483095883453207232544066838830757852234860433196123214454590562624550716406177077129058577742979090573037759831328605700283573206166136625143015143195760311444015909921153848191243983360603074226405596548913726156267068640963981619339517064796777098250641595549600552430212006708154249296375326568289328266090493202539215706432325009834700421776573622348141730224162169952237290824215808445055095105970019933064063236951853697038655593647838669455803997173140418736087639029749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279265348182976287690169673114759801561951978871020035219130755737784488240884486714828451943842203275311579282325824625173811791293920612257815746682123176469725029507017104683239880021019845593263141753905285665028291731389935142161962406561096106726457160434725259565044983522807309352946583158070941262021958866490674145504229482560700244628496836764371669274607213863518661088629698642355981043315879751460834251753529697230100158170899597721013607724785075125808801168072812166420724941067655367375649003227397581126912065754483755418656938522034879709529359878337304454415670874403959549243801640648287052603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17108208706675380279890195377161435240324370511906997580255550915477245328901325700883332736986241454549261404957183498708576242043670122581363777834138975985218470882671861224108841008622825960895601459731758144341792489846138805710797453008546399445019845751262960214594661706181302923395003676694374091026678058451191106756316515139424407195395484528406877822005623113643743196366160663949513254592180787138984733419644280025687034180988863359196610249603266413626003416951157416374325135492631853318422289032492635899834158383047453296484851313773332360965216543222094692808168861844707166400267821417950605410939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23025452807845264527396319925656074870002962157258021143349924116464549591485874993841299830380079506430674831761032923525877539968374924539534181658577061415558896695502206411999761940905683655654295322493020849854920200692519324832869164643154553991138280171261295854984061874121833004508670162446695404210177968035240929527575623182133832482793638560035100051975462303874013340580227756249012628341184842295612023970309907329126368402984245943185903054643425622533566454509525093993320995846636190072814080476279746404522299480866836886027790474918946976617019921273512599708595955381197590143702029619223373953209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283766580584884328845940021949988584454729406093403764375616002203567527935413803047656713397251950074029828053017293412064318936654097350710332416411233788587074199585633478241307450469512496028801721865368286123341384628109352963197947307662414105552669652663246023385412472303905460998201932437052552687420359586086430339337839902340445743726169879010943626405347060569023583296555813758478670798490717780229189927151083880708575929426375529038949458656200858185344945974059883485267174661411233086041928061222856321881247685855481822050685911995938781965099703153203199762071473948409484584799109890655474541499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323626757539986626825440523580808824563819922553020003069847522680612694310318479137357436224552396091247712326794111823886777080860210798612629661075303198009154978147146767742711287139029953090303114365944080975398760095700544515537650745090322363999313606344594495429332503724210890432732673337696657714498594848287847418077298942705849545345738416060715450284849752554154073255715656911767942241396476227910514769399929705914868245308918135064763907906717485991933531447816757577007097932556922456925873008491835963140381385115897456954586515070467299679997405767494248214517549107254782836466339235318947410909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26309108120209471370373150816795310314964938061823199562890947577486961229686545474484929896102030650685785901021098133379108922886893430230066047271366212323707188754996380952168592563173551277418746524377958578748887852948544989022621068002254999426620669060673589471624869159703275767538590245768567248536351237063840272883386477989510000126988021573229068972758304911133196035282114515176618099032050591419009289657123458979472648541283403610461972844298642903625269648317104518293660420708014461045084214427203620588525879114492890872836540360667928079798235034433411923685044042167164206528263485036291831012533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19005714377293028256798460302832245233109775979711550225054604970630851903860475523350837836191424381143171377753203184853638310785843023188221071567483220003833975705448802285446505894295339639948904756869785142771919700948369171933739127752829540444687860836509096226860568344103284546811026089731623439431473405565339000969057464844487036733214014673204842861247532586562029507008645999972957431239098948171095447001031672207060898930802323255315971675585325744525028022070679422258856043682205737813740064353266276448354207737401392457574813110938403189967675004065203002644041972578323089725801631789994340596933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17190761805671590058799815101337805742466282248471959144849347853194455020333672869149844582574900258934068510833678021219254247326308627308996481765222177211957222756785893272071893465340526427858722252632135289723821967864060921210667193169285357240721701101957932468949758937680383871589294823805322420222892138043350408467925775552017355116460225166077437986642285474748763830306487548280634292869296298985622522322530703686541772020336496129384981227318433376179834226738315725786703357096667369568132287774293130005849199201508286058526308570734028692951575024760020264444853799753629136363149952224344562857787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314472419111384051835710364652758324742830736065786809023742207436094288176312995856936056008880183457458522823914413366514328150556935308089838455437359339011574717169914596427342136607601984894000866757952124666973526228040415007352835976382434797509599716655977955270449469101721531174623045527055041992065472552020285824329510729004164442156952660587928233345347492146715371344945562553967841710958727700341150034957240958981891306753940682765047984289846005225220382685022707522043874633595953743457705731459551267243579650194497634871642977588409647025627729445488809057730578907589461854731411291932207030997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328420996337461067286118220905272092795643512982528650358367644147834638107146760573891950459765003953972179112949201551823985834838330021217471227473092133076591986443598681045302394910578011204819506723279846637452967788468976572323494792006059567563261422134790423676515266023106017675038769838540707242530555436739291435027969721556139418701777619614558433911367288577566037106271378886222407949521474053524348114226458663473515306415554356930093605342416332765230695821592115835277037847507744008901229786097931473777784081143830895194774225205975076038885613682855921572889980752587603902025310554427948590137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19597093274372602136017101608710173331864348474105189304751039392246246568853899827338987770461932319547633011388502523418378926036305420916941602835584825501323714332153080185012396383614087316296197474311658466479897220855899138961885318373111157933838699986574291141489093633762056615198123260981116882513173166940808304734475976084754281717572788888482931326016424293954765414271353516477670197880939143874825585544685928105037539549701504291990006912220103926039624669081255396714355581862946749506233464008308749089823919122616840857366721136319259545649155987183727306496714286807111715581266771514045985853511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22148067379812820726301949806923805688874022015989808415966591500619230492413594081710527617344673980112467509127849453902719488173567099935386458123324140614747669518535855645640522953422755076838158622556906604596198839083856064266294581528290421709300736509786285598871646417087313589416340298472294878801169657819771820420056870364045719893452306951017994924043304597035063016912230917203366396287291507148768195490380114657072117706681484365073039919438641275527286504930416771480756952808565464902428468571921674844941358248852786230100836505168361123295784754425961231691569981594707530895413730483401459469441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18264918665840356402724012645000867501839184783502313768224560054200784072929438628584552888338154910059032796781094572438989607852279963879350160043953671544831316901887043597895682699388060027028892261176744922593802200028496959934390508653511642370645436843858593849606396573621011897381942620627149406129855347755708172268608452501593723645284756835829951836832159040483421989223266124575037996462504080804863590610968833198489265770076007274578616198119496421386114439624461638532230215518237367075373041384362199513689850688202748563533425025107825969934379100205540632012490905404519155139737214294860737015651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16307925030702167708615823068795270664276210094925110239583836234805036308467350025123945130571116236955274115173777081631684550840426126899018465581177650188074871966770858463458373209151178087590864201209851241164488052775727757142708611496261939970099544809759352333351144141811483796039310878293009055226266695271192700629063664850971396453221806554221430579072100391782274408648715041604477131684132427248341433771169268776654570532064647879739080561212392578697761090724331841175340982734549217351454161931948422815291990752064559510552456984543787559044005482457305564284925522542915477719195083945596004422101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27661438717009248013013251670380001578615015218986904820675253117806425654348451552296907298898419023630972167891061906210274364386748246685976794534060135783045741602691419534020475801058058466879349685350680238058559319050721544179680774554443835820610582734342795089247934450916589079696503160121620797615926876475682150697100200443288167570013101154883193796805587256741766101479996873359649838758318209608287916294392592118886432306351054333367949012631760468224854674350411890621587413542360514770827083977544324014833522047122931554976625239194481901619995576468870515151286728271989352244371924842205054833527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18950584854316470721307643156391977881697372826794381417683834530132559134116896533565708704882056062313050965287746349474705521005828491573114971643379258148464502101706632540717244152305817819469377963815286948761385072466135180779896181558866249649578964808846246567488943381370988317974652495778632095287308710016970806786475845014066126461721121864374121867456471155766731969559580294393606591534125874551829858898087327034053061374680974579775592060794232934807246323544799303563579547963790086539518332245365659998412926051262332647015027848928493878741704957369540948049140860356464340648134170231332207352751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337842636836388414533301824379410433844063975128319243137505821762388213144831357660973570127444157422833122619312575873427583896611074640904748113146176172870023337421352173907142890555948594841959555035915644726975287710487377749452230588465170848305686258402685188915544480043481666342085800941838885180411758589821893691222623277103593613760234951483969375184154408586386286872058589384248317055016937766364233708250336392557792640831792091968684476662849784094483182313364016586216554800343476247595681851715868468903864942652020736012922038151458883103574747542725666661317855534095260431836403309185928532919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255567230258346427268276474716289360498891558350324404420022614150924924568031279029729939256524775470225353956570592279109023677357512984474536834989342402993877304176919697280086468166963618637138507047857415431643749725484425802737281309390257189974494911900996518201260172344732441506160533370303926772172522730430827240584633493588240365351548360407165029701636291222031318723901715478877147764543440239105965011800970695283613674555528307658675932300827488756895002920807994982562573806752498863985245557760921336835981629585347311120431172402955060553826406528337257336230640997029458930198764955084808166693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25369746225845036561680001043662178960014207770638137825838475141103873015764750977155936103803338990692322705142993067369510864475970528073395997926685416691219582050506287966334769933267052965947216256413813281276108876047769593570434221424280432296345074879685365671764762795475456100441906152267034700750799984019212328846501327186664247749341922474636829049397388811315913954289491396086976111041043437149086100561682283824989004079798618182283982403824631925245619407637208989831986410251775512938834860060905550093174822142362907076594173617720251737384762517093497841029192690713766675201163911932579573212979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17888339712249873825548421857006618897876088271761048516002996123105661747310003881736706452768523141119812692472103732936095182945191249749197566223141160339744363689269147853241660532950270344655146685685479344878062194085426429337337448888501180593626475657819671668349164626761189937919901350918167712886255589422342050519023961105140749249959737060286080107407158695270363234631344981796011385725827762477692558765703944646328093199587069866044211990092547133872651290403026259946644474509596636706280942222876882267539721902901155863325500979877991392715864206473076638262627257169235480281063439979746655391259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316001760389181560456671699222414792631957718354750576333494873297209845549634600935741269769816808871594112061749923140412038500568614819230746423626459713301285177097101670662009835420030744434580997912194963010198976885770658484832815758080920427259636512789772563122475228403165301939489573094040628590790635664138493394019945645094198158033310375004235480637110699451867551616704489530499301707012874949520246207822845052720918069082818243195789033837778652433321261813287262660803237678037822007292656918502717444733178132280307836133010956383789799399526736171766556434323625202931172662708828159302619749899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16218758729969029695866195719972588847120287098800627463088062928928213937594860513659912214721747959264973700813397016031884214138355558589757985788067926231830447904896011515434267991812176739637354843371015867633072321260333045797966691161478087458545084332214239718235062823628710093322189652208552087926254689690928241143299303352989256992811675976851584605969131057271508343196946167068427798936092067327174289911715181761901624051856616607226604886658315810618992405417517602235810298875921755520258166586587981916163850754983700039340962962000843249863775496621542797821969613237375851911034647422575760260257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19236343175335892806808807323458823210534926822629188047148909313499655140591269719488097378604196467889835608768209286588032664218562590346358593259415385833918541194548741067160791538382253998995807812692704272245066641576432122739692760019063254652358581361294252425586299519895115050913595445069424591341150083347913481976034375806412604591911545367727922702164763010368904971734171623098681660707499498066276512509934788134715936105460727746861448682748155916792157383001517451655215293970541107515140234753489999473796417192684190749110630845519940898270176001011033247028824929122682581314806527530731975743513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31490085556257569338985111234666958185538962062289597973502047822765982715533702616431291505715327830946859912095240373998857600531190866299413840937130707972080757192331192582755799021975001548483578762130854124478094085556656016119415021435405371665735284280855529401646819699832971594213377274475834713812813314916848457638346974700968531031145539070504837247864014008439147487215557135179791322779090007860800144766118658960682187117439904890321703673734697433386241704670569981004708722232128751216237280794205890792265137701793552800190672883316619811497027641526221726887075812545541361079144207142704748405463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16231237494117919544711336956621170986964357942894178983010443340213838188737222272989685014732645212984516155384641902831789380185037712129255071146895195927319622425333554102486680899064673338502562545273760564824904462140233112837822700756202875500394186511462993659446996774117436207465163039573728784733994743369123761792919276714563671040488726835521638149084434966483344906359083426162551501288754742263358000425647826925986149405406000452057733548309317132963119356753644996841743946410512161830767080520732984014209559230671426434134296505796902004893989711832124812635235935092390796344828209666779056218237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316306233906421210518755174537991239800070629727750842063931270755935786203964282500980405833939733904168069460217677908079278846506737846166803142341003486678683727482463996799740991731255315918924153164011663968572177448219995159048392727597547038475423721131880780041075123218980734779928391939809267334542471467444337475444849343011732375564280339982280833450962232403587923338917242496192699707459058862730418178767676506946922172713596281908093352092121177348944435033363560651766500736306946061927532171237210373521996496127591722143802682649756329051252095523051670174046920548097824015244545882767330675861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26327959614624551824715320260267490510176137160365925535022887807969154622154544598471452480001075012654908618245062657836563479532089073071485256711243632646250070908514156812569088183217811435106969673861071839825840910810087158696366213773207215725322924186593461688373576486200350049857209298058793957539038934352964792904973914629592340541547174387295377585150604046429249014871939990447335234060785542125483374335238478910795896088001797781580516741405950278135319377349797188064327504144941605517656023277211428319014332890214883084689112620761539676517397237451347164496820863046074787753797428671642644501353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16344825139711739200921226805335890336958480655351069338877564146692042679789602375956271746386800495727606236282357516465590604509926125275378946544910736929849805212947067988359554509304895903356728715057274091879222292841367294461669496759670726057834289387194853961885942791347941214952091814983168945418205959331275438943820702796058105871136996680611947222905179910686841377476802359727231699510537056570987089626021467423800294268233677031251701570366996052232162710276881762479988783704887053998318243373237459290961404565331818506175180115203546351639302018876524152215822619488498638029966432242550659554353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305613512944673113471904747487529889623688324648213098122195884112086542618165340057527819250669077455251300483934176089551958050809192879822464898902911621957888520489512966038279692322858657217642828817911844681863620520305394389112963290815860984259741139907958469779563334357198126191985079431462421328978328273476073860448981871892068160791070257588518726998413016352239471674118459372033525960466529374691210842091279996001933860258972921878212487474773246746517911869239807012120390531234963527486047418610485911721944669085340698018351684721051240045289887088984270698337562157563902667974992243671270852331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299927995455935563037817523616027597685948556724341634062401277726568794454386720575971289514313899802042547997195479431425941784885002538778780628765708498336173646237192878492046141253576849147518869117452801156297676019000299107370128795620733629453717774241809763893514825464430437808889464996568877301594029265505907923962083590050132325781437283986510533857902636164245386632849865114671753810750804206739820593480487849447161240777058597111420679743175953730509859944844952816863919888691191902575283111384230926719874625661463301512564163886328952000911311129489652188700947261232831573153358062802394961611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16308349457847341268634974022485070939570844334495304253821579344730472873758305241677279996454001056385235248675016208271844551994591104850407028845459622921710371507745507286448004209179406676478925288453822388230927202844456589184140098636168993389157767888459825555228073551038607835848943241634474852948927370791459975960023065843352970730943354161193395274588811530899200721435186279803078554428740598197084236684941895850463033309955550229215992698464938653222681796563821764473185883026956473187236722665464760082104045892311573468604646111941839091774723912448934695572129340046778108965182890704796537198923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294264413093474304630725959825538542125141009594001691513411864127802069177430253495392587922008155149724657705780885814555839114863597023977511787598598026250967515018585847660455132125585889859059593858835456976744136578523002641197125440074244333015212893223000878707583542413870410808675955242702491950910423052807808905175263441630707307804386649978210119940030260057971577054923554780746562084337574214926099670379377897233244558249125153134265844772043509892806886280907767870964770335796552932920218609695477345613783553159876316872877186226751297247160084868034741096357923058753153180970551153061849945531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16617896656339784553131685221879239706349356136358599865561937304893920439617502622677608331428515012716978656909972869123674334859592134177197903810757924057608925354796962589438900121525966272027815413335534471746882351589465204491698686406645501929946863813385628452459264112028336039679780309107210961743343079048467805720117468702953341081530838602427115285011352386789536568700989633132426391100769280057112601866373686936901254175548972858121161517576659853885196752971123969189381054144436823154991190324644670722444648951561054943091928075833923593736781465432242817514120286917689780249609334229960892906883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21101793559412142534943959466941283473387737531360972466752920795081007565028613130508704417910284673598040666318481797432798684215899898488394876441526681586456769270224348699133923896135533316574546350972514003039984922861996500931795082174886474079087103801216861639345104420174886255778879432031031664797074929824690176537355019290403268440306193097735068105876483678532627544711684978159854315429622422126880243035529452388259844980098645016706488138263386764224142202554819357410306424583211918443651633113368604601161272647902911942746765118213567971411152515175291927608467520279414498085176839418052980097587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281388969020210493275583726925949310590344698240386500211913393498233991312380930790336254932326188575008604779602682282844098328369648243766311436157958976556421406996335316209055546019164613495571232905205377136267537667761246398092515920647689984241133829722867078490954404517789175238941520230630643035814578519238988792380001349455956157192310296970993221405080341195937260728187841921260969139832142633564268920086316046688111643698909865610821895801942381289406188451183600178804956775067178516706637074066682094227349457735717705068866981123723976748814392181998135654575576290680422513145621556891487501543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18175068345525381676965144554547743082010192660336679748404788577939061692644697532405969152602164097499503315950173851597385415105320339558224048528965837407530251609464169188026361974515878575343747714559933430990595359552323426146291463109740579775182834525562722460846901801477863455619683034890506696347647938122548143681424883009851121944149019002241243729470946375465464944107975207503197894250547406250693586611278239065183442518151521099488711785365997449651176455965036032672634568776956490163914890314722862074975913511896055323612330797779937528854807494894033279557190226801413515435080735813647048184691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16262038087232390635487176833601605752907026487054360803324080376416791171246073374697710881356948880539730489734262467751828358084389924202492194966481621910998076399951744446598123235023131027345860635029469507659634100221924138544400886913114969269657556764030871681336798705803256418284382957074922159952626340624327609479734916938323209520553342087657097474840466432177009614331609079610165563978974933472564349929904158443204113183997080211428898051661114830504452284289730178726671002900491881051667873425251085485273502952172433689340820254539102810414978919542470333477374907634791643767017796376241319051443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20103473262237857585202486056287166059928611075553362968474080792390915756878209333211719944934201346356315569612773133954597135638472181851427330262251809758691171406913206772964111901578443497065025366236400321334081884269684511272813405342556274680945229034786955110797134834608667698759776888373741955788346239331649535278689471150377807996196525008731144003184372745187024321389116030207706752187507960380134919146642848366733275095933287087304744444020854049333031638382923292956569946556422175864237097938064498349575191036739113242198470808596279233803519734777858546066124110352550657742523510938414808021549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28590489339998554768827279823326598539456648706169819705747301425292652491341532336874944400948630645597853836658307475377247897404116847590693717172225166616737331529522161989098972520771908769218283023332828333981015782313273696558419683805232213134510780455219635138701562841914630461288420232495904283089545829786946297929092008641249859389620715247728742510957985041793830523323540665038802748439136921123790936129094030850663588409916805191931656035531173983612677761424581197526579012089900114464847372568640860160874139110902081300801064078875771975963575426910774383401271397906747978038250070871947074959091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22143072838317627088360498387336076723094406464829130930023849170323200404413053563294180593918674381330799901834926988692079207219334713732167612103574830030669026405545271638034535393054269061367407705506632014769506165965458396701597660705033993682915554054647553278018616146881611805585390463453477739311264501421390749711135979949503239486918116262506442043103515900866373278901953687948026095033991644138322791318812123653123190726964764431578476256431420716156205619605963100092267728206200381155030707622442904055253199403816671359713748209497083017148046048918850611453279353532404496128998174433818368992399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19553856262348590575605443943206124898662868366027848137713141114174407856469354101768501564502287269132927591670175313539639263255889700456586053985065732968829359127057954502587451874322544718111317987824162304752347302487464308591692112313900461025421750402321471242525292819265179842092580573523936272809193324318613194277668126712441219224718357651573199308792093411364423972316869763433478726272283021885435496143354890483664243699020188074999148278311323340016025568991746581607068503712742142034711814590893239580204385151789937545478607646424957529569043132344289397271815132822130720710474432865700039143111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28189057906957937887630379153703039950846410740298677310019058350639035832821271807583471219654188950105443543045555409195608525637072341266718645696169441432781868141709168275246307845675623486502418068161231792046095646686932835367061057208585592686975052049916378849526075353026788213347540828045160751688546646287307342665664993283168333904914521574078441984073776213584078299583966720118416763911017573762335583733933019219499325259089938642593053222268262035074390624879231599348595938405092802358061884092132166803633775822274486563674254794902522264536867708028096287161993306796632988985007926854768441178191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25037986211132399055110639923592939453270816537388993372799290140336880633222733859093684012581995727940009826029063910541767020898743802270499479553991627599858008673207720856692571326868300010884549190016196754587139187765015308861368293358975510539723160274554204068422673917612460818994437605151045801297662996485808114574909449602944769044601142562359834218632866358192282539147086827800488588097840007618055412972374741748831705283511510738762875582296350387826349557414417840288022840810417348320751173193148852537829670067862426641377050002180161410187293680973517670614301171072794473305631792082979087095389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27659056233144552706816114952849772449525683943085617476229537537173160448565245362442094557843028766447217132815299487172163058771100450416960169295920367000152342601611138103680454268279851333913938211502926211644446532475605200809123118125852521981820233658337357989620836145785661151102543833907947138430545392485781033882084192612050937821676507882459418630148798369138603742405820831091378618338472794299909830651953647490256365276001765386930191308525240401725091064101070236826858714499428348655999210273208171854879278195047661827649341753828449966500300891583997289732121746139400018544152360709809570518727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23881710528670074598562243150002753255020968034808525644377475777470214003418191464659892454145506635382739542419005283636937142296889287099292488402834379462652437127496462511775304364718932579656333612193031742038237760838804946281154052333422909305905886411878275997714687945014717909959199327327402185195619846078712406437586708254729252890643314544222484505713022613528141255937123831304652147819748365254896647282816690590587117679391059643512358047416654409555344986402675324256610680826937550732915872297126384615815869039074970502741399989698207241047746334893720389094939123676851506836918938196156072387199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25958076856704242923242269174128633604630899953443269602674917821852351178751458616132663394933839820245399329245039258604990960377142286276531066158012744636479672547022940307150404410733917428811797770928397440949903042268877977220209389342271668770353843739473303131483314158323069118162902115774910799181692868034490369087182096290344657131472290713438747355760690571730147976827557955308980629993949805771242669927954761011944513693953151471717107535893471012032947558795102280533882289149728616461473983022982434090435629791747474390429292828606002181770109604767654833142890502139093089289955038411023798284433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22546558134689140061585371991081461621060039246849589037415164234643969517755677421712533658088414086254128062289423032901619399126631904695712457883172091903604323108059694885117981210548594699444134150664915432384469490418386676826120201942821791705678830128926056786550177653879038640280246942613731084203135665509723594705767784384793824380032921145001832501341724122176668431324107773188679918127667719723535795260103754853044311601001239605761098879866812644770608400752293568867060185684111092681438789591570095137179427803763973353301096615481429503699136788650908319454634410786411193740015395362935097420959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22862133967644115919088737942024170111343296021080023784579298002849598859459982545167046497386004555165402586388730472131232200938194117729873046712587781912039013475057805337592425539861325150706677030908883590498791938231098791370292111086519013898623863480464395060112420180002388268181587217933247451933341659340452457345305823245298530071126229349481278837716239985581955394003758619407597909745817636025237448396763439383060729436405340248733664701340450904457367963954938791423653865212643057029331315447024803055852522169917012420600246551424275191305474046375536959753658990219654047482253350140020904620081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25654240638523487829321973294377352629182416016807962055466065050141472120000399319204970633491850920941875787102699294163529486714267197639053151643748095594696435266618010532566720799387466978887143718754916898437053444408689182840172912012065238202155341394666263177862936268135239250384014562071944327698243300961715800047161591238343493964984221849028264078523127889515755085649275496290123449899152045748297022695141247561676829188265342480294238762756879640217214534209890468234037749566664474870774072736745563492043837756263139304857320887515208544500061725029969084515090626820574982971167174083398078421561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30073206493757011604844088744712914839255169165409822135561089387276058598961443342945238745275738113554121059847390077124154643326425718969011218365899197308218521145803642906692172710455334564290330007165593071151057692542031260009076778461456155979256853900088377523833098120528914091680570173119840736877144089887884863827711939557108517291564011942622458740556891723768328100249326035677806083669940959545537636897753109857400656787583530135812221745186639117847472697656928481949031067389703655125220057431113973905790184809346704672422727127801484975097045877865880230475500627232456806829377684648861057444313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27134100359633654676501540203459942096818719240442081774530274083332524450652318260771438442856643491835356589638520994930281537953799046545868648260663638645639000260064862061101260509610509387535728927940885531689144013121837578055787262465306550751571193510336364476672295209201400652574979396832662824767013390245986582793954168868566441785579909071749153020537918670495063701036947776688664986383473536261285430949360328622984020281773684811909849027441141423990953273237179332011217685374240454375774989373028160321779874017882093112765805126333332549165700048723923169358443330690179040786576998400464622315939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23493992662873912789124010715188879994904055848345040922484502860823323218802721527667752920769691992313458800506304505757181652054152790452111465389586718544307119561155906474751102854319865196764475765668626734511793632059431880063223475407396761993445614319043105420741825396897588542912877679885560245847761452340087634280320947226263624312264328019522475435756987845326545543605437223507355086216318042545890982390768821935967231705927736535320519578306432291273153140234074965610507082437633270686292454625855166422570011239775009871726507285985835936617535638986695683789954470010175555158479746316911073131789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31514200359678993693910459718697079728578052067239582761288348872126970279034024100270354795019124471606317204287162665572178060140438219336486565618581160549629015592462588161475575181196634076758474395247895759503985642715063406083803775185800167223130226434653865016741204512384525354160252377692448351722366584374598189247415041119403155373426663655445100577693916078490996280255209923341454737501529630628292359509262474850811186583181879300263127890929105081354277607439832748897344802839296172433351300643253096618572660730844495537416304055647244278122378965697780536691736969880085190508760954773982790226837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324529656617638459195668137954578714827888374132331546602158825009704361006386948044228796808813251985749479451261275491980293585683635965571200117806664444562797194024855320080637438408112500327573896199855960626801935720083195218513673736709511931312632430614492571851593318442072187165745338084109969848164956408900570619475826692471625991513301013344687168153544012877905876666238620735184166043749105468318875932767222965262741624573544503385727737069453347362086677538608990733630624998325993457262623443478976028270801749398166370664865188319083303377919276809605200058208957883126382060317548636815863360117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294797891079591088547065855456509858002902738148963854638249246988073433833375790017063963862632211634402694022968634391302789490049318336347012076932446896908803526916195571450155944783740301755658241460530975674412278823502924774392555727802032340744240767129410429117065564411920442103940515243528374315963852867386396883144323841406374167178049903147490043566403932996348245564659358400058878176001126394421290861367279927502459925874466390847724423661346259084606390760972529999091929113460708989220104025702639327835750098879850732182633731325672610906755746720371972556245401934595720577070726843124743398447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16307887702465197449454880671629875025827649187840212291477417545524661062575338868663065880699902023223497403815218928391317470290848290873155253322123437094590640157205917738897421869814957666035164805070603223778003361576566195889139072098606441355390659729519593400478977474124408187518892569176756366725478797419237723531437306114024319160296773797522202998494013552774655782282527151696334315767661632896768158856879837324628921394776796836451966791356190022949164565425465291025782812886160875685312615638839888536436139655284693596591615643829030750089495391759894937937361494268679134114247135900215214945097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19210684461463455554001130508858357565361236880901548593575915161423046189644375988496739847796120794615415615299710387685411850025803596973824404558263050233355221126216881384476043799602814850057012277997009608413243953635919747242772335019016843834184955478547953619194537504913036897363320600617352027416497508347955307209538244826444434884979541213892008292509464511841111531930293353329580114798932901396377436111807454456335459533213780218744601448063834241640617306785710241358862804119997045147776476969610388670113089447093635959120036512180212978520920086420018371081458820928366666147568023545858114378919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275578707303299091292011096632961766144380116985635676358684370909132487195438414321065157089408589434913608206883039532789710103094984976137338222941657998748970688833360812062806685489063304344562124177292595195901287758946812704274726252521441119596692128024330633392834752988438364705796925469030126155005365325713369742191074706104456617650227656114411033726638714261883943830310974414963135478114237741169908474695573242613695781908094472764166189162373344332405442115383212858417837515082152546127297112042973395232658444662876590308641347543587002271130648902916193049588660045386998253189637861555077960403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303869564875353774538126338575155421687725723174270913492842282748965877352348167965095208682643300260289848971220703776967649211663844735033284168579305791011037489047313809187385896508309238615640924015257761581659938311217796777827375436133463861877793170543780055062865994464273663197800784208240840602950522196715799897051509032245944748589586710106885773814851381683411159273289202101049829617626710127706378798704796659268489352448226506047994363865912112491131440002768318658117334749357759717528850284373420862922678466369714719019979258545983368136769513926164055602283512864407603174803399932310357920147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16366049693368601549773102970962434865214679341154822712017824836630724962013750266176116885808151791892022196021602213684238319662673781490150961090463623757049431325856040259303950788160130689952854318681665910103390559703282332828047859178332751919367357441896229095693208576437343582165283086261211107176918589547093175395496754537755221227422989137767682229704411154169547265023425001086789097148940364210749526778792598172341245676057103434056397180760937764787154508040368753664372712358824213113405530383449057905235204244637616878463287755785243102011777683785542266563678928436509008458578181360432479718963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294860681246526588676780897930421865702872221266541372662011147835478672252134647924373068409251163257157169287332365459057516377360734880061284561257911059169310024067899265333068453205733745925944286015418635724502545586454069115486421432777489445126699184058654591608801493631234390348022505044946328660227630197268996696805563957446462068492539626999896565693974489757957811471703949182618383194372342657210950499501880375867601703836894971664316518999386090955421808261999549937324396888187914266584856561337176287252798508282942342840779786242564873836341555564597615507834935835694358766069279564256268976231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26586090812866763525954281259193812151105526875612750745969120048262367229233357535944295877467316079469384858241781367319392433023994217782353925921998303471969498434586588085851249658038055140914370947281790424194739761159590106969406528388935394489526078288374026028275122419750687099986240097323947717918206931275640816779374370707526235201333160806187478254717976534145994453066704793042427524354427617778874813800913352169852845302339716453844457824088357781178611298545582486733619309920562177936951632204291140294059549663921281492122718140251105760828863009919917503754604119953084390316568721995299041402233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303992278592315153767716282470027915187802284546694247087679899798244679425637580678711067665780719285987298227108621990091067107158453354932948404551521302860470959115830081728437683715110653466412061973564666633479588033368711019418624760249011090443440256129395786159435570933231732698113063001111389067449649947629453542802330103558074377900681405770159824049907710396898949872337482620135982281749137825631585867323523500988589805760375945643193586652058363103578957368510617709122748908776307349842310967506741552769500825680884152671313874259559649567584590570283326393578972054456783799336591708166171571407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17908769893877594520646042389237490907515075264710336259619146827243191370965332230977260970272918158774679785873102059365087003631467897556958366838759091304597071589175801107636348539060258154187575113077493349557655571236306168773017949492738337703146411171966704218129894783218923529972147711545677304717916964998278234298880682102084389875192107687961103506222007105530171430659437280475019503548109763438800031888371040711918165366716274862042107406553686771092338325284496165427991519370617807910190638985683042788812465455857325921102404986052477688949941443889545529287958938322379224659474670658388912488227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16851725198754642066486180449361110770989885091906022004334577996489502468567141589197662607022255152851614036540878811037808432458312832332190175213797148387634999841217257112663539807393927021638852259913788892808037599355892461850296138074609822955231546519707214524891835963094745000842869868009324746387336432955194781174522410119928586146473377238346093943619544634312308009797328762240761944783732874953396295951765425787382038748044421112528134991410342623701789576703941257054593032338380455483098422603726161800040544642242891595174046459582208337557058962075208403928522462869853858735286516307085983490933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19004550215168438827999841428065887025704382133617093561972820836194751125546980568288374187560466565856177730462482323398430112388975526412285370655875845537411380432866647773546081566635336611912083868600293059164689594854165157701727411747016027176533973736102306754332847401564873993046725378944785509984873290422129362944238435257192178413470973903078251266316437513399754189547484049027873994815294229455928659778679075287719503472922686773391666604133182849338545729143943263782004679961602843508220303017721249055268253448306774130259848414659523962624367096889573619154361445621871661635696422487699860116449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17300035387437415697133067888323860505391881351907359505079239270340398277804620750280123392733846107820674551166046533529720721211655092842137976673104928879186153848085955751622811593921112942704542584428560276510551359698949832945802284356345286140211752967122180267263020201045726797631978036222738644348371332748623604445259150242652916809954583787576638614902761931173427786861215731584961274277332716378559086159743192769332911074907242390417565461728988363862747916227694676301449110566655911991982732046862416960122017364747121369528638333720859586606562615756556282846128306251485241977079572379479742320053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341700993942225449558600152283180021835306237866584138863626970291587143710205977696680362137855840179390199514424054252226886725200938969042735176956153382363682947739536103879936117909358992752378125855623072718877026716455122185044527690729766654690271029718975400145692806639626647399499315965147749646821391578674502285828555836548663911478626377304422044545509893931712409816958438147731260318697660359961391745549178411702663084621828647090138348231872580244256113377244849754629899010099543820557130463715870193042892479032343561616154990073139153675717443363412971928024436975926669879479334609015075080577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25332787098920123613804443260602459681185422728284705986356251705678316220418152769524564199766775906970443961815598883658992654904736184681519591678683095093566785736403920924164401339971499558170166963967346356578341591644220762225246395689284190657009567919940283167552526785770758988653622770939715131006461781603198409312752047794681219955765429145085035448779588225833118480553000439793380438069965727050657496997144057421563193859675399979226521150807344162848890823192483350107113654541000913130810170288760106853839507855559555276149549923706863336792558200782888006717164845545400805606145463214345754724057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16260327842066935104579944794493472032421049565948733977567170112603253919869701116707325512395179562277268481226166486347051441144104203521426757370731762461160398304686856764202527080956616176709430730241155671130599594951443108532581007411640994708385942937610004123532487015181464560338343081546004109811007169257582487107632989140855704369077892183113672486677261069845900843829046898045912394455284315152007316760860424632286615286041473501506294073715464697175217836571750729613214268962919043982363095014461525313144796993202287629487284728176280477325547600468173280157203275019539877503607948337664677670237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22011299404832391539812281394145734274965207146529590071109762478563507289883707768308432542635593221296708943252182018715358833049285494138383210064523822540386457108082106822011739079945514983578293863956832464570347089070216479590603816514225550582624597139091948221352707515891887486127759747850879566021099903946878347728947194927079985412341296565518827194545808065800311366573761611953518054928425967170281964924223373389847300990774849374965668362442500542742300883694658764153805097458790634568875355396947624947607319337322662495173872719723709743696041284790759281240025932793420845506036864597359729387417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296895233470484323367163254771557522680596090350329829371691186726474765527829991733941801389444823578744962605761171870155311960777788372577136917027465496850814284925282869973514622218121506651476064197974924288978335254219630278488438067383513169950141655746264498424185924401611666091827960051986191796137640786889205151636514873779590050825356087157396709216472744917894666913880331686293716007330358964363321860883508389790266325007731522068087847532343899297250144671002027598074253266214792769513929590787879152812559394457902868977692622765110184364642708827628284643055935128985918725303661028385544038941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20889359272342446065202956845052827702669653257974386447421598466556467337542885826558680822800078606331657376373211125183612400974391519978974893860029445506300358548973150932354496057272533280665336581051249243084381732733957131702645898297254034577462851293296491051658297088835795984863680577337267990259276993426304551500230707697559104733989510726100732527399900030720155643477090769271130358325832752320801719781575655759176470211118132628528387873991098177817438967750246818174755907401018242967855449397656615164418961874835887337003464433863443615580204598132971184789112188375950798117272441513464522597469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17823119799518412008134668518280205274524327864648977943411461337899294496714732386393218254550763821543848195011049347863851281446424892157490169052461774087820420910401058874784065143743010270022906265555042801749636786888687701514138612028269010518431613522528252145325234059873328933994676454023768211487658185970783478278131582697696972420541069381364063978917986194160223143326538510507538625823551331192945536112295787940647106633827444110292027174820536963969693290097634078065021987308523138107988370819867736100306362521136558727593095172555648104011323766841216373056915705955992056519820216502777831300719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16280372341257149560919981883971572164395156404842061388931134195078519012679639501616208889171534154576941871907419104880572665693566786783074172987066971263846656090387000530244766613708688910539775314758860432778705607697143129212516297654309576272208958575630396011346111287213549936214819843268673856372599330136198118471580975662884359868351648062947214791092102546723693766705454606591240599564351968547879474195829531071950297947584140785785324898883194471254431181875776197094725571156510445226551196292610420690169531089677388375581793814766943799033671685060904968037012096213261686385059527962351665275517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24200307095424770559211068472809966592514530364523138125622934315993331909774688007708586379641371010457872013607428298016854362348994478515099013677473426292746489426063823698531848118433324881758082421807954060771745666271446545049988857598138248687146477449080731935000985020021625276080754200686717995207467186715359387955585291859433893153498410511810544477181668366168256555920421068248315300267391751950664242265227679993873637902297388695777675555272258512078412977419761619408318348638808877125042983613361975129927233513004823184158374411399582021326362359279594678524248266320590620533451895059633826491531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29159790508964213444204590682212429765536378288465183059623603883198592921325927788615503805411787385896929901624748007315515137594615409538093594319160567365171908548285404338185958399777570873983441310261228788004969586921970181204466028839734395807288882050659811310312264745732486627845923047071604155079991304744203584197482649900736716685887364917462009417087950667914757420640743892816735226461062816002690825719713651676566110220961845261355030403733768757048695436003236116819938215344227208990824759544935942715192172160420358092480967368018376083691308600010313393335964037792612305356063245103325304152393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16790557104573023352802390158385595849642534230307771495460645841946114795237475135617113748974401915420273644037020274180927494002266882228505700684362596376441069246353149859236475018410174381407854075265842154667793512648727296033800046962668666593593421409067352643115631371888656305174645483317313355897376866161359873927872196494684144814487360204468895165638393757223845774290793948172935581119943990957918181145840315884234603212870767606229024667871338425028136100000887711583365998312986932742829051080609943168254711692809887322057077267891487280362520789331650382181454735563462526677693495569299364788327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369450168628877833247180053568187792491239857832081270538883401013577371715832329960592724533134954596705139582782625562545806068966660735545170568023853890013782548207067330485542165125688825103615339967570852241026373757478753064011362046470992686434563318097652205727677974149189315567769058637492998033324040284287933798472482481427996333684557097015978302673593094623175868387341668368533206190784150865419859183823437689502400027602276127066866420384306775658169202891045050140777294544084217894518865474235186993032568505557339466660469736184891011703948229634261789457813399328635908686756739312868901264863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20819541457972779351517259514939394672171125402670244920782924876770815143246839889216535326371631680659595026206853414754620783548083596300733204704253087834814519861367267579343558112876308314702903903110271398091511640820021064600003859687841339635486080404506419824167345800621352712863647735720085396215389977027388129810804058896089420457627779819413661607961142690640229803816395861492769507539794660883446397216980663553664167736946054271388734980754866385341696650351495168720642524547881210467754107177817176224484039388398174731880734153405485434300264067876897329310420701565032342058737043315048141754661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20078804590709020429517157459601510481279313679880706191601214708193632419496238363172560547293329929903731137768779150968032072196892002414102378825949655703006851752743029466080658018026540257842607381354171413941570888236235156779178308828368849152612256444465770840814866586954877814846859303852467093240663848885125721058326581282159947574095345413392031121678319920658788934229108409726930105798948813986434870473793691322522359064245135789383668772389220952064502881726868157875715217301010145912224150037179238221228121746543696484735857111488783387954169288546930741813386920939950324547511223992270550508781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17575042245854837047236457539467905225542047359025727735996638895711947374054935273666142791772729124714822868844467069828127304765913555920686284282912878135485343241042810721937044005820942411635912191320676098876307140997333228038916236912366329664121700551423232138815167748600700345970814682835172175078126301919646106074825304330051592269631893273374562827870227541687676694341771816423158860210276226037467643642517211546259255209888491776963100275491438608052006659924482752730739564801808842775502923370522368411939479229778179182199159329329750990203566164419995455993136777250576814114390105873700898576257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16217313767536670443489932522903212125791130324864463107206791422253496348994671646485343537375732711445281027945684735519825235241140115371258129782371617531717899203065894179046982422071745149319800612806767749480451522205439843241885479550805069018906583179282304396169918748867073229959762493787583531275211630855309141609031934998841440489858508533660417931878668693248600603265633960350277693723542928767460248343588868495511755460108483547981084994789909194364613546525194290855700431775037644444159632620478095412742904300288249072567168467206379498060430895166950375729689492125663562144657002673796227613091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24800507684322072338742442504559133627608885553251370886489445282404404703061281654500931768331105321871204125123554384029840147725329032417765167971471967038866178945527693899866128491266606094111294385505547576656991355516184701503222452961761589809895436674160413959676921570735352626997837474861251423352135303815921070161375132571673794895947577180685641776742343445365223681314108219327680920845256234175049851347259953663491655045662188830981286005236229003201356893957124604511885112175312458596886467942093284757944291143232131668078451177090203955488572326434895660730002551334749247156734872264015812991943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16354203385619081715915923678642016954343439585042741665061170839356695978122560684914084687876562913954495370508487208897567988805272016538023942038448454906890166080617398403471124323439694410549009132058837289706364716896263698618294154039566100538024812280235998718441857466455965363088276611889830421585433689330339732341025639240863494110457689452092264681367470834367909223494890020893034779872317780479520513760022521257648517514480354222993422456878222887738800446678388974387734239202954818380205845339341688759201281834856849228006914865651745802466008230592602863466630031772650805628855195749001801321107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303503492677513520722666066848818297821322411609755687236522109323526221253373998481966927117903218698047357558783993230991267051308758927521826222840802557983849776389616547752449478543319188876316697307881255916889731195487668247634369628484267424681713988149782833171203783449324674180363696284458758483555637310928782920032079182465714343686274543721447589811425532328297635794442966737312455083476978359957791030657163116462328797058499145530499603658065117752767246437513610834141193728287754083111828458011261017183668979734518395228827723432858904665072055074344154340574502266546944657743273215761627265359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19710948858939464344369572417755570614801247831838232093730692735790205140627790775977341621223952486422227872379287661098240995010377432992298678675697832173199373287442257258217574436805609001924422067068186086220884782653119555659589955336391565488318142323486942577689937688870535014366268943621484420438399967957353142084592422538777166886725447705542776964508507462887898153451239195447003029515738643241481636356234006000697567663078645039492744286915354667604807290916491224393623038996792874863056467538035125061065181301884798635440746196603079376222913408665742864521865369358242041011030378576056099173327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22717314251869263321899166477484900554911641900727823108808004763305888268883864639198615794141503894868005038492495330999876969323935303026364286243255446212935870818535429370322494377215493713012281039689154577632088232054343225784329480841506540644744128463464971209748723389240395775782707288614204786700175542910332747119457181112474182065889983522671269502319029853981283706240417748298214686443245124717631044863036567229680697298566547065215840338750905410158038827796639989419976274593297933044503967928994881274784501171576492131972106653023613485671645780739675534431606060777084798671277818856206302536047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309285679429537555851034632046997282376426856730625225202870297039718552149157396131008595456119917049502442813387523849952822969061251433551180718854452034433128728520037375937154347026748634974094166957144255418115154713485996592340490127011979030578644496000523129781756087599281355706965442359876869999463715197561383104420363505946787123093301088989670455910517100002512508803724830949225642090314983576426337349434601293054473639470120899365904387730156898613092868214973623921037020549849581686591585330260375218321821632300848954085939722177071350933025574716013181019087678967279653958696001687336540770681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23305890484378624033070183754757991132937273286901115880412086162232970924125690118130399476339383521640151126549192979355702787652108258549328845774469833217906331937200105740091153419772660002273202498912369732401910520630333425548007114932934690067564251107291854569704873306985978887015880378525804728484311186051597036943414509747623423194702635705302357859416124678668885743550302481316934068007564353850436617292827160243870801619262825479657895165103024881132145545407618661559754699578338294892851891369869743366068359480725399879215609016590506789237301235896020459066331995375287483849487956661466337849387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23880360302859130923159315232180720387983636926545700551063493038796030803987391771802910362316368851610143434119868585585890155925888137918172243814991044276157610461559524647113440814970978603407934541155466855710844916440186469472151690791574075374884699319584634650923812974511832320925064455437554408474511491644381300738311935339663680172922338468538692361212224030750665371706841009397518258433448049707314754197880816922058721703493839771180952934518604353787595001086033465129272246210264264714039051118352480568222779397898234720316765023057628260314991649373920468269768677443961124878614476018171921806961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24705022640805791108019819378899159345759095225343238704124282604229268352771494486868107914199653954755654300993351629501249175246907314957298888707533602461753176699318307074383725488075073667753223938252186918684214383172733524311020167893355696855921634522962810637553183982161734906442282083040411184757710671622010423400205036395144485106575120695868003688028373199850151514155389092438806640419484507069929763040234268196689335646028553515707747851146490514092683249528389819988141546346774404258015619058781786719482477744271609170272245722299918372790421059562665730087744054258463228421930916647624491980873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30008749797101696270003739086467875470625080679701240150350971352585449858536004913131958317236881123744401724633243022549290976995973853709381622774790470404676421403086938770575463738180758780898989586301671847359049907274513245132270091254289869527899340250889811579947640199154063641952413178045062552171980814735866435907320616049126182087653105210773933351987131325408275038314836844839762548973173825750151372552486767608192741485607652338112000781499852853370173907151484069363575016850085461409237458208847565735301027410827047562200251777103693700193068345664672742475605851697110477240483499985166099893021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26841529828348283716680296481350494036926947193770645162531665239768840804504931168600733040354445073370765712831960471494457427319947520678595308939524104071444766460498045604502778016092269469326297064770830055951178784804615193607895672229115756172881836423642186390836743862710871161197434736223255712679191453693045903767979968881174943653033796315619292249467041553568870765771796017106150936845243554694866192482254504621731540965504568563894550616551370741628830426147063743213999322633753005487053141353315136360404872884899435017791422796303947707656946568414111637795880666657847594375261252816074194997501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28434260792754113474809465758021012766955746174636151412494066471852062603252333842433896111992429605000144269208321855468306815777503822083235096243956113904276186369971703061946164372978427977884527783870485591288980957650632508660834309751465413422684891903496976811095523731214757734825060627047997673840664252972302383199098303980608954562970699073591551229775966568109706398906378230327242947527220440912116496325226133116857735149172534849773128973606663144442610190475522655761932657515755058158458030216926026275107534123413337547148624338219548598641688646052353871685731916505586021160542228538546725451851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21421944304748994124073614228391574847797421566865639532647347745036425404053592464001406699086170581687279736736995703224953766263028499097304324237464841117985143736075950407151721264537587967216481779817940119623133366167318893535643208023605114027125884451867867207435104430062363838617345870695642361323557140100926949748084913982954272800631929359297379855805250740906170055940213410478042692264242546793529479591097817305165263901146867951027723012551495238866948539460009949764705533815464171454821006368302305346948056811151683708890004038793901148500056457095699334794997739502672677909977061319567325240421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18541507713686290785275663009063860127706473392282584682946684170140534785529968822291011249451548398920224665004334465633764935871647269595922830823638695302835520485832074343919590669839561467340987246704018940257118032693108854353203444262982237452456755975556223583799521301951111539841190279362234799846980520088787244548701365194816071587327261751653594089232311965877962116280479781990502903593120692908586071843332572937146967078042106601739494053077901382942634266491173686434445252155805261962000589309870890988463154083830621828769748101852615747437457333994507046023735424334118061769599925885055920411369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28697933385332795423905853855159010364300828841937766874847223495510561668637731180528921328352919233283522801820586276652563676168966037255761908738310908081911759514379583400713339574596324833400749471215020423749073140078428176797508461814113674337407822168216494592262489997315949210184165678025829636870932084540363390603412897449045505424979899724660554383683409592056757393791610069718834305874336268256833690927543051687954689867686788101594704746584141619923725885294364817973586490593348222964837206308692121093488359651961881442274365035774669116765692852724634362630186809915932499048986115106878050172117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22472158041958783456294860931770384548021016220855582614730069223813686816203147339834440333558347807068220766007318566559223560001056377533287384028671377205406269991737035839646482360386487012761938501639200707081068940674201743873423272476291706674793060938590104823626708962149592815637568449267621251431979707602232966112602206683354646643843445135357346852505224048019031039762379020542022100085576132196892310606016807175776088074892272135743809807018376335876079340008478763047890327589284794080924138147778080078484682370733274854054989501933553191621434942709377711911781842295017976014950305880449226092209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26061884725488461742137363257462628178770252135819394031917689640653085383637629191662453714379275772156659426154681231095765692442660905064872493109477763420315559055186265177795881411531827557913842826100547794429722558462199198194337477594379353907432452768465230391330384470525420373685886763628743249216583762570907163355832005719818748666421070007753556541621953448158322701185523307164697701106515433831830042677000618952113362769757065576105717332071712441864608786609433276012329885701773104973781030918408938432339984448409486176072286270935763293934399460043908731659501719582595180543154404832208743010667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20327444077366030191217659770610806267476453896862942374005460213345136440049902613154666944831856526351131415568910670777348677983799907588859912724580652650689779641114253511221940209025193401220176910364215092989439150235899498455802554279861983451079415718565201313506095337475615961451722808944786621397838081343638952286242376046816330515213821826246125581831593932034935177943168379035916382237341837135525707633710483553582394054353478958288245059504096053914116815263346459281098483349425697840430763508842594107201328204279654156526757399628080485234777860543264944264807209544433044470948382937058825423587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24940362644327028290404386834544448275030509144098314966031970558230715280762233413628678654422458591029046244866493112737347589710239542340726575158164987147611395940562117968590432905931716984624403930447993542695764262498205612283071478720870387620203577450457751433600519440641661917488964423783319813359324901609495177709464870294977714099108744829736504468393512039771414872206764080128382042905224542408246204849829222669802609729937287603152588739623423365337800530537865656817722734506124202960014756941198753495221738914377566568823329314031114393891081551018949641435284414538378618791596832359143646207033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20877917156815281688309070087195030325682601374526929957760829537011038703927946973244414787563085730058208835214078871913781009076880390994530215031818226765097350976899306929654301524947245041225815453253596904054999011809883349429963934401382196336421740539266804839125195344795370202464126588215424294945649252225264493322583851581712740876752551745624824680288759494869908683501998573766612996003319701174820500145793616876703144060483226549881315035800860867181183482119870876429644980027680959805182989109029379931680786791754354444456840829484077572154051642102618535727461284160775627713701722135966701773143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23392422867874315664691169143582109701005006560704246652478994294941406757660843175503218007346941095255133974479498246840625181338578171037978562531076988604830004702046078711588727427898153474709744940751555681036605049187952451139518567182131342846624392472955869651283702807470968221087709766444640147525550181109351891305613064481453076052865850075060639892751820526683841798889587319309973014779359757039014588401954053906448786476980978071542973625637629761230546997840198255734676336175332343609363861619585673303220770541041923353149706963054726684016943374609414260236149028264953551252452254182659563288293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25102765672019009619212118489982093951093016916708711129171391700408161113127832713554121473315703204360470709646093074751143223426249721635047996189413914224240027301797258030260408765704907302919749210923671051437522952322485786573985817998420628216707404211719115818998928706923023216358762343122467673972345037480813100239942697074730522650338481513337693878162241353856278826007969227362721596538673736379894516461329054892069595537840677413721989715033144148262023124583696195953395718754082704603154156462617413536800158020273525349219373714067285944992555121433175821248592340164008384306249836002732573583821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20394009329815191289507900692056658440941981695610653851919055840509236971044640078564719414973104428856742128879847731786477308633011958988354936960260512211264512327043433808918894353597881155279552680010953642162128009803525816832779738004171888208310964375328966509327074160382896881243929066923055125021825631316662043012667776335441671552837519605731762825420455367849629218315563962090909559002857255568404611145755887645215471390076508042150853541909262469402321221238701431018083481888963980933323179148247999992563332470807083305007133675225315144170147063566977048632519294025546294637788780303650330952787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25514840417842155655959740441760984804600108717691124580028399903994251581948336932293743025657972491159810747819154227019593465574579751505481843800245535131435951595732377897062214698277527861400665203441536414416144361015124474087604414210594828928404221738377677616703684660477457009695155732253541995788214020765753284826403220864849807792305160289236639108403224897864681711087091471785118517759067985610067851221183452262951524760197295129137849290065716560998644011726525740228497017492431419199724169834164171049465199863050387299704855185389150024380345216498612853595864653890089043836318548692148875176071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24089825199385707869237073588788697668113534147155244230859427200910968413762885765509669761077845609655650265082002302441740259989059243590235456758389034149009633005992991668949503498973856533168739311551640756195493328026241276846504593713315503479391538259082167337567333473566294816324208329429896930642609494265308684359830836123781897822924683175235146589418700217336175681248465650988512729864708873456099969408980491489847755837215978810813598593722882214975123175260071459774416482435852927454894370045833877409746255036034523491747817761082445084687240876459851474613889632334626300797621323745345668207591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23600872898779928266441520609819896287683733428627824430139781600279291386040104280082353931908396489446521238697071549292214642176440314071195827596677094461024534925178732431165232409703878159026898823455843412576304759365425638611852088766395648582091473878549362833296712049272995053372773162058369192176436862090705041201499847851206497538373012893854902405184435984973551569009545633928490648417731285360493647870260422336492309303661513997887876780691810210369183013732888055259284664113586816357003556225072862921811501339757018669940162276518408199758545559181943762480011009955410205816888344860318869134891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25837583272683810252857343934669444256071380559355552771802573251036342778848455512625620867000425517395184749529197648572121348362446808854382448540792878506470200616165854534724602396523000722008273154856291277709148772102371612350964559639598499370475266812947053770864978899995355989785776259238285580271709979552204161681644508491491724227589914271642072975549060589573687317210616043112336548131648184149291767812607575478760184063198989131740522777970939975929163747682825426511475161926584347751900072735054533529878682292371252205501750369561060929477568974860996004964092232500983260340043337319414898663417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29537570915640347046098353157540793752034484325662319837843673247468764614415210359578166329974309037680845976417574506226967831140622165012758502480522824784960407917190695423474711236877086669061667512301513101085917897931689995369025475283712233215068678618873738805519578291950674501089768797830256179696570051221913384951279083994259020667039597538640828364631631661363483374864459386205080466339652364000733781205495434416616908524389065877657715271878092370538758661623229091205478026364971213177725819932150547577990781224134300794060710916543700288568950552942739759496801124712655890832174534074654589207897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24044100446179950838852610333686052029359579478260507177243345313815868501685123943351366083460268147264099216998286773845607701605598030288994974093116626266255033319596119912992774615571428890302275403500060644726711237828249697206764417510249254492571413678909896740044548151908021273618138616341210859665841386458097536516373868794315021638105112064833184566328749005453389657000037850671593049881803281584216883432430920876328729614429766283942230122190542169559293535101183899566963510630161266865353745957164644123483158477683387457320801677076416897507722360002111183564981959178636920995295857712543354720101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27173243636690012965133151770685500437132278524045849601006253939973132705407700246172921020752814724834011256508545793939819399774665595216432189299250026355876134156954033600869366748705315589494063261786245363330704691740888462092264725043642879316302918493084282442659411912604366162628895375927455623200583406579349294189858859333633220061223714865762745121952675029601672058927860606484740031366453986749603536223467977973603860571530228806198108262590952343912501855914924082901321678309418219818511112360178056901786472408837406586030575550293784948244752934750361783009181011102076853199833445447116548283619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24082661566489531778265033026881618688161590705483316795747936949535229352595441099302926387078774137305202820489177367708562075420917444482960144222127055021599715516678747942180264823017494734537082928848650476728280879363188820600055515040688301096922519698077667658937394494676624980956182373196373209866030368464997394884639545560368104564350866242242339382080346610069063205124708164659876947356565978542642487200725515354768616172580889857141776332198563001665076814279732205231362534146088814864698383381485688688210001104259837523169663938068176143812332583156973493499999132272958183773023364235525223484999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24103683724007383042009771060305422634271521097486498953192252166078851258096474639533645163295989949424890652465368757713768555272852037225402265350191513098313758585656742233356942925378431128510511174591861015522166259767289434865113324844183975605923193216028737009834685353797651286158157648527140707762570207049779205711995659384491328608085859259569764072975548533965662848159842490590787782190722841656623070781557201213635188494221322525935581596048286485162416961161608648679236943417149106471778145770216851506661204898109454126570011296773365489270627256537856309597155224724153537322305907877941813679163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "31455654689752502399635905715001609068743873199187908892547794859470270035220199637998213636282904980223472548947727959013261808093589623598539258689112858568199178496110282147047341335196883752354176542203974714111848519038366388725758219472876704435706702095404969875339583414947471347579428645617375657738167385134532960013351738771169439387743611311936951304649197836894561803269393239094992633894766011057624503697296517625875232782336265580940221628568407094570762735061719038726952120703500396016726915862245220634638837119313129815127139854602983241128614921006664441538791923107041720622647432750896303477469", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21262150964083648910424708082340108717277666993288108941161540412516147860207379728791077931294148007373408590768523359948242646792614691444612687545975458881364262872657627482693752677160454694615717991627412875134480900864941015019956380021104510646640865463660896177659899559346457105224554180776879996073673343405546310984818787682421434122763357651307426122315326465356873099071870677291554308943526595138195641382779171133283112283551978146947813730224921404774333806997795099496324448689040254257133432324685796885786184008210335854023663726146609697160908140896685575745910752242667099302708372720126649141411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23040121107231467333054744501602141", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22218933715853688895825619714773828", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23477069982560906169360071971556464", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24153945494393359968474099506188129", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25142373052485548951105759741287764248046699234696437308245106227522605467249594255408418265142284747388046606179916386540010513736665754426955835287544120213693935093064248558417129961692609637126662609794675761177800934767830516315355956789818649308995251462693932404693115007032325187199932387451612297169044579427314819327977212439006894107210665738976234188889382937184057926421406518307274294861336552420638356026800649995339453060148955123694480985315568176806626948728528562833810570836927747049816943283933816376689443977750678672788770385100774807817198894384620755146909698345784599442230322649962346508317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24326486402893265879726708819604601575554006986615556306195260019871115501974584301901504926968053168259816568278595640744568800989050787903308383767436473186525668905239278822721470651665796371987184069918033326300122541119870564484749680840057955836846426833018224543955917832646689142486241747518089834428824346189280748076781427846059310389795300137982053506692078957442747703386331453322117935885306228432108830190559343088862967312821667453165565645440891715028091503421891212781498215618227009758127168277686071525835616991166730047014531522036269493576386340621087605585298446104622611355603700911963079141483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23975784633896880117981390902764052246223910695679385028970449706952891835901260918302184691508736277167288709920742991758995761849251967546251419864423713672586455082287975179706292863391009061912495959061527907716455191153511666854013512163193634601760275127151217027012255651509975840768310644778823365582500481698235294805749131854347405825524659410830783284684395141765577311480052503068229810444989589576571691850206240791214424533886764834731871052034603726675948471519014810314460731293870253091955516698299927563153967802107955454983980184818364355303896252501448411827137757119606219281792871876549021670473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27014632248708645290815673399305031367119172689386526375702379898524557857120087852828175024288493508355668071952548860781518726922894220325298240498257941562841790010726982365664181062112182504146688767713389623798109299078015010247961399855840759871641575751662882718110867076955124426492717450127396498685561422820996600705657237137946238054364212558553548640572116009901089096622438111118298636732189058637344694636635134904452370915525647112975571125094754899669509976474621974838049274896966812357554717117350884747086961056700739090907750550868198503893256152970539554198120019045001472281797981969208512356211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26459910821140370624292045404051952379243626190232898592240596121198964704837595272560074486364486245894059004077280161372162238452134294157191878645391010093554884808132127921586563785648055882701685785976987816890561346704283050444857300391053012766895890007726130322364415200565720232300296805611836726970192904776822586446689637277832504638315754926139743555418974488378557412372076850920683154177808826416604701717000928796750188462702553596165745646841224448498169205007600441562369092725737735910968606678639849657282008003120882924868004553936425001714856674606414916720664359030381370252429131282774679755403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21391472883393060036485937510871265216356892902578823717035095099953509574044452202037524984376912643543266391635081774679319229100107755236052817143213128105755540912050701812454706939061889520466428251439982818652123649369001956157137504422996606026280708508249843221194184452916562700599617144625549767531820990234678478166899332075029468491042171904917385337527156062836606553931216489257576078839643829975543079467815772771770106509849375497869470293992794883616728050845107705068153208523687218681398737752147326377180493512925685350413011168890876074171400690302205816169105502010682241876799407327933183241313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31473104440594791808892819165491647375226354533044075917155759114112782625473076238977397533415176915428301386085559621416380676766081209408449552225172774581450697252858840227909276057407357326944957451199596158592080969459361086198625077866211311543239608773442654660312089853794014544063947611510521904750133306474034699227380479630103077759342110687302511542228587923984193259327330162778464785450099466230095444252582001361862751839616167434866284338018244439736168826814232343979357927770795020207218861937946042170308837488863941079541659607747373015494475227347094539368800663670776675217572604205437006178257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19629543302927057330296730079013742595580961451745450652808245218151147511893918481239811194553546907133708967929809200001081498028895772332473729011938858225962468208717725569980961430268640217783773808958213411454900721538185888732798026563548767538111352924380306380593391354867753673118693263445968188921880812658901143157145613280243940194504888378410724479149590190212611579023404640627622650558079267995603286975962460757759583793838281191903651361314187382091111139153692355490194767729427113676776600095500743895916428765118717074732672310350409813432713749084529638883260151255676860032485769900180768281233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317339106313196326478987410728468534219073323115681653282591732746818661275091098970361869161614498021008580331492079266009095898823224861053420455680151711440370398837885810607296813244081949165562660094779567568093787579296819597167633453656118697508977531614919813224800948649333090172171568321063355105987004560116782633523992750225369716311943650212723816247939638457634260266430970543405692007814791864856073626070443742352946552174693752582616192503119862345488301443202536334497245223185569209958387821715952740431370366729470095295572404902717259249561487814481465924492334085587630812034707050564315590431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19077377297055158804218056280850832896385167531963677787083465720498259104525483879638287168690459491439098767585288844253272537975158213436440863403854043439842457842005893174543543136552599355291682605657660314994821532868291630759065909364115483686137186741647481727314849020515738753334169870822621989043056919627990424162139970379430251161074235810716739511715664406948757869098073062531415195010581733811757346643155595562646877452712190816584635564149245655084129910597847704485088701405585842195246339461241198003940778815733464238832421270281533200786032192437669614785650691470527692567842309259651307011141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19317076541773189593839548919399177482087585282261347347690369240391860310234208902237036710030237108527297913816163857840981214371423270777320762560607867651661305294428322120714256275337994929260105523839836875222646386563031258457197477405785557354589594746133831300203979655131373532716386113934233646058509679347641413608920352104969669070551916897480952020064246143895241074497713885381679875695702949951141608026479078277622638966132704686158333408956432201047195908949702926199078814381620505295652662624267675907352746721745512402242200132787780024799927118933945723281575404876386963752703383799321034888523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21354627227772256727465565884462805473674851060489949545002007174246738881174504275469440983021349414880591374556054620039724862591158096222412749543660549623171566225469970715109762598013230516256834196611199265389474856909811708067755673138511885998254209963413316860678489123264702433437053996828087691474933919849121134312525079208807080510672061296365600877147192123756841302364304444670931245394968926663623476779831404660313397886263756846303312232197281996155768132622380775655307213115824413084876290822158153967366837513818140560537862596347720032649360265083315397143946983133508795238981544186281180821641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19161944443243719413376538792417267218514830337737128633352248700847315217794407701040247064077332353639212506810644923097448015563331551961993507659755282210331634285182373691670195623158103783739824819351745653367367691121859401718763144017610817326072272400826245979235430037547033385545961743439255870568837878940409935029146833565691942786812260656652575382792217366447846434326506367586770473129684010525721165172024965539762873833673290780432509220240601071962379360399872199160924288223216079266301860270553776571223722578530295167911939275929442227451191296695203153231164438593482361132241353054092076308943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16199520523755954252470235700504544059266311862508974270654441562070615472166869284973147966318247298083284817371306333797052645465255911713715810501755143334121644111134922959532045106439357402887857910410385368391484843956413682310240236021354258682017689130665569661046496676138382055984660278207410319611693983792664332098619487968936420039755228900879290281025637360562419076182199038231854959104288152238473729621416524924884441703353043265826096306863097853530495476797030224760254847886474860907723363071596404501321734018670240291736131617896896170938612609739083956864166437201872188669000565284289006533481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26501212875517683381152149842636669210730192011958503352443520740396629260436602828068047620721017999582440773587203759600792560225217953857965247325252385680997659559225542865216924030458533990693441728583923018839624340786504958722301126235922307124852327064100229229270766840901203610204299328377246446984690260691599666209623222499076448056695771482782946626711760535179893457568885146617511281895512241239921076961285882778995327386822959406793604478723977255522641193255570128108176243442760082294411339758023469107958216084676909527373184980145674079568443338937010298308229145590242980745252000580683837487067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25798936571330936511451486590338192483376646091430685467382862308705721834748845001720096945327187920252724260382402527951393572920751316630904908356956128226111854050630142010928705242143046400020072814877903837646733127631478278721670376354156090470436201730598640303473430994771560017493048707367834487852917497309015632161050379131954433227719345217091884628717404969497346946855709693516370937922767679702898936893962388077476676368102884406567179810067942997767258802711753600693806974895410032354655670030949724896211612799672940605497712641232854523330912801589886643919733993506899698107218079913702926057159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23115277788070340037400047356488784261412891068581264917265824186768570054374621977343705416037849770481476069036090488320792706492044080147379859866026251337909866453740658047257253091949048355819614461281118809307410986682560090449658810111474586896988621383375709925929512293559403873565695128556373548414121368222868883374619909464555994539374043719932732584532980120025508496414374561709604606482185631814340405670927614188382537269941776052472598311679235243654784647649109733067929660178489775673293122740984134875844852478745911081010577898427953695008364585815098221394410484526117049679367290866615194675741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17442639188070991408451225811626134760562947850092513179036233790477398521735214656373935655195466598423391765536252651504008233083718054887743287797948447140815237562251844695460427529604274441000388921878872725439713603938979867121360857718843815520090634005563878707344944000745416153442780571572001461188936494482620153734875033821388465116418583894158098428001778819435883469185401613654660361058430338569714327108252498602383731231682065209062531190396302071652700596031775880380852005320628721804205980432101498306318774965376165419760018414764400570036805222991882972342730752807664800140581928966226540910801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25172918796493983650132685789894547468431065044762066353454188172938091039916098751355938165932942609194694282073950523944343607496438971868818911765404572565518689935264416308459728661807206694584841659413917432536814554207595132794434430651618333041052844070274421634243531890678318903488731454651151668364653549283948422541934037938115326210630907789605994288314747238843386018001281700117203633376904301225092448213672449452084723817907275060166139189936637016033773867072110058031857273321922699468079330730092383979803777732090197662478108891886785112450550388766797048035429985755357701548118859737879132567167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25138214373473479328649078035581293782318263718515519639500587131434287450455941359909070555462397846636298064450642865264956007154299454995817821230216069663418312230572493322022969940658413330545243470134877252483551155158446065505542609754596099242884588741125322556266601746786615737311430641517475543691681972483293527925512844217616157505244389055986065447402336628885584554921407515859051664395792250522468572892226032076132501974573452201379906542254622498925666641154465006924155523424694132661945184386742170515433179520294384544503422277050765566271766329302987149501901937957594620214457298899598580767901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23796244460285108573581780005326457300100596356524557058024729256722184216386199815675633653603427511490648513571780804220169588920656319103091639618806507233818042486190638216720630747617887043037879841324115925000638006387716827472418846883931438293242087788631024119999029809975627227464893345492337401663699477137735854632144136413194338343736844738877015169428549553648621107005661927934574932252888940406815063968468893486832499806033688551805118319375720997788104654251181367565953217192497492230162270051463016559618434182582750432557169647542591509881225422206461402128649635620882859108184378808953474864471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27683338598116118987837131898060155116757112550441173959978602288379589169193437682742578420068097912483083062647108170574275033326230480402740601887443739313691389886600671871412967983626358929746490136022549489296720676634762727943866507332894078250206259356485217540149677493998522870615604832292420882428070921964568787973268765233890635713559776811355104626964941665424845530388906128716956015649483124116568185937068506022488904183135256724458304123131013807547996527254353573871665108053105894095109902798299371560728754632701413401843652883006216062324355060640781490225155863687280119322437079605423105791887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24982900520121247310940123390818417322298047046971880065514404742496584375505000164038266855540095943579987502065216189453725743065357052653014587349978653948178774565957585319944780060754760159867657411424813363933651393571501960180501199019117965832941252378005908487085384626355988798561759483334972738803106613788068577126265629067896618760229180033009562425843650025243385920505586236948002896637097041513152828675359189482961105171381551211875258121587974282002347658034809803245939483534402828960954136982270326126672106449007263810378840046560974791558352388831344659145829651213334353546933772460326839313313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26978878666564790533248875091700256824873216174257379582471570468419429260903627226463967669313023976428879073807712723555565431470271841667733344745929667276743872875494254304622606145076745936843674768589751158982980443187659572880340936936782058966244945710098157518587234086347520379130299723530751297581072247635290382094617040601532202911354061645630223336864824075496766996950538916365731277353710739031719139365299897240211842622885464886370974998964649600556967735124490919519926027821200656930515778218574987758109042755367756079264469281830029095457199942141499966559099824778656078745586506016168785400773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24236050686109298047253698501361493114268584576515323714996612146383393502194111628563035564085711448951094479358187426065535664758785965961948082983915002172426147066976715427307928183539268333080778613446595816589357173432811229219015870606334711706653061788954805841467231838871633613079414903312621654237700487894966046506163024985266251158393889869520298154279057969962275653648681303159029675098288420600697064918946995842454633520391517919929937006423453590660856561116617358981440364671219062853630307531606597242748662598018302710446052976403769158589308505346872210715300826096871136681003922003886703275549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24107495862865624371618704500879301546297894350252589513763932188295908276028545407953191231119427199735589051200109159783209103178493686041035503515996686963357432537778459919023638263126117808959043587447174158656389261422957116843040495480483314451553675763502130663505338403219866222825695920352057503184627918824300715526002569632633016823167738484002715689792748631399910905546738836139496362201542511385055030834511219389254489267032398286510877520927022419322622157972078758327947619763897910841390667549789550966391016108988082372859077627068158030653029672856877040230305097016505178666198432726095461776559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26732757409866976831686714013851136267282129521972571070352153012561400570162370926069773162865252073906115828400982919468064517931634322131979079448660596300008205543939498757248758803277908142412298314450441561722206331057528664436846526166765693379681327481386866904816114785374941673957571418598914405091031342007549174120497858913209768655369741432683714861274411989866054946493428778381123085146474802717262011728214820380667401833863660382725897786692961589908846207644009225042209253581373517002812969088446532946973857106374845302454738914139705665666317979960921849329823052621629422662565185832772521755591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22508525039663082586790772781322934219161037309362294677825880544348118544741723761560191339964155753831882393232252832891606038251518718260511504202064707675966423340389069606964416516986996349980907869521090289737190759867572659398207570640117825287850593371882678250377762617875328430082192482829583510468763038876247992955719583853630629247110848909465717062636320792296868806406224048612977272122213030215179024505773033700786285036697564398099967979203346037374364041369612421966745634777161105413716676818597542042104036790168967187113734736292916509593240063433044590132676813711357390453264511943638112279137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23038018904601913067045495921115394740137374373608649077676299877447159189705936935925687772773347974172024593322143568591312517506768868194161928001241149419335788593407901035418811417480313995451158487700592518605582950446175436854083912427695439110213978194010603670553299294099877924718116662674665628933324363367494064252616642948026751280010034968257405575717333294041132427992369172143031359544800505206004273671066468355326536885251953593891145008450622813590735418061851935905808716095756309642291811150437825062527612399748902870073748594748494180021441042376628654457918434381541469038961117297506481252721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21934965617576165094455078091132522246127275863129579447932488373800725796677307339137384967224820420181763126205283717853494503320864636836984090095809614865142463864019151861181791121421786017242380090616774844116260945825418549826082642311129004434825894364211396110925786481425589356505236540113556192702615766252612490170256287998660129182795121864603414689545162928329433691301914245662691085095107667803736812428707808678666942863845171060351631450280045865140318918827058896176096885298672155061582912307769564022361980440089770948355860711967140666747519281068913017623653853901157014823262574837981918561191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24713026101744577792206718360766595187455302506973838183270870051018992142783714906909491853120446360781297514655793971546118059643183135438321613990405190859414514589692287264617862887880188120864260542647708842250220395357268081316616796160005470236616817892729827822687647187034001120521615344057537089123106384829734422479436750184368549852052269692130739925596305242431731847611271713822981574273518397252221477014490934473687548697689298594884417359861525801306427664615651333294522612810081626017174608831078472373153559259990730293688480741384938707982304908125812644445061802610898529625110714888919478241541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29101409642868250015778597550484737331743799951844437943120005135073561746415825700938408058222775209423516680449887744049476990839637367918628848920605852812444199254355834088801145136947823163973452292151755113732253345616998576706299654703471383392888971159819440651166671125166875957749893191422175274140227755968212714292338310055215445542013904294044749560107282701279808679326640541966943337951807761308532303711723982544221853092315836764629805159865582099599511582745765397205407323447682785963439021168913682133234862378965889520122382330020982109364932255900027175213213445790867019454718546063865815514937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20139212933240085026822345986384155818967592073397117696972370361193071534424226271535031823766714391663931327151449507746496585987321747586222682690484663277081597543598138738542430327454077349588892535864210196577660430019878122794690193449740358545143378281860689421891748780835504619186038359987718412625502741745426462571986321956461533749283022391401946405063572998119351413009297884817185278398845023922794487749531495500375051011713922538042878555987916955133154743267741035005844382286059699776384710770445296470925815402670690588899279320689003383860185609636724738247189892569656667561456189242722438488407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23442072611549186995750261209603262927295234397902454346783934378948908084689879945901755631001763104129693252595496873818633739587366119240779513333502131419257255897991839691743459661770034009587130210963623340449607667765170540397940738287316052434104122134372116618488786172032160322765189475331698753194545608460691988447394466925540822323595254718477063369961502994663051119341215172858314765628911963311717211474019844290889353865694169641554586352473098986418329985487856176264765818617454129607090817188991484701229970333477204391635252641425714474559011455557930753230805061759661822239472350226789855543777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20964891289172083944470544157336846878018596321225494948357056666284391288144386119862616052730366944443621214470157879157161051995466071614855932669069585959699217550511458805265750795586022441783332874576546434490542796407404616386217707781448760211477540137543250141058870542074903016655132273943977843777273980927122239800789330829912919094989885231859823690678990962113927134682025663479600656684701215612584893176316333478145310429092354843749746799876817973543742269874581881891627142446935176353963137607157234375388281411517195404728574484901086166993927486202314997142211559828451517539628333839668290444081", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23878129832861432658528719421973230671213665861356473974311718175279019670180423377171839699026792364977163576048312044858459494426640725646376156157720412927833729110105670407956394333589552630743086746061694340791461767559933575106456360885850332010960194402176719410199230601165211671253038578059497754678309739627853526702595176108687037159287525092570316818480046427306028982649365846136165677069908270272200533919223158023422322637515311420823348099316555824303461417476881147715411851650207233346847183964907232442697123221025588798117735795780612272406107167256228035289809864984146021461715852138442747772133", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27887832758445758895739773483211528234632535629910784265765682056817911212903643800451888590997550486768732530505137103948267045193841269002508687511146363617877529367034319028164871099094986108574559132721058818759964175940743360834154187031106999495589825658490346799485789372218560317125618947431453019588805899092392705313356507597028409829222041176719452359616111904550676944717573461687347939171426154749943561172698510271685227883489755321202331695338272040767925316509356582921950143502692244281939205594322008401841000477320515947845065529573972643009356813617360254629205900717596545174598001436559899326499", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25581161302047584023447183299621543746505197594349849144916011169337508188943119360645463398134343285244683944568900572001555342919239554378793120110787859778425032081753247541643324957237845965965963244600325816895157835668688306250051451253665711498047541707922800819115453999350813074433599776404485259171889663622887203140623003880902404837160520547322062213910861089778225061016124214427668616370053336727508633540041319029648604842935987530962831559390340508191892438808119338304908928814178724775610368131677978892303707400139914954515035301041503989726522449837104026979963329095024792503935256641299287979333", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23957883350569839729372577472451374863865861660663156354485739375628335606180132296219467499527089538336345918816321964839333973724259505251498419776344321066027743389234199774837050555304100035819984703918091988583732024808488276470015907785945266092437274461601307647633085470984282716178006877038693241549113571785483900593768687606252632438747504304819411871496301602745415198994572179901394837023823214006129356212619595571049856341286194509490834632321859104495415632080966129903104245510562088972739631118756955112065853985402361101343961906372306904993917380597342865059121627353721237688057722633834658758159", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23545370910544366933854469134220418910621334135834434825438528631781814495225378963015728157813827323210906531414328275517998799117195589496920686991297488775108532362710865309733439162456127957194461934667300395275177455006898043278128562404263589000613172963607666782420149794695398128445835537921959701749885186760049984553885428003053431822276912272853946314534236147643489823938106420662621800504951387218885878231775671445759612003779807695972605265629538112011255887602189150217403548446170502991780005047882168979446158379806360470704814721142143406274658311221053681707349220894470644628048277175326438094623", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24019945914523030499317249982754818233939747490551684390629155060119885544430893628573732711349440322521200105243846349149061539728189204952459575134136219842941379922042941356498335163303873792842957090031529521718947668360376234494377491705814117861541914260986011041178627378602633592816637886390507183743614419077572459434314142230640374254920096056824410147993459461975378859452726457571170035344792314203561617749710586191226888221388631540133082410585082989341892723822478371659212951401938591751580062833285046459249053963252859920000910426801647561240952825948637527296708005199394091489691477350844644538611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22245182168583041930596858594194646912931683929521156240138982165264386229110472907165249689029021506720005750893820170440816943552722808556294084834094078127660276383597714849315828283635666506532734483141719349704450617185874685883174589760344200437063674075482171103354821649926385126164101762826080615479327693905866117602030615537566470798970731695999127344296279018676733880955001283050025956596343613892931237745548244645771587318142208063078865260909113885500660978638605995304034967699854206921105252008515956436273776101612994533864421781159329652138176638150942863298280916935982787560601562694560648815867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23158204629123074767163468390341744829153059259164649595953936300165262027134656600924223296079530842968349286528817626301643679372483924091354924376841211117972501056233066261801400384058345582431031187036445551828266185805671415671107230516813798108294985228552095573277125667488025002293408323320086827871832346658096674560385491871159765099230294269703936465979327944046622581351485828221631260921195143768476274296197685943664508608330517762651279888617740682339784491933257229714965834618499408346245519734036578995736890528955508649926082314380098314851888986155705103977297574269492508202015504772932361108973", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27257987302285508185439523299904768547482777706551936963181433332092301610154222046481487922130829088852838177282075934605947051281858750081099911804178334203930057919033093255430025776515546595318085653285453564041448081587977359174139008437513516820779695916235459997681500123430957361448862462303360360205779225122807645594747409436165479608330002247520075231081990645959943884176594508072721537270084752606901683288778246296025146364782389653650175861205656088051160753990478616314937219769086028344722941344319452745121917122738782578454975955162026336319299297391709837590603374938230624155443142663015529858483", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19863536032075863015577975655334834030273147647713782338763371634056862138550955105956630972374299961201324967709871650012808505395897998930706674167294367425079334027394350076687044098825323755142686245312351052438237191310132165060053372266445991891608848167470921075661491842906014719359623035388350214736696198588910470045941370086636729450624206931295944281941551387084258766576368439047062060210941498187276004214953450395678723905446636778383476958782112961678461999691382463674668793727282538908807223423702002651357630419401616942272411509716745691004996811654503409364000916358889048125113873852944601541169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24136020466075374406033150287533030098629322262370361026471815145703618288484508996523973310317928509838032232845458490540813237836847156217029817210752135020373236568691584726581519717980152954752982704623845661386432090377759582605455653461580346925092077203896822334707235964666441724660854850894363893509850656657651398572381926390078462043315122057234343287561567920070159083904151047073880820216409369029432400601278496809571635646721099951745460996931900872754727813981650963573180688494493211845471943035504202450664699235265826530408041769685409699040266925375766330327184600689533325015520194712791499789531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21180572237706196307840190235474901760965325063611004255371586962517576062115688244611429420142450406988540850726720187453972452957877391516654489906891272740608600954997264779856599824903662367793885709775781464581309427013954093794249011805344350210423703602225448799464976233717102891829672835501322181172079139996855338660286073548100025666613980319444746223007900517038876442266794202386575159627754439389333320400113491416954965711091237069639056003177308312284629715067278786305219657338574942756217762336514628822818576507833323404425581609071649966464455729840434849564464732095003428079630962752494925264213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20561547672883725113654045529494332241721589172679963836442579278626301051338441741299521791241424991480736301207647114462849265366255684490844360153371875329237325927407418251827183831039667851446486431527817063892653172095506399168864079964268291543833734694988918484438294979977405847846270965609655233200912479099777999191945683259929649689586118893898533243531532724672155868308034850227157054460748264826705798689673406351606618280467602484504192029006543620014996911326850944196265894205454082400724758268995696870076732620401812975290312377810006244718390270832327485041737595399876850134382928103031092474819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21817559413516581606175272653729742921370817070836350483628057669168510804783332607438048244284573319619185768714473771135231693814516909023478629802745674998186372230201048539789110118726633455362765485541264101934192194265842821714870712075878017221215519420198623636654887556249110289921396778969634320567228012252440007231609626336667057844193764774333588492520112635260174097600783909151951810070211229535348393798980193645493947735782721158890914632730293278347269055055957488473920174361758960779622915096844996536255678239040486081122997514323137500346544262260037951770309320079670024420630986248470946988081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29833739216939067476949078764272615560421280130711835631415878371602239203824627279674420847408489623960820811518702203017690234714729949659881244182027039489791931525971691060696348133497275153555794921668362369407789316065497966457983387912843853647662459774839676383593827716194585290978235241813776659687725834006865299191354455715079535753054819036712276078651378169272396714084019812713595429938486248806051261672791922491024993785958673033985487699796691376810593678041248807406595314467087816683354886265989758801182415790133853692595904661005287875835612487038083693923687941777165922514010518371690849679889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30442115380781456437925039394135533151693135751521586227518554013109359378138025469946967220363209144026572602269815414297909559960369645510404272365403720515636259252904374440490230470716320485010625833870501768116242615963137194604779441290468262631157918253199639029363813026272195664468342955359145015081302454835623435725725889654449540656801655231606978696470024834379866357718284549890547425023623291071749283367266082720570964866027515592685718264412849397671134623766412755519372981755149793911217122528469150186216184515476039358788259125528529021615519915535031908339646590694449321084591195713990243386609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26288680946381352914091842942275993776215139647339461310228655626145126273262561242052584115054237593604276591683527831760282763366807111491405904852256245733602376722219824003696001836462447687899036110023959546898658559916004843241051185810863730785629078513861015489379401179361946562968608718911212039950069729721509707190005826116150455024066855400691191347750232518229670187341710707035623896421736196598285881994585087422332497138496223183882290915276782563955692580817774051514632943445592835381524468417038124509598373356995492267946082686034139453035899856359248391620647433247800527783483012443179164687411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25583410048693321176613317325444862586391684107741456700555414611397847793001891506275792179050359907062595857255914434560397645131882289629923862122886957217796401428908552933516022183147682437154403111031718901974709098821325681862570350700589780878050615874405212552654425391528420747730628428621381977878891682145815658185414171580999131574295885140671560281533721587140008067331208928585571633766561068075155355635105207202699924215024613518980282951002998644132656681578403539513736403109968260616947132684191436862291176560123374811761564548211419218967149581930853401610776031612126022392274710547231503506993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25246703823347305588975603195899423425917495497241250610190297011785689201719713663032877968028251874561199361278342449254134434145688807216486884136209171844732644767221040052370147080510343487718313480078312365482752834784645146729165609932970165702374779810708379273585359027893347174877352361000575311956164297051455649863781393578532230777385967090463069891577315266551911356259435464640832054892563659849588195945197052657739617651042429878664527802145056289354000891792575516675073747873729173148626373014734274267949839193408951752922069367581204443683065525108738622398987092512853967780365201541793617213829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28640039936003179905676608621010918544872132937858661366040532403998470868241674022728581450787902040563146373725572979759935369007820573516498019858924696237037791863145607561567778686519978845408958237229610022379448596873064243815169664459052367553236024120203869799456268579338496535941070012023124887247066199877414057874186847014194685851977381390256045985616959601904132257258277190440183908503727570775208980006770146106515098824834120544498802944394402966221127389043141343111000070093209573611574928471044107961930800809861008971316983812803309429971430633286206356261906451216261720702507675369986767165573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24101943981441465038726185687315762217138739202197396075997255274563045380770857770011237274423897611651856284611005669761404445720346965734801621242510607762835095252198004496149916788436860811579405304854144857954148333530454027890823195319240396920976196021828210286692169367104042429005221730606953506428311760279399361045203251451647234206313448203574656979039168224593723286058647671564330999097423745998852306574784280486788897068554623774368127943728297076092097279922638222703547188314369978984490628530554731750603765773865585864174845200906212962370867665272468594047998411632970378780212451470189407378089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25348205020518804151575649598577321", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22965406932156658389443926981723399", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21246808955076577708947310745601923", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23818075646667172423895730232670873", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22684809395922999415411247212839581", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22509634841988509976888903831762896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21272904260626749589493466438951601", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21395680295102810910257325373719078", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22246331758523949808511276100007429", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22349699546538816647628227784230585", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23044348222529722689115364448497380", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23726318396137265821680436350699861", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21729941316848365251444828096709256", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24887719494627434157906028568940818", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21944499744422040069526951502419074", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21698521897976402601069976047557569", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21492029950942642767070565621255648", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21608467995012262241807345161786765", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24578641100448894173589218529827814", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25923112288624143774101887303464570", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22797296374400304668382946140631562", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25276050135614651430037448581537321", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21924486816959712169223496695006997", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24179019710613353400323153637166990", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22833585116274117123903533583905033", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22910549567974198115636269089488624", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21468090696347822140451726305952276", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25801934495035691912599524621360294", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22501483437571574296533753351545735", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25726101936902894406460438610064140", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22171635385819922179472110230391840", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25808517869796360181493455408123989", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23173469755113899179097649248645926", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21166274098372502179512486092186682", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24214850523110171066106622859836600", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25828906600354984443006696160056575", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23282066372704977554207054202932909", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21477308084536713729619789611155455", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20877264325702213893291433664262962", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25185117663883249625546813982979157", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23122458836363462718210950367239667", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22365687559858168477512579260044563", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24928792814632658920566050162089562", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21491066348539843433048948187598372", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21510353870060867798631596363892961", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22134811080412658155186032413504245", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21487139267140182794929979524107696", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21325614012882189644030228326699395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22451192575659744872865312982028652", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22454163916088095693557391233624339", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28942548186135146465298977982342799968823139117438314542044349949788679031735560072651360060185794102672716523356919729290225634139662116235615732161579630108373656934341623382564841502298284980509018785608054079680853979141706471375724989300234124500510970829450794058174301204031529629715747407352455018169849542654955704954350153798544754456679590377288260478318226991173561278611925073453901394542775065942187838003279845656686517926475173489941243109898506803807173699121789641450611951525419048514071589062525910042261101557117822736849878650271694577962787933032255027599318880932881106834766121412762707016023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25086875685972091164759237194326233587718959416404168969533037237630113198823654598270392866429659675124378425724516181224120431347191440871976905265455352646729352586522236639746589659396002424664998515943328671765524330221630549050780448356538366191838091641124368471903020381543754221420331474121914203871629730987258752180671809192742063794770554444785217274007371552894480128634554918790024731233656479703008311822203098318022773210710661902414425416209400084906863818907910773184669566028403073557084451756429131484365048817676163192780825599122785042501997944949335838738017261425727834513767355382968492734937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22951238109855436936703619677630235297147930195270296720326468110023130602479016961022339157210664615729723614180829497498346353885281185814707787554494701729724592938591567042071440574935146165423541064811448855757508584544755438605424059173969176304767581062341110526527044402228835520316020906005939721850382895414014121433210165872062295791382450147104454180246047185851042482961358089202585372821446855048284967164923011545792015021106670010613539955178603483147624781206212196377673047260963484209979741711621061734755350717675976272827625932752354944519149605023054313227372116565313883965268982382163571617511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24409775562573167113086029711377050953390109341100817282066894658777365085230002523454288291461024133079786981227054233450565436984260783961966346029279256733331486716212732258103029557485221780861229714041894179401852079405260681511775158772771111973220485014983385593861747274637554901142657562434683603506184106803772707662274852003844130963152846743715524963312131356547993569040483220975212507584965291315429541354832323967961349724943319141339924228407187223965828407919363238362593603524298673372095627997994997266800944140552379610059357156894251292879690738953406703261144995376071726601019974089544967641749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21305469587410712938464264561771766935118732393650445611640830366814159002505812555725237381551565889742083048486126333247217766924439640781808539819530659471865308450056150572244425565817329326528718261145593343536567937164898890736124082302375109050775702884997325703227639635043994464018133912469083114930463403077385810488911883540295726899603069466314901056548773044985274595438315084863888238595751793272884458265846490800455164865309889402268155749461798642002791336086273433427491505378944058806091224615644257433522311361899208778517031644218631918503660620628969248126526309937958691547208943795102933074611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23842935844404758828766346102491598", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22166217134386669125816519995048818", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26642813841246536751712381114455266897752165803821622254618078729644315893553374574827793906246228458137754642275431327370616792035201958811558171310798289607249419581620743281876907215034628923742888127507001318467628697105363459141870193800030621601964042655457951790833272554272990123445852845085132441750960618641069971853959532554274486651177083661707767717303710780707992452134225578000536200704817666928681852325760439999653514510821273731565134449321999086703509824644304716390588168894895432901318389653629905130400617198710484483099993169243065021538989133441737316984350564919191745012840027859867614278993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25106351133153367614928058171283121621264128855417099848114642936759306196929397486621700927360008498102836319916513350391116944259012792534013394230408280557373078990362547688815137583779207347727690298553104472065736007129088341220327737466024171005620587308933580766155900881033702042271962899769269272294351375899075958407144308630141539934762769796935134713460810490659950816967790196330073940734109965915399443126352309754393294039040503954612989599257561302807125501760016765140712319151269540921811866893711209818555002126403039898778902832051845503958853144659344302809021965598072797581021502706959026230059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22170634551342349863636902049365334598170248732720534124809587224900673934305327672751165418762911412954766868563527458254459074093216962111800446537248748118135166748630305298563478699556235390141998862351337031484698914468912762628265978133298993582492370721233800877783585814177699771224890159622644362501167770450726885538720075091183537433743934932252336038785960537113013501925796908256546710079228504104596779366963943406866455452900377098861406932115863800391197442540387505633288513278677179024823360559999308350973893318049732955352439376992839132615489455633229908743492619206608967137848096412656053272229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24518563652393380706612993594148342928832076464434239931639424567525086352433481654482539236188311582059870555789286413381979417855924219656878891725595286378363804712833031274973757477664914859993196099052639550642231724294719659221689753469692570265828428519315944669122467773900833020667837973639523472461039926674598722672346466735105178893354688773655061028205811377466055120749776099984809284387039347534095455348441889799606787799643935691889645867401251145167628674774947115182860180059679920036728018099989897711927842279163110855568216416683670044320020831376399813874441431552659720951320763667370410533877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20620353932694647081446518566744519017360888848567046699044133892166693620400730980995110654420780710817644986645604771128379773340280542622598915245943572335211731739473679621826744333954074794144955612330443444283467087445259204623211374140213711933329799111969430579198680365299942698398924119256388132194796791833408804158082043450429667265541610521433371579815599008855499816267110711651896188932165583669682841243169112696493278846439256571161790121808506302282644622087270931690614246876852095709257921123581780974574872113771926906182813220507952183589192829790075438234208149963824104882303430237337739393963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30191805112798226889016263159410926791863361599447610761310803942477559990768632132969103574713778156169868899119116452171391830841629458563677941119913928442456434169849820300913974106822957156646674251918784843089394347256144242896238137254721840748332878873820877747450345128063595017084032344537628280494878700328221781371030372833182059400806562365032151171862008365767801993962424431867191656145711787016621891638410140304756913175364647614797032992755260543521122293426460616140744595871167174510977020431029790639531630348884089043721787000578948118897810400732121848481451542443521567143015404127855658126673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "22061160414154341932071296476845177", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22827428022602793808204513687974056", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "732501463737670863929450068204378163225592516560050284964774794373683911450441922604722254924983391669198329288315213818636279767576263033647319245309506591580098083136254021124783636766333324704555124526220526771841674652269659461777683888406299087100488162904572984562805292285495373299435185155102098105550365345307609472500679333704969500285842815634691453440556287610444858696889358776668741668156319559573579842581341345511146264265643156988536826400796085352667823254940725238956155362620518562616119318830077251465038363101674104874748325123022882894149736715427000075291146660442908703797250745582162966295409341160002469307295054313582634228469262144320661965188863185985394390852671603553852911954128365114784749407321131953372970839278196230539831053438289167724813414625690948703033996706504612939796020760404252241977349977939238527428896526454529269019101658113380885619617872680766324489522567425276725131722695872366264171271009785267567451912250566472620402619703941265248867227316599714617811185373949972328986260839746596619259404243046816254666338387851687446744658593491516701183790317520421609610462066633813884425629168283847164285521712742007241496881437518641345207643119103330292039136299817131381661086707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26148330457349141622183286822715325929326912674397523155143291117101513345779625826835985953787457387725328149878723491386867171325962900643716261658153812356246215532252217070661505017236900839461294918234741092023841200002855605858314303667478477476695779123130927722408934726332749353864001643996963479753843832662482345249638785272103692098229262197024523040234624612272839566584131074773993353767988812300595457325165881879614268473142815998575282673020449934480896630777407866649760047930744541683360123032088259737527879318385029556922621153842749788465974021137305051734744422552791535488485988221325805402529", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "28667689188901536037136899104226802910741995962505867153513294161788438149571513567896097295705341366679397151279574892642381141907718582275437746559669967758955623038406477563765901696753824358056698715614967724313267599091103219903195487824152605463116660186408366920335341734054808997703059014394120371853596114413592512294799835043236002419855124064353664180630331064665296485096964785185862370322211625155215550058535759506469651891759565059330114381855560339723791791947277841658726496349364115676513490514539890928794995071905392895599397424975958514731694973225345083886699243806055328801122500545261137215287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25611037348149677255187585035695935", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22832705810451448119890223906125368", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24448688196607345047988406454194728515980924589443301959516540544320003483386742707177851393182390105217710675555157972852961384486166185307943612111700842759918217971583098683500640821216454416681245050211927346828478314489566923628717577430495319051244870919285950545003980211240527953704303289563400747084098368999229584295107199036319615029769179802213310013733696509008516728089364476046507906391247889113316180898803191928836918223965991089313377345366199864545205563928597283291145874820924673524917865396217323169540545858206710608239974314984600645676364445043125007889536894346236627088426150668776529756211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19832195499891514028146297551788980670845412252695936786355628078930901656956147941152132891319690897998082046549131097162248083310506504912527519088087776505222615878026847778583748082575861545704924940150163963527021947653088363346506092632065051057837955037333317339242712166896511945621379971195455983662938635324288745506319748727336909342963334036933743633950094104649606560267741654888581741632290022004916953689533893890171414569806109298462350232963086944806558054837450749242126549506310241466377019433730586301211122808485434411210555037602664318300107483270235494469272402022058395404072208400422398804119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23684274882130432715988200161949784685015101041559224253918332295686039170417836967674253360437807760093310288224030358779236455748481083885933047518427645741998169181057579924581328379582280894289489405576415617663472890018793479194091373711664195413213216300654320262046322632115600606916414057355706250464666732691598933781817034426661912736158934730435345656647128178661469258147662262618397273087779977170341592283945735010025217505656844754334645473312107383265879182619818119973682699565123905261504998922285288326679536513880164034099617864821885495196600246325123556327367283629485117712277749317634854485797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25252210695716595361062419035326856055092957505373027955999404030473513654666332125637457910263261673628631491371865649954494787139230710136929583952252842939965489597846949302243203295129066722652847314092383792752390665367564670504654319433994285597045663515019063354124941390504822131016009876718773465751147026564931702129043575012880516537305084065086744795113615008425782840208810644353950349322588517205865857633487168532966376342631512453912687397308709858052013895527983613947046663564331578862647017766885568286580807797650871377827427666134165535140450105784061244221055861270641352786173477528799387568053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "710471364986329845445345330069505690414718377152031936430772523495771150190855447678999908297752207445287979109371756238525461952004438559669104234801939944406457535456783792373053787683621934743784797926983802421790099865148550131950366882495357070625484045614834284406784336234590379879628740125327155068430522750077407020008373868230687066171643577556121376549561377097617081605158804580718087185370162302027487532899013243464669391128798497347105529059569065251096202971423299219861282844736306132675009335771999409354714659094276247252475743777402438573153766357520863416313545420998497387863724226690022149042177563500215478010898848122091635198269680839604873817337644305945460861066608422172393264750517233815705217181697704200025846148520276473992577416817371983340544057932626300233669847533736792111961124853213348087485968365245106809619699857338969942950859242536345296482546452425941601628324002182875738658721124561669116019532047941416358402567299948123279476998827010738852191314861167635195652085798870970598669421979217554074782186003248358197114089285248347248985984319407773547709212132131797523807467171412715911214401206289399097878717985951620868988844908131668097961165429707394792859118982163402432866670657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "829213460591726516033096255403090191440224274619554648657546771008937380850461334345756562991659514893876665913329925799939050639694430887194311362082065082910494440694911051261417697152532550139733569622348426578746224284044387981173018980315026616277785201833093891567605107396136250698758431615562405581273981983820908895491325326317156596133970810594766917570633031651863561148553743267497234225892682580250742250656904978378983322651165420296696391767050735234838028089994803578898130576032632137963900946454634016109283497010792027661193381397563387826186094959702310974700297304055225372025561783737892312015658255417206275419107716453813496459872588412287104702175570101592129382549829679432931262250702163768220747718913702010913104851802393526574428761264820038585049142148519779060280251862198556747116996668348186416535754499102276695210913909809784821317756591958356581243617001926033180695835592171897737698219806449525594921261997619378476113975348504182306194191791617718684559868449817393019584947262508039012129444583137597234725450276010512883581599302606828002680955055530327506974532762780437676161030495589959225724688092497058569230522308080778199811699493087061562691284561171367513096542334750872623396653337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21339157626209451639753182494595803693959195755480196077980684332522413139993828081512914850535440647489125734465614149425350132053102332037199664605426579403200841480039641167246314249831647525324783569388431169998720868623015036212331495893378925964631639399354322417571134463923296636320152801883326406272785961956044173207082268798081299330940445704585731326008695932356951825304419944596024000260578335290922267618822689297161190583348848010006037811375354807865694244395845800781306009149182774820147421030261498820648449923850529473471934180111824708469378304912140765995588574524175035042901288988843394771433", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "21696387436647830712104078876482363519840354051510034844609089081599526361458978705126078223534763541004671214793594453383356125610378428772003786244263435774474877756374878993844620225151247091833722216025995803200830172241753172216550459708773163563673172640401937384391690755941421491792855084501490825516111215494482418849750181936130619425745395681817176409212757842083105974288551127635320699790028439487180682019665010470317853483125990005960813175804898507119775831699974050388717415956670223699486415420967010906556908888381937694463353803863439990024743223969426281852311444481609457224323356764876679124691", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23151516105382812906578916342542047291420279081050201751626710829952819723348807467976298733006501940797084377203476669341965404518347573264887611786852372934458572369986708698354100459635354143710749791273576436123924878066435695912864759781907327295991984701520073596113480205979580741137121709928392230097043090497808907880450216082141630976761121176968672470552001030282145815449843468537751440924001582147622445499948118327778484968481554420384404794507125760991941728268945550540914061601005685681242941491130527625199921671046075828190339695142986869184270459050735173525062814257401295390139106303379799743503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28020664171077789265449627361990281357073421016133987013669827877862467484058845965107094592023200733089508472538552938089437495208099602749077624564022829168853744580071436697503443154850054335953163543430589748048772207079041495402755565859370108571736565265050855090003458602845972679467636107965342871502378170636817271537858576333965166495367966023088602752826890526153483956222133407630411660659069653150464581786152839259254896380223253149550868466769828960876779506671612472452245609328663177857705205021526169080709837790036855658227766953327865617047130341513841653373067629408295434801188598082216145580341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22981925630286487537602676750690257839093223885176981819118537820540388423189368862094151699095102172464569211654874063771759377582257592433356420436570882072275230511879337820819033743099263315228752855113682258315338118905557801905084646320929106828685399549102538723707105934689950167148227095359164446084390989539360033597634269010800800165159880070470223709533580114558818404578273455066268442149468821389117426874087105203646768396604774006859236915286966103741921925100792693907106916679214823439534063553970909042138379325369232672266951421621600741610058912115350332934343658485918196217898225682380136890531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27020639919281750897135639900114555978969398062232854667751574470524976648917334629809002687244853563837697219402709209908576133912740226580895450367698574954382669680552663891971303609298309026189344357615395173021343327385378268157991140882292560815547230690138349696249396556153036687497147812309918544639453602314131889221217896231138992516839550330208109109843455190748804963616954708381492627119014299254125728149804490451442994154217263219430879053768441970679052567034754907397331734656962166505675095689205215355833295913872087572051539566744916750615801975719715558553756857811155630480038974728376739779827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23275151908315205598529702096634452936346090991685782286604023668605429787826256265752954337619144542007803057298011570792372874046935682551581111940327569460099246157798521800004151813522631113395209856830078499737751264515502555606732120777195936344034382220838600017969983875705629872960135333615095683675786799567005786354273134995973514529287259097559392335498636284187729241879576000257845728942236879840482170915556246934264294340310457170685916710706702541875691178124477978675152869681196835263401128736088019779168998407717890251413495875684769918255797094836204659328256464137138724577462089482672178658087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24805935992980447537850802318663497402284453105177775729558501306492024915276747558121837065006684511773968133655150794220385788579281286594672410570678209435390027310006099242248289134291348193542826316528605332412994662356758623361462155520268197481557526299641040156585089195270310523235989905537234151191729594794641618199992233857198929679489311157120010370557389156916035700278924737030414252620285460578563578114892754865913575145241380668079832761189534248776793228421564859471968700268657803689041146659224465990008055291754612869520020793330655275364994747021349664254484766693742394476938414087165607817693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24374530189082933982402384544092077766527459789925205363949747797689671636256875986663561010093508846092276806955250871406973226670418386162082640036202871681227368156886962409708971341869246577253923096474337977320716131602832600798138349612666464950512569334151568621838268624231283473598874600227172591026486011300613019731574953119337280798319550822508787855872686467078251090902164891206666850199236203283625772872115649855735372311321202676047408730270496868608671366289864483828738915773932334775706055904645495785706539738159262491365796375534696462111746606099069940316345757053715292274494611728490008328413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26717449997410336515953007335197139219446506245158270458857490796537098075283158251887752546324339947396562672810048885380140515302736648162587792022563639422850231355548263855367692743808363093535194480323193364124226245466891779250143760103361409719468416160995175136840630139141755229362288492801573558817013303864640958618452264167205325734155346010869458534595674162732215016961171143449843253795544519775661189458934257302047720246208455574746941671192979593974037844585353191692428188216900880820748083796662853572281520475894442841124272278259387744466357329343766461575824754748665289327936175112927508932521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24472311619335035972015169318566917825047537000729705782178236039696176394632364825489320363397397516199279820915898630198298462226537295337273175309686250769251698032605138406517116697692954148994304473116028731620888841154979133561235435064785763241642951351276793000874524008674635764940320462733845309148187400432636022639985909662548972125690904689122175066987972812899451899344969707848998270862339286601971800922685102047270127980555903527710782439262868026920931191630706582676939973871539972978560060462601801607358176869122314255598255773024018816483012129125900404260398335794324302671481168020937537184541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21024045443568795430855011943791129399148620781683092572683320707388696173786578285864040912625751424592901862707933182423844379311649553670455413902291634111801642737653012028735930758323037223903593474605680403490866692001818137757161238299591400613330646519225106044753046049320387277269451700267929282903273011647661131037849685930139434273386023377936423710531866080575484595868567680018230989087043496063163039861915189193546094296360608791743297923244443050134207830506849528680154838500301143530225595190472136231081465038690171375612829198185986675745826745104492171832572008451548118125844944803645548451851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25173211632128957806073007290185247744940528077682735988758722758443145936912981150816678724641433990966986917257656742987768561951726336233993948629622373155171823397375497140769609896033638293051478176903743743819638566307204795919323903036726295496622241564126308797421882565684974390663939906492511387992523545719104060281727948812034795989415765226773602556262395056540939254085141333388128947142738741841034031337059138353879369570085727106028822659003672221849377057789628407725760816670881549827504102565776877280010603551821311816003321056442689462344575916575098924955744222132177067767680835546430483810671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23680607811986590033070013897697162973927838159909664032068184764426488094390663012804217881479560725985030586480823436243054384956830496644721639764163507363632966436459476054448996609725161615046542219530356869867330627177860695953225005673028432098056757957603744591956082769973366325665684627271276984679699929480612328630612812639555361058848735778308636994516205725043810518845052958306311650118082325867928160006982140578276552655569935481682934963276335470049372886181939969950992263305907823651396033445205754832497905587746578071105427335690243849479339341981733047741872879640318630473032414152856254339371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25225770521951594699830637748240468259675089218352489080487842063355578668251407949523271998399688110689866078343380049592476383840732229356107451573816473648536802610321396233780050770885544118951950539203132713697084354403573935200356887504857672942483370360091431706967726888880534538760765362205638614869506320464127040392580324676632750756604418852277569712199265107982989877166363038873015489700447841935325550343276630060293983494265914224024454686667457693382990116870373842520880113083056885654159065275283010210087428269536874142463492880067878924041408141870647368391765131152573655874782349729416841075009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24138106710252184549105990140793946502200314055755832545620518300668769047476115369908057482220723980119363957276269573255040565765062792271152568379405984924610849164724052606737101244388753840395285707750318375645827162804634108713622028294346252304962486296667475095057437937383526964592311426014628491881271641150316372284470401409014633406410467654417867836576831407463130436680988914501568167084004662936507875681824038707974944378044633528021468491732112321908037493116225817823883213237308836071438847035684145166661392620839651993891622163191188595216583364379677315515628343524152916556435009282020355546207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29136116377718412763878650711529173581362008555844228200999917812698607432137511334372768552400325974913904816158324576058033609782830657972058532089363847183877689414776966264521061314394128402302079294451421526649842440533505914356467371989114721185285541412217625494295901044110142298173772582857648658214914441280635711751267108435846288290337960497604701743806164861700925163521000418912581631602309942172038301790791920297110192728902692564415459438692863495298607923999179650387106195264788267470190702705665049858501501715606360294919294756849995099823312243147420250675057733310283043555821380746176845681917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25591103002708097678799932888505739111770470982396579380567792643921978439078499981930524914420732414696458394582707752592291423727341629990735187431944276923634049366407477510330054219253524119954172648437222337043960053168417149836635325584579054239186704282566853623996639174925811541330781961266358763126064574992826610263500825023446965166444766027937402091659079188044199472712695790957600907353404968880295403925946847552803506895091290602651602705242391304915192333053604593664513666736181267753440736777446330837699518135997877182386457783831356908000637874988436178122320147183783030822447291425456325888729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26757432796392527925484593494630734711435812555856574910515895953816757515462172175247196907709933546795337072501461631624282818573689459601346740311377363469323441303739637335738240575853722966767201790505738935527339858654221432731168228417489794287903028179691287950550950089711621790575465067621750109349712178010966097510832865041001984362234943561450822383692303394202995613111926045262415786335681830003843540666860427136489567772668498565933098829268122203302967062220922689877166197546055891797906881741288908537867633925214089051345887474864916696928415048298889888570887663068945121820605951790719952473581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26784369491722990766253850109647807512435142709317538589073413813384595460483257109585851764291804872565276004513034847832638707470463550260166652598271074896957588617442161270539411120830108274694685951586327883619781555549193036772795678365070635822462017060685772127846988612940472184820588092759224242093613101454976519812863448838593898212682554957065202274453718059675689818263371918828265385453231155938248337754617281062253412314566889468004951321223959689608572406506560934319182674886890787024290050424370925960583689657450933535292483370465253588627120254445041002087443346049776786538350037112636184431129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22730440504714395054360063026115424436291991458987363496674891484315543388510184690123790478377145315935037958756643223943121571119010890601275895142038680142577938640535751820835004829864370053165412105201550067180019789012827385048943840109792160961011962403343874855847720864829519828081606032490180993226887488740325726473384535003599237030275739150357945758611939490482349426062034437500280627209573537906305626698075633195975414236168964457772222259905498019256658082482256609871313901828167467984056720173979598149135762564243477150228860184029743692392519805709582083394517401516087966697873423297639435865971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27753057217332197315014846868207190501922849161961051944923210754154810740867017258956351626917827656635288240746538773266016910378016651748494274453348337700937452139431906706898138279144325507921769513236133485339889389178073264994315100099005007766579913915847609120771026813571662318103068252036971611927359852140253010834702316777919290093541519407802483450098354246655303697327334714132957809203310194468105939178200103397891571185470777544488284856502807956194678515904312069257702560041193407200123001508738307133882154840331000236974553646185200369632900910679783547620316091796325110573988073185511232787929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24393552475134397228413143628616285229570165200287599764985544578123343085991628219600807429813105030794796965177804338420698660251020377919240142255328974018650466355318603001070392053032627817397212502216573227719833956614585630207383241903011780843265635881748036623919907919806978978725280141572102701223766108711750516418761494605572690853142155025154748421496164766864218329604318988675129754758460029702021076019611441527376311231062801173623928544932091596318906014842059206368022672063689419516040864231488044741459569445806393117271954770592415909111907017486146352532705725039421365782236400017750449335173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25205506714986081484211143963149617896572675672250755654712998595149975480216131963406647239475600258450224925099617057746743674074724286410391560883167265684146653597406985587463472222033170143816506870609501966234684550420694914001838519575139101781554977372103122096689415117089531583231875239971649442572349526230175937610589475040659222638194709319839460262213874938758707781527653478913945175460908430118245629197803201401588690264230522676281853883921433340996099832141804804509896635854058307434222954484482640004603183732573815589801493543721889476498951727974856388970090210212654460047632372652404829750357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30237173084416307633034312683688865716613241295889241037767554735749336408982516386402752084540176318906701294899173479691971807863733245182247177125461676229465324111922160259589979472975264272490960846714035095696273777006203415628558852013668711053059996911894624874728962257152591370947819357980939745298336362054553773658209478037139729268727567142360831885906676318088561433059463602441563227600344943263055676418677014946387175377637105063280965792932415164191601088857826339615805238110194297190071776426091048440207533122648910032721927395446826444269093863701313351857149337123016877931357227086360418846279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25431979085486592100676988805737206423118801390420786525105121725275352294360113998742119827369717054985784976193266554071583943157882124704175805152300808428047850922061919235960165715962383785433754916838270998977223708506875604538862084540233461331561886933337170791687202571484137383739864533623868941320916983153383479486704835408323797684346397562236133138404957547542265044542454819360998060076015690861719611180119031784211212356668344744036073713881898616845356692857263476382406291848224949321938967773979051640236553849284318376557832582439525812464702419956450073565477437459777204365595377227299130555591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30576520348603988186835260951682363296298327195953026311004967630603591944380051815920817654156349712953717617360846769792828847277384241177043199972995016372272374228700677916483510713393380156628920855874514559998595513480534817002454624085504015503727764863274582137257724415835674167952526720235827294546584800874880369473496961173947156320340909678602897120443632848163088995691060911157746047812596326353773524570801043258609998479001801896146907421330999348643123037047482147552439542658025330876271445682335959362468163403486185886983950596377295433439604925695778226732285163763876691533071231645256758756791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25809135856544919687247089749720123826366617708118396914294175053323548134903670481606209166884350975178454640087574116913733040383611569762072831144482253935409681967894579148803387866047070607525003511928389581834124743358582055182392001751794987048020132140672898106520228498480618968711879131874285619643932278078800632027351493541524726262679749356663136901508540986066969290037030510521097352722317690086322420208692964098749939478389498540627323052530986614055270587462529691940379828490597609822686477705408047875948236393945192701621778483871968693211652049739183224758576337631721168522566109257906357228021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27110349332775557135216234872084980993113405314018405727521746151286213059867565552085899348259717058757934176596392131183676054293201541937626466870574721231503184156670029043773632788168306850382746787671841702883526402545455528385464589409504254144332079713354840995328856452990791932826366459175203942904418984179161985230581760493673706287593404867053994758218507154588659667274516708942018538557571843634419601906369395553033052587815207897271715748717635422099197240583829262932809367414258246888674541274615723856623109531838087123390308373261011904499765863169587462994726832262243048963218665105059242918997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "26652325622097289553367515308803784144528558527274503607327081079663080606567589290820663597589805748913449883601095560384514616966285734179601070752756194894584230846332914795807169418337504133343378932647370447992173126176666807906221755499244053510485955865388666831022986329601159990292578539530716262273683506734993261312791126491520530007114541199480820700970276256191932580880447404265311216162584461495786283076982139473126524907500189334091768861706154937342867729311749553136971307465917993285217488026361763885583124837186215955975465171425744431760719292368198196269702450962684657400992954952879948141589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27040670484527676102757876528179824572609064265568090277702057964321323397460556541930629995466753648228851854932316824298005730202123314955050911044736845729781541132130808744463185083141826146161686697449137817780434699571982886335713040713267939259558581336889845691900106701710150303010112001850204797762671467632005327809670035589097806384387861036763453429855127566262903443457674187132901327348335229185101781249473945758994192507394871478446245665617204045645719117005697013570643938786268551854116300256888346749037507324052700917653723060509051103743514694623671231517016100932421973697219366529278662545101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19948709841970683044286132246938678669737277066695168137271930806614682963277369343062775784896142899602463097311265851681294976996936095339319270124388261454886914378046704830751053267513758440358103286789717493553738635049199232353062059433469304526487796089452720911145163977098282836377410364208211416721547665927567557617657065603817327841072490612168822444861519682791652801917000625606179466722697020639037768588608732712322578016538211074919859393972702265975915779662709956749633088901258874863711373096084598274696370020777463136231832068352771542894471475411332479847468958204056242373536252447983860545709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20354182168688958085705100898527662703130676796327634980441656501862458171482497303447166886939345553450939363354831839256717752056888848758881994529045789598846104372449849446484649651763045884004889881251945262428429664451716590652859342601850191723001836043692569881138623505356280773510904799849041421834106230709023544234222137905083899019047583673524247229080248555966483118836167149447909468622855954271129998021531373753945816468699595684037807326116615006306529429211278792619745336212413539986743094409573546248794080924746464984634378607804999703195773630432650784907707674090650598897752769211554117410043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28253757517518711881890866868623926769809291127457572615906253785209295105716259111879077301324048212601695250755855523569752868674312354039839209231434712379710860398239530979082439247165037342957358016385066053401739530600353116322812307247203043675471386299691183415548235014954131730149920249871592397324604323340997091580858969336579522449091493660165627236776997725980831045622806803368479673818550120912401672900536165724096299471143126583594564688494376081156816945522319449143128884958999914502348011265010854822814979961079570678641578863762839073489770967851593328404508604068721371396090511626571668782709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19675152661505615702307458208625000492400617053838637755238421380270314595967604749355516633070680158347635152648166208601685133706552255051181240276541867573767274973687192058197790482100732199015746250094871746837489872735116921922237039016617526413365982583681719177917406522173261775756700099325314720249418218204732143228254059420692194957131549686153740458853885491622692580200145146354913060427026158329671493493688833784616766886364563594844825028930071324673797182817135400913733964514132776183603249992395757211599151179221443734561695253089712571101116812043944410205112859752203508890872261974031565765619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "30849743246749730775027083102418966557231784992388975411561237094771727836554533884197321661158687592294402711723067927629550371944850779368435426875230294930959280479561546984073337819523662092890199199977239308713785097510080007570982372143394984191463222997285240977051640259929918168525557766622675419065628657430391852899551462021966878471166493983472838304123101572532992720656769104282797143191180133116690407188251888079682917820168425964172404029088170357059164301677293312737051088158346226570521038364527677186232313538343941497058511246310887204617109705104034986787035008813513164837583123772083520827169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "27146554450964823342839014377280851534296457022141613334786793870957232773434229528487300427908707873493349575707185891773064345305778155234281069465413792275008181077620799327564922732525211069907219236910034244458362684347429398815182027828447912232918681999206413280319535397053853329397161192248981383015856181352374971193029347241883800952491362389726915397195919225564345894290870443476807915013640790439013048998581861961387637819918175272135901172730791414877947143789484133575870337104865649145766800688066816283870392753002267874531837206030791897682901805515999940929496785243890128027338888496291789301089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21019047124125132584521082432376498779979126720843427903970316063733455840956488284404017444611066566517214259906122920065748926372157511578598650140453930452912845778004530834741766637055070665834283728714077600744803260866663140837452227523775864081731038241788599947011953518805707949072644847889979240886467859717081479447623807623314725150327753351942794166849153540333659115729532194030078966535272180047928665656391030114642478766104553801669665122207282218473909034674874084955684133895239755008732304581635212317648137773949890033609756982319896675998374274280466123077246174824479027803007214452608528548581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23408668543968104312853324962708352", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21743594957342544064389008813180859", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "20808327837136312757939432741195571172357615362372610411668037701738914122406430791427359419140606878093095746834618753593807594552147482618208110185731571610223336941420898599310798156714067365438241739814805989772803306011484233862137039066005436042432752319624640358873933826010383676210780724507482815332521277426964716876728339706948168359872074369995627435995599182975891156495783397101243562607811728714684934193276558507884313606168458566835159892846330507242056066426798370395678509672702308522500511099632189396185172158253737818074629810810561146594139848100862204288077581437765308905488605066756942264547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "19921834483929148998171047529551536189889911535972938112834297930883470246033052696659693778689587374962890919674808243596346144835697785360955229937104615161280333409504638938825525114381571716060985225313790893314985092837320653783500298934816286797275526360434618213508459367330993457503836539965754177534435805915506594905759637538013409895401936496783778374486272408258113029687753343211874683824172979690988029673538350147786534411529363241448139823025933654407845543907147159870194819146771311642659530815001327799930970529192014690457712873318914286052737189876346332674636539459879653076226379636285164096981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "133825580321444223527848895023625510416274749939629988554732821556438231421531863979152352411225603115033508030231677389947575366820116337169217796951905210537780214979541811333870173312042265581938259058173866100757839837573068965809900388302571335638933707087514520702628867379381433180505237420143611462609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "153929760055630361915559505555091569718148324453212400071683148448582941908881862535204803612104518732402718337078072504452270941957210877942195986311217612610020981535849961554908317135532525574009659604591715452657367796884773717558791265371561771330239260740600655265865488559186864196889769257787149934461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24866708526621095765280121131173168457109035538372272768514510157504679942890734407758213530152386511974461000615321416105926021487911339559025523073173377794698867339015162307570437192911558821740260640488016176648138644395686357602680476228141809368698005965733132678277161511699826739510125857422933352254378611251988489231897390649127522034442513195750239199385251156118264999876206837521493766238384727346690620653816637946635204691285467016749213718434472900698436192018449297403236295106434585914586931812078756290718336746133089954051791505506578479454061665441372083813161928546671514540988473553334406904663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22510286269224160316074760393700766540020702624135756798837672518068083613721491622907392695022950845877566538391849000775132038463988367841963722598670162477898858245628671602401875664135823758904092246751531911786351889026338166540041661933533359509547957319473243435114094704241932422503172729455558485796092762619201724044348782425365622153921712645796597758458995735385120621671395957696335619557595733794037978932986764242465268950168559463731605093987648178307616615710765024608472027448871104353147125278955372258715040782800307516972380981762972677622905586155599741135349388279810516733622457445579273104321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24863370422412739508617379252868404348527632441800779581887947391930245631027551889658542816387761762955395917481727791701232240188069722531247343899084635779905897342667436420832092776999398428841308444556483164143665387403561217053667482791349769166458694921649530837246509967569331867487424668266946594503938700678514925147135591226682011790086464804424264841331895528265351886969861365933876919112433458426234429485826132847468124983709519741193716306056950919465240184634020032539783479689764622795715299280844667204332278203264203392369551358103572709523866572562876692506844337558305860815886444886789596522699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29218097716205786605325950166912639887909571958585996480536012189763855373740275474723816780721827214865008765811196253463222519274660972196214029947955129546033123245319753399054474265437311511468106896948146534098155311517521719899601896844353439262291771380896594621666946033090964280100554903770960906333034408051546934051739533023412717078395563326196388852754168390460162145127209764024281751645692435791347842309636934755900574869678242423932035793944608120749352217426190427341152907528756125964832795398834987460657673060725609762079548919756802572233779490382121181368318548273185610650206083819143944886841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23930210241770216378452931267745960022775406056307950426466635797006810331346918781210963126116871931669260097770497917540397012857430944068400351891288461760491629805354258861882481980541979769664844554254186800141208102042706769313770302994530317896043048872263949471090746789961171784236317947856679513468230621270565579160669925543415184691595692841719576543042527740512017855934609748204195510254982695505529983562395936004649396007568531573212187868278679809719436141123880992071408111452864843845910190740188353740147250029007756400802465241215792971060763161005331241785497009714509387881939431916976229580099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29393398775496223436626688361201194673659420360835510536807915895247362443804438197011960565670814428079969291200870288388981466227651935412138513799352219600542950273444538891292597958655588717620890375746714764197828156113098143128171085091249932901391555142991537822349072411558383164212738250071709676841015852410283790891622723815054381716509496297981047322628624779233673500490784277079454862702891260629627725239033460528196983481384981303758731764302664051383611064670017284638118499397133940177960034794351061062144085933127820899999770488441033810487658423473850876573555117823275004911542426737457491753301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28183668280229913007782774004093198568971035049224212350690276399393271876209405829978745560930554024644432850983633055467707418439482521901120522242663397991208370597211610563030420780266468835571765241515569495640504597065403117671457005944874155427999575118700310877175950925576808363149130359640031448903340499216220993458446455575306563108131056362898764050607198131582452052610950058156934641247814096521688624432284603641035613867742203514390684019874684336834384681022787442260225555219951732416087781597182882735967129779514739813837316067957527281999584051964673765193560454962618913504500215176605342051237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24131087810289214767954875315383108522575152343917741393922140841069868336893610959641869155926250861253656351624890378162210089584203336541499296501027601836959130982650940382542170354575032512071130682008584672818413147574458798624517566950527048246336546824931712175749699395069875674834735902672949167911393428754568563645392107599187099918997137800528183508675345574064283844025492068549118822183983751269235074844213173343735169206373689675486696620307857231336190181197314653175152048673528305193827789411637337310464541208904305816322689140447011235687886950297088251387445261078862827932190694598266419614057", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23607659407875031430122282994750099949876666110482189930043306034170763269410448534284016705347298354237788717086873631451085675617167225231765965219952171507466471732056895518463909257105951673657014902452958188259868650956417236595400580194263926208210787627485097285233741664383168035227762406679413133296861104490381446109874509755145182909516314520416669507640221089214792546302995252431800183904308131199117161215552064994761168464744266186702392268134666981596082313348009152117913527321218249397011730518055561369707047247195857677390089634959280319920633376678924734567073710937322863720440373695338528986261", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26054373132363646778457460348990954166545819022788539218899194063351481311909110883174993461985425593618422978383340059046007881461955434634362348208645772065570704244745397419134819088620475561381644737044520957272758425758241818245806512110363052436199487661202670684598920110655557932746314695586328735551827839609502385760088620904363148794686653344394089026383743522194852313934835475254377098194982959832211092919978790500336316179993689776393166438756199351688492838079303341462206652288348606123393374836883067300659683274041301931329929279090715495630715509240670565178040616649588479382921683197199822362629", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25256999952825530568273712099851198082279802396372643791208447036434005582665717258011122092649897076878652694736533552957105382326842028916987184954067282134724416848209061467698242123290375182809013292955990967553427895439438110759057846242050282422442223249619451619876529300975714306325410108091796778545992342449345001366605120618650249291015962118320034876761858563857603045894964638567669198418241280436386758380386882754520400128336676145348434201883736562752349581146013041562157406530007076326764509052379541990392377577042131460040520593713701743777215429972146861263100558162676379319591399519412354889619", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27794575047529496950979183993220996933290767053120338706571087861048370107611902431664989880705434546250744259283970092145305894799986370091520789675860176908129435379532162796626928150027421416268460974815703609610489378071158640532403116225607309213559360711522526907809906191708437155521570009188322215432909586860798617901613324514031640837378473573836780690199390435973547622924625767819130525940576893180167714615734612612255618824206907944146529889391155495888864263604820945657389966174402817146452439152152495857813399896834577132046432969039832552629946994539520789507560176935389838871915992892114441937891", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22492648384080139579037918651199250229765845821726108949086722159201283238794510256177963926372200335431409152438159456369311085491843490401021413102388829776733427323372761751618247311097012126230560911519957307086721519364689538001396689534225973803796422696103232885641166109275687367819355322603064234614897641459262225437987467097802206426652105715624717453612622130110290764091236298999766012889567515025084864883173602174364640795760102092356918747624037449847778689339826535883982144761919832406870878577297191196517965360433621024428169311193794020135719995076847565302133809738344045070919192679608259568773", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24159790971728862359625952701342451254498115445118298693086319360921451673082418943045415689353963248491207022623820595746217092541930847696987441327560197934247487023351796856522594138447947551369191841028873531059058824557798287761189966656616447153449900801281571390420786602867385687966622878834056949403578222673414421623061845685889978824587291696092850536924744612733729784820116601179557205651323069584696601227599162650318948978378401124573676049662169168438838791180783247665737009490836430585334769419569940484871026363245593588219292800281135439448352573764945748947113711382339660601935321950728792395287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23089456480232536825777471054056732748567966842136523550101217150439715075585872786833121300282209750678352100106292588331889239492642756865304465574361766460993777997237965985754461569069926417379200179762204920818827960011198661897422613053997316868632167939389224986972505144176674198636979213568449762274445254422391145274893305195315048643674874740685905352117171030992168102606690365100656212032527427260022259399195312738967489463742785409575716519443351350567666575542249806083416768376885855980158118989410937796937293120814494037837924292001236438253798034574307519912537918555393576531929167191270402905393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25247840187768410643582953430319398130512492272675494137920034207081862107331698393182848493025874846543850960784280084325572728170618218224147025623669248954114889131927358402189932638961371806154589300282647418692939849629739952671114835484794107014593223552996024752444513079974201093974627740406717102241231823199800001210957267798212597567124002800279623503235721912626665440923199691406401007704557735187037987771601215293783951348675268084933355702829844198985558170422547902138196754428942589157909232039363673695363118148341889796749239722448807834982106838316475010806549359694466317366382883117609930123757", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23493110548062476898809772205625639186906740746285687089588286275816803770644430429028419650584581617679547259381280683515467459188824000579933903841090120683055130600838695178903675377407628449721251665698050920842945696788464653418265075716332147016323901480016228087624788340173311472920892738222912603684425654823613648390974661868347539357794358412877848943627325464194904701200069787672773141952200564280990134739889409442794879122812772136135781991415257376946790037141323674728800759126975490836997288755002195020742334421494436651218750772962160976759618057963874338708156733253517412464076071115553976153567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24622727691781820360783876703418986503672762798104149544031745958321171952505908722667745072773178378956852679444532358007365705697646804939322999987810854670763669080628647952163130219484540550676032961295779756304323088520635072831098100349277573122692096519626388600000048422615151652611578247221669062419005947294029042436317873508657788245333311085932689722729409157630685004559344031021110012055900418894234317321188434321798285988897360715256480836134883055337892855562417404037921895736250768264571714194220903545920797416379377793560041092690904640530654535855754665606589969401345151171673674482902684867367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "23180132697550817379388740432973770", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22406856022841014863148500138957475", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19446263619274520344311251047582114812711957036635039042241219417616350460506895195367528930476736259715560056531599868383230482355518406729475941456154146834298034731216320468186786299271248281312193405547171145858585410953126546171360233271922584859247986655597390027682392363757004096282877535698611927904277213771203472566227595699315031556655588938086212166573261087309582162550553695393101124474212648629938773322076019896454957039801444234427763984232334567411939619497775283441412470412276316877970801852057433888166646323818102736906151270144020343416868235476296044420560720922156155780446684505892350099007", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20583305498781593691687698726999183014285528750057488578381303527485266272083167421385181361225668592351936831505398165682949469833261970907272279643563928049153072373830877349122470588372765523511581967884615606416000424588268576689725964486990252256805215504884245040495858753252497504199832262753377155825857818210714209592309121732165085302081951208727012441958222577119290378110713793348555055162275017001103454450214345558568809392904933467020974104295282466999766451351937814239230224757410265147144075853377531690544381201072401362283892651126500602932436696164816373402411951890055344268952974931108252552163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29647274687679225772164007635188089536615470705767932733483625631024693265167326680135786753987200478915226917620197616039392762015783793094140813982547796072789742179692631467384572210889255134849658015668060309221501673864369272070681277110029337298191964033814897324959700333426089420270690568319178625997439249136584150145519497646671823505191738215876093931990865469103716761275521633550774401275544671621456313575797299113023728663118320209662705087017162634370282426231579498614062525378807064395038703294295846968506251157840143373827600066851858819105518358069452244851682912964753016707217867774199259014893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21556181596918208199371200353937401980061654516438855299426227531570797347696803262324014326626337519389680157949113540265869425832086690483736971157203685812095158319752575489238766606069500671401405963623649349562175741629793784492534643844304601194931922910805343998074705969887285730539078467746697185202780037503331309633800388279944708238517703061157887347261584861709120393518279003649792465091145358294559993651815244589704608766427026635415306138267941663288037029393912540787663757290246727859546641884683773596188306886109033725743746431966401695518312615072606108323627406016557798958340458354636792518469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17209812602769867981214631324962930196998629297851934469281002467558787066167376252874487537088972808970170856706856097477935945456114413247140334591792767536345203444169914240474017465788417212018708585984524568319422356061129315486006151667486982967459018764643952975024287514993072515219598673412864490060678904875908717263131901938668286765148014137806606701832702351975434229688826542543566615881869054831011143608214640885727188822927870416626741551031002467752070562635482192550963547623370223393516358658374658069113554745515556345165115489107218768162934358425360087392847774548390894198769113662032648051741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279763814599285531502271716003316525292993974790269343594915883853249682132335990825103801324802220238061805758546908287631265013388235630339733594123503608247993802839037533587777008694008177859790950289319698308340957863186363182529248189966220137112259925192750543862264530297850962965451539132439127222382083302472722112967695135922118234025136153012110510882614921111453733285710012977807873781448278199005651829576195313056042123475316577629220302788279125034342289560503877169600848376119888352352288284299629926194219178001502062583090930036352244180844943591359026074754528148892583153775361387927413527837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371043558786061070465558819533015366903823227125294828945703814604765582035113512818742883580689556941570103565719530355745920023403209433002636162803784287919355021553476733197186641155713172553837963862059493297041429253409785415687358814217422615656822224817396743654111527166997382249740210088730241055313948967497540622982921209295576055301547524050833602719186088467473095616574702144947398279018605346138735887389656812538326610481849192192802702654091009967179534915940881574609510804127343283390975921439052116422078919541698825129515313672177030752372276609355050581205738300918389318593356179095603012297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17854875033770430272715314736380460200740908020079527648865908437630752306504924352678138915608004615470351585988987958337089498130086949417403165547906256194653490628119613250460150441379048027544928163038797947845794916629550184248977443800118763229413894426843799673655612656185024368392088525340709249538462429909131188505705821117634461422876566513291204810647695196830663049943637505225523510954392738782532575742900077837782392051613882420400861132306694933305560598115882205140178464321959296232545014808958310267823064340904938853141634967357435923257890286837747242252513678707043860310097723962859743309033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16195118495449975148723848310273712476006179528159282189131240858048987226838713507741853630152642210847538167725675262413098407347446273121930395074279429792715464063026590826368152933564520418695916502819781509844636459598436682415654841847237827509379732521660973701588145340144102697469841124290261756473875892178761138486138875036828457833614195831626904591072609292780512454989227477389794078674724219166765723816799296379749524891685910962365885514866956766111628536052139675131726822528481308629909784451506495349482206877050397310468351579856800044939767663961174230502476083302624775498582031275452796925943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292089514305423036113875791290665212200225443991555827217238440488258466386579878370325131569165614559745252409254277695756907808801263329570762199093006331320121158972907983783190273317849141479874071880959921201938130995285714336424831501407668729358340264983909737824118894886710436048625773933585895564669286456025659175621686735741031591345863206091942258781137452048975428025164520011176416888120458696387591946037574117089558720597205806992943163599672629206868687872874030726918125243183656956650409704941752091276163256100412418435299053313213062321281760487173342879089415353744651399600369347524832631357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21122532977274175172232645766258460204553545716495536855733168930260501455457688246471136077802138540568525320304171968895495656569688278454182585971750946016323781524638020777964047751008103306691518020888898386248045972806568835523446489559638746437003239921143369734026293740163524984351655674056110463394745975403673777251023178831933541751636799494411756672390029891929794317848606296250691809473259080186241348792713437885768645307610468209230204885615734008026980447543415180839842166687402384163041188194970861366621384965183223155483321621229488056447157588053967361725309919234117125840841053623525644288583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18677615642061077209585105239612650823216384979424937059086558142353560042842985269182367898235546227759506102142218893822291537408155060917608832873386290180786006101765102062345197441284294421341982942038749729095873485978212056183731535853641480962157575344682097375964673437392238611646346369034340295628303190362589097358632412243286874371983403758231105860793760133814399022307234180676932402085948183781694978891076115979754073237094814493191364803125382892669229443096686377178129772659450524567380587245350548655017474402828517845803830344220408257530583625964418637211537333272634785766321614503187736492111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298341467079186433796470710886896088726537606813908035363461484493811401224517556917869136978575345265151309192591168962629461855376445055063419406056117816148942544449905648408452232771941732586149212010208058055885308343546292663404521489662678889662979863748611171251909923311852389132475476765396445623791931731778479978914846869830640613405498629880461849998777120260960587444484282052119728813689898882817782528447727715573538639513193777882560300905015679511947088005912276518886370237446821670971992210748766302660331772655010073852328963944912056417877085458212466663851334429262845785299407328137316344741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17464790491003173980948633559738173230592515862518656426883581922829988530012132528648329700346934045852131170724466430943189157441996660760476625377487257745648174518949977425522330034746622218486335174031846722724293834008271026246371900260190074823251371244850603181727572209813927709376620144705649550508241701139197471806861660582458630449091138849346762706161550066797496123518537826186226933038947737185939219217727245893466549921226529063586201361822462166718801258903812687128693602244732457323932067684588253071072335667634294350307520262071517532515641734513240331974513190855379715623981831986434702226179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25871328999276796592988641763245116830964733652795077990548756433285949241004921555181140870341631172068337700487127228551602712421090301045091610698781339832758096623901478897661976419725199208002024976265849654586704368278647270364717647275812772798982205494655409605118819491049116648252270827538241480438105749804299102172641190781439969590964875485717440203026800495533612599919271587201390585356100948600975450415113298676546278298153475731680061257573560159303273411364148086176166048234629626870559823365785703251056114797806568056660109027655293851947396241390518925318198121008485715839406483456554794927691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16935050373104812753406670656801172058276898325749046567965381774011796181314251486816519398140423914991921712285360503355776182307627376744032410513743361624100318044974861475386086273647913906575165270636244164995560092388809194755687483646585965365484819425094502106137468338611082357313627091467661176921435011478039526309510784946422247403622699055491924264418509923787775296308105720358637807939598443261296206759802569580854298604156243758551104827335067955965081271131365984004552110142931050801741261767131102540287746656567486619891028835447158967592756906596062603445646804800491317243973794619146214728859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19999089772043791216185603449165508501588827713939504366155607386292803597953401927111561532945641655953787528138456923855260648860424209940971694356262667597882049292383016571617624970928857771712474764320815478160962683171213872402447416824999087016789606565266689870028000042063994504563847448852828373668084178998643018162261704872588409327099287310402282374794377550946258015269223275848991809447414917757143695574097035564611599609312234886738310523757157782086180020983767617598055005928216199631168315893364709616430461256531225602945278208713774183317906083763525482057977165605153291461955177371893558688651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24571923463133288214418686548479195978319463338428264118737200445521329417446588801111780847326553217134311228980424723903512042676345346226845940454338760331109974319077382782074805368127684616567245271368407883341046789674570754759892054921458016688081142903711863594136101604381337277721820639239649099667051978126991193051740608344717353544832446079898868669705903944456921908662469299935616661588162222717118683133384336497374776745574349377463317155281668996874427946089540671449659782749634692298532235054721320898946236491546532478195893467799048235200038458644498640955979426219969284194066982109090599096823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305335959134097243558774063598666205659150069236928439291954324269034269776559029841620425279919414780579504476842539884643291966701507448197261704010508821788935913034111910167914281354471647584015383894933893618875454556550727063780012489433324369012465891256215647091618965685156031450733361031621205639154971202477106896860999127699452815440805411850410981955045462550835486239910716951668234813536816366755763007388856021531586174334452718146626872508966587190103805861669458880207821763886338727780862031360202038940306647410471122856026561874769505584997435421776443486377993202489080200062943702788877692409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16234256757535429988493816401330106546909875963628642219495998066881947060900760150276719690429772889057644701788403015729487650839312652181617899024264428843872492548126099335901501768883718097446404803135842793006899972336845080039590651767485477776915944071665438789354890946301958673172311101454689074568384908380166282170470163957763655922424120066470841699569457418369892349639325659938711356472577630437970037695637005438761512859181984759091734228016815674137273686693088500483765756184855662514407944212701767658126476981756029826662373651587903245510371078405765944508476040180971739124932645008585324852289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345879887927488365605813980932519186602524016788047087172438275440026292726653621264659855358593856123661032031872249013096076448992727959824663095795490946115328100505241568935362773948429077060190799643482713408943713482767066282663701190227206004691705451344800941591119861500640433627922057973633378940331435748995160398475596635016830120684897757291052206486617683722126256424826523240864561699337631666272849309760867969229646207040577578963391806874985587541497036449363772231952638147927612700701594803881216852729032974783295704642542779902044639251819107032842371471665837948988670563966273508484035774591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21923588272721773991603302301967275878889231506216598066524155987678453855525134177633496573354247462610818698352709876781286368913716851966652955041550111171573122951804284481080253682554233779147137167815705937558514436880315982682525592149881745716746934640164835281812832903920471567693028905232295475553994340719461131042041609350350912747689840198996272192831444564002016961837975232083644871020632127154993072474971287534050589662890201720084680163688766273219268435183550645614836096630489335149415607533587723654983596474063576207279148194984235500936770295870563954841904671162256097235919484836426893359709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19188303276661430734445906135952907179786086656698402881443402382153413488927583317502372678806798580968432767828897311149897097225710217193170043256035840677424158639990063725444225997525162265774709502469973430769360317848272645844759932124271207042907152679743224833455732959017452421764191609511957323165571613139262097244762311239979974630844093747779606963319199930582787728406643476025879359652881967056435136488298759008077815892163198975140018873400329364704114981650630922995362452685344502251419301150446177295708397519751702135303533359424548742223726571029866652015421832361984816930006635343541875745479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17625933602604315904692353535857819956567282913343386878338910634655709778188130384607530313258034903267213586216995999602270191335753889301646723836902537286911143244020781640161140638856362315084069891957464031237897744850874810216114888005115721465579463242611222165378860152771806890952797040005033558978610167322279236223017101836281192614625132059742689339098246761798432311868455831464280097117108778161428862564707191978010466065332622038174392035326356071196555456395215555651708515379757095705151547341629734042703177728040956497706563117088920609222676920934953373296695747990133241376888845050508173633379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18649716923168528118261800033745083045293278896573363122349705270988850271613384089996146400502194655607005688178803844427032993885626859245094839606583917463561424696323395435368977029255372733998274229200161678074592650497392110862556695089241796780523252200451790047991326484254180167724505332167256323200849733430565775884434605519283657571678782594230277165350957397971508577135842254943990574286614213918732531690779023545496077013130094936427280661441566626640433564376320294196885668097360802443374818819124589041046823748387905504156248659678700968804594053828228839212358803920748527933852586895749094589727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16229058960699463375042492599469707341018921134792927673099381727987834125383712434263253869779466645014416472968962009348560302760696245338068100722545141879583641061536399627161177633513589254716170116925334700319806364799518656421023605263513823764407595257467888130305926422289882542159375296696119415911968929029904476920392206098276840806564678792709834644643309692158606005213362012996144961566901658779349420201211071462589714692271872403905989540263278699360567455207011426188725842965663838060545786528581713306470239528275734803071149186397049558946019841422251341740999629835591287235430325606258307047949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16192558188627452907141770400368943133722584314525986482199345478098338310656937948511175616352902442179216252279217264632589762700377650535370910028411553621732676393891937382025008064177123108549621659941696941593505190598327918198752182676330008520526372815396960709694918899628733173414007745092724249715357393910926557660009936193397991630275971769106946329223667252898652296239180671134104017125703853855145826509618661801872305475393496903352850001183967553200134451687760068937143371087550605829943533886252458927700497786971370185632429289804359424976719187884683990338323129139244161909973826011872605932623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16406965863524170159932387791138928291993383135609407813210595296116282160776253132785135002521308547835089278035943602895913161442322815293082482772892788010794954537157020000478621600687933524588410278018188211106216722051240456112947760434513835958754981303731513668795947090676322224640274193654511728720851509153458487431262526222326709428257278870740953649320424283697566662450043155085010170230731542916275336740790251820946010460253084059459408702860050064732086089318050935987106305121421801374846718280509128917554899614945084459422506360944181349980011778118170057996006100512577311269929303262255986993533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18685974437904491956795849793043267564797420777296140912378249744606588402672835167166640219010713073238338067598775369031547250526645751874862243498457146806653286652498387622024427784587581809495300849144974618770858999050066990478758514375129986014282390034739554718169344041194117612741240297196447731008196597566252983156515114354702223369672587022613118597157107615073789593087338014751781747552533051133303655180437443145981507559658070544812648056272579785968931045715342522381917863736020415863944549398372428333659869064574047130593665644676314401959574970982238187693320287930734190773479862604997341602941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22522643526223411779783453772837537518111991563791528479383467603395271861059484284738320850244795872029896867710778141382143976058317090040089187815913009432930867853656174025770615136645490060552498567212957674458950417329976618204717355409654246369220559508009930594292530960312010848826751860299997785154710133948163682665462709372243014220608479441581169583401297824136252603852862765012706551316980502586772033618261250400462447104396512078633689936220157905334419675120379819133360839402698552978753464137083570392131530276173735495263163518482079050326288363964217880628293879879026670344492381340021654843327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250127354926517095981466038447690089281680250290839722384543047642338934932381022570626934069945991040439268086706248638630361484538894250010726774360468781408929923721560672416126831646128669769431357365611359419483505106554791282843100067230202294542320410339950199510833562198584244595910620274495055873463600171432785625398960794504477363230001865357889455408408271145058281614314262020258250612730572802901194893200248083451942960512519371190443116785296704616438731799069228733134618528834315341156251800814725005566492188246562555950017803149139176490266488985578009473996456171035948601046511832008086224899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16238878553613102204929584591616282361302401084479361325672227809022298596425452062374113999775876377488814830424585341519206896823733775788239319956938053584907443876615509970852888390074233088017407471140460293343048628365734640170143544805862183968616242260956323455325822530246493676010656668704433630294047716651018136873691727741410470139136692360925166739997718883074765963347155366809015890014064809275091228384686764428750111191952404980027171696614184872916139469626520517671134361272685434066075296087229085685889806699888593360626771136753726069654798512138692264587117956996171228121344247592637359752961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16386431152380648107648977869344294306012498088343576897835301874435614269416445610124282411966285997448153966816597814179469479385105370007251584940490005382036203285741557967612119783246836274887797629627312535636238839826959211763025818215578933085677123241027937060416747006287355905430982927565010131372853593826888708089565794198499694394872513914157150425359761431671201531961176696820446774747343428270214775442745409735052955590373403637228051968340989419946612974143447295756043245188530039781069009252976984062462206593361576876146131811145574964497429219733368317619599416921239022415201376305066707436027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249855021656743968585581257076018130887007813138878018781464431408522549403157830163306423833699145701416547024305589349383137634304526272329831450029560476544553080649674168973756259130020917949302166637999099867535489015413500427192792596787882393912989933161103034320930284657012266266214529031827858897992478072106810052953618721150411155280598018734526767054841798319236205256885973561065500761806007359025694451889241319202199264187572215111550613580247681517580126577191919212913909104284976038238846422406931229848259362366885074547379249789013615830071793553167184205157235986207313889765846142587361124281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18011680661977365330101510425127592349261378697644358490763838545475661738449368680094140835037583175880312527299393854686298864396054544968010193383849351020775267099445016013949395968617808978538030667070550246293314502720263717441906330681112003606029633113204551799259168085257273264733465854017887181306734936080860675455734180862594815969792439712645928234557544844982247647165689762620796510648312137587992975165991915736104392416298536119943168338382704297427368730086882261281351098219262025249835200004995828638641612636305506143341704008470345378031274887755049193514129380966691225323556896165549581118387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16410709316638622825609674321446863822440591377124009942958693875007370619207925004050431335253913030515402347418887727025334044675927067676277657121304392995693640969768831940020898808840013815580964028274312661528397326144909558184437269125822172513652812438495809274569697138315408988992480024251926791576009407210659229702078379499700872613862495731461548392970891060209631375690365215611462073577079178637160531452812368622059645743007841605245963021916825804526652429247932554172454034696356854021279262524337073331292176200932864993284317343799501698225471321108227513668571078105158028622409445614704412682361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336157957541645783580835756492520256509613040901458815615398581862736056167105070826439713966633372774152868054831315929458398897426351872097030139212288363040678963851820686290461838648970873324125576761001444510763075853874603003732337086420644240930061678617628930630839126618285406471697472712696710937815082427577548780930389952099163280775796328857170974638723390421921314348043999692079274560444549040094182123557654543741180670651558204538067360874686841417430054343376411689190949556820935869690770177682590223665347165963107211882877324436309572200360873932135976846111633203755735571125549591084511866573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20404446627701803218508333284859277731359552818382164851269304568838809216241954187657397376540934402088460484789469245696983875314521635300083250393422788368624029658143081075300951929603580150183043544972925887867092646831501822127598683896164839404399896200727257250682174829327325006394917435927864889093669867555843867346655907116527419588826911248831787422729539403646279421228008566060285686111876188663302834743464202526005844304793572691054187016916769840480057442743177718184432071139347630984848515657057306089285973996200207500227077997102343854919101325638643976322991182037894213657026656394858373939509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16233606593657489188473949315789849526731872945628134081545171433570361853573073047006557870074526739270736347177451872425519355161566816372982160128080326825152278123676972016065500198585889148240988821571639490904277582440105108755835799197679631780718512682690742962707161393887031822876256298151903238778209667334122939875435571683647195760224483836955431819289248782121514886998079210972770674827395387161911133581987850257807899367945282981777422736994477546985559796699721695687380517158549152592065779483128572006521247114974623691457148837605049666530619767793622420983463276635467763272095019329379687165587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21596461267100350984153370235626279311065052718771673707965981888984724423761872922799305258051120379698057750175928332640314115648576898502947970670735604756054619556876854266641832385312630280793967839734015999376040496262735788784828610437121224500787187580026181745765483949110287005525394393408538833195745334297627490011601890963773321466831986110966089040360442306715589649054250023269339471667542846011532064452243832599201328396058900010701251998898570128661552224377478974641922748560199172238311709138266195103199343521160315228813747337252149452209717912964908334713469024592164061008100641027496487760353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24117294499318366444078391506819105522360704635160877881604224686512224139810777310441374681939553008393685773120891143086211660634966946564610698883088230966767774948454616451853199841253644672584494831550079885019316280134926768632376909576818077329027431673535628696450670358107198449165698101623544875831718074416854959508373663193490536713310346518133448895133046535198946083202850113874555071924388687621971016959717714740198444259440635462120670533255037255918330243987116105001857659857254080360229658788664322219564189354903734202976915584303224538332275374183713309134433492851820416803321553708387430218297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20976510756216816092080453848170463220656562531187094853936549484781242343858884663482499476993338137238405225808694140777233669567969063151929882277151606181796498151011357209325286355804318051288624328070773184190010607018002514317466377369909534674057438439477359118100997226437955522642723385204002911791541942057518069592204384456760194480614563416495799295787753930740559875560778524178768995232421778050615933680919793452605770864447669773443769060776243251509050784126280560787573204150020935510435920497141141978103577182179292464748066159240300134661877208761839208076880067741016983995390811001177812126723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22105934405722990949485039399759272918935860793791636156389113716202880669506520073955359687481535803557065302519303511921257135970803420020306018672275262500029610256583421208715752827787044082893178275897504829940493325044974679055967077867686977023300080645983994539338807694167940275433622360835777513159461609022783075923137872570799675343963412680018458300601004678890309651121562801805612237143432747468770458245750176780299972232505087227613221701685307430252865041737008356782198608841249347656523327641436777742790962901121418876324908949904562436757468399723211264948843409735775682507868164166759182958191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369018714434541037826404285957797360261799916915696342383053941996818408005364342556411034891190808810128904936231499360233347285324777583866958834198747426167792947547557923647945576597974770696466581295766466623009014566710771790551972317430935112332562212903601710555019630618578393135420498123688187773114735561042617710648030394091441730365093994824982408682493610415168214510413505801203024511558596798395158479374338288346548205094076997172381146278135273801988257547963707489518042596017305095217407277953435652097067924055576718830121880300270172000254003345542744937264026762915084816072430527363219042369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26606396810827653994945963310638676561624996003315612394440657089417349760295708600667520534789111494465889071300849956216741953419579334550798806343008774936464820960645175526674535252136889881159473077177797230190941382087000272919676310608631525637679465275257726938558826497606475375863007003233103636885630523157867170880865108275522546223256476765302848622620728833518816439285952975001256757492174716688243505175027776940880691055919467983248122630757724787588165846654583921417189753487536955770520574782914576102875108392307576299877730523697099569197090203704319761971919236433641200643093189362277883803059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20571874856174039779907190257338930327005407560858380031456361628876036214138396681937580022586534491853161971365588054729242717917484838203337702982799829876152857550860605471872923434583572187634484565258771004186920868147786656916651569862081444408075402896596324888151417108424416196155149237749400509512512388400785777030356148521877493229151655043897279813177252257067803323644813159199889870128935532675867802250587838347833897208863043012347985436477952302647578926413023760814352778160506129052096500078560381775680613739113687248352311350393303754609275493112547168683825411659486555476867144119716442421641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17737699817969391747251741440124474429508647784795888566602548088504706351153190620206617112782715270655517606344338372436889948472367284982327374493864117911408598955890706476188793762901562441488843315540285163628695956241565561939316001991579744637411259742198508331485846029354110708237189386308037330297176570671011686869928822912587189875448167199855005535593067285956948838263993225611980038202027211526766455892028566217663381497685060385399896661207321012214730754502029972538692753058541702340171870590581056613512485607357457007192846194796151623010733697025271527007140522232516725483695425150715582910863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17769936980638157869543803741186534764743222562468253742570848522106634595825888515599007587152185462861311459362601831120311166908659873931611751120707101529140739653202134305738904983137168493527643345003471954668951613490207593900964023465724901437718642290634740362585730399314665673209786244114589575781304756492909284569818068479241223193220508838417452059284683305274228648619499232656885722323573171271776708425443750854774679815503585322315057417591898939556774545905893828611603370131867674670549607556750612608667321115380600205857253720798200134855400275653737835645104999860982745139648296181224468748567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334972522570991279440408710104307088081635300955736372806810667087963424706179724018718523741094589826731166336864290633468463652782285441101608688408867445697953909083737749514535588986569650872247152673956554339194243343171047965662609578367716918181869125130343393471621155328440826664256037872223164600055180432412178516792301764051377540651495158121727569064833593844271992919406105344336810392670891923545593984492555068811476931465180791623623721011494985120032128328100312034664571841269226210765284387574719987512708400540562901474153336829927800244958419120750191673174720638334248680295219890695202153121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18157051403774447856818142647292718167221157713191360895909274102942541161274944585694880172347839499851662534257967795281721594340169067860336831572138694063824151808056007801794098970965927058626981851876400084729591251606387865507444628646554083419426973410084367700081119839667759800834944865710866958437755605413368725689732217101243063513080210134749597763595851351067872972593747180170061887155889463694810101464016860769073745052574207481508207700348979124628450549084374326669292514990633176000130879093522666214498299227625830387341468966447257252365728510083499047517130465006329534192202840767082229767861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330003127833252864585901354210412925603301652553734406211089902084838152369838060113461967948736676118199393054689793144043891615757078407178423924319319962571707019738061103914145688026295510208452998970237302028164274960091409948578271696417604696173943202432185911265136975394157153551857768198465618202205768578099535693511333828431559757116100709728596656319707822417746658925727650259722543552005317529389904691361866212271209151881349090463072150344977974229357871362580518079566257714553576471818904157064751116163098650578995479149116311021292948631218546899509614621389322739963915874037505628944136772769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317101251964407042914410616175917551973590681893605476198600495941372599466941084388850734844147093899483094204823585569783199164551049068023815699514666103617568335338367264358562603305514302730234091052346987679889716053456891572002655629465631709222043696866630623973540177164307092460124037561187756635004898819955906510590083157054589772228981464754197324303844066291633565592297743169965687857522000292122466859656173411393732663604242419441558958783488126660456481710247539896051039506921454036836417230404734319620652009714467997644709010030150649575029941902754462592940513587628174920117518960940238554863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30843531011327388272464653236293408126930535306290774391731258462455590259807971278498574040247138705843306705464367858010142940375820412776912772634422147915579052250687422346006479061732129469615967092999125766942120521978304697438424855498811125950968308113038065626862628509625321606027092997802310902785177019252881723244075313099742637840456090235224326859092654556951914661515990095833098857413983137110139773445247358326870032790698429708775113114710031377133168565444552354979168530714684546716133805393942714059544318656362232968075370996429777265562056962707109591115650462284523901058674344132005660432501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16259142786435979543771806359209915182845598598299062729076720455632487340745580823599098721249960733586728863043234437191922441561871391412270449077374549011282301713868485418512886819607924838164440099514625072564847427103442581754659596696091996916935663780433465939115173999584235367628498885398178340796292765508608570425293748649522940902294193767984317348166163116564245865949920440139899824861349796504545636515331322726213893378391986700554293165496857086026926185933081840393364443853276104088358931022311304604232806787301155177823636416948190328575994217319090667479508301337053279946336358110011741634093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21840231346029384794177957952273982782994717071246027093068379008864182801295549999751113491092627984813422810946482730730894049862919437106951918505228354025096207197494222804263161103049444062540841115677156715406054014616495902042954231517149484920487870454853834059291313277072910215298207749437749600877396552678167673619024134177374994664324027491508298738542065196130127687095242965905898431539676651420575712280069969812592044275668038798891028232146073813122392856387553680893441409366708488799982023964688133128130043916720060584388199435555355905840247439213663198512924954758787344009409395765341391273801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17191475414727876023572502052868401279831633641660396572339494375561601989606702324342828075008319468080500019755856760997253052506014280175516224581729997524850491805436796191137954252730294958573837892172177429459220354281677442749194994255031265924385573175798754036190225398400291703259645561398582980654997567886167166209625740802143344923101823720924208448453780093522618371814646332318101334905993775132903655061959930061151944356261035502219993553303333941342049919387605411467963954776353350188494822228522631051009579348948547379737170698631395394230802673433513975499774119244671622454396348629492149543171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21367393799810466092620690634930547134447247170496119897276610972521822637658273884889411272280098379016704780947923430813401090783540820102216715249110260235728065999705425821834803237478795643728152978723753335085792846317768398972825806158183212349952100889316667396128543718990216130510130154150187150311099826272874842868887938199526102593888567987670174090663474233753579737514330141016182965512844964547893796773359063882584201503094552964626689684729284064716175374611993542526481893355451339533486432607331939881778026569959595159333591857600268752790274463088488447649539759208956729631741882415159149011881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28420330903742915679578574727091762968297877920306694301632253613583366409226272343252240294455232958645699708831227408448121525564600138846815163954898972121972043387831615419763281282825296047532520824135393556914877514019321808784052146864502798051481844658160486076838594013187014953284157192671161317690700696993316223775072679685213205334650597968771122524661852454266025173824400212896618904735238498863442134385568152879404395729373400843676807367227490526641086568936737355176949422819986251574573040054272091731149647636315614874346588252199904302483444627174821396229343641677749496156098665904757751811547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23667721117894230774117524382732868261981180960906436159111307446753011047720944285379131102242095901136401651101222197701493495423569584432062859769506743295963795536037788057092428664149076062128924485306491398693908995379583208577909907214410758982213547921014056505053995503848733152865897306490136618143324242827129883580220433606082127766868218826325759026774374383679427667974218773985781098759202964026255888340715555651334775227271627301671512689192404812199382376506518732731035298716422590845687790196825097956331698081436048894468938777099562449943467693137450642814402031057641619375267366464009378221967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25793585778764045151344585998006389987863081045644781592409720835244398207489534223122127085454077492493269829319367838393947977250335579067192072319977467492497482563615511820796650303336942989323160318239844003506172744349769214919317429898711416407031860134800181739553136458157046908222376953937556110171351702714069924477621024765283145639308074940118535494377297620716892320636461421286273095583573458427098086602454635721147566050435195476878831680121992010093764425748496964620311400736653522155648246162854898099684725780529141178265957818190655508543473258055589232556850908426311674146753866002249553821361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25866909988783111734325182459814031323936215860655203449312921214989950976785588668623397839976779360087665373919120630051468485287659804163751148268795150229348352296287720117455554546597529830558631538006187400091815520026680630731078990961995294083049545638731577557199939282354026646211001477649033694010446030557816690514821911983974863309130053223829919411965337894672180492819682870775630392729302499112689056821903466150036488905098414493068901853424384172346942048692483357215410301552750587174199467111165834290150764519217589830994949760312247101957496925196903875047523552063609249701391154246676699342911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20942814829805194423295298627423259700154084447647542094023921602254788942712989418144853670826674948989309763985573685252745445814411180003700438885322095772063295130987888292225286048861565754221142670131761156180826227685122599520318784834679386058875892095483603094242461111750641247832251143413164521473673827558721690850199755199158402683053063672412085502035529945744661678600769797622684793857763522466546479837742117535846488364910713976285506266905999532371379985169904550673531063027392303072035508469077623055273282227296695640341006565701201523929747432058094207822956295945495459151363499785711302262757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21329224321057541115720868377823825045226911709918361480700827870474183188571574246199241703891038561816516823928313037037182151626565157565876862308102583050059739160102136547929375782611912025957776285839744440075359840246496535155185168379484887122913216084380765003307085180581861075119925306973064604328059999832743510039558201307032405216537026031630034062773809732780118446243711991151188169676451027210605893642390902382216899588713039742769031421191018948474598969202617074369469707660175789958089036939601608782687409803192998866331800607851715595192757682332162866084354243792061279500558879259739096354969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24566079755475643681022994022155181268879530910943412567841895660551160229125645362795974305684124891204788394307945404948495170950872450186842317877679597332256303221218917575341266761349579494149384110213497621923404792603946017618614214511523574553656664463987619954342917421382370888308524491832065975106815685017509709099519513335823025824760596185432734585357168131861594855622523397504399292896614142520722925501678802940261413475920177010615369417192661521672515117495565823379908512547037562778361006022033740142011888513156663228888749196430932755182879362305093953913356850771660437525476289135417874384613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22817390965318917977901661082367525104629992007845920366648868081187502583634097444713261096453185193595749185873436011037243626784280001029448937335879205395252375672210500542056631292058716105698384636488496690782955294880488683314555515855586314948944613205539963401052114652159347549413456706771938431480875975413555080067550398524608891740963340227795681701323809520639186060504415679502128486746292282242342433817226647689123288438854295617274445252076952295746928833388386976305820909147174175702432823847265516186458231857930857545365644406274967690186637236869692210758564474620851055898182630833621699169757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23608278111638994388868649528265006435497696246761083275518386415690027509133547371444229751344241195175259533127283433605389544724886188178290081398598493669636346493736371384695082791452804258542460626797359913403855662160760777559780301745858602484151013777154130898447342234244692595082545497539761055224450037108826947647482025236400699652400383758010585989040365726614096129731317723466537591968628593966971783096492385770274436392605087241575459678999604477860683428647467774925306811781902567237830122474050088345643901560292423206981954614263702222002763334426288867669470484153615569485197708578571265824463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18504070796103547235078329755092325886438567281674188707566164486361936754338329565215810222695013809863889803869894362156153927687454045490515694982625028017510323553007024145788251762230974727169111190400993884317370384234308142619077286388488931767056936271582557682292928944124389771147765287849423206060139889022308707915126910396483841982963257510998850343175874357179914751272255439140468972142671133529418644095896005763393923470082135680381652620107155832384212695930699561833532161261233379154359106920259071783694489329448261092380232032401531587625040587379756660131224596109445974949518727319775671081029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327227453336032927755840117873492609484046729484550982771390929227895186751640292225428430766074837763381545178077510271403746201063216085588932077427786471134315635426859536899522588989811681131533065695301562034799888608902534507170637401943423735538665983956871384419582767495867159115779318954288196482343478341613532828411113978492091428862298398849453624618148406285426468528989841876135165249404761802366741952577119573236474156935866082952495568898389167314899730410491183714666643455807984377684892866141747448555271792416293791742985519167718965719258766548147560673746801761209553695289665534448677586001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22062447270257642670976247748929903916089337070711561884115806402438484816301927379209339483370796692235758483240173939661390206402390396048650629723626746524064113358383624246224986420776437270835649839001920144448589862112673780694598985919518167293459993705915191053711256468796423402822866529832315635028435524970938256983870079365542870680648623460630615461448256608047372099093632482221910238321724380207627838956623431029731723604534705309639958083289879855056029089022323702999117343947986373202502258086723273478701395817867053423166796301754140629029569876640758807072086636634318645908340458439325848963949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27722384604979016877209938399408324504912137716542409872477314027915577070646671734901017249662300246845735196989363109944904055584606699217043212249767418342302936387480179143883577230440747947514022522300547303645416094450066023661023462403247307229134326056397411631642779232655739483842095661654579988352940725502638956744342673258205177570481049903429632103516201811598566263159373057156093452770442774380288177655662158388956940300796447226509325778086662542665831875166376228686684331692814520260432404951615578322814001589982211383021952299802895813896027097733416651884584372552035769537261322039193584343371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19880064763080268555142418188809248244773759280585041338500508370426343445961907116628789408575322221841837468074882386972150919897158667200316659960048535123867801294241328675159353687532664131163363732914746285953279826859046744593475776525691993917613682179615454705073750425044117671957187002943412155805474847511913246291713504080891129426990826925278944557654991596774591512928388041221457959881500094730471182660655189546653139117256961128867840691344599489270361786537009513470989831879237949364330900093209188549407161612776752197432908587380953618065597261945513561109863783762551427076941376881305610530229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347387203098728415946329162205521131554087643055966011266321909724267598854998182350978102994496357084477811928831624972754717037631877796013666139769968800465347330683770834663127106582079175142827646758530665931531248409716190407510166062564137894766593010751771129212748495421960515283741533698491337484765230503840065609552618768018357258054725700587232581648093562467900758558438651922637809913937885043260036433919617351251427409674346229953260892541178190086984256676313874747060879988752275965362253717077784618999760760999872301072621769961117150095554460488072511552118217442515409164560202412133962678503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272264436984363838912724489098089211006364834307610280562778064971682792693968288412001741844853973126325413409868904484977598740480305761470019417281010735462411682989010792827870146340335911572205869118493219102209399043154235268247676725090332027556885897630096659143646700935289520631746379286262749501063081255888989135715731461187114195460863298471792728897941042915258533420671181862313407791991570680744914875729726556354936244820929020985988311050074316097767040530626163829793231675220455687073262334041006234586138075449709129123364383865892113857780944884940249691066403315175714510772320399274849033089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27019798955245589848229132364827892183692887530806313597823986305417921789625363035147451837956972306574807521002941027253955675306266694954421281861324258737797725103728608845453656012178303752394003326910042349458601957441206872747931409133616723791133136579213853688766277095017032779838830825907088077407229380127736300707919884762629930402773131848430736158986065994234074019736357408831560223549504062014683413055677616503415238939208144536183576783706657084472262101680434523557752213622009547098864170006295841768289457771481603221026394664171329903821973350293893377143069869886435254957993483240745694814157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321912577803631533233351509123432161833656579383051221493251343294913279412089490595253134308797642300830135227775799644513316072172629531585048542861720777354193133705227768679266964427672623257141152236665710788401154564334770915225919980682631841740909837148776920746031918040490382599569538141066408784249282550328830092044248233532089491091686279724255323624627226330514113820329531166557899141993489672433169897949234746485538907354164704176179811519818315626541278630848784325179928090174204870151644528301999230079306968465566111281844283181733172086451075367190319509950704578277777304048503398313477252533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22580763313800896205062075808077843985318953793274078688552130910744862801843908600386723662422531497646755395036741554521000481082932153838954214957398317945887775456582485194543296699373723193792761628768643156472977298961852278276079805584181004325206454552569334462349181169068097087186468302711674581091627604154117732294789102877887526344647951393140387041942800981597673481259196121967670507392377103166879335037077073405864317267052888397274016938055349322138565210858105769911713139671917415963263418461259995868590563412229902989431339073885997343787359171866401479757849878689183063364578876351439823413339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20659036111101702291461517570143302984373254279985239260933410473542027821354205911303358643394382378847388310335175186391356554110346318556751198117346844992088992579201104784153026960008873112100652909809172526396453967853967756625111469594294090251119878211322407683786357356157583617394584960418663231148436169993094080938422485721022290654152164095781243402126135434545328522781917991166421052547019576023168837693112962264657710366556782401428605542274993618666890202570731819968652329800088850873827505990799395832182421549295523016607610562229723656042593427938280061208394288619653259866560880934788420895753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360775042854514832852263802827767657743958574377920085518392279187659681432159798564340156576923081173665999938907755068837459156913347730820568676258639907282471976263493580462195942324811786009241764347566249570559857675302288259206503227235660453132714187003232643181639991868796738335348947859452673208377044211805059120803108513879696985861381945295868716968685931217223097183358218967368392019236015047633311529394309483389085507873511866418895932120402488716921264805875442520685514916776114092404580524975881838300298387069019602738986396249532437473679206357523123778387264172629217911097603555742775053739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26145025622044833749075069911225143890775830879124364398055986846143916399289944055815147147612296577241815722664901872458507638786661238828815634312739636460356294284129472783859674112812074246814599711541167689622609057667831384615301800984915584822781418531070132766473136850313760642116846094521472961801432107315337890961122292755361890107166627383193224857411231159394634711363066278603222787226899317434665987663148613735093061805029270009873046847865124485400269236534618295853748925865115963901805654828230362066363118831885789969630492611397591244301394583036961292223491320473817763336432953827640971475403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19450323023014715512565193261634749946534625057807751917799257845299819794953690375937752013218559311224155764097444958510262801110113031609019084800318497067648115013647537080936923410893273830399609703417965485584074308661650348940253806248294134565979444337744974659824467302264833445478632210697468053105590503536528102464052737168996524387315420346455176463165914459176992526225135813815941860587150772389584019891441013089842428899297617676402474225111815870853697830294749482189837345266734423247425984782282769254440476082810069735556801919037216638308201476584974771591241145102595774706879985295985510632769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361103903501361513075970111152280498994933129783502007029059277472145579372288495218028023654092078100047958756409253103083050036968668304142354112471187270704129546880144190767917052343062761261449898439579834445317024207547137290057286264055593350996619877018449639695207955741582097331496671691964851489164174283376747527155937947500236891758056881419203689804163881075850497630758782552314415243768580083184359591255689666173072309829493558978153791282678674480781754104262440430722449354423873332269148131093312117107080079012621899940171305902081977743186539832109125242900948140150705827198485315149155499531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22917891728210697262798449684855561502669516078427888194395631143931327600411065902428161424992579143959194665823947630865090942610045013059824163314654874992877315049779222353546161376810847283096257585808970247620839761647299394650009518487033673588603235355276098414183849447790140144345444423075159373058256168127918533394050017129299849819164135635476441026048049335606535719124816835683010652190725155970787989527944819934808053836985593951165080472796153112172190426649554849909722492030950898945941141928023507425342484581741932754739595295779547119954734088147024331068024709014415785829452885958323112740471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283285717620340253476911537385152434302887693454540831602370253299436221720360045021855854535408124159255316229217052364669863028174701686294307738488486942776949822106047661895494561519973376428267901212440434796615199770853490986232090572032107686803733523579953975370696080821811704877586251454047981968518279255661988357784147770528012417698223492606387491435609070195201229306856671814381027374787129116494829320636656338350509628414347306933797825318392824881908560019237284020258657480154067878356988940665302233530977335413936366795128712502125983879677681863540568747293517442022022642248738051845146402969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20188876312785342670321516917104184534705188767230213467823188528513555495284682231051392204028439230822933393957393581152970241365163226170955994156759378311783584538321060647626932557388962748629286069520107920372603651149974758448482792238447370240077569058942038580283975010696999063344969124272243373346982101217737112155150823860645478532343488042347926889688710864945382643267689017769221216611106645250041099192207370053925160469334356018344550014905129212612896220235811387677118833792505365030224082188459885152780566513789311830682273631010920649053711355051201259706210507328344047158999625707494491407869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20265039069999919005015064645798464936713935654108661382447712285568450086711441472293176781997082883354821660538238551459140604940007967941779883073409650856115757152805981883702974710215780201624575636026918729110932475641692767434459468647242317662454640343766720428037133429925887006043432945438858639730952219192686626436340066279958804766258687051264941136771632293504175217039997034483063698917561307292444862597848008212494973087008607333828748022959181905827915069346942249672175435356470665050895846617799615650048211114417560436961875060353452950233829969905639652824181686176678874080104763014976063458583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25808730896660769145409284718352894084608189382471976691878690943811741166547563475374859667946653660031372798550693354635633782906482096055381573458097639267088249208073130672887075075236683455957717046377289677680249977945641284506695420053403428762493872944312033171597809746033007371337743855554144065519154440099238050922454845261708460407946743686909628237396849116325474175735759131790167490447177514799715258391602257678723748187859291416448178247381526928914202321058505746531337987135390468472610689845296120808126716540814456659554566809780633454265300906380074286988921906078530322154899742634554259049993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20663923341510923675555680132651398497772871603115690374374540091548825692780420866919131540234229306322535265143164155443259912598511255851448394399197397712634132380869258502579279802411158823926995255599763447857208416245319141838108575795466249391183592046673391705169320289817505762740664555048615582395045888522754835252695642085359340578527776412367196647822626289368082105311212687235478377126430126543801477791146790610326339505461796903832005459836262207602559723683168554030302870466967048824086555380690703780950947604998417499840689127237226373199833144009687190526465378054123832445514766510321596889933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31264750199624568744138728325587705061042215334967297533015003110532420368906778011930979896858634847683804320200315968811841700357736816881530472083422147141804075328766310020204108605104294267188153675811677312274308593952256358272711321331154051582229132710698785601674620260016268889531022374414718815061539825955886884835972653334376710904689237004500819459301406791440156586965834555891758494665719450314803215438733162388952417722205763052716931632100227425299800328536175042319685645960536827615577473866147788059302914608030865764587321244366480413737800179652623593420331323855557706134837058656110914482221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17223080542457005325774237778376864646219737492302277874339705783060592673631522905542049425559124280002734439733708918825006277214787054951488451229159812007087899140019256146019299718631299527012341058989916582896388307285380137808398071123368153606891925752542550333760181245439086062740368227409230661815898696574226310679153319058257396139746457957103512667887783267270641107404339779606730710803189792079758399847148114446727166493189989808138783524583724632212418489470266016836602853961089995237136861657529880952632464785696292472293603685627293937702944102086855840834520598168896645842518640772519134306547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19969929256710257730322772702877152885352841478502289784241840964878778324773036689428287945374028477314025919757417850323179117101667296021398221274811924449210030863999496384482232910632461525055083815144762721448971413545598673067044424469439643742072418065205276916740485638880892579367876574560161809631492148924838441232403203294675101916967237046045906492228023013467510053425106083940654830456365806123058767952061155705898730987286907473434911237355425061290669715009834108680324717004518029897701906304710220069850226320777318306682974237070694453618877038331350351093242827100340127795000041949729305361743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317332357553563065971005575319711669561973206681224807188642410648041764098447990103931676145012300813901977946386327199300257777679951313219774790206935694255910943948407118331489480717632783451566740261642744849620691729971221444847988066252380224571225119375766308622825947998695775851045273302779248439964435115653429070548146817500597485180341238070126324493434146057230605898370213010839061382293411988358208777486436022262507943100425547958196080752949589856989058349690224072936560934613193290729506610285497964092280471747407325863498033806891173119758050649735910492017104895507807123974555514780742265761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17025403354687476430133511284112380447060920363714494653199942527608256944088526413781431882018436860729445334460030886872461647687767977381209111672231119222393930348823184179825310407378824369387955814881753537062859383867879440086319929823243120325799239082590100824190685907050405227991778212116639576059332231573538289278999826219198331833014451021155929467019450977982133070913994965770874532509887773405266036950730764328623965135947456423933129960368545843331966530414633363065839178399327605247758966370343652029100503334797228801263745083326596846470667557017836763426649076533016980923814337030153864833739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16381422056718293212329867009798634844585235769689398932677211630969929406304077310176317702191367537412400670276601404662995124425069804924131550829219660604399032134247836912998350914071344890705935820018572050107512086587161538907157570282701586231669291509354864426482128171085764414503699462455652565205036424322301107142706368427467554726358240601585658527154932840109599049190716225718397019143524837738474588143754325232335549136331441590546245095648588547831246872580551626830107418453599523857030489202631305925348234150835390726829596482905722655318282183590863395312824035504177468233645774145860241044479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17862492948380858322070490661944019331990538210729571388048315109888298841125891891679934618757278805398919764113765135813584530140905503151848051730457806591901518618223344744366251396175229617389076817408098105763873394180383074996602805845360861959703676657751751655136754386042314957194121362435035887172625017633203626475208059501983448777740542393177879555002569900791741002866264740811173158865307653922050666075793143024177097445149492375297794153019293991677453521089288846423999402360719808843763552207253672962151910604097654383120538947354013527251654836077482555078414352236717521121307694060585200812369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300707329549791295102624817098907673873387972357870518930836684981149294733468717065469077919984712386289985335829921300908531642697337384935879457647797770395078631086388273617986740166506194454803300767182516493067521014927019867700183840815502604218286042062328469549848980920963354174693105345344209477187088700628319199437261257028898582633607385291644042692341753303841558547874909002022604290774206183559653906116519372279470937908328246799691119422166916037466351091367658150246685446079891510360971387240912660582745641087350210111866454645088180586527588372389530778140398764279928210093223499332980094949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16342114795554381601574167903491711506501631171383800891312613318247510116988801180875644871434536237416106605541096491664808028822076982723206684618122136094425185405480583655786791293724959282532994041309794945357678955556990311929525915242619963758239803572455226387054951105856892243957499683355791959384200251237121009428436658931317791439619828395574599728661473726631980887638070713048401503674493080948706157003229518591330150544678013905404228119942177626357713165468825322488418760602153982416533962102262101859903680997481584842434163449410533414571181551102648708090593695506552276599107850491863417456973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22308664285425423035202507085372590167465114966764712698312772946815407260819361807277063498486024999183680824920174501264879556695323531759925646000029022717057583105235050663582050062470266132776658555076457970818665313550467340760146703149280801508855361694480075809146748373283228573743327962750262397856924418076749939810609463566944670907070290889350900941426255947735281882741894607617625482419725804272130979443837634799118147967646481268757162481020497096372641365548035045500627032981798862193510824235564247889185397844043712716531079409587937701081469208250508364268414250631610425962574418499838304823859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19058009887734364097227714561324264495171566485843022930965395689501030196197933911704009010581221178271246650922568311816007248330608177855204309856457402139322201271969746724530934676780432158970183102934926037430491591659007940550446812320058615133504545102896127173889498536297707847587290795853054978540935035006523780365345681073105122945475160952535759379330514566226023374857219802389452349528315406936953723493124302586837892095658372252484985359026844256019053291490086606228141481889755793799001370443517163480044387141423845855863363870282962807290701850778788054396461240414006757781562202572018430692439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20663375475209346177362280412580606587306999255940187377208636138737879438478510789218262414905488778132210485160282052181441230489609949888876247077905974485113360956562279110306050271105399206327446625519208572559097600869591649338002923089726192920299539649210098284895137654351285515309648650549617446324182770712778058241587644700394417983597195236214177589593070884766551187245004052592395247703396826687795071895997106364114290004949837849936773668837674937364041554550717797461375691447457906262660835734254202674578615705934506323583783171874115920939657718585392528325904557459686833000062797367431884199603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28327606732560846018282816870929997156407972665980989574166824752873545344245782797717153398957469119174682643977408955224205063775310517354426310721887773469753260951197787236355168842212182960737061727801283190111188572722140311361072153808642259548801095614069010253525679847095608808223785263547115648908850496517253371239844343964601840568030378634458710035287406512465909501214469632360362467998817146734415228492901544873284990699339116227477093858829076283965284695177184893262206348399259978300349098318621212573737867431089097232616874076576706201264095903117006485319342501343181382510177829686079692182061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19894123405143706142690487595032484712366446799259338801402680445222767457899509682517144132933236031965854646478297008179508069557743759897259372473088041152749801356626755510932169412218495576096889387113526484247543973037984106711780818179015761658720186698881601453860334377734083739889083099645534277378212389159765585492859420613233405401657737799962790779253327866926955305740343632648810978638153658396923958080155455004796242372043161715689589463066756998039390468503822792224792978371460854885976919553212320967123208935116424290788726074693017338988136216089994042816407938221151217490817422919946497707591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22211983069414441899948146728474891859296277730807547125986588724735087488963829714584487458348467807016687138614114047491917356791925601709270048851188776607710764063989962053875616673373396500853474393423256225830134725026984986222649762502824441582298348487643751427034269487998281024779374988901558084777845651427472652110501892320717220018721913395540071048490784761358276279992495901124830801873865931368402243513206150292208417845164093522562977456310335030838981516635927082023894272798705791927793771703015064247701931505851300792675224213450040649594812934366607185960889711053855649917894586370300659328051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25089030988743250328240206029316944069052558405786955781561504144960718060409295083011345853367011495842732173737019862033374884580111535426073455090415891730127172191591823836640117364838397223689545107183899272257578869787593705269480793348244025161846031972319790725617913045794860601362950123284019328512065134287787432090525629506817814841507113538794027799698096655125909178155247620921158789485436798832243461441672657050470484498882173097830039411841373229408923522992378831403539090296670689105870904873128056758750094711790996807899946488777360393412786324358237482786958797674809412660404702988177953694889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27864730990719926130601843986799208899676852427712569876071222890600475889070523419166223625310398524838406436152773455051964954240089836181812436089969588028904623561142313974783174907405039987329537678126836841714952944757046932872108056262119658016703310402719585428968752129823927361477647304757809750468811414535502133260247379098626119018288223275231071304939242807011144797712037273096043673360827511870388301528828335309947795869067433990271975489672947163030950210144807834470372735802161411692539755576937203958058477805442237957475909791351226027792570644215502776387457693621051757674766426040280000299441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19831079858740954671341434068938276718017174298892168733885715636822411672621990388546695167362857395172093749739215427554635187746882003255826077425852509565303725465413273737842531612705542023404227043448537261293318028127867456332566653108353436457233649198675852055242328377676233392896711666110539688696306312644322494336059618928786791555852926192767822534305849112155794129770398767930655832818027005404624905669627090124577226105462410051576106104220386533339392808446775764862525592901611279334902999163691411769035650437721104446902686281456500149346353756789238604103727948239412862344710107805194404644977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30220322346584049261314700948276475372401255042111185436419432037301192369722110454047019511558684003812749698693141423482006576503790065069094941530047714229037817859878721539734154691114467506574072176581320834418751851705150734315877095596145084692486524841585266727288561831937495675814637631803647485741484034688882185322719356842034699418994770876992883524365881447031949390671300484720283955490986042077200039156666724062224713427509757548988088031213389020640225862074135332358145569799071957654225747992021766134318984198370448721069467367601473706570119438357533243293854048209982334016286920496053556914053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21626168711834494632635293984693713271970325413926024555749018861301281322118186958670001470926168929604434139348543238472012500453148674531571458436675438393026852751952558570552133555826091858151521728408478498150270662954844473139347658373706257398338008920296873443282125486285052196063823380412221318827293996454797810449733124278128856895829347603937519994752060870598411332227828522662513798671226031877050331431437811842437480841874600775737809712111324775612120636656644600258975942513321487837781291033960286129128641947310300160684314823243844024778705436587223134054031744685862647155846697550988141929631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24101733501452849615035750963116358227795421027739049622217754608002735605677463780280731682030255061562855738643016970165796891881919103417518356558253732928326658260784949354546772900483451370880312860667392571848320865256963687811245280432999928073228415800668037097456301717908120653473083054333001846162895881546972080419724553212720464300803781570608832820324695592695737381508195084850672379089376035050501797468019479299987400691982985307154180745193794839423286782597311055001374881736709423867647858513460653901212305666902558800771473558652727045587832914871563471578184788483983381976047168553263547647829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21648341941444102854007681755749975074019421080485592276221657850108234272205055955353316840526417280531410672372324298126069575250554271302209318242178209814226602873156292499100403939565905169896095198607074825935420574950195966639970170994207503283967163853592089290847620603108562924256102503677323664439445239897383889095359785688708239524802714198812894617245877641728403143938735986896229622129400167952337608562935148233710142449194727714137789853568074416152608962613780487949896333591665895631678927816762319676794478584054800435757825285035495485851829622758659221187741057211225460678980291585756724621097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27595582623206048020351037739635608447982104463918412785449273105110687907854630192973115225052935118077386953118259982701141542555647206458744989129610609616349605429952551777949618030757519548568576475078244658156349960762202260238949680687073136125498316002371440653606542968970564168808495134677315007542239546884908736451314735258043342217291217005464660209354743634921715708686537159521779610611323960167306852578066249709466708637041573653541880286898449356072907841575647663331085082182364723913912809205327648705562081407563483639040458983479865381858098843319931877154499230262032280189209407278546043020003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20992034498027576558277581417020652590408972478006987022661745915106054550741049732043652186253471132872316567489540544439911683909872291583816380178109105946603729800703312338217122602069382237568240666040849944202789651666135490555309108196574801583849570531658775965969585899445536691922073200422791666833711112785303071656724125208596306487273036782255808804802417257337652389404813923602139374890544793155121273866908232455274749085707610514507524725522523775173459019133396831164829593845897376288591924445136883106000235912644575912028581664551701821852862879348625012100180341289021855914343325235991218565729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23564654403578498811630013998482181435012335768444198462401876654357407001210606211183745923977186967594161574859448154544052279840110128313263470457378638861082213200360172808572765881664347547624044944861495267372168106008126756135425318537334856207444968817466053190377037593989790977911837850720762863471717856703293690513672078864027969917382049147274162518068301350610858684312692021827271491340714573240656798473806964402564557088952711269548139934813231883451948046381556414713188247109098357422752785650148732209104460600017782904616806454316090607994621993639451939482436584959604530559945167564642592834997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27441294146159317779001836365153324838523917394045710966109287829609656172370825743467763751838449166718093511235347949803379758517173633173109498726559959221222066077999803333830129184732520997115966792640856126754889660714232880350608212171416588011802735796232630709605264649491864897555471368149764004237342540172740235875683143084179863911332718706948234462891778157478748012793123032979347863505475358404707287081622182126580672324664599102089129169710424921516579023431521690539296054278895635733156787393559203408997935816162213379931684433635094337222567120131513130891432039344640240139208783079029591323623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23452673140416859410288170967329395888106087603490735951339185486660236290423163303092177553469788722933990748082677817939911049878699816392937391568997438345843773097077606118816969599928814268287576671465208014660610259516715433762038366190027966662344155265032010958761347052432402990270940472195122695228941491756115670064560140960538666798836229642103725112945788599197050030270296237167114265244922735211021255274083344918590179659759345342595183551679740213251713638865476002029995893267887454559987522703356723004613078774904524250392088772575232739335478963934286525002542329549356928312225308462758433554559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21890332192202405581166719347407590577952698110285131007084964244660606574052077434169618291694775620352250843577066264777851806155639317236488145979834489352831685990890739645557654865023944990123441973045148354557315943099886495047292735587435224860133725540528899329790446304793856102702178903669037475791141430873493769651843538373242526819455206157017152003292728341607453724487759170350388601725406492825599472917841336656810165271293152558755155773577551679935735294348689251496336592368236325657246998075719363186294270953082004786091614489641100373142368634195672739999367156374217060862495834433082358712087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26031471398072705644390283110220487749847521840745980156942841895253858103179270400029167417742520129247542045320573683109733062142992287621597145431369748175882424486134651915705762816260971277584584526196293017709523514628782029616416515513702508681348558533396840877676594746454131875061489645805126965038392630755142495385580751606942834260902676918350464099180168648066125781771573702611049295299997113197341946527112778070925533798956983696191400498584997328279072135142074292160276004367728176955087759087733455209382008879297734940012386736508359829802178293698164830506021415073671803376613876805351971646563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22611709667113521306993026340579422552168596748134195726945587635576282761722054711759689934298187290923634701008942884607790684113807937841026641610628596666105060049621536437655614527259285427096464271165322030697519199065477820500864917541546283989270796842617787792967527586494558044548533166069170862595668652599118764943726703247060542051812397590033219986939642832435203701539577412913036027724506471750323058780887963510297862635500802627439739503346654275417760563343075749769438122324978898194968769873863439445466416889686514487120307795194855060946592305594663395235711974932947413389115469748749321993641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22472283880774742169569576136879470536865675409915034006593217524555077164294992244341635879719154497990209897539527046225598939504664846836771662126299604902647318659829837180354184691975647962809730355575940434792993825733664576323565794993399316652250341407693883638129470082910331671572532392340570239874335703395304266651674525356291776893306666184802706376627718956944546070775884899588153882042486704827090253467516276990149581687407874937491079351541465708501658946842068104592870772370146608150796406251670943665260043834963285438077749788849860703109278228162865876532276954938524923997939763150050138852631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25891656373313878682751552376622447132389193962795061978600611526605308247446182538689606323445053990853996360296845169776084076156621657489014247944074921722283702870747375676503865778796088254618736253575478410567422876623373259728791115805910637441996308080970262765305484914106573125840424710293118775315072239176358339356645619621142172628898395892375978856236099071120087084274548262329267318868226248845096388006174288286561489814719774249296647903981290222070678488568140094511986953050804115909998456945707175479545468509124908869014238481753357580492880651570957314996710411798363560695634879252089713742307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21955208691271295424057228039944041326167742537629495042254803578544036913251227945263447782681111421025341160887467586272689824063465949833371819019123864128051597391935296412797522317210737512977014348686384443924062881238427744221739942957968331484141274191885132036966329509704273831658943184412037698432135364040591324835793217735033776431732975297531235929786553998132055878314430379149074728663148524197172251937063870810979599557447188969570566995368883873567311314317443972857160068732399136700362208326691708489188926397542380869623003741450400020473534097288940667797019713984492830622298657536191272453481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27843669191545977701549340940781545531670168732206221123844656831424420827361457942547115549788647263162810509711680285015795836894243519615216521349953486310514194061596812856240443025591856908858658812432149570986781333764671652022016336545752509517389002886419581372003198074364994678143000335553818328544074011095248453494399672143934961205804853957628477884480528693047505314050243819396819409208458931896140503980847354679141213650169205770553370968495978348504067995709452134751228098727381930283811676637452101543678261863754123535979578797074272691782566948889447646772574888932939927282198890924632353719031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24373331268445357189359200012990809750395994088283226036705848752207965940817712031227938859232941883354799400494134765035430026928582143887702467281471995988250083235787299162533349870747904552531407176706048485549072475517268362587472336680199750167749123060109080254776410143357963822162922143366666677340421856996687052043823176180229899871596100220968216389858792429429104341494599255481449114134921400483271188777356951970110224664331782407440554843702591021001704556626363599720622748584224413660498273337114588147237615060077825792116528883393696132568447733631862772442383868303024176396193004258790263079179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22942518061592721950731072917169448844323668436155229869006300985352817796811162119495964988463140989791198219793505325465304751372904221336724483503766253434517597286703317027692561635257471364422604208247971978513173973955149214302362236661209020599104786928578497161312788590306464955908446409652397206743015773345414110081101967295546638282000995407545768364836401360198982111338019588562228102832310642965573427798956832962973773721741781081300361760735302575665970356168646607746217796469459452346764465043199563459078096065615793192373454602261101897920974752209990543438995429324596783041461333840614358495389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24655159342116269954116211433317225418965710304949099195646685027391118737920792739956191199543968688469373693179444084727252919143640982788984747432739716847752734357480979693440159100889816633935634125576778492515420712322639526750027832660189143218371496479608686376327798875219939901946381893384852409070718447301844350067913995684472704942978179773609597154141887461560258921443311574624148144513046286947983384833555566405456408906486409202922808206887329882904151444878603111584565236892430027111102167874886751678457517045539700936371176706513206254585174628132167727799650089092502849436676910792630099614571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23904130494869357017155068916852849342017645216865509846170784508561462477682878197224118977812983767574533784599321553108466033095397769596172994458283881268405321605813916770639326168517071138914353968677661190466536067090693089049306578119198270331242799509464216813774382193254071443185616886186526525105712644497408784045239298517874730933233008525045763983072946843510385158493406931904483673626240844607454303283003665665965646724075905098005599930374661535917298697506644010138411445141915766976327544084662813223179466362916589790258823256078873794829046869911085552850386315295840622142360985328848126823231", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22183299845722712571991316619249909", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24107838894678536363277438699426060", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23753722698844458770528530917798549", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21952418680256039026272923584825249", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23300973572427559164457386627235024819697117328250863659899927393682498025246642300437533033144871722928361770417379210074093105892016961866135180715442679290820770463524215308070614454807932924628521633403968830167026263755452552852778087594176093456360233466268626444610295401644937896529430701972526306528037558963083470194680320312786474322754499454950421149324547403572398362008152391801566061185770621614850105614657136006659008455984114785198589380321038792653851252658914835062396130538566371781621343786391810194546300944263423986842865516659305212143685639735207797043180908196557895553523973892681232321657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19533763841431763128781034392383477301589721181509670409057331131863495832668748921972908119415614527387160137180073305812720230507174365022236269893255845815758627739065100348981313497439538675596548094251764890995176611345168259820818629331982606795963860078868198148165907079955139928968521301660570908728225497171846840667842148017267823944205162984875474484563547879628264004014799999215752753288556553478721433556525394601995916821530743964616333955529524331870338673702763749035888986858941213639302599162996966833862446440350740852854351590617964573494938690193309194495851022340780644961719242652380982141271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20812677723618656398701831226276696990645342677111119164196327305588132157637072170576124774396548397698198353593304670478045476450449914153566971565635335199061353886290721387648196246189212959761984035862368073210986321386614174131422154761760687882842146529014505263713378484686704908342897659034824862843510564213126770077106813556496070124492390422460295340650116209976965306624203182668627081683221900899116495991669547070464169012102279891146724715057349073875284877871717073364808718459561218104005111059279877048706459791761068891355056381999176514076852241479155761411845216749667025293385503269897501752173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25937295497705565162952904761393629490178543775717112051221114056288143145227521035809389932903108367095945175836371723328435644228921051157915144561728038847926170166048127690707687866732714952269982492402288853552568800366137836592169143637970167667762074638739014957661761341522983755934124536130155668187190967443419536263686960462417514561912828604558225095955121283640289114787487859265463591877168268940651324901361337528992525463265007957086486530454276546581060211188886406877493742171592455601837977993646889335916641816192447585809123658840864021320267857494738217336869592107535117901485401987297675912647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25773041671708745429157828239853035927681106685578316183506382003465979897950912237021575863164445988312787107863948241553184961317618344421111125024838350891843870528306392515288278300789569994823439474094542051700873964714263277071362441593892398676004699971939686869855958227500800220153845564654814985033323939999663923513843732413201645574611134662848025887742916210685786618015953761023093562449283104503230886118912274711985513515115815467786382867634050533960145694692821933180621340778272384105330336321529256044904885572316856759265413583166429223189580028424046565890465450280347337913357202979504878971879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23466706581632550373091301096530211866466680257232911782219126870490487292177052761846233729696355577320755790911092778399653446938171206876314494758400036779159800378847054989971041271388550262085319345327494349241134037044810310714656836328205010711892634940638853096310677758540441231740615458058338950874653540042233592044049546036665106800716633959023277509439997260584736780823954235104395796910725866323396215568696913469723050182388697766809069163759183455228527903485471841803795535549678594432475430070426787358387799911051440585319849669438679230422058949799132396261915973918962238786531515558472971932909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26336974738226926192206655870960098120315153656123510855004874245272314920164780462162565599431169053117697779383307942998715503176014132990645277325460105113358466462697004294821408579138237566981408364174004464259490007996972157866623079935084421754660843207937653273695062611630310215357895997262490353532031889425540034530057780476109800826310662815329124726453650193119206964334409607585399883533174978606451896547503310905881766298014271430127751429752482389050248836434077373908417191989201436387538855838845429689362222145713004215000526663469650055733610750242019113421307706160633015124268197826931477122009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24048085076799709537452297849422791897613239878873602125743234982755534799664910575776383799513068572293326897627536745022142610208301404017946570145705894423804149378221707471248587630390319361693262803050492576673156867054356931454671841830804634507231542802169815483174135783226604019070563475927339390747411834688751127039162050544979077458303270606896111697715780236993679461875490325401200771936814649522306644441145159803612036168153498802191795907817111897878528857693457848947050727790087818556687320024993524603738435135325132620675398270765839217149676878163106832934633899101233433722705492915900665553343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26953945701410114699553737721834571718143492023744823960134393665733314075263101223701800413293300633486905942608563350341598924344599075850615706370582496885494474397828437335619469695407908414572558420389532990785725189365016169884131891196181083211700407351741029752587958543604229248446907868323478564622411078482416550809656908632259493341078195784673562540316696677242604101967784283684214609642486795854388536603744652398239740594293786892447906890921552451573624157371638198643410430036152902209387857865734828685696341691145754643351878149856909706925851911711392876176006163890414071117220410078868941476181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25410117122069133825777139969474737430934692334653690756354049795747199250289313608959401610478879024078983879602536175846577913876471259439131727398228046417779498791286992121503579805447090828345717679814095252752504961879660159280277079750177970265638613065867740602069641789464980081371822482517358842667405520144900195279981184112030099326574356491478376289776999266093985884621784051336709711812666792458716881090103552414881997936358560214081542202391872866964208573355655100988807247667492437669273273816733251463379541828845829219734422106356903490438506296559273670261587586811647731523734087670308481063729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25921098692415320009273723669836163531089998982434630204821515410224153758720205196221656495736065986990891649068980734629807738543449783754715733073703860409802521427067518609506713900907038554439484161497061395295308743193161508112691996647595322353516338852589850221191679105583071723583466805147587422844329478429540782628474666758146425609034212801891358214251831712587813144124462653671432217516862934830353923051536673225448011283258135829967280501544500316616471471585839632129482042361889912968517905888376250601196844857300388450325639776896932815629436493128378354388285792396641437813652307315916439898657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24135201224332275466590117800609346170007196771625753185970549630657626930687542507996871822731318755854936036881237393830855065592743015559489788337701260534508356145181832475367999193269160017832088320157790356218799500670515043293435891420086569884871283060845696684827149406764596313680421067304566461848489609152004321724530686700457116990372813753856266172335001567525195211589051570849689500704290291895722183190314285536771216254460650080684944561796191077575981243148201291026675982227648383220499009066402325829243081603704180717927495065647905833883271837339945037327915828601911091866094076828781752901763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24575273619835867572325968620814132565673625164213828645298557260014082505622262741340178711210084697820773748712994839430130955588228703866932065050772660090588525845878395003307471138450219822987715010090993732897076536136519436312762155721000535157250378601837555924940041909570344367596581274920220900044209193965284291138323606708378290748363762572346720540332799207263599219027586508359387943344596922796165251829613865609647780149043346056691073827915844288120254982094705946651611782959854904284125715166782915879451434695935081589574643834163542590406188700126478761336081166994393247378871631661054943454451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31208482401980725598919223627073839476013254962967616397558718895700144310376113061710687148799132768900060129905425365831817996805379997751713697139064291265242242595690237798281019763651772995071439355637748046949139109032139018567607108925554839520254589404443710732271304881590244896963090201864889772104484697987049533482885704310893565721334713201110189700382663186503425311084701127836795343242347565126743968812245657324559642523800743971626828599277036589488404407018499811528076225661944137196486139667704016258640889230102883934209614212332971522539707900658402523861450462632905512767077685272675795199247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29919932562192221187476601542366467882325399451576394417302745047223005475913329863147337114391755639313684672020477779192773514143993978784380986815875114771623066878028787852467180983281663688747359559826863922411111929824417932085585622885972700442744857361546956919559639837695889490419087141031304111960325451506273994001486184204445806132900281123145978064761727185500519347712040217211328185040516544272592763292475862946753132090891346006541464323586768148496607417495760504487786401634666472755303182328434737568598361119177397915999030728798516380543170328169014827362594531580908679768673305650637544347037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22650027902515243327615455977894684749941170738791861853527755849278257797433466274046986209032498665548255263045649306244373333948473033175416610124974905030340270817398646690543091177604829967850251115521638151364037223429134588179408507750045739394382974271061497185602369155783094957562517138346429520303235802801988820672607955699082611732469771506712979089680792607804379182845609022329734439599176255073217733268527682336869449859697504780525867488308764269921155062601888040426197383681918846981261304489475795995676396312145721253482552291865849575373157579728293685201810276337648633055369120737144517787033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "28375032827808359797637629626844079905886237057231822643841027318543562205599471929640975682586791957043265361058263320244475234445395572237144890960015068257091365397340551892298517807028584248150074439158293757475763636780591868308763816517698850079710614560198850555320386723179691019673462318885200870121999106638926423766326261550183245571870588648103580073101522418989394810880973737411743219398073000927035139436424947568255022444586052883909876772601703729921822929519097089504070646531750120989228872648336793006431662404515666562008656616235248668623367340061911685086767685253375669391441049735907179357367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22953727144014627154538059288334310789658234761428674859780499161128178692729347426730292972448278365311002395554867425780547551318834513085794348839886321114487944056948303328421285528969724081314867764835708698581805632488327489150771644012480594592354020372910420095506570116336616780246429004878153214971845343206852279228784457553716510399575723144967056172068868806922865379758190353249135349189170607718380940401377288987310775486742626239646231395959825394494227862329558672006834570550547269431566018165029305644143138506806415412180290361198293287207859459086105326921776333945436436162098521760777039918581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24355290363183674678949804393651924560506116473246188642515560133322998662501618653045642776073192534523501257626379929590008344434146734275294932199204079660907610681900580136331441328508203699072446883967648871993890009247563969323404008666880404420423276388950235305884915976437186165982629394820682265784952275552494076587296382546404563276536912347359368881728193023108846078704290441699170745273930409294593041939864516824672929866407807866475901819848869441830612950248006346568919744200341702879734914212913087386058407593804737552674598356654929400968182058051881814589368465325532346147844614526076803697749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "22114136792600902894645292731150436798905115272948207671330929922654894613408280284281238872958583110431494312479867266548102733874245053953989437738473970927945607589793947059181563050736356013566481497399511535570204593275211887900190884681456088877959076823550706561638847395964094253733602701313247223867552700025083187647691566439480798328677654834272734692713932280030813760608702601382706485350589823802756865376096813492465767932220199647168370960083020590719635551584892890435326170798615831759098733138379061683023626795210828588568637988213610373277689807794662701965237312039633201383098580157048004022333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25028986930361280946100203649680855647039295761667589172244445956732967685755309311433670881033609163798835731890293379239557780470842031632401204656645047838365630982181574859869602625161484756915923362712955295020306950075535412050996830363605459661802537738940946007468459834706508956142241101559715511868463236524600278074560052182264190235958562448769294892350566781221559261578621198788999228783326957030286667166377121331279590495831145171937781352417168245518280987057148377037774638412165148672674910138011164067956532666934817828563487804753198105636959281245339200105626422204204902819056703656716760095839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26391977343161143985874562246544957140315025339156701029771473427069692679687555989142426826111540614938986020988744315510828699739419431485415967431215900145813528232244005136242126283504131969234646257609804679942036581724246882681811148686982963273444209449279442095332861597653180263393661513487879566923726810580181537698263081564746419393736597027307832597537081818562443699440120498795390283125126781784514237985846214653034924251354961041582039187586749708061956256070452183897146097901349214745272115839349716751572116325248675590922932695773341657799033558863322283307699224893688101267379354821245500052177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28816641409022563826285512993674923615928401120080403044530610997208686708452562988844911122055812961472252955337799797467885443796906188354774815892195329862175735823234918433471953952622507554177488838323128847938280896965507566170689423771744415497662805464241143989876315589420575831950794033276871448402108779765248397121221917399558072851120918192931183214369633476745688050123964104622287535332023808070662414019611196087593022776169556639793635923454635646954795285097095960130504306924036218032503517481547028482469477624270571383272733255760052837968469519939518895318823775236638263095968579320941354151259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24121052356917304522803894819824285819100855984439873565849025540862692166696308404283642002655846118281608940663522713184857533806967495921453395614486200939496553238921461514150060297989470876675375910079936610612987606304274759132172602467589993970720248653506402997887400183242020795417422013280447035370044947795657129479633476118524833327368653091117307742412809288803350128974094878235146871755402147874546772950839725729673065680316684765927334184450009202403137722312521826671633773365959064555329281308954337248102385913098594131405162680774958277794822910666950533981200419963700997181183833757335000946219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25369951372014736187471387425591816421927343249351596044938218436938979035205925219177628967471271204016048626988514219320373639848361639784680577965609084164050268567429518744857152272273034204797147612683694794267966447906813284289309178697424860234476561067808566812067177286948714930849259675737366732396043467442260305175677638975387211356257946222032613911221665462300250666907607222957015921752363096656660903090516013918244397431179653766767348911128332037731249252653988885477846125425168740179974861040770319369469727919209138769916994982101447345694220180951966539083488551085815439536529828099401575676687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20354089149860775159248148725106392529682615384172858674641931648875149931035583343511055033777481215670069222182743709450321386832319221817469000168541141936415928356080584682884095697045366522219519036937411348933302744132300841795647253955931356273129478042728069340225668762768179190497584839409929815037377080281260776615003053450226507810345688115100298373520574791557476863286944511610014623672364246206232693813895382198743244638592559253337504647683517700038772400101875321092112129001984171298275992853466813117887398026621329983822969630234218817562002203790509843799735348799266721224509473627801922504109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22390067368917429058136695946596520122696215257566738598551757767860324366776725214191192842752723548786110255548359701835176964475685346305018693917326652515345910228067313931370471202211993393995379779277370224163129148080799186127094844561707189602903002884105195977643113759865678817126843540308862332379295970917705637911870678385106872911760158894625088461125380711371427541893860159610885189403782979033754679746890457999154336747495334413959316740570026107806844020094576813313634878361510475416543741322069727923831506548488249431206438774930613647514474583541882822128198852844328336544126199735531656229147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322746858273677841053215068036649975649542042811495741062247721865459158430173286523794246908762549082964668943657013622413882365687739614067915926769335843039467595350957480947195626715606412851035084681904817902130035492930679107415007937001182788169754673144593149811145265850777210698717490250849184630838754921291118025629593679115766876336159082331951917973920368815817614305331255631612088691037052834805391981022253577203959062694681458317370016962843797755421929944678220130218131290081287239083729859979838260832459823649099401098860156154141574064898628593062997380547668009298383679385842421506468363981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17446662975857992427500310155325664890131154691403058448536796910588324972574086457361720453088297514639253560788470791842110793407321253496726736566502047828872044234335184730567085513988710555050254608447284352874537581029177548208306236583954842519072632208196992885354497297566748059233567699221954426572525065199775523938908796634507227381190504574763516386993301670690627237131483257659193991340848773128356482177606906347924738749266158516976263421266420713674224593391474448945824057250040508453702371359085626522593907877054674783391260287259595755623726078937396397090122591737629131944259470762932868729949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16380211505330052235322434879836451433871365447741624541863820413641226025959259440760448570388915114631016012045772962766213949438990705368829392188520045447063633132894912454410663492145503428432651911776190127930072370705949338958057028746931996275701682586787679282138598013963867522205975443744286823920647050504173833427732217296383172485903165637664305541801253792221192531734662408452654218188828515734683923043156946007562454799144450576208026064989470864815120372932504904815911343937091420664636319951041889772136272472732978910729897650545894997344515914107763037087067835636053258571181476052157657772627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26153302735127642186318659728792632610055136163398280699135765791332911168039966544256709867396530350531272037075196226251426971814116197972273342948438708018013093380159671487895778080563388550126671074377362479322664371009222752364078928888525675348188493842266395830003644040997141577031619962215039537323634331230649331932758910236733764575634495454393480860626697752071895949612112543393694757064227642932749676784128989504984228619271442889901970219360318700347400797953701378060762847797249058108510687682414072084925591377375455729577068684346894902156162839875518409954508445471925479781595057141813904505909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16752621267474495164454140875706079199517218745121915595410782176523921451938249150604444799137597578520445609433157265626783896989698240517613238914899962151492982755313381157757520353150679800415452945292454037612118148395869910878242563482907953066135743982416389582862444431246492617584534508793518697488314366108558135267701962479154761953781051460387565145378533234411661433626166783565298247312427917685543810698127125459182523953459040425770864433158709391359085590094879375193672393813848451259487847478724858508591142488109401650022280557351477145106067987176189707160431700104473734335422193894555713074067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346070322998334118620706028463488570183372209446535699678200674728926845245390608913004253725470113080704028231040693650307583988751704197921020515017226372705038924089687335300057033125740661561444790367013692822612551823881941961217842752017656956433929657253145175739758659771165563724369009350149423254360112551512483611519193694573967336404484524836271027913144480587912924674093809608926217106889153683506053473252817774570703344338564952899319912739971581202967466527931635103106641968311972081230104256492767465626341244136755433574071914964765128080295827599834412461697387003208527976470109694941549109967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330585748587310644662329000718721379552497901001286828169246471949307542046318618332526449197043845109616417796060471692786210721125825918494612562507675585880894377831326755073742547336100954504325478211331174603958964312728841365282730401983243081637142461251981735224945549924659959341698847704162112888793100871945976496504473023281952972771561981111053179551290982575221485299749484831871644931230898526636390315116289918112759330551477555800301022960109358488991847883879784444070280562684918071912270832836222655224370760811217088131159330175338685223369967931066955407096027679112375680111486629514902798651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27175475776384177391723912098078069853522078668211118122537803228944018849919469994913685130569661430867335340246944515528267442369297162497638386576716360230520191067497190565895035241613811481120437215471203748459672288157275483450750168115341269613209278089325497687765447077798617806542077626344427675811648217381826953907605520167397517296033110721401497258643896273299300370041264064048089274593890709759931628516908811360105786215538727021070993036451527454355285892669470909376900853653532237181011642394638010107973848951803349292905603169594487025336727158090259762091694586970505625757047719046395525485971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23660121898201776762390644031576156367796127792089010259112094099532544070075998147238845468486560737169524226448535845761161417545283189630879413721117819145382119472435866544267969963221304064177354361137382687275264333419724664397686794826576493848232128961327780374326997003009313193750404369585530947665227607339701345340190775180241785726266042645034301203536309435086711297792655976238933630675650436867566846535378976188556255841887558279370244385490005244969377198708957754937254691914137966756611565429278950908715266486985445561779990988285880120174935629904788157034081642245750915769382258166842117917023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326996741325477479566061119630879712065340827812986326731919315157916292719842761505680279246893078428617912509321636621617057420787164510896490562805411919448928817479671287502066853988718883593894885604164993002406459740582057110586775033076437533431269188673673347159703044920639559055055566840948943172847079551701973768836602582709239950407479438980567840451168775413253264515576482374688132148589543364013899979058718448555199366153958509764120741980785516691085801911752565221650500814784571614541555217764261881729580277884112167542716901215250801633170108164994999048589012704889197163492522441988760098573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24216913388665346122485522418445072789971184170413032151438539763488671664441278196000729434149982445770449119534674586749914411114544965918657853706878120216749107506028944131266076077884767852707856918298998871445307263423960979609099483982559150833289519700187509641587465134313029563023183427882040282214901879434254600583398287999569562935535851986139621814588573177862358575345838866987545415756523170210301551787762953870874963249180513090934482335790909099218853017500691845816702623011294759527331460115946926964671907862876157880448650405063223165019972801516965926913968695409476464211005717396613905974617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27329096965590133132004207008454665012775528330854295781244188768275961117029826214417307216390475515408981821284591505965027031923645584122484992523839257239288921221518272510133541007603024519424350464531578261575815876229751350910740318568285921215024269664440595447551560114018465916779715406179614248907730739988399333093340333841476265276785521300958496177053043084489438432253002776912426511433439302157330427163886934343808772771100432982356165656012483390564048042058049576196642227681096059716223272747378048533112584953394440957929093512559559956176179134383875719024100801753569909608082045570669711338549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309089397638661800067591599197157892258310357193253523122210893246157826466435298012817457273019088834700100739896306156107596935607813725110411448369809937919558351495079950113035569872669281870796110545824896140011839791455434236971508112622292359986375680125385876594490724347729706280853018250598267368571280044968453925305004061648848162735057898348767212075623982705823907355538854048504816911889407114124657076629163963615192029538322172417287542239394133436545431469193908360253381603619346913431553186121349621659227102943298895703710064664295575645355901344053571663966313072742227583178913423376790961183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23563691081213783178419245524766218309341967839555334296993604397695122113011069470398807844447193137007588432465855036522282675971265673180486148820945240247413776291680244628446544221177654462438608659085393998622622533929144586118651061427821083150073233708959157589403901712256942642066841981053565583741179368368612899665500181670252527639321187481346557457956872506606589996045530449695140406424001808550525613132930682623123369293450734668369813803544255701986171796396389324425189479077890185831662924760776148379309650963916080942568956709777821499732450584064982279400064812869300118000563718628662769891643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22576968661240970902660233216102252614595631835968194612053477335004702488867407439527299414851055863080183075776081579224876525640409048679711445330418657943008067104513857061575606711441198459409608149572693616916333950888286565310714209422756909257546270285945225618875339517230336538597863817484301894049940102456437918225124643130569123918192370314773640057010715956876238758869164676111738845425747252925441563909644861771018583279752056147446911745344087248660763108052090717883029499215747669424188514244378199755327256316696820281502359535392110795732351823544288543573608991024304159685215328327008683814211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17956762822583945416489641026727818225257387558603440024775618227056375194828102567058403276268894801753391209372321403930237554816337115006550662453521930121795919240246611358723800716978311717216394036564420276517198806521709436788849415406768923203382535651862238550570052323103153549081849585129319729260892372782071921696033706922923710272381186340170732292442217586365972472956471497571474319969285211987377041504221485102945467463919529965129569673731229606338024078217520416551956585984722111239747041741683866758959685148758825062560944428091604511332420769300023134575325912732024215233554429235377300155399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20258441338630052233676673768767555332670417180397669116922159529830514013769144826326750720081587415515098926386433788618159357296656254060152796632215355571723247754224902592154708333332038285121249714183091580119170414125422374168138101033629692700507344829979981566170068138823213724429824935762707491947556588611926922738886852300464323670699158105424532494876455108554515003581241867728827224134049820497382756183692282897433265507456879226638521110186806143273083989407783677703454484933410765690006287415250410213610212376243350018502357981511514548651739741086816240402892503189229588742981967342815662110379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26102065904078289411042971141460738773533601779114813457883601423774883052747506099895286132672434602016619457647486455234013986216880765971360650669559599721815611911650022282351827779906530284826651694709906191366991277051586790714185084714596573370203597212294280424679497336597743457798288276881910846345329398658176138235346686723439533551018470332806100583336407699159365114515246714768977483533876776379617601009580770017519024384972560047857725480589482328950381557791312278277560823631407713110894272840101037483569708159263520332857655235543004864386331644231408515522642338380057489404569251665650632887807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22195132224477245912015103775736278210162705555213436858363019237934677873468866991785630706399122000016694769697857765193015733480493974162019426795854504323384403036018058591112423876804208727057130462502175156768203841987760352249263022825328314721834340929113961067940465087625032372734775765287942255073101321388493498661863323682169172931932402118084355381246236574709794798291532036571386881100173595935876103232521449412473959809725348617060222639770257007155765081775370437747765681061994279208912632403348965295226026702666937141789995185218387843357953554293112731335483200221822549353871622438178725103811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28150525446312533151605888652109151422054138615464708494165192155683111616018961144836142490022338806139489323674224788857850750210573901164989615398266678831352047036516168628104942671772748446480924889204922237946005826936990342846996176897518459105572200561510939162796686384314916590140418011816634563257503586146918896209801066107299786042320329039502033382054666749938202408377674552530291886360684771358737029499153421338920215150804281313938563041861978321642085568062795754125197676926252979651273592892646886745097093634028443144978681694006910981339825893047731529238131278644019766789579436117775489887719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27777840895849452567190643849224816210931890549219119117797660106981040746675809653802945195032588032022868605474793321976711897596751911804340153090945140174324533259831574559736128713289409908924916761639575993910727004282235797839917872167216662340448566386724586701883289836742718940547519749561003565332324215146026644826248123486225047092897615354440929094918201381087098159040392421137648417008536644395189152882852022505264229225129317598842442152884166715269257927126155869150566455212543240351574776355565520617961404979967791925229801392874829637059034112018038330485074476064718255093121046564696707421131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25454627322961860006351049005273187153477307734779244090622249894824221180597271623602269901697021632517771069201089458302866634876938709753540755085440547005835356253749770316689860492619492524724006932323523117803773132534252437137464396540552139982671990332378981288027315769628104254280978078496087000860196651854476225146207745115040180274998892165847268740810072866332544482260466113874106681871251511596762367621238663239543079078289852132115537343002822836183885799030049796067959876315522692671250563880551850656256015057292785763839722406002208062050181911690286801623614612539606105951739096262321828744691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26665457635476785371715138094005230113047497737824722259099140560066824599545533598711395911730324308767565695301806272606867556999701140820398411240193849481198612450128270713407458249192765483701766867168366487111454749346916654068336179385993430773664187559720106945564872648392514144746409251496181983823371023184177302470808225394139047206205473502517104349108854976497757119817918009228130836139832733673211391774697244156041657599961037533415466273694499722695534935853367125157134197315126636608216559529933319839944191434461208008347586175231695404162834737529858369128132906748710305261077514957429656846593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26301400922188976314594413479627183011601953102067322090764551632545356247915189616495348590409657825881397091539661655201803412419231512745065712509880587508976354661914861949223505549741006450772875367862095770316162219240190620669671198032171623769066610026940383658857144509016305001888495122864657894618542627440172488112457733574764302427772180908283930672849632215148337646307180662880746074378592112133908174180954093168575055265965864569684934966778270873358627168608178772923126790290568543590512683133301604363545006448569325513991345065595704379012065782965358928570923252191371394969745358685000152751773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23510096307953925948084961428828682193982178929702310480188420855784310611513939530801928166354632996769519989825094563806060518408525017816507452749308567320995581902776896457519326331438239995171782416063337806981078422173494814720270191261224215380128944063621773437541898384186129988502912888348513443901818105630985655807033814801160863202454403711101275988840071206782832698638872531156265019995077630527831489282360073471694606759667074845203118077189598200497620987033208065994092555805691414905431550877766461111622255733897932825466326741646261620967991564856915499553151939904989868209262334390075518475453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24716571502734815253145426589004820686602576198585529221536957814485621782972808573313217701995478363458288756442741593044065393779283629750220542977530518631465175357209542789269695156673969901666743512971562647113241110004612936107383842885654058554352743842515452816792104240041183124676682532305089491980799593662558112150081510655208658602947858478716203955971280934512073868683202665183397222961344238954436476545934305883015963913910731224200136881406915431499463627486020778966958203373846194700986398558882924055931997997847921046675012497896531893290177656418598898331577395657691292227085235659959725183021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30224376251393328036596789474014994475169014751978214137383982593603589102144467467541956724448454268400028655760790442280633203997325729727020069536345946896637429318687371767809049150156529779756753372705227552689937436766914448250784646368316456958112487298633978113901502712271529445138379376796806579341056643053638140439799331344314751055546529777724569769440916567689953391222001836964572704425369473890592848304695429657674091221663061781454796454695097639647838334846291699330578294818247750851906954058590762135639250287935692413383655549402874719882949259396566473886427282745179294012649788308661603404637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30470944607734543876989528787874754850205032821192400027095233134805030925372994046535922316222639047666685258740455642634953793916181492637863180383423503194905073124539098173172435328494693164023618550192194922561862577483146156798186750557890546364555608402773443067622476360358883448115693263905038110537372293108525556299963056234697524341627925147610581961114758879820479832703048782645914657294144865054841590466774413281939288625926532408374370840048635402893823857324845025105608818179015681512338754918023540110176647028566404825338633940357434551014503304276931347329723737495165884617410200509713593963863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31721206306349759973257274651061597981721557740542825443970263170457540164403317780251138380587952294299848854545213908906366517503488731621020626459861225191226104536714784470889975460601363818222347503346530316186049038607056501107947571367000883233184542376736844196463494730742168317834872067507084814274973686014427548894747061912969763184952743930334680581728019119266523640229187282235441028065208835567725389683503634194949786616068874016803496097588240047205199765057589395509977958771481330832249217503043856901828921951596067334688229121474887973861488561814057821462303965476223441331243962299895232403951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28006520250841242342160041826515322705707382811497037948941096548354399358410496563528556794268264307336553016948943638532975962315934458726692643654603404328635029301175568273492661021367136939783537065853471316180827073951390987355979737429602292676473986812167547000802507746727036962214786034827174902789281882418021288379472412599410509801924721541208255867473467132208497736348816191537163490321012715726206912774104571059712228619427173245592167120919334622377473150874556130322612913902767787323243007897838005534538739951936815195033915009656489045965616636382426478810872177492090864254191303131142791505029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28615005195081619352421537657548701627625229025262610855883169889741143930942153055578275057116227008935979599842779861623641985552276332783579998334599746236800659680591713417533146594786073291674594538990430417983169809890759063352695470137276075085708456650808314344921444344004616411457803978778048593668030774896507096340968347114323858379683677795268437407453338444876917905124659150156350828738125122374702161581110193056088957691933475606348176904641321443678256409136200451078435301285100214369566644562791016691490698735220837432310807657173254613416072763933205548648277208234307886364542351592624803403893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30672661756742647245905532970789313587576135237539365340319060353797506298553839298569662904196926509963401172438830928011405113627281080240539080140735410770516532626388422502345229792951963122333139101306969671838520348330908352327465961501039518674409209702236987322048027088211233282157060737221206456980933717184966039571017807060696295153354917027980414492427625923538382111505255069249205417383541821633989255882967210864697029910958094350430548210709439881256490421158079441287140343104559268200806263210310228602563292841429573674385549777642566626528552103375364236568449056367992343803597585471608613739259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25782572034518875769924199068505025285010742633682629323224918552258844471347139767340571181965345335435713765370665578528481181999792628991547693287140528732384704907038924166087529356214662089190961544020480307236772253780232894410527445696541421251473543303708530408186420465090052164366048745233580283681706098331106087864720938320980050073320882617982919664599530401436580234374528108606192262136755656927135820369687179520936636960611737116733058672267835448933837772452053229291671130932217803232900863846271107268836199186960460580175471875231889272111740557212322585476913895311472706703411590966614230948223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20764719281656318253333674718117137131427509034570615600022812508468336415007550268728641288358380848471229417273415974562621922591234408318441705796575385821676313185292247690073993073084481962237859637145280942847897379480778546718648540214871445279162656355949370492811782882705437452469093238243077215504836563743934262646517696167438021523666607471042103769595694556905356389115022228756866466806193825138071471600355337594413595193995944720086548423236487792034028931079461385774941280579547941103120628640595649276507386754409218331641777610062083913852026697664258840187696823499139516712016578115714119898329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22152143723236116718237583297528104731905952938745261204646471178492127597001798354797666857824812553421391982133557261879202761627026383426493093493880600616668624076516249611398573035592870046022638242593519496628538487599427451346151672915261706567664720727261862927739948972287570877814402626362159662005262174809808898006669230466754140754517260382966497009915090548960571513788594569683983464779763354793837208720645104466435069476646928603942876048278856627895525192901287649291309335115935466014710614140000193402411167440466750486207930142112908370987864007565029431628332068307471934430099690093917943145477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21189223492133423781446499355567816358745539592165565431905539198766772504332013446736259530215453953909802525827728561981691052633509404860778223492865681325567124538309032885555411856050467348524546128238497603170812425461093272964426389605968601313194159788474199684297011201764057593889072948051813933961653940884026721228702117370777616011770940052511010583579288024817493307674128041292950583542838492896421619985566112249421291512402895464829633953324465813498024094089542109249890911696564567844946952275774917737433889674847498673353842404238855051204509495143497329244233258229558540946445712153626261522489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21957774868987844160137220647407546311759511763724163005625679208817955421491193962081443344956259586210908391715749500887083781046380697795001627087160450218138200440348150988429703391835693569714873780499752141042962494345074568530067489087091316023044477514180207518295945642887169883630026036998646555041953497331424685532463408212602868106090240410228994663130504962977741030106674926599240780715422941288514955305587593946629796124186942254950602618511383327502438248817426121377596304361606788289065164573266302741621195800909009476703893748278163783952874404783473118713270625860124941042101400086308511880797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20182695301077313757398867014480783857053952962575487674186250201589772821734722180021730060458532348526912986325415436640207424521335597388196518974443118087530050126815208533224376407560299930559589202004927352427809509945329239763701862406341098218991016651971112331062161339202752864920294021298500264616428452599031157918357697844646059390865347502584903990186461267850896360981754419186861685009001576964419498550691321273988196851821537181719368618454042184603036396101332176072232311761773838206277256261299045915593385040752594265655120071435613184796489060878760311176461167656456358879926369206601413208287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28610433472606571444851979267272781756161627674082293474035885348104861589475173442467454348803741599987977024809785580853310921721171666629775154801604363439660241400393359027544348676658173713642250558402171688420095546246835279666780771051350112321300952271253124546051018725931324834902128698897736155333378105695650022817547107098283400695787262236390074668611674044223464430526205836117935323400426048882464039839099765761625828870642402220465000313827670270487141123802589094933970167113286858192491916016942546828291892681554724482683585442877838369803462388088098983442634764737681408614431998623626767593359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24409571045647195159895761382637040461161898669220143935399976107966041966546347263986418394396107094940858712457133418030558962543214348287399997269029336033907722379817513970694679292706755576539399435058192619278953892666009924341575936434617661474644158894960377829313347293452054121281833388135899003428525984703191255813783429106913367035288708086243966377643975855144014939180472660943571356974958100503008141161612578817706486736993387831513925203260295421051400968467266223527088261649768177235476582812708461658258472959469396068691662042786163135909354161797312834977545869043809824225572264710793706666797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22179564289849859164676725617286922021422471230613535580845946653299364548433501958813936265393136063028726550033019236797008940236626559159501341851784848115564060432040605079887609252228391134911664475235381351412669645969223889673043787341123702215044253344799761638053197290396435999653521882550695498906908512809573579274701443711159257745659939990273834960603111381461737467199783177310529070642162167585442538400682997820928370777187005384513167228103917805110530050489414056451261653515719126435538985638540755411688291673806576195521875884621100911004526679232592631336379438928384142136487127142551384336183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22852620404211975361342348205313104623246649597436142049299907430910279253499512248492622734450624583204551335654485056370283329202953748460363786620120240943955907794284560940335776925421311310919673773018500105605418619588803684677489717388106699229974361385803560963252964789482063482508508077804408782025386515694053569604158310417440924854182812949521787396683413855603176405869359429550227766781768852004216986746619176011592559843691183250669780677786759344914535165714171849030369074050216294980988761451690116900002089472264357182264343337322137171429465408430050103518828968353896693441757303502083954738477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29505850133436515325974884389752073493195434533867606323279135678840486020896363981315889909475322927508363444614664439708070362756804464904399883368259147148497598498252886013562985243856964636135650400098158064194758666878620932144210645726212736342000958453172236921142061000864753247757799238285862942458905684162794139578279798992233977257554783847848740484308617810705527077125453204875647236920574895483308265855570435121847475487753138793558184058331284023831115086319390668874606368410282463028963998495878505867284416213317570347639774528533224921217000590291439362239979688173169873222036210286099308586757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21158522877346894316043756816796326853711865670429528242270039787999389945964233780532566010540954513656211529191217824965962946363790352467590931030005529614488370729974102453549649165075383062888137615017237317538027724301873709564652598003585486283847286149898988669081050392506906597764405642759982292920671920655909143612304198749811228519016972289385188016457441611469974627614809541541400428181359666674184842511452179564115132958959172650101065187013881278859559156500738142289762400530038847368089954407454098782671122096173060671203121298225975693223648798864036267619563561359597278566090335635091782867667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22072999203665445927922819312006427671848240144886403376133189558758227854334375958232569763427557894043608521298780847545411953970154457679034555326149721230147719194675953944349625852145591909225360370857508528849352091594491892906620645837619259759067753302781039292585993290688548548706980017602736305325313785669385806709856776952826694918167192535089626311144382786640762784259833033513479503403932858049621101876049409101117153004831007095917522330252096707974020362115312025755599359695110597034240271937024802355015960278784674028577058831418865385540803279884476784880788976305763401983434376016083328484933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19215616325824806071611029898330103654662902490471063067399579927931676326417421223106261033286826923935680113257387394616427881609307987112782639639004453386071367371888982857747913768463821623402544566454974708692822165401634560329406736228648941756069508555198425706967256457125993947906286861783511287568765930147463094343152370123101344458912530488940505656800354877882080776123825855949196317320988957904369623356567889878181085917350252830249348352890440760333840161263575219540343664796027103828977781037440696212056306116831405505298560683211790143500182216194565321353361299652568040364651081342782338981883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21372119530884122705918568255595220136771401030487107581622527099025641670390151433644908746387491049771689191459232819215241875978876550193861282254179485321588752565994155861470513676080075369602198310220822124371228156339814987284679765406209820897650867566403444929480827444793568623059310461906234020176295569093543100846897225344346929694497600867691023667467499079084148850697010906219424979265051898168550859710392561708116740042997793286934018671188758903154301149908484370284085038379797231581808757606542497255814777290726507126319070171023955718239966305270867841720149212365616384301239305284971201429433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "557887331023102976195009400935933896100024185428834031068439696019027728470856800961330671771937689410283544753983566947346956775319823600888163441166417201002795771636500185704978296464947682820831971321985132786951242998685127524175528291432466892270086204574678981132373895887198926858192468642810078129178691254612350707522679575902173854257633084752980697126989380508686958654563595296385842677761362967995591772863356478473926402603659161600366224889934224774091470120392700959075330116476391174706652838756711872693491945659538574568873874431774053738052024459712056716524883802029125058038038766821581302157103118030010732426485380028774657222815891715965627121515631580717886453411447507803852924886968131217521581994034413618700528861792291824143810564614628634510196289172969481348436027529024607158379488183595200933211904243533152166635199030761191359057285959709582258855226116420145459893616737946321381058830670427965654510952534493798502237419826553384556237258559529945461040141484275570824030749552811497450518628466709883460986681010349641025785383580328942060309184135793610196645844704770201683438756029966480557058589582433492188254199112581733855682713947652039302689453616029582807915640591626360665726313493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "983967665866749166033740969481718003057077732440872859149178304784537139027040963802937741711702308537703127036128447305719498407870455177836495925740003563138395272368257767023549029598865168412026604202494257804774924581086208327913812223810385776154098894269556399407863516440852272028614737467192255933519923695708893183473788731813262174395887204654490515475223094096339627526484939529796119836308752249078536537197425366229641844047108603615557365040708955459203564276879404780611838466297426650713386088139312820942393334842033912446634199116941949791053151119552436057437938371211908866128545162699406736576741084493540486527632666956842569712634228238190848719571437811211718187124097886093765958046973415243302963907964038561215339049970884427621413704410062686992079345593756975545693039528017411371476346568889296817336349698940480608170742177901123230562043561331660891623980698088722757538163891130191394073115125337169409243619756222350160167057364753678454101057009596613568609901579858306270476550048405406747195175831361983055488409887530281116437847107416888547753409917791145475723448424920792688326845866705461290447687608339094878048509980778598578194733590607092657278559581464328117475186297406085455959106617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23422785569366957909068124094702508", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21429363517794065592058053149452227", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21002744208581621327460671168353716", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21414005742680695530334156529111872", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24133584013387459855264735726628932", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25777674026578474603859400958837894", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25339257216721585204938421871292771", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23201270115404604684309317026010435", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24321808529082221459240669255456813", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23115396802251773484006017245419831", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23609397254136776684803218611190319", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23515150461984837119938973723143783", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21266065731472556200577121868260375", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23463050684924296369134053613253473", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24149090216796838496617543521230788", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24390795628437398775789566020281177", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21373282944705266395494745934843822", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22590453144692281252889508844065379", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24441794395677836055285583189639528", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25548476839521601464703739106766622", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20823925498638958321596097192525425", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24687495641596241730476842375561237", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25399371718582495277613882848227911", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21427986017471128932957085626516419", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23828606654264336604629390879481775", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23792834372854989708278181737969125", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22169280534360845702063402768119253", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23446348901828478282281065582789904", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24691193244175000487944285276370358", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25352152578136133075595793674320549", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25308321624670831096793316437579357", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23790041639681481240621550109084034", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "771881405416701451116978118920197394843855740794673115984547243938782038388220113157627878022542124500438157114567405634877962179143924533767727219185350931435551058441256884919717625343446954508120265067092949390154847532738600592797811400369912621904322309182604918667718693633698629145398253183356100331431748910273905220867315611490339933562761500723527918881184247511618458654100447557444789637428984238895685242740865661051516532048573727507583435746719446889167158464859657209747512637852487486743623833480816837406865901639526671065602724020042223026709150940224492159817859761064561921971395368782504725217912337033565015419223163575599477448481079229791221609865921040671564438608536925701991759130415810034412567406824215230341672654432154624150015193166760225741388697427650839642757099808371180310243422401996326756504197733030536677981028177563674120548776663438964344161779078411003552808843784265726898130289758551642935881541437196054595598878038119398094088138525722374106168888758936863715621470190390680820406914390433340526545001184098958026614597556792799589773232039413406196534872689999489026512254820625357394578565164174447226395896893937975281878477350149765956872112587463554179455482412595469416753899961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "19682625812191466817222395187062406789756678430993715678699678761537825490119095923165740954275029873019012517424250213661561493349424723895037594776317725724572511668735566530109617204041609264928571783598682115002212321528216163387896640058096070878739714011926655062630080653882814790300772897891389010378240095393213517123718194120401100491090585733878650083849593405782563986336565246371805554009551132538507664094950550960691609619866037142127186969171763896789648424779810701033192264382222091519761525177335296294351609319768688586466908292859685965844608658313364926856363151868577639529351223231368060886481", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "23208814022446239488135695788716755118975998757929509521349677766669182800131240692223296802423601305056992299062831738602627348630135252945388577168448145822617693935319915090178190195121771044067352402150156159383022874826914873394621139795094707707574199803480435525050462037268716807584683850451166356204413918946843705984200866047646534970508143649598697270448793481348845087021129266998386069057667015172431471709097679137873204702498039674239958748557818835521773855356701822790468619262056264086716077613135601492791637046651783919886596806816181579902197113426057655484043556958987444783006907816433866090561", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "20296344598440457429935107291980228235239894587939750989968745641263811853897274070156804622834661336599480258445943815139485961620201338847745781798880249851286894951617745198423551982187658333348760161357177473959343657620513051633421042295200061609300025153188751795743907137861381084462800646579482713814207968348706680074446044045237155419956447756699117193162850847371643790404581926205787043869268727694362844338838293726637149919521081248164250365870525657439813164832158123609596083888013090635899069036383040855537860702387370323071183297805217581680387157507013062034283330200260939628637215027783857308651", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26885079789359579325093136320069043576973106604711927128396711992444662717309138963418205802385513461117024845335624335716830549115598955671268330979550132325848759597989761821243008590987126832577706349766260052857229456485900525531839375826953849023857684961049249530274165533402430228606132289546318272259600341887738434401781758326715413129762711923457623373087154269953461125643288869148637783095019311013072886386281746599642710559413870099888224296589456619937043886235214154172119125273709104262415803102522160070495291617689325948609895494569589822173557087351113440072498545881500036110582155971390193312631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21300346101723382005207627802993527155738075041543080692449199024085397755857088648914151856897773246243202498413682790705601689985199728201639032036706513695653222713266358849770875318872243278929667751399943173204470701523854930019730394965044629122968065743465416157887112876953232238927326850479125988799796446378654488305032243345926075408521740821656600431579236917301707030862103647327736833072870383606361374494401232885522485911004953645030136860163641651527579617515664003343037497585516782774131232781992472106772126037898698961988115093619353702817800222880757372677966810381053438802399249680086087807029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21150029415686743815673678642650372884165447010039672620670797383907337285448117951161356783611869022362071665486021160220394338692758500651273373475464942201816241021233262028302122095538505668368774822781524372580930684435522830875420243667448891104154604910631857338889188437278337577195343391492472984135873584801655526007341022225093427074768999558707588535254287626277790115482447971174360220023832894042448079875951414142833012426607688616629558809188564072875306134441595870516311880989213049025162186533536551285603296769327000804822470848204432409884824507113142584228441168795557177863224371905916543194313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27999714895262033530406861822644422341539572765561790865583392204827186006944344629484568117018243249568348995711498377788439284680013869469009963338273455803897327427521257922949736598495175708069514808126645899176548944609370410247621936127109389685965677960304758967638971269074858658598868748403777615007590067536831052132279493337168138142893447028341257592036748061985789757829326239706575958070577828328967479476957848660129446796659980197892831175872213388208573420264448543198302177408824005662602434324319526629608884826057981135061854041235232774009074284961230727288818989316331479503203322441048557953819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23378825869811723004106943606429769013793150504794908856579991441983376989597664823409104428802618488425789980232981056784266165626955269353867275721279818002533358122567419442626254462080275567807992880964246083101749772628163775001036283715018274837564773456105937494128446197271321647198644469390532789515819347663773858206317172954562314637002832363970544396668009910617504416991529925021722338472022883042703720390205644753783858037410236792833374938019988956528428311893301156046098791814342317141854934521018801538866228812114974505646437175566188208554034435678878496626641998154715825938598711057770738439821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19047214808988470938901170727305002461497150420212779116164598654976353435010204816025075467928908473717489960663280389299626522223102729989265368068897114239360219965805302119209088923669937966416631340023929348951722638383975280548807797000824554209764749609283881931992124946335323218480182410692303876631385147108779826476422915834383077618595039332638461800870265619324256954135130011124417938773417009522506039443890949818853035946338304389847316666081158376948872070097636479857441739020822550506527682686289894532322211294002968178457156419909415763193550461538880825466327842096689214267956949182723462053191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26824911645989777249411471983737063527448243457616960513625018089665628072397491081125073123017890781084786881318984138438842265724540200500839419356048380289044313468617716494007037312350748290360586714986962372098656003989835763049136614561314655612432117199339270634240824581171762910471840077248993062457078210497309737568101627021750644005235406527751026530215570063405271785641559403145192578897403906684554136449378590523259186319593028845689179434511264350623444947473549286844094544495333767089702300050516400139099903173497119202175227407973082910189902327162971700262237581174830508206628692808053118386431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20806341906989571609588192226274790", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25811497397977449478831386146287756", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24934572514899634165331117656488028", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24471955462667121383960530762124186", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22266817409990770896109095842363961", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23548801189707854539276485550009827", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25862024403948882164466649447193359", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22635920206305485111196117838446881", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24703356451013645357670821845924024", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23456970775741232955650883810815101", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24207782817989751168270798231947251", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21423317301379596369034315478725708", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24388624774103700376848316265205024", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21375458238584905674203397195392803", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22516582309522848102064345396779979", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21417165667557974766345017658695314", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20785296138017420117416787193123795", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25072566060922738453490368559589199", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21446570540366654832938588446947077", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24217079935349943398384394814920892", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23525911613920977683031079167084926957961543662308248889051474146150538385630809570789777435840668780498207619218610730077627402882316139385110496780462993334149855561084789828688025672220440376836696008114437877800694970786836032846376371615358351138124763862694256712313444084153624170575678196356560144109662350240091575054887285328831306658998882709040719103219345628141779316366188131786783715764906269417289354391343977115877904553458675761225825889709827048974627287611068468134127801308479863931891226356247707086656019187309993888811359306714963326185093840682722633658014067688476558770294389627002735483079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27057339641405812562517402930244714116074759570902312216489476013999787741573855682142203110250643659018106324150067041507251350020468211193755788808528993143297071703138580169009559170329804744047514687943008544054904371532788440411891499689016457083525570178861726830678815223400852963619892041878180293664052199269341841237606729636793687035736086892223890616252984891675356029544659762240569239374445918363405864515026282207493739564856711168727373028468706691499347702961470522746500895064174281901477506508482604587863792984178923975698989388823305962831207895028258401611107196111812741788165167479181608230823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30493022695612824492168426821160977601296200360011356289705936859965216518754147226764185237573288779445630449894462911309062837156719794612540027869013333082858422896616221685276580030369673412037351269942512826940926125426116905464849776942265654196015224039071001127579334069380466480933302370012690068345944938577570398887397150197555657027291136248617668809382354545930852277853697675758077985932196605607246969616080633759929513429578495070503796310039192510984872387587189675283020926045691305426307734382234435873744066393726788280488709290364170490986594996520912790413085868449986983344167348775992704645833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25174200584709656863675316568381540761627905499703449297112458848862628962641490085743985396466164053671167176982871333150864703936477511819245338535617558569737322016677536323431147010592229899526186078670970937974302908993747018386781079006638771259953280974576965585453121661554897531472732100289144550684908214798568560376993153467428079179830553537589623022346033029718168204301785080013641930225521846815407087382798305759006151448579879429411471520037000361914010700695878428070018318924818564195188959890149017370540961555119499780208937732652910306894943636077360261576907530146109346189551413705214867287309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "19175789541167323636824047940889146497067022019407604141699577075365944276195057925490956110070967113551220730208828782100033555062496288085185653439069459974026608561815660671165591138743794721265666930615415652221152222125944345823959862119840070512582902162285279336695088416614737051128796251479071720544464540944888963288799545853120806773727387636467440968959879759411747041762276373157556830782328093245399881565915243650479520300932920517877148200328305860991738323641784413854384715380526443361196811903435523768868602131563425247211316781033837378886992254053463351567758476716989060528868549278029088554883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20194018394069068925586941923719403981609315840562978598337258907766630271817181875273424510820154835734915237779619096006679550972758095190901107287232253044127966109531331937508544306928608316638795826860628702091970422980643976091291282103139927377730989464895948059422798253956702723426047930193833081144716868194256223547699766773180360675708570898516460054137248216631250112733791431954530131374297935757754529505359655422584500885412791239811625370864029345767753341668210658104699141811601850559737625331423543804835938081466657291833409057051649536854539182283769163272848005513221939834848769563194258949467", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25050857910430910233444371671124201832642883158257870455940942250567783049907979780464305988177961583978197707471378365356754820369714300277061146297553427045864764081935010427420548562076505686667721698799489361681877906044019186493009860487104523609837376481627721196399271790568897195159735760067740942116025800502073575168987165622516534334049719502031882876481653803480834988731223191498072392227512072971693644618762372286700029842752697040342878532389606563963403408929995186300698713067157299541835221589820119355482538966485140248855364002100982904831517067379048008587894992890855236948314449700927140498437", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24937005165392488079519475600830798926678746717349535413138156075973766372347288926047850077406891315892443243111983283002642075995947237365064247801099562013916614059720207826843804641581207364047052422747202754158346128281871148008421067216917444390438853692208400103875173296476831204587018707751373628648254253404803049775124611581383251677081083716697750901299558130768435392894649678698075036970827578193701868107484740560321225327055670062503458704893996499042744408845908272318860321806208475524180768244910150858848143687425589692814264651195391588001695020675699235186510724466937624121215047340446578794627", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24879750641529907850780032640429108475110764350631541649480021153617572947426188499959257199453555880032674720110325126151583238688729452638859782931740290685423460473979353745120521453819750248114698925380294398488825890078075364386339316741879990670523510265013325819319325117951349366887854058711975762898900630592900562165072816215347700438850770270252050203512191893481616148859458095796389257518012011422819460420153291968817681875405877027853369604777982878136854179401125457682781429868365696608074421203276171584279061953544777905071150934067045088857884532060235442337568610285957077833695310461273897551349", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21206992095578726946104277492159769432093662580437522633468294072856932371296559220739117176622714710673900320299543167878603047389161537663794536739698662901576167930827397414804745379176827556471803950970504402450667081354658823007064819460865642462142292693002999247599505212259666085669138602421718819299775101066354544724345828693842769748184491189205730954651186200195797978156221826548153996522032208695658746581354369258618849236275698043704099857714116613624432867259465716083789264010182647710906009663990379683762462278272484114789977204816427194380798412921283476202876586640788519055344361210219250435257", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22847076102471336555640116067669071319347436874589253578407646391131132933654789593981763805504653046828442813078006456927213884898144756327425149426992537010688766421581465472819714845883492055619750591195381049155814643851630400667798604395960002367153604823448214089268447846290046737423448463890311600668717956771595271259456127729594404676714169112198431779289912833695846791246265295461696357352982319448868006978504049100470036351429018085312221548405700423910202707819550080523645711870761399436739761948726630959212202224316160167949865067187031333571409718013788557419557534976652567122864979363249046306043", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22040639893824902489121204025353248143700610094528265295439238405721643477533441121236904854261058465642182187956027538848322504242665682525063979472359732640178578708582650528491518993783063458260849023181828978202637086764175593662821997160174064578688817588844155678258372185246843527882749421510393431780065422385606665741275772401978981731283171670563869599977565656429265691258441613367963872043640141613160001850154313362715365252766888470946400130861356099124305597816799262799174441207922454504612569809172396273707930982845395918760428990400439342603255984500556739632512303588544850576966832209608450980267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23335120894928104351873062719411252605991022058289275226335784058029006529629700789845258582008688977197654401611765394219427507895467541071803326838074039298881287845294218937639016291430809469620082140719390907061635679654988670906768781724065621177121240892507472269698306191047470438832328404277160711940139552267966854566208860424420381456126997491119724373615507822347644933680794792520509383860392559354114012402141688693223109462976959191742871531309670248191108065815018349094732967295758098920126325853724459301090359059287653130260905955147754450948421865999233573770886068988946184464820073615849986397143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30080262597519314029641379743179894583300757514720219949010256345934557252662940374741586862984110056604486960169139287334164275038609956256057856143603189883179651930997488213096726197595306255600732150942792102966369827545749504026881992628343417433442852033191152807855893464135125208993450820670961619388371440930696755952086096540622368454991604111289145302984045087252295133367285854966110691281477647859471214186149419550103064118911355999595751445560693509668542691098922563509227329676366905276466429332184766276774500297065634314916044999873078054897888320055686011609656194607323742112702904780013279231351", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26678586581179239991816293697787018118239198034229250470331946398997282632830456180116805511813250340257984129511975146621088720794133162173410652947153339608397167841353929916500462619723805017295778796335413754060252123101295142067414013064530228877571362294274930244368574724233603493485792826749129162068993707948164204265494009710231328734305829938084750332626313112726437218919287051051980196118539519153900250541095957598535847468994334285442287489310910709638933635378295949415968497179562926671590546405906994294556863132521190075956045489055699846349774022878826563147344274253901800452521406792939600387193", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276767003494654018468487493582131546512244593583789597787398321888180730076596028680289191981350494035508229239948238071178836530840429428426254515359248842052596566172654345009453440800943317963472591183325559678830052329078440312662458729933383901029432963245353726156643336964482880350867151118348963935646901716670857266581714812584721518974591456341161135302783222171476562719304341844258299926476393937950503204264671338804579766895191061007207712889018533626786349187032730795661570063868225438431303266885574865987421066893165370948704384332936292250428524341150917793327460269019100032516914675181064663521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18128205340803503363625148294349014935734360936264275605999601452175941987136282772445997202717395259634280122814076259675971538114443961149828387956048202541985604898995147082221073586589712939069359243615399112749873494334856691578006637818756330321935778935611503162542673220352987458279535245713553108456161053570613601404928800715915895869563565047242246953797834084000247790239344001008785460182059202796872720956669694247710732025786673808118206554421994358815163713893354395039909993967229831966092860626115061777567128782643701314830867768607482786226451796210456637707118094134921398691069745482806279631533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16910501831723978220495673508624865202184144508082510535423826351472691994897380536173634958649149485536572327096480627969596671460761245157775719715769102182101255747992900936836490201005296726564750774340550293051867244025481036746095783456930237253298301203831261522238900363625936331985438421396598198972889559499760792065137988499885521868834937278598133982588904965190236643006378640292857677169986106481920807064051192804846315359828008203978313298187687177726603950943292891719246222356437365921932813849968560059162042190241634854205041267342691388754515498960154179672388925645765898885979837344461943176741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359320900198450480651298214309121135445123042865051936568176957416394363773379010695355958344106711944401713219683291588004369168149845996682655965907546882539446375355911290812771999214068155507497809416447770261749866091433373793064364819019861515573408292317761816586875113605763038618156952103624059637832377094970383413468496329265131168712920071606246102919420241909889073789576766940985574228984433620665943638080092184720540211870409803588334097369862519290066923906452022716571058896999846951102052328153191340964532738438159537427911612535456750649812668425046945840832339068006055581347091294301162387169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19585275526498854884796975039376622914199830595688803801482842707699557576346769802841849587348186473296456313870160366357795101271271884281721705442631745788719368690238182562350072519767369446829210444963864246033515659024130720982779028699543688162901437389928718671892336921200013683408992438228530344438548514585654091362804008242657295972304298820268856314263761074703975616173358546016874704583245589171471440240316146993071097319309597369352826004763674322382074421279498682486735964150918102155429191201509899489471214545355600073514876205375739061557427775132001357876178920310939237010783450466298420794681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18094409061670596297558213045737630333712286176234082892132940492461022047412102510208252251949841570462661368990472015597128188364779438551068390982781596934649533587758138233522431192420140546397703858717803241841246967672217351364836579551133929113252876649368563142795014938040701890736711338353535326430356563642495782056318321855370834344761132577680493371178767628557861412932489581772622074070442611729248307224112635772033912665867043811994735377748688729518450601840785295842270073157247964465065542539391762129373426700281600481770784785440656128627632268555794879944335864174744487574013068822280670380409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19831716613012176143311275069588937810610225655728636142925385902736958124235887976328303101515457776680292592634694429398117365088141783996457709363202242330359205608414632754840301701430816523058535862336496792726573490871561750907979336140153834141141912418877678725046298567804605468131785847954050145226973710962718555202548986381392637708252586558247008875715300393220253781293648083100689356159068172245608041587592599770025509364687705561542552797238302586319944131829797875357447124985005587891766222098613819950610195442483585574430657462747858942936936335315190207129836311598767814793272313395227992439141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17618778701560194542165133418875798012735240962105996991765587005880243104324028118371721505786605864813714551392245706578831101935107779655703207924422761388768490234792007729264450736978587190550012507974938844707824086380365937053216356727231132580641507184283780625600204457638641397656902637581076590094050303914828056555304781504337415690081001725615431370819102017676906194283608203568877286508299475008080835572801984481701472384947443352184549780855306758744049048043786615392036724097563961203200866498815611550509381408665904930231840015961654430069922622071770186990167202217080693520984125734511426776973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18525115982158865063135056877953675680515529999637755286855266515919581209415667771062495123265318916140556588017354716577874161387222583180952722353240778573333005608470775694544759772268273533377950756062177168253393984715536364287346935031552465051136095357551804040442995482428826712960643994967307651127921282904407168830950198511014689845057636672196920449985959785928864442465186603568706842892024130494157064685061447166259612833092574014861057549743278971045286462409332466517318936304391550417420914201954272064151551949562290017611332664869151945009795163575099155897603570918482681329847148079118564476509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21177201733729878665929255529768610964510310777316780029514754059821170669245900517106059585425441943309639259514275868870074733276286115782652697808659705088429123495364446515994209824828657890445678883982568903301215706887788687726293655029993716704933021119208725479251486861462618260961953295073919790015776122065894347682649477894141637303941859830522624518306692109969287152703557418471244071030163162676225727089673538578487484260850446388366679104534480075414657212372189028139678212222064296471269246050990881529822206133801180103284592335251793505933571171565753159260304283689755182862039752613570968837723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23930120813002814458122610594907145755913543268652251219756120483736173231535667357479777064718678450669066038401506637380796078167656345316423587904259928561811758166734695750674363116656987285129311546400170052326132098472544798854653847268301344350071670619893041501328974024480620360052685901136458708623793340730248994693448683504779515932721737067756027054242909344884794354508764440873029190377775072113554618284156852980414151764147469018633732093367568524130760277204983580342513898560935253515505011441239634745847186538738209648786095030437650765699803006854803069431285399837809362980093422564386574415151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17676170057114696800300829924681470543338433625402446876950220058473582793471008421277574294011882346441606275279887173015364037353306622200019186430121334080447528534100045951377005746533795104935950956701775179153933847636487621194383066808553340756140937718202262817465230643364679693138654931826562274473575896343848849723544545432925325109821669534989358584994757968514331264341260484396468404051589775752980995977942959696977982572785692924097308751438173792098413475428690078204369265373096275741423486715352072604146424054830458960680055351178895125611168283228840302868269138207190371079854639753113426597281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24892007785018923937538101438435710170792523527144237499960269603446169100967019624855029448870567418355108878388647223130429624601999947142087703246604795140570137787555451761891142330623837686090639374994456825479823864066220133042382593716628502454381209087217910009585952967424490224009474494402538419785164138180463150134239303581239395932532577888878786920748461146828806408820730360411611540474687245239579750286953912627524425064815705658280557804679783451871943062489788280006777305775201193752978793132414029110538789160282885462401308947754852733750752901427853013740397305502601494071801399056824685975431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17118804572037226041177839580468552261396312997110072107348318192345947650473555893521252415176370469880914203238492441223970118450407046654622889956060041337443279562472837729786037977464490436612220941825822641602854095056974246463604818827028808646138037411147589297529812673674525100697212270298468084779966409183564014289286440787021619129579780759956141375213677593073683502468407764916248772557062681334488685578806037283897940206519347146253411776441442237245939502698949892422569507921533794205987472257057331474918229060901838751934250436205182446433926888265130483178055669164252637109594919578116578371261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16832179334746906308648224512075809238213227391609900066933485168093786787809492475314514602114835218507936335819742191718389010522214950193002864716471756940205255881380488464928613573958119025818740485626539806721212790895317707239567912535179693835573297316636701305144668833667939253081217106231576163757544837506214510008887333060737382557138929785696227735936941022799557000419355851926008169797675923703968872765674799449171143540907403634968037052400002296850903383445184479701818453593986887266946113629508720493718927657791207309339340905334780078840747682928107618362836038365354871805550814757867166103121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268378862738355575193466090294058300969004326070396997586072828259254560369431175372907585940920691615967425923226648168515745664490167541433916942160064861733660746280729923572435308038593945696007379146185924086512256601790398740599921858194904545643175297570833126333634003671386178050534449670519252531071311536406732875952343702379200021601501049985288208667648511130803271538910658315578897344812688534202830329915354951040222763229235056252069574761237258543604815122989152548221018272819784984888144351485943748512075694923141795474306859267075584653032151931466588650010590645660690378985056788903876010327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23056986122615604952758132986532360443436956103730342235159449157500761456852206269077738158265447369135539110732110555687447519973313069310180328832699468460086058683304121793075491690698363357082329846823262594157995738491385417567713817749852702696777092746257134509687755858843297117625907211675682412443938867731297892358826486681872140598429175890113542122679790780731760074122914983747993441293692300516639120594038045535672811837177845309562771347307517927839916486654888540443828313035944377254207730314103210429358959753534793560288994262923916141633880561472064238515125345852424728908500269511521451327633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17834140131503413888722724735745147990407129313219037100529655921214926385262599127489449193061839105124512302856063233420281678906074369014820616839602960217398190929681672655799042693133512474697810568275145114490162459094760242358640645655142730820689117751881001698880898929997694836854315496667230558920443199003526154966042364407611276429010435223967880746421005945460361685244341290699808114628510817684741983849714132486101783277043991382600675811136727155366786419632491266744595760183655557707181563038701442757964845710760569597009695268184723539247187840620765901310363573642611992029082240505816513948263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292568108885017174185100453201334938740492678206913477183291731731483912564761735923886095256258320383174763313843134613842627378748185156261030405404172828210499249475862652627659698235382082060891680556777139552389385199553210898843156395484736902771832811517157806357464576653947854766155359444165364436189824099185483362048774313918878478570177259359887545632764270583075528725015364710436385340650114319990316138667071300453955677002085824601606734728315732350087309971033961769161193757230534491707451742521995386469455360416899207792500722050344154340833850562726928088611210758194732098932365553476556109587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16250840008661055389091658448503723220431713984125981546786033111570441595563480888582238219523445208607282527407254753220259013581896242434656889759704107194031423587137250320514091275970134356583618651871014238177120347882913787857392181626370248296353297588899448841008715157641511639093585880117120945203676564782776315693101681457939294324247268740551717776297513924565814283621644528645677053923596721218980099340258721688064840549946552981457647015878305118160373117862556855909219476077667206245742585774638964097173170086465093954175200703711666002435888458225487459465226504799662599919892033869020071664461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247401629276569336998416395356248473774161194994785043778232285096672287795641617433096812451010208291505015663582279004154748172107983699415006945601647385582947910700863046581203601535624093874959012053926076280586885380611589865528742303482486934321038186091164569004733898527146081410812622076565133638325435399881641349448199120145840912774931860417188998314139688784248415360269001632739197664987693997320950073880187001605047316187149754690291026605814477255211138439696349319452715973621750850356175661245318252454588221914172725949763603203332157776583504031749517205902562266715308335140816616008251152049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331924068249224724061045466429119498165222137222779693579147183544726680965101858023743056277964893954996138135230263917922277280576689057096944414554523771053851020777360798716777628075988075215990263815173505751002773684395395722430384004362568007953016572474936026274162751141887463094295864316037484268348658635848953130924612933220138310965125394913688435271133876091237307924543172683945705672142292272148176663767024723350106721549102377265703386906657845323055022229770456809910703890936367026412197404685560435248748042525000977347501784927688801613130648550491403734817271821156881290769764336428473433407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24151796897744517747735073006040326906399058544455767186765068897412726979525767951238840995042108077171224158017893447943149120757148904859317494550340865307666132992927764318432133337568123424773504942486346403302777688563691003095352444633250361884343387419606283842064161853267922887316354838249577090781672213590991689696264037355435103100982898621991784563043035401385825109007155599650331787727896826318306730810724852937273650780375007791610653269713061677809228798930090426527836647145301873881358718071128331916388438264171124622006992122703325396305378869055331284363540676775956072191709088651329052668497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16228740762876200829725526329640572965305876857040142772718482590815551052955175572391763123610155650278965330417186044676615521367294377698089541367234988611939804700412556741464594599839252186798496864893171355088590323062747806862611246512096114400607926967223064496338387067295709324204291242708648691688653438072256085856614201953309490431612999252167849164925096705306627862771618494235143870277843556567205839267781035624056482070207954827652572092007971892105540570027353259014303633745593668389221413131287801702546662085159342850876545571234831904391249696833990275353569498727904299076756814719199146417583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24816532213458233053681520708630745233088942158646209638881235809263495546120666078103939302677983021885777483630238295425865412662000344674404389288565600760762349769963424563270567578766716331238271996195207184632141376749967655532248845419221092405408305063683233967247854081614455376150130018180119797714274352085492529552947741418043484880038724778622435797845700434920353977224105924579335275731429528260975790825365492689684161653004411665939669178462630822614636381755432127974495152996459179557962875739188621535175476554987502515765918624212885725237142408202968568719722439501403974274742306417849168033807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249056897409269916340774336661195594659669970140873357923505199570542939241018890928066182290201758790997150127217097248525556993923043301688761416321344689928772988921393965268385069641177021975770309200593500055840264025699261268582608633708075536262130115494885978863036105179658042398035558917190342306098904484283479235036172568257603160611691518573603954929037497384129447146389604683366902837804752450154315093809380072103072101393162337826470516077441771073739103272128553592139811965096869571953159931710518713025537156451958079154954122097103453880461778484925368392367101428160968620101199092764974672737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16431108064872993944909824172482852724213175620734879821295439023476667626934217339705715275961121040421309459932098779821937323256449867237715977403336976039342692857011221446378091152571622951599217527873506595738096054272453722058968309395511694704542725480063458098304976026727757573895587255264513821142360203049395681278102816056573618330716461118615661709097555246709889783187825766795199910288302238625195498653981563262099705093860660228062697866780166968875051798180609802241827388671983776108475976288211304961579442246683418822608188878628147567565785529702549472109952930124631000216110144910956762964533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305657842243950640726243639154520187005853793165468922391821597047153809580158031788182667874348767633361437905635492039160636586481958716517260679978479215460138812800557313018132710513945619050546345242364746252400490059705725729299045452483843990405581153178136592857020308509300684312381802053662460380166801167935675419096172249490603865551415150502433934082449491591514374558628977024114156551567526137256426921926470985721627083234760439758121731114731891109686930966148329538081186488385172559836518385543980304432445874912772563782348595256438830698711539055999775867438798120923341033266409933377520006243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314747477479142153223774029389115004837161790041126514220679636717342332623589632662335772618499602828440334462190450903933605917116113965890990064343952070035432448829946261277148438061596781350789712639191391553207063281450964080480241943204695019573270103142047681552599728946700370695143938495268941169503080663103966351240077203831860634651295742859488183937641559718642599843484525346234960776685951395471647102343149202792925717846758807146953720253381832546761649465003808372929081376444813346472849288462421147283186784250157639137489679631232915680034408610118283705048855128338249131951258345247642750499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16381176925133723977244133907076405876821058905942057547347176560729919418236723558617558178968695536674964524401037798527709777849026840892998089782907261257906948349931081782334747608580962174140444616819338728902926531712234676434289646382102152515793214208102434596806758338025105877718623597697055265304248053625808282476971359454651992775731218143482682731922503831277028265198845693613747406928335860293925972981751358001991838613117792830590025992590684784563214883437793617556828774624107030379157805962119092817130358818349820289645114908492487958985019491173561278294076385633458224800593104967821070199979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353765344527199550409414996827182345226081090480387221236716030265280809439342223521930318128068727596426960409988090677547110393324593334259655349471753616706842737589772255133386283516005589989537034538999968850867994714604109831060088475573122276500872890718672615585825154366853295024940082937128541931754527864619326677944098173570752883887665899735793021508410822703405294193941152733751279670622204029825200266829673309859718019672235346929700558731156874027042982928290168618197652638028721754856028010382680990576867032431669919007141399385416840048222964702914987708270144784427821946486075066740636501041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21209408168007413422542936189844138047287585858288464266970259550057282092648367979907440777686516568022322584376219941739243071395059444465388640399271660585220951189645249505209589071992707333924967238670259198791438447674903006268069577855306514181593499415521480440747101240940426160650105711176847829753085139804307133785187642654026241128821343404878670261291484215181265325663487513546437666638280699824767766166929840367234263390100182905064871653481050415769842422915394488185100829388628454890829391227258780310971592957637798254637769812976680587054675184647385420612099990704948782932099404031705334190057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16342537393416920005541217107555477428971415234048255246196738445193003139968100842894137200358182748452331475223034990826304797860112850702055419541566639788945622799620057030409709683272798276188043990091699126740223987587272855808200644851056658319233364144674512368602920994585677974075659290993853730465202372186525953016736916304201055845738140775954163755535299225648292652281902212683786365245336060155946392958837815829187074668621066267596837948392562429371789432743491367617013405016470154884549717938374125191555968064223945737604925050552505042968048594854278995481830564326199410429843634667477720672047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24395702189547909478222553383447938246401379013376634849646749808254346861020545107292398611060541702745707307702625828304910631679164848212387223156873349595318808638879921870518060976525574404579992620827081383361467473756119649272213527936692401000103613728094405629250922834410767705365651103934371285102202238713496559830581166287583221701634619904733613951985385276214830301215751580762199123891358903158675190374071124877189127136462461583656691228080213486019497813968710548078656567342525425012960336668654863760040431178041383210047209637697748790921491210470475942371348033777248023497755068600631002890013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21127870528216510176327463160340626331986719322994756714363897939826964236695139815386914791599662178954220739050673126958685951986349967269197455145109485877110977186510167895959330266269095628702750519864571268476241024086559871047625696134325852823122989269301114036427609863120130998260674643265958120411098155718576818756717654631656917372412190253982957127220836216110979948968742876673674020864392468189483308150825858290539814955618537466972052337951172052505378621009919792692896084100199596684507926900165769314894379499580888876243470779561127478900818258591441097480288255151182882947124379619333888577197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23229906630894214169617806609209259504680762146845735837227980832174357373504081417476927457635888803709662513507716670147585846034230154274103738084223893229257856202925945173648056486200791775019981749504908501559877021510366424648895499962179703147286494956690312987259986032274105672929503573260887670351005917185861425425579478363139769966695969487939795974973589128119479291051147622276869673892091803955032127091321150813519052278257407906480417196505245532688965781959326912029623050422024272652767661422904142453882998221215613541779556100714801196624070087027739038633159771699707434467899433684407189958631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18016065643442506894289927177730327522597553184320023104157543925279647877308051487472118748657006623576405805788615314003240164186029629078105468623323227713879898043679741543220051816318950552198164288299588246260736964700590006897793164736212960308206910547138614811412430478736408837181419783489577165115406173282521024174131725083880765952027004629665644037340849569125002996401625160885472060945808842813905651214517272463094748407655378075436170681940849909745679143391103064433008974033257058095556900832162189509231889190693183266706816422635876216166225873097981533482160493144913800591478956999467161900589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24185824121769679543717288670612872421514727342549013275888259227016776095332813338543674268273827439604956317221206166703387580608500778993789179113319480294989843001826286521821001019039356967508658155209403953347448858221037317826052103789213521844168930518521843228333880799691085392705145852216273265348503676714280321275752604566046929800129954308826963653052506216630554443112666706967550384004387699190983381287889309561824110447970536663576075882421351020847030485250770145978018960322478767607504520198965920189706514590329907245649088207752898202561063926216168934142970616766873676593227790988188269575003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16262777305363656342209693224376085548276867932137165471984728770725100104300856985205231516614789887396691855968665226896199849970349097937476431551724137862382374809093321583609683231237089191001784825722179568218253004334883204258011977227706169739896789857305933485104102289615499804625954488970724565086575272688769227350625312264382644803484260809803565701852554583046987591910616003712294989006869921230034938985414453658692893721938433352170194313938838762204276671957998880373377998251840506369353077346860985144912610756180251914640014225075969223932151464334758262897882741798066943761371875374869936453333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357696561939671641529515797582891942391577044404482232096132336451106571841595906257223550958224734469521330713066563283439192311846456338389627315076467347008715022917955600536927305243212307307808916694831637536696093031533186475893380994409854207138081949370848400910706084097369612786032635637931389374580797976683985714208156166436366275516440227184567215317932872244680751093092288606668102266819338252207065929381937146856457319790483011495510762722968103238571884528827352083357249253832634474432639979122729499136748320362168753669067769785758254069415807812930996311156064572734245943064480950778140740949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18524037332535956624818838506537462074321034268797052305335685863361359407347438541506162759867898096986082561056031773090406149241772948528021606865914182712322620742087925818012299911311217727214060493293308204156503221497944524894068048363471594798229847949405637617349554530792551940089126454379998255784092238552707990531493059887467356030417405732558496138036685700282828752392934899063880496623516038564582990094216869345252058232615744217428643571008226076196833406432062145590245115907300409044750706223757395526086779046568217277946263235956820668612594541830991116186657805735441395692022585881827094959961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302806180001988596610358250573827079337647078956828766444747448977257987612372657358664791973394781545716676172330536333013043526529339504112333171170897321741225069705661974941678966464601965741517555429983936272848026377234968710884179911449755849946521828501674060863833859222845520999368643292596374908026084981922020596069571019469265669704909483906890047788843660349986582879270410068724979550620766141982863412093019778726563774784372522677754153597396907279877606478981100178662360834147388050388539651082073014041647870371107350462287044503020386521822023119086115382294692360161922984586602836048966003601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338418191800068443693629134484135211379673726536234861612407925101003671771462048206972850495367241433320911349774421211901844741449467121181736751155773100929057048320657766906551917875746148926394522012985209212672647566299060230780043896153520798947949673277624589611992219549230461097042550387662541079733385301893460252436958644068788601708186929303663373193788899425160248184965668210906577261284458786275122194315030053045203016397004717154484881980889555186801747984556130230432702906795791825169522706520773064687311320107197097233443497948583136626204076987857645853816964885735959270867993008887499274443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18172394196957296501490577079117936184244982793454996800676546675052238961640675301854914017540966516258982605293303047214308791010179340943941854568104255531673163802364281096507963628829889213155974388565868097412983311092975795600102259647364063539744049116247102773644204570404725625458184837889828494620497705510759398064047088625154516187432005372276229054093808476687203979973424352113137898816431195008294597700640949090736329279913468254821194045558821182635190170544593556972202405715815937084264654533362244665048875776448220894690350911845794815027814040769616833973413709595235144553470039607640867611349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255641391937695514633326273026517646574479101069542276677400644818113364389207708965247148477082257967605398118155879391636170771479139753348779401620697456551554357829108191741241303628381968133699273351250763187534277228427369158497097958310799388897888328467167668836053294928256499357303750738141354198765348360729362082627700354286991572372907917497203361980974160316377719124784586243761481538343500323663605655244413621464017103436191613637296109408805619084898103268783625193860640484788851263353073296817452251371217056058128874053355215026447501918321206211597734516575505536787481435260331401798173469513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16273963093587137338814338344432052638084815225633607768239955918122325038801465844535631030934780673540595946003812851203873431089349602939349314776088946586989694096190128756805974436335897569194630288244744378923476835689130752267453728330649842947721700813478742499420598331051347754224944758118406399964953020590875963840954545270574325266919729975822912609323278645912608547205956070563634720898010710902274000640827724568139055746263322748249716831879268311715324943428785610114881783464036675106661689370488725902953848299105671926460711545693356301673413227557848371130018524646654155418643170601137925804549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16342869500466059895799344144311217272800476583152079034739596866989707604929848214946014295786111013645577647754690599224435474432249816519297044408860187114577137846984288911767896738525229099519984043837846105396881886322202124999521229472172675985234133789385420910256401650868351157734569835571396778393151313233975139868701303876177780832443128947369153826197960426969286646054526041886704874608847934203248647723264019672627713256564447909449832403427535878485336236246479043076720731493933144674943267118680325945633433411034216504304425461959379344924888426624374877052645163858800746088198793416079238663183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331772460090633215125118668237127989347418705066393039211322738473115039583115119249218180664891543614402217586723455666883611207838911165454796849836872467919649803626266804206632419399657653244276238204904963937289271081540385986248113596968316120417230748370317380131989981618566974942065657192505296697956460502175568587411802618966940609298323586146672161604930916699665873320851931884765852135828674425818062421286939749783424468620012530776087555246108046520767820165898990223427427226859667589616069849218689250250103507419489172347142281397598936935051147133198675766039269074795078478908006427832752202483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28548233690006007801203420419307477165133116693559848511409974824160343361254985342247380584737622715702894289148580610649586739628451301729391940995560861458209198109960189648793770536026764011757041818292426839083243499861505686171396492610079424460550427717561265083807801143722547999323348242747642851907976693774570791667085689593738732332979908658145555989184257238095478907149529785456559372989918207424167810511468202190699465120064845290483835769955192306044524306138225313801166509147380679310678227346095644933681331435614617026737793653499082944094247948654125819607644027226346728071437987803233776206061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313772375628474222518330880259646003472065193830065446444054425047216217966879623629100280946193685057908591570938052940237245746238009313345316203781697675339286175014350789439492585995783328182539229083880200499845402636832961080392636392580012107629218151268781343843603995699492754182182669398636569979960553970573016724663848992528725279374289247217810409764119607452674438553457539135175779697304319345916330570619953194590002076948841094883461431254043535684534490655952720099970065803487432563118027006015166771619286335522494544563436670651286667418925922225632341193249319018361634279957027902668268184029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16538540202578718792124105856694975881604502232880042253035097806195286719443359722565406019718636369667789064765676244669626121901947683507826631743424186201920330556933429570617799138901328786432183110527146580857726379689192417515148912542137222020928362659212519672040195148433876022791104074166450786781312601775864382455005622354434238418644264213152169102212972533032185929198030515412445442475038777090353291861098195661302345804289634544708109678866284724499331273901202214578393572878819372300743428837271719327193025292169014914744880501232241098621192339069714566991458672692861705781355196863066061701013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16398441334869029584399088528191689662635170079592094028117656195529432032761707674527456889774549604629777443678339182152979140190735529869007093860998710984958948297038097556024814054800711258520187434953301816910990888128443575598187516366822631409738905915463055253680958417719916986471387832298531128863741731251566854099390732645020553476503736243891157547503443564999663521631494613290400275888805005390423773353605368252301057173844641083055934503197674650651487910144913018255197992265956512122143927611000768560291227613177215021050948540870696976037310064111426331185006032388973242188307211135641972520367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23355760139545919816907079067623309051925835473616087931119901016862845355396398814397594108268914346324844568505979891955117477071046444013462271137808897415593908703863443812348044662274018633919789953609475170958869732666657367773890474346942569089221553415467855221833677202518759384563700417500353738528387321592625436527320765444541636354701420767843069958421139000378057723677294861851141657196937270010577640296117117226473217940394542008041825468748770088872328526539478654415853158349785682674095949391968584045581470781173289172769719063879784395452394593295021764506936331322309211703963650978461265559379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26466851626822310220264953988700890551640515746342423617288544068950648572695994953687311495619316005872588781215284811869313946426622858026759129099517753132386893947858708751454539291354672447213386102345805953710357267045855926657724216526979848965342267283197742691093416672722543432430345589665257729012947420118640015332007156563748545661383343412779522589428665498281300843895848044616465665916756799376195753766726107775445303953041571407794043903256014165585797371277574823423249172234992580954060226223338130780181151666358038474757829212120184607003198881417878479702555249631481867493200890666319543015343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16351733549094171505107277820991554417724244776384953460936023463617234571451920287059992324977073340214253817232173279473949028282766510161329843332272015573640073885121613197349912465169305662647806953623200853059431971080651764721562039858402911542037295243797552390721033869640999942473439376091108690516609314418604909489417991743127846472175098032702424204705986303017651945968422022130830379076850678975854704634136764190986309469849907172067468212220158415931511335153866563722023138429302810981572187022107497148775131853644668318606486548369383176431236605208569327851990381163524095977780173560940949895191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17424051224258589164524553080773168269369152041373098123022960285636944352508354242195050905770828957195603881387036477298896976522484756714665348755224493354313092063780810293617150510209888703319431009959064043764503273766085190531875308062155318346447465566139010815362730569234212709887187963639808203539948599326381904913767181785270961159010316755482584668419216209642343969573592067840898152092290054962846221097510800128496812703772859678550256428889096393070474322065619224908151833987588950016194437880858936833615682402177135248832174872566598977204627870891304215881747143238150701806844619671817318540021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28966466326010207947390473715611691473188095631945189597081992694046394742277213764817226485873898971448053877619251754636988590687764642484142502323572309967120066459883406374477803756528887347281817100687027345972976541038658739858242902194464992223483003237009009144031485572350651440642742234621679264027389918933805319982147251015251061097638212087747476231955844938787749286843618448941088450199577934888957237454017576334636862202614605494379907189002053338298831231831633787907381983528889938888764710394647299636520245317782279190073641501649335424017742681036630020079482300981998383967664699246672146364899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24159444537633035848705427296419140264202935037122679010843419416093416495631598703078776762550566005733135433557094785408689971452846731637957762929295086137343202449303480142832464241990767057111378224428444019878122977158639083321113881506211507749937384822361296605221074360056098020718943946147719334182295782568311286579587712138858735333769897619140294563900927694819696549204194644753248219912617014800302584594832562055582160039086290084455379933349979523490094521300020815575239152085445087932845128678132547771895132397786049464700882724037630444402230699844637404951618161027091233766745924252245330613721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21318678165287826946970346856310549688553255449148302737415186717645522650083062218156662009452903898867709155988032913698312020308909461458915204415212078148651594608260694490690372967635264083414178391173971705214180158627742875191164433397725009248266409815616774954156198848841228394471628132102757172251062593270170247460452190818349906348397214730938517751576435777476470093353406972738875890507571778136313519830083513527203121426689989811379067485677986155475750355366578611840437616103556059807910417469986031904287017420376940702611256232547462407738227674136915911687005964397399357671053394552973455728041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24231903856165146046732505476652665616048589788418372100741891456825535945593084911417952332215593217949664615647268077649149248862383775972078342144215051688413572298759544842464463557485203963701122103460572609940360684168791484003548646773751175187823133898458514003068724790914080938837958399342564038907985619361218358153948780920194055551242998477649924378173515791882357600242869392960575048939120021475854385476986137581398726671055755920891669822676828594236394487370642880890446992771712035631608804874317029179089765478304719352212547848355925131655942941630155273442882597373713416390145523657447502212743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21136418190646655464755234241278365249302343179600118487050483102577372076282479542530921989584839852443947526689769275923940776467834324821786074486440687827509875583352885508367773565069288766496142998707069998818085505720363272731038630995763508151392889094140443361288427076242327941787951307196157102765591724673610109733465228170105281268604093924416180440500014421848449065935507654242005451914992535039191279348380374512769539344724403203430930996280573983377498449702648973823024960333702491359038946656250427919512139537145874638190148502770533478628383772206473067431282494140668994195765782317691181431589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24510538811125534768754729399614008696570722653832298340056716598424078324023112305897912015056139957529606918447855193838568514736397114027802290846401065336472164297136172935894881790474681833396045843897459486079202099774673327206663095500876016488965253271990975060952542599976469475091921716560372385198288215534785606887275175214954752713611951579331016192890912490419690717100183992913095840801627911535376970937779417026309269490720062230795188195203275088625935830396420358006689490192558139839738627558251807179911935624158041069742539921534702776737925805857704707458703313371994372653402770109760749294879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25403122048751618897364106268491981804658786277279327207993611939142102244610411268977298399481117332142321682802810319396106731268801558809448568061273417582988631361017316163508823411009421983187641481201545876741469134141007429015180711548449813776398503958439665456452415578887966555320977661389564853712490021827692565127639929317075584565904937796167378594457514303120711825880511287037034420620441410279245212626288214362238822274500208308593272946290550698909553209563618381270066211526601843724717866311105779660431863912711878815039776984589045306226785848441689976554554219858599306557887780304831526529633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22043873558945623593229831599487124749896943485148101471898620472828614888949454194425890633256031980513054978660959042804297298246206856117805434361177118975574597110423520283054410136365874001795632011287672399167652288677143929833326580721155826756150301833150266129490288907861408246554745515453014460929059409244856011017938188079883808509917443795258512253156551790702741287069170546866509742389747579529240829923412481741183911389580997610231101606715765121458814911908496016614660675002325162920700077374145466019324731631157437846189591501770392515898019930421648557281380774339318765816264437736746666951117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22844439604003282944364057396307430644954373509372725302326059887446857359077161666242898860840513441079330845105118003218292661177112150032549444727080619496533826638792567971785858221709439013011700025528988991810612225560428993652253607778891068571131467634340122180071901607215268180915677203090032995545610811229685846656607032383401433532910668904524395133244155692439065960826240542215535492089802911679433912378716982083425698727064264802318397534775465196002917849989880580292167487454664389940605899138425161843205560206087025687730763186030008560857131087038031408014740145776846285361033197199446834678253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21050744631816247463927103794646055732515826337271082360411268765603542616868779130376281145790982502294367481776781777613485706791995244333415848588953375097289513847902577133674522528509642917490510180633569994271206532598332348974107789867073303222326774261429990756933731658844426621655966788896913961834786788470920543473696217456309362999539914442057042916531452815298852238278809154038541066345781255507360848498840890772300794626060741847052127633454741731075038552894950047842485031256471253083378654551833744030062677409721823045481804067787847889459339692899721887525005003926539654935205175016231403695687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29445201286137032693446453550636774701297388957996641409903455721077735689368859327153198298790245471538767563774422264787530354558164392341140683129427068147657782213444115699295749578353908006205759798484739040398169609881356726919685084875631435165315468117346791391779540154317619815377005430656829690440605824770286719476752542238822467297109887869818312918045871178453605148055894171410026405849553104275459142673358560934684791437915603329309446930641023217970129734385363694274772720150534783663224195755225074516038751824597307801609388336137587835005151161258672559132881424536845025655708794084089615266801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21077399775245849835147991478571473294318559568721412878906266744952337955766202631358701761089561275506421129944007396462809488467246466440105447742809183546737241099215407458802891982727412836760575293243992079428770952128197234736679622323125354320601829039086265987759584730932430193613560370679528300740246665735478077442295443158067987422139216805815290253708472597800508500284865503236697341965858699025228578797600454638434388998181764057116299124300908725331787872578838583713335476592076219187878470318129106053437801381487990449715817452613935453503330249171724014898609061466302325491904454667207022644563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28592228068615337469995169703544477998242484012274769618602972716879728625156348677534774496568865311919064604337641853663862212162305435564075740626471651163333023272111258006653394148250863474786391241977570073824445319554292990685922870584961864690071107968308103897730176268234980747759466675229384763263212377584362716738188796746817743168430458012757042461713537092913897641862503374669673478529409086809038010725798947560345526653981251129759072490250771251318681058887634451247824426159413780332118629925285908783725123284933624688508786998123981553808382098442210623976524303282264262398024250055172993100867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24749769342588491160685586234210309115463563325881012575551950944090742934063035194194211203554699860454003068282774084393593485932216897626961979445114229350199501116618342243832650460667331087097329859493811621690072754119700692795021705890730429284022722964024680722706196111239903532054680540452544143548473803848825508898969246050192641929750662901839444255579571828126227230485383659624894946989025262434945666126667108829441889989861787486118799738985325851520717536880596663287464476003971615529821538194151848469444210056236240402621683168996623333228130999095803382498003764361406674955647563763646851535927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22876709826271647114938971688639855364163517124152496760546488480697140514895488530974933931900000350914345926968687845489025147187654864716898629426575019558169562173889775821279597946477399824359263058103295510350686428041385161347450877752022148143704496364437273104313215893609000880328680650996872698373584317964541588403370814271784306957513214579023154752835706592620816797451442163186981499440240312022240091415085162707667471099342300704410545508029983683352873954177287817718909263300664901455662814995028245063109172756415655681280720327458581103160212863152833888158765523886154921187320121711265568839539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21128992787232403799079738943572958675180630070665823811452708454394260826566945533287598628257588586978148224294749255609337001711536352373814728579002884533004420548803350230079039784169271482989217326167183265763532812953645302087380050432410684494655584318764292550579993194708164465086201860430663580775708549542096856465535285387470732526699063359420838290440770314739428721011142506668631148236308637187888413808875871332213528869453543960807765398217764649541222725519671480531789907847911615609977079190587688435282174330506220624582263288915643892962987083533022601274127476224490841068161163637222439813231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25170708264243219573958422070003351761581837425744608216488662743611977563195143468620779862438173286589405037491937760180668819722352975886152513623450066014591554497081609079416624586156868527655231833344077868249870092235362703192801382699985912106451689987005759207637035686821607141916235292005926585170072200413696074966606148187571946561187295228693100826730755705915348008256748148094246934704156841611181912078047417437887092860357482669815232910223655634254181902396054283481907588497495319650785602735980608696904765043533924638795247724396704892851902523337768059796087721620453150468376372829917634734669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30540951251947635928196585170649551486878431095468177724322239622601654315919314006770132418447797621750406685320316667763544369624379797216956762013220630721449021118108756335156671974527622194759254320228896689258602715042393591037366324947279720841565973564589721951133364847547676075575710119983948292841502024650530684795633220233923830976762946918953262197854748456076364203551277276155093071525159166843425542001595792947177149626590090679500975626291775966629835290360944590746424008080778185612717236101446160959523154312721262531981721018787860727171937550437445832289585443050757767679395291263511321195441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26136407016798817091232902908802790204484026739232287570217633210918477768707069377400811227661355574509859175344316593794597804062044502788507468345729344796196016736677249184726462907014178640823167208138762127524582536987025090583800077965252151963243613983668838919440536441519536471257885471906573559646587850165963658623750184507237445766418738108163196947867712376414263778285450558758767491826669477899513097711586712127895306675006637828961901067447375776042470028110276390699083832149403039067029200185020549428299148418263219852501576807438668549182424588611690913831785194945419230446061001218967325378713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26456921703950015561629016324497161673738919717583717751077540298940042959219802071045468389707483040389964386670497654821082331539162243758965467457057126688205125544424369305628994376568451085186957289029874149252156549107062155102397469823023023961426125273802152017869763227483210434240074197583666397142283090444506565369633589635862088180690612211137458558984811958719643296275800144142016586549774995950630235632702273280655001039244491502786355077732370644014891005017144383837539980480725018902373388748457205247203285994132674698803639820875786759363867286567064118462823141872922158032506404118749375558227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21360459841557751781340438342887555683077340629806761913722409589859049436555215700775029551148044004725183654980754553824108740035733304427378523087024258158955139054106845024114409372652788207516538649430203998883421642821444041074788209372731211455255467736081405806902765574167478509019282912526152840050879787462805127225683846122094624670036459799251364804785716615210874310644512642647701099994961759279720937025416116046430484862798904749473395970676356529480193235358197171733977393284152736702802238107113148893082524357604705696529196142486763799192745591365757747708231836963770660395972574080649293767221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22504341837347069483532045198631180017375382216849892335980795340279135502050046304946650542560307711863045303634561626160134683198079725020939603606606214865747516574688132218671704789062109057549032745182695189579571613189321797936616364432514881693820307662954008897414380050551380892211427797920999442627741939606193828437448450155453130315750607034551811651443476371132929833212781547109774639424724375828581052033566727781951147784436956498967580968828037548297145076899920771376173426899724578421179304188563218429834278828931091896584131559257080830901905087590244575988966066484023438197642060821279328989847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22272092176552619145302002950207726960062469301150327594981067591837761359931624082149121548035452245191911571880246858414141491206687703881410151287998121806175782589679083685151093639084335138726997301367536877798317370027239293128382480508099092486230601991704530512305593212799468603008681935525327229937055486549835690763669478158431553590465740198021785841734111919815209240205437446638669180237023687338656658567214410939313118627749388134421805330573304751957945788698488786070868555268324346956280852296131487265907147870969370791704845573566781783887108890451435426701675018865356919385347187433846793396133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22389500225299240979183137877885024770531045001659301508857704628644620995712851192017823962645441634303646940848925110410324632154400075671453792509411589983683665355363610949518803707522108038535052242271919602507471396852627028199902965589865742848312679088674435128927831906840717071275535356859648939770077669153053725698872771179385961971527017450479355603514776044438826960596624302267801585710843516897080164404749533671637547542655109411102704892935764391532187367289884768246260215856619607907156779779985892495542136285025175271926757912496994067923933133724416265849744933481508817311579947664960516189437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28084965112497120394628871041680227471753977292485151758075888265387657705125251160568617885430565739838510022297176958658281791961224553476536587359850167169188251049524500862181106781054556995557460762919307019425876597417306935751793527283122253257180054245547419220971549756526488944769255557067761237724291506414952389567964652982132131701755619443699111974691835688911547141534727655530553338451666814798838034276027751330609024611480934601136151678036959370908939165520995264811912371731617930830108893155125749415739454609769435035578165580437873268064599793859954616923159255672860609831982897653449562953999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23617446241553330531200893865659847748861944069178983558715408063124551402905468474597559707542387049001187887883118123632818434826573351072741861642657745058500525143584084578858721043836549057872860118310349935877740593768481608717173832487756484745239400045070462416907911667299051645546309623796828793972437177122053571939189733670020616984057441656718824971560053154221905048449978950219831799685985823912672959599452344341302178005267808991756065729026174454559251772295076168156346490880114975534238834172463723545136540673261631735161105314391372954327132249104659385395557407234817109480231312509814841619677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30059712937040826135751220631304096474818512803064371170905165835570124545203760122692694511983401118298424117446178236262318708949283943718541643913831602384606858701430604934687475915050898352693047241660960394692678518879825549936374165489306357625724403041788630029948756080543522349497682808879679814512318716072522052889939180819233449029316358680378228118320694219927016713723630203618946597840377999688186259936747972555860923668251304842264786255944999973980391069558986785109967935522534823797480385900071997876840830889171539798383469077782687990935876208153573828380686453582043478095945000816223646671753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23156098293778400730960215196772663154782447937534879642893266296700627853478284455178815688207971133765671684988461442947246521927755969682475507226397485717925818425858235967024377983596126442060176399367858195709516780351785992148240513925304744009943195512557768779092330576357660602371651221332936970987510267409266006788771844022169119773390532459549059029508830663309857118738031309733429228448638875960980450361644209199346237867465926097357293238775385913862681517422936038339866707026646705576569218012970170285648462427568130212490906185755358314271084763232391388139591257584895227008224177956319934485181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21733351679582439501101985753291226064714155009314132702427183181082977815247467823715978390549403392893354834802594019524602779608598785100381180338502402977454847051344250508640318989443907949584374044104285300252323940990055481307484248905972177362714547867149964026674030289797358621758204849102362842877968415310632607214384334926791477097054746885932081871792183618345176794166135322140388879543036963753577353744709059525334535445907891517162698483505771342703795430730672768193788209029929953254773144469797687578690737218521619926423711729641686341847820239547498078491427438821465349902130040255808392735669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29038526749250553968455743343091858031929514725478976084351605740580693175302827201650096867163578947605256693027642269648607162323834611346105048496152063714854134234962563169401035379324759720839929670861677029826652810555406689342934346289054995422720168381246714507143947504787136719798806048189626442983970243630198194022739635684400994961497123580614105497831257939012778270597151044298548368790101046816927823452137028321353192247613532031362141226990671298395567879354274998213811421722842704578814906848223982066757887363053929391848204520341957882475092370343382025704790285647656583512333217603165712624727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27624035916855630837635368148098682635986569882717777659620033154340284328525032799310567716051537774644758050830878482005728563572199674526885289394883104754007666108139455563612702444428689578179280897564756936583715414104937434000101207005013559263637052227106094097156097729240777521897960920434605159240989211555707231814444062960365618858547491614245804984823660936352883000642364312654033999614786837176365902019418578137566265574148333592802187730956294455285153286411109081439830727896927118142535860223714970874649879618207306003051979622685216978271942607476114895144900015891488737932052252390120698511617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28068680059503867425458302479822486984456169616332607270428818707083013681894263000205849020826162929773628445816018106738863408496962626200514000167293041658928893387905255049060715910877450279964119526602560441823342300001391414650981237378738397573701909623511996675023935055945143980527797654897954409532890995035627624848795946253908289956992122438179569148950727780752028864512077925955842498683947047105071943004804330030144957340753559085530845290920913093265352661289219631891009376512287903646122975984978384697030349837591306499316821860576289700801788551818506179526387467586895427654112636480824885269187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23565002294809611175562938348848644699200506850784261402720980215222871858966144132716258000516562807422912942227629869996456569076366657762514892963133814175275672861988604936269439410367418871399830084252501826041491634425904224703928376977955397796273048858986377414019296148271477687541353441571663516285390473376202055452756605780250121812371730032338230316432561493776532863950329865641878169130867426625484747471061426561194141442702978887998043442069910405148781604731720941830147127406698820037539611912864951892253888116110135394776246118173342714002446874627671497444588007069622944405278329808231535979953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22853409015160798084051989358183903585607321800984143778662705990841578163916149243947261589562508156166414095515174410529826094975327075981010541153058006515391008088588966581501049583694554539414157620677736256881656917867353810187501722001772170882570529358359855779238913872021886752580119707163543740572328740656332533435557513697595896677504090317624447503324705674587912601429140528074910403867300611200745845968956965027299858321667455862190995111609727274629287018625515807070687314211233435327992215351647224206661434953485931756309394602775802360268551156733232917568254893323999019961225506462470951440117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24851813174642751668858553465016557000467844455371758556529199969595045635995529970065167530911651197390668051714154459939936802608350667372033246250068399352736134556377606045351693093555839473883596193518690466243847841971426484411202303961268408048693243095567535024204412410888068288040289278871554420911892587232103991170875756765320052334225397170917843157362531632129512468451618196002117858812814522139029740956170632645985471003864219510985671182588314508622107148190536043947140197276092422088164252979955789987851678530160659962517877206697313086178583594286096873945135884145331955822834108041005302249023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25371192809545231088861592902941769355840572975498612547805329687200965766479422174698030703790621614135398495945950823983882380798603607936733410133561168681572047709372609143975433077239847265792799534521745658679931683443529354240727822773824758818422980989400246262243916740094304137357252161217028191927138180737993579846064960525801654259373254509419088926268563196077547150834131495377834354803802694374034262798713170364283207616222056850817086293201466871748617347380281345782173213595387640134099599152604011411536970490716806167397363270803849268063568847716123812229601876712783503684861751627708177077877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22474341253825495982153859562303141410233967622570117388980834220203590855074847154758379843186615219137912008609622818181084789896931315118404646615559085458194186809984814678471960631867913655447233821329389689313676751221345728468427766074917237505071702860836269111994936318735674331009120400839551315771026268822997736378269367210847667448068257195399256799514071446900612730407869746566573323322840437388656364476681492561493187268751749070082500008327491430545839428469354549012480628918012164336895518622654795312179831104821158573311438307694982450394740011505676230982955432948113098269555588335057636940713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18877493401091647464076670436928421497599606598153584561681893625703802801189548941137682910802199530732115057270900229971162797190454478324691042240752600095130760493790577168698419632427188822908183040760863665362796953610350221070270556987438011865940080420111729672026932643403188434205392900700368711244427363275642312040070823101703620247516433491324524098595861189878371459706351868751740893837682674949452590859610084185209779845352614349821081662014148980510969635974013051146507895874287830217175280221186982528024152339745352754874454276302071223295817512805981033945264888361234764306920940810105914587043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27790416411223695989673155981683214598832828805471440618974132163590120643232280602461424203458265978521186772041320454324803522398571033984325918332918311434061737122220566180756560754803744161575397633762789846524801050024918306988513746239782424640238178411956796798260735879964510834023065030737018663039992161208729766979821726231313254703048367835249346896070379249988578561552818693733482152322449891378041240837909406862542505527503578555872620604225036442832140112523806528285054307237476398090485716729565878870467790292151941475416118563225930308566747133832856868515952390906674904699043325918977272371027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26627080493042190643166744232065425201454488863862073132966621039189093675733335421145943274291605487913179904280649747847107634120713056249668062330523054583014126152373905439911898151958582225499227849248479695381177444965912799599713940225785759301235076768100179709396644546760392442337693903609903556775245995767145049675884399383317126340659742165156949255294989295183420296406026544615733548263674044367903531158877743628925486339678545966168451099938105856002809779830467921330861560109412451349042283381927055669298847981373224537954186747953476845661581117250358823516524012751369178219133677009870390580323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25222264680791181831287098459926770285009455994756797047541195523803940550121635260556907413894674450316444777924618551821807632353897002575821637805753801479184706306088532729828475150771985852159133841548517362262285917271805312634152598635965032018795323176835075464959820002422854481161505005205972137467601361707704218934521713351891026672359689156666554251300665305674859080608087840764781153217139276275858140754465753128543610025061270000168976075126177473472450512925578369260340283232575226068129758624655072398733493651416263462679865108750408944739290021436168225401201952495150464915060970100428643938609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20861970594714124747505535719228419652316455690043730351057335958205696195417792777217466442105139325613970244769933732967205928713011977031105242976301563974948682175012880923490540384575464560337981334235543002870587250899326241839883817363954387644109421515238544336592922825425992410382617489510849053425328028612079405285798537961491297729724329971411369676197826517630513093030915351386748933344099597086251019589178891013002658339340580288617994029672017207335279053631663308806955022010307600862738610156820855898216787988111485612491895476282371150335028098075955205334806122852408202715974600117946482558499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18227059674814385913986600621524606249040350082538194195300167984290640217950754454877835160370114191445053081982638492951247838929803578170973034481517813296694051952505988132068806768836385696650062395522537185131121413420938672127455574577031909429990185555012110215069041679143517382214872976270843388275866141637171137854674235892794269919584173550559340585612652375043198960627996322472328636248503707124597556772232804174770553065344376941224302425301229760674053126503183697174945202829286003867360413616046173782547387694796512484932172582240474682864916392493412122814411642328859311956290677427195369446959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "224", + "pub": "24803378951324717166745573688571602", + "fieldType": "prime-field", + "prime": "4376025399068955448575253578872273", + "a": "543363707172226577211976140328096523", + "b": "194730641143460681707565226184483689", + "generator": "21044280512628520875760742015608957", + "order": "4376025399068955448575253578872272", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24119131013865366915249617073561558", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27578388796530822421147072365608699331136449392911804678980904637391327954079243742737341701115594714208059395441513412600141614833584987063083852120199136602447381983710859658737879244225533190900093389701509801500370134396303876914685791374072703773834808775896014533565583493132454390778881392501909750635073732526372799815169086252421147666649942702381731114036256858199963057511482975542541686115817843423453276263276084171515329767081499688165789164802189086196478581101279757321677835751100364621977862006802078607594489937117217772695342417688185392678807637107007859600071059605825752048975501557119761403187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23570992076497564631370219330916407045447218232485037754201082274317924491218875604712155198996464796452640595353047129713520890455105646811873745768815406294089896644424290667564194150778981947017457258484745546588236681446584629088739173444155984060035370835881089737929580140248211405958769542284416231449521813820799511466615989093924337818866650475472184348988183081305998429262664933416405968984909853689284617983560014637291668995299033386771331242796055666470724312964117059084814038087358580825568394822852298015666267104782496776666703237485159943465092611718559030645394338789159641647207980590157349676967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25701629171051933313922571438443370644733481154025679503725354027797641306025297380081167991012332751222651661492854447458245107519969169914595727826446482792530988273642371470281506131982012527104311251928360643015639640863320887000393671810819077085611521723880621737865544682623004825084877048942419743032409474856854438843985247145211388656613350599751764703119023872028305955044573623866493431282520828973272402077218536228699390656118989716039575639060786470066606615329379817707941986203471139071265791721284862177577235793622731570272947096661054633465258670037852963043398714896874515141793273893132628964399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26878989689132384224996903192050667536099457856077739540326227208043699713940997517846742451369339332878457860622709125472204101667916913408063907251434743797866374292128841881572929805980268864011173455365274071197150788137300690875482117722820798133251645582934099949197522219623577626474489838240439070911683239699989656727071378349415486523421102741713865035537673163408817459294987585726562257556461416724285200845151007070062726822226589649949030929146652487445968798838626091754602990362879618284418805301705245373430690187478707594997278053146676414861970472756990671880038930902943516778193658189454457967851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "29449531764290692307735983299352365488519559203502342834966718795425574988744728777908127631761928246022330689060094397351290191024373084424903375638335056334564824613091383384646751953349454441425076804943969979216036339942143148235493655787922179186196214151429594199643255586774031734247452558614403604499510264686880018402113245839814652084328241998120935264928051515950654625058649249028164838224949691262690796666107131519315012669226050893103734108798696388069041489340590973469137237166307613115084112103686673596817731030301043287931437587832507651426690193917732138218430463797814939707113902773742895157489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25678379095819117444802694392320484626913677675292168242520515279118643839002915614800118360400201105978268293326210060139267329409879529589824189787520995354146271683789129455646519150565343678014836004173387697689875290558597825396144681034513610930480113167329987047304892582290194346438738761140106971349246899157796685169045766359959221903605063423517042059948735088321552642288574307118362353945796648519812135581627391131146594283347141773384849419423981507554854831925651418271149999925796267892307466037446566059160068390412397642669147049309131570867760419207685708788964544620157042951540090487363855237613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22148993377738795004246767636075823486150077761662803071043871420674744537535889429974652868118628388418995211084810308434647235270813777204407376326401173652939103194756686124249379126305015721997475571967636865202124038541289624511714352493441709808525922409619603684549300196881838775618321172693860388115815314013624632193970545914233502080048146501533165718982379110770306312476218734360481961041393811629214809645087560483468958391293924589834519405739783739007732104039325934863387902865757674127154673797646896730875215043349945483193526458756824113083968847810207378133326374254791701632585131438576093819011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "22780521581844786957217603104533396748397457355754754979853069254026007279406537225576152385536963624842811873396751015195913198522213600796256353918017029421751969777658409369591844516222376634610379208962188829089991186315193391641050635776684838642456797185653245807413569545023364979381932445194797611720733903800603008873664998599423690849943539647415686286645032222042476502319560151721244835741888657479682043402798252053733394763800096533553061906954356305473120980622034714054078976721207086361892739314104364612784597698944916500058784170010554973906968157648455891238343174924396083000674387736665059959841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "19949473733920581451265703305013390057056845837282177192766175796960746982600305595365632812545400298210848987146233669299875214514143246028989646454283881740184343916033855930521123891558833412141563938477265406002558841606139026173039034636949546920421441569964188940021365236013706917104150297089515232531013606863738738868964495747646268311969465096087751777399648009718379919543678616497672561162762185502515718107331629236316244357987844972985426860125909184372192453935099668354741747569612394862325360433764835142321164832478190036843904327071687301889360110920244328758139208359847113551324313552696601485727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "20387834165774236036691973227572414216204786341468187336293987341416220978704276879649558833021018357684042124524699305170733147590401107848132753021131717316698774264031982498425349563496171326379298354433897857166646089810554459449441896419801140931546300572362916916775519236903908158117011794776426263505877986395452596286104282345885926523782326679659270438823701018001680191194779103390314685785344559000394642539675735406362194353769315806292632448955997784700908351816640747430513044672244386939753618788742674019386303620317760822110948039627492042463679693164513562517288589132562079238240685033885713613447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24019910212294808605810474085106756885722115995070858617871248519488058092647171652460292225159977068631849083221267153734333337034528949251138693466112596540991628767156844041206280996097028716727992284545826303102526329113817571602442345849560496597502353578890449208000558908486201596022183824831491782408015010178436478856077222919020764568370760074009786249037073144549553240600584078329244295665729438681744900019182890104860589420593129166176784819944541935380770950591599367962962701983413332971605716666364697535510628219717455635250057221320256716129913578291427011454707203502093412925291921318476068392003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25013105435067412884445628114438028909206988161260416663277241731802956815907701200190256850729357567524209948088670428587723557660352660183114253588357109567382583309538507706663985725984012283484654535967198448544754584542453274757388210440382539518121091686874118764305541425292608704103943431893305152549482517875303775068410278707132987782029088337827739171293557484352747153722756242329059386967338053338113869073991515571665777747471039120517735419383428250534727496751691035555039896129558433787559456186822901474661528140901035418622294979338144895153210672976426678828551386133164010902885508709869373222307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "24165335837790191528525689693893377995489597899893536652745108618022178860538115702108843899152652248268700310520197432190773025485240396548029883670807766631117458083523628621255839933559660504173547691145375488448714207006608205777386943354705495268781482307862552192827560417285058619258955498988294920501812980079189475883518124769671717865219681516852662854330379824581039983236754757621587821070174403890273791647706457037476021824761704831692975994715022279536989158462552871139127478504515165888494749855171749688316363192825318576448562070057183144512645486019235482490787716505609948097260879033230065257733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "28299362614288495953207748353501623711702963727984562438034545060561710545347657184800626811542896844693455546498537415970417843710424061331221119077444610358298866991897035508258146655805606648773463906531557395692920614795763267102897614990177814612793297376137555635951193808569013733513086103246580655323838838938226877875863068350253466821146120889672366074360528006742247772851076833473790698844041095383835438755247853316680404639449309158714742013799194214118739033353509596580384638627188270088507477864899534503255564675851940722129134986890014535037503984709440005474322351298449146616838834541586764110759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "25333775217543748261034598173630442253833270657824692140439652204865266593625637451211200480775746539656079255723838568742483693611911686374399751301491493572700933479470100203488162161025710587577132040522681131130559867562286971924845991282580694012013810833895608459069360959247113906850783017794698652321767058074165369380764690636607344513211664308274216366121852965772374219413518470787778476313737022122766781962852539992154388783934408050357483663121791257260994125899229217184190390945051304417282115109746231938915112820742937237350212787977838971788019002417296613205928391922045113201808712719338391738677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = PTB, CN = Passport Country Signing Authority", + "modulus": "21336763278493829678749416196810084023361745763344869232149787187061771551675045696758269335257384476106657137034172362268876839261575628267112034010905643411862950819077713165381301862886561908881418161629571184355862822440782953212313145973589657989222769562617240252307483092664317667491441055970224352505885814459805155875627508959485986139429779566829736942041857245631977029188057502415710688648713501522485129650523143536388118468905490022413100870535106940994309680177358622137241478112029130493897098926497269800716075199733974483224310873310528110354825999592985865633428085474784463607228196559946277021469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "143945529105745402335958364766385184751385260442480921086626012220009806112933450782342055975050359389684407669273431959614674908265728135676251417768146756046115016115539184417851574627245154875149702476198500678727074155538983015344960762425603413179632563439027075150852218060173801420440065897325463866467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "174109654786062152784728694867571877874283857742725819915320959862764377892727006788050040240759242919774501618240047037049568575890399391176278903014463230130100776070252185886272459008501206389572173508627905692873554402349811944227104821691269984245687754509098970298581817328396374990893786543271667232363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19752521077449402623267535178213929531580971969743699169062595973040002151251886829986275221543146212941361839558568036062817772264028895709164840105297719596352778281308076674501527673256824344694785659359350730211764516092173563700377899763334756073423393985023491846429096116063755435007950701438028476497262573760732554401629509726738811148434576148462962892297176329863261897394691807861955802236070208401211932059045351584046570552437507950286490228125297281601739013848511865102965292031323184345536111218149616465391853422646733868878462890677670289921805615340021190301970098453017723243988260892753118682377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23517543888768624837091373494413222440197111691728503454757240783597431478747589971051020749608969399544063035259805358824984635996841172758043482414078386347834292806229003032025686349800648624879837670784779434842513517074520836814678725925638149756014357927995954832601302060251296559670765596313979462572747951472448295277296642978056615810888014366112419904352806045792170141057388965544208368588572456457482675765158534365031532000052393344244953534066954675594091443504259410220832333553832944832608706038249205672624628956851257587708991062824720990199567629632173430609449353714180248882844849136306411585237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28181272264335374140691485250405839391205558495430771480855004286726809864476989471669941609063490119652831337817277444613020706328431740616241518258068467164637345093918483351798409480553376750211362168571355487415156457939449102545658657447977245697622405739869988749592386705445913771018094632706829476710588165923711958433530115958439596261288880084314850394008492503450816687843978606577985509341342790363944437950390381923808062119628043618504049161913235649024860528143319023961298216379306609453016746824818878988944682518083155552735559368958155253413297582377703249570402705864624107724681987299851071155809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20313194288129237688118658091617656649950830968188481378068627673194322471874103434219008499752580193770056885036963879823729580172425124265257426523558176026556270549189046461976912234309545171375017382771329149095207045223475815113369796461103495098044968657398392721007242621938962698988676979159758781991651884042560565923362387607017091343170548723003542158035561612453929589842886035542866831579310791759355942197236336189270594524263818301345809005783001537673591164375577030160691142091217874158299713442444224904474611384783494626485617518883940240688346307562887700787064576145454582030025302612068943297963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20007237293092562800526372556142298544378593439419425804214318536598532655655221845127547886514713867066703863120036086732207733884553980209327040231520145118741353713343460762051027154189787666825485823836081430616104012332700280634485900937271176280741400142756429539123815765805754258336200932705352227561394690469595233812794070409995091073244501923758337229757178971806643540645367064249801379792490184950154251025621990882116573602611659086609534921827047523369775743891220295632871869117087596335860989859382809116901862527712895539598899873923846627976710149977983537840763983318791233399874396080614771162071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19284876847936855951981125042362581864136602523611712353588454405857362028780280218134453679349333274714643345730042965921324054258667397820177139930812083314695568509292452234501157478630615676472894117181195086887263086448040205384900513954986982517288529769893437408394627471936303017082549970576699884298800486262048090743900639678163078410719248645375746291749730464349062996954912346690171974848340815592951035959468444769652401881094552573612655718848211387186567792356334149208682069963176812948693004130868977469006664505770330068949396332739746594675492991269697620920245714929227121312977784804663292054019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22873848863522292211532337385872850687154555418095020159883880540910289064904051668324838129681667452023514581259144090050036647903722844228638368555584420007833994636626948106454955594103775973021805311910507169203119675869126878201650919380165991526221347211303789074191719216718368049082739993499706678235545008597868491701230026267668295304784646269998709487461984609359249761347896077790592944233645203064391032671922218328367567503605832703443127252756983858106656384984975129189536340828866534349491878163812937100478565549153641137523804800250850882644227873497396424275413594708567359334043998795234710189351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "18832885584933291232533410838255338390284809648517199308540550803249830838485541873820365372282052128337064231090436161955085978859115956503538060096534888226923940803207701339825306541343399589871205730104553359961967377781247863945964175437893830708420337276725272273431959076972912862925025026388728549358388670178674565258524114675120903603584745251035020122863999718833317089002286341996626422671619205116906318724090303624389965649260635855894577102089538330277871868986395668473037075632166797657120910276609500750824642594508258711714382270805811259065691893740498510584333198178540132001260374456664762301759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "18615287716925032420314524227461405403264024894462366539535302106169693471352881686993419759928109398974626694191013819419081856128415335584762556717290225312315517303782235122916697142350473363624225567601425946059267404941512759602603588343920513639910505101511064360245036745242729597132071858364059732904060320144395598375685895378276165949357140588565654752477696546832728970752971851450278767098462941067466724145309679466740791273010260044254159330869127477511681215022768846692899731559007142052659504085526646102445822882335000502649083231142746128425163411567444860391953099888653166509971509159670269560497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "31048864624331124352930671143569901586705447070457118287888867786246756280093691816192138779554895180793718668237163044352452220067374478495122373410834481284656353144163434671972085077658893207466308223921282631937246197962832950217616692898269769767503885545971897764493893351019377767987202081924908964404149973347678608372752104421222116926149495166749613181130728315652349347834780750535813499206588974316864286173025452094100748265798413255748447835780451221818626215026669869667734670604067584646720033398363519685057835194192637166234215811927773576628918970550914145470555230077662269506740761812497593804959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "21672758184512322684631663037200188382744062903013193627834870027842067833503644770174413419837005107121984739200551370348357045084087345097752895393922914528336692916613904583508548073729297665087333180900868977342659767620131374253310842538069333990396466840338252004867575962376405605783875228066751326165475563765749777778480242476930073619686361806467761724624467935409205832334328688197194526824003683773686803804145973723854665152332236477428976565449799533514272000060725650278688465191954978324835034966903650839441088651676379260361753178706563278057455240225242544159823605390851799341726977428684779762191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "26975014597120276210107053535652764951731682393521496065621354245405523198289853509399089820699653905956697996110589830550214364336651369309061445545781710901937614635177651022417073658298317974839794854791014920263515206595400446998846323292236256423734314934831423081555562797984848036431711405593605304793674944995685101878028646841089184651413716897149865307446535756431670463941566276073698029421697464349942453821728218390296081057911727116854397883831702357709153513475576267185318183826103919713839412996623852052210424508893495846534946011769420568606184031207314001366869437238014914146762625901638612379437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "24700640137468288151454648042400635494209761175338330381510597142363374373103693294916763047204358521233798571033285454206423814178714399476883830009405459166737633979893185376428084865554670862807036851838756703839308205270346148963649399123611124725178559500151396989594897078121198117052236779275015316483756735961125649289453460642031414884808570673824220826129105409995489723486245630188046118811079849375165295405873293210851589307762679365144354115283376768880927494182143409407085843587989907796790968777034634110738167088460918169433697570764153656887410398195372854270059321554908833112489592012485124262579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA-UZBEKISTAN, OU = GCP, O = GOV, C = UZ", + "modulus": "22915453422961076855106592431293813067467343876350449801777791830738625860717002131204031291845261833133018811701600465689519680314071674283551271198867148939061301242912954802638572309554172882376645544545235355902783751782162908140034340202244063698745827159229191479971389536199948280692335938848612795991876866862748547922317654140401025886050579266190193489924483235660339253142352106475172636189184216724586686092905227174556664304613783128226435507058982571224203216745341719387458836903125517415448152707630227234510965178777449380797684963019912670896174456722686622675920506578316508748293760332576522278419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22519690598777038477359888981302744796948342773505589291576879019701688303536117503406875865451812415376061675250532326190149346531390883249142275251483126830917892501153334199413556859209379448585419280049480834740545585841635650820360725881366815896481852920170154993239497098032225198308793528310690783725847400547266482109258267307745968722931663626513872958526560170204307108101430659336692295691359193038328124792491099958073074263244890763967313852164424703220599047074268350170634418543188357200379044442684218516156337362518537134995209034681188994674034201923206938578889794519540727613215897708019041670909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26534947003247669332901012327722439185436720498256825223557033568701765022286837163966159448303847079730282450554698863870556010507105494311696071203759683630313576794322930879729225514252657247966901770367478365157850637183609163430558134319100621850952652971111200955160026071097348696126750992466569449360576599823079325791126235421711718504054630846161233951360237853301771996548134333192458222942850032797606870088060594226899224778615212837126129570095914533241362609469732196002605949474867226510582309136669491176960420862173997891424888751703949403313389304998501342902369195152419070324718004908040342142267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30025156097450898783117305139745122229844457331397658380642354359526822386641283627874632767270299538720537000176294155588635893590153078662853451827698650438460141291658167732516930590622294991322109646861807890381335299824862695825416738983196199368224084529927940862636344060687157589229479661469259832261815355757570432422713349669975329691527110315310894171689997958978014887085152495420697586108848606408040824747538578832765602812412300457254713667110783178426914370676009808173028034807500885767169677246409164441411810756124048309800545473813413241856462364144110832866385306514060230416794513108766616363481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20193723703129924747301500730529110393876018422929076679019398886093706684753939569407104147844341760834706942237693644591569994900294972878954690115606666025831242794198398494530492531655418093821537674339786367343776711518089323532407799451825783078826829896116346853884554370530605647138182991742976031681480148583628319097036283929754360874898739851792002667673549395521721824890120451965762212930107351737974296161579723557866400041413008604410923227390871993314911356862653109759299331212614548969881631551893913008471259899675104443333566613715158336392856584279485263545840125940914878952902223474899992432287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26019140704074960334711640642038666841694608692703117806684116665189822325710984537783614889252079240720305085876412051043730093429953947708844171326070346437957455131216310786275653107581733486698454349743479828540690886968091648452312335897253560703658475786371608781170561475027060474169728784227841987570218945764475608341804709288839054652490741181133752358977495380293978408348366786190777835905816733360662638519260463969508472820119749870964932193085120241181409691176630529967774292324678666495640871660879399544140671718102087648756433228513745501891060620158785750095926788618122562422245063222852802479011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25695590102967897511187025227513465443020344370406971215789955132837680542249719650789740822048615437327394331418976311428284171902367840575996886521234502070801722855871555176564541972497375794700976766314953058449991346301188354931588679255759168102409943696807564389110710554621119567955299453482400332247413057414389715807463352363922544551356230691661321482699748352990885076235323373038555567954931079255058841173193632172777469644787943324959664870207689382639786142961736895586574382160294830188948175872924038922842691378904961374701554045676695206266864614030784120931075580266220453883759932145713057117599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22421807264101957546212821983155796833068232296718284825722885041367557793409571535567781994576032391170874480555038455612344291932758411097651783218201364511096096085006282801433388143606886101640370238122484258888743797364400911146552420131134396781850271820021153991966263437613887520249632216924548340519398033408785186228739172723860158778941267986292155267823160765410343911860917750325750265429252652003807867934781135216779808997679985804713843691804471385837495504716924772584687510371382080330507112389764563492952258258625630998346433702678859946965023228906944227681329470582101977727368341480402975555597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "27144685546124910290340425016769236735427885397816244343847134991950864498843099529859896473563624338485529655040549884211219947948446733545231188522803346855351762806265042197276793212200600533471626381450980440233193906415303797539692898132789118216204185963626963717975281868493617046343518707740962941974482242384986221825713805716850213851585427884281035380632015159225732069338070162005689130961716689093217849241182384223600040173762040974475005930356531708429959259125507690379504118298866690142448550902648090707765552725931737665863811052455058669059334983258200546934876185244922545453342443302002921993391", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21887641836279092530658270207167543995085763733572394813918046878720920040284183258557389405664024954081840840500566134875618920609097143077554938334798029083984422021589295090584209390319170853114985188668790013337823350591467015065670709660227457572793917419145993994552608826381691039461561710508432275291096964107778454520109793343610643978875496009981349618867197462372072262146858346468678339274916930936737751858862668403244002357534215848244950631089141438240235662890106636094984904061303660444588772405187812379437154270286865096194894543781674188657889056709788852952070127957385014074338202539247577510101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "18463306678905549179627555169764082108868591814265021072007418286370229841949264526819921863635099032171527982997898670794257489434226374348578252993234315881776937034002285969075579539011235306430696573739720134159252330947286692320599638524829231414095070736818568801541741921085765453245623845403872764386836605535500202583060758452021947739212520357956444283836114500699080409439421617414547185835740869905208561476642270603145248324148574985516742959310978043109438730593128552007916748264066560708817923544829477731433267151421500460290451380620032367999653024619997297301236906441623423264259303858400272245099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26474622421422040781828640698403277961713450207162326746457061919299636338275081385426087946150627693965985846345054797220580731051734712181370506451863303579094611023088731071896626812059034229464368152681916437692092425837713381676675920514147415352899187766236230282837381344702596347614103863020262377354039613356569338505530296834246855721742018856189467144613883444612802073041561902030599090643051489860397861264936945179052705144376868173425733671537274456740754151964723990533979991507188169997494658393234105457401875735805131303953323889256655802711972787136745271691423140377491895784259184240429187764067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25362166427166387194587027235515982296787846583710355782270011710328020462721554661854841368990339883956907451446698032003216228586997121412682573185651619383800481460589558639176321963967204026016356516929618289047193487340243135650128415273650443806264825642032851484842279913329938544069928696432192850343375749532021531179366331083367041872238779574589651852707049131583724898672700095844761493842297110450407461633813039595884179462843104598535787651213621837582295552761692285239849049656251097373824789880240075999158174265506483882375135081174730842630114790313765398772467197902464848213709822669363112095741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20639006147557697775326841578419601943429157667018391709731779497940508275019633590915413997393920940252974305887011073638005318530103175259804395365354696643274183660125958728098181156878459339771652972102706765560866378378305382354071343893579620020033823724976391312416907732683488875293283067859493167075217130626168828954736459515934168946695498196982240068559755216532423629559745403974209880005724713956540421508331554593683544596940163640461563361601668315253865299930552566872083965952664235104245861467833757361949601073020572729105646298095148385035606526964530810277842606442185276846558384933946040847819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20041418805964559857080369862772210740550401592895411449314239671130220592829477702266102206004345847432193756896589744444257332748495072601624898401714463620709887339477066013327423339261932110039508023132928397379168520175995472572187550060921113788711943102593857068245610041779308231998135146351839861399355337118496654672812638727178203961641445272784984778294091410607158204801847798525996086411925198489221610984402771318525425642919811936853665245522891639725638802561382096682930180548197109161715527566178710917099849920625190548273295327967830020368857217522960932582351747409124819970275584386338592757061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21049699427578167898700632426122007427866313688099259169014703133603200381195839891292193042478817530553629813063672700221011785173457407364183630770928082682788377045309969258376110817674327059136325739813029532690433459174454841903354142412743711197310908686443013305871208454049227086494678763045309282639617599171945855934879199407252411567064579617019947720832208717762176676837822341812732533999523395518814164977187773205270960352701792035368581050946137445148551951836083927695625541015563691758198728702670793946564822092298139083754085356872912165128617145019765024623242133436292641090038636902692573802459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30653754855602083390072575061488228750134595724997743576890415772172893542804407846502674777714744206214603409180068973586329155507660917807842949776080563951437342358974894820563792419347645412433396408731562316568085418363502717854666450063271355648391419925256379294128978245343017086652541977811427959266864403019785848610457219408795813940877193451533419563424021881190179384502260817905955592101891192063462687757204923951588014454739481509472728753501694712653584389562858613197528788819964898433480474041012112491107731465293653952041765049956549421287353725290693280931294299284910987361898897406244884553037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23289351293790322649238078595321358949912373619937841857321075181005934244764652466790535488590488236531444131500375062315338879112871777601095258161020381649126584099861253584529835710443153377815527559998812897975767862739289689271400247894851296853039944768415168560087014800401848930544199597227592825712312316930090495757529088847813479063917513284103287296804239012099729155554115932821640715464897051481200546820510101301849203965582716023289161393325492672951147345181181774562529654922311626510745532103420381858749147102594142765258825280459994632790685697176875858324206455014871387364514247125476216285107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27611681964932384911410870715556905252227157121820918584666002790378188053075893954087826251568684522167891941908782683638810123985162776144907545739793807156963951587075750423410017425794418654557902752319167449373641131008397985271149247151306301179326433279892019072874261134428333512410556327404570839046609838158783226279825614206579916556798336734156795958015696843062610411275318663018344615529591647777011183315542702360972755826923547793522938077989523930533066482621283941495092753412927752360121151996117561995612683198290219669505441858547201339026881281670585497693463138945435714245915016326801183437073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25074717666223603699307116517489209389953778305413402217547496037168028146847475560191237162119083425529653198864863646355700128893226126955893956717539975019658844678233095130465419889309770132510798863494175084226957147431254014045563124455107828505648379741545346189267758860140385637512506265919209659546295027537035415979786958343499892940194677043389492162915898808638852714657464816477935636302987997505453588501108413797430630788490318164657977686010364271692937311001342815187657118073093234631055642319441229617459591190346404796142860178608278974730504458879549450572127059415084783078146825786657003644481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20410998902636783895453992894759789082933961088528107447316232517191090253507759433900533244830796391025352916968729715967602666446768711461249867267650854239047250129075084906815482930597097040243921408258208044596752413205494017108887680294824736295251673489061928846489047592734161432835496514042200014070052892352015242409289089642248211967110520397015467591259159556264675739818973789124523596887871720521565579496507096954893002517958732967920137954865128701627590776476966334030622259478433687689523519776555988201219514630953580137323922668153349586319188655402462470454122601349809742965801859324931425044163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25739468441383943223178583774770328836451502570226149267294125014642997298686285780995540606120316161858947821568573157240805048478033564306724529941342403964020768436775187470517368486559776480341042198070563903782831012798497242168633843865694386473651008406390099813162867859170096781236739496123992949341061343111062392825729149300711572006578526341902253827999006984040756295924536525420619017728965799814435902575496455171090428049795199044929635559186936213207298226395112947822315140680101282192774642619351624546043951654544919433224127821644750197259632419365182362759493216841479456208466552945080522800603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24766820827804337203103264230037122919698948362962216928736234806842862379410979266033427044055880570518766309348658408828612073480279320843879968644257214480279473758463528197302052849682727573383228843126896142958670148385958220352985148797173455697500312348086322181765356745297021062951721399519749522072692566987477490863985905929373073964428996414111461882874865070280039776172344116789312112049877828924588078515299864582743214524116876731514165311709210508302150926729347525624027755861429731071534854066312008451722763134473855632975377580348161709521759685176067540218246458805091403317481966414543303602219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29331005679858515926132292971109784394182426770796348221439353580936337597813038623941905170311487574738597882123082769398706424550660733732610918062189100543419968566431189374319325665630296422269629597131814945270003888976745967016380429004069650329454017068185520349663090758481854621411620174898712716528781849515017453793998718484670293381370240081103508800394593352942080252564204161251136977315685900783973135644501301350472161560937346354504768044659059754845036568832053013342804933673577668839090874688453631346906418795068508865621284952428526376939586301887044843767009043958575334067106154801853208254181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28955284428827808658029773979049785897753799832239545245755265190385151092166251250046527093058446439902817693917912314584456377530331173387276839723511618059488066739797816004117047984516128447602005163186104977190258480283508964381695627288402197655170256359080847702538218228307113333747448601083763465738553743824215052103518102699858137268893668534886217366477491207730391318207922318648442713830532268806757243920912239143249817283781879391737048793552542945539058072122389367465163681821023211725227941418988310911864319978840756490341647268961717588297050310140198915474165768198702462485910322284753332824889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26718925416825960633870897249687373227405342091995044633926589354135585618759395347165395425146162476143043615557397478702632661278342907625388297167555763405103931305073003271793216251613604854439306252655007841095000131489412923111182459974881869382353397656689653580561914416510926935915654397887457685980434938735383719295928589676526383271196685968340949171614243631427683201520469334688952084500640116024636466755566082300346578376477195831540291900613402825709509841601326148659811150292758387196076348321087840141181672012115234846400195078355511957759706541740600007258159168354406171375130716497103121370421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "18926700894351592038164206463564923014356482893668830016748456180359462658250496780348822428382577422648638128343228650684609375840249266170977272646540610769073963888088050675521210414999049207082399423943551536686076742287486652898099323929565189123976936222664291522446346066281763789084824874411634229594287200580860412086587260487919938922472824196158629112045586543901947781680310339481433299728775884558726551392042886539148679011058099264453385895114082622751412338297756511408801484993863916251063688643522650503497143762721721713960208375009727460555609471011973118119266271020365914597669490553294044182181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24372623921238267813586021759341648043455235284086816267227181649849304442712789203186078929986834088743102750143416650329502833475776582390142117648945718886856065066968722789040487514586999656490267624629009064512986540095995919139836600121624193048046320313903886841115967388024075973942337618221015137844670999697279119040091774966516065757892660568434496735889890129683575180111844683577502487437740510145531395501910440245477613552416470321551071251898751041107484712503058133715637131369666983834185430248714463315774118916797203822224583700876739220961402630878120775004594611771592399607552571835496478061111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25035570781439974156076881848308368550968239060847840575877492989167878731676149218272186458835943032224063849758124781269053741278955120846722881991084518187717293668289691490894511643830033974088324009625536348096406261426505315617609638288067018152252995678180988508094696387796712706993488065387739262358169256282102612877881941324524725480879624212728169096480805713348683152575641469856859570240734529924036769213909618888291037685310868463031973126183575889038269415849854838720814145669938288007587401431268926289118118880348481523176976672736898777166211038050668308297893042553085428129401815386269448414409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24066373058495715045559170059982352494642455529232247159579868096228081292949410707314495866553928257809272344153470812821518606228982153249015330337069395552706913008189388341352197669717560574030790720451318235421231885207582524831015473682233410175771785911460337904788480696876241111409993924553605123920102617941004004109224869973188295987972100874559136423422080494483231332404089149112433117088550394808562846321955507633477349215652214689208605052100742458686407940992558574908687545565582302073489851765998538480623081031135867246434589132248317643301353783375344075397554143626378449650843435703570036149399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26232432835855035318270924823514114357650913835444517145149681609814108892461878640343183039618643157873369307677442352690871657410869926076649386022062591872609580133606296511113847082787170119503778590221255144054688970655058326932092078468871093045555005871194230374490211401082154980588388366732024470591491819519067927709438346545983706617455798462735234462195423850245669183334938983517397948201925589855698324486297561461660006549174753249700113683470070330618958082209659282589986382469837269944433691739076591658192268411436774149061124532864043559588745552884589512734344185095285868887001409042233583058497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25481585958747054894991588489889668054276273547622455174684567548471958017461600112589339673326415707996218810334697806070329840540513046297673378906080524546823122430836532154661624307292471274502862134655308072398362120841581608562283156128942873549435882268570282901783902019588961853726083218020530029099749764398688337721377495707362553710624471276670404055848757382233434298089525723529945205922821533339756313645575293256875914392854586153944096801951444340986306099330465343259642016060808135419354263895474367128179203294124722859179581455087166086941854417762515936683263552073002775708113697166074733708053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27927114684737017527679235579149082277100402897708889357370245224730796367025786751011950474073688134967170601230135271864639321381325173186973412029882632698944312796799884491471352612485639679966731124061833298922427076149222283178488135638546992259261411097361652018703784254498712465851589006771615082394064089377266755813901885653673378319547392758857006218484704321026692167995146510468641380380322078370045863957922571117943170871439600859029860145520220991751660237003625217223434748534869756698154927663607281231119917202539252743601087179767028602801562190248714438080091214516103604007238453919142800519083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17022549102104135986906423499274162711107019378277267967909755056579732107968944594700108646949784753501844431030090618935037383826636307950754133065469582415123476507000257600695194634713302815118467891886765185016327021979458676041740400133527812120147247439011025498227448105110568198339790749507005364854444026480790769145423838264859721899827241219727607128358424196225909589996285079241342964493593120927868182093630619381794528899635975760031281658022327589358943727739691113736333143872161480768324758785588886732082242606978833839574674301034905482353335133772993908420197483061012185270346500009706598798127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16269676795856427351963500762040537041817958682209208515524754326357318094999828002471998866131326392342775164415385436767624729552320349371294514971103985910006043660909182100913904639955868829747832454996902987547892050873614620697672225674324154278841256985507464631279781607372658234533456525050792853763282104866537180178117948013720692107948811202123751455923666774757076994598379973689974823290663337256458227928150694361518843497040301063289138741606398963173897659180227053632947133277370159355689051745589262592738555185039819241953912386669728340096752052615246199573872043905333475710179375153722055790973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367336511518030089113522784048111556802003798554408125993989913462336710423000859373225124167892123844851482387631348924472027546343382158773975352475038597625145130164507175635533389779687531315156225296921284500246463229118873728254150497055579788666283407175177188540818846446839187453524395283625869223623698121308736618077777309172823887316522863556801923768609067416254262478366867997872489556374087015310623060084813128420967858580464110311011584711260302915665111587871452817359829443676929547615817220663471286911300227466913851638397685450342112644658091137802265365498117844963242754035894300396636718547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17158075842964124475791237502129881962920745146416125980101540904497403047871723804882063431167960735725313733593742282863603524484626970021249270860288107391980319686099254667754633359900276711422613758433985522234871885724821325950562249716648924449013968556262026673028690425464590162712815286004073535849790503037369808084996504617417308148560200672832551965006260238151734947325652469541486442872841578484347496784724289918518708850847450786964616636366082060104819890766958483380054407530590953013141348794267036481721116923212285944207874891626925792224765563866523271436903670287468011444229095515872501265683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16849430876306519250240804676445786895772129451890546756059557195473217595469093856643431550844808420021095036549676172182921847810097553580567206011686579376719962180295007750361327323387229400014141624866789740908826253129715176618303644295678564790880694990678076773836249910872833442271764982758100408263890906516291525698362041166252509753618230812391386758287079097005750892701182731156978117016851725305443400025162254855890218967386947869786774909485683898582115961142807019012689947787496994349957994996190663221289651037353893099534928264508619031048933333913618606531045924852718398466805395775880181302039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16392634383947595823284012944820122971252588658443577562670520539941972421016041072145716122668000525056782859766741114844729868900753054522894218291420686831735516799865016344987449343338161222197026916519327451426042956840293961183899427359848475423983022826648788660893566327784993229106959002996010717877069051849213856364041531685252371436261354501203080831577410661151354336130608997245800478688212626217389466647344915466709962156264489251034311338042954166435896182026266987343678841423900109573014221808187331338297300641756542547028611533604378238097004850178193306606518174135409271361490546047582693478767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16398472914355627069705992563102938020964427083144707203529714532652306648592468245881596328634667736702105942130910766241096493278780418277932003702319899978728907107564651755233477327420013226128465210774374317673487076681276184403156604704314210046700300332683885314232664068998752781920918765032136864398587525356575264918719681860070197209767709784431914515333280010554065278438833499657169117098966765377146356914100494009402889767926247684971644968883291406010120186719430770312048541041810313406324695880694592806181317101316727358330766640315504970458135004462876257744952971076444357754536353923046264403221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22181661699215094925205226087566625129895283927426519194938817638181279729338075910817027014341835946753718193850895647595248984729499916964381373784034224034920615925006593384350783149700937961537279839475232468632783629133232444796279915857561152752871571280201682709943411710367010247585937180629050304399271641870911044829833690715533384517300762486711493969083279206528871653178881290654018968808129921886124745645172432301582454168038645634360241251657971417140022031085098888572390562178618597895003090797019265407857816976047515750861125221145818228733451466665312374950665639639110448684191061194398815506233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295713132539213870690796721558418097714444629755279185530849912033996431137676515306399294108257244826020964328169816562902942359081702382513471952525490088412734738967569105406002833980833301915337801599968002814237763599585520908638938932955447624534293870428843218459648230096536256749847556004622321126622412729408390294094772866763324806089253346219181235976341767603669317968246093211677255207836826162826632365526961336714305479392148320378684419284830028768515537397675025736634940158153983412501034427079285480927852543265830822880014491421119387973713478513554712685135002453640211164493402734258772403149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26621590882712438009607008692378156950399362212833816381154708500809983598772218430192862007913084788744052541477494597930137368340503770993349916264327265257550941248309217821598731077237167381267786431449390728526873921770976362997639065755191571714297992701178040983746432693188631144509146064608090205300750450326892249050980485251165489754587663245082677170777062629648071820254160897454427510938952908635272708749778236871676490392785341157273310198243104876727165229400906327595064579343592732957780094498632725315888306850177631972707187362188403337958202687788064175880772118439201052695703228160155572416919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28398759695992919440680896876511677781271140676244907704937644911858074612849902421461634425999363924846072420671939436401575860697308942874162277059428769330130796158425013794722713835883976604756762476650434753894981880288528090355999881200616694119535055869769682441285981730701797676178958898938146830009440327017379581061128158251104756693368086746193366315460028599054744407006094538206075274803306983505005800411107172916723579681173004908823194978675772500045549026320974588899651310974568753439213527679501035550092429912834137378182567784541402437926623976819591262719800831570831528861306592409507795879311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25087713886679410050902674677032201175475096901391962396060954567496179987596032108065531292884334242562962875134136805910910405822097406534300165054411724157040142726575030072232878631564474391377088625054687431659036992936080454459899394928708362346413067586384000321190215972370299010843457514986280019155893308167080575137261962117308511197980447359508993875342266450931507789280766506224548835372379414662246327823819468741742366533577665860432482350756798850902206032202961656571961305825132108578102905172890160633170455709726697264354769920957056857505322016720820989818519651636568508814142982803842508416967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16354598374795160756692149990080047166413625601469233869868032817598388188516039971040939808244106986270322971372191798133976181291428427013455234484281682820893915895635083960357490045930485269367638177078615537635175329670566201345307504910517373914532829652805320722850359393200564606501422435754717703286350570099416936619246303276978061137935632149719142036884003212147201122234098984686394377457637223901086883708664432379234785471271440651834456162370054132385270583270474682146304002603440403231187195133737119040121855803154049875088782372876546066825722524994029933673678642601329223453049615325492181519459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22286799989314010249785700200497863931147175105057330842114795024215638503550039946198704303232595203788846582068455470517297184628487617031993847038329309096632107754314221491384094574111236866270456390612884492590940076287353319584492543035128037640397925119666243262886887845240245846647793175803806033271094977541944470888662335778074770453411546751140153847777389714761829696934793059906694206321439755067918824081275008287653099861043472679495458427704546813568642007525639026920599994600201234740189939164779507852945030741860949532372949046594824896556459967668563877285209764948709264748585255068539062883503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20298557293580245321733078850918307365801156520443089055823506498129673890645651094320161216647271986970457495264133137286438158534702824649864975511666265990021736808641127551436033485502558559537858570152544524277487610866527390110785719839745669255961802900426397054159502045471868856107877141294631350492432322926694963337107259875005964269395814370342895684494298329158315707043065241878773642682958168960618737531508315972882077766734925561645278016240280044137986461797658792897909092126904947749239144724257755575386376992119951253476015680438589491205603127795393548178648129510915185574073715910052265752721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16705655530800920228945153251183209397847124088302226109904988795518722537730234427877460958433874020055592317669452933680658976456601297747494293454407527969385024667649007251257710514210434941034808251621798074188790722306740236999697955350420818976700952525603452437272995686641692135127959563777470492169247078425661249803305988927034691594623647506757273764724710807540088984129687632279964001342532728526202277720593528783212556898324537810986054634500705470699928633660925085806197305931779410678402247306971095296655414658314721353074907477671191673109296456845695898268799593707393190969167563581361794737191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16191321069248416781251613432582073999701258039577753181211080374055055074780150721570116616456769902185429324862063295235107545219913595690692402201165170946002244033412422125641586491881289829573290847421989715948185347302547220656383350845266577023021189777437964887100994291894875142517482716138736580942431238032489451410525974482605398948134561502834343292041669519057710076712917066490833514196875984066223553602010565575799795764751778379352552707546864459871982397208077290885418392930518502133653351242845232871985174317498291657074569749525463525573391208175101859740757190840576365886477195510028220136983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16365740693365659355061276387570708331045472460565929366045058470831118833431530451469265885532780496113625574829618297586147322181497733504606153851753854847252506609109404464216884404502973026873495725901796654875573937551915922043965463139515029164792389076369194493730426761795001128256131327805433024152369646906513436954468021437587713633693428734181276577087485959571527829152912482073917106309851243488283147732545960199373816298262765309571512637966543965563577918535500739015028528334090426419461618340318135808085185584434395913152286710448263858890039805955055769530118209710246689438964227472793408616697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17301897264538078369947707888690501390942225303124148312960394513751058035919894678438444392592388883937541493651059982627759891425106035565556982031480568865193959653571372934582711959338064421788098707974633464568843370813065075287521615284026047373418954151434739245102227584616091869953430310346638640833498499101772564448613290815546315762161775571938202380366005129926527489998057392913214977338058888076544316785131844259246323560780486156169862332273572594067319343058326903064708621244424006708499093504923105157065297540531344923833049847373141328386033250235229644612659324363236123897192087396519362893097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27867103325678273774057672865388599946456412788509060118669240649634977810079368719718899672593292417479870044813299191323745762296653084793888748739015898162602848781888050662138128157456565997443032812866005360399180601554449737795733377321346930932284223931070080427467719409289467586313156990309883221958560663216612660254837428532113816295525445976475798872386636261362163040029103118395187568411164468265780716944097566538932399441569885254241409409629451642385594715791939031950701922450864748026318036142797504564680541404734251269173414621652810388886132809717434110426047572278852173707913033973044357061919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19782959796702050169008306419785173347652425872327280991186972994826755659896695056363674238616017965220572648711876414931773148700510485509217189896497937478909352393044194326165234004320910743872773920911168815751159150065307515389824139370529341719986916407478386279171796270167590516651557763820965170144175630204190834728398795758256410681297087442790022690181362986730021874039153408567792440508017910194102195668197685892453599815143123569716395722815009680816790169705862067182692490950584901057434149178789489397008860938397135463733162155239285284959920724049575261337074132600582592227579767588099036417411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23052898548120204266443592797362113781245744784515450762607044756198223001109496557917767121387077428982927673692041592374107373386907236468700814417116623868885120536394200155032389872361326324219903908199780696561757441130900608753326561441711537591056894985353706804900610559671773139134058359098124612247184641661324669306847434142870924364674698962037361531065509490579459402926828319769278019244854317674244976570054702827353529108467539545921979662190744046356600260781724894604040234139123949472004162752666577982052064922072144739323622381242438730390947563860707271754423066751357016445863623933563360599023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22256874163707106467206545421903437990871164871808792114777087175513203190180722642128133134466652013851004426950695984062356461022552539240274530641418975035321736361733532346227648395080715271102425091268177960429421267593859103269710882237533141714206205647065970030874294091933898039887986624952584994775296668927350681056034215485081629133917766065955542992026258706181231025324768766759606882746443842376959672374658643105689048721570179422979548334970804883546551215701766634699106321481402841589908814918148615410244261893879571770612913939663412673645163964228570771327767678885025728813604957391350541265933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20291442298162919897610486555829877297316482702578615550876987253419434922720476566816435719187560596454011017322429700959056197419510114556244729087146044757831398098670825553618010452029671165446441758261542238649923771179539930766640913989089308422600571892711514142706772001588045881893074301505669993417273224072538428769522447800481196590239209096845555508101491266972636667201734193634409483755392249297378529669671399425744328630170966956723828530714494652845521505482278952181077106431558210798764290327662530266120380924188019498356821016571472256734355922546483749247993739628602053372667683196542116406517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26214201549274019417803502326163153563739802880294671700408595500783813730089102553996604500883579278767711269753153148517840693601916757304118870569286776824857586308675713011537324734329647141152119649991949948470628803418323119529675311660495129146098405745089140398954111049739548058811197147383481932156928910512790306455646655159615463563058482358658793251428010859413606028846699216819101969522330999470836468428787754219958773818253562810159211454098354758934090315534395707375623237653059038122834948355147365229071652412535587994718823699732523029977532366891402302584036881754011915864214740068355753302663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24503374306970924899703786857644723200795269558121486335273383769858895047774492271517657613920354590586109456315451456556065251052334691212701959021188316087532609599373210557587124127120678388713064221230875851666429514684050832227885682309832556338753834651170214537713464383514139142907899319459750949314510690342282650161525991251934314270738242348285508924871376701905513608582471718329067149049118688175453240131591870764104288388572004337820105494185405944809344385559792560705687810952771619381925609781762681914165602129845047094497342221728553062449990061795780483053368278952664997140258770782751775274383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23456737562626682706134512860886445443770555125579902503845460039781227590996727822627507288967771127471586537668398586657268156864641206623945334000352381433284637935337767627573734716737361098753366657694015128768222669874667005817469162441579951343853875756111892660460198433459800625678211589016736531502168908450130329239697150575343571340122845265484830134076333872544625403873749000443460758589097650712299664851102027279949723163763886252138875861664267614064932317508020722500542256477021335192650788029193811360405884985438758603766486735869864537780040818211668286605280675843388568011822940709669104471293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26334784765577745476752513271099298106280349424172380541060973127891625161966860161914207059200388759242472772624245942375608343086234685277645747376860069150920446907834005169846547915892308569043137077104764255154820140019553985586005557405513291211030847262301978007595025398821135500365285583235873787288242760963360404479799780173339943729337039984547073611838632890473926588198952527299654978292816112977090038873242601117795551599695452270877226026986373400998447177516538685307402368098046626967105915004874240800455833214680126795326069345187046803069380963586113336152232481119786253126715571306200981370361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23936282707327398028877075785183311192258756354045599662570546547486446845507536867576047682657255142700985395055255815329670114612117665345656017124722235542516531129702255949708020519942849937320290278170741533328135612410303638188834284059745123335193005140209207391893498939991525170307649367793112591980469506031112626480845714729073403420866592642095915516857343686758123703066121100623697749604559724926036180000588064964037779324712658343222148289685127435473739968897046459064884230372533868417500695206295772090203408676239264025062700471153047436056065658670942489303548654423338505606123149267267064619191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24226487662302372496313438520564953797222741076454698709991623998809928941095535161336008057872299296840144522973123587956805160529326137726071374561224360405246896717333382914057214131341279107732182641658230201873780307783430597032683413824542474009377469373486902846807589356430247346617051918957348676240301144358626552303275516174982929306668171080153634093687247787667689877453188508317287475236378998802767386132450652089763720657325628475548782800576776089393588429972280630455560129101971467920131627647731595220871806898146294674201330596872205667835291070579733883318538449317521595700392337473710599619199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24562026616297228494601476051494751718589375557969828126750438791616116431181408274307328611821024891906727784990487689360056024929911815785340455436102813764352413605171254678709518332417785172574412930143345965329215862531396988065737958817520327286047724321305790690093031434538576957645934634118661065801000491602050661795500424377187424980572407999671727730878349986469271782494130259617595479788294264160125319141580259298517068341627176521526135942706649559073438839818843104364365650583740953797985696794230887415030863678464475467383258784809513442534233848848280248765656311298622647475056011257635314792393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23282889609828046157386849383379429474716193210995677686307096684906261441201888483468189101355691711336955985310470563100820987771802459311834948776689945349713517841748348311284983399834581158571081635439913726242445025433235413590708555897620026946870507024551085225329407960718379068395003196628093322248719046190065481280335208550069735073485705019333430016761752913128787614889106834987168238557687408781124788777993680820700483264034831474137789295208206152242870305559161103455334220918736879299516760480994472739180603269261597256564382887130752480886333678539864706609267886755425466837580051900281807384297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26037980419338131865507890794322409717722921787463938229211724865008190136631134869485386352453948029710548037708852588243727712576245814167184640280056326424180953330559961235924475490599290201619970557157286173304247921878759674641354693465170386579888181381558465060126333005570323588729002664002531928937689774239460660339318751728894974351067746027497880593640078857004197338309671174110582945075501551375868731051919673923178273124573218370899623489511714528929157971216402352304951215848703695061975359635249395063222305915003412627759920973405734976407801661446150820567762902818174239163985497271288377473139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27928259794484738387693819334527148495284084332069510934089257181062722475320992994557513327396743512401172559047180378783332048589110678284197693157861409521495033385783634197852889095495954669243298285285641892964528564615981395337102395880530759466817901106084009804263400150369771327833647026281515916217009606678480311834783390681487930656380261954860914399353894812776414703825700579808200129051152928236363202990080288238672522156766464608157536648858552839604927715522146559980192238183981614062061435668781768444198450285872867669653102755222729228419578376362150013952460428921361070197981412789963532256171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23338382707439337250741772632328987889495915774209878763813678639279676431563778602913449024888922064011187757333654006614739591673066341798123233897104837144696701041882584583520774080242882126433695786247735851255821922803793435988639403765406511008622746210834183699453871977580163217034363144035088761496041010246321002258495407166182906326120089014046191507006373855775276710562171354233472902932567958884879291282433951755152390091418074691332027310884917642936857363435522725666229405557608449139128243241304281449205784070124811539739379396527620497573840054382525770861756874924950843378582940199384443406039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23241848812140385512767744889022071817073327596496493413215712481692601776353298713330473340016756852590906444360348460075130039584013009638245710125613842157596129823922153787398390428308872354944469549632077341746025085848467151769708251313303777857923925142623841273588674642427233958355884154929211937065995851312850562247906763438464797406914472907480126476378003896623160813950235381059648286926372846311055241321256424736049364089127757722077928551347055575512242385631007996633852973619065496717519027069569068263583494728310882387136541554027470975210015415989807121910338895624199933603452512027979167545743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30983892388512088829468342055849398632597965239641849183561017700497859111217719252595542152230552578868142844488390633927642084445686786998712678822516794544423734984920161890314790738716316600088929511621759170767142100920471889964676955734538366849110690570945323025803912611781483490354545492539980161309311534677506672326563616078953030580572770216351199559990509891400936215325041176450840294027911300725943141143789575942766970892410519582074137923654030396791422195275441642851329718811580998948407530931467804021673827839547886987024408748749431774804181174155203660740680107501465448543120440844001470950137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26980003838342014022003299532884131118943554316794940118390341652158563627253583276257165791606904770693069603903659998607474848017677304434251636762599506285067379130799314464887586680452771789348499477772258723131005853645845687420497538661669854089483638257505221089911331962414429899378063570172781779122505908825843022040158034522382203635347272677448893773792374795381274150657997167947549106927032387165590580297194847343513122333378991689881734764605899938341689629370661062335800295582588821289375487974765787762345582861879864299480738169460366385831900693627712765888810521723089471194017711530367901009739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27034906895633260744896916269425568523654216337472539226116004005176365572380472884929634546207660424800489415012552320840420434556424324343014485377073751626024742077458558283130032965508153891820595839611785540017778702987038794219817378280666345390719462492421317242183948333633307769556976894585112106553043757634926368415029763188536172318619387020280045868040634983822876377088513249460889077366600748424367348314754074149210775623551061025549877910603870751682813570553934567561461141362647628236380767151269966998217904403632432766307996329387994848667377625646867620649425826558442245167129823621764732553497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29909975666127322719693184456968023356295296957941360915385354968077826854672245409976383378850996977860633359383269387829311150697863372267321300055946852102277595846409915582954141299176602956721836815736969897204903430513933711160918034551208435012989155062341428183111448168933689592665307049639173876289685488944537473773127379923278768561057645563382484642447043646915085461075213229642602542810368462673353028640633169083481628721737466738727649255821900058118190993584234262639858418631394848195886862178823041394151661132073320757577845721753521299416243741965414198417454509878122480848423139784147484100063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22745049957032815645829064064169435815031535769588202035638220054612784257703150035385160473721746103729140614681340761823591169097292292930813864620887023986254039194027883071851109386144672136801627043293981533918383131460221173196026747396523383950708530938356740408831779733006705047445031749550584428759503737948930944539340693892026791919285557047032655945498171804926782575315278896985591395370809012140179064658642044134673876932055091972091281874824080558577842254524332707791360400310795371609557306793701281506659629858787697685938150372804153463420378852622369106195535820010025942582609113589625559956753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21160179953076290294305718482838849611872361843875722774880448212076205139537451546210455691782066356132496528949862117709964833705330948329616927254744399804567565210512745217563764127921073235577265955963533322621044466482970577059279726385185426967035942241704600697432326215335134642226328668308745632110908449724639870013997149403034812069618121052240199618685535660227079830087557176564886381472395595097659921103990931842723181828477998647230252906917697737473513477432721051896724931803314722112020264509138014016707087508444396444496847707294432607972213109631531762313536690027373516007152697682491021698127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27029505320307467385896805075916471471136010224860158492681432757057299290744401719076189360535816776292284172202926538883930690215535821248345091762677202738174014439340301262369314615774857685307854986749434729505272826058973580077154013633586539367668512922052899303690343704957056610751712766351537134587282148550914652610555659195587069135583509947473909620937476137003702026906811517634006509517192481242008706884895911861351220166807377855632245070112176464473991807983933367627182180130571354245471135004540609899867384177964316612124994945308377390010991817574266239752528684259143631153302786972732056097279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28359526372501888823301674303528237829067830919401442845963399539004780824497185853705552709492382382408756726322724203579445535827214492281338079200178052722617719544780750689638317786290420631303512008501606566361500215854159830869205436676341175356546637643804228049688772274946510876495847069088236204788147540725205051287006276398618116385748540972981820164210377056837814099072891040314146038790912381893025519169202599528365917051425584211716188264452962094182342577623010363539394719818698756800649016514345921369351990889533630663840964379715281514526950579097523301466942727881077133185346632777914512996141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30242172047315278810519951763957281426771239722273633292199140408374378308836132683701279976874714959428688190602916872660952147197675741002145527426475078832052734165891651581179459317286158422238848395626846657062423566172083587328693289783885740557572164658410893354957816908347826007327292614177910538484430041350983335751503707469687068691557821136311484453945140002198352448712153129571049732543446718047587708245175411100039019255906378161513746146176738847753361316714248988782642998477212044459801656550191202283687173638525986216389972811711333634025258696168452355196451070966839948179864366945272853643539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22376764301219980486081925355442329181473665625310802585170837430373929523557887460283700448855709654599231642878833894193432796479931914077108877464096023219280626135995526587876768694649221950812507015187654553990645739471727258773759095514626242700152897734059589079594299780461664411992151095565895513411619267924511987446821479958349782790826818932062295103993484547857522042646781063530517347607970858202212546331260211669034720496225221345663742213024945221368928057427582074944823521795250657870724856902875128434150958998769591964171390242249930718635839012320810776692253122701654193855344446554681146191867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22680832744240867969890109228170838488317345345832566948140540040703452936925293583137984532416015270289638580329877341233295001647225830485398373516726523478284784599605251583897487709763748439588769965103123982432241981026397804866845490271848267630471634122063467108777707519029966917433283907548568350030687535170899810686527421353470984305163080623395033311366048434284370579554504708711290595004276369288253209304101367976164786220893619658705317560760825680005783421007735193065155004805189819911670029572051941028246583176711148482777763082727716528630352301330168135446470200059794468288063039845704255962927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19780197457770013526929468782788826256464742315703560442534069225623175561193509925681658651343915428308523929933441654469176474585155276115211161617950569194258520544891592996969477962366424600254009932896504041340371535541932184543172776256472798716561185723280871081652473861231835092327197301386749787242117427318223934551893591450226350740090553335239004510132236312621368319072181181218129658646413669273274926651419551348830059696743771738941163857229572904390504278805080384048850057326132042584943387096862807465251723743401088458046342609777741825840913711277061243457975258924470485555430265801141800143749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25403448417927124978998831096018317841786238444472603117263666335570015675335218364992957662244595852372504027855630423455092335581843500945666197523508997420113138762731455627264924641393392268879422320143422034421075456786130943342387610314081923525957702974244489839058382889909739649802654858192941158233595040518589992331440911163416976423178345919283948187554322839492743144355363341128812734232508012287448408464212771660401913696798359894408264530562033092173505567468840052509460114776538297511351397560942925155110819995120318903240214325998149940686234225215725545745979063173089343978483447144151743205287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28735992439564995088559443870803666226904974933003804115343258731801211410798771460479104134735775918345653262052180667032255591806204671106243881220896287811714882524782598425006448540574704217330812832227483842710984010944614050610263917298422190401692817805108864271083768934573923495555811874150933570439435622018584427463400138923674513001950681113962921259887494543457428544038555879464369001850140638184687555850282468331633307454688109030435002592468707962942302509855830543308265376871062739837049955438674464851262666681912934102888640391083153148875352985257125925005290460670633577125000785058422589670997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28430807434477394780235780730162522682431267657397208824387102482549397414691366501368444498936033089852967604018726284004271947033871708019599718356132839628719463186956224032995153365976640411933794211647667492982196763046245498752635545128318819347535981764097492950618687403141309040830707045020098559830467163161891846818924636383094931463943802444242810638942949517135339791777146270184475230758595699205521049489478417415839492344165653195304334469351051936794554094456683536242262197172659387754480405850715668005696756540375516730638068893341087003587392176336782156146531137692371002513389777697458959474099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24176048224861931814918840575340222909479816771215081030604241520008495993017400238671837075595679835135064858427428051519940540264628910913461062773484860644636062896242738229984584613687490324494411827704146428253561233516457321995399586716898751826864132142414975444846298202463741108142050696178900624786618057488051410459677497200088214752764390645369765307456559919576031296541610465765381152200380344306104231072074132294111641867943437379812891145693085284325670047564923906033122433611231387489114240437088412861919326938228044307237397078644651403730288878680692200549487914840999928301657145353737241552381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21664643840117648837534785819195324862734788630801741197029253876935347685321477876508656445783097286331525185471322306492572856550250751830872093243607586937060456509276237229265361700836772760500241022317173148702606389608806082630143506700606095192928273552880917339172958128986455622247297964229270816316372041155347208599709837683839783037457306085804064901502700741641757017462754124423768390054336952403101297562098773281098636948241880725481227891924113975190632488338713122127029546836638142223606784891498397713815823907505775971867928075122730637851760266446527985330372405415913866190405724567167788341523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25585266556803428308765671126964763984967759055439929503737370046617218324390695511012414631243283549745793084564930718066259511029488808801097527250555914927585579486084186148279639463505047713910894338186908611803030093527724149943338305624478908713963903243124013177490485713148785722465455212509234808576491841593377703626784645083973216825810846965309380677899777959291013209211396462195658713600596307197894702793153424590340708036393188671963612052253311897451198966663949116909588774833648754887771280292994709661768332310924065987236975488902581110440031018370315816370153026721860037747637260327365608997129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27677342440697039755450246796017832975859307174219986973281699927629860311187325623294376700024064587615686110011175491324244289287759615559690645062745006580741740143457239959505191501325556938079850572188698182956675897190667080502764960640482929947613931311610704386088867754740452354824114733307693622888125819879244054305113509860853955152842074371330624766182268508545668134183793565260638495486205178876666251743365918982938148024702699797768593863050160908657600116953135476680376103803364931643211674364929020637801530319834683748669400240659891644071034376507088495186564831553473242008651365729580201947009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19864265727175005926973776068132883838810827441517680436144275592317464055103070982618762911956912569688586147907508278413755264138638004569595630011136394190665540091778307965543213333891901055497061724351045024573953651031397232146617802276782169207730726932435801884157058774708780929652223491400978048944154165564739144584098561571783071856785974910404859741938783515752736340862559067633173030759511486841468466705308709904775556850525474267766778167079421124294156900286129389318052525685698042848109344574017780895503143588820648412592275221711964423389512155079855280051254959619999255626396134967196742546381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24963285987539556618324514680601291125720868580406105300529837446397345731859496542594928059996546731931518285911193168105841524464674386296929307023546712495337756061175866576385450952699680049522792414887325164598936742653232328679543222251869520855305011205039989745675082484766574906728778903145052984132871085636873951426844490005470376720245727112342797305430133655733019893397108584298651032008206799624798705822031561891926713717566815070989411447216314997548857430164498438634131828279727770785945201488660816985206117329504334661433989223952442758788768289950925778500843470557499412347525858977367555351457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20970827911264294985580343730109775394983838034723468036323518371093085299310725069115221495056216808717499237448993730652649847873978654131316417939096199959105739201807015385220145776339343400331776986619978130043917672937962131581543476489670585266843378902954274589680414772423143496600131023972918079865039685069529656906475299329791896053469587052556625643966586892650750179600336978661854571260863730755466143346166330451955550840328561796254415296793950600897383944860126562887273060362849003445486424062626974677175041269241083426063278755310798889633915836884923098242909816567267844635359047651599990333487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29741802286952878857701326498065325375066291951213451131344545747215077765974994432168859939694154707613383229414895989882521758793784038251847453092773345204935374967057002677222327447261365088702612485238859327872232537715529283587392490490123517525503548907884981954254425965485603865969015896706974382200875021074037185884665568727539943122863984669864474775483450041887268723476953430378707402361425412264200989415819897096683172670910968841928726291078485912460321499039154965158317889944404839173093144393787832489871648142250708207465718509862561913125589941764317632167447980394387748465674608822021650203319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27541770789221953228758026381983755504795020417814734255520580830313702165919136207184473976755742567801244417851558497627141772639462978374052515021490516294913492239197193014956560383942239522733882331984063132190517907488241447941594652501469044884674076138129155069600336821673335492891968289433182864824332230900445067034770579066387266215070191762035615706639602591915062592586166461692596995837613441496527984714598765434523245587568627703979281258502354012290608149108645471683656677611354510095588826716799995691987419963825986243086487096582344067345929248805513888741018849377070271502690537836635154914131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23326103862407974391339089273585288664047869288696258729319355515476643867371089331885482011954777529754920731012411923318683771217259381018460227333882054784866892453826386384100051731327321770048769301872437365943387284372043879898816732137256008485178321906669092549614250096519355614067710363132905018121568461802181893860663516589322550865883703173103647477584849297917619868439723510535199309062792703358516354387252111500752580531018611235945118219728468842406199105218528863933469733582233210584575831613877642205031998311378341484270463256783027601556587637906929306550375540928471731361473205687220097310883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25333157406458091978133170851080095656233109668275396362704315357984124210304647392929333188685975470956055449255152044080206804385892319655427668373770775761706836641713758687223343858840080733471627331085573357105800145793938198937141602580870566127251369426365746395824656263789666823871159466380486769140084110415989967927084080021074581842109887821402899830703381168981972062302859831825468273456954753437681378387591826559541858129015948756484373490076499588048685509803824991204744889694650667706425881892650276650297667816854364958070813087075631781852101684459261979529020919085593169011939517769614086892957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25104793236940217931753750123470791871508399997681363982636345335427005012385381799761392600670300079735777324487429442181785265341253930447702737232915442778696650172536782014008515533542410601189613623035630068438073674981270684712051220991601783656354809653914554985482366527376941105824502889485682690856859869615298297064722224448098538129301122330910133371511223085038593409750895969564717404646562640529932613530342310139069749672752266081189645096972366180533683967847760970497892248911796865648021502787166166445415437152452243298955611469935948552110307063860327971621774404337888205003424451232256050875281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25369962414975996387389186084066279094182687244516647190101211899544797905245984697611942707714132367379299573188549614334225431570092717220086950896706617573842710871656206259372390254095756039304979993854732186738203360101768008335574656616048807465159405778134494334361854138961033018033926284866519034417732325610910255513562684155934265297119372699670001356702812652117892821815798215854382049223132929760101007173041019685804885424937005423373636719472658830944372494707593879085116981087890448920354895083676080196187325346475376776082210207340022069113741210848974877729577490164713194766772193474075030974833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "28742551338575605859259886141506750075598531612658275070456735748746178718695373513702884482055129602002210752463240638696658318660730626566761923950445923856659462673188618526696229862596199678519161008224160602180319114910016321378360638461654128189645417358746308899078826372867959597621877947310960093207311726506127285072411086759932237380398334653655675478904892109018135276426139121941516605432202929641649556273453269343509923115485672414689117708984809370939724957016080253542387409232269819408423917376398177449759979643599948878422967049408111871186214905557185144701562349028955502183205305598426838890623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23801006817668297376747901897843722", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "18730626365480960075603456714165122039486211888004624835092914044381490468385588774877613661138691551338900734226439143031638503372596398799617942970163836541886825186263125389513776665835819864927708698336586029972870581086988309739154606690920423096654496584196105793451373398943456974439179092960781366664160392474621310340831928243548202723627375541911657592566713506413806558824668872148969803168515217468027988287127194503157854905872436589878499386448985128674194613832871589296780263560852078877942149848294983503702629253721980668836295481258425165366727206653852463456399487329411393433098062731559639406991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26949751355580924248836004719813930956942610821152909344536679463339909128835797428542308776430611543278125039312986114236338247539790177847417479785203982262348173654321271936750112416793650384898892667291262816698918564067965939743706594580689018783883453532963179763125633070164692672760876572572972926771222308127343068597428522262987778756953082489503696730291997209815200927811970304647821740926480506869636173808363499476760837679354973042157336167897960266538099691164219814725213435614637959549967711320852162173361348192895353018431467442080896949166580398217305607904430900774197321218827103379916587715547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24470398803668082270529452924092254674324953848949689075400965250055524528212466719070089929501888003795789168882028826505095071193494638759371345759678661694214425773304398435167745184494989144442775327827304805168756748053404125270744293029739582418863751361858624291312220294250788665389484810620519723333628867953804286023248043676415634802766027065817207957122694492875189104668306351604677219861165674259440367295215489166044596852185018034986631435354374252549117380961287886340085819836858948222241056954424287018356244289232866924912996194505369906911632134218494309809778924058692992978702095609737969168161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28355193489983138733374238287550677636241610867091676064613785271539499064989717484326006523491697052791853109988575343101315745669754994672913711121199915678338817846130187247600162880922395749818159842134986207169786149665995410533853051787831989832560295972985141096295316712849778251669183590733932131422679586187470252255769493011598939535109142105350324319645352016011271347356444590932133780485286122807614538577004505981906996538745599689714966529190974883347301499198098272172981344397890101992879209547509213031540835262638037122938922290744003002743020522442131627628869736680424770009404790708120346083249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21356288626657331804280985117293282941985569732971340917459050779092648842377560377171027704107309530159281068445243871778738261397251288149257500538540922057954185985020253116990644169371475055748486927800457323134074832194423489660634103922175093351267775466065154904355725259801895657584909621660677966506692699727683372833743272975115853351721414241044383826645868482426314646786945154845391371264058298445686696791057521898981240893876056436581198803327964436817225788243429962815742935244937130714901145605410241294822331941428819998031439515315690210355321194495093982337246490144270035841293249078826532727497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "20019586546862238876478497532056934841713548129608610231529647472278808950111692936338831485515735278823980267328467428787116843649528315209913130790743308447399199676665518745262237726763725079314440433577069498469844379159617399274235028543281525500919548512138832939867071578994799411447541409525589664066938507681309719593264956267941071294514171985423676236903292464446204912385078130298640226164257175233607796282634830087487660340832792175131015666014035365215050711500376948637336403349008381808316824467446146282428540757410437791423092788299853003018657032448671108284236747362769365744826053065651901319693", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21608681087762470998273171278606871", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23132471228787177584359341093483355", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21524911101815230074509257462617243", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24101402512045835517012299444559291", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "563337968530477446406191915131600660746481333385517258596478621347320836319439890311020537521811288366657003025075076085169890511041739365952586594973652672771311250140250628259668915393090698162300040377091894071917170038574339590768162533947650524214513719873360843111418026387064684993304032302475691696662046297061166249823763141693221355374032253612696846814478282695054472878985910431042731559724782157357436779881224911606319354203677750255503959146211435567129633342050234179989029119911919749797338150592710757425407029274990759075663346077141574585357042757156785229497703783310753299568236961931587013069972431579915656534262041175622198015155533512175666536555340873065692290597142175926286834659049127636344497861249048159474556386794929160490789187833201786059182424759719759837888796559332204280688174539085844921684493845989970226357878189806313708129488567258137157405561181204488829486824984802881080290272102663576320832879868282809121932908295463817293301621841459548817353417549350467900482301020434975913167130491812846552446408100683322590361761870738349767826518117418790041843925355509628406812180915351412646448868086336598380201175828291343013357488195988160276828355096738802200844881114583272696259641327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "668639341638081944190794307737315344420954943358397833820371901516832065662513141313245856801542247075049145259717877614739891550878806608946494698494853742663463000149529447196255397632319978316918006759168186710715929668960935914232848912904585434795946593270811214014808571358219653472129200723142337663327779817532410900258183328570413537754664268465758896014634089275988639358819955961715991016283769952980339732278982202342564056624207244690564898087934838984445204426347627124160773380852644263032470234579957337652198216735061332200029532996246318378171198635292943447935977438440524501811282501794287568058441810754253675347870709451937126101898954398803919793417473608418442347817130504909935098305602890024726794298434772934319690530593431448705343363975171028840046673636689682403598462970702308418572821266066579809146899389738849920973408758536621123624711574853107313545835329001164120787155088638355861091573433188619325394227182711642914718693752136945277522805998825269196263548384426391045200795319036858700660655404204270828120246332113108579924627508806703773081051042886233250320594176112554556818893779242338624804070435442399587202472761488415757748780003484627468879320063567850485264259325522790101912871959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18240841653916517371662498762458005536291287509222834606139507426937502749506206825612563057285557469202135679738979878779789124094432631227227274464973924649413185371791699666229289248440170744331253644526659499150691843211649338238587025235781700660458666378604375915605754975667841583855578584528234392985427341669574995477916613333565646200001571738582954597862368006336512694573501152991478911687676337823915676609627677271210454461868886397352859518089659581952608662466321831043754174370727932600390864114793090994957676414655674526642089594030197177485516442506752892092658507544167351634338994261171016688733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29405129080342095039850304418430812335975184922412908667099482567909389013864648890815628596659926653841327965745838053871363988941303955114499548915669524877842784809412060688180924645358340463325269174670233811389932816350801413208582601462801566886530352471639244564142321502478302584525389873228525297034938905500536804653243323352269631038362523460715163269348491918406271251277407709430078370939750566476679991828455593714523743190849229357130363650496887284872516467823417665164286836813604824832264028219959061946709791574312911887296392325949647226325329076891528415161465220677714225914752387267628742485121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28359320067879063512587832984331365863810485447830727849600364986349933745559574256552704845072430333459329067484552459889671813644814833500885874532036192533662663397875825912418148329468158871685851133388712574812435673236436122341480692234342998807116082743172496922183108453500713386710960237563765659736174115877323960005033799034485193687018821651927286964194646681811267468717442138531377553586369666306263003396265904582138152950408571476533408511098185078939197833686715288903362494072366228459346632160824746514627535023336323143210860320973041976630743234646235677823041675092548083093758126310555121159477", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "29426807115482412170413085207322246975257497092294872550287138946545968908723676967411271280810891799208862842652998182167938690146084345816462136380984014706864187421273251621486008624328611815224990515255097119186919704668006132787851752504044852700491618373976056946651619396695112455058988598575445522552021589874226926651194870457495028562550381781546145762355014724805453254003822796495257329148625886083935781444760029691649559790678800396597996636115458783392998619763954278980277137425898423900794707615745269264518613268514971477912572694780706270514931720888249241755259411953205058354600174100834355753653", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25963197679324877698816703895846824367215877970760462725997244522801076948372272556280155785530139749132694949779187803342153488484735403823017255266840584382606729761494052724846979842484368715561855912667049095378573136820458863290396913853291201640314917235742019333115241909677155141772403514980922163847080170774214847983872955419684188147086021765692706481839995429662733977560433564589993367201984396392548446189889301343729406054920805762231623053519186955637109985913044627089457600838468414488717788454199632074863094598338427058275911259369329789621288453241967069487088522288274528366120092309593319456061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "22440985854889362378604309480061115334256281972673590290651786391880024526179180615769765066368467699736310675275671421319342129719470296810961120855195424661824439356096569482195467382316157213482813569595405495739136799356359999833750698987366370988638442415110325818827046681791032880796226072364260689632189865513764776562875846831844632008744098489898844687621591140180611579745864980558182864501080546945761984977423284813262871351262856465330301489047854519192235790518853724451906949005303497818811092592519672562328597043971991528369128037471789392258700058662366940714522939148482339327362593341386839379581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25163041342863709989596485864147437007049058846187530339827306571631717041536903568867655594976976948541123091072389108198320318964582952973336082657712019289946430237051811401435172905432496278331160942992831102019628845667781196289344737664881602685151979600095033707418324109443817703005999185875431167837031856330842105017779873898290719989406528434187665468525834600397767676660749305957723678867438481349106708224359833010208149499057120577451776040496289003675452853926696592591426826057596063959217863396306833932142284997463250569881222023461615775463840701141480737088368144089772561687018890264939639600479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "24663584649039059106125444817674655241427743490108495723444612848361040406272033458110196862583271924307077220980737953752800833891685911108737634386360094369228560684529808810518960946252513130517287007192311260941406725020898162479748747426323544237586659076233811534063286575357786341863325375070174414266283408797992926908007649875166123725621669521846320222821766403248307353143663668425813059196238576678339781121140262137178708402527207117783791044273874425903593547395703867437039352554374534234106834279066178934515503458084128102775723392142993155973748590973901736628560506344522179610747646365973931644039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20594654906448131603875196675388580011936341274479153137118700336549225670208522774431578956517226195295843017813604721968588597886101759928260546928194978013094173811621075754388366433025407467558094658036352692400577006331635077012015016174388219438639053815119859808084554593157562979822627677567437853519768985296478133161473324105383285906108318113170768572894356978569628702038124780711894630137657852419527644219004611108808984207864278836736816907172567370534631312575275303557669590762385345698802116733192912775946737791815960614277788943129146454879525293180259844958322002935028437726410578742664888883763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "21535043230952947987274596660454512300954210111906038737530170192943148199547305063124299650274978622166405944092996395651090910672675722425525983443689859469796714838472121328173143214640058551540310191032682989438089152046746655873121977885748279257804594950213234072946517790133881270478737175728928256538511602837858109990222129758097927715663523680041996985295551967771526086935749687047850204671569058146335999793069380157244636614544850133132960176888391352278244280408799197289662667251941262154939517544504797916177458393361579025663457680287473585492667969423096840715398699138406229342732341562731921075619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "25209479822303199845758476250710876529208253970325883312649377505428084060794823814037518529789661106823406113835865974676548475174445210962118363594630234212262153097500392299070640093851965566480424190092124253158670201925072909673146136467260665613434000038317717719595649456286546155586342065431364102078641957902669315060110695531152759506821749843012432713700009367907081039672675303751444904915669646412015691920810275584614805557668325737042902836971754215964068380677669311320394450983547857105771854409098095114382329355246982875579449716506228708235747514954913538628605603853541746827431325282889080394911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "23556048626433588360433468132847098501221952226551196417067949582115152318833246120623807684223077991050189280203621116249378936882488054195648897740306751152814561342404475938473660406739974193569258884638381329447491390246169072334514977127002277112872463786907146326114206647230538089990081608452294216843122329612810783575902603504951059149663356062453596173645302142016123527867601938878378539133789586980378967261435667061595227688560857649412683158971715769005393287117870024899957507464533491878619815311251480912286052556952988938733357944982408425548717992509342680176146808556063955639198558519611900322841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25700138993882181120868237301895040977349401883918845533875686629429957520427926520257194328405553894432766047622787386963536229447422734535829102071770134788164685408455279471760972085344829495825562473436135828018295199225259098920115830646126852551328192966732827356529818493769325610794997659590898103160635853937088451844445372012302762036920783497391237790307885809177139431721175212448348604246831237783590503244774181216789738223616495451475860101129797115337091855496550556509078166498920260633294152038263743591074401552704920750975593504278195776270021282812421403851682640456751241578334916443533681400699", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22161580978414252332809397174551225980677691218346081007924214409366983212199927060920958296590822278118730160796976399833517878958929087253506237017035499508607367646181321039895895857259353990245508857861537259087539899252867671541105221386813914680272994236491843228460438688069916147229836177807447625161416324284525156589758907737925490904136307509803180602803552517283793397384117382250395299953148802683416703136343926676070990907489126990981415401538360274397010832656703978647312552697634852663214227836922530194051907350960147308870021469401281775781840308639035893582198570065880118919750912205529877600443", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29463041967401848061536103176705971746069327912280665340769597934188181419797834000479964422584980420999943202583347464330087161136493371907602210114761145074439894927911731666522760846671473931202887821501889732983478911823785509575953542041095402661866161873892278725924671939931354393242443618031171658379736194143572038691353890323273539512734595507582511388604237296106110320193554595878748906075002917252240730481822778419568660169220852333594156976332858649803020578343080831570628936635028585666766536492046977541062513157343320781141498687642583776089115479769946914226803125206599080676296266576909158467351", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28714846690686168913516530941376310985174730104132268746371462263155688090930516920156991855903089174837709849200334152892895131029619354527694095748210943529060965878843722410577846160887711987093892539567732514655370980820382256486740229954300225347557654017405444574562555428480914148229723400346725625900905563669611583974858687921086575857975256049376550501779232482917383080940006277686878055545096675402419537526931206496958173835955778277690029338811120026729708052397242974474917687505133604636990853112602782859126111507401991201839164518159601601335477883327340495687336832763915599492942690227441560694203", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24508572588958011267266713315714649619927900751878825198176135812339162821099592592564916961540399140143603209794364611817115097643021220353953304082179768485442663738775368267358248037399755516364215052490447780333306368222542358650453017224675581000916954492184239499147709321029997540270930573551559272821786435182270174750977952791827626243502042078969736516899465526438356335875454615937627397083876357306887373062991996341850504326369601950011552714123842960302128992515577307711280642504984482429817195855421811944994118873923817448861284494035736256351854145528859280889885937711006542369770027795674547943021", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22535702798540647399894896689409231178823356779723514469471821492134581272752973368834796351259983880212249714831462049898308676125334439887469474474468844914215825480253191876020392181988478735879092002942845309082478320146033233510830934717299353653419993425683768887451558572948010791483358602152119991913734213398660027531072611571793355952202258358833629566167002020993841602192152137560795739980497143769226077092865538219528123717719600676320513655415942483497569083212267674015697373723105197357745745094580997569348946648471362770164276579960795433019143217504056478852271165928367614630026337319114592908577", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22969058406824100838154854072336434871386589496109050862780592878658245446548019172561962389336355507293347477798015047905216538337685940647651451379091217909118711575776029785792538707543090413617784984284243929340713980680258141812752651386170408383362095663906632299320650621749107523795892472064327775898950624370188044577669978376262980162149744159518440107407898548998515213971238164609961980056970915935025492571102665243720387192718258423916037153213522671670952017942477545696956143732273008835163401649901473206525570082815632823828583527777439903434157101044590731827357042411254162741020336887322179707369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26000430873511738124555508653300992957086574122626276520053014266657045407945935864346074209992962404826939165746770321419663029182184770629026996643888760631665635584115415225832113601705701194867762535485315892810285078359918596159082748936074770547407919170919682212928842882764924981190845049781353746206697398151595570545468148447087786819226264588754909353060221362254161234702677594022481220127004741386536055184126053159611577476561088535788656247164768445893228528056955372238116509742801843133072373725610419598982193168599802556246855366752621624366630876634142316422174986455208411914447705758187169956807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22986766475196521244341533470365593686104761811712928018286025676647614431274431340468539410442394784878029499982023682294619169404350482658150470912465439889746907449533167082533289473471513959082676515797058790690079439349170579042375002468697336430746455600393331250426542884030004229415472526336426603321290055069542626290260622112780562564747235193870044682815963940148060870406234688672610509830622336289073146257328202532937768824673121708933642645797647239325845522448073075221734735530299633973113548456847945254737986897610143972679667455615719998055503582350874712182052510461795739216589332123625516103179", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24335287417150048883596927086392518361454564037272757174619454884523039606341583023083525961242205996579567276439377603634574916636814955500840561167001461840945216989073373358475051730606604809135131880582428698337116022189877773678710480512507954110060725658683710973704016255559462783628800351910870281741918620079226740137420286861946578290468568664511897010256305883141153957902257975039014976897365091687419320950196461505488856867993147236099439726260015906208572856183492405796557500271374608539096830985131956682273652152481938541184529183332707137113139343107184093425144175384669613540007281368765150645581", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "778498845628746288862629520972925583986655225982201818027353991169869091416751321616520494311057758759701215671037676081806387449602188721343699471146890305226292614493320691652712199890659781578947561198421290514677561644157799187417155452608969433814442729678474068503712415760522996358598099506265855692889437977851364413568448796461839837750923955247181267102500785021635442677838489772393535368883839303241497755636539487560807217742652262301599950210043588004910112824825874759291566352764713823308058775486228678358763254797625153215032634970444664686782588659207715226105065349962797769780941428084606073765057159080441302884464861867206800349918122513799872703040785208555514819757313406630997493735993376124886925749745365823142494965697584462778668558074005273041911917654337277817457678356038855575285295621726884238986340414371160618994129343730024027438384615495219309088432811579010792998324220554805571142993513000294445905143407967304590738395990855025015334418373814937067742808992101110715104759938203097919207420659209756516048948973602119798197093455368258160300209241207530973379398164386432713199609424470610708455124304069569899844630293488288401668885563376363233106850186637547681372867068670104631701803607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "29926881933188017473234238154358356506577671761003105024381108304196377418728141361984222604640511631341525889350996346094831418314687904285332456258364618915401518647904113601377389766387873791127349690444296123538957356455244666608625843664890087639624785061786595617053193584044380144396765790869303765017271472195771684112988011785090078135049160565289554831508116944911116712664614485608738885976868197510315507733181928858538070428512403961174942950885534094822249541831210917655816364951774143953054242959733347186545777597657583545294814840407524181950384057123398307718041580635169352157720341356011137270311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25538020001807464838834989532143464135898462062290393183822779100761742531293692769018615707367130029655449982242845079358407530587025393245533533610274486509261879834806571790801155063089279891033487205347652411602547064570281100918738601434248097376436663069112037590398760401815446013353069909570991399509242782381606663982597881110896882064581160319834598565756884684441770493856848695727596493608561761865284590142034223480734391315387185105430128246276291887431330588356476258650653093488072574153110864251935299596809491704314326194440816370521164620421869209396737874008601681093468874042116656370097541120503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "25962156537552560271993455277039746397801542526195151749134872058851743376443122397061563478806084376771143790801209783266054471219190464687093030786595393634974288528767182254295378022307952959843163125596203335193771609138786425443580065762646280991301780403643302186054162514334237764220580444031085821796337124763292665964832041627696679737374895333717603375121353123396058873512360595520068676523556848030078355435290002607276536221662075401139929888494932470368589493708551661195749444598397899219944075570916587608527009362905359124740269575866199366684530515830230432769854516427688255951703406444261034373093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "23012331031384511318449127659864344892435166585497304135984324537074751079494876660627908329544593994422704763601800655655229180081960174528165984215586086915151967544019320454739644665926263626543973965858081974279761552257080151446830390562014993314218121922654419465137015854223875871077796027151139269501509955191709932169815646738636093944283209092062244730459729480345656946215442393016832315527034170754565736643736109207782902925027897085014453427043197548120976620744111639248854655815839408543164486566176526273445738975700137077885246011917255949672162122016607135508617577239313201415423574281468005038101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23020288477096802899661197044017555", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21319938080233170881702837749948841", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21490603207006005281975726237829735", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22285775731699782708384247632447203", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22912300313428681115217788416666132", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24425226839329004797639551294988087", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24467747501741185513936134586416961", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21994407121218657961299791621719590", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21109667197653570384473731095031263", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25520949594494936488966972506889082", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23707446211359056143384902116444498", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22275681384537430108872329997420627", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21236301135545074938693969533972518", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21631159925080337045968201552850252", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25532869464826001863171449240484058", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24853499249064254408262251656519985", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22985264132518359367258375917434075", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25795921185672321118766008345977702", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22624691397482597569759603678399029", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23436358129385574832512230364363701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23854369363401757609893020636745109", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21480146833746607930175942928826925", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25710524988357687384907538242078845", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21348457210683101890697338080852561", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22697362223242662798895461915695801", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24485577395547395671095500548128196", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22371786479450728893584264881508173", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23806905416043657765835729228321255", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24492440755372620620587055918971176", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21617948124127209950290465765606601", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21782045245575357866125030515534625", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20993044813866313611521625999802685", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21657212555945860569660197483853547", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23966658525202370184947090474099929", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20912852967669865289070304024363372", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23362514333372348809853483504989499", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22061045249327959454564057745238888", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23678653758355642583449490259985223", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22319313429007113154904303243642656", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21251898201009589689713929406637622", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24027811615517681817659574199381594", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21383844470557869164514605481877437", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24221033126867322557738269111368242", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25766530918743173078717468985972418", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24145643192271009979406033383567607", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21019838230502681615955064934237166", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24727355176956961026985231814571000", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21790683126320957301522817292008470", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22721330915878530049702644040127239", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24865465770499180455333044329620062", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25478197318324216794855163011434153", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22234850404453622626458662710092955", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17752293096787832871624460938598762656545742356949277773424068022749093047266363576030812094820230439897397112458132552034635907489817140779624372504628561789291678809778259079039742097682541862243613533741492064369276415220419638755835051004632349760296631964497504797188408305195932560821628646209713401970285864706439503604696627305897928943767379179652000996036298906483126015317933546104387234354844039566332516421655254187039262309284695252837330250665480236528404689205364084242239523362811414278817071516192828725416377284440941206385021367628705287892723050685682074567090808330850686602276822709495821112997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17465455148816674597784152823010251239118826985320067646876193789410822060790419410283756864660615901361430546777886015381011729149912692503447896689820340131889664655880272725691823596990733981930282508088784475422956350544306351650958622998143244086379367788781192842254940394072122563910634118832033457124954231032177102518879383800538610342671061894772773762111789526649425785088986373909919872679575629574780020238869316434821818389908744587789955104459131380254007261980158432985619734808523399354445441854331996429760626519516545842125850538214468327365691879067800185260193733425523284006633793395227388582537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18355957465559676049804913440136728873501180864519141758378852115390690811323582795652344878287376999466936325382619593421551513170027582661205195797775429300223501396443883024285087342207380469058268529383008503608769060638821687223162743180483744048533906625123685797766047275585236630303718780228269309302644722974540140202963244404785038979676566278654101353559422721042913863222903726675105265617811814606309979307515830390119424523448002563988674264630345505710276989542580566810064898394397628731244247994405795269732682344978027128128513081693917028306931001481659477435623561388598253183968748016440198874817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19269731537698509593164109494128617966888478500067830021032829611826065221107997648814360891267531991738025996207950664910421551239993001612638983977298319363315082305449274166304140791219223603476526670558760608554358154236877930827919037889342195886106360713105661133566913036160505421850401283292416436099917440510200688498083953202712141560483931022370313020057862099377443011126806932469978028762673564355784733443462902857419866224572713255637880873276979115707871671965582129434000002823997157342343324097483981679625836858678883822321427163503291775708808377436009139517696261521980833326452381634034390338133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18839075324782030880670048856469013014453988760164592278295023964045470167546454780815209167680237157869901871602587695622277522401662062080304648991841304920145044497866951463126416032510687724372504501271296537869305598573443256954088787912903752955403569229881739775167413191536553507734977224129830112335934576845066082461702931463683090156615420586681939331783855405819323411780063188832848623076939889617173264854699877857610399195851278548508986648698047912224144076891977894629744951441234498760689337866106652030203621276135857659415082602107016825913745278276251734405447250760153207704410052792434327866173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17945210895016378373090959711159632239244915454481977209004063517618949862192000129906317576630553370637454699963153945753545915517618188294712608852806085840974526195650865309876660234403796698350911563816097376788266089943943058751724709863582624791570169592182135018170044438689256613694831911100573716522159218058371778548766454412601694164301442786366804491141902390453137594536203539137448030176036626401072776542129617375098459797653315577500289252149727001941861021983047770150235900568532693792446098619576690155805026067752193831310177887048201254588133523298825565297390880548107994867943690037676588257221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18643961612713178479025012787140293444645824741147597775405770190991522132993375999102350478343909942799829345775830582781181817322207604474569341524817962762969864655654307407033365937862490360293910666111363851105153262018896726729219480629441759123554931129616734013386749497129557088003206332793737237710218194995894941191855241112151352251737694791489903491735916234556135167604646763235397721228140878439959379343441443163016256555523229160610809958968090599612873454144456197970781767690246032696176923578789364362143584329799372419749759745773656666669155753848248278058443870801823692000331657621238267253993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18456665758704236586046046601988815255275373969195995314764306949950461878476685091077235562586469047062432792893949473754509805341150569653558417476230679918428362434387051927097956504637882202443627377526595036172591984021372590523976293323227387469565747659203883815892186305106797404772169817032458444064824783552650178684339565831136797196650675672853116426715061550436650931311031869404725384636689334111432928265617308371450891310950712088158745163032637885129287154455438144814045918702589948320989364377501120634318972173090882664628246709262607231650277079189596502206795905779331274358431725721281810766137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17544928352563637683207913115519905168992114483159735495583727783220209765388288099778087764242450927178662415820208493559156034019038707069485408974449498552098897373284923863607073584303195139685813174908143648108477586893654252054709996700420415433205805425655656860491875694785154920565981116335390015216912076554900933552556944297899200796968946258816353236263501887442033279507334179292781155071088815425109251322213703529496548495725595742598436881778769541334803879496950535466962246058133311480225909284792951210361145003432007231248174332647324929908662123816858921197189591282161964948524722093614284187529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17665556093847169867741703974400743494617989531702310419414800306518723164372376796187541539171605561831347093422773183620039710281210745888900670182364319090706539151947276627803878934028375712396337771739468447307723384057925470501358857397418490090625694399590137437064079546073498983489618419802451002372485673691245770555338605068471971848150116223429886782909879853426795996789500579765806104979681385795218170506724073293054694534103165858154898940568381923737156296825664611620042576474909500777424381376889417889418927286403391787263238521772429637739959756503251781758440297257037387263378228269240897574321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17721201190729348014182155121668468863198318258313997388426929315513076434963507917821501688319668367160628991241663676501944214589937829813521556553374042031018584760152237299747937865192677270721982030568041999680205120081581660850145430898573022617628111783491635935050479197683537210822354810242935263177791479232669815669161421384359134631447629385933300726023788446142608498239337631327702528237646557982875743658175539787256143615607456996905449108906448468680005994999658509244652142548550260242305481997527353537553469758611451655169623016696772435952989155595560724293325130458423056897264919054488448199373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17908715711200186554388652044211059040567693949505020397346472937456262976281821599394004885022660212034926933552654004762517284109652929545144409283732639450832394263125999287574672213854259405462900309797414273477602479343643086054841623252308777607966365980357411131083975014365727586293256655088319003517403078698890557709267158401469609899540167487364849812979835822681872175935179717652769577289757716668772664127236120592407308542866815778395778897203474760329437499558242395442765362143860677734103850419165051155452394087184966921009527508697494070429645014476713718714604163912492962462205691649476874802161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19723799774892542205773662165454176717445840864748812254742566412884112565549716886173727315075015233504669116372491106402877586762641751648855609346993399808893933796175040541384751666248612229418488303735056318158836116227796400305144655483823962602481589133688305339218017154960331009435286629340296168011810370880750007473554861904521700149765705692393386383058850717521565838145294761783451362841956088646430866724185584993470790329727330728231141159166096521793670987472564374501181400655897801532628826152940903707969778545920729608096989082539597093018783128217207922070175326038035726161376639951053654775389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18496520728449871931923664952599037951478603852944754890282637274555464375096298491984034586547295765737592718972328888962483496951481345739995071072611387363728523290306122072783315989189686614377334609089437543369666117354920238928359745612892297622719033942444162893973778664361857583471619159700329628156041407853532472335306612855104578142952423852162070508538599130509764823965152603547576918943997685979304347213959387082052747083420859461115738991611463339279718240933791185322761136237916666212820433058297677743089449567378330287407697086208925693919323694043014365664010756041917062322352773989519460711833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17118140723644157503264923767446473119086170435284780577971087708406450200565852158956118558251609162082502420045448635539437896516809857341221592324001540674222638622421900912240256682148876085678315805916277762536823174336450383035832193624745258501957611496856930235442745380805383067791942542505037042930310067018794724261019144563981369150744995120927104147545122126400226441134493724742065146948047419173090114806495861765143909050798109353365704678103309352765295890429750873148198587760553897539897675823239969569587133557890486825527991504952166887192258980757865096787324956743642625354677784062938969261741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18021863638520275238888398595231850677757146053943270780488200922460598989731394483821544702603729788653308266428629193414746927048033058692500147891237788833435200612806652927717733307189537759930323169169710012081629065682775542563352151491375204971119439465943923938526424105011837755650903021324675201162135827392551249121744580325202571534150884681040238325368725569636240717672446604117002869810975782666134261441219774330738684612224854999510963094237839885302998339939433833541682152387824801780521039391985007939791475576810206639883680648022174059511842303196892124593315008131248296260661260956395865016677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17736881373152068003195846690833073311038095488727888848264593437509832829559111757514862480936541565368841638565661771642692205070529236983333796340931020170592208321330437776793189964657003826275719153785185328076290854951799678722094321649755913872832012359690465917054443405419655391692346512603922386529057844190605615083170762995862951248178266482864497831200522854484445505823507340311015103126616074199991495655098786373189466624768525509156653206037613325652596667175738935311393707220101220626868607526211218538399166321814540286970675393678202148256728506725400164516552140437398789807724515532834450389261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19743845675867988690366455010734414027951428692256977134557901964180877937355051758992440441729186347490704961208083801148694183566636055271543042939588242314159014003924342434302563840002441565476257097741224238329440966107627126965757985399873689028991040354023010676028780148873646947326858766936028083445477605452751778482826641599371520523460648035792345532481933865621488889904721209040183357315249542864307553883760154969182588881440572562040219122898664547413204803103420256271738199433864419399827070808745029872012854597639967192190012195613574909908255572946298871411244385124048922527743279833694130920861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18436317488279676141695651734161837723811172859768865863348898443750058629143100363606943690491407575364763172763499554221138232513020960614605869143896755916791216178363262989701423948265874732037187103122720409833345601632491457114018933427778919517339518537772425439991556180352603661565614857856083042295902160499161891595796941842390409965124478938385111849647502217093183076611400532376094507429121065058669671132854645922194104745323378599411727230242490804675572425142850450264174717125869918833327115216224942726196839483511320840932362410567829694130996368283612402985635942463928159577476656940395805244521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18164329874139531292648295934910742925841836363643257213876529177941997136227674146103501636952159718126823950852113778681329622742158900984087268579150868440294121345515976562778922843328912814594032132083171132873527354255081271844437999389819343543925290195870140114687779646785154424401527366000222084080059295516877560049672878308158383219742392866626000527283759595348538413080484165133491185532593076701130216741920380355463710405697798856594053228163357169151278168364122139470561246997363333993986577717647788272178504718072506690446403069431677539653505980031698703641111632449266876506547862205136245981057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18628449472449133922899366105231232265956963635083390901605108571975429721249257436137571670020648853860275038048767304822409941471746809616054177219843216969204453797956702067932101495552114489638006959233111925107361929084789982024246588571444443604809671225125450851876233522850113490110995074844949349358719786922259688222627414209820063038062273570509134264759870078860960137588711668344052539662117566345328346484131387808309766403414022910175794093451117175458194617843600382655077961213442177001063863904172934258186116215954720439449200670972252194457174814897516039871963407143533601890319358336447260873901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18826294233008166416395424310466196336267881007056120476609299199880284869308177675645109129540508503202982659300101317015353716018827685818695560468097156614505912951947364969925221809924315209561874148504235649404359303774439399529368170931392713567603423336749016878771802871262822217423413596231092505675869160497509422134122367224025072737960384760813267695333816644424062987520343806988088211415500444248933929926505357604133093788360417266789965185357214213880850693067784085435895439544348294793213614662127799900944765975834113556507619303732092227658280440380714828020869671429443438966321501327914093137729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18746588856735321587836087313261382229805118559550675550529207569224792854586610201388009167432730800703635961744853650526117705667959685777637482621505508336066922294958999320532563577034541313494378055809555632834646085588468545823273695888059611303150448686805509086956944825780875336871670288554748441559794383381054213469372353282567209726554265234191390916985205712841195382819085529216817641221806080573378209622871761537305081834940253113724364430068739383988973368742108099927885129161061176160042873023940343535258900457951319911842462337688326149341632297654092545310807736942620507724103377429871741764573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18300927001979633979891166554819526988966602749940449929207278339547581040305629703298708591887921937752953065806500549279438164562243395130023143540788661115607455525964447541220669161038379711192491015893471263361102333142268680315492291368594920954771705791479225436233502470973375199663799775985897049369641266855033658803724412920555472404617791953215498192523376937101751153728894467063065482605967768948041730031873168839733328092851931527542751224327779504437525967882843943463683647307318950877905413562718277519597359007788087193586406799778455570340643012979439914024792528735478454240056324050301364057157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19057685034732894086048152765943413544742991983534402903514176093785593826134031415620425723534375007493447488567769821379140699548719380790107877770756644685161489324097982260033667067196490604686107909053264864843814347094430201303255452354933050940909939657907978545360072044976126456459095295899019003923269834231097382703461569670362728242639148370673718233249213518493188440897673223872484212710849207589688066433670984687165053644522621224477470560915183750201454559501981236976973821365127711558757179756956671576736078108010346590986855457170982612611493657647953389648687497237734181170377167974468744653909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17413197450088242320586350267596494250608533616031129524147337398540260163587718178663131915605295831130865525916661482931664602260167863692808316122015353602714327584983847613961467713089737435941053133295544164307896624009363300701740796289117381155670583714061434539110074900102026271015021676917456056462853482492216356259287087805467349091535035365270688457037809722066957509584824657786930603720799066970983284764745531415258468590014323981852964614214947020894893122805743941145589269725768591787419958234969268741551918954689621347961276141122392601018886232869835151577760997871127950115739539475479710204329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18345373637411988451259035613061028347429013872722775520551345510376683394860760748117352818528472501972939893102181143255747539334905298448252335412581351208841144474358118384280168689380470945636260611034280686138894299085889063699439277388982152935169228660733130467097572929174233958302249645579844329297036916343242022305252114466710407657413151886218828044500507411472998100244452155189598979561358190403147897208026427822197985437360536706194091188748442909961141100835243634565101229654532720116122305084037882819790144692421435075140428393597845051668598225869279132636204366152273923202551547793586574747249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18733234000917404022108958554217085295172847743026727754404750226353508637611685094094090421185564151930086027280674448178585946612303540181715669440069324256275708882517167400786909083083000720495640563179615306253880156221061333643101471139565858925009518022507457787727723061500238226502600139628823794391721862533756076601661459996956558367660039447477897556507952636229772158480612394614216474850723601446167222188549722318141283090713165452802379372677516208724039405514891393119052050714850181128863374676365966089287628119237912650743489184810236518417288735205139778160877474037741978917041329401607767138961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17916598191404696789993735178571658986547747912352923840419129530347120344760266737998816660578887049656706273525986573648398543531474269153936031087013504474140463469269480839329683438307522015845984159580341949138725149561532520053807402485092935398306090065406488917212665764015880923840630815477221441746293446234574622614444669289458999560261399211462326042633304420496019159721502034075810510342660619714352823399442132312215164145049764271058739774939684691917319013480660534638086384419698028871576870650655234956579536304986490803400570082194675629353879278653584564901612263402789478322450435051598834613273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17389354114965146645255991294708224999691656664144120797601964139784403528254157750233842654302974291246573794024606517363382475176802751089796814727517628784283652647211556078958137210288180083288754624207672386435322571251864883831870881861125769538988514977559010987246353492695419241139300120049217129731079341342484415474762839323837783762575806562345337438297091468324504122348213634084010924532025274287450967444403968204176425861616538294915728851207786867080940579038099382244666279604226875950145114301417167437696645165496711607946188211827934082468992960722761491146015124449993561166976374019051602687897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18288321967932245439953983147770639292607361529281000161382651499689481200251611210157821986588523735202665000987521782124307388027078103259500171728206796950365123817713636855628629553321965535380391446583238139563706665851076844316301320475719791406777690361631048306494776288462177588639127606849192239388860300641140830134996446875025819524646448378580240052002264005114690266060138390892582115471138578267461357888729878854985282473151994211365425782006919636520017085254095028052822131864955209142472147010726013891694031286924487894108133681445198755121450406722149011725522020209045286192141904649658792696297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17307491098273498695278125874501233691843286464912931453740409464054656555862329948992894925429680633532330206280822576128748761975990195923589459322233926501975424525329178206271409088018547760784914395679395580943243465184522640600968847506179798687846535447954821094368660535528643717880348596555343415172037954212804112631775080264733232870010820844437605527021236425825618608201735023982047146861671460443670650340786875619295041296199164793497498524989656427673287583845264236914732031687848251970737211866310385676229783934319101384903605274944909291006606402216116702308971718132993206818937947299737571271301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18717541812492716756315414354808688822932760017679573876107108322036204668066511347766229836960130340248709420177154225127617998154935655297646195149137870518492782569200188373526328154198610091114752800562976291805572351533689326064500165461385299779892856614005479100050694687842231725506578736392899374818131692236300886133519191603556161825033694590895742441134069495705197001392391491354855821076308668634490265242191015336031603632960034869703828681100610118057060120756242377735989899825300730636768024548152000274794843761113650711633780940762806609366962590046444637181878441461754168622828994680737976956677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18491750640886813844998984364389105376251640178392680269962953540841836163454668901811011842973256655203980795923877397105844380303400047953537542310749357083458292187067736352672091534889639150790786126702095975640875879251052400465153095167690220961373433396907046275744274251619448131866723237621307256929217968090060543834945648609078735372118111799918906861933760205497120927708299424943157122008645921924487801827203630575096343231582248023096678000075418800385534007445061280057219472153122857267561500938768588537381019481550010546232785003815574919551070953972419837981759441994432522398100282736357526361557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19359572161968196495994004898267628784360863470621336841568930031629553889108802286673313870124157474702150085898096585042059212030578088711852810478325601030009913949647733083508277408217661570599946429470820447809682876547338679267297488257295872964067420332712847663756026012676684452814404473216235439288017523673157680395385718144714281687589505091963799530827600129566067549792159141706861075307688966280884304087617534596792940399433021420783369723953926237709682493088627233468563643066666766212618838742679041189756046668484977038415427449297190513597449509796574258786485753200753293993290835304764976248497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17174196586348685659400551523690361861263398594983088141386979315013358473862276362941133496500834017645401553041331927868746390840915009640388422628929311026182920345881424425008840149519697324750041348548079428562069847713746790821839275779224795782110670946363784336931975257716232752147419439037682584307061049026394804658529375785396261304542826264151796859534126645720696745504521368909605825574128071433530573477668060891901575889154795503460926946386542760036939850168779119156502619795832434309860654216457043328331492585377817635757274135568569156890914761921263950725773511798689207301017455041923974877569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18765829062298954059413222526716643246120077518678408465510937006059818990237295569158331665030120406069123622767495707336104268279446256412564473010632162521322793185654673264952021834747818258968695960440166996897081694619378192549678458052012835670621752010383939792342845236256937227204836932979916593302507028220972994758354879226005746142510364798020799477245702127415398375041778130645438926673655202518801575499562257283125499625806113223673344084211203930589232653280401536120148310798853168693482781597375948941445067425494725983278089728576929889742431222381719332594407950340112092360724394925440961343221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19310673882131361220105771066701429902239337957092223187020491262286642343356309459412677831717203619583047113806318308511793574079537693505191633683640593816716017351331660476313261746597957229893935141989185079764365856032558693484882611164085242353128671426902907239442180286908304765581254248874201658632747710417706347699385183857088612816519107441942771728190506334621096196794569204594135522440236674094926097913895733428620941084762881455495546498452589608469976068139979338048981491260330295749898164080429002797217811287883305367094919691531582426626612121950291831420609882728234773876195866812469846278649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18673561905334008301444024103928076181526733311803162881593554940862496698410309351099366473685102224797277647183683605784148328934369770975834057231057065887213297250931025432095062682074663375755771130098991632008286687723127238783259493520720601834939384002975088318202312752151756721238301313396405553295776220705486290689156342009807466970567871634816431246972257558389968780446593825777929582177328940121765154935402714261987856197269372071504911630854223128317873197755340751441045710419956041637602445462841389365309587073042781274935589551226224758714868895189530721343998170960658396613180141918863023168457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17131151955251043022386269649475967767028191016586479570994723010583642211618251908590144127552560012994317472439361146893342601171414404854907910081396169965676467001193042264324614066163013131805723378551475779511656651238237393217127954572694527443259387887953627701436733289469479605336752057205209434571574045998014042243587641259828886653500631136182896638579201015304187487333297069033766581055753843428757987127101971370473008050078878793481257625010317765443728609838958067105927418018164100255180098323000232605049282270363992438874809354931244656118521335424606823385539663299355788950125617732216004306313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18409004975545112611428000835479508878557428093067395394228739912367801070792746164306753167994808763451916908539306664648085143544545208415323022529578450279831872669062568937506810632294803817583695084681810486387425914406017987146979351685671796044417575296795353985334102308066842431531297385968496330191355225970759705139406933970641243871255215166119294716576114907666076865718341275439351654480226059720997574231459961374294314454851552508375960423743918839088221020394130052302114540713592624668874817952523526600536476772537895929536830288324691918087915857491258794213718108464116649318721808897982488518357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18297102096241755373961592321849390229185748529476915575747712099638305376712202747397039776942991614439138073592362882028718449808565340515575087762474043893256289478737954534664860866123905825380581774178346888830203704489133536014693221179350870249597422552792254996666135761307032010644036084945327480089079139052487301214389090496405673697590094122952593595758194829938208311096029015235741912746961922205331529112577911505870836234530924078079727740790576927739343177020368423392395030359775266671606704573254208143415426096043212066495611198572198369806713307848978323215616227504234780499969229414722708040909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18077143772974217581496227860756890464010249817028563078696943741774032919043485959605229297896481732198726244381421187503458690221390148129156492134969855996227169603415333443349720464294384596686660252977175566811229664849973133812832196471688094814648657169721090113021851697038609230560045986986162769207688233706387620189732041623627657289357015403122473562590394047872203800164168578877075400026982442054797071461007554299171906918790880778080262175352696330723281692690081723343787127267208257086202212314012155645201888604481944224556501160262932977388166655645044644442060580709039001186957158204502926199549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18584370023522985423109979458596644927603843747510830829143369126420953317813413778034601209323729058774134015367548855575722669847100762843460394829022460612343919503362386669803606767725546166477139118046545947641338700193292682116995143464333857663063528371444117727348423113962927037207128647514360765043451635199441633017857485309514269439080093309836942987469033904983440193020680236492928675475344966986608054412543080042676713004589933161067031834161852195984359971922734802854793751263314415935004319492580275808067483427217960101729310504840772667974618163517232639184368466193964753913048169919758965556661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17624203561309771733722278371649775516360882405778221215246747845912290345641970681925250593138208824281497010172542978629676038686534162834364764924581895080507731341140078108014315628974550184446954385986027386575709194614282203291674761403743678801369581117201720265508103155039176465902836454811972543766409487686904555344927552441748392173714665063771561195624276182940597087821417079036589204353592339157046664140456432294527244916701438772861768270767136534550076767203955632763964373345541136333897442827695600332292491338800388952921258395747590852193142671240146084745563887038405118737745735364172810848469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19192284175348066507118995335556112871281444406638044424262255583084553701582346532486270149221524909579324679831006095323478284744660576937547032118288003475692439321360462529619034946279893685602913870309899181759303118937839344815746616807599059510423029306775754322414942623569463301172876230818303958561236719374366854124787272013345476471794624835855851822768689567967490497377728475159688512772381430248121996419009456613386269522113600278950294134468075185105978934852557431576674709689921964873116217730551261703057177120341623792682705456775611270561621638508921780309584523760302329648509834343601542231749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19197467519174717516931551162383941262365013929854973201302575904370063869380088587841616243891309229864910474847507319905506677131928933209025944115845546124714186595974439912842602218340018681364003635186941044487971966504540156792112727789340502140312361270129009447421447719849460394705564469857663082203444543731398600245976712496844706342480333650949096794908527360866858613235286552302368930769652338552212210867735886801894059685078085553020776740630098870841339986847053638999829092073379614686752261580444726738209894901488913396115484409168315821661276950480969886922236370818796245520693889265175672124853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18076782340617851554285850867243930306461912572492045307406383928749128510291808128142096139506896623894659328814789364740566846224436737383694719150822420631966451211864697787082949304677378406663003146085056473599340482181230538011261967168706500576349336623067126770478569437848249515648104797449278794187360145663305796358244174228498089951304711377654034409756928900219914601440401846591113663540625524748271792390689123661172075966180795100899566575714729297585184330410391246519933198935707857746709002760754791778001057609161012716706095661216137252187818398840305226814952344152349794550103169585248808293429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18977055416649161286822026450779120321851374270539804049546907894515415158838079351429918373226796129014488825300726684668721132014412162677212014579655958259116741155378925941957369089392441312438120549255339278114830151058502567064549848109792112076474146063459716435229437186060720500031674391932554490566615951418032454428370345273944438023065182140109867702229717720230800161386504103956429073177319056891772289456308902679820295500419214418707210302250153032702080274281502972497756159598687305917820871275532009815272896166760314269151035621518156934809941110352752593374219037709834475134208546739303273069429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18824694672755814481476129301763343203683046649695792348560846509970434675086808885352002561755978621733424873166466159409221305917702643770841217393413231726218091419870790456359511807343445356308807578497327146750217290207129931667142309282706225206994107607404760835936825995576851360772062567572962756747434543589137664731223803252826331523049977789549298852650375308914661085170809739267042929886075610574852158466920126643397791072417389978451049059086367470449994070694044149033459568327377682801419858218690942017973046658642528789240306729386095664397733594255440977767437566210035030900409866361018365133261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18793323210909910961092738671208879376169400496640637775551499082018129712865211193617024265735628192602274328907423500754081954797079377677859080449935252859350339015884261769936784194048957466010191513905671812623250736977770478406316241199037169333663447936235079045636859453388355995927890960137426641207549176101606325550879606052393964797085811525042430202900505642020211373665140912893647038548762561332954613316828253861607178934162761673133801417782187477991750654095661035522962244979472540810320790108020520864062920653083467057757827207862866714343967034278511782464347978647403012073993902905044441693849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18025668859297753965620463387842493597095547888778726082202767653853563311838421526903789937074361421008137335304790969822495658192556968095194943169320983459356729480522546632059370174928114718885507957363893829768292731095686105346290585467840348136122233031225543954196516872754050960425329878016130639372308625934649898295272190564242575938178897124552109733659390012203160390620702206840178177492871148565402240660057281635807469273908795035343732687132744083724539443231303782145335368946880189041617346769471975128916152690190091002657653990444944570011505344795163646896388761141472781034825010810890067629401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18729515060648721581533646670485521717077721022712341104175882695540470183355540647648511875744797453555524727659755532827590623657657918907752499792455161375984450354092941766879840654396078236480036125113339897531495773069416932119874024259717716815565252039503119483430999620508903092933874007728312198603636930792700902766800780825282934627296934141494199214307030004691173997280448748056208943327175833490991690340672201758288076495904327591547644468695856003227699890823425974932685874562308097049025227405436279552492639589936535358229710233155945420260013068890594287893226585611433259821482079374722227279897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18162559456904248010340955719380123896369732714412089064705721716602138766526358620899523458201587250920175700911306531220156849335486956290685240431805360114318862087066994413985373911498252783600805250078019997390299932797717151849309841812816059221740095174664711411743069667685249970148883104152681125939103984344299671821333910885141466755845657343495298605287320531303522170899107600831429702136145727302486754308963568300679529447158851712764039946608939412928443212354879424295880358718440010518889165620250916251477404762759957884785305065275573899445687525402826232733486558134580157775159169228774667527681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18352465784142426639572340958354312596889937580603932474808879795287158303037579757889557718224237550952071866334582078159051353516915991087805791878209009644978447353150987870469522264884504565086517556414652452588761018824805064745907042005222361232289234498063560689095014475424326486978990185480714029520423967514178732553444488300173100936528610950623089693404769835945344209597958313511926752879119655603372676836645200485768175616042406485872225411844225051014595430037578819500149426280838385347220902562922940016461920939239405998706151158899413021076860445696945756083768748721753046824364317427618565532497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18160309815837750002467719859018284164650312344301468046082911572383369021705095310169559225021501909720881284312316333817498733811002023056081307053268783488869613371469541659482002440277501064604930925449018222975793668734352353924149349752265611730298683795685313304007699320115245328056098230524400964526674300973751147046752721615259502185328126718344178038766494085393369651624045099767405556414551682356884518535700040378866223493217474552372495691140447715256486172149848874056385832698627452230002811097058565073738587478141742449675760590007973808835092214653428660909844934877417858174289521731891332648837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18415657660498632132795742845855526527648958517736038315080533728426158126891470127615113345603957127597310765418419093517404014609185075602992390219521618729666880436485880139228876401022247536421388495651967169751721645248181752024061705065448512470637141271121439513538193485263732230204700880665372488340670317277768462530110338991803537112494300610144856742247061795542149883997883415102985192331492594877587798405589052765055458149421058337940431645650806456722115180282374332907841026035541066278684595486685794595153381800307313089921243025564166253998196878318077277103135226101715896717969821832265956416697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17784297733777580603828230481480016360942330795873029205759540024138338634257766170487227941408643653244203849381118419465767907847151537967326075620537650023475993033810095922420564746350570499814790901149289350486678918843320422527206398321253374231410801570023684310732322289121419463799531098847641528665601804408733930595280996466811229474580613360197190988703927193737313011258960240164097430519062018430980168579771689696782755936702800052985727476776755038341841137139000285780524487217662295407604989060405053148082552644921828866091378421818853223856477018153728392055305049252731814845232399125686630938077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18094580566319884738421059156613471365839353446128772987083562196068320895319920169547050582673438259775573192849977036554520024838239903636102559101429655480627070119150985525610722736396627630561718159125557850063863173105234174909728095213433168871738421329107437898440700114830683985636355216276150241909622109396114699146082996149082177026424824262889298568615980988216890524887328819625480023615332779397446313187330435488484535374383963343141119847857506557774404101946540705112658176089116422121477144451068679270739716613391927261885262222800682815346260293817463244761612404844033721105862148008931486349161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18062802315042336589960507826082024779132448473401485602245463276940925376873732755452254435221150846143634137918100803860241004838962658228228577562662724882570334328887083567517384656562823003740638140391534303808746160826875236645601833041599901791016285131420356021459942176451722581481074487169938690443171521765843889197013591765204511743507095577212472217973388540737348997686495822780162968209566005320778036613921575913017118024080571468246073370881402269604463307647194564790415143660607568923142691481727200622834492315891008320380432879423223023766959852578198124789004042489093966735377213474852468906141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18711817483049883422310809264495808124016394970195322272484160967181001360710030470385963473504315498368317578761973985882092023183422977443493354680728006280344769730505727726947292344862693735191334871805736429525023539318255600028153951091347917552473566278567638459265790956972705565601486534486872279957841214627508776383911904068574330736116872258109585329034196656429768102802839435197416926017579824604544075882687216186779197977867136381415588371733325575246083335010469028765494940844503728538992323257638706310718115496257853260988452112817970309933856876017254679403807323391432286492145072170434134751301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18050299688611684517344278838029605872301304420580695320323238598870215141675525591345034663087640091514012012029172611139675607183246787881822392098180841023369333443904641191240412620481268538835113599933827663192034205728328547341839365175276150578650569704792407034019971854754297101555264924470477310912351447150029442580822541819814445899510585880552912073889455634944867486119341416849366577420302145935860928371381835148011151924574274757504435282681014654862211382554111307857458213309873369766901481248230476514398183369775815996688462546928378824939436665754076823103033193272710628112264742132142130587677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18742571981230902773717684176588934899318894937013422175911414237300255307981640738149735948433213565302643148124300914603612209204361634397387283557414054515275810517516909177073895302098538115116384323795936694524433464427644427734420066602906484871786665434349166144793851758761534704559878488666406072012556514290118702645536713267488715789033569411525321330431771918577238654536723234927922535155390906114498292643992505045627629952832405102293196143993346574045605662641574683342274067594758671015266346200850462548321913339457472613127439079344972923697632029517608159851750156292355449332083617082423203954461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18249468048976305099606782102783490829987423287979914008965335162061210748431992026119167875037068819213217527709713578469858273112803301839670416567899925949504481883349086666772171237362762843225557476658638030522435704199810410509586314199264294296899865092633274683108993839262476989668468571061099659930993632287873338725124401610058663788493784678440658035917433714886341981724240159045862044702265420831068753285528106484944768698195547085470884769402485330249458857716462992619708013239537472415372185017486594302675925166421982417230854879272332981536805037208768206335466175173630928476774764296670951010481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19026960973652614864048006487804409021652819010428461266328580617823347152164492291422990061943502525601532501256024120725239181336097402133660609267258327328552850687606883984933431085265654102625472989236383532095803699060854207247724157517067742597880545227582226995892124713817839669568479635802805087614136506954888185336581880097485761746892232717137022176809084223130717491268268211471167232017256124194103098588009755344647849994725153055293473614707718435476281694799236954363035808009899520537891501685592569261839306825042324079805386755000426188439521247119616973515437103192118056759010270021456999692461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19186630808384669202484064637236438778079638507580643805327391428826045101321038003181823243357184124349463437540321007622300674958910158633269561326259619542759788181022260814886147358676109398523066917529845000960930710013650082751848047007009993724242549498686406669579451725816854030399430424888119570585620374705147964156451635678453270002866859973996781414694233353667910942652796003788997679887633433914629775852425614105949890112530213075999570265697518462441222412662742980314367882497437497582246504485273936575814465247796893055816085533146072786599925010810444778687134679118551575624711472969965448720453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19507383070100483362975707428589149197498878558700637948444300029776253477144369959510520775852355872470673749958453919521931401272798190315831048033137274172747225799001923564626554215602892903042756866082926863182013356398456882788756210070994036525346712532873308638001653298449580893430243581234829569773449280873398869564348075202627848127324896856579554940165162771303002913552808854918937327828850068836790532789407705195132000038768887451952871849793706719806418878400845407484815603981550989492396285976699579961922138705321465594077653212199190568157661328700108462670161793260311885239728237815996274270609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19957086797188068898343292274206306891072379493541028277462124112168823632932089908619601029302930771557792548542643660454298984183029290651600003247588568239728579388827620581941929714889334710236074020125626582504872962555821027858767534354433915568557320270104649620204928100238807686327422172274031017595541635587643847150222026808891964812971784494553298081275619464821269398046728950557225683513642510618495617107214306636744009326670794400469069946946036269363814095385221018233005898218990966504425457216583254016016568179554904995968898254549928452908456934008451245596478220726020990480634213852052248611229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18703167628665389980844966809414490440425868047035100811351704042420891217994091867723480112858632210674681372496650202064718685328635237443521297478637039502574862187409069658267121174145087793606584110651968508825201731415300069182478027551646827928977933102686475101527850257535150309926647151346463921047887602824404716804540950837999363021898349547048465738220868154937305940551756496184856223759001133338823272828049249344166078500960070599025471948510037463981027152184196292165916966038467594449354524902634608185071304166372005914753670243749525562950454115139501999725217447367401312135064426536911972516977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18930748219775381479141921626125171232897520472602155619478573618819386549122975991019995528530876005044836012546334226935630896929238623628101675216968543599040702868138439221802821707510198252235396110213178384277440537899462148985348967058700547217103353213610213687843359107511857103679210673397426612096869529537853626895490701473177371701213184004557897655978461698334080841802291081362595142727987790561185853512849924689640940491170064240017872301765941759707392369133601618863807401029718936306205925481664602466435520768888551076716294746853635468782679541424600482287832530835778929474044600451827934044329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18687785668534297213951687119061985116843569553899003200750635258682723871336314810536079012886171241835339652295117559550176626786222959716129100803755772497274365713315392484446694619746370900985040956052565891680129984447884002590320031654784831796642158916295052613386452508162391308064756359806527795184791014449060381155286593968341384070688485378640161087832099318085214640438834181731341079313432199471222843888719177459541471941556546238321301156184713120569044313440846186218339883480286812197792724255639600451363929224921669034134542419791894821549867621886826858878591372677437004540644931444064150187537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18017921968679198488109929805139790166622494188488549110284719494394595351075947938338096276273055155774555848943995574030830567940253559539750970617939904026827220151890455429516913725749139786299142814087969980656908002425654565135926449339662844146437394396029839673268667743703571571827774324466069066713891967294034552474601175936177712946455415020663097756008188199294851615356858148952848324710034043316967242206341387454178818821289106568974720599786502725593108006336733880833950579307509148408820636203715434184633332965962410332663581669658242849336385856106257238451130878212787343220444690793422616990201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18688902188709387284702213842876696366714837768972475206375117615889224297040027606150156865941153569210367480070206194834703065925932249541289174074093994600409517831411503620468901187776722609138741442205219158416757002933504187069764169845109694930581230210123224164449165500040902978047891663474984546247308824399618665148472771078084071886790747288148857934393984461663277653420073467028292291563887938748492860988399487404019906987731464245786958434394350066586343544450193375196377323999932845082265686182814848085997343700029528220363398488419316152956586173977538755131328340920392311531246613787373102938421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17110421554868577899596872981381143898493650654537678129940303827334686067239271753500672941339915651841402519566417016397565587605849501658629256304819400071137191340773584698569492030104939426443451964235133563042013177237656066302849946137522991619682722411507480820864406308715240185265950437098629039891395380083723698379063261183517604309697722964723627890487387941326348866250288434403647103691226535503127558962079226399040087990376146108961684962001507299656174419967086846741566674021979852843108301078128066386087362890954588159170456739297789868591321129534428756006360559686970606663610904572475319441517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18992654863983041904344086965592439348291904600507868978693540351637600097963100179429353344635776651174957627376105102025183096145603762505174733915914577383327599809445773131800329740489029990761786414342249130648124909331781777217595847128036973558911669237419145983536087277755551283117210743267333459664637949104792066495673592017485591278561893090617508962769450818129891839841154136298307021230242198700727113434792681287619237609709003359761333008029547628409306307011329120084428018128109254955783371742465411519456972612921017055694871435638122047180238538510403652869658668746660496984955434051298342069493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18957706788876524609806204506733064269552917854153554607273994507790834118412101777732398331509039971877331932516492468261648560239478710489646088450775058266188018473905483858826393500266477415981893507164801719063992093532707582687261358973540017682443114696745335165002153053053565474473015706112567138695323061513092048822115909859065203640276712249970529827176370250899103087494782430494510481091442796688034855197245872250297761159086220110794859488768856757285341876519500625412202270221000650879555779783889625699959258523392105185801652072181883799882938645768554512784323601741070333857357506910050182001677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18313721114313303440974355271234095225680299269023451136348598906435882529461583887775141042883699214680870709506697998171831229794806036568473679828880987370717686725762404773184646820787957775498199833994063995764829363251622684095369127101693415645202405691327864153676275518198982058567028369496817423323839701290050084899689640148422448212817873213451010741660646512669981760875516067759125214100690380351649718197351694598784483007361412957353755208095250877287552018083906764718220548731433289071936162629641468165780531994650848601838754168144610979695783941087314922089843641094352818747701946522373536721461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18626734380754788237045487833344266195441784428165198423916381449940205549651885095305707322139282547446381400774916006445654971973999232975541344107738392516917216414442080128028370064575370705680610124490989021314201268597253574506893137246916932594532861662338603019261043581029464558933907886617931244376565845392984440392281719728226139958238586394286784229140037154704088698257596125453357914546939500135457498088872424055837030476985607290768680956009809316710704706541967280918175183034807813267139948140953573054382670501764201701443703150629562288332105995206556319004091866167944324747188651522815742254437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18473558575694258823041343436076472550241460425821433508243034650482366242090215875489416046563389575135246207766521643001249751468628233937955847940436596057755132914919061940081114057976729870074204403458917927786688220118362277009893437950387611696333199130613037425089354448049230327220176540084882283818444094532802110520521942694316154659272739496432422513345719349259068105385289366838501463506600906994317295147720296634737202800701052713519956762121275486953389665763828756020865954149907617892074653162532616428558525933200268762292944737940779471342802539069835549583027026747780050294367648419847595620997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18733724111747047602720353242637525207596454312867578020573632655991865550973201945066782165762862000915037984717581011429216102712982398118575017702647923239704092461716227361067234022222053730792524819874222632859447030775688371256468895422420516110201127519611212372941354384393495044611119791721051873268258155101088685767674024360882030506300371127012949261730506038867705397250940485156095128862131530324682096775812774431083772002632844056540878153546308041570847012798192544944368217894382816548677333361960758691459609158542036145879833396211309825353145048097214864817979275543161028610795356243426038051017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18018955626279736538289386615238528178336889637383036373122372924417931976008135579679741574411448412375433835888146312116000922387483296776570369031833712871378485334161751224325120265309849356686995966925931109980103745746327015488747150343677329631213976860215398966531495337651857479894991412925309967604401767876512038390935525849308050249923052984710084327666790528115224461818214999617786267727176029024312814651899688451465428054595238935101843830974310815539621633826204274346702352230107688246817804240216711271782371002549285025866462313508599397706526576924075128413228211940791065577124286556999917273297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18289920567580255376260711283840591284389536483214142700479772985053250698419873418808145220666174309092762840008565140972438783312489523353755919125820641508559764040128096061099884270004765458020600911327881240578515528996125037227659849138251856280881328276217213651214619522643599603859162047932142546789315855531563595917841421980945302820924409023173163081884172277973292292223216719277817888845394760673237129880318793442266052824173944220045035860018701526553129189230513397894647976042189236833770403922620106766432043152811018675186179925207239492729714950179139362260670142214393780041972775484226598235581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18194552104469113076000600527934703906689897724265979629724148947423704802781624926173267022418961526414929216861621705540754212545030513843761769731892511757941810402224033476963174838479371396761565003411731440176619929222061540203175950759395980418005171552033816868108966504875370166941938843548932671213839497059467003674951884177672691846732174353074551797883232587171798242663910171398706832079867376674615550876256188061894996432017187340526729564943365404198235262223101071633144478340068863927876613627219303121232213670769349668796087292684883401149306247705818809620504803459227862425999567556830171783089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17825280489607074706140925603074689627387099379056377964802648569188227139436847054424641888491863648314343661395265555059409772295228879674027802586892114715380966823748114951752134127640380378987018332591977655007983232781698853795845429825732749690207797873783571891057132582892535712967746560726606315474769494325772821537144246648644467374367845482058660661209505736985521693827014566439944061011909030323875009518616670889835301143402422538425393029945995592932126451528253266410520072887143167398968955499850002076060407548176053719361191579112103875612316916450808370184085754485277327310833072020785275668933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19419323854618219647960540734434526862611330873578615840084002829518918086653690185306279281978915183657121593462207815049817461056810223927958930904543612500079268777902014826654747985671139322105849402118741970864328739406649852316653278529413524037146338402390620802068135259242035793953987843435884895223563948462325262099314880961122594409703307834349899265093068536202879049621228609319309677639155335876128194518271186343478106223371155556446051040266012563266922765593782097344409262210349226590410434854947805525638743923408338933651724514958914043324309834814542523860037728631435713751153421607514773168361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18183879168096885368091476830238239520343524086756890417309141565199788709980333196810988103675056634223655159222455930328914617884860091407635945050346082669204777992342987229570691812004766612143002128784484997491644349718171591181612930085515247780976772710660272726219876915613814883761416457870420134484912886680424542326269217097505778978569846048637762156517107492175445968600499034660946347659696994835150396065196163331279758876798567379682579586018179228654753499585029857197781528297940994446463058142403134918543314604528557367759406475229294791260695076853765931402883812677064737868987215866848605520521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19364983972235647314228637109053836462066896778440566522070776361000491105187468454713887372331643561780848778474514619099647916575806497486762994039027979205033713663951472295259463414409575228463630284532545865121473784263279087745468541976227788757496289733748834541857483257295081600709741325278461179831808831020217925775547601151289874224869003033663557730515892590673494401126305062460319899295153974468467733738773255866499622235229303072359252954345511132562812016059740987324714877740281304860261329657522329196546679328541656702029561851737374658896134944846395781994217997943147401225606437533529402876917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19522021530442524948217354896543715664840870320148565189136286139323657495369413088916836147248539607084124231869927859400085080007247673249386531732190254886079330962019449374931821984402687928729244699623802735875827615475223178257945824200977491780727641588192627555640429177475409320768045038421829926719863756201472465907990231153717556221032609751657183785232422030126954962299312357521925348893724456376761566587190834479501231852248527258450533510392500931134566118746391399071745887157518096959876560834309773419814725584329911723232758795038117253950913032415568811801730080023414721065885715120323941417173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18296780307813276746051065792170657136504734554268459886190125161130119507084415145897434138962939442424706093215419704370533444154489707450017649700597680764249480912404265548501951167084700362946700662481497539690287178457250134195729051784123821271955249422582120969391505774222521540443327453286768240227080364135669826474018307038703973120809641261188479106710495536772624641212813487283224950674980583105546493797806288868389750072967968930722575407650731404420986492382819917028448319595116895107195051375747532478015412797390595521473864107432734975358583299490255120626570664572606732691445293900435954265589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18789252020220330107197680064685361067233629653980218416949809384612852841453522221692739844631128524805217326117166885554211157078561265946511952641215048737239779203404418308236953274152810366912280083286790098048079773950135162329436540775938613628254020865919365268521479865992337693562500580696839941721464043769485431366095636807214819214630457880449266168269750648440311332917575078022229059507092629146548130112161300657578349780346460379651784330875693238469376265619255021465145255937220399369031638275317876518213246998383506207978706389773530360460060297011482741314652655207394972344896114032464227604769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19410372202879304021468859380089947198300100942360599437689381500245569240639233543176244391621297142026877128144284149113477294920274837350514757682255603850114036515010589532052383471808854648085803112724743978614996625497543736631602925318362774894938462141404401250401922565750965099721164669894907359196933443918324355769481874613609541401996625928353163871838950087118978639828886124836411229463727288331872950196116465228951447651669843588476258292905577462366578496562103779369899145874038086982734369531135785567142473533059203073317469506299996217752318059897293441640414414555495589337693233725644764314117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18958958230945227689727193994687011632051166378058533466795237309673451409576184032765729631443580958162183014144397272415074194394938482099846171592274348716481508103503482165067991784787875935069371725844918186036993779942710386889402519385216067973329244077436200509643248581816732832777709792129454963595538140748873475760535073220328934815377787168262544864547365905433523017524288211486961881094374976123835348919622305546506934105965222828539380022329797885329164783543480758830170871365376500287859263805999989664443560018877904597652991508385606314744800415050796678427740372623566250224415755179881610203989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18918197690232047441364969818615169094110594362528470915783869291982216731762007251692793617866247568040424433293671179200131861471336559626026693392855423052145345930738113258712842675927073041463728135958957589081981455233661750993998548111796516906459605205511529286696277880412761015463565508098067997556363917027522514509157472960636083317941672380618912172525412132314531846174123937746903483428643213367236273722457143330787679060505402155832985373310011651335791296178748516835802404418222635959169590710491888691374356308060936054266804817641879925063632199409367807301196336605544368956340353558110353164157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19537208739854795418647443898136802790629802829350812134762523687532476832319431103286884122449729585117129877321728468469934239623625775260134474265900093942745708858071450427136148180798360510744310185715667105726776888030855878699912410944509839357055966829125175669122510891059658234543868631015102344464927769782247433289161867741612777553258073207328162564324049231946987257145223694378365202827235584483970465399821440205100243507950465639465804170551431959986458257160333059211758701654961011235665018425300684805181674085757205224904132270228857510323218700775701294904698854314042454512149495093713942880101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19148344883266877210704063454730057434908574434798879218120393841600384103679449019215910846903410453438560876018416252002853559191033809233864380369097638400627854204070755297606911170444787994156565852100211288899205014490532061914841026196692871803433473293393300361132478620527483921822697280087702322692314389810489416829366059675860524641529298870186435917267434221816968915340728138161582114718328791922271923650925073721535720223052170625493295292482065912283157476185190883706573221000900851416839287903169862946178957103818016121552979326956533034948152615480710537582405655216150695940096938044399684299961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18927477591622245999157784071666670128824032046130096660405441803220707030769364357290730491061958182357189921383154727463492835908133655484253931597561943638482495769051583272032283109502833587136090322117037758561713610061855840004250411292417858551457347455957104497232849613582362395690722367349258552101063039894219542013586627128983476332946668541026487479851200551838320453867107356001835382439241011346915952305743365716271232855272275730132782594942707214817636619152111959330313161601168294944795842949716501446097427897267826102914700483567574961522661520724971057688046951579774300158624900409797920250773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19092434564222354637639933416508379959494580969884574983292818718249761459880075888997998164348732283955856189919579458900161801086010583150076976815386085649282740113236647080731196508271796245410545433605605258614656524589787577385625651501089773728850762531756592318914661952850958372538662801967146113002309430907474379048937598457523161780391486101026694081725552037584766347853513588152297884828249524357180163613860424106375743637619696920229031757443507677490421936803134833804421796744542629272944845436787434731192714741142592274838493775355139998919413225061643308153895331460857798102342551873256060513717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17790069977332695747548191528160559673713777944452601483914027062223247774043661013667816463297628223323128684197644694590558977877109607644992062969261302270149143185608537492513170418695013934502390216000312837424998697114823786772175074659415755492480570250913075079966413744873955175095632916336236478625445860034447913570319093567859502925309361813288505879903478612252904157811096864402698401363885592071338109560311024965843711023230603114856333658028955262639787372965868563514065877941332447059848242909643737763353596759898768075025029093647751676550495634888389422149585213074180919233995074911697427428537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19008067684413699084514102254891882050312423866448087290398541043583430962213441924438300991869251353347623099890427940157070881314789139429238602188752985262502906609904743745168997667764478274832001858793583005631661529167236814270050925525372973900066917699326105915444144673844020722736220700110455584230384527057786199392190528148742598748553346139451519552987231525268272578133192804456771830424525441190648214475213330503879283305411510507024368772921722837615298877916088232759462760882454606990724463057559220591517329909407292875715906739594053405264722646958971201883706840867622558138560003084204853902193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18940993145119990488552836993151035654764972486132775785403204969892575294904752662145565298065007375787926402501044263872274915696334880793717801374371450826278997013389658620146257067039924011623198508317271085136019681866945574558993369229777810010577899210298022746453913248794241042798663482673318239343516757924408810766793764835134984624794014993158543399920861557560594760176590393909969000540235595454212082910133666090344021058522459800607510738909860373300629108663472220673504213933256253506487805527040094412319168353140273057497339029631436272163157176600182190305731375472799418498645746082144167626469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18817402936070249759027224649271731872024499728621371180109737002983617803501108138747433985728987198954654603171007967521180874497792639961375601445838835806243000867113889495756349967320289704053529998241284756998753075525213983286228155508217343768973957554607641313525924067363181404318689953305742044793989248006413682716651302642958148549296531995006301395025183603464424143456584370287155287448427992663691502980239600801490077299523675552393286987031036478204722754491999445385139350025558636812338565901844351144487162966764814245536744030698952782240789897810604809822339487704887596722009808175978396527689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18644073077082465219293437068858078234658098789162689718214422696891415491888456555372308875055845321716586588664988122898385793062329384737658248272565986780075668608404244144845655653246916572457733756027978387764868417112751356005668785300590806248787990323274720553946662754968409566880813765065391726014770265793601522650234842734871058147283568914206018252774643726965278603432414190985488304763221386830359897794340552811837707983884123012033363447770031696901452023179028664619277799176575816395455158515262959793947885043466313793088770437427927573438356693245670922197422283093746853246818994285842952510169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19460977013678794978013756847617543795934870349381636804974027918303377217827813448211734236115527769575598275817915544174877943248408886219028218086855231437818598764022459375656426501839010439705050849174865472302197999019038134678554284297274802996782922104390696290554318551690560006652531345447222982378204563615248355167604795870693241570200741455005553939644618455888901574577230136341423313967784255297283030961484441755990592805519743887910229409334279281448062352003266298889426491088155381470241759082431608194600177844698170769084944929715429014971016312398164932950194683206353087247038746069193121428797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19280046764092837514865752385372983980384730319487276358962013685393822780235610113547491733452733200012895825877886924168989518297288145841734006024425527100874797966915041730644665755231972145261235134762561623777408975348329517660560628948495657421476472355212259805964053024869156917387933231795110205020462592236067374223173197035239428608454525143228571778618904551117898541420437707251488341860044477717605521050215389483588039915360378842191566004901535157670202554132190618009827982155338913509852618692412210612794807675845073169012687542146797982160499383200654209475153606452199479023845278839357747521809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17723802289933506237635542323993081896359366478680043686309962712437871210344786440303250346376192305708140459042137510523510243720267192144539467258558577103033943425668589525465793334119028614763026830463651123724620082064087658387080575470691645391944176869121533311011571491406041593540669264952507435105225431500055288761765521992658242049885172061117889944153273071480657230976158564978611997932794023949849325627992514328189811607535114332518925763991022029598247366590335054600462397347837181249034352493083313062737868359447372589597044449365299978325316981616169545645168836819241674035693713247830647310181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18502781269694579238838209498392211426930979992019989460703676345814755452794261570656661985113034812584647874179349154020258011171965108983324564177431132635141452715947313702400678107911559260294262280244607687616339841981437239755026953577784362855030230482711596056239166935141436685713926059871225318449714379286024309892028389600397548730889517884506752413518806274410269378932837649831292110420224393095547613583250396814844185093981994409475212343262276977571514676418668702890837921252359110408461658261397730837733694575388695392216513088791237147836522856109479275071593106357378330089580637205688231996889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19579811488538732279212398297512193329492940702551339263319328291904650059698438680031850065628274915687362906915428086920196491674285870408572558507183633921823545596249279055179420804596109675369016186714990847536340299024284634360243658995952240634765888558264122911681594521225817635790571882301348565555757379310905554223987570529397447353596693364609472737772607789872692706218242101327114591226763247259902879328996275917645683844154110896311975275671875970872055472156944034497366692912326202550865498191625239753334634011083230333199903026312971425358088425193025017552605906156179248892104566752110688607137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17766560422829913312555521188056186729926892895719850120963018978495548988436254964098773685945837126168847159569310848172090465614380124824955311707301348574535348777404347588113382572211725846551849488718677338375137480280177540807072755194515174874099157527073507143268673762564655217656208731985998293852148026820982081661436697935596193349499610840532682439323644324231330897993905378147013359612864441442582657604353942751896182467826366704835338805568306677488946747742602953729192593536241461475823243021795781133616148665998301848639247152825627767965791804079274215246911068271948563004952533283671967875841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18547191295962653890843824420968500224677411244016734395960525840929074609524009199520414215351567883616196470392219326381605856102659359442539355817799717294313485522615582780358904251037244976187277157772511391055414914670842410452846767293989657089901301537077411885395995747479860933310962485615872084945868609661894571687435360227552483224408993694602306510803681023411672418662625119712530598777678617466847558371222664402513881157985231713323118890610098458738988052008801016712350708505822304248435652628784966854450907603478085491802933196699713813053018344970634378956550367973501472605863620081963087705409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19242893100313551198473490425274130009505720950273110246737753478183094944859961427111185418830799148298478493939906087652148196892003224920799428428522782263401262828477128462067765975920159967751860740862996407248793805396227894152692073473718974300458264538349252695997514576437118412029727382370337755269375099355522297174769463676102027619192503648233634774784218577869130218094397200133515035851519745296757995019569227298043796561867772741937610847754644529875796889893396179841641069520428736451853999856822320522977600073438516649538232402862090227233734149815243930506432205546581112644221542531362420060537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19247484653369649870169654739951208041582878635821497967653400288171253700465330243922058354262836600231047789323288300729910926107643672083616886777687321310683531465958809141155542432331069240017480696984541643365315286316434520482388521108230087746645609385554934306533827423316790203141310897719364725986646022687639939693961066781816789735429546182601222005514522816413855854694011710128250296296241525813230717656798279707411265877831345394699544386273210639268735118128803702830132493066421940611863361452097854315660464913119378394505713615387367197074869766133828270644758786935811890224726660670778669967169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17463849526415927320327462756598956053511083417945648974117926280026788756408766690982051503245078862352447538586254466146531886749279016042317243183890648180341613070560363277324808204966409213418896464208402087897747344365742578535646227684865593475298295726013307807226920748551582109835573736080002296294087242526501403081019243645650841384602408219129724070597050902932354161442201030445265763228331451606437383453692212442629010543105995574663264729909341118612350984574203210118765503502901277043502173170203369488124771224320275386725487863925645003668783376437116289315303269250966080983536538720646756387349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18572067023087635212592756928173369954272473705022117160810101805225909104727783686070235605047069875828371124759873337058869360769642993509911743055601681558888344438580711991604676173400121845177260370250836527917954316684977780249020654968541009064533696674147274335676639284727658782095258275125812515287107243456398435139798549115072238906759623446366848512258435164034849899586688877776118148875496523077652262964679628482876156037780249122031033114723217920339979991569820727365862330376186674606278849207085065780676893315540805416598340003343840309906669595670339046886311289857763672723110402773716606384153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17708133954752253039371955385922374716281182429139296653664014216159330348247540337197124535286877825013609088643051675351835432919303297254190138892751797438782152242335206754415155808145409739744748555179437344097573330528919626208486924892196252788935986837454592427123927692119568708111851755164748568922635417235933882050360740314395440685445158223170356506372728922243811952450492026805644156563993625889723360850648949265004994465792052411992164467281980084301188464837261785255549151725841203504735398406749631215796363956659926963644892386995766291623918338504366801830058595950453947938846268645474468480953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17624388318294417586956752456024123799079854262015382428307758400149066261097728722158458809999337086633784428214800060603666497873206056869196542150123838740900095898641663476173270099504907265340684301537985437677920956744178497578803620174552291041079126465343599170393345520369223537107509054826270322116672049512816718033701028388971823315415577933734542115927969107938153154952811313030280308621262231055397445156448735264164555204466836747662354306594345608837162044106867234874431639172425140886352721067662998394523798707736556004128101527524903463455777076883259905035367617697202744500868973279604643163997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19187286961119035771906545879804432973957045890361542270960921533656102234072735388550727022146182059882609927594032908636314339764096642682746961012052799577290874800039938737353057012672214388877903818234168166778377809043728883290530329451853140364547866068535139815819697352116930594631163618923871499526202939907662462297548956974941397970653202421949813630193201644160979908474757060214205904696048889041636647429139248423367130170180844076367239294212028324474840296218413282447635732900725512439903218793475141918343235469332036296687426124481053640187841718553876837901793515224382675178067252635519284251809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18916446619490248767374312662750459525982693849095624837500004856357443797086618847127737562826623438018307740474168497894871789661557604948235490211940549050789882542642688410934080032405914744915672971217039767872930880041991122602404866867379956342795882643950397097813339525862410860604733761963811891859828691134880259465913393458002084048892928577673513954439342813406072549864390825702068203583367733722314105038769274874499357455623194673401111088648186027204877153713641127711924689947527662090841422717472685497557005431802528901797270094926428977571569706631066894554560881778826923847821849825155141690901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18341394207345262538722535283807031890214418522957901597967131321259170970512239340196461707371252537903321651372377999730469408591379775273118477404249823385676428159972494384835386203630316660900683072822342299147775335050695559948348867848272807201180023943639995863061069484065435209837418368679329305087866297553256623197085298210930317605055458840621535310552861203172792560158389027635488883107448907117921268057789405961204040484146791535869378741791216898563608163434306424145275865679448281309056288952352762673217284712172411712065192162724809383468301239730453774758530960828152803471689033968472676381861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17654221547495535429039384957665234369392320684801561815898528602953340154084972558468235323921479612031122714324612872609142485038222842247221909002300552975620701317748176917967468361162745217283560686194364971546747298650763049366211278749057758724158365151249171868442412556855898235256143001844145078010472438354262946348441003687934784016602453280250358318678139435553051418038439508366553855445389934837543324737070171947518307090142902710812427080365076638371327111481717199234684600380397860504145129761361650321237190038063943841190722407137772814918670963653705004612494877001272510951428133290062642122037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18642051376163596286639946442520914784126003924437073819458264237692845522499793676401102288141161562266450407125077684901368653426916982201109103266123781988424921989621249450528761977747790242717342450567252418926954073968847570097561632203458637962745251813046593827998759794002459940304895635766874098229277380835878812915277336187274608996654120652239925824010113978603765396471132367838250193714337383439250615155621457185439698786645143873911249228271692197709985730503362599735091345890059233731784346011442004065939962747325251568006133816892609536173857097074705419508125559242206278492009547362286966333053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18993457296416888116362917399905332320444668117035637041126571851494604431521267874455759561509718166166070907288201639636664155696748837612891558710467903935263323283785510650570632281104426284116081800574158550625786892475889438946276442800029784196517607409083611998492670620892178519896315774883042216427543442938200159033207098262529375882535114460427815118519833534591277272842563807300654324603392448702978037764850255023439842502753076710930406346663852690361992788931512649959804464621826030202661951004349853599916878150188788492183344696679995509311312586243521344540094011280887120156755275098131911581513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19507153221506618782608065578067364225291454792384103218511029373033334836541750523633128510734378824462333085853887341664562249746401415527914394508657059324687858443422626486786301452965964278371031150990274511919786549894419925056667352505626379658339168266366000679058864304575811049247129253390008171406498129849594066084678076965680090308489943364049290632226941115267289741499213301458464815517226387111563642890044635998459123191953953459867828296573728008068734262824184038806117693055995539368404502248256305599858614476364406066769243017504376085592724945193437006967167074393314598950574699150764589994621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19799322502528375756901689596419832977983238209618123470423204724645449196589261422846737670649058443669850888800252957228364838867731060237764811561277004271795387215672365512537869202702627808698434959973367286605017423983634111925254781380685424889673960079725747868555076622808394773344474014382908903602386940919961442520582563883249709073434393887991916692654509221415299644549092219495336954920201666240084340547487279778606569710248494853583885640772802378241040093610713216971103489759371950863343630458345322596870422184814577507672867496559944779420747359325459202214673048251737402497026668769518439549889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18801704404350051140053166801033398780531890530959581706429768090779096889066944049499011006159572644179148772024048926410859627043111458383374080060691258246118295232521239001600491709744981367232545503841472309803710227515739367523069108867211007375021856869317763971372503079375619674526686981144206290709036291135708761871010709819973417852703128563792431434090690170581204484851567514849492846989196979664675174357664472363538190481601344634954359020743500415368821464868264409185403153934624518128356117086461207780408341725522786320366246996942855943327719179769792343145895262607957495320607005962069919496169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19064828928017343359053705231930174738511962446925806974560229059713888998043424659073589009351738904687165940058117197482361531715149472246484780766015212504089899265594531456643916928639176998688988077573553320853549337038299811197827031408140716210157449062669114345100976991988100731141011488929250057553306012916066954869052776571969754858910949854950858005131381366927567191331412823232626940601817385363879473333445355425755986981317905062828686985961528598677102236466172788145408351755887578752216954950189083400808330201771625656261594529830397302588773145477015818789803929322656208793669110612535069287069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19327248491591697059785518584530729896581984703501866920113823810550969427527068368753482683143945762790518058341937943002025798926836463760626213201753873915599698576628782172872639633417944402941818352192106560264328452768788695298971818872979731424457699871086855690910632050239990587523739117646621479495782324893665203339669645645401876647219296546007070818782383619295741214162727697929607243875427908763585213067328463697204402073564350364637729291604635675133250481676279828662284889219546258309126901492504205228641628189044554663243427620055914199366192981323182470671856861251187957922330138425379463553901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19254913514644824213107986088032982570636232997455645583331973252520435779676147214384112691237688780902309645537647323077112015316047508628068449943882672651975915385797352794946673781405120106415131988788213449364017867723136681957381849331624347352814325342887891417543336377850219094781812157100696690797858037563729959651300414620286750578496330576084270123162738651427186665633907666166718457296875966653798803971722572609376179570333271604785973963882803983526710550823308725847654619411898878227890522587938730629809627981107516058867082775354262801314201578623237358922157731969907868134884223687692074835457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18267594230716385427661762704792161274629238652244408877677452455165324450127159562693874330073382921025851649912902650148440375858517618002412492355055477706567722728036632393683613003080382902781864438647738077303427667815626585109018444872649333044742290572169894868590498755848751674058054371114021627536118127020418567880284600188035623696371402072625173551722731729766324653234734495181786246692223328660183437345418734544854795414697631294642009421705878262844269824749762823384616696735120302192936681945075877808224129930913846449259796452379866820862637652663299056965014952984112460598797104760245042536737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18455544840916910212686662993505458716511717546628734902171207163408334817343192341574254603677408830890850330099012239915930698391463811664075258910376828993376956195418543216696157831205434758055031165045668429965702766420602087315702439844044213146754590915846024193812655740897301165959651787317637702141983515166981047042741662850231558170261353293877830503023566763473076030554973828300996890051183634160380931630980406326022205691509609610076377705920238903896687414362657536890551261122765488980243895887872079398435326738637791482536979412668583280384257839819494553672151503793271673390334412964919768302533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18515854656480050082128981435628328107576850584358220464728953465797284226210659109879755345423528857351253068387573920164739938456971310767597847294612878807169028773506274976841494144064848356793079897341167778254591172418066284569168968695531663286449211480735089540927173453870250471855300547097772672674672172259120727929361598200018426276907520875679047071252492660642272930035037132541982617859004307652432082403635177707436696288686424736795787086244142539884390354967633899243879192887020471872505049100605574415118809343627441510445508114126398389305664804694621769422439794757665655305783542106043525577557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19523933990737081574445310861505838290153231598971454336675471943458253195173339484569541305381875555008697355590563293654586590292068128178744723713500594406614540660125386506633090655626232235556042619674697439430199809660532383845675432634556097822138098003007358257192283144983779576569096225954348953761993084536310906145218600351150019812336107097393376895198617598768145545526724468812905646387902444034368075265146437401768479120794325738480617047937275739633311418995818082521690964859769006477222296512000456048998527134337424029202261041430540289867181713715605959425018871584884710215847172618063525726569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19311619359542041978107359476235043672151142522411721717820173894082770974993341310999601914520034595842996957634414394734180707035410614726898247197310880305864862059477568836294496116348577042827323064127894897686053315964314063874975965850595885516373713295920474154245246963345579597931095676898589787403647881468159393185513629604966451854606772926268883856676072883649359323012317091538510731335448612415366723604702157722202284778610923687799570949650902460877907878390204093140005691457085607969678530001111097165478111135218170747537641400374058555160152296236086785235844488538328975825877154854615757088637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17633787961491815640850382174600571520990135496789352595443314288633165741343342071809338503810655276995857052951923902396342804432199643794782645653318966149088188268321737429086104988829241567842501358341540491264918251620992258517911626496685052965378563648233534168979525115200699514865521490256434030752611054826196285191733037579821421872016873082047515044183250999860443706342044635202956925380537066763232233137582678972440985165134713895165571548617391717971131312643753652729729862100371813159336390909987801491173668623243182969465170730172293627251126541010697657453466642192048849532504013924514260117389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18387399495776605357217271770575476289322305302892782533895426843964550861052747417197291577436838829603726285989042301737634283023399683441094798066247895252527572829850904014454619160913979432777910156876711602884473838722970567732797003030251736374885607472833287773919858549803721271907995878232606432095617790031865801898048431604610409190721057190519050082648827556109058024189914575785248016292058608151479074984149710466659693345613592855762612355820537725885980144396012824233010172337422451946049882282071198594583168479408642579752051925525794709189467637424732661792942099955378704557402894073728109185473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18175068374252011567065215855316323678733615761370326874545354647775952196939545069141212345280162837462902552259430073162536313287134446064503222282425841259503581299201103227246428341570832835692680179677263711630039212868258846041546310901532723936694640214462707222528426136546473068146419210226123699981558472476881542028014634211672717222088556308655861358919362533320402336972280755557013432942637073765321475401591725838832575258552404188423414048321605728295172353803046987417188712108467602368891098783707435305297610310812938113959452371660554038333464639902988382807614896484864807454087215034908687225833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19262779780857244508446476732038760589007960903942634527041900431694373076348508260560317400701556124906847727104974465009008066163600332891881599242253270895532233714199861034794897953584752272148727385368212199294115780115370689535271487738605018038398478226772569613402291496577688179942536466498398841206923580482865120841223301509624138568267789867826047132552041461318153175937772272665350109891969700607921349732781304296985025470188044665916627910848098779085521865630271456448624013308260375533979407626856466333164151353178568628608560972971605797566686082997869746302790813807904953348377670855163269661757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18407086022241466905228555017887304479027542750819395547707184589316671068976820918167382583118279845561307700015661392266695960975258556270889584138836403873807548334732038629920226305688639082312043193468187771095515060316705532935277421802684611810770735938573806879314323088519248561672635632748570115263200870444081182699239372321518739602419925723751925644403631833236771072930630341754623142092674237572559248254907729820693825976276629572329190937579254511180415683500344908503377926388174805988273534859047558763383475471242244696706738359915350633682979393741699869389057052891528825084475723959048231502861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18780987971123453617332747130675934324140409193480613198349430967456561962115269742953810107181791865571764557008290769103540001197985287295274048069633410783308766531381979621979048754503837532673973981066301045033278913128905015530074316036364796646632242792050666742525680148041494150541019520064978793259800046787170165789465399486430510087062808892652332401743523728282648987622188398352889814029187528640155891826659298463993309956133822000615481379064737985049920685977134777365254379261816600413599848072271387711986414746409049892642015295697549057834242475493090106538144531845666486422595168298095108796117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19186630808384669202484064637236438778079638507580643805327391428826045101321038003181823243357184124349463437540321007622300674958910158633269561326259619542759788181022260814886147358676109398523066917529845000960930710013650082751848047007009993724242549498686406669579451725816854030399430424888119570585620374705147964156451635678453270002866859973996781414694233353667910942652796003788997679887633433914629775852425614105949890112530213075999570265697518462441222412662742980314367882497437497582246504485273936575814465247796893055816085533146072786599925010810444778687134679118551575624711472969965448720453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18465745905744291475290831474767002998311834452335814309872665958696971914179929574524164677039970081984199620116205444921050123638944520697006077910709184736939209805442148896978796539498011172113067531593500142824426848831855593329060537340802900519234657200924977303431208614561577814461146451634828055797486344229409334675397625829818435799684314463540801141227946118078729692566937552051959546442995992985956375482324237168787599664234026931432134215137463278432703391130668315315917835653277561463158536012692485552958142370761827872642207667306970087246212668277538971973065305481058353886558662775869064453849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17773598126315163036571107401915326121448850807659360384376107303309962247714658615069546602081143548323147762509442073320504567543639797051204680501399898806408006306556103504627847288447377888906721622330048935904222637275049984519162440944004409099304817758414655033284288133906729606031078866875382728613824764283663489594512412001862714450672104752749211030473339799646557751584628173532425416024116171617904844007558833281439342938901090957031304182594395430572655083581756314391796257755234784384130548232663602879999844544714242166366824938867180989186618703796742489131624045944011094078238777199860150918709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19465042770122823655562791578957902602354783388459757166241879779834723516892091752912859001082339359127521393118135064991255412175797325337949176818668829229806415531954495194116214604282635170179488021106754907483139419428060805717618167696619070088803474967115199926473993102249345548447264816162229855254266847929015245634792958516453876043265672329848464420905158098753248186723600922481547607487248251392015961413490501549123062477209963205815249137878101973879752587425490926021483180638298788123351945487726704220080128484383930714830322510312849121284898858364523733864073213740196050502937170721398020594649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17495225993977438694273063813129242437376537474410900140413175157948266467957278224723686116635799531635375989819365317085379016628101060959855896403736130741185443724344668503752283325575767702174426925628831686113255087587197266796294444047647040320555446307527794087180821737803556725099554939839505523659671158912045729453253140212202104323462314305612370973808393636834943583171251368960048667414312495226534498034336620485544725576128102375484107933604016388185304049701292504401400639416071026263939917749873710831816940037970386378762166834005442416172562253744841776245941264894634530801225640559891327771777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18554879775873250843248618408778664072620960578294130867630388072224318384927505234952171497204826270634238275845817823010104989683357613332671479572732005342531328665658830820938836101151061143460784960918037509623477463615744841379199768999356818234644267891967131480715425046948417472504586485003502783897280892190150223228553865159190405185802237626038459832139900976178200774560582945930052628238268462838807511131757722604440545472282077161728369719072500733731689783055423453877808627899967742015796994744269068647207135704197854858451918528742646073558553633692579900713922626118602133794282169836073142640137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19809512453637636741657912252147115863948150158207464460754000047482424807607887313020224454308415899200526881900069244441470870253233383611961320152517005579240142515448278963133441892320654069004287858567036656158352937815302817512679301834116000043331745628603816552765832367597269923352103007872704131464312564672029606428596577501582575078965911029453986790057437879478496142215438262194521072476110153197295889943215626104814980391283876464279841144944351131660696626791727231320771780880227754163092344404153764647758844654302777551972511800993553680070638047963665845757893653473631155335852591487338895912233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17854249526305536688667554584186290057860480055051449006824415496727344059532797099429870274965103193227982514290737117432077833782515565643071705081423199459767834377464929881269089746312522314567324872800640606478852701261271121856610062003112493037237507820601511886289604843667955448969575478066334679637371007400315000858928629674009563313162464920135622389090301842793605692413319505633226498268037965560586923796323213278094402866231233783761389439122388253238254577234927762194802200601295133850776420350952336370616392477785460910063656243985152551878574769204742270395259827290782270904096089480404622606201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18107094433998606494697422844095942439168372156563890798375552299676936909466881970617330532226311481129849497709208024984322658743464275338021664309383891146088677696646312293200795369698633265417827654363841135557188839618934649360099697576210265824379205408656863704437092434317407364643872328427544438729785389556084569392398320901503731719296622112629944237413489459147265536745376938178138200073993359064113105134465271625266004652670917084513883632196055394752826178358123952058988411855533655661185865399782922884660946928177654530290302531652362647928862321974180103885440512655941293530848774390227028700809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18574800990221572602105823027345885187366763976172625443530069572040510580308783361533125590160512640456696201226731077358523434279229483667238111395860243795586896919404147983347945148637888395518326643890931104362390629853865266152551772032435847754290133666770782269610455236353892924938741211138533380002532133503673036169375859702795440528272689435346756993108618463242040708147997795500740607393944533776494318446178214926734732713806482859959318659871274800644970112391888068256945024383045425927647215441377610114347618030787209663093677236770741677198571055120831881073705384132372438423633018489094395799429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18593783381137031536452087194103233758190558356788076512662575038650133039009293239790033781146408748608140460274023915957162025658170545482470542665080861367943660052713342153565493859016940491507146393278040456960795562342557329711532877011518638239066146240696811184331809575823033903380212789388892905127666473600166058509297797350781487248350921019883388639773551732689368975051357554470930413960879987852379888459018537262835281429050246659940217303113439243911294127829965547147381633284836199374446183360668427506068421358549189157814669596517696184944423023545209670360815051780580390013693843444608604082993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18299086269991751946645193581246330561637251595568855065071837462549882126864334555680893737698714528584527174299333671185831165739169848252675071103493639629033066099724293939263179632965161075672312712522487749404217591329963659276316323120891570174918004391611310203902118760192578771116525422562170570086109433385227190215714649001546096113357938745117354076850877215997317317697069525775290768541911049074551133794233006622123711646457308329094141517895702964508104778059783650103860235320740522455358615401600768239558299901083076637651567657149499927009760131197649929818321154427632592230678229570868211321897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17732207947318736708769014422315122692362179907753539274280950700901540090554323987093624049813038790644166497812743933921203322048616584507434538247614633047125442622985846384803629855266144105867110408190695725224172260442505808617348885653865865507696389335215369148636780589516260657538895347571106796846105610551523105711325757079256804315230235454860162085151195470629433236914516400813234891695624544351984012915391051653677580023892996558747158136865151070295659171494275365227241254987217669782801070302687285969846507319822236965811229240219719964171537756096692011298027389225079192242896696756015997582041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18917011579499329123351977864527434887246266271973630001404185172029042793428737944315246593449652007336151295915849270021104024577227017562237327595852769466702234687399221756141941165049639759439885575751269074318331518670576238055541472455443424679207287302496368475861714818895413541633597528066739163606254588607017553889942999705425988237005578615750849864347849345005063159236239519617086498690721978703002916926305066819216899280000717903500937914728260043671795903334309316026671278454245442271242472894478193706448198652707551970284149308803007281220568265585517694415367730655475798206312698225785691988557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18888213336976597962658742224370772869320478088040815317694965550926795757583613110944235193005341344768329572921228017553111569067971190230906966524769266074018797299422775249223443356733509983160728630444799244742546536850661653159699486639981127333383344836812248428187814019123311270257126336938261631838969919828168795025061044595122556384856620464006831914934666027334852301669900630868554786472861697914141420494022769280898003894723845820254841576548346251962219622128900695089495991878062081523811316637098098617994235236563083467778877667994696372380127471199016991683858504956690724306423216385053493457529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17720431427591618832136044060292056609502587469909487505970327485542818872605987525707409304252787217655736237117438174870382141434635728316051659448847990085710069516365797313123931623017835296720507842218372763782272162561780294338359714518235327155533630039419218733161554757410538136465806351634317666022892692790673651502046253018750870288315269504090707602016948670547187938397059417222150651878033194276354036910578415065820786960375426866703530663752595664177427714058991053167750360685425431422371806335244512325390693490026527296158839860517263200358495182827308731535508293784410241165912241726587474405497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17455221463011773309925251011622024129904737621732681468034821517295898998721052256197828581120584287810384343034953822763775956757424844888688857765137182783974686332745583669905928616473954416298901495907536164843945961549979419724822665318698793489946369788925470092028494838381634904749174994981181856743599313819349145709940128796874695163144455509804417845968245579539204068089275538288190240047861421328335501794476699530069187816964334372020718121770510236502236729575762672455752229428784564889439004328226061513424240923763299242455351495788218346648874938582695846430476911496731879269719869570030218497001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17590437387336808400828075551964619238801332433685437410123071183517202977365644816712339750490353108082428833175435082045178104773614151132618825466812080776790445029256626020762868581462903738653050253453418778260400299803059939543498635631920175088543207834402546515618089657536037321304642540211517667539635510675959234630585131974993428816018368353645787028719088380990465204995850292865502080220072077466680448764347881353397951062909054260611306086533463810708218498731350265631182282766204393142084943306431194662213244363828961772936650584048486974334023992970496468229567996023361094214218086213912353683437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17750932379000901797355947725666707128953252561919678559251260664897390192387228808564621485174814184424595281941127594098270130531891132756124946589247651859776444967747236702920445145929963785224846225310346904086519136903058605350446082040046649424649630326051901818228053366880091050366291832876269258408137962286095392466564440841723492918360857838720097456738962186912378022130516722737987922380246382533043754475890107282694388275582285363101644774330619294709795851801857035356419668889900949700049020074238369654066660969553752340747271605179192228941157199988463006632363557749063433181531666619998568369049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17705093815715789208206469309742142618328975575466793797235475621678589584023544550582289650124239306321026625643963386928513723051150390592757517021849574782262350234594322721555222518138338335631214510774258337151454432303433215566053466142555062176760743809203632784484844377382501642183272955599990285210403781753924781011715362884863299853394842593098545237956903326173844031778259066083443077758780414281155189122929583011244270883715956266642000676793160922236890316858165771263818803260419478119512415897529304905358645617241587012149756799032418935876390822705145987517673462458542382134634757514229428908197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18226825662564954323233354638643345412418320638323529197528834827513181059157938151895346883585102802349574333669643400085329430663113423878466424287640678862765593166721610911737722282441629512098134267768069801063840773097321485850697162064224408680747655615726945159655695035211795207418510419779232015221198966762140234742682641013239236176553278150297025248848552820067584568791812575862368430409468940699768500414217063643027109964478189992233179245992623898198210283393110705093457592730332658505982501720102391640364015174393256690418522257384158692247569274024200197183116956243312387592500060561180032438041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17522564260184101203438128964653184711127099153141659927449981892217811475293380569429118656034244737056278169440127869017997848915766406839002378058778072835552177616410945349749332583351672546363476729671283983310011013293225637677883250182676537800239374648152516289272925827158465140567973708822580165860097482172908191496547281967728959847793425795127092451277736872402010892702562530818097119399309279967227640788941708279382679355102620228441281892626504463411173913576374689365097901462723917362787146648143541038934349570814758563973027377042998648439711796267158623784896335947767026265353024705626089481961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17917808051053999617759046909409927335233730465296360949384397079189865484908250752094081249113279939347143566982928918868732890334347463448655470520956830674878171302819556889248977772928540975784679507278677127324579138193307516299339038914287801124464760327875613823335270694994380741280132329966388438442295166556992460230219401616292222504687801818585668357657351544690403832723359601409609445865141473813002596550018486358551866392990740951646612180083764987274051141745164467225922126259919145686561441590049895093781689499872487744621881782020160291122374052181269287717373913720781775377480114527093890654977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17598606382181572176479419104178914454208573043214380947204465253672413206894645104005171191215708669428097820990407448728457059670879172404905284523443385457808645154082690173759997655713493152932616884330435584181457267820328859198006436790115766699092065039760306391635412195158530080144816492022752865200273978999768093939926034095103972769130115944655700166198005009929481432829408747233993693019741404747840268254484613966654677403800943309605042378539374126237978581947046296914657882099059543532100997422798236345618095596026806096278593835906473597521642518653538514549031162104239347902300478260662846853373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19651920922067772457649944212707866124993207701665873873851042391915665032133541532266139266692248907710798683032644583321877406580656968689388002036765593130871512836019416435091591903990257183906502074313546920292527882084353559997861378370065870554996621133933297574236149394828910942990979490601379901079815955000477260400684702942467159374278752230296989727235192063398564175917258041491046271212802249308630093786773557302509489498598590011605711540630221903844254683618751308858147813901984035596640726878143062008669823336817618488993167943113299717461799743495958202074000247371937750587665966009551533159921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18257116421705103838168099813074647722378314993897663154802530856865863973693275409277170814770944649539642877764391584695429034630895015037146915314454476564450329472187333416709695100370491699520163595053323026141299857273931141722618889078783298474591049588942521053757553037110137890872013995380641751880875773127215664592561833669599999810097142928499790290990675380133493235461281881297231962914522825308838045887952199849115887274478334749010230886604743805632696180238279331233526561554324452038645134618902639318302468436456955889063627584873371522360412847837421825865590460397273566071555751121673575783533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19478902652570032480724891611753612240048823241689927167591370630068752148988780286944377644068647088332858548074675974013149016488552646957882284129834166724593871919156172213939248138762611854127149766385131108078186417736939316557070772933665499525851398780620051499522228017410971839624330850175514690567468225067734109897318189153603057289799034132759371836488331340070687455336600939229944441512552798732046597030396969648947362940952209893495639076792584366297456107194770471163582303443932482658292441461203647505697054631112858987973356964453706514729759335062571160580466203407519124012564150953651321366809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18152594696737221816803614781153351741120955276387003622691372459711296273556793341304603570569926859317356040581288057631180032121568636601411977470610467392233450709079227205209609528776550776195425529946822036486232170547274717239649230671197908995958272116859060384226639340270116526267167160745085371966136854664883103954757875238593612384462864255012375286073054628837230845518746643116495110642344045043112499018230822378242922450319432386074298433776986574576907937813329590696135519177537946584576231558429080094896254593938207287913641253759518849735336791137865440794695940653544057222108095700495704445397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18135523792394137112492820478443642371138793489550394035171455428352832337118347958704847573734036083601463213964257739530714183941191884070709186698050783666884006448500176892020889166460600589270398877817446392352633325898944682404278807293180321559570292588759372206000984035499676912488465376672712283721484679085191108628213081104434034751478921771755892820039641395101348481065134417402165591135896467787745281613816963798452915561684254209087649251545042810705777952613634244876397567088284335788810382284906970961525874454782169253418245050123330306190872160708736317332881911037218895891353513653911350821129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17936547513666957086005617657875170371956348611514637237468159069525511883997494499319675868744070005651073183720748225763012449454549346965698115391395975609881978960287435669234074174003359840332398296148751430380138519964861589393609332889884664189144562699132577451750819494574795934616627178923773621311769166588248486006014624629372009925146918605500412531201398811983809150380447761419261492625678241552534310298784352147380270599502448218306285831534554522025723123610134652166290869235452617108219677464591608266672552085665108527427283300254493740299391669621061958524796577100582566877243329179232757481461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18803148896659141762616460120759099118434568467128147094707202917490337419471175941904304426508691383732368956525344484734611758523000476892890677317354462017392316166759195109226043730750719630654431836193171276837566871986665917459670361173890065535079985266947540925157691956436872592050464114103358622221219036579742114338114688119210526813992773476276099798895719236701630906314906666796181460465167688792859306121506120912630725958737447141088033598176787416552070938922102383758394376328588627644494625617915836619019598036876230840244261101614399708489230404779007168456342698268192635055213970556084613511809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17795621386587446340892069892344323230960802188613290699780331691607724213138301084105067264118731263064707308063860499926135392142898626723618013809252812829284601762483614476425316282534358615953523706014658521419869608789988243671894538255088118146023038176344431150631174838331832804517920474205944254963924674447689614164595092369439756442862957984906214332684615051440448928239395112344762695379582133957733982938184633597267532685225758310265587132789832628282306969572549337656848527517544156195536277520115487800403062301170127932471876612161001359625525319805453245419583514993211672961236383037847852055241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18203024835025269199159895687923153079017838876946604735384350381583451270916175941267779385688159023964734788760254260215396632742957737440604871251070541018838842773717114438291428588131323426929514020769333326069710009691468586329358308471349419822057848000865194786051793429017935312846946338361215689042144760488974389218666779469194527145352409264633616265729354631916324040448867791540913810105033948597599094179505606310964146146546528162137522909277567281996407673728933874260907823345956476196349651860694300108607188021119386604284497588283369847340408546439056540873767800159931408208470261345982027430109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17274471234932440058599713994025834092296080618482670131934932472993947970439739532550599425436435671125801666433830026710942967292138078086806946437051070163539017356744605150669023068055816563335995605839250788289751553238964387693360734459912607073474679485538007815062932131390421076978554660004055100458378319760698044978562675384980304740414676974705883465558023745388504894967423662373110048534035921226361524535058671571634899877294948167365031239356044966620718268005531607247438608799372495300948469083464584089749955653476511415931809798848517959033935565905058921559497281329953181840334853659514247092641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19807674274090685762269950036960287639766396154460588860299262133781123006925352459551024724191487523046574591368743359786438593900789832077517196701814771414634811623405636572640711520844284414262274968044318652507210222147194052658585240531363097192090190644359125431373698793677502896378302659588162279312803960073585162307212982105135440826679265803215471974949467198652792055791302691742224741400896616475441976503223137347086173111617396291610571526687901661451279800223238284706098738498585003582570933751767886151991128295387443319151600774371190933859431723995028807400408518148569986734300711816594599160429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18899662446239060351950375843152853031408446997846346348066467739393231954196243535240155058859181918684610650492228814650434490465047140867024297996335305038501248579972264478981732408832193183659349335836585252254559077630381905806977516395848960668922499864843054719387349212549380313300677675502409883657286273062747552631687396928077239256230882508515083723236802193771480661592286734684286167285779559982085869105788937267026239544151150978066692043380340712381793838683714882979723038040004364103459072877711595099061871177044348760669808342118472320163633248281698217487400935340471448686764149909072471095969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18708014074222192422552678626104274395472825155425094951195893808254606378364459558775262602685629412986074914227270769281026051546131877527909672159314502566309638526017744142225105156247078419603572030846292972719231442786683949676615873524906334374129455229932085371985322552521384769343029225213904017543530356262734334030178987618325901843345405112420536040619825484257544487298448628019892274992017021980284130849880279993151797815478502051274818679996378073813085250937055262180109511289503695594005687265773044938599597127407349347696023170133175054999481098727376557551563435812798223676172132566365504912249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19030663392960532341771426553175496515703951775791112173623853639121219916883697636703118331407577820196621263126110336870719467974613568959191617038114336369816459690847081339366028466167588084875638404216930542259719288809264497597785390620380031636590575964805559802359878119644071386516409236144436389886480403246128256434782678421820069959516857861473846139378874896678420980024377705670414012945173267437381733972739989753953935858383920237602623496164641227244869742782673483067447510536940866249805807385273059567603805060728972319674485044033594642565580354763076910563699652047157724762580988567255339541701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19020024088011674254023406013754712751942181991119138562020454057875755935952578773402849458598376739076812185833356079855181834552053095180212202019557152364518803951013045542245893093868486209280264697992947185514184361545799074891976663466461716172234797215106995399572572052208472818208786329819622729001474319906163568245303737956258894037831080201013209760383346377610433833230984524443936023385246094467923391897365115393907080094216938604915278606171694374952117978469061514206012650490558739584642440789367976937641799967516333488162748360950587128104467851191621652926900315657481947783431416797856285653197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18573470718030214101687273573326873051911784983816998291448538578503271544265585616099914817825430276698254921375958327821331454001249741301386176451853755175463069504050268309929581864148724032869266403055166110434154737891724128020221697844157972445212252743915259073497119902410397787264137727660293294027533591000938480674718202099731463160907046167575182120741395728441213610105483042103279821981631191589066590846560796267929121618810473892082420994859114008754787555870533391063411461349297244576824630057223898304344518224888016918693501175553281373155222920368811219154272776657301876436955106016420460611673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17739405376974040948551562046016930016429461248476335243402302481351785631290711589868174323124718795453670224004900860672709906371588716451742383762627608136704156802874940970833889083793328212650287545250833422653164291987851207217682223833726995218432693595884039390472801653722338497884796703440189699723738197944037117387918090622392691486861414436050924190193777643053644061396321480966963971621466480988208937112670395607186068633736719814450892972272430743844671702648264405565024605515571402995038659512167370086990440483977782932089946630679781734093355891122227960456146847532731739242968774584251275343593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17961537752755760572004011434366733355155117625556087822385801744311883329713154589252405970710590627807249390813975160098292377846285485233560205475754035004696035122847499381024109402047292215321868182606148615398932846389132080625201310776286008626098227809679753027029464173872570150234943895675804595411276653647344005428255090179305050347122268727897232060542211706443429270843494539851503857933953009215393346112756476445342489194271506550273830974151662477674919771359032386689321747045518693992427518060964001048640161537943499104803155471226025191041414882071734194770179389159411941650783752577799003584757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18642379349072704737371402377435265750217040305778325982755932880194319200128894547192111488847210834619725060748350881271448330159850707834012329301690191603401565603608600940056684057314537336520875397729097831303807178289457139213531876410041973452786135725660082360441202670981564672561863946692040735956150781829268379232803867011876289537614714147548066243139915166044515530536610886068532381138448619814816195490817084775817926613709461230350937319921095038827788260528852964459810662146069297152796272853253516170877253915359564942384316818583914436345504536716659499310124951614995436259705957574986405369553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17587171432111067855822508290708913385603321397555991691093243541891837003582871790543089766128134705743289615126324430323487647133447976983383779733299936934904339015005053840737206610062511463600086309512933978790778024663340291870360269074131080190930646502106832797436089598105341795972750994411060494348013472364741738070623877533591552830661268133142981273878208992527690649883076078434508107162682839152487775579151358993158751680804032330749330884088621004144294425763732622071554865078486266322012148418304931392665834209727387217237294490764047438005990399233731358983405696676469929909050525200120785792073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18153310351265870576549831863542845623096561560509179379146838828308471654481249996468219373932222764732830433836847562051898293288586386565302287410510201254580623862977914818047728124710219674183017657156902072280208851461504175748696055207593207094153931625228864749451574481974308948052679074857015156101050032080783269480490429573305445278606549276435067799613080267948500488740447480496201921730480022431119667901053024842971798518336121447387121280045344700771501297273873999710852606160373496090904526141949469614237689099204985735446071005191215674693158056271579444714635727123341363413875808948205249917337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26237617818750903883755570278103718262975713147418667586506231451413466834610796501917593632971282220517263736897163619360400438194262098053091138975691683727611703174068356482537360151197053476534180534047848353630442868197402375427637776353986307713124620755636592814828643091498707684010619915226651087825364740896034915019458017532588641673827816559193958590355612407048570878221924056374740767246060974511367881968848412728567212705426930644222130796398483365147072685372105823507298044512994643857624597672308503563751272107441419485739329438446816012346592837208764177879230183430002552251443896199002077366549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28793726704931493117633325605542993020001554263301395710344502640710301007162746609825028185877768000659831411316813083903165642757642174808951932760812554265466722089097622816887594022508367926435732256037247988687777734921493446000633616914374315450595559375487330222945808204544262860578878221273945034910085351188172522407979859437719787040492870432257493486525469345235681917103154153970740114358077355416982328764944095404299717249116682976886683445086033699928513907732140787714226330996168721400426710888519619815074449027235355973615975537618481062873565179178517201396681812704795679498001205892896529363827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23473025697968363505341737491241751637422849360994631862436119391761832651027426938566356034970430187861913868367938644577019491014283946107575825260074271481610660386916862374071258357023163339696153774976130211992998022352568953770731475113336552106298210026253111246770184207692874266373849284866323533689817161837149847339138279187217306045069603178661512752066812750546937348319560913522257093594130253699271004365347217228755473136402287679374193641518587466776196969446062007201303894617582365640604130653190333015003211248931876585827425347117281334487113641747099984107827380509635184102908172600516089063077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24962039690848553104980209434366894587203664967019858318009848157453606407747631927795523865462282845709733601166784383178310260619676798725767395340717449530342230306941871181539300361873049076401715459904463285316628650785411375021405170012521619294692389245637523299052882625939905192980486451805931222618879674116047255634407259951098011935356789826442478936159074074569653910390339517411069431618337072547405459001803241361014427126698069568967714920791122335943660062276599861963296675565889971608386270959660542833870841132286026045009074391891056173787324127944851455275999478264948623572984073126137028458027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26604446871766966885718510746919273599664142340033356329941369991565272835125298997709016021684217313329446397066981473431911456678811012925169006736130259069880005519292934828696590031850416216948357619632065695968577660206055834883286783783178183178422341865248307967108489233697949380130133569482949495341684703820504373024751451840161660479525530979718886375233308447367288624726447472339431907791483069872217825291809106050254463931317205781807836397328783276739569989179844382042739026463163583712090551433688639402075454468953383187885376240664803543272782360647572850845931290567188596139502512790971424922639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23556922409757142661099589605873463961090347820590967657324146883346038019343939515497688335614174271548284355957638714985298413773028002554566547094712090951611318725947090263757080390126084618550141178332114546831507614674180003628037980799440706210945086172974305590094671445463261300779718490147149461457907303968526128276444541869616293386784334187209358719381951437658003944233956334129078623366704853180641594459074088186665021490614140470196053275855973802097821987455762712971470842537342105619071589593324772750278651972549206181581866196907760160589576776509059274975822176795057699754366198293286086271799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27693659897924185749599340210536046598512221593370166234010279502049606877307155683277697137841035247383221317162616256467676428419231156292460569877595956612236700482457978868274270592779414645657810769362020532206189932652695122712968602569767266725800115270825167246652070855271413844266289147455859737938123637228186332246125871021860685270896386101679480742301748703215491203352170200325997336932591115707073558351727552591962840334693043174519530817677186327239955311010906320056534074503564465494143613642939528393649054224948174515854020849242116246295298141215290899412126215593639104718759760187222660641587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360133121445028205585615333235143286657712454268631264344532545926646841975193916335979755607250192498743057930776526712746368096782323827137493002233281546422483126203232317590095473577735855719558105438486344260928368104867328732367492191235217778646529643019924152341241269637050758499721110141413233378684209580411723321693742803648236241430399727935932165409056945929551559985591259647411750500357306073560810697554972840214540903352937712806909078085191449556749820812396329074715740985379277724816909009413661000539087136254778822060119152201161504543809081863899053829177939556609942107484106002269510410787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26192332535332112519615825626251887152037287367594291990823885744468693655893087600703785732825543286518420978210245980133951268509561402077886070878688596930784171784395745240413687010480058876839069839235776744868863166341480336789533050652004203117143391012659596611707472195069669181338811363675359248643069666613249898830639076443818590644619343979265378995790334957535037199208333000626630886943683517097600168328776374886867226761031292246193222161611361447658726350129897230438543490799971199502410357558296528916760123134651688545605728607457030241616512508661665051271594683157028648157164007956023448970321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301835647749846909050452922257422444685288697586791590966667933550784821461507254793190978844831758924649088034882132680010045379143182712438203415426547582291430537619340963618059261239194905652496054402455134986699963074220568373710001957575593726046158055597324504904586883470023933805299486737573728409401529178039615194674994796748855179152536029426558495224934279772078114536591817894485855719998892711771810540576499454253705043195827603952184321232129805288196171189055449037067479836076017627506947836077054226482614443720920783945222942336450343807084758262745897562373468975899056382366435358002925090367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369054248504224314656589605578956874131099611781207396939188094658131594535443168175704427517981741210133474275737351817179944775273479775418212665945852524819770608880283064146489079331256420086586620327667699181453275770300933575350975498779883316361832219262212067818110126451424272485833404870765118682025059352692678197938884077771133300863249355072378900727358437805765188010912912550507825258813653046494671478417183612689570131557361889526132980071543945602098168019155869332185047987557120926474635894396321493752437408643684551759447296026325895094172326497078455052918110893681887968641387272515133235863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341932311148578384805196525368023549180134941851615485799303676700199205424478416890477831982768674250353738715671001033016263135471994400609086536153460561728343669852672570417559528719569472996633953791382291139706620652569443063481983095246392014231330569626597337095525638823501788514518978220446007786331241367218169210217106414178055803181543485599268745087806811334772967376415613619435897892687315443488564511657738391858786017941963085680786128932953586788374725918514704390998443879706482043742943514490047765389994287386748785198065471820619522850070399954339640806944400353445058340326828744930317002467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16237614876683377364443489333234467072233156499295506499438282834685618177398893730100837625042080224190445018692168312202471819234123928162321333094380073642990356762305177151629294638908433821995303485292205114473004935827817941051388915720440274267471684306472579734456958459842898237612800431996284193492717345676691695331689432558108829405556479811869785581714138659539193034596736451470848943566954835939090390432784108133925839516601580400104445955691061080061467776219022086193041298162306214225768410031774252592518361564136799493096381514961670656848236245301266177864609116346859742180178298284348049864627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16724156064538011378989281747181527657141403924500857776923856898185151223695613054004971888539700064599302415024802400005539308623124250658478359961426739560724986978191077131859625635716330160362086779587641635462431831622480308732844335972776253377469733132070999467962804815581223817726242448371696726109884367327261303564803401730212098526056074842112162942106007864586324845246132354172230456070433192670446976226737990675334167555620748498765136075154051268046766167629882540309590061509401252632426152678238396439849479793002718934445295935932161908551040696588037047997972641506319195167536676674366155694293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338405240190218830648749949164258675807062067572826321296518320125994624371414668716460020023432759449163075005149551819285970964101478065056945939654801817658161383319367448041383014110875975924124406628697182969428425464026932507495871023217399602813833152645711656891240122615130157135026168348285460848266445237151453458992692727539058592089913924134922966987797055942297176394254400568283961389346302704999199602256514235897845298631369347732972403943515435538982826093515743537576650012332762368590676216091397394888082644569627011626832092438170561409942299391927219736969023032742191242350099005345959476803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288650940231160143120831071421707036817725703676172959125869881566161348823128109095802499017562932601170130156061519641775672788510974232007831171792308415472427857433177146893850411263629529066666755176086302697501021142182304392123933551829662227088874009857164034424754044619033403511194227319083002875785198590897103184068762275903451551866315714034614582710260068725133088851415227291603623483841691930759759769993487054924398124901980923926210256310334163757317086914367889939071519309915160432729545941660542458585250160392676428497292505721384289915538224621479631507832089451953405057979886436137948293567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282622365621425319033649162391411450860118440544954037491739338500933000917706312323433497353833013495359804514111781600215582592564833341960511363695739332733750394822705763738606378267822127395822041475137501831271382484320536784191052840130938154828365550486669625351437178714397808194655941920863907439177346096409424364214539116097709469253363188884077631657279426439426282907907641236278407085985177963073609314788382940898883502844799800536500323205505981664611578675516705607909598851127439027585799034672528230723248214175255151631860102083582915345781617344627471123321819946762825884119163872192678567373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18025302707574640318486304162506583210426807280166401082364681035198123747168208326741881032836578129823778556899453793151129652924683118589773965993189739785869395221205530839378794348581223925140000399413655988803167082458967054849195960966434142135220632426515471532264262279150749760646887425272664584691550496833996680626623938617731284067827481774308252559072703832662879219711329984542485946766472068522614861944141065209154331698841442894619470044438770460420069279643940836394810473090959316360531916098043588743384498862001719995578458651776507450609112456472519784572904606143875043195830333779751468533603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337148968182391578822135937808773194007992458190676293821712435277106023242124765033765548852287167009108118077524922082294251532112877241940870678029323916211897237199248628995461212399946348170296005103044578599045563114128317941767544244238501986602566978469733195750447262390810342304179843507514443389514886818018022883616083592368534172147765316652913526563389678754900532023619775294328590994832971010355658728430492232641605393626372713236156620006140456622155191966021070177489361339490343180934674955687040510367826460416121133695622408766683791976159529961773505941416461296616317075376240839407350835881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26207733033988108790400229601903175089690881249358052340631300341568580392161185486536592012568283015500791139593000870516578682396320491948574146746733835778029281848465561019741543970341754149564274562668401521204325272112287280153918036389700621003504701895046764964615381296539186568905103088833053323186994593464981973142163931204812472622393792433032345382650639657028677869749906771003472549348345990978547223403040361712131478187889688232605173774607857793014916919192766189405731708942789312498667502958760638001822976405655577626722856073631806226231093893741197991253499734844832096915633252111893929157503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25522855340072559554448287095362804403583565819036673813905391252871201234164160833272335344744850922630465844224228844163787679343593208445676474174041429775571355692175879203632709596548039445331024285188183169110204145166051044214994047160920555886343987096396276651322784296509127262632101852045736916890316862491125042917559382378952489982600440141448416476140405058013286156798044231235941796348194099249290424594463840929444400350698975336489320101350849872431205483073115080735964185876204545859650777672978394972862593001956676248334493531910504795168502737554013920607158086874890398696056389218090301864347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26907420408769438603841670950388640202684972413616001758878402677621378486797962667927869335160946076257878116401702513552527068058483518607814946534931133923791249427937272156293469712325609025799486244764733728144607605345422938394269650576910014095563627034283961756711398861799794699446170096164362377604936077622121119842598413826036329271487020410975995133455719228832154827485050182791523774242803388762152158190488548626552186065890989369473454208419618205618262996810955017913860231451137024325542840636747064118599683058226721440140660924924590840234255404055036379875659945296285706369290857072291117016079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21052387794423503972816188055614411693204052452989410950246506602905238521440690848099023749382811897914169105753028734715301367930246912951648070591141322725039305405030902445169104861589796240088171043069327620552042828449440124389276500784143987492830418927781576556301443075747485427587083561037757713976472154315708544929793502068728111937896072434884213205007004991905100437070161647879651833147400484592684554614448838709304245858420035308272779268715307454471417172469527571504944980345495152441226486588252667356618245011666599999224749281918236521709083074909049973962923989938824800337937341428104908534787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27242129210830078818833904548700340908013129517659725367111605131075456222430707273916960662071830591099005275227987648516820425780513547095321382547101295000374570314978445816462325610750299954779872608100474718974027629099016410920392195246481618559936519772325906666808507207247223338479783230096246782068149363780928562641886817666431072968568033492044789946227345136577447855116444065269409980703353507056604841193690150999339115207578519768636956090445988512525823389490912699991433179366008155618477985444779662520792025101063567981257712124953214074357013566006286514811301244853025963899972203699065942931281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28556913983168129008289575389665951411790944745147752213007457192425387820781266330275121527882856359291369642502131168935289144886750998073210651143330962625684592092345713431020168420902611589837535692695098638044211284628492416881669320054518990834364649660683496032311760136000301116811368286519225946818157600189647707736670094580420218420757103625614967569106313854971004723461033453089351377875318529777859042746201978933653033562260681061327587959303626236441409458933551215332562379994416289955543612180874430864904712362068870978954992789514391618758065780504523893455993639098217529023904199002671535827833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31303828473682714048084412344710563644192321163027407753076715748064525334582527410820472837361217244807517081341680223914435054884444037444825800973120467100671759796689134457877927741073557546684628078917259104977795812894398412622374228642063016730958462149393180552571664041184576175456016267794078139770210725473840428485984907452671544448854146536023426943357251058362971066214943859362924845612494594154305744885800111028473158156038299290880490767749314692945642937450915919189319308493921706882320136721384133214752400322721564685477175325057642253166269235740951763182859751385238939772518922666370885579779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30156199349848596158133888325121044703480192741379760260596387478124068972005017144895714244486969926889130371786020858575362399240387112205392274515199796831856666935553393245863826565404064068046791695659004877183984918059711000072951281061680863094288961374274752074654742435206946272432951683204876299851745718324808288027674343013245663403132828419832879695026287489089922283369125198895596441804453761843640773509890851000107572214598200683054879506984287627707006400282251942274134284493733670055456650654870356655885032429985124110338363530284377482207303991829986555073237137121406874928411777453485976830401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24112909894369308289120122181236069575110594956277571911523334860354544755235131316415841821499334539525869117257785437213659360460508871897459690952999661207085302368793575356306953442976395545431828508953926095295854549515750750730007338050639642155289920447821013218672592743525134202314104608573747348019855530849241989153787267765829523450937375637547644735620533535566545776860645877287418215383796291013558030833758408286258393456412373322247192309552232404910155166632694095996544955444819795511902946496749024242148883160755516454867151006195173638400725931562255515113566238634000336396022915616097988089893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24437645593409071626949060707422282589426513286058448366781796057991398430320627575388836588231322308101585816976553975636658993566401650171681914481901870254723685242234835598029447932140142403541652181811913024963972515659380015574913409423655767033870205963512057785076594127143502539407090151049056687791982644756799643056560671018995464233686415403287391331108795524555968463625843072828283752153457009416105598291534732690944105143197390340976434303200433735914886801608013162958144438666466460866042926068237405876708011576730512475519736100382010136593194596871770792719654992136344818134306018942320810499019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23359626120070134336899692859531985254618652318340501820834287591450247900137722389199102192536556417158290000388273870708161101614539351556801665443388530882487363897680917611439312991673482835833299513017771809017166443968043879168119398622824138430205644729163042598861798858092256290619698638610841739771193466845519899443280864034997882808289757571247030108268063403316485536391085582215783274628613094035161182706194912829514411617413237509597746444861125600253048828242344408972584959788115338165153882488252658268024328763359372004916465318925304351247997011195661229323550222493083844542972406314702913055677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21552321770184612015923023920964647710668242706282254352079550385468242014884313944865444111018763175567150277492258987647893268993581645054430494556067871427372424195463956993418294784042089172711177422288228612285236378877867964449393966827696284692433457826339343930225814110232490205767163679936651305086920559149507611570454511818631775287751517866878403721624031305669105624587350995596961642470236263767971477095076826838691075706940926766203813738298841299786523354475955903225421710834581238311259659035764795303453169216269325877115323980920101304477386307595089770678509225908301257005268876225067641383229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29566438434199972696664835346521356548724527593957846068287996975170353059738464181852594661607002976394466216403292995982126261055236650411504268152543482256851467037048753680854100715618563061537123787500778974807275137822672344394696504790307841499511807281641323709547086837821682456450857654726523854926110814753591680869149508633932728244356783755525184422758210680992544095477947044372631028357943268663172282399797709155554472854142914956896369521714024938421774158249730534923079752241975285705388676157476242321968966614300892972049763252844624361603435303745691037298469074229292595366551419361709567820917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27220713594950806507501348467703659037482286971226443531048306710426986133433128311731390110750562929243616441562128364078080467472212840500623493136871516648150722729055482485415621414052049956019598517404438005215402842528221740210894139407908320101319482779509001339213774988297127270806035894078258144784085031089424107841530956473606427071819444502086570421753783182227370623222263971936785934400915519342786086076511422390827600902966116479520808899992214164175568133571965081419642794557795397155943517665455271420817386702188097534148421572445788062544200777377027580515150161911656892872649063547021462085047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24515353516935751596561783244395418921715784601037390735476259897206847345138701650477274520928958240720305776536637846366216107115883476511490077447652981817743838282620482031923546027256833456496723267110788898180126852571093163097416910486872905825906506260936675225950555595595488307908724649291347223871302368172715725508357776311735706140975999072794730009776628078797018885563862887244259330236543225995764210247526467176712393482152795309483509276440968957278956914785625449469393400402111817923130231737927436382270406299405047987323589370030783828030671574374583413702393934565715128970088015158372104227327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24829257837403930781192307792515807098538546963736935586294285809626587145833105803033400408832945990386646096138496306194794803335553292470951420977797064002011527028278442471531529427774878922813050545519124188824315685692535630417622027915565064941832500504878596491588198926895905833792792351012040201122483338793745884928212960511627181681642773608700724270267816659795027474577944160161555671210300781526498174331115849461731270169738299300943889793674782675812841281426880250192326614105345731150068027493621682135929928927305517138845584342493424526633012416881335724972138796387937037704322439231047697417703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23632701322794510852359690421960771921588703319675956502198390312892618656977011388221893801414745840824913568768221090914706815383925006205689979956639357838445752743834940811924768486752338703192151175261930676920101038906369645715547059121353825378094806071103005909662561977112396406361754421649449792512598364827527803546694851108041894536762180319189653324980384267544559896326308068851729880358587341831016069245989501480136240823546237703319019100706267249653413168507131721811464730443092613573286452057840609980560408889172193763448458550495554407322944509942381314253848441455839045338481273977379026415119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23987875563339941273615921132503006511992315017544288805011803498091163739782322726052730633630638726524077331858132834481931310499295425800181129243816643048901241750839612163579491745302166548738972981446971205384544549747508670668639528046957150467811174449080857057712970161727890342884947571123987032628250057648275287359826227448078847007448469071854918652848712729169376651841593338215088067878228553876162428188171949680065137213658260609386988652426362592661969810094167534540581905387655501754338489199860300082500781315607668391767994608615824639508298380963472513960188921181533122671103682327331305973569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20694834626323863096386305852027195677066989558283591895786170624680630946297753935931749180909061030686850145190154639556485549291316368856334548133809366903568795313112666047768792626767686957134651868937102258656317832302119793243434736206926185917304645733274242661956832391489488295525258428730213750307917943153675165905266628609867373112636990948759375077707288439728361856657734394997091718843608843761260622415117446574322900752049108708896704579939971146264485583215171930168610531866936671060402846396432440493502115841875365087718401103471017541224952398999065783689405553314632767326983508948038047332769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24571042893348480240687207698106307291648363944784874466891332528091923304538581596165064632004805507079935683339426749458206674631209716075503143094766882183586767181505441916280245765081272640089285847172936897848029689161669843940921399660576569624041252316527679798110504270161864475478994131936298424924121011118583499025241094992360491231171463620830609903562308385288155710635228507506780701206333591914529795478073646805937846778373409620431305573422525440935089315623655775915242407426772563067012383551646013536034689246917776935065477897584510439654128685976252032887079357883110526495237651033800913264681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29284867777062537509814519636350354846954696435578855228189514827604024756314525460793109706219777041567376049603104246962163830397788008324887986250405207201299945364950797635083258883896465257067824304966647595522844528127434849319796901296981883640080255561656842504178792783755227765820073315305878036398312554128261076843822714473992242664999710704896001087965913867461887525085241462354849222928966875748835036349749805758132934515337308506272898918648050673266481797098230333218449919202324467649071399698452069565144941831177351545355118125490190209050175484004027751020608990060979433197129986323780015002389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19442517939773660374062282907299150438019743804519392827238480324289117033928995863385131893896673231726568248652079672368920889723179523379521251496206606658241865947554187268944317047900406490202715808437166411536503777014317866134379431152693512423505264235589757974513933507200410313874769462033572283013147079135237766453825562088813966526097031097838270649188748423861492715060569172909303899885957113287123415593395805351023055110389392476096628345887109499542510733333222284419769392389021732930800133493962396241915195500212430438596383151957958667063539522654077409957904208908170924440826218389412697523483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28141147899122717144988380950024031228984080812978372071528511419805616444438242564346504852134168788940051220315871239458433847582315192780519355528926290558203987159185482464343790229023039650552561310341729705216999872498165034601113839865289804302368362764871893450511486491184171764085544337260102093732879428986545013848892678860783396607714576433922957375910347259402562797384874350609982900128570060494469702348271738462964394127772172080692335235324120055293819848263625284465911727381437865947468443915066282510800837497150712294242194497908302230752581336559480341851973617132122523777336721840033634971999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27233623872458368238110263893540857392249619640840172357269820371491471347304454687362512876109131676931485965223873223908380275383219785329232802283225281364417870399941068502771938885876781647842889882167212168219552279266598768495253621197711924142413287971126289243637030528869606955543797571809846242869759738997124759725151029277895372862844076473079713015654988739201081402307087630365714583402747554208311456985351719461132336088969585444328835865888826710756344907076096226750003783365812042150968294160995434790520709976302072189180873501008661627013178660873966506098405825306261098886610040796768620935801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17712412403253281866357959982675684785609397757711313882929151910870251195501769238378124579977897328175407374891995906641704338615422803915938484222346205144653391088104961680639005499953584351597478705439317220009465607753641103330524279726013070117545725082521088878963896232372223173713108234081931939314557464402809880801177358076108405326081531081354958370300525005822305447801414824155301182789942707946380399338717838079254901965594854289877935799030227935065746135539971082216172572755427670450525024550734545809154909613444170714089109285842719147255608434766827204077931460746355044686855746293834444645797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18157411374981886861898054589636747047090360817323753004086659754222563878847091344370215373052621129699707385922499752725061503669395442429094799093906303735173627410933463172341273177147650199380697215045468232308446488923743208761199132677615778242419764219036283657977287552714513183412310903756815590664458635294170072372226887829120873459694203324515522112238269262883450484097297437066495812218068744287050994013517790821338942766075748614513949987938462805893363659288343485963416019949878477480255262107799556421189436135823600589182806543940699058659190042523514756843514421208595714021539543733697861347813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18160694670959113200492582506735395782360466964294572853232410329995443027409300747585451118087166962142911382122258276110658875373945474857071895077636961788854631860920714619824300755913657887604017185204545014268287656950205650788344921796045339391115840311946503351179792305959118238548562667405160501821692473072666203015894239791376556443330358675889541912673060687387903690387601395256294877261020232284380926289759768489702151526632725476759271482353053823553413734968191695268318841269704642087852653059835088140810204781437739220275468695554937381544185456816694803391070971831534593316031061755623948352233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "23282798525017320535881036627458657314767193405393090614712333455028139796053105772569584400212354073109382067003647571837789411276817619987143051659601192760383339738257873342028262717490234076947027107182286389636866932387390017529223352526106334721862136510147455621998577664232043336136923314930010941865471911333489999634525093827076751440178206804347427265600804760346116473314817707748692513964047678182047254562497410420069907069538768647386102171525542758439975261304391982673776071671830086762319784808825357494530804246465291786752537232663717804865187716743968413950067632155078405608485580474797333226237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "28355017343142835287755947710653144574222007165143128488083341420708060675636571530969232979541738182932968162036459415819892409253204432905614842302406299625065314340153684277256902599238579557514049152722269280795026746943053547700776608535129995514366907211897086584436118461874648927348712452912767746786137725672813065704724226199314298858961371621792721727631935737177453033121871383604816102740045097718349013846047680952311260272562817597091862193667307658107443739962409561261069539209385360544370839880510355297357324554382369985787969714706621787539941766635700611733950682574620374516448366475077952502099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26599761101553052709942838746781146745770472269236675581020327840196233088239020630334609915550078336736276074377644607418159098568745161268552518920840084312497194811815888227863993607881058118116402449686848896969290914395751435421002534446705584598428696087860862063662465943508298825030743150527419904380057011626104465649147061113821817041421652565180971836392485584548171789356072516198536817452592064105593263123841674729543729354668786322446820543481443910469076532305215080002509172874219828027282044106101042406439581928669818135939969151941017925368705782240669271120515219335433783006425045454789302442077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26988927023969006421864161669949650215971641031673440977690864807440576255980083239538982223714240965758646484894001857715975440776867236223568273367389292947505560061326850479063962315096709034302827141069401611817706873587418149582052731460315209892130364796948027240663201700018035950772738176535481199388662423603480779414136390434581283499057165094924265641215864198279494813574019059591353532455219267898155408270517501858478860645006263336350777645311916888510003457427785684106401470263997149128696204599241440745603022032361290629939528488483473364636624273118533059421048882851025427771644881056640297749803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "23889548880504077532957575644675091950396581014668570701856702652365720227197627911753387657545084617404534567066866932408286588745778879342120495529784228597751073761974666695695790505989234893577174800014766484952238730651375909759240058731539508615132068571031441418207280853632753321706679762215522422229452090608150114314279785283970303273884970177525400715511487573070644599167754774064855015979400703738850023669525572229522022771798358992873103774635153821730912214182698857312357854333886737946054182099040989594993387488547270473958835736788932144845431854613109068015561811299215249654163300071944229657709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26698610598710559548980541750324094027485680545947350982660049230452876771528243254175237916485949549667650561472365856164727959188765495573225668863789318127272301878978929649782328758843021677711425958076860184383963093737086597493502286837335240505930039380744497634329950711883510716788566506384142630798388847411121319374575914006598356606669991862682228032726124226033987999302465995617896925438336078053913375758166698508090749618672078793428023902760738160443323576069245818330246939878549424037504184438535023620381986941876420434360033859577734631529550036810966743765526785174011536598109583717002349517401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27233623872458368238110263893540857392249619640840172357269820371491471347304454687362512876109131676931485965223873223908380275383219785329232802283225281364417870399941068502771938885876781647842889882167212168219552279266598768495253621197711924142413287971126289243637030528869606955543797571809846242869759738997124759725151029277895372862844076473079713015654988739201081402307087630365714583402747554208311456985351719461132336088969585444328835865888826710756344907076096226750003783365812042150968294160995434790520709976302072189180873501008661627013178660873966506098405825306261098886610040796768620935801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22742732095561619417529584866346894124108816645421108681199617930927669671918077376937016371483839095373462559095293382929681901207683049920001211597748891265295445963190202362812811873787027229539269549377170814960717441832734135365736013600872059306077157663196667139497365907257372704653052000972416418537860332754553066444224953575613845677175021326980400003435637893111609951347128377342753147872660794101657969427873647882707222896788360930028960993798132311184362220395789825497330955310294114491665597806973643256723060411263005354527925442037732614688256056078880848725350902736427107662852730902938592610239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22650014874114729712809161057725862340860281986634254379647352754809891154246973926133302899326776892490817596913366023351923238262425338634681964103420105560645558730354684316647863964066666563775737848544840204217390948432681774148072122178431483469161306307419256849679521141221480491187862079367242843064812065270146458540464367954445496966639034792145130027553062980949571353547817972863212436612537351710560311909733012245558125669514511824300610708981817810769946943760089993890157704372999515918277014817487976851483078966723267093775270123485088479119959880224901205280790947033386748112509300140976944248041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26578609475873561936769362699996497106340606749093191339061573290559407508707577275696041858605880943039272387493547020669334561365228236322652639640735919943049859080206643742398598565266061024356336813990478965466149433251726116629743278434463599149536170011348348247497289526719614303590544203788911462525012926934897567527980696888112892969996457382298123169405734099302364303668026265971358929145322978484239352031701754107944499434513753898144886821128547737695704894333685754831569141464049128344211482168714224747621125155466610459515715203717469707095836384351350512141506818466444745074796853350533947092837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28726626072687807972776162542097964156642376644221312164623967103052438176560897276792117726757539104757763685160864333960952869643482036839785500634699542451325159757440756417332841425965491220058980796484893727955882167932343770095295786939361514604735129422326273300313353588610348656597552010253531839639091919007822349547023363166221239651141837325125250923492547464705569403404488135111101210493526104916060613003244600467258490536649665514051350383519966330292220330435398254761047579222262361159856007050744961582264009399135421900465209716798189753139067358929317077955523639489479931013843350000338579142259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27437614019718138191188429787650190484793545391113460946126963159526608159581956406595579723995510937211676745624494800432760800201718276673939007970795560180627073725078534754979347161161222728480999849297090161654191295932084358122092561662391499771754250850174262426105170822112141157495954473817941055638500898087616260452790548309451344978470290446998589322877117745989958533364599485986054344493340585451859996737774261303285985732932511634771911206631951771063237248781538129858154532824905288068363660828665533779217512934331981150836643075162157691137948083325126878476998234691787613595115346428828784531363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24745046010622135656227336586583028697117693554346789678642264354112974903767852031856159414878695116398684567897248007445880272110605944917155112436529262799756057474169042978355653843009342628471125783138557484276108683114590582290932574141661505891787117935935197175766342379896151416345401721660798367477554730004181329845769219727287201799294072856933523848010245945527715820796474992907692885207281664849102411417551685544950699526845646714562242219043069249597106495317179272877465661633258382134547414749616632672421726141411124956965210723753185801666995250814515664343947759495111634423108361672462828295179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21138377393881640818865088314557204026837883985697095838752873242330880737221270279074698615389017597808498727902090165337560559533846092461700856037139919461984470582076320904488842448447211355037826923076664535968835944837932925296710750286626077340629681421342576750452426927257872173822065286972117370523211720557575788912562735046876209413700600687510017683629874473256608648021341794396199586569959537631255774360072976968954704308027822880195198567680775094542417106737883493691745032815019301605870036177588903190692009485513805400927773010455264973284381832904211087380787136967906137788543895170174897676959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24159543238702726782552099020616541033806536938183466022264012027805626996538138503359607815465404177530885003955376899445831985596685451492124445897205479987915300528007653507678663596623758337636926157530608047373881626609588319583296718311018332370088764234866225207315367441289840565900162994681699544119580709518175434076310456633730783814224486439267341503724248274293011650863090952197367193619559880882101266487148014863210366305129476499944733412567633802461425791793335989320554979452720008170768925614188057944061102244491249567055331881196957475212725781702219071646750856151916564385383171318046454571867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23157998198138293431721954380757673426813114736917343173686947198089317414910871296350457998675342427240087243304180757298204729156819630804430466009353890269885689183798082942300593975057647127519682688274092485657564390726555584677638005601208365454120535800857677933200695020048416585074043824262198149482297758444587329530508026514699154087488429871659198005527509011738227862289051009785121140638205987515023024059313277912879883428797298883017382734371625451705003729917075540006412290818771626885265890353406926715543113007327842805920026594501762990442358811256951282923348779448798896981473342554600159992353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25163838522227861832552368236517349307349970905729526885903408685880220699842516096757020212894887188246744618292661306378719220254956848906846907924503033475133319403902581865301753317669627853586135868735670330603705106422306826425950468171349888937501889532470715729077210581340905338065344853382867941163381530058783208875935588269201093582309403078234181124169446379845844274061222642416103023338337894841559749548258150531946424019320435323653654550997121467168292025715695599485614405617278696687829576982700497845210204077773518526069584825144175084645968129920857114483922966339062418242082826197820047019771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30883788296835790063891769784832272901883159959949016931441930520926308474262624451516094229198209371047797942880133624910583622797490080536322256526576324651561251271243696566802100784498072460073186624420404707811111045878874790005815017242443997634511588160871381661470322054648340153860389916278614660619232395529969819477528974946131251117229443821592378944059896852828664538757112141981426503581984525166663797500229579086421134189612524568641891496771528708528261734390455585641912889956296808844251405350930304830350599226392543340549178769878453259226896161646345663504467240666073086966620423246427016246471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23667286163746029831175243180348693", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21087693494177102907286760782869885", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21440377834657508724513949553780436", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22943275852238144978922042938478072", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA", + "modulus": "25835711396793442965403251520608969698106143505536846747884932443693441691061259176313937847795307565437427714974324544967222123507742724528914356526247801277212749007126841476382542109914627534564165041939337300938140937350401665462047049417683252650515211574576651880095161380012102412115866395889187674440292250806242732689900949847549181426610943898689992389811695671724548972291277715762290954524561445387929708724312123082225098081025521760123621713352166798861821531441130440979982090482539887621750456683368407786665362634672889619033038113306250731511012135910036935944329917399414833190161957312979131967619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22765406776009173096823845671009627291523240775541798039139209660691404079567591751549319415967911560490127282457211371480605296905391744537807107932256438389870248117163355449595784872965190426411323180976759814091481799093959316874072513314606201128872403980313469514138169669444560296088673973254620554265817154123507789395814448969204682719515173014989311614636008615673237850240107033956821248406316709494106195264814101654057744299850311419319883159750823819561686536607244939831503441980521351263439655206040668748463486803643564901083639515412721241159825917585941238428523168051773523818312291414831643020763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16730845779311339814007088628168046902775425174175703490994676752779013962614807066435013351364125831878170568860520522544862880616439439612832161872557395897703552452642293065943660212621042967108157260285050240619046382902935239454158952266259039644281453387938057791654800762020988318714808488795001443458143141830562151308169643704370887809197615629935519355928758386820921866768525033392083624876022011918078431974641505987303797263189184194834915437660604692616691030687235894032105319520817359251625953185286743696668537118979531965924175246562691125564146292648199732677679784041364529359570834834304808755229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25780507794485079152448460340462855713244978729000405453711708237053079878525702641852287566901283858811521188121894071212497357341631393481890434200579624693990118550975991928354996717110760720023858114767661570771592677402084302826369336809095686244253187241411469580205251704690073461947866939696697899858165716683906583472872210554297744800793016034826590029206514738955407851620944934090179433866223715984431645472081885029293576244577349424927815069279447912986439037872702547484838477933240012296354138582782030778992370770470808308982447969979634757091255021465902100083307653107654017356319806949743097747657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369937669815943768171112515544710272020268841558596539891164710158333665556510858164455100007770406954791056023017993754433724119236383356863542600756506735355232316107332205311644015117575040906837787168148436856561882346792741505057425306435488038629501010203140289454594937555445511512804849546148447435112597877670645384771046880325592258490193683462986332838188714340323493612473451157413765752791681698821964574112195813651993933125975801521122986652773829778879893276025802788502841511314273155213744930166037514626500496372920115543087033457026063086054309473920628074396132992663334167932940342867483117813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17323852857394919519800188753428003957914602417851011297489957405442569691699920579172137576880725855455367339594502061540157424908224680300738191657873644744607392507845646627888295526483104078510451625281238920807802280878019742383877835421940571586756736295238748688731743234659668560953429184461934400654072442404554897070920763015874333040317484586040772701300138210489951360157155203127729348989749878023415250040267311931290794078423883909517687677992508862682439356621492188272470151843813170462804931091123657043898297552396635251551208259372036488887821022645017717753131018220165332787893289298533704656787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19005706466908561872443199846912189484440928687105143295671382015866503604054487866579912736088434488629175825304443528834100912889354707361639746143042906092630294986406483092246504435176620383807586730244291216542438975771447035986248006430324082614113463612519238146368577602765108728895738560155627915300652881630191169811544737410667961777382323291262757620749593605590873476737628422523777797248333825455228089351242110575403277098606531734836069048547013030533544282050308819202936332984073828484714451637310293333293555655405941948427420205047263094836149632142018940737859868649099976761286859438959334400539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313391529956232037910615486880553219743711564695790217348436879455129871544923945019263309742303767644557006398220873249981868421974242620224296987650860167077735594564202412273813299878074907687051645015345742773561215764872741823110122026198605499651085410229863829545069762455789919358978077679161662644849157092091971446614474000365068573990821856699920542661416702320283401144484673209321864027362037798589913535723182635345408473268634834705297491358470939051930626574128625365236935092302929795633399307178598001712395078391144405533541212124434613628466794209657426620205508416739687394202140362885945655189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22546431613607207824912022189701592981140983060953631282527041724164992552935015727532769423604800449374931478403700135400170912716057378992911919496072539805715862569521526531410564289538577770877175260124296518940470238180529422622697838521848297086851918419860130660081162554078161116321733513895443862547508625769218339620582771221559920657114336357433697120789131509913636060333852058829321001886667745837222219375496782330649699543059170655782845799201130433361663142079616479896892033757459383898582366241350774650447974051445807728930681350332867994431156421720286927196905097303489038462537030231924084627999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19364949384467964296539041798684225290385933251862124279279326980336239462806511378567565296940507419845467059632747749112337118897962524755163196574930492081646109773979688264468239174583942720857108523570075994299090287759338904592577132143607044681713921372569188529392636670446657113842914214462608876054006715192029192525678000040936442118921607865638326516682060783714746505768993287638487378837217915892337367739244292570601731158289557537439821211221214462008655668134641268239955511599857281085964903931581243069696281871814558288492064449373942064192344105281704177068106446712326391136409324505682399554669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22090806211709748609056867305770979455289634341122278190598207331813150772104405416833300522583016994146624961265931509656269622304620068605788380726672032000558726889017100995485076989312502261166930122103129587469461218143916170243700678794082267671492863737433353206517184709811777678001789554422259233799048325257048384817993398249797077565614030079780764198936557723418814851927349703350155581883645283706968146455728621790510775280175191316662589219400241573745655807325170267916706057199622129332942859511168384380342636682669146990197762186397709438436005171709591208280826694634563966777225293555619837765051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378171469697198265945822709596902927911314012111934459166581316442075229041318668250811064159328249787675747139754135831150057294310306078512866291022927254767002514474288379618106473441018835326581721375568166000859534757076923686884158499452212755936472926878917134751613961594653318221995839545766901239217190244337359686573747242475475184895833862310018210867836812771722787547006138149589854444834234251714116400525397600850371478896190906353027552391095239054932017220826453008999390231486652829865092406843199499822882262775881520919193452251130273643612252909848971928935503270097987228026231249818897789297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23743524809092803999369058255542212082445997638600268257266762087675504479335966743012151668130756336826751176390425326669104456486008162998560492316147659409680164125485243023952288239795970780933160917584175846343309162983916401831469807208082430888490583313888347570791190643970539330599043893090312546552367388446838488167876827109322437105191640256677860151576753295796761684462922593738069761879679679631700845664618421815549014904128940908772808666058073058055650047723067735540201848584105861540226474012609386867352417636641026905295503550188513568748974934057529052292535500832760578474652377090799323311527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21687020816060272568042357826847440664671012537022099085250995548278743032483672423214867467434546284310972830030303383556380473739595038485661742088308503042652653049259067297984546255689789740229153384131146262135104902275257623935146331211242822596867108408643050976327082926789117850615439102809141211014508205918463423058526052345296147895429224385550153049093969538696688777661440463309389838354066733277097014048207888886768417616505046042634706973199369460520238259662556155706805227163216838823038224178021003939340396343510883724260926332876078071192240630181208713740866449858766383220129104184733361372307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302605329276635141719133479340522062671077009136944387518058573858988388695721244740310732992260570923503811831697728506324580651668642149614052434696383165088183209993576967725270721639826006121283748047750733442465674829434766065262817261616479768667333674983555387536806115752805170930777475729084088403399002202289550519302433458140403858756518481623082518361566636636601968092038770590854822988120889991417955676635720816774128551397056722543789449868037141163798066182548931390417082377940238898978527789128852565638143264537216260510096286708767093575157974243052669221002390044428171753451369927692990453961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338519422959167885946913446277733452774150504967839300817468861810590860753337955357094334883433560488610676427414105288378301640100344313232906387835730422019039504931299710913752405669295777676469069033733899601153374778847290879674941415315190321311925958273867613463506985591792658005502665306508320131110230052088543637231713634251476479161106667244149525693848797258726803061612033258255588337167323667024657730868144864332927900343895580063346185627950809032117625620855425140723936685145233534997293148222712458278710175165177261791129303168244562195511292276303597355757666023121372487406613556090694918929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24168522622418790337489786127623198099798403369520781144360631090054676940242371997833127754905031317769939459725534921258383014892940701507585535383509113038533590000847767776828157083822948390779195812817369816528371455180768782679650485524059780261244483430854893937955972772037168813355624699679806833388479764868782616792264257693652886510378251659196348968122928763240991515330105734539844854705306145830269042172458857124843083683919739576041755749315975111884396004300200287629908406486374151608772862382960747530900493715834713489275423482834766911502069474349140449517860070494619236154157755262735539100139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16213092271529127567760357661155289120498617039909185076270663226460295306341684407242824557272289833527745751390923878156636858194567173788964399112828799306519460219406939954618886591563424105296146045101970528745129114454767944046974679276214549428321802732240325856783787829950076852637050774766580466551636668836595985687757705680834585616774641965250319265599966120113534716854256424105626349671980231584614906845685813476656312329706207452766018391809503372479100433865441051509156473144477273816957484587629545961212813664442254260858315840767276548926734131154282786299486273775932562978551375189959088672267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28137792549542299939153833799965245080464676766497678200362689710363004795314395382572053354702319154477266520380982228864935210289286218904298833758125453389272283038542462896317389298214602668494775111053658724053162351374068698079719618822738994871590577352696464672069580321928230841057315668230944634667956937365357969202871090161113959477058965885586186709269938668515723059643506519827555390837765731035927769955325025071242818974994675597366978429856883271943326800193912601034316601067154250262980751232888897628185045378142951528707743995001353047636512656021539250504177460248098093254193873207284922898123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305921549713237997494109673029767086670502578967035594754669275670338462310194836224061252567712726641739696387373143785757013166163751779561154357625685509481015640707341757446424742258032098805845263481008269566965720307141141814559335023915529285546868997139630027238423471967946958333630420016395831004447718429469910031288868800082047924864919641972910589406431776885870089755829402092945247916041126457155438781462889380967547626455534065358372819965238454696985235943836975208533063458650337932284304382759970733168356342019268412263543838231037967043436281489611789207759008285637231805642285142300513394959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16244681637577059449208029481086772166593098035383832870029293556010040702693739777529084887498736569682494250575251793840339627299562905099065401809950128809570525986865995475126348280784059268182334581794158558856187318313702675395786999177701409767809773853608448484728542373855715167793343951742398371192494768578813563636491631136805183397721588971003154222479780797199234672040147270940463413888663557551268392814805602673797442221189173065237718211727300205713720366976299522705943737013401293466193495806813475432286582002848123446984349202591540281827591526544328298089599485935608310151730652283884078427079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16390236459004127695251527190390467066250924345500880402653729996835841046766975081806082592775459830207395474174569699217688544941343922554098264765168197032784338868097161987429406533035880409514562165705427430312610929300306613074129710728922219418118734123272870761740589186603178299590435990427454554019688032879296178092599585514115629482113237027285816326215631601336872412613817688393699901677388468489280648042303917184573170400787273490847309079018416317591315350521813246660674131057579606768950360296112326189914580565827320671600627951910210076389372607309687782170241579840463629661476731593360003748403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21100011075033271107240764889250163532680510146075887485952803355518060484750316989831054747287686591624348769837240259342217504248804020334382461639161339360577441132554703099320237485391382237246983489256848968625821840012788315077542157462192229306950502116022758300674685105492084622834855611225389800525479401781769168891226995922327998194546482915852948381550887245396501794720266612230927856554571946633566130768233136433049138923327407735698353565095026899003617501780822560421732927751582025110408494564594660183359330417846243813556860660189185988187344475324630458741192205901741023680551471076590365450937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21928640087107227867518413272376149040576446355893985570886582744989501678901574457439006072070376424058033679196182424980830049641286423399611462187401003047047538453027718294972976684266593759002308691212082911079512316152064354801279985929963398943059899220911633503282921802249589959672229350825814134340975284527514483409270568072857451891864323145767405820657376092639970260158818159691506617933881014568790844940171824649923686893706353774448924855046884384116626125929523172338618733942031826981697827904699374644065698148597731035860273664590465346244728461560819437461023897733564879882732828243752872471367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22893634924338491993584000795414604618474820717312524120187473190814667416550607844091216360594147745156833481762232772544499213315944478917889494110212355482522495378981427148740072798182412610501573830631061472880565844814183786134993981945737527549830336014007735517702289560762264807492600706869915149014768453010579949949746139102194109444215854644147649759451557098204625037170272780733957094153216906992833178395761436749858931208214534339023186576242327941450865315941262943052749916489541067811309598928257036889648786399084921609086698018819442493543368528811011996197180744971393700690169436448683914163417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22221429791757857970298750136429739275240115392503179867639017162614430351490403288799916063308938429416600854004053682636021752201079574157228525390300198119296150834310380401131736515770762835355273796122450387932898657748876970363435719168739191570237211383028313942491479023496320135540387770031822825434932779702700523483522338725273546044053235827392116341143341363932140651865428801459605893418324819735039420052797645439466082299106831483205918448961952761109031973783048774003116209448335830754472574034859756008634074800370401417431341634477274494071410905129860138424253853168011369748529290635267041020677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17067571534199150960551058763990684400807291093819275404484124515145180262899133675869589183505353960437330738686446701788687044710071435585017225851480452845435333923863260872720215621755032182716863139035714641718742763579708399553621359481755701618861294912306016350865659947533830921778992471781177679179902730470245702221472608237363636327984709588606249522864281226233125183224626246713719612809778747168755686669490715892725797028341720468152545550092581847291364288039727444338743478690883649413345288070337721039140861048905363983488302482030122441179764193751873529753835334899234260505644134938271339163233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294115377898240872994641824891898260018887143099582047831082088450194438508284477220457993935846394846152839543607525134561739246951976749704698979595021786536346846559561001933454051186729268751403835722835478541246045348588329041194049115143924039647626371163310926495652486121224132743728782190003937696461645406785435042329387961195988888222119576684586106261157975453004491863459083729226502114880509403457048715642182337177182688014570433311042183967378193834797100932614292490049451345383471900407013517819143542531564976552450946086298974405864978993102013951167995721326261357179187196135209868842207086907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19806092320526075034338845546977541823166573411839357377596504957540994459837872053115152425785532085318356977226204542934669929982658353355207628496589562950569528746346344405145537314680278952788652417762063575265996470266853983555296360521361322335855906396676090839466093563516521849564404718370487192514941094926769247587186575549533308321088894896220369993785869747176754175274495410860880507081665429767639919948483118527479112850348241850961836496315679149247716209061413606075122503024240437867886996464178746829146732248688742823650298880118031500758569404680132377545828444266810447130047174806874698806019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355574283132988997747083345875417717481640510358147740224944048417498694346523210809724483377718273472920809899808001312976474364899949912082976820995906344895385724222552367740801262831095879950519621496056696323228703457464882640683734614634841368762098436110868015549249233936847864562594251299360387454088991179424617829259254707196685865628647710642835033182867211031730271880033478053823456954066659614526485452532153270352919363030518865395374878551192133970137555671547893393619651644827961316751135548745920832093491280598601523550530382305987195463987115938357090398419868058760819009399382920808517080499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379375931608581770434469510261983008912545852909939416920382824942336357130532281756606534828769576023374272252736619745473975014293485048746584478652871482289828933050311948622330830523806468204749451118922886985681400250507683458408078032346672886124257489591553930260166738625599177680906234743007019772560920277997306481457131495922578118472776802864418893107796394108360213721079872266715532459780358303660428209300167188132872467964792788745857735594759860220741552117655717699175154880667221022882490066429620390128505024245579733118066601438725355780696613424972677103476191595870294502982881340424541458341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18096148837515129639597215983999393977935766190993224812391480248434689563406041690505732717575542455529407897214759992497817528834759847628376112584555079257682058477104587833748983844947424275700858446783853646699807926617640191661269344940975203973209673912547687458836598153067223072455287767856357932536498352242890513442222637561399386136789774033018988362272366035724577405948647472613652473673341644417792285685436387285334451988606368875657532044047367879813851659316292896183427177791339346016851138947997550613843641274788119909209036306722847173775225527850921479297713612193922957086635766272697743889497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18110434820147340547852443468851667307338030791921771928145708182787792472207104665386859753291975567291605552728297577416841324489578613433179572690031823593122021028486698346903631138576311448762306262383107060508390411911532172748063524468786322761000052910761529437501897718751659204074124628252852657529899577155953791947456944140837723510300499553356081654141410578696672143009879740332340399950187016136179213997390474454326344507783597299970505106796384667960786314354550296655478235500401998641015169216104114859737081587463910499734272495825845583130312844713558226886005838942240520362690262353148922474183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271659424304406902432807724595855646507767693169917797019573395222367309578913510935312844028279358653108942294353984863755122656424663173717186318363373692168680520313107574304876560390833205510837573909525851519129796362546713452786022335955800221857622200264871801002259037776005676909364476282425865407547911362993331727550323464170750576009384384229294552414157810928592624730416458287787501048993991562118919662302824659188889199026037624584196753670158132282343289406591031422605793475388361314709186789719292364176292169138472485355177169742556835829866841576628337897014400955438023581371056108378377978659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22946609425599164074907238426931743648936150948186453532189656983621196666827316207952216605028696472002576008819630424522991827178101844544993843848218396105167189620715042688875078005447178481744805962222786502021583895928232839507446973595249881716353215243831384655414418735513430455224693172730283488190063797208049366687838100682509806846280231968675446457079660581519407208843048446532163820800539420378977200677637780100731294120653588717098971018461152025748710582454360814204471937310860043186270112385613767604576909853719166306253467449390472970366651731313431212533448794976428242305882262253040095872267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26078601635035692378746951940410523657277884231786399796590096427110619324667521831470260254437477333820861192487637255655363832647092537776323160946691265010658098459190819577714144947579168707407955497891220472830653476161958208986976729266488035030415196458154039078451124522080939300466746389440571479028399110753509579164650022294269917464454761734850208651933814236470640715870603937716054677841455091531491489337068237664221596799017000354320259602557158421123856515208305299145871336291575419069008673799982223415284482089568760038939832524082154556094557363920632008417116930775701268778604619755001995395951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16376791484352202968962335973795570138434397563369353770383287756827017131458000941954344580409585531607843728868409472728610625161294814396722945807636386355725637624509855973896304678222682990440990722521733756933984959932058862920405141921355942690095418136349639115113595167483274729278853724314576235210193760572432079077621663813717462657670856418235205565604332623351110189385123595158201435580198547085789442326666556240437082576973530097064460886707559139906667262631021757276597582849073933754642682336164533684766453914535565684100399522409133990278644668784812495346875443652987465495102659503118917299977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322284168316751697155616712962183277268390947240506865804520307507085803617430877819179979949742688083426026363799541278989247126642238307309589511478972951649559283301193965625792143009979727563981406690605365622198379967213011261142141825687357166114349283384643061064408336253800519497989659049389440569340247338231059340116441397186304931500065012900966666226026303714643626718251116401024379142119338255755897504658135881282161650292418954487997784102721475835111781369632554470635769181275173244113952155028418236888611024717889738452448079329809242419086806503706871286195397423792090574402762038209664413901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296905659207979081069450180354246278881021591805918987419500918593248039231759225739798273626554855010143202287965207668950782765589561920162350743887644622168338714959235029537843320148285486441782396314258655764431870176452316630285739521961957071619758834784169058605798493460411931352554113840596551117786062272397832964595859682771666261497883484148310265338011012187405364738281993784139174903195492127798053136590755361815106314309979984068015541117551216818866729700862241299014088018023494269430768513246228250520193834070902760657837880544791024955840877211969258264665924786557525415602028924923068182789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25122041905278239495414982747754690805101909670701146944033201206303638095063538789018760848531705522397598500661636600040606288642875739342280012359007160431387423156787632212857942993573711904719984842688816569117424207730115056093567996521594113694786442993281108453669004677051127534228660170025446978904062175827657533579620872971832717516055658909169260970748137200862228857775845093727096465817858543695952675148275140454865117044895394577966526872664062417519449454950675347954780908041723789792893227719798715522080844874986224544774656536204439581311113734814583395541833031461379764294984596281380687605003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300158804800410612744663028110948104088342584107040857494979019978678048726327363274239386705637114723935785180783652802262554360590749695387450894618213414114700082957273500164093323523966543339092257596849485916042768417219683995418589040793481632371589004801655159392852603653777965408405118604090259258523811220443652863744214252090272308109133902853037301999421616924258162121570577860200347191009579462927771817321665337116933599611616203311292479187649237114357963560873583853966035680539255462910138138386044322513767586084088641229652693004711170231400524201159267307339887916944274216171193333460307510191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17284944767762171047758770745415146833084335874328529116025707801903944725324225413341072705728538655825149088044924452761107258844886945719260399596133052703134168636200356420283827938458496013213691048655213406260704413926784492243382559550379430048010890121025964976661084716139876677152059162522216466457933292444547181716839033392302550045921720415946863596524266778423338698930046654626078365690729985347225401905958862598761740911983940066299453059760631931811348731258388350217831566370152816419073952365802722602156582756576312776134058529016547812433662890764715576759076380815635068129036980420363951752491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18677464419650658912249105410437996451198566335448079943351410583583020340329105099446864894268600568283281662816872330088429347586470728105750929215874689190520977017039644338644709358176306483064301861812829667188203834234659910984690832868813965437989976077567623406732829442764282966422085370074824575416251191244885632768809961263301065466324854300554167308465796185561683508628529129502547672085313219613532207183216694211089034855016238521200977589352877064523561422909957597948019031519855075157249406273693912557105466052182828183379207565790057341461760516583374628756580488860556614144206564928152922550419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24112515604785983853044359678023956423570188612367714297310213732291522032907959676191357940244812678590536674652846023404362091206511150161823696645852708265461479649814887550861910534248680626922050162603971693100672257692524312218101846446031381864467625261144943672059568041288792100411574275663763525714851661678745050614619305988379566738767672306193994926556945949400284375731219718026687625569737625457940601933876416883288123167666792165233794533752940558462228469988695015454246340555563935392894252911099062454993564665915444525146151807622217814525282031952014136869419351281031520262785882812842796376931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18593163116705858456375072757047924496310721247419299328535628320051035306648283596846193630197422822235040793616082723716174367924739302188771519958802604317476419124357416496809837877352716263236159040906800841893791484647210918732104203520147399234726100145499630842932047935692870554701855077871748365970899355029405024324887716504689011466260653012657536432826049477476684188267279597139127297748894046628303765151289768230264924170883767198193014936449396659663519456215846855804876786996940122503996808820894403286976987227762641973796423169872104990813627650292313049775548971012720093174147199085518241755503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16240171849255648737892325602268129969207697721418400757345330852656050531925102441684442055839004999017022672650459038646103628452702080558483368676335802732142589728844474730547745340956593298867451387429586116393088719881050676332604838119176465811032587572600333444875846742750426790409408677112562607284691311412364334734672433655366773086276020209450808240429944686406512439470251542700640080124265719246573635199940684600080735215627479168631075189822783350981295145192478380545459381889122389178768015175309214632818414071198021672074815812888171734959038518562267836124900408216314039128827351708152871171683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24387599303938830232859842583614085449056596719774521416678450288854283823681660555695241438663689763770929092116860197898180707395644798776706354068754100787024143020883411016309854146425174833049171114329776318486825320334336250298724779918479723598194097753633278814179425357177086965263772266439715667506716435416982206591008268066009386428526701547538018840097847163636649007179649230487432116305236568138244234464997483710980234567354215199648724399192666701546587784716119820885345505846982162907508924249919964247548751144772249052479959471428528306039585511288059725019311715154129975240938746037675463806953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21116605296891848438449795018166680501367596912967414737620858369694469137245578850239619167480091570136965956237928950707230831188750154864328654753892186472871455293227195654269916136354918112218627552775793503973776264764638499356894157456753036963784875525757673765858388191659369174453272312010713046276806859061501813463903215153217532946148244558267804020344365607095370780963422889947548783341277235720179568970699777485480301692669811649540026474436734846431380479130311391053379751160143032228674170393622612182311505468662373765798823804601341928036660070460799556014037683372517666737153804516213455943173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358360052362172257112685702268611210008424064020991881655479279756244827884160844090656743481285069265700884628366446276979014837927543490200240964714274842836918064194009738860787342675047821683164893697616490310398904646322910318752584802546418407640448941182383483542751092041439483595203804192108474137059056046062462416167135886955242726195819620955100952621491782516110052746787816043820193140437778134738677416060423637130088611213013321095062893584022508563143887680601870981586476610488349339012701697930758644051045467519783353856153281121301566250420058253255284684987974978189393069934345977839311428687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347869872470403567230379911878001343433278877080323743364267497682686712105224971935636312176218509356370660934495742306269938136194972103920861173407078325796111127992285911698739304224193312967003274502379075330437939652154660887092116400517086545952210620762638488308006498227841606891435286191263601276731908479405519606690781248823102289948177261114261947463123033018005912286751191102560423317358422811343385860505203136945070167661546756998720427135617087103397004085069347731754431894101459987135140949862357793657039518348722217631844405686111609898515723757190321332551825989830384394526877862214931455911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24618961543110575107199567425163352377963700051245069528090405083450684822454787830644877849914605447356549490109711783944860026785894725476704275027748857983849890887783686243684417019267158200012686515366159540530255878421504957711281520200126154384184210272177601922033806126551346924349335478066965708170890051052423654442818449257675991846900670697716243003843797955807518952485938885971230126559711945904430655543321955982753865218761310682003325348054726867514871083089163749327319782664878772538189462556676594439734167269436884270960182199564233427763336968832019176756428960286598969458244770471957018404073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265954629593210241193958870173829485894842887722569698740985161504429707963650887990257047837985029787097767540130062898233626019214612340491226318826132550795310523562088832038283850838073844848712901166323327562066572561188700378470938065642807109452647549663672219404496559700666265959720192876385805142725267545852762578123359945599394935229886754222122490520893326332290112983227777490686001266306199860488780044034023012352123597570507999589955991069016429646028527457082880403148518055963218046767358732029620903968939376360137693520254208915194335972406425623111736153980541328736961975824001679102217987717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21096664031279627517285456467812095094113202846756421643369031003942690088697111849360319913064431219508972792563851419779493368105386499422746239986185906763059018209796665684456399429526644301100068482152934945659509806024881952604532695047878896060480482966626172459892866718693366073646269812008705935230757550790474207027395247014786634313693392087413398237856248762392883699167589734692562784133828749480330746800509434732275702184678906998816531564812670449132472687308992759710499024825802503986837937873000512024472589330372254701500368467171015527926007373786510671645062968466840488423841358901152231005629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20047102777558080899924462631490106604248211348025756933927292596571564469723275198296227694541936201159739184828958859939926688912693067200779887215388166310032369226330958411649893294890983157832605427188831209784115302921105307896023144543299339688442331495989898257910715027830254059926702463703751866076389773580281474741857627038896448542684988658521383722446137394431589622308989431299636235005232088124859103943277618298017670244960923537527797653863440014707285908538600878127913539816520641182659169787964028223784567743424181699126172214651014383251924622468232005403618838442351724959964219563799594331179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20338314440513905926808055125362737248095642409588581057351528702541649876107726226283883371750130340527391779374744109110833785874694809103356847396819423955600218700349088861237396662452151329143623081405090288146026285584066213820645954895626562498064611276979660234757702297279358641039546340174145389932061227507659738810562335982560754262070585583109592796686476859121633710752458994812100599423854964494962821655137272614324938286222420510836713355540960370028488776463341884354271107387207754598047258333623345648863991584927846201841437392922040051743124737938270808001486066929022105742490409965610366330069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249347257072694657908444162733572282082957799113767802246859104000884777021758722718615279056937256158664045444141598561146087419128510370458857440194883421686893381180860050264433236170561219229188418667452511228631746315944736688912131243116698705953165670933773491761657036188603072112192956836595140345362169955812740991075660147284861476254585536206616225543427009992074135586346796821397281060215957338955939799052853094895050575656886680285296244105811911601590991080083870646156569711540859939600615355046364807636740733146515817637996645790790139783244420688987230942756823469898800179063726471765261216171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16392486088629838957564132982685408170826767871481458748383742242934534898832889237725655890985508214710979422655195194446144836534707491601603917482812614414582737070825910946394464517482704481319505726983158200273722893912100748691624815494757697805864893089255024299655677557873249131144917734706859005235396040048647509111910748107214520659782841026161100673552238243218889934003748229774549311809302842603605085514869582043107899487609054784832878373948610181348698149695349604051687389592998574163912056973302782432917863269792918781029141122765301034079268259289631077606952540917291917106568412301854464441659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17412304829239133742061450511547243020443023691984720148701962982740199620409818593648507604343211963945570547304928222976981297272334718694250467366778842016955998359114950702369193867015188244191376891608331443066037969179018398310271509405817752351765885758174715040750427070064302403298959554510954270402678944340143164112238839040504944905035123483799207997447066163374411773506510628309553184154572169068798580179070572689606047242886586679148049509873596970134742098079640208451631216219908938206226512157416093478243957191215039149477880592595902170879926385641124913642191045588638538479099462216510296214201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23078740719742091419505376375565557055262309927293419027315644486749842685386592038054549930029497381750881167986523455924628370168762921807405006483849202272025283776940971069573960321680665660793607707345738616602305155488531878443721075005929173416428369983564450209618608534147836954582755190817335543576190768684948938331067292262415131267489004567277719950652430412627128074887565565156535923276157182120516362539735602357330252111455993125540970367777161008662750071948225268379257007544047645296334062282785420378075933396063372845066770619742841856550962465683379105343433422794031999362266268232417758581681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17161873002466448539391787534157045849344884635022033391590841435664075514451308277365665862038743401927955636010545157651484087147200333142988004863662807632930499915214653063967052449261757168900357274362445712814927057633780233010828057367749969727170654507162879619431624184602855505734796645769767376939905874017255224966886913246965081342374245770903075527030850684148659381669653200117106359147393498057378200550442976854830364608697870345963601454702037168123601674318363993951920620408977016024909199935490578960415301563121822075360034401443760346643237177103282061533275484253840727577349942771067913364783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19253588976314338959744431955292526220594675251076191558365028943284629121362293224974866907634563560996718371650999182467767243550582741452153339921308312826872874053315407711476081189737088423300498594259675491066329916873109670325426646234898198615357921250968660891199267545481754407502063145867069722135277594271297072044643856158636056046109815708472695496494599525460132982406871682422672923516374710401812164052358051822218989532389910907192715673085972012540442963589519491850402271608126511594110252093226178911052764767107367815304014854840589809631593611907064196844846247644574977581960922269259670133167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29845540800814093732131862915548091451602646868923670425822458342766922607298720211528524191076497454193255614546335051323972859858534088054790904941172954998377062691324114602914946459828144000624219111968687006276963968672168240652473878232159197234574181365436107401092712017350576581950919169206548831276424263318751248751324385298955928382156441446856481144297673547732845694628328130314324071565187178626197762395101367883388407346388705219692587381954216923176286843242698579477973322912465865263324050598412980318984249068610409279674764704832742937916927354473321180138829574475500907748016747307347514795983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21225034121069914166833355594718673476742633875769025919130410453059571924056585228002037898456054958995815152704727428720185344428705599881007496266542169314054571181930555796561744478188315433521751814766628829143875558298407122994446921375093793445055687245501842073918285143928118339209153780684542639691770652532847350246547761079157082963405991001081294046079103511299302019125997960404021416249408956556245799337503472719298114591353447482488182495791132857571783129948536372503936525979785205491814926757026393911025068048657104715792778695257033814177305899564564693838239853321845410801029258764813810089483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24051501814360741358724593441675335203890799901989045731578692412640849817952948837242710039817367102703276064582397861642536180778912016401990725887557196619260603205917999749712025727047171596638070202909896559199685899083481435516457497515000279849909120953280081984418074925186963340001795929857576152213407731665542062059960473763929420247423527544975120197425494761551230482163683030328638817512984562681394956426357782679096000106256529186402549507742229204667034960071612305921633452511509216370847614236167112221904674106857539084532066413417514392160273908045112503777287570263659309700122061720496596346597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26688542428327833799832231019333216665168142808621100976395218743093579144295034361384675163410793051542536548991026898296677944084280593384630718173141333859097361370663062468045188136074684213226955409556036154524424163085345257058567068223559303431917517735655972068404003244588462062645224494344918697691932695504447535121366189905509766689463333351659774744532365296936139225566970059134731532301910889122485079394548113503890932331890860089527019579907849687216290599688830384596430212567429050178442213137185818503378763691260898656445750155791558603586696826186720686030800039102038772819204644140891525149941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23038333928786139947827903531587951441480183350907980794289597796539748613124209515616166324821129409532152389700762133775417600544212747127369910686061285309880582250690640236614808859947334294106290733289059951296419375051541419585033431471953408941252119204364263289652484092267886208284907116957337943277326199529958965458073919868166154344439655817541130407945414079019933709147968308733451111759873868267909137306780906794338460780783093659371520791537766645836727238326155187741103386889510313989266743786278413696490693307274597260518363590097980758075079026804556772983086632385824915860434281475622613764951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21482406331465673633277361347656501260920622893014694474090375835065380079953920421444723770209349563982381014935976720031850427190571820350094190578315542698846251018958607825168948738484547862659179780953534300918515557904196992101857836158129424212350970346874737598400267837062197535931859816547359805075933137602333735515852431407491364901666601663262668021895060680403182643812323151731965631947072198740636473358768639290218868801521144507457865121271115894981464670396397825910095497338542016457405967224579520365980906803339348405089326973167070919818127209067184563746968012204607840033511064233075863535001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22577108369565697308881692681487136525131691866931541842076244727780213368350182353828683418809950140090350822406297609886693680723152664851644001096956852895500418063865461331071462116507084430137747396708698181620982910746243459375112700335890053929271851081289056658834616459872915070326890742583475230084712338288266784517313043555643854760889938665013832072801241229852372488403679943377079523603367397884094033097473194712229649300122152716311986779581082774438579691138659342121987281537306015328676148721220030809739799753943160580804128511686741868998258720158778318958255851964613019526227559960882568907589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26862264497973654807399357099097642515175039384656841418009259666527926704809170241377595123078643153127667636607783007981645223215554029603984474778127450568584247706209704533948340653372809435435514636505860508936467851421619674031913073323461053030632482375990680871210802740671580341112417747794962471698660701964707776029713606089222023224209048366703210518516755229836556973611065391543801246501950508783737784670353448036214675778269128500549014857864636336388711379083120416699145828187452204317016562433602070424553283024582099932347316596048320183904603116532160128680856251542913181178265132404538844338589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30717804538659914685694877030853183617449790818464848238680223018775102611140976240146203188642246459488649280987726970093990533568913405519445450402482048250054464020598840872158822634178395062533191969478030296394115565121041874083612109305776364103627899501621001132096064692287702357003876439957344558913695270841823161111095539212220131132163754182184854115802588414713644889923329454205463585342580540654038228433385829915854573018614132046496285559180764388320382969868532735611872538000462480535154597000219628714355304066162560996871652342797783713806229927400301745142250283324562900850327070352722210941281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22855677694169768049687440906694296208074341414438366274909140198047744869277363616505326367755919498279893134155576261488152452223366126586537714624887744229226009576130487887331271689918867422054236496168288366581148764706947508679951199796865462518230641169131141355010983751361509248915511774122123554361793860784976719982197147925531941824397426590055976898061860801948816537951993035222381109356709063440771276224242368384604013968631777871463756967294258406312245644943244885344596303940784047314335593927676251343403417642577776702877525999880815016185884397106940700695707304517750589756360125086247721860329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27436585288274188137005597177811184443772752091282349521892383824007069279585467072192391261288600870594147556569841832346028470496394587516576347495484565913872005610313355674559014581987385931638716774554249154046095628986606912927324514174050181263967319639673642061464142413962589375534113066775248483398567719177323081909586051062921072502151828078071945221305734837112829118934463968291035634720534720100287435840550654973110250783105150372472030729100434637375732018170680086086809409939963060294801224268617668547969685401978615737464912321909647375655370798046453854853534744670340158250708615734649274174943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22146920657109545659378977616514022152061067634909691392960375710805627564943886006796293567175017724100451667498674133709004812001708859002386231760642967447487593266984192433896645814662398461473450018797398393730325528392303108104337956076054587401648135433687749426117181545168622127689671451342243127293799134458513995566043404989555535939807677454576596582538866520487530426234972142807937502041843739143481432712739858946523836581630731796094912621573258431454725608480307059883606375924536480758798041107780903281670549145497648713303982591618848531284576479679432598897737970954981658534328708736279594820737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23455527864603416503851283888850375715958121320952235975103620354109206024467535783118383789859717141580902996406662122010790332312746566012837253583563631653552153078980496020332024316536025507143664664677505876564816894817426978887727077695416404330289264492750801448250388853380886492303586571538967929063729030556609046926896983922876775705050581025924235857802849540628282494894979581296312872399820303147093313733558109512488865580491028432250953818616710795599904814527600545301537490967145697566394864010867206388225515212682858099095345797523007109516896884615995051485187810558631389294927629120027166887987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23306562842051800602109225919994678073291242639344104809147575215931029403973945234654166285497061660467907131435322025105102704251516504626322792376941179908946665974788044157916508183832662625172395452519067845489548672097644641651240699854532693664865618413843305939513365719339143140645773960468028119957080751167959747987566642062783135813813631602922657174182213055454563145203203894669098481105010718362815942363228353788988884615396473866113929588807291905931901709258046661399534176245384079424520720194279734418194687071936602762075198897836848013792292626679640153448157193343496282409210292528226636575789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22863543513560796750940554515291004594445363293619654787133581929761640894158013476892456401021236271622859859393529404025758225462063257593874036993514432890572825904866286513866954545875895358577149591565056906105692126737025986622804810488770927083881840623993638811297647168637258170304578003346505821773188376182723143725132281805038425868098361374833588410620162455627627022539142440493499779320086971970725308048748124190390510949850577334467187061443356266927392278725919479618684831531475121040207240578500174539156451225267132861268229078261248663173185042611820184332812395233374545028778423768407296124283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22291379714412734189184601614870705562203739383967922622435699372863198759720855336726755166733283020090147789162511258840767924581415349296996858353100054968514374518154744074565312819170665096946187700153985718764556391599912588588179668884797137324982305543075083112083937746917189641900178008483804916915514905906752736900968316699216590019240516068084983340407410350309205439622961251479615974616991216630760442842755775356235268780682445302233296557059207507305601287969546377702076646465586432480298986310519856068430414207656586079157647864217404792254815477275781628577878854933315178608634652510315730755517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27302918971632010229277329927441209182494257670827951407221335046404299447055416791383436037859432603447313219487020509132672187875502496823044833839515992543754038356878513087145320368719177800650452665884887611556309158813843093498080670658802809951732854742488717314893191547604514265429313352442710486041738412487692935171175839872365558371760359269367128421586450612072904338238332566231137036715053995453083021893394391359978123167100452882959034748486041825512728081663368963258937178889991488592936341480742392597159489515449454129249379450943165190541986683519977979790261639676876953607092371154341532245963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29297108386105176078412164829333184097229776023167122087352492867201774047912164063880435295434420918141638522252314872687540316201692434025708594135746395850013338304014649611560186885831181977720756769053630259059475526680871695884004181584092312859210763708468268109528021601031015368140910026635013550323881431781340689688150823440085752730639773786733642591494418961676543661790559414791526198390060944183149588014036823777733698651633956243647933540340353258512892154682686325597080249264499295489199418616161059581234985486375278346297524361583106768607611996563234687234342965385120984237308581813514229510893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19498365862280119305169323070899157878287579371195500812803029207692746135781287264639696343921642008948006038062469518179690745557812874023122804188048109105003354824028003379388321431402440876775063113037215107518202357192469544415001278834037691107522473950666661918045546463852893897890037759736837615819620219864635794633952919991859924780133921860169780158675058041750158369512739661607367417271607541642366747107178118283233208636402644728399420560478116826282567849435492845446823148227472413290956232516401726894966240880301618747152040376902484898380116123604648070892687647953473927422817920945876187219993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23430754786508838947064249991919023026166513949884207759003128234057999807814831950670706517040183689985672596937944728214980446176650045939061793619115695643677407074372928978514722811125257738798666654795791215906222218987659122165961053929162646714333876552976587853835252210943150475855241086877677051298132667061014449156542919688808715483462717385500634599002507715536788923309502361267308814298944493688475406399556477520553005399729276839502686166632097034721520025639398097051094302893226043711549486522459785942739866017758962372256779190097059579634840361929562293917672734156332651336698084714685863851329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21647939225267513519347299003352587430979604325119511739830249466403010651951276516496794029744140663397521132919274710815720448246827907645792443852218532254127273471278756321446842992325066595677739540521879808026926361848220852287924308101034439180426044584237827793984309635754746746803405279276840663851167645300452488192648927535767757893842127258936691552647713957884204391461432454144942867176057994083843181762280075467904922869873610731753085797365166805844619970037692009005106675382363944846851895241274138351391063871173166760821151586638320031229101116374102026979454910802494295657752933621566048882391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29518923302237316953059068673506330951660946775442473855726212578921855682059705848982957295324703339604817952198806114172044130277375014396453790195929631747822994331671294864122966082116928899113761031834348582370418324557574171459478559503606766572150039622165450731307287403132637266298822488076939669350570213556516489853939008909896056584720818961538100811507182343055448219971559904140104195995447866469921084436811772012644827859961451749785028635748161498830116014329386831074005201560142822734546624559588124324623878155747790792696435337958952368005661019517539600714886415209800652304467255504127980499227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27551643959761424511240193177550617438167408404885594543012476587973074651732248326752653472961189843327709552558188710388423700496769098526098752055299157291921719741825513983754235016222888434505546184211457383070095876041665348836765976202749975056521403062495809302389108939774097729487414160387592824941251206994667297819894233942705524605907953793622845377380521203065866600732045201358433827138755542538325128738886633603685869021175043313236342881204613990635852541923079511137630181430002096032282661563759068560217331284652313314940079539800385356800529014243927881528776547760026742424798475573209642181301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30692664866568427242038374122385597287568615288551302413580940123128268941342065421867633935046080319405627582593853919878101428884145362444099453917980940977288685681851385556561900428105813840551548923936451568498965334772834815590792455732466508417412175889572355071408588805533955655201415065867978753157224774538334933218704938978988798634618117816100500210022173868308356768057104000267976463665262702991824023702187031673223358117381150645723134865935976287543923188186380546101573744268913175392343716969906238260393812774744368537927031243589382921750288549350004214494306841477509305844269004729052424502051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21572293082520255160695134114274828058526944963644646151212267064753021701819733264395724341134491143792623747243388111683551839333683715106490882787741990211219694975999474526749105053578463843467757830507831610946298609376972620619157094445079751654376896381574962831594936221482179638988459071343299185548961280938102596934788309981796500394536252594801225283051297484700885128460858758909453132764443969659588183216455696444635076332173841792659043866457583003156199174019430618060817215612302446167215318482477417812459166182139182890666455296353703002019837850170444280935009121620314671726473769167597149757791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24850079183399560189624984769653443343836388036124521462045053371276035257039996795224669992826714002773131672881293166933747388340578722568391201425149459563356294615886638727766792492910119445958499316398575325141251149551427945087074105160188892008377262632533884711056289181876554306560830960383534761201028872881778431745304764580794646524291981364837327180081338336718358316483563892618384740480909729778958989462662904082218204212923288712220932467712768078539836345140924301829686351111802680588517700561445363674579844705558215871816426934421127142250998568063473882346408868520492150989587029513131636538013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24187243495225711357724298601601599539519117982341494494164648785138612838587209030400227733582464436369569799427810308250707988662516258844652544525194748689393525999705098989951966731095437227576895028254814610094820745328053546636312175880563890936410961970706965548605912498882285560776587162157525608756541220032014074554812096915992238726911147356556335960530758446413977428429297283801298552836662199396142924395686611260968826949778099639225154311340492192799162192333635663753834412380453675148413445874023271420531091956016223587534794173153780511135824656856392411324048846560667523858446325429324732363889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25872251177955312876678718506254400688523045503001812663918051482553151487847090200496727411013113906069025378741954877883854578411133367283008491476134884737232749793712813868447289989556289951767584020221321120052023947976943995105488057068100535581221016093277425810745324607109862799228588614695541021590401534242123192799909760315641608438681679590571826145647720067355054770319624380606583166687693785575250094287089796544666569178898253193741702880703768962513008853849266212066727558534845594292812873769183424456199059984574483385419523164858010514915629416959763707675858324485746496992068917880226942035261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29782649951896913454657104451277418815781030950407592749105837064289256588878039504409281724496712997135245725439126963153695225487087679829738406575445950851550413681770008966425115677966618315958254545689485795948930396593127190143473543713357123480025903778970103897679105164182025674796148335463345407782593707381817366189907439918965507409096164295907786549901173794679221844269524481522705062867397037370292471155161706435663998462134598142449949956925379677898158679588109175517946325543663627647877581677690611480703163452691986985450678311170838762419459766934085794136281274672664866088626730316754729355219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21415178387168773904587557927977474919066376613676609170192788845142100957671158291879505734438682624027091050169742098850053326433318157266503478740739595018681345864924614901821760400371481066846803527602078078108525303065975872274211520290364129641518795586857009787549455604216851138951902519516451106151696005337624314979045728524353895721663986844138677792598133320374364890554236273184333954313084791324287121200451449282068371296520895464238431904785889334182821228152222118252817566948734621819409384347983581803128095108810953643987386183978683303037168139479087695927053248111896178908558766954469652291019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27944593238092670603837867090998048228533334800192453098508855263840140585627764022086661407095492405327525602947214373381226463552054226866118501693597317833821300227325781466686283043364232771816045622720751299166909833088930410525433765674366467938266867994546398395897418464504693535390684403329647119485574730387712503830349957468738338415102115502217063405950931770787807229406483382865979797834116469095539256119159856262065099663154794650383377324471042951572852924193276813731054942141113263263012379349700658700634639464429087494314812876588490396003307752292162702336942244143818110720476515676848651352283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26324220195199179332848343441103607732166583098631051904806740163128998083868216367108663368242487567676742922204970236530931241241402030656522033883011504027811518378791652151393063828545332942362187509365714339234045425174436497780235332628388383648842845385730542988732782314453667791634770832236992493352514828710176098417825544688990259944135677774357420698748064420459949005771835797983607796807154296014848379010887907809612792546300402137960481967266280516319780473911849176442192359876529038226139306979037250726274259979609502483357200392636017426483717393619695977672081441604284526278457957354681724461829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23660579066991940243874207183026870797579126927457950287246724742377772605850982188716598706631783009625630420682387489401856233869465976210596895474094093093251788219554510311062477760071335699560722816898870885650826515052438750931802937029607117215545550308137687008889820492212622582964804648612416856942414110405098321074376686784619308975726447276510946607767259246226947135526291590715267147545828489191371945058200428697124388682754581778691267670356643571463385914191626062214694006955323743302636067367430051969869056113197477379430326657328365412236345996817450304943474323603966681703647809391888000165321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21891589308202562629188707435272744069177966015524990973529569689179696836129408203108524655665683393545590239282240132048331686765567288135565511740563165953529607374921284816495894946188391311181690077555805430981069198946140169964851854298272200717445419183550322870945848994836957137049991890316640409233332016512918088600144761107013898616024874820667195834409355294213805216765644923954309375586180696353717767070979930974781446972947168114609029162127297634239398661700452870552659198935315941943333152096654369630600154797543699214571795863589031719876555495417057068927942627764634553271452445826152902747417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22353344213846680833692576338005540945613458674156733398677979050009827453139209674841434365854705752010213664731352166238425418363060349526529698011543819520041769014894157895752129518383360195233466760647838736072811768644656036672240909458032531180428029078064170136142965586496175117169263766986493616396615677834785925020578984554654251006368008189394666747217587692808872003377401913291875528941019113925493403262059717287480057215792759259504591708880173158970354557937454563806741451063173455539471242025033749389074670458002603398516667125107608815927971679506782293782782421185280785411684060091438458643007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19475218665034762281674107050659826190076362360490256463996303845955239618719976569425193547805458652235292413528335682781711026454180560421895671895041557591353473059065887053634367209683576479358878216128588362829872855272484319580834660591038785180946971850796881120126210144864473310949249095543091039055941771847111689786289816300368181318661255346712521808545155298318487444628446252354455502247480757844219314120907146862782928477094949293343884823681180338448908043647953830685774711821643610000642164475086970683315921148673632859833547600108091984364931381993081380226912227610155370246024764113395887421249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25139725142872040372149184243009923533665425064524701491838564645184320913162302378663813161674875350752661133271006877774699688630219774220358793873984182639856877542188540474696978822476031144101271069693067726810004301196567310727441969470714497376071197587297670723290724108101418075589899934392900560086722819572332135562691947016994491848333434534138566016308948204503777769781035063793495990157453583088985229063138693829756275509810199204825746111412904820750733085878612965860810491564225343683226103086048953751736278717548157422467191453436374381127075818399914851470096996692374630754090537174274826399697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26403426069974820238835407495825722891431953053346248529342127059005669574446362475951796774032738458404747635872847431388843378721672722939438973738757134284993136924591516484645688892956926969521509518037034813027458239694836255543714902881918650463046446609944258974075618947073365293500141879885983819690924008095942457123972980991063687655787785587913068324033899920006551147440076418327979750678720625473311422576582935050225444488216671312469464704462273749507829619274380226926357345762313037706652293338968775129811690541917555026926211385124033246838091692231119048778750060014475194043020661899377986333527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26175738100119205329610902275729348814984164216916460219495651982595504541967632307645634690387998676314876900281082728574334099248228643322704476121780410337326535010227039526658799914758924957171746495408076309389924235330748807299765187074126884355142132857067051513287621569909886414353116344686071222421355808205949751891208585277752704363491757175810963928329949925163792154989695990407446366512144745047679545608979153707396661072957167239216863560377713017703286626914648979683138833172219936414794291386174517733430615598762273421342365063573757896214658746663304238962764366151205419615939427793268334378917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23402347818126633543180520125379298784286560715042122297994190749372956632063091686796997897361421472436206584850222440821385019053032461487317382536483869527113259330213124404398951477554936642105785715963529248134544293343104750226681659136615661432040396173453480117285383555679634631239686581903024164178451440212763209229286502788912308930855906944477468324952618808232006154907562330877691737683917995448577960955050706458117552618526633804359529086987101390106263088420419931178591280620225961536903323891828651128410281371914388271590258954963523588469884427695569423627848375394106583486574346798285857151113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24058718783705347799363456086561429775365932537982273544191394294225666030404601778874833610552078194501952211633881417928171652058143649033991763805606086465899635288929790404009399395888033702361254135597666611655241500851289459634594472596600920755924322496039766810155186348862523023311327495828512620622787964718963056364466297088257967891084101857422642524647172071668065617725962481768252303058271996040964550725568290847234382574285444591211951762202686291172962961617841877918840013471858915772085897015674453600288288209316327356393076611654775208030213426952336354406063933488890332941914582304471953141353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23414017468214075828218970477412728806318409413540105710745723009839429586436843631636083535527419283889559872519332111399613088438306550255380196254260801801185371181433515061361813844732563585021780635867884307043034723471560133966898534879447496424790031589874366180980852007380256541867374755750022953306623121784030240682828631341607876506661423317298911297706570734967443865320841887680896705758235103539373182199306863550310207469333224310865207108913152804964470156283827015389687344596457699646436333778235482875529180111175296821482784028621475757916326801179948343501681522903449884567445333998986750910673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25392508991841198446142496373665931397885444874275808292025655837417207889860985426985425386274090206025010669135281744880779868320495143204716275625013987293207790471298304517749517298533811074173086001898532873787816869860048212468135772030137185825301665594841700638731161168748226600295080456502695236738978610138632575908468385012757227198517891971397231319035037465578429549706527211869003106671052641457466273111298875432543873665128976553349146926669326677458463805273888686839419835818122393907359641615492731991500952253238923222930963328054791423950292865877640008375532639280573726154649528761625441754453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21454583012884347534799700284067796078183848150994636758189284753284444263733349867617907016815934676657166710587356436049360021531199436809166307102878199538502416967940480009520440482391169775187593709501569442819964227338514211431958354918115855674053554034034993818054331629031274616226389402060294651646374598511683242632856799121262525129860703124465639443007523155379483912474923493639824293183145361567847917486031119870736261451613514856884689800041389201975039762736877670591363668970469211501869130208628296404037483468592540558006425949647637700809748554512818255731309549180014786344026575633135181636631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25410116743441960120500785190372523901616352618792393480050200741829027393683012922589978505855894414503088903994627529871831573568520784451108319295101299673698595759017149199738935099974495943634669729451830876123573525062841431243515279457212645948275551375485927329164218731583765453567920980094281232684767490467094317931293799973450412335730704821400508606939614366529232076459702269439676834185553637384199092117427099253184327130561513694517078238580603596866652815198003483290031246914789021607372638856713533319180486199981104466525377570606605560633627096418213003508193440300484694150325479463007298332187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25634427330566040593907791933669866499173363559007599692483521911694243283380830096591186551739951051481007776061653073614400299292250453098368866154798198965873086136956601604035657667101168845415535233922552540098944688235851422147686533224681788112483557681888904938980123645090140203410447204159434518854247248039064223537260493807945440141228250336757197928572039909820499591880921009733912631004748829111239812568053559690255955429182001173748481205396423124503906438500088859654111289515983305359545762950798550205004240634413265612513836223211763256394649241203263696054724449115027014821579988145008911201503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27675503542727292360693862899195829709438377020923009719301047999159040431826916921322090022993007603620973929133113784023549237773447746398910002887475703813492481793719095361723403315059264760581817119236837608197320062875876817147978623285875157091484241387922424657733159421533145399218420286607127989547482190286583121741458121919389621255202536714284992395812420058279422729331852584167716779876950592594358653910272867251387443336863548803445669336861444912699709732134687478662014362629016582992438907245518198523556292246548317410354586727750727609995473797261120589534323122185404076251236846966428194798043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30133523185004902013060422897094146322473391537005599618225323907050798866602808280045621800976071831822107335546541813394818920639370378458484725185094486446457205997762927158885047868578841123392344170179124118533922440386831440545065337586597214746952338010025893648688115877301517961052310181103582609996469480844762175434816909422146722674338358080418253532766356660931907324690179830103354032398352782710250743463530603307678384118609334360533461876390037052487286770812540532084980864811304311531366689079579899266737449676282193754871271407410103255318831320923703066205193591261937199288980613573900419261381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24860724233748970660052108229427287587104910150698338169296948892766025885413963155551054349750845486393046816787961590173392336324198268420643594121340683315219689829245160609301509379355029432216166964329448305472367941848064364936764325491755585398518896859025138638783154765069070824336553507579263934174139809208354237404093410818182869321194445152076904570722109098000878603904385929244557491189488243084009700279043798640667134510840991069925468409446169883514144833637496289460274680552135466615762034280201197288639759100152359818788952867024795199322545176609870987584221881830059491178786012920797043767991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21738140691338526109387672497253018651689599858511722492369093795670633086335425921779388760194844000325245210655462854083196682842236139322400093105899045580529269236603999497165441458472998098679884934715709820086952199095681123561377157913487780127080109747552905958218002630609324552161029985842156528832025183393052977092005006039591278392448053837003328841039412684829787001647587676103851550972734145942131182771736203431772764072158568663670306402262205858252514028371167073953356396393780090447660818618975162802585167705734164025412826027135970607777834864957125441166693281233508571132678634898585031169447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29050229856042812836576905413549035057638926571856338598486682311472495213254533675099887934719439003093814172061598879594651777839395118621924081334002326301663220032594337841074917594840646206571786755602175524481401778301658700340577636325713806427054579897608367417008809390155807436779922004806737146643234206409334616664434954579605622419343353430920533932657759696924967812398778268662040192997395282488975818717102344789268864101631148661494015437517263049577795155309157904298897780252315110981299860970967527466626366469726826543448943934257906230868175102862226481801680803047532975043132069124511310159517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25295176581499637839517305414582902975226236497320711775302310576285471485088505959179997583088335167912240512070249328105536789888742712483382920718476182264618066593689268287945739476661203695826769046396134118998009410325616745693381913611685819920708251335031023383508620554215881579777347062670752145428459150653319656415847797955425191964374086770056465536684685328833346293686297786912247228478444094679626150463350601239840725263349679388525917178008485499539271428830137197350607439408845854554187632136861378527565806149275100506975251166150957729043183159485358529820888450676107694095754598263752676667929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24765540819354738383099340378554746548677978997186052648488537450239663857360597074798304737265495017823992817585320026984875550600502114838365538585379536990646496746437877654283469473511480143394445014157320216025815080053111591623157397053865676709129288375284530473212676025576264542242901989294338129657595629235420942052774633954528987216786979740948329253755694127318271080225522965869377882255324677861356693265107312913124751547250818480974066042232086073003031042653087334254553098752580773841030102853379934270183086621060309366309797353592095997579264737755805206900416515051140284258358430672288910312247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25286614949071669919384093184366249531470595647513360702477412220980077591762186436055825394720757681793873127624015431128195816848225091497908825643156136330268092317270649347847749545406089799474439573919117910035342112999530684269218975461785443564371489087963596400969192896582786676245397267060376372292910500137162359420957427117435170714811940877476086478528796173885340502511075763358274701370937473495416421509882571306710004851895055904083761194857487801239301071858088792911496272378039223877061229420362414825406974691991619471057787885433034348474858107793333278755219366291940969831106723853800986146369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23820756605654067086112150660569210", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28151306818687549810151846209976689320663524564487737657026154745490096705374904477297898692497624554038428166155758017762618521879900098121259364536292853793481068131014586500577258147431461695535198231600041123984447991852169589709392400707267068173555422349696228536805850462602922311987506969274103189374877640157802661670626045293995699781179334031586919217543973462517832983913234158353496814904885834920648456778375965052084966255009100007865379365064574802302022654090525625769089107076025411500153113552469794322760944454641429046035669797521588388286156670496003909719765306221431562332897172561102114400781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29110281548360938158443438217204190650119269064559209236629372973476804415248456067217166880101861630326763967346814689333721126900726440638731552154308116162048791518462095085082185322057696299915393808825627286844256181232318872290428707172266918347752454242542080218470314026760459879267556817465371879125748346669287018737469603576180182729816128996756888721053423357909876047382567934048609665921740165078387142901657256525169823886568933852019459142138935483231444104627588385643930508963164062091447538446741469284017693526382566799115165015147414861958621298679315201363173037634894675156119436069177440712251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23704804651786491274261046799137705693868110882770705068982517057546742815940204168791353512056980395469374559586260928468628316696000765968985204945610230122418975549797130791303167178036738824887758108154641013050939187083526049898553437943566676841833270411630203924972100472170840325683614672049633158665446824643437704892689039519782235657953716124458832738979066019852007264864187308322141941086283945364386389738092957403448996553225508683123387180844883764878891768318556751042105805024810482980842141096673578139425996701018853030534733013712152914936879350410120774973163293685715513560484101809004425510857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24459739394727795791067664438996976513467210812085251684160637597594671907199961106348551374335735818502257006918317845885769329048806220034257042915733345622841891052349466926324861196546276882130004368773272685619981970063695334173739467482727938239043839542835387021666688819815271957111357109547810649909819836933909917163852154726214012078947060931160081819471864073404643169875467624484503718666580721758112144646449593343123557812610352364305089344546957616331936425959642477709832882993069550795822258244570179628897235375803047948115738142755347110110017555060567612735639598607195947564518303264857419681541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23058975243398521571412554233541761089164305577120834011458481184534569970129929499724770279705299394921217625956868319558106417116148501041614670913388599279748527684287210737048396701007525319705494903687850962106561375517319306631339673359121197235238356292160581295258524037741629525760645907976490992703709330039038827923171076066305421879262452313995279209511303922708353195541631862598538848167711705740275415024191976634153092217390293266686182874345184410386594085235958563046358530292100427117665889299506400056425498387432884531338861275205396285724823946012379019301613756809597422785606266994967032045743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22732870007738983551079563094722196574520504530973382277353833272667889299466391726992378082132104720936271075531458328975191416405531752709152584018195274353206125353461028874199714137393321512515057187560074233412477948248514927511121552973549043478766152274413758353284719260481228324717337175418651633282600925635738145744271273444164030612489589310295062096971677621267455668024109066138396564091437519953107137563210230138342085189385841567111220301831213416042342808653030469361417285370278159213462653824113358937691718158552135728463361446574783847715056775619394734064295800126258945070849571647746465894931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25769158991389294452591083433243463139928400167232246267378738286965823233289299871873592541819024246968913341735395157763664381969671687288579923399751351174212673351535302339325433052556408092690557914478670744833857290789143178363385121491733015771318295130141209067392699054273464989164771574625410991552670015219435515750344980120832001039870593265685967803630595882324396578771178451716949230142590708122697188815972767438153810405608424760084232388185712173024152898497585742649522035345614737500492045244913134851706786249251874160386542748881019764088955923493783736210619038914344991069658693664199016208353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25251813739297116217789224294912059333293353722309819030264822203483918656838264836053036338349191637588801882259785908620651461970197851256981258695356629819254211141177874836125805734108715901423214812082740433434813807411416965381970818634869947881583205110394855808030777238054173005955057230412236332981898947680384800052682089747626628791205337542575220102349260955714396005631336469871579168586838717813922113505923242105302600914236235616711118573340910918478564118072330761295338998168584336661388059357564800942631758062439585259626888978786888512741620854251235009844248007571192788141027873352606356557669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19110547067958714262575723411655291867808276826718150001497916735215960609238205942832762419619378917618870926241975330482133141591566466581154130823226148578650281641025487616363111000158623172667287656997760293801658955571752945892095750422173298825763110961924121064935776932293553435281455229587380860462126537611978896717440841268630843435700850728877129290783541593602641753182307255738665395281415196669650969517044415539941153545056825292987921410930556225267475243904652349770018497615647724270029695393357969207325661439453077507203825285389957522069111555845364784551308765018609526339271063889925746870273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18202981633408832303374404638422762448281701420155622258672096802892280865050811374623995902597094660523941897345643566390476428305256005188139467289969784629571196708494414016990983327026056812121124748437931233620066690557137210707526524464700764061434871763993522852790781822233093540951722825882718847124178425485606293128091589457323872687847116081594388242417762087634968700883015762606471446855456537488212874214279196329628842857097965529919902779520501759059758028820973390131944900552625444911220508544619164926984976737194447491336728465414675283420543205007157648810208044738975723228862296639617954521877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17318998765366767351308130201252148237011073642656635943137372039076179655034794653233016572817472666540281152027466655221478557031558600244204417453089262635572759257081216811423079277487901150214439291764546991189768285931320271705585335416006155050612910491313045428249159132363467331976885066655868885950758280609713920758069286369837804342835063413943579665742650779848612736503976313606437238186848065377823060985106088577429261307358062781000109112996663403620788965831268883165857138205163895993456230657524634671067807406733033401006041862033453923286570683670799068576797504148216806544615634761096937593297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27291363697545126409403118449770126217580938025687560885457541358579262053960953176550780014973574602014465979042200855484265168318523728649579527258659394617690133350207421843594007845669468841120470626166297326656656628339412337527010377054453251685823434717800311761877208473320831846002082314661459393662789564112507053236151170366820032855750346834462769362438797713952840352933424500131592786787070562664263265572144632144362336236226673636890888850988799492781986413579608089261517435312696650704859030421756012784152461100072979544800071217019682600587487438197003347592611299724781944400937992605557141801413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19137760334415965401736668799836140340219685149298054895233921521503022181571910236434534687861721942812259336347988768073741774080001070599086528668753922549428642493936239953201565761409349821142850051591354531671777285269943347652911599424923289110045273925458699880977658850590080189005014094692929270139721280264082768342824890784056799131393995110905712409184650396934971697793579859232915959492769227536371990203084006815280968496692851844559417989881685259413130949283536540542800801056027518207577522686691874567110512778771970333212019621083722106603424956607052890315267190875764370570354963225215563467627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25368248634631644242526587264259679889471058600425741708019039013957148254396088947540665466630942747595850955598512880680815904791418948964015665005130146452320926349163942880069119017661281534641996009605304272720209841086621626458087373237998155517417139793613997761663725649686793573517399535477142730049512443523491143919778529162551403687743938461588486312725815806115708174892261726781657421363487946982854938706019035951237922324245651008727833076894060369745789786566862828303777239923382717663983073197197590596033951113619109088396480978691762776029699971146342196260264667648206876400849995217208021351279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26681668588927092961455382410831644739856333746917488625594112315075800903102027862444986502134795807613194743614647822816525284687907106421805831590336627238919098506568180987569309985106305870537062250505583906130416653314288164913353899286735112551832806843767487666504149136297304445096180938728937890883950075205629356289878282525990783940408814349915077672016666497799757971342881615165338127480008912003156066602356774399801295990325800379596547555575172539045893115826946495381145709624702051819336806250241038418614139147329270576427729018546030506466385910970544290137420551167191779004377864303865612681423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25832674608962426216450043508827112875364863904063137692805297133890335948189075654852354768578401231796502349390915727500258717242519295290250406454088300569627767430674230973937693510348383507728484640223973011806924686708806074253598080443252739039509157337746485494079268066904448699573103701027437241874905633791840400579475112820353020850505625776785603411490736664309751489021683862729273862970543433232198053316052987928476778665270795263791561049532647020073869227527761489942094646028913455258557296491305442616208638007394021526846971287698666974856418798846208926914309968807747998231860658751678463287989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31671941430007971900654667514283797736658241145506516232444825049858319758534596078822203111887169692370912048924186285185013455916406749375657000280502705732863399769514230681215218715575619263128826295143787372104340154804917135923810395971434284015217692518274702575895193064450143378401942214514803569164286168671214255521927496290153305625458039019880282551981680600109955903440923992489937535266517926503968796691867305691230731891716487312112296693413160249537874800370783616598945511479948922074615786347680670061821915796364913397173991146140279377525784861234319538154218135162823469560969796229208768441081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "21319161203555287637662850640138288894819399760820326130163150508425697466619498536639706583567207849971761538770215908126721225763317398050235435770590566909204450783111038897965225720003701001241686538657516298020166790200056927229554309668704355573349041308529602698751483977935312530322711244510477610665905927115381815590905031654228206005992473525722178614470596086372560092976146499868914225174933608144073337895368714633450451230420397983142459579754642894350729257850121547073196924551306977706970657022732509474223049392710608897464942793605311421790776762544617373829927302299764108993933334820918429322859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "25663738858278975373356101434983338929051191512480068715182830158621860173065548354781197453698837512929499717321159619173247737284857645109896033473300072948231682090091117987977406451693693640110182908140734372382792189557887782783537523358772178161215082555581293025324186470320596668750953300600743004493448877944954292684285745655949571663935700473564003488729865753808794347535302732059302690592497276931373599281362300524867507020646582951211597128578612163979485073203080547340139480513292396915092487292532322244771891200993375766757029041735310529241981268678338928005915769199405036530927393298877253746463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "22897282372114356571331321409233772608730546685256239826713967502206652658634708883036601867903593277881320807950981516158605749061752763867913477487666066448582777081547487167382683338575437948264792807882975313085898993317927991586903153945497106230710988499635651237915052183532262638766995134915306321795914214681715538806344918573139212795670973437626546136134777496864297146682462553155392449179985008741663319733790292909034759007838807069219331857735162472865812478802938582461316253027817621395928824532538992995460558604508650054561823941367451687138313452627411959172823685175690002240993801745235224158967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "25273270341013544420172375336852853329445153660320207506657813269906612289994146243896153767065686523099480570234571734875981542300366675546856968098355536549936625371928923890440530081759177555800333972360220224093024583366155701198450612974341805095175070318054553383007413616272156705616186474358404795112409197267602288238878354770827385236129271559326690623445949577809360844730156497033186480780163443586334091842115231168371510189164706630684109828711783624253179205417089821519400964945086700059005923214554188584518207413466998275476896875250035477129026071458055501701426973162911697589116905465347429965327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "21772779396392231225959227009824164715242736114770241425793222798149012702989690681815330598211566362004264071127754106020226315432840619317801831647428549492564968877043339735563353605982605371203820384003058733803869984221934281681614588368599428107805664592577692005756101692713452641431004211975053220965931673591850733997251308448730840870864605892745510159540255550931135201510454586617534409056979039431236026304783186311590306606071443577836490983660909367265784550510326861255777331412902093581794576074312837533798365919957675455503600992101385922581782732870283622751214748652682637456692065321872002187813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "27478239880709434416528282604119457382812465747602772547641459554756736946064718539842691481166830356248372874898746033914011559733023356291424187482024323798504878163744364613194661766772856686922395762080612983924810596336284943721314230032392843376819999477067773415368283588922930521493295019649146667695213293881283354270289349491170871282705881072438980337021315136369425525726452603224108806333074736439447074452461447339686546699815022647208140085669618171559758171599668625286548770513128808716616641986745452092669451731492974242823967538201531389683849811615673106588966714600194630937653124552251695895561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "23741080424286941077724300559587088562968168387420732305179125238938081719085768401166219032729193473189784315883224032533154629702597582066150913660160800400203400176352262502338612641909907126731837168320539444393823158542006191900691641237687060285240970996528084863622148605778925605330985865742373786062721251354809317353778125539124718065420560503945476471526713727678966653197970815981592195756666636275722927847057976972261467552083805686697733823055985140493149823674805470980793724002861201451200901437166567900928295906427258368915782190160902785849238497155256443094104129629602589021296083949325612830861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "29273151312894014676510121835082749744427577287543485087233358105366454384655549839553151624130348911897559918585001556259317133432567367628676086437103726614410102520011620601047991726978528449054453785706167928498750225660686159013704646345075422633702360278316146477938531667693403832477293560773461106809184782689225123328306499481061606446545687659157988487869311188278190093752368354204316436650440313353841041925726248949470323339272642936204116742529061728648947357939603598277430457670867784927040169164440977647145831902515494160952488375643759502948037236437355414280977658268732524743013687375913002230131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "20825765919560967051254120831313344983741401423657103121183020433723789925173757175154926344659382255164512667852658687068905756742087357987654666952371567427714029330739187513847248350472873351907578561220997102181879002732133220018245419536996587430320886374754539788832203339870549483834195780745986065147970797075935717907198108604063407405755864294506374830507851181512672458341707966313877753718193792993856401002169938352318940480507273707441724762601115796935942757954093445752501492721229470844252590634843361477768593194618478606332388855270177595256369247178837996185644950727487417718219846920747767901201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "24620860030714746932930817762336445656385102579610953940350526923203900298279876136877712722392164329522505287706410342956472759498253371736856657703536863740141837643283644505949839547085730170973142104004352834441539097567501187072165782814367510142522387981632065959358625697223228696846050594909059308591850679005763666826280053643557802493432906435922323211521950148733789409789524500386927435727611012129888481125298265226418035758805371879651088854934892849349149181012100024372130724707793339114252510397680088177577192939413972969086748081341882779772441719782894905344204490256994397632089360690430882335199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "20919746291209721923216575264141578212352958699607462609170853646938079560824455208764352289080838236545251486910653582892102089583436305739761717868001079784855228747851888858460471165413027298356666652211225841396972269941482801285712764242478547081502643867145286215308138689005618168756390277349829339453731843631172624575670596901157345459514818204289537056826019716408244001051933525733651712764174165231563436272080093947224314112496040184034286412998667281851093278438228347432642039503971206061676263997401344782124114994711070628146197491637321077522535438677843618924697192610756145817090566711221091924631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "18974305187737071840945926540245857482728147752184520979901862361916698971566417900787999958146652047023485145491909809246234790427100473634153352961313866470732062221232622110112676617013469388731624497486364513732757341768032456272019801097059447598521825444785984909029286928222763701632744636213441196192266971539827783875196531258694157010258886253679502422906013049472915665809671316783316383975974712020614582995223870844433109326621886195889370966551885334735793357740697047952609722146424568014940337235127069630880609144196781809289481206997535597223339733082930516319121912225447579810569230254757791518473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "20085577661334962174443849193548849985570738059472359496917704529296804841998390156859076295952963923445175782151522488902988626367978546866014849073694944428687734395020120291648078963446374878560736852199665014288070841551148450865589636104335443454267579842052505892788249278478143578372880867576935473001976132371545449672822265793265972437064441263500818933518454546064221941434368660812713533937652343201267818474986462786451893489383501670822185992276912509020578157764002789544409320983836069441368752479877542978305268382686911478501967199717727306354259688507122335424473707352477827500749670054972207120427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "21729643963415955547932810974506590903398562140370804549334181837647638668984759278544336568800972331862224606813902393363814895707542278413895371105828746519270979109641623155751860031516899522298651029800824490977067182145698771065512870132741152067848881507517654293131005291602437958396073830238028521755683058199203426122203661498285082199499050499919384139096565490311012437561740411400375336899169850079925018233908922061738513022169989130300288900494430075485197073642214461958149278106779030819136615937922499537038850729206224959535710460943988451686772852496251609598847517894598555062090343516341042906711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "23110975813911524804332172790063674664581768598357496167666094658721094288210895859919531067786231727942370125827040025604451959184997109500450789929617810826316970028731493945854211877918538935567746553138537203700261381311264773564947912998951625007137479048767017971713036675702003620837223612677626186023156980476904270868112303655240556217059826616223220287895393888727535214264525079621763248284449161107394035695172593324994649734623734642829461154314923732695760198047226381825646180827309636523638191947493528507960839510781267937368468544101281029982334105089255434892161675383061263026977580215888060823319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "29262396593025086350655913188076684793341670300718173770178130601770307261091769695400037238721911956874593230292667292603742735200056794242852709105548215110424533452742645241272063160195157039880328110306526729406221845016339313053502777036292173963115148718991552500121242862874279344684126713607234270538247035710488321546332947655917860043206250781621202781337216554818668557211237750122695802884150387126575257227135754765548735332263616941514096522497695181671223220357487616441917971565691434075501364148218611815568632582197979470911697409609518128585020537208595782004346059248409831692283245489966555275033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "25554947631052596149807796617435866646954243980986361907229327868048991927968639897725848407676597728513878626299355007047460007885264974095504411578219541195008410024538565750068721781796913523094000443398759964086474765816726349512549639141205007963379685270227267195119396076684332449759303028138145156878067246737376488296462595140436142814631112026698656245956190605418035972316290008811836140999685836014149125099341678798090791329176910085709229186052257038301969054235328950903868524431227058638562166934664154293680285473818061370354177937728963069471250766150983986037922244797347123710010633986618599566289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 3", + "modulus": "28334142655456035382756409258627210199255869637284356277492387932810392382108289684156009160996231869192331774548462690282132738718857260528026621087687649504974007024504594583804030508864387774617215342445407320597474748058601354032599335755586685102637099695113749844673437355610630588862701568852268267034332194591033822610251416275593827127932448491499788185722373734731201455055600051903335145778396026941648304749967434633177436429236248606533851504651707852679063288029247837223633485084098381685444128051875986843205370609159297941355150590582759878883818075973462681378652965186952980915698049355558711669689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "18994856685228777566849070394652591071031542206893623569576009256580747132325495616781026529379462489140500770678200583252621645239838152996878299865120125876945348579160202660148266632417624373857100898423327498494859650952911823095767023338706206947380304110245320152074620189857451520962859546041217366117466457619882331507888944518057035157936574132642201658799656449046827862040374409990115715461712618210969254752814370159509013325727502671999584071175238277368229925686798794741218855515656989151860635970783593512366988736229579343127345674635415590351754928890489389826737741535515535371701462842461099288569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "25548867080558188178698275839670862035449030475265462288136230088061986935530565854457401441825405784046386779058535273836038090953149368493750519509685744647567043936575956510942462353007154797121137975371697335139220228325049746330395601577578209319676409215714425015043771859545114278188527647974352024459191588938569954060728675430473561231031040746066028506729763274801359032507695074233007094432968807124277729325262869136354027390479548706896162380469702624100561938985849078732217364125215922459430249990837268238885413606748339808135961596817031212245021241656022705202961438914842079492294852053193263460929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "24050205639774848493823706883910810259316088582576462643727148585774711999403619136631307067614290100173950730483729164857945710389651307666803315981565253990810819001336534987971905853373588317746418286566156959930236978639757516572940360424539497994425568686509608937574633724734741531830553684855544719452267788523697965469264120621598965417594912389548242756043773615614181072333632400349051884983866538484488396317615549857251609036277870674154933944993123742738359542445374690784147024346576575717574757960848034977738102405263751632424394438395933099637867538455102064727097468810823671439759897762459379891181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "25593384022229549120215266598989865527035077109785256845538980902824506568100576850536340481117520582079279153912429732558920103717321608438304518954192208754225920464851512950108521337893239938880875120032863267113702374250460883158249551548612461274621699228880909465661461706868336224880802437513589656540918951292585374881060191134327492840131579777229430103045327920318949734125552813121016418372668222514380132216008360943015138521696222877814309325969060366208828845644883995119705264043318329237727368795056402897078404158407809108391611992911807777026191782704082028162608863648367895993163647621814323000337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "25699884339859374027559885400233879559453651871140551040650154767890470086829382073817984217419916400316987531965137062761023591162042363638815138003639829907924679985050756128872186157089384323166939660247789188243346307962448310350254120358529594221574792008047151468690074110407375103439416553281924611047576219529674245851117164018518701417334456619677443201511634492030335697452490372145446115201859507773847011420764354351021949110931744698468481594971580410733754728865228037671150956883715944776320402446686562348165109861452457223804479959958611343026551628370401521852093222070671189606433552702472160154431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "21534346352409989848463227810895332573707035261887673927641707762850974038479067515450912583556210462095030622185412506083018164629312134381613500921854437452619397419185464863328927829376821974457808785754835469749527582984134819545446342351914662220514649862753006438091862599235869139956363713283033925157726054350240995099907362525915021983521947172193693181885730272077728043103742035191576022733937517868616211774117005228858703144331297383175436222592972826590841738840330011250910828568980633350027152087540329862857160086767129014207530690412493019118565339525088266234280425633889573605124794787721255641079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "20150285169931221981461028110320817297557879125069949961261310882085801010287865187466369604114721304934362347269781994113582252517558001150636640375920036884357789527709155380877206561307376236613806224365942518641389132172555156009380808928817261318042863207739608162280593974436896197086000994464657763628898803392298413931196414769915098099466659341855074363475907083833026322228359333543939373029754081175917953570750292487797561840731191451399077404828440066052173112450901444940550658733259916476113886244226986540323196213210787986570045913722832959796260457582879810777789524199698142327504428110773326091127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 4", + "modulus": "26363476811354148307709801721527921306227736020303672073128420623158667364580075849683449496826796459276744484673519971999761182497029595782404579529001840133885285065980724356922042122904500645758354770216114711066027883929410077659390558953102094807462432145890619084364387046095607483424587512822590301109566484955217438452759806971768295173620790933399583741237146771509881175303948701291869180067967363494444612886682971361859969380524992958973703271778480907917286421143583330177657335995257955538840343418458649097488377845298670152577940227172996935073185965199130744754209903464304501792204971800422064660453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "20599767153656213758694567822144795249176385156117331292904361136822414705157322452172903570661714074236793140886192474193033162438345930260799562821244498413627946621454400374695190209094344181869237626890339092094375390997532954617719283562534039194673236216733937618978067362473370521789369413985809244378357961068553167770085945385084927578216363505739514871624606605125599344792542347849378559874664320779037832882733705663784336072554647275939740156098977010576349581839109836931148502841809276666096035637066849902175675879687651923781226098836243055545200686463740631545813292547804581240157596087273690044423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "29377650620386313356952020877304895867155552058047335435449170024730387789305159107866348985172766435697926845708304685707443121513614627946142466656889424490731164880539867547762159611792682273719079827065462895501399600426375317249191540010181973700556018054299542848588875931884508288032685494292791867639343894967248911204648510160772837738426661259773810359632432914087553671093415019702906443606154125178734473231541189878388997728175524912749968559683798244926842721724806740988479979794939563583644326199587300656397573377855287490436552204020541940847736092763067833723230983804548758055272812492529327273167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "124992650514828227144530600153601473266383068777856336255699684561602664532660072186252760458996240736611343346877702751816540355218028366701289356471950553833742537956478777901990505327650195397605852666586986481881695202090312530867010741780996418174106924608303489330067830300230300886140976814540137301109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "139819212517867667399883720286795009309862450922621917029808411359226253657600740315310553868467798982285799501984338973629354562164378772231112328858086483224333172514111819012300894776573271832285854039142128211357141379297170371178162356860149603999912909366782137068768312479502691220550970411734880017187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23294031679126800110123607284966914668544526604679556032970672286926964604858159885602166535570751425373368837940685099561785984281652924043823856284411777933950735297279739933067668234007602373188849446173482904789320060092003587686479362963064446378048893866718895888288419837786650072660840851043598292689820184630906491817338507399576076545522983738184705934499619998469079398519638161282458411983396206120706207087897663579037514617523600700539556665917590400066446793454231819486408127096814343522382524777181153017064184057858523504993340868695908450031113533714868617589158271892790298021915599571354859681393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24552820646658120969493301728851138681250800798550790815734869543817651559632659640180488387754270973013249577489300498920909497597282588403099829603718350369741820348886619453436074358392065745794894841134829037200357415377935816327174440149295873441387697461080437962921729543691106173026490162436098232656411621408807979098951442631556663363680251870342402902357328564051464213574124336675772676971527886746528061213303790305470257269878037887290405796926876357751080604667201237335008743865430983853011689516370614944055413841939805292449999773199076981415973245981242026570950496630495558627108541955260874764999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26177802065774156681034322703848250063494818467614076793821851794778073975355751018977093493094815338896633845362618272101051913337803002106037468381216701937434772749239048007091028428923265372938319709954355231702231908614523175507900697531319267950303298210710817091101127911847878312324129296630446212639830155523792020555698117716108902015079674790680470612378549720883276236725582929061218169667579215250839795111386171692588313809628036534404373984941089641220566335941243193678158833641036098535046863568689930770935154589461320346570850740865518247995689099390482938848576596671845413946935364139315470173037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25165548930428848738656164650834723566181772846759227347817823763398782636347211776830415071025754092272989488283174095488326890230786739349480417293491440510012029193312330671673719885125919976690143969828279023817250302423908312140340879528286158001905860029163606956252521092766325316413492138454616387260662850537537104121857525580504971010673378574685802321614654791418270981387711310114225819469635313298955333350636641609228797002381141778461128556974369972711478163220077072018610430036235537860993546436904311267690077409595691303287180529225449717684918434502707471752029635894554758936105784466597021730353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22228349619151782184512054561915997954115811436021559128153354897421336165386234040964439782847248312740430591571146702512439881350640334348681987826827547178944159548929234026909675966973694643092029529227142114516848924265733581890608420004140906297488774111049311184460984309939687541363645519293426795622873683514495909266535310376474777362396985378030185434018458697063953030761217474984617968561913073735989120155273798543459368480693456817187347813861768387633205719194527650810193400918379463832849208895642603895708120652591613389509511711652510976744280140968499422361779178450543714209863878315893511146997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21298920572183625125341918978029108530705807152816712804682735955596729674745761344193884874396935550186470491645761979598844135601488225840729683856677620952648798113316478410757150111971568762707638864712228506550203851408425106681182659856689218341855143366847293401875948444482644243122670132519336423678667782877151122294794022125839516113055154080468141543649839134560643363856570389617064000591319369381644529575984600277048328511140860989443714104717389769109428684253315357173744052703678946791820116148283993971378792597953488953537179575106784054564307561467652897012554534143873787547686089291851827673729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23734445334462875432197399971419775782256305197570255748808014648086885178452688074018659960272966596616048416801774895656428132485378473448310565225171328679269857775805950194763351177371931033393152167918772746093841761792575594913596107584602296171531448707521181185735174841366413503377846347213148258818678418637139900488845237454913873993780588989234473294914689402065818697177819850704516618316295839655719883076501629684242898270853983094762527994460011261972627682087817515220998643407381725704874093193343200616383518491329354251174595770305194992878907193585562984481702797052443957122132981462460922318871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "29146417418298153516115852022386651455247765623456538097248320992355051306672667513731880392074513758051385855041949226695690262833074227039547210178194713294860263077365819157659677630624496812935168704345728663474680470366618097639294961642497778385490557069717521058579067652441687151695410987153915767994689677184537489619109434057246406654232133703836049052757577321210383173354034980693194940192451258312206687362098965294801699518114701863028528780434339233200992304204859410486189028882287640660589717734462446376426816635731031988151937080799872597010125654840543027883976858127904540039173624743854220421437", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20104336819683514080871159787329842417260157104670994411453328344065013122650566913768813257700562920270339419463478211930615798947722101764356991474020882034315620148699462497088214419839870670716549616333080534138086786985921841220598322585374973267839123519240116312596919458704922083285908805384440180024971467550422995081579199184444873539404495483876067383579931092225772312341161818109993667821506454979140071260452049854670467436382030813875747547344966491885643597879346720447282860695775675036968250579990749382380705873579647451038238497866241063307809722004652038106659335404480728013237815772423751102373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30594433587406884952732338163975311742194405473935900054899933790148097411354160711550470728741207798708614148912212414003972267147920873801973601581513199766486860375198217426894710374093502053781434319074156106562226029835002712407342532520319179911615295150316403967579721498178105386096193553520269934393588592493950825111697934908380914803811905458832263223430018875215180225424784701049881545893224891372284345763698917025960788183492727990964552723136667572345817147722018916613994982352045025755140237111456425701855307144720901410210659290273802143764725186189905180639305453801241953844323490229850058623933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28481006421087570524382689181024276975937298139738937577717877498175689778783411672877156878243301214232008966147461423370942274328122750335611322527055116461689794374851285957970043181820825309202882772434912572984473358130358324415176502868955129783395721070405678918172152980049596833517730711541171384649766360928713134262573293817246371078328564857529458336165366324056539294963706645027432403083664192322926272635206669941050503163235918547250646270053436847080549309808377882304548219501262163374138439775250210428702926700831425685384928133374799456703718456640035399054600448022156746475789418091676500607761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26336280062440546759144393847492532114488491680528487840072845931801386265527911565806762598321182021375609593537524752573127476670641465103566133850184957100406741271735756180224729271073396421696237767230637746731684108236843701952809629338800668787529220208996788454876606169966306564326708291566727235313717895892649345501427390903885837800738530323170421677648712492706122663759859948309680262632428199303539149269695514254701918284827829868564688931966868652463635465817718973250889503712368324851368023305244203401928518835586193092820581538441968083176260323495311613255159803084353493868878967218668887895687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26544395962773238388535004141911337287872097651606579471930907706242139236612900884348296382885219682351033265115552630552489534239751122167459870226932055300457963467297190511909258219384556179507386805222820698075319174056908506809356856162036243870735720105848520028545101024131958587981502546624790710922739067616303470180282150690556130515722880526265598900583819168689085590775559444657620269420140254671311107829823846591751810249453342993805420614533414195770643607555687436552212082729620168936516934777122515305990100938757825123251427643730730974118778214671172353490715745349152234923478671083048396015403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29583911449681486420537138120965938458808392589148351151829067955297701467529400811461485187668006023587285870131550603621131005646184265789169903538142556426997680368809252922262868715410895811986631135926151943601717354381092486450343558862254890254041659239800495324338226968933777607095405140147271642312994696880516224861184502260045963132752325272298625713196678285768612508195629065629273573410635446341351102165062886760632746604405818608856073016864587247998318512261350699079856526024480155942885757208728456379207457307226829023139864222326156520946669021045095127899521310626974513061838680075377211949607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26679789914405129466671823718015513396588139218313726909981167738526795749394898477286886353257785518330677830801740862627228158304971952860789855200957323285937696954214437837117562401590185363822234051099973584496818352238021349396841729363906026741301254285090156189676077208654609116659699055723271679954811859714650760013468781643551233289615780291956070900053870521315531485875265965078819433903214737359889968281442706139345156906438605346765142313467277061620520176362624233566652251634468367678841911562094323682389457351387741678201699816876027357203645995448658212238457524294748881188144980280634340484073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20313151750365390905879024917539638201969868889623648198161974740312679830331468087349194364540336883831756668057673386562518769277745715852242840551507540521219051449246952293061364458425677110768521010974870586354874947725770413372353673364321148080690457702151345935699209990196697632455562261612421713853002736384744784232200223839348862791406795904782220261138876949188746363648217193422970534048151824811127015192042400167946479542305595709601495276924429291176908529560753001799300061669636624140060012245129004364166952926838053033897782069288161288895027803580059352217348860484480158835630671645336117839289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285992322978417594287135842281017259853654717941975711500806270654331771400774092560238761114334349733317575339682456358579853441399927189730352128903929820161744865128968106974953049225563577932454342659077507428572834592543415874177434090346796783054153715164470453829498220756070442181847167729696055238271623562148186096988664352955671213111154970011305558694781394653408346209628585509636336672749051519444465402558494425247739196081336057799937772621297045827946988310214998001039602622318604034255104756577285783588013979219649154868982718729449235820699282834125132088596788464167100349543839931925658394551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17409885648234290758421925613177521418358707867209635150890721023273854282360477954106512175685881446154050491089424788572513539462186809983798505244277241772284700433995995663132473383939851737607566958388191385284426040995619083567175314804608976125544428585788257748515329553715059439022014620559578743352224091545880784308350302132237004657930721150143445209750133204077866415082519519000797697836202489962216434689071539198150419586242239882832825304264396346514082959664510984859192571039651629989732857339207825510209384137995338141611144468730861827608086356262091375817891458099443415790965311218483976915191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369151236959017238723468911876436841351382024821243394162639820056117954697232288885534628153542531409639684318198401384445997902810936367832603634809911630429714911182792873004115519301193975675526904495173514234609235611116951201276119468790352422067261823723300747077130905020019924966035152293514638972673577483637059412024577624082633981888512926055875046727536143223628679138567874059795020944308164070788845889037623528233154456700284931996824324086500085763550101184013848212985076692950948195745690939980139778017910110294941503524633753731641194103323541152967792248543246253015298519581746009834257718709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16308838002568613046673254821311603095104610932302393917194021894890025609009563516170812728698633386723750233464062791119987099980990242052542700988968406332064382509988114989206349503444363025552301148486006632929317074774407279040475083664795616690606212495257116342568474820066118976641128243334616487925904163328729813421816531918780401557406287081244613209467839260544010578719457823534121257208089093401836456831381671538191583469903077412623607593708967055822299022327973723071660811091672766307895428667977164586130829992155110354377788210098292485190491499063650625003271248468562198341940514235681535736071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346756224913736384876261463236926189438627476476943474949950466807355568174296729680078708638348384408878743938075906629263893302725352623176733918152168917713109480599313074267176501811120922344857894243131232937646380622304813779442227162879840226397197727602551084602620742687360393843692240441691378034530784693646544596808298579658794703637275830136712401194203113990623168490223696321489791480059967129124948065246768668469844782742516287625859861891988267017942818048169292862031724020232202368292144517786696296024454008762400798215407572566881935433596731833265812711929903059744245755309830349057297959873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23796535835652635590109724005608721840373977912040827494284366787729098978687439725642571567758899272735107816331389694804976697359310466269982657107562770888098874620717360498884773175094351019544053396411238726206437676843804472291039007311136731597288529046354332031789327630029711266509280515302211849614080993642610396202222402973096782187460021379533766688621204770889427179452430629178751299467832515645944565993588492618647726453661657944185938482238076812456572330343255684687622120878375309274449649338475419305472331652012966555133612831552964920270508195840204229659279066900480535625586737808034421844861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21959569182640751527363387801005105465242530175250613691475371737136602350266077732541032965836016914403001813530349647998798673791853484030533434281901710337832861651222699602991444889035268400379880426968258494557605519492931349339770625958173888967790225595420835619595833249655333713165050274311461672315300439183189197778720097157912561104015114779730172844096315548360865913657120734955500244805359805564804012981703146104061699128968622576615164555466456956634931812383095539793604528680636811018312931908562148159731946016025772958361888530500323989299375715202348427874021545993584219549728833618192012311513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21336373063113478147941850605668312311236012932108110838071017303564055221566812452915607750403005391170041331942551431144915139101938221672943648594956263952693621979453820817883176333055115328051056767364018153109874289367226187634036763961804107365243810003286455134036307744291010666998187766107370890816974805984343487465462284897316018038856339888013719790692679070894725771717518757049979499092719369684320215723322733694792614523585208100471811030486778031014523743108153761863819553613869437667039605743191168407485128216918003388271564530037546273160269767345159214652858280860836507027868479887024566639503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19498869050571329564088355465979029519554024873540316139353198713506480182855196028765979736109891594601541442173902242275510538731281033946891470008182307342734827797537849459622489257712252170064675294471139495103380158576349484421365294606222846323853924235631414803384233062531877198376508401400607036259273928700255622720802074590575486912216149240560560994439128068349846228954185359281390599320341928703669096882588435508823796266891308958737141050447958449462903377123447539393201650206686285233549744739835461012453645036768655684496554540471318524592222330451045874608480513563787450505045227351497405598173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18416814182275477534411995464343184009329627795876366901113207844215884168691842812268999668149672041410514484400794545368478480534098123957455722938658503542044792250336052542873450520336931000733552042183388769076954754080583625284418672290832920872659011315658768845922196056960153194454303423399972893744903321211555669615122472596881674376164397663272458157103800678584170613444576996978383452787755073631614407585236274903100165294042783634243078304461162549132218046571366504739203090886673394710131383295395713887091229516830151057816953294341628222704668790045565309605434798002471766657471035240292164613243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340270801519201417938716621245166962391648262800232786471919912237717569233895339904193094830390238689099998990177244790597969473969686208972276827656177611622186051384103071631477784385782277278168093377344635219281529405961687835001423878598917651373626773375048001780484728150450448509126690443706395034423487607925997630563683968162445119355618751352829363450018962519009485454570238377538587859236248577262986564635527329214528192206599931262724999603566492355074033432802540691191017328429715879403813222550700209390299531953864712107490921707285548461275071903525909587307486074795616955454919458237021276127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22471707636995166561728173446224097968621532296633046704906365205177843650462401614849348708791612521868512914321647003948501449471190204082389684837586218458361720328727823576144756465107575371852927080785463631032335981003381140820359429981247438808725984595752857655093445055417814960663452736460483623341400808440908729934956935969176775804031502475084656756904422314391385689975607709424254481210543514800902649842846558132785438722012734912574538888389532547155537481628471689670722008976040769098753235304015482279620056605748030617663952992912196828788401632540900702725960075202713566770964697244979291097019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23360639854818062692064878084836339086999561349243461579672229928826576337418761019522737670837536661332794247111563691418299160169624637836901730114237508625413033616533398573998103591628209427774839438607188123214915440328554588590838672763083377842188369633623892747652674874768542722168389192606249171258088542848307349170946939246621187382557938039215439333929324567866528856052779457568743790297224553955600269689326403040740681442898665939273878896809113420591397303322176251556370582970115617511521562222139134858314602245301167717457570091398555844545661159757733977494947139450241566841913828271490731168959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20370867706585753041762856286253912201366219444915664202384203520066152384460263036943692002746970264004863312641660791943609072483652244441561627002230867873358260226658137072508512433029274941567856916877012083962977995958878534186031673289423592412385146432058608366629135372292255029940994259637446167028318266039794080263059348829142773570239327877182046656389741661646018208003400474676862127245782049498291246472235022910422424506975245932915943499919180656206679468330817499734327066547731205042746240706735726177494869179797305239177251845220413441001520428497835994885316503870001194251742738653730178567797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336380066081073480876100306869367601778689080657547839248790412575134986415218571092214350861506687327450834593186902597343493823208865942952547782568602405687857038550332652339888341118308927959418714644227721021695799039950195187070500829558726280081379687777040716914430985388672352902684137752536900143012138673958554747894312608569624782764726754261661936883604532888314786566473266726155218276263783207063901580199123857293293016080455714610173948497332463822247791763266660605257444006766254979258324399960520659876294371841854852806767385864208522729237435828581051887209373990037247178449658111622805321891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336833799868716567239283245531237200658048514384383618017065162110690971964966380088366348708541123433716022793699083256653749499768373620231618669068627738468738483689381016715397136573613032770195058461999094649437524210143156552382330201966220698440926246690535661934234444964204725079081206642300111785685983079531993187275526521101633052508762638954657603598977997998950482487492655308906849171050395845979050314252513803118986230394091191251476755658953434942143518403172146965816349435801537703261422964033639935533297622097275923784618349112293728416253007400994931064425711216032890196767469972413217316541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17366615417725987493385698354815406141702053173619585347343017011646941249310087698680508790541803035514072855317432171238377428620594675640125835601283277080715079423198554602962561540881272395043026629010687243108414191415268034207982655639770126703345586898062402289764189157095036854078556952066146077917035853032949859449359514606705847111755202023060505771224824007361192953313799681734489431213927664961609719445464556968213048098517585754495141792171770820929101733618898325153642149930042575358159743310613935335826748190913276802166231466492276460387608231557878228838762154450563210131025086847311556030547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284531571412025583283963107419434601922161537977796181773240688142181928755433793394438000850683044868945511555150081222175693652729128366038135818811999547813312589899659451408957781286181301432585019915715589362672499116692479356537813497596490431471461059218193298043014445361881347069637676029809023634987633484720523735075104929637161857060056718773143548151175434557066519493876799752778673337126182223903157392277416990089993055537662814809032958328324763179331487095714855535421656915794665272966671677071212431794114149556311404220057464776775603401467295508643780632239460925339126279708239381818879503137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23753229126788534423173824829569555122151744964065076338205483280366053958718879571633455606755433025559412956273709595902111973571129144749109322468272659429177696414756505701747700003521032866668480088741621900077732040715635966419303216833378272655955627111210274221503490549385397505941258728164528281874469221632146894395750777498083943098059940372467279395031990805646367453056633071776830670286885220707496826825065833761409758490211766289710782793312057863911097625861973094826466419007708427703207137149255400018589333019166350559758098336498009937823369909935365198383413565852589176890527739890934816739511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25206349208517005198024533235015906434382165676042621901286307519587516309948658483677549357639767669536224765914463663023269437878644002881694725487760988921234251454945643900023409399254608664635217728241064109448062847538789928148971152047686157163526629404466974597140805365331429743606577190971921422955626527922854007014873754978142724633137248535209377099072168862782672325837966496110005079980027303468297026495489099426233182986994240663790841576883846104058973576205908547494626335521052947171256496895578734318512280928460089606239329496251892925310119105127134064888138488890919549186808212273910702158653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304024545894876154002119943517394662958402475473127204002625129256821501200955135791254578628157114510345936495467040828026151127218368675584482491068271947457330830711627225816108584851725495104049911536876080454684911706451416530565062153701819203513828272075085139003778540199284034148527168342139897038196770213247327551624198169360985235919519966471280645632327784760400041838713125619070412509329908682412069081290321686867443095930785491640766201783265888970887089008141283216440169709072516643318651483278784200506887683603234492126165981735588819180661035488818508900504609352663654275062311451100392270907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20781372577053799397101225944198870611270435950394258151148087220065523004685622750055983379724322651112340110883259810195196137362267249834589926939527796906344975144878564523905430776360246353798338172931207900198146744866341647534053199074287764034534976133178098625113023657284905255933829837740415939309575577149828236693091309165444704158800622239993801805532689560207229660231327214578073406440810669767899536897603729461607760795633742389436020784091720868213914551568205645085427212871432608971336259829412103419158958437972237105759861132924344584984986172740068194212301987627562102417710052961654591697489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20990626350298854519198524006388027704136763652256507241949257829015852200852618882335604014779897126119344125085529109187218630220941446144873229654534797265114703001147910610033448485771188626104190284981267050299639053510986984010645035051910873531812264066917718313910170514873223181007462055326611146421078146100041909854346978882352600974083634593659855033914701902879617498819851614018929957217682999256209060661812633972131688713514652005842245510073784241120407519522314511283195852490911459171432517751059481969226380830406343244748191316539463332496098943148790055379104991025027737018196779864577699217523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26316866600493087699403401010182529458683067557902198642038054887718557620100130109795064481709428815931302424884115202955820296431943688388707689754971000553848673838769244778736200755963613773136133908214107046973898241357169254403932803347608363933936850050974909142080716197124729511769003052221980373265686974663191728027635853312718859672243173411008092595670328815762658955719096147374807594025261213980116837810693635359503917856433825816254130488044337043049732450630844076196897434361685338637257581784638276896238248174656195328236375923671350624517702925647260677126958322028574800131147596932073454674147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26378312422108186923824085475821431370211562483374727294924273383991413181212151389113403015872753205861216912558993026506887804120062482997345965796930765510442508936547969681697364138569271295112679095177316703709628067775957536974926649707454631929440314071846173183103864254942541411188535218985680714457758121931827754194608231906299586235721706043024677686738643666018142299962185788043077184522073751247181544744240911630062008193275107889120108195087179521771035363344176546375267226433713985595846437887233120405692926066894301629400981249056294697303187670336956289550196923007698189016996920209292459307693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24133131183949591839076549804512244071756871216650766726822244390469461631805742634423438284848088600242100619153682103227653474303541706579053267195325063813805406524170911168142256575903445207141129084304828446143631802721700170596718060912019824650919589587909005192668392814111655625825444955322491491489800035801061994379768300875603129079505666024373977633339955869653524279951113862216721928215212998060848812603864247511822044049920738201312123355088655879728497783251189529581034182570483655402063339714459559479711752000505530819540866415998225662905448384054355032316085526747550775915286018555906723111337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24357486603092809677080666745298817222990509026768435543492880930296911266783471495574908213601544485470181458672972112099292523129473497571226686107940444460089297800578646498720419261473864041153411039954834298984014410079940425066584643727617149263321850761830138007160738463461397893049836597061155558313319552750891181077289308624380168593448363050713734971564172522944335775517588340622974071699607610142608206524297949147495811477603189654892456483806509896579159491401848129632458197350848220225408033693118967825697256034224922359099668929091479632801095349301703688809251879086767089830117309871996463126007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27360864491019419341493438044586873568013972117096933908397219843530526064690385737411178636807399497277811592529604824219640131742519059550222421040850298175401397242076515798556139017650108461571597877603473901469736843715767624979197768193207809972930532004759623251971513655828238071786141662190002114718679785957562696804165509289687300080631690619441164907917166388275271269379689140194207611159764159569505075861509096955142744718086371345186435619678844318032138681777612028709117264928707658828752535677251187745633161644828159965327592625046963108401495050574207590946537157561580425148687403168718326151673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25690952476075312976832880060813764064244779578968395167859480552854218173839634003523891009326837548655552141427892227192851982228378088210983511140023245428817843154827802271125155710671867972450360389311922683284371240120910903443970634805532808216947132835173439396609960731672022184285648470093422443027479888881858838257841828546621215653750478064203387592627508844622027179886411278451668732168392587013699786258082821642087881527113375523028133352957977850170420116661572117010919519876872284161097544263383432998072323283138189146711382726476086377841280875224122601331263682768032036138833342361030747069461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21642562391016152842656532842015893889927039895866062831235074213444332207007690274669370881900355757967063659906889234248408165583615445981262639467409912900523601119750787399004511708905068274722286392233208924038399364111184650652494999994017384522124268549007969610650769229402914663125190463036941429712255255991784364864710921782989190105248439478159334522697397597308969022936777060239769949239335245266606569412488552496906493678523892136464789517593419369391215772670247657053266019790789361672603840466469148408408803582381064633792077563925029882029700031395725316419559068567799051049608158686426196811349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29012179551275018931088568868025413262421376757194500164908774260899861135504522372207657438241680571057713775539282007880916339372879102835197915799118677625866008388541664790938461732333348924345708906239400413208864892357785723738402327738850480798526587111522712072434256551799355553442456295947527675683768283523682572833409980780797982248484384695912070012140079738787775250536939138494898149190832710664451246612135933300321874697121112955689464120951366916038199483039677953297337791389551332246424368116271477843970846623494710913096844873776334393035507165484063683237995818655748869692891111018468925365907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29917259013868122742521956761210709207674799775473654524012235056823590369000643529444742148503157985169623506533682920444326685016210829934656462746824074229729878884011059439715043029474001061506647058015685857142564780665573255469142949653176885283166900083917767782233987526102844588221633536402799209350894503181878280094487893635914152777772871113538753706949999063362930922520949745335288522867405359758469824849619717295310233918190334787659907796160909283338699320794648940173131836282122222670057184094948139102648741398928969303030420053618231094146149053933803193345622075530648459300219254052347931741641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27107291757530701514087645201928622572296153572892300615542585085720779334645216739185879793153811514153788112637712048105320773346554496086049992519115944322664408172591402908861139399777000899242476198373131265658206335726253478929553204564947246033037013760323166078665596943656293558996497088618211138729155103779550803194055586846657149388696244361410574245556729462228700645413119477532115166549489313283789927315385374303999673966289537939318563877725181209125829778540638636080352054939506296781978572243670784848528159023954538883950346363034231935443793672926649246536665298252186180821079009072865479131053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25413007184941815439222796498643388409472356972978030593066024164348994224772253168178716770517180979474287498926892284592743290117731025932919503524267774928715796817376653593368003848969819101073696108145971622233660197116679771166579196560869744527350278185578400599340170741647225417087127431776874466791127658421025894480175270084974560596990396340211268825723758300149595142632042308870776831594126341330742659910983233474328177892107530408101120094246468115453957163276671912069155790977674676000522431910474506400658829559524425884290509031382888024820085285355526380344020811175353332662254896262746605816363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22574632388464402756300964842183801900147446631007543413830028827573544698481518960325569816894295836461099306171223205125136151887400608187051181954081843242414080340211096938164405858611788099388062823066720747069841341798216688598281052461779867874264461084156971511692514880896515405725426429502340292244769394243310464199038515269413245915224750169755492992462420413905850068083986317948124288470892827621385736602019162885077380865473059261666614032749581505450223177174621550043133878225358800033893846380823597490904833238726859915617479187920439394361268473578553581614006573251529144873575814471781755317651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25248050860351259601875063443137657555023425376372662326801066154788438135654253015824281465768697507235428606748233739513576473419134976882718139308606249092093658585369955200378922453321024671255032521274206296906625837492871713842970908032953622599454316522903990545552828603473459587658754771280930052616516013493191174526730077813576483005623170488901921719811096347404826629427071317566662256501447907071888413000750172036487532975223535429493026378576237880327846403290251706148691712212277840638678531293944342338365283064762006130444834956725424528741613123440644112803187715692279261872185333745438743126647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24165845156490023283162341227207782860588037279697852600938718365585923097510312886944173095324992640257963156019877942999229476275796234744622720677591292992729350712619331733145153841223433132096560231411707654451218778994917402527374507427438984953020074758695135573052931559336364874271203480303494093600592142789548803164498280274105050165306724358235268656707393652830413196368964194000414062048975332247417166214500770201711477736965245546476179324563914564625430500732494736680372294383235871149562107485028911307032723348459189461150456078276744841806445939251668624905112813889973049415167066487511000712241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19902488265125694893431113594554405448083551413054120560309761390525210267574432921463238336525902970671437721708168920599240728923317835445508835289315231439116831607671949985979077058877683652270152215027515393006489625701272412935810691179565682691311511088398646969656450510219248166051741179201642095562161544673243621957034291779460725659392178290174407766279544654205119123549043879901605041026935983314428463174816937000466337460188495164082596829350612740468807590886792280603365056034327571518284771463065306411208123570496716517539136374288239590909626123546668540454294679305112458197078971291113163390929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24043588208413729989799864421331539376871981687558145566142913573766770526743864775518300449260284457414622221419671883617133413219672518786849238440467820318968070796544956747085410556385405637725345193049654093437792032467635085652554017486815835603897035917083678881610575977458055428655465502545275772020744346263183518742209673284575670580406890608303830613319320741051307734792695739764861721201317716090820880558312646360147747842565901995215851135886350237530027398128410951752555651487322156034997519656501872156727799493391569535696673977943030477531853092107792579811605171034478345170290023646328292835753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19314633134933041834932808961572332398946269746339688255392099660644461625207244267725220365599159136454964385256421613200324874308955413976770110886656969574495124598634784147444417548836854523699572720830066747286920389479415712897691585502448337187521827929353157264651609129166115876826279010456425952428610800104448876948402455056400495601080362849735685478607744400679175898888210348517546139815035003444141152317806241479160320672038302670439012096089332719771788185357774524930019279777878396977821835573626532417588230868536917803906703506094583946351943796349586301446054018233035223218612597896712188274681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23709008178995053507564008992706232967041744432318909881719289927576711649893983934324017698751855770511264475655573316354044759093403827510742368111850954339252979457126171430713244328944288801622950204136905964928568687319262836811669059372073139551079934214256565558777429585222546031730669912346625674798395900839154476392204172387648306802424424005761567050719197559487833503499320120279263065935049274385589856144271008627749545943491622980140250134985999175857991327716336378141949505866382887628462869276224289691425100509270903661726912332515751449535777204508067135690577765528088058917369346966793805274303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31104746652499752216902793230824537375987847820522493776411349956900691456460757480016367907312435351254760307958022706980778928156834632888422912010214199987182728084382862571343710143611767993520948023724700390119349290786253909667603950733849568652484734163758970295178773667422338792530531599795871253238880313495141128547727969259866784749136224927827518880173551797421430570248594741665513627445818422621127575766232747554771926080006000134308001045598271384838241793366604542981302932548930114738734022629727408262471956367560329184427273027816071890206017110307173717857539537207595401889761725098829485939283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27275586147331551310698729123524311797204684999234493791759688484582465701727354000601527362994095795937998527589583395988391598992531828741891550027502182045938925175500347505447744780472461376348166138794165779044034263715841095146962204296939920708391647320085398994668616852974283466911940199503720383334975120894626914759156759031231460146057713905928882463120645900864697732296231944449925338142531481978875548615177825056683028674238021156030965224752796796735393035437988005326130578434296407040756640364412407787925253347507284409417465335396160545422209570852643219904882113716426864849708069252963828714591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25433817588044541203981769789569303120724780937287174287854777595572810541328725914241486024804459222282139549790688718035961821076798037850979636725015567502598942709346141727084366761031824233983613178296967889945463335931975095636567848879917110839180454779958245754172782806096382448818880513651278351664124235669167063458604618255035298518601712224478680511028461594638952064823164949139777220493077188432328037664053581586962786212327206662590388592300688097666723845977688659160074885915906805816470568214080896270197851920588509874194456659788497699013054547104440326705873745271477417413786830696471537316167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19771050395214238606061554231082735299799432956487850716395680050359579442349614093256250703433097402442231143649007640061223047432539645629156323581585792646578199231554465178534501415348574180758179106824337931569762370313733406167241521991024428678467794739178129958384307398417351213186506388057805901298109103592344886917283460547424505124174868290108656096487763567044966156763942489076751067383501255392715860306547043229611847558092954342044282718995361678889649817502099623468248093337453120834640255001735898080860960698682312310386945980677119247191714074718257210960884520255116644280041805587396761374659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20273737311136082333240136001565830739886925439033003354255164272212348465930267761837613611677133377119219218197527103500629966041854276611405235897936631896129441385389085001328619659860812391368565486182506591662706013491794412428172242880414140177927695461377320353761410710299582306486793283296489231036092086465591020526798660549916020567300542603992036109143923750947696336709384458268152816105834235182228886860777615464772252993481158111062785273699262933129307987231475102376967329028313942866792285554284446356604332618097311698738356619048736571456757783688387489731125724109978753782696825747679802325131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21984263175275165192183898954655568146447296461962290822506649372433091657656592024731003968653334345592555475031522519020123382638949662631630395166142282013267662193841769344894626493741815369669256113882737236653310784900566104351596009226625137856638966594573408019941017041848056129459037042537590169834469918351978942802252207438547080860629189593533450871851728028943117545644767625459701283544442581300484843415805289520084227172389164718337465594144612295057892202618426879253953339543839267288611062928558197227577378871916074426968872430539959454447384419854549990163669877691665165756700256212148385408811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20874853199203679746626619500260745433319826889829997301657848507269470474424879112211211845083464695596238623568231381811346963041171413703994525151398073892730481157114286831948561692453918896727347427175943259433108909612578117840864262911718007781819939171818466738751160610940442516080963400287040207444759135496532304384884917431490175913489387295953267937859196725503309542507459108601701075702778957910305261402811556995968205961542107099344986850808419024434031405150564840619182414893386312374450427228644414117540219653354520283984094115508754190058704212404514137465115079127954724191860856063511723262949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24124677826593656780644821186687029298378302542960308900020783217902343337224506408357023591454429906455588106638265593520482696316744679209878724252310482886839812892055075906000013598409895462060935734234521013871897484375304457084102106456091828411839858252558324552753435013478214283014593362507495401907690213504083444828829480102119826732980230472339977229741024892367994969375957773574773143169698095582291491667907697087941697288968177689580575983701980314837481813720860601601502297304749731975948413259014689102704211341181030251514630852160326442118779014244972743340542200881231283212578821779155722302193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28754125540246301673210386911870963260694885000610623367839861117515803610943577358042249842159535110167850709090800673447411007959930549340172926962802678425899595939914703840052691241407082841093060294145070009904279617362661570067214580082723931408520853045352852920919419020014079895120990721498984511267287136501694522999300182449755993454147125393193736271577349625080594986927063537159665678358262075692068352802912704774887434302396952545700622980021113231780837312413393991110608374747468017379640386039221632941391637571961561836262021252947118946371847764301276455391143120805806149982233796036637473236749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22420452469688449864012346553106664", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29297164436661310892074214251544907062614186517354237167446195016544126646430459329936505671485887850737880016374527005274511167981888725017995956565500461382037441093450531331172461762670972808626054185754887333091176844911425870577595921709611871330095997783560687077042988683000710180644231173652856046844458375883569714979158786920612388723192101203375049346059037074941457881743261533913640741047224104142702019435105617437675642727235794847493820863470831543644768725507361066855871884436396223440242070495913220793626258499520434134491526725954096697320517097795761688968282135768349989542788508518886901613041", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "18954974814967543088478250414348431484325389315938631759819335596051969399302652352835289558392840646128304397155558995429466891755874038999665817202306804833217096265051671668268445380778440097032357165493217917962872646687505659736159367058083010167039181522396379467443734720728594433891970070749043443799108521736721328298656091722025948066580598433607258755218929052435907789892977455988891788853162741325219760390352386870188352651721510219070710179316392956051725292952081690215007795731898034462980145889928155472462128820037559419580547907317060670441814916530369463218360670290189942835004566426618122517267", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23919731805189259960751325267037183703703164277871888159137690716588655009095162155020981956011708288619839410925406918034956179468125947072096349254506107909281117921225271260595413641068614333816767699363360983923483376404550651542604020092554111670445374126496111409551790508560188674049891463581257534884357777810888191904873495450193279712375284918970252240079200731060600086450180836052293836471524652132633467451247862186747388482381282287250901622997562155223773144456944180487369213413059566680246524400331581348829665124763054548036350098688981394391022649548493633332180834240246846630310431719449910111543", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22422204019094149043029981704250434875467210097653655856492784158603109126665248365850480192260016231707973148556009569607617022353104123011050571230290617606638921609340805719637263010087458001611695620957292284140653719804498434235774536425785621134385315130610352984482981958117417576738715539481974640015107456846636269669469486253600744919544963346354237512141595379241072018408849669030615928080711395897390159599003905654513571821113421601049457294190323426845915003868585158848334565449859901026918403184954957455626286861985880657091220995494711659850074901870994133124447273528477044036392297998280763578313", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27806257620453622180698739543554078950629750333787688098656357629579692882836060802020562617602412747440957148130957387697690654656878057569502981618053649332495070653781590067388852665023311150988795451936286506644480661313661274348237820481186204839326656427603643263799129128944131839265279529264729755925334273522972280903093256155387122874552438986043472454528813055181430770320678169391546911575755085565219183644659850227654897388012336617983954542113860942806432295747765326280410560926335112574026215970900391425982908479084998198855300947429202125786467646790319831837005705866371485613159366903599398785551", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30902522232411203505036550012574793089509481409456703891342077839215340779301066989127332912663121383523306860022531627749050839153293511439828863572262473021812660902212507517588790075644511060454667677701742902244938258456502631585400793670833339706386959993903692493398522631772307982852688003564865023721519247664694124012274406072722942732046401538139362591608276748106394226706008211740681035021331518825011570916804270306410450584302369828872616712510508821366106538850390536391684985262283926034175963851221794165350094310591261150780249432513480851204042579039839429718004785677661084965959815965356170306517", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21738598857958940638643904958257273819089066882537031075432691070221875680311944887176290451405400869603968276919695831381630123873829777497762648470891870662365079808642107687767833891471333672194188744699505715160992589196237354508633581319076345137951763325056040780514150091357872464093256743458724232864495750745214654700757595649814500781475953102642552354292310594754814432968879397053418733004112897372691855113234009773604315210721222579647997396231374963109211193560672057624934693578895141377127113557473270415237789635795427648830059013043785021501848884672646820353884796951580094846939458089989080644833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25958320792907874504139577357475401658904449546403516281658282432837383851932248010329310443535820488750748344437744720189764587435645411391646679489674098435118348778163942900780757895883893153135195554831452268377698857543837829675147987581682897865594492460734818219195258384378034312897795831687183131742608758246478131918369878024449714658139779637432297816725507975348269350896713447794554163578467797183193537434311915375243099739126746560739087813681808480870214611616536265694398672879007500062158176875468669856136635002019856013207980870711209478363796395465336854113998346932471189474138455228531820750117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25923777739122459898644217556612672224076078170770520800688963287219664047109561088921389325401532332561488145284853118458027108557445256209797177611458170334541524511789013964178474077262620316335636754470582320342169843910903103102877063037675160173728775216894179726875228697947151885529554342390754672767502898764556520981662525083668412221539659453172104999756887397020616433876484758430858227069930587493205735165894141377640768644455396395077445537194894335335811099710842210971281500222580207489666577870581729129700626414225597361216281524155540509182291526111892168681224834614921645741519831971210043437923", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28416301477141424423401100982847260931931142980588568395545252247071310944028700636865826225927375784618240788262156551737035292620551483929185590151009353425346297827281823245198677083288862703192349734855114120072859791741069654555966889328382639611234789493801830012769829991816033923771093094738811030725883592071077712579442899842600203429753261990526604766990043874100404281617184790524069462537701843559336569339303057433066938493316549716432754026932651355039951185128349336546419550596656348668230495336181856318144720787657036733665606025175358967619164346170960016586221926486997124883668196156108044978781", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "22413160341904374836279796674425241568569136724881251526949190356301851236027229543683065583457747335428795780526109629614494529948106695215123347939666353118633786827148379537215999258996685380958003891969132133693104168646264827014189750927782815370183932125155643904267376618509510620810098050416414213099983756391766206969419008597013745433574317544497298944340059476368689724330829701898229797158818507396701154031498361867849336320530692460472952880040994473299142841124217194302061015911803414438039798408513588616166907424297846704790665498514572068066597138520500587753238731693242722991643075647672523925939", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24353037741813766255693197028455208019546166153454922472730755945503106823566807869328231807875828577089508764027777445294946784809817062353578630572789626525881870781643423703240690919804080250456576940423754184535611826178094181023937172728453586626577960830797883954485365882399951884610499058401465727255586176650071964727398372748496867936578904901119189380490191616162249516708577180286157943410352099551239182118437708141912115971236543260818261045100456227210610347555757459862135223004778802796366528738774723511560379850147314642284767511077858031518301783602651323148174766701432260649619966466447061824167", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24432657310112365220043770743080871122430480803696657161323837499149385280394455593220575060040430462306560404746453726156296218846130724639566647852954943040929366785403879020813493006228504582882129737686050616785127494788076436291123621689670263352178839269359791273020800099189283655645104596669474584486135541017959574985301349458007687665859013871572327525408571012495300427932744066399321654302904381390045443795031054549252208104038481762943461461345275380675306787832704626940359486967645291133253885958742297369367613233569544753029255681511933779832038668291923549919796799586189269773731020955597001557723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24924114324496800296427762565673683841175290393884223438713894658077086152789963141336322234699073551312917458797170814333834993826969829927976237267722431617521212400828413207553509183413842079709026320454950702361702862305924766976749163533783460380005762245474734908517412705966364607739833226554639179274903362626407293179808445071480761589567251512682766035025646393781135520183141217142432067232571326842075013342637744519525238172644551490866648405857274743602473616811896022417763812258731093123250988454531355493761119543448634237764880586420246380652358505677611111556103209678918907476030403013875906871589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "26809776620992584082309910963102072644668061231181065771575761670204921121534215473470395603990869612057406183218964045050357431237314748073991786420216228733201536083669612583540668140086305723034475905418803977559506361695499976915599987086427640452701960456184023140089296445559754304712497978504136091366512505184721040016526118365307160328246310193396269199463594929600567127711890037987022482849066942635651871454705896746493332278608439399962055714785190834482240090574836336232872432246749607133018284712371046423020698700840129424993603100097926403298753592702668394234143771811912894950695763063120165858899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22712996851537537321679731691910114830757011643935847221317836938331326163655058345780776367255826078343847140842318769798024171701618660808776001408077108966481860750307153912292869236280955620034862784571063365299631748754684163279666728110042932336690681696472109446645393593331141772517533722631178444228366421270325603642586500629503858429091664887584715355568460210795746774929234743795525524476202305824959107839138875943298259646001409176533874326331415936424654649707426961569717022985082662426725020039763065812563933122879312971665175701138819825917860933142005319144435368931556739712293727626333194272143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "31539053292000695589501165991980062184950886281390660988051231827184653106029985950190892833408800006466365906366483705893995041231825985917100052864383863348554029963833922185289558265473943766196374270943881479551756611730452467012021279886250486211144954166885857321705733629737192085849973022149242027875087561207821645250109696824298008199030389890236050275708058900697696747667060018108225099172936240902152186086979243575784779861456940558010003562844026858249645930396977241953684070370292606618681985891280010162878540601196351492210614114437532053909509632704879115408335846887878739695597365012372493327359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "25733186886926179979475005055945287786677107724040836663141304675910364023391385612809297785327599364852011630431895587941838391667264955828975358852329424101875155182088019492252299616532934253492738380960603337191379671251607096852602773787707559056803734016252533974495016836594616708627299756660859048519169634795601269595864666552303715336808775921349358333545018761064249085258413936810626709406207423741292983921270350423292814360450145843875551728374751474844813039332308886898781678288253095604152216394039470606756346392591174375474139811330013496230936410186065445749237970057351448764610308408400939839593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23983636923090468051108461078809087677262449260742370233968597974805829745711362020570666966074286965654881668301140841939536259442713775482074033730035930736005950802628953987240164170712718121293772975497051116329587409887568114130701267020508678018568006768802856967124443911287796706857518866917463730352146212956284903189469178461518199471021782145632079528538727790421126243069623014868504035134066444314152419577757084153354468967117170753840246291377567911803008278979404804539960190970394824953243796798243119092513293168509285707724810630693084534695420666722474997087239975942669585281911724377595737947741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "29226553492299174439076102993446538572786995215088603667106890153212250431262330096333339707477119056252331214060333312696234596621800927625529567212000393732118830421661140287867604397514410349990396852834999148755416782147492685881596338725232575088883123977636800108236211921556293557840433968709444063933347140336774442848305067544702282175269872182857283795037794282713581998356096150851073272958694660635530023286792122533166943692398088797247194815622092451658011229582674048901048099987815770584816202015853558927692238745403375999971058541275760317403993813691152909662968538659786360712436054585179952516213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23689042341899833866511499764325158748601960747027864402223323268789005565786154314021235905350141126212606153882770439018855651081066640337287077560343342228311190010947911829162910449974666040315116815618997070870300249609421808857110252606684590514390927308329240587143849510873045976606833426391074386799662701877693726724351983890992356885647040633112902474868391954727920363623755884312632950268798511458760888382821506677674133096438122066775627965507635004010337936614097793410419825082228200845765203404594158350412088993631088095983296028243215686454949990142283220868450351589027054899431058634017701897167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27376420167590169599413468435979554248454273805951001739324805238648991963374892942827836502077034545917085694833508185396857705313486520856255975826911970296456328895011249816621497586271219297053053806987169763292867084644743914103789487153467198347385596425775326723647326686409449877307442119830514680333322395423167957563373449830116307640915534365300703569045568434168215155846600437942018385091150098517791408380369032890513824346715370116719631422255548728329440523130582976405280564449219011409748395569289811356388829376177613238419514436069240638413056046389243106328330493291536883591937231694905741970951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27748359952266441249057643062158245893931384929735031927008449849927212221279613006935076484212004211337022968940000920041788310821031701286020963533833574018682778430171397264407711863901831701098916064960302154991515663999032613879963085849400249580819826153052825908760502850526261092703215667161887311745865168668134289643793924682871009945743290752058369395631547639268250595451792639213883023918538059818431586932041320493268963546798284495138114887454634495883947110816323485262065628037699038509301683513572922024367291789310641107793744697225131108535687452724460076164340296848343241815645554951722966497439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "26735027736775218308102916073770992136536520672256306422366889588113072820411645723114792014972874252938736855725344870760739171811416999097044243117892415841856957802261133757606542828108449388995635982105165108796904860062221528402403981115595384762705319435577134870344298284128106672277540284530124261108741951407488536945929337609612194694939175911580030893469652697115825203505253729866194540857251571443650754379617893115966108661474286571011256062970636882999277741042026951275066981710109869734514501135746633797958076481927230344001924084359764288051196874648199115412272969082482860163663409393867056709859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23823227989068578033737301032328757577134697839256924329564541058095317303014573251324266571132634773165394595178184023800546093736872486754198392110447699705140047979735997090128916653320599873749832116179741899155239441441395578070409771932794762738430008496845771734590077749995383616292432510416832363283449169279610793685247608606262398472973867240618484919912412650258274693401605970582651506780062130985283169860590424936802583636705403710231868461899907220127821612839470772885661432198745630009111653575890398599058495274774166948358050614359140809184146160871002454154844796184994263179770181370448728065259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22877689998435455955944788683659714706923709146433342106505764890612878538578723832989451818187595876492082249505230805856295832601645826384831124077854647073717094863498861098919601667563403482434182332784598099996469456113596637576347100855118849520471745533863607557075107874527008822742094825483085498020738247638220209808889653671966803275176931326236328475322175260446173671872202417478275658080972324738865633835961315654455844840806599377981331609945544629606457663456137545287761029125634366005119186000716370041530560268860416057016160964044278742868047256928006231302193435160898132627859663447408160371983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22860708680823850139615848165818781493924989693297659628320278841586790026030010279935211429780733177890867734773717646998333553598006385474233171947619748738946904356832993166691873086125164784183426192878611536664385951232722856754245179259492632255143438210712223996874011989078948466152542145539652491722498725178419353240513864767520165172104060646611780244884639608105634351571355861890336664049792894392413996925951985685024394567706762050012811980701597308896797142482085552756805373396068708992589307948488188388732308964520290893939922093967034906291731227857055648978492339612329159109529222665945194235989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "20499599172376001843911871329683525081821328676861262319449193360175674292664799772454319257094713407601467514117033489457171402369125477794808840935534417895042787398610946577744557597385432615352161743259731708922200217618210647117829593076279129083046270528097782636428828001556558270738918796592469412851113580518952924297269927131302678252633053597008899013128755361885178710185581618044303232118346158176374136611345849623159036996763683935562275283953088705521212246316684212212281475889618160451882015542979877980059700334284557500897810864987743172788001619044357498318536600714423903273025995874964400428267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24101340209568478008554835896223110705069351986357241718014728282279405717818877249276480134966519514900500163522734880328490005513617673527361112135728551338784749667153641226821218049804740005927529243995468226872828099740436271747118983976592508182915279341264590000723024859194414101278569002770799456150232691886855644933453728875355349339466106046785273277960205496918323904843082904792145154049342617042834998177185825033788007778634285838107772627349863983660539317754914551826967053132588397920776225536376686618786152995908612384290601618681322811336750166541269992457180429734135105152247097491613164065439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "20230674914203525324487203233183857696019320428524135372879632582881721069040514100247213992086414541387953210609366934672676282955326577394099748334567674170874135294120156300903282033988885091827374533218284423791822831431844145044632050446209501521854788074245320390081352577505566107697390272057351582430995569188748222979086554964523005788667597831906036380911696486306284301454921229434355566604228472856468001704525977013133802940512853092651874263941171118535846382717471214811397179869907957441974805240373278561668975680072341407545312147229056009764361789586769394358011988430848812703111674078770994038887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22316025179993820831522999453330513104283342232098582316477994827198184860244007611382558241700251757349664836222629910779382869744800070333212014198049841061616117437795588628042297219421869290758989930752839058590260630508204421538273698349825999650658255353186104052430525663896787654810748460187458288392082162191230426215310620047612964089781047084312585158874453173632831926088021824446668661825642138505540171118080860304087912734655209399819091278700138296799866626185141256641777170379099983880771411036188534826506305205464816768910558664385573084309221569566739088796563212564657637375894025368413786427497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "31426704225136712857911652845288828734475853364695713204987930115759579565758805725252653778943688214610168424041926393858826839542121988546790499319235262374165236074370488323584903379547023773891856699359680372553460402534377882377864037793155052779734448486248903383383260894630102560997973314919521862704175088763499773926996631941157540598156057477794920905238398578594105985669149145356781765088730041715476582381702221277542589340468185017644819322122966701919633397659624616566315591851764600515979741183230890101005271018146645891321199505586690736928758952091516141852383765396238574243909093031917652527683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27857003126399295022239505570380372526780292204056384852601220629261579659011155430823160148811651624343645894739932477612922289361599840254838174948253289158389473618882960794209233740747367038342182834112289632521874649356151467833369936129409971465578763007853936380102676462407111160040560719521691202360742718793754145910136223358268793466490964453703933621016359577571290788584808965858174886388677151556182159382660024287859029422210783801718801373428372151162505989744575352271516475061132859468480902002069795810476717332690036239479488303320990699947519985433701757244517108934438941373014472738753581948423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27838011562443056891577222433731464168887466132371991948811641317859626533648936366941800038435244328981596172133898321227370633547011208288233689890191347346195290793483471171644911694900097534861834380556199023171018822237573866694888037734265884224364116484703915489874622221769061858184650684874561378626397853025265279514308298229474924328578273540689669896015809635492147134875077149790238536215660805360074517834023357782239356671328470421541841802730937203276557235213942770873994789826647856887658045805863901554151387354294426520027692011006001933249286143410096460212969250591876323868437266212039403808599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "30705798446610214582291104945468052604083708704554027669021801021845682145599243929402855088626757283416991700424232079884464191605223956274538434797491432458380841947412889359412745042469752897147956084129136789799274419881082520809896837803006868921151415483710626720687492659291547178599246859311457240284112200743953224306315327429278507818641636118096462771565101329129253536231372764085022233941494480152638149427727087816023717064420053657613574906645580833394944199044038765682638582850573094606821118369844690172123408484566992378348736640669202790451405250597535406069978609679823808971323647176670197186907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "25734292994951541570835770493487015670681454112915332278349692653770019968242154642878039429895266926269004068436002856820778325961073514547887134478599741580204649533461922800492438632001659109739653381448331728988898361390714595901774426466055413988465309857484952279265949026084711445187984617656761244941179153602114208671936927138674643662920927426558873792784936106689301429934944286859174563747657612944846643551119756431305565493087615124275085798202686698512345160936132656057654194456225230606539176209169955805257138146255532073660001165333013809712624709259209541084275882191170235175808122732688017803979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "29424802011410768312836378854831229752911261627445379183541472430867259211797910329102723966342686372267945126103779973090377434762249490370109587612248390394006328286146752515527504381753814547547909636053999624855019013803947808313001226921811979292933447442271692669525892096302862482097516860395109849404483200145627808814846433611243540229722967319620665340623597768806523892279946645243870868398096442947792873783051789552514381591921508456276937423837784828982591774778073875034710223702747751873787214433169129607015765139484388428139526486892543263958728175691618639676113264115188730295305728972497288137893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "25098962706551136314638086231557204876823414491927485674055727916910558421905014155851257892982586739674326571031377440537497622440924464858693583745316043681768172707808760811512726305696927902728441786095466686253428219457694660471205753153342337816832746379558228654229354177730376770641793447107018243598340531332045013494105347670353561396693222797516627802849218696757475439477499103760915319312791738093053224190284164756649743568425108131583129193539018433042401086469433069299623654209123260210440208180778247532241975099219505383775192559364187323529302710587445598355314472689235486771332384373680463736697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22719642317223610635676608451859676733122547516508368086953132191757318491159743218979941076848169110901363104774645772430909808782100538454379560601006298190569763679586005155336245314998175005864548135154409012252032891839297789449222668444452271566539726178366891433459459261896877732464260641460541723855070422983212748427903457869833626315894361665346742582751655502517740412112283252572563901248003125501649389088277078220376849170913495459773343925562615485781660733195406250095174669793018742283764420205494230766327211191831139712087697049289218471160199598357091508132910033027361331251657746864608476085861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27780186622762621061822767645707219970407790333225925789744388460983655116063148441038465262572228341878865314493201026150024321632229030076182431887377280147301591674985688359401559357893920453547045181740676287489962981161478119068282937133845242229570353535899475649938962322756783220371386597790554674948693177666605647168775813999333099924234970908958872586289479596649558585472102937406588382964077384846245479850885064759970270254853402996681581619908225189830868406581568548154283314603401674647841296996090783641901813805620674185264398938538888746815040966145702478269073205598771332848059418617681685029953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "28587800684073458346810848236498779604393153756192432825584304750288752166186542688829727267067174691448160764086237814567821064343219960911975393644907234037130049975881038824834013124100465887663243880461499256064264087470993026997970617350006989851601412839155874324912337353876591059778539231287877801768343335979828577582687272032503504726738121486663939516728703142833121376806312245886770537048607192058020055510277179062099123736237456002990615154705752051996440737706650212717489307445364552531768564065226500424586108194598249431997529058945225158060420005992589568928525826867612114932268364976761823383607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24169811280293303678950361111593402896371370693815659064861997814604814658193150954939348372593542272070609688667502992851855024471945623342206326233880102876535216849072819135451093617508059981855981915229903798415038096465756091298818611915962189870613062291535233731737165087280198029816930112430837999242942909196008455601583286237817415754833050320597616864325358391264066040328236486812178193204082506902970214714723874580369307194202700150214424042574367179849129821359907843980316741664927696163918904650567481065782113516626724552874548208249369374257905599005024160914044856654925779883309892394601589125201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "26796337942206379748371829169419637134868119023739831967924431871277840062159472878576724869530768741910442403180240087515548644745173044513821311330587698721573892152935832801513755364888337690503918323509623922994127385542860587810453361958886423476952679270396896086184231789011234922322133971543400570023032055226554107878412615704121469657176342431294592313949000007014225311440371864023853256114045705867044564118553453714396920638651862391374482169609835325964583723719460887629266592103055449917708024296653866167307117760191976772856998038470417084875277043322265056435414989574766228452992123817878090367097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "20824214900112676155552303412117884946010206112940945799034250085581653097148983975428248357165781280922906443575789886097095584254982321222618444447586329507216914806592111954557404298340993093662591038976959245232239733126832135325207631578857025897843638765571233775078503865927241038525974684595363393228766238336469192298084990652922010401258364464239363690143819894070459354675669058231545257682941124042851005495019977522992367611817679941766793620365127570124619066038469286774862398028106116783373449629869564151209786093229331945616139849364135758544463816652980523987902969674602290056178015631056467192437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24025240766602203859450589981070012976868294368936005871562618025033981821462181904674298896539615687784400292066353792244961104263708263257000328390432436940961622115309708324447829505701161128864033088284123594549472776075556989134646586628378696766909473452487924128438544006424887789344622416764057064224457014160822669864468729418764324533091374869601944641567326909400145264249742398474345400217362972907987081076662797578914932372930461696152117345192441842961483787522961593720151049379643548256737841516731251921249752778252608566613307029407522053747957728760324372054135996003763573695593774365267466835249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "22015141182114157855662463039725501061677656698254224190154389500876816660743203205943489343836515659969581492765263619812543430742652443710890575667668368942986586636517686596387149783817881553802057560244569979952856814682542032470047525417006272174828404136654625968100131952012243570358380904966252012609169816397473478477471005626027359781148117358328237262495982621353491608395669286655852884054344185080066583228791455105218706581952430518200134922970148994976360885368764916414232988029500094635674257026668503020804863817303766965488820852356063942629323605510385184644733321296486195534587931780737744165083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "19433665428709970330890344843979067859549642424706100052699354449159177556302673329552120944147399186766695186453123129404349215072074880295041335430002227795004624986191529585201964965001429938584241175074305897212288838068692111261653163368913535374398342822027154815195784314280109909690347590670430950872681798184874638049613199743428497844554960050305025570105035587175360869308891470695541717896909453200873205040521092845941431491244732013506582172503833488016082221158185283181700290700287338855809472549218238796873830188731630130422807396917076275660231827170407928974933198361804702546527282860371093763573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23973167263365817395041578198053981068507443407132576428854530385504741050323288267445362140473093748979689967574320720852460465375595463041741637335083022399387239070413090193909542085603594233912631260507479486640225411842339334676735834320855504418940190257829479090194005738434636962199932031164832664030493107508396967613516744546115105435539836671638907677694961008146514364023129778157925150439637119679260557515848897331806483923554639736042158435816009795048559850114952936849149447034229851313023224962389045778329330683144186875073770720602545172570036619570014913824450959785398012921362100818717340568253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "19726989316704294378640325316024505229495078485976111082053552247476310246503185154112795575206592825519001006900168400998480454460870767636016393352779764273533527317690740744637435099499322487609203911527754239830670816548875462137331572367481182750741982149750876056803203103081582604347512002649448339071776402473549387168874975628861320633304247003307990051721596680817867575510386502441877007055513046348961213100760941904213957186654784575807335763190059166994507492564121725163171190826971756268838397086930978192259181833782432177852816893900989910676695830546681167057752726133448650273524496615242739140881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "20418034332624483873929651609893079246906522813342676562051938080731368479997549623231251725305369725305396401887430838763584417917666218061897015852200265367611972932666530332065803343805504130947518284521555122658265376214153110238929744138829473959468223899586275887605875913856267194695848138478462598457051856251653506789423979215055493073929798648334804976474998685737873013208814279547731437794074247494077565450513005516558938636292918233495869637028604495220873388391624235543423314739765406749589369288877805199142897272908749890701116565334584790527476093728284268346992046438475228948834681460812634666591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "19307620940201905137932102680279707804907697456395604534311419231859982756149012724673241451753285038698581043226423907333191229485410085282825642210775861450922982811560245136457976792681443671916056263522084974550918613991101477436981146657176034831387025032129901351977595828760315929335711230379747846554349930215059831301073209330316828403510073989892545108805903830904972673930105849936077245037716719428126604444979654476195080860511970564765236796010543361614849549289211630385603267372854864808241069214221123551409175031773947337289301509608155949093634133939158629698143390828275944960593501043898392563321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24257717889907563942302417575423991646046977376298470170768340113072392984219271451557235589030395948384117969360375252710361909162603878812087635535973652936929898596432392495973346906922643131180974677887865563260994825366183716383950454712205835935410141394825901780304517655915708086428103516888456828187136255425919871726193060477963353833304583347577036258364308599931304119685259611697794078762244044160923371788452996433698812022306946824376977391180894717151321969253935277329921106751848383914248730647687520489167110216493652830871012261359553620237479129238602001229862136129959203894180349407074075661093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "27596162788971995710158673499138944573411020985596864237878071955580823409307183756436729472199070458690032675541345070476598869183453374237657538949838412161247531378487016469364775667871877749326471713457626494911372265823721258577461384787772440015633356552682412180644852506136458175464448176938922141118057113804347093497156260250780277962958357053988245976064373813168478713391509610818166396084492054016106944006664240363022558716196095854728479033377228824144130092448634207760752588752225864867931417052325581993545029431694388701433332454486219061027213024984182680399451820920006632999026029636703572494257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24990719862118357916922362657733655714718097907060303705338263235848124174704189410894990585710877343833233250546288972481913640323769298330934340958677102151625804100207262361896182594154180367302480061026821207067472436063706776758513266624144486928081871234185706907606093907490160061936859140544484563013695610126928525485173085571113841260356323091642709304890977645799959546767367303676267101175705734769526789740404055532996134985861098395849983219912686308756810061494082241960915448352138241414282822583640078803926020658316882929011053485844448972414213907520226025175180596378802393176680355322924162141973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22366425602798659468098410885979661949758783529302688720500703629550565761745244817760775646844560379092994773722028294880965249263310314479592803354812467100916807264636980643991465145752687431510058407062848366700503782098228916325879992675146115978171057705049809366040321378115941927345935933506864707579505711302235320130128197110966759363160906633444228136354430716981564385372852675945877516621424410059636489291157887070169482753704099591514018415026277500987780670243089148009154130099626619649176736987374459866175709336804838957018053272279147460014035691165417121803574172050514743453177921262152631111881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26624588671405268995803309283740894958945093488562790814385846873740726917517368805660191070088615228138024432507162280378596391386864283645855533345885326259671580512473820983042214939115806644119288925792897732324745830918619266332696870521332423716412674138139904664871859667979672571217570617863014853816404737746678367818227772302553285446008689385326788098566901133848357895838709891291141068480721394281135689209673093764896057840655508364066444385246982323018172520430802836958910145460133246459079902242583565998029610990849773747756298166024995027632925090721438251971144689926439573734965375777729400036913", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "905557207427070549193818567934672386283022842230319137474167571269543072674945128553602050351657726855071366584208193552836740422783485997937522488744131706738535458803614604185560996265188747720971266516272684031675037580300345197939385889003137100020387485722992681541645825257909154442065044675902266918151142879067361868370775323571984618692871052431672801223985592422149832914937441647523860881342800613428910072001676589295795710122251553248081138855223758254358765580415177422512354306917371646088364502736329151067271708981966274865446320834142662497076339104972261204953761644948087351698419330186430950891565016506409650029218082903818875314820269403008917632737934305534153744715935247817241008692098881151566307177627453045116739879444261239848803654337078221655960993437740454044113023290475621958362292810644353342224221430001364301021376105221704178419224834083785067362585293917693812601898325100161119640755353886020759397223860476487508410746851975088457525623445877558789397975155618229729771762477820898645760057444818558909353250148314827816608250386131738060976797474864720542312039019223909432790458058467652632341588787601292966990959216116839344597242285459566500821255294824584942710955526004593445739164533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "583374046572413385915280852809055969695053652230760541782335500066113440909584034889628462022570520361503286738409681277258505702956169117122113145770057468881500510130364709131870215604427215619920643483024208365953684937522781185106135712022295760302330838448144608805186474796302707464246091925749148591286034352636112354330787835534570778742399749081315931874553961642475079773580704935169045033784039420114112902348520562151647977737064048016108967946270028314305135983666389334349270979489849308999336714066748939935340476270835335258864065505532935704083561978604850909274764515860198934874282138340982877237314720792302838173000100952459346411555299596791524896352580284962594634162230314115777438007622741448987312546240119407465802791461927617053016380441074825144748569900885508953372837078028550653426854180445515654136908413303152093337614185349725279024374225186706922670663150383132771046993168039160439733484805504139368527911566945922001586448482337463974017241222994064897585537849771460933464565532415691675094949763847074100500572990182073119919582781802878087269344974437803960896998471093158460712470064361506777184829455604817762819856766404725985010130265601339692649371105475615198265404036514540619014430421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18046173326920973884156508362499920852643307852982396308419421593927046941225246090791022304163852900908141273112099267907869441538367372852359395442854946244660309042238115972956504759770321619188712811007598149377107602720933842897872010317117518383138880914542124755821474106232004808969683091403067395462076425759933723637579938920314539213680813564675926156417602078374167153352471448487674102845324473010001806694252809738364098588748351493560050832507927994833856172840976011429308593949803381492397585452445460255718078059306993003828088498990676883985755316890251733877526330385758065226125672858181774941369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18934242458095198119332878283627357601278108907774106410195084496734725285671366382774579985082148683923933735436735069371778283990850302497553687981156742729543655789273189582944438453582924898909330419040140322027438669537472028573553257624075261333891159440759172941536007830879517168898298120635100370396054085315678112635763110520335786978829504140966053683852902298324943883169356508061271671873644911929663627938714691103542744302435894123292099782966624094724818583677943315395130356538337747934483233193485951123540998809829508503764330730731914915638135765156213661298671304699045396774926752211891016716009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18216694038071026413093955829510908897016033895009824868603622030058497650255839150838747199106053386241530908387463830393241976679043607310822776163455518638132120510303170265254677773767647913560862074664987040248228659950278489179460860953492555951004155777696340421506442665290455906285335617139995094287114316606891172261345981004185582540670325769901791978194335715565410660068776320962470865398273187658466987198492060674768876239991110643273810125503885287588929990092273761566925619102450141144270015094469555584671739220652505956846469536963892148438809155110171764062642389903745589167658026117294100160457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "784856238803250176349794937846683157378959190923615325786044845871138225364671357178815187561359034537835105218920998648342528541829542045634391980545286644763359019688767825201326076169470571995287719460613123942796574890349302097015422376263813196870075718663750537790614380071632882116477345053809077688993757924841045717267426012806081530825037476419923929524269889699701771323956709676009627218092156650030522483506183155698056539422471818233134374608010267088336737141903866031836451585194972050240974226243559806033160842184630926639396945631824252215679655948085257597740934829100637083700153052431863605029775419922497672135456836206477531752694809330418582671819508373736838015973871161102934118485126222257866760689689880821694982775700725508169095353307429778999952551301862206907288986242609911283300876411933816995545643352932473816014679805832670459142077504619661052663373882369822950252515231563538645119099136572369487758389880429692833240330389299496983933976492696035629955156938737419047093518300684794637688732407689538014423233252485465055677106820282257524593521866306036291644091801900605039662344674299202729156343646473466082878050351975180826788131743058060487850360208519832281545234162762940867044416751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26736660317650066921562193261104557964231273761980785095946843628267425956779979149789122087004761396508476095496815113502505918843111500389890524964624408024961561301292444952273469339014698273218979611660020086701660106793982657360373130738294499212696636968376581969696226337131060954007316991212463114939067109519629516910988810084663369178502890974235064767696154275512572510978880342800982001371652319407196136023913379661622464476880218301897881230323511555849939801856418970054178345720459013775709700654167092033886717697591075818218230104485895850549299827027745253464320785479924278320170443534088047513961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24878100749980574545479054376034469726957293681476922661921392418682124243929414919100973254569693694204940159724322024610933485502317934520101244848356010012992122680112479506133084040422126230038299779748400732275247091300089358723873104444825199211848733960047931191745136281878661150070103017199707548905135439342743988344616560743698389040984278347871353344179140049766373642496015270701779497447827691232315189634182051687424032582405033518320643929483716155110433284956239137535615321274912837774080054400208013062797646735590474891537862534856851522181677006104669177255849376445870787996735316191939239403579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24180197912283280318358759016353333741090434864546960857163797232913291365665346601986560048950970137910485526042204235772821211343090911551091383336004331134972821284924803934389571705344614698567094373671691033886209495659183081345251293562996018081050038127394227408599235398137193566993141014448984612317481450314827036983382746340479919120786309777766671220413633681978669461900550643407702461329591969440467881953132612139837489890188070027180804075404683975960027746377923858642606849468312135527399921413619983312804967571462300744544325479599009055337310830410019038956202651628774733533694750231197598023663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24253697115567744344744677122722163941285641856908864643711994741082971698055396515342960014896905933033838908106650055290070845470302215246728856300931594613419203984645456572594786101737122427775324203467011549733672247753073320303744073812785200077223585570131756354429522256403975133519329794324021614674609308490641009453063459230596242163019465697670184310838492762043664376096289051243374217120339321276683684239745635258113572255931527743472652356956415215307365454741534820451303376442636868437815204410372575416455724488432515348736229473868087009906243504275232851397499223231133292709154621766736068093713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26725023385628062104755992995567465879881189307969645682773587788810666684457897368456173483695451636294941867852452255756311723528674641297101682444109566189053752725999646986076635578959941291434153494224068512860658037433240083581547234524147109080736071781322657883370989323424538097786843597320331257789133683091990847215884639242957460141407887277052230117931510417648213185148300939958123617709061333183864996583962322840312747352343880881825090774675808796380144624498717683343293993696188537841091362412246034046971046177303349483743206032462022989569023138167620317610679469243746361714191369684524552588773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27334622041459453739027625837781155769556448811456966425714723682318611590489405147686895361946454167649288331245944205113388405060867990502528063214465444515626021449963374279856908968636751356586859178958991415068851720728224696570285958593795443848003603734912899367764307771845404876887747099868679139142034281098823972469014310899894442917791407445859783481757737024171519162425153815726271232139305721355615139702412621905331766881283451593913841613268684788690536286916057705537462086131417748648474548765769870831157473251632022942598814560327190926921609493187434101811651523528060968088248684933979243512679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22729275713341094015343820687742433103433658461524797071648983658810010489657331578001881611212238987040581122932226899249073051667273877864082218626937704895655996584066101871157696494633080799479358084546909749153862540971695719790993166141822466335691143258683003608865046258137514729148363926720244364703231218270766219856710632470730690307385078444521493075819610577526691101810431305184364155947384845351099216285921326761208178734501708028771420656231630206640669729830601811308360888857771641041573400419703958125071427304273808842657786018041857426845067958990596255216250258140375082806286516712072692526669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29496840301465596620752044358327801615837337786747300979968382033496425885012263137834001587128329243244328886089892447872871375583403447741110621169786205810498712737162671219939606403006906925835988918395598653267271638051763192384009987069223146137598748812312319220435868899782875100196199069984874191534407722902683914117576543910107497150941332505025141228808478240602535624132562930070200950345673214860464078987582526585425131967436155260730722839495923155125299744672239262308558137177446557593411084722808577881774113242870896963159569001946217883884756984225581608139174734727533868751976946292008104602429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29465346302286002470689263799354092792005213131393706004491856223641760248711691663797092850377954577624794752380548192642117366481095187534681306204682491045137261802686258596039736193510357382126633908436587369648418053214279150540725287106432265008720208289179606420109668276556708591111330001913725443410700432249259660617168505476019435263337791195232981321664636345429908757105692695565219387352753486991135091918049553099852651652225611993469308329123313706423187398689574636173212724102292196055698509940017865468544964699525273007786115510020882220475818759204169807326990912105936833433161025370157447169741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21786237112779684981348391330588168731215429716441490478277762825128037463308558686927016486098337384208752412387833698132016409626085144401483267324569046348552410305253892219909639655567951539708342425669063093582253124110618860640999453208439327001305604686224482066049433358881955407097286818866368011294979895334879669812505380087412489371304150173228355967600493026823648953542282722178457391883486923171860499159544562636819733361344426064682493380673469308757748282254139457425529612203944800843274710450779870246372305877482170082121190746992143936606092598146383135951230146913431507483366323041541375879213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25789465846087957566389214035739890651199956840613814261786035437420814364992614585068179778344769364526784835202146450244953388103799810404079850692147129637722996506994559082166515875402755506896546490569114902058087333260045354179303708551306672376508049353938811443983371948430871276774587135050422015387928561984061669351713110558959887053822454683328326637352076019402344349423267259552885810876657118096894915706034704794400836407274212655837526759648374672016908968335613353614607067146393450661076200789725461276841101412627804704807129450025638304816527840953789571455422377608312256509805145760137418611393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28199900901033190042823816104325105828775941603406244259872591853760910238143243080146057690076387443009713229630279348070780808413685412668868727966464558742883878132877402241070912012437224187052710945126109023147158547308145374636894947291939746517064939361476939674303198006547082310197463269685700952641178338814034612524680407797484979803931384089605285037464362660642753388519033601159573034391640525407257445804502540719399240975199755779525145512073526918314174272703594935341696750222093727942589121291784017832193235238677000535072222372713895872834133969185881888790477546958750564618595741202174927621323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23567552778733597648418443354226442", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23247928851838886669571488590989330", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25856482819585140980834835273142358", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24545223783767253424792780982268973", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21353304727602937915202901971762236", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24499234062574331182084855447382662", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22817946118809819746511021057523231", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25532089105995794974728403743526339", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25872958771106623284315896594596054", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23909577271832383299608352746609701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25866737463806811899015888940101638", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21953822035837573127909436263829253", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24368500426181013833565842483745946", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24771360445189503882721922161462304", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23246526638412100934746949019982167", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23460349554330536245226215473075264", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21194183738932240572249532338169184", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25807308043110117534455672622149737", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21624997107997623655080112001611016", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21663855457523776797980523287202926", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23567996102650830506921907186512661", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24406840996302583806675128209222998", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24303561133786770954844331473012137", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21698447500979180375723375037178104", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21580635100718660248330489547179712", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25292359721569061234206995148087156", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21659428317738984817518548955604846", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23541540355711731109393807809244776", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23456720733344605570972661082132274", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24669824224867251177922070492927100", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23039210915910089847565161186146871", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21660829760229742952187979114345695", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21747519596429851992396342363234438", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25936577515130832155095265899393320", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21617440950124465163587444766216799", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25954752116056685406988456637054170", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22020147852856746563850282149706177", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22502925035427346320878404274734989", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21916545100665282748517854212604504", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22947884052274469747524858127129314", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23268604223471293383699144460268057", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23942940748961056084791698091146053", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21031098520173570326684092812340583", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25786913435447988792321476804983409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23065508536099722130028469970339154", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22183556642360465137309593216680844", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22206368027279025166498211679606871", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25230004631119882698988383752127214", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23103933160642202606853485103111406", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23344894791260611366294078345198523", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25821936941476236094869408938094368", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21147038423526677917781963496093599", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2", + "modulus": "20893567768457139174608356034368084515209802871479678462433997632989473532814166166561858186089407632972400785718958842191599814196317313292180191832244668628228930555754964226527675186345035216069016974574511391092716731995965476382292051239953942944057678312540049138522043984502685328982843983489173853040937508331754547317916576339854143965241920100257525251176544665881007990963181173171365954712926143467935166363636223502994394014990754597229629879846174209931196737803683373263502598104497119721223794060894493940883584910412471467823014247619113204599414893985119951374336831939297488363522529357576835015451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23003336404430532267222052733749094394389401936444868002823679610345225490031002524839742244792846148591118146345577381357497226640657239915459674497315238475099776142655873454403207195498447321647446467249644675095323623773663647899238802051588662011708105808790013602526748546708939321497203285834211274953763381294927763917904661748788353442753638136100760791365577603004265400837860474035371340804116789935594625773288570661301578027725229686183393137544134315461978812996714333973533666241052407288588274266896951174329475291167486462845635698408740445546184139397503095195992738085720821649433786915738750544723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "30956503562848262021191865360108384046964606693548476135787445157563930219151913738468401262013044511408197375266480416834964318222387215121488883492076037080572843153662799588142415568994930005722348594564612899871392734744521025817145613345968974649563070043415587203705205364664690634216996382061975737993831015478686734946552895729210560325298857447369857907241168733117868702007185785022101170969223118158515963053776199662998832394880262389189160385744814335790796235861160743242427207131906298338248417025193843437928228942294466477501082322461586989194767195769006507560359930836171496353265936588989774537713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25807804958573359733594395886885440774611240054850420114468957907314131672401810329041443951648235241576794533104328368623238696877382143292764654403210893922671292070578239308428971789983785258511318188742161060587054680967133609025351467472884631588113614300449182988335724011986226735632901611116485911969502355397016727775431988392494037036927282305974337551350439937085386527100306459120610730895144580646945536944002006310746673564892629870139256218445359626237916526584208603832472690345841159209538978916162120368606669878524675568943939453236030855928540847540659907690221537520993721762786853940156743215057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26619625003136874375959470625637414376455550531500057156469042525248632164987163192029074200447981228825696545156939995520508298606557938933733526613112504145675904678070550517706052650873601789623990271916776989691763062181749137130337307561493188826437218083492341607145937753600679513043332749364966878260994219318990116942818544311438536262632672895153271263628380368149881465091794498287568727796288785643471506733360343593990034275853584901208383355805238035209646549732705809996015803706625483855785039514888804149916124070463605075082226927434197331560425695396977890148711430921041442069321264191454929157993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26895252826670614690337951306879039976312559491767878955576596680252186562019620742590576892225019554054505026326230858333806139585889492145792646542216310070253469947667181385014186086669965501943023153599312229446724087792338603745808735171795796325880803995468013164036668085502771296288804040721819377892683582993433669607751802619978142161331217945006215170195818420886132370219129458086394730608734471586170060252525402940481126041620627103498147822243276953061698123957672865129130224958217034252718070017960617415095827952299634344020962690319370542319704528834054908129326121879973255154670196768577017326433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22173947238449793671043573057062981663162442851238426575779151377345528921118370753104643132193776283113704118660247291766611722127419479609792913839908046821264718302824194124265117021231666847131979905381189945319086501357884012202271569530874759781988512382816204159201436264601990323290980470151101133788030045678692823347840049379224312265217289444661365998718420787451334225118826630420544737193077488870047106653970194259689829886932629869130626427897689329192800140341710809391072726438510729651898139471482064371320797242458324771021377798996338037744509923043622609491614500771574658587099138309060054161823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25092766895750844369374075247942197983371254308945613742593570141000402881206117215618503047490727533871182011202712757602931163767109088504039944572827346905163493580588175289967671087381487495898135298148470910722521539390843716026800971196442979174405920017817680695736145424428350244343125445613465444800988363337960078594166433335221689686662218971292374793198383628299103222644966013227968711786203341264584185737108649700941240574329267506659666070208462058087652193120119177126727338713707724664942696726210121146311422114491375430788521766007945351412267406770414524383628914228411490279083282654652472560687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23366770988729972549859961779668018952192939846966133244749353347953619585153001661536748414702485427514119842157770251805722594326928337840122223393136480053087868628049667134043760513958771630360296677850572385018491190650884487676552490212997702472548448867916823030659825157094847644804238278884702061697260869590612259110777064281491982099481679423063148742076289699467722302261649062890391298441564891025620495084078568765738327687969255246984754454359348943694411981151475136303214563270839153724915290758457469865849218992471490869460395110778095902589470426785299733739022242527406009335939101195303063505647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "27899282377688016705203499405607250140838977651615711646869338461683230837509616417353073980238072724324179358130225852531537088285895211702111514133643190588142131693120219230887696337671837539901820462800260986933795170361041504285453764965520779378373361506774616912636665342186025799439015039358061836700928795056218835053269310501192606346488579825333085140050952128620583209905155849570516674663086926121680845800435042879718452930616516339881253104895635019987354368515771907720096152383743573196417272451551622889901510030959259173547733850242896546064397121734424512609172134467425552891886681171379784198127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26876172022836143115773703553585430025313097706680427712236803986637922309096430753825404755344642538802535976429736645064965449967475293722726818930514814830376130715608674048551064956813599955207460558757614847352521095184229788309823919800414825478563198456450412728921681452925438081305401378266805661478158181802201650640809131950892049195743606652870942451048667039822090749960349850437383593884917593289892169155979294728392272844616543794734005186805347944371769093878726376325133694944221709211831457777562222346318965786644875432116537573115278202086414625185981117245000815137448951532053152900406978733177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258878943904583046744704891709795704290298182808460744733024972183169047395377349311396703412179539885476127082980419203254587601876409620768459159529756362941540614507399216768478500375425934168327597660403792194968159317983453554544622344793231842984025257106129964313294825893979765106131099754557509288491541336398511310355221759298598180035819531445810015043831007634581562294469386853022577316002019312733151645880091192166654002900601903877260642850847757845138730318791468976987275697939436862411318464611581843353014915136086178925986539124980140829547479199742758396894646840240080139156041439844528124921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19301249797434143384867298730310145628366601208710943077028222515140324289789912492769066464184638326610551236133474727460255677005572687133762966404145692901963565469330247440562604060434022960409162052407041021526237156326167959973685003642584660107786102637790990556312883660710490866693578651041333257116012183518886486532814667153874236505016242232240236522019020795677704552721340000368331395321003162202636898196648747365409138998254540658423365156801559793564470313967892911015827327874911795270942187920093915730693549252662754670915669956750725553781975487837357725321878193493161545473906163351726903717673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271003322561074521260388755250423682823898320434919528833705181979228028862367673954587705601161734785248921298695819921393102119277972123852268770303616451762443843732187404977217099236637042732762532942072172170921107587438013726644555446722883895600610023048871160020643673762148866734820926271867282694560026649290878865673767812908143439403721695938901622048314172878867373728509611297200701658266327345817795597721077157387257650064917056646955755482440349601120266178589522407259445969012554064845825064340542468397898605536254333149075103570671141914544498797966399924558156479027841484187594937867498630547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26407295783297036503904069460521700831120457014700642878848237003331347717124700467547836199829475468587605569316051322546051355482725614906906853489309415088750282999833386059318529259087832776527938601080127849217492058836911650550994974555805252028613355617476873114150171770329182064393917364869642266129297686941310719626156236651133707959436755886782632276853123865372352727337180659347469944896826646199294224344418108286318547049804356396600567174431382339963463787163877381596097106084713795452153849781412383756028443458640950335056179017886038017709235804518578696104124500506860612259239057265955514954983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328825482822495151088260295879585293815591623364291684779587177132483267479757083925976471872898127089614657621268781647021425570031207365316780737878031880668980186764337086539559240774952005617501100507271106076495315537364133370873431898664926122814600620254008771167502327430160799045572854350622712005150000551640073650213656540459116991204185006811323404721279852233083028278600501595578974616433343224619216432809919524405046755397162758859317106653153513344951499182172477228721484965734691203863157580269709571480914517166938241129873796887719657022644328274577458893988597195417885743035403098079128591403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23213025879562547768066569928154355911712532435328934842017560228861962386649127058029169674199877446087699657811199781525169589147491473458211180978149119697520247683004641527137785027864667057743983118331398668108855628170604303948842314981263492081663480307793033001796212100444372854766613143382184603589871690150121089275474121570636620729086347182782216248651970840520895360693806751750015844550209769213558768936995140365527515692776748779903135950730154288290297433066646839160043477401258237390715452605817109276222711730842624349687804704076572963347617796074862342774515523484057422219133735911758245082209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324293934220166142194136019623919282365410153763806627978418369389799038699537106061902059506273257921074984415654172616972305261415350827056811695793891724241961667004474483082582083621454838721588241620886336622802631515169208104406946511581369278161889969297865483195701558514705739656897324315292980146876790478580106672264223125956796528752588743368583421462329128678515722710006120094108339663180878996759891826649468383225210789902884710250634138257015725520005749437639423031991337524268836610873157188381233418386379473427975759675943534310821954882559145415284095746185020279867796612116052986929658870661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18006976709369217625558207799874666917867618327608026668094056013643384090698345154881125846801514872348970208231802481612122978023426617317338430708944984890269066230553807649910357073052944739182905235561490263252971255967695659112358715014400059952965127628998866849582048092891250482569424233508493644640440699314900811315500777230156937368916567207091521141097577078248999288541194775898309867534614118899565955470881379775120073440164357282186844490629497880397152412704901666588839211364317428851558574299836039581995392236434345722046686768911394817191514627267362594250969919051667914471095582257059553175569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22485588210009386871748537852692673590899356154015544992813353986131206959288282463603682745089107902075029711334348159645756020343635795267175408097432358136257264186498639582750551778946262132855583173836520312991547337084988839971951608194019859575616194027415578678058283991259072501902209606350578801858427062116549556469601914784437297383777838814366548022202745663787346763528021581547195983807664695417951330278472602149399065691546771735445906178355901535152962332091142319170591898144504052829236951557639042934404561555819145245191443826517178814923174688821949496287776749444847729454388196283118371923743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290691275837323456748253055308384910266067383330553110838230130556100313682443288013346739530696519219132595966074173812540811577517070439269003452034815814517871854305437962137392620614906520378538332566976865618866166372078999035875373730621111948662734557447265929094034595543006854581147782273044500824322994514251218066141304908039171500031239118492309251393509388590051405739449397861024275181577080408341431572530018508027018825371083587324322576746791650361940895010939626333840291434645654647519197275617845392960229269510795182461040993049074801685436276200900732719552602220015906244501288801813287072493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277254416707665472509363431728907397983580323686305823209970335015427875954670243166421690756767240743871141445903009852771633339511543053293250483785559271384097740936824956042662856827015895539781577350646070973904105760996932620035903097065549570314080066364069468494769727683374130703686080479760712906221775803274258608490182554974975921795425471321655879842038845096683213424362281841730334976681607167764400779452350337328736461999140014477845187864609617130033284364863323164998326965656181505475149525091269371058583091014922947244561733532408420643375483452140573559450648040991308775848436480206610747541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21753034607806473252124797308871845873667125068218199729941813227025365510002400364976845137655511428456480463589682310531531648016550232704309626380234605341134934029668803426160018913256898072114922425573162082058118477773798882333959399385017595026254103260238120493893891635279419976259662016383499037168699335426454024948823752356766433929112741721819603649195143164827466841755783680489891766897105790823749121012820852254924794420467744396493972590397797116966698749103011112298133193747364713526919929494967998310406375587102904994962906589957193201495600311988072578382719618757943130101317384124100825612913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331358491293460293413206035517436330634300475905662300244998651004859013523987946791078248939753024632236593724531136224228202922390372998172231343216413827667777239931665423863305238340292519096851130760308838510395806346457602830890935807484006276733047981544607472839080364512783934715312304685270458777633742973895013354406295611347511532797172629287417428579258926358135844745277852665404384862985059991221343222894307691570368165113845272401561797569072857439248214732580839005474379106834481751918900844061213221448215756878125420109055860907855339120583459000593855086689458220483494842655699486162496263409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314797529787388034103611273605155381938532176422648067894979153843634357811007735700184059094931080801050250876046144630416320086587252947634920447807939290024199282883332298940535790592689899793605872706697093388909391112257670781981360109270545730107331805630711823235943743067272098006261642779919472750089881156513065928774082952619572715555535775681015661825943807185173144188685553436972249611761097926956468278644021695683776046074040532786388960339692382769984955863400187029644927851119424150852047007972940209988799269490320884314597223934179128141986111523700599546816640638349621646823681607649731050249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314168709167352448661667538033556039325861320665702131716987998426545836642769641927430889279392875093839482359607840067186302580798101045366615013347117586127529510658227426708199410369055299272856953012974514407002094112919643682378863178425111418469982409628728816339644087410605571108041719962611141408031544297907485372652845878050990461342667967149833586200430520605693409539602880191001152998554294844981305596506495608830431816159349042798153741842240662699028319111441174822162747153156691569118236173179647790489749001164484409264151104153441254327201052621746221698550051750832191361708640936569824765983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331926599805554882584033457622102276581340329934586212393306368821262730509694550851002743169032621943741340456217571820107293376022960931034123581997770509212899700585114517524312614083035853827814192763952820777899580819930898050528688859813685919857859984965751039558857038979439152168038622422759545260356921826186503433987885731330010640345900810921976545859819886095020400552753321406289388227268302508787036049471473690305799709561924407918661979382380924696215784349042788700860409857260476736607908246958747713358323880924175378355397115299978139495217692624985238594567948546947867501324882922404571395363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20075941907743953925811623134028130102616898412367707035092855261422663076910281911298800353388744079365647948210946827836850819275069769563037965473799844632056857326966334318009406779917650545540926475350475968839266743911055077590831617905703051458498867223009797865374057858288451394387771136546653271461381017755547957811343392398712625200223086344809865250292751797336129971286767679892887161036242172963417907220191867649340669750634454897856203493073121076362601058015241008707775297395944446493796942888396566379470007881958715211237195889948239720756475830859486298922075818270285823007667419649692007807989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332645774313224597724109714192811316100061071856750211909994594313876840801492272091898285525659330922442013083050333415351769156988453838213495796819546750269068227493332808379601944932119788136010650463686075160913437601335881575000594613306898536325613529125701224621250018383129855374538328022641169919083649298027642355295408960626715732735672998745039614407721584771993259715434289439939047082436754759192627880844587478795034167890053964814032529557966419919059174482861224175099071330337094202730118928537013546082212748614018956414128685172432537547014525753752077748313404999514446816773137095502380426489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22238666728568798736820646680953077897390074563330352353844620444316925001169009821131821907910783978812585326629670576425842096829195182037377295361808765926622754613042386800863665314005157907368691553572737457864056470544815331201988381458696042343832255110610623504543009083898670153816480880589709655601095167159583318610804267900629781647554418284086473462509717458274981255513333027532884748902353353929532853557918259969967655706108943909940967229936963972264369701054097540909532272342922762818702294194859647395622060307157125210500729764910435005619753286834910284380174005928748568478906507272597735516737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247498716771973691257281248548269845066624676392222018115875609008792454939383387415639685556740776375342241109116769118096329742625929353789169684007723427020426471378316493085888073356953093900909811130265530408731082090762285367411242165883971387220114455287499791164128584541582786942029372474432551863832222182206551777140868527412250320363474200799892565731831891983782818442078365710152929440674785249270892984230966753791321710045913118835510361193936812076289259761174240191285402686052509610079716268599684873967773292405829910420178819487841301435963359343651333015109745738502460113339606490109215778193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20771582360458867528426849953805463776038923864795279865844341804685378348167264680975310085685836873561179427104501068473647495596961047179075610527904234519623699380331252173084093546288845285363731114300813704772531889579401466380267080653986054844057964812743025656142056714330064071822843784643078938718325183801049367844054789290643208713824830389710800282069017590248782730138110091535327146884339882031246186968571708382147425296608167932405424174330809398531417699008659347016864130326281135710986993518660487723376134039461638007742637470764410527763978667140653751636654077868673300037999984919202199386791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292065041120263793536925211426639792300996589272655586673406579621268183033035546060188417836437592098277617262550062283876359952575471839625194709264557256783802953232553356943482505836322356517925222757362185895885301043076473022397895105085211691202204556558096124308364688739221800676624626987336351816846544675193602757809243123083124198401846113302915445504412491220446306664077377963261787617307612583792592655986040791523327575551674676122044628922881914382610782897052397229247289553030253850584726104308284063670034817200964151286124753513240153097820789781820103128838430366067186058873291937333964602879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17048665683302136478845330402888473580026594099440532627765278287198231602581768171106831981331097422554954586486322914358104885848545415388362486717862811613751725355650494198056361950480185814624602112774672504498698559237569676501388355054100440700319750279546559966682777746234764919944421050769056144500005871931167364241753365501966974840325580311907735498315104079836540012993153379157755340943479495133958304988100409470855528380279970160072395547576628513822290287940241034936201874011398000133536646817557051738647572249128333981170515457163756528304241590913654507115299856109041001510125008176989213589953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24078016656614552187496046124592652435932817301700776944493228109885121517699963972985435567440595853212935248349153603243631592436714511145124128705296833131405013956412419436228684986258968247598915703020945802028428214435981184154348517655799608657636929148750272900829573469404563402669868260854721450066703267856031148205374832100419850894505754726795422303516628549964636585706521216197168027818660892465845497937161366009811867376188540400161773547659762519523888799242066336937589240647045149639796383814231186863432855104193399363150434990742890267415009507547751201000674579368974161385322458620248952561121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22435833406631659925601536731496450786596028773752861338166201387807733309425409562221378127586076952010907084419029989299164338437546538779001666200876981971563172513456908520407993604084005276501556937277441473682980577861994993255190977216778619282618469295046604507886757578353652002763086769793620937261166991150273800147323736026709975564573131996816968535812230657359524676973960722007092865575967849055642177304076353613583692915098881347862028067072029330917041712195874430289619653247028773984752400921414627372834954470927055521578951933610274132326638981275021677068969442503435743019516573308497247550153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30636713532620065739438841715133833662649691763844531313351266956079530329844917044525070831424268069758442373819981496894171103162893337376266410650649018242912840474505982827284169681610400929087001627709971841527522212513940337334584214112626094594807385783127019363085598530547958614580638791655740249390283518259768337527196604427252843975860286599972540050812256397148154935228130709759700391921272336944020211633294278520357735950079996639902586617533089980865216455357696717957045527730022386233575440111566008331429604888078845368157973630322688101255688428459761661139722627899622393550557405182453674198627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29003714013108651975008394001187026452282534444496124560272060670168155086456510357450806512161173235155566746926105098645472580238493884844992263886026713913406265652826691068719878781668923167472772294395020146469578488258547328608116173634723400288308657667468737602271126457378155560694907878326364678381019578009554978668832441574917817537703851041952201689023936898883802983110458869284758326037085132390832373968113678170732227892003753987611161424264840574255209049335507519331346355455227482344642797568854357144305691377871712713763496024963717704346583729561818725113119890585379453483327228569048104504919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23508764333498186707280205122184343446795792206558487165306090751270711584929182818249837918348844384912491860807997858490254361936100422336836973591205892001615672758519866593794436746926251588104707359144469182652894725319394197865391517426869008049119834898985221844273565236326021255787545555362299538633762979774114186172572097565099358165548898401788331099474565683109227768142124901934765008687186638808163443398969568666001788046696797621971230997494333283173784441641182327324967590872938571888132754314100381582501793834925580468468045633619013747721670586634043740567015855763069746078213165436244084458793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26217392755124050387063288920392475343005298473582610877656304605592775047224295416348850687932620709351991022746700203481065832603617804300246728819934594442766436369632300462379699885510662274988908599175217151429314390100234547570718721711228088769766896469806789724393487783691351164235241696100732623400401065362928792026608489669486830544347533654931488938310901295140192258211186881131127367005522172969486971022064659450954890534808096104272959192942349311624464410815003744177821709663431107251009624037345671782123216070553823638503038262563006943840231425680658362646926630029637254839294462806225996456147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23259775955663429905373432580660041982714335354722273716001771639356748351486410737116362915943007919907009521357260189666827755194761141126605508994477481088561823423582581658036205628403741609705376265042529496638552684714848612298628765862461307524752805755999142271318376047789409651083762555435990685095793698105079024945556507206615373322559547062330940091109647282523384574208845854227058092017709231838033371003966812845607864949546985958540225296202559256404548217413698877515486860210007016726676734881997948620341447310984978587594641873697912531514387373260783404786102154444767683983167040159298196540969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19089823772185025543942115452534392092221971797516920340352576962732574267031108450246723959902148187350920619263766843580766596094736904593948132208556950319967586308152849972288606687684549262673182767932330076656666778457608995343761747370269596649681085144624454508192636202513600122374628440689286029630666309090115145524648505871823402400942388692878987497391477196482996465387577969068198788341002398925930227571881186775179827492473548667551883399529349033796235480793059850851979748116962058839126145485214546909936251730723358941212637147000310432053143473078768986093533552766518105321662882308086177178191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21474549247782640234377772854190085157327401451117390007627243285827533204410898804708491995932159060045340073073831634357634237172490870751468056678686134470626177336004387191333613698010355011243286844796406946955159876476332664471374638351409677945159907454176125423014445391774480853187185630970625712584714248272672936317169986469710505105882675060355157962298226772614159398668603622305265321044928587459368407999699522188353098056217639671185087023332653011046440544104800845161847884065917476326877964828276261325741825287880896949904357641405496970827268789101194480920522093853230119716899881248799987190459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27075024650804153780627990132510659778775823364268146391996384520095328895623864747454298322501754776809839268399755812579101415182005962733329490071503910044708015018682805531721686276139515218522159841895407198093434881734689441832484911687064658348247034664676022366119000264773677986475255539572840021143810999722856466057669721857275873839328607386663575644950534797266020992172906641227510497110171226827942543129343364575196860966897986570721123042919497617045991853286493056071080019255763320723188552769992832411582007809327235042972638315672724595983737631729673713794255863818716487197027196100094997562883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22722657142841807543028303711992079818246322889431877443606596977243609370792333017827001417844906602125115191401457577986135363784382716963907593639419105074312572924120521153716969795155465866776499628801560936182992481169092117586952201983627717227942176968288190162961484855850648009823242428731005532280160654986729073463142403107598261221448861641142165342981521587301051504618880302780035890604399535807808397114391935095416274892549136633358095810545658638043447250109809161893846773667286914034853627657798533521365046195451589342213331303033157788195496082241575724909292720188265859080386490935140868039029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21065793696076286834323722755310949880312078544712457095621650376230926522183413171422638405976756328954481930145492585147017322527401922538768355829753740987296534421609066856845077768020458112758536270457728836788786854695261084542457489960326576839192049415653574675876050486454507416051537924828132695804177488745894329995622503866306359019797754637968940883374811017983372102717940058589533254148753771276337144745703451922042653497509770654803663526916510849464556332145032492981236280355697999808553745833901220321234447828157650259954495068166672270097087403071353129877642818590695134622267888417760325273891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28486390836152523449432585912877017227084592466204474675451535887379389820759735379256005245692758652190248978084906114134203441469044486007029125808794856619577544377042584992284686734173571158276844362854590726853504121889722866514475716642476982218037347907717364781436869967870092010221014376477045147977327304103583440153735018953808994356990712400316382390057463119148258415494909841648102094223896600858624879278203518548284253942192406024217145658240946367346153394882700239538401089179003145948030487960187738134346725723674298344576673334838965012096339209448392771376413207655289198699968354445814887145677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25635482745870357642562121376430826200374985339473862302138890024708459174597712530701467726021943759799160260013425976766002748724315004842477402817239981931888965387626111294985249115164147816329312941787934089845848048397061350590954040067462416376101685005925561645895518283456864147329088563597897260193366675247900496306294696798189508080612494450981303973037827614710399447947687167329586624652745150238260536490581134559983379316191654770004744051522671208383807083372269641605957317929345217603133495582978964581979185927284034548012372654974339871007285593137487290142366993250886159473393703643271619692967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20482228656820348738634162020295375433584355444624044380729040728233414982222212923778117261388866199193672316838265153824927015771073445207719816367765399023396787777809863835454342185962061188125493208992817287568840015038201701798647628436858571522602664250933998394110891226730860434610461221329816453869587073453931452829179691243157005667289879443066612832468612047782232840614986034226078858623144881157434599830752288013604957958818349908007856261437645075018019779335339042215618585599002914927510806122227941414444581992036733230696235495222471745716626324194240049049621339107947110558505885359776503130649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27388081493035824930672890292165356237162482466757578644076360483646688691324323330418990190259683044633958422027613983489310162318674094617749924080379903918700606408879938872402200946072049447842246188964043420346605518984466474077299222976739699352427853703738943416551127393131115776729521645619636936150250852617464803695015902281598510682688728900897512439485393067422623206222240353648506864502562240018632280718785766828588280492613413397399095606940933443845275772407429195466155491163232168272701235008992004104914764894462140057131250190897469935311487876015487554584984032571684811105880077739539338913707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29517576761447660812984914861407307814171596080264759172754786444600770785851188547283324149366316740038199848062812613264543666293832559810300678323918840545487032023973498443099811764304334558117550054066381975641772103731206180289356513692701239364661128687444124083089596378451280753182269281971684585608074751238466147406149098770638465308183528719444653507649932230403532953205993359763801902617877966868002572192500426481045132210452555959142574446519459460289517632496206778952646746725499886528483701984095728048241585056248817938988258963937833203054187043051274581780730857800214931953069266309285703813229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22478611407634089495977825414007912724524836805460138544715567073072716503912772815810259281452370540345221222256121388511284300973133778477037881680678177552997521016243640215804090294916883272489826882216724385206070695863745486798391999527580467486839954881746700182854019994419299133404070129150739573696082507459090963331621516504200217302967721505986116026029172691566580127219007147796926629315087553673494215549716711561282152206191728799160578008111608233530559809514062737814093007707904804736448530477230154464755488775837046149863520936990820480140221340142838458439457907141082758940128084245145153875337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25507724003220781146751198758266008111110588664527899720902460970337380553360431731999595832887129634016663005413107476391112642887931332955615553171069375110405777686878273821751507253799982872387872369618706062247617909913461949339911070191968416226027111419143329387960642032512851344758270083272543365755996043992662635856847375283961052022343438445418059193083521813607735566195843479185088547008207935920477655919434266318849443992704956010964016875082652141723402151640049202897730764351097828653685776170841960681623408741656483559146941281086629855687352643838041305957313660884355182526827029058809466723531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21683588354034197636311050566261244503289521529271550095387405195204463525875186360294894888689496755051521706217628109405447757761337211721208045875107704217137496464164979597055910664948384425837032961660567277028154411933720969984996565396194911271625761599859952143379973924362123658483530201442173017297343297301057241920336847660861146825829137548914859233362363334932102555323442628872469058617237193746233953185757273582947403256183235834355113571177714707775363277025709312652059310225397628542404468269037987274966087328371284296108242981534348656865301206164456062089366688309464351063758821279370479548161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20994144196151238957534816098776732848136353169095323931463023850418931581507282210886456778168502328512038358860551275981769892612540700783307500114848191408299388876619357634524910562947487092536058047651811930252037431530957592088558849501234477507808203526207398369138479849838291927168994112745087490995398940617397725341098060181159290194735425913227123960775845163399464784742304594150883810627201146716612202885075739994793911618853096314537229370100860897452910493844573370574444216112305247366014440304633052315846311798227776201193506900115136898265686455246439917406872781491857634894381800633188760025083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28992344261694596226706561209241920824565441802425083154321280466056509611349933481865979119659451628754267971203104161614713400481552536930572548201681016564035136027407733011555157348019536482762344194799732686899541562942409010829291828619283828899099978558232557826078413310647020531451076792411798528832815745628880822156343354330187537029573797923221645498937842391527877143364000771616947571990193594800928351714033646738847506066866413685768179807631668580963555940196156374931425651999556927103301570732453216007560765659030443065666639973172833269775640817163820990314111375842106545519821926524844535923387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26289526293356538165213697516641551556717277599554938313279132364116456408101495242386212406601996355521288868448057416344950879488632148032236392986140678664975792415158218964095183991923364002998150023192211804601831469484904540245191863608592697358703978386265682787371688749019253738854843278848519252866054644622605960245259190569916773015736314386900477845138226962451653217888931525361921597299559809123584204111422011667718083672201917652203303654546364659705996235860589677279140899982160558659900528230169952520209329897036965746148336602188376779202256943090547401969704518967632755326608116923532453256899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21843075797724418264972272037522356330341936296665521763789974782659539837651995540554308173936440964752210601766264030208701328336597955160644087528414473782495759665374436847787323456441583456717955637550043408316587675339161776664024494554840851941798829018541555993491958904759114171988968749471230013552655638542132068639238128503817633152905454553250197272926377670507504114198562050564955010401266318339139026279785809238535905524167938765898419098619179714886963456956648728709335627714057640402387279788198240058302247981914035873855007465479359293960407512072758677666074306182412096010324693645727568111631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24316576278634378566388386464165410018585324597583468609369154949046107932460407625185468673152660549817861515677416992015275213661380404384350238900443001822995521249759719147262328770059364486593357800545534173432540267434578831478744590936066100482324245607007355671039255304879151226258488678783972153520915649229977126509082166218890743663957606182600627595034135666906464237782262578793785692831314174282724609094574840128495151400820736080012122754559463835042060834456834280669088884562382373878131452593620406644338509273836813997880485325053119525683350773316709708442218154555249700755479125748410515669967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26005519106291080062630113529022446725490334941482446189899152214110137312987283816059044217497793227391061885814855412115537714415373117086181556031138786820740406087122218250123443048526402452696456070771386144234556952714345329153688419155728192226108384224179254807617491831353923642329484029611278241672449716658421161859197019961104734270719454724484148233240746240274971847518415872756868948696559202221415590258022805955049640113607260860562020653626698919033214919936400675563771334077724052210148900507018173457988196232809933321381728055012894254841330689963951333024521616896141855315255474860847870960099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24609879839928657500822994790526398565504652163933626545603574784906690542837810554743578250303988259518131475698886519436488115155971517805201281187733403239806175967187812123913993655186290437142012085904739834921989879553441340633937861648192939505245313024914844461081059841979711797262835035978309384947033195127919423137823697236621819451155358022138938839502818655918444357348712977150882070631840728695730157619431940485016196776912714885583703103719148634341194299494440109646334796744167330836303727307413449575729278244707925647854161238992404456326658430572738764977520935610162953682957671202755896418299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26175987954719493551477452241789560102595868956658254554901747855788177894922110690342079581774334962035294164230795287250378400649258865725817569251339906523232856238821101283368509367641953840910649229064014307630732740411180743209537664881859426511991198056056214385282123755629855527402988240734441382325672385432638526770438233463184287368747589329896157432028492110082788284841415596474189359810787770462747463796203878440234340750555988907908963558198924718476770170868508875876400318018568112949100420370712714063973395304868350409351863937473837949339485635930455602034690989509433576395603352751343801327921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23035320761950596892145922970666096969667213389758349480721234770920159087288541461957183104486585554548628580803359203482019530992849790458444329646879542150454079796028131925335496916697502597359540766549649004235893642530506370036857704156127534958848054730703021323322704213006297779413703309297208028126854100378323766810354677765997737194264176370080710525788002182295426734287442876814172971593997951812035141351634742575406225492951335502692952029558773547014462064358246415686278167806045887804381440073758573627630960634892448496532218538788680548821534282470036453335702151743272234866167624973120236113391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25634940848576095367100963602239279354784390558378552640884462289855380029939032324411183155856567813726397520938804088702833476911519797900706593494065479600881972321016518653459364723364867294479347988756375859007882634651141989399249717152023560713967712827764291590539186908581030066194621012072112347092975260121858164682617697568626324560501611035804859773209936873039161277243638004828343432048385041715425849664476083818506201456504193245604987740300026155948132973225708629099598611161293728413600579877733959249721297890867736712779983105587831254966514777111121263748186843559045170866510087015837356090721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26346967125891441655398122548552836975687086329680112806308785453964213718512565674865700194097226947454108357164222258521953270675966504060958979700106459421035264854895810467866056225015920447810950854059567737817019555585029284405751101865605774157518319814836593486445203529477633259838916074489158512245774828097772394367260535961394747116219286575207958307107651406911428005122389062239988098339363535958078394666071771623110595348043580700231098886161980773770497192160345519072355021751076900306638422159288764544079847087446453813821001467327053434804536031597238743837857910769080302231269123623302755455139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20555255743447484805400599893034092289552697890025423214445568066218746704555690983620806976151634007169198353806452643820182857276112985407777933263970745122678674573364264834539425656024417756859555420664827572279920801330928121294093809191384950646367594518802011857101589235310904095191230152800820603705938267992510639566016259728076963202802498980840396716499601548767390707901487595838293381017069085956931295088089939826135173148939475187159244098536025577351760087124298437543868312692645517340363406020047664006385086425892387660966929653711259583178009942181008568723779430362670839337347766927181821933817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337280619084023367011538314608930559209721185379014538629356690998604693940483965425652597342723934197533782356789780892419227229329533414025789174885626446040149791119708350046914838437336946321918748837696620546744877992938439176155160755033637285137310817661133625464553851855009158910322486825232270858454543194378078833742220563036048472125173581963597985521364820730467988207804617332895810838076383380902363940398819215674043837984860430242156259321182114189984353965125295428651695986366312261663067000805081104969266758453004249944059034594810474527193978647969480179040245300128579144676889389842515143207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23365414367142257573241171829825427040739512128459596004506855322428730678115616645602950895502593105791295320245251037113262711758100064641705392851458114162712986976094343251758425438103250144063089475392888484416686106396899637614902141892886193161646884303291290078256236652995112068272441500956629034163436175196570660473930637915628454310690831189807898613288023629195583327395941164452999876012675223779202757635620124797154775912878646565105468981929723027427688410871138699762930185352609206994376248555377158660536445410112039814470123115042022158567901409954650028440905762370036406233762089030316532919203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17236280500152432957161547521276964295694260019461407349746598302831952878851453543581412270087125332846224766983638584412367949712564280649439428989275899863786466060555270174123961628504325947704980180797462394576230099066338431223476454243069273517719714205964502963168704556416826383510383657955301752879025079121779987083612832411147796556495534991936452456450798087577885254836051002840599763779779387260362293023491846544407202270096068962840684808109213591697635046407171986904030711105190249329075603711864998526167962083903901987256297307610902907338556995552119563085559909299384152025896760131175101425297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23820113299985054599096137737081026920522124515435561440960325782887037706559839977246819270329710088398917009841972059562310291384078542987334639005029816310014827716617469651739253148370670393033497376836363245247716006629638939996933401165758465927575437604331857433779330756599098529281308444036784301166868599862516821836708385194744467885343722229947873742237921243310980072003220511478313721026674652756456898847753945630627734698882176970745239712878821303829661481210768855560202286260100675685988283760049172033157170493642026148705726786575231307170987540129285084897741674480126882243293019524582554259977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315615778805685665637049481957319484549373582560561776371409108657736369630799678593983984188275483816338382136434770213190690179760549624910358394483415958866123178593355837035437353577358551372569904213606977612509755435236941586266411411681946224339080917675977377938908805773108122366328204309375616765067211044665475203469285432602729453581834869710751124068847041263667873306839054286223784388793677178173266501840563868980978380806694131852280177773071283668865214033712285080320363323460651555468599811955768989435443505474920019712947128370889684474586833839197572783041399376045102920772305767408794417713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309168005536940448054295394690038621677135912661335315819372088656534432919806669318461732837650537998208329562540068542101072894746733207957218325134617197224514992618223629567240689326970803435209849044256728555950329521838723413346789179956892720509884751864647799014682619505445573854054645142535080575373100951449087080722716046704855912260579409632796810594530746976488609850703443055800497299162248621761926928069526358606138446763420320342739888481512598628460038252242363343666472306109764672430589736425221608857705578380202571024403368811421608017434410133087006829775847968118546212409683702256009692857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343528899061394958663396058574891154708879960292296383249122869858116259801676762722958678125723437541384140148153190495722514107890104512959683242892842247255543907886726049750762279405473077417355410814634397520367374601365983123887725601284781355312206913160322296197174013183547205526687596409783550032825645904095141297027393392182314341277988549242140374895004182196559812715171816901870056846669195238303048476520784347980493867411309651338576377854113384422644286333227375823542218696599818071429422941061985743565767526103173897810814604199596711756677215299303545934856619836275436307552203340176121187349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18195552033996508766871801362621693191038207757135431904766247295544655381877596919126891483873616924469766519061604613556025009043132680078555574873040648165829248633979071326326492350573700903561800956321090663867224159439505837720918336454488352122966984012955714171088703211263448245600747436790726565471892766090630154840425958377384849240284129040222621589861891494566205410737974985704631907353186490643126402001836172031900990641444548859029911486057099390766327022862175337279188177873406199911046982023937493893893204538478385482897572830460789890644965897009496844750712801736324130093211380860889918479461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27582096496710595935366348218978292722444540110117823684003908783394599114280666464088695936557806475669382536726041773757952599161006808374308010817549176335625585720633612266354181255165584968772801920486124481505084149300794491070305826609077380975924806662776621548133659081985576971145452217634117064597724659930294089450678442821364324019144011907827033353313287529492549939320710722301550144584221610628926009902266292825519593975239189311735480503398680348818808308553472197945542434290272508516920784697702777598431285051644841532677089463163189628277225072419530438340960214156714690175327815281501819920897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27684228492122405790762966098431536643111921926497789251458226648782251685131609005396438163322028822814165821591197467510635823181453006256290125945496324861678674587058925334380248263174023550975538807289216881324419565035893828759305595399544590043446576764046124700840723458211647700886793408278407240972154340679092822066317330273992876866272758856692509176939997446560918715629933320397458978763157584014900462575182329591672141376139801634212318646056595579072058663051051391579044019026212834505564055908078745193696884908997884628635616710798070296327896527329578389872887273841964911895302787358486301462833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270251322750393928459842672983466326241565540420072025535100689793127286304472635893741601029403572251443824226666156307328505037297279346306398530470892748223869025278443811595914086079414646848788533279835902211141422867322730603823714552155840796585383893966593785793427524389900080492136878520131434202631566417583204126713188335763488550657508474830478731618043099438701460640657642556036318736184912103577216440790523960347462226182570071598746168384329151992832795458525717419045961142216574781786756259600887143808678249470229822006938219276051886180512354999852172779493500384538795412162180316244796300507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20882814760626187967900490883054443098200756455189826208459190652909430616839880898318862477794477105539181872325509381182079509375839945584362553858763715609445457192414269954125745528145168128039677386304902896869828274318452193771404489036588958950992853578932630168555821498630532465008065695448143374819226442531810324544920224380272774869607014397450112681906864720535813682275925199039302809600313514227978823241055947186854677573413553244073446849622458882070862421414410843087489837893979239027186757266708320801784039168022463361668484282312520703262668456445193182341960750003467195794339095257595814131863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19651848704163446593645039056803441796334830637014408569995552376061762342858039299420411181527312620746650455519509213586831999213394043623280716090836478310880432219289828159527571662973294614410537935710123338940049779607238128036715473210683703178157969850183713878412018887755805859491751206800430220603468734636662500128195064309605949510415904055627932381970858496404669989402583768508962342295340931829354357284430523282916099145062892871825599865497467385719604338197718018141190761340841604435632069741912968720609310345877492397944565463661232216945254001266293427071174605622515090356355971499684591719811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298668704637602876568448774150331282046599191441793810413726937533721197932022851464291402982759156728457633940811279521947628505630768020340772388970828464145945740755632687596216032818283095852611384142611656788127694785479997787865957115238431277631830506499273718739388624000206240776181483195637761796522196347664820450650882601414792167957328261923587120146455095235623358110154366299358282288937130088971280814436607481926856836987036504813968082278557727470533918817112030048796086015890514308972266264890763264910958092605689355246730287912597378634802769430200148869166778044177887667157946578441547175831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23054510877238106449509352602909765074686459043229043019402470267657287106355987430625367489639960356931600373861350524245083719340076626893408456179603967794136734299268235807060178813578982818574418494923787294071466990867496034863116977652652729982957286059767034228867881730785100596529591560874281414460477283316219447170423948625678018031566151911535647010903708881460963202430487381276918403375255629239356005592683542911840736392380755703905889747510509513458008327184469351843844470682021130878569530701114934380595076586749653141857808363360046802232863615688084655211679146327439219602659103032187636486513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17152840239322010925537076609467736500992141887279113704623875603735925637174953215295926292093485031959554290701489342041555023904174696386032886528222509858946986890817084924440513835351706452810601102104284846852367679997976715958270259916236327880174395572147817943095540897563462842216967926882681441227036911075772959470679406734948495048662351258832823242532606592811230400975439431580940387261348307695085905625624010876781186352228771513714255225001161660684919915790615304460130473904804448214368093714072812638139611099439920225272745864377400745528091795745619001646753950341103029468766303262059020029497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26265171656200040805985377517203737148353814219063382416783790890360752284664329100188838168320638985424386690134859375922200000623869341360122816947701929499714556231297149485058807247799365578994607674197695899289209527748721105621709703755710900467942503520084216424765749498805448325728965249277271283523306672090056684038372807580898754513153448540698984786457433615991335395421799932211843356834630878516850901042277077603937468716350954089423117510509733955890938920630936016981572124602174933419428943906332785346136656972125645244618046807357265108176312462834371230097829795437495163722252951580852702781441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21725309504412760898544499212193595881068805633961541593533803147798622039381946968961235405639619848976931456837507087513633423225175432771409121071472892149893220073185303451530184326272801076259386455452408107211173538873702838499446045516342290516724196243025044289259040126771603401233940955802118921972136855646641655877164854388300400541008541005847070201000155436542759814347398451247702215773012572807956411283071081787775037135893815410001082210313040180774315742316539696364723764077898492191126036295598703911153953728883976231848273849463255880703156925394708190182595541129530067966600940586536947187167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20052027140196373032291833909524179821858103499689847655614023182120274395560513504479204691532090128187414710635920098484506364681068505045453521369294314117584377459197510923187837354194489702982046343047489282094579139045102435724802549913558965552874133047203439395210280418939556072181674484029488628768865040124433576278730436666860699242138094685377296779493301149645267204075781503446705407263214262474812538003922223448753003953695888741559760079616955834536406034853461979288256515316264374700941119694661708742230348755946332398453927919609239926828626556875273488893229832527124780376066389272678113420583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21950762492089723440240530645132273000984666681318318908344302976226205412858618039851324211178732306885504514736627838406616439832364679517723112191387414904676258636041737501352651812109324846879150363280180584267181416432118796344968247323750205783247010760789074572543102809885504780596578622934666223915430721915296445271760037850563732915806454823845066334583363660611235793037108314243654944986492536769154593342847634130367845443924898443130638332616096425742667116848754376210900522031097793221934130049491890691841485655764312360989641631830714226598925810202683319343619196831227526487787295288819729770859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23733726877289240288974197617269352952575919235411474952211547924307651945441031771171915753547226333833299607352554940957571192129727657399762105638334906728639711886020643120779603726941645645909724130727114151508119260129399332785921998874421350891675023301403697927596981689588273304695362420668407764160895870980965770483312806754261389225296330415364867155761885107090250349532807489985422928788636155212808796085171012868559468254701097427000679256059891782126932462596976857111423032787901365228687500680313861667861122657149316316565883459941276796944009745322230070142333657005209992157434773930993262312197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18666416734256703054123710810671344876491866990400399916948382488683887980636615782227338402467692312054270327921361791531287632118933509675002251966933014087361015695929402328141890133942057084339160363335791763110833901809577325444629274279475370676491355592377484370688104523777482646052229062493409829851905850548272519197382121422464823796230675992850469777296375665757656963217615024478364813161981403783545442993052044932103657080390786825410435560684787986985482722382138901842046777956625920871995608282234234706628740628667357665091623648541372844388175202525867190468269330937311945382671624573912647692673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18278799430598254725586340258698311853588882538292168833746560992089614314270584791442811523225869291456560431902124255507223376110885194331381325047884451033686105542248698428356009141173290669530748322371037333336343103874911166964942842923893821443876540674828710868717727247269700148199217889579184827578041288314477077508294102496148008234655817409359813599264629585263087458011592168039691418039521624802286495847407082540576445720611923973864497816563834984131461318275936204732166173528501809720703030110294205170020313468883659642130194125984221538400205853973650489961958832804824430619512010730596855507517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331792102525616496378591275414777663484993521155347942067608708681850415438879279324573856230645959481242253363371992833172485397248210794702240855346535553166037452322940190570136501790501838209028366243049721020609327854323139933707632271902559498747744452246812548192033863766767052680063172229115568852672708130698095190039687966671226252292746054735777227532367837498629470719547468232833703709070885280340856079314199846605318837145183138267453828789168862319991351721859439364914481434838077408550855114961327052727328493042342412091152543160197498477370486295431271055515908919385240994340970832016682302533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317846990860745577687924065073412165243307219627315754779144169496733828495701582901423420456711790049085345818325526814500236625730151601467075506662330436433679564074515677464359883017274319379092504316463878569557564238744399554536340794571867069459600161186055797268703443516253870452141982546968864661215504049882082278476968355217081042235033951382537336171011110858660331260355778239663527154097981751905277268022349542831961930666234794700339757730221143467667598443864991135415025456576605307810396263039221237004490700423017156789533340233587489600996580383334942336032587550546869038874149609781851325697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349627950370928011045512412772445074684404373665461838590734126156238835624079518342207315072603014106378693812118162827083234000503783474354598045067189875540949631035107497574633590531800435462542431378583704330377502342696351338259908506880492559311754510056812991698465437030058378681131366030948398198737957857519441398519245455705310220651018677626263203269347492407704305142437598215841413311430132545888077367234700952668977059810723100383182643447899397938788590360978399465976388065273643991863144484972165579673292849036119507908930810027574963756881722684344692583435721429381315170903182990127792113629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24233757243649955032586486082822044585840074662012734756759817142108544322840658509499609988200653612891725349581026890446315415072049824549630631713407007171126702123731808808503750172576602038430027905328797368261911830328434698138234548967720572493716279205948142703934074670185125393785740469435644348589138921174328353857566181744938298072208242955036015018520275197897562768083316623164702604313545464041619647994832797310477955311762308194314572854380570243007499265964206114714670415512847557886207423068807814309228472931264648393200697592675403143226849843623073507773912550221210297429677430831766976942841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23546790993157401738432528652397001558735477434147333849827743840222237208148507978388503076018158874107695225976456429763740430533103188105990709345452162133362037527972606258325273347131868973350949039696766311498127250117890357995004982309407872408109863289287128781341526564098132849908100780219301305017940155080863174482705483006459246273458949325744822478257026779443599024860653185255491212860657589893532672439737601298209299089281879644459520329431599717119486782052837376287923626916946548034093891169387030898297732014449498905455972391935595076969975767397694022309664951844355517683714526998974450753499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18437747435643152290507034409348540200550324959484235375574650431261236413130938459497157588618348915785571591163511420195426926886898059408263368452478064899281222753366400364811111650033208044311561403912697299659813917124257563732340775501489895884987758157219631923003150432700015274804682271688987613699582287043742190857788191620206833250500510002057766403463836682279866582983722107550322358729909994327574211636960345988115606295777174388713101851379337041396460590090460398512973675927538127913630676794269361019580185145787014573118313047778524128968445881869190138860743921945171431296354435555613747676713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24382758282427639153081291390695471513577855707331915367833264784202073088368604547793245574346001970044978766693510608577370367389724417182482074219048500741785821783360730346728897271950140047487572638195473896582336775586433250486134529873964043969680592753496927912678283169192802517579535891876861983037358338034327554543620984638060104461923067163197522117429754895901467840044042216742406888841211824733824107734919756530751997331569804773889427192081364746621721881030114931988043747342943281817611654546781844155851882079606841428468286711841555886937455628741566828281580263202962229812784673381151079070401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25917780358456002457311942571733205788906272377288960785174301137133260004609732199713083767904190287098464072996484951965910566047501463845693379133350891567928481663065022201148133067402571202013169165158044772812092916465427135915424231907214699652363681834583622589375119376770224073243935187559675002954174094027869261119340202007761251891391104611090364891227299565049959830260411070329515017117790248392348302840765788388630726154283894468798570488033360510129226779912525170667019237248142131915979004691895639641523529688104508234260968254351399089074314959572044084085897067938465378679887677589352887830161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24048210233009499575099366458365419870771168988287849585297973149977379799865549691164518618654819765762390502722027694426036266203741713852324270268773847004163299757822689773713257686269090482293709454589618867647883743295111471316451824373421872521538746826136817174693087177988421801854077901714628389092089836952291031796149011518389470015059320228747762776406702093254170161327578010802816235383154026687297934286656592513462783026657223675467463339978250205483498077362409324928457465456769754441760239981264987464824758857617353587421645445962897207296543280140851567055502515411650585189732108032385503867057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18390929936420797115702428810017483347611613059651207324854489924941330438422614807359518995780817735178950339578010550130717238250539849504785084057916124759114365665423152990149045635604089858759474647687465094483877349780495310166490101913987667052775820500405656243939912436370750129779147928565710320690243740002393077200380336843050039009864736941619195393203663869422663625168450194665584897443954430973711190545241493883907792119055772515244920284024774579191729855053672005834437046906505510932481938005204904241459568106302226162701961953452241602050419369900164447005776108424124474648171548352278611628131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17915063002451508296446568519612719289683308654811695879147095280622289549094244052453604799229752296857016880681032670071281158301768759365838967226624171408039685360668433808676160285930508935902433585325680758369862548853244277418855241914051875080457404988429451607195817770967468439792457769570192852702596331791376689245139817217891820897610907206277041131679689587436878928053718110996135956759741397800895157572606406741944766490969517382002838417821998768783657803295131160011847846241853461046420612204251126138307117336333944642506910594282643048537451614447904169517458383760132327412777486661431144309577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17085095852851499692618196147103026926553719652716687327151579891046620242287754127606195879049934437965139389946046897695979271562814797616109048949288006780917933928524553818088550077753171183069431400888867788073590963953029085812895553706336823902477999059605029776465734886270873770759127957672818013378032337451394342651972943722435598978309039229689434107095158770605351462103441778120286248986705935140504871208547205646954500333117575526293213005421174560908534377925551678021816546608652718372080061129476182586289894549117340859030752716841854134133198419494301604488574217303885799706181726319198525563307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16945006896418552818864415690068492914524966108231013673171648668241993149337561674834865245040887685736150053910413200686163974758511081081081474147055210987352074304129669776450216600864458839255995184252172509630408085411849847341712877851635869204183412817376077785617646556207960551719995163614745452038261088618685342318319635750782061587478386365711495753850419866658814247636082293390750770735246106548664512739814342256041990223782876842284247348772915782224854535226079661930762896103811678499392450224101844627396312019878104456269425085967891856288396303773048936720947697848380018519445948356737742726351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16505771761289162207807233734417155780647703107978354374583254086677155851665024827917069922789915531386296212246110600205746777416968618752475973255369134704510982430947704841220169881998398540809935375442378928383318057559480161857475862439193195346371938422801046288778681762771914094794808790093733991244273251688261906476538944025572381615185366284694493434967249108345117707060582569076241595710403902910099432197968789704189456959258455022274066468487746495434210810401783384026179703233698438711667172610573628265128791998095537048573889550459439359422429771717813200613276397184538530262517116037928814630701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26984419691707073228831967819956002158980699539516921728377451780358110957820408430028680796384954510483109558900235226479806485848177591621039853304415168947544792885292184111202197462231063990958898031891424207041281461327384636262414867378986982213203744982669176196708705152400207616859037512674360324181271907873269630434612866360132798695060212248033151968680616190853792781841395081690024364388013720140674044363771290465685327149401291362244292161853976045090701308632014461490002154465972329074020150271252416788731676236690551421406231264770321146686888443256911525091522669505895011753644924019757555981969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18183736192686357721775973132457441078556024319233335658653859041169247243236678779700590169403715546080115030629581326515717254907722017822346263207764207653384866230205572139953998452208574109241860056354748927740427076611608503601289558492825663936526694208614129323515370303426393352517838530236462722642239407310743423599599498259231270039452766321223604697898918002268033659175788684722133876480880151029833652369328394481344370298958688207657783818498868935010726126180716214497702606433033975095312252451974910557014983219337626022211948759781466298035575884739107729625036930854146080536914541012772591358769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20518830684329967045431930319472201070612331390803023074854001587149897147834095357826747020943944249859123438799358677268501218193409289460722190324527441593823064469620947412318349331190122533606161608726721278124849195774650606410425787899087224518065379861451075015104454194002835041439535466630859596596445466948894165622016508084318171418206760538249702816354148023185739292837194010884405184020225863878115185654188876424794436980298123408691197378833285685934106843641594179100050707766976517781499088465790843152677013604186328926846757854952203233661731918705622266229514230027703666337079047748170722146667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19303731167434489398040111329718701761235355333498557345356439396048226890426663666717765855781816278994624699569549932217998541319780933303564841674792615272837497746171520102688458298608568671369172634423321792612355659855836666450467873332825662722480015725295767272719938544597791057913341853381253024390130710804026066622939040877432168173136781773749487447244084107747644198645850196430228752513745527269367484727439100448660122579754428550591758168124829828009526717219538341624164069836647209412978720367002688788238422692209296471050226916427745920943592654456903360400850572193882587574969609114360606401611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19041265236552003013641905724960800970953220661476710174547762234441555112342548827555249346613712888201639443054860352820010843968788227231886697490500270556522620728223780396729976032600444093625302563013657753288766568885034258573547422712095814704735881161900264273377336677110895094143891547503867001004398512337074754875814998230695358933828596151447650497356325503779522271748404397973643296057524289146118466579936757616169735950743198541605508212262694130370459925558679483179883063189806449398127417426396546798596325902017877725672724751084871692688655665729850952893532248176600580358965296642759179773147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16787960149628419625990424416537460063795954509707295570666606718719601848244153938465983376140476936395495984266247333205371435833171640648972912459398783464080037773997766845052753278387281733042238840852334782831310260930129034466006995629833654873985154158799839805491715822930421437184051008811339502163378577340569764209192256842017252103358796785260955110959798178924473503585066698297786062554811483668573194348852067507581264133950929846952668908366691096627100684330767337088777031145843848407481268155413527647558800599605862244689336942617194466429483044618471294313017753443848699403817413282785738696481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25666106406772021849208232818090673575408786398774219015548725656586066502870203172064551268015570352023659952858148372066484801662839248859281149029920512266917054738365110265225926620105829243356945795045304177184992517305953104771956801790931336920334478071966312638817671049844083319781497443719955681377535474177062287699842927031089639376647929769425944497674704478122826359052331898416270872545389143159197554776777891039887243746594768631760185259234889883610995162179615204207684598041275470038033895741689698228704149951575982632431951129945821127563146233473663225658937779163869587258451762735145047693669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296171170383083675842330647291867540176281825749967811979498410766865898228683697747771156088930446240933890056029498694303131183343225160745152935166109853428148992852095300698101191950996791154145063327076082164366520627075207764033120354149604186186269053760100094509199154205083707679592907285724405926880699676555101653455473967874761565765577653814993582687910525297940064288673345558489600888957682808092289436381261529566282372500932196551667884790320588208711140040970868775316010411830396144230263084378860993263847653474876417138325175328458182184814934084875420375488496259504262598020677459603484699717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17876532145900968869161835921420303022423278755601966205133178897793986587041664849907837052310418419093003995343878512820399912946906376552842821344001001356881414128553852039900645286606744952525429335555919889094717931455141955090842672224645621305106499805766761712567510056347950486993747329272416082271316095488092478895199544475818339911155268028604779679785692310893488566019747594781685612550699244940624344360103202017496176042553056636097396091035554156611001988478591385434007726383585036420393142013109580815511555530981938804344030219759260270753694172120843681703838528912296381808572126775759850278581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17407936584133098605716347953588136379072092722464897683599854671345173530800395813375754523240730995556526770239485607523814910562618349606717456533302211001896643969731956197856495916787877010313694509513914484170452740348091175197835007800011353903768521360441357453300771963943847334043728437752174612328027218770238901227896642225044402912760579337958286640132087302007250721386671721379861279227905477031666928497336847278621527836575187599816766115288126496540913683480472045070632423719056488221960178264082823192143088638412540268155955305971031101788844345649810283080954065367657523539702513930175350428119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22693742973280684507074731397882461685699828103987127992353505234228412465825994193645547841134401479751070718407848425032453210301205985832548201537680389180148754404425296136656683441729985533628790413322920195149545151997078921616322665247161610809440329231780235730272594046872331126820450202992824685783963954218660705606857293006684548598132313430782059848662331763644025708660947238468388115481739749909938817860029180485608842711886427114462286989878925494313884544212352420685711637241752504209737351827525096218963845297321759787954535115511979727984832374274146819504739667942734573684994669013083954954287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25516321770238864874814683234774218512836920143706821296033520918243154248294481481773208336992782685790110077766247299912341029729289445288716504105164981564127508085406346385752701166128292491988675423523808805405860440963381525178552755810161272446315034949419192867237708686362803378275363796548931767271612046340914269068933543725627617005510902872391959749823994459784753662277341803815440910925441798102675430462796345803580205872607891145104788395744428698027493427697159876007862512962500816193389748907835255986160663162761302072296234501985805716308888681579499055786288700192022292887058843188319029488571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26533007548755763603017834494972797587603663532463950301495180134565615449229450441336205921723526603135761907326398299376857443168040742018700512852229416290477748186126107726715472968202131146199705511542942663304730637067549106766238722046012336586724584339165265448506539876880715829440980202593637051838463199195541896566795499407989656494858628711786488565278045700934976324107385812528604541965909315979855052754602639950066538915475623751778448545935960241268874159844908646797879908145227997976741823049969371637991244842566484872113755394067419173284406836193437410294404988722535999060991565128417843791921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265724458485109189763904666165829534307721200144332742478906133133377933424009937632673820501242717167704274869523064849420183568670252574448312562850293645040870151637531205133465213311502228910304516436391354701860882358070800332522547612884429831150711520791439394399306659216672932586007969456805770270493465661592700056700458542703457443015224890568825463120107852022843765805915359511688650247502611821389206837039831549033852496441107729230143374128688824257246716947704696877281821610190184501569337397318548717478279893396482785616304820426711245810325348091963151594119945080331807512768993993981873585829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27708581595387244547813191196833866232311374618931242085410144003016650125322312621066239991875640187449280882413314354858394974476914187089730007844026645318194099821141499693615836847862722412230808245630926477793937712912325212838510627329538778598834204950985887542273532909051064150455981199589626659768862242327200630801606419714366397723341481829220578081756690694122335376047292645851949226193683223696586790322625905301717025952960867355728751982896010359039939997655285367857167437700338421368753771377883742992799788919168068377542024889461368459299790128220035829116608737534915767603543592770288907076557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341024839308041530402433462158407173309185124312830635767232461017015366721589474167916330644418528804382401251160697259441801205520824166035088947480316276864741872843278606767611937739409956006936911468105716244417275271645445970669697984008475753977851303353200503915547218240297005709954634902443777366135200607525201868739665516685380851934392945920029537827225081351562128301795604767134277690382284516756519081456881414205868243953412111110034105605110539513415425541097958965922731525125406335515625278720967833619516039414363252713120997582801496859720050399922263767299646313944750824365533073299640538621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23124879181956693400250467639681542145062566515545355884572125606503572531927885175349892757768246751262710585122743365633313345836550767817052248609481806963557796955351398440921082124368633960523241571746332743415076471609443481658229768673390458345194235332613514900009963809752537290346758404316009755790078105966570427466925916624869135879996512107281169972727695685972544227131167893428109865889353234503454551331848597265461421093852746603109196989836858608993884532381252927531659775413265633568474044262289953649948635904869636494147346966223143564260389499696650790897072190420886835717059281272356895258573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25117338557075280515048268795584265238504771074269049965154783661583383030412338072889078141410991300163012878237089195887621108316823965132258958300087150779261059437851970843240988243323891900230408458786766752138232984189650139054749616493330926876459876479520313416896472055951941872100797151865924636606829037385851864169270125157320714737944434807123274965334370282829744231110634544949728769125667597407244955599321070358271912405132557368725702225952189630615352890329314093326219931887018793407959538753554643099307622106481922350207610947816328323707331992267688311830676501326717344103566650475686935955637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28715930543608621879565135404225361728519337113763464793030856522241252600202600412959562009208140624799927700565736774286626898217509466054783496549894024177326348484441697191202491707737929827506643174459437924143708573959791019140925440460876911062521824521829308540544070220777029475503520335735422282645738552033424904417247374178848365729296136570854558823849180305332837831710840930270848907554706880948220858927944987337570879104181927311304712100245486750463999186557162892000996392229036152683218935954662850078563373153130196188784729434231067925301780669706245556478742426729918509001439782682137489969669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27640993962157765546461283699032429378200643726227309110253824178526688379447689972105295632769391284223330407724985158641459989358233305305830039547849952980984212007656429306938831938419647610922972156748345818242000018357363143288333052593141065159645240238123889935403445975560163931740445440243486719546338587112613928946565162531306018384838121974310597119968493627899158493434909125392704972407547622357545867428291097885954490624747012214117704749863378115473511000970444609609080381133597299124058906469334584254454974787257184331312644452617923553037387918391020098496319833825304396505508888248451118898243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30389686526007552937184471259817290758245265261770112105840595302333888563207944984416972533300190009034447798882701486332332362995900585651489423933118357547427927685548172402187343918406460741521863538040152731971804350056475257588719825597144098878490867468655690217315912729420388999117014333489983214522235519428088704104808562697283295839632617117766391722611700113019075114650910323175800498628305438444877899292675290834964334692629516745430421992763749970867459975951503378882250085596414238409458980765903178071547838458408951874428573881408470873094464970084265127495834002053625356077843773774713969011141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23811985348839534131814415337974131296393637714656990074782231382474384349142310137583426320790631514159823831964930003003732373659448109326408082469231951104791962260475127395706451090252012174494522615304583470190675864082984508422871323168596135351479509067657095415254566887982872495598315659631186497526306083862489492255265949695322371707532154172115643595980011117532298747604949207289369126183713702869119457080567247391965988475422766359581521903956600501640657507623395026994567699878632226380536458728839106064586862048918651763899884737899572132369666919657354468795658364850828784369926966363634612405827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18586350425636329698009231869669590876699216165791841042977712607582738033940889182597821504331138374858372892207918236354323460527374800512852432381385989221779300805068115439525301708543832892213995193832824713224156308107118914858922294202264514434413913415357104717569190922179446588234912689073105384222637281760428661729374753751298607271008291301927164461268237019508418571784336549643901749017817655866954996112937346540983641679406036562459107920854146088941525771044939108163253934471474602509714309557080826451655078429089608845535888108502119107574027433865364212146337349903786550559260840632043780578781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23281015919280535000798930645978273585066951829224885501978557416109561001406928762825859849106204241763779040031302280332416119152152382340785924370662619098629143007389857768104176150075432039006892643447109228851019225408095796038316993654836148975530438491183389057401184017643597830866872926876564506293098366841619765737264658773569069942730838253146172602374067539573650674861329939839856641523076419960397589865328840514066638309442475119216082059424872693399586787068847063519442790316176313040355974435287258919980528049744492059959625116590336254302561007438658755979960504540164913311714988893412109690437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18520897059223068428067846612227245299191522058030002224952508197594854107182053179839554444984208130281216356947609978222901948432699774383621901135246747593880013139573807998149044794154918513004172742279825783540348182821967167402745718615784494031554402826108166731051658700167319365416479254898909108256243202217909913093803876567240117728724455055795553098594356011336782766682957057331007367890085549755731479619288699750436736867019697744826809559582813744930707077469241445712643402888937774524486754020443594733173283871525344040719347957209880521838782721785230974361166078824787942229196857721184449834233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31224358745621083989289614910859477698621875555633781260853968325227339708394629595873589238686863430858149897363927916070670241127651407110872416693739487022119253590319485308489481159528292919959293520887467776124464752640193087606482949187452214427313690006946026177894490190106995749948130459368301113663689105489700368651311833625142943990849216923140093581234382010187831818920863095097063592970156746534586070412626756379722497768343308909883830172031992875939904543735527437829461220792409195723592877424911600810254981343312142491741220076319846006292001043175571877714100093117214426192380417861646602334483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25190631840361073677574380716048840084066936834662277808737460680234902876016866080099129513443651373413979534358176315805037639382189336167171346623161195533598020413227847514136306750224994441523243775940857886304745757692626359574972927805912426154924983114181301304682339388330681943199085641218570793844532922793892033249149972254520065727787016935164942136264500205878992526176088626477906987188528510886861819300744323367909816676401163837809327641044086791453860919100866660846467900501233821250319715033680068309749275849759388830130038031890887956245165333741943711311047206593822389278806134238943853539147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23023528350659907926844710202168159433452027087419340804101857773733759824969997568416332750998596483477243428721441977814131003770250134688117984680991619651683822097763427068176073686019699222853338852784287062195905155948924677984096300384917115916350945747735616331276038358154507948953375989445508065527570829858714031315428526496886101678605399912994949421860931535882881568622886765386805040108225661247867894880212116806606251669445401769111402368277379957828031215969045815216362224739110339005545365732130626905268041906115430181817408001177212157916438433194229896767804737241404520175115433011049824069101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28907682779378921632560246924898398007488320035602183171189988381562029759784319860378152665393137037145514756725055137816589114196369767623043468574282110001049768294203173314874062979813004461742572491069887897090962115634949289503052969254324226760495590465852340883594000979625766360832626406471283620190697029263408844319515505416917378249813733721191070384297500057030681229163669423207872335111607717887785601298189622610360837268934276232607587027715833955560650264596967209152453252899591887897517867858483494405407135294229554016272069388748755962769692863221714224963974982692014253009100097041738716591773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27598067515720896235473271537688093597912949013968358331143306386227708799654275964733232086773806474440855913345280639851426549346887855767583230888678134266123427335907972349756262148695524984917462883248117121718839425847067204757398778886428750729273322643695688604178515225343458872602231012031594744195742317327114131503364643076013400385892787517142537328790597532523135170112421052255702308507740784311294045573353695923039587411366976497245185412447147633224280675951541989951571459730046907688438641217301794429983935484124061205416831312329474170517096773908766899992945976121596754686298149313419100620143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30335191140635241544351015141572253498418305740945216237347760053640123489783565022131761185847511828626742843163667231877920998378416411822061028660423456992476652767545323538970391436461852948737905574718101139018606076014318181781804079346951513570508264862958036122570733991100856209369850947499170129214624072680086724860084631683880401341430979957371759680674646119060011199691789194126711258595825935831922061481588230150897812214281597953256998395266678394764608320164225639008069069745424668849131615213477583900053432103964230498666433313261088440553076652003314876394494930627500339430076124591890969912777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26029395600351406381804428403271634136838792108114377729758537872985315246717600876425213378633383229410637770700997544993310541671081427156809854063324304564421044808719631012361523732690496509616817406505401297037206045089677220119751806345797793060899589516640062891708294874713608408809761517979892817252434327227085832255616470762635496625050082126446852456100388284081172691714267456452061227146965331184534304253026956949588501678271806369121689674703665011743054302709278638176962912224889971640448871071795691606254207722258269420164027547455539047740972143683907676685842150809410594701276833192559106748431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23265885074219863092601513189732464493734723843116966856093236762004911566670268064272481646546656798043817830526504293592745806704565663928580686848736734712146401686844806277612124224643657803844848411072685690692366369169319997627813875240914478089480115850513104069524821497163865245547107725894358375638891456630201610229722494287397140296096764153224251630601526756024923129520935727661904031154977202048245715896049937252034918109091072901381911430490136788021081493051823522901859356093307544035714828050802485566663856057812406516723441212499378288953260423835167232999580854338060451322222355876605623421831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28298634362376120711910116450201607658287279394061931318565312658743371968268006103515843756924324923189949290342806928531475611233309128147069291797586929929912398082947431141383794212000370365993722364791038201503503715922831118969112541602808613386056683919347620321486582759100166265768152796933843117747921132206799188218028645203195117942895090872836837577727898802587578465818939756591106221983372359574285264779083706815453911892859974342430505852447889284202669362149485559379285309768496149321660972394529437851634608957795017080532046936526949753037625930335416556971958154536052938226903800957341305449109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22562614470698363864817119686122793228002209051404667980573675594835999927914870134755901891214006325221054432103425361552244976647735038552417425953133660142405834749047581801581881435577150667757911824468699687068735876490372869569552991181548666702537338018249644986352832493072738844878769201926583561978316450014876441715796219133733208793265732595144420683120520056901736117411104091245528223324341238342715385095506625031830866483171889540581923659824927840809709377531745575176137725271926292417959584947135411391912664428452760279349138407263158494733778544462665837546789125450048318975570934576553235669623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19553270222636546477095897969242703379754290684442139532103528157082636160283200236709957268389117610564357182184719305457765851801897466203567303272866428493574436811275282249501587201155892800257071199009136120474936718598546141567853159152028908655553072424660161707271011210727073445071798448003962875944061563088365644008626294355609327386582295745830632509245382281787421716322122243330908480296766340382199102505662321806446507877674120887933358577165327476096913435227485283614462682332031232405993623649407906720846761510938555256939586523496628314304131977644983059822448855974548819146682794048535291307439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29242788806665918235026722008061715793283781517490824514257890413800365988701980501085970721536603318445661614337699040390065945331962169183836353459694871134753684230212422888570974974466685530131130686693125969941628774258803998204659756089810247373620321278356394847833509584670891832406058295211141302434806136470127949333712727573908183973241698165982084270423717829431963111291325956926589490795480948503667914871810294945300334527154781568826120688692178515641886516735198820274553647187724601036101903033505472460866911091116799893536647128977936269537387672510053962518566305210628306751006692753767869800907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22639360953734950426450967285701766685188020257420875652431561517809544658162395348621478447018827931679214473706682351389817600701808559450814827315252869608685710177911846951312885869182834590352001300411176338056612682585469299466360543595472178207895577266305352843825343437639601219657366942413117711352640947352917637493762688524699794079238643313285285892739142350854845844431819184679724190470097450214278187600538595284090925906945260647470604071815550183052448829377235848623535494957687367158284425172641896878532739513021081635814297873687580258935331562714447291989747170573571302946617079317577018397413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24752479660560959485706086940830112745597544806630711770149748995688419807447713975503717980209439895429041078956828472713972074489494919415068028566105920330220325753429548501755429705747797902596061958863153235033149971553752176400689479087782775060950508923369961763618789223466197435378030446793633357948020000411889649126704405119220427542719215176554584019466218268169933318397951207089081079094133269527825184981480435492754856138269802019200999439212956100798574489571960097510668977959745788051929817669830260416385435394562053939536791508306001117156397636733965500602871117151716706033417630637313594756371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18708033476144698396273625990352739442034036386185554874304393234097280637202045395602139255274536757710927626043376241053713323746997352431338101274533730665953060503882937037282548309625792744193652387552983313732622078745630336481277487328540687974320141879353071908781363513928469598006257026884685193964993680609969449397343065218218510130040907506546590755928838893543908084727143405792811864134023322990389863036112158849425263573770582132167378396410829391023357146108177833218364946817827580547569670295066214786548626296224237056826624088708075826851647984455840767064910131279139238551059325839504169358937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23086673045336662158266967166915111612937392460647741382618660510812072829919415357743099399009901005851321736366031022503655577278174396242411682120200745190980993533087237042510584440384329666512285705803079854238667726221183491698811595037686912348219642338220691017683632182024866490507830998308258592322628588132066693507480273056816707543414986350947854126763967295450726826436716755575725410622996146234351364483839601922852485299599434028057768206608232033177331499962126534609119812682436457690608807756455536802995266112292172462975836749656521391804767831582446862335575128162244205987626344858132044653851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22930460339609843650488495084118879778231672470125515903105857370617141532939823512035729771128684602985370888277810742525973405913908574010854729091446756864684337142910734017757601015241271571081420246898339548072163546193147684643421396434563476008273924328542332983494574371740239440606503720934262640182820659228105958354327446681383526231960907635041473196944229753256601092763433344401598255008139234124744268848808963712639043522341666276388111558536770593103923403613741851942881343014266426470849645267340824647284497824327625055494280886660471656907108993933356996549347419906121051846128177859363867447191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22830792027283085916480172072087426072025200161263953913456777328321928743173558855172454758674460395282318488596769084386065148274850474486000623234599370565999116879933531150125134481593055886348855561873595280212834312096878243347063892233761571354750235499435094157295503392688197605252627559454623592756275694584030103321606786600609909106335534524930012478686534402871579443242429580990200942185818337191533664330222954720059247375341127916384470384372281812164951124899177161709679544479609270946209796490654910426735801120708480521623001551770256425426516745783861048452447394949214426623547974308618373985103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23209116082382296967742345999392848168363480170455784713700731209535831829426464065815961383450980508851947047507100446194436691129481284638008330739343890153259775494305531481728639174724750470128827022713507124788709062528818563340815179364701486519055362462346458095985681590714395151259340219017223632916556098647196113314145380425950261325992039824009077674337283802171750066372082057662727220747611685476502190207333927093530842274410664952575925102249826632832570735915234160959720667887376151902748711415096044841996601123165287374562014628684814914511504331770393673250834611600139335239101188658186256698707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17721305485990404465411487527343418138367985115295512730349823209036031289536635326491030051597468763646037248364715647166124621922497914064906043950452651153598919830250147676888641653782330775984610952690729912442889422302546948403128388685708230920460993817247880472094991306102679803466209825300516258537402448730886790268346273755186390918053919775527150324121609096446189865545175331261401126109933850123375465855321246835991931381143164755668094731825607999175184161521481039895100350085622552393650226229422464799956149897360384906375599438175066513453576700073175166700163601768066055443413055488795853119593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19830136049899481685250368985693840379108961087981069417590995217546513412289740963847925387383143386845317499072084886166085166643283918735901492438606572979701946606482964314798724283693280052619240572663861978394242940937302760452955535740375576945610851112392837804835758102008997079780777636482385545203277976218725174361753339961988498924421435925063438695762048266220280691323254821998509020069270800495642960511694878236161066040878606113423134475710884720175112533044868148560342933699549062184361122910035667794321602959503019569457265954299139652890310687691007592360464212909754340156809250524436002423753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18738042470794201157603678246955106245934232428064151710096763406811002779279668307865979836629411936445687332882361902196464489789129702748823249991935237632975080332775329037332282435991857946415015788060816405913570453579582142790449056321310447201349262448591030440511069361459205922536580724602434160809205840414887216935888081719553313925540709246396869728852901344268515916316620101161783677022134075698197491636398775087022557608857972387027395010464833514488136373508920788313567376401371181261993978827100233463466774423673451276555973792170293631262571639503694279131907034314025213292486392236811599261153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23470748625796799772362717409578926493734102070226238894961815654265146178286490678536594224901543443121881524728932504489584742617649136950633133106379522139282980629137882783006067403337043435182394155577114329825779312253878507561392666935804167430885245338940955725506596838283466052971566862169332490421822544007198091852975167990353975369119367663040843712342887131431608906595985582369517046948369620243227144491322691943745174176837630366050317684380174229774317207592412303161943074116603398990984439624851449839504970734886595522498662412577736129661481845880950520994740061097229107894832115715869819707239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18262841290871635623291130912871795644411750337697669211337168881975179649227022394981727437968080116498010672388496468763744809925533284640262086633189968164012235326301972457832075150686858584087666304731388039366354879171671457548068160618294635148140234219044300464727522396485963002298221056422731387003542338202425644840903529895831898620440675444819175861234470095547694450581284686770485572641309490881109593568421019439310816270772506945717836884465249563261698926051992309576623876083039428668408574421468935978497185852722874410923648298377515223837001614424420567112666662781848684743967286766040237036401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24196484307791064814490074038652208", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24575320861869037269167621490540123119934912125724529611934565157647709840160383863134811557214424362054010616815344318661495558712848489702442946576746844034565489785297498669992611996515621584140594704201462362604867872798177245164560166328984536184758919081052094730581900177888674486890902939743734891236379751723110062181254102127040316415727659569759588969947455500162666447158623249969160125580036744257542784733150951075230653534685204965657515771967968823315982085962928392948124801347598261077373729686981508820342080553146377357593163366746168634569083177538366594269232034493681004019753028058531017677471", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23565585133389436348129212584872614501818854849288524847654751851457122687923495947529976622595442979944303820329841300000324680291680788222005207514326460590453898195936174399595962138972006758914571646723437574473201223901047989761953871448501776972040125848611477425230978067791966042320889489025349137265839468445241709169437669431869080218433632445731111482220231171487831188055242856017741541895610015054447889884146236464675721659012391562940841656971754324394580483314848712523221896542428784639410834704111597283558087324531978362369881320535610795980626422058888230882124532764438849965030036279744104151809", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24267124030598511393502495533757189794445787057644177290876673754695795682356725938132847915970184103008515957837268380147497337821003426132011822315684898852399504362923677728216971608371158662814752838314451485596136490845165386780759361992676599690394442380412624769387925944559420336145484065515962884947757888559791816289232588515574345474412611692311246688596170763265371067457185124113052510289687060888855345346232518840515183880995188230569382634493085277716928276793662915390094926405514512103675941448330497054425984396814610112205402278309359530466193695298968335807886700439411135878428414092993707214961", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "31450613834312621626193654193481451985621099094950374647311904904708654458092966986648921418157312745504472713196388895375508642496875041679003153701899893622448305757123938474230203995625789824644729742992207231277191119501354754701695551687934575933818795376502216180277859409797599144533033061109833472967860363435586858090237271500704110958556085871124521981476762503926525660555900232508610094965348770159651555820081183518270011589117881410379204949595486743004026407422569297891189912272380027643988579186332001439859188906757809170941235665890947055254936817933840974046954568982905042591772953987305518187541", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20908689398103561045520354695781704122994251404664557924728315103544833829316257038891310472098153810508796100936246000437159030115135499342314434618947147910628375256267821979602894638847230047974430184251767796952261509524286633091560191233982204931484261910450845869775484839804777990669887580737286924134134613435064014734184194710078274365404962844118308105253134724196362035889076628171601990368029961917978006253998917527825413107228274448386792860892389622418344537336036149579295177872760352397462209418682405887769997588199586073358677001476334528263928986840277629201650363138503864815407478600422955451087", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25907846098936922427644436761035187219147260882345018358865254999779377761524826209403397315017750736964642226074854287242567282874331509872874279630962734108314031045157031966668995864014506872218983895148680555195945006486495018179598940403793385431422816440613460244884309820969574679421443583399406817785617692884442108224073014135777310068097356316850410730211079506292146521780693561553221073479884266906053770733483679615713478690359097313168469449896878093138569379581819318950410262804947870348438252166389222079477624080652800197574506116038772277122707218024923366898299092197144731666913803315166114339239", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27549859410380587420591230104641562863868392984354107780439583852426721717019337554545574191767723973688229064268728877404442209138584207017467302848684915426582768532598199881396828306325708600774690690587838701933615108943696275094445842078152744723117436944693053706381883967771817099617160872684350686356518949951447598467557760622131902477102160708649172105724333025755684128370861433967687170767586365836277135154167682238345814714555523403092080182970017249310813552938927450406503153037427765582229867480991966871712957959845779510172603927272804598154471442004096796896948093693541855890467406811849362866267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27926581499973946696615741461289052617921447599286733305810655861669046267478918886224834369084893735537477388086010688477923474302307750904821982380932613706610329605541338104329638576467735281662412454925917519755318463523752192916171457447020015494173146891644953375366583691343946706203476364095678787176366592420614670459199913204860739173420971028718798190052387944259832228308306680721716843173333750155283224891210720870004009878791492142596331939632827042140202892268279645222421695137310936047911931910751571419359418858127147881878514151523673113475469765519642284746778332792875199477921230426183560007341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27536975343796813928592128270690454705771176941363362501940663684193916908011796060694020507670534662195656406859873660950242892891356378910567594392839725404454437536792066771608160925862073267361300958494799041608930940354816073466025167014414174142034088087560650679261005683991031428185206826889456251566457725189906260630427388628807062605099151660372206073262246955819851215951408709350205910948981393973253805819730214687234193922731576085931194166115573132257954712081973521090813993893539444960217218857556880139784482130448535199056693224135199170498651366325804608659233202140055127801691778593620743592583", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26085527927738507943731718934501933785322236615412194473614434110531632887266314812117159917947958935289980034127966064442421510942091336804323271191873012627199549570152794619729536366114591814787263527295660470875130231981682040504829367205796430203705809973837763794987554469260818515038267368951110013392047452177017516275205700100377319788623120555996718964708441897504000038080742984036719658867894462162002956568019753531610452096958835194425919606111016142453814826766540822835135837302054046501124382643086951093735991424255478878689236118664362017952927398536440359158916936336230174985836026398395773795159", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22664571476585923222932590692177441397572209178812212746310522948636974947499183933131636610991747425046334681580018576805802424564999159790743252981749097671848874839658397693479398005923742294646767469306957677829535423819330144431643264721972917361669689296813321530785781061874439229982214947079709553846576778301130111402671467742241738205151805939659348317856858517572712447163101629257520190363169743433399656084742381002222725949680867175377923862085030928249793748459146702653061200041522194941176201872414765468221178687436774694040760931849549610676681012539072523885411251164247041018182525777165327900359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22747976829995612069052372237341949", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24117844068395830878650539805432972", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22645446236891631348061333866408821", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22034924234581267657017524265151618578320847166297984745929966849989640962363506360841734897839352596197225614281595871303781460699498533790704662628885878545267269449245245537451880806943033627535584619907525478719228859515521385222164539561471436235448891687047868944446635254007028646569420771914013621630517159275555732252522866577997754886049202167091253676948498972727350791209178934684052038418740961508669548647768238580164096477258918741426760504117339345291863264082320529220104164624712082785598538808669310587101386737820542140189402583555819546493130419814095906961891831452738990628727183646729490950947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22604197984017696869601868483171023127304425997174108137462025430274597280730421700355109778232741049043874043966060601298129974914187705630923204654507722563581359456685308186558204930175102321434323633646752923212892360866946275867607296840500836756025831834235243833534843276551292155568522046659420909226392323293263188198317888700667461401377283061427341000515020023472321265517861285324571928876271298539068389289486708144358743068815523943229675984937468282410671471656792866283433107042260684110539323196680160041675795182161590759559554020947722979107148436687813878351010049323650761554663976024244117497801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31313618745062959805054516335254492495811542792481932074506615883092653312600394811490295794066201842292847810465999644772789223079987193924974732419817259481552442256656284129507988092543169479394180450068167179658766934642182853439003267832174424540857364326712350425620504778734551384701262504790071313285379932797993992760343372717874233055744929248125753007803870775804814714769534824568791102539695131987855104267201518456769326714930683644697590568839067063891905791538385224198755166859913426724485672078714972589709011647228806272326954790133311930140039474368833258181261295579659622309011643228231556639317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23919850626890959696261431654035888801026513739142281264522910556388922407811115738488654190262807115698427265052389992677205811277790896271498010337126607072791547962770462539699232218391587930691849064055980883903522414149480373681829570542980908012274986113612293655730059276589420717505034195871110855470844233358182682351030245087395116738777042875604310562113449920162641969064478493861358628636010924394242269772195459150688342257258848680322830449812919823011166366288795344956459631464336696696694220007074715924590978047908239862397008795677143202953371997193931877165445941305796711643445552386007824839681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24066149067992135358826837928653236420267693413414420217548927795642775792909664402658488548156071773760918615049664695205670854285498192044473879277014471857476693359153726264323474555441989907143539429149876512798032572665946090350777808772709082231329526639012880302198405344244099908971714419808348192851408460863569392980232739650943518530084194533059969105217930408017674307620236203302761171414034439744444485446336060869116918587093123764025376565820134116472132912934626698213135199134598228026701300297923395003825139730173250922085860258140482565448802548355759856061631334110876203729262181349093141344779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24088167557321333023221921118235468926241244975672344139666498050307529604920179627122182221376480791872437725826509937962259633671134789933828726648994029380171280153264443195518801194648935031018949475350813107433670623319336763919252980216775099176149184971777166811905662272704002835242452865059020440285877064350367413281879533887657981793846450414123810219542009620686352743025612235491492848584780216136204941733012508918143985980485385502007964702424590985660652296416500162441188331300827067354943641217574914318142509436989224497248921569533043641274174777386788506350361213908103307076623981671900790605389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21182418074360427773595541336236419528268465177015721238560030804251083514289478855858516795800453514896724991900407967439481160937102560306099160203351021425479850507607805816923273449917221140211711678579243737256364702780147543267928550729566764454073122858666700354971178682839235931734000257490166498801786899468273598212573927565663276540887101363748393533071695586174114591604562842522067222351852564239710393473144084324771543378697220635180167119059574917788497752745835497056093725744071225575037482029113229365474886269326589069842585676459204674796830566952758207669804225276539702795239574088292751224599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30347669856737043182209405781543545662707066610145102166364573894629397100757518969394971136594048067744180247247504257171198376204862671189236138325627590898351434108301510048175513493627864456664057185757561893574404163225657582340053038592158171589537430104135565782009901813652981694788841806257845385417915893954870616354361920813555005514036694977413556205667645589219154153718743253183054866517967251527848978100104623187396556631215977808712857390858763968619348196246762444797687254094720684405086040250053323143157080204042271251185460985686917112507044971081532184717500380455606910235719481788637217985051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "31214274697412121079702919151596300150845736323276283714828868646553775539843344550317107211028351866079313288305982706330658986195697203552350489843132900651943055616593193945059341638422719431909610737640834826634013241571955227442036967924313717974395211726499402278848184872805815341523662862536184024680554961961256567002762073869701452472451420752351053777262137341225601106421628692967393388822961989648571845690556621624722169803259992724026805037310083823081697194133003727703754118873799024069816400854222945990143631428937327397698681443820912073631179457776518406224193927985375863158183315390853356217679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19268834698684683463564387066128485306865367015151567653520396543049489335678320291136497800898499914836627122882457079804067934695890198175166147355018517131796404930122847551854756769660046535453478863159535606711198955159988817173427102220455197044493848992915759274365236652078479659205809170931598805248173985930356255427320339901386067452915285826866664696096975467083881408835525853455489765535081219822451697308644578678143538884246517364926515623383222131191760177166217853046019012109658844017020286544997289428593035238689051279147942788243133843018264234005142503095192313743511821542577273214121071325833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19146120291202469383985212146582599291072563861342079366929821511659134507019899502333584491436055636418829620349535339785389409002843763431988908887953088090271937604491149690706832694134398209985973210230572849628728732957100502240028448339244996185963946232312718658114118365571534196445820390751617300980952544213432254947819089614916159443934450031365677309340060759844045981718902925963299567048110747458310271817956981236883080901478652374628111954669493041896731409708231554508303551594140838255331281893478578931096034149677160214414620750874459575006426204739843570774131798488193673073029715341681890775781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18729845214126207767570346798740884082205276948462163067433626981374423458685392699541748270995853734794324302553181591508324015614985027426592102030468024168788203857857270654876404021939220413805609611973332696881618186459743480378527042930998970253596600507253750815121983828669576917522812911924896685761177665201202131881893629144222135343995881732764242847117845192809628153928484443761477228286553396424230111730225373696363744420746100700830121208758411771105933508165087595669451487512715728896288150299231824968922792630980744591985454231621365416325797240563992254119348585133410677553649003139970660963573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20535129330487069240828850695642702115169583098039155397271647142430086576925312553525562699875000266811156489580138189136355186640637596558878783083116849397484854825538525815499246540354650251871271076949382982621097866259045963408367574175815968350868329154110852824772335539200149902131149595095548453493449333486681199401536750324914306530362749482241306126611862437037025136740618341593532961966231967401257105880356358611398924652437134027322983604580502872689975914584115604797572364164681701082152844614629919586842069610104468608021311509349779454092165028343630753798047282522753878904303724867072000635313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20673231636659787176685049577573252031644622563133718737590922836543183998158866370313843537384200937684590796609689261075824704972182441637778513478115259069751424905799474158230670298387846243579279848360620162756807371538138919673088293359803655459764632730814379666570442707440233846432939794204524589251107973945556629001387300091216877855478825187558235013415987281180928331270178515979962986815783416900607184897060598354185010066495754614176715533100620957340843639576257489935834964546127779689061280983703311056582604040155358034010431975217068125879145357599965501597428794697951694805322282851816175594591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25883426836736329612813882109860568724927474728906946279604010295005892798729691311003351561762934258122861911854571700431113554643283774433040722217575938203151095465671542513930106792597670346812735260621951378163048003413888152496934680235986313487245584661432020503478924335183561407546351278165188207431606259802364198860470160327514186593029706460351206153421732420172025380119590909980483991517136834250728116158514507937091456887977115266449780551682397781264067950743443951860908093062517869969989127400275248497087381451631066198998615669198387874447387795338746841026644065350021024657938567744469288766723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20750941962894223881712204307537944566861248529320276377447378128754100222353874290402828780310663248343783584207517902003993305078559806758450721995197467666341660086481756753204165335283565960430339038922980776846943687716959856730464772572807603664064438880272711457464123068606249405684908973430619774302773689400339845988790049612398182819983171592973345954976121325594111938891525280694857190937300662333634060473281125625686854443112222605430677242676614160850848015168925652500350117840463173968742609895565097215777121283096155815202596251147629709770391823284440955384736134661842994856649572871144695778869", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "149833992602240442493805274404245245647748916797121155535644516568370413292385983879535752640361825648000883731214484078438263949516257505410181170415950221702771182204281662599792636018332289089246933919240570374824935097289797143516619650945873654077123128924502971661980249977293156017528843298688864530851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ZZ, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "139735887728533993756472717226120786149349887301043027091794554800751149750096739824738659164405491727664586358038285017606261966714216624147371059778156608151260679393485461512209167564342795433021226110515045542760442306351943083413299526224449651027062864110158399819643068286076408148316528246077000885261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "31034087752349032964884077399564973889718712966082202712490260606251735606937487820400334689307797768930438809456304911523353455333915133946116343537531777794458454088222594397515110332594663269735226858038416082412686108994975250421487953617529622648533207473933666383441487221688999910551407190209289839001841630268856981547008388942411411382795022046106691579647554507070392376864373580684787725864916316388248575344237637531082938199902150608869942586483797612213693117572934504381132440833632674025348395265900012790004173123608398489338281356444867759748049576869429737519781928273049254055973088579652947178269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "19413527610331404099034715142800674981541173300151084210582867876323596536144130096620777342757003864309257416650967438438031545367992897200006459715578843845867574547827987385650124092785503875251532122513849157661196769374824469597979224193042553344747934021062303616952890059486841605884642905338912632505026631187870918029366424575470860857747181726045504322453311398677195784852047983339516136277369066627993486414872011008384869574749688569154369952739469374857961521468919366961611495244162169801873239637062693679489873294779763362826656025889189086211799821212551895628010281236751831153177834880379555444459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "22113387909909556782248577908633321962202672597138941754142338997033925729030814387896128985328066985285380961091080549989101796937000227631793709607431437198619880586722986101387563610945151195021180243466810432951356146789103439509915535498006816893894299628417679814175313152520635918822619811707887504902733638474090649102917798941068622863211629889643683593194322567583606799190209377863105480207014795362029146079550231725196931088276085772585778837284057073194340356021417777245073245756463722382701394382930787854446888892590272996710893751182099266999298831207135847841505101583415467110529596626358512904791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24562966983799158929208984257804431848946855985980358199369745785046747651801784530259155797451181763517970218553889551306746393632695409360262886029746773753936584190099592404086755608959706017529276094719142714820928174738999153402782580389354955317405347656511208729826228051150875842200723190563206678795711293061405819736855285008739284480069394043259673856365369462655223093827070575346519609936052568940648039282242487765388260560258440341451740408790662414515116020815940460513585436501830561284367465607854611508514994958498947683325930023105268861668367722531686495784790227999673024132345344505512475067411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24107481858240306468696815693352301666944927713265342684285173262405145024336144571158911571187184849654373228896898402674611748816221377411835477669005358035755552788566639877269409554343421933999375235833323521583358388793857056345453362626955807289466482750848986565960066107939036320231472352537763992065346836034444578099737179940573290680140485181042746295953694963934395071492391562636527906716764825137812573022689787802993491186846348564791245578793906471954951610057091292739934337645148158570836803555370071491034985268763628028542819039108122758122366805877743715859554631516415690129765294222643959832597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27718831838910247234024096619076802536673593951542033255570703094342039818535626066332773058468153098729151441581837438364682331595460453675917388266879197267332540583315750662691818769442109092683583527562009450442599590011333251470537012958651225473495792927649035366318441768968494633661669264959885267951841069580481322277864854585383596987519661265797674476801837249891804552174910276671987361215326006523002730989013088147413654810646409576128084013033241679268414466141873966642803488365757616646950673399181376429150677311066008993568903847613008055898998824419697485052295823009915497893121969954758368686009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24637921502559017728829237056132934097221230859499328674027273612770954373862132439369516792735567321027986963869547130940540117550271594101626025072295454355770949832954311446583782902344347351140545517575473808249061829560975370256341053297357654841390180165275644816095443558901413177633419164152855396049081026258722329754817907336551140842531999024841957241614442835032528848993958789577939642535762694935954441644469994138837488051255759055623549374501813672339153095315786879466566332049841856497031217910405597231983472355398457955288263987636878940364663878915008338939467510402457814737100693236523423757081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21683496034914559516218586102939058987685514080085624576108787775573107672254008203221074062281254453838598088427839741434117899813471061864387008657540776308989080736822733113463499270470988028128225824928705468705406481714303286667259612394326909846077136332881734935221766117799795272066330153833694633031657474545938686902345617199908295154576346315619736779461526456278467526423705889942752241739763967640082565971670307124029196811334465382116486994355712545520410206768175543329273381464091925045657682503655319993427940129432688385746694381606422481502549237235750647448924154038228317976303704189969884126423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28005623877866699838225857032134039759225494468195838269687359761833814666387267945820273142939355132605154871917406870177348288975660117310706828586302192876565603040504320272293771802768835024175692401862284115171720437502680242432088391978567558950006010457931606465727980234855815904060355558919044423563739185783574534167978409090959397363271245276833682300443550341627542776408267187767867417296735802045763081990403507357500404062052740520567656330463742600826607189060488099965101631080543020787186153877028767084508350280097416812265176149513175679008178267428030887820284347325980269441640449103607928373727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21797123252736963379793709483287433887115955497190279379233904071269370472687825004410231427859390317813833819227181705020508931665272666603034280985202872678812960228327440166452475651690892279400760107661314676921714487409491863038579409655438520560914324816841208246247802020619911517119842649340944551646895292212622713259487583698711203893758490586293411524606261277955029251984451940350985247632334507894123310600454961707845329739692444419537849566168244149448565866600314121547788748064925461780504473610930513603618393214164410501684888546685364655230172072166292130392806385958095117421719819167329182793689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22044652910563954431357147172189555047024810365104317864690456148085853103841821384483315551317053944335148779442803457858446764429243705699362921963980429165362170725908318310241111688179028847732396061027410250429801110134274960759655377104002119623263109414445954796722065146479008459866073235455314063986147134852789821764124540424021892535835142084056143822651062198787777230213785707856796112469459467338014496332057630680671306168363144854468862915323127443759727086779229863623152327411033407027830243754314169580569403816475916952816041466256232827367324670766394922492919978005246617279002837358011655792913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26552454311841494851293428293544616088006560114958501626235175148538466005796586705078670675702257210318426949910085289091336629085697306312838006398380292927640500410594506803474899225935491217722477896989080630613068580618317947659146878757005407949443867783445515825794425808370634953176360601621471103670480196396740479102828269598356236799458874239025610341418010534267284700810749442747263613265253188862817834738202608054109633381825512185698225507328995511315111138810452032392274286799007490678772720688319554368655205853181947682501279158147411447845511722384421723045267806861405531457430154215566409671221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28775779937693799541343575731159249267286779655688125283900569728821564523589652673738162890916333650289253956534216410323518967174297124347577309616792890836076308521135700108744200231097513674834369712886466553911944542877675829578897580059899593771610004812751911570581455846357820950068163655854089029081908191113270835809461555313833563127134692795568925255700856116362503563217302946063470107599832933899732888100106859195955516229718476656045712313551702613925045596027451011617829272588543562309450807321721133687469957561897841055276652488300350168119295377808503733729867423338644604865290162495956270853501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27436964244894909109978615921164359749763524138933941382509625925157232466667922223476753303426785398920063201636455114117011966824024955444526003926083702464835560452657023295988552005157883358914801579786588906589716267871006796477780006482165418299749623819943979662426122359740729165129568189161813802036894771914845564953154303913501616481934333289712828408136712482114493507550555149988921486902718405554438843224105971634173482739321449814040435041401213725326567990066743933839891977042040479772880287157209419734223084373065946774941165830269460960362089465968656360998340693781227412069340080725873986014779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25053826207519587742602805704577860527427150249033303145599737877859684142548713286619534491248745041184730187158683194955977491861521978870015071375884672377715575743808583623853909178132343395873769162182884819905284836904185210774607139597719132167124870604827119438521133252247685386026551978748334487369548013245423612477946763509746509227829698582781459679480569031322871121483787133564228960645474464606234908007598280728764491151613307677637883627432721035090655865638373857067707639114219189208056929454091778053466078264910696622895843483679100950296530437596256886958348233490096562999145975261704548009949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24342007198540916515864306283522265919038177813105817372649052430837018982057351093600047408993941655253710854529211768997844589521625245590137134327263689073355103009983342305261902885981140050445593109510370191879388449215167157162381834584505274246446327498141950662637915296992795268805322527559577781200770208619729947878487813685925422139655418864499844474780930686629479008314580755809053124085547470542713999038119962795980945842643154096550539524921883748972344229685752547246167617314001449919701009723407109257704147930844817056476442683782191197084002242032251604800330621728198287134494978824311968031927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21148949217866756662908572588368561947786090636262390298531034514694833320477333425651724177564597398425357293203716164499388452453566416682314882028466292501366227594285548203052344564633530893955428678006936733557408132374309137031099213413561329468242703694523797805193356400274792956995293289581876386183391908257688651243664872351045443865486871041312769684466718255535663449961105760265036488366300096022424141888242093805842884623364187613506297933439325947850858257294560149312358811430379665383499056033948164899136957521336088946137895108978652563825829403891515086067321497300225617253068641637221965903747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23045385452343220405553186936196226291989991543993008043942333582932453667246256971076164498349001222612055944603391268311710256890062726914584568301888361078181677769998754621770094532088374793966762540503515179373510806214321884330098154760084303617059731164502738317252701831675336742472618983235812442920812389561845598182694245732628615141410859787389884384961026160332557602197205275625297078535532927345135704209333207696302706938349114966113150579332188277844518962077342802766013898703893804502674670449610585118312340278987835042062335103629200259279861797474743164377573828176884171415785038852896936735037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "18280181162731976989091225636472483135098022187236569455257323752762451512497815866890062499921250946235840601100341439970329443873299004395613990989214024312947659017280121279984924472286591581346048662483738153247695724044698012660403531030976406273583481745366424462684428635299450762532909785678726649067183503461468183822116553989704657081301009970277312906822117480011346680690316900293473740279093047505645300366582205586077825206730802786065648216788371444205027173793324652397277122393975031859268566279410797393585241705301157466836654045538593358568436847473079622990516597629067101834493942329747223493651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28982266400466990293345199959517881052905691326083831314988917554440969161965813486389832597499410686709165444704641833056055650906364804602598473550373808914594688253213394429425468809280730030650554722708015873742804957874023627922165820267186032712293653983104799773329390515569055056334867104029839733983116437200220661984100094031904022836608020818644496761944964747622417731742229157123058842387282836759505020113767309267816467877774348527750362205371540880386771087940300209732263827578137737973548499747200493715498682193545329028100052577755024196751501202201925450981928965467361346294853594931902973166063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27301725062531338232424163880788571063407178773187261389390347006500120964527000779671633438150188924355467114450874685683222665537902834456960319719182730544300560373652152064637669555343721756850172750634459119262843220551779602364185573688903145995377537269850926623770925973353362905332388777953638681958980764382112784102484866322213213070263020786132437725132972776699904188019526047749459552316607142465455592357656164011773019613421343414332424271560862005447477270925131544694098650985962224152506610272107806337136809845432188773591562165494226318024530151896042636240170749682971183114727633777596624480109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27805587916190792202277008724128403086550977873020813989356999400945152188755652089027178586943069523518330166514457198509383817066796077262562391779224689945578324512549737963519874640446675000682778805705475565914445790178287238031016588129364645611408688075274299751335364741718097904021653220906220275262907237080499548042396697980440731286652250979753797888702624387491661224853959238271714565438419520119894120166770992042530137004040520902617286215343346771147887624358028880350645966760257917264687857948842022922906467365038766796234848251724874252359544972729540285453746778097401582524458747636050792434307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29340193244670851658512096892472276877774165380898623805526113559251866956911517339116272129828534076727609824409659153367045308440743316245845937372901702876934746750320754127228983055942675504597016265808734847727769737005282275810939511408442277949439368471653812779728547791267032443974971374017430822434016665457422109599366713750675748214424834139105979251013861355731647462378501553541976588510498511001749194889864153256106896747957215362244022719084454270072962100529751877841312738643920987758252956944524243402373418945726959122939286728942000167314019899540792254090761040675884079934298717850598805630231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23089387092377650803538079056626382968797354550715710768962967585300575851549510412163915008780189511437102005011712586155840706496588753255388518448119421287238990262026750285480961673715399416348026726555202225860795854172329855272588105198365106418933152752052157778438418590166942330431748310640892709128383889622793870942753247386542844673222559883206638043939061997297088486574019632852127068137228029516967404171502669944980278332924342081207464107832773534538177670407074178488835255113062490222176947803960118353380540856562723922284069943204103313011758505483299354495382430061138835511658856339727762562431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24421655043539660849864665445905460491845904500206829624051645498658641442358618240820346873818925636921816201129891993333043891435589335477890292590826873882976914804006899701752781753449375912225403953956180007795139790826518705043788294633011879285161261648589286418759530145105347131421806407216452013839686093353582568059524009272627548304869070858820679655994697060316841792974862467350096277828913949233375152506616066872868351073659994183118570976920478358080043241160734306908770204785811619866650433608368482422957959442970351886407175731661500383550999967752682053916966574315544261582398169083896406725877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22602906531828852229286546036103381991118014499496280812741177143614178859467179164484327708837810249170629370246192863893185318326207594401413347971304917399994950477713686826807381603398793580705042707197792552215620330769773267673358918709110212873109715698413435161518434083618585893646509005508904928383426384229424607868356452758834392178613559590699953057384490399149343819056335134354719120676101156903947368741203200440042780626949128689723656497302595677016046289677610139200586386238336290523205004584731534387046439777086020896015901528831052258710291816223358065172191432021554557380764644959321284748759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21709527836422471942277795723942389190749715715264265876901365871680796210313255790315757344953664613958902772158690254547628321879249148048060337627099634284527279121404277933116797408837173792012216588357504281322089803014958786088281176807559409447196852265725396093030962139030407782925067262057821803548581234668171997155758764207689645008521600209108209487913822651301643987325953351584673771392398414458635729877812578379776140131849817155499053823373605521482960098352966613191931139868202096849717614550549751582273505907336575750037775829572686412276502045130167032235526782896774046413441319469339770922629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "815534547876484809317356840136835992146670435911133091323741831589030556223545005596419477553560653877586541042136812526053006784337130367578909674760156366648152440732410379670609504402491613915734426883202557272967352018512461508180912962640857369451454949848258252747949974092277299215983726807080423697536855766521430078241745915821739405131207107899594043143411311318190128502889733916359083742997643988487162789537646858409437395516718378442164799867583241602260045116936588763854412177225056458608322971802527008134297677870759814544549201586644938180718843877238379646152872238452807799794648599568579097941026468073237519586381928710005116794789570613803072011616110288107886295888190823311416845905169749222653479495604773951502272723521894093821003593538125565808378928122398070874359131468479492902361930191062067159610649576325434538810775612050647205574496739339357713662513806451028927393289012730265013761147192484511855373665988108830396726879074271440913078368293546478784963096988311397179722298819501309841297612726945309121255338749108567198691460937020834531716180130250742175955764501385799787759837638712338632760373822772868936687060011740717513566795934679339412795611144092980938842880951331411551652426343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "733621612489515501409070552849004274567363581457001021102478637223511221451929609004700916110940124363898064485153255732488787298249524200036686135750857954648199992538664582199760275123071096751486007060702600958782993099983414578668846262999154930932600124587516458973672236308228193728017879170324234420827237526809108995921684435563346847772152753253767364161836739112273506835940497300447149348839152996743317541339603622291216707320094146151221411934397067850265090916628766803252117048887179639345573062530846071933105092332042199569996919530234092249999376067386664873195708732767752333487175874604849537543722240629878016537491017226052921265132030341256880511527774526067417991257936693598309464761403403527750213754529681835800809031460250894768397330006706430700176745270024850939358807128303739028899609794824976873510071240377211542868792327169167168384558900862114313371828065220446792057307139118564803701828486538894081559156076107117740695991950891002719596719488645885438385340766484991644357941497586292243908903509599639700825947220963196989812324228863458290734717156951484960938556942888439418650300377937631934364260593958622371504432509365790975746331348833079291551778990071204881118475063625808981511426943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25816022726321065589506216892688656781229014071255977923248550339670705463674552520367713233530505233836885169172065548245667622620455189442695265764812314772411492570168788704735632837565049378416558009677113609131618817715788481463095959713184473833548249852857579374186045926715013196780214863351359085788832604283532735534523014671695171536469010040723396999978648197314340349111823113929996257294867929830557834801161265642749576150194692262525842655986521773367166999106820773921334725888021937840947542093983757593001398900889838769773599884749155184547770473556612690663070096555894164240067856301080633586309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "26788603042326082113417221853237510856886026520645724353298030642378256625900028366761980350969698886709055087944604444580285225403565024577007528020791711717215387598571533992311985456440183316263263824180228187411426463430378666515496815649541754349794693724395716971200497563400998478194098737006009600684848749998369090364729692147943101682115696635756306411569638985789216261040546848892751732075996314170620697640769640551847701386746940621197368380930675487503364526864672492588183963082228156227160221717869993757311047720277930444671911741735564631798891981140035540940696299616372561018780745310139782789021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24876891193451476941289200723072354329441857964326000283295634506996944248332814832791259141334004711818770664931608249570554488805452782352963042360797279781885900488964430021508243553249318309775545477228678130305156395343889920019245181436777988737962158824231755755180717388160629160977308361990096429075658942628276185146846338745827804131433556331378756036191663565838203009656593097149523605943494883230176533528530383093898514902195811427402220879448711902336709845922992494902836992608389037887935514820284609280800016715330034159122894518418199206665468170417167400057188433470406010062646968984103112190591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "24280325575550437102586800173093410322085231792881401126282026647066122513243350858608305596880563860574489031052216194966953415985593950586341880458477128241353785748606248963539148359570389243858242042712409782727183773359630903858837403658841280321973618971649310101382019853891368431867980749500529144443062396607073148291467037895513848037149173989765825113877677197933233800032610784326557850054988372001610736273253990237323640872999578922667409636222968549702847357162737576609485666540266871897362984600011521472837819505088536429931438611193695381369134158652468981091155852039926086083719376887108464920319", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23740256539358743687302883769010157", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "25042377190101853370022895551417007398611954443613971474132633378805484103823053287735886080782830316931512114088432579760661965871726703737376699606649351513659384688608951059120923788024403089724495117127645627470287195558058943062330956872713584570795032999698469368910114117556198654983591681083079796456804112468914098875571122791673415429910988652948866770066870257513927685579662308517659804522409150578061135022888695047619604782893686263071444781619144268543495020650796271913267511025827620627102130273536541112473569255981223670578677253480615560186245436414988801707379248653208049226775694478296667926589", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "28888909272286887676929440535138185573452151387878966134719860503110325009770181817226881053985153128255625353509281511793663020940749420258087573461917130690060201368040129172617730626630679426666993372577925432108524369870383707975286642310759754404738674702004997451202362047422798726335327246089440524085610998390149914293047770886840142110261526541529385922947602788144031617553256296447277440044214763620671968001791410721823190160470871898903366586799950332204069996665653749028492785239659031121399258994277807300490043209472413998904790173781529528683926939409922609203659000484219561746116814550455867765753", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23743084431311097007022533811926208", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "24509302967483126125386264379440602474460169586317768273614561087471405555069661388977242892930490010852700458551425701518592862337473518163712362224108471482316076144745316966261298458439897829591635167303667740194740819784306640725947416311704367583993240711886815340815473401594292062928094823533456461160605241524650625514968067492159064241929983376182199167886381397746655811069193014803080946289876298238685921830344666571975002794018490332524921840983415708109235758167030657184186322027533320220068958705540111195830909799070068034283135102882977038278044292683550445891582941311163260871266581166657812713233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22865254056983869264276304733735678456368677740288781469320029697195659143079043840154360127107581305153045617653357030442067025475353612340781017957693364083497861381312725187761516905030707283100334243177835129239834818402713509792626950024621402582564202309438222219781439415884405055431029656927370180625456925788390892058303687399054005551194848971570547391676465649512705925475232546101243391501006807701737402259098641715346284177665299408815337291809125310570097983826094800878737777656999476808292292950700673552055981951195166073464512426660633430367707525365214773956312786969203003148111416747556431200147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "22456867659680476598871059493046106769291031979086479492702458240511864606508380188851337127851966589501010476020544233120029034555499726118369683887689237386504826890246847795683534719229873936785701789406585891705495931527102918450962844500779988383372729148164253665476098501662371667346798767686583247897603978821336115331199050981505264150113007075541483965817293104523622356238209653034593149083699687201251890111114343374048805414627807704583170379857213619089158156952482093827845090965581662215993913187009273738919301860269715837054122304266522335179973674389088641914997597612812551140469066031959963694177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NZ, O = Government of New Zealand, OU = Passports, OU = Identity Services Passport CA", + "modulus": "26089067603334026983137751851852119176590178957056540835831723675766103693551792857110182794562763917246932885151825093433001497457491704613106966377377118562540983174934648827890329283151824347970437906441357526435189174405756603008026291176364196688871964319944295623471339332438043387767839887308076500732916598112598450643284593102071941792106291553189907060790825164178929008398299328168148656476134192220461594150160956714838647552793727037975508913296411819965944348467038847039294191800498501982383851189258255505515415698608993687534281485539304474975720011639426121932525262894090446649517671856868013055629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21500404232361894573504274026807112", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23946238274265802243573428900447419", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23688927878857598777518227831775443", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21031933475417910421503889718979248", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27989612558478792856618063662141426313070447601088197936760963639819561677497716678854397789166122275602469883855549095654071093839961492835822166331835231331773883201266498092066405017281018899125370710242862714556949745914329214895442646393488267054856098029609381516109727520704072935587639043581376937396651192909350269697874539853797786066327524210355051246156205682575077677030420324963608506960713542014557289932206481418651946099902865748026026907778044540383991640184518241397049158701010825950514728882194969360071305113810961654613297998572680917978619733888946944648855022058039271000937115176781406641179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22417626804030630761845587721721933314867342455711522863783174310228209319975323424374819666075341356335594189934129301072481553272908424879165325197164781569343416929310916854566399609684542408065334382045307634540340891049430560707482958521019319482095002304601984129883694142343180102960221583234730662285530456071900876607088407958713306752855104018708954773867247777267674208671527645020417535446247032473479935979599532323732683928121690071207117027231384440031601228370597806766032719098891445655667731196997109267407747713802539122638553820318172885025513063771335309268763247590701313069440341459071255489133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28081405071443772632622572206887656984804299354173157306683453753392166932889071145799706151569790709198299304420526392668414570405808520212452643660222721048113029401289478296326652005569792570990264912030505074684429497803997344434003172946650754869099394739143339552941006785188240393151225625583821650534679907326829335491746920332886178801054143292991410932737492537948149433217568157300828272572667800423600825241425255940650721995022776049137629560759164574809968979875037545006052644408204010725107146766493884198205354833100147984226694136247544286599262156398099304481752314275968482290883774276783642970333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21795584078246281268507924365088945029170001408373627397634389453690951958221661810784341204609915983734302771563742616758122814833700039318677798236930364580366078211798510747538880123421082332409877528007092441500678610807210893065109034333561924670882651458646877046382455895670961871771160139236068020218617440048920256874594912024386832438488018878380801658279416171972036616956811573926381216387095287742680971432232545170473113981960042763635671534882528414749602256471093183514368054668420637783679211042785492030990523454410309215209696699718787984378636320617315493579239102538319822193366036221287799338733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21288455383058501955075845129751957861957676861368671199776818912766676279708373908460242137003482502556455381125098321680782997474049263559560599621935006473058082695770141862718382491758247623546909801232835401058892144422925499674288013993514524635119468898201784120351763619313609898617683338516489738515206026585138169422123092244382830123059142750887493334635315487235312890232963355060274777320333849384115696064256818367071690875113390378358558573744036161839457680665476514933098502558742574637421201652404739672553683166229347433156861015356238840564713026401061345460359123488861711788330652863339925200563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25585729627674601321359667218148638929247511597635394297552849743155994323086075494597318723186204858161165689734631784720699332569465328821326543874084880824479326359122986315532279398162700773747495380930383569713149863271910784212159906651757980914397015380070088892000450235826965336673571531004206480882166655711037742810556907082140218648995446784031018726308438403037367328237006362174533242068131853672137390244101903823665098741633989944377718836475378285243249257582565870627432753905065658929269742570462739495010022846692724712787890620632137955257555312125074659490890152887786983691365022693106633774103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23012083432040005617461811857576181341989432501304220608010843352681448541829616020697749555395900842627559071244723078135531156014607971104190212901585903243761043986244777483290791000204341969672312240520891481000282695308686926436225168113923741841060609986436034608628115863409947138599376674569345291131937176612851179184312977626333634345721818039966584572381675796631283183371703122170456340089524756967850494877564503564205522509394294441285471866683338895925440212343428214416846013454336103559293709868728159059156569739760856376865934314682787363725060833548421633264883646235600474753217656991767294997007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23529042832376324423685224973187508230875625734574779186704850802439830535876760180843956591412349231649839240736803358700419781333210284675761848917477771793993274379780072642347862192797966862502196319308070940857439120654083616463011915379076553113626554856956881710782202688453681467662767564267785629220586898893970562790163237514693945085303108065570913545883535613371037282179232541859544306400895300286495871505809772048123837909521438904951331209159538288859338925079756779768995296079295285421845575218324423450493364579014801450831868725395693526919676032926486233328276489622622246936723990289326841873357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25850440102388823988557751708585858922578646396488627714666020241113156116752012477389388128745703747176073733375060396703363323343589216783643026324849144353969598475941171465785661851062352936096390830041877083258694776204771921375997679162297644466980899865855220303004855286061813920915337350086151113896148463704095331274275178781267107431291040301388225660747532994416037524775924145913421583743103689346750016103668826777362367041306215241167704779257508367589066107069229285150470956276325894645161936485847071232820944398790390367647267798518936656444802314626668223665455952375268884594303136841178785123337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24465352546709129540205508378239792193350579693450485786009474256403809949739726768186136605575100233815044134868041582656793521397571553594441772858467852253186238458698855787949056672892117362068504813275949320123160685264396525467776025272093178528577811978201823365886416735642459582918465201733124650610756501933012421555769032967844991557473309043350158690768315814966662881450349517953151462558168104774565319077777525154847280687673234910479333729300969325048248218321207365050471039720750780051849658607486087267088356698322023642861228112090439514530563861670405620278791701097938008286877985088419320518737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24644674345033493775514959946238402381135757866189162436999182187763944285378864162301898975066761382041127321309527951909869486569438437055407040022747717543466548097357626250578042839737239446632033702265225810433416527447348933328902679900085558786930049206482659594059850524909110696309968986048271014959692216949603362350016011100239927039559822123254224302183112365702986045376608940823231256939163334034436663740910858766881603783028666763506996121254543134350869817430444308870012360793216381513124139037702602249482387355408956296851352434444658092050107978412677288106574719221572963728704007619731330839577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22506980474705601772934044413390245695353008708320979370979265229144535633418562640372745370217361039267678926143807423973686746204441088040116956709787188016023938864923876009407349287080814948449895138131424437201780580994174256359765430764185269423102203814024244472603118980383396308321975868708711895044065025078551517032340923961959874633259127676959118784313221660457690082324257005596054073199651860863991447179987519534145102329768754950059461670447124212059188659669696561267481163654850753557248779225940002669082317571812286826265461462902739619033039794613342797413108498130300218835149620392532262390151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25256527604927564769265715572109843571341517121220633554453887520654197686199807118169162176773151065852836493163594249919213248524779055098459251872847042585896171201338595192781067923931899461114083724763875874697715189680759271875582521685344109826470517966050503125280728207446093177847401346314768225540311513064174286488174401681563621536815875004943766916793895027683144674176079712310791177079169806037603183466057401684857939538156755669324328216520716491745432712197881473519728750287817825203315909057886703665431556450449198360324468708759783168531907637932804687185179663096553795900505698449961284730043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27453484454902858035243687526259879429868169019416660507913921107744567769608942209683598109918128632416413123356529677975441604775108191509999892160782789379022218998762366122469177201828682237273260449062723767450225409595023383902648688538782137249978383282736090854743848519172012911898952442219419810235715632027301864242093923124436474777155498267881589469519808991287155022290769767960275112090635416637455425464998211254658455261232991624725810026309674859234195369736068412127964293502401799812353174636089648352799001067255631446147197612271368880631003760676009208840338665687387418384213711608841378823197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24218705663645041315896060044338049863431299989624770968480195920996503416583901642486389199464330175548550994786272068855327170219288168894887979142277956876074245110410908516286176394061522863722872233230940035560993548046513606096333236557590020036566872361800069305243897720076885607928772898232907305271937809224621060351918167177355519287054983374685798593489701819600709099908661478705830844191676509207853319296581062894578318823322690566936716753656624937503864223679094893921695184510537620832424742286975636922908918333649759424532541265053496621192232351493832456378612146829431820866029114852348937046083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26392602259263185343877392233866078783438273767674356104529761807541476942185336948422097310506275922702109020740802102267803022550157748365946024546757079422043727479184839832239153124255645821981014666540408198019839704619854276763120675373324021953176041400178520841080584059672593705885052813999549996438836810541432361542748052356838701485026538306779045364674933339147164464263293990834110471714104087818109479765106363085606788034898392528529609519397770026896230961168941789335468219118840543999824855092476329629964588032811460254716398297780108400602650198492906201479475585371338043230961142595033276424799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27696009544691589057674425802583627380013962662578050852078206184725882536841173185968580291672642079188942881282861563864351214139503105547970768907773467954763115762806253512885954191275001521500168556203245076483829955962803596023165518880921423865380768477960419338282182797417525103023467270593864690410128625793337444814282465057041096540003844724298139344780959402788336744693946135561201529103344425707316120433274163204166188747504752383073125495009011230298715546835912013088294021133582123976780715108641420261093076788868565024473038708965018233111388166093517803242946637294838254103176790730544329729087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20246033013197104782697723274737116910385210845929619146433142402930827278380399656182426682460778535622860936693848104464792368794938465333542558760101257355788483301545952972994686716606685030239626467048541204792982364704272798348368967460370608615433575940261560078425801773002152028467285921889470256893526324814873625037716470579612808359362347404708788981621535577545632917641709115734651512482730429709954881281010209028961393111114003497386682855014765629358290887543516376717441239639780808633171619342258320914303137878681279460436508368379064531744728629871514360720980398192525366841007123282801392946941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22627167433804973219562935237866420560354546771182816271397814904548404604760134623635606503232344241063125399486133058024101509318816101894541303198519876011555793940032644325606577100901640713238409345861253933879593160921147718015031360032151503405344028632165224893109372187583743893184200177774081590679936000525578191464659636993106679562451219346882244472746803769890070713493159818483493073716419041979164414033042208455574569870999287051660159627146417335251797055229009612429201388970177360260967149339052464828130045441683288495881892429430877323708969677579021495911471243069093203485860132887429153105283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22426843136256008735825695434147597760873776714000922927938224500499991198869979020576548293224567596005511137896602134649265273971673864815648080034510212468446282098555329342934840359859292313284629733497421946877604286824086886891669185454235469663467462655764027073829481252448637371992733834843727521476562687179644741509191003181776530396873062828812645400339060835186579565099472893679482463785575314432365605066995123840324920888467562790784085234621326850918156997178933079366375591119139094617760919123162361245807023273582832218080741035288072454217229397188043492018005077072098962076761498631509690615131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19930744133928788887871294161500334675943927537199578740026609274111238303792550487565043779527216895748121496536933945586078745129014890600195375858587460625383395952335334837072609825852780427927176643086828941269392407021897313607654854691971760678907451063266869524032116778675824746439180328163489177916005674008513830457909745751356615290934277083374082761216474689350746617262301317944548368351790107428617960202204743043615068879195458575736982425845969952652807691563645063877607206149855491315594165071572685639012307519319714771412768636047905851644675275895238586786608734093265937001601302654725930594033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26952708083503083464351774309242953663713629701346438043787084581518727492228220248986138811925945165374516313153201599248133737091246017518672168745601765888638449681808054707293192600501864780407862401397102630358977960089603718756318548861589015229785224560754437426397802930012351522298728843138268908277517221417261996496834164518467700970689549486328878831395056454228081311985587594014416971931638477411998260499713910497607551291484747038567893461084145605176366312748006088084950745969765097399365437830306465492907689744174020078448236749923318753178824563586247850129457543774103400054532139861773849926707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25846669663769321355271048101694606198571129441988597978996954379935352982888339024043673123267217760158567450449762625291673156332726898226113255098668379326475123214830169298742608346108754525411417961361393856946372633658520851711621901754044323829189664528768961652123756120299436252896627886161120403056903633729661849447421702733015839201172222319148790239218802529190069133913616999890416155763692001218547156439642468314083060344033660979870235773327294234133406965125407299389417421496716224598210086786816839804552932241416884399798164018419232188946044988369298356394330492588667116295453355080326738669317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27348684357098056619169645433177487406613731572667967117419590069363738025739382399145629792123185181938105401639955146796117079528115065620371924588766131049351815915208275973771090851517065772160000805758718505783959943337784805261177507458469819461843737252347175717079789608965817994136669835913267394843784231768191227903088976095224664977080953457472094711560620197161554282925213732305242384005960410558730277881412956060034212638597723528369867464739941190587517335700805618771137463055073564221400073467270403351894084472838846579688805776030120793966558390911176736305621984311052057251472242261671386052427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22249667143216454464660612652643054798077492275841514469114300370080800800552223068555728153322371400767272853488286131046949558405790128039220193892458855997683575080040059812722573673794925527454574080233891333780801739656037980153821993827584545119356187390731607910467338060145718450498242189086588314008122282482203025014128003038472526985793145618211120107357032477789882656663756123490621861904011829960691847739990291155482736005614941522915703368992392400643636556921587375854323908767145354166982877632080921655106338391959446750619705783793061599862904470016278640073640109187717943380729401543124576119053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24982799975580896277898872007189131137039390399592465112402729993649266814660743096442987212878417330469689404985269346682080091249762719057936308105805455392325926934784605899845983166790266787310192507909007297977722793996651640882954700262367676493358072011284326004562286014835711682369699445321046129749256844060972971686018014029087732669343947324546287022540307727544725688733089669123043198354219710548967556512055647278885279855250576189456042237329840541335723305982381771613796945986518377318630375660006318279790445302334527930765442200686267583818454822941763146924130678926019566464043499260939736484461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "19002118604515985407224124693134396853469288200155817677503380526327058258718772428481987548642514010208590765758772620244283714068524805134544081256549267665284757034836826461271854547001115182541297496496990056398619305527921483012916643589289843631185361050171260163170231085279510392885644089474081991370305431911757183323911587696552970491187041613269978293352599998093393703752513354872453390124415445404768537453178377366440441973666576747546592042607545265575407114178930277538070907389051466634176642152565658734106916733292134296655012594990395187169139369982867368369655786185001319589665769111622406699557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17482471514048113386726001193310116695284780315128981529572174962144233639885730448576034823996682408241340040306213296548307714222620842134997192627396209358112893717045497381265548245588979559159385497044961281444014907460796098654466459822328848724894255030297536928275426872172834066178054343623419053789383491021785325888706286901720656639875322817276683490903214120632516626814328116856563811964619529526071715781103115492363600374625531399484359798379977112232386728962553384833594438682613926507651027263098892439400838766823089722740945583952162970016805522216659926868545927045234337861954078263741156393101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17888875712420673465760260468334590205106923796550008430873870195853723194887258606407246643794522176579085560240831139114045402034512261912779011441653591938572095233619362927689771723656402571283522287189943185548387886182940203430560002044780515106451915246423086093207635211362614895775109878546248965609634349352563008497308204741003173691942439271036914698220077918469955201487317470850820403328840793796406056322187228215657493970407683281605741294261360408201039889826594159965553259470617981277365992893451201914350652455622423701125389006483136752591158981241424158346331907296124388403011498368497238903741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "866787470763200796281180451008303752227274579700676065882961820093300553394055775613804003820008641009144080341202034863715916809530528939675513008470688576490562473735953704515247839669975677151307469563823354841672591980917180134512307088024012424755389675270312577258954655120858911270361709882505749225388207379946625104221371924597474212951915894977319993953135205638572995610604421116332823742954121119222641620085211321896751858927343830196965258158131225816865189609983292341681036162995644629498948388161402063714120544837923263749991493808987584301213067335482154874906258931209471704387380303323417266679686298357144812289417512110185131659048283833476712412214607012451047953024309825710736872466623568274610156722118587647818923720656877901117760637879307058551389631519087482243682147676207616515192299643635091833157818269812034266948924826775233707627747184694817413830290391138229918605985688920744944320140192422816738039487315914794998977063202969364663114028960826961287137729288139968729676998780171421351715898055698561694732269855577270328002573746500536819687932690832414329429257058854070454431731914300189986217424802165615031265190621076483477305300834801382898340814661678619466121854524121028715397299641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21902923214628954750361505764753718420329502464618763307218083787879221664340372370255960463041302801279460034343603458729496260113028311272190211423480470543506009514341824801342032315884648424999612992543570184555699708819128453458158836959922743218393348190650144561678147644222928103273598601317362765827932445852095115289026446538312581043446217055772766321295821839099796268897173769275583478655633456626834035883991779055467871839999677757743699938536251547653685637636671878707932226265249334022602598571530812387142613918789954266321019014704641570425728520288519094094759933494835518648107242247730393178683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20543002976864089157344729547282231672918610547899163828820852243255074925550184778871579812114292696837857762634646549487605861420638473816374327285620014932926149000167376553776668512188370604949542243734545903818813336648656583429789186860386122647069557437566404247614663941691444585708825515706129798505714533321458492182763890008509155957630344830748417821758112216831705057349118042668831997810942042628591642400737588303793473491953315527255456710381721335876218557476892028104576743341960369164617414711166707704068520117561478782474659684682417982194073615814192294023449273550552025744782066570967671465451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23418442635336610054676195316320981831623145318587343887540429942675520264071804529994740250272935391752554560839112197242457628196565893609735759365143815597932758157334271297922944941951778102126552026624446342036851390256310829288847055175486449979330209940859515941949354447434418465251892971937381650135234197102656718013799654524071176499763884109955046677483470250261669274665614414118882546362849920843698902543129097732747363808870799944517772231237712104262843564821746560520800042440911883674838151612854876326736884343572446387303683965323438488799707408796369721457055846170340416227911282632900427670983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23592219997663088060696911734025978714699068469298812818911534156731465387639567730137250959041200750411682047348246609183630168593180342281745688545072835937662523703724311067776616068176556538585058846585767197406898805183155277667666173487342844628270361932024860523049524972935485147041221518131987880730600931251365316905876758662581306882679952054655153960008929945468697605596348292274901780291381010845196833619675618035856634781782812158403997827586791536293531492659804049670640859774354115480017780066150467154887553213688918704960848445552975178130417059815194737298368455763742725547603078311117650916767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29324682360742621669977311305977969567986642484183770783665514040570967139111260625262221563740802406302245228329827686649595992916710762372067907609983130511183025673928193735077269519555256658336545846179600481085195475215255200639383217741665144323036947033387344537421546071697531455617486501051113238741384362499383992969527261526630139186371929179626750633102721142500648342405007282291162053093661806836864044764556792852698133840250519362791787080428302462108239291547811282041195165318098990139774913232459855360799843935833270044132126659454529806889970468898218326471269780835521176920497054780010350836987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278337883105729936894174542049591960855531141014858551643760749898953009258195152530564350888453757671462569564885311752953703707827498795073779533895889522383102859579916383168725848021811139820079386798723871699066190389027848899228388684184594787506970479939872847559006409087876181646884853410073482358407088346020118136411242934348428256714900115631730928486929948370718181937114762319879281337011931295586526365654781219739552189248913161394865366044345656893441753794490141589745634149913233406486886365970273867835849113948859100882781343855537690954129874387950899065035291028701229282885824701245044980663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16775834661177872768338599622353138558723834566238093479806048960490617798274994388010309495872718490162998208183148531326847620464819426013017446570810606889326413998284684366687072020374556847794874145019805523699020088553069794880462310499295743562089096718047435261965583902568559029187362055234902356646672491935770021264697517166597800207928411690756176461985280000366643498656128704371074981741378508108111289041427889769977894888820863888243325570616789550656030728728138664293120178386198530938838723072886669021684402324367481856951278401598820328604162748147180564448658740878950277591797462512064307913603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23482047437471603973019189536759171698561471894621814270097403539442938094534942205756524850258836618507840201685332988367966046316387693987634343171979949847790476908276080205118903446289129883023699746364234465793696297602308724650986910435630396890619144872125870809864898491443783467257048739799551946863328052914375655667223097325758278993366096873172510173424048197438304463793071926436451429948425974885406636371974076915497401037826296251662909765457964377311467619187668744613233514811801542971558602723046129141870871117304080974139966716449728543547173619910659262805035280137331584907908691461032626231119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19787921601025028628694189602894783862598086837477245613845715958442828397693776299285242699242242031085800034365953570441634909700621647171455643286757304809014886336034388194280134774872726682108366079411293553757183708913328583240191750248934082062138495307590966060704045280016482785966920268333765611133891892082564490458003892763514480332325463607804298929761789724879906547804174377704070259467335340066914612479231992180606787571503760097002243311744026560358797561664597363042216752881432732712082297737733433011726014360982042468889082617873221882001047738874139320288262969954096101916775199201938391428681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16219924736801006423531807933837670319079434552735485719264811647947789567251356696219375236388108505223344929531933087193120602958094776615507709238368697496900254075070812118587366743534875748299704529838986824478675557362880637838413952386609213266517741079888632978923382176247816022830451275963575012416747838626120621947998691659312536001939300319954081380975283508111762638532141224683188623696211163061253835989832453624045487624162975672155905060589026452657212007089900955445249640920523223095706828964154632589048400639209975089620535023331633094025587043773784531317919567252337540080661104016493898937601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304598551263914833315283702637547640691219398501204099480810797711896410672434323901792295602789323050881616598007603999920942923909643125231215338785252655833072404747687040000956238681864077417374996341858360525510817933158437052870920804246073543573733323622179720226330016909912577825057012364238771450584838701184671629337335965142287921698088872660314504618632286289134389187080104179284519432677602711539016096507312750621142487605032040142424360574365685639461683594201799729454644843098020504761078002620466741497649855509715680041915447033522061220128526565584531707062330786467920672624907936871074661437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16206741351728262657777367960357652736441643797309836499269338210981558289058947987009303554504690292406786179022458987782601455609272344372348372580790543406638224784972994752532245539760902210984923315553222363517273006268519918073174449906413498559332222002353281995924790146288309339098336642500898643262817639717171049183320310642515947847555774273498303222117582664352527105328651455047027781253955893561169769301185560918854829515518257101405163850090125190916251711277416994264348578936749789551183477119431835605885787765649856523529973650768521834272890441674069359749347938487135700334496080211035063670653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16366639129045604424665244688013769828983333516346031652319790364419856385153357561908533208759523496233355769086134289324621312234145621091487611394100186673111325682398218692944212833723270567763892110123435246416366337942848418486621404811907500796466784448714535330452305145830373855898673250678272150768429993631679851966341931977861376401452755845589119092836845697414428476779593267201865021003703047474738121483539799191654604758435439908430108979761818896337739553931773135354786509053090902492766002304795599201857628420129787504457982099760296309721199584197315618059130565719814706786111500412996753448031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19432310224947741539283068871745511001271995994226488860013921362196176501442938780362275170783869197102912622911535421948056144512207309401670352144995589865343797641789292568420748718425447495023116290447343608542260021678497184957272816567571040408686101688559929890959929370960957955378250022524369978026304430634491724386409401477504236494776051999612563154172156622627123272718127015165212213002041777641186365505965439216495434554287184002871423837957438399181432188155455950803093022928684799360709977509287229344750722100238351414558831591869537708022916867525802223136785038179230498326983828714209120012669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327162893506787661926952188076906259233365819595568525228069089134413787670863515922428567134720457186778001434832643618859555465075293940730598338790728064360861103786992127257093286144887758707985850649660671015292347854083559626684688421758256568703883441803456313105061817272188819616090697563430837925223096454835504157940480203116779520016405348940964765335246166895247855974973989601150526230495804064518946053106595182415074006098216010558937193819634414815236020756862258596353299837216713510742552048784877632538367810315082555623729296474766301187305346312912638016860837920346855393215308891217034367729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265864130129379259641123425856343684645506495375901863937059905677497032265145580547554167428286051670767842692603615118930585418050705291320633600508186985750656793941624778886814397452109897846646797544045778019390267137650498750350713724051857751402707116248914216686475749398895413423145456956696376535840411521810544978697917676729823787175267237668936277872074942118853943702921427036895007244228713199716717306517861212589251451219035280080098401805185690343003462682535737196021866934165451157073779803678712168693246402099010428116513562717217787118663772436870095435021784359760210269336651830653648605961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18978556822329287540156026378180203764255724122814562846728862628536140401334651235344819711099175045271226492964682301784832764102555821459787541578843323295170160914019077608952231017833505859283219387435939787204822790425987245983145619419768595571682559261531027563274386723154400731927613150614856611733129967847106274623885701643237193895336275803494595765113093157575781647771141052120501763340104966633319297133413552803478405903611643906944085040225996822867411234270999265068385313634897523920886209331709600510346603556838558124707455192975117277982153252018412279657872768987842513176158956490447784596277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23282678247332128723991686600470923526709362741365620070472894463409181918818964654556463853927753590725718855849284444518841515663870134900855034047561318194190529673885610117773685818992859473188002281901121036658566775604683220628747553457551270439060854597724237524160898048393576017647028335797512398744665888367790713093989862999644247307723410607252728014620196419550280410338148790950116111690873110694513932043351430069896216221393638605080744367838476066881036613909569730498914422885828850040069661461780140542826174451222890015882513271889491087031379590967950253976287167990004835842374527521385749834781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16845220877177571579126051734234160779148428379029319608836296722861301682052628196895623011776676745219550186045269964921560704595349739099051415405686431978536588189059597883454510146254003708749386451447765110020838064019317489396692035121846867407396784253056199877507965690498407572658390333821568620270874178569012729253858069824266465014514421960837151201992983023371075827569156014317270609385743690441369991081842864761109326153782763427618297381772471539735078047382881180853478409349378874759806488166955354759013069624472452794262974525160932772263407215239388475656498233738799409849961133339977570226597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332218234948101552148555157504906154205340266817874871681204624773495357443351139155847268273830707555927882827319345122771649449911059312022460838762840237889676179533750998411442090362621419016931084305534865070414156282280564548946007247931336930493891196416607883201055796254315672911862705811784422548831385794488375064060491432738829233149910780074584232429618916313340481355710028233820783728280462202809400576051140914029239048195550701353144804017247005165563617530558457741282113941872504664200334300087204197800350276060726801757101884966818165678135145381516338828060518521863742228108905457788304402993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21054661959636127969358861703986052877884390915369906993350702870912071385111854288235385261188663140593323630087083118851963467653374004288375818218812420285813993024473871284229982157583685963169012588947361741104482857204979296719131347765557056453288630864012881243813862915509658234445472729009212555419428762646350152775022034418109568562931011169407534964954340928042126704773530717824164681661875409845385116112772280513728119687779717436161893936296338271825439865794681257010645921181069671356036294665477738459408650365457727172648387107514701002858297700860238262957624130895625417136359482426614262047589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296832396468416247809145601776376218285409301521209531650337029442599023267020753806354103062363237312540240459539732461713176684104913700065518443265661915151243873410731378810327523574845045656455194564678815090539424928631379299671683620162062262044468920073970431226588572252449478119696070616967900797378579113505768018448430458489437317458881556576991104804884069800635627814168275626899213726017291310207173999430537136324621938328810977129028409589246687648533004426100003174186088913578361834569342266557589644624296671357413707285102612940300866016830118523234782936047952673681066857877530785583109081959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17575705070734441690299981959218191433053253650510361233325174971851867751058467968424525377153071324004003900497008262448248198407118590622138617042527698880725851065422098945229700418888950695236815236000853248079217820303247892246173655286852378840421806279906234170399694804306438664409729824839891729700751531271991380300489393092459832515676928094585956729632068594861516068443623626473649397519495509390535346346301920854276135085034919958938378810505472086782953393973557805566732006160443587831753032283619808199318358628538610090305223084653110909779675937750280976361192508265668964073895716626614544104279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16909857927998689185683889483622810738502022693104124435857669275731657851946907096260979221567085692226604940508837664116193215878228980045622346524298151858361737292808327107616059943993341965893156476531511281168117889277113640162869742452340360976775328380303951501272876209706160467259590997396458637177148488957400253105389690767882614822747209870206320878894292441790357117636396187049753749389126251384753324481366113631094045175313653613845367074267103938106824003615611600504192330136737132042519045907870183013108888370713629086282007310709885673569313505957110071654130673731503736060203939563336676131103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276323987993487610793036610218947093727742710410635731208747164720349149735724358015216852298124145878563209722137958511446063791375655356662186709813939127883028990673405073062182937830507559494960280977655212483352114953454320147342447628954116227675706248044022002056678574076419533144956722544345739763956442634197815388693664650333130606127170025310024284019141719476225001721633013767902217722620163973895288723223781591084198212607518915551885266620033879291609433555971126187779608347747483278672397021977848098922649354397811139826881326212755728149398765832856005719941030996051920579949316485930910230213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20231819927029700516779944382183831972490231072854393829404851571511851173655685629802670317896351201241271678943847879494167733025895191142779003216237723924112554832301894996977536575919894772030819290804625369601484451950126583361314461753986794809246735918934645499597892709322135056838817636491257790593033932857783852594992322856177248781420637959791589088075124179909608987098380592572316317101625040308296943709092827094636083709977663637962750965832207723538940576811938975777507107422678804530567201332159586637567633807591241862357391764301282104845953898788888778061821671224872138885710157429992538046123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21742499667740870480247111696815603364521543537728851994434315903902382108443385199515982520890407992210617785216498436333663696463851958635398880226938992613105652627245768036310915210249077565776803611734096037021892350012252470358393336063785652278900811519827970584349377961327586655732273480591060475061841558596433796678092190549258682810929782534104595408586330059930021286465376570463334043019056643706131343250026328101431858008844558456754952819600996206049289581002013145083557367283356067706627249146870176912217726226378579119584538645359939695094430225674624718811159597235505110424198057789608857715943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378053325900483183648459919429867080660143242331049002923052161610481805912839446474019785010112384831048449693997140165154529082166547123183064368751303332905846213924032315739071087017847734162682236348875851362519538240055962723315476161301224857813391910805267169087649565023935873463474261209872705017537556435921292864998116207436084461599432886015792167311828643540390736354789842563681553890891031825576668095175242765755749801372495690919133009374651578709108712880228882427407261153225948907959917583171471236135018336275436321394406351928309162240792107911932120266031691597753810817976721017668615291249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251645502305943295674958517951558014174896537231566522198217926810935889986755144055488484530656489893196854995483151179810806900758957855043588805502426018317569699709504038422990799100304462797015007750800518088240925825877292802188857335862735120192786261945528838677119679747318092394617302941438474116319614379145384282003564956810070910022534796727751078595565976831461863814528705925044625330410668485083348027117973388503276415869765211895307263172981646330826294227419541694886635732691343640225409778133965396339969873409317334047178306531427167744064164204011721913014466180990887877222218296674963054571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17924412742561775988180457321611916084390176525259935139204471115027514711926403590039760060643867063902301913874260727400594182176919419616577893112738504289944576321440754998664592544093066835204487998078189215586023138478715251181834483261948240754314940805144065882789875464336788215298487848303541921018563692655309727942833742242822443786369177600839087321600037331978241624122211183687562971369429785424016671698533508527318367299591664186919858622310541878994948245261999302737578977808279693477353552272491473196740781055760512881521300895858759351606551217554380749151044985457692260556180424235381464966359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24838682227610135586699124959123023559017992029821069980416158971006915297323161703172316550522460816314877384185423320507745853244256096050143341542343079794388556418128500510707482854900783581539968837908987382610518844410999807736855555767787612788531911542662321983020545741958169289842230871896628670775468161161911355112060075246556162828625477200505754545664935349011028331111382708315112567819740708769963289202386910047593915065552172977285638214011982756149677922958073997408937741013737196821458728633415042416158023148953242225859716100767760873038796625687856854755045278891572320613611927772655940669033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27531350773389244541327220736132648699971825861343890625512418897742895483398383856561977302432598011501504887750305862221796506367582519595769918751550858066614460752144675087984994342175168361578137509784909350200423268038551271464079583511325313758380195810873899566247916402002021426337677962536383437708151302926910888428739485367034201398626937913821011645398846998399840279740797940569464506262081605950038873254671295586534840310049807244222392493412519316706935634283553062237890978842852233340639212980173440643268611834704021673123720243459442719249412265094470188130377398935746529101081186009050323276069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24548569348901651650389762632489138930977982118589213900505039845736842657946802895870058363231830082765950618533004606098716709906968477285994420284357478807448543769174821352314465239064592088188921314488390703201119171007900797060599114829907844207408248336016691915839259647004176950358315611730117798302837200186808307437015616639736337489616846108680689363605939079792411881407534510456490794972723624143539624591114842209216809521101674054426064478122588972717312861239504092822351099921148657994250700720487362130770697583589693345214970410624603214464130410868801823306912834276730767966050569223301653037633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25975265135936222548515476143777847682509282262363581411037206216872936555125073214637905027754148947798135347778533606866073150829380935740488562458733176232007893826851710673706084906067771607099246231916941130074971423289756983914965612368895439309830120071212029747087083691416318739536159488351170721324747507191182793838800177511600012434000279123249573273279297194792923526319434597036731713334948513102274394271292035294659990766764311734475729418568535236657752951070690806475532088681473489576497920287737940129017051649422563228574066866348375096537799966255087402991838441087494023340257781889117700991251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20229785981617249524923700627116787854411449233324374700711560028585904887579951242008401836602570836206708812420999776895739380355330877199488701025183008222750307133629717183868896202847754941733512171067674306476007755194540742145405483393490039232314966000758180619683220577537481462607238636870868131529740065288085632813820811666149701419535368859230422889574161007927111227359250621312642348824756973426045176997390516729441000499496805527769572116758740780194626733560113046034088943717843040006993861092370701581490717775843193563903950882786417155990782973006368311442469400000599410663723399120429807341683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22448765681270044707003949346598174446698531057299864081068892484784993041208018450828655937182854123220007828482663844879842017683749816943020774491214165415755635100370557712563878214932225461411672288724734891417357499389373596154656742507459685566611791912244675905602870449655738776671829564743517279956156310628086307993344629905494291869199944036529155701749481525598908811176208526732048183958854917054635752573284765531800125503379804254413217826909791716677598778353356419685098281835354895827197400376751154482717204306390937665138699972076174058794264971694441413475394622561261900972598060376343241270611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24403337949956014658097832490762827208618944455414561559203687047464762378393347126719417230607908868173201022498862339879811177787159990806846742748629296336371784924057385270514871809070272024901930187189554587848285608909132182683695990902631160632573323078804917612174100399080006539091548638414086544299312139932254763293715603178498392981847862106204962962538993295833439050454753837585535240978169320129072397641177540659954746948514575307361828077104272158689672157320517587122882519644119740675995461102412436884198945263893732167847507840741044531087887133721333469479861205777735527594257276103964350292301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29694962700243373129378049551610969802906968599903631005980530728863949168263062048620535864439510857561987159469124876789087157847049414540583236419309037281433502381021935041437066045211342461768854394141980707130634093227387682597907476036193681336688534397694964276831283797005719772896021816389309042365009136357044600356899673400737598709987531214446025120524930753656051762620026813295756705205546346219895430148186470557811632964549774027819098747781249886670585421427224062249699916989881265249416323252892951277389650358149412523550117373622451918129686814921103348650604376223977239132435520477308932386581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22527632330901604739271887834716709265225079926031429091132386643714105806288108029843591537421281031661553975275591614401442769272836214111226464132557646916027663646080797084735225377773842587077364039092875230490210696579512097227233579437935375920167934164994082180083335058892788437074607758263093142877653820727203642305904373215963467329757811917866871493638806002670288246281645172139318365774651591607443511102604476479474930103399718384961071296689571252117891109002411678046652120346719527725788987949980059977497269222023964949848725948814594641413041677057845483158915520441782747675131039036625309458467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18784337658024647928714897773572847756860851064635851394002812784585593056859649964979130486134376654311758919570742326251034920598225816826131863524176375733431861757869379736390577415223328038474909845369392666072537108247919288933970497571210684370956547286674994425387957237878317781076450522500405864119890089234730471888210337212143982574715809612792373628596471811570139663605111934787728123538483357947232832682707514325084055837556600465741556087237474734826940982363142543677202581078502972830918372883519493346490726391748461647974353858604338290840066892116799279562430601778084209604344165227505237957939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24931506048192637752540570748565777942692964319418387576064529804291000670160876030097500481164363674319346218308632178805267923312181320243463319764731031132524928406239575974567568520265715746504319498412175064700125113604949663842314057562955124267708067811758190610967739239331250018747494898954576155343957361007000437692020578974405049750416328181659827487896707841335067099318965154835038998730085777671654073728617222000568659720612771996835403467605126199812079703537033893811678897492629752088828814827240293682113420059982323426760538251407179433376937262815060245349690008426684973930976483314946563238673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29193041179088160663893811111999111701692685734454882624736850687984133695554742501125298666913393817909450233376472754047520845556900312688870661065468240563676641367823874795613367514914134739591822164369517316535412226654041662143834528386905932865892911314117330748044472177130343821643147342813814361975956600152933316333480884459486921293340238363013377548007182916818573479437310935034075879023785346921376632541261090372674779164467119109370933569061793709619114654555682077740656854736123091864620842096033574741295291711334320775765122019887710466221225483318983028139736913085727605292033956049216789244711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23015119326632991034933503950736445314553576931490263216373926398978107700553472356055854062219797613279414796073687930379004786970699675471036352544110959783716024841560008845009703052712321433814357135349658124599284536893161443092109055758447040077492578461025104166528757303746415872409410486921293630788876839815813080899075462676050165685586621013888222087644072825948957004254136637034471476535326890886743983983731198618839723710624559735566150578097394125931230961400594436516919757064029102804411499257072693475125648560654301342941342314549931029296672683708404126211308634570922628359573977764285321552633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29481523330153647962041208393583082295791865764644124705761240141506620028028926375458895960704038632606268616509047691773230264235401087142806187848307672039521856951013318251687609600603138213191439452677932338718532218526163770150687348588128965482764354510647227187605129131540032473154130048114786975930123132871674120002186634952399244730471942666394253216894878037286201800003321704477266863101602705714190280303749984611396475229855361030695089016061505199437332305738488052616030222953106220063742238481806556221500956543741885823691575518046169025902711716567822180834039826199816633959851792933289809778633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25391444645740265436270991860727781502719899209684275858350957386335346637916611144916029146379077621882694306781563705017922797772302534489243158941011243227524897028194687608161721624574609383050649780240964029190386115782845299970691217241021073063008781137440095357101741969957196508239556202807663623184553278455198464007489275506943504964404664799738942666999041445496439332118903714133143936271715533610929763947827757693965809465456650635929399837849745843625149710483099181044845573193875013323865473798844361227589862334390358398673423735713571938957157309442872163967218396523644631204616256849274912517099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21775663698456633442428341665132749173198122302746325641201095556448866320913254240434614680802171536811708572123319401030027816417525443774143190510123580383424952586236831193488424618913611267591991000333577873474662588471754349727148222936754723529745717536440909799883554637746153671552095422576343840749093975570296323617011711622601245914472666942790579387110539511624341483106786036842628426473003571992181965629991745721666424862215297897244055857119999442682988677484538962031815979840304866449785488241412308202655274678493248190455752240659881293647704111511578427405994425656175324682338905323518224325529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21693231009975227636342895060443068825695085921902535663048003455559674153059559522883785186295859414976432673858476608741735051056202999068813469670467065540527350261899443025988333572837787055872808746907273574559045832087288119143340647185220891781134381094724083258142285180801535554802482429612411778314514375987323957584133979395248173062304496300666534900297386072392119776869328339452798806263706440805711050398530545447677657723843409048849538304159445964686952975125680225518465191935074842624720156288027706663834420881029417100641356892995249943455102853847446837762065252487460154422137096611076934691029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26528355280635607064025079663408116618527364696697055155221307693752236584855386694990589848013802102425770650179936216087726636287960623949801465100045951477749304108686441838399946540704390100157239857101335219486960275228349899630043827894991712694541892325354577031761082886605031178263271089506834488302218619038118613600076189684483260778933817004989725258055687220707077903655409365401697485291059933671797195141513061222261604760739812705585569925790602047177378510845499407420740155752342358744215557150983929780823722286019061294168994993990421693872840894734441581173755773690581052954139803793984282182949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23097995401911066857698315620398021352843856000746149970910182194008848752323196691126956253610659243121867445465441350667742064366576937302205323316492387999410070632004911009505547324096110738297564668627377300107178686707727970966092809943935538926675962937816046569571938376711368164702937651864732630506417135697312551355033702149701597162863594180073118945525968534904268081472269050432622900014382697227150706987033687216308414414345277578280404387304508852469837810784616559848000218691167278194462515660358840862256730029033511368019639351576461390976045411253475584843648871445844487647981471956387567614693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25038505014311614104643094398154127716469170166148182688952520465811924316757032397953115644031822990946661503146511568501104709024774823434363043363089067645413899712253932608623817998424412346286383493353319106362094192041699818258708427562891042013865611233806789892732457744325765119855089631022756786596339128758604397366384006938372855536175391057210641577431728004785898399900035561324875343338994750626586386249130023885316782778696889057197795430504768305249655254985208481998634116937655027185177649806565864920881842448446951173727988114802958542902136244750338557117380034452835308591372156745318545514407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21146043003939322264194264558287490277376515740824548441987805153902079008390088352845070564769249395456758184218246011053178245924917347356207359324065425841803939626649511777922522666746504587011376152495979205901819271522028584285146247084800836724515669810685855131707413191622252889091533284826762051016311723996130939244556525731388596971698977411469886771207820475691766796708178491153561609579783435692713556727780086794341320328917082005032381938503627402845812059792882170850271202637485748789607415501990463931846833211080331229793648255440606432307091838485085884604919795478491877516961487856179431835857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23182578637507610547212811020137462562012956780708169574378635478967532046669199166061532999921367792487713036303986446486217775641707410797868591875466475119305891094179956224340528289880570267778425276713811634821461828474490604493256772755611228545473225145558339516575961696055852750838107537070717461435658757674786130953778011213129644127840871809885496401471587410195133916172339298595579057431513042865970242044401000736708363674778221360744716515615673069221392263995284579277057588879641717468022919254824622006915581735248769915347008070573690147635536493599815914852820460866894397321688154236785989971061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25897762680895772983413780436167125534516327275721341070065770562380878100700897764614677010481642066153818720156635811709406871611352433417806299964482317408599588761347769616668624817713634314314162376068811678637888095838730954657271638381751052764132434441043002460588199421235768266156481356972066139390375245078899001555584895033057606043024432316664859232069859543947385863298802872271769941434711941717347470895210461787974099615247012558039958688490248267425430439960434484126645998601781108267059537159052941969341696596716014845741788845552426317984618226854999514315658230154753248491622777765528448206229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22278340658056458123745837601688869794468954950759738531266354265615772185842494211093786215167324182705436339798663885304954441796455096627516877985327480176485559124825103060739237421232507187590858585308682362925599918842461277240248057839579830447394237250835869177459872446428963924228500621689593919238729498049996551103711211393721586493035046314691558368290351735347502721961351207662584749785860034456883698936266748025305032885042785267845945407304565047049008543457133963529236008766137671665271818786516473522013571659862236796457479901207276095151190014206068585553307876587446353768217315076986117892469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21052757028318976072139403834398579194255048744893709679986769392832280939105900160084319752256000388768068531200098037835101576540334421129864751810315002583066503016870322265102516318411581608499816137275905066401709376233820224609698583150829185706775772911211964273667972240112832022772985887767848880131002646647893516789032284272706325148511972745260159882798747622501263286745466754731082398192307608430468903633339034757461504681207900371580602087629043710778038356842235274982277819006199549862119188946632433354046828132771158052224886590375963709457350674632042068632803723387167313801252146768439738058017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26518635495261870072355772994773721069731751849017833161579927243560465603782843130866755685328607181072516694520222265581404541740377091214369955032482085014871665883284769608226990076583469447646522359664425970945552702817965786798726921985795512891392968968191013467594165902962213682116389347950217074407596280179406788355175154096798791260202192980666003132707786673786055059892031711471543056447425208848061621785347463634386870921690657250709655008224832525882511801291485219841704417437833018078217052502463964401177216709177578698636192978554709797670777286760620419388495296474501015313546242450001357587271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21879237893312649045683274210098942626702871282543788432073505194999629898486538705082457902903200138891493044340360161753316652810928171687678652475728047099067117470408271423551733738690461517055093852352826620131959191605611429738769148721864706608446496924493275136079691690826493123910968820382186780143947191013969706089557239326175661352311868181877241030533127718263060782879871404394068207530339426681424955393214143089609589205130937859126411576002529221200206399273926800832953134270773331611924096560928228923249629658299978014326910354701253096327680735891359308383336617545331809428611819042474173969559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27158482393834806955703640827222552036325759351857988078681761088550963407557182560067782166267476395334568358904259465075037085379398467520810033951749412036192835259417248800030652075486051063136316132877258827424477504594195120820365415094125129139039115990278483868970601308339595725260086740729079810860677626156009120089769748755443576490393497654963739615591585796928702154677040686245559384011706876867905513304670454276144185115676842583291755298320632084183970551464235285923407995492959128759039030783205001212143015110083605113288072334722581283225088310333036203083578020900242654271711801163077770690961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26789300938215749512522810767931196632681654037337001680316614380774546882371146829987849924296560989840329244275144008334264086379926361495569797505051968602314905018400944243235683141353800984120067147011529457670346099104516886020083586446931304267153735038213705256202512804235950884328076984903041028449632612779365236866173577479001842559944659676043120906850503244973434072568658218633813774588817568680534857472829698593682592457262038309999777954766832795423021215184163104315368204625615641892988046543151357562740395733070149766749361730353129814103896245845083484932679814521739059389504252940772284433187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18775756984099198937137398827042249909207411428759100403859580970452658971781047679284628597820727871998838977809875419424276775288591178230656157420330115769669872524606334136323703907950744806621838457015231988063154454379284891910657484771928454713016000528606793912396132093927628513972823033357392554202449501222484551795693212784492325050639547716256730936196651179603267078792319293145292399756063159681853987622276346553765468212598329506840090500160289633212121697942322838835933412019234922596775761874712335154420852973924981368042021130367250546024346044998179043299856353455517366727360536817611846663729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24003258576394780613979782594956615137959992686288899490835671529476725992558974621800801587880659349682206046670262759744027465711569006238835690672679788544620874340474594503689784800580475164584965347508922905612183711711529688156499638084494731388818502769288038138987460013604289919260079296541219594769728343453810977797472660567016467887611784472706972611313951143342292898149658238678139161255982908913525114334371350735925932630091141856280374056465446641674767133858578999966166066414744216077376436348682792596480263112924170543039675686353144688223098817888138862668477145059022881657226986892480749042391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19790531144545635351508098237926653989014321136498078487115577266373447938369817252408588764836506921621724145652692270255938385198536032528786148537476135446150335872304909474261145953523084278350559791019950482596906934443979095267983469055757263243288503099654253429042989448952099769605947681669587301098295855062336749876225692407948259350268403958756578934276469602070020385436369514823125153494659086506251366349717712089978587948773674441611022267237124347220130341688772235438253064592644234000280184828255104762450263714986730207755959079278811081718603560502596634784431520693879401094550613449869266745531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24825955747652233393115947222786514946825842541591273284402411200830741873058145536632225392990279050113999260480248647412467977009856896454857657353295121484893696189414213946186013923684066906398550796017674874340471929148262580261118797213536475742735582214818664097023098358816267077565574767308637448698139141369410010172256433244621012907993971572235682812551295663639381904156853129921092927175304058827927710464287279941126793341560134664902113539295851947855892527947181571052209505772464801493370973144351905463803540175662906517082081528282368709629319792741279183863915475871392202105977991211374500140601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23752627595664205753340849692456449915765264824306269345117479271378954020792433353204111676511626549377800008828580702947710895464855000878610349617191434475950244094153724329714375645721829070224965701995524929838259663752558638308009100408461235110183394190571723246010511888084963903072994731953463670210453855144813673666395489640601902087864111539582005025713418837041834405619215363305335441332894827681970428184157153466807844666747799136119377775047980657409424561572572420297218076763982577007497464656560293068431829281002805838328366119813539813654943999643164644340572543862450008272705428873721210236897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22875708649841408550400019005904440602400501572525132657581919482419677695687279450011792529445320735356672272742857776862728172879001991389481280557464461268572532845169350664930308569241853499406008508912803845657883674763211966207472961484565630382430766821871227401847865350260331144752764427564543022533459424782654585614401896340122342068526750285158842871915031334619454177204554761673488823562528353970077615134452891143184706309613252301401263550574857816471884093326197902639920938797592189372206734063690213973863661825223157420772667169028806644756858629846630042848721006246801861548189360011989456179831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24246315734168200263670233970174752643719625483393742495391558462190680062807229755384566123458944539629124549502331978909967392780242673981151414741821127794535981351761873495824671451688369981153988784959339094027475343424505944654970751152837964163611800801536408024091833923810428333652522231299590194586056580213991349399418560372488231007724752455753562571517958611723620294473344928646909786413855126319550258956939146281487993028971525263269326637766954332914266463160338631512590147033855800393381062698990612693966682446043732760967972216716232226879660097216678142802007025427760156336617523502445543543913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26304256650334064366003257766817382690235429750894763599724673785324910340327012396384596343373359330432073383695336333382501485048913665696929111695440337094331714845656329789749704679970490560466345768937797939330978549960491885835741755211440951455019029495395853235102959121431769876953467977067215739826958325946177371440181123410755623802756648771207721774699230302092264599150330753936731562382607399372913100284752336207838004368892369862519790506457992827645095178483392153126157022096903325702934291764863251029370791494666194130577492355470731733729324304636511196067869349073857998273182429523521297371663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24588933496074600871636233080697576763511156134009355149594199605048068973645571769108843154831353188599691332394628073613598152817529544860626827809458451361231946289889315853050224430023035693142582304143445673470987874913482878958935586130811080504770015595024442123148061409937136158423129561390512493790001228062532377324697802595661965717180055280937597447266843939997268213886125894399391760206435159929857866854538223998198778144592746179769353317866225219908364197553151203928838129033928838610564653934278602042655849636975275486905167100745122319611888074465515313451287140172353259237687166330620003400473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23960971118031448815454621197983288934967907547413150868385667984796656143047842337598445865514188789517503950128108800495255247204049060360231119807287382094720238746512571089825540352993222987085221308431761008847838703640089700858004519186039121455992081635379666205909266422900437978188843055007435913562743547685176613640503284940805827330469285204029044237220780665725092284865904586692978771846402606497632998947757725286551565687742539111936527583094629603217272068285048990383442359662952698103659376836928133401113945602741766101069238318060926207234540172472206077391372497446235439293317928651523377632481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23602495926971621533258213447773810533754165951671411779876485306629840750978490023885377235815360944422746231942864162119210019606564967380387713852872232935877712709717100326549290696652063826811722376275203278617304440114035209943663345920414084113774284753211678909755090710379764321969621712517279388344746700258855211849891642139892772548448928007255652936675941448986543218713819820322794383668396344521829483411418548441768392027649200430015819966596873937812182373022140977775785922781455769844110566311899366244872075798110105626958622419403788479720752685454037469636121462471546562755198447258523778071233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22193888119840452891203087085925086836276260872460191271442220867890670102966837570079990196728721219297612865687637925867552043940020676075743035340909341427281581979715229468084028864827948129250635133428042067975805975445332348550850037988481182663116028554876783210479517979916458646602083640696745746141157199469152299926573842092190198228568450743393995903499088095754382381072480316478202617828700076921559809950677474541004405237839838516381311097159919510026081934231881549277871811011055208854496059802950517234992077875546991998787599289635654374461296786415008495433652427895708023133815242029894217454397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25700073388477856789112383161484482286285492899635654798704329086125991077628487893168981115670350773733207222955077164374087203167459839006875651042303515512546378674438914674406302590144134296287621711840588018813101608786937491761533265377415814647630930089854607447475746200798093220892753914447058775910088974005093579215562166307947489119850590073771523709372700336530563642377015130398247486815512442749338671008006756297244005479968437405402706592505060311479926083701505136891368089428357501677051241497574788924576231729865458714483705458682868440624217658403403778971740097454206264572775104598835314454991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = State Enterprise REGISTRU, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18868344404923577807790970313718518553508697369262169136247974226338798833936388153992840668820486512847215162135280134416943428289438586700290206035949637758886308849272993254764674824088687365982165780640589037768608199325227933611180489406275667709997901170526776202930162849580549710435603196248137271237396154756120301726780642442534358000333053656758499229924530667143342433227972697038991045469559726877609853800221559608491773376955607634951737395118166829818180026191382816828402869259171485066852628080826151478390292380394222055177684313712316180379821266927578495865664317838385827621449755991297053413319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29411250153696216836648866278088348605395534085429612253410662485782977430131419059311349233415433775702215504871969869673879774069463830922729873713674513455950105118937592695431472044978384212400516798706001061687129056564655790473234841958087601981898183819638442244222905570998453736554485074142466148975292936626064950519519439846082075115648230199248932186329057375463980660642718278128409223481148658402920109677750361257054418708359052954765661453117532872777116231087439811631631777623423967883854200444630045207475041902657524985124082316396590451432873124889948132021343147657881903853825649293175769718487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23016184938435740033535689400383157247099106209773008479545407453142029703939506912093500265360880491832549403560600475174330594272801649127512352279431948591028070846881460614896064529647977393626527530867955123925430933836343013269996808434569831346070542043797049161334527268814880901178533228790219952404177784186127648995229891308328099569727137046291270972067497829640830630877158939963116932034749629072855697501218945572919899027385267543252089135849336599362872643761362159321898921051461947556101436725253106934333599324333416307984187528906812419360037855021460180232230797558260671509288106817022993006563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26949483727682530117862409710657705851432301077070236426432658882991571432611991464629891480980274081768707343749158082096135408198600790283253386375392178436797056907821126083560336321209652363446390547154737656893962266898229047892579578588127919196207776181611632560606635620872645224485339429849517743892499820890803990569376987726984233069014112944888207020374070929431399784346861470032721730907267506443712585331236742875692701364442510547651729169822288207179725626325651641151694615226622321100596941154182306464268178803954236351959186989939963248020696861322219288982394963743912658751153764862141195179203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25248385433511724614447494630119493121684233011509866382597744283040139031686735191626885039325812358280094263432847772615567977073419836428782637141937714090666281063242812556963298420224368837717285240133859872818663590915530188860964180685437982907316587959540448492187026105469396530144995936948671393813757678146175972719523868258349762959278095297121186650813874372024363877184412187000116700037829686945800779153766658539252712430125212046768843618944541571076298392916394569964172777174767544790443324849545661293452289798305329526568293103113418152597044531613390122800660916236059703955260195457751064985521", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23638713254064046992245142052806635669000682220083913552012287638321244073000310737269794948459506241346958850080508342626916705877817003851686892721938283354767038737835950669732810129792088433182672085610116215537419532383347177278411014996291409003877644599381465591557816327401793705129781687444542117534833791408602949863053230293396793459999647446278323262439362882964342610642025443920427697342459048317922247682550290803356479375788919064244200939844445802796268092073467153683163845143184546584186057021939245992874021141956855338682240574103392923889097410089366795019234552547668396635674873277760741695093", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21734177854444263379477635991748804372219364766775012978092494426342052367887498817415524629262466889849394277068842619098103374664880271658423938956467611700023484517336592486510754409987378981405554410346930950738829552593561729131971948820314080244166331064975160479988571152132521912696882186299450614574687748850684587533810616510005374056498211487698188856416504030954675194895142278507258192698317828298667693069902106733144547702433946290434115420263618495115913705706686919300519883598761520261079102185278972872228704108021670778012579358517398964599812701229190538965922720514806617939989366034068707649389", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "18781444280892104141551323186263273547128997395462343153174120274555791481231866120374700015068235905823044924701955627754415482343674020884151971838766449647251834353281888049964212268025269896911723195341983319598179131187422836375513938381842050200733975970408457084703084372384911005692751959446671210179021619645668293190535158672108146406586168203600689898643982206530050993020836756130135736946438320074892770046733326516880169502306925235920890342842490105859243709968655494134140206133497178183223168475570390617074254546480578537292742453801051220984719255430669244424461877609190228777468050428512218925391", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24806326731703509396266546465581103731765177315441254012766028162784989124342454255138078184061210850718387349552000379831511683250956741194140968268359556049347287765311368556160850677349883239277072995780878784399818973218800804994767541349166749126658185053113143735116604804110426383787307496562721998691287637662378912733306211193906020920056478772762740515258686779121254341021836250916795084964009943974104829635042323415065566633959514604081951717549400190450163864000571826410236082566628208400472506612594264096918610702406385626070464684438548709404432618025987325584383303767064493973109924036327967088939", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23637045094544948766393643204707519600415853599256951225643997591730342177073362013215419190305061592529089889103002057033160166385710052930285764658407814605643509570680107466101776716215343464381288435564748423791345851476056269976514074732929638559635985545981860618192340177299774352489871915092833008664921486656324490291472116443235788972201613442108630126518913079083259881011752631916707520551741751740996304868925258518398105892987276500589715923246891454893672176316460802527546570566884008197074393629009901285827509184740415928189233078393272128874155526429343332012489356435800066621814644122855304585447", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30643510460996665719536413135923491200124245109797354786550434396827876951961997738515280154952381765004857844837472317896024677721239009160229788626960477902293399689484478264831530628315557788733423875942708193137132390660475649396235712950000077409840600821659758989001975893753583908267233253605371018867519446162166652651360462809462728291407586358485415875666995364705699144407645254725249410031878432495791652443117820558802762242770034360388976797258666745620841366740246813939683459789705896653716682150576686170318489542441800233840518983388533135290714625708992210896705406153283394743781925846907012016479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26698132566235264368245194302395732988352384079280376513302955205830053995446130704298799567165505484504205085733195811005577646333685532582353973701792476753769215941054038535743873426757349633993073140386673201232427879330607876578445426894987531069137309754471411794104231054913690950164383770002962051449080228997941209878847684836024851353145925487680804763045264703868153639862333240568558090508148774358761603437604402198385058350839195867609353973124173436764811055398503131171239723044481092617441510199996127194235237740454778399283679035846075652165178051984779119522342441133849363118697258762948286799339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27011738412507263058945367581030291983093318025233409229287404056370994446483015875886938523226397538412372852065412413571782669490070850492152272621935271075007231858976176562780338948765015703368425943385915107639037270812315900292452556798306243430967988508506320127734808303257876483363485790549268051521936463401941371269909250120076897141311295148408169920692680215200503390315308644413584514785126078955055620325819391552083876214063511956900567210717490719497630978499315715087943649581103581582645902925739298994844357883129368013247306043940609846750748814434306741943640924589515660255495096744030060850109", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29041898252600434352501219526820831065381147225809526833532827817702819831387390654353172397097035609669490216000897602703163434316630068479869881456280115395565867254248236591497273087591887737736391304747111016851840637959991756924911754814625665260285087401753878116626067469249717334423404542801870831952670060908016804454638347579314962276032571731078226620690538767464818320577220442971084619365929890348451367726891055402972744549684199607245283211746239400408965089594667403690492271426006136465405648006057006976450462447348895951407903030681146660737522590798515011020832226546428773175462714354821777829493", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22358511472909252588973730337793374", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21887352859238609826026524012067981", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25830480995372991529355088683429826", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22995957640304202177958784237728093", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23998464588672459122126382904563779", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25401652695516227404490265970871657", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24031886474493818966832156938082043", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24129199548254580315716232911492192", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21991469484925376423282092150716311", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22788678423831645517211042629196388", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21405331848291417129138229275390434", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25704575819832496682419638476691583", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22472155443977708918495078229494164", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21759438517857366868285538989772370", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23886914122046183958203485523603946", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21939672284543547231223487468422109", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21964511615650494195786392942948084", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21694871827499668208303440166694765", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25183848554840483367138378775417755", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21884241265884335395432066514468331", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24749566971647276144017979179679225", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23676675099866300712690226745075787", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24201770245506239949370925390862566", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21264170695138349158365609927993126", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23575840787328409536390353122396434", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22238817770259714536763201773403014", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25939717190790350961774907809089962", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24448616260766765737174357007104132", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20856113558296502050856296569549492", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24240675159100644633812168532790252", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21607791007736235395707562638792920", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25735492659189577747755206898280309", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20944824493064274873746191562316260", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22874250019087345635385586778071407", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23414877331794061822727716321231356", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21001265093617916232956371889589309", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22423302273225463574342978836623996", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22997468629639010075103648118831494", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25563442921446803282509722615446703", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24104094186500071758601937218206184", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22296285023696548687359490946875548", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22621668444115178803206056049723666", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23399483252668620548685745018789516", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24153302788261941286029368436915926", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22438336944921517521801070152274773", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21800931764488805186876380486406078", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25443028122291692088559563349685754", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25396820032856310739360884597047383", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22969724487357770524240544009926165", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25532184104674547874116758564165032", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17958566362618587768380231412432285211757179476552455493501664706886948790810437308590325171690259319559929926661661088575010230226382708291048693781035828006351414895846638139935350935415519724841787114513259376068306099453367503241526745749837739700211177894399408657011439950292906206824528118621936626855782425314225839624631660692116141922001878555838350591005137602256944299217996437258070595925351573369846506534763359318297660490934144940204702773587766875781470627674411362444713372881926328325437598798130267880129283518810396152519776969688166277240845056731775553826599315198271770744276291964873116116781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "17499719778294634725925478849988225045984656411129516758001893074454889906544359273276437111361946705939230171625240360328582931944055466031363137307060749600906993286859904759975018577069870208953779336026100836686150036507813236079170351388016861548681806605520573142309530897032091694505686479554340724036789193583369343567384765991071584128692813329375964800902997616536050803089806702344568229048598453583587895130853550405354334231662177161689996997700332409202442555001061286186765550929600917428306801039773897097579570177130733995818284556659939801533946620161629805319045890899183862893144491696178624539053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "OU = SMST, O = GOV, C = TM, CN = CSCA-Turkmenistan", + "modulus": "18424422463456177501682288403909405076689408191182398244990506868007154481585685539269110882099646746637444977400983935365999763347048130862552376273516648369149142735409771290957330034373405754746708052881607750916114334956080254073246758569263390173238338836832688773272587897889290220912899290255320170467324066206628377392985160602669013352137400448366271525391278576011446395010476373945466015243424904238804293850439662597534908929593708640380748713355181744065240531667005259070195580838079449086822494959113968342348981804928128878209027256822620042153355616136308682193898815974737371485799251276905311770089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24271091794743765328217738343585929902029547982713075516499229955014681757819307209700136659565803754678744645467689655372465248124276120560853445548357873923566396218083711842516181071226564817342356879150974267512401183405892755593249296906045673196734507587026373716889485414269552470485608207416565887801527832088278832048486915025875704887051777150257848354544588132750506437258986905697663987690362057355089001003024679315010383659591241729768049089259326358857210866149141985067907485563444649740764932022948421187792321386070891531613874706048650098776762655351528081314370828889988277709516960456339009889549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24543911783429929889534157562072058847255076800793198797798445324859350956384819515402161939096097865838379482479148365993745733738660933038156915096564209838401508335949649258843096986155303951561025189304370975110887855644337029709830372050225812809765467272246082797045132151528758923735083587978515236498330158361953078685932416150342985463005354244310041624457739327718516932771958859187506019182433715676305628594233548871968647299967670633233582393522078582530955836472603783575021929268072707752489053816647379119801359560232378228616398908871610500462616231806693805797042019987903911452173997640221486908717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26870063918605251628365361738760481113829980084364531072300181234951330779811181634361003421702785507474556782227293353653554865957394609133311603540344618009020104912519057977186179185188413784405737478026936151784375117182420374728243928826004393216815206804342771991468279149863273043145206599090740271916513775861228291663050771118280475714362985427804021365368330251188664054913529872794444224757078758188876816856074597482498548592274240986131014800832677458713273982975285251607432073808459145299100761882309527279644830798558203796203247646976557284203504864627217279716635459562509629357607008347904300646093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26975590183247337047274847096031477217591498031326750572692743760929336545703710243637620543005994217139415573294286272550342894423983273941904653194757583010550800521757860838637685787759694478197974807682126425421804279018359699681799762241890405717189355439105012370653106788750592848271096949470117935717040439748019855363347783917961770491553870505704754431365624666273818836885779200666780146596071891235032168972641286011710112854299308093635502318885318448447043380387594147484218076520925041982709344237301247210917324877474553035901864767387211168762211173902149980657109518297786117619002006305689246256419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "22286961922101238460128340385347972150248968653687208216693513019720788839747926763179478782524805716417536282399102265553486199234916930503508611456012946985005191337867921707198145924424132325627962866010775509916391901792095388240064006003828849908660953828697704568804414675241876858144946313777262904473082281193313930285685298349641177297621937817366694667301118688053130620502418836659438455893834038172154821729667392786961562895875471467452837686911698770480031606615222436345217718736482974676127014735046330752404690525392239650678439063266064701148110144844569431852244521161725848475734899006152405894293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "23835071972160720871492279822589153807227790749628280420337200133988262899109439655415442023981976376436602050809740516885734071770980276873263920956693376123545406769264111510181509202719159100513218872244152687775604601409428637535389661426121584927178445649289869943598793985868454199380319492118790457932329952991504106868832713881203223100777978885437975434981671639574181001342754654158554958671145522870786746873825004003102024781111186256428542165895773680793886631350984120601882512271681939797909288313464760720377202667241933930344226666334894595489968528102592172804257930804371144675699473742587046515827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "20478091903548692058831425406445766638048295643592530517778678785807320872992222190214828177233141736505725897032409076155799494134050799106098765592984996767542147163748683824440050776483354450749862368460888679321695399960044639122064668631345011494104399631157056645162071115477182494595467028351888100175648914740355973285432955966802972445464855570008758321596907323116233226101914780994120254244993093764852608967869219680165024887698522209562032642056064874063053345848058624405156371729208617437242220088330494861579729147672837425633542484670442920534260805237335120763872672221680445945706882375693828953781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26822799266369839243113324634641224326821659555585865841471408524297688303567317829443442670977571660764287837045330718322860984429392674105187835184830013880418347872655723141706197451326409131909226078906025536241379839174908448719701252423441610147873123250304236407170695351910803130047161790850140659982111835760657852218986778595060752327182989823979467379910799543973396376528613288036686824144371602754904040040792044139223321719295061616544256602081203680305129348824596839841655472888283500747443153958164540141548054200221413421239364561247889422995660735836959605298519054606871817837612392646102103861379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "22741954561460625030729046606011568875323531770801757441717534270349687151974594387171649498707704653572968265318017086369055228385198833015414309779416703091543804106337824479673062609159731085532390959858289519958756499831463998231926826620542335310776994334420340440011590290607375648444521607148958267577709889026498109763870481706419038037094526214920987866225851049870489591735963033311605012366597999378625456080772162817252930217522873991980323897608931099553290103828691065562006204718815968064854413761195904323773467949175360001096932442172771214776102051628685921306642234088980541635723318339579584176321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "30457037997319616922058318433643118289074112611282983763475155888051013405763493809480987339185954848801306218852612816821060719205020619098288066884563446600137227235817017606726875961174200150176379733721612535599995172301135168216990265212051681418022272607638567020046331930580004580429179300985768722752552486628105026982044872154891034643558803955634932457424265923975194726710826869202545208742012715791180187379133406061848261855209290999314902208215092668562324297950679567699587873423353842195047506327992203695005420514378725025849464430156926778816245688355783224266248064550273207677764282709331224274329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA, O = Rikspolisstyrelsen, C = SE", + "modulus": "20915731474491435044766543174334562910147738989411003315005002654433762747307780398444162654938538187214280801997988840908326182679748031472634156916782789643453722474939361982785034315838650593290831280471847130768722619296278351927090622032244437619090379229378821492879092258093409182642505865604172098211934969761623909402543713409939598256030540705109286500261387237032821205752201944784294488468054077757510122773459790037000538813174757740316879815067095774973072205436930735212443585553924177307518431380599583342919847972125076302153068230448784365985621285943572678540593837280631068596378700453260663824357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "26093378578725147119934215103451385257171484076659674246126468647086788991543334333195826974205339579759196937626115494654530599989259814032914195846316013367418802437564598567667841974934266344541158081318812811866215559938973843660649911257878977450204533392851742500960857141143051958605547107100464521787633218807303349858145972371766513254656288848507821151830966509966819649583762735024835034374271006453068285612217012038892129656718191903949128531044573571118851929623206427048050212947495003089595686635119970341948401093378454558260919678770033647929929785166143928743965925818495987415887395997067260480003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "30762536762090116334947199190940003119470107757271270352536843747731873253032796449323536485743325412582498780152720141857618399526809437219460425032087229509943792941293759641972130434802230808586179905222305997194211448874276047732781168583933457257365028277387560573292172172235809938608536086017758641516903198918264338233045582371049148658390410450764973469528619039053814365128081250032122611367255951663616854119032822594111895183380898492703539768165926154080871892602535326829840217653862559758106261818010268405667295075397544911463355773943419121376943919048832806769723696350243789782884669753209584401829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "27461646318189713580753419663146178433655337023753543196821583894261839174053527381503719625418373664611488442984987948366789678424033168965041823403033911671859945309743960446294671485756331347596186086077219956726063159583620975754645876655983950150237815833089266037427962574375010141687847167145110875031268493297467043756939320784380362561572427937085537532055528949584635489537937887199330604287687133805129007534634689846985991017309085195791639300693030966663135871267277084667132585742886503377257336504819733419918020914447604607489805393832863984554931701822705171622966458028236458809486057155148005743373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19636927088833612215432634560622050401646002077027264109951396909165169951511993833106323010630304507945413336086837499960342127985538231901636604995858265304065109907413391217243862966172701626158479978304747293749067085726591817454280870361674169568271030627895591865140481902522248633856215877504973677781460679922165862294651045352933791996778184333461138957569265474337733276262238456053974431837172252628166914208658148022680720066977951248246507035677752547965360017318928896650119773040775330976390301909748876922898906181688561326226972432702775668294678647177881272030247805009687102538650624305595726782843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23184225054079720715649855198106483746264069766779540952840908329761945551908714199930935889029291909107252496981991517725836981045242300179649442391889188329218097369684427610322889842692055329080684893834598349237636430541497250717633636923085012899240036429299453714515574646035801901875213020829751735594115205558966765973036180758987933062972456016523773038640758053603684106407629883517554606840528230960858632324999825417333775061933491086516394201915530006922748117015594300466137822809786351298122292561954704186444062862034485956106018837468655389782963841782051433697062368301370919948276482477509870676047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25304515129608746305565289390146632977587029713662148940138029517037900115218702173301573033278573466699854734558347774287659330868216722741285104401033848466589905108651849457448378370444731804936859639347935485534922104471635589544677799520580494361465730920855003485254780274581256204388025038637211360908117559322886904574513835804189854951212484156449887031250499313016211243739374345536618945753337609991680886807718811276350132953256660421456083771745817751728418296595867605783817112594360273642054396431296843813319375169392577987070985975988423446049228392323612611160069535228657772839677100902016045921949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25320088710190143252568435655341682764209381404565737122046621755201901867584044050872706063477040493910230679619551368790080746296928026733516835541575546985643510021787809625067204879352162567510076643554617950509647019549152632460929547472170245577766127995761249030648922562120112256586674665090195602984715626407843779172434264524696846577544259617246087202718936017716974252998612960937822330847765247003284020598260373799601762257533063956120008576224608956684369691968209479449372276542986175638365857939933554842520572369423978546370600628090011944711461226010583663959014504946101880557671447285742696557241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18822546559320612050814698969386958657667211386605435591276065724163909038248512073986644050235776201354362947049989672375235088644206789024803922101987085043659969338788845785430568473904743493497555612662944430089804224042477158869881862768959532222992849540762159820559160603488621861842688637795160490250846820810851468454719185263503477428122164698250739685679070176742634598553523252271407238643896139395650740302726674727054491154338522289536805102575424679444261054326450685961830318290724742648404891423162632302862346559918865303953084958839555891274070216080040404766607672637827715034114430437264183952673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23571189650215210854423478363944955695336922265027545198731256066530831634486149280991440162854084002182705438260755567785779593707319857387220306575483399276001820363782357518781480426149934643840233766214609432571867184676244469333723752987565668321584922084887817844336843140037738721026430564199266787473864717730231202611232989331073316304060144590171375092991633448181468342012705963554995780422932619045978048671910001174319519218029820931331708087628260763360908163979756657088504131666436945430851452013573589157598864091628030723820669161855920874663721033464917334158143072613624213224585558119424818119587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23265794384363138609887797632998023931416286492073496044984505161840800511952310349381095053524507644993650763952672242388147123144917662073134387363375303502328079533401221089381091245190644156964363297132738575025042822949476805179681259101501297662571621077849625559209065213543791544794786942170329701184220210745121454064710503856738697355969552359263010209949370464717575760709821953069409993323308817515575380746452988244504325986309600285231035224010054957149793832666037785817236377595858206233441642008223105781957390169071752736202140990510292731416146964564528888161313512767516093518276225390148647225967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21243844370863467117854818375987667011722882458459722127187546044118606328549441550489406267950044798244840636252438153829462281202231405234262410938303871752760786371974232619688860014536170546761930007013255429987625111561801484755133188788643264328514547902387445821981555762641904461116144063305220734505456826467863009205451877022738779857068851392252025810299662865621144123944759563964011546490991490376110073208486940438168941426763103682469151861103969191310470987688765791599008755861184778622302120153059510890484812732837793833386706848753424079994254408208809777278962268406028664708134919369292654362131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327354844031934614755175040074533225850291153289114025780977686927312973007074828222446733893305103008103530822743304830064441810510445488809077545291536169169224650074768344331204829949085391399916153015781952572414851643719185756710914105798971848415598764308541639508901203559421799370606323563286728560684288017185682208611642213110553179345413284542325390848348222915190427829426619276901222804659906616188922701510750832869979642671125455222225691689307973963167605343915618978122920089548595029296655640023993329811383987471684012570692581131132417333252752520006428488609546024685621125723174366733297909033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26895473568348267556546655174715572128752272709125861932443587199506929196117061175434016870210495205152913659544981258557681566530260118160829231190323394293783502372564055046154416183322365036263672701934920241447268529033984280272293390809466822457079894688339487566554958084340591368005222808462736801382014160380904344671686876544617394120744067380994318725306978323810511471444795510122448209371244051181899502537466001412912997676967985529568817085017462390113469933935787908926559713050302307096164047727843142320112574171258819445535939769867763195635640467282639403752303660157033596411773105955445839707173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23093747859614719888990759678873361508720698246576252193487980296694231287073623902365167935373861086605019717785987506763960673193182373250999032535940787111031387966247564563426413134376356033165335525078411133598910896490088367914244519989808585221065505912944237032084509770866818019329811757840510573318853727496964816016712785434085580375374107951906071489798386081515677652638419020862983461902160032394966259942248339802857544287990388858600432161735725753737512302813613740127249940572347550240404896076961431258745128099429040235552023077982289083735755204978752106144760884226724877098434033842597568108133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18882205000681537511906854452557923963725593609175324985122850090370129231148051296273259909189458264768998075295062970491824432102883675545533223857397831729301144761278606588361622728392183096836044189290331421958608761336714958838573813140834897962652465678039920771534078080353561757565561921859369861916191663769404444034731556211361723912426053321170458468682873118101556470666888067785117303841525855635820411233137305428812379463438795164213086628330110916724450301271154347475724127942083617797103426373577185959781787067786754152773326219177446518243437091607245288410408125455658021459287119224127421512763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361466134169509587239492376390880985824738107659140051166612865899648197614022818315942335850568870407132532522260462902916724508227058622916816429406025306122483146174444330267066711090856599526345118000005612420084914776551545965788726928845825331579996873623696960282580727939407735892721676366454270750349375670878716578060017162984289673318158973682326750397858778228852954356802887471862136373158667160164453395852417924545665716007828802771089660555901554537808373170152202454091224910644682128586399243227727513990009374324419233221128241149274439861528367147510988098738028852504395663196226332912582706187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18886478931939374653545782322407030288676269948389090732145174609386107923201077134017108564104712515255701675806507523721789079510860654540518262152623143166840085865296892288797401081952555075000440486470872868945698046544566406277696463044832490758480104283764538649082561717300319057073145648062539914268745957545582476161807028786151396899599378447122163253085767930374098076331236018288038482120287503092582716554461126234461340121163046810461236957186960675030937259302947718673244648733724454385109388818231523331723778240388135830987396486654930922881462789962896534438707051529116418857548041068547720556479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16224452222127875932779088475517240283517285034652763239524249574856265860291810574314346158434842047942230321521390930345570112529536418348155084753926340738515636815292351070760991406001804282189704117330868526287620038333510583383136636480855888802528298630755254845097572024888052433487217901171423231865649073213053405175551793213255179003604383555466113857620190916161480092914788310312780137316141851712289219717090494658737963061923440068083567205113085354357624943783012960486103800958615715828852397417819417314895669591993100788765248926369202813547562857561134903785334934454879463953814712810682628045953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24289298283302094946522705655409918809137234268310577651627613285185605057914271266901788196332127675176271924962870889070223959419488026537586305801619630576447695368768556498536288240974686834519742311604161582867321963328291696608419362760213907904983442515366219538801944298834977245940587361951958999908492767611507477708614527915939079715860847527740100657344782380997379541614752777748603092563987298605782836375512922303298643851175401256299699061330090793462505155277192260397224391316558991894349285545375756194978173720742683626974008593714958658261286034691679794711332300873774454313248247528884679125987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20420392190129557293903763616855321868441697596426101633403427871493319890035075263636891114991454946841580129882553557062798017727853511632666608310414618292554672306079429794900710880983533853200136771771167624679258617890596659123588505889700723757403650291962294552451142354317027881148953436580180092740481891658691290126338673438885132214648465385956000175829018009259397062324010480101544604812977556914894649575402148176643358807614190242991969869513081000801266108835284737471545419343779951006026725330725924233349559771164273020606691713240153589954911435216964456427670895556393538307402779464243562310283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29474430922520154300577301160503326718032482382507147898299780854393438791983243849331627458359584450172977995659937782919910839279361708086883415937462800205399381797853626907336528840942983600234529485125080995089397053583812121358602541743758205610998321892453389879310632572312687922447120319171194378927926903442823325415818498536904559082265034990591762510113881510624863035362770747104442792447402910314759312568962969891056851257602902901881642849571139904475276521035408167861900606541668980581983939122648844492851543964221422431700656993863210798099979436749720920926311428303716136994840570313779002237547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18732418738800760650353031965717718099379438821427096566125913545235145753015108396470286695884778467638715263572092566187912861710157784862596265720988178775363198351738333690106983181756921423141651494313631369570936624003470814624834492549245287838574730791339632885330323666602649667081920989594317943942419141944763568003534327218300941699442772274730150483374563868896290247568833507901355505430779700667233603164660639419301510071052821130854304538454890947203559255921554575583301081521169067045985579810627437012244665633361222715200971952741350282101138921832856707819670032699121882950849478479653236476799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319754094456939463727130276326751145658028584660076438001174385278541342271567262166649840473550133594510053292774139936484394159563969349123684697776555297902251557934754240089725399700279352720247164362810629804593852547299796143383171563815593343802990463666074004213226079216464901950836390132192905581511214225471188865255305079743068492489861045228264389547570991802566418009709407850557208285947699571732485985139680606588649122999853175068332627436840989540821080200165095873062370476715218512517277765777045712272598427096113086054597557019694679104250377774527584173388864947383407030437091060324734002007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21128496957070251719481779535922873399415463898830421067406179455302011343748862311087415818752072277872066886158243946832804035509265894687843380981687021461830970746694552814491791043601693747582928462586319698565854838089209675193541128960645666673400340004339200942632064512080538972363534755631685744509004796081148426351745421130227678465223836951523058705263979065092285553064528766191664419590141619276873339358315126651535231050761032801707852314059697284966088630576671056558532554603311737901417240852408236056448418603084164943323039552752969352354962564037879512412458289960138730508251174427596391327601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25153017265378624723557115543875679209859013441530382749905443048271780042867633813046765445687873657311572316912418306195109733231355043938219483782015567912775883088475492635257998904745686778540197512017746080183877272511309927558481371946838713992341378635230651965141150173207927733158466653906431507802140547914089412457011691855203675850646118945059617592198860658238205421194669383227112644811597859836747349306118964516562980857893224620814097003852867616082963346691468700592515860512926978080098133083882261801038448394163721942918016796972921384276605205332364897416982679353995731206243666730620685322989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20532347144341213216855110214723203682402124571977614831589505555401703434614695476019176536871946140388304415349060908708458151130387894843002103321409116229503520463272999618275514523941609730977949156625782541182694696849606668939159570275178504037841452334003458445240038499350461024757263028429485291366536465905711488066458433011112406223332369079276926121179366538729096973991112931676316276903448275917920280140366383245271876749397140444237463094574820944401655056099052858016584294798597223205580772952640125322467836493129875524607710654165784768705473563304520236462611820354909529563028579768601816728783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20837775465099465239295994763388620774078044196907385201563815632332761940686467145068505206708052082284101727031847869069533564341616818942756049741114794809814390203868061765951864539929048676991812717707898711441046793790186442696882571878655774264569405087567124442532494768987549813295407016107411266416002613430600186877838120917127298470340238182986277304797313369707397808223502731588846370006462045692562846539229109967652624489187368389563270127013570218090558033531255235216983081225739692191850827154463353811960866759044538597232854346928976028646650174276487243616074090638596852365497479985685186914511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19588554472990895187469238180981686686455055294620875104700902546222565680590635713212856631762610818406997139875803720784022116276672118701746872184251720407623358035896778542060698406287381660514969577846883010729168136895515542973596487220723188840159674838174384847378482494338424899966705168471301065425086738369790568498534235775223797727626127070152888818255044901953117706753650086041508734919298657297031982754122299538428946604023715885027506492863783417733743424658337230478370731522049199160295088862625915921807596298719601763835830379263152979504056331275841380661570201797126556845641776553231772088169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17951187302682120110353219585140553688257894688298680382488965453351518634788616739634705276849937854058225132111046001363903267649181848676118638957439656738332546440380799877396111180528902831342166510024302988424991116387673115637622538881343616666325359711430704127310121289389036891356191519482919086334171192349357041532806829671903331479018313202855410190947887210493810717469397675491175856796934828839029088193224891826172393255335637818836755230077639564098943926396827130391714323955475057710465092519861219431259311348781175069671302449506745830869853819854594293653351253555445485155408166053845042221723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26091910429596405411442356959742757355068274295031158924164271344603569127261090326131368743595559840831582280810563268786249097515213344851211178911856652546940977129303152249627421896720379589581506648679734789226701541800292121804650809159766345665974507246551511132580221683854576894913112034586104911642735534679787083227121907965180012901656331455420033992319641706291768760252144951150028927162939034254672540368657728847545681999583141547456249533649099593430361721127017786853511254146433331238526796992488431307401537651104143717133617432324382490003844038546708885471978887356252524595902389137860458937057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20322177040837343423868833097485447858536751377884072392908717219356422637021664447861651309875737956073288193218277958447223338798881474026696192740160554974767403393223425928416260760437239394352612469250494355013448265699364181133559180516448496905013764829398886354679838060126925359935964527591126407287141759530936232670489790202362319187074091398319194935247404232848201747111976830735140714639442863635919333951652951537286091048243480701672064957052448753187326335520301047374523821674649699180376576650061196209738248953347072367759223728170859016609601981776168835216785352748242217549681130412232910003317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23421431241267213449487407176226030439407139731121786651783788575326272186879378800364079035119378050992859462841107856248010094125331712698917496455476569474467890729515695990097395836367998247881440221587380430601941283284510917822845946342019777454253594112952569730483539287787676888818639352948902317533474493294061642764808832023091158293045427909174780803083850065811740297582704432879199614026945572092583687913610315003199866762525528387890961670553996021215669814207372099500628033594880918954695708540854316685011457637070091129265014805169675834428362460089114132436401277946452990910597673120932446455469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17030022078718846429253666463743233714114857531632061253000549532075528863496253687590684870571063399951216737677456740119908347359300242613804248779595705454381106612599914968129829259391733658998078389050671793221795649829359486090019863253049654569690308023419421083633153687892816098998449688405896522358846549995620929058594650181474386439664235017674754106994405168510564606029633282771470238375140715958609420593025292746640146731330237836142128132621851927383461735903818097775016643703300392950117885267962294088078953882407382997619465226309572315848365186829237343947008627938355054562407556861372020475103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27519599340550030422007309281945066472056191358904856604518097176993759662732174325966862703337891934013162267114785818786713067495470104654677005500094650732119548107428338745688807534753374987842267614735617665245851885676661372664047202622198302676184846177219969170876279162930853484303687620879572547773650634480528841713382401359977112011607199267570048325366922170836055749189062247595062873822980552934200159413427807225255733251018785085513839959675475394194961513058526485273809269079027540625089615948258141986711823469006829999148787873277885896573620383588670119392342310515265943015644652095907457607837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321438100044081035870192343497224429703150954834959016284860279496372555843275501199772605555527626185450587903023330278358503140021392178405970563100499265228256795051976061218881906212703892145042386287839033137546971854867911506613996528299628927428464686691615506976536898884874950519322947331558393801468229823416429400882572168864329916068474964418577734814041247930993151115929081720599758354426573094645625562059515765463129218053667605648566076435236030720670957236518370588358354776029388258826347107038751623772219858161697702827028574557829244295607426430206868999567487141600479768673240723819852255471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24581992215887631897730583850326894507513141707984643701322237022710530198374994072838794000431141439984240701543125694207699797193743850415186604610808812347514585758640844029532452308735125110855407049720167061764258149563999782949951558026203853014946767893843063104674857988749994495065039264150832271317910808106232783209765146111853824746660093943799831583816606627375380898173308258618004558510278902432983032609524999556785099321424200010561228756826946766664770670667043026141766485938862188403309801342741412806614295544152561071868791756081825754676856161052163284001033852850805203783027540972517090431739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16348733026474765436724342215059623038524643663406507419438765735372353476768871915424424961083658726298058906445349207864979322089120206238405869898430995785477048756361557973210836652000814137578218800915477324830428932871901987185719942855935835473907862732338882067808568617751067198015597905361562817992012042180494713638167031430400173696734889824018057920914149070242487762686624324758703196093473404218994131435253819703548123824288234116268065105204084217159305684274511858636561661986836122233566531607417436732853431201484703902037264111654048616837601008026258785971897109937636823539888226880152033859049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25091540317209555658287926456829719636446567387129439166981593789152340120586685766252460301433705288271994812780505415633997497933007616003051768124352287420967788742496701514494986554433037008125220459880983040049175477351528929908632122426326225283820135557941338426274961773435473307773229286742619991722737212294543800466047215045937665638451814703940311970797223847548367239407987292643308061711851120818047061605709790729691574389017092815540602864391742185038205376292087036397633007354158305409099350579145114901879720570173118314632027330994978927551734210253957741522071319104046695850694993494928328534741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24182656046340552471524884028478474781248980415102789149725885849041889053671547126594829986831120114485409522415409251492130376242079131136711120531137174581373069151959669435860783925303333289900824389390797723932636588924902434298468223499035119959294514218035964507571066145960812567001796266900104426103484861771828659184949928165672441226620094288482409509004204941003008972642781634453522103969239176707373275938019563072592082070677921948340124884269397568174791012533165351088482944326680088920062938750640766850669213848156437252177662284504857970882182768010116106475657533434101128882570866506937541472607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23952823368453142204901787087649567098995269499184494568250453039687196203359784289606477918839888834946788246297352331586911343464745527590403293250867059426204123331843327646690151268368991528923034094285354745485975380838515096956400782347661591136192658858766941053226963922749558076499568505326870022988148701040199078122969630518725026538015490631022751115513975007057080550751555519959428301434786113109065845456937236524357253794352253738501971232306435889872168501799305215922232475221380614806184664375086608262379526433890106745057725137122474597828498293776625697937201397361824030998491300609742838252959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24837419387493490166457448994197067284331814397963211409473994553701618715535028971866810982600075885440098624863450777896392132467908899636306179463302578002984264966508276250046804439248648659409599111410779515729742973014606516691854003022020554935836364721735464200655730552569706568199089104178056077936561029290454454375626951363764927513494201936415655640947088765290540618810479035115548806139480870191478698306852757782203466492375799708957348831142740331315006458021989002244949195900962442262609951792838330305251290067585418544724864756057586785471603904147169785526669693654039532743669549304073850474199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25813707244071880115357179183317385592892798835014637585559677058774821760204717016356334172144370615263282920399975449837569687176821946066288618227631496835016633537786382904623551967281865838717299489145006514716499015102770578917468562688332346449655978359618388193111364867349614022251092890165044003758048705722242398913901078470294581060154229202834685227908717585827834998805276210576084708885212799729736888507433221116485359619835013728906286773129452055824518081134114018194438365259798473539811232176974943074167767719613198588394489637636559022743942574869421074357457277765318684301052485573963048328271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16342635697970755431565613979185089176808697530181611323300811500726787092154844314419044334835262669723984486422991323130570368881276448136162411897205271950705697967807058666119261594745494409953531121182077292552980235455116879884015707693969637090446982756083879367628160579630187054264295657912446576187944482001526918043155590860053689973218450041356596808211307873801412494630223195171612539576712995000273511177807368821929492553397414388631894076440947228966236394274320273018711222698710549662095144421775211708417762457922380805711833133516612604622284270666465055756050030176798461528776481339533997793273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312683205719583896410303038961878268372792428947617690950705000597326997847689048305630735373222675110542473843018075526926436893805760095036935029653880145122149892840527809096492470952220276424480400219575724929746838101489401631857619949211081459131046776359122949390821255072687476906302962919558658257564120449034560636938389467385077050607566728646662589163371649277563378586424247690524216996294232213923375715491377228876340563809996246458087169239106678107272734161583358053894324705452751915401216502804044616576020854442688046568272251347413174939343122587300461332865661931460051196931890863998759207729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17267612474494053169932584290835136930689655191385902855139667028545748538146862510773871522224414159762558422036259413443743143931037893575793137813041678451302117593599190411082982901151095088961154179528285658422608824244975023575181123198577049372427500098051259411941533377130973981351600366021546024845717003790117803568484793784654350995633771560071794575530875072240739855228415829168636625332233435245319045887579740277875924664697607243896239013709064163697961547601927504423921302616272102527769535594348306811237418638086025740917853102991333532804631234189945515932677522688084534253454685529428617161277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330772345596058060766799489171187035470962391526547925690772266035467639525563469278809847866892218599176149873440428962256326265359357364547611683462953171385131944640232070980992523248637104406813162804597218484876183546281946704823359151451517391031153723379837142117102144382205201916782633410063129601997982900704215363221422359645988654440005573463352881881946556259098052525558381259034084542316656939976149375031502468041373038019846353297775663937271305629417131137946665106886690404857886046942945753654137642118687995757634518015702134182980367560812477862412407069843669245928225344918891129115587249497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309128242910995617197799904883573823275799655900019691534937795318543109742035772734966556268743192417049806268055166395667695210423889097501434657139673989456063552612877284557760331956683073156441192076375531567987510384746488738804841702295580298310595051030508073193992109769560725178789029238924561784378951939216308388900329390569745723213350208521893239097698445129329488700044744521602378712428093227318281468580530962413927207568017087814029643889793327964557798135674755908144176419899704951922040038616171178861093668460647290490962887067774618940626105383311034954348946326949374458379993092577752433881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268837641349453262949503146141850001623174470968369369993007358184633298955428883642248175230602831901701751459526369938053820915113094813813020342997085915367302427422270441484165927639396614280496490687218300683622218263486256259996213362977676698472797300502749137485182784419137358774417476884294904049159319976713721659432103045939805774279541159172088171879199362380550142982168714264386387034962153786918191635414352800754734795019696888895305985249042168002265640340123694546168879251365467392036906999801684050083966988397971142892981329451281720005954745718995041147876674504826079523684238259785868398131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22285784088524765454829441808938471982217787862458001063987956906601405832756964166209079282243154310391104790041602134147523076943236968884991249109513641503824192336104489424215449282906737596919938144874745010118142681561798820745227638014058176786476262367915518183421443013329155285880231010729515241480274490418621189794260407267829040569784113277384280281325186233984287546499577307899470113287593075945187117087682919602475814309930436257482720970668738829444031254785905789985664954171938192740503420672532799983576100511026079653492582435870765565505896164899787310172095574256414660426779584073870663844127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329012628539688370103051198741931116999804642892151767793787232603009909204059354902952322566855893496114079012832124435256799291984924776283380802821167460026126889312900438226510780955972089947419108834347498653503536902982882596576318198051761856626627146663318681646084068936635992394015852591656067993066276165442791585222542176005740294105317812684162252517289826074203472627147299911341830515229566476112499466299902236661755191842895805642467903271498651794463496084345315222045425819191887981175880096645788490207761348982411252787471761825909406855486514775765321342369855548453680792420839750378130231709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349258290991714529810604982236962174954894293767571019999770498363641795363597331865925101964168645128994645409818091769724365000199133721113082517419542770222047601335249856626326244419056985955354799348444510803703533278726808595419752618811335591783265865608818971717791047969968562673202907283761423947585015072786601770878712914110775217036526394738691374326370056485382808578121560123593143725589672287854332287144213791915039999238432068437302949321692948349718540998769123917257441267960961840194593773622403485266980368008701019210547353178468717519091332029287502719884172426130273976195447265374289022541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21388614335736803187057422251205005472355295569946988849571461600471710271613068511265732836044977564716739796472492922192016163997907708341860518900641605771446659637572311479491568985013768458988535717090229146155211643402210832450067878393270767034165082797692846268691123905533927306949609685619207606852838899645922370478574953152206532297973339005891892634346425983286351735417438195253514336610345108155258515505332291179732714378700311432244439060773019975078115531912679542302066352138084532732036011690614737491259556711039121289352597611208687185534846000651175119647604671875102796922432615179707688444199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23454041009146340712364337407427575770950986050507776262627039804264201185000130945161818745082724119401906539463820021574695181104462342385970098316127229269004075805229866011477313468200610614206112004003610472994110551114229278229543616690958435626987232737797763646538202673927583075191814130382188016864113714004472856184832973756988646882184796495907025212949428381631890309810398544001335039333635051819128086132856882924698380520902508310472792179947040151187530392171768479527219046668574176140326528558598675187098319367713432743572535179454330670295841215170704946718588917846257835457998092296938844929277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303562811566225619828407826358436850399179152295029318288551073159730355581398788983322148517086406512953678779300013427673545513829534498605853682963814643163298213139994693840763296100172476225150410610778427956906694141291640642358684226586050197283438033445553058574777557635169438665271313116561903931467410878608507204614698655451929816097050145617264224621374003226876799462312585595319137427426073479705455686301120381148569111346664461120711756195133546986258862765584579966961357526648112685896655247068312460813859769971573208488687969460204791537281147684542197703753385097738418056877714767787185817093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26833375640169866742061945651280952800656390173502793096987064280503637646023825813396783119890616081445157185341875129213488671537779858108831149352616122591745662912851542712713192892134429217749454440598144542566485121940019987039180555306047369752586176799267307832231325448760155234249618077246063164113568825044268727561928777248391734257401702614243067185294457878459270782952388328556227065209219707501449992113195148370412763399368190475344609821680125090548409592018386458053602397327321223455177725501017773285214009602799263535016142421485340069269524025426184080926098603910904392598946848088147139203519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16689155586676907349999073007329866666647221277663617744099932968513994476881804649921339417711315913694309044093372207341156284828666796831112599808203800865400742074655314685250391030678711541766839448005244268870640641925520681452264800241779805741667738519441026247490497978141413506507904845379358324536950982715927383852849964391231516436393248155832331634646350493502708992008713824818133600240420826380587109711302376048312331722418034168927880595639274898040820139568750361202293988023779558287199232173952944590505689284364510535968643600813279592028420575681669592785725386796579132480833790190926429882961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21743839966822526149294643935534838675675525660322265783222767517333069506983076018281995303853016309671602063433443019092059170693907193893477019866452453509606029228247690852963005152571484462122499418399768590823070778443126405774973730730526139590888305109782704475795596149354407391861059447413218885386897475060303041826981732378450196870710089367865901164604788740265221085812353574704128933852682962008294461051650562366421740596293964805017713210446710987548987144409530732747715390847019490675157733016875245460171890404330636906270730197194172855599400851771375805469987887215774405759797847836379431838997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24935815099483800066669805375903662873185396409318061456990693110026327361822296616577276240678143052640137351660358799368617232569971872452083765380909746800283039574774557765123494363722485507029270735039239378236847656209182723805339576415492889286770374349401193001971965610735070123599787921894731462992904438752538154820881269771299012568173326000241633588620779444406670876214594951118421888073877558159436897600358309279196606327051973025597933047842876411377746058444795943191993654998938417751431466158267025486967691901539173413994259916139247032841407834088601311884782581739454857504593837994319658558517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30213543218261897380509925527215017209498824797127670103434158776987593871754681226313287224836566052130910835678287285203626868428616638429876408087133311487792144792227553820835761275837049942874025732539777152080230710138493252831154584126943108685820279606816463205979823467006961014341074437462245555833299914299139383911948921657811840809546133572599005680750442261469352357506117270165614920449932513542116113417743374102209385809609413378837198897045202551616309499381043652187527057547165497740232672994533902517475802147504155079474124932980317253195995566737831575836214330969692417007664873452856420929209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22883312992257940684881491661254928812843851590491538084725727996424499466990386458068501493137417995826311516758809584909974928034948477103934569124744678478690504392624060955472389280643465120161129761330165353648467480166677421562229350164298957887207469655700135398567843523928689334328630552890987781987072337980068544883613828247451753062736001038075782824148120957774132687841702175049978970542903754721007250249223904245137716248677018160873780377852900424907101615910791303295193361874057404610745883810492847438325108063428827334459570866136603294830898887224630029861651841306273964227729535698829333424471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19288995843923088638196759646427135283034470966972160538924430901374292612839790224448605545522944763457701567643169004544369320561717459266901070715139817818152366261648127414789299353346969490169851605137800992727685848519776614356096688294035510859585169725369826108619736367165319108473230213869370437494395224422389733806164393790341017966755886856976530398318225879407400966994340374591928085197940858698460704210958087544969194644264427996030553013430456237107742926696117270222423540596220162317375342470216547435005376761187739318090181380152038995846041241980489209570008293432460549456297724717120120880291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25342328203248408055865349448597994910368030360884755210119424632413192622607141749870290021044983228683503970025251169313713086688233881362527697953222444437543030699061202764273359648796393745915371437723238968932148934634189478206876005647142162246996312352784371794999109928028860411921422035574918830081714297046771002524505529368149464496612709258502448414746964304160615640304470614865770414752291041682243112890115525735381887694289597496424280117007039218840471574387360775852206520337802765043293391160978409731204976916336551636685112225417671452272287012183556240248877092011355868702094278260176825855849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27530516196361004691374377833250499834378133951917390223689045367602603582424444440216459088175908165582047287084043213021238697400645938092627518926548814978957295123328522915575096029048769217133818440164057572819728806740340928519367723087843329082879143975673025029082081795553878867324376491934112104872917969398863454890072982921076650212461217878897729327722080680451401904757729638554043816936878564236869592533431634894154241863161387853121276077942777869589642231889110771709772279647008955548909675525175598485618296966551784758142595490364912650177799015042760416454359762856127507867882536934676630085433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25818192599059694454130323134657457990016451905911582066250937612319157514287756022999938652235716896107737831850079705574406871994507731616974283002938745883298591753015154485596083505680370441405121759028225615923180814759030518545572548437058012430749472141827070085556634307845642764909518896966332183133322817655094970447958574357723234650358231420744484798196847734537028491712374710534899963633888704594266363754455489388397277691883711559823991075955772816826339837074147164849733096840528131823925841411321044269476298040415964047126856913774725649657649539577969396392096938664605843215131538101416863883973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27656408207163670014658526756381799741700803548671617273203851138539672510989952516194017718816540281234647928335950991028605225692260628451447534164137644914608898275695712033895524916007414030772914211751316569810291860598934983761494265029393412316575323596630075447381802633716103712733074222795751350176753646753401788755589121687281891056946235334157155704101270481534546733838762804037400514138625262110658241449176764405432460925181351299121241182958906139644835062481277550732718367358770315256133151913046846216535085007053725025876211823856863454993562429043960499935279070978435169183138719489180485240363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22487306351776228445126835229817348901636995309551853309205956772031536750151309706997473180362326997955240339373334131538517374253419550492934148906950565254874862412010752344552372845445183213074358954074666537555839615358429772068606481337580487938419035210716143423231189718607146841484334719985543117138413641570869264282661136291741521150263947968246568212717180142348216661085975953778186230322364721569260216815131690013305727414273863786169846126692483617671710399086704611769898790433837525145840515748299231137786901110987340478289937648822670693281549469324493323510063714732901015825281449023293720879687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25179171674932264231637633643069841994434401041203054546114146406494530333264722783658979254217625501957180513847323527057270607659951898607684192998846007615433607602243657589763929109356008418438516365714477844547732897426236609086243904142260698184359484580366367479190378019227036856947847117051129370610391859195906616797237271732398178335158517145926293863203732454446339899035780024809016801625298803438440728018173091563237449530294116748102276061807479511699568173910891103127955137562073001177637842663479506910332431968692276322995987616818578124033398931006729367619738081623397823504360547899194369575471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26568802549160428487831927955900424877082078511545777470401522265419133860241045931210430963103982577154945276900272728869630598346041031806073789773302168043514217374524271605041448923532164811188757404145951464328924500802462676276436824189552131621497592470807915832128027172096659079015389669935472270958828536640408540584922762646767603683398294252909625962723793519196215272982064212044774556752608260315491916162944387664637197099260335913708985051379666791832197847069000566124835858650814326779358131080975331880416229080042456453223968398914988951641807502464655500483701837765498863590388879894439926002511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22555397869800119161270157823915822995872382734204002351089245252189028916791892087958625811415548082253120605027202529522677451302021788532160624354991655168677944786856861740897228247203899133715501341332332132635324818732239312682599981642293451461633775662873836920106918546431792526955127321676312031689205085181250369256639529326892524875297997119209152994936135345804122240241382390296981924273302989686244769704281824145514145021360414350809985929425675792802451022984396541213869626954804716689417028331602077817959407337011358353467140830655171167115992788573836929608394632103928010262233575251259255466689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22326709264856380577194191123713375140429429405017868518748783154580588467693652348283191382484243873864319102946671058392970721699101045575406738386268743618087936928749852033701557803622720323328463127063691225176600853088679051163374349609565545812585787494884250021076262813457028661188447694731234790444937437293421448581001886668490623796243002469928316642598147226301006270769585429672061671016495006863118513989461650513163799956392924502224496034751116573258744656836744403611461770429310960301143382375230609447607492940011566076305415632055557193728107805011583529801016986583122996927967284677216655255249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25475539687472976250800269166371231201537507955214926107195815948926243893838799454848271686462782987590197317258868952129126435287374587985560380892532870467729527923123723173729898162465091458427578112383032361243669632588493083085731585757153997044752018115327226030103990385536224410287060302071229334142459506589526255665145732437552406278602839345169077348972995111266740594919259498787790587324986181839266928444774176045115782379509466857711711803754430716602318068850293985090061191010222535884487111978907182122032166922425233761458541928677632735812051279294433034692886512060135082890768347390808206045801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21009188858356534644359293716573637193969446404326960794552041958066021783173197390141561118973652889595326251949467657324992053013792720496994754409706349664387913672616789751579051590815887990903118755242901260087546788318018998616666465434058157559989820738641600717734906910633880478787488548387176987474999321909169086280667812829690431995632681607336078180843507711996997833553360228859614498133094561100414230127914073077249566090392777094353044375196326162405484244860544994434870336846188883656780143434230516721707047568222510534257968876394976369689126726271160411028475251219424206065682892125850933267119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24934104144120570692871260553670873455432349261829176930085703656058293273335132310151044560970288107111113118952042897830782344360153039351574182133540250710035757674775004404580698669140449736977070049125743143612612464682675953790158364077666597846445342147513665930597251003742813143154990214911404792064284550035869480251257048048232667827539465594290633325254278580382248533520734221285189857303701615289984382460606759996462709583943398780470808292389692069210244741695513918729191651428082875556968151104275262707514757914512273529731204792400777660530512182384101340338159385443098357898882765540403494218459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24075171279311449201169102403523966801274990163391017917102672176008999080051348884202989789482391145292129554129482443697877132555513002679136191450687131282700911926833790428206201721791932364563908373196977867858288530025738777738525061217212549739194002037032176844450495095517840474172723140507470853667040813195964086677573178188732990678244536498617198420238520320288741011772910565668790335782682813998458505483485313425612027536570432161449907325122492192581290857442248548016291473094362726863485772696946624729268166351739456156734674356364306435174773787451227386462455394861428248451925824425698473466193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22991512033415069579237504777616077143609850370794798852950844345798999386239664497903406811689508066170369246568316190305905794882250654927218721346630100155303550717077266804049556743143693928674206606170561679401649412605893631964684228749237235443375343448312748614952004925594867689758688723985275464448536804445271466821467595634127201151253537183755442557286873839000869648650977447808160352493597243244634254813543195378874410278516269978346397098256941805721370098269180728771690615131009670874170834351067955006601206426809423003744420406773862287387655799248611514841721891870525894918025646537282048094041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20296122047602036564059733509850858344955724812528619784226551999080684668121329163597529479410980724786563321588272147146526789050289907253510236636317973992755075100863415979080172814900804559553967472211064451888531778629012274076968762850831488411119070985953095720282689082101934523516191659074643640076898634259001368794872896996682368818171302477259922872737715912462442699827261247887714298251752976793877889453605893855514386927512897810203694633791919512488256930742533929653377199415315240789942350383005978163101327462635021966711870121089880974255351531074693088233528618704059930508946335850027786991551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19692795545935977499521192786653021389887228660101555558720384013206007669457220239477111105232346724259034255337850529770514609460391152886318653550573266902192670315833660262196505720017397051294599147756994994650263560006147180702226082569213427066314626717761352611635004570117250241333494186958452442743864320872553977760209930830537933527651511087348952924450498732926846466365192114145996797892618034144382727272320437845016890570027737232952947092697805428200184487803169642726305444615035253756575671821702155801101094082939289160463415161310846526722409875090120114992811183884079206308167770697826011529979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23666474852474831481883011767636521482815471545507387729814785293626063660018017496823201940013410151712657721402660725056740105040742360155528320906110539162642938075521364953449661729662768983269668325894427763867525453170497214357383640955734739734810277438322947047881485879709851850989285064887996174338027273087256963119260547492619316340835575252017200742613933202556215125637586123166504146491229951402211329420923671283147525223503066297602710526497410307213726372016171745798426414602606284331414486655087699813992999475605759205072658818533536476303497016289456362701248841502803798770653742853083824843317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23759015609420250866901228650891769339281905619589867392136687049542140093807376019123465182672509612260011524248063894757732760217959357506114786979225682761514401930860005854689167438380606739882180760312184642765849990357790079363144580957648346136963455937770539586701080199847742268643549599759509990160136762862933430967995494037955703225546849701452053640336749605447833738788420116896049325662826118834678856106197141199563302239947791993723816102432800369178147306523892896445858062883379515630945185535281993720496734774313767537183887326381598283250012640358888084444402830887242536040504779691646053812773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22381144377492527168450761057799873976220470897688933472604784106551477429563483014366994051718378840244982093051399004589827484552957392927786416271972625846869069876899758719888828556728060257246544707547422547323905633373244486994374136754324761484148761216233433195309869384119387172450333055088493352932671603469692689939279923412592449113243063217632033353330818304382173590097045107682681234520369825024331339108178461606830820434358462791784081463774755664948560616239485347405376367608141061662979493309793686235015623616979191795636361556745242369574968491484258930496636310555431009381286760858003557027239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22246496842684207626338633220733971530186352291453711829433448425179911200675721991810996155217016229300268756308127365405586758614353396873324006967016906988621242924717634221168589489750597486944339904905452941729542922838661317084313015832630956403938341461740246901044996809114497706560518604283668060206411363389486695708823965953997254607099834883570254026058390989406422237820121218080146952478349573966937813637455202932870828414381196293938172966873991090152586898233239021064129934768862185706847446536868724561235583935502143259728051302998736249310114340728570340618614583447819192242238365089635476896027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27843683809269923688508200623566793504389305573556336415418683934552105196798440217018127662574992566235789770715094752555532212878658646876952511792993858138297846932234312819096106197782863417911643628210100042990017237297241357812301378867586375933187279256771401783659319461629266664157778691450971333588214370936711616376477670672610318881318786386013463677170912105326850228105776473388610063231960576418115942461422177213331386652887822724291833794023803439906340332561745624654593297586878833613041201443687329524666644427647143563993722148843054444244872467366574201140062616335611380951174744918572098965771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31148900375721661708085631229046542648364707862692717122093854744807027771479228923960716857470226978112312982832106888142414719366188765508752945504822633300553592972928500235363648440280695498204067580031446548814007897606498892658420751075414702670836774318890809501246229663949893276498203879253115261339239244616566868211952708391571735359045075440826796230670838104800172050688275158758939225089075269397474188102111918978676726795720590929149126939136779343837426693983132788005275635669823411370966264474294074050291507436331560906602565057575822690827954834338770622141396998610540090625615199056712106287011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20304760230520788838403684289088552319344675703234965429440386934966451207324417961618110364631071054010512430172171264259691751066308581004665698119509318961449429309722318184779120854139191527783804424362186662747229938995111755497642209189678074398140510532355566687613184723088113017303224400707842955854032880189899010714666021710722927661732080961659921672538361626878439663075516180471290432801329753074822950465124411499781417758694284508966346656535431389998156843596637094210659691886969525837035722098398301994402953491333259554833478986323817387301037735824631521053542310210003585823788693522126408985349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27455078528172955773978152743835193249207473247424583346846750196178768087334492628185108685171582445279431260033825733688451809651332357099071012502524438472389460350633176795738658807262778330370230588089809742536385857394990677994427636236081963336012397939660181766239891336170475924986017396028310303980523327168750131603644498665608520970862531764885672904656336653557858194028346727076641773020331254094265921498003159138997503682928438588367855320390200892830038295889986844302389583308053105414928979899220955862476007974672407832072981075456702757732979588641377353406811649944129632269450606307223103478451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30917321084530073839190397404029184657240520678844585518252665122237214570105864943226255453729275914020170532997994071385149894682503129244347138798397525655622495049249108168640558617689067232299942426369015638866854514548991174414492452725037227454219667845528674920856435107056155354469472317977467061157534062847613379651736913310679960526539468889742814959945238810218767663084342400221648575263039705027522095933832269052990393307201798853108159524269823896038772167770078788313124232799418168335343371715912474389050931786429489841610447176241545286466579510762523463469593453397777990401938418405251088692633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27519402229622614710278863232436381128489828461783816899372737125457083709855649633057059050511516525297225051906076965177209512728033590737175205144912527767964832887380435241868812345474520410205539563925149398061657845193842029609758397434071653498360072653698799684721448439651786431163964350025487180850129336026598700761304887566148574673698398743985025181094621407125477920972181754346282327700225381684233356359244834305173681867331174043865444946892470504006262403646496318362040376195356535939277263219622986005802517133352754022264942894459736548847030417609025886835380799766359064857839474767392866700991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22487180109590625236059304011588067961961036336281899617747000145675765459335100243103069747518901998025122207912871023105447813011510173142487730805506069015240572250121511529259776322257274661054191058315737032688688773335939186966551705831646198343361136711271528496802313368157646523571739813722465278664515117499752994108821516443143326655588389560293641012083205146699038637858803325539806563394075289415933577745890637885613584873088759160676959543775736766465467543066360626728994118530214967007723322034533451582054408900574294648260534111867281661102373152143625016070949459801610233794534456840803930505129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24186549535425007444874678279505560409723071671594510433122883358644079085893578986771316993734728888258897092917276600099134421469135358461416340124857994205382743512202982266562799041287840208546274909428154547211101111279090366710525209263435849176840420575561657996422558643738883301752664750135209194537864907358983597935638906701205795351046540700044326483343829787335628100251763840118588915972510964191100594314570000377980338539113920734914977990694051968137875088236528627256535358540500658122634415752008387039185399674652300359333913013907923129350584904825406690976882256082641179593591077637242516977717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26072894501743789912482456183020329857425064378453915415500133176569846697433806002398102114038234045777929028827902329684008650952465473345436599931778178117421181509586936986802326899913969093401015775523155300390361588374439063013815006731506246432476868405758990232875369485479104589132584125840519737572340771453755105076388015466933013637498771656572364509662579722061476789132676279306875855041663798079686000585423143015363198613839085779031248628945436852550631904083339151631994867332407584948655517575316715747934082117938607155735571736150063991019831048284174845616899256436272846090968271376821937943323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20566900133438347063435755081877815294765728464671007301833001582034962207879253360302542956197661660977370151660116955653652816001162856116066706800750377356308761140463834164619322915268508477266993540231057896131806006286018035687767256576473693299654550763086331653780848052058246724295434774592007545436666577184534536996964732880095832991449969776952223792824824045431343118445920086581311680227134631799610772706149193375455875327881499296218976985021241266221706758453372372243258193534102238420289093547398713052559797804038705662339146959481790196570715864116818022367537200555570408425429852319201825414153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27910294203869343718059095587707968253257810599891129338891873171169010444536967399049140759477791371032209449581207344766619727006249301382111575704941925556761008038479976585370387914935271633986383604053223843854377394901352472228425214125501835308330335059276001757309384670345065490104518125799770744171755499869666943496778745518803363053019056527055393118949381576094174070596189970011222231207851478001119237118016306215276080014569383062792024567231384723409562596278327458877865290574600641614654997995820213528118315571954543131538529363062157023843668704221037427917790269479804475593895920965064749220429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21283960770503010798623685339265514568769032072038465960203466938140481086671083790992704129158385793317050582257551103960411688540245957401390237419470082406692767672025967915366912997377313734293981931082810835045197037109022708204982286192547763707783818615598627871123182890379914883710144449953741629283669613222859666388325191384985606953657381565212831679248843571119523891082081531509790010744356106386527494741242687910003178363828510545413611893444473498169166214040393896280353363721217611745371109528387275569895058112034081748864835501344403860868570961250766606580223276756629066656448797135667885897663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29120876963399221469030041510766916363437844791086228603149183390396131876112143438533149165217812112831236114233140134766548887199483755080423242230216736907062403367134575571718917477561751501709168511707332111792025963597942950194819185656451885817983757039481121971836712817059197016684356355850167208379571081949358746872007881255477049265920400197503620020032391578616090075161165564093702662373932187816035872371864006961209252947589893719901384955639054290786699003724885094837469863759877369528401397626871943680962765671669455200587536661573117940817679653843558529147241052950479444001617252668392503614307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23246366663351807149542871418055979918394399670890892909069436647298454811157520421888816515575877109914075703121768576769875690663747151003317093927612679105363402778726204883752722550958308999060337170677562741786949675199940284177990069983434626300264834857433674992480740768800800359392851742285979453118730641662777616726347357107187065947530559400770537612272630967077198588010782286585466770100030015790385108035314208240165395171810131021575648551453916466588614314314911079440933346421894024302494225120730314175688627396509950022874127809830225861663901609125156269955342117680888266529978990783970539515319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29009292078391267601641979560178631093369996898414843015576050100488907084136996571586026659380722601413175316830052618711305984218839433515636254672195605183278502260194440425844295650419486167720065547643686129121740935104480046127042128781355971650344434952850006048538759600850888806056556400547681671264070903944280973694362811664320199679664784231254855619228698382177343505582084025683090170114296147864291978046952821735485027669131500372299873615896228496689657004505722389043156764818942227826807563539786980814197201769854335678819568712489240267733894761953083519693941166456000322336824188227903733629541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24447842460678290463598537687593912397100939132747670946586584516406724750456306235922992944582977040272000918691411072663099774801710567157132510314222164257489776732563479752210784866029150461411897952995235051608562144706137428481192428787821795982144772727108673926760947502417386490087934160452116466089343344547159874099228934206540908685388254689351989464312680849187431170081335308372359592770509425101483630072529881104842638503877783009439598621129347751834033454041037572265562659012765323435906380780165939321605837054270578714249256345053491887820436094792198049461451090582308604168541536749120572974069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24817783157229275310432365059871276803852234713304863338427399618592990394701710959147120117467637152571275980046432412667141196641574933239884629140985662242084142889016796061474177072513386180837680996830499905892902031946623836938973226431645511368155134748221917938905748562305150586946033209331271322353982062555248832352824722182524627054430418674074364130122413123924993616814022583874001051176986574377768247797051831366284219337866452271926902622652651208641016732754262709613806729328625729591329533042902762320902408704733448841428893774565975515503063468690818448513145149414505130006705311213362686472677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21643329726118132808156779534394421085736567601650855892261343022562644725383400974823185249540445093711253838856396253205905992431506328537735017865986544684095102949277723374598765220585936109304362785813745664761524969282074488277902121835920872192964086819401853579626022213594464382275361143649530352098706838157601373174979110985882182590967326316686775655820673534991656874270235736650556164875060269260815926287345584833285046433696921055957411487635543886400406140427993568492605197843206047428878592400074709569490423851090839385250856015376258156529467751393936544136030845708515559788624441782092145410627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25912654415602096177046861612320526816915190722617858313064988943782126217888154478809579926544474523993640168109508529168141310589578217232987812350807550603963939787127523202260729305691709896679984897626532832560595389139352471108279104327162840072550260654566097695315274634994985613080560705908300301180199611603676840167823883022816347437659985407282153296917910383478906771114976309427696539598268509980477232939321381425495712051035536722630761398575864376281866831459711983282596798137980159933144803114186683568428767487629366303361027164809599024111448175797516933247174506796830570174985803723235833276839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24113510298095695739789128039663014560528438616613684944846097260896242044912275640632848115267003287593580343061426305993567457751705530227918096289942511474613321192199003969864214304605287420265736819897784906993230302554241159888386125201956272508613497309267563273943338056785150639293646387618286070009954426479070537294742466216545517748953287193519630995811225680534476637647258619474759878928014640044880742788078191921618646540728496317961371181055928714274136005821580135007113825428479011168429451424535231536701445210235938931434878312773867422843805594965570889360275380404267831271739842164546773082123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22467056736297752060027807206028385365641627576371310081731145028059123306212806986789144830831319795812232318794694424408764122045470430241631721078186757428724976617493004924826285061893857844457684054010812925947404885458693706220764238186189401889657873807391770542498047605725666959076819393254433579415817882132940477420150779579131499081206170316088362024984289375379227454780569348095356613118366671514341705434296096488395500004593514665382779708646962104791284471799680558153398586799929401628923925782802187147714305368354359098426628662545798323334175924744294082576507448523580691500086707793018196998877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26119908037463580528352841401090094665192563446874564166018930876525352248085498395092144916999202763477701522004202507762004478464141096227066340822266564080218148438534473007573105594569363951567070753962583668558088758966985712996322053272528609909325319146746695752071239177469117608862109473449656459317699646736797980051337398960118397193134112634812732626261779884703725733055346481723337847186314434394155384965123164867800820987493019734999912164163507128575485319272345891249623170369990909873935277751318282164650858007957941145160281837963022841728375536904307547959140100686506823455956583789542701959891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26012822799407447836703897135102704176728532920727438458610167824779023275374107153202922581663511202233142746994309861489037018822749810334499861717878545456724915239686941690307076538916417458209626411672641916310937502654298180510387315230736795337809437454964040466705962230059630911106626616505584455526667944455554819310176192970932338166388808095156738612606562437874194032368206370247306345455145232319109583564680438382049231338601638771163735809886828110878853628781121332098035719208307086376873122060619903107229828174506839810490250714883332516922641458084429115315377523433622397136020198279137159331237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22117328824816940930577502106865588399289759025562853162598900242646315388690421495942794462690611440655164997076209854286454864552372089427722272010582249716292659340907579792127582606656995038805829914857910385035517604209346471085173283533717953709559848846389907578120409883468784220871258759718273713603440363915202469595916389434823934531329632058565163576642833065454919830201552803561621227260559804304618293457601111817823897180195453523740720299838758197868358525333491673605252882553593659752500284562327557429916357963799314832321170155713278926588980208970573609652825664283557034733665212984415098107963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25386770365011230183542636759513951400391884101290622817362251585055796096696156909297983618859568482510102605522423366911853623757383996715760087989042029225416523916778110906307386657094149840345874003562015369313027662639908503796763573253042329493623102528760381434991128866602042615359270552559622053711743716069892091305397579797488003811444836994269454060654472269589723865938402166183544715993362883220870820863794367056912645116821317552808993936840474783563871040050873729927464468968283150929824908086059909958383996363150763984242104712036951569718532188368517274293171878773818289729051540769467803037037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23505821317589126740217621540778628268829850996692859823646102012812177661450579336351942103072944642972827774188865784694015360397151372874925029092336995295092682496501701612433856127091907594596610292931392437744308079908781628159411550409008085877204673565591376772542374098008804156420185258798490333595843674741648598185611517554900310432740071030733114908620922083542144777402216445343211661493131086870856778053658652730006227881206768157846224793611348539430880381666151021883508780026136000573906175320590413564316809230030325419878273847770290170528229708830319713245911665743276870781785152183747496973069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21753446160194792891389845571078616588376232090725700817408969244831088190774959598028906457424202550159052373693596255599192152593027476317493715264470820458314475713272943671054090512584618471199453040194945354874446855140128595213727407199711440627341289015444979613462097517697334527761938643765158998876115787546545583965604033284853508188142803863746575739888585228531598608703822433588208239962613973160571678873644340465710452304191136120524376608494946776593486611007378589525018578080277569158676760718025729185559853529730702105626558159531768245331664469691622282488228012644554814272538593307208452951251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20996147271856862422637909337167258192562994012656980879702551723216753073486395286591248663568455968145918200457708902248767559694367262961011921857709999754459475507833802667410442264187410524048018913137102037063759999326451151703954606237572978939377427037622062287980007466108580643729669590284294803979331496461074054923631955426434826979194586112475362348574793027068612151636318285303894605701432230050362502184381993889218496189768321252790331845128938498445168468132064473322173434283246211782095434036106865979415397094468277462820663073732929176496703288746883268445853092711477774735459796881377876337069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17785174724070780823269294688380167646789501837516931599117405995958865030193852941696946089539120249005088199503200219246339847695629718915112121172585819922607803113116586825609509774617847489180736859926706401839107673984228191765200779217014986771988537148031879132492285835248534808764878917198687881889650570477678158949201891625013391431049354847738619512128160873138556899170358454439353729783343926866655663423130354637573788035193964302255518298111902243058709066019644712002344620465260111218707520110213357528968192263076019923294774464665537968379274074146490713396063454249836976871975135105410088578413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19646253950345786786316601579204398484299672501321039905825489086308809025747678064608829350766218424531377127226785580618072564267575208872527367527648505728000662735346197074806241896461763027084804108590038646699656623055033449361062250707656305190634487146550710279146522189392292193068602232595903114442474552249629001733171674904499373354440011732848540999953409031544297358053085518229710924080354782439497941634279538451740674285591007302457095095553299205997068839403429538173064891075126936538522066257319282679203614524609215399010817052265000702223501762043599336680005945348166816790253481723558794552731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22688616905572182061717951112051360176269064945421179103599463604642040581985880258793565310070492061461563030025023228381928832653494673562614453443584347518478275715755262740329105793601863503268977984851597582770665507272393236413506056684826971916212521241123015641329664416906362004944374248449000156266817778608607322193497959153767377275541092237577908008812073856663908207221264191107800921865445235443356387013589388797343058281516684377317892334548750118598891307800387169715085594287237003512448087061313933324877817923530239471097561181327493573435509202735799853543220667263659148997016943028456089118873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17024438054086762002623133415245068637321163855875796012080449119060104191262802301209470853152391472194643857348168820920685796733441381597421638017513090318424715763605042845507920902596671560934635498736101683643002839087030675369083516273020523954096291208723971775358164545595037501146370569903247279361233926266755895691671951492756505207622270481710720698240762938915325082104338213754812543372955378654259212669420548288890819881180218744771779575076743070506214991936742214209982947352493224295138483420430647719499260798274785865127565031304902317279932864795796292523902212631469025303798001943468628613231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23661368357391735983588153374157727135069155003582880024166470851709111092494393729197210717510883913875959526588446102253372554835569257983353545647740786893678206058113634125162529432401931172481518717468269205953793022978619732245226666721549513563673320337299645832092431841992834065232111045793914377940547954246410192674160390689420456639812238662822520647279192469695552179016974939246909183509687163187996528503741508707078462165698260273886828782062205422214627730974521146431340964385911644531937115687917025506526477844952224683804184879293535154535951913366069655065047814950797567490535803010341399409239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28320844889424702603360737384913530566408500280639206829045443010673363150134470548653509936555747864242920196266288682679250612744942549923748745581199401811066531861153863595304767579145424535253934467649581751686403611290203109180547396009868593395565175655106082157673368604546046272904648448988118665076648321884810123862619806542303649217588423853135176184414927068385616250032317881667122226239693250266566289952493342905126300685860013262226613967364042645798672080116261127580418698817355981808046038143625272849277664008974178652625117179088496613894681967909674404121543869417783590699291525314133584829399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286477517442873836715381969539041217614780768698031879484967157063164194172678604638603916825327197740957469228812477767757111917691708709733052844661490643272785018494751996997557219719261056321091330789535691172254201175243358309132481563047473174283941510167611118045357151786876072449603770098504883735848484911448316876936825994672005051201109242467695327330718321388186205387613374040792942538214514898998456356198571597540202529219146341723577773793184269114615065273342924459265152932275868780549337937006131850328607198364168881828943582358596082541429090423437956181313992800126040163234440928976183458537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326057753796379877991270601103276181395563470797492002715103220033430121715226727588887030202439396689214479274446785882318806522634331605776380065516445613643631103127287515008190043541523118684648264995629345230925726342193442117834777147552092105815201743119853059562678666450277316793569548750049959104211479631641611279106886761204420671558620952375676805636564051652791766798204173833123961529185699066970406385194124434329810754706420194372510429469000529141993780476876503256682932106366878256794284749285292519366287650951788260871950248278584906437651944344379007672498231439191225747431681003170799038621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29731988457114096488924109138018087179162268443618587787191479206210133873476772769308625869008928750421692397284909096220684298451073349344688924566470690932555177885287655599764122292670229995476983199781964408325839044616320915902455202884991105806280924704604281058946450319491310238643595567835388580491297543878236518276611592210747411619840836089469657943819162144880919647753479802429989496969866295360701329214508052907383002328509274610179957408020157206968097276180267031361326549106670495347050582132567162771500910723740580132508312950144056950520706152488194609323285604272297953459164224945692176391707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271568819427416324226448649668966287936113873140316113449406020751745358506118517293200755116186176427560866257659530875320175794779262045968230978413404094231489323773889626206823664488924144641065396271197175392360511778141648870573051789977419437723972367158315450882745823697087117714368005932269924201888399832852827133135431070551595857317712600298539326854709052008707486553445305469520734454105070553328556656889750085097510227254220669704192539268604781566339829062917042427956552148901597919303390922155721106597763471508683490456009919808850120997104762899782039797308628596278272253844490673772107040531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16505858642321327404805694851757603235423050616821536209837304686972575906499163661164284383439531870529374152579245966597372560140691066121337403834617164530383359992031463958477879822678289649748777895045984674096330562089293443857731832085616906583099327340383739451625908997374557187269046713269261600872578633900015904427402730263991303835646024968185468808668019723015521218991602769789941572954103918018174158340230545144050221584090885174995157118838182865282030474074891476004512143907923687587519149729707804149788368371733670122490533207359292691546949576865407128928978323584072561993981291912568507148779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290065050543620518009995229078635275953920945020909884279932621349872306316124688768611137671447539985658655370429915468089722758468515320261342651449695756089292323727288863877705795012080406565799030140127848058483549206635016056357970668082102052671846010033883368210212612780141075631598203249059490695127624803437602874276671898337066407206653917771340764314044576466355345491037324377016359869827380897386998080743982969389598972267941148794327085423646989492989108145250663100342498348658400760985199915730065804570897220191265799401472501469995009351562590067882381863824304659924918823510933763241681754771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301443596175554445519090494745837449569093208904100451240369493238884727847115951766044300911120986597387012584780100542300424642660267139432385582967672296876496544313590099445225983782877389273049869514610865725874212620807464813659590226521206761183640435277148208788896371829120849014209632419303722950623630953808844186064335124859169020693937244780604084462845921170631261473513716060397646631046293033576017691135140316301946310766123054764817516134348498954512658829220428452430122731519034895287169185329572671729300724353877126440400833788732896714310023389014907489561108462376911244031879249319356643089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267618907236619497501789580967188942901841051965548986552415496711523100599238191459208521326260666145866279279107249863524208815749988755580041223099444418492526880498531906414013244821989847395240036011163005400841848659883673960362855697767501944890534169841876287997588227949283308031898152896942310330980599909991483947955313600873893001216896764224694171230492226012147727450219956773730295754067868185836131310367276949326378712215192078769193537241831043156004935435304840655625787097615157173074888051368459457015947624228314106494306982904315796449271012509258098095496385787208139222270307958660786189753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282974712555009335534948293986437327589887480888507572209671935133587942407694348427322893038950641671746355657262207204526957466397405766603127232321597726138747410653774463918726768661954667545058347231453448232446700591624852236340033564725077288384814266956553999317877439303302971239960747024741494319396823247850352634732594887854929599161460376753165212920039976320363994927171133945384753466910360223815224942997572705811658250263722100808986741873086631472713031620236580598627994268158520270089163273333954491271668574796672879830297620097550918631496971962401736008552007213769026040892318374826933810293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19157006214830176688014637749798412169996604491851868309032026937076012829914971825664739158234854206934920710891684172417788281433622568864901039970491602254280095857250672420251247673433235881607078454863405735916796118944213209704233023571666056559893686236115124890902693540457980075383573953161461007362625890358175176264653739448823665775350320914364459634065082587074388443267913343113670133400029849084336283721410867432532740813531952159779678409511042125464802753520627914651513052761133001558058134122618298448054672394897314878276664449955243662503865737624840509723823081025262472730106026311657422649813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319886563911810913958603023364849374068968919666801128531619575747718349188180514149412336358793338191882279497279609789244120923309034457332169381150911663735338962009785877287222380076606530010435665460827063595180767501596172513616475986489439678748285033109948532690365861483580037846772215104340846875273189624175058430752544345857729577116489196933024992966567566361238407845417490730821877520594387403047671507475938470440792119183575898128715527382593124847663554355869247968108532189580484072468344681181728226890401423235948340141470056527532664426389300392880624695722881626000743736499490558789519415619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17320897179345225886322778061794641876778071720068472259664775262646111106814488904220013223520129862805895758737333645742112023095371507349451085002907132869452610020897105563372345971006785621127221567009706286653763692639671834052777476239642796725859314382308312469413308614611939673656739442145050961914402168247768570372301482146490645652261324078050655816509412130151350820493525528276052144776879709230614190009580896434047375035116005392864608168130006354905404541308493099377389070845305998915109233864381086736065937162214222706790964551311156927214618875855874587384092338837322417133717278334037210476723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19987060709582103065802616710819794818328136976047862818658790925307553072589256082526371243770706867284814062679542846640963638908186051424810043049058264392001762232933335600784825580551219547839443011472705974592914399014380004156670368956437844581116379106557785691666411999717018128579284325792758917832343477819712143565146257877068708514679243896902843994263951203814616043883203347133498656321729500727871042429305559630935416933051374907045798021660189201781010993220817488858583709747090827321180308442493022504963783554812483951244819900888168613140226743843846053040850885332041865248369971449209530779053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24363378197926392166495487417616779577447172136213439376848920762437484050986579406449743976338984350134772769461762131737342773449619906181190114544989817383474460024855744016571167078069360386742711279016279872992729995183221806994347989420749829868503647447351326992059895871864400331730337951409651246088950216047400886455623078844465001466566493088308468658392900735750471445178999523907008173840960414825286033551711507043416441791201849372038013283896062119705261721971359928007769055187400842089943764776973071559643738955756000283363280718878987458714142766180924315094404816047340602472627095212455918083599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26642248297003335460004222909102257460325549022419018394419086540826336476655122788823108871683957393857168142995075387175619650874886615218485538115805780982522288530127575174947905004469303414263396712714833787701896997325892187123233715931692872034327017761361221243796911666106691686795547964213434043567846507849361205430053375859599655865938521107396175451484276695459946012265719275281787157816228546567674611899541411752571911402850711954299681716243998299096479938444685926846953749080104230360423923423522031606488317529059080779357084638002000583724982858207478589708728012928494937619971611617726550933551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19030078770426506404853629113397673485132746763142237447159853082705208467401808338225785435792182167714908388883577179609257790940940195658578001739316967496286414057330984058721391838488748316474288766969460918057500608569778846232947509545817109332409505895192476315333681581161049387040947451949003047331539806562954363272401783336831551059918165658400717137352970876627505536848222182161359735476897736264680945200403246076712738885065290093293562702371080602805216604971583445026061102101456567758823660817209847001497488031251824559411285061417097224629442102943345261373732672652180010772541158545565955147959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23201788589572929078090964796200190251061525327624466818431787728026844303967016122816797086072239868473591744233013585188876881096684125242450967047235279660836557189916670191014617247146542174710911838551807039342895569447822904209452955987760430227268342153049751581930283337865480816360207350822739305395043056636762658751000116694376684461925715634064261058641228004332502763598454535848150755604318362379677973528539221128466667197271091018246637386324346118870988578655876216831824443456618867207201564820843854204775426461860404637261388476784322738689523197705763742623153964138421606935588198411443977367323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25683538223168433243257509880042513678000920824765401425533590285027941164231382711661509775478390948232858381560925743855897128041557527726377145342716167001845580669420484375322426201728641037702695242808463761734028054896194434775895439385705064046728521634631635111210750345863970027265103845375393452186345399390906893196145675409962915278535212068888975369357955418537639442753879937221856557414859655778257735509511367417721336001883816472377802983086625054703033156373836752044709405790054423186410236486128890030044103864098608518200201888000025876055123470834073720664620227465140531832215815352338902794963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29586827611464352732062589419160876099244647091929384129887479468198378354478355217864255450919167018489777779587845427553479354283702231202227852049414181014768589012708187417647483758111432190271337675985640811623199390768234450744624937173304759284036248788541015562917793882971484402977252551826700022297483974772216347427896449418072751758714109851861842508874316068300734426885987998107893717550599723477189559321896541033855932001973872603667397658517616866241449297274944695610587710706724907562513728963985315916963485117054167714763298094195583766829868469857825016062026219428793213260987428130080368458171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27674521616251525690651552485647122807311477634566595504773548751084364188128551142476396062710842183517355842830663421119547182728045987294947830768275397765324726438112510906862499299120793904848280088683817567047208195132201607236016089841649077468464143836483959904286010817863877482852065476543046194506753819922378991344567173516356463062441925977891896911332143346106765632806546387004210447800424065506689953744098956161289815935096601568645338935566380516269985112503778356117661152581232179864005226411807315236391362942932593549889880976462610603345506952829969307373526740736346026842074541712804241246173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22224785755708392396974834763472926884074691531253847153955993117190294034224813124684745462775516286205048028676463461838758531640075807306743307615366747122318240717003629781848595441708943611093436248638259070655047254220321261041028028593524709454810769494557286724422003776686843656655061394274512009571839606733973113774400480705106771227430157836379692958509878063800332837732158775242098530544843009938191460359699397593206128121690726926428413714861655874605197966461671718455876702224750970460524046242857514986462935451798139896485460128952757856685257408571255767744488599958375622659410159870022646705343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27536468632583235797202007564424796602560960210378206493264407143895658218253433379273114455769030404757696836557046725381449383927324433173713585943490821775741321804171606393254684279658057927366783206975718075838340035181913671936965983414400215451003777223001713271775108995599674188620035264507464022661781248032762477867158177010564358058979001808655406243298467506460463414115666801098802091500712825497465815897630889597667874105450924174949904860000640695452270013975727503528109682990330742281514598492644636931002214504569004359991960703253591368323333362926986558448821012046578203750174368558060633682411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22843891065026145476151009128879218699139408876912058426370975957147686353749269428000913535131062601999581283194772070743932777155586348963578450154402859408254894638072585883641376756297917104108881930004858837840119881195952764261084122307589506164462730599796697563504360360917680180448816383977948151576372381961127704267113982820528132626774873051883800135472993941610691992462128464036875003082908384230712024624868818328302058931653871807655752949107835610498466909769556568020726421522863867567543577349069524447151253687495211776217272686586362666756692581443684301701435332525510893030237240037630282427271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24604989789637428156406036431481107113375104519229374476688366765988458941425692836854854281676883916943348898162460410403396407718519341612382532042309600467417736800324540978067959593159646304455807014680560583299406827324378552701261479190904200019390194734958462131544544655434212649398920761080628422079077390984041208229940005755439672760932052151188800171696945779017559883549103546941062007338395519421916660024400818642736438855690390347016571686513161837000409648456310346702488431024385665739625793364704119291005116995689456943758404361926234691354478296151113612464877252405283650696220162873916002089867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24180508503239861583106999754594710300625995653026269619808984958058260828788831574627184032000748572517507072828815440810679938393912072349801105958650307430051221062212934601077837335552585163102997750485839058380043413787964736480234243586494048240086657510627826551067982092539009102539850446948321239768572573187379228638027936174724904784932204577066433906035083137597085334708355360706067089174487585053420891179916134580501404481873831918075651879489053983599878351798050310215802502098974196033112202834142673088825388838723165367882170819992828272609491985745661947878376076379853702094418655196507020655531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24908033134526131493235275626605237849961696539966188865642162876282578663602526295065783607452800886613638153317064725934071961885982296869593029222737211524558089209892540399990029082555017527154012174890219581197519808427772812109060868971552610694093916166773971938468831052193184994950829766152277044569943545280271259694312005949396370641988849348968123101361909270019050297560173960129095009110437436149980698351524116003323894129197659184606307052657820303483058783879992890121403662823310147756253928858467669221878666458390551527903088346754751227544100221511658270482943950964521120241849138341955327375097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26296427956312544016510606766073639956429709770806076358207258935791456916749689757269207080385395825709757828995218478966508379709306543876289681901164566288735335011114722777574260688702934351846733293970438138644720345975645689908147096291671359721770981878026199354487917603905206394364141583443428451040251053401371718895425912706982668377064705404262645690845916597586678784388644695910837663123181462596164073090248941705850893072467612018556205155875363666225718634937453428353101253944628734161873424207121818914822731716588132191130157057146613927537113496968312810245496636144869247505221394793244995037427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22914274937309207616369868355208232419703571012636064812982900458310061558405424987996265071165224028510400882617959744932174472914235456947523409826174442713531127556531573577329250207670685677428733168813195838940915347123754339062741249474904398796382574018951841010457799339747697096647403233668211887172862148201156155274665734723422968447312605761651842120151580267417499229920196374355168426395462254418736230010249890793448455085251283993982952449018679802305471976942334217105501159572670338634231770559744063704146838081564203380383244670920702739672289639080119116414610510765343779420397870504135400085687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26428843585013263132407342463885851343851037214166330721820119089781012306373262314229192067088894502873954988093645981695683517254782467542850922734373690113206912641565893096732154954450334964133566582388864902594787741378086636633364808084387380529872215194271096098402325222569923705641135950698801443415416626533067830204703503196614200418211171533806312959312868431740888563404403197719778508493534789966346341883339995349484033237015566620939053320050482665540506152858548982701849864346053052128982783348346260080027564730709940278120327606437778419023364960991726562547334563864252744584285284273280659775707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29040145963996335397897133726511738166740848219421906357399087664829234012278220245234067938631772880988021857154460429021019430103652835937631538191699616112534843911063548901698590063445489491460550521808604903742002308039449657244333926651489887530971368013775733433920849972275931441008148813379502037794869053418766016845815704139876557423023542430799750553066460422787028147588049428456330308486945203154660790990482705275087712101193228625348249341370723486679924453374005689845424283830712333981259271050877078609880227035550388388284830499039457043893770287471530835227037953661654097691557308370646756585559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21222926323849782305520616182535202352925686543441490486247992269712620006131641228023755587814303977245058219572670692954561968354008168998976690705719811998429995293074729296230797123967771750101266888394819081011338245648565557735051835782243412116680233868508327579288070245492378197203242268916195844813295554526856580662852330943828301805605031532321921712375886379376448911728521582744624480919840547927866753959527660119624695990472657184710259321623297553259056385469646724350291102911567184046196291703006936419812807310874553670609127375125299782972107872580151462516437049228856663409994693635969218535683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28039579096392022890137962682681132770089151960068536771534357915336994765846378298890706853066175703658472339153103943736758176811956704995030209318149454020146423833167640276343750276731094072623364238906034262782126287559741109429066164366636015039775853220059012250122893843704577338197984326144964284495650025656476254966843487998851978145795998567708184368993973574328272999070372387323778675767676036274564929380281730204707748040730602597961685701573642943101143413181420258820693102983902958311836557304878575168574903229158005297608262928447718905131119403029064766629826159546667910260555149569621982463339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27722250281703912524595380621291222419343849421479118443909013740037771874361838686966363106906552341520901327623841330189949537460339366678592044512879400325907236654626351813612001098560341716774458578184432146423962086905606063262628017901587746464409028338775999173797627381454933871758109947088868436342651249917530437525849786962057846606895480955610737855287465289468394475264511792105403670229187489235048921220778640850666867785821375833025558877939635584038214033217496943922190430562981486519143855157311293422095652033719797805694642823706083732630094809021655481499941270510295400814442731858344594456003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26787172197494583643744335535677041123101243307846080048377417209668726519998871592348520242100916870640967209748513360730425784896688237033490746202371588311112966959694705994217047279740934308690847392254949104110193189625315096945758664231702212053996530437370684523003171462724282973696573486939598457032391832438058642256124155081106764408495237035553694903690252899403932591410035335464716419090645079844579204436690307846330588607332736034441994479963012752709520252551073177618419942316712167558875609670326649253088875543909786319286842048545862750720058696665732389715658657633572494876045926272656225458997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20273438891221449572393126299787925774797925088064954183900681851317079182838162617365726355683104601105850930334217811723131891872660053662517578150786008406611886099112794357371110474991008991018362167455829403821453082161047566677128523219700561733483228924060887990093513934569802377499502672573001007496768547111043613195859517903277982860460917229485294736554518591372858152123975423382641310370922760143692686702098786770829597909930997718916310634717549583937684062075956137441465550573685023774608324918450211679751219581401575253498748461587642347079476519422854871386040092586225317748860122880350694629869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23522064243080905005321281991571300172383530230735271148647794467446039366166033150742888427584864259689188414653232287460920627682598890010722793683885518898684907827801506930280999108656633646855424114496906665889425673552954456337732625257627892313838531714301407288771069264125056474504468741006861595241117079259211401404432378507826020861558178632468530621059580779027957511831275664828633874406218477012186349801950752153769611488819857876617410492839750686284893383552470450526961776334470265696328939102866715015582289987325819777803062977392103712583094946798410810970550968091696247068263223848880102507049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22039145684029532109529296219828654212659802082463920343047507364440909368529640337750793190424783021625549215613917107393773968787949295595018291595909454647878496485866803445409135986645019083326221230803118532308641762260900007784864443252477296515056446036451701133878793521126518070933206168320909243886644322494890493814043275417819032710829921855849647153758587160674093652700905219322159793001884500770358675741047801027804886559353242317901184747033900019080174449991681726820952599986399521699790931501920204205673886658847599792607196575587670936535774451986185551336898448437664423730348192195042584728387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25227933253808965931136836968153463019917412892396953618246529080480936327963497487497730544803454637767119789731373823281849458099109680651233740638195351885419755277981854803764220541391105382121188564575581484578630365010044968703861626687795259693124605685802689507850014401570221505645037854135517842893122127406061733492049954955783304794779617962677300091229994667750644156009635467643624797904956363123612137053122633855403881822264876909247739870393313637626249445432774674919150426861241159660382100602343084122814049528569450110442018624609736757513264922383609010531674757341281455660175231842730279123839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27483444597719771311639674504253681311277614520491588564519964858244084573130236725770104032344520692789155688330393330273307824207927383266964921575366043233659514018465562273145865797648382871813820670736344429202793286152244633761093137470621010001401232600026468678293474822885901940501974430279268825866346170692153233422546870050593429136659451642971659374424401580502431624218688650740982753360985755118155557919044193586707063144189611821972449001021503625077461480146540673845801399162529767644722652428285496466735823413907039707191942193000290887572317741733574831009655389460834021740832088906998128535791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19475561149870196642760201318470351940509809548518461836181058323837770294641758799563759332541524331708061247599891529761827377603036510561426554512677841955297411615393736857355774948855645552943889505310117838944580738927263523245554913809744158511213193719744304360507942890448765075550984855857638674969774398156360485976692603218472085861705471991526315546726068300858139823049174528133428152660184282908888236226682989666463498036628999203476080132933780930920267440414068367360465080791981346528125154720050665054328764011580605693778259193251219625042551764406770190249219382466374276283115382442779250985971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22669760393020384221386617428997620282376672436396209717893858705930782555209768055136437286008096635247045423708661650485418401795199153532384712968547402498033298525023975291013630009896637838566912402296503720987978651009218464962005161923270263802359929365069268606089774392819989485969703906892923842228292785572875744856428636005613567430431470605752103553011279476888328771090504256758983108405616484079547363772780848410177315783758305107230361094477022884119842405609146523519088221422688043818648279180812157159591623240772513244364427910673124896851171732758147489332347447321240345979857424664876387806071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27351484340471829056944503605030097006929864805363833933042384157176343028185418158281944296591562980384250203615571520128086449342498500966360155127514828172195671209156402136557246226681238957365095711123162413381758879603897126399449886890083910795691146777049697005262504838948827654150955015443461170120269845348533152449035685356089302690256894589101123357749169921001572213852804819299270134108577188389288385788482935658064244598196772447049177834200392507701352732653797185536080437763663534361456932674171172754629257199790345464385518639840126163412651231805374208303762920024077207917696723985493735856567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27161123714348025771008683427356009682898285123795406097500662411158611531315434300125725876843519961633335215725295488859240352665897252026026969378969050045062668486481370826684603785609955939475681752119520617439302434581260642385266207496394839339191350992426800686118710998051073006319437726610331821519374135230188962099046464805260150725547474285197471270620765414800772127374245315138275790161964625412958138385326352012136612177790147688383518542057450367902523973246877189631503217606863114465132439869957182532149785568860967054638992296958867541888647345686783980614810205763399282396729701755160248487117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26665526513024499261090172091574266795573995609385228341878538874377721788240587164201184132856882723460189839799067767672274814237640199295600731342189261430204882435682327195100521564211243685335710325640281347527225710997862023267863580817656329239859830543474478820419732633802279781291215713621041613835510722667895249977776433936416735131170212856298826200320576984998198912531305272218467391673510047490905520124268815717639063096644163994612540029522705054616432667158303940153747836463013816520934341308059284679419783978088694017889906234486900415008213092050998256340510261626030859784478546375576814442137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21069650910418274671920028849458897152586415017782149538445624490667347538716574066491921202627061618585311643286705746634862874432993594010832657764460741061569952361065874272484437073579274617017449633989080712328472301897719593803813858349408466679082049353814001863838711180091593958748144679824877913015448567281012532808733612723058266931023037328126476826448554387090023009754600962117102541509139489891691840004286247023844264240847720380303214205717682047187257414715807350198491677340005634965348655261947093910406923756416180118357249400349332073587677115550792764637051773622194386873540624340214357931743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22657444673089084304940436678633211350719777441459004018247956292616515947807993604171530647472659860627553097597373346062409967771019000134416732112468119552732548079871948996746637981101557016708358307516776778779894396624579448909359789495440739745350787573828056909633588268478093294072075188428002800680261085431316599985380515622694827625039665488678091162512621160810608037028132406762872729284878786567764457361113899132318296374925630442969940682174641303618373440408606369508851620733365620498358670604925415378108682196394764814485288900514527907584799295423192674402113568281191728685757440324104445561121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27585721577676423172861888494981949383958026905625061339972952416011549823884355680052577438078743630724799655967311700264399369487878453856314614866290086868810341783674912170775407491627170806591909309754011409294730341381994925925759117821686044801988539458245618421895541537269758172579405926734784657806245123949274330240369904681451271594137291754994190602076665971877491856482179460889699439908562973624396007108209747227185253895249896583760454265498819874519650317259499461803841232568725195667703778284848753101962388361581820306667213158644538753771449734248668390375017526979806631578796034317096281014759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29535300644086392792720379498215198611969981029630963896387868029260017667870468544528335766312767416060883431663165161103555281390590632742885953122584502129870846014715692848607971641437765771523113000046205301649787808885891971477872282083089996150923853095986640454970403469619900215160441342317825494721356812639807457299073447052265934680778873828373514019312762449728194558254648478313877778058433012507538608134780502786070426764577712779519705391867414381673406113322646728437303905791053690033264835713460223922370565618571291399447183406725960943078131686699610442033305939198476204967388554422250915974807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26482209298352341511116781716799625823716090896428339361013649331289866905225206977444299555059156541994289322141881293268601354893153300534559359718983554592264861227255179518038675072351862164015105897979178347825538962866316943984265522279245712801606130055406289470106950746270467063946767669688273006458392453896035552153501000662836838841877001443016214570143647446658955646210292954128779437156988342234209129842785962124375163594396896570259573499506225281768160622618459579535310879505755296270760525128131709051741397844624994024175557004753452901189746113794069498673920072169469745746898765270776569123249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29839833000437133190546877969324683380997124037550467050318760593011186917010044581250365418706076404916039882669129983695819958349406036492680409066959969920297318729864880251913123509650236317246006388320551747406094463060195491516902650687867287198181801060842781882630552847349236436979583059016187461218155250458225559608312698415820190468829536240280244445508044214840047983413905841846978041522008382323944502110708351607331781474747987351393011774548204732771362992860834879376754774837063522898859384324963533736306236395752235169025831308319473561077509527423565094652578971002215679525487485851749673295347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25182435997651296220140013368279769073819193120049161009965531829113737518588573644497467523773974643589533241095597297732255353543155483365028793557027545785330696151653385886097358310231501275598644616298855804624443755910966729050292951060895284340335426608574661704417277998798635725643703080042902774214764255992267926148480322182761294637645096389684010510446226446358538613058860938433600879349894405814385423763493073611777700382274886021975368001165889842824048237219675611356447236761507074291344432716031537405859868405005180829467145505487872568641676390199747707458930799652627213254743869463130687498737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24504096380931854717336210090951988006111561604607624035823398363552383023332324443703596134192531044740938400516079421819883663812951204948113558942090726415183927492078066933343062827580325341783311447147093253179350886394752255793054891107465055835554331359762442718572785121886809205927065413805465965149829433682424327262466576593268250425129941680042069187940367886188804643673706400155639064551510084795457568708677286356005779225938369806213827383679613314612796968966714406660385048927809761230434614607997878849057374482228860455599923835947305454808545034822760028504717191337639651514905727461023157146349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29275656411269402100545038777839718201314386343749674130734420258904330203222724375779704436610172792338487684338868066428235819073318285451266636798402955035158730860258307138820006535907443756080757640168009439569285858072149527038600399719717700673705130677676378102918027958139254035874918348097888572217435591984740280024394547957963321059968940640738356461819553739756777905146731850990935180936555721172653874742108688946815977474243517398816713376745837057120366684994676091641166081223370283229355692050848815200686906400409727398919643658666184746650224993747439582077944853092477614331727589483734548781733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26198133009510957889236056628618129348424933595227580094960729965992445281695723402345772044253635004908055882020254815207336765615158006363075967845202576450741146856350836939527646672316385133232807769836539686731552407879945775005236744094384810281994479946916717314053972563886400206048464098236342638570136142241902441894338916008461080700986279608283223399820394843865151381837864378162825004688094830850439605760073906914934776802533917514682263185746499882739069565809703968379144683940026898501846171033404612829366126174914535395829698713200158624039512532409344265655194187976607011567529779450240728973231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21346425842126105239986603767189630202409554651048736644274242341770282518714272457838732472464423879242847649478212327005375429931990680323226931426913978530363156672203358893856703311537019898017356503689316809160791154612234707092333346963167594945783165807562711626327243509026360928446147451287895060205324754238169125611068146204085572379212992997904003662081593883087775708616545265489609071768775142179340511393934594369711696149519319400776025085663477357175459451505215533109467781158766800895309964292695411376355607253952346468402280516752220009355672582597359683748825348974328430854769093435404468124903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23166026259215941728704284530241976441932860898582943502532637671918177500925464207940120557683148485977934595534488251781092055149150246573528153390450148554809660388865416438399481226370383802968056441157793363934366845243701436974576303677651243343708436946109531487996880050695103601400079969613825255559065168946788182427413216229834899970271209178214564257245897975992142795564567666485862740623502308412706679041167663681125950854272626916282324527150206330290015004110635294477404480758949628901998963198588142181574698367062111905976645595515119870402616945619016426452259962576073979519660774542283043825291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27822667109986799470860382311162283066799519034648251205576995488355080527917411917652723257849056639424259107998532845699519210519531474070644809289617046141823046261241700222474264427271014169706061022797744973163082114828081219128639015295141263804652994906122910658244887584352456906710236879739606228180828453766544548379162033796124124719811552742640539571382596677039314579173092223466885194380463339491140539385062595156556258962923313336549857905623007594127488703321981460949299905468873045611565054493088964239643287066422236531532333896883887748930380450613934238429926517345983053444054019813932904965243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23756367963903395336423477996211044904102044310159045322134859185048121028088451237706429151469557240655770288878144837949965831243900453756209186492278912972237480893408051473940409219291558934159005856515309518393816576480387743540752089681662186471578566035370405272803227279332642808310209826665014581706635664758520086678978965777835734906831672950256135934394388490194610509189461741945497496942115653791533727661149037103262783314161264147948909022240936437018239605964485436698818514374933850207065250637487461185858101775388442638351857077665886982131390680805640654091018554547875601920489390395700230889191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21872636010658698482750934496052597730814772255216028428191879710653824896948249881761909396306180292611712808808322805276907767186752075396780856508820689686872479392747261795471878212106867816136405588809627871305060005947637628168622948900496625855231864907310584155182156601566463479150794159005249631594912858574188687515039222774754933300181217413731358758852506565813204901374717940840662011486827248700717042872096585700065245428475701561613836785600192000472662530406611554718466307608522796121593045442642560924487700339119977125647735712700596801317803100759130499769790812709601761797556824558746359763523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27103754164183045777182110634481614739135620518011720592985649512775515023030111213649030591312912900026534160933058387346855101833604921016332683426695407136288708285863296484413941196591954628757204034328869751085991874483562881752382569056269295650416490199923249776425367581301434486600979963393934835813196600685514622478484433374011666536356895845916764891064291991112179729637921053348316105785962260436463232617500189896223900611368295637910574953887553087242853222639669022950937749423500441649791553819223775468290400577440823778447773747481220455496248061765632765321198970063471377624201743239493168127033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20295494201394244149516242998181114369224269970651326016707364441330180401766103385508736947308076973889897605534440311560087977275569517963262763593530772669171574996261749653530060278611653743352204570398319738401406973029036278383832856614347977436755568577091083150646477465644230899681201026756494804132432271919407609022375731618925723260841657755223075487112210102735916748301805948505220101475740218223635466188670465304965783707721528214588314057169146571734192324121803064856010947339552918164405476159928448270599668660646193390010320235866196854740836746952974164543893835771675008075791986161111303028679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27278031483714735609678628332454360958964639317743136818003995588477718675948101977184445505662105757505355070224739315967796881417736326859039457241967408709555874026725045888202897929834494234182281123134854120343947822296688015124379818727018527373548050775957517298915852280909798914751398905385718083306888045182829650933569075487969572338212563968194549738285828657710641330658121508271123433904451316967306562713289526887353378743420812430384460864405174662749180813043845379072828499008181804787739968121677668204871936862611820284719018866756311810641092394911600928827203003053466506270262563352377406641519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24600738113096443283550912620165347068716792527881744037528339271050347123643453345793430875558445281166272201592689677923879613494065014160807611228731495950983764764410458928087150526982813114797088160411448572873789235600330879867567958572948721097100924579953779845472737916797080941380901212773339066040570817954956925835542913013619206517545202982298520317024308311001778470645856033545001726068650267517861719339289233409740306872556891940186794287317418249232447256583538725420801155814737466335192212713351767999390482385288464458499076436353138603156930207047017235072109443267141985556233345380852887144687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23944148583687749989931452419206486514745028805910175372663744652339187900338682759835700718730142040282414441186576607485782207377216584033036824331889967993669479954311669977373571409760183058859215059568804527103497593299264599971534913108790052283597745966156366947529959790408968962972622330167814392858305468594243827697879091462301156800940363113128093613211965374955614757433146198288920858686910391383048325019812711175943510315635559011198545104507626994429939273277383954378764385053729652466363176595365279303290397694823550034927362795599098426554602148336460739710671557100702975004439562132248518211961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21649982753710818670799178690887800427469218656167857520152253407711036589390888334667187202028511216531559072167240051532170521445160639698980499171519924474991140257854556543356473894699722752630696640407466435724004488190594107360497127163445621137949790675540813469142447299269810655134409426802111799981261189483412724074796032124734842551934877722009020994248737456740115221744001619623088780109610420778279429908537160855070803036709226570804770174054974446132589021400383939533370933816817609106770179340690316980794194699986377147293751947777083319499302885952094535527585925743167370346457879565456250529053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28486035710371647846274721801152776741438846360728420560668647391741920355285631156536800695479195410757977664149739376467571949007340061465284296205073240776383353329504600802772175982476146075245710495689921043444385665991031438755506029867085491008911524497787126067812691557334749653223132761517073115567214241052412479118902231651329743134415950073606937454557375935792984158882955342770544679492536406717071252723637132360869404384980404028637668154743344772713934195488700344238365596337818322536679597172999911793735290822232515139694451931863991271832923390911953775010956683090179901932082109618930312589479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28614577267556466506827667295929273025014998159771968799051869086589022958801947451754400493854558955844307063629758824937214562974774160035330087596811716368970578164748609316320441065032346125800757152062536905491325494056674290298038330142045144909761311861259654290880483697308547722035961989720475992507577885847508477330832669979769349750590846195770927554658355845292203617016430690180090009600038884854831415031561219933425765468483205013747336985824142325428843183343228093159583987507295738261071958691072643402380589851633733503748281530383604728618677804286812788615126146898954230172864293408403855710927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26770205500004999743142023341336060102628420490048975059289410053342166637353462124364010516427771957943985993666498745675696244895551671224394797551177460288539034228509730082585826670958511330778534725387673467986792062357168495806144707954267045052147131971847475231531596505404890824726197696492600514851714554984970918068459082439286334694834794484875277149554533439620034711502489565343523250875027522434505828349351956651860904530273090108244634021395152813164551934952980497800075302330665425117189078035107450683508982211824312400543985470666166316573485252620537291405963801346472600058692766438144012735109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22807555820643185483735621091541862317942099387663010430875600732895129389937536691720262332529535544986800732013164722253001206907169324067315593304805481320292622540893513361082040065268235762357948123821589247097470002068288682733142250340021211120139439350490969767716253584756794191616545084217298235665820763080744969335312015813380591737987779122412206849142518062125841201032253398920924363738080623290872138814760848037921174475359798723915939364868613856442164527962948937666604924846608090180347720557932660272979031724566930472199073353660918765506491736804437761747827219971485551025547792249613445855607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25968786977565717748469147086805090839553374200492214546575212881058174372723577972989063555752433651650373776177090272526139509535620194678097429839190989857944123026982750472375903984865196748967057496995100934548706989121641108966354206418898875366808274315929368329385590073093203456873928436995234913162320761447006396520672739898180730685603001268791722580794850793785091220012218532923245432361751249600405911903342067018896234575776413089771415224412354090992025400528958459440943592695089049566234853437081629805610659085550501710935701665771103163084000831771333248590222268603299958655698218914245125998659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23244199425244472915377934858874450599279005373576768780213440061346888190331185618293753310322266501551540556689393976459376357846478229795298033335444121808561586945380845299714356992490395281907196835320786399032292247993413521092212750807870999903252399189406337550123809822388648091776548663417112981664655666054513146164128611006252751821900826956857146443962468513563313023166942795145153893469073401085421277776822197868742638490915257292126964380892112104323832492715805638947028281039421235415920389704798531965223836350765249386377952938924493652983913697922846956605098874483580722157834876749269223739921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23814968060959731351714720442172477938568806952543695031744210905050512498590481321634113750091214737858126250588891053625759848333269732078977047514294081642355921111821475250572721137537609557425173715531050574231263341454571664630270021940597221665615365048495289351992182119731675198705420470119771756857966239882798214227322190497660966087920028835011660284045517837520790864306172317097265447917758898968931812918918600636873939348919975309833118587075327386983101350132713067170035935982168508458508965563946239698360718183269509093919848017040943711533025667295643305704127762317963562566818139547125523797803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28551817148467955197037533431452162127404229925328287758462535698162445434178439645862279785467530745123818439029520609181234376031422426190962530236104158375546527686831418895454041093869285324795739800715110510905151925694405321457270487431786445466738790483494792006851058929960276093864967401054819448767016925086162797420883371227746745452152421549197483940386826250047132005511853271869859648931450807943559043333169778799487823184528932071576119578824003501764201988532249324021913820724129381716747233516209586374902667428396156977408284507905000687081141410066798308999112480282880818450433222572948389465533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28589111959321271921717604582601386014944241561870550096931358953321658787319420650478545904186134726955515667905536832755523402352147211242021575044169671900792546115311587074754814402958106606330995202796706224287695586180251270690875997272453820297408874197018896906853087780332473430603040912740674857708335537806716884754888870459338094366289334547386532295024447400651780831582111624830746774756621718094667201531261394010119953956842770391045959972750971469901629522968101114082364106543422936691459945180986007261007708936769058813977070476418186178715201398150632761910207089058062235248925350046852207247569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29202551279467554219206695654380379081680754730719779868994961696131540335807486741109009209120060190293483880979141229586850050531870502760635959973014738588833812360219785316414075806207254851260738985518280919696594757565510834972461269298708304907395657944380736496131265978181247770728389357140120245883407600510197164311760354597309892949340172325805309164397444423320931898213095845431531323307188239630207359112899409483688314239127598787237920602511347979557736379931448561118025721627500395058375866500603781495978604877557371966091045110356519853630197733677990093479482116508873995086893993894043778942591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22316224569834704104085373735678630683063741560849678593938166303917037763692812323614862553399149059408606490491511056930977440884465130725586360326673588886613095231904386653889494550085336417851078206985388657336877905041619301347832546192512777378172060640922888431759076417791091165489204681183899876813824672167742952345200333482112008812575770159962418495701860972984031313230018365057687253965732675191866613190070094664914490210172393818081361069060028730288990703911910708494794380589743159703339911940277927612457961398237872002269374534188986150764210758348175761651708682735512597306811053457523388219623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24043111503840090516750517010322479109408747050748257023429744084695429349775761130179988922927611053034664749279284351827833614546315459399076472113326073895132533266698998523348388795261075944712487981794325627677574973597149340952423287189904529199770676163195419876323955330347154287031008043244791415205140015326723327088654285126142568515928859485956912991674185083635050973686270422119937893356468699910670159773268950287652416248697074659493618874211691322358121939788842511048150309662023765818901445286231045318685074289972806435212504194060418598740454909179372481819875208372890316530321238962006469766139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24857896575079061249401788780239490414247858141071594115549396849164269252291621269409967153910477656562041157224338566475085890791770241330749346877059449939727164847709504783237648414515332001104991682566572726268837050085604100754776485257074708046919610818483068973671863911654527309112669991923292433643947081797651647713892664383904564603716174972703981065595470722542776249640476936242577924222698770319451625538523010038993214526245170776182359947992399466658176080764676098749632991994132292954636578667735826115990589978036960396887384853609230310179187784000929436225444205556994993291581567710001104159291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21415513106642778170365101816368082030088911463836539369479981958837512377297548047834837846322710653310381588517492493034407476619284574813172993857610704492237220963254386845394915536801008034353278263468062053319587100212053606919120509923564619761259464441611772107260897016717799206753392556083437861882660306395590118015157440365929217527519845164164189618350766829118121119098539370475351785987398594544181110091746995154422093397970626982222118477783172653455764225024352723488193049362647495632637960886778543191913217596708372116457689301680179315963040967330963986304199412736570627582739713342810574259003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25109275952268046541829363828784119451035636465622298657880007020453009118622543475618226133270318209317865675462430805869682396523203796886468160709980356142133831503410835562524537090712003081953824924552056243743129738106137322344163821455327148911800892227242654729503580782807937116108755875197115995513616316090060757283914240669819012628801700657815788051624694726705502431459097653091303027106671757265053745757038259673021225157807343788873121247579544663953818676488671551104310252364201104737483346214962136204006631030566146695139764927946172112440498993083139317819128392347978119592321324010362285988697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28359004879062760349555402649235889022540968347372285979035007516117899350284220351285416798248724615196085840208222591871503084807068871847975219968514110303334503009913134668398399712146456426601715868507843809583543524430104402446390358489200139172997501823288203141733765499862664858850707433968446930247334728601801706747323915049730070402828625839231049327541222846898792156881456987606395299369342590931495042352355482047122746145637165480285945477356380486077716697510192247257127678488189289557058369574398250242866098829838673155659852219169529206431885913909816975275493062734654003643376015759684569695729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28396204557541524030776115944284578459982295790722010369828625945583920247878238778428489671973325937985199808169478263565528624491595503953009909213231589403189347901466996580828643595428029109472625128427104319846305087820031556464345933972605702597337196665346063930364481041315167208573922949853952517218568835213983896288295198682731262099860088068545000474503270836387454313694343006017569044056933996158108873132001855731220148571729432527481050126671481557767932391869706731720647750987147842909366302663285094431366145733008905252494281370712977741849771598388786569687214751981078019621038067871353720911613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24760708965508321748177913005478263197023730398957473048737744000146115996693793295032936091417995725292951530172182520785605877705016743348490074712910920614420042868818272732715815114695579956679649398150864928393054878398916975854901409314574291128148288912173112860684092057858517551959037341332563819227475977617271119563782030068934449416575219029745164892461844335577635120951350082608045665963671952060053132771166342145659185157567105485051855220199376758662828377656102933095059597965462704447443103075751333428489657882362471995143053532442324474049612337747735628953323761162321519343035470229686756776569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24578974049135397250561362565289222878124198712475682333520458259313945396905913019353306942065663309443826788932457547045553262996451269566067936264218192472961436222584969318404537287677963339195489268869456824577577710416182917761709567298183795282467864604497539296867165786983435090576603208310613076998067842172606081951976474669867854747908795503430653724776760747657166401533436006234397736570916399738496882781365612632887905654083353528200112992165143736295026383188749797310766240337571534030482692209386666053187879604941133945045563466302566258487641537777746466983484026647504135440555881788445632776981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22659071781247991214386799049592025553654826370408408984946892137388268550552062900994222513141299436470430510695552426775330812901891767114737792276754611264080629362616166103508326560615386123142724613617041036229210876144654668669519549536784037384276535543929882832741220658895382026666619804436418223549362353503841029756509091428811553466374431238586837462032619563443255526341119850987524014015900235959801373851187766219720767205986073039981923848661291105967108849143415645178938056221571522855738414953245218192366871504678654804137964696855152740892474872050987114952711903305156353799720681262765169521789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24613465062777806626845014658415155960035786193919856660801613979293013025675292394429861223873113321708320249425167097018214019049613685382940952134454664474930842186341760719550735766213944683950012127833918902460408576450943819056083986656497386059106132130987899751011761884531575910862653790214679036912140832991376941629900136628740438751059180155300029917170132236584579230791492208668606989152273320862016785102037523941780343827624240728861966962022482672877515317144427359276834874616087860991318234437541837144735361372467998537086569409549118816233710217070711429391648714202905950390448661811377160619937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27539437898813572395592158137467053871155868738609172584956006995106603794852552818646446611503327221496795356451328431405080782849269349865170780996992274348569779743110860246766061904082906263917761640654226132624195725377761703695467867292956830731586208896407797967634696876360592555853019996051592661379808970455837377355118559164194885137429388199234434233294919074794109700136735941676163021065592681512365452191456446483201426174477316830380667761473765582912937585229122840110976930177547380245946171824477629671838306541704160247752500365071272393166354555698906068550696697307633785294988760179751015043837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24574989230857632976893851937411861181978548678748709473692965562579462626564354335910409438532086884376528594847024725659589641512700964972739493436372618559314028275405488461975891169549727588500221879143404490983189313257626371035581446075795536133460101577260300227436562870720008034946179578801276537546318295496915553798282163185334211019424227116039677971340145835541588729058870817785768431068942179968075986810284872844505473677569495456068925112429721345604559589123755240656631772859647629173395417464310936918468547681387111270803656574993514761104352619050325086701463483042210027506174921916259627267983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24690043830476265147423478692565819368282399112901133341710205045897988871766010186465063892892179432077280910605663787107021978515102448190206913211569599838024884410512771287282540122895264428221533954187635055430173500997510603072529918338778690230747458490939245454075078326747998460671988296509120393274896504220124865898954924747637912673595303129127234759864118016214211210266943786551784087078376124207808639504050421233229234496568292537894083533999023733646396710012213395403829805971788037822695133452154000967753160226414671754456375548352570762821087368408907419265589347747475633101283087607925939587237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24412133886996600238224176551664277985545253309469231876461808969819916484187167973929131677293428243413536363413163238038821569062251153146092040377736925377447074917463698769525229164909563481712840260084510331810978507509305379142806444791004814229219941767051798763474373450652965322054106292966416194819970691628461363954741931107160785571810829274311840997038345391984521628318378393915737811762782488102426623047185830448675969387952556878263342129555294763126481154190510891610439976274338519268142632052616668619287425161260574839545055952571530200938215089214496949090875790682002812149386556035677638148697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23285811691952531691296181107029264714516919467147497942831514876264719503203732903013752653571091767097503228204779646628626305843137267227353039329442798057098499835715411198110495520736837565618231083775159740015683951280868190150951479120225415850355765683980601265293621237863941043632782620391951602497900496971775416038511760426116593136968003694203897851534856036695286456057832892276891441230049092277345808459245855720950561573484373362119073525763236994610003516804982650442739420018444497157332530330287840734474553029639562478632188539798317304261834230268842638763678447604064443527745083140189350526431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22765652350227126964748315472444902536321866436537746815380424521776717054480232067200113463635414818278916437454996801579570836324156591513397735840469181230074504913501083166171374947934349034975783977317930823224955932644268611490458832826693623494973138343790990077560903725425850677209017575145782221642220687473346546894033706968127742880241010588837322462995988510752442206450886537460405417846083763098331535589728952792015400944848612812617986041202581585642583024913811798043146196494634592590647873524704205474548025968640541467907229024235866391352991521689504186720627210605214727055230330028878898369161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26077639404560624300465123119834946405288761065063196536767697987218954850729540082804003846410424968958657212171649733705898835038082279094167680813217405555943249129189259325420028764572089313347073336033513373123510222052385030608656611213337994765223726210214565797012066453907111178541173933425957952178607283267980020634318630496506707064816582009017089412283430186088260059988424769451108899392538157256078375921032199389164241921147465062719080921532369971893719304757269780468693308222588334428339183442917634550510900151644514641591574422993545891588579450339801209388342534303309124932363703571381680260749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20085706119152822495324725577840875108370417154496620241392200163475410146133972392428518170147422655877565737260961460797625212215728122932713754311613425437895622449213841701562901402293675161864984319189301106278992851988796403278729776968175259635255862712295884159675760363810315541705897016765676630138421495479929016502106160869570549779290451794868071776196206984008701480130412024515751763530644505109435541397972795063062258279678293599120101527102711111270232302983110165827825015663563439681825268970321952035117931460410234853076719415551708874899481839907126503339381224506124083371981491584388475282319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22142886668496072024866027403645243242535724961234188871793169261592813133333107402536787336782728207802530312382872232221965035636056278225431574833056650900443914214917202406152366309772621832979153214802612350135938643349847217501263375744623240544163527009140705868998311765085237040309554144663470970865927136348408322982298965132629604770769096494285599907036599610418667572133716456925862887354934719106500957854874606084055284935841951522200915464964338010112238320646878787314895981472303353605646016473098908782100755494444813178747742896483564536821104417676752237296792721520739137547700612212278240527181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25743307652731648835235012163253281400233971808702450556699709600286465563431206388927606749902237961111651718377100964425382193215066532993119173961727710235710513194730910685158532234083648401210076979263571258477910836874033649148814230171408250171132569647274483809865635172180396131274157908099181612610059929913876902265033316879840511422581613094208759626531208034517143747845262428290668245139295766208479146054436155828928686028534945917251889663299282636945257605394301758461285199183576775278725004526069337897969453079753204315297420351518184538882416665585465062477691276648633530988662655048381188166821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23412798572802279610630172704337858364894787707242423751592204011958140279356872958394861250640940998160669505193534531642953468735743030171354681379038697326151399900702383183076050838217224976861984273773007374907538690284181658293071937190583747686635936064640840497537849883525722640017933896930627057797677971604249924661574970490694981528326270599614198217820493372126854958360054053882073801933313799834281467168515708991056390891848579408150198142385171825472579731236955592673335579320355509259259551897725059453728686622992147217783851299982287323583937745059807981258665977425591454837920501313842294205837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27284158668219057931627375524827545325725941289011933263647349372981130530896943997587127046041104286489937520838605254445365177366594506550233084794563598376121846864860158894578781591847083084087177350140449483432606210669619763983448604214256832214375957655376717469263036992923763276658481704929991106398812370104092138814833529650928302201969086369230617477647200143690305228721443253440807227214817277678241363677125657498828638492823195201192631045261630389260394617158020479904779535651339392494091054392015263864214044199146628207563425471978340039122407139639285487517032187200191534755934476798466546451223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23590933719389725457802937878113222291305715877731807503132992831852116835840827800997648445605052932898234015886240902834706623239672839818841453740953417274451259284104752395524229226691240173063028900999830462300723359157996011666746895333380631056795229582744481742613905848686661840304401669193577103850128749387523112006117049455647570986065505289434356750095816587869856970426557857048867535273872336798120287394222616443029225676889762790744976457269296363285698623854015799292806641289008935611799859752885315955201021084333794320502744721803991991443186799325576097558845557167295670235679164145248130994339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26709556179760369223440106635565277082045780741607523499210053251569152630054679690941834318779660707550439951041540039372103366000623459406435673135354073134955974132391643011415974297332830080688255590968611196062675475754738271371609789955302155641773646763909604752364075718617070701948400733409099892150650051877681151919195787422859385294113490408356676437972314009739481077952428997692667657568456579497318001606822483283617693073237230998626519828737646844089884750690668966203165121219460035586321174204464495369384363716433094415469227006177129647306316943728005392156084479436464471783468219743015306295199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24120645652007989267981696339912226064141468198250781335194554017689156074748055646960891894222431407964349510367001114369485739682107233867741732615376168245451123759239393562458518245251812539036634884764085020453029569195237138904429401151735062630233667987870819079827966478110651786376441859020276699227073944293699571104952558091876938407867901391191275392493501598277683565357453863893262346444557059052335021150958978667084627278416431986373034179878666093440704873437399325927115226911704571881693955192920899733895908895333556238205432181904005217629868577652702595196467303509753552933459374960183543839461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25667532056918886239995067769636408748965609880208241291006046458097361548557865896197168178273496337052111903563975583271550991680436065683966168477714873407068043054421450722750206419651067263714295675076836194332064445385507245541668332790869750086803838227839807245143880054378168574840312798792289455054398129379098377169542962419665395354735099771685980343550778258663520576569572292746913818767461194586999398894511446034151904273833642494135701579671913007120636893522789672973568001430670645943158237059509499911990605991099627970319936575114533664898032545015785050736018667293711006750148186323805221550319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24342016246443192211890544782247881511831744956765747818097023880689743670692841676838302607481328805470600383585969581577418667589759258824906926460914403087125507601399143836846779901868244297093003297079027376668578797734193822689693940452101465645360401498947331517291044543002679610166640133405343402457397747168368917497558833952274889657272520916618417044301505863570423089699838036778396237945065709793395021356163289469251068681848048263800145537039669477903461520364103761955577756786159638946831967587578492746174295003655106998826169206889911500222680925438613730838548273388183390817348359207031461648529", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "861124992191794922113577573635922034409019145642563150735151769855388967103071963552191871015511993440586396734239056994065201312981514503531354361857937092440786335547079047218509129049549238705296206848173629901419251069662443740103336962979467919994213279373905744040261686770656581031904042493177691244526619042739772819022144971234083135991212845483101930272879327374204552114068810651915289403568017422182275600125143551731630681156552497122989018753277446858926261499580593763746779130029882203885854968565297583898256512828873818988033400096277004705327821192744501855320980253763337947322282061015935905693116241723652151105281844379106270433647575580865309930768056437815693607104433441788115948035838536865178068225225965904546916768915575832735001596509165327824109628374791045141270752383441470966571199968173448354092048721446084513973993615008500259452148988961823664692266918191267146066865839368198912986162260734603977128565021528729046153628699826158772923762325894600196098039810440144286975711255263900986224375393154445794756903154869887321671580118542686857421554872590254209652509664931538594024505172621353170996708089743232194018175660034680572310196660217750040806953886342193280229580283267969960318315823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "660592335833337979096898637237015071585426963524266949338858402273027648512952738909216987222964222233750588908951741794625129393436971323959811331768001102974029161454221343303278704711988396105906070086793358324776656620776224029860045309943693153325965599236590575908484552140664916200157899558625377453001042872525293595913409556466620504355652541092959302714748679437916293786756755452206993708270623878374065676371610933295258694432109854851616915154655537645416263805074676904216197173183024583040035340352022551506449282291874370283072185865777492050756153100288662823497138536430354627594079411212114508485458851294034326150408955709259060051703944483728585550488119036607432406150017568534380233704583876939831206956293154223597687550784935867948286551718913956410821079810590375442891991545611579438531592632553169709943832573224399190472385905109547428287415636030728567220937985551742033402397286837730428233403088130350008320605356882451095668438821355592937972208432813615976096738797935991226544021509168513078723598503535254315744553790768493188627524321195205697251759766927532857362445313593613443448197494536880387909936855782762870445967144625667341955645986097568268014445738648360507441492753291683591826470171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24651499664653842973193656482041146", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21055214215055016574968102307899233", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26170600780175545779627821392345248339879139853103393255644160607238102086331405042122424009285448099524756412639319413934287519006878569555944249707945275291749677623047876204864064251996119283933481879336118570508962372086649542412226941554523280389263892603185744749983218343861033248241526279430161733775505502983317538066718576337283985021793798343535213767318437276789917321130713797416760966036724799937611336565155381397690841215806678867105149565754382324834269018256467087988763367064905744019449400696913842559578496250500204402655093256017437592225616961613464093622442728530700411324125755535789894371189", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "26960570505725188981713815104861601329879995813050226087553422651579245923383165164156045456075309552125074726867592602611530131327607195520538520179169308011032368215671443229441730169125240668459246591131441379156601064877415746679489416649973949050737365127184266951555911074271621015221224069038220896034099433574718003416292322126940143247340639480112161918910594261714476674887655122031188158670342037360396247761613106234222499545721083120043414269276910336683597829212795433477215958200857315358927014917987279471416411932617800936754129859641846842030696995547952758625670942059390963671356857775607758398231", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA", + "modulus": "31628728622711817891836627440028833263562925503264783495343399249573850164952007623095822473390853340257147378705628726122819221681014106857884472501086491722602313444300050165385258393207919694648314762132720643024448457709380162390197115236251609512700432976358212720101777133279710488926823989575749183646800603529156584693882330621984575319788452906211636586162451862901265274869471961872518761157261637031514467589735327935693513936789863646088271988015078392691002069419640500126565088010032059994487597293825414761375974345166667581113665488708203137838499450991170410979033490979569428082069237289022598047713", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22031016829477791810184640556540044506714046693693260855233370260147217561743471228203701871688095472174752116962958018549640665586434319434555297352748957020066530109472328312280371815261777209355710001065612346506062734842695722293452579674008963117406963009837497170868289880254745032787201080367801055225581790529983756138745015236402918260984433977703203572091606507287673954824078591144755575081651620318459802328163135279729263841484717238618227934381879435483790318090449975695529452879652489556829612696895761603430545399211989988198564256684005133296711532015232372895430611530052157544066779707674105235789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23655415209644585286068950153022515921335492384110778336215511180534808936160855199701309693642935089745991794544860383178953679122875400731021990933034421423973984398155799019789044932861632026380054580964086304613054641841624622330960870801135163416327498330564227786003790078800774558897217491774007271968691647946216067993543601873808811754738734857876955769254926415831671524112374601217181720827948392768900438484141377484467778553578529310052707071558318140567509144471271400958344390413645105682891248997249046619877768375768923167314738550320549774137593445834954215427513974943694366598056226043388154568611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28644858872184922747085444806579451440957480133526728919446455901175622139023148891277988861470954191708807759852997777523617402486944040760512837571700644716274969590135797672833625012955238193474634151264829762556232790597105779623551542802169337841976602558214293543124166395973116504512365377129061176350652401059229080522751036321850018245108236630113618056064257892531551476045959454077610583045643229271220464782343939870797240656787107457812292026618053148630700584392642094361934695587577403668861104702059711291982272423836525836530806620463879597095370534595409182440782836248332914566398101833404481049171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28619786634561312375214824783740342413856866080156774836906767009581589741878316809597021475871539137632847158265836253137640056507333827787184903319208556348768290700371166292861127747230230142134777421177379296192525111643637365083042266673744333104266295974375346436379610999617726790466672600363512066933829431280686306944092925470681513213424630172294068040461268024191416076348645500533485627943282204996917988510731090552193578160892783075549330645803440363204223118463068267336063717358375120068470796008898542071782022922212572217520841132383170852478259489365428673020330340900315002074418491413687543734167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24945330594044945340108655660874969428715808313620718531908367259730077284560400734097803976060599995451693546338937107185864512004059886753419274480457217294333483901098044127393074378085142309624328765475103040840114004906822066945162438480976926864734941978961434275075685273929268972008229573854723940191452840011155866391861477188981394321270376194500476863425002601473172650968686361826180426485681885429702604682148082080296052561122087924582429569622698092755743661597770532508281398073705285413263082539460155627512165031681281223767348908319494571132942354546405227991925593411578460546545305635177437543799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25758628036199730954601326881417543518026238254106702175144687146663794154007788807538684723877360498553640951789141231459688921855063583872611033609091817986436704256717775617874028923238895994215955699742374528524631690243458583692972754877741485139923412072942007866759683813323355993263536031316501562769115782311585201270934911124998190068011407513850028828489723444467072155560783192874654092553320007194731285480041213403951321349929099687337775001529298168892178725738138114375098139382103624529450193495958452899873457553494622645662260592878122935821723907169173074732620246035647803946508580683416429844739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25728762129022536228005231424266974056968908088649842899548091676940478323982758233848092714259922351528217291648910304650526847057075576322458662329155184386414791318863636097428602928388645684148177841111091648952763510122263210925766318723877748898910982151607790489592394061315862631270646058061599998430453875844145082400093260933519267003712134878930767542939825370713208517296457776322684124815343104255977498776580413168931513853727267198794381207167016348298647251612275099296229823818549637806249378611012314758180119156280189566811010221064677201250469148287720823459355029757001416476792208096620236490473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367879738750450492936041309419907141223890859212182333993770384144661330383654403024079832726273582671068891002117649107574516234752030986644669797009333856300525597910194133286837900441834882402569416028405250197366533225257859137185502974387596175912393274914837745910686921548260436700522737387152825484225370295798955722602890224572609517040160227236603289456879718446761920511949164236807475842747319574927144074005874164610264183596109974717749277483169633629605243152600446971396420658058031739938278752617397899288043980263705807356091834744925191968827432535942740905278135105108568611309942728212924302783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246900878083162404531988137689246085541930084097982567125762780996057449943652429920918685247111512224443273652370735026682436014207698666000891956167947278061659861767785948494885725432503668098511220629565016785474534690715195869216473554638720373056926686605901243252343373914642500809202511291798801229488603181945458163101957353695105967228862491281086333116800195378003854147711517624692994812655195865862200803300551532407208333175834872630462832293841301085316471147732664882746673446401508328869522457131418045054022216165824221320572327153285711628439993097036399504270251514345851207407804323613546154811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17484836425879191768448699935311084669564135616545579757571687558243675099690680920943670656719124942514776844171219643279648670564007703383614715158130685566321282553862914070227851090727856410701982711345869718491247110086510499580094984580546448394340453555159765104760154166866732546704239087405833481468376491811863089788368493488989930475846245471031367363347409470603724678003962148278531493694661580852327556638100187216432153039304117065223890009448818256829880602443765706042030284928501913314825891783373371069587090493118761094745860365239468514401448336962293070561471376852694709958896177696669620970469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274325053042088981662436554905836815758896162663268796923060086574379095985981223006659556560140952716500994751559034803818884587575085939014586045957869500775019706824498222478800962882565799311312217789149842470036684678069967971469271019161298579602250267670535970281594109940077474672015281532406427277621260397065099677214660117866772688061974284060229032889978508618284293668339302133148551340810464787924527749549572961369779230341448679404817824391531209309727732557589603562117557977813695601811210519748957944926755274135804900014834920942588479157672173564798320686902857600469015294074896934162925730413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22278880244443222516987991250949777956641566927653218921279887334813492930688311712771928994347318806222165763694740187478994105677468676298757209844958674825865706592495474454545323034085012788788172003732883808228373704767283325965703861405464928378550089512816235399632513433253443068327895961912964203969258553599559928708994636336546468577992739589737314643860761375674326756220428686292321323396130106050029908382095379079963835734434088615138525062210600652463080736621468271339180863225292786179579316577515060573341774814538692055479480745218512370771867288274950668491626477477326485315029991967165583408343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19465325846810545854239824028898626341244943524373156149814694451555893721257360845480233991132066382707783272308133884194204016120510114386817919273766599785424585489541260701350080256175029034740234659313936946843368276944904887553141362452367391019537614227163357812648887570644499218010228917223745368723383790984722773490769869827251536490871859707843015300013737965561926042385102129032828126040144212702516620643374778103271535269251959161587419954424015986699826646685257108520739806942565061732206236778035054776999312621291207785698487065455902366579676271173218047924033536065402810475803081954963531029781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24702497873025124456326394987010620815472512057143155966076209232311365101671228311291094418667411967441802302057236127273687101646430411581127296573022831452350970298323209294639296886222386636523256993719776579513095581033164949833932430671392393624983212810972633039614092128647369077263202411798747402922974622247009005381712388065465181173417916509726430844452300760508026491877442456177570548552664422213853645541267280015027259535395439810585429730921401713570878086986384445265544170937235676587258576006661848933432562208310001193653162131506842929636310390845843721717265629681014215263497703368142621225437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23486796333528565987701580453119416017804113235154851401611083771091809827018999103776420840572449726774747030956024058938869764892617330357754003795663171237807485465545149330522268970323992373460202030473808689686677731863249316123002155657239014917626984946893168813604462050696789340760029941392595249419456715949414128956529101601328413246685936956787237021067519367548434269553893434554838929083178396927446065015072122767082503058443021367471150357336757228384337131140117693815654988838904698072752974229832480766571715476658796814244357112981711085904920943799102270878883674583570879245398925902310230383963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19210177431346004471210500451737612237123823152215505555372896894569375623906985380785690351112590366360944900687495702296632517224931409715200146874183395342535475010111667927885921290002440351819420080053765622486849014432716837547366438035382669524974921304014839178420986949067670639896470316436760433355143359435503256636712698721578175470788924089427502407361024695876726724501192509296895772968828032739457511519113941104348771738587248163702538148977785459252121046121997969546666546672377051657662726947510676002483483140578358922400775320548642453846179983165962058467829155184422746486917741655884925891613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24059561055969612020402670410871270552089418273656807637781472234112966585988687822898600511901986882707798693869112069931543506644209450483592733325569581328903710531318209010839834355401727202664231695825838409432940928986560748060904267371724966898332843545042237050157013414977213424206216646790030149936631726551787153520789470602165336871870405063488756673071453515671525120724920497416488128422413817145883011174546667006629023669036226459643780500495014035010093665451065862165612341601110287083480430622718959025905723094620032452141163430733073892358364015979062897073496006221138515805300865949095585813257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17526828433121751244601962753372130212235299559587707771008852343606858321223711016173742496656099247233449679614155955806265182779297524411131691081395597293923206062715471172542159091732054408580927515706535603891627225313327621779450307359261810016843194112571294322302608547091213069550037054878140235046163411077292963489953773336351643753568663607573856733701443172998274795559598342305564003064096361652629641973750732654358768486755661408589489206024775357037090871724226047049684952289627366717200911014946787769313679168083367385051039423893091741039921028604885180737834850405994544354437086534343853595391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18190597749019485718530761024767038538973570948503856129151632484787840657972938125713398941308458170063050582082538028690628603218578418054469120122742016222495138407512359123957194080456753845001162603433837859506636936374002645928675336777622416055311194494756682223549273378675313961880789355521598193761681295431349121268479935521659290279075489909056877820947205174414486659099535521176097764949153399059170598179457974693453943127804983932212222295723266421599396808378576744546039228901753052620590162261382583295526095106891736166894517179680361844318930455197473028181945743967021302760662233307893873063737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16364440902050564573612537394157669655418579069223311841191139697252093589853161038792102784779866311874239287510128015493063309441549542098709524950712796349163039193530333992700696005262016199700103392451116535901818180975216438611692834038118419379828995011577115306041557590222175439885695839611190248802373438372074151201459534638111783189655401360630047775114855925972618428231001868064920777499645712927893590543988189272924756295997232419611575028791265560005418094536862406795644306387580776057583749193321144927826531358029062907711929269138570192195502177473473911783144787394697712302030109292628606539339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370738200827173894696021897406768834737877721024156104734778159520753762553835948126878309448591879603755070001677357756983312997544781227754820261406981128481202937384489933757174275700574730185498046201933439594140327980310260636868223409206302489269691353021998042183690899635321834296410670193577798061901259758070517722573090540453492027760765191678753370952016794595039471192432912588366628207536838380260722062155855505531620753482363111237464538384092239905733232097682729534395709454534045411801690465678186501572496134138546228236420909891444331633187042748579389329025603638008505148567016558068795281437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18987452139822208996734971953332022707645597844116245703630024468124513553380811517978415097317876902949074820721899414412260539468256752283029202646101229794042169343747683324470618053831564818138364731963898830434531820873371191412234998429096130137786289858746679404066410217301444002674676820815943107931012988168990980079185608753481503514440424393717450506129311109508089995593145145646253814655527269565910739373776727439066487914080974669618918341395077844152210923195304338449779686110133698607443609457109316797520515675172118390679511523169932835331691112730302285777231508505789617845676643890344374711613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25984679407501037266866164696915254382304821160763535077835076138666769017602875493557351375621134926059861637226565432129399534544497990279531233126770888394762138153422309468090694227291057358917155751068839111197677454493309230099643878349042791624201126570450158819012435729479163231786014777873162809185261892582611634699569888451126577416235031956298376178119862520613666186045506859305922832423001759382034021322286903716326702298155430644785902420087158974080024373764242468278799397822194672527710742765894128143268402655458021406776939319546866315280568725764974049300146777823004598058496193605200194711073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336162051850030988256519183186040640900172617711734211288965777501207423557120228144343110823997300440253867873387116103059255922329306138239121635991518081264545854012869586018889248876163284526501972939257990916928193558898038984792070095701078443506311218597553085231471005713795628744144349168109855133694168001553824960958190867103351255403221200110443195726466829507443314526292776705356734604897360063543389589731955226514474596250815710299842186428992493606392509523990622557984506241647557825813242982166641977475202993206824731671721530943723234235470801514152192112254673932192150860428254557356813299807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16445994333033279192383636876400656997847287276394575246406787244845584022724945261799419090165185871851965734929191538104279239638135353965901834395687475330959151739155454458119694929190697155497059662208610759202906674102162340014815216857019617688414558773602883406990532101052256555371843844439085567224875732182474734501649095320775946772158664788677258411566548808874042970169043736909464185691746954693385599078858790699649201234269144376379797442674765664464132529281558802656921760519931254722852644766670034136288367157928068083359554136305846250733394273454963713721882283107296972556444269623289253810289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30017619934613043618753077906730087740082309346568250378073916461240069936061513384629321270597876564095311142643049284154506086002175359751106109916586617109707879237704763855350175269503023285194200452056529710567870699467416041850149859558771293904768281649535295633532762725209172800502304967804425295373089434679377985588369752954169712538542341805230566758699733157053713316059404135071025631329695374049937855348031170700122886705843746121893000748932821011246562999320638667309674282564184787230407815191125845784242663333136330959579432161370385094944303855393250038534626610159072827125731486809335117575537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27891162955398360522533040073640877425817266865959426869085267713044897838957968562319303199945921467272290419692518359979305295481403761518144740121668448636015862057637199011301559615470272787699644439135019676432640568343258260955907219629137147584537818827667241320625917325522437607730730926193631319575573967734264421318238474615309497730711539809130733232509169822905388348045734587335040083372373779842742665878963031773532367438105346477514158375452004179316675536508157169679210080371433378559012755406951470262755955339478152556917402612595011552652071255925460209787081099359779830136353085199417887654223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28095562246812404818888517765726234799647782334298888103382656540382427674438727626195854802055593009809112364417396110043485707528485736490494673200513922764298402953863911754252152125617876529269537584002165646064609536699667842908477115969985591281929769648267312487381299323741666075052899108566835658408488978543343101753591429310381095075237080891288924294190998113017939263627267056379561128058404564912003995403949390542417127989342571248501051386117477577354591080094063318570688310736392446312258459542850170859204517753608499600883353553309514123044791132904448035447105277694168191427846835904783285885647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23527037621618914176404534043086644136139558867887642001826974834656212199645280223167409990743836959223628573569559529615123249943393286095884140209408280500329345973571563625265744529635025430492767554652542036577509810359539711883567464682682767177724088500098463714785804978271679566413121146368870767210057527826779325514966128547529033623623511048591602922137008759307234097863573177793995565318230877389533211142191591599084607884671546306593694754840159068632874688086659925104203550968662729109927421943598353164568363822393812660797680856078916287306382309921111865368355512212399165687681481857346214727497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18533450066840028146059276593899146368255496622123424434880209698957716727862684923685242378694680034034122751706093448141458089257924561012279730963861952472141899784658309062634197460600659180279782418295181870488025918589406343612514857801959582812328624102517996489849931170491758702334192349244845866722230596072392939769070696902033451547452952729167229487425804843146895310437012880357489008692634617337104865076803774042880104083508323621384391009375010503826701155057183738497315221830659653512419560557492428587567435265151899891694221198344832417772095376508041279645751041178211635818882981144791938138719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24125937867048154794438360465125872221124677803533760398576424725560367273482444608219801014026164266461578773317601797893672819282744868512858763753395843969398791798456542998588180424031826189397818915874527767544955891568989246831798186689648731951466738216530323244348954472760066937017940081552411915089622894332810044863130373423701185497508766576142972385485629940116231213454546605102295155846764501589233390364335674462612847568452558762606700295656178253949637928632725454032157501281264206189389368620347114587652435690210023453372437782738764193297909361778705291867530468580732219560730913682271092377779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18756690990225634843064570885498835177128327153347406777238192469461557391380266303100221620252744148945004326078544922770233012418635462029590384189397009908872150997792158005534829505528107644917864316664120555752994039525429638460377954562439806345765827809858398716329856142610328250368780359304567806438819950200201517520750235903044899880626629561187099168959896147461449474999108712784994613212988710556869946023994459284604407547781979067006506185418650838691992057661729582385572018458480440870042628187561389330161035429407335895570937861694835925811486983511718412139255545055819870615237597337842379380539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26563326026786953871517746490906527946905644521714402680481886856168818291520630982130446486843393587599622042384849801548771148177852489602940588919158353574144022728383905804121223813728310521323516266280570070119343089183992587755133291570917424034692067300051949185812652907260747071231467881497996053586926442958174455985509631928988838495779976942845477804287979930979490439936797031225107084584010139430348799377998556672292211937477151569719548484712515159213492660345987695544334550114250826727326650011397586697408707331476529516159602616768331839236017356164831936460358723362382656458891387276601133688677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26336321620066429115646212187447532355008305739590843751334030423557551706491171465747296841187313163105817173902160267730392445796769181403181449432393605862737500296767289234171613093368198124458545644615244985729631751569786679857273001658834372009039661467303764368189155751921837194183228147777581211886443847296770159498250773938544452379937661406699400028689467278903666251787089480665389646059364173640391319303291334704982755015268759967330812609959413611440836263555900917600118307812902934115223379900527230711638622742657865556069878021893357431421540247796486839734303746696423477619071928993169921285997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25626842032932098079539859943392418978778260918745997929209011941781451547518544652271382949864216036001706897964839121433853152589253796829179711833240250132700615125103022509463644405332793101273971592125581383206026972126373458187634409231540130988879484003609819053833078780972057122663118539958959250082689658530375414492738681754422583416431166754032334062708809773999499247631610984641660390130154342337846306461236070911178572367231667858777638429864930309770962358668317550528086069428501442642819895611518101432594918131076052651194279107482229503599001051023617062258689995433027041178608906483667281663533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23165421771304392992892553947110206304509657456632015956802500413921016097540885035215215523673335713740443233621522590583037104052408693679568960124123276589375549507403394450602872417079081544621907713254327738603883236387872359864960623340425027699378774236442446934890946563705058659736690090472421692213457940795952906224479927325769032653267217093015917320796910716746139041171110822542779596492535727295926728643470403535788022180784584821183520913314324815821272695338810592467744755180837029380817892606045643959711877844462062447836777615818813233224784421731425370764177448803378356731398647531737850121533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29479689809499141239542945409418889349777802781619084124773801723228048722888457807148206359480581192393627253454808228022382424632563488816177593453391352637343374478514755761676289733605733452358305316561503994509490751289766074437402204310496390895546504460328418805044392811252358788418628316305182101028161087779523985245441093340035592987710008829547879392174685642261631406576620351814998451859829929080136738922214584662769300462177180744072910875821248019533787534794720153886878436943375168933844143906233101509597341361949486283131077353769655637058868285821877536907902507620086212761864799047543485778399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21717454049421122093668954131659078820819196256637571805257639373832810250835614174405442588748049726352893966041521185164648998578067333577024171463178719167289859626698159017352901635447298558900739863002855575902962142159027995837497712312099872924128694659154022789743742393847031158670986715905921273695047899895445693271486467344183960578149751413365539483843172568958601921257767920345460549752243626887148618612503166026739397516060997812727109499542851326859669234153056987395067858996199971794441889187692801949260915064939863624175621368439922489141789764477026539900116088877427634724412219059270735125651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21492304248384067978004846067247879232460277697334369840693938546168132732241743667629904105742263468115246475224002622373001747448778920639331065417449172116611917853348069846935012791815025213857114840863747610474557425378035612632312686836933901238615866940679489778333078751195522728315763243568322593613784928823198150919689221601189320286556000139233714415269370101831819604238263504674134550920046580898428971153953547127615042997895199044413548209642297084006166945482250574099429796670631922850989304801445538638560579861608337576507547752555000754050970406748238832325300543402881578712260290827812263565277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22679133389008168791922631363221640361468260119745084071703451444072512460513094457939333080775865014331727257951414864254713535162083635753974371128001444226067162648439843857430609066396746499334488079261618948544198786569501499433899972390817653793624791295960170589129785216820676699516783258509479295745663362538302841997724596269715721796409973435532598255194821376417620988497177126925915684967521620533143821390182188320204915999307110835515166643182045618235929039277977335630426920303695787813986516402679584152880201877723819096665949702863683167601712654815665687969168485734341772130648309106528360614041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23646293810016925952238400485024983224483463124446953556107425720129569403685902644964441211788263717143561282239950093953719652016138474524380664517719248540483250397079644808503265601214117360318188218279662030608710224823523734901810142174073827673068710105882994051738259244801507134882864454798086960042593956279382550041052842438888460261397553304292097338298416446604192983057025777974375447261547711476234295336918055744577651124776533145264155533854084476898178742063520116066091642606774143837692557644841139916865479766300133429323482392139948174754738488714746002002150160995636914339875996157917497874101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23727085293454032718093290185905158385789189014770449146398027057307376937209323330958417558440199975851619817104584345428413187111422317273833286334125670451966856050972311575927209657887900548031511236660347785089436798785567101473686457542815389378344626413165853900715484377310327235647535468371602655736979862201199966810537704384520255341165480605546981864560623127497544720540405456724039888869897216569498183103004002075575029800918518288514898550920688805059762989500112956049103822690890242403551200975305682826646160980230093108623655837797335154888468757875700160620284393394365698591295059316012866315123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20041504084515192911463689732121828727800861065729344250478143868824376648423493118959227574533548311316661336209409244942981215109843236061320237612698327036612175285396834677758002785804494553338640414149272561450687826227567582702455624528096653163048879437989611937302909624246089504066356209218705330533597268703680037717486402981488124793747412894465041073030845549316669379473901216932768724565370518697631211246181461101305308295961493937831972898039236518056250537853824287559056629178941616964484866853640452315237359922695996569283429060664338000185905952603498695965853731184389516187429802500805942134171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23634591106201632892311339143077077635203592862723320522238872755056295564248034652440311574391831961343058975793452569467081170362938294565545493959956031666200865352133602910524864514177969765762812922075325472226842582485297509924674607331397468068911133156729321863679453278247477827238505137892726734524363898184229717316541953757360378158647510580085034554392702657133412391080988644431484296423280156827915311283822566228255705996209840778946214513014481693689773281357732881483822244130806782926770519656529449357887778069549122252846113147680467058532051098524733964643606028529026112967520154152743814554527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25793842644560652838658371563903817816734191141421037563503476374534207251991912104964688627773545362920685821814163579063973092385596528012988661076771493943875775212335997720927624680942431817930860545618996369991476095303910268089411759397328477384184406545148981188405531820115467453142643905554370930123862434697956016902660435714069368846912820862604079327325322760329324092700037750072394640093066539657203908538237365698363689344819825999720756230072267018626765321640544089710827525738782786293385041978256691893919834634674983985163203597836259255484087647739483142667291744463224306709784969485331917742859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25639103586096574126802009176878794279817720759087731724365628691856031621272637542590205835372584273461149892105191715103677632815620656156731859167266672992797960849870584789622614012985827791223138330279262608373919533740961676862817831913778420334159957719027891474454071234622994156646536340345305757630883000216472870386751694791838333659711763852086677254786047478647240586203417640888316441205636857264868304797235704467241829812362968750560469644354309446899167292987355607820288755500652935987527049686426135766908640298501293092051344691610454413839981337902333058322059006415404995730741653218547553666189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21708894325602578731110812758278195005107507663235878904089001099678791441143317537976654396622188307359449307900652543836596915765260183419734277885724296725791746661137923404171442543569685887720393935507014751474120984317584941490470023509186683293675450236258186258297093256491712388501317172735799683424318462899406993509109870874849083848105153151893924245330246539718974814757991177573220608027290054865336086763980141023895120433332656544353262394118738183649816788703547533606032254133204840263012932466275206670205110021805691155546954755397913831455188782550688452335952113371113910665442009524859078608467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23658257655361996380454397278237732936402142927006679791363800822577631535383375032298102559118984956244150622185761897994563699282537570659157181523803729348760153982535562681313139058893160673949030154178273637154207072037323555579368038922547053689844122307259124846783113957301520579210971713610650111648252531107008818885364902758429517354182247576624022693258921673908052389726403245339572173890825585864518664916733996703560412140784135754507771130650826664545461043985708665549788581150703404157240612301755658304907355201600478457411308703889796849983231959656366515785521167324231676078049536243899476343877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20309877456184840198346787431391184745813340292343307562018786953798168727858789145486915735635766426060400025678536003572066425860739435512931349579130569930121502675271523233524260251270135204734399727315117993918933725665733480107211463668690871078181999161258747093228391676471687515189214447463779359387791303614444441628852476313374987008373146608981429639452821874423145244002617084848857760809137388645760349937205159977565258204566368623194470437984160498800664655218640464399073921911951398938827242583423011007078556757345389463143080355834248867220595040075126939951258672488213240905639815601767722211537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20851667816778391564221692905179814907122567041675442455046000582571146908470707090770267319101045390542811005933180624876956356117922915321657241619222678210989563085602393160820662567844713524974540722331353467963617803953014695719244551627012200888454026849667555274348793875901064177853114677422288844923895667590912312179031742251347022261579936272234755206769465393360176921800260946540550397869803657125709465915796251174621515900062515456771719357714466704025592976332245410936791101165426789697473283895834734768744862363174475936033413881005134010626820013645060506624992712597431321173454711482576532412043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27826314113436973571661307366546615872735760449818857122855271913448449436148167574480097481588359875364879866469273387140435304519346316085941393211748429798374804501501703042215312858633342161114396759947713930717963511548565086382221877837882521772045155297501855814317085572395071854165434910955380376421032856836785488491572646558520783138549203433917702952269404938174018140798275670402164327289941025093500473353724293157357715723864009704220114273587299603607884942113722560871454626924844517385955315346551184271740971084680808616504914880021123072359838098754544201963291411026881868913370811011696213802899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20931656697993688765740007031236582782507817419185656348513574843294178422454445829455761363539955957394157611767653892630389696875317620272006100537668493140452631352851339547012381457842936143686868851196553164420433844939764463281268207292006943202770377755099255899313903835673174680492324363442044685662067508173121967894643838905903574777637254744650997502730574681917369202735535854319958300128626247301176652991206192637887836491052225023167472921351047807271383516619376287296882471335216244393089598241547684978621259955938397989945719994412895901632609786477513605254178962518449324131581203519737317792969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23365592260420778770954719803117312697448059899941931134484943696791896085774238349331711287241856844696066207245487568712917361593002531410526688004224100056773287797144266496737094515432889995793958804151149683707110571875651844184322057948796133416575970436296475191191773759672725924592634232026516267052221996135098505239899828758147529359731615595741438531636278368586645104068062884197089797882258324262825262841102491604696946211966902004415691790143164951890893890181016666419812182689865899415603590358382110279519306223130138011312081521505883374873005310117102002350124430589678021497133594071122651036749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26555759735577703854865548859100288620685539995686525962763783738079026157494954375710192650199559226696078012040027815867256724103015123442604278087604827646164490586628370155292481512147307044734628222120046895201325470024531117654057468543037305916984790707158850580092091719716597286667238906431649722570395675859961861792021314385124433866486103668453868128999362897664930319814909836457790177458940287413381716066290928696273041193717144164035836696876421219253713735414959768723656777254794552479379449582599353348885180307262389255874572584758942188767334605414472088519888559598881704125974414037013916273441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24864773760328668453479615077369583913422955844896923563698887798135961682672893478087648211183273333404316273221114608429004050490761038965353680361953020476669950245560178602010013576978744799531463151705239292422416485050320029927774772813988657383811467698207060972051164480977293492788917496661302378401209135953961664827064794127824163136824000055356184768788688405154109291192385436511805960739361689400481870331550435875712352861199567514646235203005145317573900764167429235879261519360373615407167883094710881721253126866795552927219627373829017803829839461925283922406354412548413392515501839530114756946517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24247990170755892606280117960991657789858902360516417415103694256316343495000480629326130606853974685531868999007196049191505815454856696696325753147280021801972695742783072085944602863244336938353856188823420560623235757397893880272144962036429062054546165679816052298192453224597824806642130715275351853623640830456060946508593478453235098794600019699716694772105830975892817175434344601528973633300072120683111288828998460041329318949053020858084602708692035930909228099492408108643639036503974340560870052428739613724113985883525447502758455639946725025704674846704186044800912187642608307567010558001355338221577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23039284853310457505740042343272733460360985245510571761454864564214666949877939166579410517310782947332925111291260618886971054030939227378679254120802101840422930343743261458427063702221554671063034787638697394937015794210104278538085520961495953425280013785209743155546039202609298426075059600971386191579558800617770517797499158626333110673895773910025653362397587827359252306957456258126988509452058534120129926113662985562913980121801139627235092262450729392364932583051153007991138144952562044023028699694264236897670761221255297838580674283462491352714677192611572415349209159189497314526354177238734059973241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25959851907194917800632339137410667078934852756442262692993983606962328068058274990771099917851299040406351037055580839580030128959838036812427646651397533627479909354002199537681468722891462319019260111756592776265250098627627345172391674253837477814395951755410707886108154635565130123541694191802064612032222895084824304930484256272446121822053286506764721339350502056228811310574365762987496251911896332683299838732437922340525530469157346841093392093770848211732371900213435751986851518144727887509844554979075704125625197860916428378388450612210821842107226969523472180670210168903954243227675756523640460486607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29661689110767514801281252042356661268988245168573688772852043112440432810568643383353075943459621790437447392286312520909228880526414060971448917126470935551602905246687048953305020991989478335042701598967177130752876722186089197608704578268705046189770321067612250189538006868847587197617561037114321076945733003627187810918114367513139002411265324154082943102981066234145231276708430176622668249279568146620211044556035353828068800110979815155054722299820809271385954548015230755354167427851518319615967060660088048051897365283817548130163320656476599861445007403466528543124965349417956921384236395740592463759503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25131573637126140859449626604817867373387495882561141589492302056386972756774047948986882311321883725156713480465656473271981480006063078007931962859067995420419943653497910129383779239997254905443477107042186899817355485982300212253651758098646616674134668759782420408621292668111499659388165231255364585560652302869494190478285756765863935180863982618592256453714813738091100573213620712048694619609858297724813514174213578009499554085394540122590364708711845749917071217065009861993164453128293327003678052223406172807793156350229184381376812102855476154176472022299551670973708837355385186796777338960090848414103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21656045799453699017314366839447707", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22574640877928220494317500810783325023964919585264400355934741514346717529257302893995545966794629794294865636667251997921867734650141202291051486539291773506999771309978776606120625333987505673372183724858295077395376248091919365246724173219366452237043791963126032005164933622416225075361686070472042286326914578456791838820152033753815475579852275268895148404085125491645517386257719590611146130504157847505590772832542766269608889507708069345957023669053126543145893688356647412531643845455252492933086005070893783673824047337408296449550968566659480748191257534464006995423659901369340964694049957781986003899399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24017016187250305834229605764200171626700753690990601291198756376598335585146466237106338792630864209450601095257376051748275890455793714099991052299505585723446901833988730868226564753105605978827870214142988912421695419809142040684001365486938829273847979188426619055837319226840285642653946638808427078539335064752775208830398952922229194085209697348795741173619557593755430620621188027113571651628689758119988664027094535871793472672473828599579659247392470156240192415917173952170409400138943121530085089382235392508969154427862613101912662597841762928116084748410371215405586836783247524893394297679807905228041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24569809255299906360962454106721174158312182813875090149029130165564547397175838774780974540994686222065805296294602714034900135084748465840928457340265225401234053926295932032466359738979979115327410659173506648476512224830738165963343071869817501683016745658448414338399553911535143407951164389607536502473498255635116498327640851644943864600331240117258654246193869384628893839063650689330852535133830438113852892670794343172976342619284583002973060622069822848118927937397154728419070680656098168302071367060391939167936722699045540103567209429920007581777962620810913467211329338485064757487967262389778204766073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24508155952317237680867435316191080814588649304864918245093918898714903894031810009237588445340526423749628866256115500537622759536731319291094206301547797725124556975072343398445260291229937104529476717205876382907007291670908195537234297720848446367159412166665776651002189288182280211845219311838709902913132059131139802575501749947866438531860580259520847651522594755415292957787767802930988232666576747843135923529420294276592031651244202959014923930755597476065303401974809223575197923275229593774524265235207097345550788213874764859421865806840559090910236252623572492552910158180352913375027800371617902700029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "27113304285848046937358442260477245197988901624180139536108963080732390298764727593480961479010668249319017479705647199544802185581453175905170192237369943210873003119709564254261200561959987670212571137461749475666625357503321560743068961671075267256323473801110515669250761030138682592940388768098117646250736634984923379921640619815077761312327588481825790294667126263963507566058019779037922858586880488940966970706268904510164087067043580152529410793039654325868808300319106469429716860704267765967495851202002214244849127224528658812236504959022723865615923440780560063438331121622834468045800981122801314933871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23211069790055877939614516987004887", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21479329334519744942152013039239524", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22560408054702314169141524282930407", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21775171948371518669687178805763925", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "22715450345735138569639801861708397219231498303315202738678767686393357102416465973558455374297636750866797015997043545740077613802468043236280503898169412676220933732168190496370801893600012124267422445621564464393317384040761254842939314687465389017363727377402355156477398259132257761243248635649922116561100337462241331199703458140127216617002390279542844259692208468577331944403555847579208363426915256381342774303571885060137319340787254809962923280212970371499080768642238088091849339121864685766126642119138761181515170676843985705992463503465787217521321924291216830357730035202261206235086471845066109596677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26369841202889796925258833576899168272942691195755488133192101193463406499874561270319373704717300733590129163265671786525299143524075956660497408009011810091435558614273241060777787353711321194288751567539121365350081640409130447218183183797963554529794014611838901744531298381366639965172611198012590271942886864800855511017914875850093455075645446782219661545068322587703023913387158721245250290209395557693634997634501110744222441373220549983500575499706824839722303473353170577545136479573823046899361113218770722982857567875446843517013745674134727407538528846629214088092211688948146624671464871707064904971503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28536975195192272593220614209319544956513792322773495269704276390157879150213014783080233307973807464095247062634462540431455295905733434467497065364391831373830177739171722346906702476630822355523141026362169359258293205420837590256656442135425227660316230459171700072129079373869539455213819569081980293954266243826387430017842128033213478144117682589460173618809798982016870338666710056092384973522829307858488139469128300918528756322170569032267366613658491653458012321923520584037725888850616603870024545445783644184911400426041976376879073986971854207557189909859810244422294313353109837414615479906223731677431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21139958935010770151625687557750982100298965547377306934464890333923076764016102331979910737707105660736991495864864465494456944962526214195510255762887374799278275484467141224968024640986010008136646601346001532217140550516891549426232209478888517815000727204715779136507412611331603747779630572626347985043284226085232797741071059775276242061535226800356672813726800280990967270034580275397212265690978793997320262436573396715293243439179061502518772280572391514395726886306037599867758692387290221568601023245197195601745143593851312027175747668323280071591955676450961414595956213905446790306927629445362050935411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24099005408827203454862437977095300474550147175144398844996746567868273184469531975849119205118227655587720923102607851748660387592417891356497342310432654306881663831404319189904670209309511257303768197426836200186821896488461775432960658104887552059367657987593268840121794880853368666765249457905285314641598339108543141085297958740820524780149342188805548057758397861752467389419123343303572390609562583673584967404286443408302945862636677807335955257716118280554627796428167596676359620168384460999153413104158309396966542894407980319547911060371317817560242919427729026513214430278759510676963146907239918506473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20518399857780114909316365486973547170635986328869151590715339740121908151940967392439074879515389162045594174324079342983744102483010980685840333666362499261106013789359039196478918588224745150350231781384394832789136561821152671956796493644570738396303066196135525138640760113114869762192462128769564722870533488640460989830462266728086898652371527997093896915479067499222764330727410939068458216718053968179568412718722893407249091921774783461606381019622083305790141445634142083732803819779462242573476770504435947533680953728028880640877485833076243651932244032426941938689708162517078261195490619742056785239629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25690559061210909827627845738245807409906144042038781704699302040822695700404228103914101505684221911040285446974406711133789548503922074884577228036623367406683075604024559145233369490085299388638977878988603141652884643359152157701712007928664861651127696898598337349358514029078166105300057325088361025835928902368347503100084702096696570649561552573031493817693259530337503134376005076046203403631862223946720222680777556059418407641223488691845614840537917577503761685368506681171193298961114655268820964459920282959488151042311369732016481379390946279299477172262060168379822837481848857837489397097393828909807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25550584609036236947284406409292397805801279873024867312534390636541620647052413713116338312264885769806532898595657429629645970695723785684354295443846601369891348665701160108971071667959896984904824726230451551867895863470597440956956761098565968697241381259650364549686428662208040717943434703199558489115559702698169604528900863750124419100988460427815512745152068156097786996454174175644762090381215306188061859994361365579886089686249883080960874315216134966028199398298160306750064840615021335860048299983095844991367222700262193618948059382341509539402994485434814588517017150830093912249074252676136989058417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23568373518290872420249316728504665226420392354030810865261764683927780041972451751904805285956600152031975448956828979186728860240211851030134805076712347850822083189139343119358041890694886120304432173952785912163713334531321403283229268400670913324013828230521908193810438465645480780983795189540623311154356515565290366194150741769617765005616819365812674571841982460103774678801240759300697255754493961483732340039755550264131762163873055278503424113347493406456351329649342907278264936657147961460266532947003615021292396527660356472292945268375119859983377575574877134841251757575803962482523587827280370908297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20662214353319988243373862276212511233648990943026272763287018827390216314684030183627109115242635601110089460653041640451649141217472802989823486037820991173163258278766868653990707850185944584222927483349405840125627367607970308176578752592682181438266768201008533594861648978872534893041314308274491125553292844781107580890849016704239675970403253402778834225751860026115928053546377162618027529157543076987693001502977448222677950913511269907844159634082360047110241545285115340228168931259864530117790342473761963791528483404713393554252938268106112373533891840149948567442769571506665267777087789717434970082139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24592153433448250965580932456927211025029241567840976754576343276440018939969613261667354371794975868623130233806651506771196691122455365530590409894598128253671003679357852703161347483357263233852523077305230158209655873455686128589950533814497189351199669617154687385274332254325490219247898996916281970363566371160811332714095436802115947170808898335140680045716938745811772677597128053309339356081071522913169823965878941620654281316050513513443218897128056456234839479558694699125668357858324969212041695127264633529755344246368961568515994517443820541399668468112965310650492222494063266941814498437479356704317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19876084900098825509118503112451988139885706351526152573746336384424841893732978553441021308331684408550512783532214204822158675114963026524640795717443397407837651747620047548924047005312574689660983853338868111511483168041142519593324825176523846367386193821854592992840329443343183902985107078651887039221851025099600271962406930165999510556933466874085502500618012994354697932698614710223422782184852306714856111181713130603941912277187312809154105224214314230211888033946914351440827781845797726820485537371970242928591093356454048085301336116797593063891224719929937913087842556338977037935752886536505701071563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19296057747919578377245356849957103128539018352314487592282810996343116882140318485806785549650252668114653631506650511116884140068219274881025266439908549182724673763066835091212515650252957218834583894613496995625722309770445914331424057015823309467694436602380887674198805650112629026108259968505232090819601179310777526054124602494852814537871792597379886251401963594725689122808691626529921647843711826075110601250275663785897614461421307452558256794631531884353884427933567122554621896132466954426811258136078185537673234581933921844721343095659046845051439015000231184384450757070368525652749987938790010685731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24651073984036592685328324396616961338484177337115769701256035739094009242757129214853721267811684593816338643583200096521409791078818839940911571196998632398765059856025076075584821415790980923857647616802344999751615077496634842805375640756941992691694933961737916016676473548099382322665515400486976028614192046095506751833877373244055323409911263161251008483846249080906044487713982614372142166498502334083442611176837406787580327439664488089088949495805585226224307360280742133701198716989296380563346287027550709196091652386950503696704778198210301669876164892917268825022174437933805388361342742515562228129657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30397360165934377015757778265952652535356026313316843175226853758518595480994830429906514578662204038356455589928693855604387087874401170373255210485393937800549667432818567923751985261774690648134504206664667730382570438953528810708140393475607016728729913344351356943382868529481695731156235142082129707510568988059015155676455791083240396392286711703501551869956167591946888054000571089550272192602951347461339175348164459774084060800396625770572936216439498477277389497563605944130129932540590336445960519528984859449764146466000522569982009470259199301909091926865815930287619423605882935514458397033078080033421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22752763282995519775766907095955245337477842551458796267053903147703898057706112909342075365712757438781767210724462906914443062060207390432056917820328384368070745809024724268682823531711196006816037349334195941013304676931382206546794159003101377660781359366046678536618826611816131803872476997600833816755889304885725384016803598337082979293497751585229189964658944248676755392819662473312503323744586051715558014593294536036359120654863399664907684615659454823062495563033964829128339608137014858815652104311585493835796842168313116489975713023434095007378336387544263391676398248399473544947105508674862228266813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22301669607410193102866740373610768516845396957486132793283739607669469945679537416367147391311570372340249203494508373120784503985228911129900517150373695724093309426065875973479005637779320995858269816798365964201315951572611191804683348846191597942266111360650260369496701613198210333713321128603673290224291879187442404942159530640864439344412852306858019300174261798715983994822759893524560134612343930197904659498366849605813987335962252321862575489837882606828842643366418574706508518813455283889679747694292555680843950974126342153174010903881088503629742407401641108866055696255799099357742580223885301125281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22757238047107854922795523439737454500293501433638884828258985177150340681917772536717843674851618543606430200449309422928731773121884919755027822586604104827132265049119837741737511073587954311831891887919830319078657572356594008969268881235955719064744917782214408309293386832002187692345785305790898413013865542270932693014016540088402132427088743868629048557563102430620194932370229723171790922398706461288897040762697204842105981785129628971991182392492117395244193995249334035371387726810284058685910663823395664638402179493434806607412673627094064396607306202172679288856083402002324911139786176202361859666091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "843164582336829087709798317053137213067741100344084801754245307761973885557023749887795722022081987235265340605849998257473535088100914750860081753985476787552922999501020861795571223980367450911394145260630286424654824448397543553896280572690616501253560185639490865270536032685907622970784407012036536483213461152233398372093110295206503246102597876319110538116025968322657332086417131710634078659865979393856936680821099917412895027662222092183223136687427557562865852595692695570658651409995401242270025385247474677205223330714087150066414221466396775476573854652864748575146440079690907580181545623438248877116422156789295150749467720286005094133278577380952348363214623968751891049459987666636812585135700465028433423184825474583552078232193270503787188383012999160445652638814617447776812491208280173957694956918231965784711824586621099054173084865871522535855007156189023980950496945642866150487263059237597299120162996869234107735275331051841745469366156383384188112389898011234868712968735669764692393068556786446423403307617733325101348223685234107982914268576472300103665379156307094311655393577332175000505849454034092426742743340763356625544893323921864004862751966573385515879996232280252887312137972938563361439300531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25728614651770039075635593696353564028239589468370980989540729170582543894668430544003716434595620587564107585465553238788517957995379224404562677045923152890845625758375908898506386389130271952475048293406915706314737957889348068545626420024634015080425059460967060828872419166591491637540427272638569268343368123100604759847011940067264958390640177459422568709592633121947393616527517903676205057259782663894464209299600858456420009343982268985979148666420290171376878598971983522680755996598999680715143417477927840593699375504636352920782756212821428135376945426821333974429727999724045761353949841966058339661847", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22018674239047914847997032393571375426450317430703576534100270130478279241290809576259014355537360338598879586529256446783006792958123006128245893240888561964717775788923184693425372719042861965736319326601434946590150136479381411103016948640448213157204136482384052705633030848335712956539020778304208834290304200777257647462230362934858345078636296079842243551365208359883965317406896195803426083445353287638266806989037199932351781291768389851522173710035182553885121593615229528882128678146712627288676519755943719230490673747641632767262892650769336848000731078582768665177740887176211741934406179235007324742757", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24525797390423497661395224673885487981588166735362792495052847065719065189919911160550321771639840452629991886822862317945192201217129218704867376932220345262422696731857598043444186717673481366977166017300650296957109671255814938955726161937376487426411467700958068445937961195146679427897534400929349395082866122670910842734575918691356542295755517263384476099587048348595937886781717247151815106491516663765645514005497382197956705972665644627324611755542236219146557493124332756800759784527287206316941248882228867691660487457179380557699267313466316501954826240710749568012352253350126391426281565762186559067077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20505189034025832962423406718453112315912940614614867464141485504028586017450783062612903493306803600178665609665703029745930286705730427294502016611141310880741635575011198910783059184934081026181233574060599287444400097293199339933232981280222865071870889401117650617713042040372875188048993383067449493305882980136574106432872969113626266599482289319595130361672755829744267199668369662951708526110401011264578432807794385098314708861951084548739479950150914247175927516034583677603467521720922406390149879897937611651434543954154579791720333061280718587493924875613893561876891840883350444947398270789319104679543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30684244750554679109941247769060157240775610857955722769612013665479011650137610543414484980611478142638064000962207832524074714906325674216467444795025256412072269537656185732362136802377783537399000299400575666520400419823032064409055191126532600113758525559065115154014055583007125414644127668096715191171488976154578701799656598801312616214143285050313945352820558798861381360771340903962087786622380952478852588282060819149713488031753479170436572332638790294602030439746338074683338820243462935837892880252778880569600291830649534692496322254280778401231880056617254252485363135393043682548818853120217530214689", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21833647162938604494234681736513764583552808734479617372253815984233377773106063049756441352802478773454547742347293579226000218367497694156118378486306208683346439426865749883194894227387741090425641129120634641469365988767174954285855554793963090122843940828248471330882909291038498029823516640249957417127677883784876515632491954373378990184455267080189082503326143411814420953932888470138811458739114420397002996753969634987050938769896493555460360029721735727054834953307846986937320297154968666297254750496584061783974499785084272750886157304609181366171240432092528081708236613306911079858468209480401529084351", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24318439306348369626846305095104937982888749752259557397631978277041076658154687988878258533323224836828936714725424917454842439066675222764470671499960996672640539009133834234436343318641974836758819822087795603484453453490963163479217817861437940019075801510896834498961654011324071194485979307718027726911315522599556890297847395419063834327886456133898405569846720619353391194193885703808428262111231918639837025568376913989958159395009061279993729862746014949254921851402830635094634586357762615078699218128218138429973351005102368915960558502334247622979353156584932147138906778075019889607139003721624600769637", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24780566719861561876071199713036962612652027320962200505207792745834629860620619445705129293021994705022988492662338112897808305172643266989495045202353304359554950337885896367209557979371879239158488299844287361719433968152104453643081278685045566522760068244496469164274816134171391542563705271134993075757678965953012599036400376767060900391107460554012536587494055459400110590526931640291930579152572141861640842228478946026022920952924431075001047741493864806623160541407418637709310190675414089246285907349412960752653111605654786589365165085571840136959719364187162206310322769182789314114658752414617689121237", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30684244750554679109941247769060157240775610857955722769612013665479011650137610543414484980611478142638064000962207832524074714906325674216467444795025256412072269537656185732362136802377783537399000299400575666520400419823032064409055191126532600113758525559065115154014055583007125414644127668096715191171488976154578701799656598801312616214143285050313945352820558798861381360771340903962087786622380952478852588282060819149713488031753479170436572332638790294602030439746338074683338820243462935837892880252778880569600291830649534692496322254280778401231880056617254252485363135393043682548818853120217530214689", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21833647162938604494234681736513764583552808734479617372253815984233377773106063049756441352802478773454547742347293579226000218367497694156118378486306208683346439426865749883194894227387741090425641129120634641469365988767174954285855554793963090122843940828248471330882909291038498029823516640249957417127677883784876515632491954373378990184455267080189082503326143411814420953932888470138811458739114420397002996753969634987050938769896493555460360029721735727054834953307846986937320297154968666297254750496584061783974499785084272750886157304609181366171240432092528081708236613306911079858468209480401529084351", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24884582588019964289054777640603032337386525387520419787683110779109950660575539509352757437242629362977396924578198316206827417678275376138101284170892695040421179598235639628812642776508737462682605896852868310921691350958482275089586162102564363939396920227677252626646190059811805234740642255237309989111552107350763323652928716127142323790527741318069729754426128604774435120644979220542680305221484056624766363792630594059131583833331512936712556931352516141625741110890158134781751935837435691397848661790822134792268083953770718453592453036930332897914496503698836467488243984505945610508453025956040411614217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "20953582316158785170257725383431354900347166542059479237479359033157356629744444023843871408943306303183345775441061554758276531388728946556800835020774694718287394454725623719654383539131143384867610739681296035189625404378900326408774774846018048285206809999789061082871975026482539757338045106356258634985200289567039157642459156822905219278543492669606218493760482730049847267825095184851959426206431749496153119645272591577470388886464673469598917157246677860279789616999586408684194404277973140595347880555569857423956495320806338777449911861374779058362188260307688603438635794935681078754938721471175755276517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24559740203921016575453088091298168523442457336768987500136737581616999617564634519980961096754518471303437531241524147616203382220994662554823353199478954286568412951319436393320129951200998503450780113845261857626538662463458214334771671288622544469489840371631862454476282261356066583181384562773441294555782823571863813648460663635281202619952455610955585927566969658374071617962576963561057756553393913754754839308363524603465114190591038620102509847385481202649625916551835428923061267168342069079740306782555982751405235713743625639361027437452531046384992798534398608208257028666090996969634717420776740715329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27786729896586005363362283888768332951914726402301337206025046028313010221573744670311906547355134488051634547933788637235565433493109815202230898677828460769683780713553449991477093295775704168001685143948792497269149276992586159778780463109393809755915020291052859188674336903295069656681617276131337872638260797701245425375391130983227454354283323507262789031758150271920793422655920241982097786555810320266684777768698025145193791220562375375777947157836838220827953939813527306046716248503370470043757914572855916881182994266297148021471087045785350780752390181564370065521677183788595867458615396614846786060971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24650820667401128204497685955247313330740541134268739659741587691617454079576423448165143900546870342353579859488972127095205399086442848456449668739521290545653684478445111713129934115614469095562164182900123893213956797726057573449042690028665632791332346205207792826025258532081126689953282878177327508993763268548075036523171517296433818041961318094298580556380467429577433594800700865616329758233770100144049994975275031058046525168080547004207016477119732581281147378715751338232821493217954009213330575798947726874543705335924424868302655106880997490006407012394731245228054472980615485793838824520361428192807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21743456103363459765985730828467572938643195939520564619112356435312591960047139717553855400571301372115766684071526903985237944450622777466453493973356880969410472613882483926237018050802212290224993514689920509954960141651068622472528037820799145994291870989710544317980142000096600762230778049543531992838692241690915128374754839827694787544229495926179381919245463459153557871639459490325626175113490415989423481082897766063809375461985496787250522256965172989090460241900152857589932783635326198499900703685448926845845672920888885700502825935748883885156562436591627347949340935328007620460065066715429592038983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24831477327991184823851769193891330503150340867824147161305227862182853165462483432810000381275870032969957062729301797842106846980600898408736926609120016846423527420364801323286950811201814721980489526826823100768658116602881755746127659226735044694350253766132277484913093456095347577402965764783286463674904322350452084497982629956497702857532183037619174323591213494949304478525713510477492537709981055608820333415017550745272829923077910625534236562896025656375813022162203690743279825300208443585056150975887742737192590687165710740905191597872555037087588769301410726144548480547488993496228916913599141138377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25589869254196160046957119764737673127692902077717909927540392021190798716034195637320773103203548608753428923635778639621852458580945245936063638742794508044524690768204603594750154939707869046894571051542094466734495706749775019012985958219626012688031475355507661898411954394247683260686243819573964594413377685125082319922233643702407947907358933224852189757139241337657679510919998620574178735047879124028179148299397641627735026558357864663710834674796637215032077220723514573814616388656719331323212418715658248693143223354528047410967263849621767750883144736576396435026244026232966832223290521692301500802451", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21758976757392698907148487550059455359322525628558130863240196363284018493084279387912501795698281160538617626143210504285811069167151322055546204172712071418350881053011259453088210214115427682920394400261589896632924740677300011073781150609750205560534355329741244652822047603022643103459923431661829961581266544771374517386379119451255174260387740949098012918855916172815251801477980175671599365490338394692233492759318277723002779353362453661664297591846758897288792677751522090426000006778725496318328708135096534152549790445421647794735296121213553209494611529724160877115569055593226417088363888371391383212457", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23487383120668794709874837374655861752724952266994283423891657603071265951286350671280613453656358706876517772388975010381672677126640637133151774384749432013744970064880738737990941083647154920807436842170142960648650356564787197264159238737813439511663630339815822305944917481356967974587927213020327285199292912652171302767689394645694758147656570303627846875000043162562820591923555616373278101263920299434431593962382639287242786491504586906173726583576755712381492003056785407504460548106512141376070532853125760280859761908659308749336970025519998114819575074331787941828469798578720549456939474248606439437947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18797694272048918335145974410407838888967746493865357397021109239342470527946069002855757767302059453682972395453675198578773232066032500542839207713479622096753508648819203583749316644971979881162124058880265102011127510897599140822314315774165637274677065393177251041297201467836612682028704173018137061026814311187747303147838365126355426730475384093903344108777210734175525123118089679030857556059868081244491737720384537255493124583244276447135669251174251438395318643926453642469544742826025763770016481611998069603264684388406193687027515590711512968973215419050089926959235130648684980720185903836938799239513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20571834746533225757246686702834000577761190521224761075797233205075487746822758963096387964185072088473581437025642091791137050179770393197468309013340578767117479673662936692307829918918358135170848707340863716988353128744970916876015679059222881252240479339800524685493937769892446723872036518290858841129203190086856930380236722592558064865625246329016133049697571181801418111768208462124773427226171700083327776471481604236417809085675418035706551494997073084156461267782558757193937288767561922830342647758382179741585446962173533898559327235886036483485111933259413982915006336072406160556482597764015409386397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24681154130631098169508896901486693395882471524426027420425621199368095739580923685945431940332322242198467475875173252630588227438230606669603233927844564469210341854538749400146623743533756416764564539074247778765113157998603085455712794143020731809988062085510301588846703525676155968006857348906283516301694581077408265352848996385987164589481075559008942527101272011987974102932075140370527646663675577372174354503904983807429304965211123955937076426529996302195628651010918753488350662641981039122890085309046538207676075657362132405509131026392581932205128423845698769659509047107932730146881186043920299275127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19110694247330983324002774425975547897045630642602714630488067386488182966044462574094491884405266994547024822252811087366977897781182153154922232480719641939895285155221894546936412962519309729191875708801008487179674597803093685596146799398865499999303455117828229138395683241846737277292346978368337152237379407309836703568134346892777378452373463274194904769216583772910562303303241459367844012666541145718706810896254768089870221611813283689416129977831980928052797445416551851293428835985180745961268628916086057868132237803391881921523092262307032102543246752236479192168522656124349071291643635693094656597243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22926299314606245461796978899008201064219521949386436993194529544932498387543201413280446097216681280416104450538448705057513591381917180468166904754761100130731310814391078265525550120724048979845358208508619795309613224990641677142858577229339878735452369954047239555395819849543973392979283479389879466942900877124222067295972679983654662225689001274410576437555531765214493262707985749219584506447043980702067777726974143458222142467531803583297014801425781788106552089662215702250245691768260821966821203510585543044608028925123308521889412762382195531073791314264247351098473925441394942462027821856205870470583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24854486086273111213260363998384792934687669809170769790889106332608540034380565236044840832736284739640266982914297124065868086365071497818356676592471502219961182717310719330794957641539691877160410371822352097072114678083492054696666810579679887571443259407273222458697108942317963878863691280682394964432597574246494639574416695584081865346868921015151463728115018732788839312590353290864467109871590357354987876506973214642231708550197366355425109781981759893254182635785109184094642887750738456198421705379191376532475411899522959010467949454758648243468062050134707183409680643221975895110527888297481807942511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20980536194042148018529041332731368151456247036643303564340287215950305467289149862988232922681846456341750083359128783500997418952568263980048349587686909093207728961890373366746324439026967210607233804080571175849864337480252148281727770866563027115420927344579054352249903249525960561293904493523502623635724772218898427969852488290645578908609464704401028036950380109609945250803086472573350134686861091144784373914337284416214751827098540591565848902341145743241746264681291687307445955971310402307583998765566769306237880077217283105689044904213251802124723419096269006194082600018623672992609406747113122774977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18160605913627286577081508517789390368308335609342158405274969962344074932599352586711130341474844300037881946377969085814493437294473755013788337021769914186382185596735612403586754942176926038116229622112086603685460696166521013575951174344386466034648912025917950965452704967455845625083469824915471127869210814065594026942464523533400624933067217516928528415838640664891818638981675110566102452692007155837788817122099568499026367779710204823605353384372461873853947523378312486853805959917389127087982126441962341528347423938093742159205846572992451429419417213929723652315808247508411607444097641555014118053233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300711976777981729897849156876517059954963261161705481152712291743299129527402060326998168713523140939243866772646051815169182608892696702155842344718183935698005533885669217112235706865788433849267336342128232120256058322395174647156197037567280227377536390957042920262948087720478893294967626498978110710017668841224902409149263288318952122798791876503429099011588233571536769350832972570347685408452679003695035866783332028680537109064843186281359844135504131647196874557469858640766579367006051937363635302916342582507310093071231939782426584228691927790894322742510653498622518700534134284957424289054531536169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21164258229836822645840394775756894659719017212532016897663133660061669173122244585913903949044653087549147156762135748298046743257340258490671379480360056432545585728406574535607513745813534809257951815862335960216152146866104585913743555460073461476246317925742024234359947541659144608705218800957474429036017344912419234230154131941341168468118074071160251049374358308239333038466295174822197959698375878937915223174154293142084065810387808011416795909826017535266527136735102687607222746466207291585898580729791922454022100080364077966899713225277407874120893626971979623640452067381964380230268493760015589118431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17699372192284398529111249756171301142377711827201295126088732017589842430301013761241964000840736686664026889771698216163360207589145196600463635637247197464649808681544505193742282462191430701027201644746492013647773191085579016631539370535349596896997542954143944015319069279657068131364693594546980765006140817204941304606182491206953847198526862478543809528167644367184549936941067305540597066046501593425609739057631531155891792918863272030933972860427181477471437166559302633530425870620107109002796130065901858442076659685837812029014267672666799334531748328695655178925847597783109086824973765202921549648877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16376772666279317608781530236471965856700145389140384410846452343512187266933130156518412609348131481427040680941349924395084620149891896292532985373836416193062192811269106793818069584566520479689570434186643466259729747976463196804353343611508475895458173712035563927551844834020652502054831842999041171627991084826229999896302995818590102239518409171774383328352955568031372519445796163778850763613152306358453777682854559248803715896185591467402058909028027925083402158374049931907823114695316199491335608090745241823340176906271629028797700017453571920592395864162005079128263015290192548485693141574243855638507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17579142247113103720877030484570921846439865927210384888176026686491514968106128012186838758133129111154616582784100403663326781486367665254644568489307048438363273238626895626523183292311050716175379913872188321984779380988868178517110396584613023044444202567638365111552074691949924694032158174765348251687312887857068073853103665086991986103269859578594773023723838722022788394245071891719804717831866439778200626647257653704376521317162964315724707546345532543666401755325674309012498544499814650478546017264741431213110548753265716945101410252882670793400828067693647478719056068248242515239673167373231235586687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16279267891584554351474875919038286203836190861222084499863228589017026807212380146638820987777627977216537793217263353734260294901531830912264346569578246033113272521200022880772100034635753352748637601678922180132572217544931156065496664858648812237846206741445781805615347150578081114836794737311882249519970173348484575791260075687203926247219438799258161542013758932906950439649555392903217256807879690833393301482697566545223908295331508133271499856328335317913848867298866328991781596720124209462719319121701388127097138670551312572041227992148894153744309020624335566612361889772609493211445083907434358965499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29147404961061303265503452026268119327838766141285493222704466451658577897663096174432545070232007472951955698459593599588776063114859721249933712542322295748967464990421887531886302612635558177143878575547493778507450165487501082919430374475825315323316693436823161203207209834036372280414267511643316778917473754808219153286910650407260020712388040190291059318012775736567206622038825754881687120390499188976048436002661770747779205027180794551774388330651897770095467879349232568021628913518447493438378384072959999407321301156159956241460847170660540996120334582772947581439177151994051161894113457070277319472689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325896142825639516267239542097078454016183448022254250980499452002329790151649435560519445969992951491155096433035646677231776048270893096064619839714080697353999624518890836084739427283629206244762986954639748139867582908236018573133044418281668921251103687818589227471855375047278161478338818057780029598742933006198849392327705556605836170400345001550529106604639962476313383263546783554874453220277640190082316569384657771107698630254609876803190525032739211414868384085876612205201936123613769443262667402336750898184230643030743357349353293575337196056833178984238055779144764599811644880825482341717508811329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21505785931883862341487943070952537473906367226539308397062209016515536794948526155586014828175521327223797163340589978737924874788901124792834102981113315350962645774765708709124774721953429125027900251108472588220240159946461511819221224165999320274051248107466475598741512834381883574156637111621141975995857477040097647169885536683662811155702285209425822166002974128025218285029933238270582999735338067353756576292164843453634955393581619840323108729282502280059655835346119872031926325078107316744697411864809553649566881358465993364988978067841491458080554249862785045632641430484176653048417434705400845479829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325061441256706423905035258600331847237033441597574806093335770549720816052956457566006241201493654214629121814174375390104216173772247441725511545323182939396108260753666235307054105889521411786440226851930084236894783593449335982599434740980518857208457541529278155127135176695531613974352328562422767437237833567385923939058304428888518251355664789227500205283432593786379208993367250663986788504587796181196289745315078183808505315701725865421052870967130805828586940279339665259099427135656111710530291187664110238731964012155722581560956682627684331714785033029101104889906995813361975482127693538202551130759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19822564307040316363811669638485593248921107437596586853209196083995747639930915619641705527638714139313332676887631508666173253008730847158765014650850433963280584157310453156253377985615580129225991831692790538749166862377286634331622273744078688794863740916157952914045391587756944022242645374177934278573639840756163775662581182296686199703471059972971236319905040448427285214565861314078780005372652881695798330706168568855997992285943961470828431723876607003718649387612233095498785136859880752115788370303926928421273380993343706534552809041944824564584476193175203414155131640715225847752875471674567401264633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316322848425868129130533914748553028052288776281385227156524230562315728851410148914637682079315287764520821542282680625592883290905628067405867004956217787411030491616052364808637443466154109386001371333070274486467203245546402079815416965682204196365516536747467664752645534049972150424687993878072202396013923441503003472832655651225906368334460658666308697391847796163292512194698517120448250146584284687638468929683861903613034603783800142464639206990978229397110036003761918410885683351479922796183690340905920994496909509371201024605469972910369968124850530577438640333660852298811814847729113493881214969623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304753182336718306753534407844425340588135160620773291856585343104594124343811209955189017556547516807608871399442516046888313783265027847525724360269959154933401981838978997852053124736701384553013245211860780512785650718533983169553914481370329418877782380741282039619282671024957936917690632002496984589899597173719711987613152894756720137450911377919098716543898637059022799806024688785772148878268088025434317988335240803787383796297606537518175660206986865853986727641921386984317190879814156753557980033848864686000405296465328634494209302164370378527330334203694734757493250935303020907731384610577847132691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19554024670938664501038090405097037917651057032705028362578888667716153684827912026418405835194999896510187936679034636172642104225475826746607515184041162265613529769993476791019715928613956806527819409991644565226841311795336304361305662962388648129218464844808036221738393159853059535528230128691127939396968817162035639130803514778201855995365448533732035392145663669210415598251469503415662292675251387104286915112790918558521666755200843098886361821800315423684615445544954566336638921161051031309474369576765648197201164813586161780160771416806508713664619797865481196189054159911132417392647735429434661070497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16352392113383522968587563112039021328380843317395057121649381136296250505666258560631375831917952842353835973600942343299410349888947800179153391679520293103942360950659348056041382848115798954967078076323576795859251063129804311142948487191378008886110154575981893138648695118004377843461648149585147986756870343633083934631846065500833590362698858035355207702279069671872174486137199313611780679738188660614637304248841087700638261319841234998295364298974600212873068793670468366181476993277891606581992606695838022498940228312659665233802414694790525144658303308640195905861023357803056212701486418182685341417861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30116568161943160185712352758845832543500744028771001937977983916860409900333971040145796725525867296945232443459045608115654220984743980725606862553222628911599710754057563168662641289496105173370679526180144263566568682074903799436844742554337809508806459989726318145585698692255391742782664757884965112928899241376671682284695637859280948858151799281391231231155728737159489337963252463456074709440661594237902502701574125144716779161800508530546477329785200138101033380089381621593141624515441011312382062611403375306942409278885372229388358880900932765296396594994191994886739464342922035870111501222695433042823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17299238101180622582849376301627750603569396897765134322524268159672460002455815495621233370176895163704478215397480911971813201858385358925762873799039315849026178080706496518501806071519783727561589543962735870692205664908993323886751612669368391452142501354817764527101764221778389422825487404246420981536697768865516806321375165037276755697630870904606683060058777896982256779173660610767527531845749801365112054086143229903639709627864264790327648774839141061516784170397868672031848068746550702421123593566147286993623520026814468262999501151751004474577575286686405690112855151333560992886333792499697884906069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25651596652000265706449963174249183271287641166082422720469437539783316595790394610210602528283377445849937635281008917642991093077249801660392072020153746009872637735728341983379483831475281411497575928197211435040415243091033010624656974880282752663878588422257713589746726489909222078595681963221006908322509425993765482321188173659960380161564002248029146377390784063255142137406882542131895318592523019365213626982671121181069943946762439418168846184603847853495617811076364761492548747632004901503336565848404015292851887522902914733914181268962324731489182616397698118326171654397195058028727197339011932782021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24515196052517655506517963081650408076531216475882316356154214175273031714760640821901123535157922448798823599888374205079174699294126216724312011834541320707171555635858247981948887125205740069190070500619462655463690692207162457117228939615973551530854892860894162619112102561376481688151186206175511219534283215378800242932717555298943411668611182927385767245749533727380762387869596171406292620674993992624370811886706928477942024340742422299597595242225474599896977703526497210841795985362644770916494676713226216455803720085469960524268071411868857297668200726401522493644575981630224692159318400058209499398093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28505747464333531441305575903739633055501725680878059821751393847506181242777148866814884420140298891373866167615911043656630182048630204114910380738966232647220092924779371692053911486469409420322650919471824075442937531940199449622232182484084761133339683882018683572458205190757360232594694068140600545706584795164002460641099926593517540915467461487243022908305970498085198775111113967914488056417241875892759980667949751100643344823175781791793631252064097205968227135065616450470587892064390007334928956110193776751796852145827078503461054303993839218287112788526401873498511904130961584469872854282803982195777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25948444426157785542070273744993181310863640765940789088855442479711469582350323095016251351308139359326236449651389440961133818256681487488261755695448052465167950463022100845319980689606748451402291080671198638284928519569867529508561013062200910005639382024294725705020831111047498305414313201749339229428926003903928211477857760597756284826269254522256661699107065858434310881365984240836536718112391641421896457786156172956899908658589402471936120133549069608308302714825715999885448872015574784641379834507128174049958161187731195756601390686548044338451427039721916807330356987001874158804455209713975593203169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20067409083138952721565170530066529398472321433920695719524890313334451875636486418608764860865950368645167187519373044992504964495645906954935999407211433109290528748310309751945166774767221033387418419673289137998187761096130395967670552110299984465905164740153853569975975987224288313141649003203642320372097126799477912853985557355362453262871393829522829271729434446681412826992211230568211857138958738035059423385437753723407783538699456482695024648817041772268317517147818089682477249351059551759643944362293800171629613843020909750931841157207276090245337190439170427230021167890119739162221311581553393819249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27001147834951395918195631055438997680513271995150953148829453993783780880605757325492735173281228064188594779167887484240134104992391003736051894457501187795423702497085425490537921883615706233295457941634022766528803046089605114406622548928760788543452811988857229530471063040053978572017089671771438178911252775924758884077435043660805221847894113072097529430689947877472301303371281888565941577988717621789673601037358142924560457403937580494720578089895440118730612328648304999422137649200408933643884740834971007115218923158990038423769474590242981094229043148178169096111539700320891904397942018374508546088357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20290870381507268913846943344515143502833376956927145135070369843026081594525673930647414724466231311911597133253900234579626981611102397660213003720636430027742826137551271731781811134204436687851178314171188505477812654890067645959399547915150277342262757917737945236520128635750457597134326848253654713642396261644973313919351549585476790273871680311782267819423101222382486268779479335773007513386555289929644394004665031640503357994133051403492027809634209117613310153882191536436141702477010647016136221495171842148733850214383997062391248874164327947658800440584873776171574698206290890981305440965865511204817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25167775259168866512404146861849064256770185004038993219769540425722215875627002397624298695637503205956405885754948591991879122005883435732079959168002695532560697416588619489809582882128274121286711397950105293371753751202935902237964036498147188094669565929787520285821487520723272292056216204772681307714338499951456863163765604075222508555962805454245202737882197988543713534284372511023615294713711014444420618578009653378934014385161606293109986202201830560602473252817219679284659569487073136005889654188651144357494990142669668708557772059818294301634285034636895714089110334000061107399871625484846407776017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21485247559490798831454850433456199722280117317546282947121551063586267750490168923583233538383089295909427845016885768574237771725573805977415901609502344272194798562210127792868482689162659713406652089700263984007831624467490056081579811894953717301853435219069478354189004961340073046465485222511237673330695091713144950028860260771277488774707986183122203672799874639546122521831532246903051503489454298535534484753101206774351948780340162090917299711225459679765610129726703183718750979930043032960511493850670779016086475333548156959671472557505497427930182607845760294506846994159591949287240707948607088023043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28242590979819234075646384436617314010779028911497373484141572946269519739354068980071089660383866225079043499935905102236883179518791777337211679091992138872825526267575342118176143137783910921092905906148697560873140913614727029013964617367761111295554221949430343150823051781154004572364201950838703474982886468473727417135255137865943839131618172008111952075719240463986409799306855486908698808944754556180332760517338482361783011761614374082064024167982945913858187464142579824854812198646007828912484496495758591023115277710893551343120208506818910872353785783642430613589870272930510127578375094777957359451543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24701983078987667571282391073478831508760700673058608709575087309990542288642770028480382592852541692667879439805579696540193875939285851592014271522954221987680245702498051034989888910533728708928330483240354832936050833083520520101675005644373877166313962790927183836604075385104843855152046288069804204190819687871191111147699873025937627499589151306424213859999859019170094209654692589806596721222611316851505847839205242855650648554369917482361017041644779739101215028343867278707328190387216422263141674563764612031497513518850315762624884151402838784623555851376482962686293169545933360595767592012463829128111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26102791830346589598665455277871794708044792040545202734424405771923652016892806233332627492311905391277087467562919486528507084639810003847893893219142432289841319695893247562626430852509320306200260262041282741383069408109648476355224496312187036000291321790500828261739819173848539377943099908939707033954870988074258197898446344151954211155200613170672115272584007353492048042130215549497572774929824859779085709734216300560384240573608278404432778007344912820359382664161871920782680369438066858180063868770155229810022626463774182619249589478676176957130291909089372281257684951312891571190905048436624497714963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21635919540490075706125364808352809356568966160893149559753170056839084053141549463894905136635242196869159341319850210894945895874445056336163684400557244717122790113439598489416414102630403042131281228004474258098088076360540612934020842563506746465333607489243670109341197537704118650268097775430844808221350027322916643793915794880308698179412999660459093160537242409051603085588525964555850438593845110491682925300113545650736182360727297263248273851762893186681944551298876349607592178018332419709899624549633666353940336352458797646582069419967662287813227388427931992816075608997107988156699294187432676526303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22677757123943170798902856621213055384139597937119738875546326677707897428953237428498876793246949389116790833192886432852652766943513069116430926944188186121710530191935696589081989838989533688757511908522026616490701767655778716306515335501543703161496668049775849298086113516763175302909642604782280917864352981783519048761633880637382493323905531900806674937069373310798182033103885880340738355070099935752605349635320772053976663441308565475562388708957505265532743193460843769217928281607952069836687008952252558443537243836507851362892340608377798763133132245085280538806408509325932939765873345047585886474907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23379526160487278244326380006623174861970851408021761807814399098581840670013731621393095650860093557357234447470879039302852751767110493328331160740595157334513382009779818989675111709260872255267626580474019735252899286424508339589926561534906665725255170281253381433294467612229645328249070461766422145060717205751210490389636831956816969194053253292956345854540364975155336171513837174916101776237585253417165625995952762394143024750738109700832220426400296319123232507710295113314680638245395521097909190899003143685365251343168614986964765212290927157580292827257800964470824263795434861655990333294341355051283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23773274911115880875056931521975542342170107560064869346224734765341578342140761210167448722768028351909735720249199600719798378279191084877714664382093582142323034471844347220245497297552331358288355278763193680888433493244141090293485534276555126087237682575747556356312895119119171918562639013005379793457644022209569455914053863740292071485058997790963748499895056492599229347857774768960954481767927395020937806437038832783076934344568580717761441466807306351763583909348780754220293960232206693495527337779083449589016387882020628204890400411102916915441695001059904423141997130193038652689494629877029684647319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24396887046267263450625688454498180021882241629122069596030709027308879085373182025844673737165380384487269210044041871363641747821211328784362777334263059786056712864861161196221446682728782662744114116655377026638792026553764336765199541731532800390431858144763695612359288069578701302567364894799000493947149972965405576496237378728969579971113466444062187334442070417225374270609251228935046364551908330457187964984223441941675025570226608784513262974773038479942537032539913655891305823215681769122943249721742894524757311417114615011345074297681717871529331683838277134714593087357204301723658396580588167086989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21611271719423019479298815129747679057717985848314379387019682873571589515213619971159185377955826454814596326003579049113512625937731380440372508938915575453034518385723729525659285444567759286324288923968673647672944676198243005657760942579444638005333417600854558616865295256690907776801778365039909682193040749689422740636715345896254858622535317030438060372553860040889827348621042747079796396733003442985232782346885308833877628754098644339401228757995564065190143486766339800544867604470444610853895561974384139721630604968887435238112403198809617129208706427430503298319241969040862548860321781938522964011861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20671058793412623705448694274779507150476729699129146167378560433381884896610951253033924525701325340263842379835120844753991071768548783163247842325020542814909485176255838022176749088381159897730728309282282062499145365407848375943930360078405464526035204302213430381797330858176327773297153034868373632171523390544330319192811196468308249299400352506123636332547367875523110096378934719729329012795738744267920390921040351698320609695733347124955898824680153556449636987344791358241887242773146844066348825584487614243363756474237709761821022418692621042319209470393672020376483534448124277953191795058547615466743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24911374882424345253626824785644151818944936503071895775303096404385260897669772007000805259387045672305822904074567147773280935876757703291061184855783896280241525351266839575335208891892934876288342809156978226021041149011156969246960769586541643167246344103148682988619795146205102811600079678087179563386348161836518472298053284943395044407185751011269834020509160331089500470470025044576969439027017613688585817262109913261372288047415213035259605526556890763430826249976024882150744510561413377390137637770726966494642987049972818312065352238944294886893691620998181550109052169589028290636168801787353005224303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20781490229156335287698159114162609510493158510527645715544454000488904682280509479216103430877017106968089232634040135831749204836366692633492183671434997981556295472541477428831365934000838684238746139184564362865187331811944716470248625795795698030565020863817098654464414811593473737438150057028006016635739234046570677649334983706965172276942932830946684149640794514435545176091367204964414463882550022339994340754739277431520938801493190599013840465632890512222060929259152096639167173142859878145695274133112272344104712341975511493533604434580347809435223695416595898936735671348794260059744462310943139927991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21254376809361979730234746624528388998875080927387067049895371151590592465999500590774062299389053881142011217864394421887540787173794906285347009316143806597028683642202978755523401319798689064382276879976556627362613312794268817477256151750008363666089089281495769835431070170470985131394750066866999706510247255806481479093917616667428201571885788498974246269912950050049819505512362627555949656579020780366256778550073824605165019207622439647185557041849238401019125865266887688109818742257557442855550429989947377408600134301020978856138500589264525145685371937183960335757353497127038116397887035071046842381429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19038721696767339815562691345224112614026503038728144335169121821699733545904586888276689599618892834328413354746915411285725959980895628261303952651291190670532633699050084792033683742594248434709788696263764917856149156131563776626859531564497788422135034416976968381577416160789839008911037927692466885026767590242357604252422538875441536507090518564379324254047165527013025830214302619114066336719188050341035875044490875675950991450138667180304816752894339218846171120442761051146366593368507022107819657530544472587404387813390505998772641763767110508474326908087984893704737259071111319188108181366758998980783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25193573307637738468671369422312019310764605494421156335914672025958363053365564127957150879995614614237697010870618738365115621101055091371243158015197543864741439785318654177746467602023321246447405483320053544350270456768728165160598456199608094249380420243103223196678235826466011584172652725582562657926824146942853929749706171543569004306975462174529847526459743872067300431649855329954217822155049252122289445547381757793438049060904647185554792909497033959609395625000529301464532599552156430183825077835808935206892673523855350773268957026795752493298188016930739905003726234682496525588846105068869570909011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28189489502042578230331463323519284208973488701785027596171733681046297395951776951380416159457644410279987982317444773445159139633027371440578256887353115931558173818274608861854841001575962433541927076904268676878332194593352301989272586429470129475041408507259926282458915086357989870878826741144880490682073631121618640647360754804070009868910644608788670593845668561167209729195457159632634596905353031832970080511033646281877991281815999017041132423140928151311471939968078697367206536466846540178914093537388340028828972478427095407044000355052443954434431101306716717301104756176670217723677328021619838168383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22983265533798204418192906157546140204371297214682723468547907276418411369441341183724753481796043780054724679395387856622290228769457372814930492714056721100256481391970960881960073788765112220015725042989456761962629130044053710156310912369537231109077919659934532638292958330022920219562865567647012438692262557664748560145885361392207404974609752536026092984555251319628953068767733489849496962159312549207806655092635355463041404049755932666419338863690287312952267182112838854552292493426281480315572276962146181922249027947428214392316045770942536590838221624744575827256600066033876591138731389573122598565771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23418089311255356883876548163782116516754606984076488672636922659745894161170968116182145032664400768387366244342924934490411067200269212914866238752263517121669176673352504066343046850814959733910674386509747723118830279737759464099784786261485391257207799826237147916514647441262534614717457327288935214169253902471348297597835125628169384145154771476567894650069873518123327014921452760998528704465337843520935621542791967845395331986212977931631969888628449820053764225453227925785853676956590401646130488206485654967712433578250064390510093901174266447261387443575946861747619401731741358174410263014479045945873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24707389516249757752743930140239902409474292487913856849721930905588907454419463018028703400454009678385445621114574881101842983937645241402044300331276544171346192087754466778210096085809817584038934293961586564180322722363842511871727114214055460030114546224181897292931442075462433150847863432135464167290725865952889753303801997117910904148771154909944082377591904939797990893855812155133132871724858044966050473653714124700880842135925423763904391526963325768931654009584633815141445422133603385294887016020619033647045385569505463339723977771544746597666368885704987232643183457225525186591834880886283575493733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28608888014070855334026528443500404257035238073825027470730158957072931029808789773501039724447772898082118921144539738318851708350725711485460689747028151543887384756939758444483375686565329916678167267081660307704619157647432900230169551080817324820902654539418525320571069176752017953050356820763290257713006598661880607816070410989082910566088802341943291432062041652549279915009872542774084551671673073648076825593888991624627162041038853548095218287349002822270211111203131393818424202285793346584229159603280196485588785167425924711633570825259848251511773459648528841875966631398510257882874260154230922362493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25170291157522686974219960205042680781602593736004132763369743220648965664490866267135149153429550882059681790875389248504567216922640303680215637033959925563154089641473543660100028244927746457284812070296466263602967696578373880798172327163057238763671525558054880269725533951503130452018228946062066495817421455671445384603081087001183171693704344949334372178120001002547091210181821643357106344394644273837320636092139025518814176108142308593319524706274314157547206052756898743888519909479122647351898189553077655337443841780836195356013981520384229617947380048042132066843411475960167698533627980730307025601411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22835144216930748441549837246376208847863034535375515754511168042275570680383601540482811947048199348291149757380352087573207511409608317148663960815837690991322571647380032488338422713619643859534908844597002978748124402790707726901636717484015784698350672708478859374294943664714313379529773375771000294107062325546433226419160529207324528711046173242021309470043694162686273951723110136671728719391198687004801638879487112010836174783252602121737038757814258998085978385731409935097721033819280283677270657791615111499931493458821378603730996170325550585831286299183843981535551730442247646382435819186319597856307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22191027398053810487754311786582138476362079870823520163187221191256510652839399857530126555949936732161435545527573774327415549850505494778112959383648211816435746687833986540247245101358531657648494681111177271915480998139070516483891258358026873626368878090371552456097760712660161744919688171210200176866405695475872259109178002762780962661652930392549025445930645633542822308108579780771611917889397005532105796898373120037043546665625317580410862719894634259737754437653057522836487005956158117763259044017816980901126405167268241135435731504211773415308742511511465329836960959217064665577045042372270202337613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24243240858670738084132381892269117531239778526995861052597903139534493635334982238692897248812298650931185588908048879004261705148602696686412065324846658544576031401267094710065958449472980331471998395661157811543381370018016259873098322250830098350022384118381094310308741949438233575430033728439040555842392017248678122248417897353948900610387993009702425459461819378550305077140299065398410278259187414759874354842835512407856717206723012415510982133580683180377090708795599970608870403413508528501670304231483577881433903284636746753759458136914035589876770084421884974017622249329530358297817468744161190278547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27508003355401869724853811967455203526812072070449152710679125897838192088473545963336331161514168880096748861612999103488017810302232276733946698442746238511246079211190736157847614641480503576630242009617855089214531352799459050407016298811640828011985368479190978473614747490200167110622843345143132604847200588183337931610784009640178535238108222508503646077093495910820801402197097247313226410015890151625911098332675121875120877459789757130473956448645467982847001019343524196835121528713798281893234473950441179386954648980320338753438716560444349212583324187000468350269904144907675720350902056535694139530511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21355571843888267824800076529368828332804288734020478252707206096444262154168241154035984485805133747373780787845267146221988297400919327866403483431246153832528134264380155756327702805374889966511255226126730414461408424563791474702664246908484872160265513256272325254921779218107392689403111232541007472694872363774079787266539384126235127546739945673660235997086944477143664903840133825392906491185616096404595253715184986142019928418709370880189691204365739560899647465544545412114962181800913261001316199194084207792771667212324184915304113577413730985646025805609745536057230072197600568732628779115111789091647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26622981575515992333398432150880424097179026694355332890854116544896193647036072227922799214514964485806965180198594189214187784698457909626507526455249835918631829828088324333159132967683719129167963811144315691669069061337802364131845283685672887060900946547762908286573702618341985264552062725655866996852603821842330269030363200069477222597734674650177812523062136635506990056364084823927495356789478507834180028990349525960956770312323532021702033678383663542992069551818611434021736437487126095354525560138660524649406429887518169217650090867472111379647715690876094767998244169302865769032370547974373526161847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20050281825254328922330552470390386550881322665643665858880850300557516563860009920564431246722780033019164683948115935354448524446601165887710812806960339000499788731799023067809325027662686255743441878861276994603590558987061425053780141030158613346962509948832333988635701752862186898959740078705794454018899568513958244411616099665782934474523440440756821088380348763260930786284431320586090195626309517644599385824235134070856073188643580592604336074024379851506340931854827138364094967858779199146281995267341967318072754004023757711570036965125612296204644918488719928033433809585813061816159851327409546698213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19990238098735116901837396156511894542729101193464226228086363038043755597271855120957095469530278446737250526174628508796835038059440407913149828307727928382305280576464502508653192944428499002789191577460860304574789190340271400465007158278813053703439676962071946475043390793171366630218321979131244631999224980476345506866564870441023925474390827457252797022987404632274163350367308120045876253184270665096363636968176750823484104442579320357974672167526395183318376132242721962130264851143879026132134480838676077280615053164455221251656477722330048603420457942404384112427318570818550222934106518720027627062993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23140850010241268028330079554798788814602254060957458425030684259531174944151042761299989683958727209772503956488289626215757626778263940321849659475100547203680890364515128205362797848507977117964336575690094261668470814833721090855986594737027709036287326379687000904337470858667119636372835467456411399858124512364974922779574256375257444687139124448010209608861413605568585937259369312893894370985603072335082214043281763950832644078698175382056285372071135028980644454849243704215633659221496996135467374353228793657705220288685139828543517640449919772589876264066611505944365885576084668270248987140625078261427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23795793105868774017747181739719342836383123759860512906787076721053375706422861476218132762224680705749427481672925448437750843071543346348957387851333517903216506317934280049418788081587811776248029782173562561614993902617161741587195322133761868650918125459063886592898983254787634444460322262127611149573500522465120945921012423172882472564471940633350191900628349837054750885162754346922898045977054865829206412629455863887592114142093290066797078197267743300734209049112780391161237013809715066780327136814699850296572625159735715090248939623683105143629099370732341658333400901186463029503913243423028043611421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27094979392115766012821758055365026976696092871778391741984425835442148202414141767034831615461548302695422399574002657219804681747108126768457121288428560005423545777660552519205549381953107965186265504208282300059839861443774942954329045157881188363003086842617509490540959262813039534912708497507382627338435693174193449383021806871406434682995087596218028255848363879355853547699908035152970658284945801307587826904414856501696808311645810339001511839731710066939029346740526361161261819709463785061615956569433138068656307067793793984890735935831537608797765984724377931231608836848320730017374031166920125064961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27233706546450859038681243799386411121191372338559063518405344030571988372478396805885087837252388897137738561305389004307062871597845554032133568608207722526803288216616867639000247586752939517264474762385517189020109084991004823368007705122602836464005210353690253587490709096402280878050667207390984904331818485500800630139606812179764396076956592528618943762245706624984906040158051910773365926470553213954009150136142002344231204699458035335982398158069393653816997164408140087348543596945120367835518347359782356138257207959777784370977597815917955385786187376371127438454055088939726702302876932478827177386011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22611707847847058760132761483377107214387038700795923852934391073960831949958527656801277336846966848531788220285239728858275525779786622985796882648071645917510136628325186905462856584656376714161308757811796432376980871022715298515970955723019048873535888322923269490213973159801542327452206237458502020697282772362556935629140312989949217932599520343689309671400316312778626025858739898276747891984945391697018018572094827202211560036279434434672463371898500169758684837960335297215989466594464899905191338993354849400402375989302674705814650042457398955219415121493120602099842926462143463377174312561159889312533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22836777098097529156321543374771110004177040565681222224791455637438074625726912789523340117961119409178665570746873226929814797145568279793646059179997628583791673179572298805636193081449414452091068788334736980373364159488081264698951175525498000254160336726799186232426063741570413132116457350441270308300903139900191568575853206186043122611836669642810269723753800758957050614709678014688389398776471052471172281486957940943012110669773374486605110404493829788093168760546328178755279599015618081544305891338974668347138602968451850154710046535484978696884863534187077619588416247488245701892734572460056481491087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29223232152879759184283148659356980003392469555111750534659021546382114999785494156814158629330514263304669462688421435058106036992095452766437371842498346540033431697113817369163294413737926673155203350854820562505882526275600150162189086426309131665566297178877387447733044974967992383700228432106525442008031030296243417748172634702854147055039106541990934649894115763943271589418056703508637146439139117632303911034050666381768750316203636312335681108036405334450167767587137477475142279926826215450014312057473225887866086816278573056470511987308609317239344861914484999770957786900480084019134522903426133919027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21750514052362736299801452392144657109210917535221132979030849367610138957743383550690798933196374810142585018068588908322524092546300066674972274981552616770877770817593415693436026226663484378336814205223688129633084182250293826060058795903673399286802700082484038741108198947339446358751104667062740171158795100576459063819972744243016346584975030561700816154912567181281267613263033992250184995724920748414223666366320847776166071481532918687865405063331428651811998719318064060426204045996409268510017660970819433398908184175115451655829387421829926399514194850307867752971270764222079887053634371756483295173419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30511788774517353968904736908624424687106409415829743078325973771143210307914704095368446108011861384076402604748445493427098885542354033678477960597598251731008308848902682075360249961605819132400824284273627993187633410771641718256258099905564384584555018969681016685378935677772500460022011971527377685496436475402167677662876957664610661406452010875514217160639694299025152824814670592398992926155025348945169667002613384869051635442840265505338333492904368604181147718116941972639154659984885679545148599702169582913341249009454591988382601234784299727556314048656897443636583261332970587908073194751774117883141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23543794080785765089868507016111156006062088160230858719203784388434120813249191284756493983797586517765925500187767735234756001241945163048615173265385247869106787692889211930196511215142788128628913095162026017477339866458578950950117759284732428117652959378123207072047229823735797476734994193235000002508208905536676760873149032698091983209907169073760079376239891454701260978910665904978044411524439984180681076910764381138780336111740686710537071798790143230030553787048625476719833274696027378724267526467340096916025501129512223540624573212108880417219852720370424931536977936935627242454479302411262246083219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20553361360158788025727643482081362758945880297512859148403927895323581171041633888997139975846713978653679193892771038791276780430106252316872767060828529783679056707014552170749933468170003148280815616650210484185746055529411420164201235720685876862996126721634338293410842541031800465394002751908061496133177175442678583528885952024925802040558203455927590947114175230200908953623725515246558739569272447535170252793562131394713327160879989051391391503935453551391334500247240991649932671796274695948491808222761316425652126257668520876745245573068828652108849852314523282155596311833877481459772888787156664366467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24897643392835718222866999378583823", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25478034637617156554309466634022694", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23454134251600582912507012567878090", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25148112655640916074486207556241723", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23941006741554738056307057767756814", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23913054546110701944455791161972151", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23630440070053991457111443693554122", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25782943267104327996835687250108032", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24625443269923399438842795511096989", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20906255546351228572622524798083242", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23660647481726551780420081693567563", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24413101889803719484089348238394556", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22994648219234750722237624416072853", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23717875131355488420729028579399158", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25576435288523935429018471752514889", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23491692182829195060355283031328175", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24511888158379718406378444350121185", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25113030475919915206460068956633360", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25158430624250346803401993325949160", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23117092318269540747879476709008029", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25403642285587873884448448025122195", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23040034377225932884174112168812009", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24959757744542750211669205345629189", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21836729778216376536647467579979818", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23730197394261747822123459371076867", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24474874265583903051294854760984501", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23994951825437500001336462020810881", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24576593290006090986640362550014528", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22300825157688270960100183937365266", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23174168189205152095476475163125371", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25790859668827195167952447184920684", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23452925801075376733900039569235277", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20769306050092821617624680830298965", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22165685100273066857513177604327269", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23382600366072983346816289798311101", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25574083474404194254323743559499692", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21871907909006961746934179190069894", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25775680502517513229681347792936182", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22951736188758672133795654022490419", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22520924775224060338668914409392865", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24606366386654996308732296057112955", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25088324346602892211794102033452557", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24522431181885962108781551186533704", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23447864018917299706289125001979648", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25558401591806879709903849054237764", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22434165523739750894752275198884635", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22318164117915259222030037560927390", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25544116475847375279554845672851689", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24961411586505554998719330725126274", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25451563151711922127393445579519715", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23111443778068569293993880774348222", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22505349936795288955694158214297868", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25493572539994453336572566820249387480348784503442567038790854022939284059422826734483425933808873142956390152969947663774785746003845391370651312355587589759608960833106165295364342858285859771451020362247806585656395594741525765766032113654416150286491881567448862255083565942582373362562282953937299859150841707889004075404557191646104695413840096278859490511203304312302827572696882243374565885390522984488109365171952747812920937942528616306559361590367449521745556382133987708804942596696487193821637715505900390555560439259156120311982209846078116624620763396167946067797753282662942657962406488933677669181637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21739179587405200606966319528461826513674315359001738999020233622246938790646509596139044521307410188082966215428388835807842621076640111057112568716266614281769186511859532701982829443965200254673569399290910510001559848178082932235320683101964156125485789588641930472958526084409946624157188817028008106268609053634166593511214349595440935557641489136821751170411155075319854134952225719166373963812028018457623052039455668106959939583209838452364085302343464330110505411859968295683932345541928066730712921748723186744451121977200492712122667925684633853991090294285550855937011102067199246466454924641326924365851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27955681248373173408993070941965327208117947895257113569485571213870691902250844608036482760159547742907459952763083544155572265461981783101330053219915467521359683295825071204795757488718034850274044402086349435864051899272561234182963096259380209712445298434541513696641700886403021400319095582254930853792506254869970785156086897305312101295732436569302942796856999728438804682779704970839773460265994075694120466450524623257458399099789870136137410686552081168679589859772712141534224564646684871258032750881709484838290016936696314109196273743013090870128956186983007892768515469738391402955197673856103053109157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29949146577976775296727520828642890310495643354124878322524857439692161397648991052115440526603233233084524383562937377236018105690181554617681832855768806288946675201201883735078831265216535609362209624044957728937930169258207388466949523363706807228269209719389761684226836395251551750246919263312272565095725248019810365734991532664898157937103771866815986977295478943891770425165866620375244836857525743608948580397751713861381471768436106914641066815249158826188176805320316796856784740483341082820828449206777296380859231328509733526854373596054247485998772738715714240084547289561836612149967085144843924989703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24600176588388546969219020867492377599725081061574234097156206166139841722728482680642252534055296848627393998366317640901526187748618616158173158506123802356897593995839086942989703768890389387811625519945101450468502911817605734291220532288876634807723184590641511241206957575738927602859247741969014492534007172568686126205328449044946510229822922590941279131910031035406642462991574319315769677440927143709120702581472591951223075706516348937204437079559271055495472512717741748764125579421024675759515855381609468812784868168416434812232311512251500957331096541332541036134287365265006337714689516318311209910007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22115922500743538662979018891402848789785697482466974549246549765728639721296924666311710765127159896703426326783280021878419394792062583430087099140643423702217838931945666974417877400664340319189028183959880161261921280712072941040740905597227270252085215545776782396729114621384583258596145089006887574999728676962186856437536868742629965590180721630441737054443267333482149322476186925809279198119876425391139567299537090753971573888616025680049493862112708153017371378766284386581006896761348809057495726738970941973468438712482619990331256897439228529465954310672547613855553990825869531505850252225757894660227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19014026035440953415982042271612020589026257152706613746095322756254946991241616851604403349682847827238655409418934842235078535294410691250150855680490482887142861740942384613439024781462662582856410392695053627936657428375847970490917357291492439125516229647131279870754444254081683669806018208357109158305511776919024838069996348208555845507204630727733226926285108439931073708094826221639625869277209051761223233907122020857045886242502520909038559662872917615506296606073891809617091001458254405036543543464242841496237032102611838679883345025525728644830246709271536703023244606143894063465737124632784505112561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21185146797282218144917816362773637600618040232507201354868860950056196687838407219488500457548368286911432340575383295825704763334058455504698699697592996979063322214819106125241455701730949925453208524532295918924955952858700863816481856202867299146136405432451613904131087432463668405371299732124083533678677057604864295113783126581489020799170600862449516169495355794648458360999494321014740698257444031060172019997866814915915492162026346780193641561726655664208424791230887147290009935619491899882086261929561441645501784517300131419974271428594615524337573477858165939027030919866034966436250759651830785620357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20520547480567048725307179282431033428727433972105891999568783442694707992100911303796674368833667994103793715747405792468716214662278284141960157298268796186818508392166964260005739311963073976460327420985060581513808089894097024851496640366711924755481416362009017106342569116463453296494987279802277061932354777929868625722847508565532329242163122592088158721002907862742707379798310962948219666091712426712397784863948119987776599144208397092484850503937777968499821128205714369823992137206992272503811084888097954446277336253590320872089054526070495142549080178039078856521487634635599760275764710725846844433597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25794720422609838919246671743605251", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25956707804761832550170146383404701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23590488241794131017055702926115831213216269543774343014393232842730594860688381128084516488130210329593610053537380015870069791526475360663973200251251213565040913821450125449874011514004017436830206758400122764800928150557241133992440725411321512724713668756154790112142955892701100250192274167990002068576756108392776303720068083235700418746654421066089828127559632061063495668223618944332696786632692127616118834521168955407777076729217971955847768438553244715846279046361630591606093918992305211043145253367427246574436828432326344182073572243466767188714238117041539103947611253617097946145642118689620682025821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22085932841622783605763022377022121798258605738749498628575284973950890845396716356002455680523132707473641683723948254600158496046514224502702667681214237469921534182292894576019976576822400327905242846233876761484796606397903885547391816165975190968570597616949807672559529273601536497976084628325800827453886533559514722840784789230215873802816336664879907686995376180005626355493532074662250260927731283344289372932331465225406816437503025964277004388190612885860567624422970701826156542982898563361692358203464497195397343264561476623130770626771016502768628273418284912688135390973960277688816473490583041732211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23000374442604172568049806020172715889895295292956557098828437467223127681762778392132600884152480256677976933129123754106303151949361446515255165624657639301476583747428467318000029942142308373871730147204854595914822044782512302589845787926356861657898165163914927782181762616562619568481184679437002451492226004780055483319728990681983676645337862616387625206937098397475486109705808804291355745775188643496406230949885907793203763833721503921530667623437792807365396791152505460729643661177374211485165752844110954713338960703884167376609365448214159175212617686886369181618906911392043710563177748001925948450713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18846181346080856454635269660779690837663937686031826261397796334428697433294240548556435893918972538706740158248685305247211866343987510274796057221210259537274609987603785885343964798904680749312330511444719077276994751671628035372547447909488811542845223656683019565004460749046388133702324012490141937653085709612863102291825372008785988295728970984944374671582135534291254732740917789853361191753808560639836504227053607900572603576357554219443639104060999761776768265010627879490236922589873996343576786504330240376751916908540614196533161707626571905872137009611322788945833284731617924643822549517842619425377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24485950814154949202686386437673728180900142333256621624570485271706105312660518848233045458583437121150332891715980982598700283482302085982580249133511090878021839447035027754195238532612482012827182734525453040986344609044533875212577683332123692832849632661367340914219280655792329006454535605619793515788333931780097127745713750971090215989691660837872686555972638394561214702803057662275520720141287285848278225927022950398928989168256910738531402499940063731320621432809481143421053522220646930495468952186787819730081018082599924516366023474460200117203501432623713478654548762356221214387841312658026229389967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26394030816597535118734013963291560898375424164602354880043480522612921706242005247441629298812203754993908446572179289270189870280796835157955733424920027617076207031971093943457547031979968646304227308321069719796705515322830447878270669345108497488049458184527558367196204086786514931895368984687487101199421479470493456375989927885964652623199351411297627483162235303461312849671876127524416259198272687621896025750374794689451737616453579944745643186404690548022261378248031941313398457844540515932493061557082567752063893844982414495330788398462288861316653326890426817787678710003113460213911956962919597046223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18324054644049857656787557587997500094287859006986620345275781828428477533261716546460475379459059742948694556583029507406783990779013056397755330702031301872903218025147732104992491149422139009225415552984702607810404920396238097285855977879783247981078844476828805882582132129679826662506840696880796842163742592536488706746368814757552382528890063943102133006790187457276408143159527943077902012640892785506804374834476231549619907141704814808331515854054451174513018881831879109300137114143580895135778109601534803950210100332135888111705029470734538885611185641030432877713378640686811641424130804068247796275783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26312525211324115187842208619937779587734092402779135911511860664558980500189903313947943441426636968239078611443324548861763249440188298277556897417612236340723691244077312748612000705713519432043248183777964059059799303513250716927224039743872203500129565286158833373552845538584962470385123300524338610474605909356259708229035876293714970147274449654644544001512883583915644330918714971133200387954934195111244127058514532416411367924263728575223283546293415294187393298229731181909465867500452117220729555006925403280904541855650840639832305360460929457954845987266548038697042126862838885028524309539377859808591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26607016401776448638777957946325909791348249959215788094431640963363711011617617335351584014372621373626271891435336053162196573437063451460512197959857163139927220621047807118871256075241417495661445736873429725908037305227737799448539752243619487255861149599832223955186998344864005566190280980919881371115506135284057831845752342093221530944094105586521875987430967211496541768254732325794658514378071837832071876403577257072864809865180877788503347390200817025097653227133030749513865307212699816179269351041182985414056809001153181292561326917144366547439195133447567665122005302984928687916617361346725191425673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18837809048557524287953496145445465709088237226105320828783724995667763653485186212878595946181116226672702799173186578657691873018162382750351778382954520329885782341588594305794682012685800835229395234338278332561906086683949194600612066840937274434649886516102023722594832032268846028850845812272395015570762018953346507280766117564960564172525047688389182442530268646507183281764035086421095531476616572644535916808875871480052909239073088921850152719346784008364346758983978914887933928066653990792442434723496402214822670262654755419039472233947181718027617065503417108834406126427924153377573099287064371325061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16342673103532096308711239205318721170630445185970985218361615726513840539744349199564688207681094860893248988769764535804493176853631700197102903507771556915340111793435272138605775414515269068321488193823045739526220268440402561601279790264964114079422862049076378169786918730566388907739508860683585162482539473735744572164801768824500300240604523019162198978605489817624274863974576574298916512977413255633339252662498566930885900979287124795486051190830804291725815703787002455794193452015268742690017555351600559196264227162386172805109526781942736141031727611918614174587849351853279118375719375947467470441843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29016652892977310862635174969276879027187477740307387806586151991077075690474608249580476891462909978540346541101230553448589759207692876224231643764935184159932174420404762849303194056222983770276579548506848921180904039418619585453438370001233681326513865112113970475416649148571886780342461523003747412843885077856987941682182212934429437169124352121138150919120177486454860797021481549025764831222204480063199166565144966100303825988816625983298842179252857867944427192860519912449233288996476018009936663461163379941094141387706077723010477023024265821600975926336656557503455392282658798455431802642603277661543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17146194269811340514845299758792458241408031396796009488593043335270835465910223321474941885217185326764257015255105620889251004309039987435664866118698664133405548659597114078769233376649023968405845829304773387031908621363692319269452577818270601211414512157965725461249367018423380035301490448161846093581450002300262089213343239322137168527819489048052209847623229900942374609783969503219960009041316756474829359805505931847372453565159277781945918908653978791838349076548166675904998444732164924009520305958844552597090937801060494033868157275541735693074519016270166258966802577656818915896328959580416877752569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21718640917537338803832554175149872115196383982183518040176248695799757549936951171829214300387474954712056532733078647478712283085177949911971174244530593070691188493229814482323311898931807855115934243697280553626639315629873572278872773022896959625129476713489182255384296945660224303434706012170658669250713394413869454695118955581687954514842956410242041601044855337146818933773965296631730006006882949337130054013379426394980788717000396832471167740661935170749667006424908767943077421577301489259947558095114441378584798662259178879185538897232239472288795477953168866597793425218690821065729929627543004589913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28576877825500652905626699647113013226569126743005580991245874569210162438891659930531106843398707391149148558715886638601515276868972028719940124191564307211740859384294963132422959797134371845673600258597140066502871751579379424260863768661820619596763668798704240130704473041957533866310355950085054852059608701167976745340793736183725136425925728108881907227045153350981262437417915220847849655329100327655244478837005398306847506088399200738305848611796617940148706423197339056600388386531234054056339744037702316496761261867452755794843629037375662945040462054077850267680400756860869700949792750472379285875431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270222952545731484766899488508321889194777261453788635090385828163928080006454728411675702111019711662170404145542939268776210965031779593991393296829166534985841799169182592733837595812272564068739402809961460341362955606437704810776881400736975826476667119093642222957256200025409399996993546518173158942202508653854796672316041238533747378860297298761868088820103296812473245825106248007721682142832964684410854306343826906620103042469417245395172312937818616329235564675035037187595980190106284022269626405380630031077387980439217519114120239924271208630344006233011555848903195676223472667823893796367177056757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334486201974527418710368010720704879367116331873542921012469490635258176242340639264495136697733729313102260941867326921549826043147029994879623544263224181659020120310616468171101151227390664821026266081778510268380856958252183171686069297466248031874605713728666291603577962300940718427962663920925070620896735173000539755356213361834931140672327980658969333951176536686702405649945160855011683585134021812946493568238314614117142768827217710361637560017462020418403041375791043614892899404027750891267745281748913301824078419190032260340677440294887930472430599013040522630747649896132749045539365713932717160897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336968339695317011912093365938930207530366686657716428930378769323937621534458598068539591372513617324628065479858392450411368287397061215092629500531676340452388917920985405756382949667987772591400847168868366811700167171112798199187397419737894674939174783928797623272722344467859761506767159789548114439215129282411981812357837847812228408027076171015795452902126128973816498176844852841544050644341609461181337077762833524904546473481392348221285033105499638823294420435442883008214536624275071688211725228877650478387693728033138774961833987383468023071746094100232800380476817235488039532431239188633806458109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310747475358585923608020940086090186902702718721168998732415895097051403905840088772013455631737136619858030480675274086301483954089496373034110117495488139949033356966949612273497613540561655376868606530525617393147486910706136622235944938117156428746911702621324788063815805298380558746626815846244235098016859619401396198217791705875685391957306987158838569929683844442373998070542257312718367571532711302993152856590375431340004149669077407165532649566541993299423783990508279960438971462324540445968388004922122108837531896785481912957387457028484551273741014580737336588551045137466432061572364858876465475399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16406762199928225902251903298286428645363491348336587432399847653216914331961946045752250876439457219468267659058789226002822114790804413079153466684769584732612294815419291787353240727769647457343968583060038424393147880489613245298667928462464047896235256335754356618461859701131159525223218324132089247778172943552911670533968058052043223438302214712151368056651473181878899046395736264870399907542229789633108970686381329766482918291328652715176773337070237540586739757592384650755341693819820630240747231008688087756882610776088016291314040876601821898466040568981381440855833752197144533847023023232826837461907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21808843389106075503404810281839892926856315619279613489367096491260647912152238498519280364880374828893111981161039479624305618222352576735553175632787294370285277628708735281126439738489467093362110456144305673706431251260976142415803504526247880598705566506064166462832239089416557998902246379400022646105469802015274803940204395778852010162097201114178687520349804728625447677424818810482778871798374218920366468808416404173983830576891985538833210459588598077753306725029600664199552363587306721923208490264808479473773158301263407529712476918391538221063092768872959463163776777576085227256160112485621283722949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16506018978394744960172651013091018999382352384003452433279452986339551769733522008446569187977386998144288740956367745684609367358228129445342032264644380187619090646646974410695896032972007217681371238870899088393253759070095371619622810517966935719488589524160927937535351738956984643020586491753040671640532514922288634791505806093699642881884278477813665055778633905583741870220251391306726178232391760439936530229142909509600501612472892652049065666619936793172236923164165278856822808984027040178216809459948915116858223282232846701723854076420109851830898981457061287950859521881564037761714246474133221366637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18934257548397908025355238777564906427285617024153165101826666718760551610080412373786630670133347228006493492024373657099160777742386694868389477246469571050857015296538307774048010548565455414157886761239590199694187006527123920831448253142098613764480314239522959386718026616287664134749667961559448730197139579446059168778773025326329336046882337463091075444658891824865246267497613301416772882685960198565429370781731518323617293715496408111978794414151141797250136889474577223259307152393326767812421399860031461845531525354808784806879955785079146706295537771003898576737283525627332399637988375633801984380507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25314225088846523551703082065974701647540413441802369467481829978348114097302754774392628687490054751077428316122132134720810307557024482992698886422781016690514669189396099061693553503377293943578822968985884477117803748435324981559030777430154663006689354898456104352222483317761065300630090432938892064195684805653457753005642746414834955072955833274832591491991938723258165899514017342877308986106797450182971341177895364971937915704849117321734529769454590422657853307758880879347567893007042140882315834750875128122717377976907742051746637267977738716299246238087183944253055917440542685193515515429394319085841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274103363214926790435152737800359877469851278359695998823802307253777804932934178158640996678795157144355590341640299301692683070645679319299314233593556960497986918638143442444912443715654623658122699932900020171613132210824253000336887116070641040358206840992311512955741313969682769023461819066547100827615377522985098028660141743603806831764444103845814299728983689695212739860703339251003853610870671456172458082152942158194302595785161445682823331828643643443242636926246400806491434457806897764830247164930497538760065987652098096603614963871565144440014698974729676134945237629471669517165622142470666520733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322172812364602441062803020548841676934779416666091050176809096346843787250281849173686499917057029712099560442064743553677653952525264101970679963603620585251101852912687046490417545404315080869007474818732412669077845131131422957043337046551105305434918744185712239622104874036588279162844360254872895742576435497995574786109251384974432154882638707904561500763121661319938384475115155132879638824506374730592922533229907177955812707188783380467015482627708770430631446775001899185278429328472653100774704576583575502012446315577274459397732531745794491718430139679837748959476981636207813386531064441262748157893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277669326530344056153548644281747580099217687567424302137774987987718536126768638786398383645207090753060699524701033659778780815646417402137256795691540293442185205402090084302666230852877439406101772524802202746598449775022304157025708146871627483312723749289770910384480988362017469321602270667105666715510781800603323969838299741082182799199431794970842101616860551214964099578655986697761284182450210834420541701527506536228921204373195718962121980608821519354038946089519871770064602573649335681276805163892842488672989736523769645493653180596676632077198006762638942650270557617264976492994013738822801663611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337470729864857255108250423744471925236047975883176107955664814480855282593193430876398835251183306671228547914987020709911235690085883101219938236767164588121330297439552704552511226273732765158369620314951439717830649736569353510547866648275622869613021079276780235550800676289373392851996867695580645990119785961709384806971409381251282638564028889731708102650617669208600750424213567890970313645242660218012319455375152992651702823558645258467687999061524091850892494376145897135768656616464218354954663026009965999044771069758537028392967175517762894573419628005524108182773492714049078044181685273315117738937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22848346673928123060485522752057123307309575452628549256260888045227447373974367839915144406056628096442667155969974130268978973546578119894125490872470799023308471244985901282852797317966930473660165052942815379433842274375021678127560726518650275831980885569540259305446016395929433953257429888255486175724459543081261868143769088857271542973009965709991596552240521838836787386015578183024325935551575172677563199975267809487866352969727832925912547492524299956195073819832666561282136093145553181310154133416527552398767513847730787864705739437987262023860884408587143045262679142403783595415164372558126479263441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26593804011988471401671536791946888935857262481160174227408232212231811260310080484073300040003151313639450581006484971949850433256028118367891955803146535775110317258926387912416147938073183780271930289655991969558599329197521755815067784472721993390116945883364736781405991059683731716542684573093674114015786125896772833479084813969394275039455804778962117486754390742352242329311522426592693354063528454005909449302849293784293579108780739665016130527396005844581565608743022792444930587023374455731102775019988763232428672389396920694582922358717001053726493619598417662875531447981991772351588912370895093346119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26793324798474248505159676152712723667249831869559435030423029629167252469108727646462643231123016821264522821502388907629921814289553267693699974838373780800011116107067720243668229354174529519997589906850720620698793648069941346625814702550569483666429985939651582693549770630613933158510761580784534894662858166855180206176058342570363263214765859006605264155336111226291359870574683399927301256978084221913548123872432374979878170313344906450649015604033963245392563117146760954180130822047314578095328828965811401484122266464649507916321228409388138225564488549917335841923171567929381741351721232871244455264867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16332149490531081946636315820781899945490188781622214895919240439324690974616854187368759576258654310239017258434287645099040163870407395789186209298346497114677623427467384408490904277171040394153995480247632118235960476489213381582753147209055331653841810153662586922413813151199527021478043342983239004608322882798248215238402370544322144223620442822324058440309060336496698771381020195572755396297977951038256869150994856756265858253782918187969543135519576129808677809106481829570357428244240092268898567881459354782474452968852788440277643918606524153659312759920617433897333947973798431644961469227809321222343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20978620814815450565923568825491520702082665775064035200002527260651731877030394065998995537147153947780214311652635857598650312414528741696025243617246073691802230645844289122883901668189866646133696057557697105921028101359441165089320947382119981338760482662744832068450596647638697426597432977502169639492824987741911434641966368088796478238556841934714552992445165640012502908164740858813036057385708175159966982560314395146044500760505581151822944935034186376380087159238173559589830238828455853533536788689932163252785297861691607727407663004864864898271090935293124627319826882546794953536753227642978965901491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287239712980900098737010056252005297697066694620425821970446726728627001560567000315595775038059543609621698239655248107437345507758666569084062583296991183493961763516786635487359648934717270317595999566157136227029517446168877396611702985855970156109192089426941404581314470819217394034592166045889561725789841668533032288121970594323388451823736499812116171940063636242764975988202166770497943579017059765246511248026255037727796809593133464392836674199073767162907620022544774176468218316100124816028981502484205339589255591623989854538552325107250961170777185359229417140744721254072949053445380736711230322241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314394910961303813662243970977109266603081281782202857199506671363678848330522305095953293203282799160082414525144447733051973894278617709902522591412378121773054446848177732420686070607916649072165199917531614283401999106362257544838233568692814582962468093247575949571529229885924219595881818156828695573916420351120594507842765801082116179652166679383919322245235246352123201147999487926985861248427984854265196212908764556717260845757059893231598739492351888707571550338294854061596972895338274835668279387456416199094686464508143941336708289427673730158716973125291139313787581589780669850283047455719974510037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17835681000351044186943625651215290324282702379512753842112850267174685544455362287052647992997496473855601614695188234557756770141182351415960584807883653840053807584540728242493170181073960035951008640880802260973519966743827696108576734916811756518586687515460798334455394416161543696494605004227586427259862307968375349590665112609529359161981722258851014544621596279234713742627085834513131483404400688121229437930621109141754899276893722238201506011335684080817144022188543257517421048707576787096105336420464753098913561567537891094162384692488997860782743681712875235496177265745641820704257512517883492590761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25304355673352920603606068041887719520779754505149574697177325001702952103536438198125261451302218670159259170277077505228888739581967817494651428442931246662416800528036036181147996971232123456068872965928469807252632067737296323292679100507742078806509199276101228980581916575607886881965770513195089913223170589362999992571264416966895289300033961003778111092817472994701343664387356669434531091745388499662685752431786032785904890285685782719079093582637467943898448736735916307987400434649965142163992629257623908199380817689359833875812184274495082710188178121098621623591193625758685495818597025694280023316533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22224444112140533633960766151142365992488687630200096604867648967760869569295994301753693736718456285518530624546310177757419001448198992926043363114094657864489503578180145157103384333101969395957679781828864034071500053365220607785167963046951526147500319774067445283395028090850379980604734060172088866565718767444467909955353902666438007145352179676012667794883976389253797046091558144887445427179330054879434619600577012412189423014897465628376630485338219917450187932074837090322496803554347414567777222817486593071731949357727542580191035668768266389140431213265178309692807682128145122144010030179819352871241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16301729035180378525448176439726912837453233867039977520044101700402544856083876178152324012060877863787922049605627975410696997693236562426677036801607206021069502538657895174806328147930021171801963722038488048028228957818610293303857507315260519389935708215191510836983714761830668109398072446086329824035137615281990266471264386675737552691569818046708553295862438395127282928074414226367972153348401700077845294972431910685909159637027092919821136633366352567229769602159578887755239454073803452003990728833458307746363170576056682279798223717048110975735856835842714941549353290891308519416072536718071391638197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29087430313018168992887051393472515672857377197298093391882138928990526190340630070293501265023612716334293243276543200379605251175899128848724064860202080103159882368466464717678859934746181101513750393041661334502893685825149916529248993637867033662061723932463840086436325218448277796089673345742295355523115637722903399897252872990917359194038245871195222121238053147231287672677026812872775198259320629571893761937159842653842484978534909119281513323072074538018359504194735617935086927886818839429879700879617718877040720215625597095119838976173514581851016340833950486808302080814809768566660041558024177842531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25523680495024081211679208735333073254976650667027399672979088774921574923912188461809686651517333721050446590735580976187548139185292304880570119662053298145066338725551679744442637550612133519375726148991808238826743505429275364582101568476549499009882449353819331279857437875383436075370145835015457575945128465920058872874753097785063388681476662830327402229338039692249683177251437345491857956588608755754016588049121912912199397910747601619301355211466363480532046189994712821385674795699398269709487479038036169364536105918187978941095038042350958786144611128115053114616808995733683880515919231545193587517109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24238689065869632357552065990485259380930819851729434879454653253076324839464330769955930219944449123200962654861139292032406083299534509382355900025501475706460305929184747709497484631913161475550878786044701781272708230425337775641535413519303983520839315406734740770710591464539155341243763904277230887942618115246462793153512490919962137232498828953720844357140026958394177851962511909988894488261494889183429069777820295378863251504148272729324835409302036843123069389818035148959469035720993604116319842146435810594758660513028048859856434875710539084164043895333040508071397457668954850958088397444151980028871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26345745813240433556508657931347800746844173707666534042983064186083231201474962567241705654358988269319748545631016051603109824826369546934439637956964242410176688180773751944871245470019538272264117595700077649207462754680231969441269832727958253831897642563251622818832237746098946576852319829661921368670287987562035906621130750565723116697952141673991586007257139452807935891613785201091739596544509939279325337857302406480344878163434247342236326561876273988721524553889020207845653131598567063198472638857477256211783288130921326023768742428255847086856139434970910505469829057718192316205786804591389940282081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23951815383181127055057852412150174957678721716802689903843971625830524191878820746379983402974064236235306774990330779968107560917654058295489771423894383730335342692914545262689733778315957785426662671739117652965959430076434216715666185490447022234463044835924445482050624489912271851684640382932087531256274922319913784566810416185049974228599769414826229038487595528553865530866728835300882814534738631118438628503831642095143377282686031020309466751966989150867614752953238281519098370408585536481672421338136394847299064215077389932252620251983129080994591085449140557856012376804490984381408061153712241132621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21458169828623131833210496396206190558083484683942208311245395625739402598569260299204812796324952227471210847799848759935908731724866422053015470632442782827089700161737909450665418398113944824307328689052094709409957144595063033182405959312412931980398634800915484485329415064871227627836989153910916650185861374451273237503239495145832708758305718635220329394227422214945664801168494878488144642122068110583253408495601751697342131648473505180101184033416780110179065888164788119458904863007428279327717806568080477812042656744194178750748957408484772572646943545256745663191995276872283095465895337491024443982231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25056338870277986403603217263910698265056122868637740653820308639994931386317817242411753826839390341250156281368254218147185687498967274252872433742867556808094350541560166365416518818217896688249320267204962583819986080993357802196551767984782484560835861450431333897486892063009840812851807339146456899259401983154143574900332729198313622825760215942377080344262210760909691240594598848414432149248492598332513449001499328776740548566069711693606355865023243045756814767501884155395318233036000730244502604072266571075620112861247226589495740622328164192949022340718927175134546920824943741597416810943042947046253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26026688142346291317072384137076886938852611985126840782857036453114268514819240684270054206687416471534583524249647119171147018995724609008868358470265540270231726832973303195320529964724570412412463246134349610216192084682678974856417922628888682879493340783659499161415952134051607377036544189213361579189223483700939119529198888544616537875325143018774506880251386528133546261036935643874578455203145768128906992677146221147722504825821004974695195813810766926608569505762991234246464407556216000864148788010574570375723776025008075115803676574624465067846042776399682463567462481337523626600442286684715350155463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30372224199640359536908553480623336246938660207159939134982064849874869083573655878161270787155707135380753855816508719524592503533002321612512794892622395857207431113017150236374445338282619423271157576063311825395770234715024489421934406577781000134437659706813294082805319603982408743637664566756280542190000396121217909310649779874158971219961079498956970083441864544320099564870488660325568351581556529486839066507610499439352658846020669236097524359869377567442006074399327929958101956762509608924447625558422825327070671043634401503149776465957239805341877474495887317277656181525853888548467630837804607149427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30371832139415974668159757313276011791181248177430781281089395377064379344252907326631851199515134494704361796201338864314650055738929700215203100894679203185932247133255868263804490704621847828293420890601910883879351287382973904476404804624538204397635660018954893772724177205693479187826769605323104013617307081932821026627643887879114866266588943377996192565282396921599554851404533253107660124997183180866799962693240039223981677883730624343425259860095454782256961715711232029175275135655097511796544938619413571931497973230886466495516148949895739895705697916532565766089100813645396434938803087632685671670033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20984532252558339307720553724075639402574966654352453925286967040242763898161101243804757646546358882085735378713726612313651765552593490065694969641800695763479314264754567556423570927605398585062263246355110288529252405802730664569996737955819335988413758915450722638542782278131281313954571762488169094728372546653658983168780595534768542331503128128200039752617797927961682296789700217945841019584249881203840494925384853193207146779564330774819507513720364215795464847124331932971005342062449781308669853719522701798336131643740032825041994414145251161575391235004496376374852352132712019697021496816130238442601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25056642066453632975333529103247019088076032933700744287115869685897039263456231010236039840869244579592254292183009826350243162339449512322251729787853311271038071866249149860808778316446952920314190213478550038235595453082563030205830018357208592592540896415694476037464587386263104835702141856429483401465629179665869627465995448938214242676279604811645691209732539775059658280333842820658386720849535502815790530886277332524087496758020056683621932109103219924484725281577792162652495134998453551053748804325115449097939749670428071770519095255756521155868983760708614852717164419218157952610298604049229609530509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25166694673623430160196253747732438932930962052117047507937346507337790275081537514947091026357833284183090700721042363093170692090948727092968433263615365103820454697796977352478319526512266868071584339997717213772715842350916253986381907886845775534395265554933836872821191544745112411269376766811279937965964215468788683638993408078550395656605090358221986602483907623350076287892078759216788086588069373288806760596689900303354459330153611441139538866982237044849933568963939933422412169127567002257672842656806512456011473175110957833514318108675894071163574872191485658296203651922533107286060701682907865872773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25754906671462429509586710668843368340399303956710839710702311538570652914301085297956587404531712719526530672751926947046386709780614248166755989207438034724822247585490468887811898592399213572478200422827026191623008442019733303040848622992053248015235401143966128608969166846183261519258467475963922691156351522869256498112241931366695536309255395333211814253421222644387396734376570245656576504590566450934045961482209541367066959971018251205882043972530125815194649449167656252926234015309962217697891587613429544879082021890057825645313896286524392383859432153382512250532057533953581422186398454132190834738057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21261825216396664939222552658152096025990172561134709789319093661289388903266072995243761844552788355175257555190942728495126197547643809949992664895410886847712804861283800022766836521666810220588819564244652661738741806511347290853235453640721304615786992303336695021625718096926532318686663730034470007148440731762845957943439031945269954405099586360386623522211582948938488047923543539004739688340679118944837690791957587782166889701070518439120375820512098026191053163004460331216314446999659763442136615220723440250286682058917854204623993913980028193854902890645823497982455505307115985253646779091429598156963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27160661446473651020744062043715327056109571592649655461686303698433367298696424031910098566714146776575005057968258342796085120049129680995547203763945084603635761841074314078922519215168738167582919232577340514080162018601592415425722733331125513150185908154103751421008197889401612215333569780303639493358591820568782901983929587967686574940815056489905688737956055075472670323325721567591600198147544467514518231526151816021307358282181061706759948024423668685402014826768082980096382780077096310867476035258594987386182695006793896805283624816906206358420319450237406247004987783696966810653274433282892741391221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23697547528137339131357504855871620348626482837600888187168479712871822971635840644881922091880892609224484798226000113343046966538911256320036456159802272467487370818506278248481155365276233566205684990873077293391943453756528149112058772352771213424563448556379022468315433001255850507017157792507020519241215394532014648899079732726924586918036677803812832723964905021047326207698168411074193712979745738328968074286779629717155268116965873770312434401589043085143761103175064265886037851879517602507228987867213252126341585963655493774069433870325610126130087909849971786949942797405169881582393545500815296587401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23713525532181742992948307941018662021039811738872573528115698969282587434476461121576151411182726000022582620189502425243321222527174999861095003951699287346724028546483686756772957143634899728248510635702968138156321453098751178067756605193895175140588515989464409281182862833267376956710211850974047643115405468533746780309197143145530699585199950244690032296374959087950106243772359822859413205445838222832233845608355802023885751191653704455463652639449945810772390328711761961687618034266551907544578586417418113496780869458185884709610814485562256308207444584645328677404211067890891504142336658023374499445307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25944504050370526804368353917029832048893775825176565036091174023912147445383562778206187740779237664732703153579448043409699544920526309980807777041469878111104050573109679916929832429403256401794678076138790125942118028348087521152402168219284526009565698833250149067471609848767136554120066817356921032443920516496416279741508583581728925205932887208681939889842023747544511842300355931049869318543404712003614719108615703274983519189316482689511808733907574996500074923931529954911229463218150657289535577752854147798608264288160642409476238281406667877415454339649670833213899659503648899668706622779012424723011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24551293175062392045765260549379088228392822529225323403999895141266160423017381683562104868937115559263317772373893396622319332685950849704815877895997670129892925479209788021712628774353082546409860163401301585921141692862463702826208141777908811966280569078828052599462516418470163814825477524000796490821251899172955366596567789704487423930032862467726859742871920113463961951300260962023121727301382397962548433671809042156834534005440308619847633282593884205053436129882302094238227610510261399301771180793850016000376636188950705810090537212648688333474831229548867847591216951521646063254371134237940834018017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25437826204750587614042220502514313853952978833850495851678802594726083842313311062769715182973254636492230424116141093706287451342979755376200892794024635555645422229070916162497663555343085391880057712673424137737444366946899655767149388813964890463615582179426508776003799645678767890476360042903356826725182206183511435064454785925581956985350361675686482594222972393939054163559049795683522560519898614589059039943346774568488390389492391986813529036754026060353209751068623067152767194642299574385344007484683778406343010981258393555368689396229928142018402594984501717848006610371889452820941487345029912173599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24639863829240961810380225372709329684327981377828140146286842021851684652168624639385329538331111876471803887587698217651936028450110716196103716214613321395846670574624615507635439102599089172002677468524241820240377146201731577564773999357749414216609202745438903523586349641387484608020379097077235744954727600668933346288284052250220007988825899945363814004154564864987489580295406728663837228207202764584174746678568386858629827147346181318854662449027519033205409245923990210836245144390811088436483132493795010669982242210780483753701775968318893287633985308582930650888190350273335543194663407963154254255777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24515565299672872261517891364132486543233748231379134288631349348641063424162510181364270994489326547344299413208143378610767670150744472537408203200940399785425131653533958379474140805751377057031121392917617542108272123558823574345546394000262853724750427536915500448892135474129949522724863823486676485333425531960675839023631482031810960749576021814950934880235824733587369813127159463938229539829420504443610107888073121038139890771439288074442421696369217770819596010837424745446364233559095051782359023262769105099482712533849336186353139584154061766190759836294899637806154216448379284523915181180100203962737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22218541923819264234591548632957994911182260772696013823485653274885418891977023412513444614938723013163902641320983558228306870067550215647648654378736281570569732631539918781636137637295188985960377952834508996012251423765311255540286918192601969503591129899838100305815394694179516123327625342439092217102650760203297656841864432206209022311911181794695509182790832885110476592241893202801402645129016475919264616608114100564524159934960270920102631651243740569019675966098430260496704886879865886788374311311340370911654714505785035536547321751925931522625666351740981438732378988968047710202387975264412204081233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21383127100438554601300638484351507544501511597691277123434447415910289492338602720831629679590946769781956981755255422441852139775780260125063667591885709511497521141383584191944909868814924378525829452346967715883163097614761269604344944230283375997982798194667415250949228717775794927561071530812863336005403992703289727252646501421823253232775153226534157436068226758363235031098968199779478716330571285027900126019148634999020971149654679696007238542365905260278091593735090565102409017819967552556809357693329822545430933656342679925706921782948490240858040985380837700121873601245819219261833292216207625733233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21055964148971699494131978002050567621078321723866686036687602536876540644737064721122876461367890111587963417486137980986148970225107659570230747309216612034716211783364909631131645866315190972570136634314064316956339709994248656597217104505650901828443732325185631390335218970243359428844710265915687889110702259868191938517773410045226617263790010102386462566922030637843761282144239228387933735778116916745087701186313514352117959466365661399251152192180008340526199352710521290517206376714562285052241118727140098643813640888624463355362714911162736432145506890100907793438775547070480609242758587828804607998449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26700224423181300757686180519810797279387368722670111329145568280514141680849249489540130134885998729119221517667995772707373113139996718553085261261183031681235397078275407982045032156671099700337053914777584939037409348706953822267127821844590780317939459868114013264423772080064755626424172278868237874228987802308895607809976614512162083147012955805116223921567639872123355884329510657281816476720726455238041956380686154944652626054470202648625801263901520987109721651044245652156212165581619940429647022705539683992567949537358959151246653495917274351271810501743757155105309357082848112721819967878165509391759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29714813208779506426747778307161984522187110447284337157443221347854592501308715910810081050950038420140607720046886234175922862011610979601361718875172144787993711849003104741741378170538795220223665675688934913381141201661691863420777856318238528727174152519192179051261141530985049779384045177387151452693894371179316009811423485833157044312488064608330903632124583652350036806827313222089328573395796278041118259032865817635441305522635906744293516136240308019046722333639944899149935185984157100733930543821433333996536909437362405048127698573107616212164979953785634398436186755447515093866643622335385223150037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27654917819723276954233527849183985552623631535217808760660726008474821609841873665803426378163890775009266435812558832090228072547077824639970029552086623857759921399546030921940461765832245791984182568228449548711361386509918679750337302953092490411012192055419860011537296202510646642946379999407335095913157977251125111192686366632171233691649454774600893949753294006394194079540514400025226508482473800252338771307771135897709403781340574561281658476571037062126657986267691675340837259980949102262867287117560241993396001157990239976049902799220197943891353455174078390824285993800794541007219204365323159742667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26827706309407010570212867624885313858045110860363358112635505274257627456576139680802975995464334530089373954676748655450988740916164130375452183492627005608447191454797768177344581268451375187864941893428435532656925646992858697821641983051899006482549430066836803050063738761435506302183192269348670888224113443856111717861252798919005465202208745068000879175579240223150214292739574360823793468264174024467858245470279422109539759315362718861710201071139083323289371817599728363388639494984883501232262590827149596991106266367864080474776297326190661257804971015049246864430576626281585595431374300633335767535233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23829941930343951239663102475104830040461960149724394633658032934522667684954579079464807882557838809811341024652949969637400085281210839808863569857821212862528696358984281593538462413579832384406375256870351780503696077544445987267376546408091160177731205894035239809673758121283386390785571552365524794960037999976126184939021399756507323442549100631712661628432380488908143223742716378338801073507243769755194139521228477891941978822022418389418519827063122658772195647746836764912076749558844131335793557251095608661769638844743518214880085683332653188851903957012596781647200582764970777590399224932108298137027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26097749890594194754774627330106630340389015187837286766517713104554603556800997194074596717573407050494025188408014388442982497826264146295330402956917991578649107783247359272525467471362324602122155053892124295108459470239749182370381802616040799192473255963426855310262590900326499249829454770560722204622864603235373511381980849944014304064688100361837656633054829180622785664344006577147022356454598899394318331109780508837288086994301825466346796771232245625679230640874119490669108640729473479183173412223631091241470550656798568392390155522345265485675505147473692593674386198092496262860944516012256150306517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22489051437598972354880662503067532373736421842036546975561833532218940650390289739126819052561236862644665903857739648578264629752306084164631279023781221581886348214056286868488351345412963990857677970731637901105715846728827294564936446489329336941645679971719839085904036817122967338230501530470956774121513052623505445196729628390166098715341917517731187776784539539136206185973553039987793936272373316981599052745959204433074384058214688326846269869364014898819767662359788067813673095093082340374670849213387149028200198942776084900023732507353310362748121227728614147680300774060475667164021241853371547712757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24902418357097958262774607040528594975762203083492221382929263538017597080763363694740918695756337756520414311105607078807625195642195104957052229675774217808941913916006447083054462239368624407135204615069891221892840700259576200620926775396081401310037161664104468746458468486257096095714303918642999460406189523088842572501338119873833245533100477870333660996249943930525876156558895711072201353226583797378364423138140427402365216325540688417963680548884150380961854539075902270591809504233205711545108808298454943206820513083606884539761272821466555904909512679186056206732483735312114201241047523996189689122093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22325265522812081414573097910507677259367177484083230350602986931305833149473675375614664986411005075500854184049416056136390459171086976205501290370167629414488155413195188622979575616805283101540399706562109582918888684597692520065491841076235880170663112940278026936928236945314717296568618343032400611857275209684976842223440173526555626976668100597304959708077627990603058795457812348862396007569406529356188990495131699584428240612386253880732905748280797394546974043902962274816841290854505322037733558652887415648612888532084093099922952454220039913445483095792794917691349355044673351008738064326093813550223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26503247927959988348569074123586126167311706051954754654069793114848886290586257892210702770792513552363089109096216231259231592579931385915528820507862039285405764455056425305866530860444378140009335158550948080728149718769112915303631925463652642172652653700594290662671024770237590858540353093649230784527636548788904319844569263591768029806836180284229454437351462575177843874214963457253077900890158597739257152782522113183714682709748467023280288799726430858697172388896568950740679448372384076621124259874246160381571438056991053433844974137151070136404494407728522934216414316666816896862584788683171116900177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20950685961728057869128715202825859210890647523865426919277439761001468197426902033938419769160500119821038248344071486224595682915265412756388758852435583945425953081537199572796361091744732668522775502273702954332521677578891697987639710226605306204913920312957235134535210951534642205480283984865811326076583352339688625856286251060017903585309850945934647309404162009707718938857282023115526816495041330618276438838399628305776269964166897487672991124168441022621075535044443866650532583624336256076087982153212352403636127692432718888481912196051576277911321472571231588743012943933716952593868035884773991302843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27104560292274661397130831445204269264043864728125971538369951275134144129136429897527235959590413722612158678896646587493477582276060324133128661183599423675397759489532692141601580308891308985631982906531463175594793436882842347525133624650915498777613403253005731529369019774421617679732821427065988152274478690350623295260005169226940086601183676589985968398329618425375715428810703091153598363698340161338041812265236409636796020381178657570755269920655405050694952888592044895369350792216397117244533028788351738417186775814698917569870890659865415532205178900166726615068844390199291047870953899398105142006003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20759229809691096215358650342490766201914844454817395544468956584170321098571933284613575549719189773734857678779246945171968308481953023121270043133386027114984830605798739118262011219562837500625762421277638230395923508777676669254746543415859226035862149798067399486046363730746205160637908950525933232649240749143624642679085572989640644348103677835323842486110449530118227119771986480671842389877373047519894066187533783685397652672988836897765825569425182291185420390947129639740489615022406110528875808498426476754695012917318600107882294054058472017361894877944129506615586244128059415720338691745171928908951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20985480627769766556478293785786707955955162310674418645045473583838857971273541754020799556831806882358691947624555943194759298904330933212995375090987703040741897137997672241733870551971973668415932632688766253374019776932035904867606074321861023340130099828384954919783043307339628636207554814435154292248643222393880056710598077574156868369798040844384112662048829363769225184947605910783672701829967514997302625133886853178842699670411347116475835404690750260524619596718467010111576750746969455086518647144928507042618314590189982942399589835376023504716183779404395845175780116178378227811143418226244929669583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25901149482162950383223100710175357767394762380569411651368537745889404102637302216038268112468448516880708059679061509852310613961042628188992530820356668298342248221823395717872198439207360944678021855524520084863236500397469346887275611106970674037749095696203483556520284777477777073964138694376617147529564125958892436952768594169207928131450081892859393658353800543204282052962667722875435269787572101877093207758245880891083182585677897046057058936210024039092660220071726016172276426442987090551510444652859179929992789962314157120146150485433535050802511329777678891455321897922658181818465438786147995086939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20530008984343764274739301331947018531937955124078564577478818310414011250338317471524672517954292610577004878704624683994261690371952200676001448627826995548938271695729720343095000447213536891237415442337395379687363045216940202329780619251010559314742936129690135095065908276154883252968090880870826552162265455867398309653060555743473050793764720637609185751620453823542206201508689482279458649894139756166690359592339472481070470423774231483086655046306612466037729762454763609221665324747700037191782700080585893966126235567668277041053105026801786248337430344698250544547737765059028264677532039591641127666341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25190304147621795509814472395613505739868759500143430016638930219949401912404487713453516659802164518278016540550633733968081301989392307452888855921723843574719021081175368313555415045992070067562676286120559788181660989417738326387536712081200614906382233912368629086432956908917227584861186671790888625117349152630748302365978517762797817667245900924687811815652213415770083632512211682861510349501374282129698867071624271268279499757941956183640390268955549645924297231271235844185987215214347175112073416236352044683120934575647245353495621827915575419049383917156956021365425049585137633051909246978211898449161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24167079676603022501314865573002698163738036233859463881520997737381682078634459312067552222447909869573222525674443709118503305420604621445283662100279794979282842480806910237459327140078790915524296056244547917572805267575927973333338500218491005188629488441001397720690667996965181268206586597716140345180038369755077178127452079586958657663423006977189985226198171440419452010483146437371098313353764030597577846684189203014343592435328611661876288213060040487010949834710538807162877691686683416724149797541220565579706766858568023650729634590600061797208272915485861414324340863203996639694853400629316655984903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29265044353330372116986917280671638884089284702122364643786081997056332897868270754128205216624566357575693389301547281306460306381732635042246323573455473035779477490007032689221882829469935819450538321297741178518038827954429975984482955635547677465025816069299201260867355059622117164340159056199081747571765411782074135331058605361128968811677026526965230287496636811471870067324155366233480177131088734944275805304754001191378260960482514567193618269322945323942503186676582057000100801195826193686275201045771114349803877492830291617768581626125332377564476951024458567277760868380579242475512112357468206004371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25243985422930859017374041487090226842815200905134198020161421269548510209378446281626801711525593960164056283473734373028172763750624269488499719339661756235157321667312999409979282619246101843902273063894554910937892920509110595280421614074811720788721710825775850366601594379548203279965387865899959174505727860253915412800487148128666675123675445881696518661041645119807146991701423453666859059861434195312401112264558575432137614562034636892369121337783316411516690963892134093673863943821284220015032032990854416512617925439508049705963195337612164126754604482979711990488764763930399101156752103875200738960059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24638296886352260353358468329822198636201469259910780376552621558459513356247418074426313679351206912935682694510672288270076668035837616741532699498389601025742139456745370302915445182785078741516024520498596595033747973267221351658765726544927809873992146955443899037841595279505947808590973769010375794308511275809992863737974273540903574701075621242151543168604170869670331613540506666849619474685022446757928257814940783252733739116417195720303465086172404719292197343576735769545067463288314368417281597461923177643276285122203640033846861604432724409288292686476416713385412284273033246489374211851241765301017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24657725497634946548334475287191552745396939254035009016344844165008546270989628298083343548382270405442524457958809461696699658602998844063322543422860539973360778780500493273322701733403959754998315336037158709783348269820820984360073510046012533463006755238564837613836387632525971182642783567010756841747013343754946247365415756029995755768909213837145329556046302787649054530591458575712829109135831895165565737500812170128303585748967738487786899273378706859335391902967761598295037593462141707457877864753546513775518341539324393296430191018631307470232130281822666072490921932323624521347253727458815213916569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25700341828755439747700307923368406250837493848839422165609164912825292434174720628456295455835894706682990787667535166275824026762072455746985403974496115105448781548291846430595919527405133638258030372433138734092109941376992677941210182423352094197619572075034410049415644672756031682386722499242883785478856271086177542221306452258840820984864679195771908012570905067417593758006583947810516175912327263751367885763300029892524597933449560293439063064498902739137149031077791150408499692334592820165033557162387771810008927630020713462609219439884165582503519480588527100413045857150895925734504395003122649218387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25926923062221290459046919715579960537298054488852327101672531546039921470669091815966898048502583307151393986853748799090483764009276564370491338782086372413251640657024638749595643391793100060014906319560912916771259760019672980952639541747152472278679433072421961907289379825635347581946687361993255016723777876792261084798833748643975003521071004666701083820923844748962336797178753327633141902364831065693355615659701442949036841350371071156870302061431878524378535283930678814430302649690982273291453086527394184887382230573344813067077767186471216772294145532454712948627947619614763991819819572435956851519131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28972662815603747354156066244993293283671793502908996947305670802408257981613438149198428944673546610661046967779254247210918930576942307876465282875502639844280761861141189379911829329171613508781165126850153217813815709535261523394149387516351455505502148219898102568011931005227794345747573168915574696031229022861954055008223891369605065304048427349462841061727677843132911005414362006861009109796630708878986510415281999959241555731456012535225078296032474345424062900598301169131126585788993077787408202379885246905214537699099177774694368936048576157690533082870332391080259697301350959395808125583893266157497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21361325128832517161529321436872593397667708638410368385923959673795875939628365138315886639051772494251964096730323797658871396972228279246371124732894610741588101134278050223576994012945676663938428048192928295086340527720153780458091917905613948064162703847644039085370460680342997297671606830037012132040133733845464607607122814056687049713304568983489055110490572581632619499559453306831529203344953687672614603383097002048304424697283088338163913720025918830735801335397785210061554166593302863464785275273339088112301453218977648925196891218667124695986304014620762029468859314346790040688325229012490163480361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24187160781944197216174034508850463254905837199520660794486781811549782075671306134852579108053072272552184366133522113041848784337568897057500960470184636496729946588955663720605902407293402509002092930120837107949801255293632032494092907810472344991597808689539158922508611813070165192508687434790470835074707705538241417034633152402972057343919113718778306111805790375097733037776873617760869167093213712576394847953321226358033130325573201080897739112191941699337971462769480559462359148977247562877681956169291261390155536587170008369786514907254924407360975573436413049569387039104034558986449407491820791201153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "19207702902772466531396243806518351838092476597535629504279120470787028127527376162009315881575302925091571569436493035333538419562035962601258252217792376324508696654350378114471368802373325701502848163085935994051554216961790609782409822509822704032370405941621800902029733015811277420873814438754093385192725233820621943635437019809255189061556561183108784949930159963483037027684556833138237354038315624604017587815331681074015547628933069841603245098016228135935609056836435088358064034358577541331951023713976045392773338834219662503316652527694250712048705714159791273300211542612164110566389133087393130354551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26708055570411328563733241091967182241435138155455368337948372107291802419452537228378918958288435678005861352235238472284971973970486981233852186653155149327061085513126794491055368304941743211554554531769876538185181559044417311301077859928395440222302443533649580563559445425323974808040761538873974434235600831846510188071878625008490990931103626786873990256510967585864390422593757889406407446044235246389289467675345848280693565880652154247434489424101331986098991841269421615661674213446754567888828021052719665550623529790491967711801224412051716322345760971544715420236979798630982404448782156212196118129227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26858386445180430528900455820072765175013062117701410491321079843310373236928134880496442636252863098409809521279106549722010488956563590275823472333836392845908829718244217225489359244716510121233707730169397995538465629208765633009573759114488006267277163121996787031628734445142171521542524019145870595938284930754332315255131505506254266425329591021590454127476740159780640154542477311738790568582109429968786299688213322089560909182087944030960622409226319317096984920304400028931017415884773804509771829425011763060018722541883400291249739453390489833114074097251004968412004684696522685669405884778814305862621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23887759309497516257613858031629390653447924896852863654719135142040608866896580294382205260283381852048139703276508151643234296716064815344621401077230328503884940239052203328574997601320132038144497144352204874100692838930369175512331721045211477099585998833083652106438490608168201347322438624112575400855155412040173790729977900838206926179358130032688874520013708882840305755009673020095861346122868819960391592084112266526872702153168572755204529057810362900748385240475970165119340200522262626672618355352176020118853017789346786343388165964171007852262593702759496498602066301457627910004565948538672438663679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21472283246910217375681680242629112909968532798830812311440152112501478197979076333294538404728392463087604942295636608546511939342369017060257379433495336489150049269836989604517792042051588744019978211250930000158938582440403034984184722029088761427999380273239468670402671584986198226706136153467896519967337697624221042591625807352509305235660507990812137102399720707612457145203676498201932983422221317832253380959177028593153468772077844230574449230632739876290264441966913391125074024567384475933107976928774435229628001899347951327860768349525938579541305255779799166569734641025712502251412880992329488588519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "16173178635038079189354290476377683683747444981527797371669423586358026251162918648698202080947689204803874568033782374244137947551613753283786695731422084970717745953111439033264712553749380595111939423543768712190168108284567063117275927752229818746983045598466197833144099730968714462383378476499718423940676915029748930244868162353226220880558817696375639702740127361611963534733760521558451267787929866306721278327105570024982624728630290704408763627954760393959975128521304293624951319669340093879903627837510054686611913664680994553102316340738910870158798792172241371167881120858620107405747815152430084429703", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21622949767712769396919079193241130591379706926874472970562327087953965083076255036894349389311581430299971897628728206965100060204175908115717641087245150856612391734290241918107036283540240571620163520754664947873419954576993323833181067873064757341951035161278759972300822915737556057959840480991435509750307800872485327016871323934741259762043412805385386359296466381021388192295214738278732454305555652213220218189275065043902716411611306118266243845135439032616117651494110739406181290091263466343818725826707765474943009712044292934720731601084721251376868927852249005919624336951782366687315337102529389200143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29655666044357728773002332935011601374850106378680441435553567772746769164585923479884510719380603323227024041605245969826374014648382539980812880367713263978738136353560028987645544455742292136711495156373462699362179222033244698498871192090068268198829541292760039251481593493658163377069689420416443741799229651662565168365622839148947230165506221116743993346413370046875617259212811376499463908271279667840180901907601185548874732449032912559229951264477471785669360669363865898122320282098878069910754665116504488748381067534616034200687646310699990423420021222575031054144684876076185892096213636990730504543503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28819527894110194112165156129528219007343988094384093407223748782250119641022731936391679787500020794937131834379485225767029657657748698157344607493589516908008391311536569883793923163866614234175032000299426941660745807166771907952568793118777352360111052590819797301840700378933991203483880771148429529098534891428463528185821215954645791758458618173272268072475283973674535853165342403134465578713317285556167109693941061779668136698743434363684349126552618876341841807649260021676828756271370850897751696137642599532135727466293425592162810987026154796645190984882127273294290949710245168741668073192218850477973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30155488700661368080238051762179675850199526468418790492989790118953305946946416937665589710727736024444482191379421030122925852745971322153901509132386731989379774824059161060065714609817622650894811925680747397421496374911886319431875848474044534992670744243300308684611967180264433864662421484808391560044329195262624413318198087645765158494406251240334542907066782025198457621618823815519254966434914649941498317168572081415201973716914499096348344590634018040451422405609045677506585924918480866096525421084604402702246977084059745626745866773372788396978528744459700508907273104703632791772239302193167215863669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30794345873029580625039683374578478540177967694955042944175032801190675079426846671767222404759746468566377454651741640871666163712043150076103245280323864441013716300686050032811658681671688212301260541164738066695124221153374043007913531541455021319149323010972608761029323034862468496657653893330133383699137267103424111330204808198073061708995798941922712690480752140094941865174911587681946817230966164420636811666797592115314871351951705445195736172126663046993231151076473299375813109761615916847299859685551984029864286217634432755451313446258075190216736980396433947250022916871138459974396848980840810137147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26630209449184812857146695366312564073209289280386636055598028754607877638251691951320756177563799933505054672385834550701197147324051380550561589809258346912697733486845365797896205086006469575130285110735007533635116736034500618638574411741401135422782410534819477147585940009519728264805164345846059914004839050100816254234308897782805375432197448623125891070081625737346380524493666279595086653256488151960904355278626625255590307328946640149645611613647252981637745277970605870094655276012774026311604374925892717130530990550294989432582022297980494872048368148130096264323357624418144159540397397377167114241723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20985008369187199828308842725639844501080484850690543609377431562403342378270469792342049762487908901276452351486013071629862093950166400314699149124464269128283903543798573790751913297912030581293308257497797999946311699823448720969736535260970082155355165753908178192497959756334506693678437912201658424589565125901778425417916481584679363317392407238775454531649962278988153867355191918364010742339460574999849284954307016854856657832853565161075772227653825852273860050306891397804943675018209153435340129673857176047213461250379870373786511395295933275187341395963923555467607647402621760943246479831444154468129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25439269724732117559059311807504175164778719816278179720131740525860833830184431808883312786446142070369296890822570507510969223713632015003676873756034817577367864769644095471233992575660126063495989894601716017360566586484579281763513207893965217764354454901581877616141074772393915649707703254212883912057480223648507048842913480101015354878638037423372677659463350233540726469180206852354205960483929294034437732763479967682395044819627946750421602550886178703772127923054181585234444757105901681281159246523397359902599349273473815024827033363829305030073782425484804566330412390613620655131497789831828257162011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20876660586541356306278393271689297538828293370114238538776284766731606839997160123246218539162862226805325683505812028372180546676260862486424998583675278868108513928023231723131962705924952382543576917552989718945796149523012807652818871450922947822525642246847495798550164837188408260621830066693857356054841967698405897647085074645672591922677067565239107965614028625631475256505702145135194976494820305010496147843021258416205520552590573979803920255594926386402765349360170190532075408386857433215537846613977987412514453695026828546964619120540099462938860644108771229345852567125527860493262604404224835588931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24763874257261615541227656365459621392924685235826431137716435825626819368885499314964448478726280093549305474794735681263664944493368207910671526049516620817232987277417565284178564504306779089361681512901643256455600510026267005557546643400689602346425546904609156057286678726691305526615227988602295672943341411271112991976464432781276335949755202267142552323593821609446432674250507066972920638045092920260136833045451613477030240675976983724909166243161839925237692691961088849623100463528132110222035804436476294440943425618959906251466912995719832627120584395331066256918431813301888744121361921930613452022311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25195944301956056239725834803327169892644463246295012489481492002157902776796196759348724615971724225345039486117978608685168164254843080532489833870670634686944639308468920931581591062525760950122163971802789695369384562544395817944810498969475774477015791740505882316663504497316159329116246127826897292728873348774613979517034898310127818289533598756930284333649806820084392093104777915872838457743864361568648977176801669652909900846844672558907938067092959509099922177936460343461913501826400405180194871173215158898235702945047830996045262039725826737675445830032511598002478830900752591441321191763147493891193", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23870822976489063086943386489440019792132298905657645561038780249762777236773882625082728916565755522405659644330106917644493515626194213472613319856112795079507774168818813321221432496824602302955603920951778083387233366452506411100955225590869047490783993271196453324244878822603350290904965633277880258943795378443121956960558031069069175576595148970519402414197004417368637978068781829016543108634601833638002775991644776391230945258263056167121818123706683162918840128541895103900675348907183991935231820050400681064887805186368457295841873451542394960171300604818477964511706166214775786491063831160193648199003", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23114884185526295088271700488981081793191070485433011687739293074058877630220998041133334198524545500436908898501358710098182188262592953179518787374854091409897380849735706546390375748221573228548013926150166671761266344981272217167772253382409041597688920704097943549294535234083664735614378914107334050101933781525945785594446514776661382446319950311932966683733170617405419154227322506951835159670339730357400335858126460582145988223751147340398182289917831127668401275534746145599302071610769995374324181539826094818208281286087245402616652768914752079449123268637604092680542754189371500141407235202433560043057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28429434982447040260288568503870019318356218923124753726986510171681777043238584389399632152027196184667572977268692068975250011996674367253344563430024252735728800100041664914655660988274845775842992621587530892886976638092146406777083226498483140763157502818944521907727723757118376218091247714343340143747130534412774464604279452078637333781137120376725419206963331195348215399558807795792910161903689954169566303828300764502988616930671610960660259188852566334990253836622413815443029038079392461381986466838251974144927654699370670102860323784487039077393158906408862518913015968927164033974036194376888014504591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19350931045290173180247452691632744141940921459288599395068648007229257150573719611362774709459524548793257021904612292947081661404241135540189501635750196964036922946044384023643958817297881865965770271413711487648916734943436172460343056866344194919256844004124652752387694942430038759214675971515970031988104292069026381424546881726734446145573650687523136780259513998974400524136714236009450874858171171348563623207538067532824118298907676645227751592248827606906775784943498414737619306346229683836962204371300042250438806276223198778844597483887675189468452920154194206548716762287697641025571985145757518215921", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26613198401397214786995587358953390577658188964282190568864892976800620410058855668529724062255327683481303043402323000840798077973861396881731752659458221533114026216749952362437348959147317144649630400489713309580589042913225569131531129423127505425787090374057949191981487249570793867164345930943238700565922464740997596833551739128942122984575209024475098477236293851175373362604563297011092167802729473323598250351440571186174116171055401424828473768790902805728437540856013588608776874341176400727745602375510064482933375618078642843040460373518323877946198556972851256164920796827276210503852200912586090687393", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24763850169586821667090052929247964783501061280458568528724002673817585660334988957346419485862206309706395176199773858763979841360219930465482367909516304122880476494752755509503966463712302682749244667758670634498129957905561846815620079555231290396895026647249470793601153326621706241912212262294152399250963615720598185044131115594756615910374406697686616581346260791903221665701477033674461397670969359295895894756430283684333865632833927732493817583386131336506374543383682874564962574957422938846419964411420104465412904508227379238162561632774864499433242810487944238039472679417523164192485864770756759998661", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23497523280480028791908220678906226534993997861509482823084117481215625971126189778935094875137961883541696322626398547097049433634759142713290537449166984301894596301962133793146229315672308493881959080444276620417780760997984449096866718244182797750454784364430553508173911158483087603168157230295182529244604462472536889220827927857644919506052055236018707900939557535716057821674914312012643287381991546763007651001491948977692912715049581943477675086506722899362373549813017551465313882598555455305749099523155556205581911149763061213023119297379325688116999610214095206481043845457108879223947291585018392633331", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29939621426703230638756505166592758247687048419940671182759735589798599299926431089264582117394138620285155836728219537722038949058538617036911563171590325773901897668347414161872305339046775314240535687484538829032251907380995843124713541591422091565769000331322595173976371457752500071173875980033774346303375033024079390100314900831074800977250650831970204461638482455322691373202422005536891006138006042675319669328937403723394950698829967829586799308331094620821698947984834993575324940546251546340425506575130066203688562021619205685619349943489212064247752414525743982751332015470080509546534027222198034904023", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20925595929324526953092317536560262647646715610138616582240575000133064702500691985788963175329862118218570376303385136854858618373994949187198979375540062708638692505149412163052637717352971083314339768251591027535106157566183096804140439110254555935186627348680510092824360435831725382774395510346773114015107686604317025780286407017701008012497992321197354862834448080089696020833958314013605624209126540666328019203578794274412820355773826460523297303150630435791369473556660447609650491277761367750681058593629791269177546325896469079495446482412489336579811424460282336954200713047082181413478735919841796254979", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24260462934423703495700483912208645445420708473649846499247182762791775618476134613021450897464459716388672241061903875483609174386350372270388163008685933473079879156220848513660714016064152744570276416521140676603492570492242965126190993516161916031142583297723545904603980713281610798973188700079292341804113672603157388992766905126276677626914378406750355526230905193216808865176534993235313995465619071349759575532196024521949199721137130329939984739808612222994963204832078240047792919668809676524644349921737479346308339676846556708152971719635179724712609131339202603199613042128600309078236575064351957729167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25393644348496199365967272485516807034148305308259955353437401742559288098450417718299078811987160309611391168827776233206538422010242079924962347423452117116776472985689359724699003863175335783526927885447608269144080901200234175473237852595101282061386857552869437178846917762335759868285236565946483372467502561036246256820716378057197331021330375645674082602463680564908126779399781870403593608704785607437616030029377731091878620633771824635644028183599758239452991944365884470366917021631475982291221605887269411055171364968038680284355107058622268504586994043856989139808825553233703064227795105860679514555357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24461489408735592693452735303849952137495713596646801793998846498896161613170488645133280852429060133622694829464583910765026456538059130929157391264034185337906004233447386875297216553240662970635564820507113445068363270365669377179123785422775483271269176035053655545905902150908693076295365766310180896560481979580562796771629835990292423806230003644628243780852750198713096908023312429492224116575484930194228553062179935121955245406734622620011449917028487507705364001263302002035861410866934989178942053471487380729885994739916645329564904577647400096159780579718971779310916498563340527909254423050112495601039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22246591090748827200725070886629655", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22236221465906325509440026406376974", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23283370784835411664494198073611498", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23314613130284062866031798751510712103031925445397526390044326058835554982679693728750461852711248379002422597002168743060794441183060073914151920446612502145953829670947201034980097414248436121585045715494689727968553000237981963880503972601532000881623272541691953111249159889236252012246989419396907678122394595025377138267259152807603143489183723123556581039877627049092341277050210083491285620320279098546100448080214553841262792052015666283998656538817058442862530347574184916949500478482494147575074773155296379546706748632835815851459032692443721184236239958019176371245082355475150765129580833211295305991361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22182322297992028890240393622402511334568950049379585699616853684690947917971119831816605597735973471761806526985486674601592259147120189073472286787958011613295282143584957069598216855417482190870372406530156428762007400768912022755695325184160349556157174919808963367116276650400674507242287109176992226030639576341099553012447701901672190402761661316912934778553162659725267719990247754876700788540879821296027248858418212015046425782628195137829134383116254932807946050938739723578939432187218728178802097470775212753231720165584009561291755942172653245917307597226478827068360852811660924030568280384577147213851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23148740950742066299846333535683617241050816350412332560000785133852750690929570352731100265057883543451577386818328662779675655160690465023046500820215909969460136316483353641484234024301653793495958941972182494583630859702190277354680933270842058514203420109806946095081306375990614273046422720737428402281162091947216671213201568309766147244275504432682100158134160654002940089299319676985216119113408303605728350866433525275376963085457905622777466187148169595410739764426302246468554313568226116195126991873555143346815150242886501656592882793113483370434481823504693238646309312584563653902609893038864144298971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25341908969732248560674859710255527390269252063391244867255564676449405318830038707415261101713611627019725831008739656707088728009059990536651754358784844685354092916863794373529648327404773603337309574875731124073196271756979256057331726147250381327158376825530508652119928806016688875132175744733946093848414815822232696632164772304785610108132840941661683424802778449550353992328598932736925034589098004424890172137369122490843289895799903321513386626214388489003414947399782011075883052521429651997432359744722073663687978679995352798709574430415855356478973052357907395915760579118189092131482818177057886451597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27627948423961073496754029384872094260951194865405234301031770489396813184791182389435230336721629335781581281210387670854335708304712387136520866712395016182707938190676891471267859720791048849893859235281293634507194290931153866265697231441824306000719640468090263075196639985558640192884443994999124137302437671828124992607783312416102225868646729039272083423855038005240791781510682243656642960575223652351160889289750522523860578283864646943107227218604968267966972507761585272431367768938150525409375983255702254927999355769268368450519766848529423528072591896336222756051777947234762970590217188825804482045611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22249368387319337255641817393274317751277816596119612981500369369677089067011303392669889266911810099479453336663526173079380747311605895060815882462102436266897857431243442593058589207210314437036574884664893677230164415692377132193068830548051791371814664853935003782759610974937228272027719035531682099065937414978260614533899304792654758676092055865396711664354164697795764536272862933362143932202430745180759204046874671826837128421174797236577348692749209238366598805190652577831375552634478934528004830192198500748442092448586682233135007709306997921872720692224021948602362162127356159015919910841612043201909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25182097988670421462787136453710648368774346695950356493944725130452549361475756069062325884949778172156454985236604480303746569846863633145152981285201933036297391703761514894034043569599999864734424657881532009684306846927044070808346237166157226055772569361678426610176865407556004717957883578259500989112789393608101740625621366589888324739663066531021558960615672787402837212659535098420192858099852269036642653324334439115065529477651376706727197499868514887369553790690228065021791857726717267633919227560557743977133527591217987904869376514567451806294855898172775336150396648700514724182318917260773674231281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23277954898164578864844241799039843709159827993511462346292016943014605664656597078633138062553627932250464968595491923639879112874077501299746445726338404320606632792771124882805157947776390470438670976615831630261771240351264425954081574907631633542381061876064206940182201390730414010744364858998192389779598072886758917891846788716077814711605641680608893100801689796196780015751954383824383703395844772425679661422543186719877132622593650202534965361939533772689951488331666604087224895225673182150652213192734737956947237759055678160647740916252476864026548916876946577059726778360331782340719921676360547570187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25243736730370831374618698523049607994822779269101911818122164701912270465636246303237357755160187275373080629245977398312873325639775931510175371072979150163197795620068481489009863836790133007835054311093049431373040758317028378529985847179874523455755582079779567826697727209860883473518935099993368389541310345205663165283148761989356499183019379895086028009758699325051324340735332293218762006756864374155043292226721057663404080494462432706395463711489872427680200232103904062150665530317501617063693854328800549429250223950627505551808050762479649324309427894261859888545977903318846932083448876762881212696643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "19840427668856419821827877194335765761967929087613505825159470441617000548612513675155335991031585014869162455418222817199121790009606626951699422497186186151347222214481283417033240848660654660725849757377263488407554799837959461478880760876498983319836759524492589413595218404482697563256612720456769453835334604295475174259093880288989044739848654048775418375660252160813392290129538727827993101341855909376244400879799733444933167419213447059635814502147992453838381489388467099957233635923438303483668357228547490173887721552878813548029564335435115243582349831656367774580220084293847640700715961393895947328299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21889358245126250198076657618591681808797742261991274346778680545994477511114535761726194106131516975112978381792126468995171747638190190586003749227710246310125435488810309684473377571842787647113871796640394944358944630672975804676640827958041233254703421071555256400083551018063395210317586892799503068346911885347859145506357646838838249769886063934556535846333023989758852161892606604906456024857893891924997100868225720216575254477132314880528851061977954999835535945946751015080622868231911063487572011963059567652643376303890687854958668113480316922408551086509641009700116490515125880067129837075777607023773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24283642052559449552083253296523873785217851239120673728164030829719252009703237477533944963649601378975197312559828831696052482508958211633296805551659417418222186751606114645342041132345171270307192310833726696384571674834439113472142255098294268309307410652460656466680476443025293961733614755197182234919116308410909316982701076364454547677755431138348901914666382231417051735069940014642091423869973386783502793304763574351297827429221135763923978255916652827896897894865390778852841267582560918250239440860658024499936775391804143557065553062639214893457120825313553698707981884714601263243732167276811107535333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24031698142238847036517269031869209128161210624793775613053231325899015414049836445233447886584238627330587077784140390160115366561906756286984250682933630308707855776510586470486560992544089526699801608983880000056354688579595024245223761235431200953614695126219918288868334124282994085879971196943292910670732243503442588636188251409918348526769497908808592803890095669709281119146062664428078938503604741966377222353213250709428163474219521384451970637636531892024946879233276023331661048889671141190469761905091929542308940024008526993754158463792864622812953661682299390481375103985055164959926198968802107413131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25419408852292097823090968535472956528750787747938888385937544053305513986649404034619754288290177223222144622945296342358458006936004786209182138759885380079570000531370059919748725838184346370333183636704505472374971893365818032850636471457121980281775964598007979424294456853888026212284228232750786033033324510891940415569877774793805312981687322840269217935951893472975975395309728250418777499650240893460669470455754318631871686809616089511718632814281849891814555383307296470002898113239125193344938598041058733851564326661470922396563847911554375698473176327667102675730043518159134405313171523742654557470453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25130092705926268338546057049514157713483902327333910096898657942784474599039777453587203551119374835617946219287408565914984033169023385374254389029129310381258386353051328578178671544983422318683733004666614493947436378760743836934992492146884667778005078629945887272891214014000865159202307138373216408470566140000401576671922659765503094216149677206160326892423197533033853025058931079970570061856378633722689987216111426297322786648571040296076851359473093831081581994814993915396559808094032156462969663961467073460105082023453187502931146610200856910498587817575084910068829979342186696082489775326277053644407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26809932747583688974332133391846434229204277018365418866867982551618705688899849249506433319681708538701549771019745547703610980878003675953006950190550900095380118115645375171310462795984720294431397560426738718862939216042286189229250658353150122219586237364494024919919865684890054141449164220055799175344516561950451653350027162779841496222820729451107379590218394395250877448200402010812299601392895520022612953759600142820054337458886588855372824492686576649332396956493905725709458480149428896420849127521479672338392228314301881927383852652709430363185634036083132161976505529186977810098412572937131373718609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26384763790019116849868928342726385240038391259031090603645764102372167583264562257370098375859219735520988729781295987027557832942685488531469284297455049705399939339927431918239825778843549348130493602194606356021671563662443618745313194902360857830402371351579129106546283154348497981487766847533555824080271599342144838225758291408378076096214515432420328644815303795089380402483291757695604169226829133165336476516450432684023759845713246658496894458961398277831705284700854605142459429973361305047277492861788009331660922732021160269566089520227458161194836557000250543393108381252391176830758187991879498017753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22344344224821209207543667666158755709853797845304506294399854003948671851843639689573904870562864821671935177878057855579304218394649168948109367960130587603192181427456380614942575983305579476193810454374324542068511697907446204827029363214394705109690092122421881653011416563372332248477188288832433834980696922702828888564320386303731898484392115289704960176052778850222590364672681715622271458459841435422330145301661042903771509889506661912330959476415208868922121343703696421411713447116394782084294983325945746125951168190866444149190368399264390453732746662857294968495741508528839402898567194504126664858541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21831012421692867134375883950623204958517117288323896648417714499225224168212157156951823719730032458512738891983804345823075119353417396562582097268614100016452292014875503404071103000227028117415099988054389486487204618186481582671096425552571487997722766682100930279467613397924098461688006313324134398737077541052977856414964530150748195856759011721677740977126098758365197914710740203291143247195360032098894699561966340633385493172838088639936530387758050037066579957497344240633557491167069740505230616580419752985509221522973047272900381305723982604979084481109718481943172651253786054042426106454752050047157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25596978377527287252318975303560341233990068040895628199180310030397727403385113757678278014361553207399102457571915873704688340579352615769867730254731427930992478511973620103205729119884828218850004243445459077585374712110594050192908449544234171978227998676874829936181788095200786007416431799836634685000943877659713289038247865976684651433218392676145062395708571020709371259542875386789251262651761962028231613710855077279120738390582629986410343713056756270439552716073832309181222674545409910924425282182353977354714640914746643345576587297806616057323668861729394255316740747912599868924463516609635130112669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22121725375940530541196712158624990455817330809608723417343843415609153199688722987203811098977552173212785358733420307918433914657802757551975425981632730027373566193558612603712881486871255916535492786846128679790968472014019407129860157577340111928715091038145043865194753689797496302754798493904167942929723349286856627403994686044158769180036019530347067799322369250003365866275071741326677970477713290336308677715210532811333376790439232383440432128663554167082859920200996745376864325133518134225200497302558669480388074561576658158801441537817584422611392533174974090584088520138036742853291445291466339036979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26709249749036899254963111756559770260225104202176654502432374185778449707746355544504525843911096006440846695979480744287360405688291680775585950782611338221605320143449613472171054044233702682838039112699881214422087629225361747256978456806002266386652704305333308017705901282619753809962542054277216885888504258398056610629370198603400991538227549328370912370526440766027699215006502947520212284157565700226461818343524317649590839679634204578649355177852320704366653325828582067490072352762793650252316475268378242268619440102098119668000664564739752274758676662094933328509898013731738133073926403867779413347877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24769035197510815841275760112860551562485868852227584286966685861536665430777568136945363635193072041855438614143935214830078350785018104298347375398149830259042186327610435279082057331541513587084281068787362073695577333999699909319879049792146038435419020957773025057411955524564467452176136586826682533337227700655755523741325036872215798014326957425619873706116073614993675477775709933806856350506838466789744018483988865752971961055338877178278283740353759003317128338222688734704970547583233513678096539433506379258228722019480408613389943457407194027486079315488903699788133907891389592432644207041281558318729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26589982356469869559006545139523005881343796366692641197317166111090843084525919434084076004980743514453324958255968215369843038272873190958547797642583959842892696182518484028419465040409910796842246142494262265092225251145552503614450041565288523332458666039286544359502541540558010047062952539002548458352098154994956368774147016513832386114896565028360121821519913546785805534713375553367141828594866595577055949863332426427199740053739915923587415100992514518620839939321666088879267051012630030393039953272490987049003498207651822159009594142009731298660658403997383081922496667156738473484727616100914587662033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26118181702097065135701895987254335810310896564252897087096637862971387940293983375802476709813857399098978604165722466186553111864213132690294682336012780366651218044232277860962938807752104694239512532981926204916150369802699396101690151426385687610905723740860581820880427581950927154537614820647737800573201286829021157187769080185158124858802374014785772508452995929399877848929311992891275986061981691504799739638530337217213744268916056410456905159176968463185955915629326550242515104942040703723469719464709760210742533984599855453084769570275148286083294218663564982133784880347713546012245649016908354859747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26506498113699187566156866793010516886052947189740825521003957220770680872662866094038232864334169573859345571548973386715174762602037003830254300000220170842679266782940005291714317955332673841809712308985404188112054456184224468915533476252045783981379040918736487888436293134499191721783454003678328003148360545582249677300595407276023879093861406067248590818015386892331242366777493336208314681233423256450574865471489071874398271003018014432592639679653889997784558787152273761819753049860676053174493416840361439309203710205190760571200930866549273530262963820106295467237161938780024424511676049457605007643897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22200065612467885295951042746158980616803325183872959188914544494971506440681974267547306958333788960248688420979975129236709362196731837858256794965028531396966629042580208990444402623468234232239074889144650502112692617320111668257441559628921882629556831456257952298838631975859730868283544022015555274920255726253942790984229363570879939914379334884453992646838838524203039719838713052138610420199456980743071703558772527967881830941162494662287245947087799880039430916429624043410892292966699445075789595438779807774009487967599812735446695159190915419116186670284732629866235456715409864333985585746105905296947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24574960274033578638699500993369249411599615442821011044333693691999008621043113356745654556122267929562386082842576630936404076619613483300036447430752709775294107343254952799212469669503420944524204300229053547141596536703117649964428514084151348872156828883643730449830575010394025646569460788785033587207312190842257785100664421698436788624127696175332529125637051215200546485257496640881461019339171627392364002478028434563836629809137502296932597154415949791185484327970988401989642705697542911879558341926016199810988122314890539519945719157149587111091175662667624807343980005677300939620444785204409131936293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22699977296760992374509402872985686510901640300079132236572342689251694759730101175251874170644335362896531194673343938741388432130958532546872875998609165770133941761981934865476473122910021158874280604297056456873099871767866337400831012033396383322960607193749766401718572033585293981880411400690354747798251141155200091702112041332318643556821520469317993285544722329056931620825713924666062276455536494115368993173222348004565592288612630440054050948007914416025422234506113291182386369513075676025771198544813183203917029900122455256309328023560891284589899749972293609599756357250351642017113413174734981219169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28590458186478412449766197415588122960792106266461242798891323971243733978214938604083840983551499155250207332573424329976619895530735066068458507594992279963625714045458367574302623135882819770789121364775029070527486198155769722488674319151218166457727127634992946034960346383868142547803125420048780710788040869556331069650704199140931950052913111085283674618922410788937564885543048078009050928206234919813702937099380403889448174982140815195307282566668082012753564023298984663452892536717452701453976667068181596854673473504894006069483808373942107862881806728697612265885109441461596939915764459125688216926417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "25203568653223432248009005344171272623767759214864858715108240407653738175419524486392985000171671358252491537799666347185949017263060325341845997007769730392062269990598348983456919253649400298412768681416464655890296705678223561757156021129234296023222814699214451213250327548149591278488777766176021806083776279882429978080626837259100642867566592007898429544276823501963228198274722844489960880520933541499216531178081353652832415908796844387260182808730876622420416139834853792753338534949606552459775796382046200629551178772164748895607485320845687162620155360292318807999210921391201418450662488531084371328027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27856201897763078908788556197644817740239473215571874713382714794265089702204577822792146190520388229910725799456357104388769495266344924317710609553638413821197977739965450548037031036176219386275094598526028870926094239268356070321515139056468372197146125253587189529983208085723855571239014724613907237693672415408969660657813698317327565950105827688740580945184269638124214309591394302063387023257918568496453859437797904469130036111555196772156111882205729890958883928963007318439232089827963510084377312394467005372415264391000506743395294222112161219775046910945863215264007760370253718808961192156332493209589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21317960448083683574465950648129304523181320293009047635310176947604248088828416570523231527646517430910844076605837588831405124868176766767659033748047419886949166093265705708821468982691606822146185339746096936456429176507295274475635569684204197479723624675135863508291682403516498226974320983815960087212233561887619333655986041477208644276480264844328994644187878326083340028600160296785287275409463014209576593460287745406520387354213499341236996608683472437507064550779303518553401633194116958350650508979297334999064968759206142627051971923464884191260916969912387243238593697009400461931214607076853353501811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21973419693430667797344305166100005568329503261680284934993023662526492180175085606409727342574824787269124622140668394487562392630391016166088853163269235021678209145948770818977197779469913527771546022522228312958207955439656416022274734874167701497187873309058308548747315486607282255754212211862915189296934695280774187513643521595969965255108890600702991056882956916193504021864731830369862938604422759500794128329543465718337684802589389854618664960241669708053739396161483106791682929750935519832658847105614405915570618540169306601928235293247821391833631456329396447655639440766407002507113491427556079956591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29665201388809220826283674182881124873317900170498956299834960271346093974388544381013113312576981034656655406499473849391844453804066825940990999799858296562451618545501251478105844092019896412744440034863858869682930234440334606378183064284669728720783168270239205677441028068746074882392800409730747259301041411840870571765999444801878299604286879191567202252591038464545829308207727731646809345362620093787602075978358514204461053905901454236843143298121416210631822477744089823259585039251305378076693177034374342035699875949419077611088120313293607066382762149312133067453996982577914052470226805284863211533011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27462925449669511385065926213973363683712354255939484371227694579255438937035593667883237399346296077796973754652302654795075901231993565285541152897034251784274433207693758344686134489591798532785794410058798214578739068410514206382003950256294757540675392842128837597851008153872285290290965237880744888446441474893403573253294762432829009063155717290538301424054909207391830974923385559112287414469002528883513580498946706847168970963195241344072292037028615765486211216328373685512556006300268762975797798264453857908564064594130418169257692889065203545489640261476397159102809412901233104681448131161233331934777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19480956871931682188365146409972394373323133606695240613571107168797639145399556646272375698546465784388715202828498028146867027576867651046187100381485817541619768252719229374261276868432666892142080626256090555197569125782498591456934037029477059784286421287730177040966572638527918283062779272345877096360709772700339330147141047840375955473375927776135131663532970370690997189542189690102567066150965941666297765059511156908747500455928267962115089542995481936755456740585596742395179716822667751227429472564582684117799090588779939967578742833523047710603786015762008316282425632569247103342569418055161631578141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21630980447894400353106363351974435120586065225585704084532568738445680750806189296278519497046848318500294875188298508116310242166756014369764492836331001507580902010098848853500143471443750353068763490344621724191451513070535518909678950693667118859496597573883682283845825000262960679557436313966484487197262614806595682679247683351988699277753912486500943843472262434332391513221347151827322477944752222290586662802579231919841611689869294582346554766297202038140372236587139308365600808440306508756671271788654069362993863212165005331598006113876449279617901069178054363459904801690730818004347976732085659030711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21927186466397391371222145287819077109179608346249405506426045366151217115600022413142355376023313768979835124766808531640860853176728226101416142816735567598859481180783991508485168813392456301711423533311877632914492634884672160732628146015563161054762142997355144544847873383272609400783342543268916775245727394977211101424933000868826320682669864646142667435477180879909072439361233855129153580285296353724554590460306003115824195630692124932324818074205809721403021455748558535189368095503907629131188972172217091995806188349422279744012893246059259576150325046120246985435850105487235808252393889025774261461987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19372564553295400271604236222634328499718685756026779470013812085897970854891852702910922462278452519420857571392000584554742179142628171795906360721183531223198251913197024603017854036552654185610515838680812644412281396439292780185371532716419093165443831479659197644645937090627495803686537612911839784400545817380270264412664429625801711437643902507824317895812478350445359203443356193142710061194503164187465760816710013871426420881500493860985488533966378747646952079723758215501747334035036149761143999031756037626193687817639163727264863013206874708114640310953064842769924323204131801234976716458094467054191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "26320361699449968828649800186186860844424318414893763722527364047643030370488909439199006039863395753050977437824081146688437405631993771316474306039513877764700551958339343149961266934883679314042224988819887789749343772914113217851911169798607688079974997608000739850564695799400755663146131448957918837014584521320831067391452942466935869626339340857552356823763878416343958322527340707206954728666806969169863483776109745780375381904285244470242003441100072549815605773959791855898321435059896404637841270907882259889686771662266404240775775594680348472255846696133654765388482325662392209216302621362989278105303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16402352463082577140752953246877984920467498001768433895807981008535412752407198904058522506216325671896411023440227421627939946689450862799666070848512918216796308416481597151985508760621296441818695279476737470977062273638804401137341960453362545958791229149083253511154684307115537954744138374406703279245164554473277431730706867141043926020743639060900179329573140129943159565920139304238392192060142789144690127962886722177163097557379652576850229148914482607393171482678783950403015531096258236391642801752407539119931961945358199670940691943989066619663271888203795746648178778236965593626946952923181429447747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24711943429144393411554768874423898192789615097918777976771710873092384389599201252973770843049735025757705057771276993625778519144868143931351882412137255832771154801984156290586757233521554389672199858581905798476323133070824756061418414218025458147667396374277797801404876362932468645181859579329186503994142388315709568533935299407251208220117383246756645972792979018696542916199315967607966909277255323629754638782710396955112240600609076909404427428874233730219603381973715952815716495126400548745395311727798037771116728301368802138863533633533486807241636077937548495022419169534369481421456712689055600040377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21833094111208807957178641101477974598890657821078217371588050663981908804171338843145705749100625712078263999522810144530674102003213601184128491612612932072594367699476919824318353105712581575984453517968765856105349084700236673459103817588839244629714408808674909850523431327907216910768273938258780098825218465707596082686906684237292198218129671155345074850090252379145697612908962464377272976913415947444164487739171222318067254999450919486043895393247185722615806124889691280668753857985688716669968045990958662953193847691338016080831259965371971072275231334394335132776430454058501164772536861949645395038369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16546761043961033142916781205546605972032414226503710832116782051413847015521676949560713567714626670403365428826830117877360020613250588361487862050952515337721857840421994265053316076170567807783241165840285378139785392938208042468817930077340080148313964314450321780021606872567932790712773570307605633470660942151179236659517997508097195488112663586520026173611975047705057292122522023995683653266898264484069576415629907256989552855764688810980070791698167170223691503740061723121095698909645611112417251302777454506388163954163310324071205342629057307393826826386152774447334593853893806657107138751100423400411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300070963533975883074164366964502913177546903667545401208824558500687646036982657389022203929739224383666722323914173375106913684287591004204884975590343120050584360255990751771842996793882487334628972369509930994014935880746718903940398868332686659845193226687422214295836663681863013725350569390606766735173968564436690583345091058723914939091859131689676357408076611733235283155176661941031740485682987211837950362440908454039620825440933814283060624898569084087641246371842400737310688917295079603691590407932586596463501461450441583927114623799388071137793104895183923269990685501752814559830043058853268496213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312630335244896591379199924289022236910764439283504902798060602792870563938469868726609468615859714523500177249264390005420023868325720348795192423848506817870567557875700462377083904238433186761353578135627552005370442011730574267110190219003740684252266972302273197720358689528531275285066442097716655466541178788454503042294021306202864861690053286384161046119930228414086480248788043829562791695460707935821272899599956230701125148915701484492021693232875210755080334659608840511317453373982099873174350000416901788362778699622439713292975475069989470918075322891676943803362471378771274581492387045449687495517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19052749294515298722718999614270955721638071038033828283846370496262326401133817363527888994612662484310126247059351036394093831123584313237521767609826043943387908834522615831380846201015750303218443798895986472113192028739433680443326014896911838686384367946842481212035044661195840686880921140901399575061753669600150671807707787936583053468506567357520217804542631413814247521212342230521051486738884043443638218123101950364087695794141313613096780737088264783783053269581916501836705049693629018749977681319529591652872997543587307015707203142827950449641643726416253795553313841352315587948989334856868770365157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268524309530987227828497460320352766054012107932930020206970994820812415775078203348187035404050666499941212564425881612652492093754127915528493932662777646082187945043071090558950587437079294595645329817336119912349013697799079600000332656016053718216992518534107659091498166912121327609423998204241622139635545496315072259176580940456372422093149512482073219442920942399182365440135080066034378988137533347677643605387058493395924712645251039945190442025969077507232492196702338727739015669764735487295231189449788506119300635555852070154987856345368431594604524483155473442312451229552041420038932356009568923583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16275949948219052363986297725401773857838828609807506445679385769252587223336146207176797974822798676291721672993034213512702412446633704914966177612929782738845595665734824200057701208298909963600116648154556778486753068106872517810370076829774394388210342582520573437810797126717896586102726688989439558357115743178469142356487202104922755557489901740358985697736306266888014321765343091452702820378896724166880477931539494483884777811305371185353006111937830785213343753898746023858840598263629786875289634638054098596239929341421059276065566030604996264585718387284677238166462269582322786018807037131175318935721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19249368068709759960450063568095744731462890703160301108563608939130234282210549140121908608538205671079825917643707270803140520991733963353262103184181066351436357691177920956586203144351713409588712924825832422583381297628769675123225661927768390345343496071935058936327001106649745766872769037654193693818183366700277195739289891631506991228161668385199135965881011879094367054145773105078166298029076788892301200756508054516034993134437692296557234758809102112702618214668937973142835264506183573905017563175314437833116197287990720998934069772632647776323849776243432237520178658395028455003227233573889634149467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28111709313777343833003803838459957478690009269332384602136500062069425824891526355872329795452345715056151337118697226507347492402464034976004024034431463230970148306846238360214364406057821580581327434266711709791607460128641094585872727452260357901236833134989351368860489759017923220515850024859502726635830364875686729444015113275385628305641075627664648753254096695223651001798229681358263013172294168749761285587797243948504074438238342559261943511704111535626334991093924477289372868180403360573941071379501939416614010702568770249926185882819650266050399103221128284847128487243599255733836123531774021845557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20671668757158268603407267305955004662166384534244123900538893714190678761116517230086309728954380186044164491462331529990783349657576359899443403614592074432836643908757171974327204927263603587876474111319820765008076651123629845508169332340048135775265011807038213274074265253185804804053287072552914823858427300254078262843888973655045285031953414163112153797576679595371905150245661187658947792803816980299342994809414509754078013627297443184986052327548781590936590657526796949947315701974972111246294006951269470877001300660352544911357981367981649939139069350606126363105923036700540161822742078837211734070283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26157237085946441248177995363172504658265449457354424570837786297223157953366212765109053984592278915031405768201531062052114781926344939304147304965475698434217552841738795453437305066158201059559496465702666625437160235791275777948642603073022030604359198385227188521465245669702510484134376136384017320990571936704565131660356239061823440096779385507764205241679914911999451604784374281124024916000601668368864303701425507773354287811971407457297791020742103854309426310939197324984085569305911184331994550890489454855599502447069402471065268529080375144271486689957176905741905621042035048050162538228136930669169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25786901893542063614077695326299165655942015843028177190178534734422798143352344862172417446510232492293700933673154741216787061202714542212092185598856415675327649541250988981241401660385117638393610812139921136084074572060975216014764892676312964013424070658241798638282158182995502216334911184680860259002813709946414687336002900811261210918577946426638659667333140020400369427869858150145026193567335821245165139775668961833564026741269293355043844763899840009865175306143595418445194056941686441461242120565737783453396503446088529645312129276961444043096439579563850271168484203263468545120248433971227996107623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276058377972219070507914174092473779205729388584716443938767853571181366000455123565837385720149632764553215726112838274230847780904997439275249907598933657089311074665954470006788280007517919101259253979290037432444326023079424724030868801229776072050123630317296020433035501746014698507315082561466184414864925452438362406903544375377088073115592945002784025453805620347318461921483915277910057066735743426929164338773237567187276178553718020853343930709063669829884802649808859924888159554034209528724777161300261144591839741253082862503637407967412970709419510908943372687365983518854629091640998887938148585671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25013362780430109210410175946622368247503792917155932217623429510252787929999334153375927864083486142586138261085048898680441629120176293227874146918305022679212119602432546401499727802504354618886884836309813233744693450047666094797590736725778092489179474886807983328252491836683600849956152487765336690166756062871250970979566394295857157903643684968365995340108503158496018468989196952941698242998372760519018404763316803361856572014766165160402495021237521601044295281095973071851658247500688769024594877981246873200763341532677276511419307750574016892601074359818394894826603308232531457688366480248072737550151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28914133163036691725056110852475313535417919448782410610873968722352977250771797798937900442065582435214585115650669248714325852196115728718848201705577768397987929240733769464675650553034098064114772284773972446686105223887130097952782401958606857772099560130582484767195193816232421078314272390253899357973052699137126559637954571349327352933364122536853436710335917387115267660579725698693558295310372426393566920159839901022792920698333830568005276204386915662594281994298569981024046614968215123674984198124504735896607868884363628378585565829511007730525003773965890391619330493789904583202193059774341999895701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28017977290404483925133578550944259960068082637344196356115998553522616170558092266008556509414577365585344957633797142919747588150940016631580743592661622431145033744469161046566862749090770709528018012649310249922939206210204391506106782267568921729189933774499512351861954612872427055175372052559589815063586116183742716980200792652921869253333732108150406537156832907681891548950310505112801419487188897778303464511875359140796471720269885149422107083903553003125023633997209697525346934414009429402204954925595310576408424367701963857164929242801941860522857619801518747770758143756280772643064156164002650740863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28856609624297039120104216009607957700206032468374225768116603188771438148017991379403922387030418264711003001205225002348234155691910165988342677842835562214296380761412580145085830983060561107361211891087042714484229283666124871566636083462185530363984030448648362278626062054292874876426363252262507064862016450642571608378280732380231867059500069803627475353178345640315224473719713924585797337377511310542412004331019500844759066582329151571859359332334804748772959042439571902843283318801983555721740211725323483090792137981533413591189631057951689351503767637554828918196369476950155361667761912655241479753123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27286062549271543682169100504663829918662186544053090580412918083304666027421850022179972738098509450339207342560509522839520993987683400593508409696205967651108262649526687452517817040397646903150064404906049090027679627756801892654481373255222739095536644910273463219988937820838965861006486864429254619506562695205737749537665030432159281888593908836910284047510265947610490137506121345551547888322668752515891246779236202404506455991123902701125649937072880434167581407481231173443463894825533948428382171591100619107208899381733588079228132166892459991096092638563018614336376381251475804048254107216618691969393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19452076528040960979808248275360168549324838931768508483517957919991090225716071536406384582270951477196800716638028837843647565078660026661988751253579890482230078309970950809722787133468861697492872941680010205827623929133302122615964791556262717446993103455932056695725769012014148233156476226100437948978255979920518098788456289710613606363753444629988269943059134034354675936495236184352820575284905724422627549685547135465464498692658773865979743670071655361219800079182140201174886263204285951483207978053847430264450879959626514593451859553463864827972717917538922724810541813172784460690917732125341739355647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23664555303383089173783612957446912659023104844370530354741940488615068588084630402328773233994319804376975769726668675082670549927738546674318910397611523087909110872744680800977462931532265014550678886437002265389976312758512321954497440349605277950275831684642796296984479037406246882978132856362249824096768250162996091392570583458811221963403324896111585713068067977765574180027705425011687231007955639364258008889189787992717361501720597532793767656018454315178222844921389238997188084561570196538162296147874227645260484935548395774928264463182764490459108169334641258382508822642433198370123195033873589310621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23507906608314104170736914599454632801730014999805647815889315390393916395044321916771057200526726234004741328937960607965324483931100321952299251919940688469631662138736484293424317630981299851111296187095750387712446434404492249613051525694685296012734690401756010482716788509635539373233747356379977476691141503829799515116529009228754096734203043705851020995171566505012738397530559162777182578656055352902139485800857446464811897303514322885824297471212145304169620380997020106182070690130863055202638432361068323179395255715001557743760259944174159549496895742007578231169943638578897354526990752431679881348187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26591141959828972670976026257862659383944631818952346656888986218974802369190084147768167945748967515306315416657193984736016669871633960554761017589148302537630990827965359767226837114608356398867758391552750929708148786574298099346633047557395870703454487892087646144659201449627487489849421210739269747937105754842477923902425840901706052054111395151695717077938254041151519979777863985163471799888704353097797562582922960866869569650803841180714325050971641641368690618719330970091502165758915074975798994594956884513576725363277381364824548120842054336097243100532937352543118685444738461244291109660143018425293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23634477825598495919814816814665175649409417297332651675457962966031964792613127497464616138527435516443928070102638165834501602141615079971847895569114229497578481694547415812071341897052301781230714808192423678829843857648805593904314473477010742538629714082779732586404843014145970385644777211382360753324658923796043131892964192247320194545362561314894764096904046820654423705940932994496103581748300556518085389853035021896055502944858997471650198074266772269997256264784190881272924878529276854113249576299267845410821008113440315648910590352760325433113961354167860114849844744661795003690752945033679832924117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28666824330873956296929285304651251284531706786649335105779538751346288227130025163219485246121114493406868082358741249274685270425008796862453151895474937802346307076629859112507418773623404169417887944610203806864329715530110727378292656772926078734868025894403526819780992979701672099003941176461340622675510668150423052488749612350800909835693693058106479321781713016679647954279795455164663080648418221497001966166838845170901353916239012115653892625051653376959170761013426625244329164540473376323063768310189118163447600571558474562606227734640636327839040440921230346438876871801516461144569021550874267926981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19835443629224791581841992207725449624781872379352531576147165102592145702977908573904973812034921762727246827856412629111733343362245221532773902181281337897854400020505878140379325098368888336986288077235517072703238190952716101654674157814925502303210515895976998606795248422592544018099757485216646745525840701732158891947998431677403541730134359922389291743587963637416113639908682341777211566067683494937310066565435086773911156460513504070813710722757203464516236878575685398100851580910264249738660003455321463806448769098944353915887570034545130270223718647573222668575447971039815419232039743021096387005857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27559943941103987698600998027366523549065829485013774866998253462594921617651406926651592485019877363774199590361434931752575889883840165031372234231047543492349359513526400320053263814755558360217218720849781585393955322162335810303175239805567173651120933674547276211453608683780317840151908339283455168960449212106351135666146117891843024001863702482398697715346838529409912779622616539711980667846751904860639540584977687173044405159882769751072096980325363259547793022357726268864459312803030031967173315257047544299548047269897406270083021626072721372242343221197007384453143819095679660769095784670750880698293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26952083277232863868501441166515857934857070703531723851108975584981332758626026984062041249591199095290084345737278591306563334064902822387267952927710035605455035540590089143708920332943015059707756090593984110053093054934868556707987121879082563826902601141241101200152597318102768256733095172091924239504902809530801660888538923551773424075885822154448751640707079971077676709636339999021555076371950152718975938223749596050059002975099175474006507872892438109116348935778118177788445547375798046126848945442667262837116833771319564987071658347887133027292503707792420084449542083051739154478176939666255245238399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26776942027112542244481228494602658103316472070217773036938512956555478806270967389376997785205210462104764245998578421785371609507228006159849106434658685928942456242122965677286323156786347886857723856957173072619625067860285594242077839487536978470345889287608208010772495205350040423812494954283491460142831098823572247428591793968054312050507295454044777029402869080972827879494663732473274588359195602056916078053778127775428057398067766208572478439236631137410181975487955905473397797362204614409370019386221251870925064450243254989118822608487626838905546491058948785347134329165005294130809380915622728197417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21476488094401382146308297907354274498220288565745739691120535961214522049737009266849313226462997932546041995061715286096376594264554901456890883714034330673072434654165967023727724221770540361542594251010968492741498830316092668410467329461540131926016437101002947101441053054267958673502049413271536667686681249758238029830491083255440313882156185858604361731507340261262545972305550726892981360027267004151754997688564311493874663785870147655288900014382917686853896924547315201230621231069774869445062651391184946612569151649472725999837093476310653603705385733774035413388857260030220923995338525166766299377801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25437388157152987620536038097449406792704334947069980873283290193685222862904862379345580763661074922778061378748791283654785388043213877808955789746370548209517726429171453753108968732960111094190252498780361460789114221331178402989329150421400548575192631729777191531035633795862202360389520349214121055396766422453115142488472917055868470766253353325473430767991407985081012040843405047754956284832497676604384012889003364690508364766353712738197739272424130506917399673491297907079066668973470870082111070331746205201612505791362937422734803831711296529311279569442540550141695229035969149102005895063135834305779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30297463505818540394527693640462357044825164337666427766039921105913748793487989783555007506542461061741854307398892579507904818639448776225837756955266958832307504371806346088956885395643624994584177312305072845849057033658052441171291504678472345889582493337872971114318525805261784270364382915123244421129002051394593556414729200940546399746654880232346257064543148359572638208015460181071892795249223178011128527893693011886817666467960177149478367687703340954283588555311795241948849229495764210683563882002605686634138996110083488780522542867698245586905020487903310860017763657361829217482649507301267487160513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25740102731039671470033657496010589284196550075863814360426909998019560253820863686111403655219964373432154295189895916128101282519115591365895697193507143117175447111576959829177138810194759495307473325420460027575423277406843001913998039291589832189192779611882496051553364292003309182065382238422513788302818604559713563110306039607290999877493654332720369479061276276855983279414878500360981102764873087589668675696085090568150293059524696887205840620960414557310790576231797340202594224928433519518763481096851728027335808995804520447001260695088756017727529187526814331649685847624251148063948183941063110923267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27769800524288989826181974894560688875643384032235937838902567411672344751174731208937347105517367961482694728050230769921900003915916709338101797835562098816949294566232856958590663633033608545921711977139265077772193359641376013101822705485078575147448145694841724426164993816107521640346416368815125785615898868254412374180010870744056120163473426716165102979442728272118240456577123140966685473318403928808063130728569797773512896958068945538869425600132983397172377877285404074195604095165301406581850664231446255851844314109423196088756577577586315473160857720890803429392222490786399581650148518559047097708839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20969904656602733754606569379123009807622327639396303737546243156057116878352789903900236781340502050552653873443628145375642581943806017543655367830315049578409928472769108514010025075317897616416663629986631950665880931584597440820998367271302509299881726160047463920758842448801783695243539372810390634985296780752076784975564972912576893860905834602086998022264107245268728399813509735301935407638012957412329289923184698753863451282716635115343058834318161744822767596004132829011593656024411082170922101624772242690496626503799537713274329450614710768668932029227038875643640858944209501975161079730247308831399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24862791637573297333740387452373930070474505165320896635257201507914559398930344230209097169922414615730331561649129402932852343415068042730888676521288247868113726654599826221603559975076754872331115423943359923643491067099015570640638740718183403514884834229672978673382772498683351112605434794796388780168133482837692618382753734294865279859128426733058349047472319433301836705168256305177015109043204789447323877452127096248630056589959406572150744583486405469233827243473896729562915000258773635659219368205956484950981669584034983258643956626975038369979420867995891791616113149558222010359732510072639189768741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25239283469214613932978104770276093982928941786000111221472150736108950738282967709635698836549652003433201625322967049968414681438009952832146402160639831538103478259851742253505693309967416887707605072827641569604886142619834376864864371163137310944570338028784167272315282333731954778765462606799888268687498774766094041903966243730540614894781296636727741485165284462603784177740964433327772710725204907380629177157836773280837698062290776714886724581619558127506895708494492955745636462558602949711083373337423963782616993351697657151525193945963733141776126088844908701952731156989232559240221622859300821164551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20717210277389301430763037177088498201227301160677134851714175602244526657278460321689009270402234478806215598919815044031985531400518378994787345589527915643248817281953089603663150237296758729788633999411050339535639406850220934598078622660941771667965419842276194898334586984495513853359195439191000588505705423340500789932126301232728070251892671906895970599776395254951777078275590670094451859883859108988945610159084402646867104727576923515547040262622807405916289879949513605216963598995340663083684954637722864086045683130704696160552542735637052266153209078451578017458686710612317119309449345394226228399809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23667082313810203687920879282057615071775305480687195907802568805227859622111531374152981380194211968695067470250581765886163140960152159274008376677823748877437786155904905846536084495693710900565079470574470114190166115755481884733152369589309808700885179315961464566955451595738414616702314296345796782455763299097198147696746594236715668310971218503216136709048516085332320095263127847378145659494102652332701445733829776777974554689086267738188930277919204956316174743326640531110898717858833957718559850918110452292963312127113235827256008101331652515127867392625508447781169791427321597949475557547080796819921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24029630602533964561540534050784005597835397493128506922958063125562301593069934806040393514112963751417376302293932278495122835466225909081414178017885616872951071414245642492570409870117991951497613575952872244839660273555846159661705500452886626188992771281436582390245257754108120669160211564097603579993796213325504579053766660309749610836752103693608744115321936724236824751277793545918863435753460164563817970089830774090981243722370950373673126700577065052342587773529517392653741796941546669924029312661236101341895717037480062558151298036322954369744360265769036290294042504630354952629678968584558267326529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24185856313014661642944008964109048541665118892011290194603316099507072856435973632068721249032526213907849483020013512334743490799371613576947395404005498553624595222250479700002636731570410888410513489888275475013055241343446265550448010271625616344734042141361468383624771774738074108948139364852878310102862486219993430442120686926636267755513565306702819633390752869086818083992874682852707616793594402173758454705419355347908081275332832503624727692600676363727202651695274929022372572956113254689435845719712591478827560573240648914138031264853101208838414398772727536600763062053383495989598340412370678896897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19961624611809081707244956596194604605457306721353084307752481255969847878895737681058242834295674254467416969570566050641017151306220579383163109284082487802309632033997078108967084285494820502715804368652478481675510942131402873244534448216241244524586309274826274926704248444244331850992118994150723815764759730086031146562592815328625664123235165017500889726863086398515100822317272447187317645273871806597516870308935996087657490582335632759918118154171158083372106775923762032462257856630295205730795310745259236430984894657434214662178246261109715865749127378126781200184918562105538041071656093578241904406233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "937717783071060708860301777925171950612456297941870255016459511797642783512290738072364180179756403398455365071761609237364731454205730538195920424872104211959822610281087777978670131982774808084391659035771553099415066384362519320103131221368773895816591065584709976490522448180806223933150169633394550207572129720890446370375654848051297470024727557822652511494386497184406226220987003759501040043805516736569208987682662455778966715313427323644997654461524309917565354270212152970861275597098194655702339878320191504265634997913812866245816216499579171488984778376234131855348911607136904843763543066327110073294742054227316193492479740451311537343292253866096155662777104004657239843830246684121407462062860975039459818818508104541035615216226785025821639485638606723790718559351696305605642529239601009095811942533798095921794878491921599842562587857501145205340129833726152394892270635022879023661603739771057486569133380213472569700297911186618879416641042456407837238938249123639374426251280899194072344648497633888315034712735991497228477171502197806089970370856931374561125767759802444181238683850331052503104484977784185240638861380709504848194836695278965557053445020167101560864801690354012683795278285773247350860619167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23570281109368072109824884863899850", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22928627876546455514154143169524163", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21319468839727857567782889868530789", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23972678317993593009363342365467099", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21660080459016458721799380716156046", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "803613601329538068417962119340157350909104296373833916941215468858655189064421370948802181880140336640516847676193527492472326678058165135853700309130603173184149915439153977489459346136045722550392864700905704865061863717182841660386832855902386939986544900921915480416753096922632007629839657322431549093643566430476790724749641463557439684634162894183544935498604377549578780425296395550701581378745499976466527792668571705088905898923208969655609941381818974559943408054509647502438288816651941339496182688826749039630834030319560897831466494331145060461272682224135300429526883427181225225748765146818007950344853779681892394076723440653360247309869089353300085443024661424802820338641189199840528525844783276455193216210733584081084381667079254829160448369712015871795547430909913464918605541540810869849092621040481380977757100958056677840650470720381638707217726722610749328500695500184371283760723106622817735333050866407061822890444455373954175732668653585119731084093558424833104489133602478981672895180095667119840198527618761626564063415732143556675591394070230661661494802317094426131584663220964062693761507746004511491312414252878809285979490640054442831278205017803611976549076247387426824617389819563582829210486947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "665906439789084232945424706067741594846115039294568335963667287807653674545844517427442284837323012081719687964033694695264020678402564576984469660540138112101025403183218575445260826396293741846817884320305431516036858079269738985532945037775075937004558558490897637741687870964301673114678429268245348084521982853859647289950507412611966916360396177263161744642709319905360148875744188795825927196271304394578310301696780844720160574496875994666047753675989244014601157615806619343560021685074092400521684745133202843470220042240673277917484509567043700710024585662306665256054101002593589358816341266247896552660074582635570912366682936187719006245699837392345686078884890950927186497685078216463711563008481558672388459466288513821131775911217287997418441065262149332370361742351160256919001366327376491305687191894222557423669479473691742251554121364215514861294390745703590484374572732105902943691601827107658943850172802337792002320970044902232757359846275531749946960970975973678136336216787296895513552836119215189350558358082732252817962958560660808881160059900763144067011186244195599078693840764506789147426859338943014330624668075265293464941618863940556193931985350020420206663950467567320285703331681947362505914739371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25293033228537714582667630145094711073913949930824925444668067697937908864616481981024975081073659813876067116873403120770185768833379940712363340801756369995711083176395775927414661832502058350856297511894943439126223714851491131911514904633762034346766623792052195321260228240285123041209553649157970750229036343764002473023894626891156535133692216761700733640037403960498157874712617736199371537932854337012987976753263327576191833157948078975725477215847245003821622090540512869037248098905965873704095109127845655065303227178226462612402482132246372102190024767643134343170450639406483023068259307939372965242419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26400549986367141394477273940326085499434924009497268454699423444866254853489652668503372279084920132879112096967838492933958245100130138684543334323249462881114894433265182888493466282472830165219848099737997657485131746936160289662900124168610349605755788789788730141316507588787080714206793757577273511944445465228729181860760822233340557477770997945513044077237387192850023992965665379270373105799245987042936458536559230003015631274390325106133209547933903888146790029930700357184924324309378101438725154121383976421129332866098239566699934971379037590898246226024881295704316237016387414600363325884510605543611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27422446875456476559042593237110815858988348920941642817613214381767159008404271630738786992364269501018497064807019965522912722062327236909526963409366385739893485741927935775078240991121676053384209354596932681580966917968618250931432952768282298758241866050817203305449853240782355081166607368744510112598069783635739635810158347947770210809204666417881323009539566728871556025150985518779052204474573782640010295482288563275082890153875800989779597513111248103921260709706288793914550848524493292938069930652702019622294482317254802454266335700410898403861661762713539307111882117755770295469341494928297468140031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25956655473731112908651814467467735157565552065419385388133351991070245106077551053533746851129127464581961790061766066262141368253897169508759007114789345075319781547125580485676742860888012796257895916499131205761953518946460741552172920061615978383951370155752838714429120811134309166361561770910531285553978879242970563580388514798313265107094428327095190091242782707599192214935109775398063312058668069238764465680993288709968556772998863945944663212409693965501748596074390418179882296873632071629676385096241174517211502777301825658754242366012742342173821482177382496853013778972587660706432196428096269658529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27640692676183163595129331218398920230557474861154779272448960016855720626683231470868689355239566421827586594613342174945078306050537138694067229623733963044766538986096364895159100446052013417840120435773666275140813986559255568491727261109002435683899070476833250654870233711672990266737307061152956143398765458400987147073773784138826409883505817629175418813778756144529098798110696068220169366321887998630186921115921790846697764876423753525936856126595794067585790699465340207182370380051275374629926371941986794066379370147855285557034773134038113247714935403184007607859170601088017236185826770806918921233101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23124503896014514376177029760465630997712259557033841821079393601148960727199896237375265535136938918588881318278225034077086375115494977200933712199655343686763461167598107478272443092649013638311904981506821491942158605548293455151864718431840822494513772473782090390837053723227451458048217602978616806998200563531975073320144791610164727471875234320970707740917431633081564947379715433214898712722248388681054403997664777194600122644587370125456845267249458922607543474802627883604533662907090248858595678440564051617830976158554265855392934944018278197044763176353961433106295217570622721178974571332332113081049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22830838471339237316487662299007230", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22074018727649176856727034476969578", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21807873024432744555885701470545930", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22361132973069574819246751145829379", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20889272287888594414988764867781357652308516972950142390489165962283120521362424533841752823995714632884922982792630734708517279816926194426510199301836987351220605928739172521977822246246372830492971790984246117340647220169024429033537526986651003762570315094249052191768936565477841726839982305993559626943610156925899647463567779001515824327652310100361498541252335572470732989736138806127924604727757848633217441979497799899269816836110321317545443206649184845698386815856807613858661426410206611855974620453372389732689067282877937563953591218021122370272871601487820792182055714856240754755734671487103836369693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30448738937464814440135387577990712578727446506908765558470459876645481299780414988111770875312655758319293834336792967332222162885838835006581156700258167930300801299486813500457851916912222218848692250016681054703579755395387768594250265143979056082410042045065060371473104820728521873003821241628655171016037112912474612228546560468147998196178323429133880334121971766087636889343437344382241127418613321981260502921210076449355797182591384849987325164777203213346241378770883677157514741353650806134967527457833480285956036600965882236750728396144483653831178001197389893944084330766798943892040052710861861410601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24292412586300799818352178014794866777453233429711392917548689094153961680086454947009731543037361843800516281211055993287334526005144765827325320722466663116251610252932018912433856590484708392232853066048457307680316522474063293470133843110118858501957031941723213080404820464227653211360880504057880025783381174075602518378071233074623765908711736028342554628249168896703763557639851518383909831976956981604227225892812488694470805349535558640397232738776535199956161752183900621546181804310819189394369138621402495718175155349004883225004581371874984839610238089532157573012130346472731072895299193190230396132599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28237999552297921777994631155383358574841191326292648975143912668778394668088985794736901559471225731626523925156021788728557462379291542102316897351716554612630060993103802587173074858673490647354621995652615523628642966782191235148034254305347292450045675832668667534878190290951653211771746573188989654431390490941192605831998105171034583072210477622572391307164175021196551085902905002179808578843880473776101921407490471351253494957158947033900175276329717117866196081411481645411051880501524314055142449879145596060502608852714690668928839581013501313424636031621200417710674724700834482409459359945771301139253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22788634103743962035327717340670259788691903247401479468333823944490738462487909371163881314917957091416111505645175865288546014979442922604335884333004935106650016335686515221693056581596939523982815318611150444909621625262148490805673469595705870042787949476232604844986098539144160864622943059797614107188107641589867297197357282540262349637687004709704625915816477833792897501422242573541748036156586365616077797908079611689184740560501538018788107277509175279386554063750296549729542753060954359826888559259004004699703425792344420181565332097914535863778923788947531298849294258756556372905793735975859078750909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "28256644673781573104680114660879799238747235800250284880453115847031477671220859090196358402640772415593681425391591817853444878551754250266682883214106504296093716187151018622898966934569132523936670183643564805620134939688553163963797184719215863121128371672373271760168729490645563375054930835721276359454881732373493003166692662857648376529206855817065989681514915568257325833722294768525692904676860059462748522650978758270051655925293000987830617950183672719146171830627198345403443011818202402641663550124689612472852312716473327527484441589390545695613052642414327988023950194167030886078692307108615132703523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23836215663125788360202413826130686686052287219203701348009539012729321514103250306944461240122220935833485414857491568936838190700749305781662741536994252048085669776810342854599403574510209037562639686425019336443566937120992457962705966717931703954851770729114426266719959999191549803878939528042284240494327688902087883068632127014928736930689876296475014989393594357401787896316753034992740597418695013388657511408062049529040953254716134871928093387927918090059783139592002111994882916271589479089325733591246674244840215202568187352254597764514410408582448157709044368344905334957124721786085105049688501644801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21617794231754420454229848953120548384945248433956154870948109378410957123596621369298876787903610305130344651857250325430218075202042683274242976141503783243143052871085083480306352775207264686678568791513327595943454267475232910185117869606502612435356015857744839394753342009106367083873031712402305487509317720124256899947407714318407372949889071803813150810906871329325846089020634800784241113476301930394986629889684776375709557516565231827653981848833978671781504623238185700028566031420655348913401961370641872512989767079147002936892758442994642083075613514707166177718629335765112129112899300733745490077283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25100794301113531767382853789310015482072056286700340766501898573525912445000457245545028586663157592896336124414000783558056200406408872503238829022501083302333013522839459351602270184488214566157190641527410452311841149497019407768463411817798229284869498979417258024697977269503136818288485804128606454240444731294622883954524570968574319703722101472008843427015074737220937844026175712022856762520605994655540979525745911816650264571756245103925480565268937712482416032925876468745070441743970723755630930291835008050298951198354324536500652606718114554615277065341861480213681057595373502507739008604948190440157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "18993477809635862408585386134448764275703745178124213122431432260924794587299332602511464499514561092354016389235557577484514144825408219779409031932312787725640405853470521222030824878639746788314406415747297980920031563430985388846862548880503801600300855248209248483785427514455642591887022679161388471925698123669643774411279976501056907210969619311386306583408650945130072568031455729114758835491571514900162584671705191363090339573264193909496658043095040804245010700626519207088001043489533421788278680085960713905901589099217530346738136827528393377527167070524385056796950546711756096754039565720080130714427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28939264369083213231418933174991077102344832439092749096595505975020414547461744698825693195830607826791537798415919957453548159181376554423115904941077554761026127679917211821012069604260942970955378522772678409843003963438139825906166620015676373446963049615588153626700452777505392400960790561653899811020007977939077136664184150671568135015306492696771274765719148920298172957952159095057956759538136792927587746873721562729782142274458636954490315928388683407054658025366317972733654175893036611584524719827311307964936682980939191901481101543698803645006539696701036870362759297725811227722663895585345991520527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22251457772855837500055924786832523702676455478538459456416549772827763072553610966664885285329247251119745888591321275600131521278153958731622515519770743828738898642110801108262981023630588691101811201370346563926060727716929737736984231433896129449278288222366118467586866322934655499541617102864939405367489208688018346988541989895218026784315919251334180359948545030787637886747431783328431282212972722791549816934469228375486642401867186196661721206757973758867159747321266908823851438518205293635986049712667724611793410261585623626544144216611769515554091351696588078730720176772648426259747348900489211155931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24855207341479488924319618663635920826460486963748371326808148015515663753312678530608357595536913307071479500236863859740766760661310372164720677744653830808766476928820435524702822642606858350127693808752261670799412466424879657858892443006708907974489733403169520452203044923487013708969466036813723332317839206308940761227711177059129473187436584706833838125698004826773892954200357328985903996374627921328450714825500499091777204100701121666515497658390461515292425907155683479076830926479215726614505679742289960291129124168778018933963593450588004268137106575622553342360614077612164038720413854760598192324817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23396387279474222217043522856466518297600617285480516547802593749183898965781905564083181793611018532318415009019144191787540911140925760760720644392140877243080304428028360555939551862536338382049286992586187863079189180684433367976031300402658785071279455612101713347539937374933810852125071435735020062093326674820832172684100060540042104707935044602836103708701606641553181091435472369038185789361430890941739253807915144692013902254420713269016564719552751269221221061156467044129695028186875223527935509672981797914686552603961867678311899739557202220724843892160801550883385961035089499985884989313276775310097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26022089562883861647678394796290196734992475829352081597923538177096803330020854945191434586418533486114795908805784506998680888871531105299927849166425359400932716052483675546154289215247400622917028008422223309300991152873177422503845435420026807399418824895012268874559176342032108551332368849883201921254941610443078983176625242416958093016030896406803335121943309855269470233596934362036494639505045851350785652170084842123438273696271555778068501935478775713613455232480081563601767320036251055415725352079487523151722809007600264976692964275514719098907125886475259351865208275909645990678318914355977490796417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27603731346262716683109677802321600354587196272773149768618650041632901047121244885982386211960653502366094861163555592122274279298775338290808606586112700789197610824793020771834847432963234339890402535185789888706700111017071712580653175156519954502812234311954449581463872607902769974527254269877923991664927064917716790178502129075475939475953314258893560551133770006354911113110980379499580864807763291424101587899954941503816750206606022661151796032055525250017162928019301387938182484728272949354347904455418314355582763940173074576654723931660776024323584424896808026347497852681958330425262505511614161560003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25250755010669237271300652960650657642843246831437538728018734530980086700649704734186058103504845139239786683886575708036769218736022848693414436206740283648335159369798384030041428950812667058583227930506047617111226815883788213216929016235140652068968718256869109161515018453645605373486084981585123343046112721713097439128957360953700831200613975167039381332046211087765301454688380956953799640551754070819100716277685859484173592971187809539640932228574679479381620009353692102225070356056294304592565079407201762642089018310484442469427644814136246475913172872571608699764713638917560382227719183912789653736059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27337029674047673966842052482148953649588025243101914315930022803748740343887061991584046969346240540290233056382714861146029868002932852940049050697397375208148136078884965440952889771562797690542135545001821998869690981864215634381496265155998451932282150219432100076159157897666882949845037067237273492360510239174841577798342370263124174705741605226229321124033007246662197222893707232207642142472500189053233574346166228549239633963775248522085221534506226461183178785774579672309945408343010170042679902226249591893128435232288268010971350296256252921866539764258330628698841451101796376038441632965646170666783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20711875231865022546452250438059242861190751888781346926009594749724040836798577449398420791954187081981992023248034135344241343461174324719819070177655880518159332608171268045868307080186702078068535071746875370252801705042869521736291651048753299895802926021181948592544208823393178818932287441701971123228705273635929156155027643084917642953567984861321161058500707254670547914031801248227052828353227359500388123424321222415043246697282891023332017035492623421713264065373051653440802179491723915303145887097410031237478493585161089361467272491451827560699287821269412334925978300338138719188981783322825764122129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18101233905509863583817177303599387117607787928181284779677802689477689570419990138184523345487356309259862623559538513405856017637645781299444037781281562966262709878441705576675062778571289309819909850628290290037727700716801059211376168614935833064332738892121172028130528087690117881019689780757869347014582454851307275634282985568338249507014291615797229748418860671964347398440671012589254018009510721688488253783762642527287227209047523542554034284331794571311084194585693136554656377730148824177030305865985522469953096389742247603799137341189373919872055307676277397641317624667515774250131713765505556217199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23364895525755588422271160032353621295022782903235814046706628447505278391974575811025278806667053622507911106397546804196692139023034886605796739930554031560989450855361416124241832730970130166647581297512027417797188293410073677550591907350917501372886242023962594602118682862173083647020870800784970010791663935386102690941014170433067830305326435594848027702867875904983425852959491279623254178309462579986966348352019243942004941361901501948407286942436847338184256043971441493888423079734262804798810449332216010785274724067399853086791231618604677047913692593936409369018415672785458881855760834072350795796081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309064893719475980086849371547121732000418055742758524100113994996341973489776104847656779625915826673191737688934829527758024942591976916559405941387959174849473999935336624112733316790500945153992364374587794557811619031272161974116122926060620763951650016061088438751070312755406837593818065526079060906393375312219753448403540352030868825383823468573271503422457654175564729416524010392913379153955794185034339627345051778636160440149522712750743613342753880057327807207751148657905091840826872011773501386360319591743668321432993848635605324518915152178488846942990583207162705672189264023238176653067903109991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25899716407519010246004266081852074", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24131266999980475581531508461331259", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25749488929746287857954873548612091595464072182382076822917813971661486090861579186951824183764212292432788076918294429586110975673256156745803577737608425076503936845072688483187820589877271753325548039289120990038042128362531924498569924224118609287291783681123478499173543631941967942544251088920954291323731395013789912868425314425081885643877786965398446783539526162985507880639780741828600226102469162899261315259400085138252437765270349130886073015615247907603909630871879811597914983538248547666386828013224881225254210310256711871901281098543864158671866278463835252373631222790078868323369428414637540691049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24204259270824972049343214121851181060367394364116233380446576375344118920868964603929553722749725384719467210446680836104017310144971223925370714629954589779262226786875472308688018618476881236802211206667453785217547733309824141485887478167102616570460712602400857971700094067303116134787827035687041714445081308590538403721540148239825082541081259944888549369080999799582127938565156317365791250447826455111313451625707199401238817568361931112137709125757196934670730990404239856243273945597538979394371983967848675140109845709002913660004593921954520891270895947816912964849657419184555602357496051998018577876891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21734559897009092973858025091534663029511054830409379804532914683296940496839963672153711465116244481287095136823489420918775705698656209878072467200328411901481783359802323627203791685017580587096025292223488794967752758494417033298513333824500123892500154275571097486773831822898921649995881027954449703249886410498658716067962889010840059097580807233719559209232131380662952006898036131026914032231411729809545294224330369922626042613143468564053301713307854700814845152539112330074463370674601202231093448224412215033544502796686514525094425418659082578826336415964015433587630331055523736638152956741980053234841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23916928737083955735225603523288605866509857089500861631943429511105070053610417496873663675189673512252419102048125538779519237614613343762612185506026560932544266625165596736785701901644592027140737545506736570963827520622884652760795594179574264554526257779365464018756764049280596923876695409171896656847636417466237011758075191088909097862921672956333242527935548494812457984881876921523597628003889838675013699323436626443342610570182132821418779840703754769634143609719145216667634955651768749902185845705809459418350232245815651408891337223925316406761280967519867150754883665863365261608586223371933904978679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29659063218867226983276384250036248652229527216619878348701281773216237640984317557648543172651277783995871830389010407758574753074754466589703724116099436228469472719601111883056324412944919662258394908729619475325607465580681312886744072430588908136863414744950604515818963704718998697418897346081885103413503632822302213566954020710913023017978284241149587528123069455052337840695431148366657033860731589346160779898993665376720462811894909667210988817481837273307642001638314352057696318578179439294883864111174627258646564316888345146501958420754063001342155970061179074988632479994614744306396220628498283225277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20043848512627422351763708911301003808633338277061036540067333074824925303291391131226124733312526629012225409784842374371683765632401722870270511956679042085519884533157746014411212330207466772151059921633792629128331258133437435033306457010469158681032162395808477402619677445208234639076552685361001602660580543445150927439348989699214451440060763658537364824091455855584746023131678736485569904254213243597877109792110811685974830101712366777417500651889990786946586591212082045857972482989745073231897083970755223199315009803745209104815359225038794933587329694052109223148771652555205849292805253201937758661491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27088781712394904298015517301184579473988237261347557784233264246179261105403498031305582464311483664154709341407325605451986158485097977118145643124009184278285200536197817807925412650061022608304965573478889950840508846599448815769905770098591993907701561297142116696678372590306860769428342157927321675304560650347532129950628149588201351290478278989524317961493547798037377266345930877773390647479377055393252317157464757657339763814152061790251249918700930422704687985535740892998671561101708216292454040572862211300157314151888799810300391499560851108864860092008737346467556191865208917700572520834363928352623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28140092765156498790454567192550296098405769976635355922355479625689902970553954612525039003841284018521751887340469957102806625029275701176661820151468549796260386479275585427184085059035798847824231869258127047452911995451153541482027184357072705359025277472145569208857542869873505626518337572900173101334868487680844242217553310134595070964426029846031150873453763477883980430686944264353658240255481739648837282493993082656066201829984923747237031189965345718105620080471585995254290243359180568447848988413858171898439951850744163740466534954209586133678832911510215367384946143744556912438581165529094274122809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18713873797243397366178022281003143059000004521932623566586881084445725515714419349799940701603142520608095203197326491344501996242290573600089505757547605588364663457451881829025420932911203192887284267111204550017804242545705318245345455703472184047700707899490093038226607276658947094034654913865979416520062811330172570887014582629230638352067484608059091906142066547049668601001396997870220943841993059826359158801007691537275026502005094395961613114004285712954619467346282928358490340451180761110772544161323030045526012264768932413164491193742745590586660199029009201731985810686526853707333729171120754405981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "23266159768005068935800301871237313588475553929588288792344862148108650155999152142966893551294526809521409900938317449516663549008914279786992595138316318521935562518044264373253689617359635073828744990194164342798245929331669183613319104591226027404634159719875048841750929249194746980639962530080726199921659069005593864609965555942178071726824225476496576004697426866216690171921367341263934067312186323642571395361023707538927363050524989614955739583143513865377486575608352618712009919237491605523094740952357466549076206599312829558308860617604429965367749631542201573056160714955824904404642352395994227596463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24711499589206737951770708701949243554157822634138685445358810981625819294601664866096311970587824575614704887080668801042897425390494371240619618154708867849823681192365328492490123708064824618428945052159504434104352092717352263934336161884449147986153503176610416679170061231929765916683560702994422886795302516573841072697871378555087529145151602388082866862775313282762241183380860659892176570759045464225952926928669949093067859895575526246557626090708312757383332767800681208795678335909241635012846676498234558475276651874071473222144528782274283785113661095972144157043315830072379578447204826236231597315197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23035160427604970335231428982282327471014826337463800564187789854521547893210667300393185180783746480934484013835628174972532058234295789620856671115032526066760931589439137106817145556265017689569719090887897179164886030445418754038414243528970095026713300085440026819606218211317750293828443824593420416925128751188005690729530907750781253848767922665579765944070676926962896465723029410260490962095549001694384566691903853311031352529820578006011285898753546136211257802623402023088711343440604346194253366328974041104715462453708483425375021489241736609920555108498516113779478838294567116087761633366458050839981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28124375745013899220735474120151094251530018074147120848326383573183333272861149077181402268832051091027235021742392987754804508689389692152580190867927023584779817231170656069828538583920641496583550950372986145221451578268520053954121210627705760076291316694523744863500828904762144202850416531111442427975287710050825544296639599675428124774445521110505960404998624714754637024655468951397539350298462260507809755126339506051230620568472953385159852155786262252185452800266692796389084943236936949516389946044288909296528581348773854674609904217188027451112702000610011952844421932565038072423697951413637480385459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19553862371258964968857102455683001390451709599680662728820983905682182464117816215775056845659555434406243499221540863611187685013510154137136427771228672671640845361243280563634650956710313109205296975368256914223404303206694493980096169314650693483425903832589399674867981653864539762044876326207085428714426206753465471200328574571587504526166959729392364739963172949949172594424889371349049372641936200144199794688189104274791517634273606977012603191877796431348292254459289444865214322839882754955513159658881289973719793687188142535718803591327512586441336118420363050970785358599883691636074708611454708013677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25645504674463644881371867867057174012614254394214435464233580991061707774137157602086400769806691861425283255880905730012254859514764329241718361746759219732389223805218001664683523770796851056344957970364235971544600095672077579884062316353764578340515022241456174586185868987819723555787326523803273042676609791949115492684827854415329814726101727788098561726139616985964089797001874383250240683620862778877722366504975279285236605017880801993933238770147701725511061849967164240499250473060984346891583533489773523231971939816590572101111073293262714963213703855278043709402115574778431433167169405730878100947639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22930169618822282093688972801301562389402442963669025690099728656441683203479396114843666039926677160045990785907285026096990640475482888742840264574955370815795199028983646425218206472960978006226365078913677722106113713455037357093931757357809850400713048893771726572544134445760743306948563273694112894404093876529048667597995198094237506910356436532290111559264174570027005368886129590504068144553136111960436871539649856447375656274868160763532598095106957583143246225407346152423994761816939438086367679392052619206264134549408034823961065638661380390314046781791345223586147060931236242719517296363271871387899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22060008134573921987295005279054867951385446123364493194452239592029402966496133438566281445547188425061225917750480278748496026192236040186668525177954687403012696001520738980828964729404710115943538823235464199486140515043318597730275930228356581938103262829582647314330709090720533349110622321245761844117119608054398072691607973185587291053130651014653076254187059480620969276094931270311703809131704103242708748835027794210569735454637502371707746682218236948349591460825292271023927638319578383151389534589459989325559541975757352591328884675421758331717443071382757306011622090849468374939253063096165303153433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18711979531102961080014000117283939795671277215237385203975359940385557642519166869680895921934025005198948395840310523964640724351425089975468230281156947430958247489164437696411754096850454203204436853366981973908843286717977270185888739051766492902935517706237477703310439152754575732727507245171826116275717437875564022730952582101758007565004777489672217347085605422105935100287116136201974656105340565820401375019573726048755737377705467230827151687361913965872228042576712109359186327797400402735131314344925265363397302517702206331800066979884694931814333385293655388798732599000629247985598548879359247636953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21232563706718320497755005645373929524198524889891369761934913056163970121990991886282420234103815465657709964807371236071250317067092176522268509549444042986898978855450453220120741626720889429629165188668530996521819530764875524077710930965536787784610963991166780011981141919633794332305763093623229958819551124510926219938073224810858295534358669306310117785040929932050679088502803825322026455208846874850790081307694021347383292604349025570493093026592588982727604552263102792014385896812459120174026196274122420685634636393649725951640260630308823932302698328980764297739545275335939795176868286940657384540207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21126431351453105871106878012985159", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24848962425042067685284374622892377", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23416662987596483982282512828848528", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21992707679360868315688648926704473", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24865041222589901330382092523013918", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21407388045994951350620264412171888", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24956660363371095070890985984920257", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24131208317619972080234403812113244", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25061987942619947256870944273111035", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22342289154907632887130943910382525", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24149107675928433676607332330275377", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21901319496287391452897713820478812", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23132370143434149070368865027875918", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21460955566213845165068582194874978", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21732499491513096562489424387026189", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25835940264294302980168424998387610", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23277805991416416702353725595754756", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21175278969254374295102386410960748", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21987133563230042303747116655899104", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24042778036509696294000125790489646", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21608862640350328868979702987251680", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24816015929536122154597629652034993", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25270832395773895107231523869906606", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24810654344910305527559500403269754", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21275230526460157310099974786363659", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25660156346377210127230911923757804", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25181308301262602819415822859845440", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21109405140118049112390483726162335", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22055242888592296787493128218836083", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23301311055974021840366428458199350", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22102833171500206444433549394860316", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23868550892974553895929887274341722", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23454151904169468348806563879888530", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21116200938393182552509237764111381", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25269839503129403819173617771769670", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25410427240575323231477600266165725", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21245759395804550091904121481211065", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22295380467042245883302340495060807", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21657417585359872538129554205919115", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21392119150576092690322028335434921", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22510988876570324097839229675280711", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24022197691084104759956940926552625", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21607087344094238783473292900111188", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24267732632665614561347502526014537", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24964895451849460441947890746730878", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23007579690143446379835361362097993", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24603039221628725924123686832342781", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23553705693948091983780642436195025", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21502715414578496987627284036006666", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21427139818379761230389939654356219", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21178976026095531663513199573686063", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21494665870963394279560157782438496", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285822024364653055262521776934848019609749515203859359613515884721115961100982759409751648657685890261462164237018538828368272322270959998958812224289483016633013307264623769573522677873566034150582918587674543021823667347861783293743671534232830776996475139939241812726052684728847588205404610948754094684421560150671956542391715687062161089412222652459126031573948815406115127444065883195513005515713212212378166280872639770579515915680499212754145889637449274538310841502774797065168362764742875602313621169579491524296060038557056017244350697776718752674972072580257324461518243239314914664434592399282710450443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328047858809391236209466896791049281807004003906808699082250573744808635239379819425118001796456178192454934826792100166209639522662364684822613644200753248517802270317516478212515089408445182700327682876942923403659762007862167519789759084539778309694696774214339405888771627747072195482132841868238052230803239384679586768812664326954846971809913218211798433889910880236606548327257265963469431123714146540781703758663249140013828598529499403768774283352946981615022954860079910930904992125058906474915781769416794467431333259065594838489148632425065312738327412109610939043088465416720289188937586474264780310783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23093622522003074111337142198845285916089236502012699161206009998386621283127292335237926753962124612549893639755849327669709345593527949753401502632402065005291302541671270321848151283504888823448612873985366811319686456118618426651651169882716755225197457193995820571507940811447481561756292950466130634499831717628770146974627104399970557986060031012169143118497148200538248941341859315233671008434273146923090662223251904669706856121016164094630739821096632466851262131992624224585751925589976004360231464087819585882729978126834647041015888138198769214198381036143267688517392735309070910265030687376353767692637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17756526404897457674273751505981241884824431993575474612390226878478863147462651641722997309535567755593670282171359859240039390288814552931942460266178353884946440653351375515979017255728098304359800766151705726778984467546453795159483730261624940534165163622835691889337168637782946106914279254154259118001682863492142208162126629935359157476103003830709767276591360924865318206202597130004704949879248365988660700771625650212236645413387421526120454517696333847135999660096618546769576228210294597409058043548906359272634945595016419613842892989533332429263046894721920935169646746839859605766036676277602151610281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283669801161448461166718550381482348562945212152953525854780029283079503646534584932962657890908506246593948089298351617800179668640785251729229143429140832168125476906869921068852444069550778814082002762557405309829425622228239294988933243141478650703845747160671267459611796489763229125356449404316238047452545190266635755328750314360965323873672524908821114279460744934169374888206586635158681110577930783105290844115093440020203622936346880190224584393055803917459594404848025362312684716985920272830149029546792934005801715589791981904030844696580757897973049488108380903901280519696548127504576308946807685869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16362453091313758784341510442000542168144209549306023357771522437929922719446763860630986007263854280956636137878329568306278753182008145925232878573170971083053762866776519020314753136583472151954158228480496878038580878064646234116420298707383516829441311699428830085509083528777730244288458421437911579002221309331999667366089402040917132041866355862598067750460815632941235878886157425082882281526398729968196646143853747672212650450923920758385811190250578371799708378475363718633808683486599812375648182800156882310632132812164212417152032544645980577102487059341688822829389222276083138869739098615657421988243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26310583755273490665070101102751602776383478042328815129527214695185981863676732651158201834159611466316455671345388094040182530455131587269469514013564618582421689857763556067528630063601609362141566005474864616795474706513962503707261073454895835329554569278211741749417629183791487812248013008316739519995689726072842572442414578674969210484925015209031304167592857274407193526591911683762288800986110709300362961994024095342085618511449803199203030639403330420762924538473764850796764751350779592434944193843505566678570771865691064909793651668159072074821084652608221435426597169890168406255125346133836853828419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16960414190383866116446244199124026354365053879626062170246147976288305327118245230307225707056098862249491602964516119590819764340704605637148446208279829436091583949381012356293867689247649423218011964651496017902615232997816121098510777833358279179315092872479791864667748575097728591404929251073585220487362446552993975549929940201378082405829951532066468125204626112972117678507681721605807382906364268873777184658699499973267177316316754825232301433163400188297602682866887161465125019178045815143700386052707188575494372265322251963567498955989520493371851059031541681201403614929568376715823841116738253732253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16259440758318734296596162795959500218630709622234220977298522605269033573398234246292327701844171405876628142589768571915586528409125663870818125217352537807710036433250574665763987897053294831510294483196265935636184340568251541776773781627314196307990155173620996034727348008116766455872749507836973100464867692536742951672491506557775082964557985923247123763607244055548706102816032226076190814324127040914326844150751876387863935225337253743491492499814346852803557129908349804234337402552128241100453923920308259331580275645905037285379320114195090074548648785777638221509109900711071609877554906873290715096209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22006144238992834050290758014623771501544362031439004505538924111520454732776696376626221454420689468634482140037752105083205288016251672679484592315583895675066510176263449691863802585276244706314555669381914009062597880260115923433122165933467909639270177421313545437593303459945101169429292366038468984997741333751097150448807226668211324511390995049875795713273090664120297810099331981058295681440936635831369750842147983791989181492548233902528329387169913917825475566089393279998147318621735299215578450510419086815719939858780058357811549405055968839547763665714385569004407964110264037761267552186068116239101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21986394298303846614408908542582665350361010199199486038836380563715399432119735181361223534065342412485442407626880380595942063463934574248270944954512878980316463421367355121780336175328082572619874144770604034731631154904621014506841037046701743301966215557361392141762500524950783897175620059786542735028809170312450718141335290766561836993562078089582474353452791158051541523624795214062525174993584596278559402943161309630438169144620751887008625124830924428908784624986412953981831970246240147741939328314454412302019115079142606582630084096088371802610223864775601569342798156313237383538847886592121866010377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26687750820044945403247283786265787924897049038148804810158134271946301371404299853610041265239640934084564053043004690007823897986282933961597830021817331888637462381339642462398385734529564580712685471460519106978997055174203233118734191197613129009329954994384654061206870476370279542338884569330380136578372021063214518590167646472200307108867067906362196830905154941423471948332876054808900962604673959343189554154051336435881620685435796388137912625290213519090478597526481355092245593498161429022837462309874510996632917714136005012728932416099021398017235505102125695122105036027893227084923968937819702103291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22863544192247770935181167700236540848593794338088832552624842315765838181050118164847989247412608563493816566628696834431157489071568011830469789570781603054223489087391705901582548258669308716444769792654829473300443002226291908826088696120060383541559073453578643629763784413735854127263637088377027594056387074947241142256992238896408022838719775075385822744378810800718233814496263286173509607654560003228670765766055611349478117624985389370635050957601065326900771021184152018609655519364510734682691043944049216270829124342085820136120179978135010280206266493449817919894726356528708959406442406272426329889449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19426516290973244926395870603593797105525764242587329902592865485988605693228992089105065355313598736503543988979301875436813581765737870414535917514439045335029400836212729883062472845901142036550134739535319253921124138021515621173673367462569389385380113833692801686115548823726377137444315062704753963054059940422200779359278256666688732527346584737265603649120788361220696623617261988788954389944617059450839019182465101276717405443751724417302646933142850647016977618560153121732006774503999167395492045174113530000533592229912335414536016887543418642468081730107662900566279927416304751727305145538923359716153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329014383909354738496044113719167700337859759022200467546781234723368054175542035791543987766905846641449391670359265620533520181585446956867551907559970731735411392364652050609075553930461905637905994756562610726623981758194722877849237631402813022635713225843037398378230446715933241218307673156355394075067846362290508064562870005124540631847165885906244495460412021922614003087365639566334447515739438942635312581504032515913177331174410212337833255077683634844325107782816553152173943663181178060117731167683074926872731641283710863337157435368061494216062722834597991862063922951719777200837073619805302877627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284698603591056111643201431618540211564326876120097299179947758075350517825875930843518702779149123603384955166407662015278674517933346765155387464523829125642189427527559951751984052201078296573329068988487866069290482850280963728316118920947076535290683561267647584509147977983664746050722081143023949742789746244691374194142321489903696247678869280469794261777121900710922035823895921587785350243490673884603608485216641692629647912752233985975891399155762289312123736687584067086060070588244511863618775823186308921007812774576916796151854754567157003562325805387568459027446524407591983217562643492237122946953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271787047406661109478425473870338146277116283276198881011111216670065291166578482592782656942110252206049932869783302545298468388054455109892690460756994643133421044776161302282439853713110672698875297309425854397866728689122539080221696865470665580062263627180245242010127313221070197415792622835961147763190561959049607834648562945721592626798309078118504000756650642303062592824794062272117795286340251391446881409404305947896442581445608628439149813671386270879642834525165904706618024953711850514164608819193013455319310534275057052735633485433314112510054296985559225801851983337468099381394797405254321709433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20265756481169841113795791959087888644943516747965892552161517061454793146698444315404943978786564694098106184568764900112602830529145354952350519164146984420443223213982126527286273915945843520036581421262740643678947887019971756835701696755419224307375458736018663607950157154243074252470785155762671221603510330994986509860760207367918735535799414451437233018601841157123464115651096553280072202044772200785476137237665538490679567719835223765424222103363851368274289014087269642848106563940372089068395360315406385789533005980478935333724539667216008997829667500887284976583778989000539135368478920551667688524459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22855846790793722930519000517758385086242916684248118826274992291801286554082751919711083459625263884754098173907297498398512334821527277425221427182123441688174465925104374955754328633749262461195883995754312399515526588330747740884895086571451179405079876522339767914811117301134319976576957403407254354234119197566700890068136044028351729114605515925860660909673897650233869153629763298104162065303297068413864063872837797717180260188431360467846905575057451929953416275741884666094627863263112540565424985971911400088416640167862462985636161112890560268693489756247314769987849400722615407892484220953032492389797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281028149935459436661227951211224654441266880176280992483297245345644204692069603338731700104959141108645829314570960630816958242152065663045362356513003407583125779137275153638967622059120284973659680584461723661076112922621043667445670992975272242202181009372470244841208376764214648087357522368265524207402212065422270081403945637886525329322163452482750690527098366441081883657992821332935306635964410748493133767671726967599243162781007577255220466498457346585188622495042511920643893611917860570623620149229521873800259298119400575560909225380888010124872317079602646617880621217674663492904122297729250069113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20711432776788290608226331482889569186741568966911724653331891523355648819643260041486700182829207580193143689890697330715702471115619950311162714906443361673923913570562683954793173631194964852060985121383261430379049917441020951539078300271253360141616858915536412147419043091595202520585406082025219610879722136590075603869397441272138800271795827816204312174585632719551153939283566247602895045749605411379398755490995223725619639498104833988678095868905766337631317295891470972655230371834848560945634574364723775291558478221534902126256252342744586372460838122894699963722575573212023404154731712995854338229001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309699477045482387709580525028436216761911696429092100833785290263201165871012458232062782697236928381910950976641393481106295576711127573510980605180071444935213836682529319582869183745120293200250974870223782029937321498077535451887585016032769504023881456318966707838905210814970960478016250731783516017553634419655324834859175080131436033948869165891205641417373350889674337305368148303860674898722740333193676640637833592025657568374035643114238827183868428930923483784267993464972076926556898534305940566728821949501839971260399548260180195827634484847177648833101023366488147610150484121215586680772343619443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336377111631989541264497893429276353290128627381431970841053863928953352195123711120748895029138074174357321510400585132916291469067435020712794126922732557216592712843530094579830103247968010709226287835567412287346801669573163502459705598818111769434740278805805845012952314239200491502684721855291861187285282539140738866039102042320478084584109634207155649931782926053976839829377762193950910404464913902466209077616245974329374125165656983918269791449367053177369322249566475856402444736875752835532277596047976200317209241854256995345683301127578682685471268043353076321733783597269686258480873596593544762107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319146077247126011869309535835856531275620627300191201983980644636628605512346263332520167582026140266099588704479561707570157747585240864899426966840222719100046857787349958305145866658048263573795134861505999801545474655961087365254836130169523424771532943985247872490079338712142387657009689889682121090251156966793466640807957489328440175591445672163587306556993431688456282872380411312036128593234006374362804759752058583856799872689658756065911806281485759613250859245616646673478334807756975568312717484225696431230973921761562943894343334887839437026980159663327080842104067162519580860332164652935135620611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20237195011098375706835836372969220685434902785030666505362546422449826254925867960368635031775278094018680817715183031194591594874079785516389582552329282128245286325806534902481012933652212577167751480970197175325484905286782308362400540798157284898588521834080904373184498648933056370500055358646025559730435444315070618576531176126459888966350159985814530717302549587120356138503061456799973570037634125426826900439764258589999774132128767497026439013083963727787180071935385466492208730492242667825757739962319190002251102408404224686232042798065307987316765875035643134367306697585587648493836803816203459309061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20917128159785924862040611487134007148090809050060020768517440264698100006443021653193867925653171054870868236657431873978298707206451310792507564698498379033789381383683363708343640749461838091197841723208901386815725561450136328612939830290454688488693193195619694491701865805312291034059229584759668942392377537111113301002169709532426410950315472513244770972291857951740231989246744756295231117846152596551986080404417709549645666983762662333851535094822111719262957154073988484309631956455880533619556597682680361519668165670137043832534607921193574309597483731893040519924114286055286392975431318662626603177843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18186997991839265482242965938175071458352423259539628743620677854563899423394415857939439455262032955818073879817958849868452916451586518148696225816377148516975365720897303682558359629139374110797363284887043459534916047425385848849369658037722514794126320311912647479531168106943644943300214634422031086971251160810898375262980875191604406512048124632148842399523400691936307531759461881074977593874718306049504031732698711121065713848933466825846919401446953929006201984563556786754149622810654479934521494191904809771982315920885266343960826655093750980942359908059735770444571216701585261280694449975611491284491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16223613148853073658175800756905731962208136209087730710510479332685246932342151073951219127816037211944515268738079734478401206624681397341087258622412071779029250309312179630444863033086706753021138196927420181152250588350218134829550312903870734815381671586997509580335786976592078215967815979761842863318955034885311324866193532266029194094014097811629960077226381786587279917944579560280481150449920744492726237580978205385451494708552702297804492545133535537284280842797807784441062677742963535648907901510092556083974830393183678630951044611960621768616401107769745582523967632948874042962362027232635784024763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18779721626667330762447245068536388877412258220809991065833966330617775826126387243383865755043531185293019123959588478005355554077887710610164231681930504078829780936038245928957887991044702085928142157087078291910937812663608791280676139419002810642790942190849866357729516548496373334164280345725425863117875627924338150107793262110430127791684401973075114106409335600212395941113069275998185124879721916830794735518158888232229616954984883916526672421602112596147661710687113327447160047400391934010972658131540678348800199216203518056723887647148408635351725636016442939792409311802884902432535961629993177110679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16214206205317916794102955841031317815006261046381313430299031183102402664827899240441651265829889543097510084005536590814449568283570509307280817902835633321896918321355919213439246492298133564822794046734189833003229130475476328288110661223373016173460139714085515246733947239304548990235070623189347114147530419597712816955273541624785777415566330153078987098146931408935039656338002085582773206434953753270271041631083269516478181301572589346839408884064507588473789323157719232603305399410402230354481686914249308554873961063918403630480081826172975326308909331582875814055924012626245360452256719281486172940533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355511251992960802799191529295551396755060025021033948260877978507500515351068855824476024650914449812588165802429744417048144989338628474940548429950593836977482342687341986577124741207615396110623198764294162486533318531459382139266668828966122816097364626367264045505374573492367789698439979765913042039037751557373053969466308258765613203391414538461474592858334952178589541666561760371304320527828008200099537051029938421896833503700325552094866933835254817346731210893921163587329568133885488840215207161637272385185115333006984958739722496683164434529494589841436520038938696932488236119517272192552413491979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295868373398586874224172654048301384466775740871610639973665816907889655065678332445745220772233318058061055898104451464199628562312316004318028857286315394784655520213563183951473215985327594964194079379072196091350573115104853835369457092396424741698168190928500533862873556769111368658154384999958233917536426497164120521323245113422195296035538807962870543001188308374470980703341341385905279368098315080589337191810996385409645565295132604751191216638398891461617362995955136031216402173772650189556469217493458450903863649793281558981411122975259978090846003668123746475751748102866768263185076633360761845489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288019132832918847179349134654978006030810154656193063684995711631519217916793587662704964614413064600900633907194041653692275965918628359611854661584522663047738265222926670279132016090132236517746926474708983541761047410023505465025971899779299946858110323054829090360609683904424799246852239313894324123451821559610904405627320866089184058378687799366046908260211405062908669610535195535038200527062305691129163985773697716637907496535475732054496732488907980927229186559373226699446886560507996735946995386996374260964108041520235623524992233059344908970711820550737457027345952167350311647539455064893459710339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16311951789251004029608405374855047624914711156660637293695031271283722694987471899269275104462631413233785031652319236529449315235530429762794719850374846262622786227809480951588799084082114358904676470265718880489783896092852975158075205740202674303972430379455502803980317502713285588345601120984154823679598120473724182456084323876996126061197088636001065922125713066599732676514435475029093641335670142460811185408547531583901912543574535729791668748506576063569586749991007131025144149861941814411540859129623704194829962150185372490445514486710543456771622531423246172416738278041346462121276183938376194546571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26446138922631914440467255045387132906332225580196075193025463636105718610276323650296313267240906279193381134277451722477143293962564703595985048029597019466010396044615472184174924709341578008473771862758965120700593485283857306752477583255185418011548562539013262791155869591062763566890784556945107968865339408129205218551766965005634372045005619778049726990247242979187126020644152255832669187154444044109341530054577907307662123456808720801198821641227826768343769069835418639039163265998386654060785300856091799238157997420074498448722601247887617448441172539861680890323007679066345161028805022378615864494753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28647673509577543165942648957865807928277560989723654349256809043178331268298170598978607066608232105688313056863930441151333275480372012612580485073924823478356332091839617304200693049102864713827260879899035812265924850205009659900752945464681743393444985491287210717135886016367492935950280172885837525996881547743979126960178543051660069193859283258743983118985730656929282524087798969585252373591531130433807404208419337080493494069791697252122771319666100950648387465714475516449223137969407113701522263904570771298027877057079274281659533841220460061841164463451253284791963666257749952884658795410050951446521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324146026208682996521932079780880728330968623068952907913422038098433897643833586462597089593018357683815117684499417438354039669811728212518946663248003774163402385312591958739396447599581344723472373310184385378603291482546195915382199956677477767605695513947772828212962393301444154855034988367179037331191836325329453567222603579169725579737860512363837689769690302381597455471683935632672666608702738514969791496524746169478397864674084252212710434007294248762162185327229993292003299852869365110479038917526080100404965716573910381741553994607472460240923875981885349883866517649469102573071288303232018222201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312212905869901554427307177548843111040560473010037603951580270443271741678531297303817675905102376779262385097996126432921829442701271546224015368358089343480157909515709540287865350836763360098503750902386218510260020429422435783880823086153301714168777726216347130103954695866185897737122812158507248673123518334247378310854933705674592607320323642094296848783820724872764379875315506843337319840342891003497890208416987835630011405619940601375734642995460687050185930717348331722304762316577983607694673844739039961657078745191573133588081302886500111324675954359365844997134015203651326019301452025722071438219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318881403383209291878753033288519971822005091458085708227113573811468232347335821261113992689722762210646713834183518150595240298825908202467999100196804553354966681170171027791639073786326948131177370434736169116814834466430681437118393409679655158062662155360837387565910028754182212925405630555887195024635361648309423566112249044659075217958873226992442542697984180828739043696283334044855976906416101583258801224509284939091278445646170896951450654523862690241737545573411460775559085299481218331724811265488348804681137807789789807746972109929350602601631940658936172879230731975684629229675598758173999286863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17404176825708317411759285938016553720392416638786966215021357301613282608191406414498572748420279052137974748497731861784564238100385635247877408868779300834704972995689119640816884354243418260556711946516183528555230537354253643604642552302802611820726793886490975166811347878700083330471972686086266995775606933496918891752684832335484806708497193465996842098380206413842929380477853750465805541193627772504373278856643237045660260878060407976979027056383526542497088120537129959592847120630505759568107878414984640089449975735538483738744331688105586746939233115704378269698938505345770616680106709105813043225771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19354712141003863919676869211265356266896962596483767799247945109570265480513697875573229536316896705350928743365890793270148352757792924986255690159846755221949069400088455271665659419779203685746740737195688278057785810405114887302728652114187389990660754485560171944449901742722971858464865591609583604264744370879929628365504752936264956369463263430321489949925304954725659808811382936288176877142923478456756080734195129937539315855234147689936645485465942359313116433719546731460002804407437583836061843380103541301505899049270644361457070414972047690282760137082100241037205669042240029045870432412003314350311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331816405737610946751498628293921095200925016248982127713866874423018135141289565182363981629175501068346135322193289105524094368526678208317068385001588441985869280914212883241244834151905100732419470975634000249572523159628537101236468117364475897128709309758417595420114756909661597527810555643483525857484517139385405702480586180257779764660702146141743067026560198469035943940415969739903067837125284016364696420323323287151669740445381696559395913885516332576979173793019884345492081387761384477607660682388383615126386939366202576256829095521019145590363640649914134958072729600121303526223129986676117684251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19354712141003863919676869211265356266896962596483767799247945109570265480513697875573229536316896705350928743365890793270148352757792924986255690159846755221949069400088455271665659419779203685746740737195688278057785810405114887302728652114187389990660754485560171944449901742722971858464865591609583604264744370879929628365504752936264956369463263430321489949925304954725659808811382936288176877142923478456756080734195129937539315855234147689936645485465942359313116433719546731460002804407437583836061843380103541301505899049270644361457070414972047690282760137082100241037205669042240029045870432412003314350311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16323927570066599064309359390170001828173068032953297735524181262591942099309465715155398351888832861584473965849489988884380557153146864232990411078186852241557076018326916263882314940624215360767721329985944955763551694226590200253486626909637188704280473221576095757832398937967877983442719963418171670366244312836364449687711732785099873875772929524984369915852606574314108685153745377053252075961555353506050095703109093989985617548389711922357334480479951032454610203214894951602525281739540759961864705126067037226136138863400761578415703388921638087048635246328746042472952559532834342482549229607021983175711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17232656949787223693485230130465223991591270216432732700610849740244934806706924603647748427373526550686550606805419935757493869807973269469925813734253841533590830964710999358444219212625480373670902838607363170489464021584584504652722345129009778982449604414931896125165569320778189691265213306036402875286550590418355076989152855065868418939173503427041747499173514378551623004416398223408226075013655062010683485250314945380620031631838560276294218775129911615897520948972927926129827244788800730773293089446969144545273183146765352607071528541642999392988827677338258185521202390434275794256723955688942493682817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31208667485958133131258287356423621198538038888957057718585846716504500431922369014130597597288912188429163633764823000219921942763726695071074474854685062479580554696225348579577622911649501504969571790591670170643358440076332229206415959913057501811708962168855318770393482236995727131504519907766342763498544234830207321238998729971483909242835151270812433609993824952278598889394754300223147192914665570416990259124593611423626313456335741019398218347496765571305534669704596697877107012862359058747449102929772373460463897407596703428160080730531398942118375781048033562389764876576313281854680510872683232982489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26142626095301410122285733995916748981443307325997888706968869132558850440797952328838097461040436851876071988932295168327069484748601687722615876448625315767390226835095245073104474310302538367343891648634103860940075354504398071374489257507064538560324075396736668940190714468055121174973843054095877331585305136560054643067282705876485310999386271351060020328026980799604024316869217604863500042085639288114582521457658953179561281674766233877999594707422508555167643044936875933355037002826917836441894055878167486644084031750954263066564993055347022254689911431207085456697253012313116337144006600305123731254643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23904064481567942629028613238311916546119129045775657926975605409895425113976405979885406986280703257420248935331820434946715949329610704400751298073615388632918739395166739699969109892496687958611969070700378765955222459924173610215211258792783207337064176167889114547917439547407897543125083633599254445614755121003624108487748456675828270802579774327087163064612515287941108417156699629497890435571667141305392389415249793595429877298412499888533579191162779289585670817395890264116189888022636112354254053180359640437986841619807596478469145517602845101174004152564525019750800340548907880607420134938399532873707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17943996753283570155476706023935488828135027532676550335075384091070128331914033835771320151204047511400613868165091490795479644148163440365809188362388273311208993183985629743093315425147872449867615955210414843754589717774814331586157156067128854197643283363648164641304389538022517421620772732328108374869403240907448302173307972749480042382316103846009042563922188856209976436559140777732355890387523447776361194530042096003778300417908504769568815233798067729557909391689065023634890123533931463502424535873655270045508510156394500240268484672059873631665339653844350286442673746613131271006986211003467123720553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16216713796037060208111809543421412729729903609889747394694067239882994145599313507846279149215996171037382835442655428344849612734350337863030363648188741778663112011264017540827983500586245730992719168435809996762857921965556884193942197183943013701642864365669775475647015106175033431464575865713916773057558984654668654410331201433371977713407847763647269403016731607125564277494099744443182447149528052597865344385096513647599815057305225211129182555401190905744071602365533306355904221374230488821411370491704691749812256386539261217786478718908055039623516163811224461270855524816893150052640452153255132429589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17411849644039855405651166238211916629196069891651718723036242930929765262384788371803083088710554409484998944743498147015573459874748594762803359505195686785359578701365619051157609728290272143586785743195860498691945015894573710115332900429613910501277502634150778393399708724677593584132431563470963175863131364677652983342487561892544482417568840872062275200473030985772823702979563108106197742640097547433980502703308286463039766922444044406908213368082613744044454053939191326639016664393420340997810490745748250789433056634500816298030716301509522977320522288236095003518674048395597789035370654042474061198809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245832667222336217642488381789674398259294041454992465678764910888426303858140929864943648218652676594479940469914857002583375597784535960729037253566391131085060893410382493728021911124157572600684009131866667095308553728230627012674828641846572873401201651257552247714262124900582160717431978715238862068609036838765835534029355651787137806711876534291306578435643541537402447619217078020392755380679315918875636521956136033968295973951396998252864328659373903781686777394117544834887392835774614743822941409129838418520634640631752027582882104924162584515099019803892462835037427274225589358423422020045177558219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226008270221658715194776125249661916341950976893680974481705964714072458127456011329561286533491717696745072732585661302667858987527692623117361395825285153320433286254792654364489310185418511957797466096597370741894730038751876405430195507061897615333297082414956188695081906457594585317926141834766722148560229833061175130268948628477208201159296009844392391698522712773825816061739118240751700997152845668503686696895277627126595493284376928230420831953473716673478972500030688590138187616495310236613672703385130380626585520323803071378031117425283183228153597686569990065346387613544420137358529211000836603899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16230010028550112280362462755367787451674831363343549547597978892094825468743062249612202822317878142675095666646283546837402710735796714572065404711553993897947905699951927717961629848022247065254571178550147841597600845770116724375634630987150224854052514107854156952877551514642641681989899129737596696037216258875491411593626975788064680940429491547102755022132584424505024050062488507271879707481599550451222778574220681241717895700523557449912512079167771855322763742251733060480137844071392629769357958071154673265005063390280293588124139792512707948948779963415626626689494854649462305250876061192280354062299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16248316157547463920130733995405178290287324600759695088695686259444797476208849718829681633354967044810201439579224246506244740284794888499285050841072669029237383851322409947871862761275303148784236802402401817149357695763026357930495723165114153111239923229653409432020661634448879511611382122462672538485425526224423814085034245612128513412008681577215934115203953916708677976379007352300585810316131208369865214058291621515358529065371332383443012787090829942073913512406503416414556375388910770414273836455275723970173662903108685887800019301624185817300598080011145210589426608972955924514583445498153461523797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245832667222336217642488381789674398259294041454992465678764910888426303858140929864943648218652676594479940469914857002583375597784535960729037253566391131085060893410382493728021911124157572600684009131866667095308553728230627012674828641846572873401201651257552247714262124900582160717431978715238862068609036838765835534029355651787137806711876534291306578435643541537402447619217078020392755380679315918875636521956136033968295973951396998252864328659373903781686777394117544834887392835774614743822941409129838418520634640631752027582882104924162584515099019803892462835037427274225589358423422020045177558219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18149614066772177064530793525234023493728082070471133991123361343737674186800546762819325856025002637787123557419791120627827803191197081760256226523023957260899035371612933605055367274379036594710132585577233430291715355124462749792492894178858205136066325925397076630233816213959021064230060396096157099347995905101352380268455565905797057805277082305767290291099347997806121452218492860840511706442431409001697233549914388417099380823351648865481303016654353307870329151239141902731962176713252009231009338741385797144611763419149125730027208221251584386953871462988056096488876678765275255180214770011850609673469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16561885984912796774919395143704385271888715080704817572144371277476495184457035683683581486651299388222876544402142298635714552766690371738830846694609115277761468450840397395675925944872125881452018504749173491858910130711700761147369127218946839647699908834325995406917161074885721374558616616077132460420757122693611342202298952373257862645188894829825942716094178903143940820068911935726983725900384734839943598216138788287706365532595923076060875500980067666731547356678136052652442201147908916133809088098154492545255740747048920659628519894573066546265156500790577342693630599817957553995539713604364083950749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319712417998172162532905867323450924450935912601151153201611733337844456815882089872393144826500202170705554590547427564382363531359110677682734387956625135505518546326110531647976990325133619135362278321827696029854552296979166115150377010839423456392659085382320931515429881494499593689280382865617711294278555450986171748883483522406729684315556356769334762028852591425887546653966532903157924561483470645482126335784411765431684542045079605925273782286713566516817162008873225931503742390459878140383506964700523843935620752657228374599637051185299075672915650319673312505026542563298957135857213912586419023763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16561885984912796774919395143704385271888715080704817572144371277476495184457035683683581486651299388222876544402142298635714552766690371738830846694609115277761468450840397395675925944872125881452018504749173491858910130711700761147369127218946839647699908834325995406917161074885721374558616616077132460420757122693611342202298952373257862645188894829825942716094178903143940820068911935726983725900384734839943598216138788287706365532595923076060875500980067666731547356678136052652442201147908916133809088098154492545255740747048920659628519894573066546265156500790577342693630599817957553995539713604364083950749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278692462623875101426896341778837309179292026917143915974237481009069063809771923976687326385369816353236441796052901709798472882684324926634527937580131889223323406390704979527479437256223302822681707764174002559580188044735692088418469372198947129528008600684530414097370785885228515499430133767203638745354587790676014156160513295759544065425009490334057645739196705687778640624752993360547121021123825109322482860891921086359402635921866341900992424477888025733252509308074903912812040855079976455734253009776764032116806238863274380491596135140321551180533617641421177225169364728677958201455691192286520908311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17446756257889188091899550080283393441634509691553955529384451770535383834738292018627595829116181737393416923084528940640480521886786516487460097060990195134732309417928927824083971558821289715972156731106157639575814275184489026097127913111829117851618097289682845609604038548781215300244464822045528106537544598957839303325416042644875068423600860499670603308473476067719685190516183519233824829957218894254146290789861117844727119978626310021943709337081926803948537368967790834744221791936454254151556878114260337959831294220231646901577029634366948092225458416939151615045762717038897615518841739333620795230559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16304760121231050605080320837522278227613326386317212332156605767900268103082941526247813763584332033712122721636814181278866911038510094523177386958031699810500905331869890614124060859970497601829454354208785115344541803082715941162487930495866013099128010473452261386351687913287132742508267778883342015066839755103319530993222468019424659967864214144879692835489755788550757851157439696017129001396148249574873610153071101516709617286667617001481600257614534705026838866761243695703927235331134755166621877067993084775343689451841051327753795003705094878588521495070876713116342357773400450214933187636464799518077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16299469293097156430000611692183953526926807401383960210865851606829190603963137001896750268795819731238447511718048886227753047320581743450213261012437961084933077394801977599167918462666761011198545034261853924986253343518914053437495759181858562025071069743648988660785854883728624428106766841602972472321054515601734393729443391233339398926953650574454686357174892442010883880316152541490823272237106089010473352987245710498996634967648001086451968738430314358396105815217388305449641788885409093659787131555908123391129153737379668918621490432153904362112763959818996155190178717145831288087658957112217095047831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26910379566791003624313275125271743610853696589990860365154717753060689574276719884858716066761358791504014249548217729651304657868613459681353352931226992080618382046526608996079069838655139878674664187017182385043788165237602985821989215331820355249523244386733649491888895829263539181662421504962714051225589253803561815212087163088763610708703798416144120669251815831610147830281968742973044040004033315523508754678498657518780071804306561078705198845829537442673922484718414907704733334453672931499005055184000694720453061566153146819570715287507808032251078026585244881820769359926902723982607442601843753264879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17446756257889188091899550080283393441634509691553955529384451770535383834738292018627595829116181737393416923084528940640480521886786516487460097060990195134732309417928927824083971558821289715972156731106157639575814275184489026097127913111829117851618097289682845609604038548781215300244464822045528106537544598957839303325416042644875068423600860499670603308473476067719685190516183519233824829957218894254146290789861117844727119978626310021943709337081926803948537368967790834744221791936454254151556878114260337959831294220231646901577029634366948092225458416939151615045762717038897615518841739333620795230559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17328074505434579049879055975020786638077400692535096792074303062359249744109346864898068453181824991625750859168296931237258479845243991084768225906221569896487476604278944563795692608426513122225144717194100875644152237758818053527291410893112557416000524565605086238330809541063874255918125269774682752263680137755360004676610185846012696882482633731523672204638824167344705560298787259027404980720410481225966561992192412496482896351357710116055383086875646904172462273758009001166673704640925643526267024752048347250566026665951631214062638429432032065048308298245250210902410398917182535206311789442047173011481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314895487903809002219164427427708373211012078928883406372140665888336334762686702683335203479171325847548013473973973724198625736540113778264514619722933847360339843491902643376847636878618846377386319853012932187329408690867310968875443984840243404920643134535200187199597194776545950854973655346355262387737037545511254806806853676630216355689347341021226523856829119652722693052192084268744186385742955479991926912719640884525327671648093577980365198599020517887735642002189778715168667368452210490757701544166116188548518386579235114372032111569349343295094827591872419797920991744554330376085983039284906939973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326783674955786361536005085933981650215057528701246907153256180050693710184245526200124268436148639967606622956304753794530578319002357697099882280984404847858483404426743704434530229219153905271499232334841328068588886904415815316918627827255192514743966719174232006606327076049913137659391492689097249197225131343229927887349962976451855050946415996219969191583208093745481935264458522149115616476621187579796692732141118211045371352894051420307734542373840606532065296201333613190773263252852295334416642690438847522145100402405509144646719653325433165982363413355507628195973938689504887414983387721778010226239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226704619454430299711324147256761350574726218672080106281894634196033673241727656158405819294569888204706295556324747051339221440604838488629539955417309731938987931136006555229027215282300178407480822065558041706850052709057296050071574722377321403250922751121540358189920104759737667561903818710176815170506520526035669795941231745368830577352061070832763409180642783791348117270075201731477401959138618093872688774395008044826102030007222566876301220224462137770179934457530957482737221858911082110065913795579315063434275290913287136230828443681068850280046230576093154137119875271423567464154068723766319594823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22303651929407112591109284056760525427397434219332874933010637058361831835807534163613049946354728443302340464223738088553149798607506023379649867441676223330625955373285084502399650447422519161072127350412474886764935894181450614705173367570424800461465420178495396743945716616703726743153046798202700008156363510373262530355272094250684439951610777172454362939758664627801002883442843102680839261438963417401650331857404675022505919308606952682762525744202808131473737271364182821071574042134251707523294128133773051393445949268824137402950853256944738894203464897980616178953835194897066335946154843173737185691293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247799997215768643897712366765020026017160318090908819666001418477987735089857381187654374314774813999294511604651947072402884099069625981918204637915201734170496732610344763854627619372471439596388077033464757530805034173408389058637711835452887280360788274050967678480913267915387642956733368166244015760944368311100765279448842838428977143943771967868059837946167750816370273111921483666754447167651485395100095919476862021316059719766829468263323047162251318235227460135590605638953976924198535255199171723464869595488429835417446230156713775189438738965291228287771071380424644347616951582103705729972841894599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20616817026778588575687912520437655285408603196270375906873123056051371459223292266013130560219618216004962618411094056726389456549952408313447299851905165130085504593765159284142793450627954624527965049513449389356518440774695533340224171965103615462257830492454279145644306688232222595064197091739341949885536797011788858108255374705440657917649127615142663574959983157584345917562206799558444147575075978745994313057405388907087151745388601214461487951071190332409952235278271168767329683631381987042250768272083748904514315659508165132824959058303296974402045390471942596868526424166428147359414189522115471212681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293761298630793572350826047887107748250614966336309650208782504165529767201560262537091200578019247533243589117024981235895708231113783385100585672854908639887395717774586700781323824673649670288334909091523413258127208118844527082753359007739948707238010607937311420548724055372762622443406242688796017025358057005492933085482637532697674312717593691268822877328380519709869341755811329106708803641715389706731262064966075670500931443715334796856754138073783233553545793492919508441022451284129873294242454449251941674133017564747212700399415921392646348075154556532527063116066952867274208908449839272106542569973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317174753149148196066937332906596143657440321457996652996266916389792673701520803631166290660776679368665550110494055234500812139893025369138740826981906199294765205205331317638465429075341931241757665390088967123162144748184998636008746378968422048069184410842698052988879833921743371442875032611576259630029270531395884285485875230914290308518887944067507411465129294800306373592297853375270225601214224101849337052215378268274684990737937200318795774492420988046831283150348320891141371749624232254352212779704528493001491273454434912568749866012266708242432541013037822911868735296268225103050310128304653344069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22047546964108353733985747698557699582818691419196401002614179792391551241142674352010211632222766420822055425083557114799337597277387656080929625682310644025297425382581015134830298463092636348922322619705330991594930298046217772537489068236669577227000471920415970535166644582402286569223705420919791324421170847008870301254679404723011579890482493410596872452268344939601810368834178785323640685623405831785271495599853465597265407914535491845911327535163266557728264050158982516482666123271075195093930571766150270838483779577363965722541922339489058625452979271036288523749075060900593407758392715867113855665441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16218498799225776610478164328426261930664126252817887299673893378208989979351148784567954524290282399663065904894208287286572072528190571399045491621664016530198283905341357837642782569711286324605314007019922633933618062525824450905005236223638267470379925337053723818963043267323264511998530113696536168484856967876130298384966781589783171585279661998061329663519707571549664739132078295159467177615373117088878150487734590002987058050116283372955889463854330098896212324432381320827227399888550169188208177197344970878754427990304468862897142313154823129564201705400254929217565296469465942937057265437149798808687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18439320521529915469029378931611144592337251925211092505237691055411820868426088273357826313638041877465215717344466031877909738834627050345472896330110290617679540993334150893963992622047231069816444211229662463979181546261410262059282774343769538720146966325359994764573580585087962769298741153769076656358641227268742031940972159754231434496006180611587127628133949367206890887509321403697445800770062627089264881284379510381583005656292017844012090991181064369461310648434422926653181987493071698910257371053150296724576681575835063637943741447111027995010240697292426205950696436201202463594238997089243726573123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290010585518957411194034747431492753166399219678154884947069144707381782033279666088183416898471095880086577047242987594075031037107341373712443995248893357396973129023301376969517023578118099981494529635620502184403421044591550620520494906037077690387594521992724537652487215808216311759333410122169197239521808905621548511435468785964623729799526026467591938716582282953835519627466858573249236902910830835581814393279519725330734649428324496059747788771895087746265299253948227532165009268242809986005174901439022122172317170248389229068427055295632381581015833593173950985645963142318965095872973029178478921031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20424970246541580367941058796010446501553297735986442800053375502960587918631973851950103026567546307171026788229003866307581919338542025316875192705334709039746383943066945176867058342153093851359537506490439973216513575329598351216914641360585862646772014121611003479642040727134501471806098806367476954912241907394410949194040326039803656581351868567278016863445964926335100316793488702997479968388858899304155494842560288752085698966871718134783281092055214972524295379132338445933313080923252887712782097768642391652150229914036825941153458048536621496534938642028570291469082658044825604028281750383827690312099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24822807001269963594877649880584097792514333625832079116864208425206288505091837483549769304522719204655963977396945011489439144858324298428933471804910270354155529095735714960616725472802943962891359159098332774709129028450659853414414864915505583461113170806726842008889078213433680411884255242786437787176873951772024832451538708153626280576339836945168418157573120729317191696660137190615636423083556655325195453778779879976220528380209602447071313485422282207515970602178057232223386871651772439018874801615550320342158221162161825606057696486036492553940060548516647532986653675813976987304240471577066652957657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16205797836259549097056182301740623852931827781945830001711384781384556069688566621837162849454523814536716933423467133495500110833106430742507406932894283912921266768207915108352330437205063102275000273659995239380035121457999747746943372262981181161786134664144433637101465742303964661167028122360728405836938414597478393253258593471270691501634100612195869399484379672775652932691320925473642797516297887737891909138618391923863302439510785049533737334939303573413749679303776675684014122547429555321492630928281032956834878672311902262841200042173646585445749672633495283639535558370154468676853739235689303837243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312464386013979933605070947840548310434239773994653194500201365585318346609368206703844533136096914510658773402672330268346963445656799583762409568526824950587925323212237023928370778265232489358190179140114278149635350727791473715547694779884296623580207688990858476999291958608013759945114131573108646287874249921009598907260111002357532020234308301203883191078094181142817488057113164829944495027422745849733759532181987716134670095843857128030465012358312841071252379743815783930592323038245828003605694501330669493756788058090392487419168935880269091162432164434622316201659287557699894633820831311843290904079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23961545555201986178161874252282250940301971779497817818784861124654918929760321465221192330385024137470016574463704281133889591334455461955150940253142916328377555287226227988587699824857451422849733324570320041982105982378277333676005295289506959477563743987088256105799577280470388178462608248362863140081637909915211658656385390561444143479236982095092906183065029689308326076183790292183174757687651310084705423298866326222072833506400061148537707224131853018200221118553162308610755690538888509083523961238692623416441556183722921412366700682425710431112009203132609883327697115381700480779765046661086450339983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298715554624057441064200940863652044800036472746608336824460969696408563546864761350417999272378270669996548608011754258415348254837069706895322870398688356936488378322629126493099649088862596952204897849969617548860971190016865851142831524272513847298085720860137904654564763950978664487636660688248674643381030595763696951695017624654550541736668490978266835688136393146270678937550555600963587289131151167092661952997884234378623269973308607825167809029595408423355988324635757053702002654528158228610553738380532242683222053031497059039692632744529062007216322990841764772909765615181972442098281704769010122109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23829790990895534620234519295495316398204426341862003477202711184127465896701189772498643142777122262994083257338199374173899748031021863831080063837596227631368209741119212727038225431509625308898187220972852711417995247755977576123725653966971867365807031862699415787941262079558972136156032200894067101690353191827675905136781780109369702179610485947640016271727899965139133522356325290209940256803418392826247648204831813349380604975561991591378113604934377540420041464531878534348117569850566698063898526347620502800297973478874004810314750922031066294533330051292132557016258023145730699898292847586901050818127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27750280991867912317209456120388624790478518992667796048970624555643815076479933471104946271460002471210556351219452017926414618173013721791989910864130229917165005765673725511254777561347904546854428440449318797362612655006123467351464421594046298412939345874181478326513375229339106718692220968413251394759375564985644181761733132164772035304797818623273728169048958130709420882480611947385870714972459784483014204692647332395098814208098441690267586516080448513894035864992064732190249075079298713658931570938612627436947893961084022599448360415824682805030119562806481931278201226188023252564287868020807285590819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16363392389240317979095473612102956841880995276782084658850652644132503308654426512432302155184837613033863502308775962372431266555706094388120873687505334238142613315869501596029063298030295846033190662497913581936097670283461982530743952510121000106352331979208159461160498332123801201727435084805383307921666716547415556186245114526332675091598787487064270237532925096163738756781277631603410117966856575000256360485763572689443455348259404744971443784840253452045123817200249964236605327966407604849849114654012543608929752323065541132935592125189107497571653571030086613389657525222812024064472716830749828114441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322018576629459138051642361867366643156007918267789496262817246431120858158319525329160922762624514511541468996637595933041580633870238615278802346015609369271692260701950982373988361317923366032965122798649487067586782827233731076747069641061919799044674405571848114401170054142303941657446941457192107010403588557346896323529996741852525886843221008385977467611729831710435767540496478633594215534764939756155108614417715680812053163197556715678408319639970145857702293599679856234584507522115522152826936989625452028613951751601072065712806271242722171368256821482940251874992701768556716358597774726301826343299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16777169397302382422433004500157179730565922121334630667163852605069393080981862818134634354103132253973829413041124670370727461845905770621097576282496834739430218407198783447466392095168461310294699219152579924252672538707996241251043057610222333446647411873358159805720768465580031430856037738121803800734997881187866916265306685186942575327132178210009032754143795975246736321732984810480422716039178806261877779334876440333517527391068660432511421992655241612273785412007292464979506775916046029893862327382918842088518067332126228946946628416672551927469094370998523837991895090972719917350898675860012269491569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17986425068086621838746106670178759865026005657156352880587698831049319017419001950725833244601848972055230034572605727864055659194427771062706476938051813640072479475060206833191173716337392690437779786659613168037121613963707056378855846159427491665618309450777898639727051090575358342633994248157608505819207872287678665106434219853923802950753729130803548834740669187613602760087974912529047004389478006520851179604574802014943513783432845290441597415723588303393862215524187593547556069262365961925328304026501446967720219258017249902299050640907068870570104913891303094606688896128550322586679656437438683832829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23183247775981699049425724307984913431612704310717877425683147200618077858921869175004776560659862692961570189681848965136828747233370884940901756761420963379292880425201410146814880701519547936838276920464761858717962610617065747027074464220073209227500746753749207399793496165255200787133717022267016699824237370613389545308349096089332156200295410312500027979831735131995924745382734120010046568584357469796266900107015694780361580167413196710230687187155991077706307676510124479809739275408629769156838086416471395283298812291678968610380876722658558582891573053398176971773918082247115276608124941605433611965491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21511860732272591964991476810866840972730193419972777685122203871626624577664371936447080446736060825996091311662845616531788907509770885830503958754287759389615469328738772658094872592661859231710090620801425889806340161637823043409062691457933159346180296385367468489105131752812999601366120067085578953926377255366583082098469852200831736857585045171616108299130474357451166325432347768669780217470665622412679766933984701095204647151184529750626879657079386003645733294951827048511547881357229879147913821063212073036450474514610913141207502944949423658353186302017573227008170742063008102778571916925023054978333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302645331519648849875424830571669941673728587224442666464562348542521490089214733949438920696986620412772591571363780134154296370522737721262743651213531962528026057245622787244979920224228606835464145710867337113601086994028183991608921373907327851378421542145598260742997734018219275968919251631597871846901612256727019111820492713203968008610470077110324414665437183516903907515354823366906291689093987683834343746135482210059864136737136624354464902353875989496778627935864560912843355252925216610618523568145524412765319857970385460782782972989302315288188758815344333535148990534029022042725884999674095133563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337923659856172993939288307433337162740149648602497355169914381485800097038372579125001037082297618358963456093645191421969919842406725872257896111670085374254721610715137772257481782947184932708729136312290530016207834062543463230721593552607417512401028971364953947084590114023667925523721609459468848635060939524615542920858443903474886052950394944405334694186970944693651476004437198112289961018159684852840697296528590315553184826867518335141642963076212524504977193864095881700686703765260368331591017895897354622457355844331899371434981752407522798161248913711003668396020585335663501812937743998337875032159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28049020679393495128500365046289418200850759967916347958058450456358756751825701557917762459004635945137360230151169066299989548354818721681852394119829393895719234356386335115836366503150591475036118408106307511110360454051981285052984893618262722701455627305361116622313269691306569139483366021507566366185062232962434187261266370231957398916465657842460588104013012064738708162274628262493591819832009801086318212463636946370554388984788400576245616700065879129758894102743322175538945149014614865001975004921313236782071068538944111693232126110782626667186365936962101707750801331717261134807559386563925641992443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298024272124531222051274304697336613324476611630161015283797831711509369645975242398446930259816820743204222365017788738499388283968343460239250819953765835328538308698427964195886777581713169671571814440353408656034764631997245304126217421439669125183559938108282328205771319380211468532120871960456428604854874788182455702734061774167529246504307442793709822313951493169538702484392065006991635388569597240055945466378842960053639709945113665023662508097581753931167596943241335123260504978988575376598311862700450815575856615912630170577597632431598025732868922408759787882971395551238660859800556595292014057121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379569092753999285546500934281671901268570267105584247480144563446583534218750055581294671567290419266373119989166175721642325927089393002888025791902478967224929201386034191546959858153606745036086176040139571419948453030201908665863123403395495876295503964611132477617854204838213321278279835032643409328193861547671496897432422190983678764310519804737440292057031075252095409811895630893313481404334825280453039543454628854601665907860076686517613995302384892259490031549744547172835451752089857006632351606092364414333421112645961150415936434046473722985452919503057953312809976076318914700018265872125836494041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17389838767308917471279034700258546594109405074620345638683052509609866109130692508918626923677371561010273246667918564764614970887047583601469087212932800177589558088846751509280134575646764806269260393035866413025198701222482166705284682146398983375389325329058477764339194049513765815086376228457245048857265608823011933210892586414256823995450465932034450811154420991556686387551060565357672357675167741689198673421395024672736160248280263987638088819687757794021246649891009117015849036971926712638327332974905417666488830646443711063984817007571134028539461242408964740931299070156387956557480021403892531365037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30629741135394152180167432116905037991672121386226702839638529678596806331310510586837645474125192067596145495780338188647689638678775926156110998692830562128111453854334835496898709709065351201344502520815972729693641394008203546460465324157615223451513055978902773117275122492411745530476593519167865079948469780228945184123240229189330210080374885477010345569422179663062734789748848361611072681319978363520452726460593694417063859465108867117644839519556237327328368152192261274624613879403386261650741967892107770785934381481210998199222727328885916133116604835102854842377330508029202091277018603545438195400419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26300633167888725719419333303270711205510410237202330945779768212095962277414149826331762374033938482943097992247720121596588628614272320820511898066478483779814260917949942191961810279072093493784197866679740341748131391692772095531133563607868984851508742537523005918971999015450665093071851064386120228522038600461085945304702614425785115344987830024564336459122093514282458307249610752321825767474846478831290353550096495048684758948865009887103054580502598107085938288080428426559286993483768437151291516065748936349580270004816321903085412088419400252835098191931907253312056748479710634858810370672038552243543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27359905987479559397435736318847986695397830926192986319188621522422621427780624661961765013296033367886287072719605629778246554081096524496895380580222852086131902482062812205594377138712448684317229342275607583233831729492772206807755687172846442852260480257646577490325167354379481986590425213629397604333863659889533352047574904749189892932340826105560145219317895208045125922845418323197484709018214912494698714897440491957202930445370247379883378972661596440854716231244900286944143164806324229793774901784801937632019818561020760382656952431981924065320049262821079189507661807598902806994827198101782547516423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27626016756350253596930279055789853010763062637604231500315550562514752050703109085045297709343633026630713298451910757825944553129422686951534453283254688117588313449773195217702817217079214237778237085140646196678593620016040401533700223917710526647498764083364013721132528539989960921253153866093299522370087094200426571033862416844393788837131065362314157575411929821342228726580218065666793314091424782062372578100475725597947824071256465493297981036574990209922775349426453803077748949562972093502069976985610353824048453919698848733268568761178867660009745252625719687763629228011990705087094585732744328207857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27093840029018652354108871711710059902298872201327718036039456553092744693302162493480902914766396054848316131835244664268420793432989530243807846601870423198417542251445845574333977103336203223235716623084043448641588404119270240704269178550469444914286591296158107378480989029717465385633041305874631388631106890684001004679415457824104471927862656903554973954423083776421879793028289377948346235975040640349346075450730275745929393244621147503427321111929831593839286426737592292157637729322757705894539443288633091582596628036100084268065814448392099587018936879063877344917881360676300466021187085397916361622291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29772046050001063821418815500299182550841353895815248614086132664003031609670819313715135098168825151575301667186645330634713257702946133923760548474390511580708514802463911636737930318194499899987157640337038793269229444500172659761802411244815781242746496810427709034607500332652008106574416958560392475141368445921539506093812872316863164787462892384095456280184438688898160485318897318712106744600343722887458317068640781234854729761224279622550868184175020483614877869034831584178611936084577881741572642110847920868879297680900568562851663342057682200043520367733769920048267922717478853599549915921807153907683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22662975569628653632814859018360361240690432202198240257931213868033525338441757530501498559076184773803375174671246398522874321897733314729460703533675394174674504589232107184674236632332590485640637216307245541781657521660106124138810844840727663529508857500253574732504487024372547228028414014496991669860424532434788319045170974729630871994899556034354291838336145627437273606421538460724980610593518635975250839977636319723929351381026867538797631924338741870994008649504782280047761475941840920901899230657931353789076653027381958988997660080603626009589304595553323348285531663695929815990355934307462050380287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21261366589179412944027983016698330426857794943756474684419013738389574200986150611075086259090680550506020519218169654800647683814731578970167279556047573595566395007499876323039719482549803090826657439508819012880929731833960859616914021186037071389974018997595193891698380936933780173180654639871110870346565895325496375426975008315782679009047288528856624457272630407152836856300132291014079360608932254363854362623773396922040487520473833242245259967536554152052129196249522883788045612838586231211090727773781698648382818490003319793412072754672496675604635384159982192867868230381086948151346959745754132274637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25727327333862289881950991589469359245298433752933078953263698983969955706201590388868652408045601873783188276349297622756028359457229139630507211048943212000813823446157983052767714576352253246310705967470367549795939178141556107653007882175301618595691241301229754060330796877886824502345081293725261685456679553237412730298402342809649689793815719555866021245014419602168980338357979427088583901663837709532779999431137269719393282277625233646872675767802254220516254260651502690908963360152697851774858002151610339166429115740050710219083789439789467597165996157594361482688012014728559609071997986819660309940077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25464500101327486893303718880442510903434549028330291187949907882127645010285014551742879794693742911585409271857476727252240764617750363640999798731733833998710278946673509077009180008825566303566730441186735174355652811939657826207250930959300604245334560461937760247308959133361765415475975228372797222994235133749612616209318297893009238496016980914914592608862955736764279322216418973415708016507925228328970743415269985910783776192069419208223999396559265769041365282149540502747908714711282487342155077652002442183466257401509332045326802665608798151162756072184876642350445014761222018536858969290792533127199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26705210657645294286779024575667795926775547922518927066506941246893255328708103622783054305098858126677183794425474581349542774302773429426180140161483228568637406588178308351951833791376896976944503167668207627348579058331787013296195653153965117543715217601866875938198838621708059775955399651527937838214930107538559646687843682349051201036415619453900368224544320918780071039016872354702994573609293383714826430957261369534894539892041745460953617253216310251682735562403437422948729458657346453147748845336119023133346740539542638428645722973701399015074168469091664262344974511394334109457531285099831512774919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25527172799793558660581416252567385172584264867383953636924464034602601330482170299410682220703914247154076083405388970361470092677924245472239715799826901164643884779576999954328788990505491564982944271599228828551538338360132958262288545826001699533770721858899944019458124976874504491881038716870284115086857000431045080790849049767381615567003046841158370713066916707189232330419077552853596458199070967404769144069563799434307896944111495075628542125927640190504656596731373462801637211130613427599772182703766833065049976464641493774994312822074012101023069364422780305020181888531702937600105051753529964868073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23807853564304920675614876194803317161133065100419908141273300108566602777680776799410619564525052698078008655321147974173603163131438980625424698766889654969018196440871200200871630441240836079314625788028260373714357155563398482600788766885228010549407346098982163552878564474259153204727593916353790820860923174948315588118194126422644566788619251911770536988060905241999493962030490090672460965980124214522866734871209501341177874544745617029323357195520510194435418025862443444482448688775499051505783496720015816426805856003595443344569827896471597648506591915992427521544260018762363554335196164080831567623689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25376122826431781362758802982447789230951753725697947639169979845036102756368780620595251800341046065825368320556059822214741763151573125829132613836354023042033431415828678339619053220684198249282488676785911309148734537147869193619006085102595995412172276593239720505404106316626533169827600633230977258474343962039370902930018388050383164518993693936851202856059216295524461342027552285219762904129360239318305567982231202137552884791286330560077269218884939134502413819871676716111472646365444908821395622714980817015095438340480457325364380907489890749472806088872476597050939179721413952978059128513330865768567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20508586988935048069296840262549599683229971201624111906638613183016480742417663210833448155491380609646601179513014537021556918264369065825292848817424642862768077379909422524175387536971531209778681177771567155109854373810242977802590036332678010781582391746347528435459664094162072679153270468925912168836126239428958660690167691884060913193699094169750691387440220250627641496716251578567326863104438829203166321264830150305328389112653757275086640641668152235012588217877989097733972762905924475053352432466434608181937616661179046062808342465443123928269160962484469966838370556626423593722156103138414477412857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20892140355136324931448124951638645169371169041087284893539035709673811282659983041005136936078796678832314227958890957672736295629849528515216488271313514145845359214179604221862272356595437221700887700096830770729017050524057376156480229272938442023715812676491510762314069208775569982917991029124848646652959422455691736973630087619000717966837304783463689230503914915270133512901121504657101126489047245119955300235670486237840931473721594637514777652354320299061377247473152395850708033140347179574275940900080572025660734087196374373816091071039366121610628589760500956110708467496472242635731578174084869798337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24286021288360766123169988703954944761682019340118354522333347244333358554695763490745531358568195371002792338277189365939099817918187267813266504372130938035758998039563772236117424277474746888389065785891254198842020705554827898210639454231856115588715073677674806783998689072706899829191734728295750556964311862046145536230557441330527775423732165380123363178503569073985132984904188889368901270011512151309461077676412889079138350481913463808433097264665026815584830080962654498270345916908938393037002273015223985863851688061716668348173552637619268251980468543791470062717574706722143084054835190005464773321901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26855574523275591630071236550337968349862678747766279427812941094561237633063555779022270085476350119698833363022725197449308771000883550088762893254709153636083867907752678019385305501874228366292590994765702197016313496205519460492021025910359530891140711544513415316511129996540336698297931675127524894478864859547435775327471209059445940086822322573564519912759223621201418923649807529195026046658259079367886582737479927681205947437095653673923617842815225026550353946596124697475449104014155728610934146900685259192871335767358483500082494317369710982068017410409332761971121098843791534463935330984450085903851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30211209398913383260469501577961047108649324725422006570252066058346550296022602201334628648243134027411198748415265061948033569277412234128266041824526267720512519069015238672553770149484402240896401375859697086222601287757145429436123343917011709175443731226360192553493643553707134039868318790895768028964172214338628278242865127998310048473840119198871182324560647996677308473659209598563099271695683681248425659709467698823582712620921214372990622510031529086332130959497470059354877382414765920662727089621031657282423139762710363346317418464523526426809512193715801111542538944381937895692071411277340005245001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23453990644625691842744708142234457694521577452750164949873835504349985733430656494838036798690749017502403930010230709252468286315968894313667147996274002687333009076595851566328600891955243656698078570752505447280894399906786482371560676275834051145150937886666064259897145071518953560059593067058700952938996486059346923254266448772780627411987308730450182504707515705938068321796924841410079984048391633774533851738205048906092357121656597446103575835047005293454752431541832445073821852916110640664232694536057371278700688965396000878158631231485748827364276071844713296006680477752019014146936002780046621381599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23898377060897756711755750261689336724892050582836355568723996448876139358882286748571500566609550690914047964055691908748049979597430696372628172648034626916051819252567368114806180321287829355140625576349406037842562909955474986734120778333118147527809079308403332442126579937884151706483465299448153514467030110034653095513397784705364627433047363594943010525839075894827995168659096444546588985899657896983833980564668759066988784902001504892780017246397173509651995483348885793135433669983146592520705916533578544227811099154737827381393099881986949349144201836059156248168578932396845650486793952462747416392763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22453102207623550712581684482618655778140542540629207325681153515177483683050854199765729702807842411951109797991119174875492342045790257937011920775638535664672587785917141858578005878577723279265800974800513900722697708077355356271372766979165982956432169857924642637640084879993592490256434748498847860796381503841455618338991810181958861733172913324622477017667320152927224864289982801019501054045509996816248978496962810007641313223584426196569320383877515540721511031590137314665467109611565380516626966967136390536000839740087847104958958395204923949493761331449698745576674291957290864213306148476508291198747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25455593201088506354363460799301371855840835791959425157459356862928121297095159663342582721454657700550158016089750272042756893792723594115526035953559355447755857102327360968122133186054958412489552448484640695080804304868183722678333928027875524778131770753250794826188839395622760755086745233990615744353991245413979867350038797581459285096674293033313337996098722858259354921920000718238386998811987426429217226583897418570513063039740883000320132558667064710647088910764255683420030652216591049859619331972992777566659999455168396196875973783038934807691463738642115939982024658106576037075240295947124198045021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22400385365027534664359570662620280212145668811211140071129158466296599385751641801199255428487428521150614484279700421822936411942576592711670228851714653318122212711491224841238309803368500341144233056617445752831057330562939780635453828258583922207601918950720904645540051872692490812088964090721134863073425361294180496029866990369366535115932529801120773241780835536881926218983911867164323226815692497553776618148590528895256985305718928924231063852084702422584752307498079085262113848549977238377555348336022090133707208693679502294690682964532130900483231147066851004709580460430172585706546068000590391239299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21419516122537538830799981698587248479619204582792173605592615515707661572076775417750208049875607183957919921720724753950660777561916534788669373785784411168720653640571857376885240060023903189385426130094444102408013666597495839282678664550906621020771755502567314264616423908934761712239024488378873403530594858730383657935818432421778767117006195298828346410877740250423689148947082029781985710987104878634088496241034913934638455981783549972180586108400070263051651328157454243639333608467182793479560645250875327322226079878746693169776783697441035780301950006765089734710395227030187521147285771409077006860601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24106629737289181609767315973839481750021573179362516846142763809249824379554506404706939255248992140344816143414196717787713677198062027671156773052942231055734393349179236875464447896891064744511535080260928545272030898577011674878242283334429989724215629753933179064775169836405922787727552715900911384184117147130860403040808859613196150606021857975863214624315870833912562152077922865299046454010839698130125295773871691218782721689939365135477581705221298630012690240378852709407303578496715829763013776788701254814922635102663694820075159568533717310005234266497364119638548745694731297692295091618887303690009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27162216958786965176289224575164640461647113739770874301980272321198651791203958319459056208566839717658491490794718172793556292440414712628580069079411915562064956997406791870692563369763860682857062938892312045948635653443641657272956191013111535984129147619769585122602219016838366400021252918934624562566822109767561887455809254530075469711624803792268959641950289499187650421441429009229359697969108167178807572763291381417894589663640353150660286213715397950859428511811137348186792462810946515237193346912623906005491157044284147732132287244834178536944620660299442431906381898948757721292694575679852918367723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23345031709565816542688653462392249041759048185363375847147893010024941055835315889799996339515492266272935402774094218635574457416295352899840120939525671696906546427211079502667826920253915785486145192201937468812215425052323317857170412634992983992199100323333294961810077893112850139533466299768832290812309024194856743423313926581725031618289818888674286334651946164547648642890456692273584320293038619824845946367637602761132338375781644936793954206491473163154590871728815196136602682292278004457392459974025184306302083265614139493937548907217230283326442763596147029360449038736182641675741418925723514974701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27290399956845937581162989480793662249005733782726474323690899413082646614957060467277596710636299710023859263498342138633509551658623653897419701223668478721995749318841039611067146238100157738055137656988025309662180885751773654416758537804119128753937739717733041593542341510988571677471309060714013156373138031197907565375414241215681359716540075371034734306737669302042991998530602723217826484451285358966418417307719232553256731167615371609091618354415464236678711428958322538717391010997896084661233883133350749684612689462181537736709884834050927107483955425371753173216673021964044405756433724944437843778137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25186754271291188860327648223729954533461576346854115713591585584069106925032395347875950818117453858522522663138650759135643901660496546858432863412625156773009232295913219966938138795981263840409577339651963613419586146277400878475693338994893476348702017980856530335583855126224930028735155784258985412643649743434052636125269589359959607043946298690006599982183833112552808528605414743346611760270356082680372411682042931787951472895970278290498011080565714735512825174294961082700350681706555076328619754791575674825427415969806065648862068478269228501571433509913350931013412101666900541338138592694596573683837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25616735889351753881834530750170604991954747792588662172498733268667251897462487395611504849610548631988556162882818519064027724933108496116858209074490009033666604283581814927643324439217787945673888114691432569216437265437865572238926232748585755832170590654295429558202822514043090276920833783459158092243448512422270912257044328185563653176137237237598079235110124674670161519578193101076886455056726762007030988954813544236072753508509825198173043541227954743539014764739329293671551415084023532958910502840535312716364537638899077235191473909733123882937819117616424861655916702885963711948553209392588403869597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25706374976829963010996964931976254089605025194347337490214241352716982847735124718182938853281737106917812758416897212338990298278837941567048246843154233763397463594727792012433206607806666008311019794249008733875068033924799306537609473632406940349822581228451114249010850990050111209141407724494851099123859135375861509561777465312291912220814427616794912027650747600475324733903999608216973789905277078159709239188989866918567400507987511633020097486527739218171203302230434760708829640815866696728129063086879641331765334726269214081336140032884025170350869106313864719430548352696270772150298828315003980775381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19843261929731793915057686263997414653269066673522278669634299104607383069067925588161880169748206034978891031656284801172818398690315303852516475625846001965081670490179247868613470647876997061375734610619930450750220561413663669120384531712793059402441625173592773198099189989797605546290529748702353970831357411996724766842428136953000941924185724169022135174046097892667078552459709209349608071682461677721580722153656347705539972886211017253644658119268703780430746781244500284184239406808703987684489475747911768251528014800398193668616381685466878548931495074813726008176137844829953031023457357493080600512947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27014835478011165533177314986939574080743407060697378853838496614193655401276751775845026708382802110719072933853107595592290648233652460360286063035215677799922122157533435486440366173807156188632914492931484681214056084096511913136133937108667501029869852802417313272581782951452327718523372495585353210975136442266779195588555099592083607775584299054261436332251893213215503004743395711744673549591740795191425512256107804531281896955396377744227059929809876965580411786476944191242614307518734920216712340009911892120553568535484245392867099484922314322826884681749054463670891694816498113730485113286519069215919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23176267581316938970839822762568628122650782063998729835633459868847454898754817144097655141473594914391207106610698728854387869108084213124630386105371479653694588346225680547710058550622708264313663327969030658176386522651278610020477182949518394105853311741794185129261215573640869043115588362417638474343467706414397776516381499541893321721941175036661161364139147151855842258504046472312232658852394400292144542700060556546372725307206284080872018701648783374503112012859062444971990853298790334216349402890280748092651899921836843169998654581228919936685775305880485614248766333020797012171315970850596227270057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19922348783199356762803357156523938826112154459585206225216614360683045246564009619220455823985637650844661293023862701710005964238000842052609635309416307455516309750828208645147148751757482541483009650360896536685213306753103060234954470148601536226057012199055733151252753583841576227757875519100053899504653999150767137428449465232427348743486771324068793374766809671897699812816890722285091866665405210858743296963097533403473856583736397888505086123671264123884195595727547674509523193167417326971658839552808381632201369180276004756038586672433318073017350111704284236213503415295540379895750386518511022084349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20946002907451367908390661509673977454757574973550365048906484249933927288066699990069466920686016652375372119457344699532916855315002087118450035242003574170990926857070572966293676280677535444097674147553360223445909460515480568555248095192706579056123860808327950195685093357834614610151592197834753471129984119511067263296398733793556239492109932463077835919742756485100525666990670095508653714898017686396112834180098914712161517777737775775490724926329756680824501514015686210735860480759181037576930712735724697429364457756067946659405186057416910080501682511948532983351926714842387359690437159450375272255161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28365594825913894077625911674142602480972391960261402144495714327201868124210674145308000894105413143691814546738956882646150928424832183630344319074981470819775043446693300710688491610121770696119518608493114443736729803869107337301993733956209581794149167008432274746840036320415054462713706054481833341168688936162767943921063764331552699751019515990789071930387370179542215792501662648001616112413330841474768480080013649014426005387507022922398631098600172485546792883660903441006125644191101625682410386150269010459152838874393638985947854798737661058210195063582890312563755337408382762920281202044810824419787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23017716893772864384004765557457238520393783318253703564817616191750389536882009656998949659915458065369424141282758150480309058912891723014836299780567956944381392463910586297666881034950695039649425358275583299289578879582213600647116689148868029569262346521967402464734600378339944435884487516606709618543341042941846184780318436476543890149797669160488402439716589815590115576128019686868712364146731686775348951978298570709325117748809624060959249482506158754795592211502474288555571558618632069964937492912178911730684511070865455465396941945994823935129090457856555127016952288894379481060368119419667414638223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29148579427754299762645050743894281499890440876843642812342883874992943204593171839956834204996258444077442117752471056116164761899341707752695515729041068094031375287013136140703316025962933445111748014884147719991952837762971366202596422863493301467430419769056401085266796200134703504718314249568092724990565403499639973175507147645603870725414337779849214571075288424888954884665191989761202841954002791119496297936044865899129787006603568205470556266344228287987092722975038666228769056070395287709143105387845845337820930519919961256137715639970736035737902992484479069721068529412875592662809226172384580776953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28304601322777921559139323318512976047553537909292407302167295470350914408375485100732013953936818870101400871168863015530442843659533982802713231057608420205097611831248803023345421565218684449840494361763507204917776362062405359870890548401426497107090048664369290641116983120574590255239962822457525368444492710751620905914651684573581766557435739146413649907277462911057385639402012767144438594087720035791140645340160666079378978983654860788114187292937843969540629036102050672289063699014239053483489436617396158024921842955406540246789576862423573362460805912576405408163484522776317122705128879274311745499133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24663912398643077729697167176584805218011512513489664064470952434912249753605083063572710573555334058550551914911571276013841021966135428261397768731374444838887064969582071491772141597962740929348822032019480908301755221708713856073210534086418743962840880703444823655833312752894265315508482587501108417107070578310674117884039618978235564413444189456096280041733476572087825402352646999037372842222513746194065507457908076190972974212991068201481761302519836225506224623417372789097002396263029965213350189786343355665856846550646695857914710853256941748290594514772353685570436646522084161833644094299904095866741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27533326821362577709260151856792035074060621170492818401476474146705693566715967652489714301987386245901356699904779441658949084674468210169196000987304028419757646313561246306117565655945013046561939820526329035601379236033068390486434963390849969221246204781717493106277701027492259452762231993944896671493083611028108927297786114198609152502379045266020925948459404674657365948492677339803699447068418619638947308701701543678744735880516111279787877989971317361881666290596503853906943260630844297369774504486721959129200787033873861325880759999975179003492012122281834827583942780081065811555391148385471152418667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22223866475487758652854178997166080636958328967451340994625206208798655566388841367368036875086611695837027981703661167532010377121870474345641483471846175846434074659911284162726568196191556080818410855639740486008617112223551229928646875187356335169260354729439958827556586020681066132284727989177411400968627258059085504280024785539463048792469794759310971459187756102774014959425598603872820100886799672722202638151012775884287336369805681542244314850574604653273000140890106306705393224731302820276203569075875197611908514824074774690614888781115014172013350295837762676499905115053088993845299937076531977455793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21766831589017933771070683756865562046884497241780043652754268433855587461539497833173227530723777104671484475725218722819383972014377949220715723877905434898367142380805687769088683021864866374793882970442821691797931043288580944843423299326248562936212595978954617318352393804552611432441712327965277196447686809682289608526359016712667478567313543339515459987473719564463783174599906037145589478396055948526240854523271389341370927654344197377492700206587329381089081375775794528143554824299045171786683391456933342282711770815842520794915851080816312497747034585315678973618130800781686340914460139510775282818239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24228695619022063524661390767046809357134260718569988347618872652738360102686416990314163225796533093328019868203355839637390804190290506880473802131050171131056847432229226087498104569131597633111363001502211445285998979493454336118578092952123670648547149354630001827470538784063460255176850261533702860855630830094833047271015495158643886211296071884629606622524330645985240907862849406684980359168652680693399675305323367054951161164695560977963766037846182848152963991463743540426865661260376890305978425217525006268500697072367509603769040512374571555171557038714943157078626330854210039254260230689059048921423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29316198408825340550354673051320583422498472642732298611468016547200969048655202663683165100395206605901818818706438540482159414913261619025458955493259894182223853120074362071242756190628488335742384409713091911450134038013573929613536745331706737783150183712755783948728104570725077214261654076239965096585953907732443219612301234882871748850035468834184785212997112894025774126367660181916904377263863787324422387905086977338042371600595417157789676312737339439189131685535328058652869095629406822716083002825378162761980603703330397333442596483955394046509229743900811802521671286247300107331969363932792698526481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28074147605310195300482282846364845898677959781472884850286989221336250108522570522462129627134562871311092526931583130893442892674211396402553724833828470813874404109647046821921158212735240155002356422794321541674011310144353307928795452613337576094805850228556296488091813043989563065219621632560438045897799172589311855156223853512815516194607668358980520392066177523126369327323619728481812453390151724071866101990597094606871835128531643652818707902928276993046852783782819142819089841091566986449637359088867159752815466014284792397344637910937949176789062921157500357496160059213865759718511102839089789828103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22556093408774334492541671370422430835575057621502615608067459724557174762629975356193765416927320132356263807583125092846758101794176953168803670887194423007443193704617401440276312001709332038457962526948162531130745339162848706036963993666812833165414650173421458797546421378255474402892183603440650299238125335393262877015460544560820685412898228121654207597692555297390819307896971257754457465810007603167139877811740995015511161755108463384494033518271847253987159259895066333446558165590063677254463570691203595727086673228557560302977997001825485654269756898285563519366582731013678950327547012426605029225583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19577180566858905700848654137619180996130833246228264275301276004409405605009379159868936381932469652257653954491816876568416709663602055671341471614079523649366186371703773142274421267013430831228114794416278473915281761340824140495100168598971401648820310876489278642291425980693779962630279992949315640522888275725950944488724148315688001518116169931829288391627373461373836800406622993481599500493692351709877467744814108400729086206901529037272235352875283140473262664102392327250482335117621928533070576719802062838928452310610270344585951092410517038018312559950605883691758282384333765493774477938592767351781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26148684231861428242450321330159094028229329892096751231531132811505497818716997764676382566915289369370213017578588962906287224586618888636323928435937424022543146279674190798636086008409459890023824599480780737616540505871930845675814919182125278311645817310763511837301902945509410458174970882973433431091936606370641042815604879625896940915472457484069833994090028537315812175064308610121760730140874074604690209951137020269653662270448106582656478688348614366247192387241884065868788728862748059747394022912795108393058929276115180854713152417671520974234261374931424309179497763878944447473076467174412563293781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26149526528701488922330199546071519165736323515064485585761283654859820703024686117393123401471693891419959305822658116634096374552988730720598702256050517700130431333523894608613564760709877923302277900213870227580458701909651950894099711009349821821633452021289215980148135957439324796041721453664102377455950150996180504442544163278294352090379985003036754518033785004059769433277860264224210550123434446345609342232232276798319523225536975549188804793122742328791624774313104541616360631711792438806916093494562404514760799442635372605621333125691931088318891645667716691266076440547568413401288178757449461410711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24088715053033617578028859314265850853621229881536984483887094019490012526319582309175741655825859009130316901099087286779298706863325828782004441258655691386829528682582654627994793186302310491621741477433632500136840178540542550099536128192870836303669418144985942990574691384391263137603273153589014840828046028796799150491950314084114434231120860549428457909715459925586597639609845105560835188959245797748872079865715312301354866001505947362081589034893854350455645539066246697290344997779247413807083720492531784023395907640777492302286733701138655287918089706084843551082234436695866364587905889031562819025089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23583673109374143266582122082502470955077865548149889486505829239161962832356752808562922322242628548857475730336749162393450655334723774224901075860381484530638285583475652675313946042979981779796138487826514020361924519371138125380987559465693996645472207881380979215433152152177961112763668634061473611406914164317861579617988831980936327296305654342987442799484402638350176197660129537449225409264804315885859704151784722277697924380542358842936514779289447421242862119187935364896555414718606652585988201207881069821831173593854115319195720713368083162268949646696859813187745071909934367615613825821350339624713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19418140683935566995931370103406060432891492789141005366788665522441897068219512371052551575638637583326307278213284755504680235916563013863565179590619472405501686611659803727813309017945101802987126604442130817569517793162086698721102679661459478510416136832188413995654716599218608370751258385130002420565434658240233159081815685976614688380058367812732441362967747469674605316285171363680415352785849812355094593545974395737094118697234485357125886502382422082658851749881355970938218842626261778776912382429468878057790969536568252646950741772305332538893471551767438591800772160299484771443341247887341985649733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20580252177979777538440843559558771479263030265929606948683465173940334592004777741924188736222575506342849391076298667744307909138758137135165668350141239082762936065702830701948435264557162615650194562541337832750451122362313724350587433458870489320270628769551288548132720271563029762008270093481296701202830657391594865615228178080754865879496789889050552830082756740187584979315992797562935644763221206155910710015396164514368692199924163182017784583484384270407581866327241203196811695218254296919233655533913214263556471628735996045635733774187347330557621593986415620468091130012837157613031725997850149469389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29204445941232622653933931144494672401743696978209330705765500493124104631910453925876780075528219422681118247831396073664334103877179611406485466845603336507634911498478269706301528713304552465400751853967086095486799317199731242216068357001733049197316719238382622579312750854370659565058759945074533058070059822257116565854545949944929523021376249159369788509399360128459718284335189818650307027123634862350649561863240762513108098341333294082102483053282630542309575643866429359144847827977564826706252405979637639430878481493565976195296274637591917912923882128989374129344483226047626137208780627439655481933673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23408070435934728573857028045557750581225933392727078459909937607524481544095468720635510550137412044700564108879907439787082081511228661665661474693970503244729915029618844796132454409765728693384247038583710416948950085550350619546734009899887828050977547545574491418362673400018769998010552659574803542222025106981724639897919072915405059627382074748749389321349869905281233404449018391316357062369948033021990399925121380131341735456204253837610429709571042000552095421623699414696499159791134645057146968525766870440581894287925381631163654319890254650588379922065589119157441759015097682746763290716201920713553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22989762021234901059451096483087156200699242418215230419715866879232756162630644848431141769158593943881774717108803061056543144486653289830332337832581341115201482968276527493956698037034445168893413142318030650132153915633475423948274502656566062905501043547769607273425780658450504577841623483356185917849498307304929281701773220725109637996246790044048642666237356801871357771379982744127365583884922822266960655818823305688934274562029158844427739647263642654183011210217397937540855453238942656468916530348673803089335443683497666451820503209677428816448392940201300610537660154031403637043884451843772083278989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26106088575515269642843972935846334110559022019260160563349367541098805722001030731660963042834563262911615438796029352108802025186633979425426342136599671282392639143615647037737511096104088721850538004363466147303263562434935698252524927048833407344150312495044349312286865674103690254580112948143191392343719759674881873298678060410630839311342827088360669613816585616565726254731731377772250954793660429352265661424820387676363041846401966078072052769939525194585499409294202321386319320666187661578869966570383965737615755192402259757598104351193881104300285950468841195562950036741431869997284928295396723924641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25742706817907874257347495663177214801699219057285080636655574083304461023309894999141729002236689750356774288441498174766447248021655976689679150447023399735407753492336641327026682668929435463423289272113681443250450626370438392832391501784233600253849488794242863487800682832578606337166781391471441188905537046419576270269944164682804714872525845857766016391969198183355264059360101772060597776117759038668865386938079893254524449772211738729942244842773632912133118822912766990174968123254494576904473928383074240202453370941992959901512308299280349945686964686090066815180287805071366057049153935023873516347607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24686033245427676492563981150766662172119094163787914967880200254824806315735795457850393487978986188951481311122323102534695431173523720087085129491610818218654245159967747841991673104733411369424835282190592297877090483910432339520516933661607387835051651005808887747776955070470085836545820415482109962394354037041947459413711546078248257295333922380144479026246871543828876243044344987818535033990446356601414412210302810588199124744097062566520123712781956793304338622947517795930993322058154920265728501490180913090215107402235369701094511304520346087505122928571817409564469598453833911094081410408956150257361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24174060392637176077187674886915014650302404845797393732054249499561291394275950161738624065809532677089047782389290030919537015216520427317589331777957375494947705177461772151525044401807813224787044852771566020847691228467777053821051591330515634461781061889331247221868027620359568697638697210118987737150931247457670403998785608347280072902225035423746395226519112801695507816557438674922617688260694892927148401257162365289914770519671076537319771167865823875274727271762915465706728111894783166309557594773815724602806521587397216074269274831602882283076078033267617828538159928438133006843414785888892247862151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21982362439323295458857148821405747518593008723491934925446157309517034869778418605585620788033037847530916812562818401670091634244548944599849564779645985094966916343459876486296163614510755309461204669239912562418284446031458492674547428585963645050845280596387305862795993250669265507934663692132583977006510942100603949059343065361885081829911179569429846177518246966758142173606004856383291330092343933650814544040755047168039145393917936488529750391190995460861874739267888556348376143044964095491430069575436685577069805621204812929471525144223826255367142186310308998163646806053027663849909986018091570923131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28180298062615336780635719869089600054371245241424566007320046303375596843123788272877021227120199179630198476017676658046633506325875199711580521414344451996126814033132771451837669373944125501590169056012198246783615812798661331752833728916014777241927832298064718933405225921531160337791320690809006307466468541664356287308342348726175265284778757716066362041922091896555744833244005107329720698369561711790340801051218059618291089360677683087570739942191880421383342111866422163260194842591479620397857402516231244570892809689073142236361628131596838866977960938491975322569014656705410020652135562314834652728167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25154935666661968949728631059288083215181706824942018797826949530886149703679895080545079249804413306316891446852180509600867591324956124090895017214609119540587673569017286717980029168198592178129851034669512326767628930466164841377301969110012885301502503379848841890807695899335317440259815237794760365691364312299546632324541099370163620927751264734368059739157787275851976359564771308820883845927779373880505873634683330478411085259386315437574134851693838382509363082374884068999323843263973491170482581773591935918709217012653525452468541582214315244028399636718846365518807839523175880740170485217663900753981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25597903289359928481856604006672477385753512348556076901879205343721706770965340888120718735053031692969483734329824139449389473417082748551740660765431137766202925054042303187450456664325929119708024283186761214878790296153371579659434148808330507300125673103771954511318932333364836426187516699949545086470168374269476601538817877200953464048613088262316808487785557993797477758198643970878190036451810978249882394393058406080223810302213850380767743409190320843046246004403085397576923312898657731125442664111646736748671389526743488582645965036095919713041087381800163094205745302017891204269356762813809799593833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25556637560904750630705399757844454550765053579860652442369229613406670252202174066754366346365429333322266449721605857970786819820236505938027954696281476509164220159797942833100689007072167304997639401733834366053544125400034690725288740617056781292955725005921048318918224808224225238854167600667450510624137777079411332625482540548554008978101958548994233842481776503835440631420986829993252425184504941301021705933786548743742502975031207331934726944313610690669452928349360808121089721045572886346993290854612122563889812341019170732051684849860404294694270634309293034272454916046257210283096256636550011803819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29143890382399511081692751793832742588853126921004409984247165326812771953629218130026212477642338238285794699833154783880293999789137275701543663914668732419824505019012670717693667184969240292093621613093978220453260819953890182188466025305355439307459945958233556447905236172464635420824871316760897250619873635632967969421416674238753965337400872926165296492471645515355478970352225518005112448311310698106200554378764740709604503382862595320868501906060531409680448282249107300551900876274323672842797775054299030286074934509520059570607484669815566755910426903061819503081921990835608767138356892118710277847423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24151281709204217064355068107012206127047211582716788733531754935546657485420663771509240418594131475311757392968834278633692676015442983653319099027650667291895168115586680596670090370635188583512777982421394318698349741255372206091639803883365849669046935842790717592409148805640363900812776290972262784060294702802669141216839512618168262912328002425464650632341405110745846297456059223339204558427353328754901473294853608115696561230254069419677012436572531993764513237102562146839848110142919006135945368481864812022176863383930322105507389322997525339645812177529748333563808653454531929226916974271129021200533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25243860643441396485908583986523576025921574105164363083256311275711704831938550820102085423405318656866660541247797129011254643900879189201823361469445833618633987468772296613429531978101810553045681527086155499335262319329797915857745062266611238918551047558892319738435539708380394722238573054785923927635531728800991858420784808538167718774679440974162690258430658887340497162365098671964104963518213768060489028877994594843184439212510619954456397013955774385314333928826178034441271389272135019913860401615165340121522154127247070058463955249601247767899665513295848106660379246333076034222667342597726608558123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24937951905354043355451356115098991168499668050715169488703543735407236296175876165710905906645426957237030222138191408837411720895687887440829143959745459256609769047103844823789115006965988787410718101769768667877391360921626156839662667803539105626836590300242836467931908399810562647058507260029908053533446527125964543879347296485132274378684305496229379339973064097512329488056397697913016905213335203656942632936787125415704886402919412811706507055629302272602432392898461680086650645028932150963518297913595771214547405608434584189633505198716261290274661885436047140256437810213427230936688477763115381544997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295798617542510825264831950418231052932579639064881470984493123027323380770194451780732655986534834462682583298750626166959362914188814124354343099921888583559882676485131811731797535303834949003114206263528803989298529587404929107506438015097383227615838541131191916243877152830521076554610542389372683488961858573274081084245155481499436366904913731845597009027262711216746471968083192894858662304467085282368712818689500947627093846241130695973141922128402998935786937814156226551834251554566204460584191458020704647858304901787165456597555982066869466082988101435686099572740097841641017276005370720961652732089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20698628709557823550274382811426487519807722583310342983924607690719894238173643182442548730587619760448345631339144857573183333331843377975814611045854246132106627911312345695267114708647557752251652362246404490361502937838635122532088217389996708615778432349767623939117806775555578990792915499901556627078201968225885177449284942708418631999681419329766977517987307317999882202786423953882904427654516527876184764056211361631650790610209666566555669807988548981535914307780799959495822426496119084625899397969835870121707516158782758039792976944771498721177778553868843833167890407435102928120670388607630050087051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27726373794824272107503756665496159837303794213274064412488870174872397108473425111810225949529013651079371705347151423950594959061128345552666431339992811478608369335852167785458392935644821432983334740334544856666649612318356428042882554679173767914855376450802261784191598564096980250446166838148595759208404762089117194167253651097486111964464093703727885451019038327926258675536767643988283268010293620547051191299897355254737008113892591468852950622501999757342471526776744507481653235210400735346389772043657132574660160619327327122087024778256768312014353956285161702883298698544059971845770449099948526260457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27888534125488577052697568906342343938467342444297457316068107736369789747841353246004049633960658736270745220875806360146604502961547895744714032283651835995840536618157366930117230449123657534498502535837925217452713431598629674112419137460048363944257898161431586093542027136664777809808641674210241960826064880656868129968918650543521896050082261439581094986819822772916863825887273811932425181220793139651605777408778712917971300451486070348083096337632576954231766587503915282727127509051311919711941339487892940287115634630429977263325797320859469416308199325697776851013757764441189302460491497740044046277789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24779898652938840665943177779510248643192298934413044152385416984362367538722408297772794514033004924241755454285005546139440767436720970248481473826059047151349126280715188910337087068546679080108400682407526864504279291590113144021640446170591355233666248191923388414307896465656756919329838385206460016990625345084941327548902252102310998052647667220478663386368294627249767932347660423417130412534720443957005237288928886423663067826013158878957104509862548206217348859702643684007231448228478618255343207356872203125220924459643276075683778399797947845462057159710388148916532761368489005723768766725694818910787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31554092625854495322804519223462712517969333423538063853688547882849062745068185095003001460162568483014057274219623893936934381731675452322954366584889706083434777944952593719584434289760510076409748122892806897955202813204725267868023801640817022928967800557280469006470869256610018490550145924434770235422287997538790402412512419936922250282983017024952275606910841153189377459945910441680806630926428805366594572931420757484519859636291459265623213966217845073557814001585113170729040630880086064495924508131043796209564340964507309602787927622805099082742938626339132214866775287877820475110112793855300283954429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29922225819679860994628759754380414960353307420817803992196216508244466498503946230802850574759685318416605545304281506598496052173744425792617034476944613154999176253798861593465013925471211574266163563104015108504512561101529384565017052283613894267401159326516759426731953808132377745680222530772962749443495722164409587635471178714138212159191587978593386347305885580993762255056988594796964621386256481600882213258322288843603666871780477162736772250351416417909991814394759501858834261121141366584585382804437159187654489614736562863499352919063228102906659062212343581192814036102324098751487808633713715454153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23995422279183018226404592170116514596793427073974708658167287837636818414223810809230051978532494458573580265800166552990322248399271000410683624216743604814451902497379900638786773569302350609170153087678186035780286218293869568909394911589418979992628552161369189805241044726859915050625965886268852425215651176532206937956699199290722348493682768266344576034376123077178678078647048913248615026669270720021693372490612536999985652990842470507715408744475831861639931696595115361414249006757955460442295600556526513895819292293801049791197578348025262804811406312159537014284547399164481054666305565500809369283623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23076317428267181165306803263837458423271691549917311855383729547888594914153249332661235586258712868902364565563261084434237847721640321098231188386707021130363651524459530538274304157179301256150627358234477553150981953488223937452970273408421762556332971349081670723216594244869009714994407053789525420242750407018205569339829143797546262901065949759690688769910783189277734068729356345513693127370549318335704164221765897936396911195024294004560808639085063128999819887366195332603037695074386237398193598933107779471807358596629167238953279561825712269281789432273420021152412229324717768408125400212590649518461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23580306677248205691140862537797465634219121979486699083174455274094181135977313556750772613606657818109268495168563605626247364796768271611943431305411792163315103446818499931055793309940849220445735049489422740188253190858100460731425160531977994899712151468008660438220417587963743179207505243470230756748821840665312735517831946050004472078418209815523087716812479041213205020355012470564601529124259511663405685051157196930940774578962391299296749298293971184456531438538885216034776345736446421635292824583741305054817069300462154061490319140843454479197606165992312803918108120849273638647328625275709775533813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24069502791034388871260549443432668668657783033177350229802210307359220037094570029633736854528998266445236536637541780457371259088232899453201981034125054638675524143291135443828729787500698893947455876584746409844088147543425136815929155581302707862878658253179162815541919128680779870019711128476554753458942462355781411298669110334951634898182999883279046346733614117393898424648019137274297753825428537639948637912203226167183107138045977179584620493836635432467270072041425586182352056980726037500188623614735986843239158051138603282583603143267898061836853476782092001811703824817159084906482996729843429369637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26591071268407893099942132820145121536458669047685538524242203929847301692753725826948792034907377690122198997887438804105684328539944187350195684442957196613483418866484662554762021903793594341120199970006638505751649334435309317338209405107498775747399049738986891538915904268508235523487510674125204630319906123700491654399070187536876795413269138681391568174238063272774298234081914004502200298324953725582470186758682951641485899723702895969016013323440851168181023089059463101004406762060546752946301422551077480706527223002824825704235715435457574890613177681687040310612251616410063944583110114445899960822911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25676458594228042153260223246514221068477605765023064709358362365150900286020304711723017937125961150129517029480496982670066116563031209481664344333725674911395921986897736059454199243438022228144987340463846381532152050214363913670262724422293940398473519251206265895995749911502015058884436139304401518737440082051639582850359887805212964292160476952925898121695279333801841578859001897049855340326467231382694723483730408589396576178125837208533860368081040461164516822709320895689809629715576562187158885802410657297581581250278512226786426505832296676182056610332586734058112128337427679076831638735417937160431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21352110735807805498600986669487437482035756186415493122284993293933091692653432006776714541010365524320467663444905286070858697615803791717465438198020816253610485660003215121930323647635781111387874051834482449751139079599810259502554520030304506243723846544802412494765428452333215479231497054724400011240603980562213975686593723914745437200617713498206691593475311080958587407145613534372273838953801729624141784679948175312669995022001408070417218401890143195353789845588345865481021488868107893141406634150486223379425766112511182688581852168735513756841133411989117167297855834169935916264439832812331959893777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27203049132233251600237129446182188751793371040869830734280265623972162808961221791392831679491077818738767649460474445690297067702257198026830441032690908971046897129083759564215975712184064220184108827308896218006956360406245128153882836452121590317680981553460639444817334863134237583874297793306023151152138790639414699270327292311433438969561489595114485448182719610529788913473312875588132729023293304863638252541575724342304856082008572394586595702586619893101590915944884082348838460176791432280436692279406059691531483939179677385257804726267083421039181781690951263540434410019588313489407607445308326530231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26096104644691678370102215789228773941320133591406331639721988596789927762672203967506899958081777570746271042151045694453335669406341910283819504413970516738509937631639044294911757783445297174574013112600744594823637010400614277495102023597227263951213962273664588767413992952983593797811965029848046233347695435451949289218253982262812833942353986497952152753352552853693086599676765275154072808525446246659671190569933522659969179394370811946179486692641772631490709569369001580482008810762891616957259412200557565078671276307856992587257709613080220752421386985215353579489103090451284111648537664393224729333767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24645675666404525695669424305074250043598864566516999809634771147046221071084031050848520346285042930251986891004774306349227190719976393829857484478314113868840685844448279927951684885928912288983746025103966284945619542506908931223042225955312494207934097436732476216519516090137007168409536838478516973844655321932207215211262006483821470450973277403963335067851022475497251184724863619917432973436712264584492311260607939101770945984083408082751997246040785194799149215027563396904811013679003220570324287649228511880558004493236067030661203033787382713013225736481368296473625585411740100955016579257001091745877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27447547730933090009372621893261205446219866605151817647743578902614854554010755871653575832342584650441786626756269065269656842543313928389754563303409129066832235520023671202533625839276091173172002451244424407749384707594333864596003406490812099851466169335819922172010654550534906539769463748669599891308985328734445947585105228241548165568883872679515433354209523279296762403626613315502766252493535040708338532449952601636518108641870768204036785671767815696245733781186609796612529668779796084819076311331502372621764980842823089773874626939866677237587022180790735486765377815609241699324363282712333434986419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27306212391534247662820029821462473826379448896421919349407430679508971260059937341885463274723065335402092209163699902015719238388968249447522742820650193090505009689379221169963082646243693263176259101730996734467439737348568735379325292150409044036441768662881696872337893984596779762563598411918168002259238890664993649746650833214556417479833230169550196744863052550308076231352020242900688572094347294999644984468375705126197104269550049678746303014899755920407750058777083025472706651930401052484589019463645741695143980605856461926148862237747732786918264037790300193514824142418191930346375578508037609522901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27262773292649539781002700363176077587309055943161664427480976820744721041682745826826387913371335489442504966290125895580846148673298186172877577185877522784789895380906814176511271509950906264437561950982121377272258030081544079721583712592893422164144933157803927471651334927524806088071427029701422726447318478521589115465016540572705197827977227666529426242727484235788332053333679631988929741403397821972431219152939476176151626408939294136457127632817892444132793213977995235373873000422998645056718654370112616732669403602293682000752129781794228616435066813071826452512566242371251167905662483532787834045343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22226672403322799704790535389723263207801982344171117949501500940551248376812115799521100125046005227129293559046557221267449191217705816675570262064181444332875183170275854388308165414582432065789451073803484595893522150918599809426246473787295149528847255885620969293300402576284335138105310830054690328803934589754601823872061158586045737685662170205297933459184187053597581165342202271184050764703229188010771923535283128913069189023359016739486259158595480672218655995477943177771255281275695563058680436631482053762675482728052687172283253989452176129117369519323616115458141238917557825711112846830903785604649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22605032997518217557209424514147158250899648581999219900273553882939816694217074549835907737031693708805265315428577135227067070175726679428060509491288765097353187937352715154557690601920074185692783250849297029702129066744564065792946224382800158547061742462981606475626763719667822436885192868677152375537193922275145764489176030296061167109917751692551122232283434355052994989762099495087813776376310455851441028946107754588020626499076573734066749147179430085610970985953202935145584629234677768588116353104267823237342648486014056865391515602628313343160111655541540042315289471288332572611117095317783339676461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24315379242384147558064926358713543565848309261228395967665901732905294413497231876967670508531463222298422398064217629313798130341297332085472164307193480058908693640704278371841240148336606383125087073201637387411855792714901312583012636807596260606321725723311312792054279082521135162548919065742972386974524538707939231058103004324478701245593620614253630902014884267306437777285318873957875726805283031030589874661321409172861768733451132560319433620304618602009028845785809584931126749468116597113844092889286061558690218279891042305825177391054814736774151875308270752850757930071351737925996235989408712961531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21247554125846755274098808371074547573942556594991266184517156001223430747835596626454234448899263094712241519598401025773388530512169732094773458334895819204423983046150747942653084828807272899399840109444597596964252657277895596010814330534951644222813448371317828370252174042312679981436225910363074660478211590540041076271111042035578454256005410960219073915323271861244561456771958179194795496766425641432402146647692721818073425009195140654811547898912960324743908756978408987920140932613844109824103860694129625832834240892438789597746019000553423462790975003388090690858851263528358806639831516300796127483607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23943762537805815520895009138423686683873834568614825314433509629207473591441979191942089589158852791536692908476814366156626077530259525065562476373541269090229105750696546065879746023343138688958853920563476498155056511626015427115905717584036934472493626283230761941686336961201357172380734115306912371372097612669108941047947566087168188254952817219060887196537071862571062624044906046592580412709649110400066854828776495524715833869833052923655793755995495468031755647687593717964259256058994523555119832214098186799242224526169375358465832756122214070235971078687259987391169365401062657763367421250051385469767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23730955824871048744344158636099075460560273835601350210026574581277477684819715930247086566200956589302417043895982866339360809728710617944711330328367023681225607955443969997514715961614902158052046541295091116431732950018510908006125504617086926198242833805086058853331962645761880636929375549870545569274100082466263575373391218040274107959606243482293377690288381673570839886281698524126616067553875479607110431977210487839790294606286885348405924982046353631459088442238678045686194015544956721934344147258432231405405408945421420127076612950426841594541168229279389712549054379355652203807526723575253291711113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23480409424549492150956193294521822222538154689382477056866618315402698737300102139212197606560879853375829195692866934558983100478088396034722482204277275838005926310648899099727382036161752100538052612833091184528768833044667774715820876779612808431851487072717946317517541584634291362516595057238438927789890746235468391022505684166850399073775300072011420166392259962411258189040542656991959353477618227429082653504520579774468988683554790434675211288296443796273046082779879122772693949742657257507784754179255332709647407330842867448974848989432849525953915819890267054508920199444889764383194385880080257858019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23276808638934823954613803225889426961704212896838718570269551644819418426990365301468439422032420394481086672408114710372629046801178495259193542228039649318922651054283801460657126373489243724360492289656687813718577402191478033655280133944571059123273575587185667268352863343962172820126017370715195741744114338009288261016196470834827664838917227379236342861317301304186512720136175408443561075378376483218686436636047443501276746819787236244891635539595088467008926748337840957782845373430708975981414908018179416953576657361146771015940399762398641983131202851449098604227689926813702083963983021874289949973777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20794047505467741006949269742195337336440842057673548760354819516840719129114740438006660821859199122949372210599739398526951436904559967394395249122640414295934193267817318430990476864413574987681974900304416096149594213988330106397720197555840475510251117014742769284482645676582524378448625740717629600945660745906538493473696266209769564022928591050753601067543542822820525839112526895873863679787765874218458238061982511353540731097142305174736268801357192863971200814791549611198413548140846505069824043829458016157938973965562472903492875339330343849855088508428307397877606940456592107474490510799957867033853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30363440376436499088621581205552681180177175657797406395038610238310684066081809043577002819882565661424280571557362999787070286499386652420497779878979086522319963755689862367159064142485753630651236894324058244931825475442935206001422426750102175551226315796712309194876738231985140564336211565973440237764560493386710901515595547039058746932469151400075425444351042003625044311340708292047644469768089747368928723631664040045219086781445018659295743654078521203086835553732955868090350665558300761562053471413671713065226327466944609987764392232122688688311019876111951907555109312867864132566386835081759013036969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27407234995594616714566260872710116877266371656249790799388986360760474315555918699023171260032966431201868154686456267171514292094389211785900327463947002313982239451102420679880237028296685621600522981126359208035619322687542879365099778961118166915113626297232694337933281400204416254739569364015770780468239567583374678299119187413703480411455984369344055682820453381054259139077739626085050771006738138970725595301941186005491619496731934820730194572594105084666845480612349452037574191958929110239461809319559234766698476354629963061592521163406663677104280148289725917630777908913324359219841652285595839348901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22591659261694128747132164338518010608577543016384938934026856512413146877884304296467911366173678213944400729101078781419367816738551896982643414496455844523095776691089080077230854229072455758481619458127273720238035696263639910325838044003316648076937962879258009248794184165652631781360442748526679382464720503876361588695899548570379892616233116590310887958842589024659589842444168509396149419346131221925497767582178652921116181363902683874426101263519920325231006321988096861421192690340818253366790177621576923664812832673930624508551245037765953197958673957800821255283275669275152679946194136712930528523913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26709025825445637781050743069899057171789807688025904251101651644955033145637578046905815423555980262236820161148247028513802976134603266690392541065175612042475605796975297447360349789914524743861710384998697397372662042896828352147210569980690871132900378580967609901554589163314794390888874456070068498742084004627662033256964696800652493654136253822151904172230805968957807027112928154231165584575979873448823864950059527158836498895910150362107507739598262920887583013866886319337579226281156326089092168015386953283995766633429639840912803030206657496543393975030319323233523585653775904488985907787197016954573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24060247064074944545857656703734126190895748406661578053143259803204913356300881432809482740657476143962316035450004669589138005540736208898670846371423214556523027673288532162834936905039520217721394356280024002457384644049185499821372887521680855301249255547716038227348007492407063853591056199518116259406510660185881716970030714698950272122536145072146219820507477899460552514401697348746168053908446750926894263217078545816197611189607093400887759536073454096278638151962722225401821352003414336782191361074524455893637357544509274092130732325037974800636303186941525656532636260303573722922905965467581431419409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21877754446675800974004165297384616426496032556754770472657722671695196330329692919802516111668646144985419037345300003700873167278258696009760945345586436650813553770149521215190828406120269773621015472601550626866278734542891965614884218090539133508897453207518365052968428566818572706231215008154840666559357541724087542537129732565961221850703395229568017536243940590739566647956687157649259947232555876805165609480771618066496195840958962975663344505372786942687418706375376211083434778038483472033043362730538802069661384113580032206181744432633135178845911760478151325120993372732679385335056260960790719764539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28867300716604192629835602405491337031612148744664576885059617388603107920897100902476859945932747579450869429542519149881722305079923049218576562078481484987259200459299000017248146704602863243256761467354772950687455195015581752811113416708037920904200251668744187167029016629404592608157508021502813780039018626699441636490680535910660446861637381051376348810504022741033356711016854102849944563320687678597122461157505634795014875212896404683416128349445146882724151025886606285562896666706273968919813554265210126523593318870959574249782875649668656173137364103265201694663200782401200591163967815582987358728081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21531596366382360721537377434850315425595556368577501633750727489105761701793750697883071084721735747501366194780318455895567200925020689942388637639237688739869082346546087972013719707594737571143392543945362659079627525354965703634126116092588464472148713860639632617510106329103928994170908501960947779872202096050863896888125796923347921685081575283504701406255540314481059689114713780240883042082507110301184813581828875986369345580526395203140091542665079923654712788802921181730518482574029674217047652914125263657444363620065625719364057216685899037535364985560292346559609795237240681462591667892374678396959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27788896243903039891946175672483719235203918265449428693350423411119812370276212559584916057264158147068592645494231079687512568542057535371892264983038994973756600951004629753399223862286359185717421703317013078159686142798488676161396310699922535610852170220254042325100343239866362993542257776746598370131350274389414878402805712961431457095374835324674045064941807094495959580781594722354964158212154863694685095367597624798996714345767103525679537726809570423537407571370206096269823922705577676331837136549102337934339946796359850406547084630155174355612554584564884493036666763960342276564045798941939839873071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20267374062740374067986035019027673385022586182602815846555976100878423203907197117581185284661804240222469185265000254683626661419619854419439230448571178443595810542584997320565737291796594930245731043610220629560235979544521133735174425244209155625746946587977429778348998045475121922708429439835956983964257137093913841153411690209592388883895691967980689797015982763466137718375491130344002310001454790542483387372469523068553795017799693163017932780842368233057560640252252759594480324458153093430262185090885156472512502322300790328889553950016545241301345137156946105802282902366198823562208729082633011463917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28616309507818399440021626485007799623709485728323808494758203331446107587249819937973636245918663823250390667991760200387088623025190650387490328934537384085836430060410452285535127057015778193675790420659235337603892169686473554188811711538956828734896239771209401188153395318934116149696720854677488533931550140084178298528677018728092355430050173496664004166117366193927091723559502031807949549203009732971033133340082290085566381066856241619754451786875779818463454705080814070583219633887953936199959414323955904835871375025019940852479065243036846506552286428173626571842242549389174480357827279710526630178807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29338973410879624795217517847969049947334604871906819729388986271665789854691048398647939655922796173864932739527311289207153876472306698604005970842198657915007229238839585945638751628727569594233875552865587333972529087058731707172774068007985693732439465839961975152238406351511999850820204579405631797587738137907120099815868544533312761132218060883103190375465177652406030370802631558155481849258695781739816421776990447564507281458395771369589929994214951134028874809866185215533778666453890947493631451841986706823620628946436419833303725483974649001892338190399863528425290469867994480602312801247474898662249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19788222148560884102425347888396508160351882679614864617097666939782074969577419947794982003662877290695240597046288233693087788350072128513258658946217638402773813161990020907013741020370995129291659685444172076085290797392194922568629919155881573919203415367584160098731478391276718161582239517310775656861870110303147924051738169474434146806945244260145694643923801380784189562238682489882118787526068582977495213321927247581527746048844795065034962015749965570552668469097419213375225297879048514878439197123110111120365571674926865210173409724097622669654628063901429102624258225768556910570800597941208123809091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21829227986273645789564623443974276469097605063770195425150667057236656245937357660625610550743587377363423585051826465777913267352913885223969184091502433354783732832142754311276223035002101124559656915468258607162069876865922805308051095011270565784151112729083456364160980859138457377873080445611169227618332109024231523259744535193893210894905095554495381997852727049467252149677188092245447106254098065487288051430829079760296322063383710223430143393760660346728095317781002834406824732955852633176262081626509947626398784558983522958572304493532322880296930002088751168457593121519178902405862377189558368876383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23237268578290699187277749761955347643504849414394018442712891429477399277407192388924319564061986168413079791667691328412157236516879386837023317406960987630879822181182439992413572334892248806399781141731288754477949441573913832895568888102718414881906001968393565168574096197708400922219867595038553341281616429573349106733556618869599810769857622065949268996191692848474967818450686949291854139402352121710029043323543942594602666704055459112522010911295142244154802505450772854836706598874542095442809093622305322025564724533422046869190248951216924872181262904643981077439075851208457610266131845001006109873193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28408492163630729618073235908212154368667726864268895193497245185155192160786615121273124374768063995865377733379333342031401797271837173416042761089855371015522040937488403839067111159186948165177687363162862374800119047771474364795129832417086402330036410483697436080510128899441218139453327436142027217174557393591190999645962627057380006567822087874648506015924941353875398629298281371740456243757319512160262781466553736004290402750977046243229122007181115692188299639666832705800752142304152428486423189219249305139178571707166074977842068339925185841490970879577722633772361844098912499683634212369139896773137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22627341890998318229628916173964560882028099618746163471514995104472018156647517051110748050949809760863708575637626537715395144557602828707540881303809813554714791100955438932204922808756634021303436903667293123469688527868697883437496371883991444346874194170827698828493725573845009129553046862808352244459159265426663405226274807192396211833743283662015862717160460422952169543813911164926072572966089510291427970702191567828194442294071285818174927298813224470375355783229948755189436386438286662646942527393727285911040775613651168995188367749861699066303813125555268269629149543496244504562418510083920013343697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28982404973728943386876714573195934565108496951018111435309319581841582267630629840421670509000278465236165398248026011384007964306452481782466793010869706826564670667149349650682849585381843733371970909721890480455354939717598548737646310923054751400992779372243882486989481819935417748941598322906283020116633765491882443471307917375255723069630044476102397139463631586218222794296584456443202036568270221830154687688278959154297202477983852829644908613740954646243757850011199318222686679474495811672345161695019796885496433137910942770774709548685912084352665209524420574042272568413466677495555017791608383667841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22258451937905832240002951624715282314454847596787956203974138523698131134375201543411175219063213601103005538033873554243667014219904259796957920288361764544439849123632490778716837087785789326502119840411772235987712427605793482942393219283090814243647281238274208247463647153422858817945106679896303750361658567039932725473884088881654902297629458048994399777984326117824342486890968315599104686663058818223167987050467937926577694974969006276541231326341627247319549887573597434780911245268827339641578835546814475670965726751251302020561527882644339332329556954521735052916280580286222960896746003755059235854937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28810071981589410029416228543020290152496501017978531771545598776640139290454202915963614287804606140586575873295803991874741014401229269661066677129442416345565820389778322888822864458524683769190013525092365222078318331761830445698996470740342240935255903681493378258423801228419854354766027292870709575346788482256810757001174375722095424303000551390242277510652923577839835826601309219590315875176627672134450142309729237883615679446755056329740596518466398063255245869699266224214294860571931800526696804418039064895359091153274382708190219327417421282664614707090397752542787574241675447453789167829183630798989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28868514331567755019674864574106111496658088021041322899254926549328803461682427179695142735723832050299106698070821110344082261614956809986273417003434497445966271504191122296089282485489114353457693746756299631365634217575810755975093380221033847773016895905252302788122386288501490881103675159461773676331808664650478130035433969403191643769158947912449609400335107686265095356747472731812506239119699174965154025817120377159431264938006903047964426020327399563591437346877106009564874769981576324124949620359976078258961949073602167742667316313294422963038591438846698001094384896255016814147778446660824024717579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29680518377907699802786523511823460667594774875401821896563448877669861301938422295575012127925102373710240481298625316184640569903170058928144684814934879103444302466755322867177962406962425291969805012877925117106395217599480812763712471181595803782601593979279412622840571728757802679200866457937839986478515462074560069302844240383089638083841273244559419341064949828739216237669233868910014438010803258293920550113888586885306728037789254139806101225963899425756927499824754940871504452532334152517903137914901654589988350681258423187039315260171136883316359890129340115481523419226975168147685675067408632903051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25033762958484751856728832585358340222718510722143864281977927199490346529396213688922160643220198893292984363270778829436246096916321770990670680220732639068737414981573705414666407157307092836265976250756505555674536715595288869996015996451674696322732708623287479512539685743320627683974933918809700162297091234779125292533876339795886730188759271233230930944157079988581743002176612685476619421088930157687650004579155717912767607001238987062421732668874085500589286786259577369317016444323623436631799266645372710247578645897831214314403346771565853213028934882401612162239025723052010476153957220808387450764871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27856221332789678900694356690154540352467726743970319362223075334793870223656983631289588647766098116460078571573143618539270826174650271020131144369941063147888729253154057013987127546551540737337545869215691885496339217982849207238573394371962686232219368667493310852377065409099912685721047558011846976559938127781579949484291575924192063703757780420250298079370485039682458815432033063121257292063795329582372583264187810323949445318149914889001918104022537947339521284145955331126981659348759094146937457861334534200679894336375464724764019983081690010593406452868272368889432559784023647224095400614615356081693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23056435529632840645686688443006964088291261454176999188898673209241166690245750245603414275859917226796098014101157451935742234744684448018113890888850529552389825644255858728869338016615232050371660955111368912604976261846551247374642067574832139602096903371515586024920363260981674566453614516639629700479315638852224977462756737647436730284919119778398918976470435678091441352114514623726909674185543444027857518473151898192449334013311406663521853161509763268268792609944140312689334512465514591025299446599115469707623092694293600308086460589296604198572337893505027392780553971670594463193104973981199784821303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27656238232274890590134404079068049993616575034038030976072919798492561719105887214513187250569288405091668996837291304125218330891031353880284940298970698729955374977901913872375541642146306593665247338709594485944449144894677289953986600416410747071295841365457466384977055245400013818300166831639384976395812399606663013816233675243374791574416569523696592216194271317577749001956287929068847512179987859904551659046399353258017412249367266189492153615621335728366916135578447091650846631235743760998951707645293120751102511859977675531542116237849685047539814973829514668499651232826400590523578413950023298738029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28868514331567755019674864574106111496658088021041322899254926549328803461682427179695142735723832050299106698070821110344082261614956809986273417003434497445966271504191122296089282485489114353457693746756299631365634217575810755975093380221033847773016895905252302788122386288501490881103675159461773676331808664650478130035433969403191643769158947912449609400335107686265095356747472731812506239119699174965154025817120377159431264938006903047964426020327399563591437346877106009564874769981576324124949620359976078258961949073602167742667316313294422963038591438846698001094384896255016814147778446660824024717579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19789185503312524149551506000101780153253156933066033363106493899629725869536066353883892535002219222245094620152131633938386139009108574036225334562417013034098652673865947157104938817541035818160304720853445313436488056924921101354848968211823580651325673184119682440346116251579207910049375092466879269657637141655731257181435865443570997979605220700951294223207148987947785542363321038159532396581422176232204509919988747374436914842511948155722056786834757137561942237966375990832156821810193705171955330800086841775381754430797942328912621721681555244676952467402349373121415808301023884692854154613414291003701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28410688440352835180380826937701145944216906945192641558373226104119965788022824657123893958905081848763552100545418313303884102950120420844075260402346133919293450110416971238247049562241335068943432395141232196552407669214356044558127844994955001699683210029382943254583899319457600479791555794174541790017825976397451239385592269293745343865702276952880110666950805291631030484167867759424050734842389827305058939144091538591977080036490785099501264862491840354085803732162345960815031268330863558722408257580633471885901838496500824095361140294834100599899174150518256507518240381742519699111951702082837234735929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23524463053931356144419751694138623484076016450476969267185690270116598556557903828026803419435349925401656522136841439213978760142440364278806205508255984611947698012965234376920478038217022680141388108030584117056973287305751877155525754788748663935496715888564154725069375399111770287105051635596598843834524697694540755278846032751078236438603407550168337656719645377666698360639002705901586653670323701752727545606659855053774549962811030044379881580816511562165787503257184467510329472196902696322514194782355070748559230216605314320739443638862782133673728976394658874420728705468012434962685698086720314526607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25588108012674410183754234786524755024533868989709330956679513871124749385839137798889752269786573435939991147688605407258207921980926051340909844692641962177670022014476912180302049239192241961351377083944504218071485975097076902316181904655638895464960664488834695944773382135543369540436289440577898154092053260448499758321896192171543970220421174166988026524915948745817212798182784516280735643534453612739424594067094781760702137526974733519935587973050785992509684162140057318635849634992809260745394160627365613595613120210537421713681001018456088870656342616883470623071432054998428245874527155615005080028813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20543502195195893467998821297220178643025743442522067450705454360396501186732609048981264634566845084310035843592494564603036243509454540578419394082199884974509424178661277814790864397127243711600475657189576652822848299253798298861908412470784741923113695910552862922990330426115293409213285800139405310647538463151354492800277939191097693988414356080693498215672719107461632458552264851037456405320502771840594527380407979251597281797728789325363373664297173190297180182354071210913006479243733958171222317655877618571499378810696761366565035715075473819590034083592040491498843165044999017284988063327594707850431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27843143719522173179518187761077562942630958354972795511314120867665703631815257838145194196161125351773051344255371174509660731017395235122691481611972570859592717609224812322024120417188211179108543136595264666971942152042853219058100274915653817321139653900638258555350138746286040433095522346204194690939720191029301188403923513394582707756395099938434222869180040959929645549389118319218304405445698813217730598424632733379818567193586970467401822337402317970646354951054073500460993755508401140887777261239373209124284822082030610664401694629266696368915855073703252312149086485285933600043951279339781721458317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22042792505553069876197212704544787260503943910141980934059195115303976734699539261422915531712650397738494127893197681977568055775894310580447396151337581463242295086603168800324953801162789846327065114359539476823956384467669495611673770071980771526197674866994654536622813652283950533415300137509842466035490288016642946830267033629942025035190055040907975745890326719100031002826552561728777087067458747381988219004853208786945996020656871088694105625957903739200800394548943340685516437433154173320931652808396132384100153708642571617417108833733911469996608313761226630540628928724541845451275121126767202152719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24150464836249329756844044360799257218346954239889273508498414849841670401153851540156584294173149016547061081359773464254894545583301436702662927621549528063723672836617703852127402616077942761253584409878126076807507632111551217190325397192734772244707605290824820030370622605529337415275658842762544048465854177686257642905979039902074303266376813161769458529245039355271893109820799084516537141763669922424977959328673532459697786584763591863698312830121066561281543437237411356561849004012827086969995683100400845185777929294089723155075360329512169939014796235831501287213267415860394624112610380825063854171463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28530764664890679461974309241853934512501422691165457839657829751521663265002898081077388860813792717883594089529469314788106004963745569336056459895467431751736468199557487267339534312666519201752433655528367436881572575626220935293730017264479770152200539705325896162342191677065553174805503287376814454359063861968229796774551221167862982043781859114257109010268186000574610331333208811931895809018285794336136741428929673113355139088664614101941158559372170414295969122653718214269899959649166120315784397648155876695413014632016156228777851539348790224645278631559181746931844928903850215825982590424857065801949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24479087950864503403594691818641586055008077083000810917473712047280005376030034598788776118513415168332529322318196353152984544910623456354604939060217601483179855470033181058021717008291801234022147351989504935670780282669058417139790512695382956382726423814985033589853808006698842016866056577848258439173899769176991317335101161156876781428836794561677236496179125312337619336404308469259879366924015981067975536026831094137177438069910817935139046550084359850953398310558704803961470720428585576229808512743986012624847282645050376622082048771308778613014061665006464313979430514513395032838186530720786913990271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23550329348179994026857430425917813439907570417812475515705651457319312030486000718347402595660736814402465745024944328937271697366608426091201831889552210593699680203605060026433663078366302770850176599073784063794125866751380058376612293719716200041124986062337864264520881393609195051027803037563692211966880797836364250040999958828122108817485769488247237145012069347730180865716587203355345965348042556571879018790654830743585827964486221212481497582242910170149325431474741286192487718195480618248044769955943971655010158503838637804945994484591306314508790158444864713202538376258584209715293232888332329744217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24439826970640156203191459413221475988781057133795655498042794272737771316379459553478877634566228405893344651961609267443489065399007391904396386308341742389723558913698927097301861294575330724720337369138542169735407029652716240907635158312036015426560132294498488943390499746091077626300556899897589105358874984573880485422891143720974643831295443697717737725996981585666683464354196423847169738829680444217395923608176817457582970533918254746716027820020074374278118089108236336487219366010446893403720406181396716278350156585792377576352490535045952771539735682724432284160176996816002617044944028331528873093179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30822394099099336405842130299037817408314122107128645830595476825277292879285132402842588555297888004362058841612107865918372639569703686797640297573071196753868425923280313726714883221080739407951186434400667934949397842158951049858028179605236532819122318861173997639680189003816426194699395558560947601502269742111137628125340052055955904356477869820243003011668726814526650536113887207847872944956320928818066254375812023745386689538926048797765414127737350664995575432875277654122993842765330412349736849951225043777898660272196206084478715241151022521843616599416219863984064287581508363322496490438920851645203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21478247417107722169076861620847607758037094525634630942550767000779334011695399784963597852872510583216006060608137049672755998133785207213994571425131836108666779154667673406084000282932357062073940729606290046645495554963756346276782799322888456154159807628638269055834236881521211583009757189382621627702920671992076128237646780641687125997511829689966543637481332371296954158731784396410293315675756914268337304071076796467019205020852840859340501733916356526793035765472091812453315177662655073784781190744723628103169140845992786670427006127410087604602251848155424258650563866885748314131632859395894660192699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27181350754485122577843033815745212863165495637884227328636097647585706587170265122634912330345768611762143575848032747739626851976640877186899970978975722698847010951013888672358921691394492980752416632478709172922175605928846128593046899333442625751487461721485914632814489644810019958017547218063458536560295231836914345093082028551153038675480560354623031675221499411254863110209723740991377528740705266378715071384746027936216565876874748697145447468309945495228855383196916802166243117519998823239900901961732140657052045814668648887687588649602108208548967309519373577731376517122724271111792661297261274776543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22661214919712134496771012280568875983222305293691871188088447413414245707164334416121459815822386892548922537159143444156251075138861595320894032452080434623694908044398960640302218867978419865487197844337118216763828496672819919817866863870027542205840572195960600228021644227005359310447793021971869931427511395758041763486820862769911564069888035801878812717459240953923946336158756625316758186983609137136413805726533176658376093178302358685186630411576261996072264230563915749330506904263997416380143778519132113398468804206927487874414544366084493989764700409283909684815424411065607823786769155709357769561811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "22793578914096496531533171117512529109689942814241499737101180831609899386358685593408685545989954727377006835146855868562870094935488265152396169241963759003470702134606176117244191173571314165734585895103496246687593482796995037304220975299963119658037533921123302779810832305372309000507345978564392734820075965059842059778377848801806645288595086102511978273787796546679441763121338297134827605221073266347911305027471112020361098528051211627080920546927067389977567954439868989287625107438118955069491135043963915147783121568388392939258559725452803970251491314684677081416415626353024723862230590699349827767109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "19985822922091745291717746464313872442972845403031688225627232916076722881228380667987863916391413972858757531375388366853193312259889293481400579299415494023096181668712581082162561954328718242904754120094899132797240946862914798185535193233495259134227974898820156871778495413198037615333227460489811091263895755187747939366820592399230479231191481282506495033770398127033340687730943460668219231335522939609030243603374995192204695198540343210276527932533172289142299290014366096667528231674901481947531470536354119834518859624311446955315456070932391054984089311625860269172040287298285625184526743845259708914249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23525251005692988425474986518092212239862762883891301008250797564114279508775443256780648044638907151848588525469278693114137923869455011865790928051368037548675288829365285702260576073033938025820059483096629952875654887340591606137717953080761383460945848123836011078832573830461197734615983177159120958014978629028149696912201454513670328437790905012812655614457260927507706319504769127645004036600182588704303819092226163230682072868702605648371957348063920264591011263290927351652424768354311139194595240016445683317890115095844123839535048743994606346505102164172846909401810365047752330790178053665826444396619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25054847842366379349179492862273838890556139498495747276280641487422766353829572394035827724210635019159376996195625334477944586045240693796634410100241184167938642572991162287972279409504585747138058289784544230111406700136842301660605749908668538173813167427026414785846816723068428724439402317906253978480400923446298481725511249297749205657906930292566204131209377281040543948307590662809820146080759641810119239287116534370742478567032769929448004404349852137323744661001423047596384102778852188658508744502247838050942605302824326157708641844093603792805307170904296966926588915487015985881801818455785383823321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "706167990862399566610363252352641866998219894467708762643542582934119152731212131937509571791750456001146604117888583305431225109938989149001726917669336891631767414478480829061105911178391061578665085161640902225940229343531701497464720479885574849941615790994620599507075515848908257114048767602462823401932017855759530883336808659364055124509422958730421373261661119087960179083404359174536684839985858238475662865386724840636145431985268560090023214201872852510329499050362227107690085584530243270498821889993072145890508072989243227913557341162874413639241009391387193806624076094599507491959399717838469582862038632838982536898566074481635087385421578577881615953100329519164867239607815276659685469868741085208920695418406467018334013131670899808851137252626965242818418844622166152888862059246857643738626878014160049241269110234642541542626801620566000832637517373196740068600659623850931007808377814419212603296520081219394811441093218837905875640289862651435243938395885055735527395938473984806788146041148513977489367201529939134483950744883713075233975458688814826707578400519472752733721119952608186850678082879183823908522229567123648960854901329299846958228465041895281540144445582005731222229373454718217528511317859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "657852504044479686299013204614149596720847008147362546693023226359436257990340887898976579467519425242682757053961664242778062577720992519120363984961781908323812942485615332761474135110297947030575538169750876868854989208303869761538233736657871990079059269772663084750550346957913896432975501044751890130199061430169239670288116019999055865068949609653352109445804531005526682821435644279995604117527853843109706093347852095781344693023324119031301204031216759272435621161886840323463557606266639792855293387738520220333290209824259538421852694317642746132738807356463916227920783295254864958884333372588961284122070502611274243903647804455897578312414293345398081632668841501406174461633584526059289770493401341842643301752252738324612215234593839420919269874094175410961745628826440562936267830531471902320429864072387031875102778117627463643131761951737462358851358852075823025639514357510093202799899583480841934749501894055532314464817615308259917784135828111211143709581797323565457230589634963134320491283847132864085937187032392002922814895717677149543120103442946438301517749524248235365284739073590497167547735428620342888552840324701997629361193635658967138921764234385319242030725815009878397006401947548870421461347089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22522003264175994689837038917949677237852330850865748856397200824053934198894965487253493079526703560607701669327202539690790939790114724062876411359303304031949505698776146779742435603619999648718089688409339315844280539749503522336031136231088371480113469952311079275630972250784839325570300974912927021081372234750232333727988015506692391488206780831137089436613812071425519101189213798361236335979138296267589249419299142455295305449129022185666724628998744691614833444385066169601972640235550636981918577845837448001139525408344316582814933233315152300829926899544992882284472197540315968816862390058362583036191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "26656353207892944008249416585378520781689392814220877130058766841782707046199643825585250647892099325123235959136692805103976435212471500745268619194503657387810028499629763601764804165459688903724648081188028689506870157528126471700310062166347740793667059521654583905998570329099958965724049532966161854332641936546654733225556836632596871351263138777159476572641529135518648513073677579155829378236444432809601954418602347506422279697688389553192140714519956070551145524151260235615126173716903783763968556875801448569238649282386765142373603086340250973352613187820076067029058874787803493797495284035821397406451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29399591744101634584686680422601443911371337690609805602033843656504073330277371790158437299885251746055868795861388183719850501836145265326066236688046460859646169875987704932288300554220416374966141356982482563862565674697921659284644180957731950758237100361002362268131781765562397925396156269107577705815864777381385780971017353000972744748913651998870988362782265126697797736269381290950042540571639824724076720833668090244708915417639805563873555233125669309838289518555860560105560990284127399895435338749377077976432766500161971353188189512510708970568016307358370864327533259831277270258481486487521219305951", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26629282000643214559086737224859805132674643595387904074954059069523037385646226314904174624635839396239503399030751945008717101000734481543550821733406175790612621394628587858091942250778769590160392966663323489827057045549152804991519173378260420543799278140171732806330858909095655485005121598863714177561302500104153066720678352437053950571083703769654058475810751578590362603000554535686953462300137655393161559196583406303197424016344065642548542386305125014691439786142707190779094048762729723748783005759908103166839805884938795636660159194381593307877213572358641516943916726433317676297138017320790290990607", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20956405661358177288205480094806367055346956409097810267631626950429496452575876954556758864018532973359851413060061892728355252789068868830179724541906074318920869995942408839599824121469460878596581365005194001758671542775177341295576974980243750551224065540187694102828545343601376862030446631187321424744515800442412775826712001992732111857568583896802525483369518781440438945311086910829952038010575697342624357163720403068606360045601215921424115753752264288010517519326640136543819722577114803447885531655669048498455833618728072605386138945289381323146810785626772399474502147022114732327524112891950331285527", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29902700380905614959738097106649699557756896404256138239041739424839720687621063628925228840249063808592896066046878867675379781351200874250591425947822968680001727645292582155141941342844760835252546776939444450769610249519163635981911850870863424382134389030995634225541977320121030275564736541909694550353417514484434443421822052319939953776757683258508980369929430530750158158043099541748255129405918452646520444709518913962449847647201284760882817870442786166134944675412873432327790401260357009685364165524196429910950872325101492363624501163154443791347352970914746532116816634046984653097833742234540234368931", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24637172422080485556561671900276774913668669229180004608923425180376751987733800541626801558360884562955773464086295698806544823922467431759433491518806006075687005021013828108189135403941643467077471264711962659423469951843893402098013618679339410169052036014580634053403765264118326599005817967430597168261300981347351701619853776288211361796574553708654177468178637072274538100290239438994007562707080345507706866761296456000295669826133313507190094896230306173285997788894896034961013212183551260098865715003957805722787632839478103815888061015415232251507986678538805272809599075835785837665492064358720397782849", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24400187966071622728631167834650265862577995807640238371951415579947647703658328489768671712606873587758297247751213227655464974906707627844253355401117258217695296531176925779057788416391748916977981444380028955608777218887886596536778234686137142731617981921039812717234200986418531418200678336175601982622092928629722351551509077262126108145343959823139391873816151466365204548794735126844042799977787421556902269963302109421644729775733808375948885269491054801674744834152439072677651570662251224252878627885045461867844075313073948540328236620747221101758727089795481735071197733170759497933460745962728659095471", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27861247882896659071856959832617597082279212354867502253224199228938240631465375838200858700314528616532192251830736935834710757106256375927237262306390015525475789013269066498992508385433373826837132954002447825377211590176094210948627149021783088215731761090352010182618670961603480024771027034334489655994981881177225915048624243562261110667952901890263651298969512527378489940010820786008868913573901789306587345257769869052624726713113064793851680979629744064617222239245601854000023088594653452698155313234664928178905701536779838362862367249839028819007058357394345843938175863852032196975185416245269835299587", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24309583204042973016513072502011080301142498837010866612651541799820642375846190904423497908815022891047784075994169021716498336735694938875169463020100873926090996972544569351283516624348398500410033633690151239441277336229438330110586682779314715844787753775508371754050790743076508603997617413557854406290935617522669169952840814187193146097604634694689121572053291860246536899881041890605576093757321094326839625339090811810334087456719212203032815242618853836343859447868605789598514663605485135557099167909571164655366852829499403560508901047324858928314198160883971528961845672107734608597753545771993465297659", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23510347657921924153437092690640286377127356282006050210428585730866437254348506813600936044419641071722686355602127784365168063790862251067640544617808299379773445666222269534673249234196580629807824236330372052502259981327645348661957332970398186925550543191367816591867230210130210368342531514081358712247125228265836528542012254908529364105273461485009052427585744634434830987138673078050787372959189882143557710212141738928175522463604166724890852411172124399602858171138732781819527574958907823913588841004646389220132012791203812201277551391143779973409644084198452689664763863015795623806415869258521729265717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24883730806529882995203843387476105200377763920880042165404438594555297600310762314924240851847822849056924539176765132776353547307646084268621755334196750932063927056641399559286612112789027736194452144796116753154437879983843359896063605972929334547603280686937799245520876858742745479075458274320648687096536326701094602845945856621586260761839890024957768421315075473661666238186816466641120009718639210868330394642126680609284972403284094941925460571048289818845285479804413098943782098472227917369512567317559652653996706192235580673230169317163965170077074204573225770122425539471178942342268801700244712560791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24408620750204168172173848292378084123057379067512364864318799783560696313202111219008759449404587208981117082983185291037860187213930953722002878516142667308834042134657307749878212965333204297908331257913916052014567946160108806229744852507273726501932141737751695786505192524652379739679666426264366035503816319348843333378807432549416729744076246794446013292072568541318009590305197198723558112147528447493302371541930156498339370227078974140690356434497157536116529363126137406520336037189410455984728057826604332078154502620081776550167325366126802468293668402629537978042670864143428861510850443426112814752607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25979255711028686332223476848006980287909064538586697408396665964382178156546162304414298168813060254997990341380786126707755289884867634978692667981144399637216397531174956087141301037418189281140880262813130313331611208009959714946102254148094173642824135951042622403836189459534498646775745695359605147648125067566572098615842714572134058262996137485813205072023792514299053458781250778881240036551692952283297998826187870897959430120789471206352297583296251727261874297569728225677597280612067158379023848575357334419337176621408341388144220311836969689806181632643535984095529443032643472439922539486533142280101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24257859723907513603484294910931362540387956447638123417084418768503151208015282789585459678769043220327685697510294464140952932099635363296860846421220676373081733367580346640381840940599763924891827465318635727195219549894010286397800550267742680435660392512254654371510109341102885522188878182516132281576229725536216331531076654310088816155129914754039518369062611347257588095656324237289768467989869509784742877944227720819580363819371991714538130008075627013950852301139633064378231638188069867825111036847938734672885467020742707241122730001586853813342074693448172644283999814563169181881966327760207035641323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24716606129610784440344682283682153563388340666586423336176602376911523628180351754112331373341161663838609358168784674825247832436837897281841666480856059990174602084397243571703383405318519910921849200548526273474220677002671412229721736837412365918152579852316137749264377060572467065004002303614938616124133766496969663264728345230404626859624598037089938852613685893769417470408304149485063245890281374982239579954147762586322831738896356109917577091815785344076353822838294390660825534685281959905227975815271299172496749569144075098584804703963089679880130952798886951970735169084314554963651791281861830268369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23876695372301536460569806141406576556548975813414680258649822448391958613117487515888386291088293550289878145216325233785422084653051193643667778471784026833900469114185887392958197261082657798995580246291638569427636452817968418311738071565676462609640294619783544288310246444471461973042776331056754542456169754886161885393715251629104158800582930698151324218708674563147632619093948717940591839762172665196951786194929839034086432373440061273436995014327702048311312737090838593330961714352656169472201358197145429353186810548482436479918198365149444670766495423637037186677257403390946308272533784795325925512137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25790356322083978488014669202374744925502155340552360405218878124705642367794526730962227567347950100541469821613283681497518190496578527766779397008844575862575891527045357604538695496168015160245483261353459010282117868601383561882997858523017974585668656607242090174474344288496195772173280852717312326114725107011865048904305593332372643581621360328235478625003327964271123241899317668587625053479577142672976924786721580086428280719830670674289484257266017558228196192418584977708137433162905006289983670683404708674784210791746498469512380517294489658451694093907387205354764278329177522273324534247378949720221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19141582815983254235264980441726350132635850183988979040489256638987466535477923864275173395182676698106184194021281030402392117472673112488499509946725049886201456298191635289950510470963769092970971393570652574648643448129144168393183245801913191143692895580686232402135417303761685303919392953481410827168251115578427967103109530780430876077907547492413514098183759298496998920889180487629821397629815749058130831576965507334159180022316430692566536697077922739016622717062365373656479584618808476119644479455103631711971505438315783458072040939707376031758665712667945116982130589509026018694810388975021671901481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "16773659867665318399490894030413841725655124448673032825953204471241191658872453838882118499709031440658306955298712554343972383847210999746010164666530582279220804931566690286109473852015317537472089322353991874170098055724747764309678011165617074169859964513675812051785417933956029230299463722308007949131817714502661349850005886625392222151706384441334074939969139790828574476749248465150389027197319923898418596623423556587528605937697644474980757605855025394366774595088067235177389256878239432481329357867607365196010929106894946779822974092346567052502531898720295635869235157110334333612777381599200976278513", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "26407650280124713606052939346977174351041355123796025295055449920776664702941319790801526263249756413704476623847040768348129377201812793409076529117549313331706521912534776258622943453194945184427467407878327356646437419934422218750211301040542380139469149559335038290634351685287133584453541826603674998574368277961615473251272278977514217177619827699860573689204236903879451060799359003044309411858188755191319802669897294807166632218071556183197295794024436433757728031999508255950232592775527508481975059756421118640303321966492197920858325129135226085803249099604924742429644412793012810909832289689181594647903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24898511115240806642536697674063521250232289164064050172608479364669647729584171742458466117365534107559055273067016129702406181625374891824288460134694191961236878255675337544604278569716136073838289325888839618867232910242840636896085998413903849259122211043776812558361628343286870289985748576862124732057486383133749849060786273366417634591871863236281898134025772060166952379150560140953525994654713249630112136787851458671161728704905498597266875919938267691048155605550355223787013430874306191264758635807711016967191299614478463105077246478498769096437410772260378913561782460078804950409984169862144095228033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19627595532212600901062776306269069476158683971509804909165745159337954646036462481626943887387687800150659488253275525439600447040499710133208785270345180983788729504997431139781864327928413492729985910971926270772515807908096343802398593359105864010223956074461997429265442913996617820291231375537632872175482566992789627928274067898108732257428255838943336057735254245264082396102691860126031226504640579292329774385760060284564640858221060841735318664034057889157663507666382511290836667167690276273278745252064106614478924182333918208243075765589370465916996027352043107289615029080640321073019575299190198291287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22967146905396619679941574131218640246351446599084525516631578440945201867505992301312734107071351439830359308283836583112726847331872051124759869027625806486907255406747907570120760722713439617734664645801911970843392714477831656494091315328458660447490990022398358180958880913548371686851800627923112963749846339754296064065884578777130550426830259701773478338354783321901424573379079167831615504839024111280801687015121782968323483900678152202680849538098498036003716615760451263721570433984773340394479004843536267146872702286738168502792521800326551783781498009488593281826160224552989401694027016624391279235719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23612743913416444078567486736993242627771441409684139443828931312717140057234149407598446095882876604782670944019256931418247746616280612045426620350297289500236482072339921392827648448208437224717067444011462134333006512315616847358208562623056077266732743830585501412469774054966182067508915505963222556203685322913928810851400008664234502647677092662274468035753990789798398700083731478777932287130952775412150561426989829733001709727097291224664574667743983989820627598140965878498775668420360393127489038025822683533220918068413622866541665882530329632304433982139695992237078870802713385003962495606806104719683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21523135522885836068569316408822634122068835132161092796037033991823701040974750255617638366388454131197342357956822606304094813609747476983685183508352569527189845394169154406062995521585538916880998641091513277649049692808248801079307177286705594975370064390098882156053951165148997105421505406182784029045552705392132486214748391957924743093110709762604269327988416210487639083062094647257743564321820545749602626749356835873979983293815335080690447467615032502047152511146454060863516382930436013872299279511375174198658065631877831237974842311670463211047065413745001524640920957717528251056081490666158896286257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25735810522434933826592555247365442180474806238699727939282161389420909059904146012277856681751417365519414133086494261054677983639735453092904718485837982200579497671808098995475853924857981150023712419756873515324607993480963131191664621713239670528113248978110631702939628204535358208666650478777990989301915609507284301444886864970361493409642415181874265947061170675018634754073986604889167871817320374709713452187618100119260519086508287421781034512000271922528314380079131187614205572575164216068135685255105576986094218287585747082537990036289805184368344681228997022697379946254886586434805945258331673806069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27132877531880563540727564196543148321760291933502553373077823864396385241068943173297123316333976434723565342456761184629844747837555012077154812154068931343187840697983593465771977593899537104399181786490211502760667129860911865895987198306926532113255035017717283729690379887936629886032462834462109155427970615385790189423848477094558389436905721141378976580488162716740240370147627899218446454095134963710801642040555336730970928529370820767337160591765383435653151030073334841483445823509013332801961283310010913564133390786434843436907847836873169368634376626098913590500344358604468276798488997108532138949997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26714677759549839779518377333011609243871324797894434865205568608357998635284504970182461049845949726917945119893640705823978191567494053831388764735862566752927004708364852537706382756833026454182011085342578171003769138955268950284574259997539705019700114564350065388449475510730584637410584107299263710288858083660008019647296287220390903208069906609386244099642088960979503621609662515159293330320979011592847283184559371874909935036276042146872757445601595766635764758964484947419207949352571922122425950759591026849695920528832257836893763860773289495611507159815366965813946136588910514118981056790418393907709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24615928934787394716691565372952503566033721956335805180819775223767770502270386040771761120701587656695515104846527324791498692339171919871716378738542707676110515025962421777655602350303036559158774775067031372201356391057355142364105303354596865775812722491996140723098135624926284471382853352703911535603549914221102833075732944747022785216891021612129468886025011737693908758128181761271231991227106575730539398745403974865828405529074660375572227567743341684387641012366216107126638754802011408586290490627300595527641760791465644224431136233423704422706355026395028226068194257270795118455201642606283487025867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22763716864992667149278539873375684024180255252656834988633028842814166385203204286550093255374437660826192502609012130648235519275837209777786101866739657614461566023002213028151882275151687011799193454186464070575392420374598910940196450683948939056072775294609350188154655257002169516193714365722277706153443965140135904383547677043908420170820035059896467665455457130930630777108808123506308279922549123544690436414559321469398689509603929497101050024714289415793378513205386804653833047865429895360276888822083796039120631541462187631348965215163100587404270098614795832657528745329113695780977427751288685779561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25837298062143098870019171576779758705891224569303739971446594494346693082237510584691010195331108636362248110704706170299465790817740997262835797874350181610739730620901834338410681557213558735288676082860719709408201204882954812914033180822060375537098528406539530620281717780717841831298808762471810885465737881078920291053741767378867651214124567498053991670465466645204183171304759583837023652043629379894799984932809762133243460254296336872486294967556465974123060999002594979184523102266078583791827658625891260123049588431316289290927955257587881788334625057230179099920074021578556621865050071524673970320307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25520237000215500748865932287638914505957512045976618282457517527776966539900093069174146997727922953095571771558871836064401517973673661326891331157102069722948249063300033470800867164852458945302456446958056648926573520112666623754768747712789976743940842736557684681169150934355181419381205120962754945220572466450295292044833394623295854718091621208785694688388343995616142387576497486333331514560626824043023331202557469574970962441861720298364835734251604371777015460150366150984628592583603036568141938394234998810756067186651571528819843816566606171807325606320451852916812563610967437691277075674031056397433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22492197693767977567362998599752052430118647758503156657883573805822770722431088015993194707549858884511367207818724259719300691580459764773870694701653270895729289948562459248417982796071913539434249081150433607616870116682856564340635872218479470385828419020260932652060397175822214700634229327926465957010127192043117650953200156246245616992779299729212513398565976999366292889078865484974677430545452127481438794331586946848325780968534783484336382772097231969638602819444181835985136973177691241156895560050610422207686147532899216238861145118358260483775857434487015956196579842236427324672431104593009438699847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28301278948886662007867949445098334440556091290614288713801414163799284825525991257839008026333826201199339989466957331201574411139170448998335054997031449546545988285215998678042630132910613768444428174678007605501313749136275935865620339615557739626500028288005409148324852399680905342331102390270867396472120884793951028157568697686766579066873090222286619733772516615916869149669391830214664591719004376203123152805269987544477784016846894898274683493002637783238901748702739504699083259789085791558898103880983263859641554857026305339821415573245396271449128993577924706262174414074953070092954799422495567397639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27971249195320868983695992861085554307664647012063956602135817836204635536974533909479535094301825970138582508221568466012433035966241370105888585364745151541328275142327569156894278450599838121862497564776384411868782137795559686416521832822448667497701000578822380437175120923546957757218242758252655256405860057747300036188092008379972251744088239936502692971740976921837703891566577949819266622388856572159621170008256628494343036603150789668891552809468237851875479391772850119269071463133587690214073871732721433811216772822862271299651080044386188628849822388362803332861278101954656629406727074676876676035539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27250699848674830920747794392781233408232917565657633713008668272850490243006250476000272716678527431137862148474089788785340480549606877160605576475851867365263510297766907118408480695735205643286750386945079450652843066223905143127108878939225928580821341414255972386602558731371894499241827401595073748399124659992666662520308429768911493459563267967271232820087573705994009313284461185617563978894897830019797482453485517192876010425591632894058224247977121739989703760529804954676421697425568965606851974500957613319392683624886714944519880945188264958173053310894771505775771218710933415816459509468286493323053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26418093348672025529558666265401343363461782420276050139890744338906470181300996190633678901861099169735964075837204326771755061649747094333660887536777556656745741520432044632081291764923511950340141738159551698555789198361906949863277743744652983982257404567082439764296063610568344078729791439182224878983550838847291406205406288624101877077559404002746385440169247239206851912791644021371315910868147891793706242411898850358375862758163401142822238190018343931484852747965300931811529817215917782130750858447642547006036199868075721787260328321255070745851317878956683696803859878696719086504974253136247431890037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24337646098261863780816361643381332396907898906547189794997915657268823407112183573279912479206214925135389504651673447394826187168211161275959657003846756372079683630670909975211475925756514715261123348543551154524685112261939226144805032994687247041420693872625831600522589741810396552867310646949189182975444712991732450521224167125226670271900969905196369280773355814727761404338625558833890080494589683179438662472102872446931627425657729553270411149410328561897342052431149757177138984505885960058836566223595420024055588612338859478187631159924206371920270908026073221009172758384758763700195495175534010964081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28997743078298943007681818701361629615792908494359835834918059685911464916348980344540072681864779075242426454725633752018608542440963708546842376863745598006213932880670764077666799458839645535730103271924693159401231880401608988159392555442295918468878306284132827030769814266205325490632004851234891155314540136823677834904453578618427976941321104734642958907958329545051384358402824972162956590994598325886423970688961758548228692921769112765224383693403262475753194443489050628119360728105287738409685372558178419520416227241542912094127425545115383014461714690107940299831161959456369204346233949303313394854581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27330561847641820542916879163940249833857527505938835821749394740548948612761833942374633968646590788267014921227809332638136245210124317635888068193892636338779681178010437055140487145007399832454773682290643299206396738410978356965754378929483269728956304345463390251625582047238945404518016996094931788365492246813149279792230412233993003338845011599437758492669863848219456606252034302532223035934280781786922186712851695934757168196884021197453641590557600241571735582130501347247566307328247162854747896313998263652879352929520642438368479683149317990128434238097207405994495594965845072565246932363990665594897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22605979613072784015126614294550603", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22204945240621570386351259199413415", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "24519566021919584850649245278245886429345578654853775206293933207373124312641939685979171782910571464164442408724089300335148738469665685211198109491174066429043156363098530658525460826330368036818539213291982459046286728568537408117074100172949763527855058487563160741473086101353022606326156798945530479281724188390321657222115326959832412820149916576544647537712739260865752294024711425109115191860082987286022818417210559271122513079429174958944087358208468452764302804446748670786704843609941535847219700347859242509165431153809077167228570634659003325345929073042754338470298526728924464993488257366105715392079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "732944020998355965842264754400109532519115829229474796784364456902862527512601392651588673401160951605736909971506123962485862054550008093215980937742033764188860568722709495465354610551533227311614982840140380463877546546252065070796866402278353932100545619313645200794383407414393668745040530937864493758225258948798451868382776798369176063754290888792875352852413458362076376618355317621965238032090720764230946068679417855301885659629826298183632118052205535833542440302843102839421492002905902819738223731026833798947391321340741837449874988467387301317055416476200447973274063610587288903506818266867607447520189654119062414624318450332191548860714077502863619149072210835169081270032975715039168449301007513616820632441298461275132925613412491889763715323891529804211848842078469463358565110339347542074693259684682476228326659046242213256568847581047402637256575075353397920276019890134029850463096262067348003332999928958601836984158246031262452102220929950411214008468542363469703331600192476782278462554140828829486405824116782762265924426398304290492593349989549000977719161994858084392690267917715300833045215102768888421442402638834803260437785916723689489986284926876433465775625377482977876551125834348996836517260033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26733866491033736802527183018034687466845609190317183966961289268684136134947352877126705868108957587353849875004644015035613622303808004072630888326709935637999774465887756908509943404254642029032843631276205438897311063552040543340043196750824513742431549640405936377242485298721196216589523860163439343290982768248249671100206775096617432851481249396194297807402932683500408156567551616729863251166426113636157749981600263083831389523710411231859311945700911663183304232393043641262288697224948120820479844668705836656137965476152575086227129303531851696448001185206879352445141911283714522478310377998323646753489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25533614968529963970606733824396521388260169066323833401955985616109741128969673343052739506715761506163929659570995973979569608867754153133247460049727203002763635003965293475943193904652855682596316996402606586870323834804741136539849377611644296832421564490047920639265264452530801556987338842559858303715336465645718253938021238043813308620390714499146571876265341654240082781404852952901036339398369136507900387474663587223037008779909448712222816277625717820784832149885770373016982832359397701673509549371183799134620943963836188235219872898408300126555650490180835480483008770500768850971528878572936470409971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21977842444635001269490260422107360657226227242880152628986355286671639670004620927210090146183626334497335379558648034460844848515136695530396294828602861898731341011708668179309332665536733116671780796783685018049098524367476092300435868876942148199015964391538162976694588818056045538063757536325006990383983157426907786714927527366031689415958809191787370769813922997942872971051469471370465020693317217608178991737522511758893934954970824098285969396620224654048626324746298454677230324471915887669319500873483097301839114881823726731446103647872154533837708169980535833577542227578467211873085545394677696867357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19993074687862451067958465984264084352505550414123558219235409681456712655994048587273426976347661201487180647490646298143848582584898116818157096939020505379468148622285346872128736930742501113931768267963797100108058138253221500898011435255922921573225814754628535226049619118364958005314486327043355380695490626423518389451834724805380660819647950454152558760328329625255717350603108245616023836247987067815366598673516929293801231063859637803742377284612742459014665835697471698777185514144815134128370123397610246521302326333446897503151442347146472092375247245291706843900350897549349174506910950361779553916551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30874814458411973695016859675107098859834788539414464885195632962159220604997280105469733299468038393822097802903446372447594803122666347505465689690589852880987569540327060835984920127467701608814495561042416008099722687520697282432756821631922353264261519511096183773165762575713838904641479287825857493171231206970241930195247472380003129965358977465298086829669522688492835671880395479977411227863119833790777035129846512899769715290497177088161467450043646741540221722489117393248184277001551925317892266583729468250681796802461193680432061367401089276204347181978551492149582597531122461960729559094743324656309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19715756918164568779310503166802898535478530066463777488116884152397196900626052471494208961292172752694960634215261988152963809097950426411900413237277340279624474814796472934661137065951434160621402782567538243561909010944270059783054009383889589400773913369860929053532853140482358469427293976210191383537584487871693537711285810953508533471891012002002785089947454495341016764968696703375038073564914577103297511392840542460910375567011739364543714942001194610775407418179705358064243081776777125872384367513086062296846396433940852917693211776774882286506842307234323582716915052622957370204075526809554554011853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26564859586022765279566667940749649604339424262242743319951734775084069163434631026493837725674917337056190852363960962308584903842208244573385962922716709488758102340812360572657675586040156244867029913680251767966312658029030973613509828021860033577626925489640356160166835458106416270406042609360815317139286597613608619784413217216561526243650615671307598415344750439548888899092612361404798834266145133644667945851787414365996063538780498142267863523474155042601446847378609044813942833253673991981288393209818279799684891652267820497996570050998573121825257689623671404377677860646700345790922105007042988300239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31218261704258180252054746634711279856503102025783878801844639550964108922774687970219022570977842359704827786824385814534585594665847840058784786629268791759069432546363248671787842269913509471954845692675054492537575659464619865098703364200680311026341947609126940776269684312022878778658492887829824634358552662773504041562633948463140195034495797772838032734718636383293355660078579872601498023507850632965680338356753637139371127491907939810665174009259151667677633670780115427922341580054185797113684287345421937705176352824230599104087906158105305051544947080894582456296516176080452377997460314982413690881779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21701298393473794846918900055575880114865492934508694291064809652800172224688550380431143560823545394989568462159985910815735817274401122692854895147762527086418058630710473581555830094017299872958180665906208082744664415960922812177861691282238801925646811482592760241958430875973115211437372769608395795601024118888364203301574162470409555543463805596651162596175264191363411429742086074035964696719999180862023831199160925115438561925678453869984331432496362626776180158620898807314443303302632423037155639814006566275262609142036342107274165334041118227706348038716722045108984608584540376596266164270401994999163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22876709632499576191709293096125977485355762903316801097564026328726508756101647407980983628866693818213175999841060224682611000926896803930963979201447084006839475631008931955399526689549819822851613281119415486507319196200999814854424905675098531562641094390719169379718291647243277194280717229358356233876426303881855430769706374255383158883306579395978528149003224201453459893118870779247432347046493639201193375854208271107172753017222700996682967753837578022464738918332403094071821641607737681730902574398706367081711632051441611157275243796344909273326355137266734321895393637751190796090957229100713247792197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25981501335431010595516421830673880589252583739386827854819933666915427047439570811573800652419668196495630455809781060014599949822206895589922237480546185847881568645910239901457340812183004622663670665861642006688781205433174259992496084332849938174749247462382060412203436730196932413752743355701508408248644066421380930519223340808849587579184740361160435057409398574402821507956198884467289731550957660619127422392641511407596670928492764366248328458024068365078787295453439796445331050225602112466439639556558014910175617590023239021305727433313257992676456142082471951294175327348556321841267873452075011905133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20689971901632754196848539941667983394163472459711345810942562611953687311668452728220029818067496156162852518006270703952723563592661848375006309822509634666513473114597505522280358633912600223541229700043263050142183034786550220467756520497120139623300528700123589632528952307850423694348575202247194045062588750545285985415909616094168550127469610681475724201205676144065470286055561716531640810198070058622836306129065711864064222400862749106055921024178812951638042698015477754760515831530949985572560783211546114766015316872186338124878922045510663140159077090522172379928735526832781826274660733130607871944031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28340418827406890859683964488003751156417520430670387008000630911375289127957897895368432123720384576403748531999585551525178051294431435148307703961219841651696222536222313264592671090778246244502993484274342251123927588809630040397674827355906717347508445180858171699608675343340915229959984815466779423275573879205195513808314708070015093988762292108123116949839006871265707720369104305184706929024793061184754781870215330754092116473387157173150429301943009177149775172552199869993037789714877698164526840090128851032880365166887649158337454238923765918864379173231339776840657593138027350037269821811459971535881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22461004573255594155410384010769942178336427221952992084005247189777037850411287532652086223039855476703382745911132801048940303370068264622458989330854916428494374096279467959645117864921800042648297994351059869394515283087884019729222290128085697805530516313634595964310058972679791188777259626824377228686389277989964033165334099662144549599035231886264795420387026906223445144757569561169030409958744508442045297689726963509071109790739294460676665116298356213572311174253330244606915913299726136955141227653393282019437719690205152106722209642583043151832569392493403344770137445361616533314865460588524713048061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24055747165665327166575313120960079522152288436904582193171528162847690948202761888512946575938320924512293096392556783288091090629682664404224828675358273116643492206274102096062772738503021984713068296920902372533549617168300114132539189791171126790544858651296421579887393692187336682037745408670236571939460135953412446694470617191731296153042723267519564078099902762251140211238405299941574232999036114973196710492460934178544907034177619260555316838553268436224838720972633332697969484891344161843052187448662212230889445227899576122002077648800035145598694745347365667923209692323889389551293715504667024439601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27466364955443518562209576810219876149482525531540539305128800506676106356172243070496356641841941932995672361685155215955614884747642606612276660236826317591942157902451757553612037758025224974447059239137664122208241823903521095929468574216228518393336605789220370921611784988697274813975492065091742491660752998041178616372230155802327196932209655400741148590876300484858560473597761918958278900576626203919401812435241646560962876484898141880474460302567798786789213619327551851416301793385365176250005233685084726689094502538133705604763123019825452708230865145336936288619040361794947772118484033521766080782533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26926608333944234011181322415705369532080337255361590369534736086167513982971440191914457673781766568382729193207873579900706050980747585576636181064029337377438011873531154729897812610542327475655156433397908588513217608596391672570837092380182337486799992052421301085194337918276619585005037335544623582703647223075745820909242510746863513394753500828603768710844262122433055120023484457578545850501694254846938872134470054155929531807809998927412460349761405193535868927996281550301410373491519245007172730235112983539003320580184320130766780384555010877971379974696793314437435050236984962738390107221490452673419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24184148003620457881046450931569113472423100255378622479020672558498758433782409976538367439952191122488786873597908730157827438750397329204924255101275293815045205384999750435558354969983928658296434160126374542042252831195223359609883444492516716118283484600878542449039907016141927302551246361925996500150075050406670846891011206227010829541169627535511478265284208655413027507380707469910576396040389001456216749732656870753933068145941975775764091499561306488853283709835222865904695424866691873432356899841407846152768813518920212957145048349650417355710221746488194493123878119497232059038071320588045725585329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26408104748088954682158733080183864008863364606591842641423538372356984576193513410198298690849315006554555607145589398747023498785179849505709226785527403715449290620138870461695998292286537004908151487228299356354622919954625354708126391532082302285009687530594201744203751397707243453879604261257726424866401101966569627584023280210809238912443939072946521448481009433872506909330013161146259899344577552922142410832408544322299965112914639605110932799037628652957779713677850767596226379840265507343629017312658042173808239594646417518618163374941047116823866124675829766341377714815184670489149497716388158057121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23782691304594194940941356918661860565504960253287899525235013823991060072213999961505068890871543331705838734186406469198630386461538572354673649999951994133798113786606661190821697980026703862200739818091083160171359758078911040711496497809635452566981256809810594024875568257009064368994954483779063319728977791775047950618516479218206345760215420525890529897253682896740701322859582509019258394906691592595726905959799434936944758637971694624622151550770431769303543045855147415307350833898698917978735318593214838057720013955787997362269047415701687005776703648772151694403615690182042211751762057188591687413043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23339249369944557739769174388719797", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25787065406801945826456707592356760", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "21243441742336989116942165967144535287621950526655752869331527576631274588068890330507130123694796184146730182254978737335960989039281684355319715556343740144277973004550679260748068441969651316336998563848783482928189598482950695901056819720901184143370968199561021340869497418465829955441961813656685534465258910562335025372365939624245726258316658342721836658743733542877337351594627250773949810635020037242333472991786881109772340361993911120742181065238838943396454124269453871113349760637102292276796449818466748275355867142706652822697991703479027632844223575655890865529318927274945449370759423149047217698743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20611874369393531862331340486902237035406982438143284509642957967979346670378527505269708652086750094602142737753294292926610667945554664858307668412569959629250931960143008684039787536924742034534274799022930318937378747934181536578669159578972073451826846913303663864584286172750149531119836347359295976150412847166033512904309917042209586498694487365157533121994190899477188977735936736366811995386942716854793269773673658363111740437562640495433960223154679326179401906553290366108341448262202636953791090794583231905441907911358444735971311530187868612275646982879840666484528116776076079893136443167357108807759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27919972832104729796502542626247089718804932043647893356321485438880288401936322640289123714777350195936788529895395242079090847838957647400970463590380351796083537752438706348429543240027154187256399992841031480560232957344428733938701914935116473253952362945210773939493884727899775641531926126348033044213796316882490330282563138104237077366763918456005140364239270595625099195293355505609108834704734418344487417318461456982604673423645846229521965737235395599592731186680336095826575743161581885033311414688503464673615890129085641905137974329889468824661231886454628552259414161975057442539558663165241347481677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27878014005823368474778284615537846504399985473168938996700447340852185602031599285200741790599083644841128330269666786867476461537382484854533502587628131101602718633190884064106999761074488181355898747555189994432572802796650648959151546983822321374675956403613355924779223183270858625406240729393465780314019626166517498286574054684521667950819733691265722933879568062685218636909621429263221493453213289359318140138274010124601006220386823770060074474377867424599436661451790959429617232339279182860757566829274188886892946011393346239380207504928330219141261763371840498304021456850766116080158698550897376247447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23123475504556183893985959826200168737790202963580886070915672913667876347040947015246672493654338480650906096894071466323345836083071899030246529235928973246705874066995971247033654281584737576381357150966612586060942453341887581627847836286960731135510387488624769718389832367251373555279169519350862754704072998874444942553245532598001137596882134465866818563794755128507797594383126118689692384778475778474606709070886468092290615401943995353148280099047101005952882302615695852124617192066608695496366187851447599612139765123153731924650380046592880118100048476861808128968074908545108392996454996802784684204509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "20230875890365166990589371486848887377433818844342447904837587105164059747239012341112266697568473162026735411272663843951752463032779107598447220933560605532104077766550665277592686179418218587467152107957539718419374132613357818748208448975724779423943055759883211659737088379362613229519933023441016108774294861885759735648716907300055030739662540711762266993388629246890398932512101001224591849980258017385819423110371445247289761659894768486020044587768169730035832159032948435560042015082646753464751798830876988565391882287286265745929947209305801659214635628628613672990601106752602367190472192300982194796069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20959274797539598416010570951833457642244130715964910596164454549532009539341749930568096086596474368898593188487678791012762247014955000250554683407495122753460865352709697015169792893972847920654614553204804186884133663885822690995293918355620768030796014991511185337524865195364694275938513086640503546742768467059081040053930166720446906140522434950828848683697633421124044604866146955814442919563236584897563586325233623285830806196352423176253112634279578966884828230490650612451148246777013245338854524185306319988166371748896419798188912708910910646000215680850566599588184575368774525068818063173625194284283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27326191779682086613352196807549761240862618774871204618004906198355271884924441291633964518594738342630206418080328090950322659530919379329801547615591613967793602696454286122762329883565664214579115464014735545091806773814190613446996082570543745230823039174522345889029696407114769250401725800061765557289959050894553693746104713560257295690218819449177054150296015479626392273315380748170401904815624205767990259931829193926642522443840647424755402827093688341208587670783602610352632046439109994479461206112618440724143597349634852171997490693537965794589898909074416432003974044735924667504714223986144097262727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28231916527692674009977237639405845973361107279747393566548525935747460228593136860574243956464635493758657734613899263605672430379120601205672947326849761885511431138560187434492252369674647629179005338735314012408315977108227643068944616012014755915923044876078878496236454346450442312121913028155968890844305414726894260107624359931064652508653963717265865823445615373906646177058678651304023017565341644045500137640061208030594744977194582411187077040470216431866349627429344107278168556588344992966198470776975730209998063009571489325196932519055267020674719860091899011820920372414659506402119625332882750002869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25342355937436206806079614248779398945118796964039441522363639629380987183338412369294126739381998221274078208788603856704814366009254653785817455055470055122343528691697157404162322136793193428788742621962743741270079856979678831349426346627713088755592850438388268036399910185486217150351162021421301509333744499775807536135256870928643205066689426385882256317830667261723320137284437643617286309552208103987671448189544720903203737171140943870668264315827958903926216143675005932947226804585400150472512373609666426663736657215448813020712458648572363941813476101976482110133532000497215774227596318132177212419041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30025594768018761448743163835431767149757993789897762625125071912918929451559652067373227190746911800421156391986114818798479230882127468579200228957671885189972663970717301920381904021902822178919970659220523736628890374497185925327500142737005093753360416004012679182233211219174857379451660911865562749418767630897575315907790610590810630385996042195097024047445816170827643862860475077564881562200304976713888390447870596859915680375949534839093309756541876247732207284056169738972841513864563862591222903021382627880062007017218377519554367697388725666028291950241071656417507139667679694339047311652554659068689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21293915705894319334606541226180397633191624264498797018986570908320736065712934327349376203540004737570146538086109811686862664555371676731560651441069512053563634693912286835820773541006937434906365342320456596053468825370191310745153538077598871550390871731706259816161703741433814609122037381870461795277544112840031467511618450235684462766939032570055688562936563290123496300320566988657058815004030587603136158293194801156044175298610158179028041164310650986366723075677539940038263221251623327667329992116582635775858757140188882468708408872935762151277491613574356164107641749628459797024469551527105430394667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22443827530234620595086535364102771148152295357785596835692944392446226985158941567957617805655032173935013687051794364734723731933183869729367232396569644260936854986328355069907961528278791798655930879918370688947395405663274028767910285270801347010073427274729419468861989334549832275255189748084366138274522077774530166584922125427688235314840989774593315419176348122495645162283105288840105336433619913019174808925743326159423898842554388122765285049077352101421209084019897237849615911476737435244493126427461590654460612624794346594470313900726295365360622922975491935645948967744206327710279279597977407604733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24327237172441823499304029541653600653538467668905349451736794604335418700665462991110360221117611227280527094198371988573253997220779601507641913978954404472840576598348624548676631270338931261408833675770641328913872778099320445227737386650548390315981236413616914394753429605288351662239120603490915766266340741057042050738671143127475068201707487692612841135364543637590858640359271932785394819175561021380659578797539117829395994804236682922619361462231845904425255922606892519542249820396324485350968692940505924403603631998833180707967860766034930988121233826498509223774242941710992528743886738278264325806443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30216071679680709619090685491925333672971316901385537733211328575744547619006373951310844202403367047074465518657284848977715790538227211173501274615525435499441023776655412573969330436195462727485561898588597822731978882444963524810739002693093053334728876066686692017397500656752906739637859434521572351747038226466954578164876271317352337842434702257504892469216314771549145672465232522090386811434760703963411104102096978702318282373924293351494946904721535076443866359445456506581666566403691397003249557719252826373086754856808488257776583493367491191450875545313637728105641467665605171458736022988758791667563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25627437413506963799214722799803593952382017398488404035626990323777000221404973473376855018995874937094491151795921136806564770179050218289996148028052773069932383231558837375480014372778233754201235995133267336939455681052838482007965728135127944132511051498550235647912142308326947565974381098749122766952205252292235838548660736156710696345645638166840181360664882082994490568412424705968637779415311914263718371777950624221495252310555623151496953465608960628293244829751501108171289337095605176416360612237050232983179347774414183459159496511399796900064695044186315147651588096698204359966305451080819227327541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21370561833598347072067249409277368542629099679804601127657346373558513033717993936095676809749674744232884227759013396288033510157907333054342748453795404545250962094314625540728685256818427014570949697284990023596019942456046936007652872370945971117323428849241789633013875136110248588169264344568398773201088052368774290189556150260042011344459470104230577209413756881656938654499260132697843071512228183044392782713160019638008533815808991526062102982123821347640910432974895647300853920459309429450889220747078924548864792835525644814403906587005091014260590809614793847048789660045506774029700035637065801802297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CO, O = Colombia, OU = Certification Authorities, CN = Government of Colombia CSCA", + "modulus": "21737620426424454398922282017156183097962977916505280954683144128989375744114130112418093875217627472484120421049078057283789648896749522501124625307175276243755504591243467495853883942927718198454032663050677224726427623759484876291014070004766567104892823902951550741221492550534685057608775352700073231892138050095238387815537469485523509717685169063441998498630963167232412360737598222267543898433616853715253482341773542300470344817342992685987377566052624124897964880596154288878703519502311056977299012366796795741087921611344093590073505140234313567612632770301530301753415671239575315746941863339874218713921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24758541690628771077764803081591734066645766643745458606797285362210682671493908745644020701061943488466546662662903188820157680890268533190831670671329195553024929524760356492800075111404483639242844484556988703367369447495206598255133557652083982200296314154116304356921082988804789631046235329726175248821250598127750129782734491496165506009563264772350565797681928344152324720888507640214502963350373205082092184941854728380821133527341675918652867451211787725735563026865480478041923120252501500922205199451878553735923662430940299089618594330807195200131826863188796262654474674244097898425942083486461217812997", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26437762266749140604555307762699815854478517462663248608593079822591994873137924586519713606761687490806681590543450895451727884510706222426781419533182411185674551685136766192480324949544687399437277532135632510505129749156585627314517623739820404694690166159322945319860690256326308791051597971425039529710218038757192240620648731988236783033573201978008919055438085009786822026912807287314954074857291137600463872750649974484477075743849176779389732242305569767656469994445449032517483630758814402598320423553951397100083531914295962483694326247509413436485694143672685933230783005111593559156959533888985375687573", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19764470777501340379782103117870522076688290887660079062637757448667945473023331038519559974679011533989700653217478709337030204406398388427620019492125272018058085811581979549630287087217760388067068404773988806889988677788099463303079908050759558375605696700294771855645821418015865403930707274265147048182255094739056095993503588023209594377285841538328063740679120866996642681246376608508092512102324701511121747448163567710862119611015674277514492342803798455134907460901129579928707115277389116971955846865696804670081736718201080174569617529885811767899972475210391326887588889149468909044987958661363658177341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27363856625691196107598123259627690401666842757534664126774782705146667838657912418446222181578397165311570172152329423989953420223230205859335032752953015769905517784386399102620964007929846148300621886977127280110746061255270595335953261224843869283421994495321331057694676948810327070638911705619421690077840791780174757338265912482307861448879588172942441470135640083609586574179620924554751949457738228270795531102816464195131377217824021462997769366691931725714087835089736898277840285068993009921414943339162505112264187599467537308666212390344951755903390861631952516862738476818582030688106777344832792924263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25641543286949178100703450041652404972132443390743818589063000774790919752683106457934498204149446063079168412325398041614420159998104058965755084129642349989172849403333661118856722028285591778027401902513491445951428001473990873247116669870291393103063106831382960146704036155826489727785563561595545746980726129450163216757266558994134606903942186237964044148435225744408638681578923717145001130078494133669665694941137410852241511520650796110809244360275917807031750822995213830421932344351101752976081669389229897944683516160168746256759881722024191724049952912857220089173544273128359300193771007617870788727901", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20451440401296479192205602239738604770518736276013993613202937397633149874660738822987917244600584476553075213363746517878836677919945254929762776179783062405134033016708809226041541731468171011706587752993871581729080945849933550127779483153958167291933436002681810587573584570208918500643761345968842075357988393913587079648507086666585693875782796802682300617428850877602833787640993355902520841817377933759776964710276260547700972113219952226219293573515659797302263701323198535129337062954702134934860807621343382951155615390650725063523105218587628875307103634830967118814158111647237063106736258799004937400723", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26704893940305941171187323464886936195648321467984193417084108698512490293569390654744204890165407917005151263931315346352348215281016443117203228490882781221814343927268720854764501216624282268924688599840599444466659508968434129018848261946228928819643198931555886258660357645774567276515210644058719081360548296813199002683358993224794242553877941977391796977919420297864481336340494948887178362729841690436258275750714965973785261377868638732215635892826426950583796913790648175406903113106383686129023530025855803643109665044529134220851993441941159333835516037542493900467708906789634962975757608021671679666111", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26437762266749140604555307762699815854478517462663248608593079822591994873137924586519713606761687490806681590543450895451727884510706222426781419533182411185674551685136766192480324949544687399437277532135632510505129749156585627314517623739820404694690166159322945319860690256326308791051597971425039529710218038757192240620648731988236783033573201978008919055438085009786822026912807287314954074857291137600463872750649974484477075743849176779389732242305569767656469994445449032517483630758814402598320423553951397100083531914295962483694326247509413436485694143672685933230783005111593559156959533888985375687573", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21953691578353492970320732390308143993563753490165117409501335592547908949817881370259801025259216648245183855668024820297856767219746735186494843607760890611172064635760646996597742177380471110217921924538261685385674596553756768249174103169364932164201979848766302196816826324184587107592221368370717130185967729344855621148940033360082396925748419334306783422824694117567601693403036555329869732092962488769343640489851066949130223817959241699892995842543690736610159018562072180337207628697549428719907249928486696849098660059309844558589451497964914517046597318081289287466590070301754506715862259029658193329987", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23553765467141982014312546605869436779040584323428645253232080560224762353901261837692532780853125979645697854947792655244475554943611944812163525138985494763054878194059757385297265572583800088829888094387462792386071773205974777114363566384165669192470386953588394745563993582427780707412842283647667271653857397713821004973380439409203151728580271266361649254362686532494234360951100498671410514763531258878404169605528675348847462379638131776735074200807420849885365555404892774101012023560870067424602008886021499294291294494661938188660669132146887101110901850014802493422806710087815394753088615949883956888423", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22475432149787854821250141200613151", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22539856320188637219557786876567915", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24093479858368650247690492591621834", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21547988820148325435756280699257021", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = Grand-Duchy of Luxembourg Ministry Foreign Affairs, CN = Grand-Duchy of Luxembourg CSCA ePassport", + "modulus": "25259092096073096422996734853190572409404046244084181848839328731980114131881415192593118306801243223550361864459202492248031155723044588716662203655734744461047218335597016892102037242782146030342819466785641511165784739717010592293485599301014955148043930211479862284988138945505766229103669685458051246585992029683682389783193674574500487382575662986325275590816763606343396526681390418533020111470541432235111050862301218567474902737848758691576081862932103321786768974624423589603873400197782788663152807929059815978546062204126470004866273003193791763297725279389033384852270329241666850037079749869241346002209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22268991549924592530259618563532064319085592561784701757253994065033609541460784300456357512846085623427142698650211130515970293193603243420643213933227184866585296189481304913033094685475220493333956390539302983830106553848781621120474715284695265645659035948780184663980012061407666416403160916419844169614070371984774998540724799730567269464048178656879932671586353165973092264187066245296722204155978959771914636749941155794479508731719748004136661788998583706866788405068470182662435207880266558092938948919420114883847320938991260313137941622322758058188264745545843326991284937169286771410237936623544990823103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "20691937372218687807027122459525971898323630118261953925616346634878283395601673045792015424232903448058253169303772249020416860188593468549097792630527154766640635464605820275389531345900375392103069297937209260240822183737262405847466232140383594558313589283503993302286286316469969288388847690357931416582168471454629525944153989530022776850629915911859576417444736290429165739292644440449762224878755558273512839607427932787082671465851844690092165254099620422294311396987312802307166529284172275839364416197683384735062944251884077276962182323760213603349085471532142488052758811361933718736891408185611121366723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "18581485901305717346899165314833385686182678103823204164897485949637786715278604129795069781682894515267281916601763204828950644906031707307685217323951623092899187736403107047810388803668186414797382757728208814545554056547588863449467374373715008635313126282605558977806031476952168992907882278632026825239143407646280165653989500368393259300407327006967503968690296648308909823929958861931112565069906548934879595475167457454589328856256351196142545578648405575302304717697997700626599618142343455694204288321017423947831849952016061693435806347032714700355127422983681269021306822116684801756471267541715422818513", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "669321482760213258096672649290044579063732739584224786765676632364963667965382728803247614974933823087122150055362631365758104282003488777921480739926412451430585341775925349120598648033484250541996984543806686611473270408337282438813295290260054130606974828348765283745399206999017847354994242500089573198041002247497304656001621343310327387098314597248789527802715670605706373308323727083745239301059853768535433745993938562620537863330055234932408383542743401499821964066356116095855548850191797935216834423840933759235614668163001029924391256480617847600163628208977587535027218762989268261041293032553428519262898004395336760914604685161321306403106169889258450193425015412457633448914927484758916776742654219359990869290879381035626706990448557508027192388969795705564552347638993869056226539010569126831168273286327697077136031425377652711928162886137784522555328934136418077483854885443002748867564479730693643348179199887645389764403976952490799754817061925566656267108349435107804532970791530167866810164981215128548966222271590595437384197714350288319963651050616462695477686772820144568457264896375091779727735241525039343264058841342147681360634645943378172342111449481741475961588734788614232740872645731491386313459527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "564211351508780986114587217432982992538230028748953048162388180792550902132296292308765205544302026450370693266616918652683875266263874377461440435276545875767519604965389903907589082209616527518946401533137757539255087412832562104815296031459367998151305945001841516016073986169687482523361447681606191983535993935505812381855813427749055486786487380878694929461885994682642327943199254455496123342981508743819773152816010770675671586185273206150123903613454800148586802491577588705711781398197475885472666248951676602654152636366428272362359280374547584743382507624423271162081677788733579371923087737098631904420717099941953667468696554629208384276458796015684358364502978756439529445914364390879229050513624371161079271776333528411315269359217549697538215682012474599142331235123654804401958830736590400664932315545028368577696301525643673289951085355974508127720581667071455782823193404489537471610353236281679420158724713779267195020317435998456412693650831468640454810713412860742764552579527185454435375571152401489345302307883070699850262573829210130287264689406974281431865905958666191132520351411054135631404878357376000852138065317571590398539067878007551866374561806337332831831350433556177982053158262883215209340986073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22314562778117967295250782316650530287263783042019628017950825417527324102596996863354870706969619516456272292895208579266817851866280137613876515110332239532736520067470925604900854730818740155227049211468043920393289637507283303130873340716395297931426701374213694310393055894544855583250059719694857751982103680438878131683576435882445099971392744205964792911607391166173683112763767099906712122144876961955160571358572885517520137723849181218088278157799013050221060879636958296593923256303931537851402754329039289810593476258387259474193868775630892367851881193180599871155272357374494320442666499727193177617033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24089626282762693781942023575133427055965499576056906998600491328081040495732484643659148708453121693063464487322168256853354507781474247829915670919537662171515905190766432027418421187468916056905928334263647677852232275979557284749593700940247150191332945102378078800205454476658070061403519453936882534795736103113127672312930749085441553174314760632847814254834234948317101685868001045986080349663217402865375926027676085396076356251626508266054950789716242916626750997289474662048393228519877983737013828083479977412171905269706115521816107329511716970888935159689724559964696201529392792160082362507268414329157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29015197630511297631271541618573815691712879043621362331529251226468367653905060558490774130432525609398684754522436944750388193218344807513749444841774547523656428758238481863130727422641676280312901578533533621131866689023671348285856679286839855022656614398640434103236614205800392257240961956772832697303533418050224486945355787763240799452025751836069675974936418823666378388671522784606367394493342742987399513999783401595018240394461402495887005656554608820301318555461368494194019304965984548333773242692139126479532613097077985589007929986869421660617433816648823688844357995017146834811544719699647139688549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25242736671049334803416178912810897552296301799790188464062980954721963346669728022883400894605638761272393695961229101697621903920623828135998217510783846418539120807483933090838926358521249902495973005205954242996614170422527633831151350415073941531108388674827266231807872646350213290388123072873073185059998931893705352775124505069164001764922492066017502498657409998677641042841166384268258169156127501515617191100004758965635892697666367814551813984129439566461387049796230723248284309704467756328439851155130376518994232842597152009836536434977222225645496994617016499539979944053722478052779935198589139606113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23041676863440748749841010322108172159020591125078914758692039282778052206224264754620508366895697154069778725094361904180956207834556390778277188496800259429436970601018515833502376624304377386968835665553092941494586692714508399996533201087959424496621859156718330496697026953850435666595063237005103302576537729894152641644159661484756220349058199055572818986789653969461132726564264522530665957232236941610021838597704771971295021246195356746595669244249092714644946551725908184104623474258110301900357508044954476846882213545302242116052994690809672338516966600352340238578387970239580314403787326285165264808569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22749461289238147712047206241295518", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20844290340703722261246984967773278", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21033435852624888068399416577880244", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22867817825516150381435820041778508", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20829313675578428348441765795520679", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23743108904692665030225554488691678", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25261278199500069198433874042192793", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21000384254552807902526342167435723", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21930747393957630022454906506521280", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23662692415867618426646768593037173", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21521827715480112847248448790483064", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25206798274814228556655559641874478", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21517705406631241770473256475146999", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24629830536649595296581168381450761", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21222839259794732731521118459766134", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23074431979196309932865790959321083", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22780795323013629627297992492856366", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22297257873188632287313021019723125", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21139297540466367659274661778759507", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25880606120071444973326161777623583", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23084889581236487774223669371877102", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24276886387760313366209579144718036", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24032371724908034208463725009659383", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21749745912548373222427722669938315", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25825424217311308146525443545825211", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23835889807326116255799522646303765", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22709051708354640001989164700833083", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22284801980440308933446643254040586", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22171498626007883577751712301216275", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23453556124673288758680872099698291", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25955574926349170807231384092531631", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21388478970223932174089782350863920", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22575088307092234321130042001554750", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25651848810149104275159124235996862", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23708491210552526638194752137084090", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24504496552915704400759481619509134", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23325913722046187028164471486665064", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25490383124779009019539184051030815", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25076889020924039113312320155194220", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25928512737581247316247419484309246", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24991493903535102465644919668653431", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23212412444056746710764779913940314", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22805827856763098344571816032472461", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23593354458198557873656317525593810", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23671884258796976056937737962703366", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21993078471025995735491580065370457", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25483126344616560282397396553877276", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24912872028987002433108803210739178", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25401603460402980053402828432335753", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25212868537877820770168928681079455", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23609218897317210955736094949625080", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24791723317439382256807454723841670", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26720344450577320098549375679307174690963194874083740746650469125782774980876025582577855941952709565414539429477854101261435760187791665732456747054790321888484494115835573551006891163327477924031478131981903430666276016595103927073834074934431996166884998621178894208967456216679483982904605408164584449951982823566283175053066466684683714883575621931292899520717052074362737076595351478895371948014320178539045139129048727671553606175096111617190056773778580659100488204795003295588575339802890914518389142110351440322513383897226553634234508704634149654135027439676747698297147802407610823611715097026930019299141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20722822956330727128668481530333036980169091965964731731896919014414212900256831339762198856967750209462054788391813658969864904162847628651500667898534033868980514405688005614283024103041558612095824103866843536741918971042879140479566057576132258401020867673788043653243135241567433106143639009001459300397837707559943491249277054525775700753259511973631018597875372275081191105692673142595930372503164681805358962569263495657256324267663351953661864130837585032151602651563028419760334230175188570213004945915176960144543393772293884901740132318089412357248335305532128018933581531633926594415229189031130491359089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24561363189219747990885149094719564208280803128406705624215238414694204670986864973129021622408138306665598600212765698082995936064258733317511044725110086863157052872903214273728171134764447053188895922121971689773639228630256132536356865826682634455329753084611390974286302574844582164829910165675173956524676031132238158449561990691915410206733325266053319706032901102374165623449293455239163682828379754814857157403470947334148644193892372185027874664241524254651348227948022225816491902160894120628786176230694951887539011315338164113227943480398718186843112605943977778355947479713572567604509432876328939103059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24728608403549792111976619040479008919534952200115494530553556209536305085284162941527469267876781075556887985864323669376162814050394922644131194970125870972519710226111205404461318357140073485789796485766862385627731994349210813870856733535498025289438280396130214714167416648759879756880701805653348003650418239144398341892062158292050946514940793542435777204919474326768673229897433091706321535396547288537353994942717404795017400481737821129158069381345969044226051113268852529565498911738118052121065629513289231371409634990715791689198423111262421814272060530201436956922053361892128412620988553928596875359649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22451928332567066027670147418187273130082386286513132970758421035335192116744818675735912768812166339488980977380911913908775160419518563788852043003742963538656835555435491438909719088325598322539513308312110323236907438519846410939531179361242726211752693520507405902527744469061423229793336159487539180870881916575196950906499637615530986456422752576420897155234302833904834231241038342243564484284063275201046537752347989136432841150943369106966898372898059556741758753086226450409973349337660332961882244579384749073303175155763452990189890290937977215417760514050687707575542214848202256691352082744964268132727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21542306201239673942730032249964311564505895435084222918568233383526172076639298690136440790969386756430606877026173733833670618870176289014121579066943530182945571351666838375042797466770445039086283288492287018108391738627582832059146943806027826715761904900847273956081901374579737210044396697341161953726400734641523954685417978851123509474022083324849387350641032757848841996762856581554407165025839400271859589130754978888440202779628387717709786613917195216595191776975147291446760491591455118809513170812099414503563071659703259737099605114413608804546571481503863538265227485687406963985132199385773913851727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25951819673332771316949051364752361166282986207511672052204241389232601307810239504495949929307118821256830005841835475923202834486805072139748871214361237625136555976179000198823812348266027444530495297521574311604743525748620775975379947471524159287919890723275592619723823360980569464449415935691611850240586462639214138436539741087627494454342069734197939326674267296632043488523043760116782939507356691064204982914472698483787969198441475694616270825579162995786634483535484174498328942415456629906794324193458941788345922883978890159054163610249448488942365280074997139829493574496277226699276363015457941645609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18541553048106492988006389480779593431450255600362766946356221996389560687992070009280667119335302115930149627307781278206354991766426599505440930143872985281504820823542760464795961799977756335691954545413820715737301082474896456910423721698365098749069404292850647840443969462389054701478661864866238671142849119677657992309708254275043470049639005062236576102292792631322038695185237600390682577434645939204557176088641340080955775692157876658697944766908442501505220620447091962628585531843873281962189044781700713271229774158565647248022700902926951070490088862238215394118015112397375110586707066179565785250077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31627624240236719789724760855700919125029955085541393558929049077807167740986928906547309221139099321445496893405609785732458013103572707479500664226559687713277130268172294307045813430019649488386055888435590618625449442625227752965021886892021962507396785428814237545618782215779199026422214637127564892883879075343689502391371702902982692531197259430824285998755567469218360507012947325860636414742805804942294551124685628226584266222873485543409340556823408494679944834776781100832378955528582699590046407159017291696759516571375350290003240981124658736011790616262080180033765519042276436194402958341870299617613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25736593510201504325857565716087593524224445821819831720966122819894834702885201609475941508692556461445316789500059936573761088041121756585343981932341518557997279980185832972928435856170923884270504452491075944196329163649653390671397462801808709236738057762172365896928285724532058107153537931884988202116545148379223729452263266692725662935415499026691133402681633978144492641098154221561779916799647427540825586254382926217042826060660798362048468367723995599758585626739996946470727266381900267531076995062032410360476139618207450347088697361378687874869415247339629971943701497988367178270488308407031951056169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25085813943391353097175118891593335498512762640048830305380189001559670537087430737752874021210193628829342615377147313860893923708434865904995282264270446076777581532292353185719620441285472669426061803263907948652495271430729589255229641197915167923333916063039148853531971436649438092705735332657271978986942653698393328165960340167741301420745227262639412072647111984295747597552492828245913139393954327214495339185596139125752122529636832192604553378756944313006519673987268205607585635181107833778286058429688655487533117524083236005288781176736552116195446346679512560427921200953003021390289127942055414052161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26553250529787690550378302880822734305918721410908052713709970141090586326715056446919580957918444578916271916698926024545862007167450859021100854037021736969160559601039138421692764038743782671195952086981641963157591726162131514285984837415785864723033640431347425610453565225001219317093827763625596800269709014911235397229522770879360722139026819161563973361814859450571361452859149985768277555861787932678950323673529506429708009214602193665991313776389706409202123388391422939219460668384487067810470578293767466234566669252084344652905507330492331568739792217728369741206233223658014733078920993761770532966641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23330836891101972891345258265253577587775819679350644645479420400256541105455604607870481787317794138670441308799092886949786648336088982631682409028127803720588755423814458929081547825123413459452034489644017013622779297483001636381880835964206796374415117947638887018353795580250633231270778730809969355608314773055629928011077728960957649658975482565568742206309222592904751459798453939103504751972821713006420093082202680800532049208517502846521479420537974935251019915676956161487433256647500681959342702659394631929453259109898691116851956560720170121756075624446335221541000053116051956203020724338757008173777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24481322435720903295298655223252829381728726495495146503339445640730382985770377764010457331045842088088825744348895353181780393246055144779159095412256891227266128479857248669208733544710840163526371959477261235137570934741870660994662315954842966724222435839304480766991321115577068097299077071328592762525364788661038538657400729820337557200304249044419293143934415969533629608469664538739139697216565218924048360152127018291011069198937868185938750582838160419396608506514960910193546649440143346142555065677799479458178421050392933372801158885355449113618613873862193596191102605333126883566165504693365903745819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25189900943889312494425442598810493458135739035234785934646378580328306850324130980976387604995145209269246087759821334640976137002533279193046015682556037048328718203202387461061004178535890986492332896588981315373233382250850454877538667151747186485464473822762703387925245803960467999646109534955580778219116533075228138869372252100689173689411840418119133918186352253425099073160484280078434306508787098859416514507434566456641034908576232530719909657995013005599064333188651911940625016805818963151895131955234973147631169497962011899617200365998206078337681484339149468974483167934792200799815982947873987131909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23624260437155297494569441219225924945860337619702954803194209152965990478011471507746956688041332731394518698597787400684807963908311098834866814607852472163664271533242707499164358502866853595320229757599741674670010075871032526077963076863455503144501799578081667076473198926475115273374533107879106046206965198490999591730710297736772031083945211154445607280717429436154865730773598917890596826820882891958212280598180149130639742749915982170235025230620351031675595599113933919075185398909633264891878841449630137732290684249127398839223325418770925557731479729893044004939825587162706482332715047023766497722311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24773109585105272472547357485039100822156364990165784990512281424872572918715576932750270125754864728985827879803152938326124326375827900755193134171731511806868839377655582406744068600699378284691628010742797169679737146151331143248483305412473503618958403294857423951601823866614177266738266148003546023071742745710381240543848587367133674287689418973760835803318511607620297108117586586585352159967861399479730390815459719152655823381733375780456018633498146681095197103065956676064446399475946939892076309673884099891298789058393879627333201296665735791831670301072407761509446636603451273770887451988655536536739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29207282883981212290550345082001829716475565626116202242175442259544376836175259003625630501606977103381294242313184804261694238606880929743067782383095307460818344627484185861488421503916891224898552732958006921830523260258323425331154796210428186628611183506181187226281962194506192164297303477452020526131125193769705986104001551986888715879432070781216398075847088165421239447496515376680449028076763250591734985678095959492064393341699054468532611537992279510946781136553213049735496972901603195200780217843391225383426794646074261914865055150687351049592012358232731565152260426562924409834946850861345432857539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23932531661561376250947497730571123641433801798098307024739555502364204286817587640699732364090626391914727911188478887484143209553118113430091665958018922141192495132549624375695479979976386492346587240258609944214884943543132987634444983784718793477390374156026489123351004212416016025202677414542459580280732012006119963453102475819658043352201938448686066189928526744182781473683180157801452771358807576178495105628346236373507487497853839855840496577511521741391629105754508180445035770384878218602970404455191270113169216419944095031625955024877947353499972938668565882438423171281576891088599769065443479913731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28971809970986481695069386580531427872215465562411690572204703860803305167345281427374618311562271337380162219078261804577098973153517199297879029834476932400443289898573870696080402211006491724891006758072452166440192648917695309923268722653927947900915030938374343503008125011184844190858465365551414353690819229763741511037197775010052567514010962469231975650233269308024565072312902506517287783466599762561700990488969895289431876473418378804973146488226556163157772652386296199721379378547417607599626047583131840505312607164433779860340266033369730466641183765041808848571928148911837524540898868884126516143387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17199775680261518145854732259210070503848391443092009065901198009525723237315799811184545966262047599098464631438336205591704640010999751908740721543894474033328023048034655606468761935816267613819286294973850196302666987514492112854629045557013053662250095037290635526429064802647550453795916404869379075360253011395810782993480918392538727999899773691658855489952288182938196983651165637523763905304690362335036270456427507421574947316986194784517832697138986377070771912782691860214287820231619719537444201034047086399219641510973802558571379470794364373446063916729663427783455011522030840566084725650620036630277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17898234712908502601505516414158272116727577600403129045373463122031411309813231516825218267230922560608814018843324688227307884813576156838830529196140790613438497854934858128179244290840932684844532367134343170063022819193807600518023665646897939319698005079037811723458059186908470189254160497195440920762369294651176444337057283663999215285542001500273507232473408243340822246523297746251627927657741773304552033642059449314318839321256191917603124671974843469055076613010376506820419276147177196655185338819134460088041564639550125328033169790063433337333572458764649434821445792565038147055625945201887801454073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18119232981038320210321126604872136176683915831216744632207761519148739381116407902899198438087430538557860545071540610964014798177590830384539619208414201528228361494728411381623423238010258660372546045587206204380797640063130553081717098039982365837673209674646255921543460300953295539549729036662614366695301300859045797416380206502902218103643393816602469239274583192903586388020628955519999078783084396973446996330387204110299016391409456032608478427402719793818560879123206871631863784345870040310582516282884137420730902554620723091769515116830187096041399135640401228797196865411141901201391260659272293145873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17760236113346157079931555405044790320220406214622061330527078190864182577996696517229652972008827787975479184936451109929056264052585690047416354194807874590800286466843659308891933074239410016824253323654150838156176477064619767423881538044774921148505012302108659862655856414561750127353294042012003995108199793302171157050215358204226476917038582590437972488292596464614534731547253696875814237920100987712648071760122405448602848571986198860141545664078378252612255906437444811831278502324491081189870246973644942538989129956995213812418077497929815525871833836947479225611382544839991704598564017546340317231693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18272164772039363325944919572696765189448736186569432296294885811289962749463073285620248124100427382417931640899152153801733205175485817598693243668886883291046001584310363282307034189356395075314371645026041515898457615928878948716703159802180116901785602957916389764460987349496046819124624272884798207872345395573148181965474715992032154114809355241539280396386384914362371198697865876550997098825866503810258402163144099491270114969058828054642626753207391195915190134072168233067598026144069638292455422757720017183057409709013103956986890353357084111388735902268308081214974668391117969546882548281158393396021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18035002671746539326504018672124141435619170417243886894143724280592950136733345066781966248238717751232384434593324310760839335736648952878890959809048527487172716168448842322452201591622324238191608861846817004072909711449667027611594923094946283225099236976751573324520896471406546569204889502735021980643424512660009592993185273186847997545627292312472017774988023256480570660757042120509103533622975286586191599429536904355259888778484122318292733682220459391381588425090313349478070729128227898723922128189017939453357077701580663150237819207230107675828288315613044403988108798986178602436387137273974948895649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19619053681097462781188323178680707757873780640353988045021637618071126769778895752096546293023933909100044776713027794078613212429148857203433188689900602353616045682749227704567712820579350186140537021098032700240359778128036830406801373374318975138599868774826680533246129118948760568775649139318187465837818208405185527114533346201366590227776143922606496811529419236763942540428240320936978200325609801597796506139526213372884223380831001198455846789022723570752396473623725915116035329302734591060137206095591016779388465223840488894843383812427968555145276631850826096239118856112543007863076564049554991080321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18483768672838088661556428043517901012492939036499436450793930060608416187592261882558030261819412680970191786112120695780258904041979555379536254010832510579714934875983962686190177644000870380692608644030903881703754689411241539870218697793114363199787031617952632510710467399595536868947429963697410730475703681504407974012687462268585663230077353044902302632337320628448037583005034331608537412833343409203511257652206411280603174419167642407336243667181750667398372528169464193035902839417304293565911387415144226187593952416115893442119190437791997444880598903982825669963401558788704306083524744079992350282977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18406253744252082183824194603765348636672211111488031137341762826355317866174422426240430434060704932833421242491090899426404433522618121730667255610424324490718949071502379300505352686760463514981657856588758234700852342986383952930205508211400135379050989645288481287379240972618563608486307043315503495886457391806492010350883803009008105424695568091674912538000992310540904328876299996462895213489722537540060662633530503635009415137743052850208579610908314297718581585029970319944827748118294181217132735831705706091430392682174501022700672303586365327296325668041059360818703994676157050040222833426943038037489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17153168300912634609259819617206079222592547384556727891696749423839152583377399337957984694151803348476350256265732073467297221461136151865395932016769225121223702264601275313514559394881451708540901979591078846633655504451067473406662368105159278407901642258001648950372407542003229529628440166354858149250039119498263462215420969518826427537238926529993682872663370481960012617180390360181641393633491648895053181373177552590228179061934397974717670332835210294400245661290745683132009093386062762451688078929635303205634641004743795285405951917442107522506112794060143936844037844284564287562898526524004565737401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18242275648736980656656278622622878013315112471087192732412651974422145831870790014660197702888193404272457663376907875614682256555544048209076870884535905818008834200227458794116826070313275449325562410507677788564877690827008007850733996453006591986151394086546262641577679804780503545560842520878791500462247839636295599619365105253083368599846040914126444934825699218371321100314369382028518166286528800105262499890972036310221888871407530048275307336982119667221287467887861442147822696128625017519647239169028421474391379894128638226536728099720967850679103588030033700871187898302341751294138370619335362956697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18539083283055135229205227289458421724606458950126839280820625671598610268135323729279308308415849465224226820505882096444368094045861810066718714333738924304423855354461721982993490385646753282683160698822175727561111775630786738021923543154025791228358244454590441550408883062509206188847222402805491139036831993899982601425530073168479420113566758151691998821766232745543905865432802048168684653109836373287771553409011434663849598266730237466958726412486698070219832234813086644421306724095345678098415051677564885034236746163107262251857373058076563159349845031461352672549352312208967492658412771401226686556957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17879985069892934854504306305805822834962900481144547109077362395561191244086330297675891031700151400280304442480784746964937683336275046496864044433022378363179320086750309492395182152097397727164965526890785325288607925327936249901500389366070824482179192509498465392741958370326358555016127283588405948693355241074275700203537938417486111593464163978126627060902395600563816473260275337848008251732418989386062029047745130241132315073671779094231686633753487778232127975190045965758800989807218672206547501577857679058987052509042263969222997683558253721795226000244756914889787186287819586968655758911996708750093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19131746351467996853792165522044183147405933022491092564313739590445326310981569296987916790556788247583380324392205313723459113840728811657944760272000951040217918713835636736994012807011768112717270057041849077632593452120300569185054552298769864030481768168821266013141830848969148423605583745414183170309972890681168173338302635093942581014068866410987910114091971916643136295668932960397583001019200362686571398237158796387309976776860309932470371659133905755429193256375400877095990386355042028420817806339479988545800165093878879385228213881609708842982034558581829681779942257133144498781042713920731604987097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18451494821063725063242249128105266359035818691237453431999069401487055077828034669881133302479417650549338111161579961668534027293143048609082222509180353369161417991758110559134399890311651263760281820967623026737513891421172450230584686304580102887588719778625029708393182869344484996754301486215289791023612825981460380694645464698801055179922521528168149657272563597784084060633901276692334084042412690811719763380360920966252337197281033946676761557415988898703640830588786231010658503470042446996389422244848956937412028122216256331023580626857100545994899170478952344097719864616159138267578781962606030149873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18451494821063725063242249128105266359035818691237453431999069401487055077828034669881133302479417650549338111161579961668534027293143048609082222509180353369161417991758110559134399890311651263760281820967623026737513891421172450230584686304580102887588719778625029708393182869344484996754301486215289791023612825981460380694645464698801055179922521528168149657272563597784084060633901276692334084042412690811719763380360920966252337197281033946676761557415988898703640830588786231010658503470042446996389422244848956937412028122216256331023580626857100545994899170478952344097719864616159138267578781962606030149873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19358071586584945207370115066454587410443193162623630040949890889983251390648022763767875165527799481353818408993620408597960504639109229701075584539830508601564375396641476292622257191215573044884939947791437974746452586433665426190150111310504006156453807383127853713109829206721680808937927027218964444047789493993518696692055759416228260626851943869044312879169254688630413115213432778968217888196301913440486408457837378012612049520303500249249565813127420457146452114442837505651149600505763677422483859113423662838871166771946091031301545746268547657640256464817054765038321743110762509114632128171746119826341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19079935567312356579126906374879557051923824336616564697874307649748466462633513757654186358319720343764973059680142706477947388825505254064451710586187142077309136005674321874398041568034371840928797637841635946953822716226028584358250364521634992078520983600535180834561112223693766341441832126778312795814624747768368529269968747434199276888777019195501681077418369273702478703703911170936032955216717463733726468479801576539118110056110071869707275505798411729761701862667655711559339358918577313504689901591891982559304033672053753653349131199592827143910744337324721519477954413165674213963982180919810605139297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24441772798477228359054896776515881998091204430408972162630654680697470619700090973969741522001392185183895442440227294404853697724100060410978474360842853625818979520422869411726141591940218439871549472041257566362321034877681717867367119474186451850520229008945539382723842630347647586207465994631036218406354516938499973169132638376390282285141932712979520396802924513598564288679738035851780589161602713897182388244442647858047013691847421053790960165591615576025825143095538047753268848446256908529162564107346347781319511639916625235588292902070114333375468058298604644132847532532346294423485078062255762418139", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24367601739671360293311536195497641295528969425646378518187610885592260436999381091370036028263188086213032308017069905699925068637522363355987794713545719137047734551562961952063424752097483597908623433802066820040015623447551223323864413382349484136662596873765964595415166708228563678885723898817107969678142912160501805472653231239212059066576935939968710432690709898789895722901078256472719683268476608206164396943779561348237707255115560132565802691981086776475730794094208637602817569288560280230179867042771569648663806966572679586159965258065238283912707529406381877612093152418759999015121794407940807267351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22584482166111891204313495071010026157555569288706223477304181276379549310557488944453116934140111903953165447706647796448243487820179071418600446048440804948232457540752876051513201753722201238324443495783033449221157536746362634103730608298664927101413068883637518063574319025582217683849780197641362800046354109976956147375049698883314791533962360330107376453269735596481599327442048934367315880961356272956430641826066979930181758649919333520960621432917441375436267491024748028514284355992772948501722075029082622299666552138082071180371318318626415428581027303469796620904149702085079597725519628830891048117727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26407197797673217167656733577873249981964578018703772830940870692421600194690395463304994688430564183279880640437423078800442341700659411192462872281013608513813069578600412975393650016568153767673621122258787882914326757754129644426224885351041508278567412519411858817955565166637272586811357943096375849215319943647322358422343058503176147328419756939818323336326633549122435082899646074217782702428865678990066850816159299880227069352217803963509919207060977557109326400521844309556112058061442110129031380642862608925557052917354893219701983652682619768303027206724809733552466432727978409386316943048974673937789", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24601882490835935758962091836551177414976047327177994316314493989705887968190460186644495316688074917406407134468332874622807972055280644926014395269109476699314939800032440666114926228676311245326807418254701383527833060172837600520811793292614669440114742713236705158744939560566922687210181142972135691537858275470509746407804549982828386172501222489664000738578142076565103955877715524676508811409575348131034740986581562428159135998525735968183870989108666215211288449435841979552071724991495143229786856087000652599079481022812155903739871472745146138898832083325938475735303504903155998789061374312724448517607", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25406993694918709833806191568559588893394325214491704142951157239741276699553643007521271647653098096239739606655058883079362871505472653001498828208326026784686719461076508967956997456808901082229307722665032314809178495539395807209131258366356806488117905685081165994858083955578063632994770404592924514904394338408486090876069421261361945742820295536130808010195893823738516587837063322728550706316616842240565663973703146720190003789134419296404160430487558049635465404304529277698001035362960026422395299018099902421243496287704977078228230905405997186634872890905389265918506269610691554685037519923955593938619", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23421054476306508900132947056436287630253796858162905338334496935372420422283407405668160541031127597138766438284972750909760637048382589780313471552257334097759906674349389883972185329787486650651510009956889272924316535425195162428103688993808775776921670826710601467152848255455681548597763140669190412681596440115642938968583276525341346680270015564653111874947184480460861944898898325866306146664002942889176680478635390458914085009329716371894395435969940405507479722555411204116435991644830892682008501017499442240167891746107593463415757794459855616839689748004588941067091907118009520032101293378200954233891", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27597050468018218883697769024230282629740886215781376308447582677999555152331750163342530578539734113613149356635384929838124274421536345131198437147304568573811979880608508960925157187087788132272996946651826391029516066473903448043075944546356068230722647510033064597596129093236722631301163087816288663065825412749477140493843698575598916098991836173119038736902182733077196710893378962577703424583208535636308729332512567995846073177832600331447611384510599027810768216737480864144677500855049439309655892464988369632547495189328749068616328518957901781384568478932606278518177883784088514497782325693978390887003", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27302950855462108087570993764904614784864505856440616343672808722454176129717447258031678432953655169047974508338016482006110245528830593353514401167897796390872130154894373013537939656647894583723859084930137674073777360066810242690657427841019669921987449365353238034738034363426035679839927028839841952640799303815208032344831962517576255571610604637069853609615180706976863299160602366202208174031557163680741225378229144739795520060060691348576261084106305589267243413221336447957166202252832808756819512806818140782504742336576234123039787481523752675449288210041585134442545191965902276416064716563984330524861", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26016061080534392258770611978176521740241904872591789853114164288269586931748175417760843678794353970025312165804214189976753745074799417990806730691145147206526751207843712045284030922661966193021907993365711101922029600811056359808245205772492154361615163243866531261629949796503661726122123569384171278393248050664868662151103560622986278570441257541476274801517847086706960611161116977749627996171205476922105962689174409580649663018434594188121784192879363409613367107049301000482354975831071302877445701593052681492691342751677669624902749146345019409766838863122470038394507332367299784013150206197959438202593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24003117999482287749207484584789125280514858865355310816538823978261586612712409160207607659112754900994997885224723753882353356449136475174984492453867776830689750073333196974667481153253888743745384487165613941959009725350080503282981970443429154032969537149345934167990073006485539178255973328536995527154574329598468671571088951772423929932012575790699549053678521683759124133654740392530506588600472583226673245957913990671587453447065025854020500248387546459475864828373131709896019684342918489872121546738007764858861685252766046131419213904889720654891448428250933691472974347013564877026529011843811331323439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23045692499744029224790283352592452574098724215213386628117989625533402439735347561400046249910705779905217305489550921879882180659138002821661726117149206559206733057771204408283827819102778225227006062716718655490249405371460472708052449572160926344221217856217350701703535750864109780847150555699380964698505821416259283129428022297651780334497642861804582197454863672294113865625417390228018132105829414726758251464160673195818784916194029744424312507661232108536591052433381291858498243593550087705397342645154461954840411012154267533178432053746686551289061858047257772520544740341159091708359890856119469137083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21177305757927201046743884034639243240345934146405436892712621710556132625950363239521644489748919903708589641318367947318244468108838826623339693009045320542323322824674588018760578868061369744006788274630715824560546136838168167241833684738753505430712663288828846850980055655784327614507458344054006233975650548183327135988327946689822574791146439213846310270706797464563167210579327345751731619215845166824248903305424435777668486331046095996340678367254247347071445555669753698108684552271498161395013726974499341809795086207272102595321565676005428521114474886507781428941087686639181405252128070421574823620443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25771832556440449209945253958521028646019900220830365247874823051816759922577249228822454752045454810072518521878901099420420420773954186332946111502867257099248886005707109323942664938838097646098159181432029179003795411901770004194053538686513340248055701714506689729944263730612461418213181414300914126587173893432719366672297143121441633240634911436575870793649298280241662941022222298210136597405462993176216154327817537942507722591778295508383689212482984876345415068128106441430089352041262188601688081975499061070442721138478579269504985593553504101445732187198099033025719759850048663313721148660880705701829", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24180658681784558739422676079125014755375978719144027154622817406998899644583453509601556913287509611851930975640445849278413605636628879220297417844856209310655444038271133038696054552985017686909769789071869267627777632197278972427612761460229982208661950841275199634017612751829831092571322007769681649870486259796938116721866199876251033089106348713852069509447586679202624406394165796916246840289992550521102836379597923656896327249227513151983586386075353759518696936495810399966200617373032717194306469531408085494524747457078505134199949233755346874634054960007689009015080988313100004314342412895741585525287", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25495277391068077915235774071201012861497539093643928769636613662853960185770413381562210413710724213554003387362802507441171821754985467595702255880295769330663122237636545605568523316868270027130404858967010190661198241602435656249156217732361028285025906394797259003904669150158096477346304900999331729196907892646812577637974389001515431063078090626157344475234662378253274760526949241722949515094731096392248247666291405461417682733230304119722285893848467909135599310515176666861024291449837950802344828170289031399520427885325279688660326006216534774897983810524973205944668852639670269578245069269621328198409", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24387936759196964489580029450665792747460443167922641180643721427667509076122467446101927381766728294326885914501249172164928869916084111732568676082886923196600185909134719773192408293985276798884370109650994020974862455927409758825109540234219791366794098826413394478679891694908133858095982225790727648018849342551625847928365499471248984589041227644057403653088572774176053023237873044050649175357536250970348425260086753554688119884347010482965270324873671878257522360766913990126698214803440408451830165710522363831717411284101518204928532701788047503823439891033006597094324557684791148859975289439313016081023", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22229471867971035159571823796941146351649175149966432903605233644535715102346966072318417824297924739430850202532145331972955608859670693616765963517739377995566047436736648982975223640246086452631292260884595635087821258498738917159941658615218595616904145498049118596344905743732159646753211507666866499479654688619268947277731428783604455589158300925832381242082683587720759730189800239292700555881763646089267889821938583876729378040108490191680540216976258013694050633833055345425659717487498958497781648174970122613869389458879343181461493294324211366230141552196730761843717665193128741305382851260885829032941", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18902329008166302514351979349688626687686601931468659832117261109873476681876565582045720882326694668997718369938652338933485157985593981606419291903497572411052943943054764382692733979296518661474543048784909790291586276647611619565354955426539452845113907596907269992247291921604013479657100778369511911068519071854006568337433268247456934733348059248712950667791601131635434743613076269770781716362003680762093315969745654394072575166689634176656891694575585976514111957356599635344197858565926392183419978075571065034537612608809760701019619774254276083025584770941654455696845181364181136053324614736497430771163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20442819825721212062197628697380546847056900500726023791358369867725247194794229794478004224526580694546281072912964991247590062828510871612300585386512242488704627392797632670800605571800005723211636771628622148060173616598216788080022801677575360508122226388819959359914508771617466265185628818063079746551884034342359451996998897501566817769098721255237307335158047696773366249329248565146895037371718562255565009463235859725169310251252749011204268758797945001606502782880648976938244107017405598749421442825527212318566379948033503810619943909041432852634227995826494572855503273842976491564894717438197002958913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23019848685796423867188988451717131045619592535906505645576845921618272292136824370466518804138988339039862874360880387033963367739886525093705855264733825041825425155326172373326946877022128286288882754854281053601956542381723846654126916612730724677476183262938182640089014394132654753834249240469834106714012594824981045655062146182307754055937596599598995655181118037639853000571161733321011554822607194136143455532458480773824545000340580761889620146025998090078906228519737301416158821355098491777983581448415249186900916740606173283758158989035440493543093838918086804606905054693029641488625376203664222015831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26892456313228517221626570375594975093332633096124415603169539560443862620728635201635295814742886797576320294907249603858077960492522443205286914659924935953448885511762036414083012527412176702819530736554084799965360382615447580497821561122506341649928416253479564204579975367497570027274423615678188364534681890360621310516354600749377947492346423738049148425524211019924301280109474949217858373222912536888082339604738155558080619043003879408344423536176535501528095041656924466470808808980213135757759297901386796900505971707812290598951982029435028831324583685478195134708441268986474264533557685526036009386501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22755892653112206432089111626217970617781754117583385482664084391339009084669983596903005248498376623877538201584170214409364921749456757892500790633280703595353951779001649145501791033930464908341395421673283485223118456235892051231230019347970216927831379011319015655969782050521994763210129517126855528717662954764591506611665814398648421961729519214841794254653624481975558646976259811790721871010426651234327526761436545023974934491723251609085595156134427522699765004757975953718682773603453508819228977833619951565130086305074418794255295272424492206104601580533975586000413847002178643377038804732224152279473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25568093980944401543376357580088233903043647050795364782216320163364401369973755053248302526865675766199166416030804350580197715181716893558673182527317485146572779008709408863509052449442656956825752716240306556321462485120073385337935886552141133610485433266096937879900135330674832560685964537380536348000625347471969032703579745628399131549888899943932529795197179696682546215172195949208720138699218871458381173908440736843442823476775211212473076531546856316803258950189281514332672054278196454365406209707812051579507788222542565421747462724695398918669163693018482196683209041904027466957598940050178265941639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19787175816598897388153203004956090767892260043327812962436361654770145769533371554179408533444365003719826564837809435323129820769856263046843511962177656065250816868984989210849389163779756864570176242299112120520334221583681560987569716045190329671994575043017030617455055072474259009057252007805383366014760531190711155383708819353951291061726619126176848513655549031412565999234606178641020412089031164645403681086906725941040477999470725008200644496940257278328481835669842629950801211582859296033852370408753370309965749323940019340214691307021988751936178729386129810198091903967415585645773221984873622960233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26321625000449855053316801356872848093811784576912705067767625470160646073719616462429469892306982670906743129223624531831915946954636944844339587117527960274218105775956317639123903577997258499245947899816519052262817143008017678606200808983121923059611127614131942564893348451354804282173941276749962256828764187762042970218666475646694185667264643816991971742519998352546572896560370679447796189307380621367486664545379552935281388617828561438005229245396413890529587117659396484371945950229342855828083367973815278618771763370302333048118987941762087775864584752623332480105188228404874567175323537673406033296857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247119226374646793527262842113444478545356437237337690634592835865152938734842032780705356353225858394459250628173666268578637501205865551334236591544244995486546392851832998869425172070338197681394019623334828201553704767862669730627376340035728791445301013058335142677403166942191318909361000843674450492664599273775207063244508822409401536788136836403798224060491119826211662982276579470818603395816219161280615464557692978147586943816285949183771622591974719280740535272451886724232183362439844132809575111064666161210306908513169541133394344189499120607703024015318040901569018278156133024064679667117552978201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26913529234998311238044744555465497030912194189045939017962670913785176470294347964379434722648058978087071984751230266341403483530043686355264509137979679231532679875472606835612523511333563081465843538957529000587713988495903502803664395469993080094173320951347347283159951391721514556666900581250452682419557775681292181538469679453880449964491385069811933073247824188333906045542130831698480778597483258808484357425973580687380701801640014763651360900788716305584344792641096027687254615949818756775668620712583055661148073831120449301803243130383075924629493584119877707463966156458080377120655684822983541686971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24312181096967920015115669587182506495926064885956637896622107206177791514228639981868119893284831087359234987224071760826462841561087576611133652782275512437688437362470500681404548761622440007245294059662811646452441663875175560973289230184338827313854031050489791458600537582485329804137568924978582955454119987327984485189350967056428665325366428956603853930901801690690814211504171267410521085615509768391960204320628988510756964762207483478826271311089917381171751676700726179933742072859293037705360597227654605365574141668106396595029968697287445199017998697670038614453306404604833254591730881813911924707137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27501628244062530710801414641584198208759003176433296212229506816211779561106311997921195422164151177280671689174578803226382416953019996745449832544297483953628505894471236910903100699115202253517180956086481556907018538616890831642961255335640411341120415317484748394726336266529456246973115015724397177607451964309723457384544011110437714670208698081914824044353947776336663459977281029859721565902086117235414541306690202470099046020744277997916832895875821577047769808213575368294844398728017137169710714470096033494211927285647941175010090764018224602422580641506288231565660821498637861991505174023671698230091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18804175649763986698896863339475804495875295089648997324797340007380015550170179259851182526302017592762721391282367377662374591786043075545089966068218328049230290656376134743112699383627501963168529887737489966247701481842687537726366732024151295287066078925075197442676878006725139559574793524436894171872712848217858573243921059155216262937535551556042858095959140720069535368967069746248811961899277609668977733377355089092307037105668259345983394083201885954755773975793115993957873128399808014587369981711389565042338366721386530125857816782065093132035053436688200180724151887026270053983846547067862467985361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23659252020454544111641890251034840136655568899278200985293199454961230113637405566500753273309715316569752799693007556322436288834347668631260975111093004011888908457612174456385445000096444539467402830655540587184501536422703754889202871573566724153848769232133321845100694006082874996959549580489087192891302219705422143096304361332629693322491516479650520436116532163141371389051851379879635069457585187876894701162252835992177067368669371554138040889760045161615889451695204049191723839995433119289733815840084117149955441820210728924304530607515261158153847042601296590274609222105967433742776209210403775070189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22874113054992419941511222914503563207983248418897109479170579750108161629622863119726658845368631474478512312430479283066882506396191468112178702590446025387886751890906670921460237539659004133377961599385942012902303648097454242946007963225217774164650977784612193110434336457181748074816253982314239951274224530298844761300571229202167527546286506531723319649467035344623426672171562886067760264748456724795899591433486822854993437434531444837600475792363951437589619203580493390993897776680801012234212446642725640469841066235635512441852452440863882205021490553599166285559944977016041367227535745509235131840721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26057836992224619543826401472241709490296618437365668735472707584843732442819636152567180226638553447371070830442724375240558555842693312195768584668174662892124477592237035255186715965456235206100586532885826866009323613884909472827215886013113785088328238982972555305778181525099490700158898016899754987761901779569045957036286675192861808381082331340058232352095982563469695962021545505213937698906974514139259368204301395195129575807898416712520477846517645221132673032584244462151932316694058753738092306251020665281030135531111830533059671588039984175607248425712618752423318986128698383342814446713088983624107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26056930115011420596057184217606246644431538140902360839717201079560888194589937806360388019955644544269394067248719342059179967346858924131913708638659899857231659741200852487180417043316332699447836076418309051288810491209230202145899780079451501033722180868883207361126907381893598472006202463824984199443622453483390974544905901131915279778642782347159777294914079130725420350964377354727212303757552683663814250808965576087031368950830668233980521037171421872685417314165011971048324815462173332975108551139670006114916870007819532276386724313888623718230317710556453754067968901360631763305633593126418936928839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25549449283950601692119563352276506680186690150308297006152144203174961927484638958464530556220038870239650529241391709652510531023603720360455104955852530455635898559131837951546511132394847589835351915338107773365724822950644600240007002547884078673456960548296525445861808401347612522008668994513545012399249084908957557775440558016596272756777045143072028752015448962121626609669353814298410830622603199062855568934151731525662627614016795145124057834003863784181066168042942095913638330149256645945739092387995123278731315116683171928274680219900841354153952517603811437399119582019748575102010300854128229520711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24298892383483350432088932567027237675323557752880220168274169440240746942271500668295316693419277185691809666923307585315142517895950397508879705284986635690835790025276586715840959519718212909164606966888382001070327072187765966742693004672100691250508173904331888249421411719589327598756377580824973688645981665056321402856852319382244986994753811332516173676855219352497891167013568646496148605655816207930068421954507094011664472415987730086636067778823699284203868204479705405665662349668827377349562395950865090733843394010194899937789818956338972411099265433091525562188996755811087311618593516274114932065491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27235520536102672883033797581469837550404679603947718746372778323510061570599836320943379441026064684869016194765824605593969469566647826866679177918418467457903304787021011583375306760999365198736366024079739065466305164920837262652157474224479125987943017205956666750959531040338842279780159591907578070617761923992825374845025256662322578607485868782729587593093121446245475264465612444288460185760574568974835211054691174654906862895083353996227515633469643632860539024511391615306119432077189039099607262069132475432240429656190703165208349188347908248469981185750239322120263642030008588540290848471633264513537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333429656788613057301377269815285976126408583956146171696624981924434665126833665811904723581880585554950850232451254404264237595842481489685182027511932946332938824241314193752149216077763173709609463923612349891483328705318236583122175254003328137514982845078638619592809977166446268076643420727955024296690102672419881007366479799127445457827635643189374626389669483296066724427587426815014296513930728895872888256414237971671615688477978252736301202347548395119350427803477167948524884203917082845669067068143503397949928291782265102116240740582567576129033857715791926185822758922752644742535953619999727755249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26423740391367301089271249688313419757769645655678362764132168924409484693396256682969498468263426774955358034736602083137737982811272775813905017213058043996544453250880178610008604960575442450258390046457689435235449058839439963590162140408973055689910824176681500071640845635889745468388757932647264351569301426278103318017019391340376756459510954813939283946397011658013083007387593469578622259788934219273314715090434700405837621597263621192446022834783416446553155162037729011114645811542309795174997599594903556452318815512275004972320796833453871311768357572442721467070899863275721540740789148664683330969667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16416041316299059062266101856793800620272650264786612677495842324319649504886182935536213966373026003661550161939274137993703835072126145486340694747663817274700838449109411994203629973608414450497116503942540574753226691516587568930677850688158621267588573514637762341195096933795075302924815054656831369599868085475478518532040326809020235195724991197831528901156857029940086743494388145958983646847795539194282902936812129688676745077490232129830411799399009266314557016365303550304662498543114173451683376003342294248306273166843349473999391603928734043019267060474129302816152142605644888499470294228696427330267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22231383815867864245811843380517942939016314153703759718950251957487714399606338769900592794115282342520937994048546119017131885677694059368119750592562492827026883185125200789873083593763912356913934365289023746534792764275351366422704699571552144121065326262478702833122970363628618555705938975806858166094038445159008342711957739497243242565232558292832794008742600397459248031700203659717287784861811898563299545091603876698922357822476175909864814696885836648899509888828199888250398096010494907045221604427052007849803012869408174166230621777391167017572324568170186607105025236302945814947897919174636538675593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18153754112088014187248149724347112593745575681458187092549243111603968485250387680892428689982352485159214691351216438495667041668798744456477605312203219089565389289778328742157737883100169999202573192336374211543619024017475105163011474892321998714956263596301623989623812946295092804771364489822716876338762503294906803127745591282182384457497000225837774028057630911489409758899544173522624125528181282083972411478459239269679211228318886209688673091028740631080413216403996583216723121730055658999749048043118693072816714883001554818606998923536009467648943668471691166607692056289361699428323806664665706953111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16927831233901507790800126563204222259651648780304633613540177097920022555374127485038362503785263209976274217839336696752424009306678263818193536267268205344784047115965447547629214855604491286175616814088951584063203094120754120107579944495306907823358151021174714253231823196364809796209439691816756400769414984077408653175830632506494109851361286896255256212165798884542035925646425377674545698566658992289888710989340753788451106891341114566640905801251150670660860422078110698431131146105403237889860965534655829576178733320307119043920397898720130181625628968319725216746835681388199980190748245538392570268443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20046863371036998045089385757613462188899256724800101102022094772020163083909328055070481238607263155923846348394898815151466167515816133086758860959842707516594280016084096402017394587093672537646555755530516551179600656359238894711829573174496513668769248723255865665174132064168213522019468582563547742510876793335769355131694264539051144516113082759261935765047847314959540576303309583831724474913794384292584300251882974783747442474425710748623731076947348915853283245248974381862163089295917489120321786756798283753159215285501705988701286703083822719951338183608473028527384026218970729092460553288418263707257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20031816049890753523133656400611261878845199777140505706751983146690719751532563983274904623329578052219736311913316382084395960724007180576228770721401617082697179249015149869963320518755330792013703880323484781400341999238980187168550948757323998412079098429743038113299866510662653167679978916390567142510023423147112418829387356183288677906282588368693672907944075217020978720708809373462109957381176202987432424857150890877560361552904504589071453376107363075175806085900630278169438941587869364645962688019550346492557034227204476274577100934044016747125219688648577944418607835507420633796814436139874938082573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355870912994090770870055863725797406506696125193562799614208117246542386248682755126445656164901295687866473072405500669490650022450458076501081372684116117430750002881534223897279005025268664483340545194442593362737727907097216042085443541812437021791411737680738723751351560169117306180210796763773343542125377644007278864474587499154230103829484694400441563839164054316096453672933924866621724790809429194298839778691124918101568525667605022587215777418459403491878075952639127304944998783924420569777267777491537654123781871940155091278609329727252733258463579701853235004265441137256357150353837562445539345831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21911058499875250961339710436676697183355884076420130483285456762192887805783291646578236516706881605687896462480875696577437319827099618724845894256838189404070892810749298049310751167368992927077108579532062396070146201547549287515274282206488864621284922869411050631924245311503177319983608498833418256745671801313389592356820472199524224467301324080619160454714093016613863509183040470175555085269278510885996709817371978301230274269887471427665952588743465940732537516695610080498832243532852250597194449833320896854327250548446504219129000642955850189297569041547097128306867329718761263399498786331561915972659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341227739765247394226654793113979441942052405079562329075558947635679837073748941469231053189610093665796330592806617514830226774593408641777020898186519617517655682508435672204051538820455657628442209169797293345803289254739546977011183658778023857079514050765181551142972787680646314383802931937398021334423736106089139256811604651616296067665297564803286912694464152257884113067338483188023787342193079198867006461351787382770973136216571311285651110596594302263440270072384587972682197251259019238576334633671587477595571044375465989169522055802264272672793849493542336812254056422484241840057677170326666203729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25220776928064764114865603306036070576652565035119374773617284196283315460694765493189838956187785563139370200945876196233673750949232610024306149419003160030467527646236340503534977074646170889364472912301251663880496375782278041761792133125904725764115005480817622506677935486677179001555973435833364813969393093170508235080667271907801925236669561939083146531172344635882594448724975118216232762548265453069674961773791384162613136667759843771697655519624687977967374306413079493029146355110735019612426107857355445656800557905730775335824038447196869547618671299417194451292698998578737552802182996529051476553951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23690993646153915207024858759545145563928615361048179820293792138079179416996505513807492305121212167496025757886514809037572748867810438375799284629211921608861549049408613402797682532229548501680645595874208043221961739003627278283621268967530216065474294353476137133742222418359557599138810624330490186810131465604071167092341208499585177730023606133604315005262520401549026787460147378410281483889182114357193909368091823941416780503444748593405743788338001421367074210945852341869541429221444695284500343811540294563571279142018741105915095872612643819586809342354941029050189716775365202073329332306266569693697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303486850498601646608242397373518340597797082126402924831704500356499703171390782562999231404971460993076397648049613886324641391787126505140772587932886008002087860259715815128258854425992756844299496282503718805987838555592664347749753009543700495292213397033950788505791141591220446770352057823568806223630346130351421372432876151814683951594317030684841943005550784681481028712880307714479974106292712241489420676129279499651641924830422052113988951087343003333439159501144743232365745403832965347121885312938179479815778475683264930939793856200189477664329092528913552579094370614028692321954331334688787428353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25512455559417018296453346130002181486610734972216976270468827919976825690642892364062655635186565340818952354729668815215128821494660868403370770565100200568388255021757496745796900036957902527873150883967995494273153985937509360395313154196850912658525675218326788732941395589116203520105966182758945286401842009525916054736253528805191617005617237675094376669350235637192363471502107662312272657154265175646358996762283055916061737615703210822586303364652536870606072005907011459806096806320352894430377922583595123422073586197851714697943075608604101697340719607567789266105209853701088471898851135143809450749513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22294001185622051023430186131784259501818106185340069430267987436925219248885072524556776130846153917665157109405048222419957642016860542346021968034374044354697793409383295063275478239616155642684910101102656873685055076626321949689960256040469313052399942969999647530141629269955739921537161020485667856371461795925360958024626626123980381271461469124774674280457716927962838267843405004505750221399949261187236875136835958502847164535889606602406294051989258287508771562034732868739946707753610110927003694247711475530944432833379009089645705321623055855898976179431957283461296118719947084679246835010222193505769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22392555817876367755824153750586091474804406544748005317306614060074679553211777758304513746085082797986087744856680723240962071510456296749701822148830846592190139994283635422972709904582641415860953818132025099385573251195255540107133226477839016639253100066698154183387326442511031254440377000983976129263104627534965636131171600995228912561758034672111813542890496163728644014241154671379036180517732760292712166025519555119420600156160282603876122233739045689012156941797042360054937279520848296858382766568318277147579686255174333737043793332082723791790428936644899277513501069825528338781661197596617221872683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334334651960623815965720111774680745800093879625808761016466891593209998499856009719791550404413668528370255703128100672794481181902160103978096684708917449416242516632384395589871755614740071973112203376946323769398073109781891490101708254684312393185075313853108935998836390239813556541949054875850677156305976359123325466332821759087317159576285922857353341134273241867588873994541747661662871279750143169944106247207539019947740850922142576674878864972214189615629130813956571254165774757209566313698571913030956316432881709351227972511170070483665871717088021383693667733236437433966230598216634435610968024613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25406874226133924039494806592192722413834517562652904436685692991659708731129124934783199918936434631647538865760698260689197202809969278068020774803655395722498552382286703239223979071668266516945945685734275810473187189391620691749172921787820720054352112701627381075668037199217423450969822408925966542474121699242667972728092416532528452396362744595131962599624622443458598205968718022668721099388570206645408456401315475078613457929393497081313864328497071541930836727163490247086333720232996433011314162479922238451810723429495688324542988538429487284811066002137850972826251432819016081297037943879081003479921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25570894008594854217872283204082793146607469103331361542897658459140502625237551789884072656134372586405733072066244720380606195210753259564668996896571671522151181286491672603012479636846238695406592095070883116526519388338454967033089160134582911848077555027081392526435547858868948211883622140946740817917181425555714263176984711670597178152912730606352051117294074402336604932004732741573494691575586892518159645397555231758329622067234981773770485616359777159492108899402993433542073752475254352546543221196029137183213048007961262396955183580130167952873144868323257683270740067940260301746545251123037019771893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26888106815513620115725181339005635060743828778603791689250311521369487780484155163142448594306529008163856454629255238826702165222191080200366828576067092361820392090222362445080415736803089267462244297890411088308500400141919807794960231037211047026093438129869197309815748001035723247134907562378125117132412355673426823968295856747825752074688382097500214615733802737337775126449778963616874141057979172298211597715095186674712929935681643632544669273923700770759755725073920581211648226367947980700135926647788635590816036931645979503807817596024090281743256901911709583659243465935513656183748617617435820423441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23696877953451751899155079101671242574738375210271442166080777819438128061698271314237492124260939526224855861069676221008832202839408041573932072966740374669459313932208805841219540805339632260911185872354366362713234066945127516018309885749961967117589153079536624693276268954712152260251128297134669958348851354911542017812469266480106786005377579232526978065837888726729473702081598041875295038533485801608122686370091030515207819766270824574114136468146198088824657209449933739065825202341178962023017229227813703474403347492692790959446735703050879261417741193134316106357063108529094727251384652614741180428291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16351438185071906376340646377597137655678063804858510749171787477850703429305403366921017269255117361758501228993857589699245460759641674524646394573434162787503943631813486307868128340169510149562079448769019323443325551955162193856388036363929582510935068877239496882405362530147514823532744810934139565101417545741763701166888551827315919982237908989532258488815537029631063695991290005282563059889613704989692497796921832971417540635367350631714396120844290663393183678251881914961800587554552384343055665899593102184923759829824790441440952886204816871157070905519773084979249355764905280572875860565392170146713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24692070694173109629185504708482762695329991023924063758464152724944096114844273911861715626203092539371990346595754251452672019333218186013207406223182873897157717059116284161837116865776008755022130608279872157105429948237706963539831136166121930608057698950388512068622369643789365463250065700434782527495145062556462424697804418703579829603050737767088285957452345657315314972489634127116019311761221221773278733486336714597462391116338196605884063179431017636246774438074803116269278005957784163680417554451910528608793216567767019252557182890700457949685411264655298580995295746572893174662017186500428017032691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26250295922973927959359523963945690839909788636694261088127511102363029823292502255023286576173838382316803276319179016454021680041687432158353769100402718494263600953753659347346485384765049666723376812538422514212512371610025376049735523413182179922650441248256532217716767053386488377233048581958334851877300093551515800844855377404014319677122430006980231536607267941660350673335526010142533191147181262160803581676140789087083954332264143247195298868975261025712202349892417897055778106949728183802095058908606172545720135191174541603133129830600481079310643840764592084149946569682690064637417173697808181810571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26772290404896630224578319591613052368601524975794529155166148474524699727491840407127227642087360601528072721898830156495712339349503297199714377049201515118445777042380489912011650299712142198346921452741083052982582433496053803959365008727810162618910100605786341879875539193744274247616802936555461587539689226058902181419875171311704380493648634794025902890648185179560526413667852345900530470305650295837820741076360472161377570235958440346723188705766600527401888433681502205122263394469541476938712398152446970272679460484214263131993379244679705996607678792730664429167495543196280879927598617487892102782833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23081377459604443072267931524947058987861124601973446806692284954998697133167992944107089860220375896435823919875222653145799196676935805455189155878278961666869081756702539677676587381088632441543931017902401440323265357437341955816777338890662256070601198120363447183484718162792805383938094477914214299188504153886963741512602855470577221643971533558024070814079205423171420499354922917458345253289036509400061298822652263364043007946899179572924382769039016277598768005013526516960202439947031532970708637855124964571014756880714447118122895972934724075698670661840629895791288303327315639109776716230333691959547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24642818453214968144250343438630468542915882086111218441592984831268241044665831820217991059775691329917621305988492812195800972601231161449864741725792906402628220875363073408558789805169516818314680799337733217643018537353621479971875966893546953719655935355395997536841657151831052992139094422061553483696790037967130980122575892650634948202021819395563699263779248053345528829719865678272975557568253181174776998968358797639857175325309810794719392237039749220662144972672663451546984704194790906322323398847934987141381121270858180437256700297356475993599215062118925375721344195058851836280599862330746561369811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22720348211873164237685604681627795135835072418414411495500499215386316251975632376578821962268359828369633162034639153730461339690607716469843537180622678804156363347367256850185060766109675058423805303464777456917327364477454072717355031257400314435145360437490346779086279371674764611667398050399748460226556166253143447611628406859347340995671157158098806118226331867543670106760023878200134701385560877150629094535078837955802775121332770978473960234558916297247042531551983875010417153270839545933634963092770007898644749599117641169774060091774124181710852592873327949574791374876039408857164878269906159353683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25294325589278287733632950105922454726953166312309503529731979462159698964484718730167317020227660168602799690852548454051882950862068031683851629514213663052230438966712774753951708763168466771901407250625804305923547100174768525679263801592177397432682462040987513826270884592476765888417697949337951697138270084554757494838500757264180339399284475530272087163957280255102436683949407578626246585249253937948064168999646282770370224491546520050922595233776175165155125707105309056743122545235295145965685622107430607575646936503695573401233580275654287416763264513308992015385715596238038713035575706855801453778573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24946748078886661654833119314041752893925205184759540095934727540919139251788521247610543552507844504588704978711008245403546600601198941741842839153846008602812007326824902261099251691277827838906353990910758859166669363900012008734130589055432105576267953365387329984465576100969527216626991484721798620748552543291378929757893483652899966386109191720844632981378829174362877121088322657829150614063162111735682719483544876530460229333359457619468924351631895403021567470821235614421362083731423108765759125670226039493158402480650998248983199111038509142123761476767985996744163084430174506236603206339615528324693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21854952202100324758013754392550623807230532025036480774119056360569997020319067345399482828586317314654964408767978619130536892135628635113464287891555995667616919315382845533839557178744464926512715571554583485493781500862638285803323440021559608280074571714747680157583409983690502773527917454283454797736576557602221825010710276259011955962569396105882774479438330631326059758440402423893773994924663210306254613959785358480763270771355758056286537189679631795077149073603427835875526065068572501938123675409973377821013669674200601553924819223287738067565482308744025283963934110364674128461189200834034758831133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17960200922937455968395062516743890850080542890087397406962747893288276892881357728192109362025730481330680523243477953703124869731054735698426767737405896951902571934403386211835456615286809129733158472554573869606502395724107106895536567365491648885319214677039274429619753591416989362894975095586678229568211650265054961618966526828512259058213703670210026724434432204964948386929854641424719067371400278005651430882584356897251417430998474772937226871709054596524795743159013108481617209220583328662315556353951461763996489011705610902694165588022998376555896711537651108498798189986416189408765983637993317121077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27388329058638636104557457779972821547857570987723452355295219048612917992082180340378699422653072495856704643536528564891337908135546139554991504609682671159754897450222742546131414860226728177359278944463157625102528793844275313043393021609832229698514565289690272361978279193058210916806692144816086023991957980620808155312884200388163242224816547957319596793495534677166749857813104098745090977514095947712747825350736870677201959123063987506703953920805169215403476768733479126194791081135187992167687153350754151006566559761985262750264368274964156811596046374908649828272198411499108080636517944287789457925321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26027226857710964917936762229048362123223097300999419921866620156647414681938475349201208510832345098114536149482666428161684941745097246826819267216175012181285744998766051058895660220895298469266498490389558685607633232767550588717389271875007034881566513295388383612328390498878167511047631030284631685169141114602943153984344020797058138807547970635755705787266135941231339535580129343273143875401267156104171461807823222676470359216350492095684229474304818680883250269904229917175663941106988208664453562973463488306693402785474144090131333202831692923932309355560818834532116788135620251721482635761147382653603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24420061519609388843273175933865372952868280870373975838497001090500729371419800550552334770954512264965043289094335747506810707264961390767774975760377735179204613448312808955990813973497116193662953905501219779254876939841647410975025586243062411753542371574688504898168536742261418117492504446276827313007487856349376394757541352891502993411500411630074831706778465636586671635695935569115941263933032911752793842292354134625259249610139408976655660052329498408009686812348908861311634857174955078205530016654255422478141199712203309507824269576492958205367416730441215261900859017126802523777946870437300158084299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20029915767424400770436112002100047289537569409394233937110442199798258598434666586421806093970808160162491054258614759052444172910970033556025460594013584801748207755912684309770678661444030469529727070367295188440223148363526653940696036293171776513716671036266559406090970507940959383013670780218686969554847167117836510081198637040969972292363356412022450209846371337827826141056846201951688719032704662629382721606262111852040441321302187852724679606227825322226525421715672362631711424764483137256476692335331132597072356885825175717943248220916745327980499623962615073193140516076841317977886862951724426123851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26242015291141516030755842446315666490946088222284120089510542441754708550711603202194227275878048122435227636813654885161492715952607158832734888260305578338126308190082356705404913313739750954554537198077553169064538168335063149020873624967215103279398394971963531878272927893808560435844028884370278418492456795544118416981603231223940338002478417115561658510296422556550121098502821340390716959553403817234362001575962507574724416792593246725644829902141385843693687394420736856065326532103178067337667018725578011748495934797050444629257467348949173980365234421549249109987485542834167396040448493843768221533533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245549960082781836069261793911978893305705346902659004665820341027353048433604765432204673071462387077234087758224050372612801453869611729879389058484206938423888523400292143974781834758098491512619104005127325259588996291667695345335805904173191863862062451237501963624908110651688236865966012604110135872877048938244270144952000697342674418271397835762103779126014647631604867920217572859261406602619326954095796390625687549954142796001619239592257997004917407481970448862826585473211357465450978167247592485328830578909482693145857785962245098376455350388242343957644362869992913515173501316710986130115448782233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22594767825775499654580167517660614246132156595855240860138807888737453678330411851205444810845348235856321188614881904578644057041916135145162511977432190173354820498928130381753902983998842040544730078135603409049909177140654938079613347988695343141559974661656667786265255643953600636693099846727918397381288033781174285712445697065386424176795712585745966898871105031223379350277806365784760101305781276073797274962075400893510332629519268703487352225320160673526706682504631159212474170367532311687708673231278632480632318086904907143076141932622517312792695901888089200862408638293304538125553785816974968077543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22881840792890658339972475073249405707463998045489559566643286469800750003983535938127691819398841010026970960834675551663178630979948652639717740695614575344285742658092415143931700465376933505446144038991156813452652107546836136685625209789272666210036928375233892161019256908396488786059090529609964900426377262212999062225660035951161378036401254125286459203980344063723356606486217899312941511952459964027684551997197521862416177531748356580502615304381884529815203313011026585030321155847837208532146148307379536055773352549937253750136333489599135789992193623588502152301347211789228260403207106740957858536819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300602340341456750247100451164353212860881672348863835855844695585488838765637889725351793807147996191728539268709912479089475152655837771554663983645750841102897096610818413672341669504888964619001354488307710077833219242572005618377647938176661726383108468326951962115281602552309265559478781268576426857029289818395748138783801251832101279610351166088525570432245776533108572749696826169113317183282653345406954744131059525942371288752834129295542476545176217289316368660802559944104000317991898521444661029206423216640970963308814909897493131843079033338039672245528397723741533339800571250433743941973279755739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20439048760897655388220232322738990444016814704442959074541741401016964827987725204002303089835198581462600266747183223279935335992305972727567450245324917758100071079275351587944870708784303061102457165097166876819288761028065291714132197966554611262161669260876417811728567769220380652035970439021032131279389174907239963364687947225328676375974113110306678746235660809188980046026348195676459585435786028852113954606598847760917103786748843432555824020803048554233359183201907955697147191340494611704874567838471877228909488644465839610639282758155201263400535132463067609936629922863957475496502070197174945424707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26402659745820054809668850860496820842874479463375881764964452016551919049040417116924253254157470698628638110649590247968363177654930874130076437688469022194904044471839998196781276030925868444580110440096464578404469880471880589460820117352619944524164236725757533889569849698073733524324259154710374671608918354770289750946264416218446741803129267532942244394296135467344588154438691958573950733329088685128563563770116421302748532426065169724022096064264741433594613811340599579949229231364372833877987099880198819154543045581621896914989367487857574589291626796804585601883910609961618295059474875696033820289351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22135962893346117079171682612635061130999918196587518942602514773648757259405834395648634088889253822202213939410262241667742535751314853548571626914435100454454786163253926971819045455492954302431440448024239920815285710286798031312735744376300981554991677409530142659871761518828584849576653372068336241953291473653208711640810774400338922703965285525919845640081151547991162018697021457365840012684257769168333974063359723168740548708650513672950255795293020055195710436496723935316403405270562792460228082130498778321598169948442344866623287611795809149271876024161798732103399498959210629476827180832234838726251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25632701613229235590187995769378931633579173606509362264541030077201183211435231336934660376060735465541008431418637833390032896089036350204832313864099272714291920998575429838927979478163159902358673837404749681720383919528331356786049231455747037025807148988690630348981063052764871878342367332626678080241097656658717986866427551330985648893167138471212107357147218031874061209351220275564667443360337975976005734276989028062636429174539982251484890452896697238138996602850310969787592997384804645987812075024206624657968134018237502545273038707608884593235209723203985190218067955704314527296641422765234085623511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24690434156042153250253533365687763472686733468077042542916122113807603242796855720786562534528339446450107928239335381620405740768127994109785741851035870292194372619992492198093784409966675707892442408718983950328452615869997354659017796209022458932881125607027219313383912529681536152839227958805686710378553931030351249296710322648596229433661515760730525671195017022343634654945229400845950891335588671297166244945131369079123602356319707557921851462593323188671086337719850514569541494367472155038995398545573945854415352380495107473688953954885733800225553363527691798786419191914600803030170321993167920260447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22229851968210221455428886011179428973171527723114119632658855763701781952937686738858860997192038063462197495879673278582191214757747307409896071632137976156724352779284136919046040375509309349049269762844874338813747647453990746022545277075266047021563574433793284817030242102351834893224671203839979147146434035205036396901304895032452572281450770164357512801616357106313981336225959759696046898766440208576760340129905834190704870543542568328136988371048176389851838730512992258521496283404604684457436337484109183796174002577817245672201832589954449906598811047291268807359828374518645325959751568798403945137579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28521467240445026208972665723901323913402186088466837634959901511231259349626147644505863121494911278916753863840734365073836856577822551195779543027679057045323637122686569169452132325994773223656624576647330702966832712511776367238641143595179694788269437464784874181672451300604326788398574361383859366820545040731658420304008125364692951475181719190869521013074959419457998275494353791228786114827383839028063368842923745301096324961773426549230860020144027791499349121333808766847649904520935814492007849313643938900680435547400899138241432313771281831905175971251748453909110347334051625071207699582822338247109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16655043319571768715245383073554180103680599229051104633280642572766972830909780296914198334748571939963973605543202909910698340107022042255349446534580161474073975141840845662112502665806230294399330914122548951962489814342765473709767314799594620494495767022515713240220562747962340078532859384923185199264330827170286161315093210557795547891144900600054976735763447982748270472522701951676967001120571942101344659713900703651065026720508542264556032650360706741022668108225979394321949462831885501098224002867994668079136869528843326182066494626566286717327600546699972584398384881757962957330196678651592018089921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23143003623439696335272513782172034437507975262687429289111224735964069009300471789231942965460162920048410826426582989300973165427121278399167784967559385493849190068840815585540902762821922481252418046769769783920262284237517813086418546984974858130582266588312508100877871830242875167612930318408432395855205866294142956170368464127583393599481238608191400872878687512544746450790488305691388969746358481630264509552395599148403700905244107060319775463038018010219589547049875637305278183308336106283729579125089861930361364989627933204385648292225283350798382229199711431270367698629730029645245206723550687388031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21212057354969301883642627638577705898606790802467798661859361397551512477917041779448733654093699616051375611146578176626563574114300225371753799635368122972423215117374343840957024355214219190644272440182425717819279242771624469541424649140926165469665381582410782295901328973871879183545998974745184270128975987435600985018207274839691654143566928198543797021520947829880705091045583386476238463456350498230974077491147439602204772462657479974255155447044458626725401039768478594822447321860048334856864254694285715325584576489965931094159369097856976222382418765733259966185561483699435624347970324624937603511607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24478652803492198938412484378513920008187256283721010430208002191388361544548181973156774889426517721201842660867846783845151762103045013845978214475142597460460197255365011586087562561831300105864100301371410160484722314829389663969488320419631164928228437645075529481610281310333613952191181394755376214247195608628375574441065015117340348415801465268897976045858029572716503535338568111482624597503523464031123817466400623016644389150967553661676626696925944948009772686002238786245952220346243426643534431560491242581257661073369308934314875895004673729328640509352474741158995075473020485582325478408457986464033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23136289485469557027809982285979783957827913601514471188306353094296982274107504478204858361260926104553725054458661035953102455528384386779715279412994212705549643529097407778976031665901192050016110304245086966872515066778573137714030563360318661661113571842020230488465910970943907569013202299288085087456941648841972119515345608089987543971186824054667325018367518057596432146152309895043049414154281245955832375079883516611978327293336542173077588118700144442354863608447862032280045445813258659886202332624675718617228391848801780734196080457151517758369592657426976991974796950416588944095403958588050861517377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25026841552502808927852941763655935806128763169929147377288925850142929512500523844945248939094936184505201504156014184533871756356705953569200633886592121167526893454466272200848804827726792918682347879731073237130047432514209747477380098235121832313884859993506571268756682926147784338200490171502718996005305159041348830209371432449619355288784559314064755012772644577154021574277421217325719697948615343619773652494137078740831942369294368519181850438148717600946142091993509905896560018386566918907617440544888613243420941242817651873032570943753510752847277564568345644695461510284335454151055885606576198528907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30222091709243290795600785679118777549423662436154939720526862229024074346456873113111927454649702635163886444200435122055553021492337630364171340594634707585610531411690568363451511701608013283515037463614144402333851826164805590015619622426693735082197208764604900972856849855419943337884356238434392583033394886370236892719620884489131796899868419779216565878039585019469706161120596591076046898489201172297400404528607112572717598108565629576100232323423105929804523847137493505022197805912049272853536900076872161284283689589356352916994540783710868150595482606407198423412786307808099065429402808514732410518883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26696719923768769939949826936683679003449806785323865792603142129087271098414815075807919885560092353425261601284193046538845086992815029822139854509032828026573055279710464927964851119796482423367964202343388159616314406178215892334750768701266938113072153689019264920454918031496727583387971546036711977269462187754616669016200472162294644379788626915677156257879340279959348094620387550532497160303650610077930969583457362642941034150469937688715711196387134712094006639639723131440179203986121452286406658351287266832276139566393569996659932423105315088296744964122534635471627104392011180323479976325634639530803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23353267160481552964203212247109712537300802310563049621971608356287187896751639556457646029290806841393018332107852411862214463666669683127186830380491749859587966869358775162339236144352137669955545623018994507574029170366461822638343566923759703594988227041377919196921299769275401222780138497753462120490440615984054334824574452443333709446955815777005690475670257615699814585561203969572122310783441485143369900160465830850121179642710914536879907835554548593939493480634975714416025766449457503514635746432196011150715053697858887546044459121009873330306929643485697302732828392328664818606106291107437728097601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23569546866759807180199375615810802250463239169582171978967946632655914054923023323271938461568712745657531120213536911993820608244034480071086806015747822752936801297669414436402703878106109594380704709376232532880802252125118353892713580099749225165545414384665817316083530645323027326477741058398966187449563802575791053664430202255894320150669806958911114439756187025502497097104916621872268208209967107165929601612249899046484999677101586535962484957924218216484163912669178308738081416694305177933907473142351583308329479249190611427308369790890909059186495427594440275076526810806428329928526991651317292649209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25325447209471935132135027789730983672859279824069192571121553655325655505765323855542788248572807270028213581041038101788769615648111701508596016421068489367789376259318531812470732620087232032791041783132060859597368528221018662716801074795774627632007000379453739900292696120948790535037000807746703223630797898390106622467180974362004224547504701003382111849723435121250158516225871290494034048154554526159272496589111978842582008786235969383024779906141041289804940418962459933812793080801417262648943793743708827889492518634040526498540776723896830450150415520481682132328563742589245550856303286198807358394981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20006799338430861628289105075670293505870967001390266203377463215373038725408759350806423284448159863763380889870914633439384543382736593126526547059224395636306576501014548013548611021927018114303942903861776868489100178952041635252855155971945898365429331229922962577417084315167628684132576334427363549643983275675061094966878174752624946766154744481764836492656205968185917922610849206292910554298960574374240052887508569026252946604659308573070069804212189292261116024618784964791237402868436537246618654333775415345098614377401070596511861111716548275566462536273328814663193820810090555748997655264948729018613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22904486430400966026534316846208482823343053754272865452380362249504459649979268400925964338307543657585505580682255082180825942111006110561677446815272338030469389137322101836578226749153988723224056699553008355599848071074184381472057715292471581612531861942998475114063163270879119203231656562233015040431772192752420405916017957780325741172063786302505806436209751048190385306778603748982328639495234473693652615873346491111491989667295883227205128516703670394874238588019035373340194481058578962076973401182036918614322041396240801257207319907645566973758274086246638228310664745955686045194030672839045574160817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26595434717231141024879321662801868016447162054586092982730213482018280582824494627293664100495478242634179065113096658580783424120769482423626603005616979357184907388268165401181342297448972799444770972357663614089631237787775573281780988304181438802883838374503663719491511639402378938700746070029400943220019614562745291641061365334318361633726410877774235043569262148075190165057309212902252210007762957690489118686685377389440301017932430072572233186967855149216379193266647652747289048091650936081588043338329628617088372421802268779027983729583262670748286031085552280993947566668802786422305685277076410342357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23471773974035685883584417945467765286855322917937873857348278019573545301818489654002620775316818368737688256526193029893003185270524124368386702606256050887682795284323157577703515851444250407780861098597292117015888813046688807349677459816274843990537477956320147307762951574732597959412089889917465348222626777858507015002603124007623201313697347257809562677003050900195151177559387396019950290580398362305912204926084996117330523202102490979014437331871811889043708876091677697626852619366122416187388372761883683690299207187092619288892878352422663667060692636589980757584785582629610310928847813387141074749139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26256005962131223027797044578017310665018478729241323091203055143923001885533134968452074697548112512072269029057623912926431472552053799393047014183360661019535827269366589510947671812764185163987319968423414741770243370236601679121457958541350821330163839620408792724147224387225299088933650683634275835185681065258423164167013111162513862681018826306013340880541896983553029091045957096414124085431288452302661678888955808763269786881970416813234811289360196154505925172398486481425101203297642701428784367771301275819999915633505476763361933465339306200939113718160231941718283667568338204444591397066257536082703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21455061064783268649860637688108449511247330403768042707192668361954049390098542549663038568899992534688859194818661388033393507775941495038855099441371225727668422402649528265653857712374299313100203952422154434290353208205918856616147643011443906650441239395282489002748989989519007357969703019390648325711238987518662151372050220395350435604675509950553267919822752173999102842382226840188071870628058365520770965719547381750542128136306840871066681172562838507024351806197513513114721324006631368617333007750476925402774498768758599874660613335595476039570196526483460792695323531829008352534047490318156006417023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28113902430028472622984946639099093980143965452918686214824809586811261412797714530249995050999296537242024048102730299996943289608767569457896789986371723381825526611803599548829504812872829634047644394501645856176111507084645334319908240936111301454263684165132512884805789687333456028709434590512160235727662264193161560148339107901966454643327013247342467542173705400161373837250171099796604104482498409235100455099757815941246785009300956613664650376090182545332001692788518068178628763334150319148097621307904454424821851746609978287620954530340622195086390773227606969187156267078795335124705152254229196893563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30079043047320584645189704381225337320473786224898856438227229387116019314082789960706371081471666306986760783770254816477518428973675679930258951942339553084856202518035396171258571515741961547479079429269582915264047072300994430751356627610291639303704588541708149731996371848019565195615859928624387470024633071379360600354396091507606449641954129673893169998163586022313103927481543439422783684652138229561748122222545978316566814839370751452866938734992157359006421476113176325078028995552311345432708826735965375048843555965594645382807825093890474026769558228862988577790469165086068905454644602501686796509657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23615806189754787883261213905045534408321886539797156030764313422431042792581865820371080205429889893933837527988024003317253064346962246436617297959167755457421465853053321675838453331408920573913423244683863362931909155592572286469761822041934373955872440355032671016319170710117622459833170478531688242792460275461828210763981116483236531585430247624504011590660768308412232612060063481964751727641320762736432427915162203256786743432035914486242822453185690765621349905977799074225543760672016331855426079225087894914789126267231013915921762571158036904799530517457879418329652132454841883979883714821657782753029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27825185671189235139872400127772466877312329073580111932791809294732560699463504269766337240524408295711785002572815750313528799332106759250391076216211192759637950870470923677893618241980768007113568773174990882997870711296856421356741074354980487689963964346912387165810901825911282983661579522944149092269421109014888996473514606042440338531035243302082093140917335378319175740996203455804896861700067872093553976931786406898975586966237675692659769894039329686788054102363229096025156800620999465699404409988321946713824634019393591502889775161085935774917461224154404575470704277574397311163590357284210663208041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19729111994665758888202859293881155650717205535257090202275869252866167029568910144882339214052747182500841070048001900158370825148855567196493407844976912290408485517111478941756877151494097015582122519883595186247190883544071926852043027588986875125974677649140762200301987091129607427593822690415989320376960145712523954417327810640214397896744596659479286970320303455479749069619319820903059572088215263655082394203635251673175149883291513748089033624691490265778851815517990885410040304414561505110498637500716507536458569661917603201750899718412908427861403674862093359012046666847491728434019542706105628620541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18481520140913672524860293530330738241156377007308361858976479659827349782393894865485921337948481432484966286101168108033245364172075652117178313024287757397412610312745713215068938761047945982248361021357857915265558310479974545934725989549604208483664393600736212805640627302864196417289921149758008639830574626308490729896441460313030468741714844430617072198338307458898454944573358677982576595096710908755330965727686651843961370514471788157564014812867683350283268787343109246180221984094333361295425001172300040618721851534735972698617744685783942864510248417932199303593611706425926623111261767422413425268769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18873231243646550891780246129776798358706482001042594744140277701132221440800115299523562963708504591228830724828660732365555073870288779809716029954589904806459025896815016538491822282193736746087656119685272571202655645279577165924587354636823785413515547552072891202109878916460639205485567380113505109081907514595709306530030723035737722577894830644310056143655836081290004769774004919479071117496996320707706594032748009450566710331175561337836894825403982569168575985843188745883345383189992186035587360975746099982825782679897741427618729180505772106743369575597651315716355372628361397845830729337842745334319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25600856158372582197132315254146447301925304427947665904128365445746571907454532694378464711530719669383538996188162311343650613966786459936144252612287264064183969411350815708408074320857636937210959104162939311504841082121287133665137526823372496714818005096554340009618526263495288488062894361921677039431078682662842873452456268203172375254600089697461266898426156399400794424064583234853447349469915880882903333584591589160083996027698606742674274093954192927532331762966910474519416572496642281400466828978171031928643306436894878607135905890856224341517393720097276154617936932776948140410927310727668330893699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25471710813855344300699265765746211507196877226386508331360965956737888996686612394251932499769534186319415046265844886986542144977323827588821666165904578331197159825640583552352489861211373234316523158196872986795478274165388399565519885888908727733151551498679134023601429872170183651082579447546673311451943481067523223163295747257475186259668297653675590987289851027887508482266684055366029265484386154969867368908216095590479304344628124990077594330013139728193823425283116578106422478460620695704962708853192652732246613126861570255888031932760149424380070838542911597234906965121199615578364606021255401274721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26162896367732405540267536440959961881944987507404549553080258543489330988376283652732435110252974181356888367770041265269658493982060836191755982027340139673369751321594368064796335570643009800163212120647093918798715054910271387785366343764709220837966276233497531553217498731613005230264918730351796891218180801403225176847250839568195441412123186214007435603462431423278459731967223148568222796658722994381445019619720251851606287134430879443556139378869522557320706905869558532916173066664910482581254979982552234109842889995299101808001889600584176388851040622795260920643127762515474632738926080798837815763031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21031872028923052326119503447198311556883916329269126394227555421501945431130314746555679098982231989189999857492176128869056716972131545187042452736293065486768126107393730200273090359198891292275073660045443530003301386036350976043655823568124377268954709159464791782623254646720001138073680317121320882900165527967909417501037900030789238344766442438912286039566619541469551082148697678495273800125543115523890070159333742551189961596590010783537417743178099019995309042940559649658381051051731927174583948853555881493772334613906591238862357166851511257632200116679162780172644173005367322319997775401295792226961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24496878899980940112708231421464424235101747333727554907715482159705939515497946206978946992794045233969301722491002073997009858712878580051511137660061354146653745012491356231479629121613506013207683655511194480502990070218176463734923830236498977439978384242138265848147320067411236870052303180755831008598846430154552355324645349989326905319285008846480318198102561561565838422005004563308568783306832737555478233170323787617414601617258152573674419615962928501592162740824420479691722327579846940213140765720741704166470551995960603882094486409019742557565581145946037049796283229261484105267715327239691309500673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26284897634381054072714239156824701208160185349859205401977683252399624793207780540693277842745251390475833960858554644261530514776584827468841985694356487492867243926045845346159469724343539271170648478773519137722342291648498425827005865362183010483487139616161330969969378232947959038737907324733191365005280543922913286109730461496500048443868791635550481165323776046139680133091908059083184961411725485263820880126360744055702086936697065947985683107288778349256155238073759547745225972355840165995113252909072255503671735541745742570847232566438881702735761899859357579444549157447618362399928393541801265773301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24215255738522953748004788724729020691157942584884216625656934206299824520233076130917777577141741498609782837295462207130771377346371169046505652247939520857247169466498575392226462402407906020191830756729523326011655201311575103702199607016288690443930810472192345601022868387980306306640640236760678217531182057821632130053087042672145754812665239413986249337303514240703502368655339657580096542022999398877983723427679319102093115064457109082698923692310964703398975572764166750703683266383655252253491951944147098795340900529620941072031807485647220476639400511533347915158312509988439116434347415788737888327179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17133633680251211926851348093305506676359696432031275543949572273031877083125005134829094942067620058377595736945403348682438120148588306413694071836632845712298149256978442537799406932226955707647806804995124858266298773180589116339214813312680623396228866326107861398204422795136320245323388861287570831577415536123693570611663857151472745907249899521054699381222124226756742810774705474031193704048806936664532085612005980400305669692059757286245128834910516522164148913287997525963936587354814869612273101337335531068634906182880423076077415836334013642648209748034738089044118860399440715403546408284511230980993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22127776512722013593989902203381107869390795094157431025451274164590911495068646212831746778905364919162959290770006604882300401889906685813122168996574863092207330873606516775848472627881178298076699910899027346189910911492367732112833280537200101418714768048568690773293868578669269320681119427452887460949346308663183880600359951050999820255130925207422351961702039350694862013032941407534285515448344293832205214681151050288714726901852341031925453763822752274989944141739105761921718907709708913095374118964268333133909130110442900830053764674818035824082184784012111345594834403686563504847282809222455195950607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21719858409597499614187791739970139517307537870515478428833762548385175658862026763411209994025686959264824208941826381864301771107879353369067818387074861106335408545430548459539187623539561223808344141385695492806628150681653929103537020072843692515838141768135103365992828739384193813871526752999384707114081650580008488410837451063040004753126772660339641553404420707731151824566797071149907348449357873297062185231742048508332318433806026333965570384782051830000918404165376023266814774507887770859017445901568087265512067097426522737493281876376549899085450085176645522184047822562568296555826629674630093873479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26796612096220036597920522406949605783617493181410756216985549939682380724639656415298308906377306473402795468531837933078681625452413380428774962184873630795299765499321992802489998288737205639613672526085614949228420610889798601296493564114718745726896200969263419546546330298115102557787729128857917877976675942711849895784244145142802766635520048551038484399406674899010903528873752106353306624325574255982719864455567734023388770864594954581256077762733566133976519004096738555670583136237818355119278800328952532107106571481007387677700020676990776452382910226252640406627588181670086071196395264056541130137969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31347394046279497885391611500412158737377319238444903094220725997005787470396445195506754078269630581193063736302684664032649217073949153648303010179846400401916595624955107788784144274340086082782766725817003434316952983911523903312447993007539477169619199651561060806094706175356763790181707482271194143282936039261441122309378502255917073002395644758370537820385057458938456023536916108817661439642143981758237892273304341657910810181718022547932950579965131623135021572580007123350692611092215221774768691107543337493640172783476598195443892326164109391811738286427032900082387837381347334354193166902494598713747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16416540810246156761714440749090786362270837112782620027617381273395552996953644812017967882418794249325510565176735344344990545535049240165492724642097882601135698115281543129082138401457044868784060187674997709062360866094907452554173263458330855855156344778031744230993731349182693222923457996827283800139719507749729047018717853126232457738801480037235736382257578539564973128513390829710093245125230978891482435388791105185055306477289111658218114581673106816977783450313257353837071322330159560210996434253817517300570864183748166006311885461988792970799996647940533266218895019493458161072458712324132421954051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19026383167782200995736566570412958627060433781520850307670088363768478474468432538557027156758019501034901755919810463051597965564311872257958097694053728401161949330072519736712465409273939854136171420044484429934261417616156623649550018276855665318774817357673064202937435040048405854587201699621174203062195614497463439246866323217599768408147858501494615202276158434628341608340407119891459935000788093551057970110367589694865818370237228088555245200435464451032495532581964188186336267704878885127669538991993039122576539514465636239932494522087725201122504740552001254102052401063377630825461211165740923632809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246625474909539334844709568984678758517876836086123761153967492978034226423636520040633738980920397154068930470656758934269910654566906822300814208863765015521887261511525522095323953066573345365679112029775822525455586832017866831295164534707540572260970042257106560782149855115752323394829426869366778660522207439657544322074424867294806496022806609983243631658005971920510435757688112980671635014768336150913710610411131143781601748441398943924864675906328652878919487764788504673097881309865116518712705194065505083040158309844321068194254434289626639488509488859937656847711588942491696275228860664834094683459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29332589090147623293350125647439076356197486204397846789743858208988571913541600867674873107039578265470206736360214754964839514699693056400286601107096804739811616950357807873626368677080680617797994980279838269580429490954287330850501040647005138920494296516731502514330435274253466242030198125732690032101706587799018399137548238068581925926267037746671865180114696658615164051407247336146819141900570472900606290174430476038908484495408078316223745206784986885557876635444781667792035686865544121845650869965309663792903003661215699123893661151032960638767347763605548849156429899291376312948932350781476917574641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21548860966584020063090782098294687730676593705655610465386018482764734583272231923846803761354632211918749863560096123755029965058930844873220958393437536395546282970915360557297409419351614518533983075028969896683734691809226643528223277527289727435996487167672350219232819568653737831850099894339591869682749396692430161524662751655189687901187442305065818628539018177582798924009455164607625195937269452807079128209241201578678828043497177490836705924475088146313637433861872319224047163539366452407336918764394107021647534065131431279647142812885146577497486081491092237429996773538376908382085397032539348030351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29993836787431400457799286252631729823579783900816088484913166191962898862001183941175651174798071763153402814885437087081539960227020764338243401318293426658143573360903931025588500607425692387075373651295636988064230465736095881098887469202839986676494314351944702068161829577143106888058924661286549450298641779604418902164739675809558606840395338435187725203654398957926221678448938959570745404650418417229349471403900501640074288291860987236854334646735408620533837848693645577033971333148402060461257704603559002727034309521208985618452539581585666235779677957903087873788226644901641930024350661616881386762753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24125313198132247603941130479118049820218576600578378586985851984232266434955163490947617058735908913420487734371715831381243066387639515837260100278713767727514848219730754097168194003645984853912761649219653081692958594891972361096532272195349556018854546062100840653182054615931820652860844996783115714171185786855386099957494689161296806568043766452191129265084619169033183729309821128162608096478078111223240318663749918652424406138092714358653635552347125932322677936251631879431137786439511756058874616624352924508270363908943817617338237847771730725844047554106990167967270606714371136539432445839322881368539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23725013304449632279342824183548804417141846433790353571218558296051707195574550610580413179011028832087627168884614118856404249000358440181797068873217209589785051630244423626850760698342005957119285469655256109232482271881356832380789814267813935233632612836836201630718366429895646162591200854090560367886442435476896604832394082442091348181401406474730622749505241229096015753427608133622787118118208818652928827269237798982097310568976633410798291473587833584100768445884055714800371186365197648558375146385466306850567952614487361068290516728875946447136258331417092266453257826485988424829473176913136899493083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20957515126512371545378069185485212277485335284806294337418150079521856399139070231380996272236482995184259090972951343986461264968867898374670181129341988043284891716804004343159397248715194608645665168665188513599894229550840508855731052263771266106816563855502195357189534597647871187592283901593764208520126563794445485060166410451443479112145523397247364776284456082943089845532431008561308001758760395542148756877591903158913640842986963592770012573174151253112471328980406733026567027893537738388368697402436157938650932679279523850328553665293036035277157750202914142277093736139204413642044117076805029242753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20767161084007458115234823849202343817382223334457391987548105166074975532007377152771749348128177739284325957143890891955001422885121556395634265215887488864496744521286172695000084024964534961772150893738898414754605561094339185483683065930167586738669571050931911019630326551855608140793676376382233113929950294245102497480330483794104175662511395215654907137590252653356774548043590765736442915007312643935359867667394910412159730317710919848144153181655447772798069044874541341109400189774016976368255173558616394531497745975498853208944373177757632924298166500241883490113166252836468397739930391492192475198743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25497916468231370256387067746592240159735392780291381223046558945314056167089857722207724695279431563892590104257297524486908374944387808666061076566807118212247510488281126691877736478853989807691429538710864454493768957322187036473158722868659493297722819063055478669760817255275339079144267986958858565553974786782507181204430321801557051599603226983880829783150090744857534566423304333250257735418603084521613777714459914499142625909216513713637411220450660387074234023593867583491384567836864226745100430621699526122485827013568406674962607714551498732023291043879005753746212705605985393610800192124880912062663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367169857636302699090651386087268431331533940796787027989570510240279882570627583386121207852154091712460368575496709233720681766971396664341100078346234727081001878067682926771607588934940611266371657730632391190150716542652359277801116846102542431452324084065547796138684149160626471899111444633779511668620694441983477861813043863221477336722911332547071697491089493042637410247354361579375396115663880110591780416117457619454436805373838090169353897972889563373742644615972319472984155780077712418407227911264330317730569553809394414291433053335935657066980791573663215516126055616628883223057512650199126355389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24167906707496578034298476404575837874363090566187472630100073563610560013112930214205751319145345515327407349849218499064005776312720869043299577775167194591174347263420474217829519881307042480441484986633403816797757954792423465339595477714392963960227898079305147667433861212677876075285239859103840258026450058414571482048007456082004561734527876300069524893397477423828136959942922965699943421351787085452332261170109503003919895680938017765569094166146358912915013335878046986962404569831524909675207985742564540727756177199931703150207074169854967497660305297734589352322297381554991755748004812104736718973921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26239103546155877285730481472642076247922251769029716558743042048832880062188757747059676966623135186005736145840848664130664581574532541251083989775270576716204436742505838705495692462976915232939125215206479911899246221975209639090971423228559491640426847795887936105588319063810446561479488706290185035066596410588946922165045354400968280794086572768171540776799872227106269110856371579132309244203831266545328906906259337745351176501656581874465368938056247671803059351690993046874898072615199918287187499909233206670303149960509191225890482943104432908160473440071231136288052997088639805440951517113914285300607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16668618262099696498965485821751513860714336299490831349397689613896593726512767848739827552780392097906463047561589600354268817076686070588023986155961540381175119694640396464359187371964280196494160187301564485148219701174856384869943780185172713928875922336106441164955081756799904549263316619825912927239489362431664667261264500649813699627225550775152012825086895889017529163029587425494259563198594564070530098128916322763778850767421175791751518179525939635653891603541139404509952887139307261900218369748427819723433833528503654828595766187759481310934056279204593382779350318090760891712024669152911844096927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16353605815513804765479125191317521553255914184099565955026190997545967593856547632312314145355554585981533824500740559661532829552657584037900160041111173761812143450052346416252707498178731279080971188086284463694775093945076358851760842572833943164833880600031045690375052364564816317846746976568953835867620893818880805911993609912240809426771733467108205909156318898258600046610311681308537065795032753729877517419888113554316668038976082222002208446490248915548498986681918839196235454813004833993289674129112886310503893045417168324092253798120374843374070966496798083568160233050999170814358373819339016275203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306899869918199931194822732260746689659615990022925998672311995938081815099274240935191806159801191147569580787064008145684684910489422821264771261036869498704042426120722794193776062444525417023454578364357377294396421521694609633011193807644105189200702801683519151798535979956004592883719131130191221899912579241179323958838469562681580178147402064294455579124819806999924899161385730683439740087117049692537558834692767067158291428313989148768009495187283043062437280985475213114453771274981686731843787205148755337263068503618220178633645546494006785895830842654318001415190454219509523555895245617480774559081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30958344162722273074251634373615586825386386134836103421550686337623061637806699448860100556050101186758944299762822408018295577290423877251487303939362067631702246067671168860315812515432675112806676525844543097949251068367293654913866720782866877045928493983152662478139111666135342724832372525210165642800338054229817518090560820889700623895624447535163913683693393974029775630755601628487588452612432017886709142744143505507115875553693765746660412032356340297820522716473946512818141214696920243842835270501301680991236180099763774296280080327122499526518885814540327814953707032648187805793146321208573649199247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24009228779308252902030940871047632226724533170751916809554278561752114686847113814271760756499059688692849917499251960681570414484686542636217590550074787339013376633233714634066082231076425541636236848720709143035698465769960838033133111369170849156349943676793642592476179810272739972721143739141905931609437660582824646879224328065227177428827664450175871344418026516925502627754965227497306863683974850225886637650686445804809108321123543951940714374712994645744761707474600715880951552147076206567659436078555544197627628447893547125755098819022157464238598230821592252716072043191083465427986236422542443200957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16211544500518780880176571433848415778278865910473404344166274130903609524605266857352528940664249663466235842545175982723444150560266640280645625381200446132129950609007249366853101133123676406897355647362001786911348381401286897698430392257677669525197662345085869333326294268258176876581088149734886585294337071091336004198886209156062703522523623014879467975193825427278909728693205699975933316897484228616198490816563432181576916693754887338790959247802649088159020275202127429969444036769006173383596561278284327467274586143397506087266492803203719915822174055227849965690974115629895719497387786692870911694997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16900106176986035142799121653799825196005191552354672675671901764599376311138101987823741723055780743513189566337193570284935750572642626808903522416805918386446653244186539979951886040192143496130531205202231694516818492037525070966715007114764928389947257723003362328823176926958350727251785503605607299650757533754411353632019916692308921196686294336259872698730816030704853845211713047769236315084208043781494774429764645677844437620996856807773501423161747906795602795940701576312457557451460705408748079254683334147604228934007407436304219928308006901720860966716851689771046396303719722799845373407156386781873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25749823565668868556934772374480580432109980259013462431675315228975016443968781647304972074148227116010188580090358281847384369555317711997551798181926642615580222212364981633070038469463990837278156902442942749314321720744582314962703071589773827496351431611806292602291767197656638315939522648632159174144477592001283657563258128285240581055858752557825957522997471717047055560798446212651689415037516468802019740412992720932300180216655374630588319802412845546396134469861161105860776451737736945227916027321440226246230607601250739311508794433241074625887893924203168403993334272561742180972000534122800056961157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16466819930546755741841682580928111215479961620171334138091526306844766069122422588936968674579632260269461518253284532150592588193487354302225873300965377501981163083962359991805774787839212875915158099419629687211164594264554327069784185174865965699858715666508322660594290690438008887721975716113797360847290591909459586807536303458381720710564052298145240746732681888258226267323466194026151090214683133382746965126536781495449828788652666050533872607930027891018901905773843915021898936938230468689762529422353745911167234378174585903567502812329327624228534419275452759640023491474233619298923783969534716768699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25302400200758901216957929674619751205012975372906883528690057763121202023370649348091839532011504173890748519690750513535424488284373758272549008806416210012027995892459333765080850492486139060325128779216671553603587058194375127720694373960471665647715086394895568348530026818866613558083916562714356243537691065327702642948376711523776884969371984334838045084849581402403888186720288094002366931403285750073641403344578169822166835529061897342166653117282901528203769384593779796496098115682370571056148917297702351687056579741275165992340323985322366622575907471740837036084548648205477880456635501934289476623673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17972337338756300203493068039886592229552951337922512626689076889871186833949683661738108680227853744252174643477809995429949706052746735251041176771313667815038908640813894242604927573568917312636687724603084625680068890365343124873340358115416277429888245008162644535960369064527207759412921027013266003005467034279653855875684014791627068449726533676893099169710334696984577683625530045555051789035204675619550276470326071769866730408913609409847490036250754221678557553893443593024773759619577950943311147318017730141732558130709583398464744118145193722391485079933592765000770520033971270011864633350490818032329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16252076836712120632183356820908117385806121572955407546290624319468224002224112879144775139792601442261340399734228170490445501311888203927270612527046651602587770852916892398006897518825764543182076666115549607388882686851723149663805246431840856461160891502422599451133563156001806453904158815958841064080144340272001259288113960369640575421472909940927095085933008366410671949956397685799883253526259137949340800596826503827296827335546915572108112706986808045323521094759185185608544603832273592167593974075260165798118028969763061299240870013091897220725904021252837682404747518828485974953597323162094001524797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20332087520351563981056880659916312641171815124474731213393123550029964187822348596108878847546915403072642863383671363908253342304844396184908254738569098491505463742466640706554968185155818914554644907973038039321794124812332248894644431118851852394444724532993151754800044228165820883036123682711468435468960601449002064378597463172263777350093157955381164410349514513413264563882525763087653419008613514947645138823293633606722841671166534695624623868091601567392931021275239620778383639847207462951752888675573456967262300626060277243872401691933120752026374857436971267937393261333776450246067025658684036239559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24801807620989238753752562688468226069801421685687318950121591254097110273693112525376502902266802530527692895510250780585109383955746063715661819554540518754019621495542744026237766641284716287922774686636547100272367661288515651450521276689693957474274094970946075049521852207273298770281903342705208270487600286911278109071359293190445612032299128402944712612835500774733796837253054680796219206029831929235342204846631453045352098126378395313662469071126130297229880153517401606673576552609228320661277903925090850083751030511677102049926559915544623752195490653355293507892605477004278323358385356095383238131003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26082433611905001111092790783829431527711248613752140614536238355025793055479715684584828068898026670272840517530264684453493795050201117419005445980372419901112633030009296952801703036851332306398960857264084078757617092655915886877516265408142699573563604376869835146615101346336240689150792540715355030008582145945908179549422204610524041381459223931660468681281319787521568871599936016546707190194427262761417574352316020796490930555548836112042414030214841010669698329522511077173009433214668162537988728876848144995847294478534373875776263521341735890018836141099671343126135926835871304422338454336340691848213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371920936443572273195265630463476898285597928897768650102934075037300950468221437146665070233241132969233225743678159172514188977677846943721408747715312336876272387529536657203892635376092625810652031147111735611994663233893299901591406828303031288026876913721828160962149525843368768379744068211730990935799028217229468296289133172194022398644423617848553731156464158905596098677385607215872540569096512152502060931481529852266089975894859894490417757668031427485088511161675002998811783316239375541379282849785393737587584391821203614725094616444989349098958969012138108963935743396453088739697510997969561823279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16268004662606556172580402575806465208705544985960848126382334467880264475019300201439998878616442961043652971543100205175013205289541619992069013732250277010011683645965354484917018654428915036536876950833196448409841259624789733151951322465311266845452604287452802605800839914014987469147635919299904591797316603122354679982863525724452775229461742278566534885547835400798418525811994679796278717580117968658803499100763845500691653437097067984224837389665617696718540936983978710106092362637996996834213599467839019607499729860523930040184996471062887248605113722791755125895667154011554680384475795282624537450321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19225815094246581751553066773799632307040169398193496987299551290382179122550325357870733285181982844237115447715778966890548109537383962353774254096748669493820475104540833641390726465021567720393656635508423344962898934248768901219407522968456894088843367243144957934154217150873295871432785403805693145960169545699916766303564547916903893893121682896681940133791497917184645392131252352833572255116749240436974076920691530487507213602725274313633083051089997105188453435691011606137433368211889093804895384990604705996378248688098496584337549465191295645901917571557671278129766134343656903705040875520922706577723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21242579978745073748731872418008404658389931489431569969107669788264903999511998208109585185845900390645765763880570931205286291849573652492627349836151166751525148149622471823869608093698194513817431074415517300218940868983287626864335492203686426389097176989222398823490171807965085681285894016935978419417281331311367847819718775841431367113435978823508525963784323617484180609374856855337161186037317476138367484399611694949745441829846186124476435524249707490159113357839298495202648744213177369954325632953802146821558814100906807112557832341984779054641534385794062750655786202198938624370004298634162398897721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22763666606187181610326156458055823028722907945423065864498484677899211601878547001955030533746118811870731664162265388564880137611460566205384382351365004943382094460107089049622620196137005202318916523766573855178383944565538747022450439592304872494807178334491358932089795679036784968356472186629468093404359159589767564718978710315683575089617499573655193519312017471894390513552130068884711203757668106828006723039096582968932547217099374759826472613792615808968535216919602398878541043880251942968089140810954041008001355254934876975204775993968465259572139421059070530440784464223269211638093943810990229188339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27837056871607549319284283964969522353586205272904375847776122286092371738518793421767134136862547999518781675278768706621827911224150531290901741482664530247212736249610866659317307655422949340301361158048063513853344879336816912194535924725081279941816575491589584429213722758910721447944266810898202968935693600577650852293048131816898655789457335571528134669996409168187103924999982996162885693467092017070485983392213041351990992591865289500707844851709453936605933131381586316015172063049153270163292735887386322532987759941033287228889274326391094538023196648121763426652356438193512163920307946521143519064463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25893185436603322028556343589295530363435889075677624421140047187162698619903188493536192083984390827708365150258002712856232204411699328006486183573302396663441607662546246784358188881375659889003916066211257088841714319428116601977971159636772974828124472633693595109116166458542622559004501800479126409214807818361761741709464851982042436283302616287781589440418570506735080661769902829471240645050645711349854414723803481621216783998658374243560587451833804894290737063149896550255264011442210749928039740003317662335551211568001328882389383440736904161922892164984855689556977800966585308192722877347325480887241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22904486430400966026534316846208482823343053754272865452380362249504459649979268400925964338307543657585505580682255082180825942111006110561677446815272338030469389137322101836578226749153988723224056699553008355599848071074184381472057715292471581612531861942998475114063163270879119203231656562233015040431772192752420405916017957780325741172063786302505806436209751048190385306778603748982328639495234473693652615873346491111491989667295883227205128516703670394874238588019035373340194481058578962076973401182036918614322041396240801257207319907645566973758274086246638228310664745955686045194030672839045574160817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16351335026654752413560727690922095946073044523178066019337940872599575100742876208082387478475414051183677388287594747835666994033850720853132246255510861421142269493065376393331476192586226935516633144549290238187248428689479635661242948826627691844822694976685943581871994909696830990377546051425307418771286394884322878896020875086531483178744540634449578929249087543250354957716667052084499948610291623728300092868209371030190961352250086946729475545825972479377587956441610205579581028284333814679171984655907469940811249904627994364264381060992368801420429387174354004522047635164135494113973333079859191508477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24477004705267828273509565161584962847014902718380354453688381423224586391895022861214885568145553961496488380294267012836540050174912262337458122365990635090847530030432709825401830862263736509099853810664701666817323952447571173420591071184202378609616482463075071634558776702718607544483793936004629637641066014287131759191623995781585376332179738122817945365885361377964968324818691053528285840222624084905844408549642314486077208800797057437895840123516530173282599016260616993253645554380660935020705685195962165351707451285921684048779029621325349657466488515755909473885367698287917284196334832298439398890787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26445295205458188588039719870652856337569265084858096084049914881383258305692892963227597912934023658959486226383607384889474451746198734524440384112402087166123465332287268371318214863255379189163042850611778143137723493373087691229596511182205005299816458203567809592964678789042442139918638456353741001560254671891160887903322558642704219293521893482917528638850922567969224424208774648710813706791975363577901332318642252144021527294928052624717742633533442823492435022254094617248135419175851648003266271056678718261775844004907893402120455801400073114648606492893757316887095492006493455819005422571195519491651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23963303703644305761074925312377633665823767270868046710005196966968815622544625508708106499064181530489299436292082126539264844355347141467954066654273921538147647274816010011277625727669440853803003280361911877657523675143091419609906528074557939585912200208985208860594169923928168866607094830202063683662769454515841124476552627822004126650027022711784188858336394167257326867631689300923237763758046592302487073813334591816226765834848920480341019481487087148426040425955921199460375437977539372825468914036018573833036493550930782201819283027167307357540123764106087535659396120022977509939249729503049280726239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22023524219563249219236507242047943560422570066048748208953873521875874841796303516149932085949780170456485627223357229805272528388080160281501666146980154209588257409050419996488276310359017792768392155779437186149851966754696671416664899896991882864304210847744563247445299491248193795997818009802821030381386626821556980778358426199730054190248738737664808867302887519107665912508112354305387433513349739988071939922313845072071991544680395730769864490987246150814410594530062759054765147574257442443612433421568109653440335357558280835954079719407941292089678077464274120370139849660371191600208860038904499289643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328146221649399513824839935611073866999635229102922976609177906556539842525172168983242471952124693261859672904193398439041067644705515820054379500193218272029697353576330613999677171593355897190084225253871507496178918078115640155691769697861403143479886319786581042407334202029715356004173230079511785189567155854373756861500442507695818816801627074269940066081681386131542812366199401993666744220595262258671529830864796501183208573379748667987558439820896863715100275676300863218259439974573188488144463852029276622518419071573945875689431524394439866779751673738803303626312113269610522694538757562451178715613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29753776498472998410930066739071253277275405042534209454906486781650886586365617912793464463260762801547335399964130042502628948030461730984414876200369216154609731304826520565832501342816091777797072534460231003030899581409378174445074283207350883647319945780165521246184848319823316470387847507485680328149355677470197435297186715421869191176032611910070960337942487706513727292290748423703453759095254223101741772547098059925460896520784002742392844562545062421793150160221750601698970292348074274397335016813723207771422398031509683639480185937095911682290774826564174302412360169062394794300842544478407866963361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16345540180977395340695112987160772835920819210374122785160054859831090207820112039023270254504284436309834969219716399168016246479899669897829278661706706367825974894965633191430773389523900154282210587202031222540042651286018235114423764124769622124422977397813415539784612989973361197478364243472855335648634500832560241331825852642006497563626062762637386856367381651780116371762394737127216873041146628005960019639438176621501826983344510900641426273726959129884834043288175019640668219522940473379333452777780731350801053240882598838997349520809438838297767769652964206136409572506706464424242559928884433674937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16714479959170094167626909476785166258376932628479282830699390031058073831872996076514436372176118861543604856105981707689787046089018007029382535443061639136302448795609632632542474806530561780697685368085515172078446054781537175782050950119791505639639916189850421841112426303430896155551365451441206301205876502744753263668884726576734174815272036699455908499187515923176270433760295863944698249176647453589596686333926919591137290337945083814544147275317118784807947174295659405085508726227931936271963265169519585674480278955953364310175249305455525221124404433041170990219873501396126241998067469578857758487429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23292383975816058326682929243399839923233896213835554846063053861270785941483490200331724894856739346891363739447538143632303618469155592408090316342584453544788904994539602975115631852044082705671467018640505479577374368826815645823666156014076852207854184058127040689297539466538763704398850892883084712435972899512369322445096575205421215943913779523028926620719620409413548681908774924806115236402395738580494490267992376912778074323694457153160024942673498461511486144379371783552990427944737495942227372164294723860827092225236604191961246399729533365431008767818537966901742487847869698041722215220348169405467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29051474581523730608983149047695410589293867475547696633937887649786280571988382982090600020584378665474652417354183208791424057546868891349271475301347787181865156701356163412534162567659616674264451467085387093055697146699105076906737124283295589489723949411494848939239905503034820688276889194912545495311783581481392489225929278467650441624503856087172998073374401675640046486549586389776225860678962218211594086217028947337604123975991402463267750938015773434000590253818627062926803998223506177880823709080454826867560967651118187892067249949271198334823235113080074743974881807848983135166512066533285937922437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26117407958134290538870927037442419298550797821135725391719482022809664774201013183953031613337568603080991832951611541728727934703916485386401290176241818547701112094681266558945530431494995906569913974485748029060128346112842916434894647325961122921298876303104196482052221930242172576592017528652032060880211476472492888766911366682096089039394509841784242464999059587024522196387112765253603633418511516233713038445700854613612874625514274005147766308251609085165999785503637644830445119503765816599591388089870469936884867817487179986928694838717749334730360291504602661197379454513201599085815503731759623367883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20609478609853495395873097445162965409288169995325629297447832885450092471730753951769099021792666706592547705067954512512795829050841396811034887557540658825885065622241806050423924140702668173930520995148301389492382429100340924584829905049531348416458077832411363297017613291878454658936121312021172677811308888139469735024967243395730968984087431041533657183583345931580275697126244091226422117879696282475753964258680928162560409569639893453890199244069862466689313601787256144272949827235786779532031639178762353071502558300400980727636149754225205957398022586481795168605982507034868518486944165125925624406887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302601814524823309840924128756564849418197594613528940876631795589014036298974228183375808877657563711190749566614926353177589862863744623579434590346001091422841020378743282500434304051749858686388694758911569696382590589402307717070260726115788525585301648107765045272928852171848886632741232934417518236040466354334106588202755456088470566208033930021204030892542454240111922926867882023437512804134522435686212202590646034506792758259284206228998575304686224421403816599132375498077845998369316348774047253520699532023815555366274754043551366821941117985735241636207244400498723761610047209120394214456950368699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25550500340902992528227484625294899579479523568690119424287516733077547021748957377450695595194216655957792464197626683208568343384675189016329911807230928523439342264130198665351603169064719605787290377552276969943049942850255388344706312327324928699464636998129094614515805046245975461247952276208238085650579019614274677071202058000046813794123249766045253798711253554849742472782410090681984495057761841532021277955876366322005884677386500508044525331459696600034144907969773723917179046344091736665417884147060166648895876373294358096369107531251439354302161500016688332921933625734147643831292769246224844718049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26397064368084009132727171643060903154700863565939951081121932291794290975877350153925627384681966732097610687304721025223628154998858392399618969048989422467438630342683459916937290126026417972406524696914458627191348857295253740104481511109558146688775778461166275734550938090685412891470583836441637365853731909887681692605061327400400576043590913611742976556036292827319886991918719206726161947951482838792712468119794918247839479918121934536013441078315108503069209901824554675714980267958987307031475417447604267751264599350454497467899756281782275847538312597220257636614301248630091675504681362147365411962627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17829118718190404462707254831459612785855458344586250941073026676354665772149279889219656164064667583023255822106544762278775471631687189121301536530682033713156173386915847732712857781459829830772376195458684702878319347989987935694449660102893878977521111235139706235780259486861847998966858390582887918563629990538104901060981148074899462513043625873133900805828425101403484473185837520558845587447337117417235502346058925540534537010410735812601992063104638196056900382559158230114676675207618533611639501546198345192960081816157928168678473054760327486676018259826039299864582755255917552083773208825894119966157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16657218637962926756813235285847003827653065835294468245231635874235944969081631087440397940281204576682316039483864507974041273509952003999084559867643199419443152236554009063849762812382223227482970961014197469564171401682588677916025928337469965539826940300247905132196861836565159984021558813541998334661899484974593020353955562488543342010706918327707664449677725902782640485123929672933133258016320942159222473803981197290590743214154340364030595269288040209102598539299816361508078382162397135481014481965914139499721905107922341836128902998011870752697801090330713984954859944761408005611183719776527112681499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16241990638260596059044536176187134742530973006984727825596927827857408407890664189952439768521490286633514175082599741018891347810086352592174833008276079574563189696837654714608097630624736295382687576540105724408396071469915799866383294706713596073525294490300825083967793994976811404616000385919519357050748049654623065571731064119428637275439663435696478518886527870860891127556113528966878818909304800336285087029181142465737042915213523158976048260786049738629448079741644078097005095823973040320386930916193385126607590198286748816892907109027384673255887356117555970543258423531777684969342413527837387084369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23664422272116772485491193240196766696813577048556922823899772471593500163883047283375243377344768908780615561794297499181231243318064590644449937495573466120586856719713105229884324038464832796354896002498308059088035987753935666889731134827096479252037654179409214227391027115941048847326264071423921095402506923423453112414552071440053889844142132232363295957487616052480854184444533555736204738020287881592792623168322321474923559917243529360061059033093732384640030820135682847799466471394818500469397577211449778786275200049470529369310454514712082637537925000070825584114941603822495612896948547835109413772899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24531432156240723801951777799520906834304333886912881906040625028859065262968770130417855029304760278411112276611970920392571604852138934738619824712148590047282233806778038948726423070802232836106367112080307873262072709305429300884267952062832695701576710619868299524738461963881703407787593032584861896931495630402478907298204073555547199374056567439429895715951926123351436135192920503601475982073278704097742064487348044970377627525928200557960665640461603868015068717968357115450156206368960797783175465485845755335622200848270741192047553812065462131385446384462654113445363405978557411777628306578623097831939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16234278164756187713745820396755026704499599895563594881202002108428023550012947772077189866332498581359911006541834215635004966919446342896479554865681070321586955808108176578677171739653362112967680838619438990193196613002731438476455748437088148114663229193409523877361670159772762315369375914701893516764720743604724844646399570984459440870799152652727317388743013946868063265717447846033326118293859398818248484419762430136408985920957687990315433907014278054036395200252524366593141630692984477018981574273706922088142330093844007422886618261256891812672860687544780499835557228496061729002391121434431640198369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24372645471816743981313932608526437256587273713452317444339483521436294649578650425899542320554530401283351363766474506966429363244899017930535538171872076528694592586181063756815173865964282641156197311378659902195993887128002181697100447500768001231134282938223941446988041825519765096324037370965192185974921875981335448876473165227722989722258655581361833665874659470112597204975995285630317695122487148051007422106558118170118314970805101808668713698243343145699987403822419547008534124559959353431912140844701829250953868785883652767054784794832222838844616370122819851403024458594419236720905663635750522910451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29936550588828129059849518734454208819249979339961533650566428341344141420274568765266818696774685123816601225451964469885134088653954600151993869325255153675761171579545777125961389889228030971263101572679199856900349109217513444275316820138064124144162929747691147082513585459425323470458886549883259251436851940619026309422041354865787526235766112279174349135538392885443000894378231742092177514758220452892271635213729470559144658992891952173467030347451655539856785007537766786689819087983729849758979989952654792038911447039694468087636069242462859950108836336116825580347321858102025703619615224885016093191327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23107358100830262627705355072272964010443571581215832989222009887695785830963479954109124154211343198515051050106301037057690321558975088742787691723186332163647566815951429537590935680938655225432982748945635652638731375912403400291996117116222632623258175544114602179427892103584938651748372073363599702016181249004622781479838894944933395689139901000256246830712022024122099688408632588421486544095243881719403241111165810229135671117314264811881137762061636265614805846498798075596520435208700134176526510158373794087324918775091482734692400604219027701448009624977253957373800117156028248994331203956175196383399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21291679583936724441079131996264667879917987765007448830834689785709056045679369157043060523911700661548663059785241100043246791006552047345712274323792676716861432864072979808962651213969534477639814979446771366833378707503013569534193315172015270171847443856375278217829845722978989528324395563735155186091606750452345250595241710449226642962481710120960300740385222224743088078156723544636204514006877209926756763592451881835273977729866918230551811442441533095764250677730690569542400692655783419777244573887829908587178096242039584933432780524240383242595616771767925654128619617470924888200965778682265531559159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25858031526017311106239894014119026388138638282621199923492711118550736536803128357423217122849952484566959405734431477498576932199273474465497490848668599455388671211159005799578042061030188911815311226694546121997418573064661896242899187247455343377824296682789628872271938140750438624383269437320279593410281400985491086617039285679288982893555850623242767057557861659911042464437349107136673755252923992634510469191518812438895309877425841593389024057423344118001905988072993364940295375422297267462772212921112381088741057758381488873692521165867005556792688364556956752538450073908884997078756077158428349005023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23547297079165975334817127872491334812719050146102839364032579595803422570982277862643790599021724407864370075697461870434771916154934711132184908848186212130740848894003030513968848118726292584007152089783065560585185585290226892540797485705704937891252721252575516702395127080040135729357122413811624808594626910705151949381908033800620977287555145676208582862449144229905740637227521719622814085956368455530974868176211784463454377251371856376641291622634889944210503669987366327299528466982058908939204006608440770504229376588287732146700830303700075534297347403382766678616414528116103140840583590477350313103643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27002074556586650801662786261868552362841196806527549517170681060896103344743621346769969925995980191510267456004541567916587535051572075240800173101033122272533726683452626127308410783773501457809371728269544376930963468866675420379607846557265939742030105394764246110239135867436435840605672362095771795228592521813812503704923760459352100657472238969903347617481875655728065284659517520083160245717257284359287244553163595166151071679945686335190575131480493927241297289720675247620156638184979021611617538274053179376044163364831199135562929406850495557566293217510372859184226143951660047242776901241533389570429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296478423717359698287150582457881277165562661395098165049563511163571477082781523256923391342294961403921350969286719086307254791101451989721380889127315332668198873233674974278146390082585012662921017422275677974710647109302664389911837275483272231191431696088404166621048002164509745764005484001721923668394703568498830644153661583549673926999722977200961400798588500897059524305421806729137204567587350694681435093659911202260579561875353916328953059014158629699058450991262166751218317122714468381143081256564725082392302923901650355393671429387740787969281444198901411453588450172881747224211891380130813548851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226413081901823112596834643442621512791957588294953286927646073428983397965093524018348310309068123399591601254460327264407678967196962223127743154239592986867347213531344310106885651791820166588268867760362773921093100645688396590817572382179551967291272414704512637311425971778031304205078419741915941448846569018075508621792741185543799711161507603221368002046031319322441450474952838237750645962057751953503474291554958937115615095191524192491383179083374219166782035143570859144854868186274867084137884573242531095363878775598518690132287436812018401128663449060130929194436442104682118025086721729085217301221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17736869226195977320821349506279645555549472320414328082880317571072929781153657908005897448583909101706200527810714626988190592134104817546085644549949750151610999985082680084691904929386053305235189113354792144498735708921950365456945091184728042351580701771456594667892284558366352961482418359110107931650449535773992204456513937519780982877641869597598451786815540276030399698508283291347577639270690831899719735599382873172049607553994252710917796640206993855461231250654978822620250476880857858427195328635922132367279452717595389464849935322468984562870988501344072361647669732812723809752492547266621251858547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27874531265965687071236649382896942885146035915128959477513816688808270285948246778566435368163515505817069010457105123340056774176509158554837795629909112044377827741674613904639015413714350637479375987582313045826934223744811219032592560352176428863929170940592974039665194165914776911284868825816256326989015154833512814610202478273936250776603456812464831641778351704867333233639494350197757266898451545219637879236672223795274359981747502751548849325581011473774679283999717055372713904967967055443283346791866396588804402968342980794226048029634918234270017404774456144786287246742962423670571926163872172772083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20998509992244896490835826862200471413095305819351498269597638332604180315091897591055330902237463949258832230395670387753709610592985160954738204237521945494261284459232359363984097704410548435190686254659348442874920302767514196250861012492009616235783314916224892658289701955567752856545910327790108042583766301482093808405335157143582669166692935605585426854502324453980382053572781778311197618088236110364915351580006147331368585651217187047893277228754056599001335165257669816222315799535674906587724928623619109355970120065099237887139611302984112291891201581291744613098096097717096595915017744623763908106793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16227573339112692997286532072822036190558171509476783924767143110496123624148003053864874541771106814372919926575228037482500929777416919165256205349820617753333493669447448283491852332252775536646224101228259656161030238008163295055935273270049734084553745757489829749560931096419146247279897664329851987936695202702144438642612073281112208737784517843918113186243491902076340058733240405821354618541603813542989170530656641671498957658476137532794419191631918412566235593595719159607431490735340037009159202347828108142081733411472802003055543116914030370846512828680127303673969904007385809313923241343664596045523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27012297908712588882964461518831202053138024993400845418241886224232443068573685166905405295464711673633573201470839160864768646113104276278688703750785987346235831165132426285724333265721215309981488715025537747833233892111363128595317381447829600054620844906112259271030342377316295083449593253342383216733804387882391037161328481441221627173701800084104662412932653674651235189816324428124191222909863660641971253180751985393595604297717741512598927440792802597851315818562058249110171480481772303709485018420256232656908542403766844321055873586765178834842513244717411399342093925113921241706379917578862791283827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27504893104826382037260147098947220783713178869940106513723445864169309606726384223325046704189200464367243391011666346198164952285850092849378653471390897987283013540613260509433113680383474945126439485853542138975798495506992603022213700873888360601626304244573678068735080183864178206702605614905391397693477105241626495448174035375961277888167950073456371865328805828382083733036387089903502943269908444680744197033281033818366782251304983963006902815434942917011774766215118720606462552401005347236947296317553745940111986950571371704185049477515454061130752086123663766779531129986748077188888352134327929785697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25184403848749700946402425520842131875740207215579665553992631563795444211764548401728879092111115804825209242682721686765645455020026404585328484360168045291554744531449625067672890440259316408192147064726172460843519726071974244591675634460009576472719206910842900828445479013602974322560759952741345236905021408345265736858362196679740239653833464705102640238124237017502784619063840376975981385235955689619749203547382943302029069221098846351025312744280203875140837997350428281891415742000716210680021643443749676430663196666874618730919972144549727903852139243802786691138700048282191380262745552204066990979517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23878988551917206376399971195832711854085892786395474500593013742070750493957160419646799486507015587953405939448566299248905948039746334642614024906801396893712082406087361591241962160247863395320612831909095497436122878588403801426187482949426964651923604759727352359114961829507901400290391957332972230947986177597675119636896180711449229601219567242135827966437208595849936350718959458671732104568538524172260930545072727041846425547757178951194623697781099245404173512762033351632909767063023604167069097199486197240696834048540929777056846993366713588423020051321523686426846924656177306125535424171369766881833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26263942267200029015495990386211253682406073631133781554948433319680140936477507422353517846059984998316571404068599457478961692145405238524606873256808410675511153962554647248418423262961328521981562066666880591308564912227082426270005966791403536525852881745027774803213910447016780404933879218851795587386535356456235000024184799922870370582342234534338211572619766431403492803051183726826598547279440940039335096751276640298403504572302498577492271843198882407871957157728247399554520526703609952044541175344810371351726541553547118484839764778605573167489174314295357683151441013683031726744056204083417978679901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25101282009519356989406899048214889382730595672710335974267124129948902409163271181553954304504338290002533226653886983549648470102121645168271877638626049729359021459638843740646919958030199831195409355775767569246027777032193732384101076877289809451455429721910688773738163401806782158361567089317474248026568258376958647347755379830769542263203440347864326104063029731651570739796640082198314696877563103385892673787835933586070435067101097331039511998172612172169810689094897808225160649751502379405146929862214732420625443310055195408905442796953883154809206849544250406535030608313727601685610945471864764331281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23634508732628231274149548375974977669663298994133430529493767657877751004384899433875255916308699932899474572957387108299290632871290058863333026840850880711980686527172899193286748595443996696009645806486047103434985856014133128063558048511256914848311452984412332624984953801874491968561339386683960240879990349502477699130589079045560513751775457469924085401209825158854316447149710144390773364588891790823329812140807185787042162393235559670260521154144713631019848477066351256583145299269184812814165766599619717929938157556483733526165204640641710482152433277644910623454738657116634054790006581749706622459081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16242338527145547187718948777395620193746292987824689248008591417885485407728513196547842191076682002952874569655014351163661743832940087895472215087969906276128064974581043455910771101878902383105100740040790519871493498003550808897527437901195490433434674616221395048565497855371279329826020550404188303198310623056440920912905866322383427168067921629534103727075644668143733280667677666336272921280259876894136685767912666164166057963748621164873236182405451237020487695313187950552381553211834991570656572149799052913579279268607463743447704017893701326981833158547389484486137476742398108792353648344364537338309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309194314730900962827064486244139407634721015736880022750679535770741934270360453020050828829623475977695678043270864706153873961071825952318864829959931562020712935668119980994785809318801257538472667037143161394547045431813829345881167217587129783296067932619932218467832099822499935060034165969028924718585833010654174573315647142604466841254958759300128047325593167477814994933945631058886169677054669796748570065984895945298301338535868606907361649862060834339392339254126417260075465975686311166355909002666449496927653913413143424002980376479976473147823312887202127985603893405311863059627321965417876475419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20474557000395937473844855246705784262449933822963599687808983314116126827633193565017578597766573645343471716844337071475442025313887523716463688133491435882959109513561072058643267722851824948894220786559920161672756701956493940685199162258818274784544937015054362273616883103755620887978832554679224932298211717256474398357552384602064976759825781526598552667550370900440099097362792232600177999598706496765218714047964818716610295738406928091636496329508013752272891312095474936911657199410207576549602051025235754595840564293336537188893920752286815033715256522056806501531777241497596830738574443648371075049589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24511479258901098217930478114937941831708423715761462949277879573320457990630315994831304109794828266903548050596421619679700501835700584356031244558072409570907825221094820767591214738165075102814422240681394720496987975185061142610250672542947413891185537365788050894746431784261053964174403071150291342447487069345489506337787095182077756841419158303906811405201844392762112594945337323083663567479290169617378212036310538624597556202887188484602796598651645753329989256842145933240261332153701707514787827885076736774654796619820237771419898890380808658095108306029723783341578225245849314459509335320339020908437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26488063763329114994500069238093444007129758917473166513824537427734417153365003840712689920552902808795835135665285984151327929530165116245680051260718224642065120284216618342888798282260684264539835176211059591381812217995054946858141810372968633650250845289990352046167587414988278728086473396201550455425936657715719931672055320350119509813266183327836196628367588838721705882156483541013108360211938329904442909836880312580724395782941619816892549012596637263996392772785259454094339647011572741282976007705641387847569941110068439451489053130674708973321600523901746732005366350254597879304323075359715322686551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21645098281311019865515143049464725802518686416297509020482394488840482597421590424269718225869636452367852131733543568168159350159990697276600177221149685339149893604330298265653968900888874241895244651218811299456028611503632731229408394649771727144401878851302560091492488040960475263805976267728545608610354881282443423061857122868789797419336622594555867200613810569405652406891215888104337831442590009365836195002457675834041643779018961650116984497068347550071553689940798575325933539614706941481656001297811159371879843426493081540052920766377105339441405045521942344102241470029356129767695653691952671410133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26775710396510897209794537900944303714458910129958913060434655447767561234138747953517191332541460559128841072122548630876122659299989341509835805840027765358169450476719710575647988084452202147635185594396416454247850566094805852803248553905650874087520316486631803402562847335792956063319101783567024926256699431628682007877995166795156805316848255520355337993878334962067581539408705952080076442192074003541049263966092070756485361599076338013594473317278970118464924082268049745848827502192655237101748610192785201731233227389777104664390319647026956785274037169387229071813004577034058237022320261151699625817833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23217771719125240625503768414379518793796141585789100039533186745943709501825450222044631429262217632076614003263712447425920557558130407033276383051356840230915806799350062059688466783843137974384924501210872534715649176345403185643882587838208581243101755668528341878956356430321429708858211988400393062252331202234909576060588426080772127460716149674443546557724435444841312984954860102187068332921597679778945648857427712935714387342826097390032765380644305828089446949648752496356978879855203260307768517731549081611247608436339552727924749644738543851104813803821075215392591951836046380372151310972190707930739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17181269044458344061992831759045238821622902512738489282184168115310007395439542946379946772853113978806306933173263894037972880267206962503154237335011773163037851141089799263338044377881396532970719783364335209098986696449497357901054569316563958398192522485889545334685560441199069707668625130333300806003103591100607696007839274610616014660891175244063496341245312990070592182263943336011268586209359317376689699617542837401700321012441851734044525481138856474828986670349216330727008565056199556842226222897780965935538514313737388256019529181550240402646440683092251184242164232561954150751408729515375621832853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27864220504135877135415595510975795553797202249601916082417869756160072669773567325593135660031763740402770581453378200832160912816522640381127746824896322431714543742632085102046706991278544136900445121899314881441027769836905572001031438388569851373090579361658832902660460728886840873232064379569620884050348643753302018208741143980006080142478956471809780418203878689724126466616199322993524804942132735315578495976664800006472498985023402990533194204534731608733407295052424439963912596726327293475413821379196982716153655775746712970645357391832822741166075396885590908941188648974742820058042049595465555297569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26330044351287059206339311634235645736985085402931754702854104801184260080678717874363376674212476538967064107996410449972380500820581217087119364931735503040878305432985086710854509886635125862587989975134713448285000184939394255769483609918915928757337488700763103657685927557235629768010419692714433640826533543420263601832153832391950075254303638605688262366568266383540030314677131924332646515125172422469733541501745938735295595742756869439419449026996794803836400203207171989858428058186506554747941671478426245277378524306046521991334930256680095737419120796143672972108844203591349245354395869594749552340953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22336609809235661208309910974341486821755529169677095872079252810795441117931487186137256025941812850440478876126257346285194681358470432606351616672879070644258410059144849493069816202632431297521520097098667843911087043896040080844274808513261082649371571086310160706358306487918008731777726627532473795788199860175555758522747595919593405358825570243541556461609577557334143353227493679127442500649835353171722368633019708401722027560282763535803652864698716058348084956420339507939841804101618771197126736399445308596610479602844560442887654737444756970095769909402705900787944268827712259766284594885453489527847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22204758338707146440799354430905079588617033503644360055421133009122794687573821667211968453624672433198875505879600317871871986945159290361635844041082758209457283699119966682244170850042450093785475184738511116379490965498738381569834739295791501919843389484955989555318414676142113598171765175678916678355512361138278162434275800553086178293606542337094373841843897601979444642195508420584320146891504195602087426862459363677313664318055056163475301205607803396154101440427741808809339843187245141639375284770878662418625876015220298619528915462902282825687768162261410939456463588671498602215296080669532473595377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27286769723564530179763627834910355585241215831771635303655745481902918969437057258872380289705772804614454160862794959232159409535357084684438838166078574244697957473072371741666216312237165598002273382267619203977894490606678032555878466593114014437928026523943709137660404200853024239468740614519535506952160281462753857919339832899733581641191503556837714463823644257546263828064862637744005684452689320495350384148083943083321170271377149066842432848363643879579822581723278532762023325073611375552206259259323305291391561157484977476190167070657492149452709408808910780528974114230655522538727620160129600846273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28198984001184645763280700120797498222335021621696348369096596476986841151222775595152895762160773348119772540702257064805758329970561575291056299111043575022403254642835812058813089608930419801674963114754432437987082530424700331916488080562123074252818604784908339935921098386133990381703883125044150098573001928222745040060391560445554212186246510994370585381917345480495351559823619179108780558849247351163796645631567269859288649350611323796038234342766796815888839065468116070108918106433399208994256220955664918178139403764943216008308440118642956526128563603155997282987549429448166363040760823298906796085991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20100085240048999822427990198990542045020959190909961946106389193301768289624401684149660705192316474410979646777302702677178745713427139528058421215300261235049259168038269781389536318559659286131149802935115822716087719971275913004802059992510761004595210990154689721629706941144975587671042190961937485034633146901918881561003251919974898625172124708626700862924406741867289628214200122939370087472413602625123518881961754313751320710194412897533304909098460481428386479544403517567936483758644560087216288129288546164419629873308368517087327579563318213695508350064331335006308952973975424702566998775222505142057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16913019331948861953158154352343877127924749290509795840980860622191012145367885667554090090713249361455336496877164868374174108345589593071436662708418687755929426566463823102948437511230689251011443524190206967334973701175886064660773855689582286579718036667100475222327962047983694861889329178255831402477195384686602277141896669279579700650317664262389462332061001462991954353863632588272902162013754095709300133765650576366605095163090244245795077065220560219780934421708631371000089465364002566276993902207700475078831251414693900605565410527877452532493594079879130080157612443669465493252893265342058620926759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297885952148045972298149496566860721582943501491124497592458503707523155483731897774810093152236771651926075601669113359671588513473044569120770649204392963607398178043601195565356423409298689775915240151235414905507652774565835098449240823397011803619480113499095646501933972998617999981015257655531029362010750651246355437549005840638754192565696300604128683759744713913098370324919393143643246855081909901491519315270627972226352864876956546533890377697163842600723802666346951458537041350442224119636166822902467533516906962961620020903162203230608608684701990408253253379356000514133959323056584466157221182759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27322420812263156542665199984386261371154323213989930145000742249076410798700690331343762758720661431088252163076423643855682524728885082021406468994090710347954187891647601546973483667681142287922741160222933576318537017920890832587631392586024194427865297751538222243329481644742818704669233065226339858478339989734646124240574523547331569265525727100090310329510139245482823014317034005870106717265847613229659045516034080340529512255327417218727378697939130316537139535133439189254952880362714365150861619651124342796065389433611738143928072588189424845789583065942551190190333963354050315641915229507456691952829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24059372108651045992650066991045127274746521922554835742440889751180095152553784766790512948591299652301190794522904239419191915777767911102688595966641331901513642527800905101676759465302143961993604660175547696308674741334559052744377514047909026073766411282305756515487465605609506772791986193191935994053231032473227752351457244614702041509736594292895818482575925848517138721367631303270420244127998409979694031119455532339444688864707190997086100096341940668107251553724047962941611872930526297233923345933274061892251679328575176019368859161745081969900234442693815234988302227239971170706173285741670574566483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24785026625939846190927306572682431521756072857071703308049764538048813264951860898571996981958867170528816639901908678385655016744349942419771594507410176121076991665954605433838390695171665065197405720332019249128963034938190023257280405485957566530667855181664030886602338315628998006405009435600329770478064438668947673103900356958931089780495130455753107209291152473701322668317362267722076060312527080512910295135868313100069966250785523928804886189072561394143218484630516648086146449280890099282738469707937070604448367561332555527184857128048279703747012830688399374380393363029931843741150079723653672112657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23139818634478913996264914320900635107065353958964108421696564082298444665867863829775254384430989897777730773379351848213215025465808914200833849960680248291732289814651350125933809140178016413750072156061163574649829944767216326157977582542958286187236288018815692919885352843795319643507907991083131928350641023247514407426483115781450057647530964761602567877175310928273894654393433923869022237567549847067561743329026895580387184977098713837878945205171901908247204712175651080480748296774104330972835605872385579519119701355209393610729386947597816547236846348378014146888106873541864471196489704269374595477511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29591645317529531381683088880987222113520464180882286457028943529892867874387374021508802198861398939178604991010278446521052828430310505668426760354646775221722550507169633491290539429226645520481991099717413436376865796890791733721590003090641686474052060697832163715345063970634616399876416760663848929551314145835787793225064258477436711501405665728032916804411331998301719302658662451209422639996341203439024466508506567255752872703442288329245203104244939878447740918364217963393351291072785573909643539401351550950775059436363110656644429054206741727767647535459518569390674809524790619426075608797466520791393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20797967747133185636774814284139945267044943032219455590666040539804412847977202958115930183814138851713336592486674718906029360819796601748549475717125762932921597001216387023484149647536355394981614374196253284425385431341158835662885777282201394823858462444749922585680571341892048352022466082925938108409714761486402383692357865207196668194031900124846440299249862916069945685693415142206917262557061107117004562278715772979338765186442458777352380533624088737642605936586384685387826296061289208507870740654761985933820625299712628316397995471500874719529104857310027574503586289660305439433327164311773402590017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24729083141063729506797909841761335491631853181602084780863871352805260198736186885510989082663079711868372877736038146986907329384966273772279530203482149595301161032324918982829315259090543753615521344500269456994158060400252107447012436122415581555278224858845709659182387011553314402384587284431513364385118594326524161458813916574945541829531785490624379335705341607497175644171122326544724025882795179652232122388316866576037054761601289518533980864657110637310115883021868130349450841086783484326438892619698797638115941930729597987464257948595536360049175879850047480817869717910618995890980448989676136098321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22884660445071441485950760998758202984808292951925512678938685234922523702809941853904056022265149488178948917098116354757343219491177195171382077897828766681234292071113424474703107211519510840368459111158768204821064316562964613754611249109342133518265999855928682282348208668731122914407943255454660773597552921763413227316289179122922742577698154603933210006734306768878778675809897601863483760008431107701633964443387438822052546828367373803309877958928588710423004500816151833535075530700043570063585537028009014705978777652357487112512652341245365397398526578667124824727091457579607652406939578289265423293643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28504264906223599453750407676396905288316365573149745361569173554775423739768533791253142986386303505082611226904270892659195307776879056062024486693432433612681246991527231751279992594864799647907339145760654213367252032454581688897085482046613803673313070796793937637587650126849278248193939313709250742107157898811437734599213496211548461801997822046089823288078936262162807323200316778223368032484347069894675364827754416286314303067374506887179428297517308932829302246346535363408964120292902361143217201259261709553827747993979432321044926710729510860874648664279464752393659400211971745870614707729168863691419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29270054098513065759722931188369101653757250055510339708112518769251968506936602138018750190681956108574902186929607012529584476843671748867992856138369579691012117371362979995173958016105112146598951943454426381431915398625570237149806701395050631825404812583131833378700129164280002870741816742062583964873713007592615296827379285846121854809095649158831059512068094251235954681611966438095137663168989385157199145354371242798075977582307631902742730691825860330708604508193304390087942172879403122891464718358359316805570905210788828991184800833224250697377894045241186302008509722382758337528226880915145562668891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26632866418682670119958332415824996278635515788465124345083916362308853531551232059604052124147243047688259823378853912469930743145873851022632675712137354938362622243761141541395244328920684787554212829207969402571560563200808443666249459650436808153582090314243028734636170113692848955247333680863743554148295912820054510911578765141871653404706506333842676881177413850249860093046369190123889444358452335253998487825510409425185180906617494533466597014187126225858339205250943189450520112232179113071016468434086459799791627497923561196274451006591206425723033962851427054935274983689618436989457622187796106300133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25130350380200613157111111654705048404885964175298935792052149471891599485654278950667482835669493381091926708300340016352750345638899402867892338113640693836581969976000809781103606536427184899875970326859035745450492350801711562309499863198120865802892097249635032385928872417056362435148903275185005380282453767929543821565267258995005355919434162903822077234054828291780815279390281600791054672904833143876488650548124049348495288290876446875737387089099023252552782753746498582458888862601328726897268813287209995022531666467499095341702687974964271864966380317796011619735009995075215580313151525444617051637317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23040120359779210695120192603314463134443191045564541659770798270513085575562405932476504903922917673423274764390199068797164472414133933223227044466852207220181315252437902918278461140397447527111162533539812624627662522827313447078098025478708396362260204304692980018984158948586704300784675769099282745406696744877808551798961701544906700422228612402043371432699152702917814856075621671649499286519793087029370422130410653965673696597941954636932996267482865757406776326665830675498502987566425837312716294207041884400819424274236119982691997765837342177661367771174803450285880416045947481987853254454958212532769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21211477062332424393889035722946947034207131457875356635278503919444529512702028458781989894710639763341394270779829136767170835361866800613621573158406217927973029897383381109836438781158148942944874923201264807305091617855314569191905627818503558489478730987553503693181224395095997552377849042334443562159534382660990173931360684724377377554733401657315198897179997312895976100042237975959165099122989888041420691338580223295702263883608236477462928139480320678384940832869801102430549156721147203313844757708144112515334325806230837450061304461930022947648240019373118115224843551464587658662124300141303190416949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25170393092318355541132545355102158314872447421868451029524113873687456694467091025515301944813251874597138004482984421059526176224725575863193421828866289605071323582402277272588247698365431996621836543848705579590299862717207031748688941959831553354086562032249305832553556335810412460063460665890831438671955404349049477314184029409510411302999627848030217430492885078459722283491492422190163025010836331217308978472969424240696426460719928578520717379466599280079441990243793330893180006974101687415229642739987213136865627514538814619904787422644647828878764284403033725879927121145303733591835101106032906172473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28168191783436484859260594556232026068975853667007772623692061656730495913200382087317057854601338898935991492442388331226025462153507280988338118273745926448675940325101544764247707936165400201598359009124601867351693045505831023319809174961204562044020953454409589471524580694249518439772797312428781380732954580969048534827467708561959459335830413587971121109032518090170950572961414231084541744964582813927542573861393114052140388972725107001852326514166568517990019924892810528810364216749683243861527491846078009650473479470876693062960178657492247437281284376356914140184429189407298555372219538135629570451619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22350870529182591468892297071054280352516855838150609998506310343986595181828511413228208609672863583649019524316528768027606002795021481579354332169848946749452738717686801275550527367016399854618226289434759803045385547864181985605357346457151014374996632486493534010087558426780187776407489719991672317526966280546342702767229836837524051776211679280931080543436280486261560610833598281815314477886320100947116723827369268897447020402314611055706974290242668410628747742317899763106177972477031688630542134813917025626113970390873525518613801628904084134673991031534092344074416106336617096408032720085513305255747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26499218937967633735282550023736204119689456147705805577201703746210117613245419927509443114031457352804908845203709982319369737848011573961323249139376716684941242388874920228382541818997460523410239740533686491693982115069104861474719271669796994897972075173745732145348481271335537106316241929433820542290971638954743835560730436493118035397601507075285244441231478092167670331818205650336741342710047034424011960731652036004437626279906244828812627142286182284421812966178766290006663182136040701413462823318256045193793361097585452844614995652219087991284266803940054919171171744282068574283896394450627967273773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22952430166402619500738076696764161292452235745095314261772350172115333090988562242568621911089391915357830598717521609085642403330700205610033768986391960582711526982426905746236012244140223783423775126811544068547130752112873494968985408272007754737997773193913229828152767868412060028420842807161234739078043052468863748726954834224135752064838078499781351632529404595436744077463176783471261858564001921725951926093664174242692946835917539295930851298660999346714689059010966859657578981380459514495876451171511104611950837562000416882294825737238823065172708343376974650916431038083985633160611960936123752467897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26172723295251204298193050540342595048512724365715646141373883224072046775033135742910598117171682300520045503390704513694789013348750273635204583181179185582905966616007490154848339703234066694249710463330804364873575265065290201458335070504196573393686313601702818116876314490865428494309780597379906887029094059317401032167098119333318439143557322637180232288026278842141470409751983140107385823156855916384955546058746832357747643186339738856896594202282364018937841346826982543220102695055794281592224355461628629207460147886391340920261545852392454363891084205955376488889486544205803748207168126493996740845447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29042496025422266051124631038509354563979536193762752384320072008040461410947146734751490026974247093900092243657622191239647112098079537906082922750663150116514437606943873454575930358771732851594327004844852689925875243359720076278706363369984299771140566100388501912010856955906922595464911393158238940575499331539135455329712054306775283818796915896929106353014954824304255894653768204314172950004918574022410236586238000357911440704188615756332848392293286244149717499185594221901292149505996041001832244013341712368191221469598120832268164727958305039912656486902628935915733246784119877172636831297052334618473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20614373044972472793967521577489540259485588362513868339105900644409442940506454058184763832677200164287188105934921520288604333507745924423905264246309472248690523044435515526916838087697265278099547317918668056061183611938017105498629510503638648496499923406476419886748413548816931496313032350033900750298886561011794393230359603916974993727685152628846762877852412730339066446703030958297884699124659411371616737289188001201110142959886588093866431000147418992131383043020630141598710999591795242691073804739998797377604002394712743914741666499277754620749194706364234921395825595241590799750410271173700804794033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18029146895987428866314676802650084738847448267041059438215877601751749322206691945708604478320304713441059660089004264755143806421274976307636903701744216028439479897861847203921198920695447505248713230573225423727743557768724687848189921852894531245955161117033606458111814024103798835505609793952203495596281458181986726315207778970925861328453180689406918872048359977875344226159008063739607379510415166704038341265067347413574056291301458559744464364721699764477574836747435015715545828328225464335833805826107716933453850272400546221188034289189969748216206167779733277724213627208231650877346569420433501705143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28878383288386117579238120267851618773540948672712957487592179531618202672329352382466027574852881089499788379295896308124266328981966402582534302008513059397092819819733022918822582781331281814120807068723867308332971162134992945468141660675665005163412876067760356794923136073994083009574645834355319200788901356669632611839955428379130878793011069333112602566715686385265210752330809376682565464459778062040361432747026523033652021075246443503496037630369212897608035148515837461416442690572397139523210816525729194483482986258960936614258755584700351153491255934408492561311832205072721938520209069205818144014061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27862894178864559782764765379060448689720450078782671185579796234170552507755048552266768670567628109981267491044668159244673458867652567448782139599528956880013193967380476349629817639273773556732128303685485014976643329861999887369485308928502507442948679008242626992208718083442015901954326411504825266475058347006005070371396481066392158464503276398839225658559195067588261472945802492078100500425153907913542096931220100826072211126372713780744047762665814776504551847772528203606757649352150340322749520193110663601887231294896370248858173202352160051672342733484105957542234884604255979548834891349471299191703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26286307592119432496593252817565752675750480142463953017676535234810853986409975218477754191399190959926573092465905140301467787125775714402893561345984301848600939149525736520387428848651069124885084087822523017489731764346943199904640171106105940205532275253154173642808385005499787864911488787584138209781449484765323372536060680840351447915834347593104718142602926591275829062454248713139213845544918825650402884309892758921486708559037293627457712605128181099060747285203718558183672213682165452554248321315721506513755141219851836852505453085639868927246362414544948270901325234187251098972624633725129538099389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27807455821644171496354212083846647747129599866039243951347221001997293030878616971301417239749530778169526551745343762996674549632843755488651976841476713617428122520190377308364319741262027223223689838921852893211667374120458968027635942316429620682463732392338362738354648401843976275912961021094897266408941241706660766870274911093777479750231645232083878268315610142262914245777344853688147814391213502752126526722728961254249768858004812586127177751183654879973806324445073451045362275796682607436509506405722598256091813730693932704685813357210359479292881610399189784958352628155307493052307681933451769055639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25092568893575450315638698868520017538789443980484939023294345324453775984713275574487448890993246478576003713843224707917268145018326859094207900745396463124077602948437576085260892030492914466230170762173892869129454932107545862387300607361442135788312979541258987446786909800539330092355363284644261649630281004752587471391141895150130624274291340536175410272238161207772752484226626571437037579805966068407322812170951319025295743630349393451197222810056923932694020950724320001723590554848207382024089827639813514388063188811615545803102235988334045917515037559275536794427045936100613465690396970519156384930717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16280388009659683085007957173088931474036920516148903642290389472437727450142769404624532379502880363358037259323784422759729473410809450984020306044528004886533386637211305122221799401659570594856493486685809472293208432889529448319491790725498589658706688825572045936337726753214462255728065287792698236700229609703408702515893918027832524979855835066939802555952300185885770784525811879482943396316055886447355983374605414210831253284690428586868249513117383380327239535567892049982413199587158699529705630213623858377941912809838206104626076907826085128176035218331018006016899138616179272962009065975642156157821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21733406636798698103007126295527201111333737341590565128077681185752168256507879624772021282951187922648254122427451688881883283042029380279230253812888083963758045491554700411595849634465286154376185638793526620239609067677200971380893844136938485293278702668942058868823814753654350330816434101532343752672336229014484691192772903001344876090482666107740819034297557823455749851339192363489800469560629191616647443735500543997437620884135004785381586932336451235218358962791725949536674214156186607635382036879524763921940683749188982469962239579659809116078484728482032186442702541692211991473420109884425849383019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24078597582977654690506514870930537018373034507616534709847265276100151741950956107982987035200976373769931592543521471237808812492825544776014878430692401409079383260735882877746121259589351385837342777660291835872344170609446625146757249409523815748168752382571514953355158575908597110811344165749116471081186918282230525490275878624766730483424261697481468600694775738873595408200169837804192285168045804041214267552761094100922920847388647357248996115627145929144331701772591981125119133331280885537151656233931982717088634436127336217092278078742309719750693677537972857490540033288517314388518809210967195168131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21230808136437166911241695504829465513795305085238283035756559461895600183750039355726980934175857176412441742763431986487675358956090000984126551411430418860034261629167983572670918920651185026084903534895439811326400467453112610100586431797902286229196029698399166989878234386245266037039689032307426936709208115001553212912674680774690979657055654438339309480950534721240331304864829884394837426984213345806607469137993408023881290715549310105917686147717551135515779884684262690272102490327193704966991834961462764222365170061766507949542584417009626715750544847433002788919675512129282669649742315711266755061601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29383352039085855196616408524687949349395448435518498217824120093056373496241744374618662630215935642379033297808956544372073454206247016631409082501610778662726472248447934576895645662616262118213430481910033463886423885146356874340895991871763025313023885057679611571307958001552471720927874387370422707065494764841518732957766979887809522204589144804943431810060727527345615925165036866995620138780669506650781444448781825684927536729025197457870721274244510420224248630101504500543643608752917739844112201823323954650941894317107952196890651078007403540826454480176053285554200318402501485284873732775029881920203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18963863122860761724803306000098592510231289345828773750194942968522783239623235718337004418670037474181513017436659760239140817155218829361676544632082261227531716229512758159319340885515676659888501800007780666251425005605142971789900242715317548857678566846597141496946075672979582678694394425243091680707923651744130038979692964209698009890448253673947778084000643280282316654384739977428022639031301930001735555525319775091409631353319417250178426626974410880986638421671097082241188720977174484859259010204240210001411118255242633228309137544473839961112974091821323148283736477765154012555264868538240802678477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21945972375897439117077117364235819956194208633184639582249691699877953205486496403456416105713992495886011037139392252203810000284956337480307487336443096228959847757905823243027703542217020682514665097373414081667370253499510192718271053996115164564739849720672721405713509005567901984059336017893164650718158891079797540842105780690003549666433143413344286538408633714081236498561330724605821203827273445831967574804970230945611358869427463509750822339470071906092719061005503650115495878690285232524590887951917368968956260115173088872622365982862826636582806643802740274623063530815348356037320496250630279045461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338112912938707543424279265407638481266840861810453292158487057936209149723539961721567793506918784663527717178881153566198745414146698161397678045575474293002080598506694630946127198497581095802261051929699544283361158138644519721381297714586543597972202417618288803970560749984097207526941268815960738509191558222632423374736874047820666299062730566493181262757952065774142971978159396362007683024266974671898556390327382611949222570060957915150702584916280955247826272636624548832721028367823613763481728233899244438429212547162594776953732725986317376273415829130546927035096648147473502285903140956563255518067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24520727462919407810852363181857111432024078016213077482580055566004858135222238539676538676578399194786851636182054833118429115566921813483083249636869935170183542513555058388902099110153388493792937265154689652117510807189977717696596835230074801307454184404720571357313673909812684295766279895037304687199266009274322153050257781282227646973403312979385676451503775007775499922417835772832009870673417874628406695225572408437068701335305162271764776979695715514253190629713622735322275663591284737887755567118989880841702976648154288185546514437751590693249113323630502596548145767075230751751005829078975253104353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19036405061993721222281043555803999335129740639411024764914260682163398973025743851637837648773830353665178303317653034848603139640080418736092022659182976885892588617171017366263061427213314119997722948643219990064041827645768377005095489965008309629063150061736103091822833111488223801760081607600790228975150670035955943050774835647640985974747704937589991200539685700757220023721868135706322002561070283192261407991835881695201395714314849073354424611580020691260843345540912607225611746415147561980088719378734846962664787822462758788097679315648253443205762173755825639833449141645758166986460797755010208058851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22909616349364373609103625069216794312949711775627135749115303794968252073678626844740364850113027849108557534888903317148119889632389206098162181844198456700979046797413913484054412890546526742220939242907537605632696837607600897348228485962292357431751888033030308804148532352739877474760691337663162116654917550249408137328661787385034021809319090940193892288101872353591476543850962096465687051563294079767921711866121735722873593169750050595674335613334259872443680313810618606219097785635712548013563817817837514623227119790699428807288387397858624032713822640682684440628679385803549915007707111153239998219349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27674325228902677054536261060600501650564474583440175515506541329834416126945228333327724544266401558565081008182102638657019689007405047509574471761145247737699646382059561041550864187552707439290711293570150119989768330284558077411576475162880598675536630590074234599848761288803162170405291584489702200911197231922764362441347923576033579130490132312629519270411119874790264995943107786282050977536732904380244850502873977230123999239169250189868695733014549406910100624362148111356420863386495154051352653458775684659391988630987046638852645740541574259586562079961630626593878590296132343163347897815081118373261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22042171543767986847768906570006271242119146174225765330284497728440722620501445705043018820879354719889456669368859755441530207598437897521271731378699434097834579805911253839068355466073784728791810069405768298947373288127821527035543616460671877361524935022627130681747739631247812218279863301154615637717695409035516098808113184768620027234121471619365717254477309260322216580093130237313725782346008128239794223457847812601118632009564002973034087467223741867040757349927234405711538662911205197609142718875218500004867399355107454127191635354486162036202069643048998993505949032670371526120784252578993777595777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22302404993512597617476853421103062557948729593243943728863856474201185951583674596184288560560627687745848439505548190204592895221139692919754522756435201297867048337453897227049758081412045508700288270530407915584934359024066610268111271847541138278822191629161314411877627932897331660408878732755938512428541008193757990444319739596471842305695976392973073555255877242014076310076747420218991574746633094812609426172223814528048830085994485131451569150017646132667711231034538361964042496715180707547931153752953416412452257896631235597658752205043977738903706524480630596039102058442575413076156171917245619902363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30830627250557823071168398606610557314428256273246476076436799639630248462642721479841362844545361042290157581326834141304246815624375830782545425039612045835802276927047922855252947229673802950057939838073384914705227721624996073011918517567676113836281860762586973920653478891211620964558701342798944114407614511825826758930367232710813312390556740407104899607669170638866528837653430330150004978263793283060658488437973470118288739949064537083129205181311927840093380502722067006796751949045271060482492214084795446338768057927910878541023500156119879655983792115361749229722615454730242475970587482996836184633407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31102638971832696964380339143830990108059094199952152993420495291021023657479496099901274153032072793105844047143678789468642339456487436211273702128998278277425345269358306175063056112492797644909515671414801389081027650766674027613414601022849304838090727898722404684628695756443142972764805963541664291353115684124598507167963511312799671119341515946995158096177472835569369255761732860238270777864159440478556437943925196612683431793264011074190251273684812216036327759415653308241239287119725605889702717974144511676784916474943363110673766143281630716653025625937370561389026276953559368108612965617654570301081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23121548852045179312348934477177044823704828049966945445643536051575214231204740143609461075134690406213209884628714217555817301499075599430772480348117933150186764833160916262698513788797702287122460179248380553878696108241880299508090535045860121269279803477994791530834275809040856679690190495199857609492471962708324846483109050369387041486322582803987502522482165438925441602543301063857805263284338070448633665800505683435805699616052411098278628757177326713356596625891987807912285801818224959874369802738833005123554134113534898253539252277718533148511675679592999631280896848790728969126731545808556707932271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25106618892193353127864195259429534462143523778316047245266319281140866034836283927873604083940555896240645287592031704543274216816988731782598887908795917460123979691371302547318390022052002255167501635467478052240856810200895715441194617266923056692617888034442149485274309182296328890192648822990449461107279437547021485452944983737283779941479969098606129654835974897017456133807099932333321692131639621019934454610395673587857959725689271200244253118049290914928469087663049839557292400184057081903284333429780571803118455639797902541152171795418286851493364422094316182978272200610372261591505205326379809332327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20420319895809266348278874493813051769614846615688058139122453942952705035179942799422094813964203041697722082089237258415488930459504724303098546967116208125560016809308237923851245354618302897788816051150470787941155570510405934272211873166622554393293617947670487132918043747117561007699081228467920212192480265383925989038423435021520901319188340640385066103384296034580485215942959665626844062769236619317928014068392404332569270305708513968469535668632216849312370976697161051266941433104480208015031405078681917969976587222895079884179085751987128413365997939281308793502236517493707534823627839809992948231179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20939742258359553498218522216499007869785220000537039074071657846758358881093407749360146759094582393943153514661865437502386758406254743056916070872272802631575409045369606554729349096263050535233098647455416146406960181493456372611723088703322452671543511003077305420023929854923722112216927661970253352703807653007783001711513129390121176906213892861455228308701135765382002108495970098343364131843595141802691154994650581144189351353713178462390864355404456266992116846448442558446817026237045370853018391818237919621451174703172563991013283714704065800731114145859020189971876917856886323184386635461339463527277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313455763101633608322260991990351419961908781035373154854662006087353726393748089515020998060311674056040136543412604505611059201450748051872272785723964962571414988359444496879725486959398350273779831916991637216118120976910235833185259629536787477512033953553882962350470837874847558824702532057319401439768369909643035345530770188967664362654759703794104997286880723846028766643602818528012701258043254040786786600886807684154198898645917754573617753896393822019815438303023831238041852576878544779035157222885157635210900117355775475607572581846700410424717304701120069418819770545504622086277883264055253237241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23056820519807009263997705041216728630358478848904195519564283555860785837110057204067276910067655916671793751544884043195244563662722751087484600085322330517600412271753501290565300993356307528112818926766707623217608243839636956965917687518512584556132415193917090900377202366973010607692722193702960238544699761434501357407074316755698734876380966472354867153966439330274705146906080446473181934494267012840218633267934117303439971022038064738472629458445073721836713201801820076845680347021089569546634325915130134818227709452483823211232553772358459493666140305609164508606071879367032974805082783305381052251343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337133905351918838006012623882274053652766094358514444970078838187825566465496372874063715720716522917527436585145384464514105598891549833071775113171525858927494081616882082808979964347684039107495922040760052985994388288788047847872652577771042782397978663770604292098997320157570528349380792709588420565897184989006998904583002089117233124562913722947999959991449206146617690234541043201760721300415521804185259143412919461566496998376794080392084547467979885793157039229683796043738478949323990319194941940055896331722135764711279161499850140848367146992795922794925600840038769972860575729694147779940412373123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20153622047448327870013278301176405851826921509270769272700193227075730725006313621742408472210829032488272609491594110182779865471244693934003182241139897632630226963259941304257156205009850527924659956586869584431900192404099316187508919066976552097679114573149516293264465862065286542458529026583877568117131708988298939231589010511885523382504880431338806203897632193986284650332539155500504174459811614445605891947775077023784756625898065921376651454719585297396706210993137644583528948485660652315480363380174391791278844183010612724090191950952891132462533813970543751056215586585294134910147045669714868320669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24909663409391257024313514242283516844529482345809674001536404236481126377219623015000529067417107336428834237191553753228852963868347584519055709825071667813821388395924328190054262873012124269322843675081301869656462158759575789711373608744139830577064196309849357243679034825166501003299259254657609034036291517133524379492607198189448842806926261906944691798308308492959136788931038817064180930800504755362328255226903875848718470479528973736261845763586639324428700501072507128171927438883567687554569053912526538105747240204197016134613730074154892329936810558995299689212812551669154338117683533966988783168271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26281769347232678591302664318857520537603981788833732804512042589897669750225547767144219457267158557650460560357153729014580677409531460520760991911049017952244725395826991309212390087422297750445690716397895615177042121086413930098308629397822814813440065232173598089741695407604903983748748062413169386773383470804727251778412784421762872079178463325542663990215891388297897060496809553886850452300837542427027170091587486780854401031040598677114947423509651789218435223822573658020315716547275885511485387159688150935668653967595523071329463612170259261039029513258420099784230741303979671159661869133046408724023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25371854044150757162484679758777762982641195481914410737590411093260236120890217182329405915229624653463408623344454553006477282544300705567762417829214137748093873158860175882262928803443263693518908720246228471883366058510305516326623633554007588264674190509896569467517530882130797033575491796506775111078251295270201285471644447150580907552848710697475787138274316249443525549430576344427525236156870696570413934514249257719555624354166024277900840638248430787158916592806945832095392469826357045503050048529543197175423615167167846522903341779373022432944919410244205680491284502375771042055454501920893246695261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29082384366609027467561383982305639802515278350472259866618743956901658571298232429207455767029759053129646604760782237934029654670568906396200510488756829753093223114130188987916862483798431864721669488472119387829699927707761423642916901125937600209252843573871262165509302905191621955662490848782023065390605086523904045746991918481620917711988471920392160249935814446192324342619082347172203712912123020174687629114119310350099110503554221984308412285425823847182781472633084181973619765753485559617017989635127260246771538438025512406062745921983095621127420276407206151756836034632035597121197150508186556513941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27298159622081287210315178798755725329838384007394431675626768454616919121458881539191634154208708012268131601620704404790407765625395726497831779018328119073058539600508322836513630723338658683963338968400673429833393189250018928602281211997258895329818847745418335888363329509417646282327374536634693145674677717263220157565346994441837489840037390822300039228990937271872396239016913307152764564136883590200737931127191300194446200432912927875901123419864069525214103833807278076698231835214505469630452519286787068562961816806974142990051504495227609609580466512400694059821528337794348532769210337577783776680749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25165035690605355883759929417463959021222749631450343853037616289883101412792678443129465370567985212994573495228813058629143423122143641322724037594431828255772046250985770644522503117799040807819957297289151632924220917001017419975010150213390254989143525176844592292672178205165138113227443859953448801560214272728531065378306033500872165884284419429719181310207034741796235033245827750378110831528797647338922666151466569884499672870201344289136733697710659030982369179050006975217614327451956025515559774025942397542800666009260064628754955677705718833503097680245906596749689838305663363187659498013898457546129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19332100389351846229484424526709016837473165801120659956223767197259211949053975210938883813623634140816516872052317172116436209576300989119680667137657423363039416698637829627684570211832211559485026411936348152554682580782296067293500905572665550096413627048751324586958919196236501211777223323554212227465986474991971846303064748834636763815957498973546926540004359051459200366184612294463250294386861084409956647248530240734201511109543681182846212097718567938941964897669603687622968289697198885746543177350931313422960612243340862085060095060555957158834368996570300227744149223249492889271653434876723071101293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29332820470122463359052591990247202321149339389548467350472933265248353791594779627272251249264795491437127506755493843984905732303775518795736534791846180380770545761745750126390250717004549221606242597004871344978455527602396317126497082781083410747989633411870567893086251706767937346494059661505812565366464899178134433291780378594642799772803899833146463137553121616713378211632062690338726911151618429176402963899257450059735126870844280913486233969484747613906934026909952765702165381644350103882767515588369491035098330006683000276352790290059223725165141644780654226083026277390439400098433445854773496293803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16310649426075370178643976473793866848577203705990566084406737641422400943733795699680561322252035185031545205426123514268895379889925996908848280586219790995990446855794932111761180084493566449308242113410163795609105783104650515137809067776632481732998872980598874395592017666692376064507992428327221313953021493735410693122476729027508900942986207149734506703976074099749350931788956468175018089016056016158127942293174762139972602135482109563200771775524436617741945081613396710434972395813054845757219238971284080316338750700616253920912961943837683063708697205428949359378052999956103495020120682612808650625547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23790124841704205479096406960572672449712526556474957873055237620822324045805719867094741604701574467319510754706180785066919090309322278435492833132199755666976096816213141438571126658440701301162736247190162830690485835933527600330368333498225855472410122796846150391559255785208107475324423701229876313764373550718985359315024668749402030852414865574115067782450884591787354008935606264038255282753721261733096432356365670861914779358326457571026459817736399420687129430516841398379102818248041562744532198188272422782752515946434323505308535431150740730039694319213614256379942920047483010991444775966077327197713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21388746752253607921120173887377721895349298914722102492266313751008903593801802671356836047307923080761118308090090760628119804424775493879177899454391100588419059376860157814163905210659469359190170265500262732588963210403648613744262537717026613298711564731889176747436123898761044283348050881005582353196437682855625010927988204232606583084668531038047405817708462612115759318004820340319662870004534411854222926892673622143723539865076945613609428211372131515021017211842735862685248859006263395703801847601556120002182049354024434803610511654582288168981462265585454468173176702389265252197195361733064155532021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22619945435898873582661625219862692991155997568399349716352937594756019354706371492647200229308430279404197642994915245185204843412912659384445477883401544804317560558474338049173259729518917102741388385645775865856776276798127070542483936345350236681832157423101455861713857067451605065071807742595015845484752480091325490554044803211475168101194373885987480101501794380497011380008072228666575396947026456020836509757511706872570345299142524655992737885715506610062217562485421896936226082162132380983327423038740557135000914482275517521708984493480184590079152942741996853899992107364296238803637678267781725921019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24691464477769531588939361472170944849020231000165051156382049323580187468402354960739646959342315918688417910852725398548739808577146827672517381237537715441487405623482484644114277587259787998238829132579633407994282618402124952464131361437892166117971107109836321444798300542487571954420507281017125845571394041328101953892980180158799050491995272773388147440479118699627672009775878710903302476222115857829932694036728644252196890187053409882273368681681191418343225412204758360659792255117525480154018643191873771553149005776356759990388213360239568769838567346958745185898338727132594283575630080428152794398019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25934048329303754025345937428400284192544147268706035875554329036394478930115820337105828452121422356966301896285712925804308617195636420108673271928449334646649017983274489132145520431855776192574874631908263176476272734459239031925407445482012827699785998887305747424282425396749708166124235049790925172401951322867061325180377429540493782031270616245528092612971357634364318568015068339291652326742455768031755220321757675050333565155937763660914232538819533587108116698468029422291711930438901150819741841575169097627583215395201570060689053460953333864731066111680865576598418410631624844270856501982118993430919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24295132086434400079957495564297895364823376876267143642885357420249705572414226383888188344879791126918499734294864159343665895311819974691626794553770500663045258304221667108596211484916782902645663868476232148912485067541747650230066767691797358803566682057099740907723556856359329343018250382543092285417126504725463138489845878939477808235019757196593893120350050957807944221244291645198979234376196042961545958249411319357101998803148327414216846042468045867202712299070411366369598874920027610194041194620948244190267075166719550428677200306689926010186552218006525796218804574911017693993185423442356479718851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28405767791177902458148209612414187932411947105365263626458072084811201160885799713966451239762449175671048754295258002485402850718660498827608021760782131686081375812840066792340924076070432781138341351361167165383387990886614861006113387316961443271975295538510761666663148304982124815562893629745500397515859767457467259007606356419142121767242322136862896965596908208891502605442607234693858110648563236706745133115524389666426256043265933708780820241815157321104587682814959880083677780903671773428119113051792060116638543429443595558517401377572720854501231045400338567795583825319216060923315356104083675838513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25000433001259698363965476998039352673916417616761601979936973992662344038073374402848394437370598184663649115894382645426835378813798277804102654228194351341262193419357385662302475566657947564973652049146499434917097410668593383215760598788320214869284063571898025478105568856762260199072060197658510939223848257319867188824762669857147296837825083181276231074293961338359527964984283142206540004485524177780898104273429894087690293294191836797862260150590716268950763010426625540854977792794709295303812418253058949941986263859256427519872413995811079221879655418843280948479700817223551111298801785084467371127769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20316482996986281608281925292917515045772923222312410798459048679104769076789419420512425141195234425008104538994938343592776162705691052850540770287749277474679559560227452344159237270128424559853392304396235961215429293494241093632016912388334691137466795776520151009226076508972443916821789693379215441267006010532810430292975098626725220522310833733966522147476447084509193306275725006687061172403354498019514933037007927716379345659937020867962344664128124745777481314531233556561565340577899481528913557090728644555298144393064043012623649745245393812172404650188396277006519851906864762086288863833225678285397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29005554016118155723951838870880624641559456937635701185375938975459366728101724309396132707844681676185848423679715298222424668695583389456765420603362531578098037497224042141808674142536882861926906259170032396327790093347136668823327809868782182904184406694983154187734618150153740455375797030205616801763348478394834138992700680432565365280062602060412710111971701110990891876331564558584130536196080045589177374907733969804392395111479579610209295639440985424526674048007746638221633416179804649740407377868001496272081751101808196407809734959182272642740190456633197946944771307498492867337327510072447612978683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26320557382799397568401810110479397848186363953403722358733163627859280256060308499232672673196043553878377825133180836314346685760209600177401694235319506860776951366277432179338705462086917385248937503869251212693630064035898244166060920357510145357450598828406355583153599062145445786684642462709229689151751855948931668523682441963566744058831701677779914893507709991687013789433218795271875640542586394890703581777374364504418826327793664652703073675974155326163012393825777376779047660366424501251902881252566046772862064458437482764696723399456502948748969061867368417941621258211340277914033063097757349755657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22764635286927279774286819840124038841083662880171481434565510478993094072764554447144863362320394839654965906906805776839389380676230192748934019930631272225518325238944359825713879004956586800340760196910487048680772242679220335857152684720650595733673975221620472769801003868480183386718747539904022934796645636109835476603922695372553302676052450670506299116427700869955428507102872416527595311648876188050028789186377416214503785243109865663124414609972663430590061852234998445788363568278591440373083445599328269831219918745130279500000188921087023349444284575902790682896437572899770917900331259130179199525709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21806934964505628326264154612853724038401479359888842494768355852323287050751079951555574262429846065869857508488862872042880790878103552430973294782452485650635093522362708604109519886233109233518755048582937177625328084055936294688709518823890814567251616565799990189794830929916514594053349610088060668453336340288113998483405683735694466401559235757980094135815115785705328494248248948715851334456968622305887192313760415831019799639944502098916178050196973778928178810740298723680486327222148097899212571454115303332715089184837416091325576916010766320015095642225053371324323231824679260182218902602015620561019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27331205026254062213737986114660126399657827683892114904065194577261155238176895295148593942300778924106296484675749891987723008068928375402298927170590832768085456965374458739698784234497606284124406661961171818382612513500303521940079111000369241491819718941949667181984949453372195719629612550050416510038500343282310993143050745368258269173521269114789690796582045882644986506973801291029712940084667171654085289098144152601906338195323262076221144360636394785921296660021103410268173062805322725687148621306190206617578419361407009654853043441715599286810346030745263976123678446295950271044368285448437970655891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25586022116275234318722171690529941992494682527733886508977497609580664068581639790277484277494893625959767232645866565763308611174706639995423732665789341449817586929456238680246502945073580178077553452094674934453627396714666734901225833805674675628550885016043361508600835764071103607019584497141896194893040880384089141997863756218119409659299042661907104831055006884322602212011871160739526738383106030478885540068875072560883781086585907415596633353246881115474434149692933061817638089901158561291452554323393164973668573792258758433781342395588783164315393434848285758931661803700623271288823127577844941967779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25588545056086748680512053061529687917236617688814934217795083372608930990749817664563209148674491330534573140035655749179741351465603183904153806084856468538862354738798835695844408648985104589580517036601711149947136103860450084205768800507231861441864136081808922536226839424983953306909104429468007649010431694398948334745344996738675110549078893652748557676711853401121931720287401985722700575670193506340929434074139834059782750812675650076902327304478238668671124668459670145567072956589465050199577109621550132563933880896495205250961344906122964565690743432526836320358699069482029359796230557059777108935861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27228585875755809265835001184817454849916119281743174567284030919324915110436941099507606975825420080449401435812036680421316683758460950763174243961499458308205620643144999946645072655859531037311306562113759337069506526269306585832735029699300942798538957852855439823605120814087532782067033411647831654932002642416308896492271061215951850511455130370262313023080667191253950830074750008809488335875809669860697150499590495497502901993056695399495370944832788853293110304541627935232774412776680488088329692146526713220619220673068333232467864759096909919931154425735503991745126373738371353708946055814070691286841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27096067906202521753349807464734674241351701236865427450514658138899570848711320280793653850905214080581549483794642078739363468743528447619491858073613380616307742934189183805113728571614721308613334866450712148181086956654146559581153549853009882782799480626627533784890067045934662199860235796883339972646304575338766989785467192818740849888648628560885717221475931600688352329412203168809618694664376577865558989432619333469123331097311299851997112506468681617980928785875412426850480791948861311837281917625080527580763344333993618815313443005602376849997770028155113572560687918140250667779859373871374636999727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25504660064650495086156584626092146976953966204787710806196387008715199975981792604600059736826063025964096129874946629795232455718972386598724224537132663059796015502301475208247495186392199687426330700218467194286077964147787232776776132819467024391847533146885706023420382926538544233722586903867637803991398286277682083867064268177694524537626906471243192431940837882299440697031863256477922003604758748229601470307147369987739630101607683696113972886793928319732572348062199635796061639088422541464073750672232985117135143386253402014335126931913903396835215656923878767438786917340207744335806598427036215560823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20766387121935064379875115111979690683007615658498188095882594566344552438909742680168039026038603430589091704209017917590239511461522216531668923036084019699599966803083129220483359388583696115385097444021312790565667282216856082603491980805072473498685909032008937667262893865754773716170392892459145347361119570035799152121307506780379852389821448091469303625074837331341324319973823151926535304101577704332575942148316292934746585463774500817259002437173827929920912310931271132404628518412195477292236578218325894298675055753018394458939450308846776648356753653649844414591322372867742030983195226938196611649739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24422756968682386120787199570337283485021523232917674139268320284016449154278157760737571403716697213307992777714347036435950429911390040990685484924824671998187175702700319095625568148196093716135476800353383189933148520964427509015314369730963966749709470247558695908074858769685496577783259739211311705536339792719644193913618588104463048761272956279604200690231292095094568135786832163485323895656916563742829201080920242132500850633984713431064633754444185502891248492985666685488998474583393109817217535471420799627480878144075756592839781759511571050389102027355020227434977357402047742913552781859647791969371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26304126885984615661876660355674675407145916436609307937817824497878490908122987687913423428655822640681040514276540655789826175910633398999201735837383318469649428574587670731274020219731958096184762748223315667009805115760685735304220906288074645834478651051630326788313400209228369427351193909734396112730256188049389200126656239165208148267003549707773169802469560703690473614214307250025318986605169214033048958680978337796405037547746724486987993394983267077603741056809531813265989613848374199393313317737273528835078616120699411051443812808927693649584170994517122584062382136995921420680825151496025487892923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24762241381658175968552466145692386915770876889736895584394443336555348889645336675105976710910420068119293539067037553374544736413456078000430355779858947881332847966044527588425902367798084010664538620164861840713627961964899665538212524091737151761058338373368058199132428209573345997403772952033917762373351825961381997031397371883276111009213719129777281129239167168875880157207298365149173059000879127270534082859239142767607977531252136667609004710167618954723573792781247502266416379729479398294698774403022725624409505386714989166951535136289655315953254434941711567030211799139889575630035929725219463856399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21842069728475344801439294943417756939218295867771157087511007146382024015962490129650181703677219746268447507444021932595615306350546819374890527816626085742953403493709450893583961242120052401318341631754973979947176213730874703551803164602522243022769192025680910293175141264405077434724065569090309087447366753696389976820689180270054710078881505589387678881939221358824065017235588356090808255270138599499101622807255996408339905266708015926522054630246810837877658529552998473981901462034802008217779402751243986634009124275079041560496423216763123804269111204788512839186300533443318360432389112715690520580357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20543380173240847846469194443169501904308543128717305569453375366046949513108122845549158554428634863800084009001576465910252805416818801395225291598575236015943515076714549812375157727070971662265993928292749241930404545894107284586392127607584656076961947615415335081035319856433597808886837911201117263509543302908173162254689355470284040031965162518872204712121707031731471514614154513045488069855537232357989884931044978591704757176992679546337792352435060382585035481113645143002907502758754935115681478459451159649308461220987773456195274392604235960625969694616693247873047310288826249964425379795856549554661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21096792484073777196863533379097465669726530078216468947169575224378160187732602736454659761099292786747989144516858744696081861080382138780374055114551524002738547463337885251682257955043698970036463197423884932083519373623291514605939801943270965266456944947284003185819473625246058691433708483295091911386134850594306846940720498353340022253578591532188021948429580618290334708328647676802845024969872755436833190380711931184245166495708817593559209600453587022234596371815970189195638823567344846526040620836391994233708994341082393494897346823547976401505372810821386950818463451739613675894011093095122261867661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20355719090750905942902126916110544739415921714161874384022707259417057959356010175543102772990872743299328074388136134730592351586083611809331494018352654823344098636729649803824940411866844205768820973967708956439882133982554001413230349605587537487385371109106220161993120076502527915783737069577909469650962513992692716742623208607431458700359417492221226694611809577157309303011611990652311562267524800395887175022758519570503936389365799687676004444430703622844018695528392863502660004260620675901187334038035641302122306470429799878865344925731318840408864702284897774167180996561694357630380669483056209457717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27429654988060451109268863739624292364654808248901563400019931123969745933754345099648361527232324396555646617164615520241519426872056102331303925058021342586437553927424730307556850870811086132801407178846465338095842747108700558535577849898532569723101338032080029399469871144196761304546312881693132217013010585325998773180204229737905183062661604746587493699893680454669685551461050934973679226964481598323786416998579451763422598217363273415045955800815945667050387264848414330596617143124606362561968283518537969761697723938967514733806792781390358018519316076207535239615510710562474692363775940012312222023573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26840972130073172701656320159143763291404647259534253633554205363604228111528735365302188001829981078257378982209586753025187420544956414071284378496524723007411388950541393244939596039331989717153910666197671247484020537710218606989755485368743605542194997829602931102440660388855643537384729959348674089786226160237775475589479129274647157458163513625741688441994837056292797951979947179489664539488310627784816346244697886680736128513094615391534209366203039355905574689154217004325367956478504288703811898048287565214006609858207565123575082666040785384267211150942959756302464998543058517356104269786696139544137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17922674259719548802833852999130550679770550986774011689157114387743128349526008411273190939683120383461124147763596917760432430367654045446549255044467790039958661720816753541156105012203012307805785452868868983902137587003575595128803077383080240892043047795067936216900829795714485419705857587650846986454001666815555970012419064340106648019097738711693330325303154284914389011125741838536598296055293537300092177212934222256349636618329757114106350511698772138461157805946778264821500141754713157842529646851258479112947923512098233392108548342050385069935611372652763773414335466998276915412266131506567458436691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24040350269096407559605293185981283295802538038015810104085924713174225730762860954949089286350585054252691267861517998161160581804167913987241545843541032266808462965263539269806151795605262488818526607411835363327767950756570553604467758004182693453990197306234229756269878153436409331204484786033716251549832521070965855032207680767128616501959985540137771273982994824820170307422739168200457174045937826424290510260595299730653957358573561070643937643643767354914252520073124848286721959932972180665146015382207617754709454471624761974118771653606291508480101006246081192875666322301682262593048953062079471391491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16399046257225487289964165389915948035233256559114376360603362782391229197557657616784507816368974160887634922327460917074062798525443263339803631244968310151803520110765178238538568208994975071252867379813388841739834075520499150593450857902676269712215252137067404399068640616976609496771207406883649567750667190438168052613476699673121735436739740879439551484418399136752572123760299449774329420073689119246376645097642570888416883333809644007415708990624251002274953494732966513379895658715625197701913786454693004156463867811634101810960653356506481238299780085422918601369095977602249600562564473198615586637149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24809280117657408071536793615315757008018080062417663582105111050928092944345560296666062752472534930514953103735076961632675462117333562964545062392464468348007890524989738380473214031903094404920646430220138863814590240738379947794565287147230313492995571667367287137897275511980649138200696971176610686655140481068371232027689666159224567162472593942312328258674075656403795876631709047337914445073198238300220173780198349269308027601540854513772518431953120403457191153854313963258244578503565805628154541592298318150467354216585344541443998015748896429626407523798327378479687072766123360906618822357597359869573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26956251794826501382647650955096554624912635973337930678254591021503201260124707510114540256515914757311294435996037508441973778919101546649763725542992047166714257663883119656437349639378807546940035761347821057632711680892639250017760225894236284357907972984279840537832886910353508152120561177136543387476636922961550669945568877455334287915385532156759454199850402584243981038585137379427583196161735439470942273896909936204826875305596930868652762710298561641219558755399497912986164141367234785599149643606370041250297931977367024329767720229383772429986772394641418405072595145637634097134856695145738165910777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322827861907944359892680080601682997515022498443185677466542180397770847281125000469844282994544737005443877722048956821264692447491801862486362651932454150387159498433407749144541498306017843254901355297620274232092080012537421367203489700660214405168766799367906298267189334844958531956855105148155039491147554081932738109826568695220116697947602400124959362979875391006270904242704766717547550207831088532851991887718844188645859290429342684289225865809685843098465938256112091306062620193233008487743103995716673760991078999414723405735022095500080583788514975778524306629215578766214616224051649187214891517043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31470042390116234095100711425910079192591290875815375071431153788548274219720977616366439465500354246117690490894272732480869217044815762574945815387393377031335721284898688805600328408867047887690212200054030685349477842999260922641773913491690265136565757355383745637874652757785951997223491405355830643427255070542913502519571452153681996894209834901079690307891182601613592445139096215720303837025655420717213092613818310469944789914618560465504036616659307483108748027868237162905840796121263059257768122919106374162163365910429945731675651165085254046646258613746907716553986679703781580852809446371900286764251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29360357387675019483736358776829430978027869990865231048410839918341791930060847033757029010927417989820797598746950168397514720059006733952382053107507551269900360872703822937365657254245442945072406195872912720781504276145447553284600980955735663104605845728746708128186762963580999485858415939126150679442495888303571781800125663557063889130322312156152407626347649024934023106198633431751306995066270040789663097263979464542044782189888054322280228691634405575686760817604625084099089417979667561313576301328216092854353198327509650436614525488301234172531451832555625908736589564165567928066493947256813553621849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22773170494090867055965266457056768275319472779454914094094718864248015682181052855223358774490675624250971600098003313138741432024362613897834834931752402276358374984567221611201353930974489684585972889939078506121742515686089558289116995929506773870620204628345926730986463838043420690793681738237388608070118018803919447162996044226139817168669465515332915550397324788894719054225912820253364087196356732902850386378932599374208488564111958548510466903944355766483233575524184499375043118068736746460556167290742603557106568795942000418559829208994302856769609540951378634163083606363927188031455649008127516671753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23049080621892745749919811943236598733525544169740240740796379512238022146930554895269376107555944491855435553275396890035209672396255422741907410317994669211187500399583012027727086391686896237274293857273574296546646946758815386560623681715223673247047983990943610281538681731526673470309690412525206039393783857132813530489374598200362825869400935248257532541804217873882156145062596980502283253891810356474712942518462178642496473530806016913396225127131203918832416667145062915208968228063711139610653124407877375234861627345920579386884371100484947437560319419425519806094435666715560432361752107588343146481473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22710328272885589757293468138268691063970015104005594282647620196263585547909898134808226310321328121713637835268120966009664474050599554270569952862335083965277890893949400437927529130269316215703383984703855943289424370542643662021524530098466922677602389359827811937069500829256589289301209212618919202264508806309123647451402272370226755777535277488571722540176993965677405026755696866256432341869294906482772096635423228721288088288510959218845525930298295712777126052969579624237777119077701608538566604239706099066945443056611944503401032126601384415984937577984930488517187784801609560872251559608639658318633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27826559064664192135838011856824881341661412205559210945928113599738216780149951808428147513864361957959800707287661389770995050292937855743903487725630979871690303250123987487686764731769959343546344025143159247294898338604571705680119460279320939757141296166774467931079867051415358303852040728540982282593853055735205453991307916575893873066615657947670933402647373600902489654375595346740005243339989878001857104525438160093342897938663851841548023216797808019806775841136390635643876443678236141353303122779384531622042528418042163515156178715483922179730886332092434732736195881417676656778890482138757471422497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320394738066543255850733698610714716291476197102727121299875502641308890661564373625118634045090788220514147010581905540304795500729637770304662622907840809523540482890359984459040931688573899007590838584943655794397441776980789371854587382058212856586016147295976045324737952564138720133622986284568637801094457294928771130269235407022848326816332556924469930227271608560681245876550520706952082049999621300373128862350880290976408619547678559317937789275657428156372158202537667063214115777691223755434042575173423596866102795060152421465000830522323559486060184705633389942981722905391644337216802190850818031219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19006232005765493952161913572538397803094180746915587435149114527317758936468762101704566512407662655874353035291585445017860088046339200202942672955960971650106275189526783625827758747608678376135754065875840441901780216960176334019390548465406263789060200260683197895586488760269961342865448105529325309437533226339913248530261904252902463430083391366080527273137445371062222494180805189164764008940174810965566726294080767281098091990454844826441637694531509424361181158173287324964397757259261442678225623822604371094896320543846108982129704738947982782473783871466681182123870138856984915412374551831581407390821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18282834880670948779181184277346330488610093780483646685692374306626779810543867086618560101213768752501330525749915967956509708900638594500274326952533070713846005994295539727600218315258784213916737261011957249520198873772644669645220272367800907524186266454017523372943959119171609919037113940050962408481516222248267572361298471733425618768919551000803898115931936224390132846886725776834810786026977325124996668989243648069996648926456390285177053354934856827075784182983269349007352413841265756919370373219865625703022879940426466879740441337433967155411834788992372033212058898046559466789308586149485949240413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28037661146079511570374893364536596615337537681614163333303878648426403130356468550275356000796761230354590283382377030117057480425779744503820380813571192214019834641136519716784845527395591577158345054047737195760689804335278967795100151426139490705529270051700748743939244326241192701997551838976891535857272693490421131506849078591869207270506434317079663760668962448055368261580339665183094797945655655599195702096364634872687234347081531451913310623958377356433505659516468935517880424450634714369076463180831114183709736848208054627823066698052364716291007284130475331341681481203114371332211800875125387931971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19761514191425856804941158186529078381906633055345068603610789297100625005168412926301686702339834675457225967879120080299281274005766926551940964737664796590721071692043992755519023414571364735533905186724229957694003079051114982866778279568510405704355805161892208148913341205915507545196983527250539958092387826188257429904183281167641124653796688835432553438857707517666207500924889936132788964619842465454229828386754964727727778834601380391792977499699905596121384800370165275362182691086017985376888201835387150694851601135172625008993633225276436263678848233736686832820044406537838714481895959597257332252781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16377580144789439547773317586549243176873061677275327633491025697607187828827966382601677813811430739248290211994884104696906508421673743507459204202812598324479715203422949494819048174029751442762473786486510020830244758799705778866203098693249234037335776836550654218810040324332471729847838343345088245015316708736164683995458434591787606725463984136011521707212877013362236321268131547664175369579765071528241325631782577943121304160717183438262864426461314483638768457661556997017517145420292446773308192677804270872699142100462038806115493817004673692678649629650932569725333837252290886615770980204989331187507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25260950889871440210634535333629806811348740893765972504241821645438390893058413712098926246314488454303622294236903547258870648491357300877436436869904329119555866364464129643967424358884857049683370285706447141437854901329511015618979762918103331181144257504005584922947142800461982912791090215539537276036406537961909785845205366071658662328929665680030648850760457656157480087455878422344888729117099996773451108833140646283474982670744281911853866065495347598148813325384244128481491414218002814251189650751325454241192752178473917161584115459340505128013741215802199198775661694803301578277997190916721035753783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27101573101605852533888820677865963907562654886549425391611522100177071949001997262672080417549436027271294989666204833212164751043225626411798560628455976525614577279878496046872552955172922761372200864388170542523456858904940178002837467972284590367847136417709182380123211721453640887059913147680909557922017127359765620284836696086008112545467568948371434514254672489074942527129711513767857818174164456266040695925150070128481437737426792644933397514905069199748498993038573175106112856845384682380524704754271521190282276872115830668901234595582705054549516017747809640869099931500064422216947993135776429784251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21117767218713847340721409099277749055253841465767118663989203047942547596941697335964488678070150358966178979301260742924460603993043132631033404841543671787969065677595130467168868734380255974265983322674557083329185334893288629901773082425475454461800276447632830542458537455628275350297849298651530735370512166478787050461792393618292897463660372601884162425853927077039304920401951209872849392293185642379993815458834236670438440365809090586964122478852465074684054951377494979905337957669171514980490874097883817175085381116090673995937184677566041627020297992094504330269212247459484210406943424826496525545497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26268653807429391062085714000756576445005155553011782526591129931219239127866223191203374221042880643513040676641912006038429495381863969358882332352725017329825361339221573094049833918323071948420202628298539220810019494184725157309826582960605418369204256296608836700799767101890038827897563776177192073631861471764794972970696484706435498643688668996724906760211317286292267087048942212963780455350322155976281090567378760664840640925769154756530908811771376087767560072717092870031943761377693936095540429224764514272981651396743557625581861143523339892297513449183508548098736741584376016689311427805899791876073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25063883867200985407358666822899278281944025564662169984518376310684348074849310239277721553683703272955763229797828560270721498627913892923143584633914672704140187026798005892399169503838309995232622155752079761513213383728619420556211717286704235034985836346736632244907440648824150213083180304013692008181900408765199334344390971990257151233136651623537799267383593033379852841960535797656108476897716794633765509235071599314134424158968801665665929851712067402962124728095200894920785597488395377341131189194228908957032640283144226693868725816041177102317131001667806343133335327456324616417315740427705270172921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24127471047155653469149052465527260465228477128074714850628100627406203867676814605573014274199710380996561661224503649644661168915138476628421464404461395976611756987596442025705263393294364528958977727771884369733715381260684974590315120676280595962319265745740682132688572454466443377944193485108065166721770323293762916042609079568721965692926799931190366788583860146492800972147886200141324181693062689355742785952012208596480831577357493667517487465419885685489763147427405915305515360041859503290952959332460843547110593226663328377125845722611952601833540860096119458809152378982566966078733247792870549408737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24488189048129839943580190306846859555938415739919354137602418476237845640837609487041070607807752803129920576214107229511784477943491518416078121385734920400990492509101183388945109154422751607499644654353426601819709147746430483150031939456853440940167795917139663081487025037032631410353812100803797757389550580322154427196896738265329143004317702171450291146292657118729283331226194275747936499800956439735706023511730392908730595707292563906507489891676339905299043691635439249811376558786834911164659180184464131548964324144512649608319183185358337984880917126735069223942929507273698967939187092115225799217003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23420006779617715443993780564372117982558786603037574769809498282495333729703734425221871924885278871316801992214490681813874491078062960183769050641014967787730156429681506856578989014505587311183341774366764908949212919051377088202076728433704605213968676403192041060626210938564452747697159019701638565426256314176570587461988003635895436161914788259646994747241714363864510543550425948325128081447851181938874225696242506275307800124822699094084686178652009343099693165288051512988699729325714329286564518492424078338264553689575274652709334550386666306357262615702828815310659537914135875325610538875864254582369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281510578217133538262446536598137074873612254517118260120771685453930038911909789688467742210245434006872097181765053960419657815903525451644364066558357662902753214894151283720757965821141786616503666344808691347943787549918257991325373312617816931559462401918319344279029367161928058890324322219222875797487082158561703440468269668012967113457288378063126056545441920291247237742958449402555539385047766325801806033081404667984835158147516639481248116240802712061747384701357629874836924910446754505472532822937523607121158210753999575109231894212903638840877396995583901736860543745402199363395806538484522229059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22976469757330412022886504698679403755577775230209275408449500259349070978391968845378108732141693172795140472367305206553906858245500390198255185467268882435351405452495400141476407817030965653294925423268467400224668592438066659873564792210119143131606212200470846126159277979058646724054986910942088994113825175310453951476555368137635739737325852732447650176782617476840029316413162523740029674116078783750157899487161483387056983969712966653992338611525308218951165453191157770323285703969460868914410826703506754242840523878609924592542605987439647156827714613051870755792105195382464943687407753455618475925579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27805669456366870020325933341341765557293420882022450143642655371596679812252349570658176754181314588691630218464155808469051733469114357681824373488851320164499222401291961262956407932812966773134885031287781683531685200999907765281852827481961057536361222584143843128101811420714527594018366638283735738577067637877769414377164553254625106913309529214752985117852994296295575663209932267268527371438770645130918195302931470269763489698768418735041949612554288103081427686451417363677940673657018651672897105246664858928268607313724632097294193918564589559588573118054780498851173389302085509031889671036387399517347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26519128297052020333350150679483876024160829909602824703335517423309842158103753142777160077204509342470718430487328297261530344432061519017865912958494509609835938420538382908235203373843738753355845124028570808221842267314532155407197774847413173172987134285408907509541151343425316104653127012869834786250182257594465034687948404273893950952657101477438722917490015630707447982873943241861894271253231950897704656138892575276195904912241391480799257667483393110890541604409284753591035255816043677830461224763170495995410338246334776466940333071720279700457480652446922783286256887569430180709682129233375462897567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17329829321216866865584592062566250087007776756057671513185453377360733831470176359008405694403185014356699987478845101327909169145313021092777612913808957415684428869181900314357277685103902372643860595486496105185346832397581901404937890929975356184923919614427039659629102643240190974107586731489691203812123043525519941775428200039306802734651008428352195563739543760255925592384168875113563457830215485952502313040771165123692204942632335740284856427326508388456554304380544602879978983729208373859072283524638062751658396996617088539585217171969848339568235649471061634584422682994226664472911847202383576298061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26015558434296127709818750467814624997861498787345129432702513529902611203678511375578373451899846743286738222696153812543289966124965227595236725399459287851796646139455868163108020087352566399911111120185319203943394673615672765729099593038133700094608681072952266129176036976277761260305631688398656809105009364604972094730423807437356686573481512812343016893430059452659023735019828589177210870572796502295219012048937358060589316699790765323347593087661278464905027435162705221444659876253119063208657049808369416252133243353736898200926219357631223385027819691155822476735995188574092731129219746731292891646809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27238167956689439689129323347632830486699085405450573853615049015681250628254180366343467510296165525007568300566176066763910014481068131547594702054527604299180393737146868623467643201390816654121622541964445456045661917555437315992111799639210901605780062290758135483901845392191580321584526462419379803001043131088811078529304519997861247951466254539554275632331484944513960247909898364838932348309479205955225485952038938384161178997771099850034926617646424863279898502453952849072776809180427339553575612186024278084734485228600598324634940608572252570533812840948614063704474552043751345529198194365908420349539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318527801019813396880713869899793941989487610851007339862033510752017263773147117100238978075722134593935776981389026850099380714812810679223469720860516593332537098991833325587650257119688656583118021209282636083855209470095026736991404460195013920040889568972438650740309305522482417072135036721145770742119531943821852300989730591243984095365838738259014242450136136666000843914934729620240266468306288905055226344998254306339125233577847280641757855787271452071341821689474682987017815769744023473637014199044368062743364478845639197412805752852771439336687896731433637049562169505207968378308896543756711506719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313467303830162640224743377339681844539796487485688326261380703679391624548378668581868929676220175283696009554339539566731783999603188705413997530576557281652590296934086074970001396716978059357793211063150114302181329317217117080915717996328163359035434259046406327426338704732738892875236807182187451132730103264920767578498189315041735982782162914508434369859986023599795476617708279129296579608740885797630086467597303957651877636653557243206774127500751941201932962444714656638518788560268411663336357346797818286686743055758506633221481984194889407173971392731286623276317290978988236530390292638708787025907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23946387081303763376044413065682858975098028727014634174615342697357888079119606527192801466455272776158058639338611330334481788613203686700634891881410641506927552488413159409384056183409986330469138631241947532155505920998654290527203305482204297446393861289524567014901760366314251489120328227236287889257375736834556826425421295380634848478406396233822876631457979307057322344109889457348412478335095580810981620600296986508675242525326864471381011217704608665204755936512854463786687955538472465520250668468411379580502102074675905644004656370214058912935202820434243151987258110745150156364103127850259650484099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21823215420327599794440746636332087397291318508847069138348680657886588414826734548561044518185456866747125130637058453299396469437817199490829245199194526569537636721670391224359674452115084494926760403249883685110035971234232516143607220785865960652487133602963775177131045976460165602334083594466170265854839853699505575443005805611859165341673323488096764844302087084787232703685309750486563801649753131854745889134704224257823989270841112198420197358124459518279410311707978941798478078308894757621120922272355624424971820982218256941754736298182811591330731375054101748737949574603607816454558729792197786196983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25076723495960917217591533784279911445528682726848270424080300274707343500313837082482755703047382845370653738525595489406588682555226399410181380228607287848771106386127682238088594227729184464820761243809749466597132145890284034423649279921883386158419091235933847764818999275408972176983105437197507118038491135721129334625628149497575375953459119274312323872509350067965060704881793783988226308842488224670017880827871340322052926877064734569657766536695423859649743383682459758511145812798822311269872130030640450436941614970082348504077455589236888260798168555394138503250816948447869190182815357049198656673431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21806322391547081282644043894817231595386250739843168432923626335857171953768966363850610001292379514332345786375981429294673298284588588268301459366732061367491650531918092983606762210110918620692346937657906341874686277021403885381364378054382916567803395653057944251261895433893801272224384536591766205175960368497601713329660364208513488855802276312026890748320155892883386104322140980904731804903890721896550021248156688464583174155253895890138085996755940728342312173520116801464279720844874186494322205835517876718968717826490542042145653706673444956922650304415754143291127361238921873850636498001372060825991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29897705343412168908181981777935666165608994643864490234574842802135604373920311813700227412192770834303086127024962693155919948934658509556085726673119237677815435917613267887929930115742076956323880571837270118644335146343996680815379837331528219166465139560931919597746822198217137324133239205992860864737655680541841087214584904801811639947662147919203477288152011054846202657040115163364300793988117443417753645132493823442871131647753560240422540882165154994190125946956410619323804071515016590445190324651672616572440376069319882045885764516850635015403323901701449484784952185420983632932089549054347109707329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "20164435472010438994488761758653618507602691524165340602497653128846651808475511852163510310667282397387958625293927386831495497191427006469784293471114838064728626481548991354898688306074747131417712450587764829909865848350516750878293377163272249690486113427684010444829605808429173261727663699090329967604751130152771277841060642160888250390922137411898781144842777930427225619199399989415647551218432401125535209225655253300474962815350749344585101796844812656105606173236452549199836406431622968433360019635379170322478037418321859983747759029222322785082205259976323071127054927737632411301133905265847906794667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21570486042913371375521752619518666", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "813169994747877429495409326410961117248081572839998352252664747944487960418456377146368873539279804194233607750313236720275791516990548303153874731889294622641316713576909748201193318857276664405534102428910685370604774684500685827339334492312509568598780325104534091838067360803931143642372112028741460086283848880266585226682958823181148516187650147466715468963976898293234720068085092983869569890205046614523852948014278608557236704528158360731244893221650592631524410046684796188293501470046793212393391699185548439055400562734185730112207294415552241455074163297807054901682858801912029649313872082202652379744817965005953268812071696623370767366866032220724862781684307301981999864639886820034489687467797647928727525430653988816631592674944954753049908321899017555141269127540365442523152207127924773549892514259958940502310065759666865316613721853313062319875790751578623009477358267913459815137404425750340020542626138939301991915951205314320283089763978659378630030100391224436146317380867558485523886934662045438305468885744080715683551715930208023247990529464613407195107598476830191331099339115372513120489463378536226383213724533146398148126585037480047092251278473583088161112732305209664685663850729703484051252160867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23915595641933720164185642031501828108924103935086335973442839033110128970572528387801900045126828416462961909660113393704582227337879222327442798060971023311783159107237977209025391990498685952279321002092444816688782274557163206881966966704876906175168586718214095204957396348321694451467957731093826694222137282781484093928188163037352922814077528173829169192401850165684092389230031600606447414455602888160818923891644640936583059251149570188269723593650036398281277582013382753367938794543460813971164251323528194545016701923512855670805782778844337611828416341003951891366684163590761691469514333710668374537819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22626228111896486767474768875350042189829271006327427028994666040609697007531971510253437074230266832366522862356191024112009434977418233285892469824781599246769280624839890675957405823090658814548460956954017216352502915067680289665301396603881122304565929309531214578470877168210913835703798976207398318734661287876531314039495095657395195316173126628161268796524131425467048617238480706223841421634474092809198178325499685885594587255660484771864364227119400592671990339647211366938653129673938739438239442975339037888060636154388077045285196013426005392633683754314827958941436717125530935017388845056276213178571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21154090761588702730168551490268422", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22155457121135466660195338047731260", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23714721647576103142895222695939602", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23484431756538482698727511780310264", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22415151747248146881137826160549200", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20787288479476829754500415111097628", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22628681112626432663996046651770298", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23955223717464422219864164633810179", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22550988557771614645888387215240481", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21262685373180761881922430959876490", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25195728393614522096997312846452093834907856484780384375075475573575498137311441984808861666105060168690667831333456082938949779374805383669162723724416597761613049660677545330045563918728420619780198772342571812212576765582473089213377788061591216213019880612104567797438648683808742879608650495430947199553156421487650520063925846302984383553078161272210218650075270782223445815228907676483535217555457124585920317527938530072404773072056567885278623738915916464089121384739344990418004684752562480648829271239538966887050602027994877618174145096889765191735311972943349375593982721583450564780690095042442707684647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24495061642581967252857778106761369198259110295099969879765713901152984061915558189128832761460002335398136103226617588622772405037643918504773507874783396753549912744872713991002490744882726385162837218003737967520296806244933393306917739201936585130998827034354567076138230694829066515578444528794791638620216218027049482366104624054877988125923756171210301823663718406288162860926258216155757600670352764161679799662252655579453171594990660753026608583632714002067615785588822689075946069387702058872749729347857763870710496347544792033699554239686629883098750759775295822695265142260833653786285422298943877341337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22642991727327378996206454877126234668919334659960850343347708833633303043061465685925019659903226030603374817191683700204729232944645892418733684673203728507585133855181176074625504236910137000095278461881439901378186354619301888144283989975172449201883384014827226144889509825610324888673742563992222667857910152427465674345681343199857626065391922860162937599559932812668211214436579728666724106057028623209593727155004898648518930278696533635657083938486937393294137691632660480183485522467223331219007606821827375338227770648679064032394872401591938555408764093215132139301108965455386833123009042823059470545387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20935644504085952477706179559361091333300850527422156467023924665071339692331108496696539339535628223080430033846849981828723919017527942930760955862676444777021026334924951115877817825881466122259721844417134270348486975396872324987337852812421261276498297172369322034526024538011668206805906939717018910392275187319242411648040019647573729335478647594280096839998303787080564177957418029196292266368995908284482942172713087046261358873302108076101688174196164152964896574637107423427116166981331376966862032970122757486570239135580033578953752879011988754707199979366885632582910274665297902046415742025515127990751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25166827435709895691371913270510071398372209484498088935081690696009223265252999023655300566742282105781994997095800923418688870980413850430820779187069314308755988358208342861618376665780855862679954903814837867188929760630577985453378835229871215733990537519901529679621591305263139475462870127539620848320590307290738095685072677191639175472004886328488317223306705859387031362920761130714099625948187710840257724375145129963542732962357503111199571773541078746883862677810570239058832510776352294089212207691793471349535816141710529109234138887501061660459446137871583706052857469174444515291522358427371586847847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25737583895488236282003374168698342738639152694816452435013509081355731455517833031300802440443551255641988270475263563335926181891524621784349514818671899526630502924723594412654150063146064039171412083634326228962702852603962167413111810160270079355201858162185811888356013359039963149222071165998284335216540728600699100020097498536548515142970895601946360984530110645882883996781528752988545150785061115572951383897216765409196595734108521186677363833625101032918551757342851788469512617739690300701211365818435917335563715422891017839195095564587206069525119509433529585327499711620401703180291528718755066839319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "26968005744018831967690393232619673897742241821035431260653691379095706488589615693650594920924629538484764045280673320267835411240002982620104443811901799948482781492264435503271498065698313765972682162880037113500140816890611156530539383092466872146396128266636122089258358435855048070556826884798410200472544247862601698948646062116140139540365492978290317811540038168254125047873175403790641797863010715202827693122595059147331789048525402114970381377280712884986571836854398592589099077990276726370498766350967274286655405886967512703586605481571962389406446646171486607523043775574126446133207995748900420909869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22437109031273322403145732701730453906304338460477986396095129201903566282885658829777987896285257396347827520106991623945402732989678149397811076997372225399887851843363242499446955755429802549532722004665770258183512375496838966382609953262819130953160876993491442704198496985046581190564850574917369081391396141168282150775501327513322413289856681206215992594241724562406954431173273864485553888423664379894032529255662939375452699044817251528122967578545426821655483634342571759072253379350743273063162236340359465166652549922984024771793254094601718014196209595331177474378070755478333132447795714053683681608059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27967794793712987919192983997654252388618732337416977015547902597377899407273514638883659331452612458573285570252528696266355359312105704522915627511263131132379079302888534292744484201035684009642073375577655927768125372970935952983037975141918154131943538482926164733448961512246746708592387675654533173747979204912405708218683648772808438350899778704637652433381829355223356078084145646177516132614842401701470676050274930996000547336461203773374654772138612428998967873605014063051839446431586912401031609667000822114389067931599039929353772316962455348231839778834784220947115452439393010621246024105197394176543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "528346457199570586028978096404120703080493692628549558122290188841295538202901107202716311623475946130634559165207775504993715912323134066847096379419687587603275032884582557224195389574410838151643683908628299034881227006170308364565162749071262003398074164091524649580703673569093908813324193385361852519496266678735287192235730259271429534585545311189040078975504769394806304032636521400398465664253139526908328708826117091877574648499900786710927549192154791379564877035176258394680508358569860198363918431397298634757516416080066980031552915162619768126368024271132222879596412252118127274604519373671751081236364897778901630175515613527084888701626561211788306096580315606897741482620431582356073905131553354862433768538174645914496247999396291383128684081771780318067068941598251481704162409742410824759530219260658532967950543953251056899896017193983515213292622657902926456966400149498717191027307711460955226461726816120062496117539795744517986562030433253816972236054843928480941659256824780674536292883445272043487017101673929958271681058935107549485819708673264007762380574489812569994138874720217962566746281882928677722845832920292791694637135296608801324926913550269647339708923203632676168376611004137095988061275089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "696439169345864215462575955660973434537605754950306799037173521735239323032823251697566051647854132665149211877062124941319197567284720342858340348586331343006722103115695107373976583756153071003068384859661679752230131001232472183407080981805209298353656911867026449332914499504897109511062888220177344164715167750830965293007161498116156435814826284727191812202917837644880001528484205151546394555023333873389570703214699405748618439215902337136805996387246410139506680514366476287319472078578568938569456867430922334912107026179240957445763826254512827670626950426888650451738170554206352568370279805644667884442581319341081152619784047293547218849963047592159748709272453566410156438676644310107117270846283278154141783046298090402269573725266670920875646709221139492563649098951461857044800185122440898266405837871817150671761318083307508777758860835758842368512187650566138566273831907973544492930327774137368101862216411689859456596862114507267883934927026717428077668763538850628295549007551720099309105484978691690510977386957350551297190808692526706025650577113124017562843516592758591308297289891376434005960166202184758167402758113246226732534518738921916826124508354920911822866118671657787378330164204300459295805576763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20160412607033603800601292552736843016182688397921051286143353123552250387240668460188068217438138599694473935386643375862378240809699779417397904162810385127166126734787736236300314793341630650557658193676744482434805079176910796873000732935969796943313169578581162898307329919014357788155263729408446197768008929457614233833467530246329637094306111715827778134720268499075293822582744117303338651858094045759188616142879209556937996862427956310941758016146281289522309634916310866906491457820596478719244267933441499282791861350654587272342899233065112356050328902036325372618416785977476913237751747146108956413489", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24135844873663282599805026980026088958377678800510743558708431291930382020150725697606405509212051464885082238440230592075457301624224498295104455002792694700751579267109666631659453510655777186756512693969632396904085432208484144066784056444249356895421484138508845463730579835027996017678596513839176415139780560339947532653712923185852118059535237169226351521426149014845778030762716131507155292100966342046890986351483764581124761545547994813090896449072439622615175203106951306113352821942523096911458154841031386778005710512445313766233995357912814138976815374888411100593322185036568548948853469999415031338913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26871217253675592350077255909789537622453594760685562697677742647844913989358606823502653260944238577623959936262990699782185898553332059813457224673472057552629050108104905935523913926908578134268661640526179961372057227055029368461648657002895479726200694387432439830385429511908608231764825278879980682423795776921825015922843172941770259853699867349877633542707653339422362529628177829147808206268618995644499787369818426514085051238862848892642336261007479257518136820063112720594706426683273240107964959432982051303747453649000829032681212545730000376885552852268027357504120765374298902425245241577625783334543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30082894349398231506397898847300639879552865759372258009781339040543989176539640061289914358028514879201860169797133582263742793373281377002090600732631701567386278444921200695630093254442905728265219607631202258817677307965636652138365989454852771456018276884372954631789934519879829789753484447406685011353362119845952909169006246929394555935365889732738543893298099692811875267786655249979610951497959611161279459232834543757491852080573314160077603130944237885927736249992461578886337734430482893057993267613711399365104412870729845818101238303891326589438974634023134386801579851454302525787276120145483351038749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20166558379934775529655709086946709490760676961861205225008352082638652487245491760129474427385511947613935603186572775652291284998829916529327893245528827416967386530002908859745419407527823417498566571359519656614917467477798661395335889694205587697999716283763920504053344264844080797393308923109320554083113899403609911127741476634740004659322013807985551798021035906362641837991891129418831020915542208680700942506010373660978623181503287682865064451570327919824612616337395138432880250100293775433358941761122028248317452123891656826060043954775836648194959678119260476321858350227388814801876400685925242859957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24821139772290368955256654973124612630861057267023276079283063972042220577323890702187632902211251871238885690294499304509092835968824471016007263706358583658002624494851876389371433563540216265732056942704271312174025850451586740320912918350009685715308830118726266821719143026376628765586559008530541437766094184631171157885335425095049495883439163451990032919820217157423191662326551413565019127717562619230810762807741867225124568573852988684755773492602992852506054811153206596345801489542173354381526579090313136824550563855954990778081551710544491777983950279021223822384007620046797594086433289616629695315607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24635534985950263840596106379358452956693941969762997909689963544775225325252803912180408638074455104047592495116318565963515317097763744598252009848668790265580497094989424443820236783822804958496817026874693419568296489251826577581686548605951688358242702716355791705296605057435772265367423717861219903784994327748682879483876168362443134672651476754533745429381209990172617851210179046149417930353845152093815795263797780000341340627507525566985427556923448313061865725575529717874854088141520604998241436563965207339867616548265593944993194274163211243465703585438454395481257845899872352259283403937902505715063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27797992697075181506437957012606916922051481919002905078551165522190633593189663011509835682274383419270773855616024502056767711087053342015913599673765641723965112640519313872277642302510623412352390340022364227651531099771460272982289200572651303759291122874893805520104157713737882971938812903605022149424008677545392157610799203368427719761467122575477594601718599480926217173268022254445736980720614474461397270789492139971992967067627285585500128561336058504402187505431538907104736104991481420261367604844252697192328595134083500823127046185786863948902619412480472733101014133054937018160731130747699225899007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20452831131838121807055594620092102737438287388567996061878923304581481771614473844279019953189792562441993437986569051514128201941231329511061741613385958282597388312776916039395756875041591248983567263709719793541140057007055219595002548635917624940814819361732461495014686219615090190498300402919985148168247716283096139593568723826886399237824363841917911182112732171249036057584585149667068008759076045719318507095919886702378444678679080367283571753502476464717787271312687191344901523013363937812905197567286144289886115459594020804999734156220020670004248467585835206525677709057919956008275124916137300156769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25180456096454329261006800648327535571337707054959814896918464945791947130214289119677352639686857161089704680654027733447280570580225501447947351968934009153620381638651002069529464269168835207908845295958878499370477261559931549723322254364478564540571739085520045250611753460023803401143983324884083368150841099716049244909481329807617410444050519344441511864516838413234522396272334058151090562487085921734768753760254538304946756980496488719369413571422844837673893448873776257702167584300298105881656670220221806281321127958823594719129793424145505616764074302631730740563008639350515304069540470250649643058609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27192075248322344736167519704799460351074221767643407541374402609854137927130073296793506832507666835576946970332271859370185444390887675196992994711906041719624183977289552279367785805131515896113718255496799204870954544217990420476329661501771745402152646150393250511962223217737310263495364852315754491582784576868943032444927065600585937632704541365447089877309743637285692915939256512825836650465828662660237667580934282504857065599460988434574569031353409128605782343505327211087022484602771242480241018991726309202164217147382791157339299759937686956821783973955155422700450588528057464049357860980286546075281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26254000206585325219882529717195489371446998336133407389818808941353415182397086177754103889953167788912662251431581527030022492963031763966254957701766518152780247047247551610819361308905805835807153968859007489660361516219837219173948989561274449654561974004539504099442843500192950927046853836985779270759385238479192713392502338610072258607201152290460083711903432881753373668858651604302683054290086368866996135360038016168610463067517263283591290696623200661026921796725231667955652712109668539904649808427508158953511882958368166646973914953981174952024962737571817654331085845387899781807140125482316575558759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22276165578143776955172031235055583824071805182382086399604152182380082401451074702194330613728229389824685693155786141299050741438573927751040051152295918463369525950769736756216656391497638871284776929327690719531545993127026723519432299148755015634983489974063956774105152939343271861474584746113872724190738381450953139660991426296547590664333543711452092389953789340424080486881061651294519008587415564144716886305020534747905341204205886781168878872422292846742760830515407993601783877563728778841257804519103365464030831917353287521818649726691101267538418810421288609003783726047406096947493583235584417711649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29225488042165952503016822999749732030808412202794223528861691289562527581252530465822707054262959081112233238238989780261058527040386001222478962569048653886504854803270347184064596778632315833841542063364295004006863905366809986487874525499263320167816524216196006073063711735625392911624630230972416413255224050462734753020621024342649777544744884510569746169173496439990453676430986906976614581315563380851738257314577325163012024397578316571639512554062118353294232550091360250089053745919624884535067719364739831032889691225582066880015342857380838161900238313868230611268865141598049370589878354453509720141743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20911919089236059418555655567500124793556303813219593376814497149046188082668057037041878985414172486185656958653592657821716118771839712492829307985525676259204430334740102429613599980566234839684919874737738669182335269933647852654512789699829287728640779546519246292706411388268230748640375747933354005498178943536141884005234652019344196907996847899993706751343708951498814546985863893974641035953775350192277608426649184794285372049406853186449449439188516138212328170462498043648050147703996393728175672649578663657552250430302349946885031634608973606582538624016854647287455130590890216036651383048124858746721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25114924429382904253046787722983575726292993400098605565425774517309302782833044071638619874225676059703281357014359355187197337817366199757644882514882229618591839904380721550054672356804722785034178579837122297277517792123067406451378402701637899222095705299374179889530303345172414620140341500736141605726020412313326209856752782242431218040528454419476803364984434112988465594269735115877297429484163987433097452835590396061702543759277824009447299064860200035139069302202495341909562054757576502286156062898622736489236381087017447871873808966980103738233102941334759088802045021187301398052330922591207936312951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22397527970671533241046505823952307101232317681691513388372765318390631516135635402247175944315353972943949039656763468134459917765131575746104698779165795852369037638451012051757056716377523062678334374764835799701792464363140168874611037776343117773069221542001344010550118829598750831516250353591976820343006441007749388440361136187867644063261266454121576691440169864786576761029256736417890342650710022741157135556626636518651364402837306082775156977015786380602316037068083928397548730656163083521364715797082597570536220070679955734700446577402658929611859535004189891127768131039100665045075223723770866207191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27733131650074255681197832484516703305624699855018205203846506085562965310733777657015638262493592340546419662576127118632338457044247621959411433897231696043601599203268659284276510398283946360199762257286315229839089446713128236192963612985693399443765522430401552513838710923342794710792034907420392149643173419728400275821440930865278239147183733616667961487392081850820451447400626970158192864054369318122290455990623589979737519195754248906085057721701025025065691162388922345864060696744754243081067047149900317538737111426930373551982683656840376402957705114258452070422027303945846213003215812117432857854227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27655306033109414303179839977246141195446974158882928542002588236891816038310647449272896914373393562090031892566251562524801343932395949244388912475961508632336747005291080426575382406686707872812307958552985598732718838426268182234402905309787088519242513894092634372512778044130592036597619504328354423654747909968189645516358163705830408470684331790929291353134479900481213071584089147291044607246663306368726863276057598686640865803591631821739622927272571714498843244422933085114307944933642069985041262345072273018125219228087075012164196016287544446089455475684891350458440724034085538781791336709312969402253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25305352571829998740716118652406098916325436019247127782415177558443995207234681828404575716113972257104789558546149273061108563793678933154378084684575994811866153527539663949914691727289586246859158709889104325302981629809381725913600715302112327228528500974194382538191247665961882970235542358555703792883098937066561283156334251070531354396702135790350853339198322769838501916674007323731363162432680315002046672963004227608005964727674251633590655657176452248573084723540333498331564824940254629021538068175551812771090512889061414992432759190597519029205345616929122870355720745248634255210126529701311068538921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23095377167176390331887372196286176009891911967773016406730353233162848741890447094720258717447627089043634442877782805723710497505968622805458598132857726609172886221465927338968831541105871074587410682140231334596265814036762908457732316101490804504680642273224269847692863389130404691309879660274905990861758594372454177839359341730632296577004608106990319214540706290319785853705524655344811323145851756699432336751646689664678302068855426818012524378097185012769861294047159627029089933239996029605158885118255135203018987422240201748818548744097068465351445138858336640398274652865700106916117415839630067194001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25271882503830253801062180539452560073124656814028871666982828508990336095143816031528919685265187094757398214797562436680395187262334585740776699443173638733676367959464450930894187660143884664362980543602298282672173054138384509665958113346112976362007233247473345462156843655318367102598769357889672133399580627857628092218189085419385189559707015843111299476160114472138387619876428378343321368581418956076978749630655450653811471643557836354217323347337992093853266386679469870544061242792625408878053312834537993327283748333895950254240248572858885456546739943833951951616203280800050183898624706680119372124099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21395843925525233203117382248935318607511814348851467309394647785851914380798419189133193332225933163032717391176037218804137625344712333706963994217250900829793187289115231603471574575947682845828938944619792889129102626969086939929384887684917596671377867634870251887757381940084784703059373273957990941012786219404333361538864600636562900263549421701005694310282058122024861363099252107459234504320416807721612246640185731520085731151311082095932477548211372057605772037842004028167788426311762157826188328089741297942739966270160574785080898122454574315726757409731413995632133502104703181103473943566801817265123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29871879473764288970052995222586083837328905312446887920527265081882393324189295226952727903826944382676404086227467969560837289677915363788408987365494814135913403892477688346828041757450314167308764384467946738561406853388610610854911000235188956068791517735859727286037160818130867447717141759459159692048499313547380531924531816732414099149742096729318326557975458889663621331181440737396113009026356546181007251714971096085427873057010346398467593862323036408731208750841565707104676077646213975471585488400845607454443789575656156094519660484057540183485118045796911886311731509210086300362082163827587365138427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22292981994949663167832365939106996", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16267167942352733445744812094134895832437264713684350773662574469015784414978076958713079628090698171278482965971036404974205705514253000219217290846958350276529613528872499679321945931435115209435038260423042389719641317552802164200254471572812572461105921919545135259176745622091123961735966473058253920204691973423623087906518488623851682286542471418535670895231521095157640011061262744565465987706939721561474000450414396601778505336828116235445452868608665257854819193030245263195683762369098785053858477828543636331805356054017109125914643349326689867766573948342087266066944852167837479587118650189534506432009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226055177274463742039637249507336897392578947354495029456781300848250836103729934113000940342613422094383569988315568597742521851631288967652537990627268820677424461333663566301050043480019149370362863071461507372235231443075299266087822839812214904503045097892496390626776352193849696772498290515876543711368561444941409451292998773062986940754330368813510631006794354693742865971753625425378193229724033895827700657376621961557399074517442260712157243539357842844030567290474068864075407357623207110705369969534021525793509281604224885248017018932342271009385284060471116858739042181288575877220126476089020353791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300489656161985840996827446444328589232457647460909075418629475282583204558970589022200242767944472909234337157812499376813060726118242876640112490018239869154448488565994099213121268991056950622909934965066212206832067788354934581212473635725327357642572053352122193270829614923230722768974630172114649119817587724110350158892056323147985281611448484332063283631020430710334429340481893165009572675081566341824168686475042781031995812374538724482180372926773134939999327025205667764741239519383461761902264156501241987794163928535371111147072772371474416765981965178236661227501623999562635090175186423953548670651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23417940521040024573880534431281944762944287716945382154225073086419187509372491423917452412507893066370022213819071239817440721213577179902516809042675220568647858713645874960506497014494989852681082403110113535753014876774838802256916658985805514578199339995850231659229452325392683199212684403647172705467026187228555677492384308226233023531952622786562075993850107923982531609822146981273994194838110631892338377028826010035204965597406487888247382822444241519895431689533753782713200619761280950904111617914218497901369966423144848102824201509550662472198735036913853590111206581326973141416357341664188671931467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16271126998384102205934987393905821742566328583772634214470494835829755847769746102547811030262256046984740919694763116449887264028022459768729134340233878170521199015927910702768587343634999120603408388589208300818266493701471658953676099492688657438663440087667979189132053380138865251908595268042501453932622275779240589902424174901516595716720714235714741952569933283421426456047518390378331911546081767235161051627357878584977771045047655741417071013062482748893676346608317656266641193283274690265842192440166207566934022417684329129413447613436076477572840469537821079230410406545055544196883068562770623658457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16528812504242508056924458725951097211016763332472953465547415937268855484246413235210855774777798544761190037118686920026944458927063542678895701783147740573992311781114339135919701564648192484536312964697249801331491985730143311849104601625085002315527840684507134578783149478865974353189914755412735594881578285334282993052937509337701828753469567700934903570789012172648206735720185471305678498353131481401714804357468141302220114728469967344247025119816228938313443652276331916322508042822984632588013031107919478077653087553566808610733852422277914784066242902928438709205660121089125465109891354193703449765393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20051415186020625769539420032890457408170581601238652446727477620432372223170053729958451371633576736399466073317846839604438632466785223488316419151981555897914369712941277524601772863921198203262840241695952519080310262888629793183316673771981094498784307826952299837308584772111825164073380151892335357761251536764770874253724154522956377512228149897871869415684533074785727887212157371023109283488417506784590152069560270935608581761946337929408298051301332981493030325944711865869648873977842006752719799633656989936608589985647626666492012963523940671924324275907276100761262271120661549564499234275642192170011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16371837389402659487320951946297612369845248659927838278916727267462139169023454860645191475797134423821600282332972587806178787026012023860471438652555543431677836089968037998413997225642235642193539155211377367676134220482180360207611721842995277629284554989152552957671517349359462200116692915133057265328041633188140266021305249009273565993600925426484976359186265418885387335381240599521637407148842883025514109386457134037393858612339621525645343586873288708165401205726756160107319787667525817325191373485951416638275568404231391373603984461819894426445544732502260896005788232948227658660243703362001196861161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20760911072034277094896340247205881684451915221600063558736765612884284577657224994587470718095159041124323284238731960750203312647527993291504191895710880276655697924041331303150093733221363919572437991654719479629511656132046221094467137567764012350365755720178983133430674281318719073288415513160470043449645884679926203295094112039393993910563959528203475775985327210659550017362599618632050237896326828522694739251240975309995617498296764873381285661331972477265391810832976637929329926052476687168208876635161389663043983422818806861288349379469666490868529033979738410538126607478624708221679756512909281797209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305909230737208127521693512065078821374962460729019772242804120057369785780092442630484099295439005660133799591159527680929042198502592951615953363946694232410504267153774569712303123344036409697695028696403789486046606280093836207317450166515832744132870190876586938085506235893408794786065883161118081577503105290917050625515940392297053833497302051141527631969406094408994521970276309602175143003602945942964393129169590659870934584077072682600015286029629751403545859907026617727320238264718545901676332754656231230074297915275991898328139518191613171342300729435160508273927582577655560225199552768177987483153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23321996201758091339515310350821779885151797365289364418017453862958084340123908072030463422633949861131317844687234478593641268546819896901206289327599466573096345692997566507879137093019996627989708288869449211795607494562847044839799916768523227748263796162333799986962784476090420364385688002753507327848292049768663273532135626062720036998928762906506129216735512257697937922438203042183386930945017706729037091539362493598198418706677400863385699119675712712073902452014965952080643274445654507884941768396429236806810811302478900301208260473225593893886301048771451776589029194426285753773765376765703195497549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245775646828273150167419510040735328484210637525656953865283913568088337192991097487172560215533411365169309234301637042310935637632865088898166792206859162163674709836735469617892949356718454028950966918071098554871778088214980707084741606245782914885355999026997506550757946129112803286308407430823032755318620288011679928776208426616007813412725124292634679750054820198604832925623452268723824497520412346825764365716993340008792537039365110172368162805531837823835321215229593579223470495141191232134563932097370455816126313894270145294201493869003157719209318577849763396729112364339239946628977205072336701363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17732985054025723110692012363311349061790057646928518956146302513188678601124129117368603312862196897996753173469791410701097987316390462958605548776788688608098088296608946850651298858093983420042804271779299445217840015586109835292113977678793792338254927941543081318584804870744976259599687190234171863023509697684111301129923371607708699526939832748486541114089345955728626650936091998442848573902987228115637727441867651006855891770855298311530280918948492644070326431773289554786439891722342192591319348650774992481215967840379173763681347823085479838368147820894483393014272435426563395752728995004995822421253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23594162360165798329456363896736853934541731843328607656147155742080747554129626686112201954337163105193040402941045983479768534640430138629456963024863838718800767679077709497675140264053352152897502602263069915104244194429266738478852749392728126369474355918955435934079457690078131521801519516534004504623653667947952542994667224018579782172107518750571844886937243412680914793204406022251244407183339545321596097719467132849910462575061765521629876511670443154462035656563610358475202734159631053726219394432340650177726191228806260190788242840614536052967835715039917797212903296449394568323342657861620366480897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26655785279366469491942630457092166065296693951989015213278943189876273090882671984248093098184981918287791260260682859094087673296059387048633198951588408985115543080460039984472225261343370838134798647175599309146450095683736302277791735162838665784583044168535534657218948373109847809309497906297158640839033827250871121908544565700429102250961708663761151872577799516377737078045602841878494993243527007114731169926923729275571102007089206767255451304964563344954505597382744943192363306980774491553862128382988435010012804286025799856189731256992517697104370296470446132918610323542564602315503514511032515711713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28515190940248655361693727389040020543382448919815984205761589312394392254313201508485341674269941343676066128323163224461662331157375714764736841857872964914395730466131235312579313491048116263812084159096412464617897305663283709112697060613891466946406587267016505174080595590072754455935210744667682284996826924719178296778365732896893456346407479096014068685853525133501838835125823467949009156994440439414471080288645660058028014002177282987927845147920598805610451462967646785897686290291571539582367609851157198192352973013421649324504042244688974264631910722415112696505727982876697595172289548369081060504129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26304682548510599116597820123824537037643748318006129308045708236470965244594006969059927160944512183229444800814288447782034327101543578184793501115551253426056924084502527443194225904710725229748398627517111533910692660077637583805817967077788374506374520619655841977376380689464597496837743040680502964491071262932249189776515765480517103339092001632029810282923954771593327152289816898483393683887357822657970675296225018065775193665717911215733251258947488392946309941854540150992036813446058491138300318662608671353438254593043081233282022191791037362822811688835439672320644390376673605123460597827836473363029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22794031169323495637419852787459120752606274807647170441348400123386077364656184122333004608279288507686239606141714853395348619677353772709549655759146600203467357119838475997732354762162969892254694515344914455042635450153461950961661298079039690549200030315665750134710129092121671901138305955126577909358305527842832624027313357720375219669034961234957129932589497079746133761812913094772495144797218112274558831325551185500344622634428686953894992549913078335172689876735161274975216052664426114414596993935867268342835799775353001694401122671957930067619486067537217327895499568603920030362078569978935747148463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23887495859490562878917714736000698198787267683593621586830697402189213264630681087366831821683291765774021048073089395562026060632466568934882672140934833672305123795969399848038468110727302730747679747561704708137356155831266654763639470632344674382698312522759723536741917810440239385459842353504884892950523307121956559188741084070899367091703571809493636427999772252108297984459932686275392380230867444556115599772030182628509979471791557360661534149398466323675176543998435881785647348347144440179414197894031152967779783694520746104090096385018112268752484353291420856728988015853411169660836153188324338767171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27148587807963236655278419089431866364887481766607043500713961021799604272166838091961161882992542685654307041628953647104782270674362316012308756408990483608574085645378498957374919795078161912509294735252728447291355247464014674706547862646339861224158852089135134285540073076906071149508993844607336480723292558749473316676785268969786187358172215160366191655962630349903252618546450386508625153523626115751864732522985160618786852513807585396937430363226837586237990398309887716697055738600582815940396489808013512722402804264373783324694625908942588123901890239934084081641045430233047558828577101310498539398681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24601165696080970912113100665573360639029818356412785944308628626782995270636920593059223882399566781136390216055843065603424634552937645091889276536265621113550294882805770518189151205506069387228979468644768715565447595141668663086173276156288559483779385336922217734395209007526145389212436400201756549652341392733351460807551904996790335959765972045274629951441009080028656097719660762060555538139307199716035615925382910584113317420203906335690717532678657868825779846085808648749351230034477212611020777939026963594865338220557171107341217068903767188429000354594757978925789997205392973874216117463112723564131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24873653466926580695531002025464699804452124871351542270034867118872595338553087854057367893770783964118490976887305980882149095754305277891444910356665135371107102533326064105247499529564851417712894236904867054745377735829143570280385934203043963392829053036808576005389254316803767517522634994993597614599063170998509786175244802486817253051706429151208255101519160034874475099260476899156988740304798083293279204009226310123776982708661866620547115972819315402053533011457962330569298925331058853476332451072847334196899660188428432616333091230402022605797656456610723376012648314540422720622984414887456524763823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28818781978430037176113943310368976488290230038433811628713341454833245885612300132452194117273604187187626425319069032019569451527220630040232977723958059195486849422047092669577736098376807514465847537687570852357086121594052716354000024771845808829995469247103953404382983810333789808705505087476736344098339704766837649598074244234242933675363897039803696039879174563125864404220800848719305303435837846888322251626065672016729753089567077614406833468158732356791443581248305251828697104468657111495927312319801255750137487515229557748190437819266867600643981460976292297787343013665046940237131047806169764317761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28332937870815541507448664372707105904674190085613707247258039847342609768979821527726264210368470316481222982693203165055635511446503640322430675914094519989071596089161902451516932802781056180252425639698887627592686061147236489339365564072443222632255443861617823042028121357434221983707752480245217683123854749814607744480068876498856430017618778007507119562373673408616122492801176070425881938465425324522996531515652462685515959049828803005718134785214837911053384984595862239379729468740401301970978919261818664781846217525797838253078437881528685525681353314985620439486299377302333417840978764166642717166403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27867538669523389610541208283883767514141651238778532977837233419844255506830403922788703495592497652241016157323249262847845455392225348600119463324134751073897585832449253161627845437401913753105852190719066117450143427114255726782229048185395715832438959481436508676286588523971297770945576319463256114489814507726143708932012244119875328463132712248737367978958706714070552269004086546637405671231092640180287512153817326065479547624117710546015358586761096712320942356963995654737510659632337842129760174092242542621203819535948118321658060779710335235487721563699671162940178610655734321083228305746922382272061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "26173439147595721431712570162428449384193572387122821582411138487366677330807152709354173001004961115562327778005351296713032693979951614694741503703025319537731873384561393414811445905698618745010367605255643147799978256761938399944728427114322863012076569888549684142826566632555088065122790865511208099681254273454484589916738122545733830675315680139795516174899674031944215812427510267101764115334686169784281504974594324199999254909201201992579860616489716150210448774655087746359119958854216771752500422254370422215917679187783927355118121386828874859273633298542774830904187197034933568211458035779075302581559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "20048883405031930828198527259984364909639581709020818959576553699882326406913033543958923419896287190737482849362756722579460912971544145667038470478825543923337506112270524532724987248159887031419738000804106159805383882185880441926765091634506057679703872006204327404647236205076840140352351411795440468334959261349977120317261564741871990430172897521501167951549838500953723083080403462440985567102503008020575625938222035021849578684512516662109965518429226098476475582428551172435244719348602439300596451536889747430708607904795022312542377377767430905762567328081502572919312998329408671182735484697815776216061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "30013764273531551890310345962475541094290980733016418956735723897584126855863340109057423793546185704466308649664780588238467217410037343629611085556064546057239501415003730094944838757498076872519094580363125760785519872542299841915705268542422961933754100309649479147393723760484902294570578413362778129138238910504676271957624530305505469582781418061806474710262652628186744887889308207976610537357382133635235981152524091518041972129492524648021192815873185741658649413400903534872690007310589037199870696287614409349104565365059889168528422659875271762319180815207787268788808562624759086133426936685847660640567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22531216503043914186092651955234737013006086381515869862668862592475139534867597605636004266747212501455013816310282529954738148183187603768053123918335835156107238004686914531232598623429247644386585795669225730057626973195393509404630020433357644832470362275027059801608414944734492888989076352018250465122980854036268334666888456171174578140612375097156834279822945683792597229317381410211155402500573374062439330869071245937919259301981154616067850717630797975006571855567151481493542229811213799912576208516741996840621590822616330076368141038069368317663400364016159905784310009087299111612066760831867364211997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27598199922311212703461006603046049098946204262407247004129250737593028703145147946142177428846230483734137252450368607470620253155878388199836710642557393695944649152672912151625538784105534971862276353646040055081147152085814316542734855781586116952688319108175169210631641236547126738165051183421216479628650440376183508501715808036209461980624964071804899139757563329358656723458123207154846530951295891322861667616084031811663202571744683420908817104495799184123644493252590924754514781228299420186132484770165473213341243785552784057205348558492879372836300869996223662952899923874220524364740310819676270533651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19589378562173329923940703644596303418239137272504170585761222287883678583108367108364271376849056005372830333917364771216792061329470220128901108051152806044665697584607504702335831452365233076114771714473419567605875269308446944948509121584203792065236699365214828718019229941810742579928494001877999317762418807011489643816336343719837177381369610140598203072936491090864854614300717981339899844541017662705264537220732116467951742301000291438499746480630966790411018601474836123117565123474183978286506865204697308130005268302685977583062106142344575257036690636606939812687849585785045568302368677527755458329439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24486160391693686643159237994836283724985502417018689810006860877295378714523843990674718735737887984725700747586117056957247795040867447714180900689542157647734451446877904668253312959007678578415311375804788374835843825569116678004437673936052955435617175938197262234496628270516610539865385135086160108884097055580203316730450758437772522570690807804520428849336945516460268840197888477566005259879789022916361094325522251393734566021062599732562139586362006593900315612648039392051913679118147082508860731272998413484617500942426647365761954503239578346008860044566116137119885198638051868138543073273585437895309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25281991486654368980236380708113324976832916515866582915740295620733681349084748713790524693352719255221857466594602944526453013581922932824004229173914496770684794462516747192686179182400277479814905016640970604471696793384220964572402382196646008699159366240922443649527725372461718337704596470031851341186467373853589252420147905877262561169096662288748395686667840933514070062207780120392250499702392618481816610616405805500774630429947071880168457733547476414579006568997622791433832609252876290016933803943407854533547975965267768014519443394453794800324347052496807734178170478483883611897843818370060025429241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29253643806004029076333211661980319689338800318850430412116218125158555447317168302661867758469384121996312214354623940918334217185166454392752025549942762874133916180517285148016976961987075328462433412947915806568904696089469005969930976430801315402894862057431126310604237626587014668633482274855344300122925191804337033270566199035642108833606015630945413638318690794264315251123050003216346613016270069034712262418918096483614909962017197898400954190194677961256403762713958588780619202856420002578158324544407742046872271190164479145096012611880834024787947484909105627838212933542824910669306833356020035768271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26972532336466842832303532869084846322443984728345074513770527419681286753484402594921896658042600691915194762439335461701000671346413079581488793069871649736215195362320360027064561471052765182585380691923137174166321995961136566169177916195632737987632922853708352223097323379028757095417181869659250700862806567923602928601151663236877568127837742805518695089330112336026648816845588034270397457232747460496732345533561624006675946585375188096031333673528420591149013204557644659015512700184595833781458967386445453825026758972887441053063141322651794215582106016605023665473150289875284677234983527865595843678359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29608371997785630953884202470023142364333112315809059675927123556090539356704725847309060681497408708050030493164720520646456294358229710856906624436872294237339310636506179263567546166686496752716707165431700149031544225213404633124145753196914341125607770904744811902586821371597425163730828534042279297914997651459294380944910951521733057652391104392853354020820070905797764921850094382379881606640810395774625758128198951836488114197224741289612763729316719444463961526964202147751060847641449936073018677838549791577831729957293468643204947356140179446141863321326162524157766362128952416835725619013832503285611", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24369573149775390474587426934033756013236699302391874947766976308514540251293333994480564308156323995387740535595381167559401184036278438776136496151439445320284655878472752558842493274778703233661010660043250064555603045826033112660247250709502685407188710691486598327720341879012833692929376782964990277975143153409136247181327491206003774239482772061860003915628831761922670233998395675471967360414899946965368335274167538195927709339323802949892585737261643172728933670072447354439973209982950708993683312845768343908698707445511396018193215520994757825264389304601789612910103191563543498138692037088160985586851", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23816675174352574859032918488792864211676782551920920652589188605858734318817862363684003074852384811613641291701388335508117962950430144895357897580485797248472910182084159318201500328487292303935072702337924136452569115658184210868660542435338520746323026121172794909225999958412010763760383575114501062472982628328105858105430633461826456918835280306913861962367481745122294676648247789809890251533296603025661703027031019838236293984963811304747999627108776256649785404828153377634829130948209630300616959391927237160003456882545179223778351715155838663785395769740504560336979120512699267219486432634019801545733", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27814679897166714556185705079682550327826742328578348218300848466610416174061473789114681186734481342477902081998375410606769290918685485525787249478575620258315112267086927336746219500527151301530212559363158363976288075030178002255459297660235669759552979580348080849166249000869703259078427259838136471875351790425424350002018650643895421303740750905870292328992407525839666655421047782206209982719796190484219492479949506142492297878645789670090219292286471826777523073618887690656459804251316496710522731409856655838317870317418014508183544592894565326593668633339973057423963364490032635459698068526691006811337", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25827653838349275486367351919787778242704293738548103858179450579540721959739455908574586777931333323380461824365488650817455495052988240934197987885159084884979994031652748485633004391973779378404316473334868666739642259531011345797346085663936449560736661211968955878041794487909970827596498669334294652272092434479882852965770955253524789149684190799047336390534879767206074599626011800023320743689869508942806051498549011594279029941075272092177397807787092023876317256977624920399636189142357323115492251429352668947633065175637462948356657955483615637257689114652701817905813589853770959828419176183067639732721", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19851593685929838402798136543994317722154106168227948813790906494035493010719282184386995244047918858946045570354703115153587830667541232635903295658159408755928794993144979017944295318835978485712788222260082265210610750535141571958643135536738525893329177837452269290730134293515105383758168501022505955470721336242455656545989160429390783670403503690935043341276937543570079856020261857944645544378264552269476932337745541046294542427373467224629260136865815047516616214705096669176436765757197591942907900672456372807323511326352124693007466844276803216419491656985603593768728473672133081891441027805381874117677", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23712955084522730394851725320200407527417214456668310314038461734667005136061938133839063315106457283411435796578568436817522694019301236558238322698074866110244267515043810435719532798752776504470374787789663209101873802656314507096486004196260400914159926393144923255577760159207559699676695802045487342367266499830834376457126246370392026729512855185187142032889124858054651048341838226280015877154693944916452288085327663969806366890378651240138351941753593332721400080305925184288813950775382877266419638919297952089868280104596779972229755506463695168167495615865511989939026797975946402709916536862968094876717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25730016295214745903702497485342607788186774766831771500755159306528538898643217019665622369406814631670604554235086826467442142411906900917034552446634267923729484615674404313868442407242774409344841794363262662263605735556566199615881501203622415549103810485964856192352653757085979255738576658657166462259423236368169750331033588309634848282951038217072520341831154070796992369387526968899338853597724620173253474220224794857546857920139693378057126844235269803859796152307956872517105816878959461594626892711252761352484633044629676850202451097519249621228544745952646649655216136088407872275834476303757762717199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21174543689427948684227306245802823395370530750441181310245547567816207668481745777632531859478267878143007019861324563973872705839020779986235466873589836166525718842332306046091659347323555794504316164924608258380423060071542356776109318770358150892641657203344517058013140357287800550425361215700703379076093852809738041188635105192912676647448421667315009838122545674120253841238790207377062690337596982213859626897211018735239719061653584152366435129910399267382058256574814065943908208712749611850892748956705998848221349598725086886784855685611790592702166898090827197664282001102946438303649296920877623921377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25399071355747860929036956703022069500606443384976151607657679341009379691899906386796289822784441076872289296640851153394680910532418256060443979745200097594274935796624567170525928311142194066692386850684543408697673730669785507788305513991474634404086574495182424474727421314293709281451821412050358008181308527625418336738152628246423428890242501186288482485417435325564159420967726718742505837155596117179377232827434403321998719854196384521381233353901813516059604498261650152671307709312608155075071195949161585035502455086655876411787525329909331660585714333175940986049406381017732769294700687965942512979819", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21828606493572098087047579334501378234673408757896996588810295804023035463403249839814913714278318137311271513359993740222503871550938259982302228998143267971123786360282253228286456563216139149762544837706585863242923609790818388596213932949372706807305202091931557443502962302599833076338345288499512938882078613040491848503790642070742293127869333397849412263508402272046548551431698914931494431889084334586908992649247842281384166652357885102154767254329055343366283251317810136223794303382133057198451194318718436508694862716019261102303761939074934009602444152966053338380919458010925445897675413138243294475181", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22214015853802337881858947644372221521543413562045702665822165415219284732251503253447102193201151390626369099113138297423170513042833196836328894246244083115042608685900585749059064130859806581302976104354283592226111329680187993638148607449989367023160178232796722435210206475274701562129604354851821832698442558445125554942277072680210186007682555123903266330206485820000867470037633952607838303965250454227817128037226996278125287990395569802773540177614760109079849818554860784970655043332587426497006726319439945671651846871257697097972498609787269422340575545383780540346632989441265564762273917686215509539861", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19569914859859105105579147196438291993616468933100864819153494900901643109385074097085571551625045554501878051668330126823679174996861002516207464744138170156366890373317845013040212280512448540131444053375249991401539459298361514927305733129650080729558196474162453771632485259580721596381208714227069297593831810825634734774809758342810198282763673356015851002534206052885217671037366399623195114171954870813096389740258254539622991290959265875997029975623758295835198145364606030814806978829309705009396475478829045217587968504812296163990974012876235091597658332044849217434284435290162814213383192342080447652783", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27789399038785956334864297622970588546813478459853693312469184860642704731819865002889459485405110825973616407126471049562228282364424918353124243937809459754412700767645558095963590500592790533968292139156672210373281826305690115208562931468896315577394062959921382050221016325099614450692456554103715312176479579062927476586105943548517550389263519236972698791674417838377528932205364840731566643308118571536701180110466149044362160291680137448818078237493293462705568091958267020463063715013379409431367052738229749684786732028753991055952759686900071945840802039243038344618048480235022791698261775107758256019291", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27190395940622042843470413065614287418685234727387097908403837412475493699896536196089326906638315261891375407791046178169888969589614975599791976546925692718689441437315016382318475089250815261363802819992206949141309604126534357208628380724618419984768585374315588162669482686129741693982059025429336929423696675108184115580351875195427801990411971584251295142303947205289514751961602546835666163079471449096252784888692795227382305853383330543888635236245752482793544335577345819979234529954366886316923814848743703640900911617643238049745416688151804323038981123501725009863617326465137031265024776795497244196563", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25919097337107497431614561837352155264888880146716232085333223374936663372606551707725863066663626864803208425531023440900533917416941163510086588689993721266107313448340653689052278657529106581332773203786201739581743458789543071330220616437819805097253820883838190274357801027671269730271641013642222477814073644813290203283728723770061981042704402648602468924577999693212688763221518211856520967296245687302980579351062495552113360790566811383349797621708839687890889972274280050624674696979640459324758810119793664608592921355279093901702951988633143502257602299582390497796943343545342122739475145853002366959887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22237096395541494832533606703662384051186655320809468609379355141083256621441501845827324145766309600481582240977808133005486290113567274399900790734421416515067574447367945064996715623454173971831257161825111190797682715290147490150415144816974671061445834852940765975060325222332025346847989326757917233854366251839750511451038250500119384255880830899533046355953181032112683930896388107658905968317211834095796762707680263707182506238865137468593605194995448101399061830716213757711016965005404803828808949493000327434844370822548403677824466775482156846400377119005646794488569782772443822611179864491588846465547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "25644658354152225569622747258796932673961418340726798892237026896234643690695153792000020543212318188251081487380891075010199770041081739635673487960038396498199699225936078490484567946357041817408543159886422460802211471925041448715375013197819499456487373087634504390964709921864015891661070621887636955984790190533739149651981682911507571400495510710104073194991214974995976153719204900110641860832926516107648987319524216240760653841911065808417928508656747812049177918052423441034720940127517920824520243501859054983360493161560878731259041521705432472565593227181514129407246338835800944532439839825231815072977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22932798862356846395936816227259645575220891689951207808190202005846586989632445133125579458252623448736181378325338573083512136551092103017715638490983989361611978124075677691698534416221942748838235129187054403741225188660801410356228077338919527150191265287047208664802950564220105250725010703821114635901515873029379205495987249500645147696800841410544583276979271275833249547224419669204721557878005481814997239259420253935859491459083688143103840511672014786763296282768484830122409498775806012943305204469489933105089801480514314921553722708211957369956551419807734715515219965078817983634845311859302593749383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20894752372018301349826083169099757", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21961233615646157216747238543055162", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21888469069990369490289206364121415", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25492712211635744762813553109563015", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23212837144605569550319678569720346", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22393920210870986863300372294324218", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25356625283937070138720357423173170", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24273129178818344447020251053169115", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21293471585531196500225626972997491", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23055980398501762405990773865541182", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25083005615575213486160289159305143", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21085910768795522156874105290199579", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24513160879722143170983940105918538", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22841868976218201817185067415405976", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24038038344493502181653393778365012", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20804533070455558716943459209415507", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25316324540616705629491479688851273", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24457376357530166793126977848272477", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21930405471100917484410258697546989", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24530704711157273971318263630057628", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22586575202848896438132468955959355", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21236070409199390672332729044173415", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21599017518885522909309766381752317", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23300620522344089802069257442316584", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24912291110172864984124229632224390", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22735638612304597342004293506488317", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23634491086116733313064646995159217", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20802596012289882114627578406129466", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24017188946339289110905673146390896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24354505713555772905287317396065481", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20817016489606556874227270069719354", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23131685882107054145094856382786204", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23820100442559771319346158396037597", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22861721863127227919915036417019003", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25587835426004363330565332950249040", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22447722185919461008022549168158485", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25293074723477957100040409824616217", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20823158997720991589542917546661204", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24009854929382713985289151158064492", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23656370584686563550669464803171710", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22474600943366063212244576120145839", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21691072444858901978772816587748594", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25073867766686963189463841483665565", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21209955546243554828297840283514311", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23735786381979518922095135147782965", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20870177920798202192935651983832424", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22082110415687776747115888921116954", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25863556193327572970222095905083570", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23291258671292807087617914578530577", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22630284219262883128257519446314593", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "16161422297159379730130630474703020207245849797371138220964482040482422280390396419161371127421399055893269232169986073349162295118177303579220891675096667050964730687100998432367269432757157524344021727023775449294691010094529842485278166962347901723688774192828324287885480456898210308848616165763143374777422372264116483662876724259360385786788717739020665929358027545730232608657206837873935624227685851507417924164358305939218753272200061814827744143249120139979910920965497281803417696745763539898657362892689780736747357256053501003373287587002528538164265920498884339578998116224278771130511908160122770943959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20781679188801261290365055025613245681292172260924695614070805905212348657852758957234055777114877267303083690529566074181734836058238371969102441698108041535796469730461372053168880005225801100661729595388103518027107975377751119142103138360625879252245623125113056504514597981841511632857249349411105786400827123022165800849541109202906302873887080918033686495720736327853035771357173495963358966166464278308767266694702510841274860240385569257348872137056025239578289200714252858160632806114426037952976876967194587304062604434504451297492495415509216794980290905284653965512435500556711405438610148449434720063287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23817409928113047293420369879855586464274424637436909765105542801671540763351041161005355330594196328501293506941053532024549804266258579258335290472563370894367781753642984238727379139720579419286094679915481051308873526526534894224823308696000381884103624224830271055785451317583478541261049856053832175096912873398254274715158156843868950780919682142741258285474104664363183753330024151119687889042625837855532515515769995918830752989017173299275801933902631497308081326029897067043223516932176612712253121343016223099266778391750335964583672823015502990335569109526501368019027746779032706307302839074827387541471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23530731133231688289735035018464777750893344990689096928887119260236663681318703646754856728103764302102758438557346518248765997909119666480412033024517828286609868121045894933245016433954705727484608530946119858147911147751278976261752028377955091608719352970376218998960771086694576815145624851617381005411573539334244590496943913248990368699937819174176119713666444848988656945835567256641243159762846310969682037670527611748286424298870953435260502661278673312865486722749183841504571853111572482504206710012155396784005908842273397506082772803199140039824147700232081037305775979186728408063213499555393965880787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24041480313000759960801388932655744896152732918618874982548301815853473434378950897024984824146735851245405745169477968349571322559909968553699192560736910983664274146160260599073219195428879867680266277777983234162821060925322815717655830638330182367102222333204083457438726997396181961889707122386584313189821637489110040742658125359010050056509874313368904786906473908508182597720933858402749635509587094505945607828310331449557444680038471928693443893136059441468257410321943957748842289201705346224827235262400307070320708619612088160360539960593167626885688199268984134867048076162508258721657368888807374742703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27277679471447867954742307378756947343567651097455498124754295780138109735660965969957690037915686472897029410289917134980484704266861369721970193613789366965836013229234301732059380767018489936759929714097615717008211616486135365237814502594832947820809802067576326905792180738853371678281238349161789981665400716250889556281524496416490939980339789683772395345565097366103761874093884156948700577699249886603551689725441555362903420311844560050004348842878537133504037815925623198869728830523365571739814352269650408602444765549381390939351929063391598231559244537428812859689958977318224667456940850530357995177867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23091218589061906612587256326796221020308969386236209415714526293264587490029702629265463071032874460494732809872235689913740299824385321463593247468362843243720128845813541559035641568689468632086255895200020732149990996809374671231388972180778813682321671937790597153113987976784505317233991601349559835345806347671242406683957316228721562103281403286483677292946937190500705456768179192734531455720176192152864807384064566433880267190448783631834812132430988578735810042775585071521618378584383512135265339573156667269985771282965219600143949397083556018421911261641651640593037801468985889421470272648434406281779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18748026363085337183097383470906046712954647101699937192297597049413439491041560251775791107436584746570440683484541018288954353532687517668924328039218167016547284849851509044928653324933119454893470831643795483317572639719444747905993364493322147932519090968614703465889965886267849948744936364117451860310788792467173306775190584036971848164684562654262550758850073786765482003277119994964093033896254073218883516053321647578302421526775476809149909708293505869648259212606984281502236042564312401657744704411751610135073461417548412696713466678584493981436863839447186679071974842447517688434295097522683140669999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20890011679211550483306686124295769903255620227724894397532651820564307358363291650872716893981057434416332775469872160433435036780696777169112339388937268365325418985070881978353001598997021076324383401509636359454427311550621784444756417809979064540457526063912580586757060096145919283475038957203715200303370834505116433605587222920344570457300580310909051874440991491379215203227126616361296694742726751684635190293173547592889494852548049226697236320319241169463527455747055447601120481118815545192830197461779562595225105793839571772897944071529721737978707248845281968393137538298121367107445620878330780354757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23266060596560539071310423696651023309062603171434850740022348746627384807357976710214433474496107425518417256092913523414134204511674579365535551634457849132858558184920876008913040882051081390566197128596040235712058960867851954330958333288312188710784492729964583586818946306829777729695244878111763888772791482364903270824542042915588421577285831215631469631681928353188154550100999284345725663455502090510376910108523036919390577190205514306039531115528648241485564338487719861870945104091569619095008563277601722362025431297630128723683088729846713975898704459903227656626558144634867959153301995795581280739913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17714449411908920396602658652079704158033367730430006322044429315722938097744077671757844606386820899226550230139560408193757732569714063787745476208310523506523869087506050678579596548813322529692644929953732649720747752933664269907573492461117020277126708218379374515219097532501623735484285718844229632213519670019237663086705188151269756294846644655552864889462123781891861798130182930286474723934144885424297879059264652069615490512193855784776472713947915553415232754910305469275718400821217169413460208876623734091878732414288602728334783166310725894344336292021100994007497013773632126682809957918754746240193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "25409321168738912555156354498574106858916529019246840367112819018535170486468135028933962117987952317574181597706711128301623082433789107684415398141933560804590852335595762469713101716818445719414583441551701469329707219862340347715222637699796569420548709478812330992911838155603361700005880596748571201086260958237043815315984985581599583044351776786762101260660745119427078570158951258680113442449219741605303906660315796504818407915440173991103291755454861396270946390133284084752856163237305047922046364171439247067717449516780094369293484390726189743316410108574229387270523611385540724931917880574921452587077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "25856059462108723490101516428740446917169829535367197304781441997410928582240048442254753072855085976403228112417131926663786578586599776945314568938166077791741024908985892532247320858884257624765470796057080275174777840439429295952612426116608319028210948946344665381147417222509840361694666609068818112190317510953028117934198488551189789915252656564038820553364985701107032179728361485487773471507815035985316588684254838397712580927239915998456964808532218934192645683999756961473156583023958288767655014083518643402999460777019815981390640408042732808210094958498564416009909181476649359374447834937224539214363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "21456963664150545707346521212478669555953006583484818695681827517325216620460494344465017030836413493871070278357617047904877788134018238997389235950902271895211436044894759581177521719225164637509357701985067785020955827913868355137091992114499960817291871196426455683094889468391076876300361202437149937493947357994009917049800563372586664220506283138329326868446222197928461686004356910156277580631486787583758936905479636320514107718985010689681856646877891673724716198125141607281804431875743840798527897297187823961306104486039726907835905079578403230768548737882065452377694030878154130842179905227496882468053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "22263413542153857740910042476446323112451585606754780521198538017522090503144508895302472259881724344335924188080232125200475891602426031271929707680068985266556775855555489000184738128686202945809223099163077030188039959211682748179407968840940298989731158887504462657775572934535718047658717996683732530197616315050444466502114955853219601649617058488255937632451895234212397298574762137134139009568984333684546362256657974745687616278424373430825507537966927009078816806814222454125924057601992168964468682806745077290639280219130098238649604531845521946985831131468696057076602721810639915881808732519692082445533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26627492890708147654511307983286863361617877150492295828796083996353800477082906467343214851702581352252048858736736559829661768581030778945529626496802059475552840024539436213768139838881255139985826934358708428444488809955272033932860888338752023952819255946304597954450405771789730657793469247611180283664294220466477275733789568912568338995952435535859747598086980741884597999244584553432302466148727468514954265289918160693312018010990760300876275569023077368418937185261943701075848772140342755821774347909582926516679649291290010340973600759918026702844361024219699214271750077161352813564700497463105558748131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "25383906455016080340138123508868244759576794259505508759756228667280707164654381517117972448447698009696614273480262947480944996930174125480036922645710868979006269056860235159766964863197951704645827331133635078643088481743225839097856810945411143588726982325146948576637828232501311107586200923201393008952090834024902060242512858369095497279768794735918628956441852284955026435603170644262843873964508071740642337869975301348985435370455832977673433238948925667541200705364850880016388353986910861177193523554444032114795943128281692199865987344229835742320102129108908931815138154242471620345188700589027442661289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "20044949195424284630030716192010027684845273927217502599811347390830809979104578606702012059736377033337082097390654269400358154864466685820601148846794083873517519062464868090881947398325210544934410753273839693957196160915553412096154646585693780182800225538969624069443536878696745092080295835482772837853696042045672643999563769848300005075577509212273636761954123175852537244465817617854345253017367568812651556272935379985560710575703701059409268599371539558738466165878638671692225009212719423324530059162358122252901876905013626210431178839075798208981158591029480031060885583311594450511611165258985933900993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "27033650462831060002082366082197254264498770164125082552271113594300773013425150875533751810346424767445675512325993145695530872796568694202686040546054684660715871280603932639041850737990213578183409708628355203256757288148711018773818749223286487370316836969143808666031914682702607891187001327105927232399265084842318838931239476552048813849412826134580636400306588369516951651843728190821655804017841518741938888862787609454724866559212479050709009256741235797138291261710202869607943633327569525193757343310488719779951907440283780498913806811597686273723672877018703585195092216636829864119379260525866858723571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17823431414527014952079025969488234612253299503420588215106944149342751633282279934147581318565833766713391275326007723256868204432045441699611261227949838335348469249334002411543406939826241719029272081231328383037536711586531996699596538873622849579500592713221629309107938028886048272442679884804030526663616752142842925024173749465026914170995074461809172639721685925010317164621264219825951831985740647433590144435204912996680961718210472645809886108384003283019502343203683036714127045814637094588995495564593247349087686396854467006644075010846483499844868424873016249989381038292986780132751234013799998517769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19614035051801614607234060212927772472751546579937827254051220500731715169641996487197456712273083993202753893476829612816230056444852098095373787001575774394351966094234563431640968013785485530032807311537593073776578049568842160213986912520555605874168972342271012501672579321762967014747729855398474147246787019224947536957475199434639531027000758091347361127754193119391203662618251230282205815836934949776830710052384763714736947358079418110510420767650084520246979050074597176758622915923593702738060767344081718251466004397833526811189148500495151376862248922301590103716573055204953669063662316093827476637941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18813437411746870133121155659896040371831806116126657274080305549987746319214624835734292128681825597903137258727870912543284947505737714551103208556603820567143520565633158109972674813710441935618817533019165252493893864676571291720246126950095614279429898290922996764127601744066834067279254279206757768847229617011321699539596845271580975630805971133123418735500689274125797096707895463793975924308500666645265164091865348493922559706574060920294263226619002204724036086851158781838416137071698145362602943624635999946735314825890024737450805390381662585285680201073591377090587665867960159736609184169135150171281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18665565210170965679433006506423949208702348045862548639484944058562657551281640325929809428126978756396389733593002553658790043351903201194609458908714141554659597541157311183460453719114693221975649303397857762176957086298445378463261105042689801171650240935327401921907238853858504612416595368829342391151064782377114731836046993023774481257982647533133882809379165464220992822116014633079242563366608957097611775905329035740683176677049111337894398320823346157813407304846265851329127132528546837775873716178767778137453605972461228520589825967034585308088873341704088513573943994276107713783730809711169194206381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17905681317882476160603469582780064498007360457777300973633605849168203835607291657208058540799822003246918181128318148001104026493357410285189624646573010509258148741423084452355249728185458490975608849424705161708587997459985480999558063920675677930716835043289495117522214640235490284623429383822385425079284429397407369843093290457487543803802098208679584623841761746403530866072810116013985860083698134515078097838878751014122302485491288032397322701066588917755195366856125367943682814305861448295375643230067607192182317821852232598515166764980603269221162251171537580652402339129861206902598400243915981730449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19098133721069549025571659081630784103083005264399364689241386587249647422550529034196690600260777051626960469685862756558548984770341679863488056840373057581780927810107805861426031096514428118856987314393288204961672783232691019051714156789653886484594308913085854731473707986791060538501559298816162175849598558750912072360398487177815467266246946861158459248524586834606224410412964719604861924354497220056631611035192368376478236616203401771767765936909373359055076792231657307360844356809410543250202305462453543489320515310072649992452974522551001508257495816431789959315265779888521437229684271540439721057081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19281237382263229006184227208083738914836909695119752610370762592416293027185613549491940817102025591001837722279661698083024102572548337844017645163697711428748214036328400269654115240170420601323603376716474999437310124715411058056375017838338859521004005409258625156597555588721991857938963245569494985014497191571732865203667024807050668805502267021657407459525929783066724215803854804524404001805659851862935007714594378777488839989039770860645722088485956096861746361966474892350941291493696272935784005313387023612092864922155113308991555439619215669057434811066865465414590716323138330568369939912220358997877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18261754571727056161646549611029005499904208026136790768524264417714212508750787340406839779810605320893703701765895303902636332603398666037719086780688872312666959392200005427959515031752374400417042613825154949268680256217848767122974421824062623395165427657331064489817303811166401128635609354883445666587247527008677190051165728080344388424497928799780947313299744945235382567260611289936985738035651050814882374632161611002579827813123388139080792888424568704012811975713284768765401634878905066905795400666350317808774217275723227419893650885411277700961944350070553115077214797788834755810059725738648986257261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25068862738594717754222291979327883315132190349952194760371175793335001195425105605489252911387161022165818753308257880214327212053580647596955966155136359526655705139135285147397623267175646510860219250760649840281596617515322558674345118456472492325070050216302725729946741210483883832639985089373370931327272661234816671269203312024539288610563939048168138897329857592911152125993702170755323226391125026958670008113496323368911751781236948899277249075718558670338065983691575057663685735254225844156596757786318826894314080782498997370208142503869457422856017426874539612050135309640510995189582439852613239802641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30927450638435388764475282244375345095777427686538116369447109529680100290580689501483566246751432498795895645282618131183300074782381363281778496503817901184180113426831736655554631443970385830030438644515086741274984381262881485401096423199209956024965670170654972432950359893152076660435003058412366954484651014909476274196371969776999637302574161050020548743537167719447748303246386265864294741181797305126587210678404607564118158573215314958625218593762595727410576615318755690946681678903794612701024529146982757837654522895236887677172070367438410919309135101568675730829996811199647548470445502322689912399349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21498010532026511923360277852405667026365754873413738483373802130916372945374753456034350127183991459148299269206728365218526737879911606101410561605705984473668968160661075266262386524378263018916454512555773486376358527030925185341271969912209001140209730107811101722860010595578575451027686852273323160797709856952543337976642186856525137945301186919407021881151358064169850962556361725111846464801228547301356446162620126506649128901328686862483661965510878207612648209809998244009332616414425121608780579258246671536314213197951290511478633088958689374844212534185704355024303455122601983150670936062718740507793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25033588978845065326883085138079502582271338257110585411309928522367642937521021461243063420922766912451526347282033824662974554616514838407841779175379374760243540626407699965088964737122313742490760431222153301687255662200045914334379211828009762023092862134249316412676455045081244225438824029638071979049065732410865581330863582592504153957153068160069508521460094757981313937497100755915801183545179590430384995113513496807575172805798442327962412577699293581191836377886923362568750725768923147900767185502516093831310016302067808573533182105426824066320295446771135981228646893963603959134472917582182120053341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22979306564571079377204052145682630421064221283500930387737319504762418066158375315457913692799364996555552441484997976747349589122214619227888273076906974757227045442716400927401118682475551117760239742025180751865674254041198292903029966798440282610039587185615932920513629044152689098455116788811603035894653616052536445872051815193800633499605035332681498909434832695806261642896319369914023375220295662736588302101977142636151203735227965151309926057609905475478167670995909618359446714533710735092033469751472502432118583070875647602153122912769375996149090208287551604610035047887744499413714803099199353840969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25301680641817247440171661187552631831230718796320961691974301982140113588826274550348241946671691927393282100562856565947634568882615535690560795944419561377142925153340003960734792503053325383564891864464947818924687569782766154979634229106404467437590193208123486479613297268641092136639022986779246863435968636185841773856699414190742160829283269713284907666752092790473335834279362911683766709466422560652368390580066292506321652587762114878493709452312751300133982433548562663169416440751097169201795630678928884194822300099207824545377698415736341086416378034613915766258502006774021130971494226700849166152559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29750097046008620844369375919598133855654645693832316481371895435092829692459113319293641418349976325416491639881786698573430993939816044392720527289591968702533333262465332172994556208981849164044327299595921449153759457039953331832746172082720787455064947273544590259231151381382964792348048032629167367326906740859984438499487372836035332372299254121677069436972943470173234533289807807277599764244578590612827853652775978597319850294938173407004659621019640095057089922036141975585072086602334376648691214908539018930288204647300481957902548247558222946576335615090650826393118357088061850408209582900134375939937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25665319385668004670618592683751309173282466965689023923336097613852600434141995352633192265334815190861077490627141211147526388332142990124876083640468283948337567557611578153787858920164024447273798190387016561166057019763600967308664000477133496990530478931783453662010522367073957761312621304972919167116362049624940910827385066341051447733635179437155859867461395526050749976237025602339756326383259751277656727581373375846611375920589857755300868638973605940166027598591252286356757043732870302126055726923989128255900242570425691296753814456043728209208965001368806572719432930343537123490660848892522499483219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23608676321412165131778615439930521300515410147864636703440706429465025552383288687745287839428667277191545016395521947312971652582866914908462608194541064984243527033490392188045227468624448071002170183195838988852118682658742329243538718754681826250659565977621479355508099107308353833511547780324814729147137826470217147991286375648131636195858030467247295313585529688775669152361651651657475480197374537853538498669960934810650033000851141831197735106310618354852007551474273331506671306224039381327198967316038128850418633601328473496931991087390872905723698576852953524404230743826182762619585042988936188917779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27577206474659925525417828432800243938908185754603963593583524313836675049153119506054143383703030681194153243178729015075995987600123973153835390420068041298491348576057853444537032079934652857998368358536070078617583228165220934760697625176443902130950202177230164399268308031756254421345556343030132135774954698284581092771195696711892218664584380734353158886502568961661203711590546959057425890866168121429159133503541472197639326173364299761275138672447156761043063210684163787180171677291544485220248161642716569255213363228186632376759763530223431906688006133048156216774426349572922019936327513196773710302983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27397116344554628350420091532379913759748170517213447885876994368783723556509983107577292171315733833665866040098358829168079717431465714798869449267739596358286471123438677003452382018038098203224464828263124680530196412517239508068921763594738764151135309673501979870218612990420614343037648482781660000145762573742070903317647666648619759280407024260614174584291357592986442131672495322388379991439462477736473459016395034983327792737789272688483137685002509683513814032425414556931814127771173269110256210722453706606851694449152863442391872198631809967749957733963212681125035941497116626909663667165221739102649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23213701392958224651138759299719070984610370474692951762556411508778979178296984836267949892006684216213260588684058403795357388717630502131596843389403264815563186028133761309649843520418321289672208599445747486597225174598878761816801752719601058097236310284890641983556619309915181798276050405051304059604493472442114589800435062916790958273372615960750384816752789635984047883804070791798941090233398667773859111815557198944494259066929700754512608479919931385155768376102121204890402302260935598519638771776439014775937253835872638542375678811020199391796989005456057665136445933112890860692568379729412605821043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22099101522576658195398063860667579731359021877878451728677558205802032582128657183537280010475404710090073633289671139687269286014460236089093478292017487564302299952367676643860965785036591204499740565772505838230787495388611763215599344382841682611023302306001778427669397698964610880854341422479403068330614403298793359004094693059568750855725952290442082308103406987936851071958085401751332560564331177650448822527331177697663393709742459426971956376369327749479821350218165545644905393197048213517919082818468033593447977316898501696278241624900944435417144660130013671618488439895807079191165114883186305616951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29738831950205140790359236826967833157295269059613322480412967692599891835918043222832757011105203304947686023399059711151977154094316102429732694599742325258093422188693523541899707579902976232006422951501715550028097102628453140129408426128641687369535488830592438320595547802555806123938533152358764970259595336174796835693589468456657120332124984742375437531977072304293844641933350917627968125610699141318343292861446799829048871876130644565954702297178557082201973960489893229978733748525592742654928571004896984351138116874794066879451719539268515369177831627776177271503254766214771481648024581874294753364263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26878926862592469573974442203873672324913875506895773382605556728739332154852206516849505086310167586332344689548465859871668041179816013566199030541037773374398659147565166982908476622115862182375195734953060648032865987510074567430872727753572014534985519357484853371907485031495974156413565193554921023787862636836441244364069557153799290987590714043450957067630013182318260873873076637823149609286827346045026360553753370578941804839770051345729728962406542547236393936768059106878804803184177598253239967358900625281274105157184413197078515467236129468652424221779375233658873688630821613339504704795731681464523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20059981662862067774815802275653865612469325277801846615019375123994119057854548084990620774348345756799034000698246797843158729254758390748577605046253024607436674867997104817472247291265669987032761383926900907981002533783793759497304071387434654801655950453642650500351407157706612794023940945192247424693354894298206801572131731639297930656845536971473198269413232659559192549223502425763896584933834421301091449050154264879576020241493330691844744962245475819280585123070512635815685625432982237871551679100213384279986734846670016209084272974677039345190574634598614441867259227536720360985257472245767049710271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20775126938633828645005623546863793082469291259818460016514657192026254436814538990587930130619404668569258885089047198698920515759532232159594754683435132171529496035192230436406762385164487135951355057915202137126964762807918984429163163730513453004234657614825235296822128087119476394845188365610622178667740055815614330900403062623334954710091853413529439360414621935344297670547151765326394229965598624865361390838335246092117665578116110548968153126277155053473933361047901647220436976396420596783608538390704760816369292982962195311795244507600537843396582795837800761999794719218231655453411399581280833259537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25762367699726179383285579064383185192111519296546785246350390523761553072817384289190666665647060986565911014780169901928804710658343659516608222523780226613681058482016467086101152673469251611734212739632312258087338575600947681077140408876191629468940615355811782745298326337745915203447411637260034742252477713309107266527679966218960459354564013243088371008692469127672986674740364689719455837523901820144644163168627577900642487013819276682438310987958654001454304306819667110381502271866009137302854682418496928849079811709732797502144691254439335431086224630528996747297422744799220293596724879352358123848333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21131928767252008705515772806187405560603210262007506132485954245662682297873015017052388360949734905006686193297002942688433460106412695325110254079906369417700450494256063362218950805397839500573522281797732888264372259971174938860948193664453939044451634429252703854933696405184576737458678031417028369894070868235650804027664951717984458201363523276972729375825161764795169987881250778754554164963856366890669332977320137622563349778911099547984148873772150858237738058409142799943968592265180098349985501749430144484463959357993179202534462803366326933014031740809061192278546752667693947602163799353774707518569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25836614324655853604275510507442567389994255033393047052175017153249343979376821881659202830438082839729624709171212753389033280942904877071559742111599588593457029873096829251667422986663288972568292596953634561307076500648293884604216245137361857860340298709233715504275578535868104477536755689827516373253613152214925165629028760764380919720750529126858234016565655458131719730443726425022774295050491428479709354697591914776816054006635921175778016373326628293592857409348451624428951158513483210585037298685414804135719314005796103081306654510107154775761888085910244654190498183549513056182670487307899331299003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19709281532704131382406796667398239290865689129781359627212771683091157065214574529458485620626391522600777528714366100920400683868071604770180050589145448283717950617955270636048248907505567467310931223839768735001527722875241907207945026186502893900875702021126539256281643002738306412745984159617258391077536357309749742273054955629088514334258070606305692811491245560929225146640084352594230843956648065462597508874829936512412511192306937730760617476878131095632870758517247592576969896126341970511774646633087588443406626064720912049155337555696601066035023624644473490946914110885035605965085546412787433655287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25586090495205655174819591875596599659178174311790151219937142218323982446568288094409783825105267595030684796220128172978270720175246436370822681536553762662887375065653022127923092262410650090214927968349456685555101290651246680589945124952466844079559385463874924231417937505866332568185544030112792488765522912975034555779872517342779859558672581343719506435959900621490934514726761192277682962383671076480052376747694572697021958597501143168967188167575331400062357772030871101028679114077740822880247150129866182082190402553868554714247531709972491263126687053362197737491381351622059908004302064499014546016713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25249465091856770866533055343236785643567323026853742017623300121023548342581845460468476987534739450959775769368496609889908293162964864977246415594115895551234152646681365381702661690444749291562100945156860833445918311639312072106346351012632124990518429743236329826949495156558926546767064486594173019484621973644018813026297960780203344127896724907995133098673504497742826209377114995111194021225637014792247727232394808711248185096873363865249668644835809312884958013774660641658700190278805345856715673101355084401605641224801926297336245356620966188352080559390746074402416755174656787236566325607557694457313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22760676074924651018911051389596615440950284465576749701046130889903064970187258972509381431339751675989455655977635419896095776201803383628675983481908087231412496569497469141570669178251986836574896516616987023820229782136906192701231106180098080601864159263401533654767479707397454587876939318433720473937661710636269380718337614238346550049974566303016391879553547196153215199873965338231618180908708001542769138482777145825968293839218288546438228140043991093333822358972947083901043469846186214586104257820020342013583221366109211745322505725301859758748721020490937094696064002809021818174703746566529964167397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25226731810206228785872464559462446369567129881809631626336290212082956748950083637596294576700524081547859378718137831492442388766654003605285457514866367349692145148809920289067978870657483671298422229240446829105838887010341491744444566186466984205073181990494387400050769393886489843051722622693587877960343464886507837151923584235003916296978384545990628789152021578620901839101024414014478424692638745862297928554424757669011981687711578335038848777269798434476149334394473242929948264667669805561977145704486465626601361081337092615166102501287504250139666021111403356208497864879143159738189221099569432780167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22207979752914280407681516413484654974194235022356586628972513921037303448076350604481211249000720474335595945717047600260757873798591233493544945951162987105769332404485876112856560951080762794852272669337953077616143131729866919719008732490833139369238965758312780690220479612799859787295395372049942611829080518117347888485228637288551623218966222352587459868443251067316848901748669804970080325114623676907365738109071758436515266703331158868643132690191050365185388350513708630112550327910638201963625370309349076467961142876966246427658522955545294443571829325238298514198055234022359556577895729480179358091551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22998314919778665517375768889054215964240615432121543858363629860044319427776366017057453084765113905453800502217168163117745980286425099292121914446358321418989946376324349490880332141513880930505190508294009420206343481330927022011811017111240913829147684938234801296124065842335880297280524913494910265083914570043354562689013482647852090282558430765290066892619196597705181453505761057167891259951935298032803406765851092832850329896898208320660910458591095591165224224200451448306289197834871695679936535304019883855313949450431540100755900572734173414709182074931750934211476528924282722990777622354487450993969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28877303541317301368628667324661761018059653511774078474023345018979307030873852015347607408561208485123447459924266632514412633813258493797510164662118590563606795169103575968491083128388396285215681728300440302012416722584361629975298261244178478018836603683398890771103546830622713626548637723182456498798694610776489603565103552736490234932054239918974140291709700322712651042473002199219678944539788645220191028989056252820631296478721079494230665575761598788729636530978224410448780014040699374064282861713291084119105355798222803384365982280986031061008495265518088963341311488429355586243654656653586546840703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24042349598140063039934242335266039518908090056242439177632774129512510423944738577397594791567214780370375265520182276942287449786090346334906618713201667959763451575325159143281323044381241313209279349776587263814624054259544094444460520702941078906000433505423708102323414435848045638429333279818320933063917750483571552813761350607225681406492727952424049036687956237784026041871615566402557032959586614364583595194640511704829622481102661288160229560693078263018150909629374254445241305274252937651368065654220318511249798996890654106485418808208110993258561656365268687523562962094130525506894923775200294018479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21606159022762563409722722433786933975162425007363031581403448272544766996651392615388096308633647319721538242621334922869328538862935614740625355784889034745446461973494251774642373416526878808389408382607738777882256379309990224067078437818866117482177232062679380128206606011682783512674853165509864221571693040191461599473258125331048516378205127849525529869430785594502443258926159492752825776512134079217825854031659274839043130456450469181186134545639981121836534006594059839565375993177209474276183070401591080297307404826092280132897035841009605185807694088801146261133670167148424912768236163780737143989979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30288149147551628307267441546867782100664570923855312619575542894512368170396418040219619691331169844357268094040607864433041012818718940822484848691757658386514551633497321022654058140194001489075571969666793669950416525381233042967319781698999131861238768782701428761233339900776910153345205432982107034217926235671894998718916369622547327185070833686275896119572280005984148951045387315498419669269329096776000961634227993167304671177087047941350078649733575766370268222034921006216798788089433739912306601277808720210894105152262172934809068372896875832434240138224016164557791579752560225904352240664198199981217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26618590025510959195247592219300435805757917099338899806035857896394091363337476749331709192517278553872844233046356646914290705926811588517335992469091528014993273005428109017380910692901380372659235572817835594718364036252842602488892320535850564547874042935367787289801905109500458283669707352689774366976537327325010715259173380752044237682210160905448442738716054983594122089629940694750306070637083996790870475820241473875607809299795212485205747556940898365583530027312373533138501895625205667689082187180431206451710960475493211205459727708775400035503671478332591554240450426587770840988969093886271821620301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19400459914336961917606574766071381041027265313019660288470211227253053293758319219580034944709504988326659385465859081326950006910513182571047123359562719128466314194127609603956909745844536790145743181698324235005554113226038230807938824527017548538566670461862098809635124284020841155284741790013507484057685142230674332521951747763089080800799943975433301651451345019501585715690845385843659366632035341197990255620991744012824715366603661767073672203096220088494500603373729675991342537770397742550730366508319302032541784928217758352679455996828203189978765629098065866108203646134698345194962543998524747612663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27671068977924341495573881227303739699790227284890861253255649698651106266752473768094865678601231847721230323694483231229259777126531429886415251911243926925250312946742314409343150213064717679515003079033893787560597487216571768639969921975520452507675839670210921756119396967204268611710954526808910902202285943951022064043200969882557606157156810492964928864132105944964984272811081491394573676812911377147319510541852063602395754360942709084955750265981378417449215166728521411983835914621442888595405277986320619279069005375789697974444070712487043597591989763258014815862464851912893059795982212340337094146827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22318072118523984430380498619110120518060576657749830330083693211703081718547060613610748845397481871032244049366983599829094577481655818396667969452679100856798958595068461492452413363969285241559646792761872206247684955291534250491456835667664533585994963261412314721755127750385677161965099927915744175743332442090698044554654087954266693309265756136625052413039654267818193213528158477318007468371680645258986266211358150725389152261487610802330407280174821459972187605893086400756561152357067175748498307347684795189200040664669383353087189918268156640716432572896262562813092053644815798031486849373317837168531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26644451669934541633806477695028123737389136808723940713082280830282577415824778649709489108284822355774774984479539226248814542574614916577831775435517192777305805569671022570072609194022863578840883887899971963139982504547257624097399943441190722752688952153243923132156058852851336276237840081820597506682442276177655527628597689157969409049806401113342375293589818427170601092908637498260860110565447933818517961524751926776114824807121540222459582386369698072767250164893608455955667692687356041106092847958173071375980812280257395690389342745470362020235923133516132200286479078862378680110034986805820248922079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26151370081053496334732481712807238310399070824946876575383481451242999927213529923903105500723593792816083629176333548908928372425289267686259666070696638750386670402530390531768535678965634074091260278579790117288859668787582915463756683888246844839132330619021877399544950513110241229751779010031630812656876703675030175679391510081693554466398326891101760574512279982830593586820790810697993687334022655525394999146300869456450630474408222460285469217866479554784219795238319986641993287898066400673301955469288317576091311827898099441588388213526087385145026470711852637909278380158989196524588900245634799758033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24451328491857333443781787167859218444915083623917763179946301242412527601716189114474169805402543145575595523142817163403428257817493392467919603627925790259998552636609646327532412810194137894658338444807334195731910257883723423806584943450587182799247520630717420788460296010215396710121120848032748367486908268880727873974526984229430800788012637728888153077810575593905252335234925571129105478609301338100271225008680699281460442382428461851118804393707133785993386867573024448593355305091473775866212596003978339459666351895871621040669784474664587104867653478517756905219291703741694803584523861317350461868397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24372449943484327282591497787231543832987589741568347289393412255861568947589903348678548568388929282423246704501820163948918375029089759618725032792765008840147703725824050148228239082520822383762419710920213055203885948143928680951702121075629217830026490700478717715537081997882411377785745676428589461461788700729624534254055075778531001872753179510873090920540910188393026782383382610043771122388087489715350284001888333910881621858396125432063858461702548957349787983590199978465227972857219247089315495999857405123567835598595177478491602209830196879279110971487146916037864652389654975941495681921620777717379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29312693066910807764307644439734120316098164399142449532160181863377398129974838000880989308806717231215251687575550733955662805233135639925360961865125184343932745329351296041795284096978571187940971920730482956391348664709537275764838296590183718135393441429321313698400700815196702187060673280601766515704366584813987873013538886565348122104080983372872862021594829694567122871070723985031482857865583764396707844556923022312611632852354068460498303513570510095982957582535510307541575384414676152991377090882557864651449642205670687678210973869914665006919378989696660803907864212572105730158250852796014957554603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24775962563397644532111264667856352733073011841077780552948520283696470190903504218598127760396841716949123464715746963571366746321431629722237243549683340127032242674179835590408811774287949318021769668099910416535560268285192965194441093188359882009757887790222374737642974303560817266659032383393872727714544678918572041016367966011720997595312107878925106518831588157439044202498342752574541155935909435255977534393621238617008022901967356138160743731046443657476188970384494480164739794844621605300281113971783786685931174876561452867190544157264456344166771063900024850750796404670394797045120152628703148879241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28796965713958433412036816038566111799972337064880675564378080631623178307836015339164017313163518499049348720708148801894039456461393920265665870175357424874794706927220215786883300911228242141086431222755689853649550802830083731521941256916790795204819126152310186426314680096160213168185068913248697630138340398756769962275852048967846470344525574019185587142187740959261770477587543960659278145981832349494347509390227236420731200456863747571669756846558116902435831431991835650277071368507879946874402306330031158988186401153113491749671603283520219166745937202047051448671323624384892957674001155203410010819853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23914109297219639142349953918720534330357827066296009259561797661160730649226056663017538346180001562290105214676784672265993459789586245638186729351950368631382644096209628913942739004553857181646592386672841113668731145652131026358903381100015757002117189216857275913110947186722056726077762041050348601326205815585799261755553068442234600500193872104747547845863279053213419787323572891479665186636785223298211112894817354110761221630946366434943867686225641399790854975328129262041374000251404500234387136912021582805443097187582797403024965125982583874499374857482313624794670874500992916612558341577236200285967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23623853635065523054327195953648784400077639805292448514309306581385309091565715037480937580310916860971970165535061153198558954954284195145758968307794876344339821243645486231429519499077750182886925347559063868364312140663034765375816927335901931894922352147166336977100905640437039012711313631710113641051373151130970941699962974347699545788390987115622660002531837755148351412067585218047276869230185654355779747656656473961831085426305699449634446667882333425406319505326798980479648274240902627455052140285375243810232513187618156485386808775517214317877522315963496111088199942426675622120834646590358504227941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25710461322146076731280661512401336831948316441567016462717674424872841957855054287801706112780781250313849965809462712442285268365029387453942885197795739461933104402308640733915520124385185095438587076063932077375173815282658410138342355824920958005138300696690497161553542093107983386573211773388787616732210423011999131908511003751375012606403162973814070472371193546433565079676122267999404079269246026708138859735218065037872870935025517744543252999493291532734286273256000286870723980248361232070993820189448435760827596365753030431028365858842023263686445155078943649402974173446904054319639428004979209030143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23974260017683532289997128384626359165643268995211639890727308472892763083717400204914437509058446466809057391966733657752028768319710715659518614526687946159963688838939446963774835592443512348060767883720362302641233121807151800763918934200683543189264419314549199733233824127202660752701101379081556560657816178411490051832837097525329859902064875033462085853262834321096459655316499818988996731497456690706196948195096606323513192232055495770470647357484636952383862038011274371639309303268516772771774833074666075669175837408933275285397270637774739601506116859722312672561903014951878134830046386922577929496523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22716481306615931193721303852661465983219723403383648820981250832775727435675048365269865900289040030861079597205211424673371012883650168791421877691028480960428984621537503065564335272075906561031434007805469108842296867176827538611423964375480433460282484408546629898345451504793218791586264339300887931521519484921299697211868179641699474088477798319857217836000496220058865880346338955944280043769540450744044310667343288523727379206132430726063966813851910183261714222578798617144357992626047460915409623790035672603937370134798213341081821623226185418694303167599629338227822133704243215429698920259615613296781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20457542407201998019369177470238779335742905451237521926559206201877747869709940338007238107600607251786527171896235764233359643703367540237721719868492688002984231403308204119256347995208585536947278258293402350084065913495504737551395778984906174192270537677226321847318765016685645259821364450035460058560869818739379758290580859149332083142784882897734327101817441247193630197766506098732426718890554438030313382090571861658477387679131892810416489202326990372522887240827640686883552341316972166525814368454585967399733551670705098860336500618975031186519115404624546517569395969475721129593279239205606881359587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25600750138913335172137791864087223297772982471459743737126901565182719328661156516973969036255327598283991372832906804131509584387374689559511717800626043625051838986146681449908338554319622856374550998821231387260776998940372770229110144769778532464455007617683777728161698568837140751613118968830695639832659111373413848055987623694095546908738831013433858256316519625673353083575109421190847373313776653177115668724167713636758483244962071213054804602876907537844915398903855397350380151752706913651761611119358342932682457770455215175793842798031388964935027207806191636262849605843292436710302747656428579949227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25983251880782532764564916729115959797944950255926898410384955578550608069985411967110676962292746708490079579458420523643588615078114541779726315310466519365868217666500202748987937050331026003826863568518305610601307685772989642857542168333370297041899579126238501810873751662007114296227672285926740892931899624543701859750128989059454906556600398792886687850080895021963549381931430161461731256202135349559466978951733404499059189172613962743587360872130262115995083727191924097085039982126529392399378605677567733022889539705819647832459064389985991245816232537534303383293284361980025001791328308437062847282473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20720295586454979124245882479778071461805089898982835898038903443864129230566084232204388074713523961826294765871134495487016364350577541812646244077860235966341034676187521999760579062344463997463498505541582091925036285080564594417273455834620129532328078848427277536701074122487927444073595823729320386413881414604156919236279168743073821364524324826295111503886720376946343335514698238583226045425439317376701241633618237782488527869475088876358905618095321306429313460306340731123221274674195619722073996673608832288080431744642719261944615632297423472834362737397160216376188369431465542616694180311521872307007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31114471813191249559196221245079897213736797278449581385920475194893533743511740956150348595851878492228462779726207505085689247235846396442865692674826199976034031589501921359318934574022203523207192240928758137573743491315947733699809166342495692550891841072067546355691673052330121521751772709005397089502504840338941986815820944146810350650056412698909824091464392065898976625957550479645867493432712059328426602479120791820223040636102880797281661493730650492872983086564392247291408753095405597016035636756317473527196354359725575982127320317127535515223447493452119687146715495734815404670502564478340270181199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23436387423202133724535676826160812", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21722668454736205979571017954537387", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23285706156276509014307452460737690", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21896530563506095628488714814693839", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "774444021240145446458250669106024301109996909100375434992828772074095354833131860824174385754723275359597949090862698356448362773796655623539813063493266450581939224361763770872596289443637302738969218377050977906958393318809923378351563880458926852228564824628016532167252845339915058586490338164703481640930961153162743025956906137834724286874342270848800595061723544072030081578377186054553486363940056256861958130510754039807389026173327942493180528749749293651616571894728310007331127013734339505872805486699833078493601791512829881546737301355881197169680658447633044010946202359774707616374857059875209467414190519282493229688179560869545986881554240721730911007138537290544541935517410030859289643400188735993478862967665307032354936283461797727985655910864457889347592743538980775894241851122202300311625580133508903796979343876993356695643691355737114995233733409495267560217764621223212910525320433681982594819849071509462262084537074859222397438160895383204026172113449928598136590470029408115307646827374874157350206307269925446394650462227604580403471046806885820350194950784297260184397413666479329889798123895948608144413301450759101728946304359184515665496917428031260486566808108256678325171302834506988203339871731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23736761497100758582627267061269325090342172449687769663903225292652273568841138749755820850450495413840883299900505353429739514783288499837909609704829225410791187136901822426840470468958933656088729934110697333032385282592746856472542549985781083038340837411919907043478640450944414451554012831549558678496306762954453835256830405231523978212376849045266486183546706732124334253660181017502640350272253226211676054349041565155059606175846124600580759141015751782305332763075357515573162978491539311643785315950734236339309673161719725142053300056342584416262407895155796886043620291152729485224808963464975213602003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "25549214948072334396012724637595090506528811059808935578091342455325146373989471337660875092128630366382629800354713580957231454875384110597304628834729305568961181537989728343604349963613877013720269278455660562612774685531270955000607861356660762310071995224133398436891360429223325729938933028369281396536953012631324093651946732682730007002100339257691492554102394927164164271148653736418405837454044489064254837156463251643465954192529224408964207034678848566348494030532855848142473571136601210842591357215808613129484675662012896389837179967695872632723454346644533098626981543820924488959638118372504220282539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "27421717631526106819482386059785882615398931539385274047578222087685757299116379924806926021352904070077357919307578525570934150549412305673553290655704677081447224104449632310720876619701939377112309452994735809416715832827934260706100343809018483629527231365536436607766280877815552644054285285614029591529932054619781534275448970639644910007973925165271077227231505595438879617609145267936052742671440390268452730288635947283767881534636488397401143770128191576528810203632712155735514748559071472157028566733348537609522602924781101834849700587146943903328078177424639303754176605035092950299362991231217809727337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22885342372287342737693962225588301", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25639358391835955251706576158986138174430198751138877081089559534206359749163471447236727194293628669283818066176094703407803508499945818641196561503256881859352723035523825076590054094638783525222364223719992650629936760502307504368641760963721537049633991488099647294320156113263221786270860639162464308820916796951634988200484773067144716032803928488014260160447092979237266349145621639192231957401209144340068073031383689488016680654563943640911126900118976599102142304399427662828404801611357567116109911472488627854872088256185210885966071654162900057215541307130690380497300951329358979686625520430172140174463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25840354762062609539733052294788991373892097352206852674136567787975896647116374928396597297007105711552045886103223195899779235751644829828538948019314647381663253405989654340054026592213265992615669619249512881702189045453931775709612853413541663351626183286751724749024943013181120500920865471026226459765764208509412264909470169995788234626115366497555424955007388192611989005680158772085139493244056156969920838594410173928397398786713063585770515399946383392448037307066406184670127640786855895982289923468616368506563357946937317234959062867921908371238248750605829698464770699585431807509256210546727002330767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22796609036840170546808076487306601777292469465341362616858797652937242634466515300012851099849106678240900293111854707009823324073159246754915612234045151325028430843921463964175183284223457322103069410706512583418066844624046319987000454586522415076834889119991990104709076441621720833474221658539860031908839344583839319022663992387517785764788767199412180582860854897100384429720545623264931922094441578094343198300397816851713474565283292914080894228255172563548296268390089674919916356337156704717477215198491215684194595417446622041869266762244410110662508011806523106740805806622029794728112883492649647044929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22130644644381587065246554601858552140639458842924079560527070491566283127429312134990716611453093643435676694392738318067406016230556188062874294934306008703230014223089216931111450543164591264706345860100063888759175716274668012847425421574558246413697646322770971291901859292335957774917333405758238483544247971502376967304543213528144692211100342838719860822937954422643930312006425853684500710736934723979318772322593962285516709125876256197874839457532480288664595058175514959148120308298780097967116739608015796979650016450627570806323660222420324966500299028760626009616610126949960463881209240966719608974337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24541590563351176716268470481141432", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23824549067251080619012580993859546", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22382795393862043086074717165017345968023603630188759873741925259358487693234154711856732490668487372035261664062208352004959850593434484805168446096117040317671311597386860817892024011074702606701769255966006815146205470938716910022350039973563011288185126462168626261932595320823119952510641172479347964425537737649453443906115764636116260382411503708122163459459383833858943413504599960840354101520599482339627842408873292356182887885543664725126369662610124727946126003003472173849763212899288436406233250236175794890799127542126145106223878919098295655710181797060968386384760925876183126138023205658925938050771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20702092258262093603593082509946846298900033637003042927662161418331717774554589392224589465260701824329999634620193970232860361595670175607160249569223262793977955882969708600653101215392623041522987498374997991820804188563725981019693849493286277240885314472725696620772530064766968477999385968350260368713857740179629733654870290738748063525669659265255566055965211840207373243417622795360553798489043480884456200179268223745385350743123164038667441967320040366490774357959330686764489946966707438953412442275360188960800996956542569711330955679528661169535872087070365969369329626288427728737780149337450679606627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16900707531873925937056950530309514265023792146380015659780789234063950274911137850030393957661426202765159899141973758113452768980602039611465906748150701562203316311281778302062842394869387799865808273491514364608869795573997872295617147517564504660687764312404964644921377369353075406134373546937683589067897181371791311893569367034407876382507222044538102947111811516005006131573642252052692403570245395838671477571542206821967010840952252293508602923552539400179801462930952952558217598856077036639989724271391161137126823500796036265551240293003022817604333819144166417921549049906398491366749008187094812516099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295725691147581201931702979642179972542250759541268034320010411889717762648136509846470354794012199124055147816986447924332326640374699149525719905432340380702928991270475272962934857106408250350831416547088970113890048770868040388416550709543000839548332062778533277667386523268883454121658752274158786619136073070273319014416210576997838180250262511324889976397244926915892093666519440093491760775271222181077930632827702477299324408516039151440041643727424484567006113966949415659206725301958905660551101145285012948087748736076611463041669875081786833496459785712922789140225565805017325159794810126284631590579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297865547062019464442587645196731471300444645626616494266698068358014930309698057019195813063521666009562433244534335931916849026949311921665466925827542074091676847566993025440414867750548178586418510202380106236805598402055830875728112399564739365775109094906032183449965749235107365747367457920866667086038858526792096937813284130841958836844080518320814956869927917591771743602337843657448760535810039326932079216473297629817407129050424270092886554683026147563826655446663370217026367838437969646014661444852919309567521530288218252138515286933327592046350758089299410645815073624416664417749978939718971130363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24949496647364736688547940632408016415606290133497644937021847415987644561089756305261179684294751233731542174517953280940144639024108145989524616974436005880319784969229804874093706882149102108230514102573038145742472926134111020245174479706015516456266889709239362731149450801832128637052882534570924797190486056619872993849368880782386304261417436808186438437076378129406626618925948466362004497073047348034583177971872943166420785370100163102229149819009810407108696990822921325609163285576083868198827514638659183199651841551383612442652052515797319069809455282958103000982693544590468725002413078399647145522059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16360468122814681661294815655213720023952132547004215687932363615104082998844276760580945147240914885125940927042063114802120300967882920564717888907846168551148850333158105882226513780959938389173729832890960499253455596910330054874365425034421797522069420426116326360548152458672330539496438113533649373540502288960216373244622783855391108700166902919745075401963321451865794870308020087680630818905694353010818943085236413224928219743617979703137114221904753137788500696166002799831026259077589475555664700521886448242256421378244861531103876790342536667826143067427853899177280587941939752655799962490792560191779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18395972003007875897286325617759354107249430527731760176404944853003759402438892745336598988738153162892937487392740472838403161096223546803450106461927582769550727427400494826180066444586332412057376509606346709705761476879468763092279550235478858047338432168845926342279184276533513161517821855139939154703909032799743083797398125077635246206810279940876343680162288531645534379724652821353008660933548741566759407816203020307196069058480227876789089824894014784125211664207266069963162527818749162315426831567511173726469833008983012718436215355353289518866037749429760356320774389940947080192632255984326722329669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287490115352493225152178266707672935875191721649847427696651809540562829294368588788815724410777303872545183064813794258216843149433357772013183065902157765948815774065211454401107060989404316730801087923627650358037505652057835329036967190448364415629552581152391704626286436322282340423057290960865829700852058415109435184338978919178605134195118519157260253360597965221151385025062272690463636537490230641514526346213790866887480065724480147386494825849021091040352076779150884747123806856910240754027260364371778875695841603088633440775343467028348489497933955273205431894576338869690211377832508104355143445031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18953195744199373085060589013211098235009200795391921106415256759944061110754580861833201525095450073927521872899125018053950929591475277000919748835571607075070213293859973121248293044689889310796862393823359443619384370082777051530664913272970950940293203350195879673199432379069551882648115227369005155687404418471053362932828068282299237540388883507523002764071859966058078339131543641597952624861447948794898403692847874550532887557509490321490408876299182039347242914490815994983200644675941915088437527510966538691893910771731098081608580914809284741572980532618428400359567350729000210079508214717877921288381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18126562254202665534350182953892114099408073953916295888696659334399759428351921031699550862615769326870991615483197906728541601942575201133469944252360340059159534119097759694561521267802179468944932212824342280887058784189856365426168790229537818642425090270344221155340440718775746471701403091328503824767156484184399891962800380872383101411781997135736340454159253493811140919127878317394300488566654883195134517956977114083360785597837548011190074000204444411039204678436211774183982343712370370061810648615007166148492839323504024381811087243136450590919672261856823730825750765034638948377899524748853494819279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22627934726315707367453803920489301646855579819091749638658154351653851623116884591313457504397209946585040746007609605735082072137045057730105996035970154699594934911803737382550845278927344350350644443843018458094014833905333102698095924332987411895096979823175626832042266282324169606314385755765085634302639033781546781364216169419201653653327500254613432547488686856424526585697954101147208116651646262014836876787097617228619663151932991091039852724976551000772172262280216617444996409803145467877257433688891477303268396013374654687671774516334654372218233898176863654739037812068645639805873177147347802667377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281033270003566747149280327814131338938771848830009325768615235432611227032064216193327444933766121911006782911077727356167428037024952190228800499519124772349026300737369440616286134171444911235830590175432171078926948770325282864407269981078492665416308912315372678020848120371224539065132549751136876340301438252769145726347212770742792018085887224892911820378012112471771567011501766411124955719356197338899086587048010522534474087830027534293109762920964200829356132428795712097125968894718084781873298330690297963097999538390729113625982550827222729996150982481766472414658495098374602400045113313229314332241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290304541078695929359664485379786375186587373452158262180996146954100952669311828263919941934960748103596597430670520897713245803632862181635297021136297163861433766733522782978824495273344517046033848560217596787661111845339257333307690007159633973101308334500666434244588618665943356579424828294984647018896296665802023319066430083629422373001444264401952915975830457995938735075647060325779263904153982978958484896373527078604439427436631014359794896135498817296392102231238708516902372908707493689568132197150030173937453839848645162316825234073193067618421580609331273283813478474605296203419552303104597887177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16395025660451306533049099819249936507167530859112600862332889537159498273344291496728399833927239193339631047586759246060376869488345670261495713604278799587699830408366810141428301642274474031176876070729131842360444749225846506619506190804994085211690441137540860402424740016499763476258279805374231200657544292751748376541629949360143936441981596085487142117561217429508808627768788104776598584899131151885320629208060843732532562159469306421015016923925006436575314227210121867147813998821924534534879230171012440431287787552452585333558867157673173512963796890319012707212900861169466374713561983502239655011951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27966753806193451563296511565407548257619273840453183092961821817388755618795973486771371153417705723769180700901284686519164847628877783478154128094895609918510664956056273709271312598053875934120369072586057329917179967152485904005249140150619948863303474548966449760366103188407526094267758529082091123329192488982784848138231919007493152874103030800073468944023005464908217992865831985386208032031364981495222933437562778887287075115812858616605204365161619871222011817467927440221101135824701000452236894749487605629559562895315763645396474592445740349438141563395387833252750286353927085963538228127113783910163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333235878870317410404067384858576521256577123168270179146412919189163408030505186604851133470051546098705293985494189704449678048295626267657825419128693272919087108570178913271791451982913119208961835678601162986197204364289321349379410058617508775003443768534421194889772076708372446063135734611080385631688076457306228503696560236252773871168126195909392951156291652070685691660619027175657790619838529451948240255218725504481104687994385803509231924427423089646589439437753121431304279006110093314736083244207698888554932981205902258974121922360367156720891321531160068248406931962256652857231902336514855226379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23954865886259843861125906367609557560701840821459003913607333272689892993544347846142765351411409267364704895073777921678150533933051104368226557495706925553655601347028643135096325159675039822788943331055794902403686995590949303415213448204278837097663133619617278890558896086781623874305823304614956722691476496369772713972280728292363474754376193914587362526154591233149634989440816836135132368736840601771953789370623978305387574589410366436402971703062936588057892499646656717156196339326968873620786764279846644635664773650791019344404740478328544156231859723397967344641399525693219499247382086083562500489443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355348616299456008943091124705888553085429080287953430028960185096203770319857881709659858002353452974378200673337856203857424015816949282596028528967723963634304719302291998596221081057072804256748865183390288392033112543582444506985816663022240055795467312027484383114944099914746518705597009688056716576564821811459634958758832733935161095708111880037889693023475232072261856007827578132376146213086615152751011913799525318098032091353227595970971884738269638996726223066821281394461376902427234810578525897479475069739994047557963563357792201717425831894064237875321827910289860143584867168472506565367755155993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21556576539412048662347359345709731661134316787432924079440113197349854354765872825442319387326437737762860807861871653281511522047424255717561488884884043059825955357335295168074825775147214084233297226992870397332223950376917555951101346407717164646727708790172467658155284717534625312152016783010404212968146804173652352310431612330249497762685288536843037570442938590053396717280551856805732511032599673031527353235126111680520355379558449365611245864363638822305718726124755919236981708971867024221724729997610874069894328614998436116037709438262555237376638412278097988838526953166496438904330157495652614149663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21068240907616619339845142787765413069345320996950938713789111864044911511258967781318836020404564170578034123695378080634033379495026784176050553973792737533858199452242591348620099190481789085924129128292403484727436301243191362262285125973128131286406768855371969872839930160806078027366248432435483994385243982076741243743173994815611796511032582409864707465491817793979522614394247390394533661702805620155110990077379348558094146309243535717293921522501518019449177103406247147626809756572808011636572219081170796922895507040170942904757509378286300130065524654019617700613294968204823685410794450408056350794509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28835597948620065982716887010502890058472636668438812239683793108413588746582135669449508475597296893810168373968579192639303185855727555744363953311830718364809874454243799192929673886127293119151057553809220941280425127206968671421872003765080840547231766711308317600023142993289652772658008530949669241339533623752697006023391400202162019417412635507361889656713472381988365381665181037207402877412985748490136858000097907234466337723867024556856163602435348366443862798647032939143192966412533580754676467525334257532612154205909959253630392872954888662201035792164769042291770109040946858389419976514888897073691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16336608644049479223465698398824441844208273412792472689105594526547821179698686618090570431146516937732168978186053878208040864762246828339553222501142698905316569510750045245585665230564835587163891733338155861394717114617478538025038930194629672617363554160345337178688611955828107291029158641339297235923953267106758683782297336439683987605589042046195941981640916261576619744699072501772092492351622965539393873774565214819800074503461327473868190876379337755238289225668918065798948457415658194047663699285891273586048349078564288954248254751874986743815102665019445478491293672206210516484252318538958471107391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19587038362891197636089883094693947698112604753023373638521184847256125869867425380554480082167069037925528230875964276857252702129165346239000707607737011283245028133837671353792389386676371333452358899816098769202141949918288102965552414511632199011011720734323701236091254566128512801463660244747949190529822821853185525004163010056984778532054949417826451104926465624378296681791264756693179337761867186843939554697408378108917546030840994782018351994298364530216916561533713420222915121176098335538045256525303977718053302228438215202339267195575485789825230359462928539753259507536801330574721468245645513048489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17608102860347096136175621581841362011192067847168795569078100232286419924566150213258020730132948241320755535920099198313920855477163385200374120894562656145603275519298686775241194129884087432166555099907952361885835999082353806666605512652354053428303057869304832196375041948021350332009773907111040396748338312422162028401440341299440910325935567346132701956616294307181889314177360461142253068278511451123653030809192753735505945099513000597836940604528032952315777965118679489264897739791131150848537286152194766374406227221922265489954290702588134965376787530357990721901550751628826121907662451816039232397333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17903601834715257901235775859610648926411535529399376848614482582548329408912229348668211884855951415329466916135529002196467983393405959817569300415553132061052861283135465814855602541628733973425617985109253290974996413298348034400528860480912141152030405853576386426809828054455343975872052350035828566176303504734936858285281774421648291997717637431005179933743480230462805515959004328709855426734569415708095060208822862006952956122631013364806545085679789242837341398058476241969834292343891920921462989683643693536858231656528251717485274867263458103966791930374590309011319103000828471739058198370512572056373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16385571564752429188496532459018365339418173408932374565012008892655573532584783840033675888889833809904520606387143653137187616272672789410771032000597502016853389552328709858132898741818245947344479887002285127885909923021089051769048115915774208092791067928283576073102095582862845655546475764837948044811203788234224758782095750754137201338592068052480752662012725824373202591424713855840311695359954023269879649598813891854540843048456953518338652748553413658765696286754775507746889762977099307771892180008222410560573213814620143918803558823082878057495876916710063964291997641558464772305430803199725446656431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16329437358250946297170544341679144913953006887293764420023307593975332417798285313134280330209649191467054954846648173589183787370789712223328947518628608733284220210024417520769386268598090373353928447165966534491069801237021393464525955214911410934048181379752987522507876439107487281679713624210510615606354693970911878166258237833544133520880938353232368849026939443554228783774174660629940074875501657688657653732398263006097499108041270516989357917205657205935491822496282336522817761259986801451707642456827112723910733920461444012563281117567842467281751327167520329179105511844341390337479484514556044566319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17519300351270372265061585602706821828254114560113527497819297190768127333368365361086737331537309102667670343355363918701156525732453017523362088429709814637161618298714257001517489981310119652745189854345625394528969224492795234846862959646173026891813353943673417813831310665353460237853303690907767011090212634657564864081622848454369160396352079820477483155104055271433252139675204044203003734387772589571755254680006163014760568458410915452514419676538831015298189827109456564240399589246816154116945533837120224333072372686249512655894266485914275047532115958027565284154270660507412667949834734132666364354109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295824639256858117898226548194499818239048607807629598260222710479492181292773208263834942346792771497874131795872209851171824485443792204296650943020777025275380175846123854422914861518738939827428127808170908986032425660577618399568620351739029513892773376232887450408392907909530658073635706726959443540347675661517538376885284268317115599030578222667398376036197526739277670159266809045608120504833025170534539514049125834467045352501059354136698162517235000645486470442549586917000026226386686706103649663122327131064788488946188598632054336230181951362685201463217980801065583822612530570814792215202010630933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23572165515374790044178857454647822483097711294587787675268669966060373448840390078403600950609090451986677256656756398041320756669667399041670825937617750989787712361372289554340521167477264159109493269329160611902566431672583942319554138803772077016650959950080026145740570851361276520898777714255847403244763133268704233743500142985302780329818791553588679556517043665410836426028381781499942898197598255922349230587709056978654214623400244725715238211601874967021835209301147947904811666159689770825697437598414101471228012998199622032788785179128757687667387415774835183320408311749214721360145602771402145730043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26050516726261736184317153466309412484100427888277673199414072285229034384519163033376756028427103806939866679345925017506906912824306979544261658018924150448612257488045487214181058935691657362786543078521499601884498121265592887918003178535311093721771984191028009792274180170231924373123100259983640931825201183516020661627281560967793335150843356439797966070243144036394497350148586619514665724175496083404724006063805017076257535250938411691589322440820113773075507061284755148693458936350313573860127839947768715322465567457325961970007951876323988804123779105144250152840728277194454972850432505896270129482599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16378063183143569156544121190646716980025886131224745598561444865925642726712462934702332610376207362316894306598804550758973021732198332870388803370923058425727561294004698183583203660069969064667920249728991561588027192366921675833623286983245248617011593700410853273909650173158945390617819367039773970326565205109784874026163032760964064687714557029832895292079429839756547259550100763839578464588875496290335224550077240493870793810171036634021286914434585589355273526746703737084069885119260499885015025035981356939229628864011534146635360198689180303093250698332993287653477128658072741993846231362471794888739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16339580322681817248682341617459343026379313416690636023354923048929194299680689170373823950355284734724646941683667954539080546036945569889485220444863653492807770405391864618659577253816567132949400829541883290165352831967918950935576784240502499341278714417685930248475467109505522462518292954098499910187253262080742988836819598316054452979445596267249761405077581437153237494547918091967516638284703307271563063750109256497077105813335766608574650242905760679604135315473637702005758396401082812590300120197854663325902003182671062757749663712233567217125420108655761848469556152335282765644989834822218109367057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293365248325685292066505887829117291089353650382168890337540732468864691941435856957625091439890408456232940440488060946435007978084273597335900035112498827752221243563246576484359036417019541006982580268581624448891201998636827765298287038407111546910143861320781137832941703051044487034982715011765028737860837822400993123428595049505816409398010567850015334478960093027616814917902544124424073687714477714506264057059630389623043698729608181869518614067550081287137156319415125647855061967731111197532353711751195378370223237233878356254347403549007567309289998249355969929935455741720629142694424554915142532187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26390868214867228201722521630281885252820191346414139982705186267517173222758200908652481372494890615843840554607271495159979740477125808574043318319402714846343337411003374440086557726420097253600886806838829949024322959334812622016268400074335211264697052198900574272827171266406007837239631278584796796006710169258964830702437671668091332500902907301660449645864787231759559315066857896375972738354364480385684332602808300841772983734521947840319158657518221819707440853895056674920441322251962001264953369135860412539838401074213607078322059720014978832851227390682145387408166247104949703415857456548983793523853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29454761203735375210234459693911673830236783658290859480639872073049129154951287369469695188993047975310396269894317241533753794815831791651737361771137542415022985949861564285055822002330229350085450482485119659813705530498892097160924399390363048168007272411858128272253746899959462725299573154631655156701048622038698689548231358405473228347335396354817789304473668335568843426342994331719230283924778910936336335783422804538144813563377743412825787705809848769444536001362176232661379692305146901493778772762532198918104388871585584168726157239564779384006307501096624765790124201805318095249730224395762382243513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25417329780510832443325814571123665037250842089333349978686778328112716288337749672286610517131348896335977154027092703960214775022033726309011044886447932211264974899913385177806543158690748784974009509223193817437405873009419720327565805733118960067366414951091688160874713560173182826428076007484826193757659789466114361222084019381756249097252773368274028843378136721503731750381517064250892733954713364518052797399776941865858748285460280270596860870485911031352751357381930449815036770922128208169081653774449238855849046058812109609485136126090974664159024369159087365497812885289107778033167347765637847284809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22354838818532315437228774305469555970438396665401245099347649985819569938069234502002674778229646313691371123367587615894407848253561987656513465363229991293520605824074768184045844583844880342872458857184247032234578234263143884047506979359572880006435366444508911768905328225269215044086455476274698549521169582713532317307740820692082565364316639780775516682070878812203730786354690620374094531062639261372352933129939723599294299518680579815229427406323958918167802533914609058974125098196658897160553178809319481820378015400686085645195098432409784324681340968046035326270407451612219035536463294112428797243247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21472918633724081333482472470421373209924575450525187339334904521519937661032973060395618392027081683939304876276767126592949912461598443162928559554406756668050432027609953093565467549454528820705815010139834975298875528806141546334847014774438630730420444576209210217623258443804885454956683971878760566959318675751723307990581279731822083994477484222361539137225222140822859497467575353983873961293435481894919191590025712939803853978510708399012388316483861901615869777595227525270180367525551879654471965771777821400652343120163091004530279114182451610385248794359570907820942880384248520287016612015818707066573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16317395137564665108350609689416187157692177804864329610077870107479769520137311972834748829519268483168878293704704778460066309911984494970358727253919638296465031518440799555616801034482102027908183760434063870037959350084046981991315192041346098860179733365331030582016082606704818451557699819401702212761682005472074513718082198883875260511435386231055013610573946385656274301865010198953324140892265720796502698683790818727924528225150339386418001512391151489850005935164333921937486365201725361927404210971000855983532240688300388863316157350958110316348785268863110962128728708896492518105069340562173582893823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22665812548831923817773322021853696952972429727109391128758832457015436357438291719119780577009844214833609475656775006860937317630938729156743090060127746481228186189196324114319885527628742082127368269538441808908346493310159538249564030907952425273091455630418928953981051241131433730484761458840890577091583305774951774938871785967304246706203506956771818013630161067543329253404278494968341240864836682929090217026714953955674463577400644776188588014238721226186241914898392252620819197763507993031715002426392989961229210379544613033934503438267706761702204762579912958295766963946894150454369706075649064992907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19274148889343640581578172854172863608896984781513957412290593086013369823219805349256688913516814920091759940669639255475449318977627595116917859787879693571561501949129878269355498883707921217747214114654184406898104826775233172708754188763515324133709667943389184588131503687426211890539882220977486750351796699363509769141966370873576017588367864731739231852020416811440392846243988252116396726566392901158603370686137583480872123402386714258366913644203479425530782974548617708338409258011651518605587390421876601953319459765648625662150727475828373339809808627729889184214246089210138787592866921111249108361553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16407902118571276129972071920252487879939583548302803514624327296055538900388663250565330725699843236162436244137765868736879051310257832515207770312144686810597141167734256844241320129670552895944493404966956296769163187696659351589993627368801911361528342014984085779158602285283385409191279955769154891032415217123257417678445545758536530315377414180625487049869228988415199354029820255412681290582287949291528827817251769204236684202600154581580338464354419433324196539882404840262531382587981695768374484298142814164720744239626677758146042633801431122930231483545360013477668586012736352678821957658721385658723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314090647996012588435210666556692090711040520644678138345574010114695193087226265868195972536661687370217182866509290965115432646589458490428290942306284518247302001572675507966740236422208518840918987592842187198726279685466308066143422881036347973952354545026064239009108898626669072662385825632519616153296138995857945224271033520559256242276518946476420702269444581329703784057784626930411936692280918528423579635636627923402166494610985249079258372421051659370249450625552362344849726576933557163462281626303630225920912126436101938513391545462342186550532447820719108567579186225147001737070867057555150048189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17053454020574336422903868440693364574916999594251019426132551974318796476825475718958812401944460507646335955513885125768746135559235131042424739958467651326872823866647187700579733066367720024032338695960513542527044453101783069821139729908263018909142783650070297455895812042412034436379784581377773081086831514142341560279251583444051692888541489409893669943753053743968875999980184056752351818276080998145234670462535334465345922020014267528136775526762944172306812275591009252431686783603346124650580833456305019422483173782368593394487612241003820113911477668126479681335555499330173709299099860997456161832233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21203967414980762229826455974414553001197130233147699962644658493045401068784828757015278084146280090209058379082610474263893856624755834888210399811308951489320522311003865722234129641860893033815910998751850496894726944665456610155836880304451777548380688321891071460516025390493053275254493147210034190776277385496164648107093601121202111130417703089203548171766020848791615046905369878305842544097168436574786666683433494022623355434820304384030044416465280268739473215188958167486437416566013736969880924355562920673883630713640256312758972565506504095651343116114008521729833893079766002951442933501164587086117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27430048865424854098246793122527327798293053629836395294452906325541762977394302396589640759820389208981861481145199693355765991891820184598269380226270002825068941922884765582475293120188481699520002283500018927041863392532217292699857906696955330027778919675612635658317000658193661338233281311344114538856087381901433931939150765268151857677277167184775527575153709673177815887745864085847378443011056005365968542524552646239145405013271923951088585856050683863154005619013863483227918730909729519309847016714479278260176603388525625282827911994281179637384624060746922986540671707340974159503267583815155219566907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258005675355039952777991699176131890060930616901176794390170645027545609224975421219874323244894528052763044876317420707434396027909520686668285666804176743123443305072609976602108968184216690785667341420583396212435189005475769577697939512920309299489472796267089581190842805155635941900048709741873414590050583327208604486051933770761483380146593506009345115707404087137785541401003321777552510131247442508360868285793264981577732895422924624183009022551802731889315188725284065514069560719356515459152556992251617049078495708527691582997050867021291302011407990029592027771924066544983383165907226707061093617709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347119878807118866678140176724698800990758435097713762347834725218013478720028509490075254910169135509090444837814089076918876506388870857359779435324442375195112190715435575818185077224208115986671798616323282575479777662549146962168512031844468089358057352327036722535974713065393333043830460403455572004829082708939228918358336262288324081962307861747944329143171200250717750097725500483712447707094092519597419588594545771973114126590808014285389672091120749313549236147735718053349991000746007596239880649606552569846281524133777759165203316099866283484501863646829484299849141620242187033396844387870031497187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355029970555259918881298014928226372195679763744557534554329581763698987959889113285814877561593723118269840905169790524730276671961566101168598587193413015911529967814132530976021974824701976508604361076918787718373045627330396024133459942034282858204767454860107220713525167929233946804681093222394662176196496781154015516788077379505242584819746317654990479620622206901364869213003110730052761680517444577368153939088690786764842757212360898505239882676083775943285526327265558863507612835694157259980870556404325467987174449594713729653304253647173078362979958641768746444310221942061672548714162108710991638681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16270365346775386428050713458007793076164861900321595433525318695126259490097388500191888901430959877403060914242878830034061784164293985403267874074382217230071009312112641310151658136625674410830281936930623202715723903001147564227163928292290746972120689710182886141883884879689538694888727616225259378282150952735799510570193360979739745360804600684674900600969229298019942096587726831883815707850227633337153195498596466411218842678167972794439620139700282114947628847027319788610779903443742761827204070563926337231376718767284742285616877968795530674393854462370163008670815639252682809960030456904384019370501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16196818916320983501411645447796618946591254215952767119169920462991206294423692025131429236218978782520154800179714050495875737274231334639938727592334533207701931196186819671211595212501219796692013584436070722576821492880331317720392582289741866623926116802606918236873310388183068921454493632682636263786253768642084993432436183040911923874744902757710245609187999711344068315108122731933731400565596899803689616896151764116375955122901670370274693808029277619768531089846110473098975139313293830804824037822812788803846100567757836246942105313066952168487202235791322737354540643825565807453892000365718762894837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16245945423157335304456053955320088700560163861333927231299451104356544785737155237514727262545801921056500303661627069864307612608301613681474081892844021323944138016598141897374439253732831546933414440771263959047374874903787764287268738929413667966113148590137759632552268419203164294841018095747081438888623415773685849542839508791028149081116387848165558033239244020124007499463833819818500464937967553009753357357998001436801247621110298807643203505632874666530626082534913336841677509256179426325352273677679436187502030201971248694371683865926075753150665818915099601112354292689125863127653009382767218920397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254394206422975650911000326784849233221526797556528927651462278935193283739306581068701089439219353741658583927360054231979747047734065536888644393969546688748022208415458945209212474414605372335567416074972471363788934641214056281452013581554615125643568662760843600750855329698945111786421308343581723487454240577110986882098227712770695144442890807878325699881317617159047821349233803049938462465965436432751768296516087376028701229766083057114829338173106280790385273488856174112066505800152659924520829534211592701806515272222509937246900540785064911275549189514819761991041388378197237359949915574311641897007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16430519515817076986219893977394550089328059142449477689326638893098145429695686532587275824526379723013397186544628191941504519825149537794397475194778022421024701045595588784667749047282458814209680969203858140807399949609846551847905993045562147902030558619099767925736065443241144443382641598626535713735192230354880823566407468378156852929274757951932580543261550365079858171710668635373774165686947419479338793585435721341423129213833116764920923636594903276080294003359979361417359090780523411982999950690496070488702979735674882870120257917707422788572867037869912456368646373724009073793492333927074396408337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320137084115596468530393184676869431201603926716955911776888752979949972480352317954572902351524793866753223212423850908983197627304066405680614385065628162918365760722974268030670614650275144159188821806479089506208206224192435191097106323119286767850063750118143465183342544204120629673042510104431879964382918854722396103241994370536538477855755575480382399451227222287322279003538879127236884866694431143587553736109313969568402719687156224366884507196069158282127427854634711261268182998668060073096699309278374645845249839107973324894686301379101153852880133930020628861981572532487708020642972673185504231663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316032513924201587355542188425689056210036238070132601027078773155510786726826794791987199859083677116920217562402269838801964384715325365337886699588634619860941656046285614816817737142160091556521140985400595749908027149004043790477842504957348110603335154351021194130775287152644719987488869813315593724176544867877589716584091461071671914367944139109281592231402322942189164359967745759159758568820031630890306895780292168345681150316435800787353189488887787240676512520451943006033419272902197197001278969101192144603358140565779204367734561982997857719285771123678196700764580068687369239889856437250287461213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16219891538806754053879002491887150696716402662979435417328774722146342725358662412049841142922870123874571022914694431580665175731624315069965610003863426502011190304697003080984697950503853075755365101087577800855361193639511840539991652564757241282902008557588361432072173896342995677058613960891441453609062751108684353456818088849239020102930048336494952252813405138775251456184490455456627782283946114560381075606484107380233909468968886599431192919022228605278129590198887659834928466145163267944778733216108272834157028118636679776703817263289569526896562119806039138738089112713658998648038891087081623039809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17575446706556631391584341455827093116259322994307886173736617423808801646114954621713191627752597329717990308714451910090135817935319925879913188584421553311156529358953740275415345095673456404956247045432505916348789711132326250135623837558319983931994445713640560364774176866930970942742361048824788185040563144402053918563246802428581723507954854352739814608388153221343962062823398204791053432791102415739103547366692157560812396549832956599061396327145279469989024225504960308672215481564929979752289699742298708477891143042147433273231121934952550142126104629847174131978875392987200547711830834776601616097209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17065180104446830479653527358688637538653798271807669141108065335595277029012679278537158072135276658392177724305378704805606052347547005575209950597317788292344065286723247963590028012275017241480675535217429021195665224801299249041084206419476554918370630310304126404709812191247823815195023648476172691730238833512925413622337764380772026858581394228275532061686645813067650995437274345933497266004196486378853887138599933051495364496701003116147322581541073801539629200812353412587410489257659506320663839638297298012687945961576583409027727361868411907442729367971898700351703879920789001556717680282521944592657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255283293948384490189574595937754802630594018646238311178334537044280512929930195812343283122769332357163404656154346268612853366637648994465297408746033491931562987760720102565213050106675703075902378165709076799818393829696017575079412766168067818325037601561277501235635783555530773804743824290592462832724086056177191698376345701105106758023528429655150192272371913253236387901062527925773224120076227547691091564131450031446684439078153557392853975901652069244963096611268312911400657711443209227898029778885587297650800302361466387075339586660169515247002008243911155021780987395561509439408360989329392150427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18863225573632434142933982323974499484125444455905714257556872273157020066970316994337718753633595779474774934661515156795117746769917353793678741246059243670390829855883756398355235871188741564561173569489338878895010097387765591306365070412811374888610235104979993553310041692639488633304732704203900780933717744999561900196845888447199772247549269818664476382878710836216021486526028130700966067348933887238014118898438818221481441372964882460950466472901150371069929967932585003959735364398465982310159619133993615254307973764632782844181815225756042677481423000209278439684914451815480131033895428911528042048429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251142826973979487565274166279008213905754505441691389883046691308095064118919246424401430645598007725088929746634457876954967201249998942786126480378316190694574488981032154579240838063503973546428449723032734123057486068333802373989898014735420883881143172428190843028306220426104582183310435052377769924121760370377110583443112606048485399659422561249426714719802081479011310333950686526029599162107555318285898146339254330644658758953691628905268446484759426086915105912300647975794930330261034447717843235585826704583062425100617429870414083519518065851647858330953162895967326952793817998809294528544969964441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25323109161561129619859509242344294548087808928807294660376986721081281096604793118227774888606097001602620843670861673172559117174065959713859702973229142924719631847855241910704043169392107779510885609880163333344488112318083755373959880593498073637792621242754032460083142428224847373757679722666746491938875512687175221874739095357138524255313678734174542699986635553245961920211106203848498737632674072085519296466849802052822019474109968638914751245862570442582645909960813547753360306423771744950914743788452116148976191266904259808191381917589918200029371150405587228279110675977283868392097051951059182335369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21855327537783391255108628017428183817081877228251289197314823872854060429922116033918515990633876130376828384096479603747779763392001790504061402381563765768474756724981904224297405690094203510464243296507726837241667813318394010663132250135713136087947824649054219003661017640794370804786035831053105032602203310756702905020849775575367974751191889288293574808467689099080960518973805441769038021364076941240124700999395043051947942624480102158562403184537404455342361240205668516638833023962722862601791494095496402029465717051060072379036501026513988545470914008735946118587533140925715425051277903618130753630829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22924431516773771471509121567292444896148174634801106162463678393615349101277845611277979178036333815621630164194776565148849845512149616924135407615943803874256800567771840426342967101855433713147230880463016895357816061841533886245461404326653125610513938961432176264538367422403964407011034927020230196200598014826355650690051532395030983342275252994005159461081452306548311579656157771012959738538936455595609613739308197764478990135266863700872394126180809518614319339822385512505477104478920767172985902765183835706969719680216406151130221805540549891205794607317967223801199102175497869473267543252059761537679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31380258167663189332109414175011168747412751407501427991823305054972371317805179617893285965764642605378162157016224117419066347189288035270937884981913186645999928604193771516490971263478666980343407628369906006601383260138435636080795705742110352737934616834198039035437666424294837707056707431465325512905012805920016147902062451241586861132954436068527854389079549411690151165204151869381175667268911548302034860438989908244443108170137455998656502399668339309874687847108815882986690255842166623620221317004320734290860461414738211346636521764043993052327330502073902703712976262376487980971874619637321454930563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22041660445007393859107433934462260536223006949103926968887035751878007390260923722023859476057052841324736608360709208989800891199057966705401482165732849622130785335768246107487979435520990957058318138688402820732045032550857026398399046836446197362211728042130131749733593298583736887934374493482414678062543558536857011412743315116290434989673016026416102860396523299790796977889179418325477585115504923020533686400970750656826719550288415831569816817137846644564939808015467864408292644611687746394802187253240751872969395430038320716279656318860276509696347825593230508574573226188284954934379257877128856469059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29312559106978011778845369013136779422560612391323955170979097794595362310125445869011814652096562543003567944776493993466174877141281811833016772403556616523926145582202607820849789321645393412292597753760730152367223650798470695354277744039427846826523649901981141993744781171601971153548060122122310097281718673888751297668909434550508664751476050952785218189612031912322367443821072652325935722054093907243154274353878081224965761327036583910290385968594515493813036361716702758118932611110979720996090090907926997950548648069813976441155240357500896817812551202325388620579953603504045662618815136222653941334109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21962020822190725677264496654888142691188759225985785185059598262996168341703850421934654408330661518829321541848727571608645851848857384693693939366013481799529228340260619376886697689643930872921572100800790831756137954781284029207897983325871897356321658737205758519681633524904126526920582848998365818934947746654219818848278597509001111591874719981266988082681088482174342083592802962463985125514816437759370909914228456719129534662236889886539469451705634563956626020595944509285774004507588595965288795632745714221085637901721471965000991437165456280099178237581687617549900407456556834261587163388499345662389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21733938712605769494525860445229985952086500587433389466098930577869481086932537685452234691729299856043588026217841315446711636365951731196246834919849277416777054211149482127286671287372333410579063195403438626298430017383826734546173560236057055678451793964171111622762419572307090265384130945319517897348918169974527658192231119978710544740747036222561034231566265993790143428977970828271458786635033006230540007539326522693164680365976387904437508711175004627207668981700741869913835631384474556375056016626274496994216305600712084466561413563382559464032033064643617350465620853301783607367916079318125058768359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24481913017221766421822071885390292998183083291617642184020725410815502886163320913550386365382957692342293388388838243481278893331472160901449277437641535678774168845862014247381289206092666521231416301024927052456080604480661527359093470345300262270412011501951218747217431712831548879147927219954060035483604748469828091396122156131549708402789945170459794421174648979133368579881559555595287302593857418413277152611629339512037391144935433466209101616130906112536904564138757918823006008565572303720487940210609212196323802384478629342793415736106477098735436804857126548100399141379240171015270050830058611615379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26595540863508193587588241410722618362319670939171348616866520919410606985352205002113860957447287724565485427648241319250743253561984103199895756408817141989626417255816380170753422561258258845483383011614586087090070194214596701397483910213756041725228162255712756684941666158942250903839406774100009016530918855151769687679399570193818589556015501180448232541757615486592548353271549713249574801140461651073949095032516336929549302586418315921243196897313257756747666737257650132148762078012830980776629458150201098528108633783839058267436548953285277823235799483655324092234251152797798240281400583602815811226687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20370009914744758919017884832689480603205318625039413876799278567847242068223400768674289221793000405634060253548327684915952655946232277741745209851487366145332019256099804490952929125949051244521087752812363013825298282973993708092287933154910385417318455549870379071343453083032483798371247867702321378633806100486171367668291177827367325913702810317536061619527556688221368806939054713288723743668578641557568031889451427655080140130691085121398749832036334904003040819561305594449086758182655775628104101394998794578099687492044877989240242582240695856351752998251977148154026702487022343552697128445560710527461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26793906896239082215463800929030851172992992628853189878688105739793904114749189414739324790371388075501344945789043390053442031354473142478067845876995188430514083372319934870834106491594398057801057076659573756873227908960704256741552268950260344356445172133995296761047762544302666905638927025529804514932643906089113939904119049384743132076919025687389880602738758521954205112359462008577487658610778330760484547066261704606833055641113343523903339197513891528255861981374826008207277267939548358157381035501574600858956485473011615139424310130298925476749315146847478070949371324449496598067949394177144074420587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24504831623393468187167786517325625301893706509960596885787780143558678541685881382415269870424654905369988528736786897482228149134390626812964493299117691800654654159363974625782246428953528979120320060510399611976566264299624117759141875090775386345672993955722551936086797252998316117398089850930937303642015915299437722572814400763783349937824861057691109681372428697936871745501917031460122243559261739971003661515956758884144288074914283606120411971564278924366346906280865684857060902346857621924941705825324350538513166193456049094422661227389385203732206101324774500099434837515926919416876457831145461008477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28782459472650683775872797697479040963634735588132107088077998735446596441883607560402220097277516855862980244046603635385818272920043382891239630571976484708296228766152314819736987762095779027230060353018840243729965931244704184464338165073381956981907850954673748598489553196141527269983117434887632740760486050994898944907357434601424958950368521547162965079709452881350856483995217671873790390454477773217869616744986361563260704596820225138354210500172638693856745227294400469055674963761887549256193673050415726645013787988079009432076283637475941880329083359143644712589833387196383562323922023609307466797207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22097589219898085137150253522395514322915515451498676887594116494287559895205198891700353338450611358682184586978454269624560621802535445847919272068024537103197784653065813760925625282707077866177244289554532681069560348766789335614439049718891899165781049259782801224286956947901138124453522504837988948011592070616619982904617113978920650472323493284928682816500536167849205545512103958317395769028571222805615885608299821630040027822809894723268482041611268162104157918307852861339684624509159908586352132607600767263739763257762936207236819172511611439223717667592657540239468562600585999780030530653390500653767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27606649573277503804918467178578348896151561043649124555225508121801690166987788525040152671009343418402094669289723639463489021351203138102601130148922685466476884995784963772287139045816904234221138960415593506420217626861070558490045839869510731925656331910829338019240594444074166891282158503799714249982590926830912254237304877598617462519386887168269671692453651700056362540703727179466594941760157782436356842786140702350816996687044020871209682327896567036280500429981612803796605852816522160343129075413181885986324355231399184794897455750527764990636000894723570745124640904055046290514196591332732707844651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26008617976641816663026260181444252780034110642047342910406676323918715536283047662039702957479197314288600389295835065059467869906565697527098915823145174640011195191078375252945282206716582113628841700112953920351665325785009355119487914348897169668886997020144692626997911138138300054170949412590703399413002424661474226762246304225878120880909898010708329960496871323465146153611338967617407572923242333086080178436781187614800119423734157528801500951667340376935057868578170378159940386717129746468292944192223305931605584558193517384151065657784058998374024799098997766503768154826353553951401041700057744898643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27098208479836906797417825832837700538403902287977583033674862454266405000493844822232389765026931238641339879001264564524074997055944851258128168340250267495679489340647857694062555298311592392616837920758780176169740752317456011767398109950993171428624817210925455404380248444607656521525528318166260931740012737283450482670825217565455632921186508255838355825265618183710520037857644084080635450101316482357862423980859155192997742311227759524233860676643437657893549458252477445397698433956800224019329280471172136051247293008606988084896662315328740294511577970125322273194570575850786026934135089960032199732851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29848493614276354109607277567641554456554480051281740645202787722649503172399079895625291110713314612846047720563057986469924405613110867100653798926370108144966465109767075294558614485601685330697925291093249781697757693984976606387400821279631864816378260079057524038358877516213797282906842022267139862391577591761816028170620950229279413898364086903641152159586775554912309173297859718631071119685327039269782012451388679901871666791671169097491543577492200769791894383259161904398967491466580049734345558386304543988112340339665173029766659656139496185489416155070148354805647201857435991375820546814718214284177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28525197711032966841236389540924034771560543261379395312985773209256294970216136663150838635015463839404848268258764081931283481932802807483094646354646327452235353904173146560334905299524838105730606959783677863782575132121121468321838987117264941137063156270737923341436608901566969543736392562836773864871590130650988076207151248580872070341759935101315290923015338021828449894369872167047797527535228922720713509864140669878675453349198644475895738644357325712882762299815920053716939935574026777445401918184652754685717793952078414679086924064518252170160685248820469901101469029919865887082486975485199144166807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22245755310322903653829340902977112122815119401538919842521831857594062742405025241885619089417282639977029936924455068556204908183601419493141033103156174320418700001232612061742651808282690481890778062938228418424309677357753316979476947995149752949403604528870379661845261983605437690526078452207632136057777791441010728955786099741628557850357364491307413192554571668854688137150630326777847920219608551365232716479984485905204997613518592681438957643778602201708818299276140021768909962734242766851881305726351158668374284184180539622736709554714871767580189041458807316373294403329255690042939514378832652505267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24598054210516385522900861554385982124147639404535484106829013624595476925560726024763895260969313877795750538654327204866206924907136785126798373981285217929135922242906510132434864667944025888802560854182451641783793230490902177460260933188799614869556608092853836284519453553347741991611425341665202595462361207893770677742282465711039931766435737518175121713926115022005414741104857880645025809858605634301796959873565833347552770511832031466226343135804405800689990979385471014888227759134042707232366145238770234138653351443561626137587871229037425794432986936948175415988152737004883611886958631262566666711807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24355081211111665138025538378668024899974832238236704249894241705479913812891200148586442864407405474928332794023774613054764074050530770421746141296506376156257378745281879798650036205643883971000833988681545711199789079055267445714771055505515165248516771701058090208213134532976247625422934302247152877540117892309194544346716363222899539735855043601576058414212191887587028339520203258699533570617507151747922995680921546752480224666724538822083616878936976927706351254249890112461704101342950816698154559647060816839730726047850438144553861758454441318248904217454425418792560464005072884609928083106045798755051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24651768116832889931064832504883130643674177289651640643485253610755373567878705071690055030425310416841836476142279650464710423109248973326183984264372366635537947502496766275989329707392387519004062454495774981307847748636307355452823417485832733988498598506064183073936626217130282984441846009953686621943040860523044587245502237728873504608196988837033106757327278149879358126715766625980715170052972855693375653495943784353039323629979333855019027237415415386244165054560109813168859877857209390780795933061275246525191822617147742931343945596578774654735944022573854619626464023149909579664775268564221578861851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21941686019988646655218425237152700468274640575049334585751627651127155745701602321942429360249702748860422307545028830711840568464253138963403814975379945529005743470954053157594535874855184609449258171401171333454500698220720693723907795626721074059251436740711135854360142410797709336882084644106969588332390694773625770912742938978804671372059118151613538299055208940987294240233989057011330706054490734827240894341679789002345569421133461075836951658275859975980992479238010740163371432181766456787343410331825449519285599643170378878908276286649684533552992841942084109040309632115473038084990961703396917439381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26190696843550041692976623020947894762793624657601137411102297999211996229340294009214057554754271430058533546214717163650745533989910317964828436057646981445375382591463297380275571730930654645380905655686212845754222583932912358858449535118648951552356821655708554873085256879674460296907152647398072374128385154444866806552090823291111417965478935247987809274269133852888594242904651706000251502076160579409866104012052021323206370671939942055236527751433847181591178011635308507084856027847110146835320967568555124010003112780584305372398031644453721643651196338176334894201862375079534187979984521419136262334643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23313965176628850328080133188697497183549267320279765874879577745905246729537157481654418682877012120360972336381632637168766583976508079968401393937854197967590123931351222020153144277641193860007633147093576003982054260559094472543297681505495108017633351383159907638567287742118834261900189257114883190511838014212953110877770274201086166244903615723404625883642386962070931373286942638356032131313678585504361416411195916554606882296366685527752426713863952504924474479268243531430900870303145359709301936985048054913795900808207991849969409728024636534033178293327924200011245377713688533762544869870108523546777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25091226864219933105955989450062161841317442593775597757079345296247750985129155208525091226394440846910433207347044019338734891480025542925442019849707594861821792912875640443260493484585887029835678248651606497208581118503933254711948914410823599387130169498900942907730739515982636036191028507409773720641420663227149002423914140356724280840661793681396780049894920122959417292379766638521719515131694791951444187489453391549278457435127047237671592160538583558816853771687535374120097412957774372442495430030366855684546388134702100854934150626453802545659194013436354768756856171965747871894359582699581708907373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27484445013999376882938749190988511921834977899144833610372380257591535540697231915208679636337145481354579796771748177441803900941848281220524700511009816720079774247800133297088644497123393441636904965808425479316691609313342687155983925566666489459858981040861488601794367911363619313465809507391144274611001914975166724942755767534092086543825632392477708090790004337760215780460414236737439399077843139407338854243301688264990027238567831359485126909654420896541233821148491832661452686959512722240888488648165896587466251687847568412217876185431752042000420781974552071317839994075674271035792340793393754038011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21790833077697825681805692889316431657137032728092344676184708044986307555636402660095177357347761535563068776775832522597926449957637838765905231020122829671267538645745153752975797180110919632111488646934991660893862522188198656061755631078533968920760348865039568398727497039385855175993359305901160318560126162632512706211326084372707719064378568753014589184347182520684697687317148911681423290676393522578736758543694910646033012295434817771053057571989937744320726551669662375448200361412036582784175789752511239434834988113857363588795668825043840787462680451975146367861930994436340868627207359348153113150629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20110032071383887672163115331300637595814881489176414200396313621057526202033738437024587884050057079060911353437253665667576349792471267613150599130639195576433241179685476209207245521776893423850777407595032872105163833529794634529286695949723601889121900027919262218373379797475847676942185608254616932182819526927575617172373181621190741779807643294748924205935282535764499420319914250682816484356759910921976085691279961556435832766480298162450017118724806618062940598274570262484654255913465486371730203306575053552718527606953376226508968355737052231778994448830659519837690613548457481574467000234614137388821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18576629953754751990551355685971850947668799554093647555272544455701869078173750947211120879046295748187606608689176687469576919472829371714388952866358099357290512656365435263597016307640317863766809561168749525227601717940636866639460532402110071598021172016442824694856351993052623732488608055943262109512304486291599141040820405744266273132803796492045784154431745772531510860850167486291680204855074496768202794784563066513151930401879656995909411673099819005551362405507660191255461200504432632246652142214108421095643022311706291591512883329501403612578756259554225353393643274089667035563518026653220645683889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22959010182589243953141694026296319175768355628791422590355268371129863791440292814985161142160289837444958884076698814478105031687507377685542784652053171264641807320423968049858738282463314911049392136742032399178940218466931719108338576624267906286889830290008634461329128024774159407368641338920459464599279747015159703581433299323249243201892443870768425561216704279519121065283695437900308257698650987687844148558268463922471381996201746575360691365290600254638308340173024902580532533113893667108188391536808273889353586288596484315225625824456666614035279855079212108150418406169307323186045317875018115553491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24372105737849576944075286555316429691284746647720536749808391549203568023004459475843101728604149224206473625071347648139029750429200155087549747410844774330870457518524887600735198861719257231814516290000431385892895401895982475798296366848715943832192075331229506905507659654315248698887003965840911244684197497384220302313445897062919998932856045370526354102201379990983339262360462801244779418493991957133703460957528819503737860681367484103182871847139444368335348726548342164937080363816923041751308667169718285035502033364876565048802096748850304410621769909571496929560721987492908256540333774645357504427561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26186685761775810803359779577721714690602442252471863569618670954901441635615776384026113424228295233696166231213691852726097330859089143883333141025518650959112567324325106185798892793066649821177569470362992260801556648842660022937101901987037901046800738377059712717086393993366391485255495726776733677081492849499217959339113529104578402767655136857411803652632020342933295814720164723537806849267913602310977653364228936254259367864268644021185173360813731302702530590641714111680851390737463374369242227594892313098865641740794224844446333255117390052306318992884101460762013474552450330375488852510859815515343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22184322977434720063468297815034196797150359253779448750980677875334705479819707760859050630939092563350180183345305514234057196956109212048596391001258016241259663532961266933745758690117239623295609417658801344564644184644702963001290456191278433732371229184349075201829181618412152001230511069680246639556664187398405083196472351581448507837066670087190200604143534601595005657852397506978847179557245733286834750881862985113990740245527948148620206577148720018366481818354912826899258100508990787502055394996536488109700525847502230430758542428748208736323219425255981952203388776392868452101814090479686891172161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23005078091308624777591466735281902742447284205606850010436411409264278031060861314178818032781313847879243579275074062431955874243665458885596075220454999267575568599700976890688361382752134071995472254756714541439740761805217768985236651508252758222995001754092573186100949194662419957562797362173796994903422192906629931325813708445125561730368297414317038407445731488942524733906133261322776292531257922207814696101297059787298493345537177120253546870833812170156464178909594274773438863691643196601155382998660527301731863512442785731831191360601002171624451088572080600043124273157526997014685603098565740181271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25774469486911592684667193738067159626613551641706439527562713790920442817367900406448814622467121874983324751041463187407736871959965591357940820344392636794960534945182080604162476241077969895190596817930869381200693792308083627392826005012167347258245965828698720172141860933508354381445610077908795046602888892234131554380936946454596976756569972124474270248257820331969836690837107845379535053553066787827041721382454858073473878479081719080322862152473876407133045310399410054101976390832409691923138899879791337210642676043935188315985919733864296562546136485636631612670519392353590869428095821729971116308747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24010276155433367217232277731418788942658734921764997541032057936036344865936099614776735927404566235236975617046902444142263283890570744725991633675585113593114357490719921065109803284059746820706591738243024080772817858770436487098182450681779882750182214488339080511085986011908166012145008500503454853490903907679619304018978375879493921522784353740510250317587559096270048177055604465161283091460378366382775469580239417082911651676162433530929051014543016012476288456342331618267382820803090666719523486757838397047424030388343832892944352540133800292148450623679443054638390805096562814535709599523090706619369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27956643135143687009249753945611413498482635233459376014938005310188704197769939766833319713582437078752014886641662423023854757511792200794504462568109070476793936945872180106335347743103535797120828229191664345536645232858280014013737214944938946209235004873161137494825496263265603503243557205552790883924052396464573113781580703628866403899536369176446949812728209645964618495968466809540671255002311187774482793236910359885779488642996985742526938057010413586756420684815053740686193430285348472135550703490165601502213103178488630494256523611877999576512415026361491945573393611439391878608112623305125593237789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28486520070689041727987025009372029478105684470959811538685862357271528322559913646522889505570007689622794027225986007404146462247482816335418028303446501614070958227172202055465267668592464373278375735602751946225865785749004243212743290911204676461376870845703155779532782104188031777449407766847199214674817435872520816008006588174194555307290371114975250745087729070552472649460123560364335879343410768871922144405609476484842668103524936146035134157435286294230797631559177652300102739914169545400757489512885208241499868603401332574711435321284607131319777141545183414759679972542932031179006224557411184767647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23973942604426549434666667574989942834864195922116911562931518496505427163326740987068639131880875558941017304666144746166089157862847188617833354411519161208468739013046523939319933460757572468026619010136263559322104669576756792285959620808618323860080333664355967384585538870897112549042635065064247752051765871148124580984935409357699263608220759478425174537392134832010760609931145582119714309908074970258279125870554243123005623036206480198471602176097026940981858027516740008454436592684652087584752951911860902823733571730504569622872611454885925671241194076125101784689744012282427105210446321662181326592669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21232512217427555163610378113252384083094078105354307176145330464123941964971826530358679268800919187225220328710560548826251379391946859095698014555262691583283107790928093719263454493300709986688016242279717979426865310791288911933099097594632605569705924793214372932627262010366421455328339097494520128511379222708577708886543494334089521162212284546528955626343945210166255983849474967299814967389126553786010296055722927347900689802098724537622278165086045995497958716619832411203347889766527551729809139047100708969281008194921555052270519488500084086988691668253160803173663243307540732705434399996120791506293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29050510856144121755501433874010897375604159378712278938853331580182511488427509303287906005973210386036932647658476951873771952343939434704546757477388610772283229582523504313912414551157971015475440640609805639923553805836290154655177707483067307942756017452305788127253716136036303154320845486925394822384784477537409715430712255899213003128657187211315957020249878440362293731758556562085426553416731324360856897341435618506877647734550521391463980818100068555318059429512458450069161903085646381216855670658177630917235234781561737766316078393029918105416691663772942416961483225643650724143270179254747156548507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20959604512767588882323883722583805771244940957592443073851879099038172562591491040167640200624614598406068136100562846798722995764763907238501949697359070126239193384413824882078448807702963863686842983690446312515604153682620391347449305025058392646244978105857330507226003495828290826587638940202815200943914863015976956451060872943535842013182431620483652666466248310597169963909054805947274442911033489250026901331808236267315589868930837642123804341203912673500544742484666144377575250859826699377585794643321642122213514938290469036390853866860288566923268308887869139518195659596127467620369419203602857796231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24203839628178033772303539434305037408932894395040777459019890696042401910323443588089004476662779683377391257144595399767844185726633082237980103967537093564110717894129260930122706646853053825013705558080810716387562895647417867504382892654156607296231114121041106005177831741963814919230116063622848574516920237321147575034527748583245483821427563574869042120503619536979103091120188158790074825982457600143009841194092865206750213612115473086191709992793141358196441301767895436180994990636704461690309140559803612469097460278120502667680170655518502892232091517088402657737174850873020514961618027395555502544723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24912199175449547091114342744445080079105543068697820023076790742699002957844536354632838810251883777130915763844925115459621974402314554253591808377376196490735220190745243991291844709212837168492676186521201961567300405243026003407080289826036466706596059081354190285064349279418438496297055346044922450281893109555731368446884635788064306356541095068810400072747113946297778689013364766644191065526916957637364584683366373119454672775483920676890175507395610405937624897761222943512711620833906213334763310830674536009775777088577515618709537117374096783335901832577894787032143176814586513988259849432565328952259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25150604893325864031309887961103739470106614875466648292321087830658459774732366760211607951860169076828885250588700910449526510876949815242401184505245741596080221633200850612460247937301749118071979213719642196385448063987052218546887246188464974657025897686603819171190342797610764550465516938261932859885307104102584542995499014926787648217938792431348448507772124482210937404492685330416059102203890902569804831989152986507585896828733810496843855888219352102923433431568315705320351285511677377429512317658866522965838238838182915578168971093692180589434177240275788175344433512482352625284562701447039077255269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26621398390283504561851134963945809223280994428823298640332385587268331250663318217701807890815174270024869538900762946832553310733917066743936002187777685252821617712484047521151172126896526682754995823666673513597893142257834808290325248525760199747613511279575730366634593353208627819534766002174852946474864791106508218080484439484981780003096843436937881685951388075882087931454346840525788006951692627768397486668398408435106310065913779239228427785061899872475370524171491341247749291303373886195421441585541933672872445729988014913647230311168672319142022189218293630512747559307554356498602112099774489660029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22211755071972218188169523389387607369501982088722958177970142350143713076264888555600600427246399863767647366664898632154020259279288825408309786388615062941971851328905158085468158834337837587051790307870414531850076276986851651419936459068649897793513750769778998334629281470498363976127878315614413476495229897216925085219355566787835814198098209511348372313263513992513877022526751986623950643851622954062099647770910070833578054539219543664620366525188315344198967125655609709740057154379392179210276014245249206940560958236337848461054360580623742949295440228979374373468229551805694275850555647591866035666419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24017453335697935064478180220926071930693879693480315496284310400748410392541514180013284382702264044155882740103988885922816765868031032986018802770647892463607220229174039264552587840538102759043615108894850298273734150791534086855718140406336304267288489220268596381463949154781047520192112465133360618195054615153866994994872655565337398808122855175723179828230161151101569877298333903794455005122583995430729846978963550435597680470231675337317807027156485265434602085289698548452773901942021733063363245492688062499923468077294037216131420609601922546720435115991781606558368499491643098266731531110118920898983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24177830260993595516243738517485444964579458875454710720556979848483335440459003444700781762302435536388073051410745279783461444611919163711622290191419609323935219934728697409315525290088785768768960078890831245125535885561050254135119066312328466476880764866272063469075577179375705363108226037379371447141444256847681057456535095314238148359456024531648541207378430677571896874051795401502933065598902045276771825721707783754703755657351405825465022895410480299847530534670992731184086229900078932259288491693333638026071656177897234496634504322787286109176727406277554257685210607683371622674716637952308970382253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21916936006522539054165393847883475884537569756143759552097441178608298594970346228725249859560047947089454013844053704346638621061582776570989785055435798349869738636270815670188578381687026786327858345798473757795563571607732643463816494846760279910857293561838433241948508386277300030692144098218553711132092060774143514968723365921581270529449202806511026877435672120327980622245471600825897551948370526122480243072578057602186084432402501639019890599640206370572589936304733122297490679441898908112470218458208900232395692651960845374365088186101852584033473683771296479947236874572446109918145888944705899402791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20753747780586030129784421494430617892850180625882714723447563874999518273937755331286657240833047061766635662292319756857222885505361785968149628434769181686931035439925136315176359520060267792619238275334257528164977332537513711790318115963936233729218817429569974642280285551367295007161484012342894954163634666749171304212521813201882310664197720512542278553726933326552549910223312242722153941789014155462755651242865876484497624345208617604172556446380188283889382908373086125495644304439014595124526795038348983180851856882671098186536186857142534010161493814748008398404904426062820405639261734210518963853513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22564179562116841211726090276320192556432952430461827462012583796687892476292719076982282041762081739061889117204090108416996890327211824023151086760542069737917519944660328936676179163456412661042628959013767681115064846446080489743622581199437570090062824337126346796030535263814574465788854748068596373704597495539173913307401725974883591499417312163426718526520458955885057098209477781325971513796068579313347609108973988825307626285623949524940003011621089288622753057360432894533744224648214040384307188319908565800338537121971146935477323229300215978571996289133566432652458889184731014599841890471842952088673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25577087249414183424321542738963347972270884774553829808887190757375709630155507340312203917279971817299807113542531624415231260998669041834294169851924179639210228435901766481689763764660159445300799352482515597077861220554459940232733527946906441026439584123433822326527744156903867773241004462593846094751883733653348095092173786951031701021289052288102038359096672577689966354841499060272252674772458599562837591409610072661243946428796166676857171587783163048059828357527501350098484092220091300563301609083660292661425032920365232404555641800863453979864037978845098823410389178335483707354263735977641642236503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21162705136483341997018994430276823239271680330439461364101499949094397783551161393505153927836868179030663008158946177839448670948573317988863930297146999005751260710241983882824326944621813469203758331613292756981215507812666938250023829112826723712191872921626470063693897247942536941573747097407017839647291334281532819560831289149109944465649567912772064830728264859351981347530522748844135542525215437322534464264234001300903379689853848215130220946722797810788919050025260996832104895831737897839341954865980460100587493893515979914145705901821282568412199351295070922140112070225364934195791792407128391308793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27808775205243172872087065394203281226847633427919655593771554573427038309561884087720690947569417816340397333828583368415003983960774719285590010128556734423792352110454281325280599540346161095821686436529672706012203440142439721969410476376016054214427234278093385879242199921742875136460359077042035752420054788079269910778433142661076209271731329354548926602732757434039763245524804088880053950348475977826766228674684048513419967941549358334261494130977194015374108802019414441725699348723920858600050292280365389591009191640266883709264630024604893732155755505548619862732158866558785769642530630442792264956639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29145975596632585944330097906487466725035939184241745143093796579457373465419924035408327337250260410506138312528588672818942636675343236295221576126854939137185737594693217832264941293382635317601337862995479696828187927458302412683992096883965758732344514621080301335252720576762879980026884529511649139118538935703603998790190750405165720590765792773286196101005778083851936367187618162298548496715700133432217452988167661926866357038346343508592160281552639875398841745484544247470901294308185939618911163248613866196422107520104104486801794148350910973611639267263959580663210880687903498215845225983129999012891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20800840121380024747971494746563504693681406939683859338017216660756638638643377651302372004969650923646666744561525844429073974367867581970836954133573850187046096976808891166216535500644009545927365158552534232789698367598660319116008066079491760394678137580524776155928314517003266629735635624195892647581634726803467663146769564334714568868078646959707461692916812956033911751837782671008189240456252109640448127450604326578314081540424500903810544251936369667945807661879192728266446346755042575874454537828484161551765347595201125933907858014495280100900545077966980959907101963410068453071756238560468378620007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26615673173367111240167630175147794809936740819169372632818488728844097193371795314553178666204549905421360750288029039140832466812922504693046186058411372785732089927197099097771916577105180561126200161293372489675108705482806299737470145051234939830388667180172876545728039459142491369985797999338295613007069463424004943568118367213347189734009363149337629693141505463627569915831587200206898838173330584083670031872123110604410709678692544944339472298449694950430934542367513088691569808646203486342458465954665051782284898446179304789320858937591226808677262201035407018146573188267460740859940733741274522785067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18485947790615779745188414256240349228889446331062904094773382639776274043563395189865485029430905467503416356680728973867735497597753344357439607289754023087026291877127662997925230113492882301617218261592356450361834840178883943588292040773273045200719465072788170754119741111985205713089516789219936590008438630992423077052817370085330108788120644798379890401123012299660481604950944287372685324284695760464675021686017722933402562507246385489121514139648781742392051932014449412489477694274718465208852569376519833232860935132440379364489935595337519491390997962604407793152088450641933166610099560192723805725277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27182154460926218161295558247629485399462685748030477813700927242073283198139476027629823462963344217918420904058360352884268022989991419575754754330693152505963825813465620061364915076296570077396711088519913200274597633311706996317642215148202689850052479135153781302744664518390661288843739172231099757459604410366024930103735547026075228889696367121736287934551542564303802672177204944114458959292030026222767067488721311036869187060990114463508023527868102117924196297480719650543874420460328275715602049463699416274844740347023550246054435434212224411135397881503433572030104817888861456026021443308149750150991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27403981004682839512214407825823200877493223635625148940074334646770879673172625741908342461238681158674965204218628806696366617426038140996133791772821681056488300318430111880518084924976062578096869082718185005034476207769321888519092514223570072051711492816232971844648623557475382031778299034122731549510585194496698273448255293959465840969257739111090188277468578441780277377928514425786093322110605392596794180299619540758068019316384442683515347334769757868720747444771952701727995376408061191161626593270393590362593750651958547373511936942108304403597225751122780237888504662671126699755328376151939325351557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26169578383548492458896737858564528066158755154136910734891209726708401903079192656623304443121596943220769846268116432529827264306176550832394253306735367588813187277925536312759479551774333761110165450374906876794990359712416547025754902141756935535635432095192092347568253865724108142329485119299099546941017031466368561954493843526736113242630964235748061312514724249380154875476457328030400606155951734062109434096378728175850969640617800617177421750796588048403222706787441815621734201201388778396098301157726292332241999748732317154465022216152133585125217546314802018582695448863026516315402340131205397356121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25773727860577210235370747233627329284874252590788965261871233441077633342291786237817063270575844199046070283951613019160756850280675822272301297676679604808160755647281275858796023335580081377370417091648501208585222708548512590247650699809159015982371165519963325758489645392511910397560449209905188050072400141658114532601395995321502855151188606621457285997763119089437653040183785110795349155877120250378966600242736470950899004369123993088328669542004988789868241597136156522915541280968469968152996055386854859030187881835772521354550347830995360989042640463192185575908316677849752687588093687962926847045363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26720009272498047729188592896400303799969865385438850770728878721725570494447251332252152390248143680282141041104078406258181319949143072408657161892743213285754816840198108375801523069550844025545737071032344635422061293279824614531611246339893837292334138771632894089155402705060873478853660157181315319162973745334979273026598420455789210068518694395639820191125691563151877555514465585652528503949615903746984455079631161198388056084717698447730677637063493578668654057699676997582559931330545282300326539063338923684940622021869772511895765878079974773149208198455931510828824748929143771641399304166074887084993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26474647473546333895461985835161031511203229439330709226099937488684322749274682396318014436535481409500082995580966581880327558282852216536487917436413452074509887338683450745963439556267481632635048987463718124154282424109370628926119819832266745264069760695281863818226947482380871693592539896836400205879808130237871995078773004040971131862479789548676173910422140345751271806722169577531675006608467897348317922619194458310862754856018598826524468680039464525704716837831024194877039460974795647313916268003474713040478672996951719537608315143941855136399239697275730785733755149558026748435682390914837146054897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24104590841719672657824609091929356866762489830127304356295076033607433570775190820710328015401166711646920297651667994977361448530393554021718574136416800937250500096598194955549886982643821597504774116391852997230024868408370634823518675414187075246229493251697622804012124294435608025588188044882515968903090422334381855303766547391023923982509322747584270250293155649219109421835082343490866308239810532861472190968492480031232324922331202899739505316332505224024269340274514435102415954854603746893701391157404748171079545686601662375651686960248813284357755417641862084585594025986240473984667977424539404665227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20932312165415739853677205844797502424263365219895169679888295197930495874937625225022347147072318630631868083805691007335551707672612719174939097604271139816926197806858121979159987119270434923625633221313710754591577327093323918508030910709570621732120355284260214747550908515175296805028868847543132087819025745623462179402131017831154290577404142300280522400802136304582886571368282405422709179173632427350495273314047371517313181083613194858855156839999560719904537601180146643936556692203990840308239738477132077444675706565428552494435332004186360865949938273646367380092129230420581163232960578542114815748383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21472098948118111216346990514991109902898647158665843876335679806202430328708643051038374205615614166261956718972977373150639818493691343907606963993629611683810648461394299451672714725610968999220200209738748091769077576451441557485850128466063232851658633624228566908269477265822173247279420025594031257204989205758019797485733353148650363688545677321220027440813255789825912022454410156165561643141627912336393139278585807881439193111887239778640056660147955302256619099288167986330043368839492767148997740548346251916828070357834782508320430095812791159829005576749269467265572423389401754951046538143584881482317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22971630470931722762184805949470510253701441773671849570348053391277685912502979037431138091593798941072167645295361306286883312765094867475967920206012258620426483996671042351755416963729964481148821720485058202896250829820662631415221612856843833210155342408285064242965064284842007776853257378076126448045601127312058734864152559993961884101058705058410001094676026634656699579881706905361998870692016865190773881693551611505128889755337203602492931402341342779221036028160702315417371253285539684249443972092915679194832527631684254149559464794634795882298768599529744649970603284418432653943686759147029047743477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28026578728473657955091870756158780333278497778166343650630876227914726989763631153384785180717224596255077639377306301073174370625027728950715651640835270434152062440619153935978793779039475651225755447555914452355975079739626400462479517794316646938867160234783076802684745864315904188146704656163511836397689732622233405866121627419198976787299120694539374265039470137704625096044887000806644604570785392254809170584786838433573561891533710778802800775105913432959814261408758338191080493556986070418875480490398884245344865290999454902155434933044234221050408486757004484143090611527389052267203014035961196240733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24737094585652767335921421941716207878979952956932445414581539264155540741243629289959359852353138386408128230205811260716705063401625881266629683795323459101574812732584324771460288992781732139101919744030177835680508482711395171597194823744697729439389801292780154866202168751595933882657303957357421366824298163483769569465365364059631058375382235556911256926846062977891768580462899812465554375168495085235575776189207292944767615390991229174797821021866743640603445815709365617038529669314787583107689172178477145909135990900056123839314951486352138564821455133733481117471092744261626630389355085047445364603173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25411856796374946597582557504917917983612799828114785049493874978242763254726239147286056101563989299791790544354635461784381675494504958185089318579446890142624978706190368731437262015537426236669323451915909971131456845656426121376294729329758849851513360890383179810570639937930994749060627520409263934976022243282531879867346257720050947267217795252892539669578908185977379739819305709874216114217764104211579161861203743163043116944788449549154993203889038377643283660299680777079088105178659774986887158601445122193084714091970636397623654633935274112627070488601859195282414240672254288422858779747800106746063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23534387365828223310487558506817058266819737747304936670693407331043636264937017778995624948169658561419567876449038432269212969303342673630808014088447529298793007584762633029640465622357501517416811801846981497938568819288977004256731462408572004583294122075001661365563927177545595714821464560797090791585247656719285424025871706941762102083732249619113394184411264367896134394326510422697608484734072060590096856064568497276852822628116822519802541237080013024365714311309439580781075849916180669208613671507248462467687761136190282064362188361691642317965967327905475163465137913087805472411987421053122984020027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25564524804413751680126432592492157248861190464115061957466622581732517412655661372017450706818104364368308542597126124736962059280560842102981540534054548177276894801283614701785972120115180958575899056168544827215020650152416864952797702808275126728091807049751371414702203161642717348849668011161699822151799909983989448086829834969375237776431999022506122840706382183432192432283038394761397486593186101920898151423362865451250027552552194362423858853192013193315011082308313078329771555153512430292193481179061818075615807371433222932608019165129056402260812522531048664410455108294824730989333129408164380022477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22291648885426297538147644127739203493296620974786293084469416785951078574656272839374311227261157692549323201532851974668620784076225842066912318700081911290712539967236059958850553307953150366419924874581052031874395066410836722782535660125158014699643377691372502220173753282022833859239850152875251360014857909076884888369584014272157750364410865180669868003283564386196511084767967019912195941225174700629347377557358008514666684174726644877038920824512175901155878313951033453793569009566342479954711808206641575026427482084957998308083164675791219966288497982197532870155316854964880485533315365719422470378923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24343193705154365161477035316338277880416412187869554213421494059591166178227895787718419537499342835882456836934793150484226038834873077282135065159043643339954388980652503327451355121910805705559597720722224737246443491982250541542562405829510463924342589053080535141248850937200073208077576577144465397413283949332842612815360257990698075643650579541393784935073265333830591910922523966127050561142560663069829715598246180570313836769685077738489418060064382760543030213461103959174550445851050815615678725259374428894309629303791411622924817707348436618266977481189615300182124642821135307295120501118432884702257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23899450553722980459940191249155444594471172337009532622166509574496678063470742119548068425163918711260919231920975168135870151815398389869753115206857319542768629476912122803691137456442727593788252131719460816108574836759211896019125135180194549423011243652041333128732967303031640319211520437028916306341493600214213512347241435511612602774896696627184213311500564870828671775837419596963137704037131504298485328181531501898042588630779322318568885885487690715388870360837059379972988368933255107691077521784711186498875162204902574282751230036139880667041709355889626117285542394486625093937623308206133163625531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27138516253979258768987283346485476675095088984276824365506784960417977827445446340125461499828678086408556479263452049583984464174015780084059866945746063210620956416542898815202921682885052256233510849453799066171073879647946516493044983450886968449686322704757350103981153212751052021052484803802805533796519557875194181296447265843105338184459303345966693427694319092571168825483258131265034187184993627651743909767611067938412607285051674714001330352003144101839547768908339741876796833286586433907962140929118826401836307091603693508970376718950136716343933757309396606828024340994399396283412312188561137799011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29178336668859977431036021886087032346142611064889997908979567325291178908465552568895995929309531589949812478454164606381935366323550063857145893675035265875475416397170312429543152758123344356207141252455334473575161500735400614026851534335842567124958464338249204471324451009722933559694297062736807084526465044329552979505679176871288394957016475211252512094190242189395651498540812941083727048107887249660781565507423059990879418024589464721983616172810735863670140885323485529511970890579328853878121923821380954624559567299731326982887217076312445905865912829020588852224451512220858601565661201813507614623127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21867755756212619359132891491681408620760834552168056564220676886599056831787311077666705692178550217239776046961012798579133922612654297885505464873173770315911313904986375729292844293404757948579259820269851783409095938976165760394902341767491134366061857643043878933597661997071189579511708886051827087374367214618616657331407284786250157868029410614036642018088887315080449740229308552264495953759129693719799824227566950128837607661233435214950261378722415989852085981311121986580278197482659457902304576454762898012899419815191254116809732600028998300538549508186942701597183867022936751033210740034475457944583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26005480463004709807583157155530379960806623804172557604239241528019554231092277955628199340089787397504183264980043876549509464472732111579139661327474413028075914828064799328023512734669443641808486177591468420472159366665118763601292251751382578729139722453650405637192915593084335574925115174847128306603240335071781753574871908539479791152123372239795562262523020154918741310505714751815134099226938347241727177534052070373702451432396396030683953911467974114182390892101487042654437246810900672889458188521014039558105766725465930519843319569677157893354821402392527791516917054291781920016343250914362170505503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21897705279965075631747070538558011070662475549850004081712724355798062073648152538166989262587551632428224226163095687182834002543081771130330708437169292383518667931683376448893683785756901696576551349982291532029094728663109744265234177469147304694175908706681596932008631356232807919982417676674631127589972341267793614216398732066015276380595780249763584112338263332535962574370605521122116349375579181638184144174982401680098518903624516303076556161648248278383429996862429484860627841631808297570707285417796880154276967729279760863836654645110302288775461971357287953379410390036101977058786687665474277644709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23737151876908077148146297333464322349545938928599607762844795823179316736951266987839159739413420589008942698391168483735284047295376460324013237176437755188228564134333905429124327289655117467919982022024286601212105011783252408447334877453029903931551565898165046144577682422101354081149135834088243294586179716671069743056832994833674118759328497879090510915276337316332155592566514402901611794989181225357787332961686460823146310001852180912863886377251729505986611897603706444171877302145862666773123480398305095018967111936548380932495632603991892792445363004214139278697630340467566354140518550804538147934969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20238571835464081146259498330669688022977580408603865344037516653681865927448909733957705685692827437092517964831943489474805374646669507034645081172453027568754862178879659258846529570262656346707865929541938589571634460982339297115610718890725436217970410853042040307108441108409327084454013356101055326996486840097329886627170869594236729166231652586215296009809419160957632228768517851441605249272926312209400235398455409456580817278552214147645182638295491146799325243569320696108084968779969170902464507957311520046645192311049027982723975020417204514685076172991658204781457080555163934686486494268681209992233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29366118800174118264925177012482621007849622486785697491971781031947517983934456190662938205840497121985819876358223573123315570843375279387167043191788440948444622534824810075676837567105402197459995553264817871912895404277692547977738925459383103515731203942068084880262329802592099485859421172961571947138735311203289590038591461191169494809916299060466519387880036746615395358922934722114232623414171964218520302234251282434818131896731165904638454083942670241145435701549601333473756457639800847584132273856039364789638989669342702419224219772427988190404335338668708321501844905324674988822960592933935564336563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19469755594235846135035486391803015270974676144730315641900648672373281711588144655806101397440533948973853538343691425351571941666000489257027674894289376832801477910904469549788191923228884850728236147276656229177535139810372808503644241390606099049520836290449131844837472142538418480520760463970692491535280150452073448580299693541573380665084790397273783498474354350466296882316540901884591171395627055580281384189218914515900021879362899652880587619448984737912250721881208629520667480106528162124769956677266795814672617949427936316509737065416088702267284651497339106892755921120840816312212569825270423281181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22663482854959454508688600203123178568884119751654510979962235375946894970270329469306229442140786042641806514760221434623977649074146985784676597921412703939174249552703882789241097956971866255325095919177405136612412499089864085786948574615796889376641014694413956898790333027043221783924840551989786960116882796025854005566154619994377639980720302718488810209096879592666215917093899127387113648139871151410518830552106447916672922426825802932608271424361995633876921165771391763932778563825658445663128050681039614085258953743804313017947030889220056803730753631763313042288467149655109537893264571256877116389963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29625964625873464348490732372322848714822519390710140054569726661091562741607630219929412414993623890255524129811298237371998307491551595126985852370312043599766709433955201042053754082384419572449309076802989997821721819136310838250762630431860609777825023293716264155183246591914760844449016631150535824677752125300890245257371725182320457717482207834924122948054312714759005361758306124064958020153104866617582142914974876143579212100815230784584649988801683990189759708990999029348709712601075964123404775960866444715250431313454249649900660435365072313124665898888179635969051092709726289054060632997511703100077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25093738808330253523995760221272358414381314980943097559215247069447423871890873579007926689251385389080792504571372744800938263059124130397650320000277470259259101632713790124977501089504789987753873791308635238848053437774175129834613354872862542705651881142063492980794767794130191727421480019148672578914794135359136940325644635556780716143733698712598384425284181301357948714268162480166369213881185688196179635202964084553140235101772514511047859631712356975824680633926859094235830853638526068734456888947302532645046129714852699593163609529289731759196912171641271752190325274553681135265300959046582058893177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20858179909601410254154189531126204498828592691997197956367693044712662977002796612064267269079753358851628506814934007725709966241441212524034452895820832902301372752503919454186264284327285298847508287815754370014870551218891580772529614755897999882269810404926526647240050877885394037195327118092590216452485172548832408758676984871814178679883894899233330616898777184230034204660414609493111353225369766330522842826870919838427733183637057292815288303160340232476411544132481523536344432624851066608113595968333650477249744465270069555012108710123109180929899187916901508863925505728059519609640357082845834984749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21448204256928760258840249286866601774880390185364228511909823597498524785334418497585465192224029689015231686479861991313755713678022716621374389616497399372722585163820370682357128247978929938347566504698100631017838076475612852322184054440309630594160109354837528165860726215074096511382230060684338439135446038946717041890455475346562247885750533203966670926309262313716359994532283882093918269218383933011371861881217580257476674368769655568110325520443519501552416785908464801099808375200479227619041681720537645168004064298927970923511436913100980896715308442254219877129967960542559887349979063198088469951653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29447236687777821453071537458983496688343102657811619847435333594160658635318959652048448105783750633298864087062577895753433788603763726664584893543221750438014050809249411677286132470297395036528220342372090410271924051471251227160392009033945184516183258145874155440143732451500608866889403677081193898900834831527435691708524290480655141858200214414824140943455961036492813889136172619164765011461890091035872285794300863046720661437869615552102750980442313308923551719501454743080971058568703730905985782747906285645942621211821070189262810201182491209460018194528781267312209217794117254574885962104930535608503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22616226700709669448547797187651743393956521380830019187475991948978846767177448749256770260091035571598151059946378795076654355303217384877805148153227592144699583097430399685408212038525033771672285417718362979877164676065257458188570727317731890830430638760425624897510653808451792318457837553857182988444239625132652056498190588823556115153482309522368079868448703675533380851612517776980648711971225689841696012037873941595956152250451589963908289272627482523041006015739582416200047160632901228843286181398353841500253569190461924809966024325954899542006759225499298868711872115164345466595802114947057254498619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26505273888909077159202936167750181538096110073479778440241906680167411921687197908386354478159865550745371722068327805511955726848601534956200194271037472246699116281819978605990165097976504687605567898617745835597512923019275932732138932638931507132061004116347554666118067752678266877269575744510181067573609571555373330025784788705970419438931721721378745696972401483889034915072558355539473173553160634613355409198547653527505073964576353734658374394358343684359978277729013312861258117089272844665783238678457195801259710788285661001217721412049107637138547439829245591159063464445991096688928363678265079087707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25834431892765058662188408733021256560942239648710408479813690494269626794675073780211501397214400525514538916540263372271871251722220907882342854846405582476360649086016466605425966990733882322086996317940927097377788139387298474037917846646912767180666234418974881512337406789887400674565107381292673107497320164249229583802276044883240498498496194740526918949089739889209931993182494796129683482679551879735501944707754556833475549800584670929387710947774518962119798511307059247040711201381671187620302873081279811189875026951859614410960578650385724129593556219922577560130881809004469433150317212439231138320187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26091022754378197834795074317972202911490626514076122578437905859524249564936091363576963236166596592926001967886613148688210055364936161594144695798822181623911676033515964097207687807448697912524150367979193003856331000393326858917301050308703203655052071478826828808270164277306506865262270403497614216591361525025806311411168063814713319279568027643135101377457935404572237763181372671717729632776724869162835291642899423472952545160488567999427969492670334336215422710126082214798112536304694735227740527735053060720567610071711175104740211814547362061741767593477886851867475887525603859196794212823683964492467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21735041996913357683321939634256540758043589067221400890331903762961455408600798984759234893487661062602772030003617864260817994762990807517964751270830389804616646294791742038426419948991261712443427381695593932052336982366930344824692660016595587645123706421213243807328915936969737257612481937887814191467559671069189113174955383908919927503381395032452479631974552782071907391091156784077106463375030909565846984899141408111071084759277015756712633448138259770496048031097236730115416505344005607144370807499621505153738343912194703295047971621337940078392879467819220379176997602376886240130611713095416721434817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28841908058195968634669031333402460181456754328670577326109949184656976746238264978739282538196206232921582173829220155902090474202703914632073961526571904470976810537341566176276487553170452492247511321669565033513753507044809172650670355990569604324884423220264306220106552143284832887445444118665750024908248372052437853085218857106130232073420657708603302572667478214259741685912571840259040603239767144102923027081667770805418140818271921533192986424864830669199336795862271401877461368520896488852861892088802857384269030064250847167888982648406148103057027946316404632621699444149134393121254459334017412846047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23438871846074998206565437815876603338574387770488516780820439980111435887928776945293969572666204196253600493812566710415064266260350281666103419592848404713262781576331322408059466141086968699029826462220559963008376159153005326160368367866385251898227608038426543749168777539598609091082699765420213426715272837262482321064275268670442320968631486455245836516127769060576682707993231178227090857604063758425152527776257553557459719133726874194341567337677021881805889371611985111170598553121512785713184037330340711313183003485376607651985284666916799550038242688916423157282066117610288250505510622245217553266207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23281869781505514129162097349722452832720927855492019594074114734074892076284856149801373387726909701869615589233865145449558258787195838694155546342417664529469813529759634300075234291530729287310875688418319107404873303303812606321007577232919906927016814127704357016626669752955350631467027373981152875236928715953413333887174621927379151064251114935743028539572438368057624216404897528271053459577180447433771816633779633413997165285507061940723700639724144505555542953241537312657418512313940425416597297641604662940154603720586359857352065543268217973214628515921109275893820552991035060174832004040618383003251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21818460338481886995870775939762307512136257708215626770073434029989011053364992377891757347142467196574461219816199091600816443872475957614669264339596711973888774883819112166004806640679366260909793499161251186688468184889664625949341842217929714906353346218736122730938350102207130471306031794615789910024411996977402717064698890650971163317074911951974738736074170042075967874600251629254463611675742589331051256858320020927138215409945978754349803755435614022838474167156475852119909210092504596163559499775369281386780822955118680730918050927316995854129304817822926450788868613170800709056467381699061664605787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24308125765161419594432407917197546066234362824442030177907476175818976272112208375724142624279866047569278237353651063375366571832903384160137074420795046581947540678709954638669253184844094715709185137298183792383713818529588910657709071530815644958288862923672752373344455970622213511383848366266840309201983581217467456843053957580386698673476494094435454404051105931724796655343343554849036712362647985430024760298148581526595865840867159874910114940359986237854663042653281378733419920564756685352172942458726841872445438662482681077463730024883855457286921618792454748298174379289677035872987002818221162568323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27454912528330858903159242810682858488049136401700052658294935258508969382450968187213103073932019174469979657823308616196372496515091704867440719391845230072979453308376345447406689946526994175226552729900134822315037899764079246806080412441080912909768219714795844679775329663319553959050806296372595630634423897075021517123293569510404285371594603269967459635053486515350827077423177303316263125571376725937996664283992754289447560465178674443011482690792318755408760805336499722038254365475379508296210138583729174515553606830503223441206111633629970072972311185942292900120372661596485514417153165100896407684967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26514710049684299492073278196557496655646315995630634538672105816966893867308168917421083407324227466987191380513505165213358539575117908664805276218646228958316725423040054178442537000768057973006315874099406091144908415086277854389998340885324445527827515497460259829888238475529140696993776380310617614366141975612424371662241206893542835630010936678019346960635850223466214272710170321687370469413215266760955001416566895285124450976739188949839303691170367721328637477265725688090023823194366910994326365823749397389442631953513804370008713686118305859745948284093750039258889010459332022436031211355475940614749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24956094897898668914581610200525461416554943784495404744322955082239594255578007593110899517718564378954455100653282868662461291197340548900598983093052153917542706958145112599037490552117236302261188878396601412774361994597984923046617271056766177497788545685850332183050959412944751961033206798969357182593014063100788463106317053675405250750137796563397171895902199624910917188700695041400069185944978604523070035140415338628900466308010820005707585555847255498914058339782921279179312543759941953460098411758322087939117385730796068918767345951225044783352878678130657008792417094039628007800218074781270592045211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30337986235859479306702927997188407926531460495573260806898693050213161271299808557392963900707347980553734981374380039330704086459611771643056160445847463805847792276221868346547311024303564999891323189096013367154066713682469754267247990274186379641169341377183201754474996051230752427759082718445284191061687318322232780789354632348952866960251679083113924414974864577035704808826762282261278270608005739855021516236740491884720331306373541232780905713963533050741129857290780504431765862223549306142462706719196874011013339298676209359833450657897877373933417829875120760735939670740787771527039915290597719653471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26802396940168087734621599011230539557072776086578484684759714756413186215994175161036942230531843040980675891069148214947090063248288699582005194863535118354950932730249288428859475300617420466088005819537898654402791013085233824050881391909203713798504833637484075369903607470394618310792958067749682477252763586264579917086038733005212027532256802863513098966561654883969078516245417937674633134527277386277958258829360817075711708221166197579951549374239971323055669681204107206839296661489446042185817581005332654584234174284972376911186105586262136210485810556058690565435783054657979166583460371197183874155237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23306354143755468513508328074107253599856621054582242194482184304272475154335008099589757443344227933135990632730804328557008708682110923663396032198295362338428785155421231982244074928242794919653315252455114389598583174780423352075397346179440941714708182268315183849228597741254128315125138786789694518257408331231404320096744420699622178539727901061469318691478621352482299608064546518310886322357078276551253396871122122692103844055239429762798114340646701772862091064630140059567803659464739724944551676351802908990191160494168392332252117153900733719886939806331186889620767177300789027904269233514758406380387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18410656250664921143045564766216967409934885531123257834258572737403611687335811939631563154049952238340181569380862646091321368574252930639749710895085043669355488363512899097943609982100320296217892002035942531645986055936513058949751417204043537096192673918374037620738751230688942569495902774225314888418053882518597704808830950134380942622356379449305640451118363699342794600771893407495627235085179386159676712713857599911054879055132929796863384931282857309354987870969656188059107597475356610961046026541905198855204623691070339465464837582683674139841192118376573026837859230074258753832528239759638135434187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19783302484365765823508104615306097232400379152620339142448610296082000025079142824589313419225338429926900991660527554306864042920671009978818843094069159524671176673222155285780177116587545509869914869815407744495369870743208323474835495598700060292935156854641219082736577801888171896891938985823459335902756200713584407474052661183407325161952414258354372451007025407993498700520431223915690467010152647737815681758892079250108991830473877519706925009497325398720816820861251614572753737836347663732210645587304549812072266148505815022629295903627992600966273203956992796914277897820261708486271145874950160791433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25195360764352149551806974730076787041175850529954042287225129038329182663732050563202860290462123491899962728746769003257395562406424411617497122275569257604505067078608084335088430507491104887960372518543296671527832730186518885882945601848261437155708690070720180916111131399844648435714870979061308025212830537760289086894797288384993407053829056500798744816631434353285515365521252200587800453201078727668795532853257570174379614724812789501739956975013646504722130921014408431438167632922655689901421549318204835981156909090506636038208218160112136191897201717093308002775524899528765964264308211203508746223153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23642033913936418932739077489863679", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22940850554415964071558049936622140", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20825675586215446893300578754271243", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28349537431600548434247430107811801710333745484210113678609939732440355472719026150683885384365655951400342579274755853667005124711529116708158649428107849001127938578811868264008130652886524691882948843265577201220480436009514324763308883491270347845173812986439871930839664416231652174908884021064069877770959174095773298126812697310422907638245428421772300833399022850221767851597737213194577939500562803450672375970836982096583667211115535082666114037574658947245073766949186657598066807439683963507597756178911677280787399054889278855166283427997234290965535763374722614118999002376079443536332448295561227152257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27779442404742467746139405332257615608544455770073062467397646121263767486539314294732761484937711827868786767805780006635621810241764261054720453374513627983544691076186233826181332346806092577160051079063184749575138123928279885297276955876152727933720497254924253833180427330214698537460186760074903928818745880969840290038823569100698156344357561666285362526217528541985499958781743415490223070898344267338195817157717820381381060066268427747418664824074622459804269141793497551817964791692774681253058999196124617523814915759179147888752391451832279156535647591308894843594967311483721089337962262681442339104119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28169817972894963453840457466694005812437504823732691823910936742288260445573927797449572203030262726117988320258248344320872580875126337817765813176091110753802638259857248390665811700095852489195123442590031446751727581890673013821231909860971053799500024411315127964578667110591760322040083084357291378058148171267888843272391946117483780777074197097675276963905760374550616178345962070526764999124938057787685136434214070663706321281768382471227597691502302202386278203874326189782476698434404646880008298906617604022221551448762107246879758050817186974173135724053711746791106787953081670918628091659664313994143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "708464133481109422221677310635840251160491695478433359533382527458685835294858716899774288122919749104802680711229687115140638083869347532669943859767165453716186676918326133389759797420716614067898038674407005304561502613201937149261070342408832576497013500357868913027228186113806224141618656917838832008199931836299288813345752624602586456037849230640956461691087339871710756669671769592075024836934792171350463669750696550205286462818513659824417182769647539552131546413680719509279169909808811460318455978529246696833133273711097375857005126055001210192865679268524813385059312210269874961659587005104241729355730731515604091330987179846836205920657360566946717464512062927794776060125130110553103617113663257218899344607782736784059794598746721037455464069632921940664352525686031259721475519308393001980927192184261229450157033361352084263187652257990913640431136106924618234372405613642077957811631563705553121812902499473254680867808216998178491573683827506341157476897399081901915602302118453611760248914618179818944256719526471339562904105185702313540909255247613070716620267477802724339629153217323070228413183024269596476479596352894362379030391848061453928003768903662029762445836869216441926031146982694483034013418567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26994224308352968715990304785620829235411193496462499548222642563368419487023477052159437140092161169836703342493438197453193671145976342366610786414769457798325899937964349828501614042644308184459886688163353037849136842641797981783503362149603473353270387485622651494179902547141072452221089953228642077077721972168398978994911909004555989988659559304548943626498097888814192417803102472166855295799441172570125977725731992116581817795971993572500143210817813481643981464360160351056772219948057654172626407847688104646739557714639719533745774737857823724662419950968840399681984838033771278727603668322100528341883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24431093705214220721446732668707699036588078923420537551889474721298337603461538084198044572679270660920280282612818948808257580566893703471244296939828826877025358000761530440872503858755933239918162043389700939231300815594496988126285443962060787759892796911056180334931222597097326838425439192959199678423561466866833935736835513143240924642116523124089979582446350696891194724146619968896556495531375469947194006342884729097699730019166374573878115441157771591474434233030230787699490277817321535592578993858471491084105357314437220969833968903315836802269290466802998354075536622370423201200306090822374538658157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21720366853713219818555729381516107126387310999727073786113536259773374597674389629925455081719306885276631109184797228939793290184701733960114979474499797526869968959195523817866309336442037212387418710188565609411659585509533272392470802498769905423556154934777429127850631771348436453653755595336683167059503040692879886268457001842971612238315659670893332411814522188858615920667308901169333199838234700409905986934898109772343233445107385679475099565123077013823412758926254515767305990857669873394854132523245117864904806653069059603762190159293160908536313574345321868253846654510974484933747751686628275673801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25961338118089886276190143596303930392744312850283619587597573659356164962951380468771122182066644396003699748175189286857231530258907521143851881801929000008882941227953952787482370164864474924045622248704645098779174133880742237523717978489015217871484299055367573613894777731973770042083388023754611949795197643165444890356790094034432500946109732719626134307181175420413457207724598741761266856439285996343894981457602354482529423986146198641512769230435755070062740783834049248557545696627725185185770645233586733601479664071413638891563203911501385906877530512301208019781511829950728723560865791688321317976453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24376651359816677683062509761749882348872988530113135058622733322196186145369551389877218113479854175136303229515077956833805232128050824306854978013255747025174320294722752167908345951270010225007745317394591348480500539571987711814039752022988279829329056872936091946814819134799254097684914343621506770127923666593831522163626155443191540553780329726225704983458199028176807199834762462193771759150091067972681251331811790530391146028361954497577499441243125104812380521953425653152851041491900111058586196420869732688616609751394698079553286745195549020503036753622090038438689240878104230662791317838232970570291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22684602219769154365310000203997312277539087661301332291664953993204008298261981591187109662163175772178935073622486165446620382302776819882388737890249122964757845251485780956718522613309855563430240708935780469184828575369884866195177337844268779120019789080754221266201277252129162332287270235675784038801464451231823385344043777027890479373736311722774278106485975614223155466074818961431191425522466740011328582396010254095418305439060356328216357798931072031915058561609496544272809411559189412060273302965117280162048071437524432752350822469681940768060908133969179788240758256244858904661732243074805804635017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27769183163664694731711768649718707225785952918298221930877540362311692072630357623798270535480029669405191604409738008651548331381562153447970845089545038181804424849963268459735092390494281472061388306557303731837972715664602648188404461202903532213976902787955561264088073316874462628554846207897810816676843854813625910250245152210646199284578979291154979672220762621418454664017404061473662473993795336277281743077098237108161233430284024643958904250328593731254324137696044872244091633020841548634394517963024869611141634895312638876900726426956608489908202127975241659804316259732733615013205011575966797084461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23770540029033070453988957111043612281022845012989186393631249031381807124905319902056562973066741346360662576115254251407445976421351899323568114785311506936695177435032334532350216256412917231644225274576639830291703760961734890819656256097999021104958191443602020453347731471948232625884521732549359933353664233970143212386427728112562477144006011125713818088159628728092450422420501252726644613506333107503848137718174687131237790503292722302760936498484195084520924230115091374185394464917967631155314984139268538738135858738041967656270645248564787210347318196780152463896605965268284038830829250694550661215427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26080327965768244977919477634803310356215550841116653558210615951447757344518760012538029216867420717167697408657632926731382127557294785746792594758109904364406662372665799135250572250890445849093791444132335642431504672364546752245272546371454930851258257425483235083255859341516402753248567709683110927020648521559503397891332459663834657550201004551192811355892541966930106794608590616644771231226063091824615367010668414509666968553921032871010878578183592760896891878367380202026129473070993164015110087614387324075176549044428913181426392683041724593296651244275788003413650543880985933069904219851521075713373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21751869133710173046147656850591595653118737146306160864999590059680424907442701139461241778489888767033585585403304192676780376221385283463350690230153257219756664950402771460160209251839433156947484637926788217102106109696083691513473468098917605420162374723222162433221868565985741409292962910496733246654803422902795330365124129964665821942582430126030875979071739646746938243483218404556358287246353576401541430460905793374333604097774003823848491686730234972725210849053021931188422479691100767530282343781259614164936098336087604051003726921730327980179686434574952288800239375618712893744593636392179958279513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20782947203236693451918315009435499782066513750743809574026974524296853467247187097544846606900888551458132834261477916850435389657643648956227702194257964624582761985548906982593677046472805799507735079471694677295084492534572452890146267005015555233449366136071757355988966815648747163431096187224114815385342834473591896399164462003355841885579499328428313475839327903218681693077854354709316962663554230972375095802986519953436736079157309133356218524833448050930455059784556847746903048853933631128088961995048461994915446136444268102230547266104589566855252285416640058095578534815726449512260225703504804927323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24786608131281379655675428225185292371076297171861577377934811846158359699305932439927035536458333020900596788310815818309354818813188054254698205331416846292228813889176789288254538294964260690408988917769736842831372762304517000168050647939558812091832715707490641586101178642434579984741147188719412427812541991771011007757195676194258192726962253463714001811759255759580369988929691239969875989966838889647840229365428395164031698506201468889794536511307619311464037273162034746178218354225041918548045442385974934316648094113896168105110479255832710283216564055778440300996193487368407756836163784167164990978337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24160043973921982501760820787806291876344636118097220936339483053358048852683742817890824974040458663419029493179972943722159773014067121549365757176121100281182370664053880341115889153277173577117182967867243626154662961420215529582691240514429390461326204197548041300476846404218418816072672327815621963576019679895302049007942056801326183269828433223824103238478323428372385795048064286991986711094920794853119261621144079365269003298669829105692755334640452178703732130084533192226306500919165078415117462535489905567756460899794723968934515521832068022044535149124686856742913982351942312748871219741409699674429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29872949166795525577467273666153066313466357267079543807864634016425753469363053544482110673013949541122912096806394745215661964239442523285043846107812732316728698001626053225343285753764458659986730904745423687261115492367694760669129584849709265665415256309460746641253695727902738813856997407722199421701068233531287311432376640715006743570224759098180538311531160209621383001512366501055746946777436894442887054345914403460091124684306702112063275551377173518726040674026528331055674906467659119694738785806145504462376838970143684846993601393597483178207409769868890765370530152355052984363790392028871629597853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23957064385560597616183050034931647355591339238792649954091050441593829693308658885282906651988015236906446685918369534123068267221531850545043845860534264883199806356539103347505950037518311521953486186729184941285782183041979393139025290787726441456564713185212920765385446479293999445601278607109033989115054809072231470360311193839442571651198673666376274776306371398024125651428809803982802470569802041509216385674679536903055895092573304987016140801659177650632495933600152045300814428536458242751507974751579225281075035651542632785933650841904644491681440274107869921212413847474821796030185503014406222128871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20804557199299055484264607571769584804380842545590780486941115674122532077724570341516993132375300004518199035713531544961637331174684648473170469588223628165222315227915018142098212548871365158519130280036652120548239213253567252494693875431393618853417721888156110714658167806674988706317115624689551466534744223444904104324616041281338396950284780832952184059518269296851229444018045117337032775832891798202573744984047265860318572822382305236217010394208958535908783038439372554611483845177466844322244725229147523586280127163435264368530667008219353709916023411040807351622215385977783175215687818357876120509959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29829846866080823265786706020538139085254158364884690110981497354326470483291014231252000686039921202452461775627712318910773019903904919288811789219422421853732853810840285008706859760176596577329890101255363672767211559763283946483783821417238758687925547292401339509648713802840648878647484790812514254764974200098633507761049645958269494739714740806481359233233563061010549992970282042757974216624119035619524496619650457770186562045102548745449622757646875732025031492264567785027890212141490174936297215404041625076962520845283102685235766126663639974912712165884886938408285957457557833655558786325187251672911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27694851804029742787518182011821252930063512574330278887145034135803949415085223515127788089431911236219660860832777916050029962032166243323823531823025508703870558215395769917659717975716487067964247508474427191097143955139712457351753102184691164818156577188792018715860235773527012561623462604427102530829435873870750335644203179579081670399327140740190817409076179211381391895940602930253397747319024488317786243978288442701474386900987042979808512112820505774229653086156668795797679885946834448102175674917948511063188820723453903423593614004902677877658943640649910456280843686927197664338039919995121099549897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21878739330614165910370623561485258895351423951124942761270513892038316804760466070635571614788448053873046213225087520250184274043114220178942273378205718754142277498847454685847093338848293631239866166497603589901606446878769201136821590538108668750392332711005033864159249506819597236582350978327076931763892837663326339975568879635552595645986735224057559457646787927042085615097590356752359549190052580156569506686792198591444895254549387361482094143115179396999498616239115136870407698261677599117315324168877915680240721226653544377846324571571281351761047030741090212043981237200772951807564747911097569911367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23954824319472943111966297226623834236531855418526595062679616851934848590964498039721608203973953783772014217194860104916169220919929321322379256986924442993897959266496847675319382055094838901820449318795018723862369424518658744995028263564284427953140949485355842826434741837171412953337878830979012239749448573468949201794568830848318795217209544178240086388211113071405771133593826509533226454986761158033412621970906213265857292852044279788166374515333587429742549921720958541777522325724322308257198895675325034685232318191797905395366182850270013131024061356147208135169966429081364441890861719947407570302219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25035015020081611965667191292269443635145158120840111826419234646717359853403413623134688430369298887284708105593269677362948306313840061995155769413360758926870912123758861999154869884205548600706027263624754528273909034097583218166224523716397000810112597562624659175990040864031536454735972091107162174408162961474980437300129960941037240539908203002753519875165685909900477936094128240224000621710641303981673638771652727558462570587230732299358157789973155116133782561438170074411600935002748550252555865806114349480024289152868628143057208988693746525354494915958007953901479578284630655131594207635500328243853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21637081217391104576306411378178632281387273849566371544047003133985919234556794979562723331080493828016227512314075545336277674692779931283603689161864394332867125919971867455306417652133706509884641968130229150391041382122921171092702055503162766787000430653022576288298301387102345002651132680663211021247084802394312859332753194875217091691804014592411345569174845082414400708440632587003307857056588052588382692255456158289322536080557849846134335215447426767619741015677947321400293415049517868887824956744160246128364217034067982302680622239606058350944205840856340087381207966350744360691238964747053356258749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26862097389537609224111085104254585200790847345944815428693831604539658613502117933869623205923262192160715689469034126187163456766603365877719300162589824957981194446561154565267048279302539368771091101137374039239354960551526261868341498114343886087833713653336739709677329135851384906731993203884192771671042995459529869613573807447057025021283640686498226422214448826829426848184976207024699617532490184841804016729675505601441516612746610870591267936349170922613415117115610790067797856106159047417754165391159997226900211053923930365676214507126931478453809193409776248203253288631226909214529985449590201712167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22372014027635605136385426406110205385644137603014503274100077018744952828808862694479227473852151134642673230932366341835686157454114037847061102736723733657464756070883639639696793203127006545368686702815682753450972044850973019280487972334353300969838301898182036963711144016759174581454285095478616156011121565577270199926102872379530036756498457864002180584176888130257215215696235466554839635483645380497060281583865802230562903949992028396099647671245281302294368663298794501867054795346583269224141935300356881666551424175471954136873872843048585631110009063515396258070437676237390080798522979675464347697007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24507294555392744620955369118011362200098643032632887056179582374066115378236334398783793969602294625749945059681123072684700902004360587243276918545138587598429830557277508631352839679873676504805845503201518308564111788355783054367148701126662124851478291189235490115693260900831239758611069586694041244168354586338216343429840889305086520921141960763420564183030584405117492016062757799813725839868985678946561791940208681976874130447722444583834412398138068627740460302863891176887020313260885208734638245856562163597126052626703406465537945120051460407681854916555614331551739305076634500983832647728128649963913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25539959272960935270012862978423692952909834124144821195155662567436154979930600004015586339364804136356168091717363722263269743743227660091181458767744318174497197783604491514872786958804649135677837251912125999768799242772353180340734693114577626779830282149538103971723868545938890333054181765735983765228602647827355419337008995864128749202375007826232740750294114339482143139836107104489302801974274002381148207635476176610582989717289237822410503871454500583680728328039281040239633861279707442239257982363543003249157057773661364701322643672942009346095897981461358964332453544756458803009283090372291700646361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29742687386838590200513173320042316521744336860204947678695695854703079562116874337515934074399397710602071488177043698206589179316979770476195126374497034383689301821529278776409643213550976565875847164900686282522532071103749316778419764948760703371975010713347765317226466541400951074368641796186796307431185869092428131354515515231833913365615580438396164083287792254004016056425099021416205867372667964345721249457511330668054274710973501129202965092618006945468570634791547102571469195688226781992131052828489302089545096568188512537580982397125040616744316133144140220619675050950838804824920900962916500543193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29406063366654725308575761475793823900235864328641020422877764889014116280089353042664802897453951464103396774566541501694971452389808148437601647890735066386881850250070484392941543020239852842355336096217111025193905575040984821785936704150898946872732358677916528621499976125853011377861111573592141633147626986094304003910070115863286425171913056171545328164185290346601812201648074925189693116463185234492992259886246713558291228000574406679541732228953816077057355330287636869722009666192648659540437628739339350799378027578738756243704131122564282290026563360075104880680866957605836958252333016470020707917961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "19729648936709997465918757474501725047101604848233326410171607980531252641009757563274990227669905819180199630917424870678884081729669603771572043876342472017345946078857531001891599841492572548690966062071951979344781003683114392137966610081677833128882915874523096022003519042919734346285487586702941141722110706032710942788193773036333494694652243117698632127625670691077472058990614195312032431919505056895816251223353238812545092317688806329769885739990033734812897952242058278986487576911598899733317385014116976120125240741658443812503036933320723585991014435570437834746786663668487220869740250587598816680331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "21913509175837282505908685833679767254255699693835031336709639687780812712781360386013700763147845989054214505096438391747519327708443422813059306001432600817186274827674265262259412671867961526232608111109398406204036756390553557117486126714822565927310600964464786002974087030869325201967514284247032708163165082414153193469112770964508436574548318086278183263686992482276094696157570689610757658949729174262714380436764961206005747113479488632289024794220701231003158227970274345050412138131418930999793044012004024136085904534135007655506363249092953069895091957793832632562503205820800583061260357514242809018173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "18124361443742784719710825955710442443837208553945022487884481521638683763354947159655762754116082222303517830053059372524917638252045096721716558066209748846646831946045590978981912368893681098157052350943885834965517876042788609160704611208956745490567616832467686482994065929308886422513513493291831638384142791808162973208539188605296827010213696062294502356347113864177512843018923651186095652361756321387243626964930207717263157471166094235208453739446798607288286677085269368002855062222226108601663690047310639594704479601840040159692226530717593864833807943868249205079368452897928250620859453091081738608941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "560392014358681385836505528111969926366288767044569908731871517041336651797614204945504481615098315496761681833709711037265879311225187196320745181042849594839921052120004994738652255258055537375972877680721809429469889373844819208982932571713045310032803775223645918557439030367984217583828766651615705249672394017257675809413139318007087590766680466866906378358462396025445424774777251698411194674990138167809578122973104779538127902065724894438365261081690491647840161420301949537789901635473458771137736846463827993315228974297165899882973101556467214714408535454677085190309264736470672575375074027683119742515164722243887236429711029127932821815582178182883888290083190730466286682995318159393417613781373309165336986493794301603499178717717500775201656010205776988538642369955003279355004097679938892906228384829338003944726307659837475302386443435263487918393571146112343432795769126811003623147372599784692434966873389911737032993622192492616168074411758529330566098411245091717442723349955142072170354734233733624075843299523608259435431318288333670921425917660197638375963758328449964104095873448597225745778317120752480254659260485362737216714807721573786347440698966511621425501119917531750525750233753488470953190184413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "548505730906892324118874787657929293711876290803985519959473966723624811819286015480987582176025665322057451887441986374662738623147571715547384650683289371055291614430721499433638496251190410282092132598050454055624017950555066798457271732187548938192260504507827594079514088027328734205035889911294246313023075702980786698636565202004811607904277364263960776226738127542753571415218658062470288833655070283374674599423951472202437758109830072041786285943589980472705559384305038564042901201609064886812440234296389399793508897857792706289494163446310194799641757005866789338773290266349539801428435331475777745761958514387048517789198053705690313104135218750600443019548746839719330817745129361714525333521171425971709339627441530733789369232438631133941763980581586633723829964418799349041729794302032313290927854924885144918847812447567398389834407700568856782194556731107651609891704065668508200691909415786729431395146920618237596937486745448989871050019861126884811792578907307657978651940416457160929187385083084114972732081487719506499430925013505076792247356981092600823120034827364301163542940915457531215228490327641802300629258262718112759132366447176927614922128724292155590714331563659155931760781033423906203555000111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27914435793436866885785316461039386638145625389815033971465692337444130415795039645228987150484835840741593718798550221978351284903337357994537005683381295532139176500310981185569257619533408510962486981809016703309386588819100720047753602679331989588098662030712908474442448121642285197978429027509705420917287862017755214478112573926243550781597670583953332835581834655117330477228807717765185033572575472404590900431367831142415264446301754464428224404774236736168010066345445525915260896502442484579942630443799866762230684930334846448449909009589823139457474510266505565405648756660926069857936054061287744058177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26219736166976872872786355524355230751983400790378098117456388484586855618820567020640323407253839263936568481070891126955204263985384314258637710227245573716143234127364073110941776872270363819325224630042281233855612383257956611288856355325168126088435859022539829198922512830636465570231643103717592775403619882391355163920919235127325514310592756292402976206952629302342971662248512184500632562521568507432342440776442865501740336966306467980660964476496442342539672392461941535358535596033846988554100298460377389779292108078830601642002377167746160527353364575295660508758492067886349191012956540593607576080453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21627551233144394081957091272397704733816070429964060530079759795876732765107316160960354408225632652927143270470209190596243027793000842014542213065195724521871978436600049520969615922575783909673791290459903120244087029660775485499517627538440589898366597260066722653069752626330237087365584975726479517471512274517418261808314506964190829593541049387497480854044360109417600939277819545583873267210489774873385198013289742057149757050910916475675582160134477099182153844020780855125039141665359263273467082856581580294984045225957127603195169281549570904088998240965046600352458226284354980996501732064021249744941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20023260185064525400757525177808304803594436326129946583937468098573991584214594569504626694884831109232110437449342525028512411019660977251442469986481619361741368225975612196294961721128340208941148102899412959052679214284545460476049833633948416120094132954279390714899259898192974509949360547831712904362937660085920506955072144529457429564354857937693884277033513285004239323291091724770733294918354670505429156951209592916118957348583847469126578158507757030815018775936339036041379164919859060701414436213368214583823633319085436016829111895693704799729112726146866405106428710838494248589004099375936853105049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25250000313621024907083553806760639758267171446341376980518369578202270786707797160818688279387310517904881153329675059249163793594953153838898172266376055741349826040722370102065723235370992841847627147765489883168505482956043087383565637684029868898915547768724766641263708389093037405469675652057661072023451719492546665111616146317937853402040066711104493397965632146790847551894042383695418776996990718621309371633838047135037068991106723324636702990389560769480474833567977436227084375046592282814148777830680306879632897114836395838418395611578515510921407249345379019179359613678180306946919578354252216134587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26885313274790593047269047066081944529163121966853037673132145273236255076710561837773091395657519869135470077149836283994553562218777626783183354252307881151232647989080306819500967018788053247611999263256686697216345884286879021829346848547573582925011518803517376368159624206610217337627930908269722643894162338686074744838253338024034651921367129039931402076552306548273707309161631839441902626332356479827681315867341576497353985319470608755274530486073605051872249543372197115799469668668776130100767847117907750402374963703458820993889691485375349254276068053585381263830945598174505361988021105400829253074333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "21277203583169108537108667017047296575111995200027542732215828210348766532670634774903528728119605000297599822498105071306474850745100273101361480125911434742126302092122928490214342652378970309017066629813758702726314558844289045393840469729038016511959391197343653915592987019962950303496251190423318038012864716578688134410351137272459773025260870721366142944757240383878769176286045342353390208356005363185052544953457969081426004178796575948549764007699613635402119956476907812989853765753176387273471516143582270939360432985223937424326409137493804784522512119145949725816193669222658028253316038355384915008549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "23452083162176943800553691820321888202188200737725677939806422649786133773886701765086333126523466859493128271101865587409873609691298582588475477384022132013564615585813674227547858676229640114169546204293259060556997411293612955030695612431651645425076257472406043930862692054300406509517834596012835873617566348661411286423147870191908115003722144935014370400170122754962804095209780521532055364933802115672128012271737950110648877681389083389864012137508251586014369474354998120302025628352734456710078107837774397534254941057291676268230599103297088532556452845813496474704222282287932413817266301512605295642003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "23064062608875073550161719734196155968523373790740254639594927836136441786603264693652212106969447393233642587685954945824347063354577914231387975790631118832380479003998245110483957202886069906748439370101044486964207542967826876959598304317982851048993103173950135302928964139551108550495470983324061264277026649501109545819155347628253725742424920899690812475071020464929435077430762947922806965028315787311625916307945377070290661314010678531196405018788118977355381222883354309450213211259352481245697541927219595081239731207476120032245349626236715630624236961836109991452758865254977766666100890170881507954959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "25648601770891083745166467843876508545975936079846309161101314455581588793765555138629101183034445442080110755009169697105086143392369291997162684808968019280689315291591033537221610394518342135413268105680784076006924311471164413261686560363075868434991273043439847218792442518650941711071385351976028378183535828506666054405817999351961433644010590055946637229582963431251125661343429189152730733359254565696836877419722731787452551956816789994495174324517474758953940702823298008987020775788455116275917128408569879876046219459134138007716683182808919420987058425844278558328041046913028594323127227069374571378347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "31207370728081628182485503911603159694074093006688272552478538992800344248353088534003649058311651578875151236454891003043942299483614049847167613446365505542745783427322393343857878834655778976478382542339751738427946742753648052493592843443268324477383600369863492070258549615862989077095620967989552715089693880464052296444139805456356149111958738626817882527307451410011209123247235221655810016890991670999160244995674587466767042471056610379398041914297924305658484908839847617203859935872014309164228010893517451253688046886230039098388835569459537415023431275001495548373894390886331486940198057560084035988389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "21661240409873716478285601870268257082570258282058803316997243426839115735379694848919146600763145582234807432931930892470008000756866446647451183543713457647267874916265337063364826423591222340239165312532512603549215644285008341893506548009215102615821450493643970160903827369655291223825929271401557234301043732366413514584169629950677392268468676406408727561727368623289162342581671573582908055936433981387452281166542964557573671781911292995597642515387106448991792918234013605644693157252520294116081940785699239663403355810085992692279359604369597699407896851928750806175433711504829308189580744574604705555317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "28018783514062259504123634273086902868722649866924912218509453566626332878762490142849756059752309686645727523066872481466675589152034971933376818741664300547457275057977844773725950068063239620201616238720138188695543954919658249555714537772552261075487737886406200806933793405683665135442255324242961884432497699845892321668135124292098092323433849599513551728235688391221189278044273670688608712112524143427002893771792673738116878320965435866856053369920120170411673586684290059983207196121253560224664671710966168900916820947965531859375236061077643029773052753919984681425098882575223952279658313223440678709457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "25534244290147824305612838842139975020378243252692395438574062998774127611447956338564844315665509496011070192087232675966467964261034766284861285426376855662293875176525642728061889905155002067839151948670131577743629839568278954275031515300858521089342223067281798529119069819698402885385208222316909268585944277844750932611160354628850703166554364926679476813358223342547070145853366291482759685687439373189745297085005244651189044787339833108627375585725676868688281883749777059918999890048981572023731443801864485128228755033049110330425662944945014912452074004656888405597671844296174212451853654840272579589153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "26049561233435889001065204755094803625829484626399453169292628744330872783558900853487940406113851531178730675528791930568039773325829671923690087393280645348110677826026229183956230762397460456951926202036175129557125741354534627714726879782827832338381708004117464100379740393326391812969072882009338227157271343869031981293518584345373980197916381949900705756632500884145271017939560372138366582398711480408395670400452383987691374485528988559124563417213357469090491535810541467669171998303017689011779572724219270480145124293233204581478456277445188945006993409576045129246035602395566266666282278190327617107103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "29806160477734634078251135854462337251369682645104616243826316749606152616307958677404196924048629794712229418338418059414255120830594467056376581950345268735390324022540027589337706758687736228750009374228388974455359293951331290027787708409527758332248400793459759708427175604923575776904273585767058866173280383763616291448409355104344144010161972049491466751100501928874067206826000098355831833341402204137064311498125866151296903670043387925363029001319710842224637084196508016927415155401336458239611525301517421528991090879299842713831067078043215051790488944965291800532466560507066818061673611053229213201529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "26111753178933874335108635985341858826834936372644220767847361124440606321344459695697207081528660902156164152184778659325288768335868844885627971227510130420373049278066090968987915527160698314385993645959751882839926137246509550653422294629640823290261431317974893932638567199679797460333191873310721735999612487639939257580247992336653331143536366783214880334691087416928560854918479209308470413150027343680551643879922400099748269029670218746525062041792743963510944399666391102314991492190601937546004705023807693487010206901146451355568382234486307031592502979133617311557619702845798267614137949546885973551353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "20630180643799457871438625046124339677082574288853691982631020242323381849307394878600908833220088651282904960062731742784745709002471389709424107066905601672180643430891368358202442572093762668428049650341150803163699228361416948828848097942227567202832281706689470079658209861639783793854656610977385563667049826233901945665871905673441947271753613316990082324761101089111174159505476006102352026800347389848399947037520703700090676016529850262761599673890525019245594467860806612914229158730840700348476193244892029220329046816275293012157176388886910143841656537652261031418963705466291448253037029823115559792473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "28951476761433180569873086807597640473195636689386598033749367741747801015142391859393674091302932609260088661021967423324668037713781485822702952227002502901217966403995034720810297463176617631874019484650617209581022366371935902955814622442954774817374798875964900852709768890157868706695787543377987813796367377893545123204602956786688423585062231618606170129182551682411972118968679671200250942605518484907003670793389375834454473905943816374049059705157308133551608700027458607712466155169820949441145257882839478286910925072998604835221650506786678032996439217390037715098205736496471529925119643585048766017103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "23809713896846510977404686068689973571235074584791325935925414049143144872457270959140534611524079585055142482727785320504482909322626002261429181344638800209510171884732544722990827768934127752465794961773968066266733425023877271538887428722423970349914482915550223139495087624098300109874930779917204036767569952650607176462968693245808258532434674441557687583236776267549738174406121024117840205680044913765441107726550650681345630815553307113102532870745783121693511891174947519048425280953499189590388550331059039127299901384124748221486496415260418515279088925209058405681511090342012840119476270952481421596027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "27935992813764988860909583507622456070895572707283915263120298107119129329008907633311230469882152667845095276020801110984544283663565216561152681816111459738990733956608251821035506072560608861056222193411174764901474459166090721760322458537447885794150740654808139015602087400515193633612587928528676978657965724245956444301047193575505892567174883018074246619261299377189066490237777350997359910955701036413342758317897199276973781090366683979123647028390350938921193185609038973677333500729464804001631412394217533439650140564885380954336464078449043356279868688763498665546142890627695635050191351590214796962209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "25460758564164222801782011622261078694956613638907907456362438798092850188476816075108586162772520309767289048695857464589833159728180941192992448506203052382231006539784478888610090317374517934239743097533059231810534325721728033948216001260570630371298431104104065924180678231615439535645718357255188980019428227742082606199661814942600203500959060342958737787404140400036272974552498617922892794556798902651254309776767469447617336143365521373594016291026053749500242602597764177294704110597127371798192423227527143136583972998411588844674483560006495672453766211071147932734111729813488304281082102363891457413423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "28941656902817219083573260276927038959153604216430553154623335344026518910430901449180996945472467467564157818934496822027093733476399937239173068346514871078202819948612534124684294705434005965530390355068184723826704719734943128913279857345172861919209587449659850990985215672471527045265858364483173270464307855127236224964681390542307861524885330115276704890895330979413412720124566160636166519518989339196372308241750760752969307422393884039186803498938644510830437918994111263392098822030217925909902042325927798720133632912663691574858991223312690420023176919043480557480814983720345236719052753062363018110333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "18958624719223481026972467867579014950034231473693700910120064575230618019677563287468835514777193871597855927196457479439737788223850477995929683150207396338697844589512230053025587616446497398874267213345533834074669507651883404988570712927546942505699229962961876395410218015324479795361382957540208656215469535609277027584342557893850076004815335369800502225070203357327759815815883837662699030559873488547640395696974169411806069307772046019130480773590125464892267596704858637657636776201347962801476988686746256538555245408861559556332733595732331393589176726069530816816442298706128582034381943222273187431847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "26794372518248578826443075671577566637046724276757483325953249906565072806425954020609597918839215553813482215084190832076926831107306857057584591417259332951681408028712607568758252392863979034027674954414701045827270773651126185325195296990823321667833573764640363350248246024636444302896452608087841254611530452262198737827511355958444809131390535036874405243325992454627655920314549540014349097664601166583587033803307677739144993688148485019832326715156861798447085013190548399054241140462152051840665031160513782206988842955480762570450272021734096847236877447968542032016724288291450845980839299098491250571201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "23583366632420412763979996497983103852509192245936178579045421298478353199316596585098598239748063862526275911155370117163464179922139989576068941075067112947829838204451414592089946489490708729532633415437141772172044979930164490750770120041332044331897220888787839629005235967661376906967424722202914311921090095534209499859949176706267671925941111229168326854210543767019880142588585648071701991643120953669297408834688203056918528261609043398043408756871167576821756211210689222553930512612874101914312088377662665669292738465581837956447715363680470392104414073406063604350107243436224516877145996163935345477297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "30175386521813193626011775155933079622869079698177938958037709093442851885126587707678917245468051750197995036447838355083822990458869316001034394762094937530548561326625096461450631330165169099915188089598756097630783630799629726276655207539657698101640333792017939249844525821829228335818544688905194408079996894682397268792092748549648750076793949200442744843977593344537770162479181464020162148841158123102313975245746943740974266069888048694184196892869441579887740966458830994483299166401005368776264210679631560102945195622297408221927750267228351330404096087600758707036431288361796673641926665524194292357527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "29066542837624204505578263247538876267766009149723514497002293835171542280730632406171102144119224710625486004137946339454420591296317284295783531012221848116864538412307236753548820465648739027127820567207244064818628362168705531748194256255202621619427458938095983455334333641086206184220990696901035404218396867564886010976038854590728135672327020860259234318714563608525223406072901964452677109347525190060878667730233030345220846514180267945746642405274092055941430763732775446784736797461039935308332249269778603945136867866869047511716430624166106013777830452708657751279364176235672834055292942938660531395711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "22842148080332204418245538493636199681655022197546382036549798846783140155103281516505710518617534834442014249208261623538099080118834365796405540976928245713743625942808818398691898155730347204985502965765764966564268225985714213768631757132975359504221809091345182097053773021769863428238037121703614946050163160458000253757085504198590223757605576476843343016487605694931650075532055551126818690917766380048021794468077513504303852308764789271297071078828400975711250571837062883429250973257516779768120974491908506997213502861062305254080840634204199511544693382124215599988684858602880187154283918313762616519243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "17762180237346418860240560114868797978512064272043508520551097837436437368563123479417289757635649047526040029936288860147891294133568066115317892548331972907594801865533288827349623501295581201749883712219949163866424253322222983018736939958545128222318377451420341140461253098079230138861808192486671206994279783548843583310867085147395242166911291757187837835840058184499708208572219993541357326345102883658286460091967878493762733924918380951395691133677668167008688656072114680051951818782181923168519653269520969906693276591359814225645693052178652305222939151245920916836931265918770238349892366946471406205759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "25068699868577707193550279950480354763279412288515092750472304297695118824764880652011995030282414004953218708464412526902066744996385136083211584832822643855878257251881245657149750749934059608971492063145697723518546408873970421255757986130086996969734556404947283037221295120136818449043215210562339857699581143311602094202034350144251367236049009651203086669334272931639350160158493805326751738358928301903828138679272402200761780751307357704248924077002447235693973316659286057610556531126534639010474062488762612069485862113119747713447766487099730352947912619959486297665794359264412977701310680722629965326429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "28293051287555694937793156845855889538231712179543110990671955740863830168295694748652317793281378151748847847565012787428403111623406180913955702481023648916764086538870310900138649682033568791130404075198633507429640322609462719453156005952587717232421675538507011303157215903637114388480638893798594568655261239002645139712600620251036078324318582997245012643330027082262501733246939693823534321517080290893571581240503231846595707185065759168577337716697698819214807209544150758153596588848886061455145488601347043493618169035262740872296253599743114478666396270763881120745340889948633730490902239019952166656027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "20735497067543713396872377096418801908742226934185225240202439722482425460066971125722247051014467044931717342805747257410499800937246543606175981044526039630738918420489551171320615982259953237381421525494876053475341547397490947830987039101316144627962248648455073458533934748038629740705122650671253246136201038241658474324589201464651289424368119689776412778966846883032766979627604410957273519878950038406696443431576535600184005411636128651579355181935198499262118254526802118398131331581465409048364844456371069108824041766186622218917847718841362045012076095206610019070471013907658176603044333203523117692801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "25304780298873755070556496224427022523353574456215640835315039178138575467268427022075691042612122219157581177174672098069962822620501108839915952053157521090918117441187959737776951361394961213974748557733451645496331910826834649539827428057207049137812058018518753603190773107361526910215498217073840222623755231418864613801548785657229945896349477335723363497761338931052548211653525700709741096677791447662717652310352592397257341379732153519410231234513097462743843937843781324245623036428074604268231768064173384712016174281896104813674591548911689745404899955501857914087777161629233601504429301221889292270103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "20476338747840848810799706163942838441637613804107840655733245116452490127560019988135328058668823190287840499966889905511928412412720274595271359151987290716865076111368070235838237220736762730864331288562235547048000524477974684581238251951745390136354648424318066405346358947643463949832848891735623126760467397269960999410028895075596709480779955665294761926655671167101820424048190597929120284638297585514105656781070970916491020166305527445840437447817250871265348316717800756200177087496909979280173986705525036685536887051713171800013582370006794864763182292661878921014333653021392871274939034594010047213547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "29273377635579673249437373069682994307817302295924693526848887944501806722337581927012419349134187657172101667866322776844686660604522390875875029015969222232340758169843534827723004185265255625868641153070185933306473608017110052031887917648950792150449902710588796841650928394281465170211565763612325335426816925352851732641001760966489980916343117483632853642590956438143974085887767901829120936730210855085587368987788212634520004804612567929688095989274167450229735407616512347861068020802860699617231514548681750213134990455586410256426061143373752402380750424560119540904041396232457063109843127873715074898681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "24647013540048142938980214313483118883213980508095455281283318472629134434888048133827291623783591218692059229698611348618169542040455611274693462799529018880283097901410480407985300955589837270917161619784137746318262219878295147002330884672090269068632801670218110898309265401686375703571858904480353612925114814284187515741747740420987459977152953439259483543922033596627158072123697373511005314664342397359185949022015037040525032574386075398628288123458898487346228240746144836436055156233541187131519989969290546901122325060139834084617885522127719945891587837464271845120153923912458571712158489678947965920359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "27765026470236420280473361704426241648775894300095116126082000916815458889596234088025245712138682813672072453748054466052517269909371249847805198598166672585240245854617291362359706910668496709640472177722037227830131852897203398618754360900952065308179448775453114672781653804905475026008544554229419073844571675294283164435018236414688103332579394476477814110685205482213752799054973243063959885134171339446360363757050215188130098762894483979089278831978100159524176011790978317697731184614575305072704667766599829028316532361943271746747633957818399147954946040611529694115974589161223372502286392432290384949273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "22455497026104544356623592669143097589693620700547094433029164821811055211939307908047822401273137978227113160721680706486679792109168412645387861711082895060184053672772840870200838872562887326127100154831349874012158285688655735377635575033294135675838656957774056087627560379221343457422723582890770494178104714075692120625483114134176089384641284099143834831903515546742521349785920611172013706028006407223983732303271377677682434261118313758388380961888187494900761424660652438597084583197613624146820249827203020490146510302520796470856324322235422160287365043241117282758428549429761698588345533372168144525029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "23827414953683449125512809934661440379262844845425701136735168713249267545505601090154401046517952610697714080383741864455537699685999435157437657497600500520927159545503748458870861475681253898213229298141822351781267133193920971638702279766751126765531240372500795488776382634690231206201442451646725948637058426229588111772353863700094191052100115060014821958960590819183921935815643974017952401561436370067911930559270187700968812541909715268369213717151723153979632969444349319969761283092358805157905648280640308802695103877251364210571568918273204933960750133500402337496458936359025588172222550953352745727289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "22643338847182606534113081344837013369712323894334773837490806887217826887014862089331921429991782075068894348218204976002952585528367688754347986174767217357663663822737340078768018951769218265233150450861521767247944345803481651064442528740509823658232250720464376260581437853746969688765982595794825139413400081192986872696055709696848888409109814305561194176839115572295768675535448736496926294481104839287408027216971419582775167383463062888475485816463726835402803909487900196922812919288074147572331998140424283842478563248180785996318397051281602195008645676967431414062370393107815339577685022326333155601259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, L = REYKJAVIK, O = Thjodskra Islands, OU = Kt. 6503760649, OU = Country Signing CA, OU = Vottunarstefna http://www.vegabref.is/skilriki, CN = Ferdaskilriki - Island - G2", + "modulus": "28397513497703383259675871321141404167589595178957174497954430464582338130191320128380098800857929789855074507236635380093662893775195454921008927720203187321589016953447915045916722769729612719132493819935824894391931637938084777227855674787834566492347326343204740225500327038174154727459344605398830039861604610432738875457955669750141950226159364280850181155954268708280492798911767799366872135527591846570263436494774811154791877014185156690787706670936366782286235476285482500143559338859667902855161337338748353202412901505171019384919497234017860482991166051057666883976947382542505140459737967417774936162929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "21776773067103811499962600253939775831013152287738285968956495741543278152731657757095384721082958180872334874064853274237807757136408592709754823061491453989669013572569477791264901033561082973136110922378337235947623448835959087451144313710614725543687396503416465514361480493707441021298119071676195073337150784265621518968173286355607164225245614726761542853141091158893704335431579609779617055304641318833613678121600274642895093171936557812398007669685367176205586465403179952979038101788030932433642359598348590553843827126731117498461317566083884423805642465268834382786345810905027553487745273422485322141317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19570669677511444615083530068562976402033143442351760120361861243715597764022963265901398862354170530649050034754415512520752278166137084437905831051879441075077587898085959304400673459516642124294050269068716713964110688659027257998026597936227248090823848109329920191524949598324780417424322207988878754938374019814426810243784742183314391252161151279445703853282116157703709195899259806139256482054628046708153330105328486177593396509486946882535159768874176738339299272053379176470288745772771338709458494387124739225846136553243740741177308640347277199288170883346952189523271248736852792194262448470733967026571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26784887442239990771845964168504849735503650521924112631303914449429303709196675860988617530752376405926610975647150483576977047726248773569151316259484698979152705558144928922922238314587338671195117892584607962190514927982919996844902896383578893819222197111815179092000461232175852586769119559106905345474434403595980502912261137997739758023717796185834409488715887749439544142321462112178232454751557285972709188917228633968796862967807633831178635478983988941461935230363948471302890822760209774237901301499165205915918111666282749598081413171637250442148751794829244815151985125747150553927172479126699603899367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25528737400679893797379700615269429125663854859711143930167354854423436355361250967605580981733061235697237104659685032743287624000868920255434545431079556841385189453901219267041712945270186630034001949421631712532937630563167382681553593470425306086947096682062288461062339825772650182672499993424802807714307549459665620497446065824626211874652596654602846502919083776181527881047827442182323672713374115170502372144078869079434253851936651307049436440555321952697888890339933146776551465111103351834501212678445258434553558590439342270248829538604503297765363764907005693900144424006695147161814155979438159673211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20621095047580337012551752513177113492397110929285158106556593828256907994642429704361768101182097087813506395266940289055039938480419731417471755020588838592566461524771120534644172008501459706096329750920473340502091891055361415554927780148987636264382962734484410311094493844708589113106867843266886094234394813686533620291813630670065690004479409817054077545423098684666138701973434195435492534586990640974527026095043640707238665650037223220347622428722541710141478396808144095606147905254041476852733161369540866404503778028957784031467627109715361900659142698564930257449009807450501407699185915607428074686607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26443905582174122638729107100070456897522773375597776733878691840978979492787619603161828207565633057934732248114296344033501191151951494389550279661627208772556324707401280367200838503156496171491908099019357570763197023257516570740115618858772532427424027437591451818384661357009112893686312657479637724861095948888447361850968817359686152591095496081152623636176126016630682529164110377006771745515193749690041815523191452930789990525530871285747828561448025157228084928293606036810338558723103460742433327862948515918426198787211701806965691767332952696121509094769136455173394950244535053576219995411868895563731", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23304462368884774358523246524877410681427238914667347776284712240198976672636471637549092857601014471186008300245933741091788020046789636128276382292313079883790654964555091345049364702095506157905923323177195374176939592594353103265983393436589220311701203195342667599415264738302518974181843066656331713588089325762620128611956820725863963624987074543333405356118386230664039252692615058113981350860013137155391745554830293100102655935429294354013572165785803237516941609777946875084442419313486355731618238203565867031599592014685470058992599083831982281725404427295076496270407558937726361337084318473918005224489", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26922635326856382832670070763004438268949334473742721116684625428108717877855196362670966349687043040354987734180371411678993017809075146732107374070922954140719478105216378935688480775165046536033109567987354311050668034657835279073706519519542730144950578294644267567289234198472656807139880369080097157253080225266117895131455209428439057872230915292337029619003101701597762374649993501262473500923875818132992373529654286293203328284256019828131185385388837274027362579429363144961008787204236516824386974272339289408106166933771989240427270287810538085726521251650678370384506049870441122885269055607826182324011", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24742170712756949589979006262193855927659974477124848968642111491267654933106897956772898743010176346024896054626697062795788660135353581755776304451511021695420365587325762277490885876388340497167714944695559587636555503236714955802655118461561580351177259340930572722863933257271305273049996585313563780790206354316020929105592844249793327159923922863037850544284078022055264646641492224267445640762721133494863963587409494331630896938243395111516629021525679396365159888066005583224834629338277748009034837389828469970448842037024226371824944255457216394847745059970869456160536307964458238654076483849472587816879", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25357484472016090429893441456868476113546638997185915203325588166487667667163936539964345628937542823746414813825295054998902208191032697520262734865097392023449500992500881042129446394470643223076053447716178256842206980890087982399150826315265464967771081461834149283092855477532728872940267867103890835642930796275829115620137473877383535652552721428128460955807532587619744901723893922331421666799619923620868535305062592317544285202432621729821074977647657297185058823030569678158241784785647601830967580528149033557559740764433441662682331577548137579386626490104612788783376622247009729333859866092003529639209", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20796053359159976591851561498917464760908092396379439885803790378942189984720868424116456551403654536457877065414246388002769210408539795973411793970681083249037694203062808612023339986144118824000324528649895769403823017473872279920867350054314071426191923694583980791339359743820062683032065113196182476761334129445829171165027747792369283362198458213000350404806582754518267736292228414385907793531586630033553711763943887342027278196569816559533036866637292012678613020735908719510419090840462337388812809708755140168365128110944202518653624311263439827922372607820431386690974079125145120708778231811689597157091", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28334443434249498629121211190800358367808383179184572754571864785186844284496822634371955251127301667154803159426381226334890218221742481970632534949374485510239558696653270440507413800954721306101909962148797597309899351477636432659559202458702722732163745511574019202283750359873566591635294240377431652047176823853246938645771707839785563464269089103896511986803317424119242461735405862602914386380804128147764286621898894258246368463367176728054372521863774952065487076714483983510685975679283265131473990408873375430915914251478017191246428988270495746809219826200994674328905383861329962851963653292256150097221", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25986653800734905839307659300673793191159068207314660201632443543628250046634787164177149819137647909317482936327086820927489406867531910662509098833793449687910612697444402765390641560229273700004945278530986920793746912582810043188277076032637037815111860918686049629611746445220608190215568044689221236897173590323754585957744330429482594458658931318816165821951464106587057099518509869787487579105164931400367323867723742701508190211928280201756296693298615774642945701437817271322870998113915223259679259927105188558497753178699487393218746565205006885679596874838490417895416547414311818195794903158737630621263", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22621553668003407641158255598167666186369917487174314747680492413106876063794908796249069891831452271636381512898436595172962239828930303624415940924574590640522107280150940444821255345932267268370907324541147929904123914848509902937356033627321222312670019690462332562075973119087592706756778723692013512852197312283462106942990576452540559907933577708961752664188239162004803161108410287271868408843064848570061320911047843352980849560335030525178949994314753534239384600177338556193413408842432999382110131975216141365514858424904506833576702030716015345970085572380535984168113404668473639811247873770030500134389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22537599147618218897395114326978445144683107008509367156922549227498980942289759010713351659412556355863600230328816265416113103821655306342663567051133401661226984803596404496621388966833798047606271333315194685150152981583524011392749263752272113199408900754732380352938638312113204271772362313950135256709571292951530599971234352008198891708606371824545857330342179876795558720494334359683231804036460104730622859162335485392171636282485723591607511038381214337593977945569923326524723251288267578138401362511260165964999695606405764532803396458942705135528995874789532438501319436082943400666502319730777066389963", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26974374117300274737721261241767787413700633826091507832332048182991355283657097386521539549425179939551703407530697882299797083427639372136463703269808686210236912854434781792881223504591745393190475012767280120662757252022385231282059712448027283360626372909263438117110557814125858081618437392572247496143645377959562945023271112470442599243539659134202779308828727312741703460851908232399690249117323572899881048977614641999185375176143536239124215744160471170648843525864186771177768130470942238681721125373264490241871068316417768135750710550764815758937363237862508256155821645616554093806294435530619201857707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22872202326870649885063909036728868395546927546316628019462588599098890786226334046716633672327005910190840781567283346894906403402040290789331676772727547601011907428937450932821109375353791097410654590656096323967079394617218216635119666980486079151703330000270638718431468037231737132605064766637994967637332516835952882721629211984121865242036843471970197591129011850151861294614199581412513802995377274573737165109853376241959059675192612471571513759643701384583006701295373944378729188669733203622719651744630629857919755493327595376828642636201818057819490443907846522120585589663256001169094325556317291817323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24387684870782714165441848369654468123474821903862744768082764846783850718969221257645328996467066109912951743387158096820268152248198673206115230954645825682491718743961610663453171304117506479926912893401351718086885553186986964645687869546975224042295280527898185004385464653165368567470226304580233432565615309603332166299032515934822710213927605798129941995133783668520954359767101115571393214790428566471880024293657713102588262180238671363169580094364671730714556233083046150339602917809825065609610357578268717153966515329059825340020687503425094500827596103462764161450529567991607328751516973928974615770817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21637152525318513088204212487685386790347483739652446702110065464478550920484067285907320508021297550082092627888316739668639112183966007984071054656149382891583606179194978044812084954102504907316040152103986720157082372719123807832881208668350308261952785288916967413018203851567483225772902901745851770369068702032227500997081614132321302767076108407264301318820109229411246836839872482307932163253413751230921239026707877204439802316087557092607648918956150147325355317488819252633558484004192818232639071719397065505246855561375770823265257106398148898486187075437425943795695593290747216677457038754734161160009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28779206692138000380318060588483517694846288916200429305454792877990168784959825435862375451684011205672290025899160259812211370747868134638210406358288443773494572380498506232643737945210887032314949951669452148019277065773120968148433950321592843377421689620613109442519178143689966592408591840589695074276765003878537908333593284483210860083374290255779620751296858305177949173324503784051150220168309891370917290460230886694491360199065689182879791309775388029685488823753637622770086357014065503482414965355093867723732819239529184927279658873731699743966838439717269123641764300351857344095346588727908753196031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25848322368227675081991531306279298010933735872959942083012657774491532427205430763915702305665228147711933656360770235675340672486315017390263448646668447449660559384757087679556808087449066728569097789988180174485842372272208726878586668470485718809253566052012980330934982848242673333983316997342833428994035620241695438100396962759075982192273193643836529496021570045209674983200055756044073897360837086672679895792005349409139164581106461570709063210800213351294004169924174176670170805114807556281665231073437395664116800686293209844848959694998391780372852532588325515789430046745614483944277640569113306472321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23019637155313871766758406863020160786435203681782089996859642995966564316815686447462802861104857197912515555913833418963462581736797348556711031627923520007730190422978839545648954081381083995777401429752459958808313934819399701745367228771633006958269146033633366172212813445311948286324872491399298533172000074117399610762779716336855381461701924905233141880779811543097372392148089577542549276461217045475763491388552791068010722180965118450277351138215050397628004470650595508181171128159477126834916845328642291158150661690731336221445039540005267976671636680242358493970426967851554862480243781424280483122971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28072060137013835863300604365259062431743952751331524266305446487586064678738443788057110154462675765529642906594813874683709357203859513892712332937551881910221452563323169400581430731079243200013731757601527464769985639466804270326757220133367616070142011146525589540927147498526690416672220212125303411683206816618146397018653356847754342849750283762009513651787128609647813234448248076422353603648476222215790100261634759833362594883011539262990027498819972962462698901642887741110822931431402841068898902481865180410999650942752422570046500898528690121444639629881308458979939177135435441469802196170604299646113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27370442385472725003134656812010643033909801672350514018228314038683167182627733649141881753701959268625100773960074822806491715661806266142656819216394100522160221149837530345334442633643115885605216231057549517169870278633066973608267224186530599881715895869332881183626713254059110220927469958529530206758897169093214521045809060909825513233829904456513989372175096634668442613338111900678450264926349157257006495070069687691309702955744687069418202908835364946095900914360146744366974898591895995909641447541416903929478357295702885280466756312603026530075233346991731546759753940661453056845237103570247076152501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27499559079038018416405361884088638757600718588311170519396989317673877584706165682006384575377189033241749520561949899410372674900885007042094828822273924309251047114340292763482131239233425858547997799245225507583821326368251480048393381842007249400682410031453734801145837275329617427970290127233517685579510790019979755543430906506524242908601330648831148357495595486747233765935907789325384452451149280016509907360768502004497612536563537493949822456736031911650589736147456812132200034906046856849039290352324897220706223499619701816109626134076017037799122358965175299434971820174605642508526859782087460513357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22866880226438922627069946995455248245077591926702781606363239830920990115405226456847291129751697938736648635820065924830852553861773229372873689317501592451556882865888034126970876607512349325763739088004341688168430206727912805863984237133602965748149632978372707120749540222246766281809339981001638359043288597335664736852614116511729492979608334790813509544448984156901807161841984008343882524892983933288439456191645695273505837479935680225410038827070071432539327038355378359264542096417731998349214127341753838710162304695480759888987648007720828092207168475837904722936387609741878117298656193586092000482541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22636001480321003461875503499918674320438697477038786080175459316673812373167805355168566028867977141380329431913251175934244389979810187046832466806750231209334336679001464762386631146367602908937122353313257058624571972700105511028440456164764144943855602236096625008912313075083476451876500695375653027540526718630773544750121999500825458506374437809592318074876411949446693432398114581453012641987409644166862806764810027613346496717268545315930484206304539403315629376410719883681936337434222718185820100335950408064072004592990475034860781249467843956707346460968662954526655076525748056799973267217563173852179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20718903916695155654662542271434708574346643235813654101365851053927224908950804738988582104595250223805849001975948800607214206723774420543953476666975841491352774526111184582070157513170550607752271782337168397862616230415990023018976497247268053871173331283300941391373452495325492196067286913443996979750481102912399955202047818007185156044941315938414470178315417368325112073865050447710698840088808371445316990998607055273229936269826395726410300811630075484551230657338584356361011008241136976303182480164367072603450202937357798516834210985771310365692421434090659902870960973616762436282710293212893846331427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20534514533665636556220241767970395248761228425142521922923486646401985075536979695812575833038480858449076892093242676959824877453670432005538244876641507934449330975896237821508708882836653433293975529873645794159557515521468284621484160501873143486455673480070903372899956049324883862989088898924127952949316404252945411067399055270001526761922187071050094388103944889107811085096271279002278872618753748033884383885535667258147067457360277737234040329873023874252476191472012476004521773232742468925382351466260719030125067906497908051373604444348948760163950663950493264882356906298825878384469514724633270392243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25099051774146611620840158789148729194189551677685624220454552551465479428921053904064060334283014748214041627452742609665341621217077934713002969649525771179163374936505995079709996208283484199925426301419528889152674509408013239249612778638276394477117336078269333499979701368539290644258332157269243774981230703413058199637844574907302604262712676510257550262211179218329017593515843212023091666071463964721426823997821043968306115554905652588916767325593998506308343628005256653134704420131312120162685166727967893114623956669546572182881045525519535030167657188366223261716325571016242743946321255114300879398867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29525090160598795710217941732009741995915779482016506218599658119086027089069689803615284143238079331400581936442182717126685048219172872225220973080136121536774010631195216750456948703421166601454354121637840029662648628096378220412029152415192027644816988489413007293778326942630372316564867713794710083354170564309375913143025492683481106403186816292963693917524953370141120029457292286879345625358571310196214376218163811692485685533313425714531421085643527037500618222802913792750969321943380477055848123259223229945393179770104004275563338078586824113782986171058689893206700409506418362363443652255502709015109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21903076800474332231097309423812045284442656865853457337790304290548362127828686934137520210855802491141330267538045688380275143143967156509322100458537753209910539298797972611187272900498701812503186835446309012617494843455001385256848507607233650177465062629738844880690531573150571317169538817631228097302149341142768823230673379456673669464457675318425520052505748436313247543560503137321491394289329777537442701935209729666679780061554592127342956053364230626999689534796506846713240857589518990980836265073918311127836889817536258900274196126291583179524026793953561299845017934192119177217397127208261417471801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24362632163960930906328350045911932194083774877569682054385787069393744586113446179109279014492172461451304317788593206742245689582664237272103162158690215832477626369209612616606301621069599369522226825418461822562372955671865934854432071602908322921746992073603429564533830228056963703366774120345930659511544940928026097425274925526409482810908694768532842847847936100894673142362165640518122340673376214007086952803330919684145269176101116272625864362474186937558896456451182232594452041756621093100652953673567269900141268179352517929572816170178625359710342753311890696493787007792420613349962894932030202338747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "21476405356799368547893292768417163955294439222816528194806276625056594017142274264583998248691964133870422226662802201998789154777733050031055172653942128110422570047201290686337693095833897223248652455708551237269162859193584193532905641489693926117375455571158089301116169620747770905187814076645736639467164384898228355712247736564531684575101428990087682748365587361881841381831123802182670449470190116045733630746124534449022082625674231901137612229802371016514047240686832450239074977170297167058981687536547974662304700060302678060213893084820665350659400313165433167455879261499268326797353524443137059425773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "29873234605100626299974695256413373295554612942519359999958469126988463037341682397519372121943100936357380624587182088474487094148520999196575370467612533471014698785196823243888097497320116411249842571198096107009562477450602448963338816255452291832815987526978396386871952605496274232854055839565006508210486719087388385354768773748517205640478257071435036585530925048433889060368150337777816379152239925392608101685808564082027710133614612983889516924231637710023939786347345169110355998452253713520849174447713134520543454179743811550380048345318390038060164037271599027771331439764667361977568768874361377607891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23901531935428916879967200313860573", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23340547051459224136862509311648580385797790671149311029546278364770715152121479079710415523110020334870716846757105796478294410078822314584835109769892068888871889089886358829351187952518623557315100038341443745556213252641082725390370117418772482183942209868661998828129797149666420217880266621297160081567817794561561504681510461394232867909107298831199746175622587279504985196444244430218195982643239326750357058364781101098045948538297284709111145222985608448461970182661149022192528732929142491503534420629886378709437484755163749928871594455931746463765860316307716862289220333559343799277782629986173884175907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25414009186427982004931280272253242249460390742403637070627319172406473721587777323015591086828576008221280674882633260064568712100861016347885531473462369241348636663414658179454897153735162927814944216316034166208747846819675460882471182029357626644482817956644684039802745087551759778540753906522507918102398212331380499603946494702704109530042805995571621235868783217231928177556061810220229132452368432647957501166302738589641770330869286404421126475431396157220483268439380643002398995476356010846593751225548713982588066454962562358173829519623794808962590206833524789925424415417208741173164401749755099567289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22247759873259492292957987998005749147979148080191708223791459896269651589277363988134868084730390984329997833633537200455338999045991954733501640757825893910050665639732369248271646573879573006320249091624554126713898458451575597486013449371357763224905788401739286217569858090074567369896110374007977933254063637242811360993578972016992028702643878460425622209258467734769783394315413987824054653298809210917713674940707716394047838346461393760367800339637428059298959885074516300262491807585813322432988980998955270122135974754031599331770663219179256572131028026708143803226674668378305900120864236627310499514099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26927214950680627673752765286534507799751004778843332436118417937343388313480160438047528726421946360953449864184176607837397775980659137789304171350888143593636874298347627454895702834741529044499936390283046316722555982950855127638739789665047631671233320721692695886677751455675126804947702450096534881941266732741567991523775608924251762036874377953051820399761852101732070628301940197035814400583391640328262196942091852111336263861958384963313348553832512203862240242878301059072407879664494233756488391149883306271655091659964993114292831100906682065028040557329590403943671350834109138343087436508611007035817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20933908963860971490944814180235647", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30453005942079664753400930802057761545197376205321227217740045157672464320008222096853793946791712679697602622441547529874143259705319469850646811409123616777213320873608775534511236842991046734266108731907806350212860937454320295920592855782981390369802200415676611674205186383699594108889903606744539589857581857730082877609061339271301843066075121063924811282674401939604015596530202880273464796485625974861495165778870106211559584405505232796846055257244091726953709752079926395035529890726535112164329874309496374326615918937556812608689178015151417730201370517699500153262421958457757997773453796223443744589693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23457602652381181611938942396089457269290178780016093961094305729754891325906180159017343811519027039104169274545277615401161191309432721828415389286869700587166101456346709909031248360195203402432948445801670146295270691382351032705147078261647489563422960675355302509238642695473495692062203284459232900254113667516242178284149759101992760867310050254787407561771264422759141181912562508110424918648093772243119680738372298575062488700230314982476279800793514495393253107838846919313062697077259600339986194956196215438612311249134230918260845858881999221244310665383288346942802677644001355751793972537861041169813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28634200138192394203904556374077953293833907741988477451178876467102054219982572904196278674309844315922839919718091196044094650206674104244374609751225442897682503019883224306566384404178321014973827546425901791891467911383650175390484940070876381492076544912269939086129707773692424680645008770508385737715688712232986795568386154631641031827189785575917075547490217302557803480852013343163849727778424757878812008191900523668189324374911003771322999690850989255569302482299434393710388577290449515738798870915478064380013962449085391017622915716672584501230301114101467030610573493632480267097403789064880737313907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24105250550371400137056703859125189164989567560219694809078089461141292438361202368466395880586586023868173076399565112355484976869647745289412256014905553339117504239601875834855947463117181750458093023788533434713073201590662642303180661890542351165046102995761643367657444886007700276665118367646608894108164878428462660781705442736214623239542539127780800327998476124560650664926408614887761353796610288450800425216593009706064184736155688248342420972010099468863135322371350597907793046025885442584320310158528819485583506227078973666864717537036177320870563444519936709195483267791847989466820213452720468450983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "27304404078909684456756686947238006189365428758503088348429290677592449312475117403977484497996011059800521370773590404047569387155989819905580368907236127093862431223745920330624978689551560077758116128670669432554625771470344730104078256146213842168786888609151204763134550089458456196479505079386124053985689517866553037483011541702812362276481586853862268760544626331977050355475563527619073740607098430395166385065303073045072853957725549933385496279282490172325571905920821491084553737511744993972244628705711055962638854167734699019694621602425601895775843368145533098341820034744162895556758624004153843990929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23367751256600626483743915826939347743388461131644636778705920682463802840603967522570014283749730309093820172699645233085535603867178131569887499068842777152873487739178860768397533985923791210071669340382620808175730690216157044488592857494688888812292337610782606354966451449923712387225310928275309742119881871704229965341077811638784560325683141840242358835571978522222588657427267948622738578411131784657112397568901789950608754002704380451652479434286525252955107835673229454270634346450222754704648519912888685617285525785990833864967385562960826954387706900258321892785637906811924874262462812619824141124441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23227417277144000281898577278190868360698764322131280394563580387225717902960740052531123049102931067388787816584837719317047965591069666333792517540802551249249823416337100219300561481020651638401019051108342624060234612262198613543053525595647075368793071211440723214283629395139247680477934157325768614883958696046003817454580264752575662017795868061879206193851487073269875656828069805163239328071780379959247602304726712544363954799623037202608685151881441849249691057447337661235047747391937436136466730391140003374978554113727549603825711305616019789539868515974413945711994270556713546380130288064443281271993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283825305238933942200847233376597434641724876519737651606903067181006585249697509015455808139862305679901109379949275771787631022842563436573857077687416944911745228801806814579235482237185192413661455406320549124130082917832732795413550195431856590672397549502806325733945724125272023842033666583746987254125980285252235904636730397508149858220762138884020383856470199724006530579097216000493567213161264574903924274826209828811131319470223648558734744598918008798635124304957338050364909491856593296568636710148913351341720933080270533569380733169416341815175522433135282228382567451522839169925195253533638715303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24043516075538352471768285756288489225545785153957486240977283044461180661372498558916013246584519038681668389530293749356885046090949605882632012138273710301983459938271023828219264221769301786673377289850475537503016112090719000117046106206581753629426384362375284964610351091606008334919529759399779899911683784121048457034631782432585864268320271903598985024397368190192506414470932750461155290664806441887746340467636636570197140300239542366033997594085475725981010046327240820476848142504329077946395659625371194599055614635847296172923786871200369224933890341181678165146454687435406912461253925585890842382227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19961230964041749736755183959287520015897729256595970253303041706345024855610823689785143487007486654198385372798492311823553883593198799601955812210848111943996727954358523198509444109718239678539350625889929817058885371044500657334989285904357247120953068449465936159908571590761940242924701407402565262052177217730139115695370201901945268672480010333649613448317311524219616772187244496298636463685713125809924929546272231737843525317730610004651454128024122136304486798581042673307448989218418667247855145138086080937670556394073806831173839895108219707508873605593761418940134075437956966782481369671379277333019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16437304776391076805737012556165955092370624529317117107325921934011104508603544024965468678654087096938009618535570615768333609678237100748779712857666366859537401603432567079075787272153195209115869772335201771208952017854726133149354057966382470935762876124433057348994862261753456357447281917082467761322165324832465039693806334023008602073199512819390999131306343265800914879090941934538566169122780028956261859439900019976042672292273801824115401818521997542398162315189180880191599310072483341403261351859630655759996946759147486878605068131179701873363386257243201600161172328431134148963330378474094016820641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18368887212300737588318079712847858623647136249524275130218564960997157850836661370062541231156646109978744235903476827218045365896075155196407263884639203667437155435611153252885956793430061945193239076375342061328723420539005895713503321599807551682169077594846209595192583117214860299392229723915259902229707552548035743815876050317531847011292465029577432985302824240791264705916061328414633168128934191574894800574445712740934333261742255269011604391692154643499111025271079044321076769717770603264584314014364597554474708453484328326292817189013563581673238131763033997620089945062496780218211766296285626659529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305011015939675174922731545771490849045811073935989411113137271406617174230637921466692565083439944554989203409563642663749747429102722761760713744780855999493943546714037996006402902513129145512214703331983465620261754309814278520525093108078623180477706781444525673379456738857903231719763844501606800855922414393999170937367546571694775430989492483885080088130541684689232668217549900792077254840347972155269122393262179990921247415544708044008485823575738787622526091212422890457198741500385654881481190823646770072510970440003481846666793613391570878491668679375952183451171670853417695827176765416292681006427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346231105432673849025780455824748793826110629844269999323404976972661792520414015489873303065469768963177040103351727744909221086278336821505758246087473649748352084193601612820551909686042297697487798459014549552793331050930232982757921377171335647562747439045026789272668658440243821512667593759762637755338951855173302699759711149788315131441386048568512790356931149501222389733902997813221587948828138821324203809997776973108303559675907610685149398637688725826438464499754179163658905902080549733295986440196087377404253133282839232548268148917573201975714251068601752258751162236111213846679101010087482493379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21890016930177212435565515364580246734114719007822256567556815502302603187762644858857707722024788458801249206719669173889379061858513485173938081962881995340086480858789816592791952928186403807263517808002784722388751840718861470547670165731734476470735767934063574105796532753450850764666226615374246967793403411080183413441124561890022088191605461953709270391595662910953288307452696783264323166742550600765682945674137273541822722026397760921058784071736883510833536537307019726820169057834432787937749129348282329643065833669500499097745076038953626114062242807345267844715985192286236325237007406851388814285423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19127917316303178813679095220111018667556742741463378766426114205053413671735459306211250717355017321731391864463897192680618884071194891071901989710829025329782181664449679198558103349028822457773533640928192108886045618788054528418627958546646932717822515339070101695546534321734426803023415030212260999295161037692969623119469050741239874026049925071390880334147477794716978149415579272975454478034364770105260940682595081883371935210037166467832994785324050282891082370077837104109727134927341292211219890642227252113793231726938070222451465420804628774285568755948059821689168657413490323977298930206839505698891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16288820190101587886416356541826627602262185493972598353216409478185969529737674661204781523080095338785248793804519977209049710023371409423286453615134300180244502633780959697830642923325643474946894325433094693325269452250735127755063217541602365420000713901828287234241959118218325152247420789084590290506159278733227401799836158185385964857708056425575157931929305959923826469776670561200543356523918930949947464652543885469056224632630385070505792920637363911891392007901217034865127108176405194143979372947316767910401067220977315271759541675980503677022524871933473458966286913113908228007234685258174296591059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21858041214785811043583965696960212570397183273488048970067115366925051941894318708272232075035516360195954975656558078099031010282555663560273224193541390055723991565818642374076090493586115240189010404407234890832298269364463533501097833016316840353198593919717492720885788338651579806278159659829680700388679586076829691724318857746505652424157447983379442643452180213925885316930476770786822168264042983946744657597677035054244542184994637621186135953359175044205275524375798131766142606577985106978525488358472249533735922739119895115444108430304939707323941428451360810318385758423971625711503855133960390908053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19746754088486656241797319029747463608947378359914293557375620037356962862950112611486072414663003414865397521396417765187455577915512088291536381883298957202387123554667936525691012774796970789693490550965872069218286288968744424274489617870422215392772590691654778665630624500967824047224251704094590879651152823516887722607484298289330770997064541810129065085862192594191652948343157829716397508451901922640974271058646411270930431408201346507247974836983588979950629243779104680209609330059323171819472652259701534628402447244751826650614698112191372820602732385935320456757364380087903403176021179991385784223193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23743849444305753282129966956580428655864764640750600799706239007443865870090528493352855373114198161384373938440411740810633713812710350026487154707314574182945854367817386280231415003724423866350006026432223483163054064248451408557919383759525548973306399500780698423451382210297972421905101464740050570568865562898077218135278633900808846672060067894503970896669863785176356480437162059224555778461369127083022762420985283506150370898220530324346419097287711490857852850444409501267114996743242342611402913826635886824213910576205081727433475743113752213917383575883331058816630206046027788114957708107963965920307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29349030877017464766991712382636926212704960440263698881083688744401520038831557312411908270727176729910358832845477364222644869444682578351230345527813343539242793717520666019769917828782774337613291381004380609464208749979724941497171418388399245070830618147867532663805061681911183984162427882994791351287805122588521237447361601432625392624297112917515108456154258994478767842126691037371537327698649218805438275914581299060910107443831872277532429296454314945874483178708849426626259642003486341437066264657698675901643306164424268757150384796219641548102824227364676494667290672546440737587364775632756035397137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30041876111638342776975652641485931234717043114367125540708883501925481191332784631760887938144640397936827283596523278785172446956127801250012861978429560431802842034270701616414003680849074673077736035258154596317818870078832356542505883409171933121372896957643614356281438315570847691087013389649434456782476131747148496481190229539482688242509750722613848293367926933836354743400242665728534486735377972419314358545207901295755648754938153216006919726944092042169737095358382824051214030936017988981314512017095196379940196231772945366937457287859123827572889835292288249841267409476190809065528090580397555815191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19523150488847279939403590497095573515476713715630205063386537139642538152987941574366985136356679335116706374304897759195737952021598799004498607804629049005012868588501346352878403000012960117707640703356521745159511129284226675504013149501595336624132895493300665420564607040265554271538578358716907121671578987016961166613948144694027939341925271354085777986075483690617062114097051611656552246011284446583067992768137690577617592016869300433669454332306866411274457382448986511147614541634674743771251049334416616595329038748713655138526427228192120367522690844055858627096239071575517818647785491113266235493613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319628110786629329909363558147044533470812655248704141036719944912145759486569226749846675622359851028584732938482446257994678104800535365650154877729802859480125686480446842396621809586788435229457085059489519380319276496147592484754535812412376554947119696309777927616868862184641394726992259209058970402614791918284185122486009893334001413851995358215200952014194540319485491491162002299799024256812087459704998473818140593403357131850216144610898935344414856086136120636196212457795750037263291156795383508062326330958078143474720790388972804339755136706600306127159542809033822791588653636229708262736088140809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314130156854530137304790291651677902722849120380596997454978782301126689530944447051731349291239972184605470899082211059511282257335114830602070578489161846495961620445686047179011281545169653460613210412472812643797629692518154218455974343016530740295196806162095259379101431777515648421649162183782050634741283811173606089220805860429381961423531186446927632761739617596380553654598616242834789750516834568389468166785131287635538898114072384085047312055640221941941776129879116616809476574456866919009106071552065880517925996194528750428921689048562083223714310780077372257470599469694903914661576063617161095849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27600205599845303849020353992079514077020067182269823649874991078700305622634775543596779740087336225249862002514855413591568871081450353118244535570161903947223610552653732434665099329672721702359966912656218323588339840677509864836213125485207153837965841662725486188631462505563141399111299908523795044802050679869803845859999787967751634811738743522750069012027988861989098139758990793912358404042258538204272475618266619590567845732293287971864567312529766202621847387251084182109199831488861012028701400706501083749142303351493012552154314829984595513473152675706608755565557219138753171220417644632918475268403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19008734923705444103800287987000546341805294681795598271281157986398251806656253688411234016247607367009193990244014464384202942471008176050899462940320086117889821213400790245903077918230581967178607594734398653738900991466964186251170401930798455358319294727788891495547663596282117048813682282511596675821154933544643701223019619642274173476008340316086884291510193209009477557723786867051700117682784086104175587279941910248460601017860930944157569749548718805320462312314187186360058348111652774001446773892934203314979859737081496821665178527263160865238266486373088960015486108255209600059281350577620871811307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19983396428780000692763240976312297426332889998478546795963472628256558074210762627561755970240825628553128117003168474194242712720944658649473904417565444636546983290552629869827831945237917686722759422540232490573053729968522647292500726968633546031848523494541288147417213321562227107755792506001807020157936990083029435258073543222036551930084487219294821072351989723708775064570367676427224883994992816739816977081399631681346849240953366899976999808759017082769212188395169499107975182512397750361071203285888370500790764325116038234914499346363277065280480019032974366092077702586544382505024250119605255904921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16227832520857750672144943648913489027272776457058880425944145579011424997298756240157458755483227991148436989906039796239322167603402243491501734782173802284514145114485901984263416781116235705628140036516440895677618419925222446250068078443489923847350729918608804221959097419097190110214426001050433393636428658741397703760769173044876403562723715197043001718277469127405369515483745236413074632857960425635770399876500130015455664888057254182101905404728615832250686496880214757613550215248539933232467547761833727486860830102143185410563875810519224609678363460904691262791603658729025248300677560183181067649397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24477323660432513468609485066509576394166890645586340651130459714891307248328288818369421151898623928265796980340565762122120095510641681778189008731465412497433017329158617799802981018109367790693238412630685876204746659981462540831595756056581180945494518229615365371405490105456183231227060245443552153640590854371235100592538712016800971371292826254803366635129469865959018599978592633165930575788851722270831680845534871483139839403229257975246852311081330634031588700188781558080521400331860943091397901491482336090889286353803636463281304388567659469513114887382024423887201205739582003280767269819097335949241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312147150389008247077183189592267459699461633705447821286930156113587451456812995870938135956191561797782818295155640201273490930690309978779626970854103688744727115433297433684519642861312663599568906950744936854598711770379500822670456457007817387103778681110491974703037612417500384641509446536381651370614369595520494651746216718860577086969475839636139807663810648044311331077974128089805899536215135692888541187951117549604077319330409026383396573601330127534144986366979265937257261696223100613450002177090490346436598696104350067919343599120698321559812107180027296267330359196354372723877872998693733994239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306740461307556044980002564830709262780127443468659052489920201317124822791242322542276291265368457502363563794490243477675280557994393968873634484682148744351909963068702408217438766584085464129921743744562669829602431308468336788790761256064679646719202823034329420553798182251197903165709788711553614494859887082609998230857804974966248956181712544767210206663703869354969646059857978480898195658860789172486095424709018343459839696879216068112239429108158291918077312966528767948211457497973409908996485524959971591115505280988719027576846451151686654385337229120340376715181651766043301160511672015740777237597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278994961187619632456727649640903882488111947063790954362236660553281244678699558509253424369258265636057095867586359794297756072586927445140101248442255005565893864369316315278830848939042136066660620225610899229488498380566415823504740274235239676005036567890239848829830917571255331978925729084675059288397516609488381727957715200766382313291826804059344551414964952203181011288099711641747311221026880529514843048251175081156515684828272289920145103111790919256397276976630782338848370370752815040248258015419287549694887513307002467396093688099034299090093154428763238752565576047253419846698363023641561839939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28765893060468324367982293743834410526650347158186226553448263269328777095665375758883240933828762320117559466654889325931849602794438673910125853190646773602943728363890600103686166074589269773283557331089685655644134270986046719238771221635618637996433008710595278960325107958134153431639107005600687054423135443929666888659052276661308577709672135686919807933923029149619206445388156738775070331402362461270470618488317613136719462878192174791257870201087388579220226916756537373082488432813937682961685563677208411058231094220416134516595083234686133982686796997189432898812147763614729372496870779134465283985739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265694576642495684458753451236963024875077499503443098827794415757459186678049329884570649046580690013569316201741725773069464635872928722123205520775356747872458640593618796747691968231668280534382516312900565390652454635833845941933000669466748494524836953382618286744479589534295032910568465819966052892130264925553156119489827927313852242040166678307786790634705210511512718482283638687157075871334090544920721889943837927096959428607683386909005587496780642026534251592586644038595600648314835123208647045312762563821675097163093306424043916186615963681813717086960651470933278125971561374045180156688535691159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322531837007281263158014199064921683283444569777858136376419772958354380533719461179933263480709080750518315512587752667067766585566296275197981859444463773705376617412551384456800086779620135492197691853711256292286494568044721845784902446091139363430894578586184441452910202489287141529624044504053415082654213329541386913238495363339792331238695525792510893392880106891176856874104658514727244215931855529241501606161977863475788253747168801865428047943393190458014088710802522844827577388661905212139476756486934446059405499123399102385952800006801765917261318425523954129272526411110935335116940004885802377567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27844016530421144297450349573741683922815810356291699106723482691843114000257072095683226003888719085085399407062140819787333600801377840188703928396509672227074885540743822642582314819054674526448090364691448805615828367068029314968045488296292956405304979008835469494711285953670359569578542880084892009538111133358555778589812936323496401265769108447562005666869037448021990231105358119832498359757144770506374071001084084096885577044753465196588948396208400673440402012015213738108010390167744246793792129260579191672550810759099225787435582203098363315314653009126105646544779655353661260512606732934910765040031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16300951686233506064302564437842610327851165624750290036080371917635151020036414743259265921153042169149471119180947460508799532327066931062960159876956630121756229230193525968174669228595079957889726132278448492645966282521848239958132445015362041184285618637323823444514514609016906578006298445025086555812293268149883648286198786237784715324468974935149576653769053565495155754064331847114457400890412104882792547531807783740655941835545833238474234142244266955520676946295854472125142437216184314247847500637034933825508656854864322496114344668345782737307391609690297728209259275459577054234556840721446974078689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17278096426583474042326841801205572296575869494423519325366328899053176253821240877774565470347306628985732996906901620624738731044000854181069322286217828354189448326979863944153410531985855008637908163778833846197023185560900859639909029476225576872246640723863986811779355008025350390816582374544345390644387177150491234265682017060308233925618413897857428655032966237252955890992067393443473355401109097917651894480236163383181435617566069752934672548719197884328065173701739155337417265044656107649241067212439806944336907747369936905062580974737365873566596550567066353089437689309828614041755673979690711014511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28423264226124446004338908615182884573694725724493426487857492848739438548462564343586605790490985285640436111204915187945223228085538451662000504196429892777436010376565678454496835393630513331153853214200362983351657829843570904660946370220419257390235130032938703830715568203075098340578480896241012605920063422811666701623831603333635181013687704998696995743142293309157435591121427650979902715468273708350597168919913994274047205269138908270839117130379304307964148789285376959629842269232656841991671722713522034056963232352431479203933183545863896814891381089912651543535651474252675976096047016638337434937611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16293516769495729942050117295032786076746832566193545282746492618554942862633152822183598115630524185302156870531852671008055403005323365420838957311470401126156289305904485327966509717569834510683693504602084113944893826645172314607726513073079316697134733862819287592751542660477678288190049242380606382461022527219612626312971133924191982181612494727305747554986094865731395712244801153443537705897178990210233718508838721281116241051660601197742977560396248883034448839162314245827046822765438882746586576423527089933764047709766565426015785594361482563631146042413521795020055429544943331656413290349539802682151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16286483207466529081268619822430191974298422463937698524255474631052314551715625244298765496350657598429740419000515215669258603715693100913120989052167818053547629103057922885238301269767547650440302823068506503271838480061024497882887530312230630503942789388231157304650889476673835974151638123404637383380015094083762643874849664871629377770064459580903491228344329365814183785780041306809911214270324267550901595376087789386687171446382295938744059218222038684874771304639827373690729772189495959010695483418428455245870107922192079416905864085667606585576081744662250405663988779558048239013298280409449029069569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298024721727561192191906320127751817048541307189699940352839766132285336896554390705184517516051033102746388560002123693788669585381093516104289888327813552740114062309169629558937962047397342263355692295057143683609360175383032364298202575774765698616552802712057911490201744118895635224332675171856543958942707403247086974880931315840346563704203655830906094695277480881081149194627952461965984325685184621228660369592716219019680529111063715610308937418322123425421973602705002721547290228179160563682743003462351996236679537215112013397227125855569071655923872777115189029948109311012136481567414502847779323549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16331752686023849237358198967417995522743688284025900431486689903650470673172777035471062068335255198822685770340348269776599019634453589162596872065291870613138420487751955513205685064261758638966132337854743261356179993035091876157457452892803091825141498547000302925100027205875235147878124668329996350966416359830494626036522447271114544853260838039818731677643738908370531424722201462461258393356683149050602758292085683693096762800595109380832900826768959866554874622878009182939834826410208551144963165619226251003504677649542781147288540584912231792838856198616965800968386949637910077636311029503936843646933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296740175680668841808021756317296093094041235512587484559677563904422812394507185845508150864252964111345748434298441045603223186194447509674202242940980455340838063737897442552168685321446423838013371081115154883873512199657264601130391237196626174880764556505704470103817440487414527077236615322038421570764485907654918453145346921500716171072183203105294035178095819473786595040329938514227661111755672970228104210928816054374134559815661967648571760321535929112506227872556107603107648857801669508751710502641260609779032504983136522713720171214296705583739497082207157922469105998852141251223950248452526399381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305914995864283927667248785118315018552976506102169917477047554922926258062433876279101540345801228202148015826165071871328478087006233402106869748273467158033723689953410614832756350617908307048691929165846629539342257598754089076908758899225234572404107599262223312444114935430846362789553141974922792295490379163894957272003086292208973666706296182711556909224751095706295172769353253767994484505146397569257802808461669164136919359046971775756681071323526974667598375638376980676174108385491013380386349082252081698375203562123637802253598167795579552206822196181839170412132820662724057994106232161752072748019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276578375559019113347705141491232262022891049974353767732126799923421193187357809578310528946628687076008923556713556634088156056728661155618923314857974561576945468097772124380928543352866236274262437547271586882947377281217021712196714682210450058649862358495121221614884589920409809243489577444763775474668758598597620851608041721750066720057588808630619322885940612251921971850760236654777681016587254781588102003978708768108325483872162975949927965645878786914626496108467664196702765527686605020020305119779801931092130276859236185821210966193384905102496856851833064870173451132124487285379982139510698825449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22178492318438102308808045036900497502304674553454656824960846170540775605906608224282929595178864232092081883451633502586384620079548369775231355913851250484174057540086502251570715057593914008426025582831296155609544239054297103734245113187558976542933260365509819510799475878045262613486414545660699953308427315648248969792394780327482955734735936219439044233879806752101521100309799928515682516151521486512149482592378438896530965782904574805781797506876262068936696036106731350711062428057473203543625835337051453559194046324468501549269698583553353415298179727211333407931861279153941076689426091546950981836783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16296348524946727012237756662485172895560539846399537785781549806919102371574243170992004458031940311061324574325001058210844838551082824814402257018120343964777339948257891665058940169297057722850461784008375969547244933049694317415791941233338931524431966087989816799420470321846689319624628905715957443037902539979583288624126193607485843181755689986904880399658924442696752187786824926160339442341629037117027788317675131853492876346831250812056206391776129262166164634024686663512305852473900879586652817517260241917873712857247400998921428831247524110591978129687086694116727213153675655458263240278373220870387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22234566395809611097430418438058505229208035047444876020430269569949317075125480894107380623273622873571064582969426803077661115273494377921036834520379117344402258458317572147757163146171810474659323821262544059442767567246369836841951041418283006810507825825964241604381553212892260385285823434436183423317319724751216859426540773891894605421856847958055471624952845961274332752299316881315601626555835509576576308240375709159614490453027747845695039383246608328705380505219969793664782138631349200589073349908699086296874599271456366938102438634760197762696477966541177726143385008289896377389080056006339683478199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324452324060041358133392626589773151273362356481552162171736090420310062910265482231732073700132823081468173837910896769604688389737860597931911259440277881042013394591547543926816708697498530751544869939336158529105747546759918376638897827567835416582357084609671289667620097051262086635767969832182878617867998604876911102374856528876665591024175957052044266023049137977940317859353521716823714386335192312494666126260556637009649231363193698843614834178940805448187307141499883118682231274522804495499370689012933706834967256770012622410498617158023751326021479418084530300480832844518081778148168041463004692851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18807541479492635347960705642121566607416005675875057330766489390043747631446098594869025355195324078180286464333306302581036775376537177315463608371759976990219588101238376049838905113750103627497129431071978989391319138286685854261085240209293820228913165463247377086892335249174804980923585675281021972849472411332935544875629658263925518368806245725147877434200874948970090959854744163515771140241499817447041493025292419120535557916938605718848655914655698092241513559264944898152989781620951151361502122131194831887468183600383451324070693166824966930806611956426451163905222697821333376803530157485267629237557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20997747643157334277211820574920364609685612814059972608363025060369903348196661725677524270153226566287341255755521785632430502316817579614423605971246228550186970614441060488257635806616294272422548522127618878128867496708718945453274904532528051735661303568521163275975712954417253184334910890363765078593541154479279041943754459621458363917300324217468813487359431193435745477253184939196503271766728805441393845992398617200394339132823850788534112918062019731647495405713997520168703300066458001135003969516678609253830395998797265421277669721336571420560428664080023361145216823044511381019291967628806934687641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24270770199588678322994822550421442324264040168414384435398036744297027986694299535232288948097550452577516633248653807665455885704102806250290376557594733178246921940546929341860116907197658096777897287526256288378527959105359065345104387584172940208575789391706959584457171458271284859205188479032696245432215879336729909718168459531250229163641269657227188026258824849097852928796001662044378075962132864775298162813300832014451701107757545666660015398575534121981891997666545642095601785067877811668806602041517364443411412320594928550608270132137981865188235262272792311002254505415620519660872174322338537796323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17537865701831468125278943739573489457562695139272773271444084575733467168650008346738647691742173772797545608301097498795429176229269484479417927287070554467550616325169052853709840343923657634480429869913649956893128273334612003849403991613394904941046780676580362406572214565258535917428658197650583636666192013013138719349660237283635651733189087661882020589403198726617000299463718240809084021136306520075713680425704097914049610825668437720482470353542526598006973456456862296397166222867723281819183067745042148899851544007108493649791445423623059905304355044347058931059774689869932847418815722123749993825693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19008983225265893688855925152022327350051044035381537052012171167333357832261774154400094710947555430827115033306288149560011679386343683420048392026995609947018912653631126360165362400725669083134545559201888997604266395219652651634988805613075682436947219568758904736474297866038525977155149990004890501243457222263060782890419773851060123664273076648958835954112516390088985994055666575780134801498960538251224685511128777935392836501492439764353839818422312441267927523216406031933054100227987265283722220783244380072371636704765027980160429333864354420730712966230019779292092230178124806547412294116388514908027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16265809080190506096815465821813998062969810274531339415246088464157893333541393456502191216532929133956246550423050222172275031757184233070827078377332796330485692404339776593099695977728532221814812292808170627604836585589963588148190075513554402403950681329737533986538871095970752516748944731401861180875931349843061999249198022268965592202872205618181916904362411416451455939347773481050052267564018853939266147674079396210517607900237247038983383333982226891878146845332807661130169611851072239229287099122242349491989599892476738895298075586600954092586039412145523430467034847113926319053723821290835409676689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350648919712429421349026511660033926637737791418051586320408516040323619800567417737179702535283491313896669037016804642040215410580382084616180927282724001454681563267329560110247892041006742368969580160868131220402247250176302150242108278750282853145979648173418218560048752323728659521869327205047074023881874650422660419988569375394918377964529156432131261884158205048486003470713989206061918459232645398217042097367338384490247408520148488856229004607251191066615716420144511062481430863800017017840639364290869759874720632567958477381325225942255406232796711212668556097462481721281762474921796080821561253019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16408389078763934339064793704266829513850162031107081573738463776144936787076249741527875969256471809826250301718013173084022389357159190080348606514723680205129516667142651579978824739305037839486216216932895515229209522597672850305888557924160505155673318518272982122949607019494358768364716725712011955888256330765083751027881870511655761544570819961413816269734860381169500071658343886066534445255773552722489132445949474009941787276306287094124361786009031772774304610953727278735147509082394191067492408822881073735523412493854726747996201299427572950422134167586357559985632560449679780450803924025244547596299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16309455616128318892249418075766939001803375923612741206241721497045926271840021024787242072426319883804648500731283758083795961825570415788134007159872314437205895225914391571454978394707221710110339561824168713082058868679141502738111049095492388086543052607842114312606513693683205110094577553556453199826426198037341617107924147491712185921483514433946040880942609879843565125454557371676126302104145358690468315211539387808726888647744831622799791346097804234380502551135759022334227856657860425266308568444673375407182574462384536893978383848848146979431737009566202856175236869022190963886463456897101868463223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16626577732643965761816364829568901900117728363690671202066604187902630372544256907523178098953183883747725137809707618545522834052635017622435875103632199595740693834449119616667719166722143645785053615437440193135993422604605979302833303015937293333060562096461524067069240084510663667456673606881951698518093621530507712027021851534250687855898135917296995064323171394122538247474641796891323428774101953343927383705603337077204200997470225798341878596874141604183605714134797446621920888865625921636000460030878057740050866439299598818069319903728228349513087116223018525581894028773974214616841059120282889908603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16487812471844176722003467266625710963544078504902824531292638816461387275260883250928428240304887523241956056212378881815672570299187581901769697650424802649914757208684002452634514477359271462409877944489910761802724913831310476549984649837143960529812992123515389051486504968620067654632004908377854715167161975221905853435019034169957418606062665245821492114778386614640888605673586976381944317563903366635554810591668005189637410370882870408501056570943411302509807510674855672613401304580430994434041625791274395718845046938599820923674258099374587818778162124185998398644006725995373227713450986968180780261359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17941641260510577140055462852103422891201910130138979526668676452607171973246068841199117341386985510651369643315522741484622625151793942997708045286878652848390423899471279656170703698651773927608549871153289900618144564765697337596692211248783126662282589728844154740329251980481093375179301724280020884929354297696324533380637603453556148595829227291105029975174962487789279533989552757355855843542792039049995490372898746157439632441833363275637832483474507486264392186127754329271502574901198565103240751627578717374909649191619460924313760190074730741246736187490688574320672224790693169795864995739043053078183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316267974620566027133772751342417438072279651485470373554476674595148155365516328255556231946528944665551656243527087659464278883306722308097798533241021591535669196225792941292007952116642349911110455795108042889585935975827157211788890804046996013587322973385150571000802473496649564685196108576294187102868648280615768206059204072403759274709916163940478561416504413386685514853879060288470034874217391025831272359051745957132725783588159414631446650867374458929054708516182396875221541900565338454232939494819089263819344033041314010983792911095080465213095711192731832896917529735455540743749185168569532277829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19010108532375529191117878621622460102540533292153360090500716208861395475893418742035852857527027300090368506179458516205019048864426442223186979407837382343382068597943501411535257288111447082362705937255220444359137978884911235744027607488337110954316454864752123148573605340887152381521027946288066250514340315882052935969533254162131793597653801876860025641887102273436009245829668192274211768773629472162938892033245084478163013383503576067446794295309787273941281185042301015626001899831479815708680232400175130395272194895706624849923789372513916093921524032498368250237622326084736051520538597864311852241037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289444621297192977911097354954945413976951518333729253129787017847188720692592627515301498031071247379720685922534947634797765042089465213858393900398586758035600600118004795743036651976079449045189039392199583447028188976131445020723680659233319965693138967932186558861206537707215257873667298423090099117877123253902241355361274851795692231253224991440789330231837965977883069563481740361480495851394284749888253291637938798381964229132684215159752069798326606486988028179379677870549418348033460653766681093113340332644169501024986258699305583752387813679851990019957881322618999862797102351941991289313805076037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16344500445891265599962668320743234850862640806131434280455701901717259442246506967392201721492881569751975785378057137741232837398355988027746412739125398044761874110499910929884725451726362035719641554856597187916773587890822643478861772109500867748664397482747454491222023751054138483342131969493941959892650453117300406443768787234904783591981965669401261194955669922038209607541527288473670074788860047613976324902517476956922675768376635285088670993081927722227436155009847794088896304027108134674837521963554031380238393526881292391590304161267372907215133169497962077648840381058920342733790834812314709980797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24833860029528797374939492981831648423335995112915733830587712017525286268298987466106088231660747847446271000800211834290758307305810620726501391161565435527266107974113121478437651455259952612500799242336392796758821460601052332928560194371285344272114266106095229312439761789043793661208334860199762200629119457678144612387454243798310159647412859765683820159446229125912429114486696383814713063347439577361309000420760644710199573437450049231507036422054636404049347346161358810950754086964485232920306892112266931866802017143875508725925798404963257810805341834178603964894806621878414493383480109747623868947441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21177736880492162153655091175804295989968387101043997874024169238102025371362705557398257280081823826406410619651763960081294188820796567331631952230116791081446394807331152583562323028505832597210723908878632323963691025414116409979335935889917724458933614503254751013846206416205823955097538830969441900444008308930409718563840801538093173040931858394337470666238641349756727072329468119229808526311694231023758322443548870189188879104639398660717629700162307771190511712387260394911649783370937491975984309323672155705233222467142687527722399886144127280808055799721439043239258734452215528454033352051336602999713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25028121202545433670797427390363748273784780863267170378173909264335562567597263314645988065478968592461133116204977617957834002493945031698609263110798786744886375343296881506907211647732254274111593795283345787634566159280334407475168467261779837820279295002043364074378994235379278388035381105001599919342244613692451088276333515089548249617430483404965421660236581930528425883993706379973878601252657255672027605459062883361918851120033303109375013120086517166646635468493023220235517654508448104066159136987339143590020497049238519097966871343104225981469085120558477645022596258465194617047899577037802846729083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17658238469526019311132504241864000301355400621309844354798832521528264723346638078730856013904985067265420654818650037176005638906412892513092540175912506204920961555212044524033096049040695717591264412793714581273120619900046499474410166556094017845192418702453428497030457604511654309063677230940237848871533709275146538915495449314621950409572654440531831228753594522336101639439438695122252994615267828360292031966120180790685699239092177145265530308614017363583349964697446087951536851786105072475976969562847847190943550903675449459715859759716516532298652706006066938164798134606999106316868675369152212836883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25058839330468519482851179876112049761865531952628318046302477508480437419175861574199262277397113283079067856603607351338530419621645108273910469058639274154210895200674340431403437965794336030204443886211682401903235288072141810601914158811214515025614687626328316060203966025373062912492828398285393021816690913067662681292231652354605069104836160755427733232158423353473945534717581579340118682873756739864896031033945294136128796517631149592630314280828395578990846109321946489518025991744976158153213402767247514315518685068593160519981270729083073421990890065584159504586247372089019611622847750991555833248921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355293054753831296930079914238339542504814757831457257318424856802482129267870384222610075557875929082586407424405047533896294073667573257441128165377483583989454316471429372012061701428769876471180283635704877924942967480648594516113402081336926995292729086970822147603635374803969939330141172786630845756281432615262279664811363776751530076845428757786586077904196091500706644390109888336961576370285555302877428238764876693864042889441805019989326162964997743925201629921157491612742748620000457551863567949594796475373830525963991653599073160165481634157887774420709378957760630509463364912306008494678386738171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26504856418780907682687062685037958812570706829473764824414806903671721824908438853377185308171251378452409233526946996363212835212621061242529376582171696518683254612674838099181519108883869022605731319177069720862607368739285561004687537530475922763550456720746890100142543588986998319043137177249702601282792530883887219959723397257882112027810044929973899495919809499620587786424239265963433697533207351612604078816787516841534139810060316389907831026914348786478182735537931561053978484414322725849895290592497671456215972491909037227917556187357900499495947820923924657065467813318900624717709103338787214576043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31266205032593917598069220049723409319628194440394269111040447383690280733017404169845022089928999980763258066265059041171714991119063250531758549922288386592521955554896177576743311156536775649308297618775032581767040198144967952467844161518381378132641363752227410795542353817153536554836264440464979942387247675071228543021135698088355317528303932354281546585559491701246558393322139926468007335455048189769559534770409413184040468443368619481016854422712710893163079453288511194792671564226802313372725688383323159689499982282041357818335101059412713355560245726395860636604662073826294659404106227358917673199807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347136342800212171732799142129022238190426473097090663276563197281625933123895304541687803968607576661249268793317030564404427538627445915396009382288546647862544277348849908333690971713854779275337369270969479132675252274340240660557272699634958485855948993489703275875606951166464030895896526513150672155943445499347502978263926407224101778497507637563845920487594782985865680121855022164454741668726335953328393527410853135712338009992045894102248571599187946405132748146569506152330566456560829726128157252949059105090170965868163353940895617054039172844615502203352674803228412787904951164478270325136565795879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25440462524565989928595638807664090983873628660210968090739474660676862145782040123788700370454521719322200589872783919828690753972762623052531014176463773762127267739807159306402275880041231951434465023423136741175642417416734009992522380411473089478668633204478384827535078655876368740987273734405043592815999646898416589100319683049058383658216698771053271663818297436256753096418318419479930498643371038655414470786868302358550805680406703300204200861403309431759311248524246455929140772560533039205137115123555797778259378268262322750735271098424665316537124076306558215862412674546850023940960182046515958301559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18777550855660633799945779810473709377160402822020053887772269383242970081485960852553197014740110224886996496468229739031686631635928995278230180978419819340310645940846805009478571642050868067936099162084771958707370401898707209784666928262891564646409089480092687155051047860531938640817399063928059439079971109956618802360702250419361770988502966896250451841565971704092347121546690124892666553616081951743913672795511005929961718446845746352899626951055809081154907361200755180293821954843885227258959633013892175144566591704842049678660049696327725552932156768345449155129009665734945888412808587093674559383571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16230339970019414344565234699723064220825299776674788923605835612899094039520763621219520195421954054272156838610542842882817269819214831311876642676062740487421152939303068099159667224991082995583415363804661196890431534365493301756141372616197742825322656503826763002558481054356706934224089517213487732179504956990895416785712326067428952903378342858361989415453826724768249260527836101172640717071415274628756651873015320550264304399873274345109408759136700550300499608622203575322826492714234056251682586672285073023255628674163090437847719830748479929152349771051899158024028449798696003877525814507627419756157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27038803880054778638959257685996075396640110559540405862389135366563181176540204586116142643366891781126656046055439027812707515090785995867114471208363562768432414902191066575255847475452214009327217426359395079922082054350816648353984998605535906731730865593280272236800262665466593046596331311684900334905546226125449045212844123472014058344182784328469238549341642499181962436829646361223751576434975546897913868602981887859853384964711728295512101344205447485913117460997652136953939517098536943069522694289613314861227241388442400438089703178272379013073910331310188303972162659287630493994798871551668688341897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24791521516732462434272483365947981632526521944534935186518086140288800195317198620970494039413243048725628236445451786405997088504725139235885339202099939739017359459914860964744667824405398495297642261179462409105386005611798540789026862507888094671342599499551436545507713495146206824602075643378758752886730494974655426031754293587579083205221735187368488457426433591455578775749600269075487725688404821044881283057176733387203966900551577701490062758222976603990816673414227463885003284761430555705902928854210211648713871506919266113664303856030043723011165174588329239026618256973524250565408610922046977541319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20034722790539696829792300534327337422308383923661616850593314130273323036705400599464350445497800029389347035057527188857316281294375873043662155629009519049236525646306581698524323913770821867885526147966677541945168352015276893444827264780455238652810412568109824380161656379616307711699450031408104826800208630827271823838877663084219747464238369082373023052012625840202534035536177438948783397784677180236805747176953615784693068437838752128691341053955166611154317427032955894403637596714071343100265287927660836471381468487673072392700040912629216969544505598465948426085369984829736024884747876624858065964023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16222735725303463970791051691672131709857195883402756265745919117283902022875073920584575193053242163601890840038831102475084867259318663913286240703710191631616228757784070156099200470433679814418873459282959261413082231616535785276799004432558415475937915345752381691602725686670050625462206306199749744149904140886981334618507420598589935943375371928694473267519853129760157663738747466464631267249677836900019971550336763730158839563289745810708657150950826781779402783650795841601466772026112246687526570848711038836045123179876571479772916545122242489401391825626451595617654204766081892592496364880069855474791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16929508436857824174340981975437097899719904279767517611462909950341851873948025991061387905278864876449673230847090391656641792149984260765451897602362120421436481730872940522615201184758654708755329012759838581412236411373580008889035968828067084629762570962441534523013588435239126486691485659310086442157463370968915939893769903361529030772475594016442490993956510755344211079556442239891798486081815436940663625989488833452384046042569515536525707159999660606296912857312640715829288393291539959268752207042247046669062659732352060067949876995084656814830258680414682751329882004416771587518743142243787126690687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19012597146499443589774729580863744115324919879523898368695059685675964574607060782366839606755320248897375252286767747170438824268854347846459178795143397945077520709956016320013268762301836442781079316210162577523821758900699261452445523206657197772381279484293614661533923615169951295452415443947536914384151024707865097151551292633367062879401402517452112556797899676571000251405431942055857697368920465045189084756716361941046003698507675029377463613708926294658581226950497041268376570830414100233592126634898115938920164200640380217160270856806417945613255558279349073105809795303889659313240236208667296188577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19561198569879625446899884569432573930102709997268265761583186518185597711997334516592955941504339913979413080084429633204328335408131139726489452076347568379567802765469947301063696585668224209075959063304729317280521609167992677278753344404745754702512584124686999896598631354600746656896377575838444215248105785090421284627100365501372206025784415859271203319023084307152544237816687606026725176953469078260391230082623149853178854934749728157405288724399047795326373241890765762237541478733374581814989748420830311678116428113213793382701148297770537439800264046433051151949687052725657268733261106492335581018549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22553089536986615912994918647290110877771153336957277082419638050298405587191078534421143761334273779314003100547539060932571189197524487245072399455324191224220551839101304168604685816668234319745908439229071942332069486363453329253016482475336767798702380628579454291504220312252281567729661673024603964546457349052675417675747953640771747129002494750323713931782438344546960275631787683175732362845568450907773165038611150403776431110041984359236343224172400098946387911834467761785650490201557736828858566931137099331521045670417569203341976045881619561314323343478899205488271242692817013471339958561059072664897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20938837374718514426136839554004683354630231615317256988359790357207050698025902190488596865734698459087343863223140676686485169861781260584207711815468923782393393323424522407321581584478762111620412294574329525093806766512911612153874058783315588295463502923141040200717328234152326466535340224079710420482400992327960784044765491202518022100538856174882755320978187898911081752252376226164600503071765940002837057439801654990991016569775143934183085305176312586722740095126747672265671782935200647528260881733872330821883849414166053313805613679810626464829178822183172745979822099075527287499129544128766066230533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16238617429983512217124802103091978526540892455240348036172327390511822934306556329797189208711540716942747143364739561287883825351417973005226024809737864466693365442874881325613580071212539921533341060862482670730534449040226371668774691315137904885315353455523082785473041986665541895253042840961059451540294783139928794330357931339723316560242931312408372840959924615001916237031391817688831695547987561392503549162476710039071434110482491134992933431381836476855685613184421653368034512892811607516084825317788124247529525633438574621417954146759651297633076968758909672227419662709176852505480001460388215784653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289934503281777164793242329897577373467834425594751027119390239607794257069803754558145220265888805293325641952952331628935205778225424926406469548014471613239922998688373421261868534837424378245329997032145940809690909501482721631005660295186993773031637289186007954923051811944497107076560994135152069695982717839490465259380911368729237119570108033166833527114142353799613648754654784529941678752115168994981715439077548410531386024470367953602493961118291113304903099426742085837618113628578730074850391088101968482117219910529865700382760747868434217915387798338108340943031591138716980630529983344394391286941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16387148907015880355504696977777854220106500354152305338765605192555993617746498380829789124567989546044752057928891747700392290602160449518889673609939019627837151018252264475534282067252957380140867751685620692648174990863169997670655992638137136107840967368822580244326932867294933301334122738365452538194812469672446542391160587167651534550988129947885228494080661502819351786587773999636495114155152556592680100625998031944508835965654833798012034022142313310509019766755523156292689343452231023816030743487849616845120559782585076579555815997809903132802156668542729368374089539070582140762604155007280154685631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21747743820791823515189228865226297787650656662150211526392274942339521196383586923264612945388355459757332491318491301185221443176711192057842296499225993997731969850459122983132878427840275241667683830990911470114264296994935762999711701910999638709638894193053679082212238602143502809987301445424012821182709686908078802349419390688616710321263987550433588105311050092672206736237592531293039296026898320416171109488522389258120104400022434246257480716524344609327465190285838476618495076570627923126156760496106056199942250491134210194522124288007273022691859252572062860522031242415551098453321374579065543531727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16196206789947309671556669465330054584693786448772849185326627166556843398406659535476869792146741462585935402719628586189566170489104343002812447534710583050761807362507339153663581603258390584803293221570166076142344951417149730040901307545414905052266905733071366846451424101159140857664188517589122607200644450825641964303678893786989677314868320016242222360074787806968161283443500084631862620176386333021361264083887910506962396723649370558906848715123359427306886362496072739640131490436881022938856003951106041260900381216277934079761351504768605309408805410434709239896525462075950990998745596685175154852851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17279707516258267943930602614155836265349003844722945151614660242530560697238880738211619743150711043909890117575317539950660153121504642464303880233457016111022647317195571104294171820798086248336502350280951849112183793950308867607127787255084956607659696892029742613725260087286444487071800611453512827484320468493414055449688670975768236130161252422155339196513364480396403965268314810004817430111188667051338935231376688370279717582611012691618046399254080058290008099793708048113328581115754943669232574755001421952440754766987618925047397318111988322603113945863945604969721865388186684899889738047634616246683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22884073100189035290974814280893094741802175821825795851229270797633836867236328480366509830042745722949543174149571329139259075228238279965999120238992490149509002606028372929098378221838810590426917418158668273609831832797111196494988208976236801595720686736057570112292120748420719892158527634171254852401960497849901746236643160383331505017430309133823018143633090555178142954126440622669584384829803600784135271846258253856557384723676382899060776032363703978741556353302026651287749606015332481146696933939493838035382146464609121867434539610077461915932511108840757024970068853415174522802148028034843352427327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22452055407526504816643315960507556830374418488780451003637301456709736548411437511787597585629162977277452241101588360575392433278335122041596719063050432300982446895870678905718313946138858027556281993550249346508621630492658934988596247637613759235058981331042650118879372727528161209859808782721038940594956018319879009349151958831125172024388061554030971602957654803908223489022569315228862749904125007839740127517509124271593447173175535248327613650919292713016603102950675879007938450948182194148423244241646384790437415146766643329523035816814462956711259363418147165349717454544581656823858838068094681919377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29201491098351220531556669880699161326544059932158792881888547826331796012401151032891405832033501167292539034899048396407861988719397795074527671302003263348090210300886811323063265514138871540304034266122984381708471927867529117419598484095319931847551621670806395836232820345125282993413077986503698498528872687090000625710471902027332622796483879948193584826439380311085268106272223709515010536666851891168371098519873554959450790864075297101358840556405442959870876205379493893717313763496761545908486890928760006678192554102698387902085605997555799436905143907686419121433620344089869402373372577458788915454871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24121114289724210765699156299617314934120383182147410887055434988460263210413283967590610168173099445355574497693334147197452427054943561471852614911875522592341984918579328780236026310723612450143925600564753854168823725565066840745011700757193951391157563985314969280226614573345370710288958046146864797884443442460517467814048381314443796018988051005072278758789636182832616826196751390385354773830368577775016122300099980796075200578240780079552680490030248460600366583327064239670170956550694864414639410572988004888553061635034049071611665506532307168240572683132118614767846434855792891893773139095500969467621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20888964241557027789319513552705316971552389150903884528225332732473686796738016233695324080143718281081299570565946088033514909810531140545469604921132196750698579159441386842296533764489069248252623432237331703760481001749754463892008176422438465032961460772165184920653777823668658999484221072716227063280541799039753936786547132194801745637352917291525279198240334454210758639413332578999588484216164468295060665348401177189280855265249879554343320587271883119116174562536755453561695260026123069141815515845616845426352699794888189478389329785540110088754019453854266824455880119828579631366222837616757452431277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21585233803937459952383433226314190053200696261203267213468017853106693124425155724665996270934327198329105254959725263314050679593571358770961431075052579011352483849440796771516449348037754639673384708912609152505736466719141033159516348592405930488033361443969133252910846568893548884008831771963963670257009007612944124269758161636821560559249651326288267769706719858497278908500535467141644367916244456675983634310541566190076972484204032621760119978544935851159163877134991609453709296306374437958123330513218244930396499868750089568224710469196537126916761394749093754279411744596945160993885052568336604820021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20605498544715507432123349970592800694510353193714143897676524290035301152504877473468940243935677647257319254006972887482418198643870103986889881946017574351046762538421755771129529072331594163611469257908784509521625091436039884648188743339479843248204843441981762322514043523512335198495869589828789059606774129422147451819682159811071084430137353780424638475950375113244449406759902024741293630661918506441458467830176650855453759534827788511876095054092739603683971356105948516857079872078020274721710894540640312776469331980780056720452465753012960233364720877955406699751569448563890290952809895033995051710967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26401425406213966091274189684120485229250532673296590311633695620544624176754575911900094020296090114680047988368741286513738622656927881152068521226932342225633962910505402049193358797576267325978019610465608957363951062721950129051679193607449678223205114784989619715096353371536641539882411985443795297336181717346741137400167609549496105271541422580497128121420825438204819445399766958419107719496380341745689471639246252586095771324149658293135121945353426461425671600365443388699675094332428782626607775214857584720338606185866424555162259323033405526973831745049195036259020550418656284124785411975267445255091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24818701127913574455668727135517559065451622455918290592297785696804020068532129319534036541203277649966190203232444394089033112950519318497540482280038268076623492219098596637902727331872260728479895390211695451013319493108144988706373226488123037969800912503861153915037490982162604560150407096984717405477561045634479648511621048977720064610090951593497102521838950501758313218731787836280647984963446822171936276568466282170979238038256160287599043303820042975602309421426194062626707903996356835569315095596990510128483527086093732479207659921148694674004045652902030404192737336057803449648370031140141676236687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29879605354775851358468370621419417548855821548051174231476035471883934673598844808329385043482210660416966058541118088177421087888714743913765473555910536188287987092618577457476227260175325768126312267663980066569065655620298132242368646459787824731805980825862776703515716314322731643189152551560176586942096481342193432149180768610241046879501464095115843916772374609249529049587429897394324428845241283268806866321588123839788961324550276784854424379430786312020894921181395177188786193843263101906673313409445430007216406419318542108232520933119037303794659502456531756461768214615362669295894725522551257616837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21019699436972293654028547275424314816710579000494097891809511648162601048102214817279799282104922209831739091290867512497009185598433802313347013069217459422947825050102040603070940927724461312926224983922065081731613953205141341200539828580336071912007997369713953132885209465669710058833828181173058460264277779787871596603889540343905698132436404454556450438535547821043695982937389753729296499200183987771098651813186027233916206308949712375735286292258341652488229128178365453501755187650571225664635491553033102660616397939612000959947045193942305243874019018066539942545657941224903317786948257545305355343927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22372932910523397807998315772678355856958072847215029774431914820122789641557525272032133538196162379498403709082003915412543687971663857279819366955353933894592168233134653971787538080832246164844856067485328053126358599586075588548566562622384310943557990903374471510316203371169084761507375670744962619902403867648726874291373228223720029059661041131120671633975097779402689975670558525479121272559073521868774743109417351037587871017609188587070048553560258483317909356122336794753890457433476969455556594829101081667103020074581506854025773449552932709666623621219960690562813783580929884203732301701362106820831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24255512571574387952075388625984795569377224681855589585939895222571857231965739632889076403013987496745504860700937330567981093459387067055966247393792882266312608417292906210528999910757270683395761613932238683640383319420047852695360478943218863291897610691997765021209964394266093062323258500919297748591752225262717702761428856692341092804582200668028762501383980178378769194162188363868842629405829591481639606662471910419449736989688131120880606244898697861434672884811492239794615804077759915338211780093205007766632078914444013441155239470912923394912339852390853761691228263731421075152344430629320726755703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26066558973977514237335360298898683502187692328097941397786317254860078595142274800941863941870753671162398163277377798242603564802094303393975977601487124333422097241165178739923589667584945825769402744421764339099903916866265555558892314537792900019980577097679067432822468763395795614373123082367709121035255607942685168280305662400361407514842929967260553516348022711559698479605487405319071434523010346125105639567719413771826512508782174632859451739323764684215229704091927777462521478663966677325204330741416532562110366077768201914978048683467368325132711504723527426918563856123844584883181521451716727187913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19740130375577864700170314146713297998762689752709836977068061023377501057911179447857089295675948624438743651830385433764615438664206259896700962322348633027644364690074275383888407301763238989304094168867046662760038976022565632556120661538493302656382604038699824132960963379776806458083175714601130979526041162474444494587595199428787556640636167939824353953998973682716573638504960685389492760965837084459375806067453926846602196137405016176344026538640926878702037048335305201614243266687212131225762926278255195073136390235622568857735381105706173377785216293024133917324051529654385929387071749325087569392111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24638950772428215637668218110745978695914133624687731254293705707048969896979160381115673991470027106637858043533319310902514451446266164664293919184993835814187329742476761037311677388415674913909723253469762887009904688571610336266775375871015073428324486799990286166384015924117747787657651799615116873086271543189033953665951305974006080655064878573301477663888048859981526771486816921096002647005270880621205047748054404289508162271405308726728045351404998494284692133545039927497140242051449692205916782985323077299120782401309589892157055203931143389877005021748915396146478422792293288009530301189462508274939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20738335398775711737044775672912796233103274352606643844373245648265446775307643178062924900650762878146219969525514123863036882056961385759566951318450081384516852355830726553557698295825474955642578824116225546712328201533452814327659180577541853913198862406344084184637149813288368486121125538581851748491707018992383332769077968581445070442697266034812821657646068325108936991265311371317557283561755501376274164741486204430510183957714722501042643389029258207075779631219001838355283554615609272087066815220889008718316849644335345173578062978809758811286798050661136788030492908677110031489291955032417855182781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26122752191196184267733645661787668937624773857313155150151380098994702674387186247963934203765810526032517551305240294541493473228587000809576647254028665104460313132259010904737090067037283590770760316574222607984127298749897720480735526788648736745626541671669097957353368759475262975279752077085668565718798550101010193197510022766964077310202076990690872264007483116797035378033683703466569694397880174698136661752509148742594796700122607109538578645101842528336054606035166095615978620643938660166627695362686253644116069245876595184347170274939123685293267054132643183925572155773070848452999362231519016392553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22660072068364329901308240890883989396989112807581987696265807810799515568694368605755910960017385295332746547286364940911661585891398425165909938184950505402026110085555781144317920669946599774565292273422268699088680029958826961815583238959376705750242810514366996181903018996511698308060675833682987357367709745285203142421245614397090250205357317787553262020314000583635492540166073555356555080106109237784939611157213900090372830371934661232158757992363132849154578463417962469859917295209505913796250637474467541888231599701004807566490970044246023291304175971624676420391886839421900392418544839559206059195659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26845599731221277497268859445253680235114418845392970342293438562574204193861843139221365544172182896932866047036766974186254052147450934797539274543330762466220403990203483397196829493369636500422037473866374465901369069510585648384467938786298953702881456568918493294180918358811020736747913726894950877562150913755174959736569464665692788178092749356159506069835182316077183694036211285690646387781719356373630427162135276982350100573345032388505293737645554059743252681354412150922639319545003993401920419782943260971856711737085259235985652624357572845822687360557706378533048430997034183402720066540016226966613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25959903756221097844417500861871413281195379098053190777878252732614342240252416443198983775094007914283765422265665261859080571180069049809897570064111392378841470146473950540083065697549445177037669781165138070212731349584281892124101260849713725006323351844752892006998103000651502938056983889607375273514624520402122078562344958105388455813040373689306405927973397772843077834321340321470689198407820874598593260193657631781380854852857969753232609034000987584262165168194810517566098198316314839783770261396977384539257897061580031091513851000113177604255352342243566545135995752698854073760498646468539050374117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20145888292185712623584151316043302474670692090824869324649353068476268448749745007342104779827689812482662723536710873225529537017509259718219596579628473025565747341857457236833076677700313463588288863288553126524863530297363567595475723892475160454542460910254329897082351861399813911694598862136192003656707752537419575431946274594450758238434910837775130690370699828580184535669081476153592528722922581433110440788454481640965409269196674668260825052486462509327797719266110408740901621175547418804055958523408494480983187411133534591929070155464812035416782584126969113894736373033960605207121372107395034399671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26711109915313824917227408016230981377690206373922242349358681812115595682402051785392974883492409085373451731960147760118054689249620900334026442385769133732343671466982382941101656148938422904829775584263066978481817131196142639402091091090942022622031856929035696479618970253698201632766490801193303503388936956722890155225172963762457270284654369456746812935833383148967143451825115024935149592184713642445118638356794511646859293902675752750589620263902303093845735461677413622272098716565332655873956592890699560654584089711064188672451007335180917241428420485640548802979034308596373147263459471017468551684963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22384504707621928072930833080545927002398867622793842978588835511685400451788758314256712187776637671654662064459045656340474649204311861667197602735367616807433940003233425299499093418491965424396196284347711414043659148662766245413068045009891009203715562328976298852792681712193603023250554176648418598204577344957715014943611720178903115715986518169215609695695590711088201319753151659180290378093795535975634272187642631362183402430941337159039869754051960808587056026810202331511808053067685292702135130929413409562954234650452105174308287265792641842955107114816622809374860052767222887943826984492347473041629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25207273401856821362512884016213507299836081165186319458287686523614797646170924563947221098768577349353757263098330705748459074687638553277841968956615209543374242958482714352279638222154270036590897400409466857971227722028549825362842095595239392616490310178150904221823103787656710532109356680592126837970241201566263175107077211132790895824427663984051480118603591075235488613001467271700989585656594931576225595548360962312804367829457983140441061197669859669774303489998950485301708318816610626457095195994872015220104635203615952563886479415038941069050421242805490318762966532626591840214783816156496208852909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25562892649752516688728717248974544811865892366887852449429731858071363391445003627698188425135204719626301918994099748651188780013746965331553255458918337713654264440859332034110112934809837319136260418245880535266742556368853139104363474346608963528045541386805818595451239828996055605100073032287232593635156692372944168053720515828520015273056350709480782033421120652467539200204434894964601266826699287037659092726286172230586130816288962311950023541596246995398407007286598303650647242744800117613254896052305857020692813285797532950313018363826718860677174107075365251726704950579597589507145410657173751659649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28777091002186647093831853896992945644440674364277076201749003984503090161743190266595395725418216308052451822309971426181394106583579251285171661591035297384235937450893357671578567501484413127598655299929144769519914050978723998134204752390452406506172887321260449591894164485089127972050611254942016630366356413227564738227800181250085989600016444040386571792924965796223847023538092307073257244849109306589012377751154729462290717784654154916631835519750511949516389637164556152590241714217413414975036869577236948135086611213987712726113886656333615447964946735723076365583534098816701043273257824590657882811251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27101692200239183758722576828851961369910020781741402368912937577085335768416264570945654046355946624961876473298479807324240468177169511482050538111502132556441946266633991224704488591907519783493975765832676107829685372558869294478959633007242070261236363226875971505513981337464434523561361808250789108214623645995960329075095558296569410990129016783492300022702218320723231652903012272032935581693405174868226651123941277653160936930112293385018528623174937693650844590637371447864178250925665407199930472362254170694028022871010727722299045064431301194255300733268579425049007273355863218827570329765878803242919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22295767839896229006212014087640434115133362828664772611582468265059659366445517863988017688856617800268077741453298684947471433136905897572200355020204969047397681525996472664068610971236864872491613979145801409861778763032722688576473971865839956017516128510627536994360637420716812833687740273688153993664223171481822520460497917236039090943500158312196749270884395063351462109668572544863343810282792725565154272975821838751297424948409620269560939666761067922377803982676975643324315382127823530967651537218305744016088040838640812026337818234389421731134651196121627199995006759031581847940485021459071532489019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20132072857665970047438748590329245510364525442989930281801489968858581393478493002413683637511766702612277606190943648597962558754138311493200475926975822085630863397540328723973382813471965256234646748498085496191231089864804785410541729071026805826331581037608099138295495465029407853542660012621579269860566836418084204881221319078202154395120022909418833926179256639337094166631456909598491054902410326759633527712918924512794819062224012739632452158231098693826353667143700256604196463759907161586140900170881815132250154679173245515698416559800761673866403530128985951994973788073584387509501010126575075145559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26309580210143290039798346470019783352028261128145533468639975933947328479173727693643547094795639683697470327841655681793597132448077011496948253999063397617140086161932258468995856766768848777601403411359462987036595033710337611036286622388104559271792402277722721397582768790808379781518684729465327767351723235278696057449380114608591244796231001768575574524145289639805299231738635826216904981308662193274736627654930013058932596646420785367079698335898404454028724972099429099405189027287244540034363487405998507879328281612252235247046053402744920659256644044274769410189042623370984285242452693729623050004419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28298888260974832069447397291958239701451356341481185661699234253425258185102845371926878351779788990702016918420473345722252100379862029796902048864008096612140270537747561851825714033187446200346055348704375337510496498687189354749412130265868127286092792706891856944985780409924094128687141863238916894534362512480978068338114819298648704610011500491005571300340776097516165057481557005877963632826315401594677117469622878819623755158192011564583711714943208832110099715027329186365988768724248018907603444133611560887376680246436351339096396406215517816502774709206378694124469152659137189203966410307882205320747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27657766249003545224455158881926356931669176587227546035453696215102068466956278653840383605570333708619893661672641571282355758917079849505264932164914364910409738411954165595225572119012388718187632964356075606974916894932881787452349787206581282613788988739016239348355391408440828683800918636593980753773844746874771836532295310215797089142835323732966294715013263066417904921164115559714789616925786236490195540824033438564318787442030330631958129907174391753947025489805896894603399889392617683173764863101021168445803155896896960426825123774850888936594368640564729101986600008918926425996217829531758499660777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21260168327190870461811757584619568654533248386709174884008691936843725462763262626786229591125116936488050270003632042816282874029600260149882015419784535941786311198272763889992400711249915107888147460998759518158608982087930614299103368219529329486822176924799786119184329703716215928655586117986407197590370611159846602605374918490707929371868096376199694248995096811129091055069765036808004983572719564609458463810173087842116335174710395289604961756354202429439551818292824302608797709268765230938224837912257176470169969725677872985165865426013384197027301860212453961735496923369670098958152625591564005628977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25097169026116039939266686130219226530738868870985965894619192342009286756027630971111812533659549212698443248599550015272695118781663495432263440715510625415793233860284606110373303331456075189791088571228771503232230343252185519512669026389589763630771441804656684558367392336308490382433696616902359248567605273798108471403195252128182244623524337807370725817325564900480185521321584720648713542782455004991175192780840381788600511465415581461614942787702913377961031950479267271795850645544000591417186308679439675730239930416772027644805661225922513438121898886979082338042447977597865802986385910382392295671403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27222151035680743520946583209108865958164995622861783545350719449398435286815131891309133757180267082243613413974819091039233776483726579694707612145213395574849409765136525715173646077942628820960087178590326581007913237629146251786674370149997124899667700624185559064845427690074687645916060787257735682547475631925596556671377456096999498948456788398797294232804353052191007012241985160916556232609838468704014134310734105061069337143819975179382830257128976269177199046051146724080427141335259664532976293244235972859757438412872210964439232702327524495994564764541801153944041801516883184375942711884543866463783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21930626631672141752551232099018011422240555393728731500344415183347095499735821226028522462478464538465880231750619551776043163786078540972083644450044732576944905975803789047572600700317954587868566932094225358094995558318337183026427377034006171408595378575711540397939768988340291565307775717884143481770760022046030902318732243784586512300794304981098267386777218526391139385715018895398839964579556786058921241002689523523708646585638306942283818004879559004155115109453095400925631330004905099826540510892995668915280547275157895757564833074862446462107372007825350995969954085457582169221831225070628307688207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25144109124294869776612204323111357126786043335398888017958793996649103225625730170924402145536294085799551441221198125416138390212246627321552892450652367465852686665378721763292725133395171931594777860054836970603129799152296929490487554985903870783634609534950660152542866454905079534954383129821600415019417196385864646259936792470066537112763812759583528625822749497111634863120302976861127838834091410512848910978258765182517617210136506386913664851825197572279087312094865975274619958185077654797326054961587472850917757428221136805128538530134917976577716187486350225264930463249993327503251491580235316096729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19989748950468543609940276573214607351595984483261487609065399052214318534070353439999788467858776345125474099515990617219166256927980926849875938219035208873050027900732981634581815682853197671518907369187782490456967414090262402635065048373149260156367404515921884824354649014528778206483314315902290367985598938003111693563539032668540426807012403227392602152310909089543508409266656463576174680961500120793852414749714066760687741283555354995452898228557800757654594375928317384522265872817200910131826083883645483298276364958549824655295685491441316271073378698496706228390399107587700318099358166790404547110881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25330949128486739651971342988889881203932638412741029214278320174015562083851495434890847482883993815007154599158418517833657198683580194949959405455072911131501291338560618243118271868987132518717282792164450211227400250865786911968785733238159441060383855260545356231789702727128233186034441125755044770040924621408502446869185642258671821844847188509218055359640088540210898988857286081756969032855102829251770604268389751560328347164589000477811099666179868908145721589062591614602477979207532557475581702201347830668359645633219434269662709801498342878050562479687472162069419850861228457153066695687929691970607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22540035248481639873085714496827448121502705136108912419033232895425138378082275324481175842625852092441493524108696843621598379773885746572247801329837016847948447314952306042796382904341670546203363531890722882875076951708525892029936155702473749080914218303352182515808466979633073298534533278407689121094592226730032461641820184413282598849493140662594576909410760276752602116676675849502772810514079765433454479505721368944929463930776885760868460555686729434186266659835071442631835696604332118774341816947418421792688023555426597180171030393978300017522000887550722757638243559452463189402262426810393203130647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21001653626111435142466261721842464122344310260561136868459338910696569008937247783805582746520511662425825670209325648610444094956904530412042807078045681084608055954063198028429993420437546708073181563396949728691658280189146111799334416163172387855148197120528045177779251878650859505006641583079030740201715028967063054826569442909645420826942684248914995503076072096661679391699583408592826120325644244761676611444758607900394293906271269522321967285974240788785825785881775521546663615440107314818002198536881734092340638522882164724117659562848779916837024678147121036942065957140176188593449270703994073511053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25063466366392715931060054856739752831146439969866991278174223158734383313643327520940380764626044104046811868805611222051532435620657007351911413567812300396932007004531064225984113550261926127951842719118200731490044917058542435980629078484903332523707784114960272633899766221276772864600416505277357259064679980978051227798980615565533988035500104881472500028764242819112588924161424591238286451215048513063145942248504833272355615457638871102480617159465282484304654897750465809063053957439218609676068880401922991189421795905530740691638919495795968752113425972903541606116004955687879385411005606714579124451983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22615444514708891218407067666984586705637990769438152970514313730780167152671748644253803822057972455055447621419428592106901448684656081286491035680003179039538296555044206497367720225889069514223739133296095125244144091027880100491166611535909190823907431473426207276047150918612301920584500164898247692499571895892354517850000477589242315834941654796324427904487667820770972581779840241455991233663198276072940591177992411024083814414693166741102673697612968167227306761237854379411805355432781102078534607283083354637775033824009489675147746112025247267739690832152461022049816103521273690655399089691492705526349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25745160205697454119361564526103824667264398311388256875979795672679881000594969565359218317531547332181574721938885187680917633933583160625082092707776061936636860881991919387576861003902356071825672980022645271045358981325194708790249055831065208471903230094752344416411184733384028245592688498822451516362008219458761006550951525033610563567712739535616572099125517237301890632213435496642116364919566402559702343714069947524258360655485993354656109794727563143195464522839429244624422237087250029972040104221865376482528563088441987808663014860860374195368759867050960928413908524609001862889250866795788399057029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26045636755858034532664932342262480560672291238544962732471466481599180397209181675222430951327527309103206833660882031653011653476231333056205703477756351629191905046374023141326275619656467544625209629095760048684929142292218468856357496511814027477810109827189925194280411690413356709732686722107438378368488151856351141405089008226979806907384745161137453072111448882728889083801008157196143157873165444985630196930835861466006429889384075290730388856829279881487319154442179331618369240218187780545303179518655013826809480582623265241666815583921602406551895761554967733953229932864416671327368647053566816327109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22942321640735666264155263171161289552422453173659337862498427845895436347831559023395714386999044407639535742290848723677765749293040019174709463566790837784333093824027603159704194863050464387190383370434478673529034933961536257597472039754106703327079401754582791306591648315982321169482661523701495886129709095729588140588374130474548128521371747701111073974972082740524567550117152681590034679642472663471777948708097821687002415974389347594706506296710171862458167665915760978637443440615366506925193772122377502245478853155525103684662777566682324189638025928558246194692798245096363734512788303227581755570609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25868514467521922816072007640628379622818003027322198991243805359934711937107955496233082692073362090198921355480470395991763443287447956204420206112661325584456782474284096201316459975459047484230741278701554384101257949509758426260966464302760397944402574013200886509447367343883263781264718193059370042789475856682499561516117694277028060533888298189018140266032244018795746786371775284483306515020387764216900226279544061906469141035345808964893271635576962376536887343505749953382729056369275149800471242771216501179185428201402519449720027609939374756949588020732750337424091174358102598330802802789802794554111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21291346108673049221730901477512537825990268477578317510207819372142885523209645061828253518060960996345889579201540521739044960221495999982078611315308596980065346434291203526702857452037904019147713214043374161815057342866307030494712858455245457427492221959407517891811193738365684517567596006051447541749439279554446600427702004127171692636094873185564906087390727407147037954357780595072435912794364661811095203800115533638891261495048647453629741577803080802021414653547653108965611801408269973844495773626365306137836063976125521531933645381416818921306638177420396249230995358682322280656866068000459862550183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21687190217883119464447490530652915715750321134748711600022513700507329679433117945025973373629491138777986493528846129862663663846268510459518730935115946286669581938779123457690800122514257916291034311008949473596515125554559879906769607190632969176453340678115149195227211200544850141040326752805912315397033689143108653952932102835116817220327983849731049596080017899507367593872433092300961133455982717049144969990957481184347125231821968337670748439454528192125411624815567647576299207618281886899956183100445916134816194910026723600065929802786378945233829559015021927777922851494748424316563113625528242945591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24319703701062165221384004304666667304586998200859640206676919233027312996961176117287259595725959590022733407128019269895503553750390482982187585292491194710147878271018444279991611787143906087562930007188564955811475375390895258227971108797798754553778164084668537101548019378969300397375407946650174430388419899141020985628780957129473138447208931171916382013772135281152134694931915416053656327136742506304397838008026191079166602146743803732979707770990552751709770364815202297184406737848501499457047793536172759523708834025125309893685108221476242102547024831202749954181178791484524404178596856198484319803407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26536388455564767442248933090571218413299532981288110071386222547173504222409495307760630956325933100546681544239627506799016249903412059651342376631532718226818928155959300098776076778249846581537685669965971225853462470166222447114840795205771219086550261615042207108499614785290639049134613468464011279111311757039634258853971851887008442619004882158380217393113506144811463434011433555147829345141488318726397851407332731317565421416886290055021555230290527310843020882656382909793917898080467791562443730637308098943452825758172782253903141446478006763025780625351701611397488176471196501966012466690445471249447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31534020937073067479769679542689581747555268618981681527280476359597805384251654327792996743059842197686844397211380345942234063973501729861536767564173415494159350403171323263706421295668082554806237902121354397873345355890908900787314106104748527835392937891366553783889093419989036014696799971848672403171350675612952315374721581394244391735835610590756427807618785630177172985359809594255894003795468795788858682556422917340510025835821377331927229325562725460817325121316939413268892646413056145760085830180209547331321066557116516590574352454406045423977103827289129740153515783702945332220452223430796435398801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24594555090169751285290921269075503687039804041131973091009530775417852169402759784747292492857202744476341343630224343204293983168925757505844000313959355017447959398410194224456203078924478707286957863166713014732768825444579251834015087888636353549836857124398987787581521611389533336696714233611369479357799982230537907734309510411961922727125414314819310687863331714714918269138708049467514767664168596470091618315893322363495681160748824058772861072178344304862254635116042502160339921196583879561237014625703464319215875851137197970156430653994912518548808711904996053432097223449045259774591655037367881735907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23586123630283897561004888285548041333535905524332447787938915777072190388192642735167634132009188319106442257820463687938352072053689432183980397695205296215811747605945548222163702565336247361030754676138605783742371640095394390628228827423165600407349730305995288217765410960097984107875213854371323843267708296141487887959763305593735531957587998982413722396613020694345935092285960438833739565681976606468900985435757988072926127996717547176050349338447306531878502825552144690390299305538189630552858765281126865739072367833493981929279401362318090874247268808110814443236780765489412981022415933993665410025613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19603686115042126522034445259759937603434051655357945600336595645992718430480122460612246495569639701180337416614847230226980172530473979156234942429592454293340004590124484302660830071488684283114697851743010727474625363343615902656117898633358600531841293431666520032448105833519100723931857422892621741713272705224420395444066566198786459855184664177839685949646473409112093754437836472059849064616187008662677373972646038547772729825280447555568866605100965954230719963777512919647882395888136072166790449237998416146474011972426632646005523214248490419853678462711242862529848870312585815483938477793176574950113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21485949312088250327080198850964657061338836769905068301334894607181290507410703006150749785394349863637989946430850118192156644828888554777248682413946343069894624528442714644377159468840415029399384737275918719321246961495047139795312705277580064386218797071605001409932210606217425347222606307357508058936954956359805393788377534551203177889180393571276516956083419771047959179051426716158279232167706837450244283105981202783551974632863957435296040285576804914983314905082333630289957851121729321825720640734290929542070451362448785304487550097175205378381483639015437427007124770275220972076058130939812802910761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20604989929590581021968233113103318636158631276480647748095401097418014150037027706706516402769561024682604203996763544277289735212313925931750919248086383300034525002277093990218198817032871983291669956514187274063411118024347483457405036079280484364181041062712632235399768318996293982743864885902209182840803077426647579224306691503355125234874145708287545172171841186456595071967488328349834966708756638667457865427126356874913895849787474898281888393221511106541340483439078570054110297312773235046487738355876018287169617695346463875951258604652604353222182380154031273107189885393034257427036399298579184149619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21643522889037638948718153937269374387279737894866720316966953475497728182519041558188558369552986334820915808520394466001248431896221612616504446901711398571772409571951092813462765035239228478401374651193236689802391809002179674167205670030913896395100542093959163796683345939717851994517593072854483464370476955473961320712331523913463066759298413053876397427360248764557799572156097684256880194322965727132918241358739375480692904814700588549659471915657486571770304075933549082326339844215106140334528656782709278359266976228612401627194614149070845715697555990270691943864637244274540004371348767584154245812749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27042230388583969701540980552464603516499108211255454879576142415389135556517517571340113522564384602630776131587341202524949710355394549092505598932160312066184873354588446436952197320165366576415862887347276704596747868624371127017330906708169068245884109352680455915400632493482566697976806229771992793610455309895656031140156537311782220973963647134280335253008240507154932473985241106199498083169287014801471260758792416497322944249111382540705943452025447789307647728219960614693226264240037347642915575081150794401247246380131531231044156589810288920344996677194624971478891887576292221171574071704557310641589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23995978470310544773242444035983703417130193099992529990614016203542501106106296112625145980646472807929134506315187351158788030440797719614649986717696435570417310712424628153716641926355747557634491002895816347672145992830640107539455348833559665202311177029226432854210428156524655345182703176110601280068022775860875914999440450982885791453223375888485164062565874361569826870684543478774706745958192625306392581221899229044469785633779293452467722069376971172931254184910658529764694128894794129355760328865390073639769839644255110649086144510550881375846897313469234783016172961478406558572799269386462076943281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26640894644092899659472086828221327845873982176148847886174713437011431126901008458063103396988155924970774280642530717982727721784326883112139665052395862173701334523817241703118888916968026469116001051074396344950707434206920448146660341219722035139937068881675948379811469075974141070780158896604703803687033195172292002114854067782944790403567420200252633158927461977130648496448969358089392200234911619554306968215456925035270773137528936866858985766449557777656433460651284108996876299649743842291850290013107457586785027674601461700834100004483577964014189469979025589696421369654033483739084270485737530679323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30409267167964120645322519497860614173198218405615143725116771074718987298983619076242790157835222921797235257735503422466503530557696473388931870882038563728876914873425691551196135214157116016396075754158022041770462804939890617808577705521126251221723707081743692616474061005412123381678793399527315315156901141609153726701931538871064630736063354543822355322459138992891196165222107653777705254175660656285321441642867437272226314602096865400034504801780017800566393302447968796842897741784121605220804362543535276264070627338040757507395220615879096255117931056718263671236636693247280583364279817659562475860249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19686205887246183075485353362739854025716501473052548012181326356669656245374236704044388926345621825584105907571393036494523377669536692004970864039900610567126974502305040123069575104522135732505844080172274918149053885796193741220240322147592434660613705975225018578269893077006939995423836408156195897664465883594938006896043125128006665247618202838213794619018284098229589266758899386536342610483165439762678328476172444475212058793658092814824084157791154993183057850754835468508414939952184809391451643990395522878259229728579134322324752292089329742658223919603457543886133568871078594870012037296389219899747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26477314556795586941794510631315688679054927989331915278287672288912882191704881201679259546602700019849950448104794214500111507584958990182940822006400337022608490382790279589183174831581957299372538579230249634472367097501714671658122465427759713294884020435550704526420797639102985117884060483248669327124095589119374515712696069417571602840183266675518125303837329012300086530296730045462614412344090170856921629857217271519752053148794847333735069680223176698205286546134695880436376027477142066322169437194282646109518885178627399919323698381631013925893319201317415341499675483427562210038677816779061721835121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25273939902310194077683080549091104929854669983820728884202273939302892979446025585002030674605770257004577173729299604196923584386714796996128418401569654974565936072660705367611809369209540011713625217635200982172672457371071462880460258770451509726055594185544200820561552324538427727526547777486009661637305868346708368412261097077865679263232334775129288702860199151145345440758165262619582866292245629646887792874295987693136145514675796460094414084228049393745208751107262186792362484063332124653694321150788835531898081181215771340497407439575500830812851867251390521409312326340046182775696282414566899732783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26069485979816041640770733405521022774840548108333422321472987442759510612281519702408986596446460215704679149096349722104829245602939951209271364930730961053391410122760309866634269157148472734691336479802381254051808619167729762470986276827392308678880295504531523521801953186430782977726380253492969153303628890910220393633801805914178260728888424208865975045906025606570255575924070402013039321605882335632288288968507288579119503374942624306406051398194594868972270277370173563992235541011738907286666076440690502336037456932956901042098659109764465254886803631124106252354764657247272626008151060710001362146847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28123605186753168096892998028542669512339813934564410104412419399122309432262448989372231976030452084905157108970483488901403078771582773993723686907521254366939870806285763250920025123803450184451399484750543660917125456416413991968832249878669403469440914459768449893717522269900644733204652628174061442146139867377740731651387789796669772888029663037909340969223763847114194380307024899390204312958616240736380643735906475449215302113065507756452233095959815821681469837728379276554066893959722469480300024598304652120675191439191041492522854262223101933139030492021052604236296316165989916447320049270088357401367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24308632081786263808826511722235258542271823342533242693784604227117708318018765936969811593649314491066525554505139410755044691033477083896261591252553799992929385114423276519014184313850033381286305100845569211514805289353486247441144117440300068385052116323577280939409423395297243341388258639668410727611268364553294295158056471024783107595275920095406414948289791739744411561957721214522057734652256568328282307964037333744468208021891290329259889810264892377106666170130799699754128195685122934625997955562166229315532264189870846386992533826020033096668331243844688733355018207503657820955291675220277264486229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25787355822543396763988047998322965565854568196895563868182065725363598657500260924211167191894734496273557786807092728169682793882826628471407349525629873654280997829112089887976190687472542547894748592283365272350717583803123935170022223781640478090757871653117742672348805731832290737016751891967579787935325061308265335164958046772556990170586236731347967179383672435828294665009281464444844819971191811319506836485443579109353809764690871352465035015246753974519618316102174789601014318235885118589575063221936271170312787946210059579890559923532284218027207161182339772490054472867337641523951829942218931507031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24941416973888164925129581516202021583246337449485735263255868050368592326166032872777812665082607611931751152550186462004462341522198875992105306136067517040726282309667228568343811364229729258534688114321960024752709875205949632815262281748686396059019060963264397224907419604450543367270756801104952088191297360655204458869812198389003767789605434394784364252646475642845559822163339527744817714017054298345981271730798309550675912251990023543911327710616368952775218369754844035682517364726492970523522790546770016844577631965392589878360805749426266411296004037679479062286940324925038889379076984933343744109037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24446368384904306594015545794873286636347823051123596790733994566425299862310757329514165494941654092640168718545432093378967256966183851072252744137347793685812912570531252644037570936387504879509945594503104860731180413521791872160651342674988226533157857401660889613574306896759807531366077272303651701187794231053227190521234170624479641086309143802454741112777287339962428555011609484253714614149231679506261781389120385407415105295948013889871947686991299232834035471083640704578050808881708016666447947653795073351287282221730471431186818625093395530936509004527211514490578898254373742964415841150684407516483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25794214223292016343028130550025983427681577229614941993097318085408298325324573740342909636966168219660741560865946305044039693820064932914570854778527356173738547867450569374071488390093306164213746612212108252996099118110341686388873979890825858073644150734049433866626049589129219173999820490728193061467194636299433070037835321717007010566431846936702920419881875510253055798408144624114719678222751293964952553682418397238096523099677279441199997717645460829859674589080462433805159997325133580378133096677464293968357038405094758106633869456939088820558184235901038782301678063330706410756263645240465079144667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24472505938355200462322429463873282167573288218969384657933223763389780574903753015260577060172903575462234110418961675668504825562381363786301279677514523273613246022931516991595427099799581601345008841905719970427595031101110766029012015456734043270274642671693609417334284680644341111557873554916413275563949356737715371936160434985509206763208187630878353551594744263151462366933916464167846756541511838005478007953590853226106141212369941165758303129121276740014997265115604960346876048035548348528483097182349327232429048914876781213228821375948927197990349572887294365051550801037185757733588813410563312894671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20340427758046722295457588985352424408219442774515685004324874988743287812192025140093523668890391816791516141788857543387260978355235692454025378974590945248984170806752601505376156710777991446061177734695234582876354092766994476572846308858984409985006669002076391122684420184084085884997199080285977637958818451792615938770789017987340147867665231887819678922652373764926465166969401861137783349906736207568562598413631853676763027363138612566584222811597992980722589805462890136167513706519014699985358851759604993705511333641811342986239615324800930902611109583339048435471144392103342851322790993653754046406063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27215427994208721348343223908831691719677728822169397953041684832031195128550380420675094495365296158994537983826860683287192527127270553789312457835573173897168875335307094839185351454972452552954935269571459431535570719451077407866838969629445479830387174735096067816134300084564547117411325882378680616064043066173856880421529317747725076858135271129132469363519907405291120812623487797255679863203969401728552487649428080943665596050360711658606086732864921702759944371872489849361597743850728440007758017261086628818663585061096134896531998694697155972999080467999234254824982655148967751846473077522192283183279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24234776301815252176781180385538871903023768493959208663300987404097371559230562430819348654565898619671161039416662005280066354040076874912424608054084441836436884726245275520840513684599177935616128148928964311315140981638887321111800482037303765519133062924203820588240311240773930460153398502255046740152131905916449882939084039273844249156817752720727113893994856198073921845532482367294672371340202660969913636888071358056412688781274432251679080444877194345210864761005079942581353998022600619066400510719560113729343502087064609839068464426968953038440015482286767055141535404174394179975512696838250444230577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24036791424110876763782246587218231225318714970198140903387667021554097899481110665415103247721568626080647343827564077502025714198621151225075268493586702404961079948187008942938848818471931510095718689259697934766434282148978256155370373428814371854633474922646772176538995035060058165310414445795941442570961125391309538906024648735825157718496934428422259326872813212515316380701883395199995439712505909128608545983914187775128447965900212782212217480642040799608943757910183205093574675445999795842380248974613245081572155178366929241647188858566996062956641819211961859542872117564127259302515568159661591482547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20058782229850903911354281706585257532709045273970397032521253633112220835841613892108529744134092231125865160922857138030944917000503231146695973056460074963721949017908295970835442489203483488700090590018024224168731666182195220959536490467071335550675424011520856682714781549053184795627755939764714449363182727079317006359087897258077483074893806500098796315930590151502920914447521036633378477622485461399988021799156091851660900471341588699071727824133435331379133688782914945046503009949318863762909470055740862054328939272285603036976473967999152229488938970095383217167266276609154235463721057848904424724601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28650144406482676671929920219832289674538732840387874655835457421662583377031793620920977567480039691239488061278971118444223541243661451110118693304892322653110847547013460717322508431702976082644253714841872167683900546630781262838008651217731243509238406011973632094256051617927045805758184700210679013979667832130253039525684434959954175258256805304988638106254650464441771144152455288971056587465334736247272058424131182602730483876297544815423623207357751601120168269913915044209918938406119929442209127798302198833794275764721726061195930298112799866616878487369932311600451245843033870440572252604968860634221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25406006256770313488944835283251825942268730551796526569389386054303487842985656567219224943461949648163703793433465641304413753362888869933310663780250705822809598462310654396136833583408489611916844605583947044344783951239030931611766402417150592706252700204542638533385178337929198684611089178037613256823507471965751281693423808930901781648071590177208641007869595907380281962532152587875513454624676255004765245580961521051582997234438462125573064379220565002722166591363670361913045844457936178247698423354937624259150578001204271968599498594171794846916504306535843383538695780106884567997464751656145355202443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18795587632876421210550741488792631689749938301553316268159665429118356891148327890056033499461596156406271330605840966429022006311210981578764170609075986178662140249060086791792060193421141103984514365429175361473574959543557446969620373940654456855296910631412358394539695957387881873268247900699998043634572735091764753750596457778360831065021171610730008598899426475105705163323306173545044255329974645871322065188862118371621638034179944726614508652842834746361863356391483953250888639512060723469570455649771205432894402913533629354822453601538500248218423969906391969312614557656220204830407903798170595007267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23952995938933733423697696764229618875356573245547799004496784502005247622190947454597599341983190782505252423787204753541173004428095067119119302783310815200105793158091972566843590163911506224624412538810626325071697018024123536519940322129260115836121768469103969136387590815246805828851234728650821502853152070923073017906829544225265685664272495957086746128471066602059087734131086528749393147713664597131829238071986623159596073562446399682053731595321525982313785504876914260443488231565411416578610910580431142469875986155725043856562604238602724989088967066477041004889202658217888983047103685297371532715089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21908937337006505694927984444922224877506889353838392933071057592665491246762081875655696640242305664076129053233816151636303732233390974719814477778758912292485677377731392097663402905745546308000011396974614846604257853286084028495339525033913645139718993369851179030994135035588600188729759919672385453678605588911262260162510798886990751695607947187355820666185799894172632626671517348202595204409234544555831039034895856970858975664558927359716284890341858670081734738968933387152483360876413433819702235570775079684181471405219755375943621026874057005116258532974259103212628204298865406886307894012198847102117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19067687432025642045138375868143888488762461414980239140266530510981374685828659425952298637414155990625378156420125657069795853771143559784977022942030372042598474252730047907938978229871107768739644630487463961630560354537864182139190998888964371709546804040166346870288918318463053089723976612956506047109306541513720139471521232918596262153191871784431171258711139692303683359948469081764287458531169333990372386580245886841029561630033881146059965736983701904943781749658918297735337222748227216843815666607387726638571827304599298077515081460317356401578387424860241805674769768462994513741462180159169215270547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22678303244243365678600918277230917093151162299465095708400658193092976778684914368748561842585385933356952998592369915107956485399840951796469539756404251734088673300790879735701682685803990296744245182167138617041819299365737639057224408376476187095490541634331839419822673563699283674949729463269637973772994684365966772730261418921549820636592827537411109170901676399467791519051911407136613498002887229298219936006748244632807164735883318403211081498010568514905762456425287837520851994152886294747612456570524200797783883353955763449395613331835526212475793365472585967701167728322261771202195688522389462626837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30721582606730704446663786189449214919428674110118000682437770075706945231071113131874310394179180134276394071418279227957391879524647243731660590291130287181446360956549126595917554423945724049566358296987715137302533994497218547441749976399988232350273247791338359694478560247368621193692801113388012497996482732355264594424150070751543418962564063281181302422754458364659719065925847637374763321214376469384514607924967127387138335896400360314094163189175647240097236594460178185310355091217556476632413790607260977534753121485823173212272954829607652979337958937974318106767833220041830389773841190273083729516313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23669430073767816102445857813607549779865941694537885545979470600607827495773729532214737804047071147933275453128997108459738578085886546089040595552740492860929063131219728371432055338141267794734961390091117254543210712054863153932299316312467528258164990134077100959960123454971002152230229989576538326712109746825570145049389267835323694024784081501964405085298386427385372491424432844516031592521662806487839755891993744048873862488129656818006446133289356499148874694761925395086983848714179484310961582864651351733007334993868138339863829626368135091968744877946298214892516815456503479530366218763067436904251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25125648607713345643528944131054026662253307247058728569899094139414513542378495679342439072184305406787013702391255066504220573303386367684932515840908246891518201576119044093427770715591304693801084144638041711260639209400206531410571847883349466226699413124648735504074527435655759370326598252624940697685522253402532674705854550524445774718232816908799144555200742919015008134727384941957305470226322816513955265770061107033502751014492665609993404907685932005462455502597320237837470617947349210521943050502402567644701235975394595260471113894544951965156666980674015129819373429940787770005543330898389313686407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20495232770909806330218983903948952966844587926401917712192715394332508201186363288143285516201462101227520010860925901502234088567857749385483996488240706866293591452420648718125389220305941811744334941008572601488262762990710423763486526792030342773334951856475039740992676415694599485257267418114114128702658335261346557500618987240504704520775189897110040666218028809357064479195643038724488826030945548930410603126860898423694563479419382679534471043105304880968961304125657654065814411603371870722281005652785610231185625328462107276567270283745727922322653401610405283264216178015330090012108640106999680420617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27173638511866197843637255345428267494717867450820908510394622695698983889614658431454669016409875054897445850707426236741632896258268038108697510318149373547850584204822007448439340597665672676728034092062315550445416699958930782768443227190141485466329212299016911891726266605354398429376133337889440569412442069390672918840967822927937050921623682026923973594147119424234968257922927328584838912820194595701085919906336750782703568885448064795942324728861667693122068572979111641968351632838383555621805067625054519712199562207024021520739296667735396686281404312951888489398697789415703562718425999328911492379461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19482900895783727224660382462206660967213284602690571432223306604531512669774997091411331088845115690176688174586584918911135259548594266633649631590479658275321593913041676019653759896323039287650680884439741890670712917336141366142963115942175439232415707693349160507019258378092705309991523346663780465420644862566121828546499321587306782536168370904573556439597731684988673207532278720246571141104244708805469044176133382462065583491295048763809514073390662581103217026734485555694724930833154939546123749519012807583657133812811574929268750946988877158278937839036419510249978955430594743801125728256680282450737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23832949260384843567282849475183198627186214921572925140899230020339786703598560329758303911223590629041044261654779787788571431568681834683569281452350794288633662128201687419841599350729114573441662097952551649381928987093418843021454426786982956156000510837539044157297425616392090824985964456918092060253571059612465404997662001739246999896953173414434011704270351114890215481857877670746079967534588165136615440226121247851699793656266910199399661730160771477255099556798187951964761944372814423493212132877269759785073146386218540392996815314499451084380034532991298417490800056392496820255850216119077370466069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26599218296580082674988622244533144251700001506357226059330572710960403291302809917564181911613284469212888341685127453252822034433285258125770338356496436022062691479869847265913010363488547523481538954107935733081879593393739262153436261495401915452464417350001006148442984931186395205473614914100474358043773175657723407114198215005398413003866690131518325090262828253334507004767374501398984778690933040412687918052409181628070166571671804249819679199483405048692115007637814359326916855876462898786836425080639039680307515554759487127178991384694459625499474063219496152819719279319137412722688315059553193021471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30846473273808876625291033828926648885269413220389350541094522329250889179758965741906668169093126096941417934794594198966999389138414781741016155585107326895266410077460046010424646593878191818469277108497551404423133504489849618665474415022225109078194374971584559626500003614559367936158260212920821922229203216698011233900665050948324884652302329162486560483062483445054688668529361877727516537256499245384743440876420673562597677155608130923799097193690428202527260443422474565518887693740471078289945980212786138631727311942814665206084608965448009523284108952622700735124880190616256434646709878936181985723253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24452507064963273492138296576400109842463104787175199884996396021261299504445251726592137025032789023514642807066811851068521466446493865830989841317796859205539982334749100184874862351605891721473154474493761218978959396787273553670049781127430796781046228473934562110563186416824922194218230697231904874908413192366392569841228714233191713951581473656260603573430447517010793016782016914628813828513094533255297630839214069127287521326350427381446897932352190849775492259498827063380417279476591848860808826163963141259474726224276065799947676052800659406103523125624185583596765671623282221973005214456557397921071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26437284852246148868533835094565128667648202579522009237379052132528639776263139963559209710011807950804272551806555413751545197968279658122911203216637669511835766214765528503369356409757822901046748386199160445807216786805584676274272580882650905124964856867486664065149382494260676316916839587641323754659870663401244080794630138486124279336067738345046368831778010846239350631395216245805551236446025395170891696195976904104289278961288805338942777956449791344021536523093450449409036759476141997350912435776460742436194393100423782505756012284098890331886092887719567901299846986157179393019507718106313431564343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26668684633614032077267654832196786468765322547296538928888901687712135272020737637628251713456633277037185821156148070803188548512160023025666983126059174572183722039797244596007164190731685662661203218884590584062967963370692240224776731623539288847068518188670499164285959451197599003554174566084662176842185537565154956171025847238085145528618522284690104575314839895227952471933858708480209945201306490045249970816082780186998373797642353506518602491382203697500675858967392031171315487377069151461006428710318845021006388284304301287059292194954668482163382433762845172696872128462745074034708929778520061896503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26846216408396695714490023027007776823610302011906560360718111225628170601174323145847200389476095425862362559802811551346739808044706124442162643609900103846192400980529545064356811614758397227257105588240175502699338954034052084034313643988931980378476393411532830412401111914111226562837419803045528821724952983053276042626241973887969798407597657127197827816372813640636087674085197716269533700023061919037995571406469672365052314064086503540443052609297977118541537669789597411134104068047440242266310783978791032302994736555223183812133348464206425363050679916487571984980388876807447505554122517108899186398911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28236866485490296606278519991622015971251558199458449454981264335094201966410313462916694536751532294497326413340479427135636629817987279496453003770662388392112574649428792586560405291790511923557269866039357137078660167718438775449551129569086635517468699101636971219010228863129383933520616792973076902983901310474266968629469599199018041239022485700487388778467168527793097180860475463009607730141929261072274465320704303800953765316176516921278933296421849934789171770097627331750835610922613152753406870108007365141586144052398331228192424529072763064377479758925446374599930004927346030472904923528145132137941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25955844640443777556436719038670874040567722765479286848779380609279762597243669084949966152180945533428048648859348785964742888106677306534535370503685561870005659722429622313598804912528556862278979815514672262138504126211278038640332303787726078786114638678292239953296640260084171470903675266083279498939448573757652813114773965822441136984177603804707511817260131308133224965523251804216270703499680278078034536737522104767482516198589797653122982838858911735058912733331165625885780461404573783446445829585948024149277432537427907482511589813199243386697201028830989106235653273091002897257699475067746556344153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26809328691036531900390422744967832629576643733560224472409408740048157776298992721137111605669374550507050676470951044689771201158608895318413518518157521828199794367197808774654859536481976420383707465888651298448529940794626395831118038151489564496226247226417102203236895945187037688024981482307090965946357146947201220257636112665035756652319715274247857767081270743639333868384825738971444879784051246129261233296146421825974769804805330889744615389041993239297492776697568614534745551831409823497090410426930812929439808504405199795024664027917624541384103571752803631950493531814793460826191493582947895022879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23602748214972338948439626113513293323345969709171310331540230421474786475510857531539818309779986989159087175427145419132176764717682372564130228548413660871046101610275417237240498870383230910258806200325486146343043270100732171553110661769511777385204937661480709901251580951462181476011701764562713400980759528661923368512891718577510959537820410553031710937415751350192097731843248121708456689892225130046682884184144900051255605199115459163327345620520440386849377911953112828401897679005705793460111164748167213319651348265163791904709971852480642626863148114717563544329468265729991265984969123346855331495539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24658396925920958009345109926473907077937307555088678186479739149971166299414654566925142548765796040240551763086901920917585409830423352807869277896360359503095325327310511192930615499308104441267138642122526293499444985349356564958313299146750349636115804836208946200884176764842527955212097186748399455307552984844774504871491386906952276853744410199093726981500741990246492053375715038768403514856548143723379362006853786896608995181639641125563131026825787597915758386815405189990319122384113955972283189562070765414325120462465981914257471887136060899450250590432309639889346713325507076743480054156891707729159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21594149241648253600131090836354797290477635840449026994108005498482907973913727082800859004888554656495885167049534811928340991486041642337153069373238531696916426614292969473815920992965252353026500246336568786406020360837603250187376223704880041305261906767473822595402909692379126458041817415227424879041279971716606948726008261177553823444771350478714908911203735138063847704490521799647970265834640302988171956026905050247743841621634222671724345705694199199579588246120841764808803262562000707917377442932546098599133144714951758081837768029125781270495337303169375338037245612115349280326083344933660357144721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26533255636154544653267765643741050516771199870583758137611224758125246901745987474017690155352087771352301028242393189937474898829925764040948211200562900174328957937556836794442528451052408727085121557215970411977248887069231879745295091481233478635203640142796821451633672189704349731578946876355912668300938072129591128854530261074899593746072698003070571408219733027283307908392543708585175376894649200981096973443925378507987816302062394591668450955158323808923315026475272947973419594332192983512826975960339794456364498677904382787133784082324573671891599408986714884288775739129054483972541987377366357710359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25940179207281873559263853679442658310045940063367689857015037275329415117744132126065406065057988840677143960685974240762680618296212698398787158014414009416319198149040495014676475504335586125801931941302125830526265628103268058588635411011562350908608195246047336055200048824534212156975124937647083660222565771543511279233171018722781446168802067895232683460783510097626725647333854311071771189599929077038003097854074430980958096750052990163293408507955364179924396224179047977725227750317160527874289422011242647206194351682518415598457468470251351145832663434131900220217832488065196914545958900085126882743417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25177208610973007436171232898473553703123889129735969546190169252832282946714155291400065764055488523585540339132666764289465754905203861559909589096688860928585795596722845504659505354160456973162094748843081241924073469079954883190755619745470716115439050642442565418380094566905690716027170624391031580119115177581380691808053441252643084285344458608913047415860585097759511416980330422370788681904581519522997823507209518561595166340875465583506939623791790404156131016212903445320859310792507532577128481643193491915317202817851244710816982402508428697847344266102640224072259319681608709021392889519263071207337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24890013933864481222571407093634998921147206522503882570747784902797643241054669954236590707571620723416332187007977082736062962206662855079195988090099827081991277694188623063707867105700161813736270886444145367094451926622668695135495120604951144021956616952076428225963913845848820380571871773760582424092821367436429521378626403075577635686503845667905750588406193509959737105787922334901055113147423505867867925688686443709988561724947660383790784594174490153799377382093426144811032772176267592214588035657394225007801294034900111254485367667068514115707742310181613904710302857265929518188081405232223097929497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26812781875661097232741336993992770726467676205197168395928895713475741239161692669323884080992381398457913704134161606451614704496580189169719203845273904392155882103284958086589302663483972974574559293914410689054268265684754049558066579516736016585199589186519244797359399978601365725171651174485659720230837966785632280214923316404086268410443548762541113142194399504688387901908538660657995433554713983779775022635340214546132407651834678873036682436433041526069485008121046253387573821199770518062685258980160520859723049967149925283582215398146944540359762173670769209101405916906952796656964613512243052346581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28730410377269386406588142603636080065224408399294693525089172437615737214047684502214485778054162850250692157877979334000859345646812897171233645026943041040588583306455826702643864277347778461576239133463575161111388983785295277086284149931618492371862315447878094016419071334139570415199693263158289456646628584221957912859199088305568551155179487078813766057124003818956746835060809172541929881238364966416466689012884431558940194758848063986675535102821700940576292949231878196745579847839435112814273575651760681399453441606424021724008442398649662067967335640208240296127836495594014880817166775034977913218369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27992852528495329261911935251035317550095712526946661962210334562571830703332012423508589286886777851536836671765536534211857903069363593795865859027749687412032511666261320993267594895869568292197753220359147540306225305433119209125991434911007498173545807602639981487234100028501841118253880561444140875505946030702981290201812564560024623986126460023233248126307764889734580666575722252212131199808076276333251577375796608015095104176241086108760193225727935323194510784756065371198008673262739907918627332801348933407296177587453984337641204283781813153551486390295384182500578495233440323039167884150477406175529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21013092152768006112485266757065848278600531279070185477029077437401216667466218122434879565665363224481209054677951491361951063264817108846619010264081988543979793460074660209492728961802368324623223541523419102843180913284361134481027941867837676745506647096479245779580993080567174865333435214650880351092585074859625646048425232118686060487730781465326579581828658070152022858808263042839260748605597330635330991674577213330310556939451418457459855169324184065975143587711226443535484464409161270154277787917727604734233606425723291275098128054963959518594913835356622088449604829164219601535171303033754954417929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22729897693762629403114290798788592495813806594781205303894514402382646032833334634713816990730105918999674199290272904672701019126415876459277560521497655926161947679333957870640237289596536810507658784014154879547807892665463496543434840758434946592005933150121619190055568682816452402161509928430394135288225551951658441174061912372578730987300424392703648697529361775632733442668178660675676661127151473404312944495536243065584252665105569113855672419430336286667204593325675699538901558130280926054214792102078439785657881296476919898817318330907207584301111298222991288686827938477888024143295700051633646861519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31494571232154223957874028082323341205675929396380888801451620152235517605573141959717617448322213383709117243756819581926098412787489297373921256232050812192742865698968723166207973798181756527802406454376406090120968421502093506844701131021502775144276811949254352709999851737905366432453838772756514539980574662741024019923569199024482505826981268863093812181227906662797362630026524037079463501208763924759424396772309870047737426911719938496854954469527108621123428910416974910660192769639837498451667417926695016820525462948451212958278382333983782967177347822722152666481103478967445627191936929877134709560043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26692611912173929634869133719047370120911032858538712235538323897867672275170837089740540948535699754500211270957815326921684975414690880128383481135138623425434672269932550483904580099542528572675306707772862518339949772131386313909319898107439351616821273989620100086739588488600929230650642133388381778226135812229757250688735762124747221931429314272816433312526275650190551614321491610816596064550430286143153416439887044224118996044645745796880940173029855172707097857423315576091870967613190400767035292078913070221763958369105080990266894633726904790770931311931673636547798378929767676304031590202719293749789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26294888092722613844464091888795833846546755310002635921513315090725355449553657217172894447726384376887109291440836817291077171897395876422871945466943469535011685421324853483095163312612151271487768985408137685670847012992416555179313401080534155703890227705430171800452047512378369668414786773515462956726916870235666748236373950461967816588374909312532994456707144727415082906452247101527481789561691529517762711586402446712700095442175045632624721834715721156374165333291585891374349365744337063815601951233483529676326464332303816146938253163804806163210903288619123130422856551451639549754410309457959319815397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21354868849957543267495008887695254882516733852213224232486924444392994877879429329920535171736033681307093883886545982004280171684784482926639097224016235838540455370737950490750381290980948479933615247397201972606343805130354284461143998838212598967288460691537985334203715041222036530815719823966078346747877559781389190944747392577414331966452332696090717995706888622402199188032250845601334324370289907096456597450098255624292636940074421011794663823340715192537480023315906278150753544600544590998759071180727460631790733480231446551755279009306520691895782745853097371381064200034056484375914130334579561659783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23591524221928432089856034951440197741151573245314283100673355591547551238525592557862336108131159757918074110184057393006880480805842571329757940803639453893333895906817942730135592269782031746367080611107641012925909209805521489033364032008836291155763552300347976114282329522776719195575128802065606389457979363226440815861339079011739227110261414761167761937666384727240325657026602509784057530405874319258353140212731862915906633645049532896353572058582216676104666764146864258490640869303668711150238145400416246252369190764957490524422357493522055020441616515305653211925779494136284374066136164620353572559497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28146806671520950718286277815841280436727492411873066734138981311107274146290041735641582853354414161491219573195796765075551726122518352718878466064521345947247504269257485148988158516145964593348575011130723482926270576253620838507254095869492476910731928513438623855210052878372344341235104445608462867572831912929493963368638059999970474835283947692470301907046011624150130707013379960982472638585476193411048726962918487233370756443605532036216460209419843845535400563050002889544918048497082030614750614404834457082498441218968046758391089126672732703453090688066536968698849658343308226494799291439634275112609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28880807586019390210274631322911670741077569345184619902990117891455591991076028344131413715623876581792207580285482797154766806144986510571451049934469907436898539607938759958054219818321775714262045812657142679817497318802827203211771925196977095121466810019306643533253088875831795447412738536959001644901222311716717409613897165057469494641688796254319353629547948375785766633837860755823293947461736581837940936504543116307112338026668126475876138991281413604332737188430502241471593770617960271760416989924449100364497696995341058961847919581324362456246560078080774907739245379080931810801882783967383479600499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24844403656181884605790112760956631139432824036058300528747368808953302347120122892425648656539364747335987144776022654939827699447942695208777158513222651592377979441656081231759933972879086677584648977342324890976182030170240829489203031398509152874462565624408344898774590793717240689435372402652721176850767793915254581313057524938306306582462939221743592244648387222432945611118194946276056565509365249294646067685456416456397359486926241955931668032588823520786405798294266796446240155006629650236150027167905810554451650154833822721234797835669240813525547581974333280430024344650246363999816256123735872550823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26905642784035207284602552257483629161339336804625754868817110343926855418651475792091428502760736140490694017487243628791478782345115451727853889537373764168808961418960141856513680868707058046990931408405900929165212798793751841441076805599468844468264961314740120667514919588984561762567519843046179639970405182111406938812786096192623107932811908379757394798395722236891382247396786295280769760174317609525670694298900355991295304014704574114567169227403236232111539356625755704665588437010029116005245781224871975664505794700072509360751001495248285413522314204277203282729653631579660852166669678036432968751449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28278436405670937802530082147703560063397659950073841141939399082794073927008573364342055528895466588516100877958409807766036165258515228970350469561071788708474696474231714109754681303389261558208123893122725644865745727253096085220335387594306506439218534373330219184859845904641903048586203976164245725009411460262950873584033191130542913929810643712713261930028103528862824863934348055879675970369516923710699742082051701218259441655461690515288372447512822854863631315235314122345598278395810071545591709417254451646762441913628889401433440176452097447253799771740620343394245894415628178300835289312077401748521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24253208498438621319801594904137820118083888884231031770840287729132688774515462219162300051522360263959255153469040759972728617607289864066723629602279774856376968026234453019902547440078828493348571468696899797878993880122544098075903026698678077678456799408261602200435424318494226962172235797311728226961329140383633507639031827849394260281630534509528810821730096717087102336504985610039767267374856255198342076265053290192402687677933611595501960188933720214762925741731116640918624919069651666744289888043565070328832389722239094576909810309070298559343388465658490817983374543460864164788701234184418324440889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27032536337424347052597630715560832992109606058998557239573183155760419346845566653052531551874234809751618540872986305403890728974428402956043671756987071305539945757951546018002641100442662975120043130039865565215428445480546964351762070586023721235439716204354020645088040943616256548212515380531966033901405243248926603555669007447174207293735110955459649975591368901681459018322101158594909708891373994168734229708890136526328500456051431537713478395180042336009496977205842278207583475952758535790014646377861336757341689593882256152246016564161687041067827128721878194815091830000617387088757672774650735777417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20834544604726697363818538367407281581754458604747311557168127040095943883601610503121533251516709225822019891937376976375677205084790236742855444142330746698171299524594283652134905690569730967385217903924529059394691021320558981267353674081634472724041229424861817700015627080952107717280029642667324245337355344021386835761204367725111996131034707508794403612334761791019078162139631967679750404549083515407604713988706926160665445201142350897082399036995830494327144482201635288808493795753443576124381847306002981401269559840482168835745078493668867857048470244985591607582944037415652341467336845181335306782789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21014777740392705352092102066832768984310665862381818970169036726814709810778369869783510203007541471289559963417488410220151081415284070993854378906212094053092615900840163410370160857288712143646583186287349745289943741918324975943516265979417568351209571090168010648268531547796008015310711516715607546784946115352826225416410343094669635186345494728767187317803950484482213403887720973993190990965196815276422219007743739601019493826358040447207075573809969425309555105782283819262753076875082090174793664623436778714825805557512794952601320261560732641951312612791287070960438587741468790573169902209148784719023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25635971953191721089709100126504804650313222305007006272311045770224000590938619998643091736514710372078086717859162769457920436959464357228743766952038237032619189355866585705594030101420059243031383295833989506563482621116127916958061737302438140298583796519335318126945458175246983532897667735199277049293142199096546051726499788382808359206971328773146237501899584636467959975722523394297629845653965103776320280880816329232207905373882990207609066864390760953826728601886899056953608141241136726266269016829470661538513559053344138482746130325018333453542466656392015960111088307275478408334519005469622593738009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26634020863206521132811300547405138616967634546467929349744573550161721972685915819397737331338692773863181364020820003130044382228646517987167032788395264973155803509663994132524467761090556733781715481399659391761653184989232753535542436137973049342241407088388741973364752165655279927485704427044532455649765432202243267450672624659749825854705775459336461122368928263323819074043423750004626894879944884378771420904670044202391539768634081549068095974213517112875020626355480784692954794636172387454836103566547417104560243538470808497404741333902186005586010178157071745406571503533815824930738993893475555257973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21099307850338322800702931628729480682387340644572714350278075653393300456057327596093533286226244962550553416162339326824375094131415212550177508592588063433111308002880428122589833475332268316852061028265452582171281565776279442476135201497835239612430942132100430180399985939883152220558155940687089153605852355524786516616660230454087677261425077320768363528909510071445137758645465727464871201411827619194327409867662905677323923967621069592134343591802876294429735996118730588056408393458760918044614294618835063563265034981027453969897516147885558285743997656963850386135907669510032240319801485723038715069611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27286598209047321818467124041656966007611606632884484550500508471414540116840117969053481944878753667168917071942592610068685813569811046038169851897129568170767331066963156172623255916633649725016677603961899096357589618088614027470357145787525615988500600481813675968009566710173636995218519866323485066767443376602813273429374602155955075028789355087880423089012000663004466022755236535925108762823374731221706673659147022783227728637219023315898818330203431371805697502547105742090502097171804681330968361700717002776590782614245100913353277013401025985498415353810599967716402313492674909875621391500187745370449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21000487797492853056492054947904029418528247488995458582371518917125166526119999942494251624189532978356436616123942272648351397505387872707903264915936665383420972205978163002084306581045841551490105625840285439710665682591715755177084019162919048020175028095433651512923353071279003735024023800723275114351170623979463594970468463352972409010447821511346841308907615250759992474706570111775793143332489723528493739638444677742691745815486787511868616984117042297095722662649404780458581600000298499851432365822999342086059823495948002858819137433743251064033117046759402293351214229857494342517268473809641329365453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25296802814117300143769404930570724219494076914886346884715484166881342759261671558968925909796774144670407779123291576796639699327164594762905469636465866638496893363702855332861904390640323912396766483546428405994531844208227892317589076337422029032394842986748516046735769247083778669944751751650256588476238829013028741109095143419460008042406243663904755931758595879480095638179628509183646337962647191655939442727437293001660816073740615423949788665990933164119041242175395826786868303747743093744731715212956450481000154730829658396464786036340811947344164359973325755026751171013586376518057098076603076451427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19893050452232036976502433034558821958876721183886767991884603630411497520319812142053752358750172278018284263159138329104758793581466174425790197569755031044049280202848891194592881887733582828619478084043110945904219496146614087999536264604060326183740155601379628917783968296038793873535055951039731730719679345563584256728263735997594004393104050209288652972417889340715874619471530742773055342675836669227533266729663488966387459120643167318881915465399766045351843864465854578083218613769379657693731146755745018007574156969620527652210486890378526901283887968186772949952042788755383952251295559653660678768903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19512188871907553761020701294979489279582221836982156698809773005648442559048063176368621331511393092068580584685799469961858097544380673753856695732068670613279764958602476793501361518888043013043424600220082228375889461975952896811981777021538499190069461210990340062543787365378686710493081204897205774596834490528667903002760829183281232501174316651311612396905648648044240241373800952074034576519571330843178151496727681178450203237266987647551574920344842485201524887044770929093628968503561792421788863408292988874661287015295536741676802712682846488292768280433937566181796176012922607472028617443963158214679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23342742704237980262040891997704089966890165871746242904124637028304666435986065672536418737418300381535996860818602513058906552365159030088310870501971925405342532581079370299415574942644635439086688046430628626227107208121172252872603880473102619783771222846316091724129788835436327279759014144618372254254343386036654076619568762561964759633648887736140214543008721868699719689679551233867406970807659737426089746474324746497730673814022238313485207393864746034063323677450722350981184108893516207313031088184054121206566304509733190819221407874735520385843442626389584525771221939690168109785248982117079376150319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27648318714392995273975344497977395500132974694804914198627395949918500962360857753845352184847891224581158838798456038371966516423763709406698600083747710167815978453084109777776090642247211169932826094180738585775808189448060857519365290647615221797820861084436202479195560510719861820482276408550132579434556773899622670493464529332867389410510116786370064137119161017676442934064738449879287190626294551864860995029834182173404427454532057674712263380296592333478949173413712023416363634029490245020519355878003787881075714446198263500586084230387532878748836365372107836795205434773434719670915495386962310525713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22607040314462211551861591438355993738311475233742453305255503728021199264399025966969461443196939631594711425478815253795697354123103216548607045201660593262457972434031346714890214097954569102536918817027596620989447395934871072765508566589181213549906384354882303165203544557097660655291212472326355531668705053449441120426948611128692499404227418073909659759886409475284015851924947944514402250785759588760158435743165854743471235320174538144244828301026174865316909098174766859165241847260579568016072335505141606761934568879975415672991653833928833588903423797292601972121449563623395605890339564769509646514681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23041467255005721701013636719690502579530435520910626152999176552283864985924360350672722656153828436355272054652733010100697284168526523768981195500928002078203756682992486765096699258351069968681981092903224949284542160454991274176821934875286246277847573922876360180670483055550981196473737792752673556170609297959487869163905768379038540580376724879153197985623877951581093473027590721355419538124264810114372582261380099843798222667549038509382656081033961454145481321774380430077602902484235957394968408458599857830334115337972679709770396429697373119402343173494494056565194264604667324599076369457796504604901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22136944399368628138006163974969592688926252135089785019523006264794881225161530142154995117864941278684215709673949591260336027264631548156918028808736640994558932249375150543867357754560900515388866144757220703658774551991073719896562159042443617001771096825917052989821417396561872234728487806736288716002150494383575446333756839607145320576076825199648038792771690566506304376957124727685406321268650865677047086199486346974436854767502659704089071467452591310058219574271596655096294326795565723043344160652613757388828044955877112820448361472768342074910002453430788487182612336329558469669546841671374654059281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28648890173806812844149907242631389913288155469775629654598476470561715522146819153665162172904439806466555513943848522422888024753994337837104093350694745262396972694322505060102118484483285218286544576972000347272404538869636888288305655156964428433002192872606296651610536311481023463416230540538354025756486880388942479958159775591990974609230363086595210469987291430541321045685310603586253446143131489507956514429647703765609314995269789196194044273723875005098791764522743549008778222715330510333229893811014728647062002438008879120415068522744400238297590346666516459479529800245556094485038244907901974290983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25738418821490310365648606337772170555556198075229069941005786275577066878249702335998885069510698030504885516975315226428321810689276426592865094732304116183319502567591559936249867212317377003335187881211363807516352660693109811899237618010816272745664330479618657073526304455526123922623664141846536183740702906094244813551264579020712526555238872094447665184992911621722168368412353970205137210789341577485162561105340698131286641516489940336473327837412573757860485402246204082933297735421811074042617134900385426219044461095998348734248846756022066924703993013853288003986754931664637793128325520827876526855249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23460621354180002407723547769697815882915148790711195743498495373441813124473693812316233069803089952291743102872120667277516030172211773420804343944980247340725940781408190935348722617413513908944127636903345583064081707013781112425811903050456999765983646262651250341015933636796673077733040304402466348361295238605117040584547158330394110895069068686727795658976974449886431767177966218384976678468571547030148001315529674799867371049533511058533717504043610364013869350452143755391421405425088545555467900012800389178703273501290004964972704187728884485878817519408820727021587715225142055808053153069339420141947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22645000079212939722577901945567155702776974943769688920490986418135921698398148245479801176010155912375546457040219148902020157225224693001715735210144261366562608787163923410576119680262284758330501330802944269831996907133374873577206756388305968795430142336080641490424266072905794213531595648629904379153184821468550475571176901266136608522821471194263323638545415988032793173476648655021546857071914006298712557753959313253134330323343962674005904828169156770272387275915749767392344096184839946042283044254639545571041959388453008754653110461553195757238305832310650679916228613464399265764854725404347557079611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28528683475989954630802062426142157728643779417012567257117815919523343144556280729590124470955257730941367220045104749607721212916737706299856335454880948478377407448715523215763452385822634795512670949585079135644647293954075966009738621914616605346003115099828658800472806996148945834823383498315603304721672722325020761589102299684200563944379372357670725697559818610650169705775665271170990724957936854236098933592843752362241766683073949157941177531621965425813251792000511859112212388611199332534207133948524652734288528834873066829979598434626110791902199293140920059670307513915547343918958174709959686476177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27120463037322583960550184259521788661748290814698280049241511511308159900168701294494665772002860873881490382497475599615383959239791103927627574626848870040660036437515577018800972045514477448227918093751041293088251195907458537504600910880026438213220973889126758677119214987059539404304881541042187520394304005717332395503704815427544887042636987861169780984526241685097522115569618856875424905357083699689521486936371470333358015207863365180742239404728809357843401048086603857400911254094499761334717946323552757197921410211581621634320454851991780772626104715231721466221558316127718408860257905710618301926887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22945348533553665946012078735034608173700228545023587435267832869690281196346694897070919901234915552278271770348843196070670873712936440505252613385281613626871241409765716204272767582760822396649060751860158864940487456070889228161619653272512367438534832223048449750661650800224656638254376986189462446495972177986718942302063186359660845312862371857040715953769742642259609864544399442341216975264709277360191919555734343013949298840593207029945957427099004421680663484138402584494499698692636992121374407436666470090481148789793726432458766649399431494085003841325481290462551313731579716847360224289455478998183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26125966241154869364129412308000359902488190882450852310208932160812428620569210324076255730049946522904222288397515948136817607166657765928967783315326912668153179364253517904479197868621620523664960268047643721972048273173940957911320517292062496595676742639572562298085796084732597854638933521962131647774616212289030302369500506112419789338185518115928949494818242459761237412309110536035560380773038090794456189892003258646232609272846887314586144847248549929670919365494625112402575757908550706071144417236436776667994126903382470802122329257785991066643291929729073723826075076275460661552271459873638852351117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28025492057206683407643959719642163749714338419752718193602973882224463536054422689619597832153550192234365316667504315295273383657514756718979331927459620818560001050890556903334108337559641601021250675651297792659406743302498131012712827194765839647875353677129501294281191724987977679848834622443025224604470434539056394760417851304294434658789391084550649700063855952994221764583532196670529204628088274808163560850551701755103765825704368536517052624149771539801843168224518445417136136685466602782004046046071430788985386753194796922976902271686573185566939679097950431697856794164708418312466219190812208816747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21523267073509327383728398720214662204416365154184782622069290432436709357787602247362740064184332345807351660047199442970365717836509741619208048582633065087240458037082602229979618543611810318070983538682064590343707306493941135530499672061644314154966763992241173721370672176852959186353817666245905737394546361369397840305619965366214557572357564025075058124190633999113764401497338304016719877442662479968459030142864337995204409848159298601551731774283347036713693583462844490671129317758737411598803684565239489321430983982363498834089639373143703000378773205711053928144663279099319131414206916661163262339657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19335319006218653297608354414403584677296078665704353931495809912917218639169803058225359826748129707961208848714319128715054292812094135231501134521474175804043024244778365685843993245173717463608933195520142735887731749712402726501805289005149287510230372458468252643713311948820812344960260208949018043486381757268816044043367587984721282586335454022535754067126674344764535862247311862796633801425350557328722594510074629927665111708636038078881469621706708549265312541347277254059097670315359503127509107182338295162391472369821481899111256251799118627506130025687798996490412924069005428683784546186937658941363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23928354247716233985052862476138252177536865685629402375089770032507120156536135501434242532937498332139113083262049078983748516595247821503637116028517533953378695469591719913886645153491447690129010445045385191287923982815935522796516053318764531949462698603587040650760609645076597281584144517079195947396231597575480426981536248989044993476717832128538090443754286341836382808699015173385561266619482834507193460254350394713036797144275405103233636512657242967462435005798878460663614160941753419944983046302853572287072857359733689873344123282747710633948129356882799979076558171782610014512181864024259332459297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25512733942942711143902618552263205640469695419698464419657758346364874906875795984291051835789646840270903984063692681917621991262994042245677726816897045915587246307822949122848149507236691763740616477317360297390622831268483908237208101197861359002322872866187347875866554723834631001367161365242997121475551623520772617263252836236926823814764209203485457776457368106548270483273595702681988250464741415296866002050605395786471007082105076717261795183128524967886485733046977847023143858598537710351439929699215464243032726780471156594347648987504444308986756934511367351838520703401829285455351416553308173936923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26308160305301818269347952640521841977109613424289857122794672319032449208696851319092993368221586797478662266921629428095499280795747053644870114190434748550807752581126663135154625917236954036957613881261919399655915549509848748646809376838560995240067971721519639299586774981670005111506823459200565459275013003603259531793966547468055455323393090251940565230001747192841795947118274187496313564294886802431299426746931846643405292193009353467366896370306439432387827212693450349297398359777537131939352128171936752128923759888596198258461093827437572974654140799975649777593218474327076094525783097812627912542963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23929275455126618549309596861077843281884883116284735408907061314220581000295550046167714666104981392935958076538548042908639464393517674173808924401267000041864024455225895408355762264075098748372928387507043823481444760668686091514800985361918227514380555605204954150320861500314051556116085749741770149740566431904988657836034311420165664065649851022704534972035965345645681130772803623087303928771974359482025490997064546873792245517043341744588824767011050896715738590726459363719485872342840887249292682893613373297745135660606096647215840288077212393460802861375651596209800121325409238212098726432496549013183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20837338745800995483281302996995246462874480188984089183047586851386389581954780986846309641380898931588426832090683888595853420109201607553833676275827688700269770936767738655193284454155020978708603240743135491579775529394817438064706845621216306327858620276767903824261223238500830082878107590683579671004229890832399007482368651486049163014322733713060296589090407660652260314948407707080218209393353524707290927251456416998900785385850981829084447346602300770892559097477394693733315555438943747761382145949721877281344750117212937409968625432398182243719616536302449025619235333903238010224326810309698239941273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24861032154510274600591193214146224499798613381991648516827442068710853946140541774806995486790623348581091397061182607073765564563380948857008505246887900310727134141813371431511320434620376132675030181608114150451583092218968631320177071738632407711822558666686358648996440538738554147059828589054571206308116648037598006481830831158866207038341561110759170657374736710153640996443877258295893574567346744399526212403352887376363968081028831445285986676538489824947194956793136035374182633276068785507390200790292473225557148016099051316785694965130135181748288389516288180511392590227076683066888591425831070567833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29750944203540185443572768011387359355509597692513727534264792332345830719249213496703034532556652897025878180835794190678989038082416297808049985463285179548802860321004807375542921890029723218591842824044620546806119631478701844379086513859725456725598818973091640229128106915234993592957241236457711688687347509612937843479093102113853566379220662002172893863169464259678674637559025757106348577590558449637331226097847278626625524727441555663803695727466917753486277314684259692947184968753940183033538958325290735861770029163240226292136599997699476325006912127068192278498514489034283183537308657739742959104623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24668229429533449426038521907016019371965395365096122380984926192146157146705127590013330133931719844190926568990898776850540798758014834765507217798391578287556093434811058179726645489361442179893259998117782316862656285178080027669550844675758462413704171677295283216512003688922748705031802239023238080504742959524179228772812951541293714585404182412103383390410160715971269562824824725167332700932073401491744002617705388745871638691538236677686797612122293950492690748912141286347677512057600117478153615656637615488392151831853194461237507972550530138370123522528832748929101460199764758667595673357551703444487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24161197968490160194414413736207247028645596776626002497510298809183733758806533978143016887961834948470595095631550583202093967371554208160805759857718809261849872676912728273588193602691336081976957095950786858168231802956987527431642759699560144048107284013749457351566082596543507696981087304763192494735094341535204633813624623341234050603768942750897629565220672504625376012228832405906157008587188831027449925316378626003109723561820108474295209744987920851918350616268137802214690302556546495519875081923727204031514308035464395594567417358802620839866954119193254107684306540474740255815932033180861448638307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21105072122186438246477056274311928213878870545174332959497113761045544713933146204793772227027713836558498040221422617614408778599109791679888791479434387093537668885265480740261323058429533909048293154913730531874662666556002368696476781659806450145640581765381427469768516083024595118906756361620304640175377599120608730934951070345437652283525906300296843025449204736449927024809908654709836380350747494947943950314875608418010667702346648191314613451840010879224261977361000160785996236256058758191380942104355133939813275575753563223067680990996961378965285206516184325316004211517332767130085229102939584757581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21512379933312344359286467102998981449126140428999881647330224303521904760329819461559960341294371417534475215959048556361604016379745407039014537789578707089741716602476972919581062820280462076018148959413105077961598540653070752367278701901221950616780709355411512041357880157994058793203071652065139026132039208662649619371216374923489132781681243789895599816249736878621924144207494125191991545797715109682881438135101487620733864520862356926231795264060869978356980973565908344894588102864090433372719945219124539098989366410888724262325577804754558087177478673880368528773233574873553741334826606002330292216779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22361124718773893639470782141059028144269420181581951965160919434338118843939533807276126261480189717235121822590758164544550293875570790752008939665396358895261025540982240422364507027126897233668673362867846268985375224770785227591056408961221672538495213535331459272564542163563042688184291123526527885558326139315717586755487436587719826581272094158488199516836870161920135478521720781537199652098281902365639620053241562262315811597626525115492454474008897002777034255399360546883262190553287987544484427384748251383245948254263662329743836963273076989154408410123771375741256684418768665169025571346959641217623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29867323180784405534076530300361073278769247002632982546920322641824292828028927701825697316772056727464183557333247014280560387375066557595654841577571458851123102024231833030456938959760902078766519270049258265673222325732143343507417395126011833589274335652733849000913698786408855502314398780211352117999204968817779044222669857991858538141602575470185507644153744501127175698233779628380305934429506505401245192870807122431268167168013798320940601861666239511199612989516122005005783598375498504090498125200121401485806669807702823894719950424029239229006649430955984058839266451100690404339309064677846228568747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27161268550147487400244395049929084755884294152363388997257905085773258832995194863695975902311721476762283200073647401812377083933937982493710990635677900139136314230873067059573040552880318189401420759511518316156325369630189353868161689256919527854976527487062478356398555278582483358086251504683433804973972624743412091297428561583499536170159745528861646033699831341969327103075727168624055346369498707580950366833251450107851064518666976441861496372508864462186328438791763800153603470753676116236370010147035786635120970842229428476438749856631895006756619996810522207112242296996103051140488341396857813375879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30076596030829187024278275944911849660696968528321266248534311831340545411063255279212257468964704837493510994507119908532600723835364761140905132840423765100070221259096264608395588530678903939838466500250396598531954443539181490967141044962916802384011716657851227033221830071411742810630361820128289114305327654433954537832710197958979735240463844395261005575934396941615103626609202497221378673645311643496755560285925953726167575869202164662222636721570412884492096760415108796337779259141471996118050006842991369490758686194783774156425815979656450731810002787818326987041838896224495261442546949917156545398291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27512252709675791265978125601445847576170598995581066041495515977474457704462943185432127482909210631288445957961495535830510811649248627097726332907520934076122230159039439293600028107792904645109417568087343139229964742769554044807834534914876635364196068935650222609716374526592735772105736212613885841107693359885348283923823161641629829097031756020313597331627407517267417397202213068187671986372539651994723066310447149757671169083693151066077849262499698438918675860222316233591691127928026582482671897834624632019133199030687620735308313605291891916012728004240402125557588720060063652749778795589464739440037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28401292635154584753007227139293813531274514197559235303241810462432860483714986903818435702009112428651094534704711520266640460321072948061336894244711663345753064192000162795282880173128814355020826411858523442686776871458525137117950503407581173293192800348911252574963066707438105325446523652373436510303521579926827947978026978762173968640276378257798875550735808778062533233102801205121162856710492876256502726666326487241870762108176698655511851423060450663824963856284554075787932528358362279295580926573554710182720862111716750000450538088467114776567780497041651415080880972266136611550447951492636619456589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21222309392470717637750257901515110891045996359334596349810403088796255500979551248824657836100056280592993350277861602508404701607422821568946152693314273806676236563537099747751201251661802419571705867612378928335255048203483232943787281069525206592648446846190154030129385112968504003256149547915909500781383333207701792826957363901236454082812659845326247410196163981233561225828898453126079484993844480317302173129736117021224331519220122110479283420212284489533813999709248304074885453289593330520883656659840223392498021847173715829145629586103391862282294636009283020146623697423619605970829568994761458664427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30779612838820713593386234213555901091333950746739663880841460601922764055448810616150141946804648172241075861101774683124391640837636324501685431076394553707972693125651398726018158996460137542386780158909108706242160004384778476779726940942123660494493656605967732679237950427720560655315852370796508103933063677658101078437056194692781543850155645419795600534545209146025554993152382803444702126472201757418472881198012799953499221546342034693214062967793778200892737218701318157519176463217866902379810165928925230152316554061469906826038492918542776363134358947273946072549356575982887425874831420238043016169013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24821892349360698809399018156762725301255580016888714226929187751016776913503099951260388354227701132212642780013257182602938229524736279141696789796360368987188116754272813239128661754461092013350578316704606324662777161273914624769381439855419499153237217287845741982072960605563108871717444939047727309200924837143860922382973692938562638429729461327136127704340044029851157288137112351706261228252444201682520070080328580370189574466422616290146217645742684881041998939418991019717138085272947660746630977426816967807108450595607757742645356937598779778872353927756118649583949729317609623767785376012949857030361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24883467173719099719045469637181821717830325767309892505683809917393124797213555687846028162761866210424124569898203296145875067503493551861532596966786033475191561436156183184975087471113039375298299356925164168891377723045241044089064669390270666670186069504973878389869014108844532412597805939163007612698777388282990270414531771312376934699942939307573888684734294630583973607769743467483716458474583774249151913799965395819710381125353562457156196733175378594693513195552468204770405947561700247477710790088041756697807916382828036325414816283006435177295554634145784835173821037122270804972254428592237140035979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26168013337237440375909442356804566214581647832003367869316281748168464472421492740501475962960164460585924491361894810255460241089651731538893878014036391001499823246648838729940318196087547083993156885669172576647876559095507165427330882781156162149175265965883295512111283728746476556430219764631674395577405403025404731619082129360202885112566801823633928776498095243270390886094448537088101344396100028110618924108314462171588666474710598253446809368957995487835463626436814779328297457298041746726924255992673463531944869082430857958226520758793758709075089082525717123227433295960658056089086749140487806640461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20153489780602334301043520235343241779501465231353516347576512807726363977107453947766790731749037043211579373782323304267242525848855591868765597321285615192290812211499611354200166816450572460301657834902657334334934825762712970538737250405723510969420726004776099588311874327951261075982553284722448572929536365719598377270101328525668961161259670079970980535148372151796849866396241917052454124477457636847507576894299542887311626822589973195714787541280495576347254979264961822855347747331953213127637646179160946048841124200132561513127927850746332258476352528466144121408910427606728189743321971903477402395821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28451328030022703261467215542368619017920875402613365199614923894977383174678598019502390871439352135126806753705090565597949901824067862461364514860826057626922156689399200566145859539509390909560548998416129765411204428002767100989863624622193867251544447773770243679821243107193819867249359666341319421742345007497107702942261270242881873637657724900015424786478629130317246263604453187293980402317166736578667115729613110392481250526146434531335349146188305836540968150397479380886887619679849542253144337033442283119385287045582680180946887248525240085835259274369070286023589143175366380390075876098866597810911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27033121853174001811778016027500022783880591088751107369041623872138659658993160401080856745865046697120588689329951235214115240715854063208841292040370064087634278905427151289067922501823809383890509563361608393558935557514544597719115812634148238398008852287278374275298909444049899572906368598863226192912508533336875272455959357440713764438293843696729777096457880689761208187190157855110203439630419842137796121398101087800904850310702155015854261216581956957253975476776491759790477067424268757220837358849516318410144156392566710559970085335539478751358462866195716706429242207378112653532088307077206903044279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22951481994800538147896644996912883039533030259218314469630938026642468672591348639389934403882616487485615011852617835408026161435377524269511815044667106914150691193026185389154248736410055099704860401239142209683954295053857897999252350429601760923313816998480827891858426182583153659269414395350999147974172383227177609802722427028292840685500500904947009320040575802521520787016458477117823718072235272354498429733772236582000922014587710898918957246953805567687756914834006671492666373100263249827481480689143820992491164110613015897451532390334736990495829885564846287186255603402526500052635203104900319084073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22920725396733924650643594451782573904449662107604299396730747241649134074943264093633327760353708364589719323600085351179519641002609338225075023227861342579538013496797136904994719594580810721829907516236752098355022728730476595751000323073406688717520083027697605250132206858039789413907259418430102505200719284896801583123532442220777122778858703402402294164572947749087120359668582662188776193825870585813557558913918718434739066088249377081644155377040658718110768876384806950753171329511948654161214727816460943133101764902014469989262205940600749160719754393662271573471654575090291838424266593377214792519401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26531962526771652767180650644986800946143154954081320347762125105754749771252135105870327280602258554994616059584459944501256268517854547789789190282985113261797887493587761562116756215451054390364201089533600406262012129978709671098492863131615808807887162619018975285851906620311338539471422447152624781615013202520364607821430852617835478855480962404487627696477320130389493268941236005496627682432563235138694102011337920821302911988495497370009676238591468038276436146741116805064203630332128798556923391894525576003646401247073234659272568143307380502503041079000130456240154316032529242946068092556719130657227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20756700620778436518727142097547034460887977146800872866222779297839513137066734031630867922181729819778282905272249192327487242143113468212779872973493051348282553552152878588707497126493033852057576324128289191066771549746614318904534432270441018972980427122002211194295027649780619532376127333346981467483801438414452551523976546539873768556105140148173408363469978663897746840300608959083442027861249827533899762057402901044280175120920498992786058842987302957799544085915782846236067682505001745508963887222026973888372136282761408378004029715802730341365761072449472144016464018986271880862176067953145864403659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27482501059484007201882742052063268109543460713157725048182026825045823605649743183321051286892767808147261805719274554387795867582009974397195808266772099561044926812944924470727964811922495992694033551356752310291654965013356354182841033743430442503614140664762348895685314126165935890771395082441065434328263140535367746058498501753916330698539745386541142445920880225555417277167355073646210885715204696742278878968957771131751820652764007368821837332311578786034895394482675150474627168098828654125059991638163010951376173307573030555607386447676184602449839552310057588174444711009519010383592550534741372801533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23992030976320739557442486941078691255564608093206661131993245573420284391788840017719464650201797943555375471611510841469741400285481556387376834021898443980703344512259456965253592710494219736975191910122088167360455056401259532953503942162189174578569211139214377398926129389754038798636173244754297592335424329428427337606156880404493358729264060411268150412435446522000387425315831906764050473434665451065712827572840192970025961161484691941025245381941965081654179005282071375924814967227912817335027464101887639277924182752985050729633592061899129633117906548628874211833355357171788711831362412734094975364777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24580353689026916866811458902396415668271103794755063510801930970810806742789744441852805044588735162719131993392081066391543740847553850066614777412261264552990873989801722128558950698510747910580061726979076676757046088108655617874157994034437179293954244596856608390630046325385199143122232556111584437127797538542819518966088865296589660244359154028763555839490103931497495736970478685820015537970806124112971338802277884693608745242213142584319669523560478402378373708014006493848309829789621593034047235786653295391158603142353364328636575489577249074082238129228943238095892760658949679971711477012987418890429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19425696818581505015821161929881877640576211847638266581302282044880864268583544932090040045257508510977532510475006536970010533173294654657078512999793446787707783615144363874003267256031997913040307845435999256236201282929669820485036337858299031197134707093735664164548919412920823554368045131462571925569702478098807836991329994060682836649969313583654350696379753341218712091323937656393100218658710645697054667220947371259649689523432127244322287982155182530527587040937878422252153072698736500247457424051320117256754573611947980691970878726557293808207383570112744166209965042247860317851825944529863636795243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27985101543587842706911363955646765397460643648053820650055381624705561824202766540064818294614228317067938009293338701801560665555269988689022247500739752436593389901248731908252892313180581412920593962064849220885931371885484645479834155707517403668539692142420829435025329348968887361497528429736172013786491187161597147648742915517200878045551736615305108231353979245063536856595782321572840494581638804107017666554857473255341314435926708585498078001240367345957963218613644694412580196576990590224924899213702318218379073586859018313257616046759332240841741213686281037330162267601456567077617677665869346303961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28541593839107762877406183497183136164538861975898871986948451519881103185666883405788637870384031675388785777136791423259874302978079254779509365200125840607580714634354942643124945361081898238863534582441322091261975128090516104278937726867999726139087793129685481380709299097564172898925612482011128652366042673124237949793477042464194712955878577858041883460250870862549002278149811111665359313567348499217108178480052040227437299117401712025164402929559466737830441836356520370392087432653628394606552011284504363505526610175393168394357371640892397432523552329536442976013972319653463933663780744321622971446101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23718143403384319283946829228770060985590411715446409005504294759538957311530552833942050235693305844904849468244373461098781343680868862189116810427199919683342525371359065809603098547359951012497058625675395482714101658791074071118086806582786884852739551323164184612259606594874581205261353659048646860555749342202906158206871484055690766347969567131018626036064935530090002973775890226099664118618729267725896222851657571512539441138084321117151970348439717511379707005303133990517848971931783120949355321115246086415049475948171738153783332537584080239490261407104887186373816711347629289339618084693324839102531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24637808380424736272911160104730407217036505717758815220348987854185647832123681401401560831239782860433096174276754130115035070420922756038869835207622474536392484283679058961008803083051664550550479029739689999256049759171413194096514639451112383752258313702297791582140349528073713648669950420662455188338579004445119323014788530416504263765674244169965339618880766658587699604196651657656109782316940534137225247513257961768010227230979138704785522940148026201979486701100108868775455387945543655012891659528916871453198887801378469066450127858707261056466827277056590692881764208970071314496542427813995161844259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25925791634826294620799628401603228056272103737183308615718250192510294675791617913917799933739069527166586308412979326666116956753674645585596459016638810613789006783195035868028367515542120136642778839133244671515561662296061256133601604177548266136014010473241647541977480962816308750974499059915017988283858100431198376754058817709039834230037352766401914507186315889734564963522581984322104539590256503338073716031831829838023951501590608579071443903654019275288453651131039517796563673212537910241733455101356808916601550284311139342828132976209168074103026457796416380634886955722761388503223589151226573610889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20998075046055555740801566799921366715612274479953277225275191105885853381220596609615205393655615087995434292310253112277581058331244508717033241873592442278047808935734417617173654298296682397446822193460547412159113791247140118862105061216112503648096177947287902678937906164186039564132333469180909213300906747637716103086694415495585319810710340423688267625748194367922447409716587734731859180750715839198777125896261207693357476343793362907245357776773677408520898289039776446019280696515027973363524630669956186964261965491328227484517047870897699355849205488478067240829748733377608624560183164010863729306169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23288370064570029282362555260384930500052781572548235611422572867274930662451764709818174309248658283230328101435671970292170550984097161412950937410714891295557896269925043318028319004100307303319313397361537415100990966444150456250530640659806938493332090512640053282793490802306291510467626194525626844321582869941667216243262771901267343802727578692858510411135095488775824672499478798218258641217751751497388367631846950596548746578478036529349032144227956052692672013571143922071827197510873412262866817528173239656633917124828404256821177354458079181085496357046878985083207626564653325238545859047985305184687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26444541952943076806762212846935774068460462369958640434655578308832230051548066947147652367390873452970783388011709064860227007693329217943774848186511129110642799793374353724414872048985705276755268643450481580410058858318904768097006884448008637049934817968004657120104271630941866253177774457444348038684410246449391863839955836503229473597163831985123200628333914544229544302280797162422874326037581691955320336509356366359397563302034050343096807988008579150519032264858366153594218326219131442402900778139073557211214917879215792030058321706693485928633244603711531636432445233572155015832109968944850997832539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29770744433761636672494265613392620395630560364041191633600486497251479226528865872801977986592523905758754843086945225910640742612910169589983229097556363396657002818376069570236996832520423761130254587960752431069901963696444459101463076299308772715471251961712458524462294488280832449614349894995292391957998057736746489642428608119436088247886703349558028395313361591843267665888587171502621683211929038529973965818426831276300722361766957772841487900870444920585905727581904845871962726010557386211714314766103712336750707064289242039689478126214826787522754855103128154871737566350919322594334567147305916160327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20569327453700678505895837213436675598544059039523470094297065982682650739709418362124101301550591660382491314582897355264269232682185324310835395473176359988599055341457799584924184816088189155196028850002363631056968682933457641639988643112721952240632410819083973737928906931618300042701242275917952273666558151646720714741048098450302794882399786947825574745578811719448377872161180119630756666547395168298656708953584852768701373140304312989588254956326269189713723853781165283459286266618346467882941060149306556636218182306815138338494046636363694540104255890475073375004408149991962278448494231278314811075437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22069939053662548676770578154442317095600728704576581268231917674538542698693996152847978438601425772376172345360343875103299692071234940606242943411367617339705081732667233031696626291406525627103619832802983079912514820413236561680322506610608326330730423407247694479634253315642326974642642298084244746596226447344868654308712670440778734546046412476902621245568179724363023285455928616787832817665164058407770928761412222855338588664553447212171986215963826060040128217748482048968620232454724199736663097138431009338888733949832565519229123291709794046215633122649024206654193049726196597056799177037097279858491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19737740686807096655211767244364968713278635936087879413128746953866745935277600012921737632536680683377593158128700750392199579453773502443094311037443535001283592816824034508609098989899024724674067102220026916228072896016303079679291504014933538919150839618210705297518443308339817268768898888643736934816486310996261297954140021020689738659021911429702849954001214664806300075211569244276839163383115204106871164087733151238946626257218420331297965901645961729391888034383005524498140541766477098670161572554382143945404244496293575378258744670129418700248961683999033345984758728647063104910879760165319780176781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28247635182840068622346107116605266125025859815936801757235812913151633397581394979144778011666047575384629254597644623810826099496972969900340226533125212914408591061993276100464769453835177754625357833779020393489160783746173297793242629365375517805409206112376660138103500357563475569619655050824075001964643350025392077681954595321966286951916045281433820563537351532137856082298660730079537560330555927237971356339916530044777758010424126592541084348655165745520449759292817005878516657383073687807815135387406381033168268528272185807444021155630300640426280848204062117101573231671566181993107577270871315494537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25889312902167241945807832993534332321890192615093884766891589750130923088888397613905128866856285636374716127542103033557325466009462123268211244177488765397202949442180934120768699855984888045252538939476954514068702130455798822054822608398924061715038577355651155757054350378824313142731425115071667075303418681481985036907472374669882992099595887544955079220004618435398659368334819027133207281051786554461872157478686011723140060171428546005477734694456115657810419869779780273201855960973430546725331322212447876641844162981299660226035443226383034707084118610498189409817445887658759102597096494988469379998001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23553658146948881249705112109182766105440473769311612039741637693015206875236218512588251038400124982730736696266968959780418876831507537933436694701322647207405182834819202215437663769375928469254572407091946160833194410196295555288619107793590669652427268963979857796751027565684257528382937552873575296387965646019180739752504300198287267558802129251106893106611236125327380839837219615108628074093204805163311009451894329143024975602726044918709241098259093601690498227021097517190321446251405756512955557430892764535989572776019989371908437597852598314910110900862273238541200516607642629897498181491932344690923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21577641899130004680811506494709499177115329767225584023396718264183569212217405072835580576052372120112194449501146549605883091642118029901716313316614448004904372396312003822826390674315054131318966508507973726586931838083397575219213892050199673933591794831433596298876014809567751850074025563888354985277004528967102058495754782714904996358946441857299636635397856331976026876383949221985209481202657812258555165684181786140666932308405241497676470726378477429093491829563337889157402071685599522507746858349224884263097056644563726972266698734004372225775534496145046901493720175982149764789590076697855200549711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21366650095052799231844848052783548", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21513199006927313702476876357664850", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25650661340980424051818578843433151", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25245230840560781636438522924637033", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22940506650559836913159591720036063", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21426804253593506474836817411667742", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21997705265851720219496817800361187", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24933023600292995747185422363226894", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23737882253191034830560160756724305", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25318782424975962385561646202778214", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24357798925634661695673086304515507", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21050452279074149708958736153513267", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22233451934248019542612318102499401", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21445351596832709184462246324489359", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23454814257978263179908907308691534", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22052446821519057925720328500139360", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23684862580205382153209363263405845", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22271736203026597071878551918164080", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21003191589271132476886224040794395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23372032838991705843911848019450099", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25528951517847208466986536976935431", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21318978195119836655743064506877383", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22465844224035440855062304580072143", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23478858246918786647866571053036129", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21990402966121802796018893761875925", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24078386508990737669585787117748579", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25876236243075634110085021290258408", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23164297222980733764963013246919887", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21304847538852271895233618863928733", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21300295338907114831941654979411908", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25542924262149656635661372285662626", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23405697567257379844826163831173748", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21058818026999462217220028198645486", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22979497585119074269076509939159395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23030623797626659554559107480397563", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25892876083940359890689258760725350", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24618555432275101735939768023503379", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22612310420087125524875371028958038", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21058003217297742133656837033446686", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21144833205941243457438835510792146", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25831416598708790039058217052433465", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21657426576552451500092006233011712", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25961130909802315399702034810077513", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25863641653760113322349989154485256", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21180126583370009300000156353326249", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21427144775173958338099562956332055", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20978064586987653575114777913379876", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21701576211400584076296902146428404", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23913539317029388333190293789979052", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24743758694208987978534173219401852", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29761454594417766911426425646390539458140804087184591599833701260510082859081916299902219903694847199718822971550835737855131986815093027718339162807368044189297469579228919684056161858130652239728492585686162560928872154234418744002632936431762787926557544812816155276619085876976124867041739820775262398309435328697159914004904508811059541670595094039202480892563746587325605093702463625163602270293895926029349004304882097030383606703072005777606796289899019805245136255374685035952360379917019453887655069314949202552315034009546213908407433870829153479779376475696779536691680900435428834313832672045949765570731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26795264893013788152570557696796273816944355601182185141790907417417224113400711783479355529570664258117305801813655736171716262346718882515557376889693935195638199429699936812260627690634578593717757096137322697011795251529930575139884473551662462282842158085877059071742106187717616288767345359745860384636055746751577315374881333690908471601223527208486314932999572618461272863000196183452666598743183546054451727667841534170010353003959370985697520136282875185366326736761661956800332065055690608441506651573071298500916753262156189351017086821507728965514096225293736688933771510678605838254834022317117878762501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23211546620017865609006011660849684759737315466855447383203826285688869121024543441174819632321186393756907612495003624573391939361369775629330933346085561783490566676641044877178487531118692727366789929376500890717545691744540197316853180325355494418398255795481274594102255089105079209972747533539611947580224656970209492847012503451293493136852740140730897319196738098528750815935297205893727445904238410526175401360586079655485175632872605025499092616056493448518230630864654324195265763824090717569599030161674268463079607528744020880220194543825126934595603745620357749014422828867236437717658887063734673742371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17843149429773600074208779500721361868831699294846870409896406000391819318790711644361776262213152551133819408691086125891779433512116483693593930683591629807901349653695073905801081653546281774916482893482834061936892223815976414951218319065189018428871280777251623209646559368444911638040387074171111306387838680559412033202068132564077331148233615340551423412872640801743536361738287067851070808841902409610420592527416383295144585937007597919957052094211426141733099630696965332023993396355463236529596235761608577499310030636293277731394347954649730785769423643769095971993158978973628721808662554207576265241681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19270658747428817323301715717239945381521045498339401093598214914315478335842497095162504094571194160301845907650199140474959794590452304965300992422363389385361074538454873882482398011163500807223189681483063822123034618213338136437015811966395285954313100797916731274650068290925419869272097838128474996984450196312595406946906481234051726455610977643097773303720897683387219839896709913542766388087173409407718980112127209120297369850387177944047024303371075550505450973809471307832014806107027853513394623874849161986614061278343929593256388551200664002488345767086876035175154784976554183446184150351744022026881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17360821364839414980030060668030653503035142408795669407128200753188112163671389696677654576449843164842628876089923044938210988145052789102457492407678476634678429575814766697403676211476396421566324783567647356148757169404819042339367098378265191289596969509773174158211824610583472305901954231688204580904356321504549194297157809674522276408097010959155679709451055112934382123693663023040891101513946800787076417392070778954504432964062754843376046927321601252069880399712525178909186393990050600153137058629683920998048809370440880746789702016208847025895278292234680921720422673605477426021010643830040796976693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17292627014172532841580134931008987739322411187920040660535441760036149849513563745260847581900799827147461909690949839419802811817298642276078184273895136673547622352060651418297399038437134671595770619676783714214195885225148262269113133905679418613267566171493917077245853677623301350419570790961329080453889860095664610490778266657200520336917033592383558757543652797015437893195768672779333305137857665655941409072626355003616323238620362380770649222554619559628352376944629338519274417376765632295273467764052711401394488213931597127841157612341692932905850812309967635222150634362772797465239870409646336854981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18235556760586064650648107847380340948229349219790300423165535359181616840389448918106973108928662846220363684177656878877926988380388474400751423617530055411979222657944429209979279509097617905258103831533307712770436682047650386511841919586958658275771488789972904601405602949857956716496533575700958710281049701990180763612504678657179686364135556772926591031397054499594465103586418682393632789055287389035346447560662888380015970522933600514737863607439306025886763516208730980883669254034955138759255379392194726290518317517524277642437064476035384561329457557049953317664867664005011958113818292464100725038933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19362738059184082988129095100600707289186074635973369346350310779259218688291984250100725337420223879631796954151500177931662978228078518526449940675643926900171762904712895866514879716667664212855326580131954074944509175384946423225815514770686309227193002310892560350813997450304708928648850271184548287839996791130769425758569481171769481025241078535175363280475861915458752265443116993916132208206446863218849639427608957014493762277139298796460905290214078737910587133981507859859239621312507896092402388457376320089129719228213738687526904545543454400894497909442476928342385619500780452110443845564361984756501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18237999890857211513152790881983389712286444533932143404480835879413662179788526153954268742818867519594986416810195073583429958755389245706123429908818877136230403779569877468406329363042854861328112304634172298907483707338023861331769457045982316981499418835798403503378432662561227566599350009957556693192977946960597286345393144660823493267234029336624595180375187334507970260294597982761006976227812763896897786808573687719578815347963475031163673297100358116587324854868579810201003666252809374757042994004666725625791439650216604745231435137154587329374601576674538388621367752463612750665146428955898729325989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18222548592077651827772975176303528969663079699953784789811681707694630600910369403374340811677089300664319649615721118258064883317722467687807286048172509076985207474011544692715771056625385908091873487577618298093274832056169792156236304522742559339653299795228339678772323315133025584591717924354425855122508726472213877487546609755102213519647439291338864522763753776400118681451071385347632464894381785216216242273872071270375377957988308734046340689069095618000805855867919681412349143979095919207974185016151393500356016155230850721224374712932646142388020554260226822053793437685439517443892724563480690166209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19031781868203953326924433016680299875946986214702515644474508970587179066301176171398053687624569512063325280933872290700716171945629419910810650926050938068121843883351538215629604605402636822144417803110796281085336272210831654935071735310314005946427985692771789152200906496103279694973925665859954416718177534990324228771070346800443986947601384346480281307837798612483659098911519802481150680371164920389734094494253784651341743952483931785542042380721991972772275607592058409571772089983716525762572952903824212268002754321026622191325981005253710298888014120276704337665033051755449348063123860552908481143121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19383313658887529945307044303291537894787704065298038124447470510365877612675578787868482757464271001021767760791389980400645193245086024185143799485772131466241539568785887252575205893783521379984811096064861222588184049474371006926824287550555680489489423964678370046365158386887079193864974080772326520266400687562520724005731333385317008981403210215253244997253243495688899849684444880039481948770983940891146027823810008368179390630546145496741048658950095842405368858186661937970837205126913029730810949118073428648919902514317991507643590258365979065335627644161297741903270896795917031804802524262960982744989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26279103917584387329242117990214522473505111363381358760446432415997271518325349406991764034250105857695759093384612468804794777578647693052272869896023111587379183408244962285652294076947947422943849383768841348386924491470444164078021183051026920216595896647731885518298794462009273371692263844634296406959039011861509356537270553957666307682142546519542217101608818596768328348919901211016142676072075121550799108391600718173238089829063958243127345716569874092772860850272249520491695573200859663238159231041771673755643704284755773379104126302422966682898667210096541997240833139880782292508143563719323515788293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20466859269986833206863781386856731364797935915092407852263100984329480875425358883548967741350160386202997572169562399211949269663517941991537771140703373856767304346134270162472233812993557701859662206018484641958456155069117159720734827069486215291122085683861654568289080003574490522624996282360928844338379951806105429888969830279764848397900010417083975092459823323666978593434585577183899631354686006845668647446209223186761728892473269330435182711960298381996940074344364701716382187059521390629228635765829682043577592410707927333734902994555389816169691812207039517806722482495046797549974438565508915508567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24492404250831623521233204105027773070733357135071744039565220801033229281109227123652678114449930807810488062907972911542792371124774652330485787958461566072445292560743277459878064298551894270148815822314381088889761179467895374149783325846185786733382841577594519769163948887009313874163641833921027103463561955889461082066295766263678848459697820633320396730098321777518984067871176760185299955997660742618733983601200118513818926894021710520854382533472578320167213333598459764079379855169073119488557919805024414843015172314132982523306696183164737640075394830883132050326315481503789578004095289784118451033767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27105421009532113699283494760935608425587618954438346591521564051623928470762167139424843086948435706655987576273117206388724585156960539320019086968573607418776631897621217885427933103008360727716693296883956105732108328231207545826292243954570343193675391608347094977421803425843683896782724055724626256818258664552715297707677050800956461422048329188802938187428427514858938504911777427319484723171430107810962876000791144958824179567040501385209690033269083775418455864577345951046517573044544354572838970756607631797133747838822236581071199513062911258547230710936848961081921512376386035318205478467122500722279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29124875581256285541820974649530222127318622257408444955750574506075664109248534668200061297044053454874452603521940313548432768779391504617242466587053044993848759505304276390458846032506549100056346855757596868076583937296635703799569743093939274021534402188976662868475421503406933349730118993825071166788403856498828670291961264673634912951648752817703245255352309560307048317883628934324971909772915211616282273457394429328463623623185918268782745281728407913174491109726544476983961145366148905175070967052023548971724974487018073095119678274804290271982111442870099300855875428870429018159695908353336830333013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22641472375434152027780992565745851256358815682152910543978650222492949873572460158306867563931335647300178679628440409591980028636820947147928012788497492116542890420545808850653109525150195893381377085078073041449198498675486792805930798907311705485024701065996771141110367162892516910350571850855832659666276936923645829645217111427201679016336333773839717129533505971058977172148694807460536700097738284600539650245587537600161638469566142285890499959482969259626911356808936782514548509408283699968959634509731903745020352171371017770132699100503753380138568465260516494394304496465879454213802396838500746097191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20099822082088045690093844168040068382338980808730151805008509579927473290776986474980289722906352596732035362940738983281436387102512669466921969405173857022899487143614907665811059697221360217437718948829925933232729883543851472113140656611736892403222080037894605437511049494241653901892234638013751998000008872294397099061089664780845305895924940662834576106615950966263504371229412981698049161305455077763841965983465005679756611608235894313306634559248653293345796025699300295303059207100546128107989968898619309945328840694100140951363095411611626574730419811544265277942234712136610512096867296334379663369241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22548804467184537645116273493316187974901214649550214576244313223053177752516216807160508440601054142615673691388904885871765247156871893021518408446791682881837210764394055347081000286956705240776493963190056865857970625545002654875305809565222572850423972930921549936521328356729483029803548334937654444578756344676270490216030133459466348930056371944574778430562470144591555379295147726406797456704705241116961437596422353419317479872382080784372222895498347215665904975254501128290060203602520607363376036221646015235459024929160747864420075770282590078507818283885696484665981994451741780339375161067112819818627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22757785559528703852563106647813796", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23864584020222109710810904617707306615769847400595431794880074438580754724451349249452161339153063102622627310201134971772430457077235236633738962922211854176246827886148680431535774700071804692784835886093525296716775059020654201197639537632224780563081398851031087648572551558120648178307823443463455636758004794143571233940344750649805275226433488265033145002780373015316703307346801097890515770299470490245841306200492744425674851410656568665931229327175352923496876410850570556234109524250155913783652996800975912788585217988734694470868146315216382342447129272144067638845351143325386129960121875436749597903667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24242275637833908346541013437946870912167418245809650125654133645504291115537904446677461928823216114869094355823365733582137826535140947335079719877351651218420943201618146048802492754958024076807900321699826055315442113325797785400593543241559865891035394376954116413802808250760539136836569966177066781738802963143797510927556757406778969671841065733427305982951193786086107041336214565401896695170286961593829093028026565956758942344063114921121685164264592783687002237591990978649626129800484621971923098815540207085678938601309596850203876029661169634574813669219439092513740484891152330210707382577982037591097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23800954290894862377208540820417528642967774364557297201186790766808184461860840233336644552053542177330171850956003176028276186538461429745490086970254346647596951267965301614092658745519980888536977148748276035561315821583862919398732058632018131212182278632514441284848775164476782575141425829163174627912928535616830010078639872716360349659773096630066286533004725952011399071933441955947247457421170863348125726052429570280322873688557091152052626256201845663999352477666583239365152940993776891971768435663487660784565341745732220114104631157900209400854478257370235816555905750213145385877984473551043369791369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29267913644730888506263161128977199255110769467828567814701037610016041246444409229533281551082826255231647700144630837089587304159235110180965207839425692243994968967552031217604161632429723136009926050337625765166965154441129502567828336886241523935260360337854459029567425872809811240691201735435541234646482967121413223289112747757761314975249600746806301316421974302232099456505281539350200394806799315226184939541964546049992549501280930570667922002224406192174698912751773364174343601921356896139883023391001563933160514469525302122958701845127845916053347342532037260458762848391044834289633724948686910877303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "942086001729237755951255662471473361636410846452700291046679373927232733651298366909116199833139239734658520440516022526758650820679180065851033031312019742708346563318969786637221208170891612061502723159445080385946535346447988466283764530440985216230836775840111622324466913118509392571882171058324794061478829245200329763610069963674745386246419139444767513310880291055071351580374307368111151873725592319605939488605515031450027864123643622966316765417838124691711001768229110148872552749701359531563616909554451052212495932051547876413220304949139099089266664427165667759200553438511801774321512772811792923076133049203786965413741700380011362113586711581806225218867410800195034011925408366150014321622645778693413493649165738568498061684566489856945658634510210464619632992381984208775026095335388463026050297703134972639925118910855608762124445273302813264866648814743250229376121459884037497919830400988342363538491112181756403166873187988657655258530728854081134859899390646399673078786832592688201240621842941104833454136011062303181516922551233302815476585958298204093208358818899173693341937871012724604449954897408271702647741897832850997817356890053493442273587777441521401050250788048131885464192600290579546886873653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "19684095708927226574485166717905487015920889681049480602726156785541069476168772083701971911025186634116672028678073720400074893219041094613222360147924553641658411945499368960215820134744033150336668916389303115515811554631157419389401062751892926223889842523860817650414028721544826065253425428971110767967667194777407001788480040146825075098868790603198363161862857206606296227729934748643844796266460637854352822984600377180484637940700031281946878586039215987840364991823336808759846618441787651583013810314387443631405753809947041422784548385651823660208391467906366340850308381156449020901289241419308647056809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28004038662552565708195258317566499137173300173146257150567548984356491754095173271492185105714930857967729135192952712349694514309223971998340434889821302909989839223890641738404544622985814006242055990503923784800361752352258257712993202500823002963533891913009455764957493804467627574065463647379571304268476829778640654558508183441632567489903134210054344921272529920269517118279257137773729590760920762546799224164671494502132672305789942940170922342326752869512406924954602634832041689877820230095377264967900089598023456709537102172304123097187901299861395864385233114414114449678782179993261677580779932247953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20305353007237155372207533103428282102343716457749394639768056933930489334200369373025042636667411183141968255459467823835995637223736749558514239611501508707675316571397324766619201514666700031410572051533203424427824571177455209006790701197047255734554254074806689620457221142785243961233806992555602844791256195437011224802788296555881240688761998628656243212927392199434450509026991074318534772399580314083894932561153996696780654439158941548191419744871009730530738729483173608275012811698400257641703280441885627685486973752718154728990953198745552219101219448319327922396018891040811986282396157963983880504347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21228545424890537722328055856462038621996802481955660257559232173142601486500946199093755704119755798416135005036896222301758567913235106910678036735157933904188108222027735126193059006899963199505844973182161937605970148251677807523530408891607603116870790392741092272835479294581601648030047218960203581537569124351540171373026591297503661758953455729961816469505066497368825188572866150224530487229939070023244501997989647488983771162408177865988882549077655425074936975068082245445122509557614032384792475800049761147809556864465313597339031288195778489055944966142421871685675354162802735235085519616287509897891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25759265829959192525830350266745874584881917205749300931941532493682043021931257943463856958852460201929271929711064041990953353475704677955033621311518269041278491428865134021403784729187817049646073554645842235866708531542237356860026984303854975808632744084273728514065502995648812467203749579397070141032167293565028630588646273257307628347787917960156268656418489714012662897024958926608440710662179756279735461031876987571509978016819826949711953340638139114413381701537428513967560787624121751631208644225629651709414086725232000382901818920990458560358467830313915366196697360650256665359418073478257804810087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25329642244211750146879310135819080159542397833281807453588094326645977295633691132757864207157123347642371884352079238855711374237689607632589165655347914387396558168496102983516823102133173536022464951090677820198669660657589060353086758772101120893836870297973260024575641613621982621748940966666476489241892474303981419137367577378096919080208241776239035504525308956006532900612461557598433802097676211841780930657904337786790337450862041591133787890342399645469801117404638366062404343893994372978597481739637136044554579075056431295859231817176883294725331769552982531399168950906974246724111292917075703737581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26012186341661458752514110067250623632815327306423565975333557270496049268170368521709472992625601248213130750339040305545457675291635700816840424338548460699739442422990669452972744311000974856714440758436559604132745400696225152778875323226831475103956736606195550378185063252891018120316301205999146492519787233562958514085698994566691348274151053017877570234150401098313114432151556398785219884972511124972886956707615140342192970483778647117901846585211412563420611668785036617446758395851623980861685916806625460490245948865891879838891644923247352661963609988141194829020326775557111333399699377861482554274599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26012186341661458752514110067250623632815327306423565975333557270496049268170368521709472992625601248213130750339040305545457675291635700816840424338548460699739442422990669452972744311000974856714440758436559604132745400696225152778875323226831475103956736606195550378185063252891018120316301205999146492519787233562958514085698994566691348274151053017877570234150401098313114432151556398785219884972511124972886956707615140342192970483778647117901846585211412563420611668785036617446758395851623980861685916806625460490245948865891879838891644923247352661963609988141194829020326775557111333399699377861482554274599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20148868247339888571048662048399380080257020982064468672394629439825885361869076729815054817079743355976045376312867782907224847697611320866671799489974906003295454648519004889503332980893562468416833097125688428166202174265146325248982370827639095395984689687259637877258372188228255839198590022859186335576594215771661342938405417730345524181931319456556600877208521308190502837945574133745750032412005334748162945316796267225027985003751925990159606832949298084642623282173602295239766061108251503508658566417606572034436957668517719238617215566885168917863942766920389397269907073388066949243583543764496508254113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22632560678270047250970611282523574635136832585738537944890967272673372733657744124383310367677601421382536585740127893121094729798153999237441259525626775752235109047052093368616189468247072506960143401148125402308628712938153787273217553525219329570693999024170344153567375920395300563560622366802954838667059319529427544215918076787653969344943244201914988269597781610807996744671457251222179784699656778154225661111649721757812856500784543236377069839594525063874544211963085054893282782561249038651256094206074218892095084057209572981274376601038164633694196287320916599437054712690181448710659766434882627147287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23167515664390231275022919210522978472200913215658232722406107818703260707459817301022782287973855194675672978134254260469854109157649219786427085739986597205149340023959572862472070991945267739314750423317288036770995029317973210879840739055183964431034309730942415060778093439642350347846626923907267043384724312934756054892188389031789986886534281443225495758803682716620653002217234258233620588475557052370194113460699619717069115790111078093879623288319740782475354901471657841271698197156381082781447790906511797506240135109445990088427191307010526312078200706557989098710733047663896559764685720212422853122253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20398380209162772921571110531968009243140657510134996979208034330285414153078357134020581983387679173928588047331673657629985108346716763820017091320996232341888330797559263524318461829940440735871322659974846388180832664988638875236603909857890163739703574410324995667519262912955172227567776907842542564410774271314574375809311837057150629548938304479217469444081851023256358225309892305275398069642860728201545895885533202591104390910328630323183382197768279960532141332691851821253614400725433810070912784740157147764850764285033814179695844226253951234865883562287937736984611685536504449784641274981829252055571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25887826963639323927974273361622711", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22429046825387459296500817837430133", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21102691256842472421994776204100761723376711423455909578371362100466966144892419851959052404968117088939618469051228177337770388371122913511355066269479579036343358549285356567797967730497621393955708439899031668679259488474320018508655825703310362149259545805181515742440043899326272194966134538943982127600181367755896783263179179934385654760512279417747544594191157847571762257979026209808251243537829286140068822356300954811003656941839411253440768322059609647038563384581762472912865767622683282120614730654602042765717158606826906659406166581939588720740273034013060123598749083277410989478239657276830069381319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "26732533476488549384884786726064454089839761831739114008933855169977434897478617796820634659212203622273008201552854409852635857986782517221358289082315641690503064223890370560972625381668386781869590820040060422644716409450031138670909649958985721854342849425241576474683023122898167166699903984070297850047223032238858744248245567332364339326472129085233285979070184293747436185125611669667118627220200723368367068753037331249289431522890477739210791434064352616115776299564925541647513392603784921557406301800712499841497055767689778879285230002840509268930211672257473193912209636692681862814104280268270118896751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24829286815581257116385425242157467803036130800501324483749349690928994681548682933772315060053080018000243119837507620494634660055597526808412199393562598490836208042621767975104820411398146727065711750534715900928891290755222202836985511428598407082252482396042951686014165270670450936613221513643479362052422557497635152005932893285313325531681669975681840026364701283661341414623185590331959714720583437322609928458526431718968662362145238146970923950631558397313963198945375526161433744469085065254515502697850980804252685892392805668179734362720352942878181760167338435394809028169792376659011392935395507851053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21995008090435522782663394861476793610107760312321379917225103015069135429101797581940075817054090071963556996847361903759247743177821738246136649654564056993511509382057293871015422511432356159107366881238059239032305007039189813851885414999703301246382086370133677869292415897992853332614383718956333855515412820076693723701393787246434846056727451415743510228857512802125529849470202792783705828142807118117889538003596095712526715973680528157193234865445194967131560874150835457395750251035809638198704067575506461007084915494958746148211646389244835256632662811090813831697078126763957262761645143198414344780931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24647657813164814739565498327329968318235368974150051237215442561530862901147482400633877457351887527999165193648511668738155810693452070790111305637266726139544984279815302517285339384073742633011203606326443251629757900269024475420527031466798558093102304433724323298884215485369214938221849731111442766068007976654591349833139927710537887831025387676991407823771378110912124951823352795670703000454920729216179632401882475679847677869850987217628582955233946149057358057430505308904404290594881893124311315467833470651604794573619462120199543377911503659017147686826195735560535678046347640681438231099166854523829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27439864315959531190526595744641944769451646290651894474940247035773660004554910047510347056968909239801080378326490521145806502706331705423540952317392931041435250890346279022371920874070958088423377140430295928175377954617551111983787884103373315619901183287429993594620574753234988580830242196452667570398845978201078152748122435820486317781215998635561707121447247974925811437386657565801738331538370095286335083103137896966415409727495670587197086215377818891903156943892844370648621836855315520880308990972042472463457591742379767276356860914684579882393968915122652885264077394185075394841655855592748407160039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24608477886957977147187483549162714433253951067279213970848412485992342504802136448361261407106183478263957160232602664425768059530702074197319408890246157069633791328476218316419365472318013847957899887951337410273932499242732856801960269550569594235212754992805916175234916627006536491993344683913363623344496184317949573343249976695442029174848686605272035613847501313645846063275078802519076384837385989430489637478937322230216629926871043641469257953902031065340751452877280566929825159699901280922642608895460422677399471017038969131171681183111631611941681761211118267688951812978456047294280207933764918489039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21379217648314790634463828824759507172430906869297836432148303608408957024499294350344089770424994050699734212393543329074043351456191648587071269408701759670411057572589564597063174915941474477358266938141780484770241081003037802361646588442075067688343682820457807610304703538736613668656823096962874532086588515745440047198419824777734195009257104263427021472643272570075619733769321437892232380268199168314645719524926196786556002433862210024036724373458480220094302192980525850909182086276059593397464390377976247154204712755630010615834876389432988675182857243635597099214291233526587270369518003372150175595221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30127265714814707111365864207181136512882172161801848677094884031774195088957826865312730898752425089777688239743302284228643155912742442519362671789951776743199766608823973489623209583484986428435263189734562079839418686325071343149108694306552744623616309216085541059419774277928781293975379166560931363771028381617484308726693291296362573298631529344854401824138667717539179781223575389161580228014002972191188240066271947297131577535631048630980582532317750104886848982182794713663605955511144914452107410086831797897608104466936394179128524126270492064154281787731309994483779017982300241489137906050508904849413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23405754138066983501645914240192856619310723427244735504694709564694120397242451649228433525827404764845250137742544870121741076522227486970611422121465951234143998686183800618690289111863834372954408178287394037861891520961586521156546496108417003666227274312988791409948139263345305604508799396250156836087680795757700574259762703236315101588538826474448261122639582233657897912775528586397066911576472583089321267425953812350511913326957202933787218421164391431622958270194467246283018383235004560763526381732512103611178235395134787731008168623984811552231030099995052178366094608416371759016461975577503792704319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24059298244627347973317911430644054417730388874277300561328223181582776879533096743448282833105981782431515325694259903612412292954923788984170903029083954780744169678838035643044746953727856687605482042802929245760853079204358463978147249078249080395180999082417122517989002600896413862183470949057085893399435023899437927745183540193639323501700612412648488067783084662471536288103756821931636111886783374132345181494159153410927909249188875880991583778800029234951570623905218278885542199222088488690048733487603994496991252473594725107799381140182641683855588774636745432712523350894590223146529560989993103096791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27308916046449098685637144617158952834968903626257287642679393995024557199958209446007826139762574033354971846642473889532892077289312746422253896269196734306711847231787340509981537550708232413162244253816405573926692475611304892294151229275859889474338188156597950584880980197524095410079876453236437278946367627756757057867158212598932459368591487906581652183380350249528042573367251293002932740070717460671949927917729690874693184577208033812721888571698721204809613770577615105431101527994078787362935285851964505612553665857461199323607127497344016578212019265882900302402632929492206903447610756316905889025819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24318058860492253369469888738249767102181304991427824430592490676373879917564953173490515098772703809764355069356646115066324380804162577811862786434908798787620438782610559532932354429606321927868590387792269037292268789343454161585177978903586246705757061826853633570973493441957672863064690728035679426294014303288566162113700498319134018053138864020053117590961389213094202515316124781419286700556153468711814603481507981663540439347214941168366579530672644257712149327459524380660752799959366073293792558067948344351428557492281406337800883213272702400000336301269300212360355437612742494048815773500066847299143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26216696853490111420217971428875603153997533361948712895612851207672835133443232017040284033466637094336489201967661978250076530777699878215104027770791982383959554665957019638130554512509823811556528089197965084237265890864056984685827009923092253696459008986587106190032915126243333627148508842794444524675445563673424730505524591448130549814578217268106172149450381794195891566466621564513244771591971141046506233336469001862719105734985146116242247759196481810102090137194952909693223282508122175626336094565401493857637691636429262004182172428049348209562914466254152190721951829185136904762621961064744236937309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26777477924072088041861764674447933289279755815626894788118954979855099467655797661439982800855860993582447325407238920988455991116725933307300636363512786444942297737267172193726809916932869221402109105017037206064328256197416958612755179716086359771871132503563246057569714825426589984977012353701008472850427365752723922984175050737506193549586271717448974411928145976259386620223209206055899711063173801449648121259965331805387487297136461887373097659978345168935189162969414902907858801900129986233245087588042129853712245118911886024519853993848574290277524511275092198788885401577232802111099986724602823500521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21022849459091866114564306719022822686343962817317013077532081782151548396020047763028068831036327258303740817274481882265990629870722319772798334428882299502246658058802879702389132487307511332784813123527086999853275856420243735480897520276073445428370768904818034019385244397288964420437128621095756845919644526470121664208020278291965465807175640069262625622457098126370764270622231680710645811649936164497950464323668089804662704178975541078371742464854874253390486831109228468152564524783100516609148869097410883024823280687675090364852666675309371042096413724421041749189401622474724075906612055391795121556351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24393523952493912899150434744496186311069102771649895121729152911898640486666005505639773355344753710005782570298086325501272864767690477117935345321493065912818099027740396472095408351852068287062590789880820442596983380040602322332145880549733620974908395381006691525060890716287582768717200967555531197144987514273643492470376366674285653468845182250719378245051437005558932986149289432146793712574588050045670585204965784353121796862944014678837968824913884951151056480547371645312643613300166467249974101590205252910173831056357745344101690866997954399467373189194168491856011193481574159623798033894997934082173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31415991864010426559434849580316136521683651559741875821080166320628930078229363440838424211099313613195530518602104825881116005559612930235544237734095562618715335433381731498501360529281282254891362528207511621185944239567720695135346190502381622471363583480496615941529043184929814901269184249086866274961959430409167181817661183357303468012941335639292486634691567862657989377233299936906783835054931923658946909358683116409347840085310820919489504662125938778353702042538238671659024674550959967389561056360178148522964015724821437313810865056473643989257212027502770577287397631038588863717241753050297450035821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21045422101764357590262033531786623143002208963120137021231714587393868634699330781091724184478618446041242116415314728482080755959621689648110855683538576185545736277190860355383220692353262060413534233464632465919552429741520130969314354115575975645649296648691715050540734910372409545424977249593373150990041094865703279777309660175666363028343620070607973054846315310509476657352245206990812022959518344113960034124480907892358998211639576578329261558401161415193217733232040453701542045152473760525166300869014312776179926436136325235346144992682563307233699797806195417382249831453407423752005434731561546331671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21207992981589835229395558007539704838469968462996482559055185099443805399004215395367605835015854220353215822293134641365423365895068685331855272165233289898100771105799249411831899229051806442219600831193130042960198269850279018841553228866055908886478844552535424360277450900122531647626570808425002135432682754332010419186060646968063058088096398380479465810469116819963537215403328062520516058266165502923905849122399422010264202850374857476668655840043563164884025238260985690952981613995003401266790621263525710460446914693495016814745740124563567518332291589382477580127757872302186779393231509697017171976853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22333098172103180160240505438980790645905692090137590418813657744797933403012723918209902397752235456142572794800117155708513341932345066346380894022998715122544804736811648324535048150455706398948049183586184092955277653316901298391867610260626204735791261831137412603924616711595349345686183515909628613559901541581510398034105800980241869715640196393713793752847883719604587612063093252335997215432052382662130311453049007805857462598181481429796236519774625311013097606566789866105617406217509113009373556571094317014804218192092570771617994716991372252914609895681530375683839833216636455807012439021089090288747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "27009344377167295039167707990810717524542935932384771832521302985924821114960853248178285953186689830011721469094180079604717849210877369271926206904708323078393812852252421775312620920249074547665061465278771390016620983755920840556123301696129137241267033558738106508125458486660180253872866168690691703813694793182995600182275543296454824288243938957344039783018126792885754314264741386520046310744427724111453579699973226593089023453517655073756589622739223945760453283153808369946311932493598069970464436115470338528886951780948899199456992170136391893096056715845887576027295236432221114174076923190997762358559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26102050305963845766898939596146432033990468032554969096328814894308368838234295372468339138728118452633165803126867769782500822289996530854889090718162565602373107632060918019698752950682573253394251851469308480547481365927293335883686788116954315473299586957662077131884028922065379044310055558209729582055460577562248560579512032609493105027910036661919167562808156884011345993063582548523005114650007758793466854287367484149105138208776019430086893541297611076530019519861820064865194593123383921624543040966067957005595760981434590223850050777994463062540432379411759213403367726331682960742911576150463011905177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21266124430098725349096017173826325743103443419081869576958526670808566671040794021160985676108400219751711649984537081927307615744493889962342674494725650733163630082929820021186446761317607924308632720994880019772117434015390414275614312017720806519359371871550393676852447584713205432512980446842855390722808465311074897140128045911744402786640438009368689634139531638093426466250573764398284698635688234134089274101493744148391218216841434350493564502969256680973740307451456524963875208261281114516951274475378170433323667283438786400321427134096143992947512555906331459294174945348056952814591078085831754408247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30275103920110102557415151172195409197980935136287617773622727131599039759353160313460288927381973275815364924102431386719056897852608151031089248477189548527099267194310594657660442150388527664846524084059334418720443008034511610561826069187758932676274126029376405758615949251888369134330838298171967906110329195403192113730308417061358724447284981633104338112454943614317237840763953973970430176626106349646410827171493520062360095310375033423143715144435583239286872738502603189598463118235143779839179184826541979898183751490980147905689175946423509741091567990822920581463088995765694114025517314892208656081959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23542903877279214493977288905513842225902593280758259075549544630744186837450821859687298718528749107798096634284249232487054146010607981076359383506895722175329827809156007544036241227182288026504307890918590109625581396968721263135981309556013338714971424562116550531309321473442415367867767081293553789609672037861678249574175600813111664279519935014981343105368225303255501681230156563201332468271034034271184466854666755206939959312051036738146682855022013657367074633401514279767537643337936406909161445459749529281880797408694709085461893532923526163781799897063100321094629681736237972935858090734288293880287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18971253040410602167924756058998321055457634478428098846328490565016712307795457140378586957418969431335924716040762472700232478078698353352964926159351367032476605793815051669229860168624015850589825848207552743496818212457181611996068867966140602006545053298168536442338669701730767644137436700855161186678567913870064898946281005569698283040812927088067157833111524048248950109401561338110825527418222674895040061087776496055550292848699275554034473762185423797374403869380754763182746092139093217022172713370796316640981071486795701216712593863857489888612258278540036971850758610249168013597304745253300225963813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18490693338717019989059195292868678636178365432637535662692654673988408706012320146860304375082698894370836614602856993321254233231157745526638587454047408170254382428957393493476717094412544453065908226065898717249818128595463039807165938745085687564407499069835908708037296280741221578023709237288716227637001989524794079676050670675623917438216426315464734029999269908095846105888979254352619769992468597949205497517983540070209434015214555679312627603585247741359632445931656580667979452815832127526895367233699532142750985665352715296851311892149664327643508245822877029874029445941034364762922308840131878162301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17640014405428108589192872610741846222971517474292084678568928611066919006187662758699495629925817011956023973110914467478438446306502255647585838185114888090013888233183824551011086449228212274957848693201328383831963900587242774882842210657466194525456288509998415648940106447024147616010551743840339215463434010701817474892537730930611416094339195589742639908559644352165589455468395016373902018069864416463746814827215413076047850247667224794887707304748521408678779426824144520165210760674931792025699435795346217351161896543590191261715629502504182034311201008346015381759541836377521311991688751292817504156377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24556267348478214831186347416378539905501017453975318182941209375749070156922523291065465264827327553855612311677095733856948359143567446371161270068483095227013039144563712496928775636059670882015886621999744483832182051917502470926117824991913055190117737375389386793083034212718749091345692228822787558037705068286961921846602793405421568877168427768613120894198415711023744131586958326168465140039861288762429239202230745167234360401152347042926054863909572372899402829486273621382620515447969787760932767311187708894169704173327074527057575263648560932274567755501327358463766964904307799953469065205800653577169", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23487140012446307964012769697285136724501159680382838292521398658103159621437944270196891985398741590104113142984000736510234312319069994704643137757272335552753711607132986272309811201597305864011710197084386252847467601478559830897527295860041572707306255461997156824739199046538960337350409399268711758212411247476704469954686332806750481747373983676335125131266758693865311765102107035068070998320869300753658464763431759752506245824739118482572531980730312551145409884034101972493544380521571009567456469133950568961752316948017103277255377218311894974620142096670838684076533628565478982542958726967203477471159", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26061902765228747410697623868661498113983020097957286421361750242381197872101751684165813337253329456101861453201272435962924078241246616315883041280132486176476651958406080141423574282561307833124739488416234642319663270899471875025442175729894945385396111663755824068807776018604494810277069258652259058012277841033462101389962912504509650421708171401953625532233105850863954301149456830340956081986737676102986210737611160000851108888468128444612017728406380753541239493239900614743270238920446851138129282057444325813071474906679706788440575698355438522468113195359650628619664113693319952833167059606385341989327", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24752183169348786788718188611478208078355598204608513284553326565874684409317685146709574390712125100283267849940509088087336666812650804279329802161150102446211350512743971974216403941250702423791995576999909761293643041290667783586724040942406589522248707221367250096334647608597727325565758610557562552203491953949161515964878758915680158579892577965085127385698745446855486206239103946049321062829609562784251669354155061339840830495043949292507928141017447353922239682098399120727574979726186836166329435152422265045311033486059779323810848621649117667654248737490377270183061969506049810522494277859947538005669", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24183158388631991970212934489773643527215571052941069664238587061125980090685031477596748377528804301901518514177026431123668940621176777054527919051257592900049473223097455489844664269081648882880139258451408527524932502091550945092595385465827671505264701861098859281126428870731598304646192739276542100751246459635600377674528025135203207524153420095779322168212740834822481358630859555962067936326971994814243552316120787152332358083338993767988576581567952254462176342306768622673240529160526837222474301249415626500293469917431016238255136679804977872085300838820414178583430210205018400591072596103320014004279", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23098789481131382864123869557265905837547885593796450903090644766575134517713162582360110206102578012130474510019120553555580740674317686740827073149329968596994000972484415433284311473621736584438873372201980751431530819663015848053602195046379840428440648242762348743022641254116880797313939024966013875546045003771582814756919588927274263270961545339596332659661828105794299418391291052065724692706329600888042598307110185894433830521547264282635499842688637928665088651406206650559148958217095415055828003332889400151723071985116749131375756532572301681610764933721551407612283794769874101547577305745167781402153", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21055691345426375226555375575173851653084808399592519007843412316459679286717459112278768607685787477648107633468351343348204740915843142313156785337217261745179616911605245432681806830941726020407021642599431711915102966491608306295628874535568953123308350535817166654880858354462247902455922560090886049138166040830650461513160222991514076948224895121861036711636479431870187914963117815109304234049748163596656461318394460839666053265360462309315694747502824856049910303190857650807974325546951690970463146722934338717373307213224118102267692770947573871747858880220202791245874250290186767528802897944467758546753", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26073641320660995019931371139659528658220450696340923050030855610824498094578087984359384344778113568705139952327365601206823954355701906427927614629321652904839654723310528577693364628203514605304836808373105107338444632142626102930001190193742818673308426760774957400574822957552242459391928122945145763496400389862937106787807698302522367335310398422669297995482173073140033527319264091965063597813568696870302222118163400114034757632012683560902487148368959962642826967283549830524135095134824131698469694771817690171908765335850742200012707953591164005452051621817975684992369628621389761703989298339329252372729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29842603401486161483710390816296478173785552688036226644817238372062003683173156730318563825637944034364627317995494930058703087520500137344312038442977985165340321902034142719976939363967152296941451621357338079945431590768748905826433588747088362781488924677858333501028120403511170021175423235905397691639807445611796635704801646967170883568766915574782753970216311408555918577035680099015725487781692159822112398861328326681059050002879493037056733302605390487881972258654522693374973542116400206774751733642694776525780943363744219766403982301384413030025997505003226119941382781558391850632814008327385445710701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23996953207220792015757002903172818662150535095513797285051237076947378150622122221283727084612665803479078229645910581928379609552641679522727869966345282593256552716728411037036142234713216184854557640564986008101086833243812407982667109135329220283435303953130751466487480935029876842418633831277688392608042496851168412523875957309112788774045017031171205232544516967804110261600333399231316869689733136353958685575747724461800069694846367170251593246263920702244631824860170453530070194485461255020308387509038346085428227836999151081754623278440462092698707588837445902089479414905837385243546302030036877632309", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22924784906502730334181323013955265921406602622020979552095401820260985784156780120807621472910038304828683914334165939883964369405260920168178634995432193647674641023204912969368340120233625183329390203464698991043391947430064693855086995206215927945708112135887218085743129408457056913193172456932350428523819259741532130764132619942992201133337087553024303465417927236617701611707524615579950053815529265937786293885532757091070267681577240795550478703221935874945100063066611126525261326338204683092663689982202715935794622989602434536011528614331737714207579071061052847122388068166200027460358364359013873627267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27349678630726470808587458130708444518136301546320173967002318894839020536951262757791213642842431512010113822579234908178811852690862407162489674260279581066362826100464694154070482299957364676785272358237306172514504941331702665730655693321905019393753055996225279100417250835963965781127028063570204807691994335336194980932829577720896130418046266779135794255194297675604475903125688766465574951057983575658501306753977197550203045939246250831043966383968062746409533564744611382635036170312859241140767401825739382251753142994185742650605825895642960044825231158344145115624795714000858306205260767313964014795981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20529040255248808618551716097093983940435597054218192527950069941708253051076409762107350629735957500787859326251554768283100665630687176704025888283471498853874504119243864821262006717753247593669302743638550287011454642810325405313670205840362619812450105696649399707114890967899652182969657865663440578381292636919226985703206019527780209381691541861813413554743576589571967132340554267991629280290366565950427439349535603426900842355976124018143710565798508161264459251089269101334952725726742065444645243332899103280974106627119046254977621007700705958168874572466447478847436981533829191374989731232164096931307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22438921918732191287104010047148854257873128946289127346832651418257269825575519568976673488389735975606350884524388713076878038893765735546515251836382314992776819583782292924404989847559755575474508312285730730842002843945657263167077671186443937105063392426372753181261620769661485459040745999858664197977605068037881251445452115946921614947552934438953268602660543078099934430132229991215331927350803953091364388075093636684180569809566933949479667887017600776044193098579358761237826606476935066289391673298201533040628080038345652547261989482187173293105723879810353276288468769040635369531757057479242594846289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18935945364105364291007329784722107764031736800732813016580704897266574937457148527325332752651427587676505234433842933599776463288678036730592250220956936461428837556391565791929697428347959509656463836376798985827304494381952242776354723424376163440545296709132410736243954685520046852716835053074339311584737212498592013199801381313504662370213726935194856460048177254440117770954440491363802434458382688284766828420757011558170075774381750052409126022932829600562128113881078479683844425078765567840191916538721586004117844239179749916039895220941790031611160501787670181845649975054492550486336631768491748393501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26782888760896675243038904477150471560193374990994246684625901307000185827753615199495737253909314345390759525435691501351041658677321507352445843105140989107173315054134158618345404598088753860711751448508952333970250391092831878831795163282602326075625452701712433650761584159910541845782299152590439723421565753454028041164449142021812056955696484945629951946595629280523231054286313595666998170749711243768964290851251112737180463243733919777641641637934275991111299997363821223411576644572858669825263429947029767139775164340937613613194900839927283594532157281274798557806637720579935448075196841712604080614151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28178164060540789381405864086432930002922097296443022513586226831256310226137381698752897405001038954742133138955970828842253351494595784614768884788581484267163075450202292050193568627961917725555693897561874111999172217401029603678823559961403256850376484575176464956122373866169011486724832001538504915827808931869812249414798132810419443095936193926585015346408474721444144062557397713361689923589767966420685695436995246485875514035165397981486575499040009902411074462341703139202921919397391956470183391646085059805507733371442111304578156118140224993152392835314467179275828135065560025278898981190809920209683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19212372679178781559550415962148582758672418340169800274580828612246556562824239568342623925753429326653736815751335038541764878181375895690967129286128303601876066000242142499354986325219765218936843152997140789894467384172596960062125161842741454519095799660511899397507708324537093696329895352905786108158440629743249704886457380904087946731403070793721653446274109758473910474055602240943676123942334466500887464146546847157785370784142107745522492665714279243275746915713659202630499673059750124494798781013711104222653277365281734803572614142552328289773366672421386665971898043323750944541371835796399958610331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20951380146738804940832935303573186991366760508127496141917221826400337470525578025363469385587209420479971460892589459765486571378555042915315004141254006857356219929272765812219368288689498176153419157807444196619526040066599631247546530745771458369710309728891312629962289951372453133956636788435950301450365826969163714109225028931411895216414893906212725983307032066895682245617865052944646574095149041855249189678076536823751143775824711446882480946804899994265807183451456611120975369693873131145511037089142867786282069066747411076789221668875896488535944767374011845063425373367599872501055879628785732195127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16386778025893574282226365876480075206610057686657879977619977607348682981194032403216256640887200614666117122859046443768784031189187296867587297956208520460970461665519072354432343230288647838769143067294827142142066234445939149694712950801632933627915446105211553916866578947029974696560828904172050034103711428461935741793652808789263274273748022901602034708703622909700983167098599159499989309557787125713432088751269825109462889084228714417944371316235598026828787125836898045150383282164342225132075715453402000548406730326077625644919504977780401015286934431488173435177201483485865527918673814122809471642519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23189449356696268203138066360478119715936861489416019374016398928001187340986099992381025611885412534255741421275104502621958415737446481379094151684328182155125725188641764750425681803014245537079843602404628012711109026548035561578493199717290978951277464410447445103187934391713149588365063574831341732978486235265441680256774437057413067056807244334805024600152634063630199505619749109034194583791477212375563500791272662954667173337861286651095083539723322939785319644955906403199645493880079986916419424698099064772000170353415354795113254888672660922845174764158939146640723080226361573052699207402672815938353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20412825801083599075786384857442800111293879755035019166043883201894519646017602272228409218812234968262896126486818380850525102874293074332515595929361428454258459414278169646151221174288414595498323828944903111949071346447616501136949460334644563088286167004360150220690211604518542559866341437184923484243251513343373126602700884400965292105494430872225182800572035095446573853057397595193336249711380556769514497636083619962917175025557792074860030657714201815776424721408884777022425388077294060696998437466177114800660752436010202156702453110202895810098883670061753349621498384868172611641381341518477680151703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350176152642575970201197970274017641995645294934607285670820873155681157403767712574823974343672818888522029369260816196711211337642230817486867354519263646119384352554818005484088014643400831418509426805445945952663601754237949841433685821711379588846408573505752458325830276943207559644979090564758742770402709018246637613403359503553924984330992059975852864018900407830703477833169864020461270840695828621608425652610382388141125610962533371049421027767916679576809840171375131201083037208872766164373418726861877558101966836428173835197481793065096189995422788345875553842376810733082717535121390474967505411673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21458581666486309695583281964225374106693709197260691579594596133467910868632725510790045647527848310877427067880016943896759080686688490660343440344278366980458956042150918365158757323718814930307131294484381471980067831798349091941824233625589838951308050698529680321081547607781996940849995837444670765570247991633154567851222112857233268336604953986358322193981765389356064755381049068731308903545010193703628851376710091549222733576216968622581188201633746013593129283412109657620213735590402806072431426954725423803575492046139361718555935972687440983084621248090799267668670413006512631061818022404312942993607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350964562912597766078160291283744074182560862079589077457486208612099001609989828098021682832009230207738091234897563470385974482595457162797647489185538645044380717974478467911293751446166890499959700893832364407822175696390913980266008947635238694736674184077118511145929859107012315378474528726800890306995959703554757264665133463111174481347339547669391430848264827801455953939754907329256776177830673921397875871211727802301605892532831957199029661558213715139129533618931035216793756955188970936906200848631248064258405217829957312405843786790071569806712078233824576919520953465533490620663418893582423646533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18619489248942087084558023424670936738897438431047653563449146088642690505660896800892075244665853834770239938139468468465421620031124642693578366013993358229691494099723379254300699745514603339963322603577190026450609357824999991279863296635290413419257366671512469666275485949001495858807515425628099735783041548551683238661786595358629148405313756384700263869460944203967628038814293382051924210625924074951599184051626326692310071704177782295422151728964686124850491684057213366574248882920497627510170886903155575203434177494043971100938882361617663757539199898664688382355260228749135167679419455854699657952567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16730643225306869900318644417997167286410537742314216456469525023217951020648977438639526482378247835463876445536767245732850127399968013141030468643628629838408658733092944699312688191575125185221426149549582156801064331365915505152967564319430283090725222234475905272671791076989164291516675002126873579868431680245795658404617883675901199955821844731942210221847259023681285220226114241381839926128157443273182627574414910256708569739443466298805428774744587519139937180452044922787827149872496333068813707875386354143942330073886175083903704529607612611769274785509674378050244867875598927072582197397846503105417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287208074882883985976219135683980436901046965935444788384196408027336168008229403571671363274074884909997091496833351364330297052598829328912516069314222679857271177926105066895383503563528179446752817880311008081830113297824360079239788809926106035219262769133996360893178582540972321598350246859794018162166913955656242253785142119537564248192185491191801002219245784973443939783871005170611115297150916627177991910819080104277876792159119334536218452464199789721336402495463473777685697895662902368611143611751925000153406938526270935918491501984134632128330162810444070467850597155413137022631097628945803331907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358943613051801806969957643489493897892561757715840689086872169884407821310113837440520821087099443068183758906108565425331175521851109344746611487467119297208346451667006263872379788586981416477582215191383144815361841816178253047874950482734812034629792698447309558760834412911826499825663908651433751419757066149872168348176476943228806358725574437700842547684027693786934961846096963414664326758662293015569523826384270244485236035599865830527721490055847469002382673364267433940682864413035353934122562361614650676438328245203942769444720983205480005202009003620728316378134989389008078744767434405191208230849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18516178897382954909417824490208281517029068786909574322790941315589004710129128859334648760240759326820425323910086108943032141742263704076179836462154412745589052989223305805902847864878306673937304128897354052883326997286433551431508208439772267662690031958672946489256818269574415636185981747165192128711006689024993470462730524642236257967922883738353860788720018926791594893434694001079872284754440042391445077904357829999853546707894662211440202171498492022998483341616238380655479845241105411937064595967056790034251141825095789231163163952396896356574372292531422969097336785124049554658326364978404218206839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330953984676570101304117476826029775390131461880479183003396185259936334091319684578600599043679261438758216507802464917677572305750480379238602668388853262973635162267519223649138448742829668330971953101203570817375792835137927214891855135940674944962302945820036040016811331435596787596085240648883653802533232862369023856870115654538942528163361953997772057939527161766664516001601715918189056374161230091960380364293404852973230480344252250896252739958147443835567085189460053178450832089619158998491783533650639608583809390701747017360503391288015494995001431586295990181951077164074344509653932204090481607727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16284751962119005233139024276103386615228875294083343471650629233064858063801764902372865315950063316902545304312499293219276316238725343940505879687728294619413851847431061392689792380014974470421075150825294076915161903216731453758460580018522489854774763626660909658219871270470807281495692617869471853141926324390456172849063035405665902166296572278425164770358812623095149649914184616103790418824724739091096294694311442715459817684446922122453417029764502809228512360077032046817254311217004055997636621911645194479972760859238875400548867649410594403021867681614773413696932644038731227825545597782061293769637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18108685421736270512895412800336501239496483802178210055641987445328272105468735255824052675965830791945799945249522344705872432664742423284219561806866586829057686234283710891394391175908786759804565753343945432985830537046524805177836054135286581569957608834942275740046730301995959191565041851896552546244899624917174600925299269062636601781127771067296038550660478176805549979514099920188354404448950155327331815064890755952981851471505774374302121270247432280019561456609659065765987793943726985093814434958687212534371500517029285597583496418035436832445235033320604101004722818796024050561073718085219324367819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17239750122887090575425830045028268028737608887829371983000551026236539167820242631382042687942017396215605184761551013355315154669010670171810314844451003541521367454172563545891968298139878607235281714944864380603079077343369788614165513386809753287217111200666881464817768795845072894892166040994039866675853176710071065090424157194087150831914744424332935698751433166927290595151334276469499431191046402993340254349838453190158313373842059530470982682624950688394525485191894587720552185051570508474604117017527748662683331726963518556577182076157465970162502641518912228712047417605577776211542653736417308595613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24797805300343050545244504869774900015256547877676248317058570154271630307019931598138823658873606956246278113797695228252518987681298501414310840835433209115207543704578359613267505442905963126737900813381028564902486408582731611165317779761432929003261299060255940184663670333607059327373532674172181327267272511668732824495074001140205004070044305367020205017981983037146526120462516061831832930909683129845990859295189758814845754516410761185219629390309491637783054660590152152691753162486106681502481419860663407236606653783287239641509542419827083512708538212455770414633054993605496944176141237611327078251797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16318529624145706770939748819271396079406931606559324228945816261330045061402368755979498578344692800987360539709406655448165517619893674184204308482517797433062635324515472750737543728771086674616545426475124120505839044482783346014507582639950877140161463945989275430578070210273236468335070963866535945500808950346022088843294657589839529509214694488989913144032690740993690296643911112502395353349631121221501357814190999727976338601815792622596632280700175263650143374620862937761288218921619678511914558346332853569618559954118603630085649606806947841240728944542408628827257807472434058677107327496745691407093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22249860871470230195632476120573601584426548241687984852232105914316407521256608795726217084998089156615749294368168323109468235928291231777171396958861859868122550053243441803540980093322051847885408633279159132998285053003004281438390689513344351361688769848464431635122460923068239714512630273456766306398852953516678953287937781276621271172735379382345724397219675309848478381035174877554272838253129923784665773646655468929580953326268198785753733126534331354906476501246995721835026925800888216830831169994842023760384835234221189536304019320474826987481698183238490354843041249859005619757733862694126289370381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314490041014494757502698665963826629059374417359278736103011655699753762425361741389981750966937907030059350913468331714033546845555238875429492050738862961250037949302675192264525006545821549909248687035518570866548514803989949917371803947691977757900861624495974506020332071194616434159662317925301037512667638803510646193000003135502117390756404326002288242703219362262391207474688961186266992300508146902704770544630999883078017900893095423356437124364857795762838541868761148993362388870549657115907341922708715765680594266952117410129860865884453893022132668176039076518832552163897616325190160711544986892151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17296570037412931754144748637822569578435314191184913227484158822702296873205807164646130488880915488845220243042887184771258080886542310716469332573673622147642140590895582637736833103472282064203645457278043275595019734403737145156015004382915678832557566863187463050874415856335559759757278646503888168803980775386826720043243896710831777680077234642106805122709348442983341178902348144315641606103547304116981924846050325581065639038960810271986505151000442479084477707196564802509042673421847402010019855711282539526471876035571891026508633392338706142477195680533269304614937335654221156833979801524659496573259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23221991586269003612831110044454887437544651720037765843047810322489569891055859139659986541264435714867207023210668139652965157630957474376830901479577821747124657304604116792010225200232902439210586751241400173989535075752783556131929690630847648845445574790920076581773775201970146491303748819150991033633376930657391263331016520801948063335131112671345487748668166445700061140541308131123326328881635302546174800868419712235165137214232048746235241892335093820078694777527223742527813552743444036835781710878372776983559288636830368999847543743150690614505947265746527514447019686670553134223378211414835807390601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17229664302402036446328772212706518347966578188325032564005918893674923338068388973445018169725332555870590759377831900962458343151872215822838920551059792873496133349192148055794871028657829052054811774164895595405671478815520855454810198817163336754153339241228888326057130800182192681066215442494408432265603152020574812583031740236492795543469487656155118758060191327615474849042484725349048091324945652748688424164168937521647357173322974751477706482203069205715927859146157051025632214027511099514097803400928430478704618212017887713886759299078228066062952703136943392948784983842777272684871134414291168280037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18132187264893748229579034217278761774849901465724821691819839114167983275188944123400433997038468153050412485933466123271463613078932560053716524076324035593624550152957254314592079984654193866078357233951652849770426558867856332973165747903472601034630363559014021918626774184328020628247359233334224332014265208964690261330773246887074402651139319080751173793487215726558775209508755271861603176143541823541288922218360258071371135674025061030893367263783407426750368321489989322027304857796705139230159299925553083340751249049544578377031227237889514710989866956256875938987729504505000411200568744112898127806169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291516639580095811952093072278650608416072743891456468696768401491936972429442513233340343647123777775633726924085232861510433184528305392081897445460532191855680537472694585207916767893388037480965215943072897820323914610355672075075022232833490111958472096306363335097284383803456950490312334495639956039940609693856528194078554097130116123531426138344001080585918228376956984078577424091410030761780781632236805745361774936242565439590529306600291901501903027910957849757535370151651120101342889390008387467001948941134352722445417626193282301975633133833990832894001957498759420606155462145760821794546154746857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22239708527060399084822597535372734596236371662927580574617110032892300593862732817231742808827741361516271070395008529507272988306330754822969787612869744020914907418031079268289855292140455255474187054443409047064180893572871009874883377123005762030940102282301094402825306178119777820893366710217136106889330974303593239067795465368932787197335832556647277130108675854820966551011211936708094712861796720743984317248774284747215195622794316184098199438947726195416774840350101545308105332029138722998754402832898639066755868396545275236029251164126260213054507816192666789416915019174573572531843728459603891629313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22439775024120437997813477627381419626274463648740300840342575125327479560868080324072949965602191986645383988139350512521065909149249947373287374971715343720085598921706661887810596409345738716492411580198703772927016408627149133469356539223458177098695835475798800086680919905703675374877901464278972726720028725838300945666761186037232775105087416149515144024460429974615963120383332767852072179491143135313948781212550759830869996503954849027409274765452882229615335757425118101565862127268551402255850581026052461058834687714235756708501662797436081374920308780838660132496729326843248474664415740669624266189753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330926105932192319246849992892680089955338058537904622004638430518781603555891553498226899598318292967472605568866958446042391913601900361022999268149161350188664576642811796961753253929230726424052500956434092556520015028943997451932170177457938549288986256243179030241477959953412504141599907045694888287147184321693654380327185141843455952808337038389145351215429853898286061569138725772436051498454800371472080829924054261458075032384785771991331044718719401404590967636074104219406779958467466471494950157560331912472633698985032449655420467831981436592587491153113101672754669731001084733865639574597938614249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16358142707336391839758435816064706834380869361095091019195837465197014294314210838738147621180401180153758829052263492027542699752139510364549382441805974622409471993671405026552024490724893300197551825885507450602629077099467079492583823648942048634836544468062694791540539745382525875518302177709406582734844417501758392929463270722113288178877067814958342203245992053851967291026178521707958397571047023257968338177781508737286148670138743295694328085668986707757943211413258226626498417354770157582705812683607735599022049248073000308922533720886595553202512228866486873240179207423317493659677347352683150422043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17648757639660170510131029210431180916858251826320966382341151412948434474487124757285851032411288880560652717762370595923707990212384932476031220002953009989252366543248783214085203643477944640237651043944471452379136415016837309367238246491234718879814025161549591985255072413997076290484416620289879382615542608987557792668371980226710536398620525183477311744950355408809029553036672774683468911160133316506384652291096404969788165530315082237829659595351654988052996915225443169313997177759406585525804913332624324315785300752421806357487980473096371740766375259115041024728721167979965674342876810523754385465249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29713102615471385638742689141332191198311384154343787926839820770723604211932333557668688133111282943128223457586588442921975051689324156830739485270150012726325687619051451986855949873856533847683752897170444674473878550139885195564937493922917413015623645718777948734317574583149268808015612800059428133254251205100741539133457817136303942614931112553837407683175059852837387140518625622377503011988990262265123303098891229301784572222927848035586314981657336048592392398090835560003882449429065248625242293661300862830957767852010370511232839120712057436102314823992784326405569434557325151109149415960520583336219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17966632297697494806726643911724336325049453720983151691527563797880818953031868156823118653650829019400057333601000292039154747257584390196903872350271191587705927303754902033279021258681611160012305892409151449693626975324799087842674070517537371429443297769039883166822888348187556673695023336578448830709864419637676430081606911299666891536036730603883214390450958237995785819020182916797362274290820631958998647876509951183019427678818241258161295785162146379131392037650643949182249828195760514794862974481889399270185712144805416750294988071570648863769543547396344453843751278242391038341875710308248442911929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277937030293029484174935968853407366138443907251954391892969068317673238242410177553697080340145765511501014842493821525901917606019486672831812795669287229217728401094754466723968694444194169690917090213555315116104852840645887161611020429538245689198917169924788059290785018442078522821009534217867274289821758274100277527002892294723689653768382088628478281919319150042546847964746855385110627008766206796031487411588976772245139316127815409055468275094629988829653362373208205135041751053020011421535516497888664097572317123755356549652602190919344088232071873870892110374320771100190446004610758216207374834301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16239334033191579574325071653983647790307122061519254855118566891912127342589941414566381979132979094190423163326201241635753610159189956291811438842678191681115788520820712973680185640685169639561539939375906911050894959091916923582635022878549743790465711612427635497826064314338126583561884730720226534325494251651490320091625638624185076309666242096293882866509440249333812021489783985734099110107452307823198574121988921698041893991017997731889578062506752834160439668220751748335325801337919709351456352302774792796158020700168400166873842424574474840275842617476259952862071149305735665149632852865528161605443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340943809534581376497092387142702983910835138275221970550665797307448932337767643977164565639376018520349019871875175904147478308935348954912647530068599291342063908624555631888921690167407174739378559380664230895931091739457519973173638490777300419671488482211779894274511565681265177879494549280710341388596567167394944623002700679337700579188270900970805042257409068191176810059932298652717077586170357282338638259990631388938609147660133448802015221457120006320923096634145613026685611621417650656477554619908414370400339419524135866709080263974035206280740749556049257196550778183244418321171771972296351981237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16278792576349448118689869023014580731125904773495769089812161362927863305272898037845845394652077677784630701942991573765995581879658382707156070596503726555227390766335169114216589923575942637050823290692382281991701141547178064532568088701800953168549249036611632932983444326277934404565320139003781755413554613858049875839852626568886359674695585572444486275530823438772462895965211085417366609538752196683354393491757213659218452753231807766463806361190766755333478772283525112823066975299246067614180321926362873060335943692176055053739944397072446258272687421835826925216934229110600228199880950361547769387353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26029373147958040181438611057086432554353268315053203908792656535870419021938136635401908835665611717872479515106320738028679583014047010764323108675717065623873042139130383663691567421567114558313678091968889782448812029060353780710648744511218864901113349814566331999395267785815379525550054258826265693524349307204760512969332878350383861335576813154178796752283390350605368127488994872767589308809283099090394849931334515213655917784787318255237187251161012461938199272596290791498612751719202814708992874325884583772139321916790881642204296339921132340269497240374238732623412047985479599201376110485248355915741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16264375476882640714554678025407968912942048899366804361633404248404650253993505906875397231565733836276427837332717118534983262732481684960210210295239332942061281941484013500395585574236510984668226994126524046830410371578359501182088604420642229815664717978341909016848945275962057812942327804123714680409729338065302381513917226929337280087409613809846648327764140489152557278387330802647476474124463933091826718471376165242373077099963304366706687029310479476076235061536013889292124949902999663721409419052974370583615653002048746484941876484129026275869617045947447101287035514798484346980984557923635754291307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305730781625450836341933349699215625950893780765480856628413192596785188484382702820720949604591598549165285131573807018579478091092222592126395337272007285975713347811111380377448570093451664052786142829196511846006898106563354319597702113848293535667980640836944604229059923682681182172405549101025729606895363224196251444799472089825727380028317218975188484182923644019736702581462420018497620912560975383668359228947913205954451086032052905888323533366813259409016110436167494907513409664930902858474536879978511064673096633498971654750476952111404806279546947101118509931162708315676210486514857777467847800297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21561207418114022665220495056679783891195266096642955833144623140195745703221531229038722333548547763102342499533760286968114642773520018432871756759446611758949426071026643550131419305477484294028113157530065313940888622958004362819791841075937234628969737727299279895818124270266207843810448435045844513205803213286066731619210337466812411308944573908232792863207387660304228642232510935540662230044402634069461154223528826299791534788082180515207205578529089078383929199366645284364192892018204051276345394692595244659876106351284086611725173880019934301540192292527309274608851632685845592937829664918571945945177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16701208338593306232762774548883032786839875796466739664641296336914762412903893506992100181455231747361582610410781488696693373319639258546629777457990153402156755940900721525952110041125020773581029475670814094143987619865542283199139140736272735337444854800714322300380468056378874297531193039559266838169952494390872233372356346048280047267886853576923573377265019738451293492341093502953428351152499985041657842791112906268324356543955069769478709934715014830724349984901657034528957226387938421479580814901872205889683317456192702021082734225712026595134865208096522848834416437752284561298893993702251364585237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306210302486056659468313265931060778535054968677631148815115913304155459407512551350696117393986671364097496248175302960488403674331130560962760689909228856900815718156512143702028238474668032031919793190724243570532230927368542676769813837089942353565186727727503144723752565711828999424426750681395424010725231301971670708302855159412179382949896758418138074073461822828304553915894267487828154417497683337585874196565616394175246997910655966631005067302554234222813400143225823315770924593620520175442651156557206918524242873420514152260567632446058462828946838528568967853879035768361995665755716549100534241231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25459691681518823892864857949656909479670196346975059951719033004119231633500620677582489872927302819805147595613247822060295268759864678856761772460120874195692286870982666281522840639510034710805455250527755630400944895092064967025243951422312140849222217608725177220987781218915491793072994391088169503437121821070214859828553355358477465374307278380360225115424525333475811644924743367406291897716958683118100011568443849220579070802772090405702173932198842130537919692024292749324701428614082902545795756862141046464587315141822014051680758221378587893116753449301898645530903773642999002103198521781541385495917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16316058333721569642326095096510849049908487986185946309952024456485049165514436511873634497578251090457862360500334592769831015850879056629154820636790258968994465269646227766072264048070481998101161073841220294788773958316224797472330165331244407608113478746358957630478945619277409520148333760045656604845330336176821855979293312117935691112768160070861039273687447162968746938570758252758660661689079918522200474914367175284184185056288949975505424825725145761094803996574219926927686729160497885724726683032948424380268509189818340615278693233234302214617083486968804081016781821789979840532912399835495615139293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24104561406029913526797704665859925638318425157014569531246958509732343115205246447156749259152845534284879935241171244925983045694055721239375411565776381656547152066517071888282475939144847385509771623248366466074845154132894848955316445538385649982697903617241347576643560259178603383392334852325514251808746305822935133877838269028741822640503782721293242397056603457142489467029440913646165784960631367351796083155384606171571711192471614147747820799794758226058489130565789664927768308818510176211586999839328164472710510526859600125824097417372626730965067854978874151507323755957773985215607875234942692436369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24155156756417868298649101007889449971289465347655550142793627315914433094539175844655729627462404642867030822705862944925210158137749910459754915403203964680956172409422828274626725751685631913070453264199685017862941715897187534667765062692098157999521996779832577184768803827794887984116669543892984194845474021793064479164468799765358853400057444582396479195171528503036158384868810627223053405757466213529983525164279750682378708953016779111029653781358899928234522403506041176836014783189026104947719454810605534168674325422909991421958150435281019677167493608142825674687742473100555823834900593507688990367013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24951158769763938535356387847785710518110142302645113490600587378899167475282675756623928416610992203495479477035629102020768441486320095001645364485546921631247672685039693721170281206827010845650592228085664339922053481482469292076723025405478959478813463908973464698612929692375908947879654886442706398594851002068036761279118077870723741303495695632756972256377842225704053774243070064420439440120200449849623578018412558602657284990002100691132971159273757138928077560204616820803236992339522741172986909411030231271216592818530714519869146129681092499823852149830705072858474095733888742778747496444925693143461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25531102897803634142872066875353847786924161284783652823279566995356586860325899849505578201477859468862247382388599921051639444606296846339185344173654505975281992496760193504776392929273072762416259891814603927061987842441779236390231724168615562384431649885513659573405038185514989966908686942333033465211147016124924974251542297302842598643470533669032192111925729446748805187652905234943788298061931813901873621451312619774596736854809054768816596843173132443830191394296542745845932984290874398686994709871845537383029927810662514379332432180995602309393072163752674819598055523574629248940961342500734664867821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23121461195680455615072654654331896823646617057724834324347569159266243643586751077366539279946637466895200118842960442528642669214857631548170561746172352382566813091373376685135915478404291687100425675282866811010007332986420616011667534525627358798827097804102133319776768573577595593093380957363597271018349529789482456107684134101106323633129786995306785354291240349503241569629092051828302151867562488538733178894731842983112234551772318659930825554180167317206321228914818561317248132112217120440460477485075087928203447512128989211621847684822692149974833616026741979875591915290387457866445495671991417761899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22856395641612627911207218404132269475607625167212674602041920232215024784870381868170024267196485755494934591684386410563937784696061403483385397865636997881802396297995095059867825351251089371781974892780684798843779278425494269162024759325653403901126054503170622594949267583726385387073539956709769559670208029923104558534206260147656345702831885640591096882296416167371269646496841852370671868617917858861667302357593990759721538892635779933495841830870537176734832480559857869712112636986073082586339063828920661818556388744636845979334687052653500734890815940313959785214843211562253749425700543072691200684059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25408128983673461740400676345884871598775699745823316144657287775885295014308640891382506702523196173081970681055674034265886057589507482632639272048571499807597774623797222420729510067104432441015159820147018171225492470271768839156037040452814516864859165642623980280693101219691268235686750829418882055289432924741734982799141623528954561135688499352373166649827885691572731168555323659010146413925020407925583039566343949346831025226207900006834941727164230942834090444565317084150881046609234556143862626076498008746359694624890738625347463207251750951641864829416505819049905122731224940707067488411567342918419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26423828603049936887944351944200074781638467742114481117315207139981369723108108721982558361967663970485596651893723204979555276588709039235906549641798324374773039671172559117616192231072267563906674427916791956617622470992976994045379612870245476384677314312334489665873228496549400066140459046379916672880221563886323639694339987751656201363871827685731300569387528446330479299906253225527211292922898765160211583743028837237076678086356002116363055688986641241279849017867146132074949147816130044650657977742196802461497321176781653395718000122439789774826334995665833110325404374116621637033959315533063607065159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25220228603532951640872106672726759484012614091036071099963981496605249522113053959994810014586438849528288060058152479334135783142195586759098043527450346302456659211586990784198182042202343170528832751030071988429150018846271861646101769912444390727091325064104933798856344241822358840896884163162743561082433217054016331019627477516531814084050683753785657796048896419672854982182334131028732044255955921552572180292939911547297259176783442197764192597943195590797019804013148040804545250704767612322440609373323401724865762477693913682902437841062452863583395398240953748696425745863770776856011004095772528664991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20721690987977492891435241164591789868307090855320884689464497756717353052230233719197258456872602172193741719384606261499023564498107575244953189923824932589645873498347017973406720660550665435676519355342251453506913431379053583538955352327562918299169076181209422716689743185557535732286547188887432833245845157615507301153842230908650245455104179346972426990117066677281991128094625297010417857315309621807716206349041581803236691935208506100840697533426778044262547080638337174464411337023641480827589437413207661145047808688010047148730964994487983110250381976581860660584495565183931179482336031083964260083351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23003968687679798058461872019613665255292821385215708719399114825485701694362964651954652131715804539275181229248668066148886842171746069320474354216963362483165465962639570765166924085539327973537484410697573902692432701153560826467122720445814027276550118272600392154635147529456985863537612696098690236925567778533070745037548782363002764186596356503449346557739964291889753544513969224303033207464185265025925786857933135473152555437910657533663899281465083899310435116076618290832617377662058018605472956856789297051239887532742756815378449894321864898281519695659784347216811133917243838257924190745576374262983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26986180384142046526122924061750077298962744487505941100865397160592368356369062100156251848341599138045477842381143666882589379763800400263722230139423475205312607770320833618747040779591282775493452662655641637786075254749593411634063902296289567273307967111533594054571644582989673528804768706947743430740703519336491809558390071696658396076067883060924149866571191136170571915451668467633801884898666958345614284563081933240293551417494929683468564281713744072765743981440087311008948135346146235693887559463912070737552446191448040691809676027973802779585307330217265165581956863895332858215650684802945635760671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20716160398803986810668625855594515947358263613593836688298597290855214386823789670666423507805734966796782443610688662573759078543231518413491915776502695000669670230951145792528423787763309013428923608621218695343834990777279856329971515334377813912848264080531195001561460719754272936702227486229277942751227728172669483956012851936340211706145390426886846718648153058207993911086248271062916290033909233302471242093051784491276562597854936559948938770605256694576062351758743739239619449164256535921478448815362661184160440225761291446771209905905203037701872554528920125350719873919270571350862502537319931131863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24632246498629472352967613885149569650859428346428807297466390514533954175032824938136118753035891815012772618527292544633586878377027452609583149023519929121160323096647712630963736247615619165593785663148674701485130022434652813820783513218495632198180478324363071525949423196596734930890290768933303734654266985552475144804785888244020950066271952657176351885465497097495393203505938498409347330755956440540564480368544822813501287840886992780200935846353074264445305335101756158902749657181724298027814791732132028692190619059046584954345648540871549336732599737758011645243252948562768187781823960572709229405561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20531949783702323761462436685884927221359891956129907031919830162504289468722249730713580843587992845760510143854034333132468695312915903513728838004884024814546752699416156632018463376095232667970442184394303821556715279613691577767445836812360846132793227689167342547257910325738885145078606808463543404016461600833957465528550344008926766900778447507544820214163892594914160455727625909597431356710749375797290009939564891381399533002254918164506638233200958150173278675593777693293565722545109257550110576695179582894561118280916778622889848113989250604098638264170987819557920908203290061679065832020942781185053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26897848298057841618706299905841285984512593734607717499328500665557472552397230414275060354521064042798925144575703703094276294903281156468154429570662747106439817262778904700128622476304319173209992655803017254140591611221862269098094471592973881506606048713034639194714745480154223741825630323941437553471557459626406889918776825542613047968237742977052342070779766861053308269749166780912086069273768521331766169340672934078240953304363309091255277925422491827847632803677870997361582462022846600485973287040516632957591225221439928303416643160969284382193016006765584169225322305796292866646950811397292333531307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28593362196672715803635993808174296360674697337051934528051911852357335716808119341880141099511443049459521663560616000742304550689938293359159861556432788455249964286449125528934582417157097296885818045271824548989282143442581715364153380803278932764389017074665591391550924246094535227490416848304923351843503799579937948162227767326837484492566145603111088223013140728903619922846490130351486642216828995306396991737325030144852568985890538301678743556338433456320479566995161693449948828479703425222065912195723166558886012384938798440180585329904661326183584517149432992795581226888324974944190871418145754567649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19334222372779401647939221525349478467942653569488606367480672189531469737399570920824787909002556015755594621541245651685106541636081022495320575052967433409864352798170662968759522650155835502920819230981661951482592386889927168056706938181065661972753646076010467625897673246215374098658748804106753798330217371558496924377606322718893955370936708435986765337026523408436525345669495200980055784537658292530065748224652026327339142364040772914965427962956972654901907426241312624923210317178904170090257852806519155120501209798138148528033974217522928793234680179174923413841354391494140155061323381112829425585061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22197700306577918997638011856360872310011098955689932723217665676858612931800231254494285185796463838470568636459275055882938812333816658019014612627862169865042858562132604159532296141379526668888229921187151614449682280412207228955628369039689936608554615117701332259561216143552212997471138399656336451414922150643737380833022657971447102241284216676458811540619498324287958523925241112781892638578587701956891578939757408479562514146299828146666870417508285449639946470810736107329151637544350653793746156954687524021649446806748531947047083170540253201437245056569301543765287703450423854098557044100757266293259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21053709095793241603407804012309509847906375260061612406679612151371958033868684861174107834470325863360681797697856231218427133468440715807807566445258422647137607613804249927876413197532102662253443791122508827173385866519669053600396525443157773010256927046892875115719329999019716010706037645796320501707519766825913756240964324020262610982022073004946641666776756972499476982334605271670332829663521956829762761871954880579244888326689810014806153126049693772510106409403701924794102849594775796108089985534780723772099944714034965987062721717005600748019478606724858877798991314611617521015898151783707352917419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27281165343872789466154582310657502423049330134181908495928565207046085012947508562783186338482619488806162987880542400166850732329163685466282539188130582046994913026050961903209580663765017688802637552258352332389515178895567577378653342286139141320567860749370314231787264856829663379400412130930293754871015442083723752815166330218541129921425308962169673055834334636246756699466021079540800069574310358261218349985113326209853722599597250584248806914499012336744315038273635132277074903911477169853218538822227129879997250976363171091076495639409709178793326337919341974268121021501200401564244706484943298779831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23071839312257722576720335066303848801692916449418633100920426202482511430800389210800304313997288446019354231444560302023532828669152772117996242817192573762666391822781556458505804039505049342719082353412326728085075976102384660807992394211701210425713446706045699605657171684581327581354450620494964950312227022538990859875884286323196873887704549067986843425805209610277268164729139721655064927311815534624631054024912491034146584487199091518376724623434955506661303907488175957058799829051585437378949486217973044444485760945788173083938909211369050375020272975662522068210089088043600393563980807861458557988071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23410227420624293195452260476433421528633435154708940920047162990964551052254066808321625511882673178518146738367853270601846692985368689166008881897065972350591503667740354913735170435654483238655158183951121255998893674386803002395751376986775776972082096397840973325752009671373638946833912801787946372507133200119536339842562306148022051749945123403433726460674997560225680418153711590601093119091147508829212683422247016855145929708241685804159749071624748684968148062893634841570823599937337782303444326318984152064856890663558311387732968876779987439912683184702629637781820781180046439531263424078644208583573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22357555788166189870478674052109353856427559158258693841188012883267427876542356227861011262286479997924089582719068919095169736572701644101074862290888529072976034176331805729712248625160600861045130077999429140167533590365872300380495839813720869926898469685292172397789062180501230375051398243065780092856626157705322674664222284758882148996392303180836096109286864373995295368445139734032912486154763141424642060092534432351333998771234781909911299118969450806894482992852567205399346259755433456052602706138897394238439786098674227650756956587911786506246438346286755348607637823378015964105039621431641751141067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19740065942365776193214011284396544943009697067378657532413837154827722858388014207416799864831995348907863925960824178363502172647758417291282447810887229765457676253381952000460404384810352784287281254913219158596288021079502029573814477080751245910652453519850009990552774052091396146177343365052515491912424480856471750144821342369579809256813654005064439042852298552132988863371707187687610376233727986051940168140791251792107961084362991700682258967333996226539577602008672925038680762649273373024501579006281181576611315797769424426585874276420461758416453923313929576530196341539353452257609118168474608414531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26421131090818500562232756312044867763718323473071541633600182447269099397633285988330693136991182447589777423389743995712293213064050392732199888548300352984415521590447103204079193797627837698941947123369499804617829215721555452507642228841037322932218647175778202033102021286469846596621871039021575443421319414208231132163493315124537281924902391852721674526193558864630592557408936313770316840285003670409824813448770056017433878748938756702335301868104087492902379391789642721493465881280824458349871094358659363077445496154135958594234158381908514040552233893431178401886688913527942296688197086972971837282101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20944231671903982227109989293907796531605207390146738483907720332880647574903114737505647068529338708944746094745023090447484722840749098983827518813434005355215681837969389589352688309127013745189646404928949345296680963356383399312990052282486562102834578389474942697730768221907613570824879934071467868125176792027243253701237294760823622301767482618164193986575288241747520183899573972942896353722564383495311685690445999975497992304117012903487696973159117237352019971897191865697909490040102593450653913591213407602208709692966977842284369676547677636383969471102208568763379530217864432158206464735607322622669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27629416441225132289520079018233258747977891534136768696454302525715274636435099945591341543915749928269431719935379521417046532774312004991140930512767954103401609927053944435680151694765423986827537779753376987049366759387787274906339626408414743267622438725105869586163918884169943366413038847019508062533990573605150628197075168009451377605497517804190449878823471933326944987985674216821353578067188401152979437159782075937620715101348023460349932374412977443099281209191655075999564600389801831596554159036279926970711969435455832604522841877051559158596238776086979185329017679438786604392591660607303550804071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24448142752700128618565144376979031323443420795284060987877434850758444179222889141233378429895983625344314544331970122061097461665185034644529746473045908592315982069868812889544843594696123563860824879474718164844049076974084281716384310592441044035077690322091922465071920596835863290859329662678205963175009307564996892061920628577945827491162158760933507244841684521584138403674778215916960539016388539655347750075546350300505299386556637912526077159141037096786944854294523401064531568827124387577564789389499401329335349843145607078243457782547139577246671842818473109112347613658165661246778278634216457856501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19911186389440808290606788941619290810523665673823903949794369257456554510413793429467505376218585418585598868260377989360040975335307933684237139373642950078632446055673586886785812993299976354467713695654525266441831768340546517644562445953945044469554158210405843148046513897511365358560202626224326244500345355175767186995788068293724563050610841144507303866610644906184920111266460652751002794518123695184114160092286088850488481808032786318234986780282963043941145578476175765865320035692272247415978785624069517263737787430452042992612985090328700125863095490856715688094096943736317665917068807796896087925209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21029946569434457046643081131128381945828636210655469623993612167514194102296764508468141101274021227455746501667626987671033502842740677493178794270317340949183369111808674638452129149634867912499096705596445567179106109454769356364689036303597453769406987428593439644065741324641550300527210636303322104359806323120397204657752909868718397761262775928659099618906082635710909474690972742804699290033705509212134952366739515045513885181743149465082483946969040646006318952686811728135687941992386215637682787780803836607179529220205523573125778016382607254225464496548455214502370655753302061105808764531227359606469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21742646946691732133937870107613481700520645215229974410154294662750954108067543227915184907620307794625918404607220286775970089192888104738723252801997045311720859868693134456680552201113167133119895699222985391252684371653762723166616633522321354749189085492685794319260363337907086683520929154234166593785423645701284228660542461905916864110420597548857908040761808572985667908370465469259827954038905837695988280358168242992379537167583193283926769338941740296184333979362136218435810505912553087396448390851099689201813624983865239329313014873888262001957986591979733088225762503615291060243468715768442040613207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27837773260427706268421906189418758415621779195044405346768052799546360630484979096505657906119473432598144378787622792307819952432818388652995761990961995564598946347742606719920021397113642747632395249423998561609527690822761299032541350945474311903335046052696754807328215297929100552119189532047184725031361058855744505920050416108794267510751493919898894967046384779752927755289944010921735364056759873019344346009210351673723618425245280721834898783390970868446615407167307244661011423377910800987103921876365026144933316257097765606502929264625686438014244349009533925756139832712133342435684324646393865820413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24034086232503750441794413539864201285157863367937183768115511151481224596363262927078576191063205814718104736630870317665833552142785855994497940654387257934751540476451963165525043063395627940172455980639717746311567323440172034621047692487241894572458636301053721459010215584849345511835128181530575559292265439869419788719779615045065390923984561907313761513709336394486420353373659129737786596430938010605136156327174748473265474415997212362342106123527230019105034297679113176451370774042831146709110551155319143524584283525761111407777680818734789114162374435791716701066783523526614394291927174350873859481243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24651764687669371774149046603243121744941839071539443060197515637422265579379581043862179808248362387939031183474830689196714053615703665497335062746597803592257467771975491234701455934854818867373977052110787423275599600004259945809990511118794148949417397393981664877152989811179071189714595858131466146872233350351691219992963746350679540339944803207501845453344622240032705295578985302393655955268021899039485361881175013678368029411618977726974007279177114333585050793338147384497358415357242796648695973843207417078874056548272875790157605225418479617090574423462709576078008522898574224733378629938583154277107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30106262322642297742084910095716451189157404377478296137177966826006467918078986004016991949134032711195592855720939180038152092922006984239906406574697622584022773548665298406257679893634691704503841721456076637998890505717938442943775576772624064767627439853869526491276747405406002135494676862070923182399667297919203709617796997339192431503015658912596031693623001124828829447828814187598851592203586855547465133475223330800905211343550679690374654999444111840195037204303849539597887208760820554268293452604350531628019948272279265454800825508799034506418493368915644173013075926408416053614892210627037433672319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26429636017575569689501997138214547944329774840627071185889013203141577285631475941215061690312272618334003214414499452203580251422390311154775301532932084085109918408080250709458535587940529137374265150287347150184406703851636486609009232673058115960365115029574113293098016102766043315450147833799003334108977177213210409793704177639780811669090596045402040246599577559713314701609106396096909812162183243774149235228292617929687227361545845498216360560783841460276929256710644683315504191819997816410585467869265430347476025895018541335268616135107039511321350702963124401736282498720320927374074274914834798662679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23496683808160291190550766416219350728208184260886699106773409755492894372620057397389163436969252491926806253955795375586615673183101705916183854397607528839898751494222627282356364074558340251753545600534994352852466510891472641280085150942763674800995065613552786469640864122687684689073239319092873549074725227165383184726712535047664753073154762956272443852181603404000505016569575566931899563296487482887664641767196899524887561960739906984130526094404383259392306337306329230144770105983368598159102025904979232526078865303086933303896129070898618700614394028916537707723150752827477209007543699175213444974373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26702257388705659824638731281106139086175293191041622820861960203860505997221302151539546403104054503083315069897792985872629627269894979011205623577748208382187776933746102379634667676923437319714107762659172853335519238417236793258886170174231803056231658397718155431597317827523294797809978179980179881910700115246741268584706316142098566280444840441440368077543194421868807590761467640485076417835676751490543884381800804627609153198008126568341467543344383208062197824628814116033822488373266861295991617970171954755051497463714860327529096558119027067606165409460802495023842953012832247469506990940562156235299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21241900105131976755139324976604632246042914319670660075039989382966782346928496037132772085198854504681934838783989037611110279595542826086381410406150151490439737402936948966939051207220759373796418000289062936181494930647800327490633673691371838080066477619880673565936963423956487729994859748066183993734628601628339828727737381874500183634357772315555299792750604858899588188805647074989674772455325620252564946479555844171795348199954561110630817011803599197752240806431178126886623212696207698968354161779254039241297476592702186408236373569062041223996538032509777599808152542886387412670716987174189978482407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19760748877857857070838207758998398934584004797021075817149541784022296310737344311991022215550024113670414996012951615790465811764305011097124738086864705715659623424941281358938307366865430559985680955877973698116081447302944906526201276140492088242663836987766036345836227165539101693186880916070377866795936485014860304052983331582076900066431411012813035331417673265759417354218431892826394855972585185915960139979424891033167896298429808734633136620072379549948798840078170533796532347766131758357193717619813251462276434153276278462744628858342408974335011797296825408390890644493590210548080954784354158321011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29148889691749717874780864241095200225958662440421390383911247956314721333892609716150704518167029528968481006788515627256611340505307583745749024512255097670011387556790297618468655901929845533207577871983791691572816144469283698954322864381849904264443902901430929242530606130210687163595605002124809437104785677462277738647690964310810670719249116851021817418262719361117492083123320530548292537885233387229212434390366492537665209567986780713764489826595210085486838972576343692093177996055797179689419813563132326329911664217009915701627937251912442667578896250842787194915189970988144578104185229037843963443109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29871638212717315581157628290891117911842874781852218783285858773629693259015304891690979086745583932850758590361962700606640705619358202500166677198928036116096318966314926657743821220807641353171109113268229752482214134331409561824402176107765358528423429856631493894463848459739752598675384278663608205568160693821358910030173206240526024074340864454915247405795518356028067641733539424736491778217707295104386423858397545309201489339216816747414951109739896837413363331661642170691666039192377777235987801050694612198202709217892873203212850951071877649026096151954688898087775068597660253216637282838015807756099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28276149596832876141850570614834568162966240129047964828263688674009497900345427614681764986639330794899660371417546258054789986758700219331002726543626766069157009688121548668760769377620987365227867483497775827167163453016857770783273870084921255577157194117336556699029349909143262294459438776776805712144969936614229204841732581468721704271511245116503761841302762190830022127771020675111616002546491775796070386407027409772021842515172360729034998177324768723916163824968243772039142980183379780447292482034849375791987596886267429812673489798170847967927970455384646835592064929310916737554130372546663888975113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23433669978100082907340592463313421992173295949779958933012019089153548107842669061711315742979199426294513435063305855505555168356076633917492110413031859263786205487505063212841136216234683947085944124296898682054325464693860562676351637608533508603107400540299254938449421202794841623532264412805351414449124460940825916188320550856419858230049194503942700014430325482595183646839935298645443226198706192842334104282435517193017787065625051170036536218773021314627918564963411626684775800664052083393897905856615456141476796211190840965059013077444772377258809608664621910065686170715501442329768249701493853446089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27771013216329147996921611433465205375687025884192877601652510855954035447202786612782359896824595856900149277859492014108209284166757074780089558144271031312424720245647168575302190198806603240104458332758755240919254566322869206779752373537644834302964555457609320727600751497040869096046485660219673022807179286631268533914216132040154689413774571723757522670758472481949310767405809540130333386874769289988037308292430993597426027433162377897192981556582359027167423263635243365759761800642192889208074467230292735992799378780625029065603526211832393497786803069097522171193060636115830738911873711492198436851909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19748621740240955160238114042526631502962944973468167594835330078557405277241594803540940423613116097477256134101857665597999962820222212525880594412082756981124001057642616990892204957415362932875711670231696499085279408778315702285183940046020564442559977064050757034618281879084302788947556013993670737452470601153829947400715926597149839152120359421171779135837056102739001897924720960108767069473036368875354765893043960737888412672728975839991222025443188415702842068205710183914525940627276752669027651907042632132000695527460645004958555986372276851712177963544641465339161733627532981690530370100515850639377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "32238042083282344314384450559138919160465487779000947513817900003752057244423172730457411353540196195360825773857620125362081118998982558084457402283599019260607089768977815158261199747034080176542114239253541305362803392526474806291595374425810479267174834858533077740068240304786397351886828572998295657229000383472358306124779927428419835471732499208837181291077370601028193506584315672960023349373125300894090523177024158994379910087825209039357573067598764600928718184720750396820986991699898175060342835692077752982498914782340252553057105594684153826135532286189789028915124700330804293261793472287877345941297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23955322259848683216180027818373353920945067577374965953863608878811339839580197608335310240741800601075365663069558868323738204514323744706313115476591035539031439010572696598747520036206552635866358884068299971378760103431887959684518188450208787354924714922296167589322107204925796487754598626309179897567640976310859816358784062114001336073702407439176958298955625898773032959717993946647877497167976015932020270264098840044406748778935521544147576359914232700606987955985413326230920039620208452049779736304076353517223520818508021761797670589849181616666500112681689686316321175992347961099222006571264606631239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24977719597880447564091824808570199719134504385947239290397818477038906546921681040886229519862560485109641082661236483015288916492901805273028810958511225676139205559075147467215673793609720242554632498017192990049013537028779114802705708523619707348592192441251120432351365423073568822826090885992484140009220798496837721016476111811311915891822389619308585741643225422831994354812992210263228508498925852854880885886638752201063656513027074999335936854844359304154825104825827910010185419391649323678912912966085117474621120034754069949152745873930589941634056173764606141353511753063692877454847016404029724764209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21608485493587453230133510292644874348584461247445172825348793246616267350179293489120264602772063996543521849230148955873610179751422476664150915286680860338630648300798448272549793842603528584124076957515659549690932930405974840805075189293704023780977322907655233668498287049545793085089107281930185825697138145189363872833452112680028705490047150802183148806211687122149465762391504693571233252759936561217961730644354566757593584182309847213496724677825620554212272894221819147213617694390798621659726777788078102467716578934484767834562332440952935552775487579920024176765686017055446415560632913458840213660339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26864357231367837201457813514592709119587816868572955116095324141355294354504323945782373134225847386846830391804957476745005073704854696875947368371503590345346936944288014605109206030501270909927540334488948143262621013574616813240230728757245743701441573925705314254337301096872957505413711765523097753251393717700163436093786422462879435517757620834613575819814406686040968282985519779241304470101318603673400833582365394083332303604402813966371094623959915420275300673801002179287857681886656962638585571769176011915201318209953181130311587094187875886919279912037807521526614815108890086175971463913928726272523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23955084366454274582693255767933593548064215367496657902823003273744686553396213346416864464994410399204708188688559195797164503892922857413375308412620865732461807629851389630356421750544205162550247499676149342081931728434976469119858848056421389074011794574443093878393770870098460700445681941312187784281376243917036047606052162532418235148912472863148829916500422088738700104484814113727788309038726183222004016529456542462025829986112112989989645566036520174090847301861004114700848852879238068380787523290521145324919716700161086457728510133347757122287453706371099533074858219482514646304714668101782958958467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28396679365049923151072273345952970858083937163607503326774838904991488556360167062262323636012573802705091164929542442202008497036097474525639630390607612236133074093703995129443235616851223881544641360678670737045165724041672896344199773141980740465590894011213040034037547099270782977350388220892567208940468951387438296285956145554310066817083662596114203820935122549330047893927875208299390179992773715479356193665984357451071147924482726978897528494500337850012600442282211866581140870666953577190018324287492098060780714525664781890373228773166019161350121326572606348202154642117429348208534819811300306151067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23655677551083298869846155797480066530255588059405631808921291355219320955055459126563077626208308887772036977781899984955239513533023620169251802606633357021558397245277372363778054350542244409848861195912704371226499316682815780845991891072220157736132315386802238444415974065594252105544313610685639003172467770790212733771310595137864940759182071550372080860577461549980931207267632899935699765649677850145163763981932457055079835977757022033233890647518134554635272034141158446357376703139224201113467883817398013492942781998216583333116123717165802100089435947237768185026668336081297668949355249190616861502669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28018339903646059841312580012900753640811677936646537389162580768353605161988232152970846701228028931170001544664420116510884974078818482142257539679021432345227589794747296948594976420020523322208364747015049520194000794787226963270978813224644588554407792287887616713461327041499462260904630482561775630426291924589947783580459282433614441520378614109594365881267143243768223039355549152102964364535925076732500028177976293848499356266633873672013546730422718081538774359898372720731025657462811771168955258441461962668205845156837952276054447527349702513129845807547918849254445478045342127357570972818150007806293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25181394235158178003961130911921119039503960392768523197044358285898945666868096204760825320041168958740798264799457697561204018763771458157529225309960429136853147899811305220995779549568159307308585748318359590137747084973065677089477342525765275351549413736510872521159238675990621348273569174649846010459383256142093899894934773365622511153017096610521488197438145546577695434949570020873726550969722574224441190460197481455553417631943011913011322318064600082953605910015945767203166710314519646724213207184781203424836842220399785340994439682317172534691503137582210488304813642951453819816673660765956033721441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24182292153651677303533063497853620659955715306761710984471977620964328285823773125727646273319887750078794797856750374444113420881508715474915252197153828977903750054005001501325112796092416993358880099138950018774109520709901282969521028751215081494417047781929815077303903484121670116671073592648228893703118922644805729302269708020567050027404656247900560565357100282208589313544409932708778979674743717855461951875479829404103629621545564759446735203870087157804145883783946599790318862353169971843885493991585280389682738410827484320979376298735620436050775298955021362742590814271531906794821332473335737331593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24263093061007185476849814747795508393266522778403413211230586891611732103169554651567558616621392650046457157310436898843485026017284481433173291999507585586891239282328888817212114482914778062283001581579146912289601569126053095985651919385169333322599490320937770356331146739410249029773321648074153571786325367997200702941699508652294373495998802847314761619431367167636508551721131589019512876741923382333164328952932752369313859483409516389845135480711234335322022927868268816361900711337918843203634157025442966823978899074464476003270024759902766421776082552278656076382792716359001784756425004112160976207843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20326928298451731227561113378850445568516367223403341607521149076438301252868115163234921492333703565949257636849855571971501827479628033565534890061971430388634271896912533110970458321262728717486794746407532406895746771740343176139822406863933467418829688564016630384159226208656248693381065563524993452426919534889901132541899210505168785497965647395774582582386402755829344530716839215454482047488382223306964982119732202289974684018163064254132446285223517868973638965097932081330250478155190751626088092634705516661563574127772319172303689771149075939568309118273628621313356040727450560767597867380737914328527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25386346003654461556168539652590868000435807860981209932195236745944386055650361544235530087771070756859577393571972386466730945694232728983007509721096830415967172675132501325026878984316810944077566396691730654374267110776499676620816426618995513452367200844560350705898420037148958696363091876578104299836310744362214113683803985293317436735141867094613803361785106963456224872082975759393453242315974541540674099787335224032714187309999080821786765879598195401526726489603014879104626512066030193054511160380760137292111060627514309557043635722697790318349911472442676382254226464211764480884969718154202669655507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24610146984350548248226354855390847017379526251479441820139193710971146388203982797949271982308210682170121575347612350587769534995409985656361759497027222012086927307261771913189876641531320749755924816288620967708561891149698405883984690014618968854234236104218169283974760640043278415912312909788526365559974549082913949137640740724768717453271677309668071587383964961639926018825391916739154157072195590480851327794623132020381545494187873016755096664183290886124325189769402692364346879297923484230045028285194989657588263816135159865680948421559585674936732977937337081393249458163978288810727364887420606574671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26684816677006754875466557444165365608503320153735175177498712666730572079073634871862527484861883662440250444465338435523938554766502839075618708934234621953333111393414444802800739186709023813300714563857839354329086843001329017004732544118253130494608309341906395759724057810750566360004478980745073091306115572682598815999355386969154099924012961861357627617470027463060074847538325502627270502987880864080214593103149525541906994164038200154265705529591543536943036518418580620847557537248315950321286816069228396053889613111909326805280389430864275175121253777685028568822703137879740990785661942709524876783637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26191727566603688675824436931154901680897664867515046295750336784454913912934787080619590204550428777474267019202271390699958951443209170305267792727757055586564161371939862722067322402344079659553234772757210421540825040593719417378264453014853852304535975142268265119844090114784811911220158759021086073129639148623793144402250699450532495370743595637064131893107006320466057876716830821786156868758265626633703401043974422013171234528173933746933937690321965710696483734486918595647103444811884169107762662826169105042861016201411925844837017550481793772321101477442154759800206862511206355966403542006342690501227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24679511594205862510695495404689792878162300902340086730522993577230081368382580003949295252721662005528045226864228605114239737586186124328696308500294407455059061328218358146491469771744979701116332361341290319670979674800163377347223875035815047391814548655530499387408660905404300678618634983026420092501698193450106106108115454830440859072621315711399559873942271406941434586295260298432596699843957891294068524325816695447806549624386096349749743356454121382332803571414193205992417551960028148850169721827444397800123826504224060149327058585019174376165839587226385847985147439091362164827676358710351866017909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27116654127712533098192749793701668970183595508408317920890420232444981582627336410130054501238122916267257930104211275641623052416314957741323889999317771930496969761944589672434729816307468514779063581435446903179775597721034467307699851186906088260815870083202902629462672833964510703039298097659491782569495025995021943958177430426771833866417808604416098181179073951155870145739563074700986677923815104580452458277188842084347214342603235291293296423300919554726588079433498230472782833483328781127215522894605338038831416653707678819061308443415846277349236527212735349276234886737889376245704320923750072305371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28193853576506278123694285934863685842640979570167358691357972746535694623100626554180208757717179648668253925948685127216312284209046354638729053815554157758117735713115023764236340338081667800364822840399166001518024198507045664995654109426472235826393577819149000500397707745976953882181164631031051532855834011476764178456736155825335720617668785642139878996061445801244546489563367790522311374387420548118632066013913868186585573707416564041823389725655859175360570821806854614334095317986951819686349459445053036108312457205772915475910227552485877835606606948458344332435251953239795524730066050207172206842599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21904760275691621210327076450341436596127162768486014296851108307631101434199746572505063955835345495080040245295063514120158076225732089874819667427759520516121099570224567534947383298029591465760532639509549171526440721837498176756493487968057307053869533639729648912926792314552894245481364200428440610993082183644189007016941479170423026743984815358697153231266329572333262501929045904628338032811879136890040920644415683911579885228454379871412407510368878145811641096061113612520816261821529041785961807139156872511573463172699554289429832859897939489500652382666224352419083583733809736723969383789982585884749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24786013371852309317088796995294679181308724171091043872892717242472069769580559155253800610587429867144558931238733802233776964403080070425257285587252427699866465340041998604500645261619196521481261062554137937866609929300178964092177682614908664216210953097040918608990027098220710577627842543693251179481081303571133176867560095838968927561728747947243291963145757253541596444213773465449991738038904893297828323092167581805839033815792865262128871873996175216823175189772637397057027980440907931071189795734729715255129657507305293407542983226466584338765452588047799858001306402804576973220191784327494988342347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26748311711818694072984011707571734170352312074263411286930080413678904347817725396681218604381447252864646711040189095218869112914820310842798694454215410286530200322221445188704665920231377999802177294527801373623057295731004234738602710301711386475597489060010975014408578647300847298085104872446364857905748536332643184078566376448407801294129566922198850433686091577259646945093822804844057074306254616891096583726802672706044612675107761754691570739311887887034026444275190989098224391313832234938036424496596776058129370951439306974580400285677676486962653229594384548476534079245710389205395184024308846487151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24911299065773544947545365508392513938703368881339944679651412773268479744097664629016874469453158996789085556701527032773124433976919358168190206384389002552991672409257000988056006792237303379676044202678134485206447081011939765529051738708200639534510608936091565881096246426117144012282077852080303187526128501789844617384587399855852549957792517940694551281101316068204872648618816896506916699187946047227194515761509423371443685595672607216187326510300219674736564498826095947808878058842428778775131486220931178185226825106534241614211824105031297916206484246613455722617117346515228244342373059973396642851967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24569406013978169088238036706100323171972894705665071732831739349797762204453642950654749969850502135415710117380464432629405970067604112988863303045211160936854105664269061563017619586808424977320356353466791478275414792314464159788059920602774756409799784830636646040157411362749538528449212860824657458763834148795847863312363589886120534264396679371194810129015962776087267231130014862287565923721364719907574499498945140212070682659806303073714969662549937538221790643548233725449875549789980036999375176400639649853262641877559827487199181282536524254682500788433300675004768613767047458170045861880068735584999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24922359170019925751169351262602924622530049791955203803874247797297141635512292184697191135782378769295252168992428305667740387518586671946703269583183037116101845096700495507559739439958277764325119337502293493105665185079142298921768489804175139857157006490234016026222341097489798960208565401626992172319042771010314997473592808880264235398785678660508893221419626455310261858954226696046377219326197304196825909255731113808582969297679242790483087606532470865133408875007470201888505257294919423764333139869307717899509121350323034486802050473804341083943281865132780138024619325721925009089139393825824341882491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29536159197721942386691394468668393618740318962644638329397069044394374368049372640393718302792157311719477872556566078298589561952622789357358704072413114306796467084478276593639868352316578352358387509428932697298110439381473467227616587242764308259581520464289633189347340859643918175776338682077479739164680763221061278251038458523677744526285599032993195421377726683826335926609407942364256580676854271096837484861171481911807159091786361159547471578397232322619272086993895963123330802484910560116439523052469836969869413835052839467995570039383234037195976323748580362653349126914957081620225264430485956363383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27092183079707371150754295736494064731283925939771338294806584355922728933563340566031647112293748883089341822708746340876247261203060000806136419269587975874106930798755730165436939554419375596572578661405685690035812119921771963051043902192911039709569665242830263950730841062996595599059628864342782249282988990290754732986552076629272425338213871227516144380625672177389689368272432313602971930008101414467196906048065295169658555876855034870504251724334732061423964307603195332466082500780015988449925991282905846427497159138366482778772636214699375810089888271305673797231123154133647178572375378040454185444487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26134639557573300308259201095259709885463956497147191910668227282032284804241988037151719736706236473367751454370513198420405098202615498344501917041164605462044706660760392870521664280232430547418343541040361767690542779413251631919896116470801968674930022525556685215507109691958114309920718202187160183130534304349066875954240631506071403895375621172519357123266299636554874635721262424900311308675339929672256955378394030961680576708373873533201222275033411016966790765573649965534725782160724068822429110976038979311077507993657984307314807309945587711820986668234621837325085646534603227660648579530046735513923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = DE, O = bund, OU = bsi, serialNumber = 103, CN = csca-germany", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20903727443665347262395216205281781", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23319768638600221957210919900567657509810914702578403825980489079230694231181951288422880627596594129974912293035396637340506667319619469786688316642750527080801788806670737588767619200131144177619070431400406853912514807531853890101709198248199250968014319282105100737989703887004985764270305624736239463372721628595696095906219008949600897419203809402890589315608838425556810948477201066205073591051548702975738951375066207251854473756534123466563180886115139319920395466512106127155583802026223158958640569348479716414349119985617036182236144081564678711378086387087131901609231795920299499235423698935333184526889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22568256486163882981491406928450319", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20841869565201089115464902047737757", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23005998768587787561556699119851614", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19828206367259596111828626601917042228632440282633791260871644317821856460326100754533701026650593037496301426610774228348477132734786862723549284884379477238159329918879041108295775148451245294447739310874837043265204801801614470132683676566432587191023835879607637345907604072291847970872459873454022078137439904004586478680769140229058940546897853005583681162709581388721484648744667663505925253099172930080375218140748752475464750154432683789850141674310229139862000632356842958540825628018621517323900690403021145159058166536673751406638759988299912967837402889500944452138014793513171091213612620963969367706591", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20670811183680077475799288164437084179720145892332574725140246584044433687597917913025522912165578953450215404304368695666760068292425366342278868761658166314729681933548000642147621686429090209933851581407845323206438877163780326325510105685995271001518636888652927596291332699237188510610263428830570690594868055394661754438785235415473734741501932117180660007498877641895073989552222135277840868106132421345187839145484330668908745441569437988685134547884363096186615425086924209921342246421187497512086192067765479298577504858895638922282403830256506713679850327715411822652903022010935731265939417175895416344981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19989856940903649590649631816704679406329083416182232784258294668395061143675531853422278278813831124338932341050662212699756494484021350502228480487760421539296760375522782470085217075315597012867959884522005173051909191412632537914792340077762356394612853253551929872918735125892257342865711168650529546829773496528977547366233611953994690726475139141488419609632319974864169196191500802887582853022772205779631342588163004871095675084408622290593288049757047345442224350984962729421841474805587699379080096284801688426569870170465060541446088277559567563354571172612914814129701410707765071008642727467444740414783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29782114517180192366179866736968399383289982582538238455577775859947233646681711079233243420267867992663042269565375970613468886960091173095951417156687954100443123327935948394115392068953381127006867265644627754049741942511503664548921122717324698441093578598457683455986377121485278639091080587993235714393709880906089664615527781794057283739013989537563866970571740930307670808128065774446050084011198296351291976823365200060501209794850275437809859494804355975865842358100381897102039957482731767545094177506143005314336556317510410197322008324830306766290378525497644686075510135322573449869806249497032611033219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24095471131964645046966050018656746028463737231093642436406924969815087305987048524961003202523240334059326511497358852843475227038141522113313830110562650753128448428710256440703931108566694194649759466052429383290713585169208204464625511641978054685109726622660819223393272023588448324989175159050246419609909874894889222927948593840146014820522401465755903082374001889820516404326836381631615830680082548405225173619390888262390984253905813093219024832237085050732773391364408120599851119603908478424173945128301542944555319370274993877435718455917924678850623860894561344357286004498009619279896986196936236785981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26509922864629536395370071455046682203800190454778229682059854372676173187417851052473522588104948757061180112612223398121120804804912835962001593996100656822763914642302821455459400092937133611097257444609186306021937549607717872704343682307672324100755201352543767883595647942788833264609783497694939844582006786421375146618487508703553195208900078772311607215682885028973391110081552392430400606428852102584741945477111996349528910027108054447721141901411724236158247482288013012565893383115881098594979622906367376163380903201422336265817437132818544700349088344585637867768176371623669724238426907743985564617653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25936120190047641224563802525334820361004047186067143879466304159574909616844306696116503314643603827904843762504633763852925473999116401783311437464042114516603831061189426141943097299063383202623657556063165282043817650885484623981622242311544313063748222090152530538372839561254504867303156600954991054335243103872629539804678150723438736234671653614417369845385183494373409890448388096296421708240148634869146180625885303051942161437341756571669738548363503636960247152841204435106286026360953132306313964703957572675023404741498704198464128694041111139331928415043047869063590347202864856806674725297505671646811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24373185744024463753066630541451023011655080382166497281056652879620138369429418449695325382376082451883912594987845418651732488941279667048135064497069219992175713407818563879809733308074684831231681022660591469731776044586487002584939406976772111931367621108558606138424825492962112220672373213353766121510921445267544138250394716799243685083706916645247906088852036341257461673240565645279284108223415433364516094402153023454454855986795868647056995059084595499730541184944492258342020103434549073720573254971989180499477706667094791169546530928858338082109756373145701712383595512739684628197157548439870224665493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27022936400470284564534722879997900562810172499809512718250065975500860958636996715081853560148498952110830972718263938884065864422780646716396817912364771169133415701803563566521301113937511080559959555663459253555529124921728526272914837655416476387237071203126453007323761062423414897637808022572495280067937673101305748118045838024100160844929295011334398764521163554793027806191521564450182427995051580784810435779969301996571848877542121779786566578414332845141699067080669115316185090272794288987875480513732709098473490647956346614664260896069633025794317904245874898314190160768225351076621118346310718368453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19992717704631681749015673250219458134497274522370167422503943120927248910809242726219711057244936362893102253075385372606794104330298112447077016211087948270953197431826013343705051848335469713955295606220063472741840943882821156838113587865697663785672040673951371607711869769080976769516476028044295627685552539395077771420791043994988866062832494817387552696199732544971212887553014206848985407948169871735031342521573723223708014507921297258100786130454460856495863905789737095152889482698624998589530321656359940987311051780536692942068412864189468026130167211143879683732564587235672993830170808266907691757589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25782178478390191924919749091930834288718570105692913550381825014967256465711550325276311056745315524070450317904596263523349047976743710158886314418474961581302085111234799620454364978464285308948907478708657335786332955673534130131363129264928165758929808473524822727063939448144523862832839105865105932381474377451388202507975842620237740178938136556835235180345300749824828061555111292761787851443545850968072442062018684516089722299481247642433038086541288062650960177262677059586770587257015850647224608103748167291575200037863494501423700370982600751819757619669515936385360524336003107434145992724837254468429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26914291234482505687846463458179180998812765769563132617070563857685467087706812905842396511207938417996532077693560964888279740693588187354122758896029993615726226670205389033897078713587255293473958739806352036233293732535269770383134446940682428276207449170680466623188524858809472286696594401425336361753073645124044987513079597251339061605986061699718268609833327949246414048848272516648729193606590238109022094204019966005938462412518301254218363923680602656711204716800639091943938706902799428691840840465032320692550286043552358148321827630497451371249678276820558676719865053935990223460676283773898501153657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24845313633190000023782769606828025704136521085662643176366808700927517168345404830984320820660267542289961969953079783177049548569822295821600985120195734679895310141160482321069129577955119358196101221062156998087102457442486172038315689407338075733449359969967228473317175471034244779072497579339218329547259443461965354780606987196048773790157769017392946788136047499264395172429948390452179906251369779006132528666865599305004515570156558395293647531686278919514397029898078841917249973854732708128023433796967974731973360319521561617617163710902506324972469352288765361260871483987347414037060069451568986341339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20379378783386455243257411543210885830653910833705552212601472738320998932990521428444724071925589684504203431421862547190307682321841097831122941819868366569251895701231300997372194642460840566687755052187906809534987684958517063909559083975839834869255427314605877779088301099599954843277303822557097098313633587894342462396137628209177378552099011213655111158599495669512368978318755011996464728211966411505976912554017714150459745272004417206022439816697289275321719450378245966687176520086152634991593131857194881415759782730844159535763975804773734322320571105527015053462353263520894287917547060277846451972949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22197248152441499228512855449014432128036857955588503642684104660754218511419483210186582234608850542184906566925185024015242566603025935767003417454420860269924497045618933789862069195185209957394949268515019915741286788162909832869307813049756082168159227439968578526950012320710138413233434934163803793646304109415730423360238069767574108867491618773970766108599925808743746215901942310135552711636804853771387346492261047393524271891511208558483201251725659586934556391524076632190669251553915800805195162689666933539648313568105810763644586886719246903027775578989654859182855836129940520369770146728671061349053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27792491985431426595867766829425111816050636542563982874535458108451403973936317379516031424893269223300207048044576803160761841274342849615785639848212903370879166231379318906996238544773980906715907911897635140122529827831529988086992381640703757337844179618682476414177112453043180845095228429389720654149927080162972646964950309590052943146412557214493846285640571658208123970515772067805645049513882340673291970224759628890374641811477708196615593838987047668757771347312483401396556925819398599405442806224455280289411853624657116610298767804722630588233044350464494408075159300826081179068407417431411060990929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24134155986182459783299723978401485810654786355596589312540542741908315062721603291580648811444844053868196365596219285434844612410389112742827456852611574350800871604143158445026195584436241592376651434528416164990693598153246681591171497415516789589151512455983313746260058592272297821760335477084894309847067371622865765987716196977426442357006470927952571647325208541146978248178947281136843342194594793630030323157080425744493443713528422148996301798910101261441626578842908073061480849699645023292734231790068891386159709116154466378004652922321372241327140253209190047046211318947970569466872835772134637396671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24420157322802109869840824357292473592672966142446314006594544230049362973998870048991335108974021480364559473181568007709622690407644524129068505731973246398096519666084433762947280337131643408887564380384437776229794440730789925859558931740081071548324328156306056188664526604796834270120816068475490857124559127779517576592111967108270930549933539277209479839434824908021021663504991030086934077169962380419741210523265635338010207376598218505580088885041585667101571919931518829715746747087902951710837004801611090343141949954255487707123962112423751798394945279649262573025760799695319630286663612515995271335221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19596305973682232381080847155013775957886427151888304249027815184707161016178707650318408549940207487665723788878712295311370637492160240000520402235704492981185626315367789416985720674292373824987135931015265607655810955393531515830238058417959493058608255663578473903806127717352608781344387612153052771218280822008104854621684290714746888878006370791352376946921754622188580070613378532448766916542711428304401046222666873105075031436096191300647383069910982182948374591180516884607292441308073002142593829574172323785400575566509921907583854827929615363972343628357583130423239021289190857214415898305583271555403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21313988151243700311476127464790711344168774896515370148745944549937874653701802636818040914625996801396332505600331435762325361815582461685513950191141843561665862883041244289972176166634792762266448479686062454001433911237016413009486669054647711785400334494527115701624257194619715496865217169646552121256366529597938095690606368945606126146300151041642813970312004688110094076166900292175724740933663754301928620986209204344834071934714874513688643955866811469609180492242351613582702741864097393047043126296968425110422336409645480075599362435857476963564918548757843143471859714959057017585501305411960061895219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30436670432202088353901048442040726919322196304757021923891762479519511076471501990015551753781405915246298270660567980428973276324570858976645501170013859587801612885486710915257299651153233020016049011133077715704195182554782187067321511804412837532209113451999138205288293586225280412623339967146124573484992232240400135529334155272719922310484895492637858947663070284973844404294047769738692523290959387035513870614439081419087985069413495249766245192448506021633348441305510145126463567841015608687512804709724536233991009516852765631101673724618115147085679553667932089146959406661289507236445585738722097526447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27490061076204704172823727227190865402796749141260953454122732308409864739620312458191713115929048096057615239584005257977238466038533245998376679425353461568754805420338153647263225242081521221296538178437117455782547594104572774425033442704311387413643665971514921692893648570624687344100046912793968138600928892719348947573754341082730152456497107282843938424370473427603634995521627465919404093050173481811688070300532088134321330461339481250058580896937539065546892174050782267149481813508557469599066213958035742746458129507919411968979164095519609093070297251720668870567108471236796589410543130421213371967911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27714866041949339663086994028661233089067155368008569753055695149991361014998550769235416744143380393199590271857383384470990638422838647832614529492682728249836956337988018663721269462205262205809153487264238213946631972504395481851747403497935151032211060550868193883786625196678265285674873173950108252817153014818203706014751517920825363761437651555179479121531714956355217991221938626822428757342931861482024292658346886995689335103455038314740974395686076819094668528449940542150002072687611748661692369187615074400573832053536822124820559595005457576522540692003894049860997022824994626510579115351743462387721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25194551295720978212541979777335448324598162763195930864373822455165043539756289096901939133751155237453566371833251233932185972531126002232086595259586245970728712428195284421274496857864499856967415375942631378627282191027003842589173703122220488178575063039478859008535680602141865761481774460105196290533168015219200647960159288447764534959371068346792667662668057412466275316730154860444200441380483687922585538610142073405826014629111232875808029918067998416364094851344536555535115867361623823633182739056811526981105651874886668179207410749206723473851969475951294396923296430536584315730615581357050430613931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26551695548856612645177497271968067858448045173721845459868598582842602031389803720949747353968243955698956662899016095797285155718522948499967554454957922505190270139636992113084554284028951112344462325168109619261417048249275672680255969269869936640634566070790394677302125502709866074873589769365935473465915784406019364656465251114559470451754875244496240372558465993269262698995068709970148788861547542604744345961144644254931152889270373581173034310307777847662253155189970525402521040722062339357665280485955693842066846110544216439817807387105537465703552686838765113271961479637684661581670607385486325723169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24310767701868528615583780918743366358689861371923879522001298303516477444205080444963903520619418267852044158841343416940081201652326480516543809696077927099909515734773589300769370838937261057120009286247021015072280895764488331363087064138551867689809180011030461817185469562640116500690751950261608018327552635676403961869276937530766056432053274689763289630873369578593272827146628047800798045348483475973332019762957425606133895135558956862348574545758637844111313721409359061335964425847608106624210201824266062286005367992793984280274269594021571886987174478391864757559025948834388906268531004123238709704943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31101738295736633946463771652144362758166504832058308699011155006197982137821583556645533573481972242766203206531525082788067451398977539480651048585713581672626288298442613631005052476087808061585954647049584523429152441499648086324440623098529542569449755777324484886995875895634598966028480333911587976912151052333167404602376191175752635946228405216704478845925491904227147418939211970262654793160614192257981701636506431526529961171895989309890465848573101993669837723829382829098150200983520449945021556936065347860315349996284277491276011604105074929894913450958195392225368534916847588574187637034565770694361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28735046517868939663645160142794171121344998205334588798900571678727225470582016342347512286555870490113080550295217731038325737716164689359472895582009452169328976350085200903618877895957078728148186675935717113617673333006131724218142576624411973572667612076722431574123731814826640699035003472404625387346666613785264222192568923514624352024416785435867013935829319643634386504709210854357063689367189454116474038719040684723185332714352476884924970963031912087688412071377641483649442430705941526155534584301357593738557038640700277767240492407765617876388894058707988691235085075672112818067250388602527260082667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28173958096871066296145749715618325550889608460019163750384708492677494010078921399094800549160091436110597688827884599870742752172399357376036002373442861252707865229499892895796581049237326766058603872867254864235185449691054717198041855637340075216171590104411632073500648795542046249671717858643158260781445572802274682060395343204281594484399662383081778658603571792584706203523287975406874958113703704748491563329565700053740620438365197917713951777985546015221972221991851039400930375139365554663262324122992175029977324401761392429216284302550351653562907568797773865666607128572598728925609388804742036838641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20373831176399915452493197713823325891511549457758886427493071856343937415518048663211187837630752888648450566536213572780172327101118496064844255852878273387515243291433451057490258902098144758986774599310810654068746221095907281598126604311163761932285342045533404851936257115127589455787887205190478371324542220920800454066321338272280312200716317629139862195190024518278314587272480315779734925121910511674612567987556553491807075372702094810651857664500028434933203797306374571889511256720993973201363128628758510847562835713346427756937591628532654744313447976818124118392165540021625132564327943474019512729139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24452940039199464835335250299493507052134101150423603306580217809142078433906708172919477818271804707709871144163159163253127862568582242782838751621473695995467941651251740297753119089052395887210380929655788587587924763301548302295185361191410734829928990487753640280223176608386303637142767338837688945198306539516006822970034754172360532479164151433051842169435216535504642410178308556356427859652489562968793867867526201698911851080654089620995645814059904208752973315059108205310065179218109408424169447447437268939999252110711489421252819930841813375237418678530137507997653115124876632413201089972541864193547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25179604434937440278140995656356646445714028863577853853926046194610262024157154541420949998956421368816031524916244927539385943933584899492443200079481942000674568726341646794451567195209347358297561005935358720076328065299791834123595869055005577570196664749962285835542818203659220598353572143245138026806870074738381820418725906509647077368701807847378500701510532419415323658688825579347329082798289308028564627770076374544866591111783225652404477154737070264929980571029707912802488311593267439291844533323709264321273933438033674119812676688756829161067176940387589605737160459775479704124154035192040724762777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29852723624067134619503830170032883732290913146108581305865528236353287845792088714170333762648355672884480697538383575073277405430583908844688718468851366052372067536760113517707309328626301141076108511899741464223371196734456056619187577903911251807840983313067479518763967031524360874893751313340243371843187591940850876415291963466716207983418692924940101798533051129909893628802643398970392342126441209139431212109633897428102178356271371416330045111610158359141124345298641430064817324674900985424944380802391243493651302503739137445587022623906606799791751006710910672036830815802961763126810095903846921540197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25069220642975819646836526218747730365596079920142776524142074297923133115169536718581603783547751491663625236524051162058430684217722036245703717199246895166495293599042686079929202645158457159974952564551882156165808659341459643864251452808107334771864098881162542590459758632422622173617477105888188797596857735786664280752020329826349384386778323222067197981168419690951091337864230130702812682702639051415848484525237366078129857032132342307135086116711076892576833062195653562219042945155940278102725127087459944823484801132406016149582198348472787423684170997541539801742101746569030167063760169469371584780923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27567265264470983952747894418626610138579001650371511037984715153234002649194454226440655513577891917680138776941186442461722515048319276697488558369698703695970652798819038024729450557165501073643367200303301124318525430312240451625995115071033966835710778535184069061676672214987545785972438098988636896953467504611636469565279973363447373269606834470942276619221578850375315263392127135103242607866370248306306793386815986592148954154678922246879080480132666961001981684763394577934532475302757105593974241234318723712169958232155588693790654589328412213416590163404483706677331486109149318775515876977467366906253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28291282390806931353250717687454685051281892691541172780569012699250413435935895246521869579284525560741101292545162064119333964203391402490244319109349369720997143553297999555198855135687933023414916379700513767420518881504338004003800212117874603053619224559315956167414216564442302096577982753374874171927032159331105203182373654890730591485296268368376337366540259527886389510019509508603646136781612192759979229849337077598434092804617153909636017637861304658798299607048782475571033722478924160693599936445833583742782121994837231912450340788726685294921307275585988129321123172247444582315846661351422982014317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30981244663801892629345747632333108580169776948964416659206690568954261002142500443177041339606647910716107227550948813544406737664248969816146708971165946684468936313237210616927033671546197579705268209922291154644793265684764656964174405507123694052760425837524103910301169832666923288004674733274701613276789512777538752563482361074233267588597540339039389191117346390304691005947640810210179847708275530230256913758477490598325366320660894626499425631786472894413628780398457180579127930355393622950101950785509989540218777915203461586571738947415748391475418643870679553859216564242705353117329414930890429955959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28997826176286560966269844721292069951949725072658885868696535294437423474003110325182246726803362320666563668926943807325996048291652269543318879654944726313479773053033664604822825189045372749476268143410353447697906517925365296020626456291353845171878286393247741310768788576142661639497086815527828486887797379266076322105365087081223615363980994128937127220146673837037922045912895021689709670736028711117517068769417622768846847763740518931689182441377929683843422068319170435970171686559530713619973343675636413687361373807975420587904191969715404447321002411810861449064420410724423074197154574482245404261599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24844561225360043768882900091591993207447979798647653645529784980264557574722565679065527714066825375088818334423043195958314789636153109883225093499185816752303409390215371401048700021726745167005652188951579555370829286769724934640795985917042267579410788256135921861316919477958200514882243847187492657671988990449188548696793014697193846106860858740846788595690405319182743158030651368176298620931717397917241705225091248811954424850569171469383293933573490768122159687370125479262569863286305191523311664032503756186941185919362075162816751014120841131913120523402966240370580860990555954255756941575632812507721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28120630526310625535982061439672368603282163569391641597350030367968548409477681554701002744982650002708830608338070396091099036994782950435233588525808572110935408326392637453053508368244618495481665689936999083243745959325296905970700326612525735351991061726159562987978906342161079106076813179971973241907048368464084203977095875317679567783208967421099754235054467873726444211711492363809240448966955864548017864458566593532049653364766689730213880412829326416317293103850058803575931707388964768321908789550378272643480494687367664001093790395170226906960587768545868345569492088686073744309013786348779293377339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "25777576388767943428606668077360070947970306783602061756600777593177344955845450641860053362298172378498044751271133515371350093106238211815961485292960489610288574227360729515879114845218849298341379075061734381897331755330940129762574091382987362156154522259162175922989818747124893641724377481393389344975706788933322315049774086491346616573340549515864584963640731361049003710203140209249941540984462875602502798464472845343339194353775206056940594366360257927755273488814893721037361659632930447335483745632891109861856515110289572198388672197881314993616679806922679047034946164507739165810260311913108658961871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23633484299677728337519115736881076", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20939302043238813244100384297721649", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25499132654719944517146415511405175", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22230740238616579546186166228278115", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24665890050032121868551065316383674", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23296300709214539355997480004970148", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22826222247546768082677542614349574", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22281215017847573220240743072552472", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21230079176417013140380508000465952", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24612799230443305112981330112937055", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22300909731033265198913002513287239", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24161030767076291731528198040950124", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24752124547690818960434977811998543", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21703519034476423769419538953531493", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24300259591911730042146025333405476", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22013135671807356330854719861621958", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25059004741199606857943890220661572", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24057674228990696500084108789180438", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25954537461928498719532035280714757", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21653820252646549344527817800550395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23601782061428926836613281091928925", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21445154169865726190455993271323304", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23097608573052627618614972016086316", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24931086366123567186888481591151582", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25689537025336456057292957036587209", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25094672520104950345317580297519116", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22262092052089353801812495554875016", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23589924288870534192039164297262601", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22072979918453973870994002979381828", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25697286886788597793814976356852626", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25769805664242791955287648630343909", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22871349826161976135575121275723824", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20885736296793667077770959136805689", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24523214838960522046238776206509710", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21078677936152694358096118159990923", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25846811739267092163105309827204663", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24374211292049142347736698077299068", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21356826149805979575257845513845686", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21385413220461995848089311830297209", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23796473268941265141110561596089057", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25805987490591711415075264554941881", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21891398965240114126329642815377915", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24672962155576146311561336825855362", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25287027568043354780917702426933409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20785939587002423612249942206847727", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20792377786514143397669093885244404", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22482527455975856794759853247359072", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24411643722851115139433261569813094", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23680122858550414058469335856975678", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23134721519362392564554787358316561", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22067010296724248259998705912715186", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28417176364739078617243909094673883155142265500829544498688867922584986110071004336811450275580970879676883914004110921991691861894053716401421934627320839969088719378476210755958052599762180180382415415178628519714453162179683407860215709591990627299325833495830797261139642683834655112131086657367893051843478889595505622582151297500742267239181161020145997948203554913153191965414013151871426180917919671412785335331711059356458724190962026199417431252463160476245095686903275866964265455716896931608483452971085734500281535941678852183888104877263585167327678494842405860054360713858073113383685756882918405124921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23596102928438202328102787340424845808425966449560297912426247836364445664448823867199196056399342713464773575907294284656650472159551827017957590063529464307509753045808243940959344354169878407733111124943853164091266901044399119540915751308426136988757702685596283237163282701560658748570134556161345093130876782189369633815035839441805767531471556072540990761649741786806946259265736025022435641984469124860259752519062234269223545487086982928383907654395326644860364768332708766632878834634320885767178381154551362715973582588077251274328213456349169545237017175324755525363787490616161214182270078621884040845899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22928130801929102243111634972680359372534875320878939929719623915351975400681221903372005512909832495160188760755552673880048178913149350579536881618904930401063076358873985651152517238062524886585988875698235649866619508604826354655369955269988602824526866902371874776464174625907274770610286242623079586031404844507990621786603127116881325276033269552354387255373438158421045478766605501012833375009637605228500812303842194038511157612008074748427139514637429114483617745409060235562831125878429202644125763414328874360302450221138208040122483194311031065918807731652705118407220477744197835118282533800424004052851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19850428924834847155604762072881902071161319707280517648709534758049419452742461006646633806232692403953062442406182568848127610986749611141354590873552428069593127356367011038101055776565613015965779661596267448595384924746525165707654729232586455210332267567158123969912481654428414537357207496486449152276166843273367367704575011862431071540014479099058496082082283543973194816936880873672954769692535769179434456465310398548134803464152299428544440779895399464292134004279962772381986308433250865648612221008446983050819503976381773828595411293011226356589943430487921041154827232466524855920517569199771180864073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "22728402178991328451176081470076821027698677724488808544625228778769789559669644428029049139074126161335175111922624181827316507812181119505309962890282317840614075165857759529382529044728377963493074046680373430292547072135729660309506728980808637180537549415415558569657239183724230523809338868982139254982036197740354813123262794987984112591105087280707317746798094565017098649760918000699728356124862788205626884959250504223055930060135073946258770311947690326030589555396515957535151775456178264422191517303146421352156225290639681651870615837398055054442586664324909436559231232702491655510857568876945322557821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "608901995548055785399985436061137230876065523027687892573295662820544433728771241867848855751485153134428139656747103103681056596494452161345490376335282260186355139933486188658447949403626601736552639191753702604460197933986943811859510604389228252880761279173673209775185549508362700594374461011599601829099547535604725087147977372577195123649488432197022671980526562139101616694478633297225344926471169389838765501889266773812486503153745769544750289128330361469013875367760882309597517298937900212657278893856752719604758391390609517351502621083254056623049912193743994242047373309463557980428556168465299064785797974815213050757880747074371121881280182148700729009866047913527228600553263135956429948590469255703645282354563219741448316567651392725806242701962042349017893467887759385257628077298226961801920686998793059680786819947186307437697181639967335779010446882585755821725362991982918198309672518391225773500451897622833720263514729939516216319913866628397826327982487534186992381053583457019340224274008120776873163867340899625112122734418119742965212512457923910459613526671248883253035255798628797850370661739073223789688118884788003893925377140255949840481239641789332542028548454781409064652220527398531996549116589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "598738784095776199093716852835012108738080755396669578593598075684277406515716640094825277646972405054852189638296480404125245768996189377534871292026235622871287626975189136372979791917971234442973073390109972781205062277256133363323030100087618567536905588368323730730684514893936330266785507413834977769119287415798865848440516874724389468873636003768502070881648235334600038583745421568446564384684827781900376877333577511686770839241705700212255704891206178363272387426939106809050576891522705810522766151601204340783828513104905943528886623276211658287692174474709900900907154109544084852480442238965321968182007178188376668324872617074478363676773294162911935041316916487743260545224936421258018479094293188697286622837263236660416751487878452943769352747790718354316690030858145987722757356341846547974989931104535668353785757435725603991524924198421159241127533450670442773109275291992444954856866234315237424654549406732194963012899016636406492369088412305702909741370530942629756413865182635729662289067637055890449799293108110068151275932716156973183645777059405114047956927477617513116727295137217404926922437943577888727949211950010737193722917927690251227795898261894726745248764200769845470180786035533894293902185177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19712556694181079436846086760203421555678425372930323346154082755438780212213130299874974812282480028026518285726996576665611932665367097266590402713422686327222805820879526688708663978374344868538233648422644975972693810684976722169424530672387676499991461212341437760748868928534097517018769031679860978134414127408886146500498457541206900827820258238165434078683579536607658800859218510076530735224310601099150942919711005576118120909628070607256069304278916157939448678839991577938978114410328428843817314270647393628287464952517919204438457366877551430299418602285385855417050275641735019813756780052670959617711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27165902922273160920593811891974833457973009845665798865492611474241899491865712893491438975237788407374541791158835463174031600132169312547877263989322591106318472786147950302709177325107331253631384173600254393176225146852167261997171759707141989886758430290535253138954968480081467684520401719087805195728821098003826539313791558264322477655865514382232456562846501414039822530485525275321231146255202802944724567375614744306758499461126052619209938346950860105056038042054323163798855855312479038782334092848081899115347345869791352197395005672894036597297208123580678417038726032861545064272991163024202145780749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24727095608441506060960712194801901259159117033026673169284605219144279671558841859508124477873909246161856107487860072329562807082788610744422349542216228205210431636316548772180700545464041706080626063273708491117763575600499338793862608481538961818154391946811794845310230673891506621191974839152384914254567051637843998968867306346182857021505073753711892635607675249596384741846042864067505511580505164470307001489891328682286375618445861237426636430877889706206476853280053261778519949785093776735925148480280398924932592965602346756352015787796498271957165290747372158951988337845575659354456431481008857446027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "26752006594887796425924786856347764850309700766800803014311452253553367279893764447507681043600678957717932813962434758466343941263544363047345706012465398613012439394152315400824560904515282883407646007482598071580855365366468144745661487578471087966799351926672954610549808037672715896270840931953302152170614734742997180042675205752062684438703658461084559128434895819572426815866977251359742971576771088277085562903272420316445067096343356372754892029111980467153752465922248766588997741093763253155439868409623124249443829286975344531846335033982425655263095917901451853508878408533934272117259169571429519633149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23014349382000698870375587016119989932382283275688557481224369431155710598750248583586634302692478243161816993372260137793557667937748252281551132282398577405507212145554581266157673879599914513651066123857365491219356217215702179309406476715291392125947865071535923296268884820870140708196944455944376097959688472920043621867866506620610258902583108474335956112972281690213454569909751758323134707317469974227771903601764123467275158832816399176119397574295557662964560430181383570066893169776882408377571977428723921766854149431768427184789924903116395176162323472925825545091434463169306430403293097835337246391801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30392599254454447984012578022294901203878818106904192052415941157060780700848268149325593502754256173137930218862604927435800741071570088279647165291751581548911662195591532792651812564374038200676068253126360032360697930153132087938849923132181058951861168274934991603460916154450017815639261095631016806532915519815256308924729386256642450666794261876343516690014556973719397198243166740264896473703445830725202318740895765956496868875524520208017748040720512070184137509608701301247545575146625236233481971505761749896741442582956955202943596309414117870485182319478289506022834289136763941771985748534528032034979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23462923801608976391433672506015656788183665262767687908292477036863987773882453437868068024745899941862934958478479973076252078222884405914439538863898001625470099878390533023257764863892367799261436028097849007515881568570011062633065539776045737022368989510554259048133301552837168699932339066094690725626361535802917250892418638930572213005374318260816125684070701469928718042584080936737619196571015844866051185297249310756353315205909896406231752325901156515618748311006057844316732333271126983427697715047932064656577575318958598544751312549414465348007299077763008215069719857297476450804646100277059965729711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26658973519859671657598893962736111679375447598698871988552711308135101640633191667527209812301597328651896555861798787012692908970575242122174757761590684395717862168108792476936658471779702332038135902136480849658651352690201124098188809074669617902884090281733767215759949496925191418221778308829605523008377194999320838421880919135190985186988099069589344686130575793916632922365742097601642045806360833451171372386863050436694062191073186385155071278818685563824789113704270763313133374554516931205861228451883598024499803380605927743388064083416739019009730338579260790336349297021986382847231567156204083414649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23307139247074344634305549722306022989509129251541364610490329432033105954386562487562777646094015721858128548014781400433586681045586716020927822204537533119243058825963581718471235349039622831696330034811471443756951949703236441882204360046078284266796802724105221904009691473159481395177269501664305024266489190242958026637728765743077784821689151459059085540224175974691187895354472274046510816660898063038955860992755929456117695816254320425486541930380183936067500922881822818206251494245319461220714325245437133020608071436274968446288767650616132218627362157940308203788343614029851987789418815670494428138943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28483626239767885495019646485361703464671194496992396908887278957892178988501001276189148975952247491236353843606573273871053316594236750955202688681451176795561059587384822285050943388058251833643627266197384236352311749080330713495437654043544837071130476020870595547743299995356408535549731184049909351285615016942639249869217603017660815069604392672730485146915340699664292636598548837615720327113552570447867291160016029862058027385348340894854822313453282075051200258980003591651244509351385895256034606605791377363868816847803411817525196251665335916489720193097390181095889500169189908408587029549194521181751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24466309427062014314157782404307263257779105840430573599348866686570913843057903615241958157783326330696702001329501316826207286627641157361722983633958239036845062769469695389974872974710796497115456975014475673426470792314030181508471269160008083514310576122060643794233243674042648404293085562933694129044532235720082046588137113621353927359281227414601505649261905887654541078153768738525149613225953597647848708439103810346847014200156340954928671823556984251952216890841234110497188793131855319479693697050561945291338686945255661549896820191734818516345392829936645990176835725388343044613686024102543563004899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21162391346321283457308353140536268", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23915966986940098500735878935450351", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23602425804948829717888954475116900011407728423243286918398650962754072377952982220071343250566392036465663482535004770549849449748590989280088727510136094209705440816110486929156295170006225505158906526632372433236284673886945654312026625763302264389975009930520100516864355797551692356126537072014798069623232155515311795438633771392683736118464293289126066939175403274475505957354230219598754409807350281294340235654047117841538882390822966705361385286410325772486121704893396042499976900298485020414991853995072502466133921354218156630486295594580091315079753735373058128451847395789917063624693940262740351763283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27981723943726411844111918137255976373449106333185179383899191723078480720552854599051929248544071654731345473094122414901095742214963186712067619128733299188710430729002897197199366604020329139639371464064122506465120666174619410485246577761430354726896735397061621386096049006840833712035995927344648624181177179622836302834786366029852197650297915662653267310218384982364031065029513758624898596060452074870255772350349132490077787449673869330473135757603605645035457877415033109916174519878447478078550991421004895401180686870747275993838050403217221234888067812175761624577890483859275249980729832341830987120931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28344444251650872221687610638460034953192045049448276898357145197984114742606886050379529564351601444455316562055168464534479381884526750285703274103033216914199563962841191165142062051903109176223859273934091315911321897530087061210654168797219734546725318973537391130444764439853406492006343141008226848899594127852112620470310011101339778793024503267925113057160747952692599373843514549085718893441659359636618194878425777679081096356401118258867690186731430567562785312910807102356273564954821599233313316184289350008687877986820215734734397709950731246402988570494063359951359715241525453342120773176533242331093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23948268534003049456950934011266387964258308868271912621073313405807058930238786602601661391718525393031417559072548030668259371473956372234687216359663332073688237448518652383189791856782743728260429167137654426965326195021539460287495896303639090836894581743895999119339895500691472752197806597491162036014625931487153504551319307677460594378101756726247531982088814036507829031246122459219803845085461640893055563344476989298823558398224293505946782900074863151029812495080445059311317814546003189195443990449839319972836669285997473737197024715745554383127969437547530253162473977361044522001400304279172217937697", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24888193734421198510334134555812408751028267695621116674555368931976069706039004105809609067033497728149025994567627821685419616986079585741027420342049236456012202847619840296872832039823599197366015505814273155968489628758987590167944703617466361733992040645656976754262618379661904028580667700889388041601629027195101639652847288773089761650917925292280289118123146518528689961802439645557693332705585923977070733801363179157142621561538041419374855464378522834039330212990672206355859970467675120977083790081847107275492130385777562935393315167908956951122621097839481994544214077417667213885392453685691678122709", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25761935471092157742153945412347152887771441251740103185929351574704517950749784416778445693473294307495662656927895696398016887848853557517493088889323792819205731424262120679863583695782991474408726513858611400989420028771995650115144079418159868682078644999217380007426273118384400579373070602879483282220909666817333205141981462472621904334508400202493318210432439499854321375719952843991205514477930994144051126594130761547644316546071995507308293567537402187506372865661378084873227551781224496037413952807315845283792713399285595943102541963231963149653621070045289610995934995646327710062340294955907777093561", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23332201060687496216274871067102745569498106402071310959137509719535823767453554755023751921153711412041347733485120931487042007259195208476162653783235021495502791115430552583318896625333349630771947501720616261730072144956086019928818301079423537870279788921627799094527231673261479276416668227974916442699984832306639860392397011051610653736405801798504293826518654585596632345119506787422346401392839078060957928485557361717536893476168743210647814124193585357484309770358847822597584643511683902183473018022451945880839436877557790470235358719669566940416821290380628506920556761758694320083032599489531208332199", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20133211678139849221430066139159263116039422904977348529679982748213502131970197826547026180953310169744556316828276760007032616661287036386281108280821283348201435710755747586946382697330477816695408656719729651499814720349116019470207384716134742382181390359395847888997886067045748502999491874546177607955338924387266477463491048666896703871775424833009011965163025134925993837227172987044834638066673518085935888539782575201063073721207414822670239166100913913113778229575725745402131207012466840853161024260477135670028643776087863526694445567268051705107963412555639650704115561754809748057739296199494954136881", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28452519253877684044189990108523879881032922906356429244235914019347451448070856882686118449778009105965778296942902412165525712056124121494324938836889935862864652728015386904247939732105675179299003326012188135019293795296118411640622605109985742624746429850516619730586267811219565078141566901713018691864935338711252950021176192638521220149522566145752820840593839382847752032426765961741339989864845112943400021907166028316467986836772421828490973630790195711890209093249462416296725026101789676798976850662211683100146934482082605507100841240046290433670944905631710563261794630620732407069838763880379221262987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26233730328361310988198505092737017100495700707767052342006301588305711402790680643121720370412318390730189849621748640940790332578131839060594627494873083357567018565176875652382403088052123340416420481914841533124476257284061511845883534143622431378814332654977705353761022880729381922829135989382468091303882147728729376019594979586461241986144406997074794537145112343354637848805103062663667203094054997162111281982616796135982314672424482059203481026829229401342075103539916587466685762617133890929862517984794718771705192142462081927352541029416225236371262213502846533713275942209876242942197463002977120130081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27256580056941496232518723771047540116473936416409879199768377047206779095362707676575741071217650282672349249083300700153387023397539655315836805974346121098815839273769349410159377403941293745540556689813836180585613400173288968061931993754921255092788787530600669225152928526210285938269946389584562184432367056732948086317819189748439584959404175144903876023094885939665687444198025887113904660179995318624690903481067409935215871781235368589867936875793114782703476821581599944479395083064632376516790999755973663545182620220884782054233412068025545131808573646491664747337857296784911656241066234478473699686153", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24367992926605846435964614244828806407342373793739712429421185650849993006823488837269788630209504769899927497322041314762777101798249414228909998927034739999049357607390297825805578182163160319627238881749170884215585945109899233474615728809191190528980638048274970109618994876443021724248531051556383828822741334556967710628346603544262455624836009467477073419561080816185038995411749905303038761411976443338284677193610060237903513661911684437648529126437282450965219088946686363059311904171175578987291269738263017098882578726341412646378229356290806830598113916440907923774145754732956706400047974958464936535633", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25917559217406273318286767790858667490262724456861214281604573436980350707330764530680628410159912675088743834916756222384406418144834911873201651344202328610031026722674273029771429404168802774749394362970339280883111751964038184615987043132428244506622333988478340778584620882353482976721761157650802898211330298028786057634323050860841815289247467485875624846465357998836261168951261805702308641484495590586767284555669952233466608733561628950088566884721830808873189896671560088117179647011927171680314767864157127416894142061601881532187772532171575293999417659065202393463650315303091229077747442057907804082777", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "29230132019491624502916841089523546965497778269973168079441056973137296051419555920373815487704115183431448013106473725840839022285932356925990693550534750837332185399407796366868656089018330559162359462462791302569100000947351515091844406815526758502099075649320312746754607922484205029766631725546207863354613842779706125222064896692048013853987997835102790835992639557311659106780712877787035606079280828635820231139313087942757709197050257492862064426543284439094111542854474056175071574059616400679558742270869399740137645444136376034343755348875547045344219337436328260819592691238194599824685400953530358305429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25985401543172589118555070023072083545642681557463875817083654909618358426093947817792525517727508282756616720917009581338956069272375942742811018284763529131717154656130212959736771784833606628781650249107648986134175756705159561395738739311201338035448779464716061372958981578292931032562919284569997206575573163170075899091553898453538351907453852430490883757290445506310575870302749144112528110162756449796564296256050685431820119074005982597248023709721279024231175734866625201712868689333420124946977885315447363072720479020208426017819676227455820388867255765372892521470515474741155260995424272189148525396901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18256409541798203895156996174926438516670636963688408720460703738618431324405648210984845610569833234867096784826947375800551243983903097416128205064984583742801071763712712296357320449633689245761380792760932401248862794255957489827043735632889691638514079079012085980132600327979752217719147022348177973798644078399212103546932884470770297043093976225321354220374580487012927375352735537849617485683401159863853453905276986000724468465104743960612263946576630294922994632900368614438443904899548064525353546030924182254671083788820940421134874723308261817911598866609258282139341036880210805733757786212956868558661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18185725710643968288726387079952340201862134991249944053347124382484722142504734259739507399346106078402224258068572416915017344194633741272999369590365717814468225677057324780911380708278954435209531482721829343782538825940438632154918801440090298309315406682294773035200657337074686302880178246437851649886349629990182297059068957794327936189168390808347692079921373381124135415203146592241967229940065516891404006667569832761873933292591959267237373605104845424605223027847714814980652401234770826929582789418109327939587051124609301223831960488469848982918758187062045548282256093431495594945742107699759832023417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18416398123210854566808942138220861701077076714326565222519791965384207483574243788422763134071992555643626320861713136676811170460458798064052146425426767897693162460151462911103637849073524897160450620768879671129206003440692766717140761675482083183606147614874237461647220283598115670418373841151596368025493509944067455986096891378603240436010333279503036672340870136840104420997574266060810150075560659401075571395186627573512592236112664096833103758146713542194148908349869680834309575203023838743648763621073928754970222251929201722418309640229459863911384219566696843199621477345923126380207154310692718157573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18880484002299911162468923479192969816452653515722435872235146046580591682325743567828569686211904686728406640583721646956690501504291902704815333955575118315368898898526461903834060650742778602562521166487698411232929055312611614368086106169413780207245004360144524036095727904756221168960926013577881108492646504297155453001501713583920190323768600074102304634664356057008766673980737842193442639526073174234804850078452299493273872134687952046967809666265367228187066983259092788601144269839953131209310144890250225973502376412711624120071727570740325743969074591714288582408468264723796118617739675186616011440769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19597389044158917187510508152247295304425666678944207044274293189115002113432232852033814217155260778961671323976890066080733807248434113407682893799478811863927201913155861176332993220039465261910939227038975731393343847849345454856345943754801025965990312349515532538138715399755385424182027038046795566664923863206689571146114836793637433386797696947397136376526773952889832172814206015514740614562316729433319144290951102914548700341258042552108787825500597881635291190052713071083761039063810844235908932807688322781404902964094259272046351563874537751147438975242611075411808302131412631934221937124588804120673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19755481876301811901450203705083990640134066402377537066949932853575691717709704412592619881588426371316830282017914877232318362534484558604781369361537334016716972227278838170635428718484724248549668712966349642746878711073890128194082426995301783959658446735688672877091936923027031972834901729496890327871218939701124555260989143986842619585395713238098497322867431907755782692648375109838106278392847248175246935495833344782785033088685597934030501308325270046087748926230454673138832660296263066266251657113485568853282303206045960671690024733080619810235210890031760882714574170993797099280316909512915519262561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "22539179797122415866819964666796016388808988200967479990915430678540388641071875857044758902487322458180850859029951360392905775939255009566697444236421439091852632889293015628390289639414020824904458637835233182455481583922340927902871387181927654253825297790910795545461757040514076631082348977747065921259459193231071647192227623388067248822010743863983166264253031392645856898262575837228151497853862165703997615631534897680315146696113539839725784371119890662628997254838794898842317367638432376997392141084669732533051557028096961565634542581139391490565060732010055569222924361036052799943068378955148570651399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26604308109241433643066087621440086627620243134285286063405781080506814213841017308825778197987892971307629922986871148809482756174308674165706658739384045011991168886481142761632001501471826495768433495805094801133962458246847401571321990154813402088694357904606874046943486261813336152537105219763961957810905173276217773537118293847096437576315593162853416915550565686794563680963159746710817627584773217692091418356787255641716234923975610837572178433250276937562655332052767315740726011671371979017572803137820304304114050033461124348200333785624751694381215868658737969692712416783313951901719255135409758966251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24908164908754476401161752344483758429116413585174546818806517958514220244105767315226087600676881768957232765802588871237694483999131449184552767768575034856098943243443474126807111569670731378254492443596154792951308857267640202932238247763954125988094394274560215102220784126832849685894621077773585056123928412449252287211480978670393032353033467746018667044971968456328467962931538745157196216529935149467349631740009235392632941626573923641809298499768472204645201947161438266473585415463738578258219539041881646704316896422603410366006106072506030314247081062690517186539721362112595238549584246239897863630579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23764019112959274640484325553608316273772005759389155448922407536677956470587501726071676835420261934688824408914287387619226795850633555938478324402422611813339768417308704982664404741082114527475898550573594001154336471038673095393067399714074372282665290143710692318565366977113661482210273348515062029690063840528637438265984458319463119333752909317448474083917345089789601234383373420082788459266901493477386156409443955060440325612078044559934327721523146843928553873905673004303499886142213883305551432903423158988958404107325283467336001962204940049898679454755065507998805899951665313666417804606495807481647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29075171289855421879053048070162868405910816799192497849646937770075090489144116415854612571596656399495052452165883530180791080830770844226564203246465292245430115885844213741605219640907344805889214574941968351422386484944121207935562877768569179498393719510893725186242903974564530231290079572091335282010056419825066208311617508703905154703970527293421412169453986943749272998436310175898387565179928701607325410264382369606102143914663555837203844888289129038101375046366584367521426149718343832392038824450817522597464881611824452544024095826672809279178383384113491997001856766096931788183316760469279585391501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22778756715472967044067200105427348618644978998014761578984521066114917244056779882357363354055905420071707467428421888767575847669502307906406674073881967347517863920010415359889237933772245547133356773231988818325687600666057250974503555493106889833539044874077497290588628670885156098881103824088866915941818511027533197373950844744908889553528035253887576534289727395086610137274257032615432182205061823533758485564211099975916875730080353545961953131523904127442125632542165414702630523098471997473148116245120695876573703743027884965920004992362062178495526952274848379706622338839693283955201509398724200719791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22976754237054578776252996172861440263161022344754652468286819549437914703400367670744487699144652945045843138088891349155781527085198171520347910028985827486815415088951334720473519060486072613809217997242686219257285599038021543195924404316191051038898469996719622918236753031985502097588126638140440847048557656110765883315309319470373383530243818593541735163667850850931577303629155925075747904173082920412200701802901558210224691960682900638582522632351980967968611159319258714320226013825944817898447536762929050094037395558691205281248289117329982298866254962509674514720051662816177337623296278169309423328293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23887281258373103520237985510072628647764852919857273601423833660179267167301268787329375099819959657611125017691110881698754907715101294503867339432541650678325771555816270579653453892330329483056602950828583740114805611061220762307781267589441985447319426122285437206976423817350641625007873396788507557935664777902641327061737954568565491711055013347827987457408232164441158131043654326652239289755377307695250190432923003509165262183512754704355765332115286077211755177148591769709152616318531099930292489585613575995701582826965540169364990998419585932813242346174742917917238292220002700196600235468613246385921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24364322382749282158569717898174039140699140641584119147645299806760053802763972692591745437177114916977889124993796006652294960859534066152476778095248612565672468476461584352102357912260260754472066691890969500456581544601973091706978001863963726194803017510209879390922857302288225577535509571123065100134903428561680239117507777195072287798202948832709906939901612738629095347756798864266824701984936079879300600604012493925933733405136974675403001548145246338541245349863326439155958122850770102134494176273729777234575745462799372534616505589329443281087555060851814309791016304890345844893903208731232804621059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24120680391218544577428792671419240539695533207126824748628719313589564532678239186882686800981734490718260507723613722889101937620011875696505409529572470230628171981925368896307736627850092550948486410739566068120372193488630162716691022837323286207186849902184236429564210960415814868421395346527969725586090075199315838128507858972284026145146276205053409473944353118884776227904575863602618121925575859457777965031665188447255230320364232479754512259506417093368295288201974547821748272339048869472593205703381370627530292310658138211660518610115997755308063798886842275422867290502885343653383270387948593059879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22416584444196156552386461205949796424388815999234207842128336496145861809832982698139036745306719217752717059197528822911683553275619820542163703779141065646398539111820260273070178208992175534657159732104564344305473777995190044010304042528919071075119178161602843292584875762435485496646158179822304256549285413680147410595550342058052710538858506827585973374439090705664254641119367801273617621105010659471478175563852464527675461240647332539727122160167288439621599255201494608247056310024834312016310497272851057240934601041538194166863354274257392173888256147973158544045986883102494948344218543508220386591821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21812464361778897012659244865065739650427295029734577026574995675308232331915920756045697441556546572429696258926678954090895598448584807038936508228085924509703488811214866178539102492206870138144042735252779431527283848820944931254803364678252397705364806540051645879101829537300908034161638681200798068631419725229000846270926190914600669128153993533043599689158566668795108384994061304110233725678883861371790954197101417020349584107881277954681938776564035904651920614650607580297212500655341246724535006339132969576050709483005641021708528137933762304871216709514202846529766608880918456999570701668226523741801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24269709028983164569004346542542213792498191815546018227962318314016150722808162905385540292302126678577892416217980152537787430527400069869551960860370682842792156550876406245294935827942814527587747464287980480648983004073919891781478215066612549231485857352344141367446500195935779971077141812400063551675283706041800614245715186565163537687869063307009478758044539292690239958740535589940624785753861639396439746998171420323538152831915628427261786592660135878289415239773146220376062592132284102751240614016383982217991466095550326914658069499907091787056793023778936501139668803221485664002641901846654723067053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23146267200744444865352481061296016878147312057001913143318323381399005773494941293235222353647616364583758803733312571567283170259546992776419318138384381432349077678796304289254292206610081307225538334803821543988986027342876357874592074154831349396042489023359033590836381198375234002657181203368043430397116113416315362977183156050422375427493703479698758929134954127600524567531809055678248064195288025292293724613890145572078760006084508953576301928276771332647072639270716522630397957390780733724462708122000875954805556284616589484677027082265255913734263486758470472623387681946665870216082385712315708238969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25632920101804120574807210433141439602507892632954365394540818841472642099991054373986762068967233142344228602296809963474950620351564540809768936025494899214250618666569257828839589184122976682729331553804335863458472157875423416978613726806338377946027429678729310690049032054623419138725630717444089191406458561577933045908694592938552175742054897267779341257146094405104714412101793316555276260080970409401226561719658394180754285741057642243873693579525994027921600859247257733965740053612585520435463394200947090551058615578254045468992284384193525991121352977088994842548274735290877227316722650137925271134867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28765942197441519754259691920657255244209169698873799265269749762489848112664189898078862181392133354779837764356851340472176008791242296763143213648226188261064854763328911278891875973048180850649681025302179349231595450348981097951896768615783385755347024755271347174008947083434457773298383352100132688123094589729607872787119141342178575962545525592035416338792949973682349464999437839706508213274547369583042061468951047630196880747524889157355760906264410691044906581648488258795236720586066636884649725394740971100961788382480173464600705290243698035801553594838934611373772679973292927536552510336725767673723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27201708006269481901641177948006925249224878943033518347666330627653543272919506300850173413126342171647839198712281174962867748260336883718075208237403176385859614679359153599743383054341818289926004750791648935036434242636420097382801144949882648767633249370448947814336783248116158639358107464843467109774553896520664960257669498151516769466705974474715622583062038674359849605526307026779152758332675464624484373681869082289788030336219266869320865406129514244213200800317747870867493127355211625714388543179624671814093745181974582147240212380748089199233277861257596907124103043755378408767353280042416817152103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29721234520974314200316498349770278423152383017990377249637732089254685141671194410345876069026494378419685679223929979416311328620896847430040787452026920243529298250476156237112184229337653853200522607893638256178972330690526928810255975851647485938539574470014659639127421931311211898672589596433859938110006342367443232996263671434842695517839215497924717657781421945805624576779560456478628155220206439018415547207198835915546647382843785019273416191503104935255410354691218499253709779092670524871878163244044685501610835534757451529338781996586481373150018641497592342601277195090515793236475141337181248773671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22414721427851995133444577445943150919738991200767259014418100388176379282521682972110820565430806916261595758374601675754998562858235434900120318861788778154808328494568709464727262244606101820987570315224914425146966780932187815511284658365948964895337677679621334330424743718075973339145014456556510310183537956572108666378235177058254149460835774796813840906371578460139741337890200119019776023931961211854308816428350327248106527812008701080077252830393413112104107066063393927453441554002002765113930796560934383183231235242886584746327552404793630263120401288402205871215384864565292050737559614596948540475191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24146598934091402473058910526909105307070364461711125597742567150298461611923101641696867488273736001100288861423291065061110423294486408413444817636962359406346438714485051406498121593317624474807355744960558283007175497797889642255505455414478068600409864538341639936729705914025956129014829400939755876744797693996264508359567240268109013986622577660313903226341897109791385443337021219208362134211450995074826899130959727206761989239949934776642671562766765560855194782670076035114210764106458936705987326918415778276052890840352900672469804489757147408163407028037652352987955040681411437108925102432622008289937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "863999982378580584016723134455473816206735471095129953023477836887469661055788371929505151574262667987318818494710577024532266110028488502653986724329292183195428259858294882099037791210104860427154543937051010579156204124651914794092639182185222338426514480943115584308106417768255924095357707463759270450204217049316481307421541639621423458042089441366014281639964837457877044329964832451703222673319629523450221682245768689334576045562155733156723778511490661931924494365195045277332071786335438125205731815262683113869242316283723267556749119988719774022229150189862957128988252231358892340470857566439958756585187307194594552217921922138455737028887571600234651978854659468885481883214265613437999588474164014183197725309820090846860921833693472102905040702814466154482359659244162570135705857934542784300238017965559376597774595082926886588725204205686658121346962912795123375626040943603868173083370968227012204721913813859730215613763155319119807729715450714416701862612433633613023925206417091138997173523502260323831735702374070694675871059877902896825641776163826935080357341842567340241144360453022747044582389202990490136397356602198496282540955490104539515716320380761553002703198809007771372944266730874476174302436013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "767296687455041563335181836397608070835988958897551858296105224371237303908693959553160760611429105893181086679559941142476253959871516906138796922562509409164265551892565460813249919655934726612973387672956789513832690012903619558278397658139944383058987814544884294876812603677554213774542426273559584009361241583219165956148132427219591051649041764235981396860240405706898751334541102237668877109185449146090452866273146498284036130575085267141408000152049128652371482313165401305870231076616279090005696582730052350451709232610123980227126765942553717563663559133591729606036209381332464904728855094047434526007262766676752651268022926345964636012906086118622711137632753224163192029255628208633767231054337415944384995778835092579986725193652695411452509993315582336736085431255922384275536716168873787837804332612865464943671257881617715508769309618500055366945430664209347178581599875155694829766316501731202218942173026335604688735942231579529382687612372274993633402868108670847010602222611934828504159975080010270477584595301921421749166732901663478328918704052482293394841035258242259494632210722368441231608396284076783985131824145637576236216044927996536572615398117898733716886633228931754299748363862381925279084135849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "548871730303801340718112083028909938549219622420251912759760723413910908236289750558156012143536066331292745762128119337637339693049590120565171382327778638270152852341385020623510400774836303930513426423973667899569834364212069777382334426963994992144099141973946510322339924875861861640072079561243306351124408557442834180904144464709089792249162232790593115322724522052475171805582446054309255018789630399005096056639067945732589067209403595211027617105640534139394886319588779499186353400597134844243724301318122860494610283312584549734053785203954971164200613980384639052373833626258396893257644163828372046432508516460496291666169871395747218410212237306624419425521088742873728410736102282150090005629267535627753468548245409634879735828071155294741662713668390515235113177533358654558906471270152835882686775981706750106693465625246853769033245502079107269723647522944038933103733248810981352451197730111417991832853868252910229217211644983532817965940546038519789311189352533463748410913803392658827275569308563456941022038735360176852125182975667397103444811741828766946757609661433305650041377888181829185883708987470726939092628572010165694901183207281293941072724618561060174214951397281152531559525887114449376185641517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26321364887784872658233494457294777049866810632655579505250463935221018147297321587767119999129292151338106831953628807650630748521025307194088915478450489447188978359464400428881156455926242447050478752732515947601606178408210935214871295404267791723139674727052412599970735330511482606105046221386112275691692573603576438721884456086771801196479587855458082944777495642544272914242711416454847084329906296712264984480544182390949082414994605291139725358740934700481882669281430998499583731896546930430249392904722880063890547156286741565693622725880055547079875891843795257599920670058498741031840188462661850016533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24044792036759769860827365390376863654142307224868797577219097313294047539047488990592248778609508454499132744926014408449625579912292245924925190911844539681752825026773748724778691786250967572032105554979249876811261066826704151886512329715042674126202896986698203992581148972079321138063174260750509158106106081343952354878560193322128347658960600546564349386877501371368460204616035033701982644447137437838623953211318915929004570424809436241553708763491680051851441946682265749660747289198685349726731153978286320618304257865780495753801626446211726136771885597779955401280675242180194042618443295522003977665513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25831900529121670078652472739492489300299987823759222911002600039993292562111475577605390913016617322127343625079170725056607848032086114104724054676042946461349361439074276787474313170945411141296740272159632602967648688530803534162649035874440641946443894168090701538346809828626244037074613717297045643890189333988190172131088876498719078710956493078139222891696212974602427870275992279922096844994018332943006101754518948751617269498535441296350625867668342470064172431097908319616546990773613814074352323481148295417214687926648296143594993506866623183041927411325221738307912049028253092353231849646804345202571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21610069841522096217426454023302732372596444366155388365094604834649665279621857759991747592338202096229308647264279960030035071509406226928717895395681148312330679591280147278719518927712627856858401820526606435818996522680269110443424177303424081175321995648319920658843140909294073817464709168013430816807288667395050047952614964584526972189014309261452311132474096457184285159923968286099776770984603617342149892044818974105361021000608086302186014801783754373236841510303161133306520496934425251112160488081402147930226598351819508741470932351179135157582531662428511495882068801864322959825009633998979606112921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23275534511088086665907427067310164824048263297821788073248954811671303931245634640572140991180155095160866796034589787325868056688536590462880663848723997058446368557948966105061412619653567745578156822395942804007970268036397710064135186947452854489682623155805341844265450901819064321253332846917340737704133048855910567457420847571569742330154304556387546835196197923252211014511574605989411043324409939253899802897139338156534934739457086137227124285773355498229998793774369566077585355606944376752515462698674280456608988702994989571257874097960805268160399179362752334088863139304492567068023987420024748835027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26986743812958753435988345434721104420765089202716794671409500160105403644440589950595576608597303756266257371559514048895581486224824921099790033344743266147179135730593879052076087177545941122586069764255392971320433748248699591141871432714482028016810520352934846163232587536709586884103706804812269478474782725971007711360439827383879990546478606520127266301967497587803118665412572213521575073820416360543444376110718562589825521958489396943452073626908030123462202439774105125793257953884365695252078834485190056174208394933163721539589014403075086923668916342508976752829896241810139159157828825131879691573773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27773329419597099636835983840422566278649656851495276647875780452937273296509657917655241983575904525299047981444864471902873241674894631733563161435473794429825344555403045481412431094792406257233780402496126335034735691856847120335292269507393414489076191597626426593531497031863020886297781612397469663545510207424393714515084415032592565718541193374898281518863629731037171811250898383433920559345929746049289577767556281548477709526737309285489959781105991520691315994860375786683723350508662689793024231773054662377207198234689259928050941676881493404405500412060082049475030675596115380498543729167351954517389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26930400799128686181612838889981848358372527646612612035093060655612882463927019417030892389143551166439428968270418505393863703747217467447688438467876140748489564143278017960832575064973376196113599557219123704155503722095103155788866428828973103546665489996403555230024601620908730902291312707246342983392189287062541484067988442463854580712445436094095532549273685426389758331515392177496740940553538873193804583665116228944600812179150669227495299161050723078244705996285168088964463427229658687821149532569569105644345710320548352405526494242459413481760611517097666540699844843630719737056745361421100477421957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20013260028467011487275590790935149138242525233087437902265940366114341797559014109540489899467773699438616444544396907646069879514201170811908240413339662188427997170321147274069023990497728789704005479288224881214640185198669929889066184021651522863123907349221221711867552285485807071627934536734161246349296066207212136888945593473136542232555076616355202634886730201512614705535348973286158143669155601811681040955654539343443781371964964176766542147522666688529658474108830876226379518022778179245903154237550059952534787553771100664424136537780937533134878983926968242730062127189834924885320787528285974488289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25639318061008287701700764201510902701826345178973397991986627314705305401508083984416388110713567455049406343945193914086423599092442512273563741706489634234526911306306624040462212411927402161621890932255642693066060869998036767180941532640560596859297851577918524791673517704765805678921744283519188413503816523995009328739959027092682376242012075618592473195172918256989804809725195577270025761552240170759672057344353532090027004122090935636189849589168799110045338102545063513103213594228173499923946869865841005793248868575071249185689965861473682080270980633915717785647318317140180032423319676147009220892049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26843664673359320063934817744268444583249633918438302963563344995802913100457752525274120424207280188252872686384599667662945973213545236384582008218256979786982044826745033413764961971163787043972455119453550792722715350752842073462714401003866148358729000253285746572058786655589890795592569534128832413713533438313831919786649498405917180585735911219546517852060547818291097717854467367150671878802219658410538275460532739248476049897036101251765821130538260384688034558620221338174573492708867886778368721845915390068057651540564740189436265586964104373605713153199657919554013950307464551536959764303427608743483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24021129461658374349129918607386015454540740380598991222173540650967999229353497024355516125606353777451102073138492048960591789465827247473060094258313891564504978389011940077898252678429869427672138962741911060125340932461890407215115336784384376654005524859522367645393057897903500862978035336856319337270013547350726430110703398378583471495756541847405132687001990263949583926177187519412648174182664735321294917062263771201691818397709502264229838330778481684682113172728693622423501867109799059478074407503483406014264391101731551237497605736366891375593587263559839119567604756896954359279233884598324885890443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19404014277283757843303200876956855414533456745864047577006981488341425826255488798036513702115697148693440276726717804468880364311455185250959368427043104449219295657930821182773140545503268084324330249979923982355386577712726408393654101144714789388243995968075069953725745073599079630849443195426535865619563497480216994256048199508209845579181410299279566783001365002991285009779828400826249272364352710218003090070022300912234406395914679785476539282874509474848202106798906794019851728943753097462484910559835128526549442297321775511182827920523498934958551060742822857350103978654351744629740092972242166675343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24815227332942896745357851121948517217025061980331167118048577726038335852634912920097049744747115585357474577857642646625378341550873037828267407267233416490023201309162129215213282232983139422090264799451829500389898981688880152275637836313989394616213113774528479002681544077113551043711935803951597283507179418029888739345669553687258897890684828882195266063508189926846567887798059331848627625966595523673264027260994839576111718639165692743277867135310964048723211004579878240536229058352509649157515451597419803449253187037720102531497668720907506288669780811381978261842042322775522324656851128184751423375877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27633766163645973763380420953987632548775503962355847931034827158949898799109854565472331494366619351334308899221267940368404886937715436027511664430583838120598364516825292853119422673426934572764709415700976143932008467446911502138964539983221268183492827059670241034244452827689037606917502799753704205799842127074945237412427540944820502756179741799560180422586097020588451805155184285777079882173097510919696696004278488610996222152786569310330376756380934955539896506411907449319224466758439983884485198881571551168504525548819826016553137430842035622461000617600499614371106807300914645024406060800367697117733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30292157351394165567079391113318126434770256670780152433979422548953844020978135768739399825154752955478225201486451593055232791262231876633565276392496695882234204388737978888000533778021183327771917102911743116592413897203171724993193562019811638806257128004721673950278224695954086284191600274188718319512422639428865431962756037735419936958018729257093720420368828185808700201164106319051906215733060522366587834948064864336605744776010076519251107352896173655293293187050235335673601662052384995970441791088751767924905217002943866693563870427648075921217791606783233719055554670179750753541942300890278043258389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24343440125571192327365612450936276187581457439484574386635064430012303323448439844137509098293556234209325889127359378275088316636017493705433444335604096133696257559389365018141176597330757620878303279218530473450876230971384192142658372684725699975435566514974827588008542293021255818713153296015246195258297734760770980848207270768011244831754834858383287911553961759362240912483266671940972228706933048454525631136099605800057407290423244283782028925837640814901893661997225682517109261565678327939875426887049240442254897089196767143438745802350628510586167807221017558120318647616981713551561100615341431989009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22589339277731625997704962880207767682605677024515012631850005706140581277740998711603573496415276592382380015172516964276271051871332808622821697585954025352830270990138196154640956044935891892566493898508929663396733848089844426528723743331613702315654887387060512417580024808279562779209733604129986926083896948149925867752064940464900417107006917546352045242352363939428597736926511067881544747513180947154833300548611147692922078151681794602870388047628168783861796617561970647912410769677014438369576526253970269373486318929689951898325868975543185587709898744208984690715177390663686859675912752238949989235807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21126898776472619089405178314966281751506930787130391710344271423341962073403847654657113405912229576760450077832700275725001177164672731799019695838651247498242582221103911711042929746765612634193721719570377353741262016884264043211000471380830008202746092752391510585773104104790643663355462932910424423690647107179190283740411913717202980706871921725158870908632128129586483910421385220062641425983458844314424344006317966426863605416720578924151586631784347797216630331944371573044708031975719409376795273719765732971346339165314715226205080665768686256941881190481400326272463063902144327090149082481017683867121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23966851903719413577517843004805821182852445033853170678780021060810654576173942199055908716212212404506576896224121932539074757809285500490831271469559187097017161693139376094879938176121078141084570500225434636055176347051506275446346874974408537816304398427397204821638564419493062655229357692248615005895789208546446613811029984280566441476681849671852975029974150042159779948285729902704782777303182522435759609611101192679346896794273929522365029895477348689266587831834602772807492361463885434568158850027686459498738831422975505786617204342175842254703547203005021564293894725739313293918984433122366050748851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25414200776122130708296842361850617537372094758988065893148605612308819117144524834731418141931247308314108145174418016146614312848635971395809562313844928851461064928001257936999103568041515548393071510785524286148496725892205377054313946722257385197798752244297425237053012251197037593806538811579773287512437495930043959756964414828279058974777318792133133804571042950607142473953557214116722854608321573298309944760067784514749406731478537591152685632107371364830263130677313050537546137869462010167121427869708256098353093727771652355303787566013264766898215203062590764706812271435608087086800514993836045189619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22682491310324793386182498267770993893322077070026577771905716683922855013625686316267689150261787326452467088990246203743870830349046861977639902884103795596017925203754152685543931232448208639468224930655544478105081656790425943207733763634493228174038537154303444197696794860320678460520964827651662825429475292516628574795051421526991726517418195987368706513324238181921223115329265908034619316360995589821506689689928994552558468134553907401827559495185423592341693345628128315894361258762125841835043217990135813805760269799169908609458863301917304522732577286885617074309939638724718666112525407396726766332117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27543398054593533666252960206223322777732059384725000923378962433965498970960030473100576191336718215325179756222210614530404967042472436798096040400179746446951100474770998660597896304950148622118389344231022802796505479683181882192166005638256630242764071662488864367433913034936481287277506887106651907599520955039233676060523605404958670801124511630434372275596014921885782815680357883053754374407519951971161916346537699600834481389322656711698613305263369742461790771456925620046766496329321986236589608528413410774596609489022148387205086483330105930018382860282195014198417440450898685739939798663994259457047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18521891581657647787609514827617566269380577845166606153432557273960121787568291918134549441504564389434581545269681221542236055098398432751324042190192936582216386877670856153883516609605992164135548308043445580983008230801003540150963324855512668699527999889386195855235417445533064868091529662186188518035561229066817884464871942494616807788088937254253937210365821202448570324962435829577793567256270173843080870736444591763134023490193716806305642313337076101488079344841124688537562642603523732475764757517783778326515724224002800359444248639181179120062735600609385354211329613514990323125401726770466172277081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25786836888773068286837765701111751", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24214531703045700851120262068456444", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26639003183035251050486417133226413881418280087112087883091139892987958288350281530626129946779403476327259306986474919588200004700800505889987091617047178538511834289597844303661543731233235529281734241932235435243877162057951244041999701153999698872770006351335402107577447136319839335223914883516689133072777063169311948454946417900895254036729978800762872032673892354021326425938734279879186494533428832666421050443439394950947343256074400333793200595620217792529810163243997558315636107368469562188166166259086135591305866998310123827669077803174153686994638357145566870842512029261265301195700213889937774808401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25727705461495738494922159662402248671851115065596034876607474238845298429930367915092906057922527948889172114492055616265176566085122028719001113776767997299946583889089021091696623855667151121709181946806276756021030549538577281941633595164470004635338438527914756860265996340416561219934443602202994386928648012718194095825479452070535588966026562750667182623609545545913508611037332287852281003575138607009029557873774652144697233219088667455569825659274572863004965139917412549955555098668124715835786400908529854266842818935226475479444889089570305383548904415627016980074442368571302809229820847728927341075929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28289227648831580703937452832449046932388365057673560103379211019723979251723012808997534894195302387314639622934584053830726652569542928189349098799591150511420602153243049326093037228888634668260307937707234846549734668810113769543547271275622229255037349411248854659122127545913013886963722124841384152196381592855688176184204913650894036028427418793316270830508102554913049853492890895591996043040734631390906714040855877707700949841512645990977279691528627493674668123769010992933795444793116208516989587925124484553315792290489880664553613338007077418693233348541664329985895625472657221227421599627320031329953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20901696861055808807073860231605160263885967233311117281758164126693654716743979500591686034975726347704782029138339421370248449632714821042779553417829012210610330100598712118893587657959183150204348552858479505223118576455180732303463538337057606702347441893187437871595753692348200683946239328159877452724189530912665481467215681687460677684524049908472833557865761306466931656007546918195532670968109962101078564389343288494608993803531406850561182170017141675057925143535584811175750087528563120476951720008512845873847474461373571920906134443570064102615582135387875555742915564493534172496545883435709401342023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25796767108833047744490968666053618549956469671067271841425454597395914682960070094810567414464006604059235756865019850145057117010370466101709060137500979510112516585980018583057456780242077816939663339361714127741836920429491947775481051334679000382501030640087440871882608112363060160502010898196288351732828592484542022191208590807533302138890802420388254347026739709584137049675027599718421977750958305302419701475418264868734792080569786585443093355127649515044411892136622551217239837979081612021589424072172451137093838868668095782934645526677763505011817685573031331023975319118786562386864997161018091903573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24454221633467716702583954526906939145900745067762682314202626624444138095511943059096089814690731485069715609737201376641418552259011441932739259699004635149461142558609044271193420195752803783010286608065708125932354371166544851797976420213863622757541409440751672899682663251387637867152826211303216096075139737777720861421833454003951102788624697070308883986286815230825251359635092583755835061132501667032050501371105823866913963998646258209037876353300475113880445850650666039785234539510463045036010125252923349518875363002678936542788881308658837464088433306421531654795316775511810094646791191140958271930773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23331976389446549565373977364930214201419757113320667624949656919561182908129530447612660412495937315951864796928153381163209908796231004098270342766843525075905274286518912991168725586494025310318410255124283385807381527310780469762109224113136000014387441815255761976258622531554457944455142973703529456883359061212137788636368014803690281153427098741202606362283194224146956899817352265839153691740918941672860023902093972714008033113779606812232300857853411010583493676359473915399918428218159631824568191770096388663523974937960828635948521222412009014453821212975866092941941430909591710222332336637313705832623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20998778021168927134442499695325761108964427560996044272025817323902632261997882640698792344196036248758376998148504843970565061993358233371646856043896738144265526545083122951899103038180076880356619636852568494288867022041827680880587127228764550124928814138217709210545326854610031198065258468942866304288064688776055894275640237793061104496820617768562903538379449485282754782424853332708658079224850374136893310815119033170539811129741905981856338936917522795161987639147976040925226174077367978428847270559675857817492307496954095867080510258211381905857194684943443866112114329362029680804424148959915650281977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22303133491118748626151179933651755085638962378203970352154544418328308825317599482847912535537219124105205857178645202318048248886090250092889206130349895827932142498739008565408240135874054906857972414168947609118710756102091578818646165350484849200663689343586949641877789467430617734613416418257312843776918335973894780497103747590429691033601943250126027926715317932479197754443475406620801086189705360654805571392281686365935943671283575333339739615959362553894090727879899537260182881082933929416493605854072231029307663837617113707417770718291913750411711687824465399245807529513701450334860720792540701575677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22132930829798833829804368416487964", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23398316668618798617039674017490567", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22630708020402751531268053201862051", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23321612473790103737047477664870790821767593811731929817571599187867604892313689481825853501668868689387557224718892705009353856941431952183864434414476370438269804509760309508374835987404548666938486402548097610671164172477252628106754643022377356998646410823686236620983419768505891153494798253163877068383384463026353380473539352249284490118177706011158274178389419359097360018143824703983006258683689486605964593630248618704941677712205147773260646310366277621130641322158133601974757736250339504098315010845260826507428484753107107382574851233004679807336328747637531172224340864947046924701657085826712331798189", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23438411197115020070244193663048883922234982670281538489188922168949243918178031052329293826817791712474801567374308566612539272059087736136186118185796788828650245160503366216240447155699230098234864021834009601602598692140948827355359266847824604023433096581226346478108181781980680949107524081315468573687631641051529910887060000357129305934326623199199542952225376277045537735886308939559173226309544802568890351589725505789033388983193918441577266957695786234197859598147321426185372603007992146283251563930455024413148894402398446328764400817177871621929293114407666735100976750468532019166682586097544388701879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24839711362242587409066117882910053535561516641960669032104719870004194547637014248463864611541826936182121620751335904776151890091930568298606810925689586510262863827360750724093788452448011386763486893873501165461241152212199698225512965049970395678192765047439179381714113325862555518785304783379417067489853330736350855695203952400538079134565307152870633642927048201142893178475274698722647333029246194572458442101046637373129843282971752813626620047591370911184882445829411761990180075888597256460549643198597587143992236139712296511023206070816926140683394030657454605898741419586991985951346326311694000398149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "28964053618565337492203461393363364041622343841691979162457123436557205759114347805249364477016653399587747426161494249448184827499829436725638239082405638185062846620024519059934394135238126003566513300962299514661992214952386479520911530470261641784013661352092195708872473870504712919891337982318277112302432353151185845467682176764639724298374062168330846620718037435580744835713840711399399342652216537594222550128283004436162807217629193652426168050988400273336501324745599649106536932654142391571589102047797798628767926005962996061310814256432803494987276260600729532923899001408307651001359051572122667214541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29273137276178355776978235138950293236540886055872505213158318570963544380395207282150611192367458337228142333799721413542610884380991977732213985195215187073538559169817903682048820168565438882706587906184055709763576210464259758932208870411116572371603130807658785631666884371827053805530648581905810139115816478473965264811281901486272961152818249939401812071192099686000106215381145458332076520509351232971391794133523998715406098799156706192611253446939711670481807443099828161054030608671479933700683835487832044894066658859084247038536053909648035240991609354111511590397176616176685216766498057918523663291001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26967691597227541705401896133644297477430199683207828810843197724588077053255975549259629017203785194300706950943132770217745559212131921242044831097491169186231335472235355172510304230356835587025038797263065048506169827187540951075653495413935699236319239911102305329063171619963181426248017298733592358782874371052007077521134392448778245474382689272588096627421063623338248513386495627720133304920277354996386007067700077592063247046198096756870294881460022847975238083052108042716484081469899938936684383634548275694258300013301822134398559866721390410202573152596708723479251959648066118694565835677267275305487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23915949920936449863599160614503189042174191542253231336375008095081203961085664669520543298651518525684084075769864796497663810019270582024897729502476459467130693892836536308119822740410996144572799904722230769914179887603405252023346686405517696770538122722141513636945715284594310195648883312768039650125725822684660465690094596387101676883148228917991068626499947817289613363431334300425056496629842220530158930485638915002981202610789929209752080953411890820381043086227339557436907372380782028663660750919518323272227754285930916991333135248176330875063516448120484065669161661378224873871663539806912919627101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24086389742314833805026045067687505708574894042542209036452721751610929888321925660651589518345806267132479978941475396472474239629160619938811372332665493979941944080216404597167193952453362049996004104279059735203688101588219243122511617477905554761062184148545381586849356448093576201230490654349803380737677520677488187224966692380607884097144882951038497353527379614754068255847223623167904852361004039538597757192840116505932537758911576998631826128773039529264853346451196435904012810063709777460867729693886317776225996269767438481087380535488778849562864134460499483191251672140013255704838401145196122592333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27207518420083873402029835955086960423161683704114947952589364930803214400964242064779616084754386919022764536997865007048176166313551703564387626777372964214553501192741194854259858669958014533506703317630041970932556248020475400842709147814374323201925680461547497279491503892628224852703683548092943102672999907473449982096234354421261057216709094505163105831205277123537305962868638351665685732442071071588837756038066418931022422645322724863654508517046000112700495895067659862504753281206054105188365708016261984095156018943278819959583154290872485847706952873471763668039119693187863677778510495643344503723989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20723278252310294923449374390174315448487264407100863678181318887947675094029533044923583578747429300409963821587511335063753535723443694571552021039385638937094635749890673246878603977682315456782521036903115488188330142520041935315174173313063483710104645431383117496865474202483251499816836934854343289863261308272094648182099687333014689015993072905256782506272311016762715305140212673072580562109163453890495948278706056773354626893091357325070363389484938719551519046153893656222088569582150625777496122285222306935838914143342006859616781616881639035429495711916865929935426952399175021040997111006372741855101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25510012857783432087529325240393846157193297424159229500796280984745498504075613056572315307666880700306081629535883612854733272940579112270678008639123209327455482872722350138644309990218196104439975476079748629441010192659220924348404229424071417713309877934982767620490924737928353762547526716777281174874790532929797504416665751286618344188379914837926507536413855893695895838139811136015400842984084972280442785820926203750144032297076986315913654310758196480361204589617909166940906376032797780627712252599352806801679364116061872501875143290473620249880364391080210498698618048129534843590502552331825050580099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27260461780198733077056347053973813471456075970973256756052782695005992125123556694661876958654283177250388482897567679652614533094143702362707287806255730729018513196341894674806987909198444015504291802267772270698302660432363910278779938986171865972103827145458439348445513991188130542754469850001892304694323275875649855325958340925162625063984966201028072310628810639645380605459376656339077038894405281809185194434710505756782714789874669168485034207439849988808102357820546289110294019524764441410763244665382700819178542876797287863015272397605092224537324862501611373173767791233459475069434935127474246608177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22609506529577845832431270395407444636957787124644864589996555197282776742286688563841420413158945649560631270279076500903148839826221892005948116067147441536728936999931776576509936596884444410192381742130920872070137749637337031548451341459321026125517951295660399829061343992618914011634013769343322990960177509738325632823233512939971883816792202276823957072465693374934845409005437892868201551021757360893756899794833289234329168335909165978071984509989360720675220186004964921159567014755289974718838314397059120752249452064663890376966559732790440789745127794641782703772450998605991215869099528808743052273073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22945635413413168969166242464396767950421805460140127780653794383595098299426066822381677528616171052139468703026957005327618724979434633700682962560460896779735240202330255987754288070933889062873494551203009163256476499716782549321585826677503781898613253323588088358373285008667387708179871588492572650721598992786386506063526885174141367979190270845459708609161299738565115330615451870501683199674679199057062379201702704707022173312781996909946745393376773267231492009405360256033324218650056058451886606827495297059319402831106811250122063276712658622475384829029855865401958295133844616654345611590674624982229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27920909114745187045394375366441484603833178478042587353046594574028997023876554289952549158061394391184608382611994147395584566984632232335210640170941598236941566262937507246854630546417498887036261637427182533786135777512133767005199382539937664354830441957610699034418955726157188239642348931828136971669246096664573175172586631130956447549078272675989467544376629518525783272267107983398177550902961310502025133277685154797303659813206273839405344612113213889621487821741617271378064109524914350176748355566462934028042149514299942406440759028048105164951072040648572395958650189714235975995806201995604113984529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27939350567457959416720298428806144433878834478367417042172584820496476964599063844085229401705505170113397049328709721073807275642400423697176433047319789875527203679802451407600164880856373457129737225433348702608979271140928152301222223012322086983764270087547579826367178281778025923715736032904071026485671401345913163793741363820742927566331014680071799539351969916393950286248860214474261684739228224876478753412361736908798905977920337257493626195935909108282705755115954248193901488473538112802455994736624883870750410896781421272151241963751676349181836295550398050235648448120409660228387989734772012626761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26611914841575220123113253815608548662808394505566924098060493654226429039520280616295636184883952276576287611286401243774262685117665749964738325025339923343160848600797023746309667111408048649167757071048479282722169773473651720927970583785864801639028300783576870606137433603486945306228230007212220547387823531433796705238316280481622936765368800047271344292385415134622017770817960701414297577461918866098604678652464661440430406481596535385852754693038463937698260730978793965881184732702417681641250211996759046042946305997302491027491253089496415768027212294855954240392154524076542852808626131111586362629111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23877927331641156756987043045106822772875723913523872637127387411776604148850996812252830774411891065248742657896357319437624149807671488162273912236144603725632348886204857814114224244681014643772996147495486632418894921692238019785835834457786621032524470754864718571364695633764370098486379613442366179319674611779464199172764408096980074076694879185384819818263509526829950747690688598592118353594662907160833246370191248002653406800999515761849895153956146188929974113973826996038450016170782294515593709230675350645715412795230519011056862489986919253436228892922322437966503769719501993252607440024293355006549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25134370202043393752073253788514949758233882372319563391423453805738399057235788013256906647943342851454975078876408957441787941532235954143261875005029363589528123464684047929860538957905523204498443181438179429370863274521122626672919671100658279265775425401292153204001578415773255503623022459905041298699040735372072470912475943469664428826977854116704154953825646883681949750246810566210311910475548503036296106191479885693540440415638887128172783997398082275526889927094243140331722672866507338681075919792591437607036135195776181380121326811668823743786214829184051524723548076149176382404866969953534231789239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21782974035617370192857540442149956259822107992650148644248081703236449496886336161375946999700975967213827261466392426194742735940784296021429843333417550011913355051219957346215919902217919071131653657674022787251275063704145090635455916602279012991896428993858942029928544897701058285294644260266114601343932973933341567466468788577069999108827248795612595453739857185385340870277176643088205166856741627135948973571850419641528301923659157314301278169090980960702039973640722826553118144880001734886196657004881234846856017050956189331124036192251868929311037744388809244187926436590855118695768638287059282646791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19428738738301267819674999774031504092913559390779914993391905574411332398120105786601943184092854909442833027579926199876697283274990358889638405148322889086160385142037072814810462209807081361886389685151268648600442088159159273089453414330330801053495092368321562761028350113667324028649461137745868141285104303316759262180527962814315695087570453045470341787078343549293306851416525524727337092647716164666322624166504330004352058869855130131046120564790568198374307997248505697102937980366267647778048874896326978082691260690030840103584450599953068044215947922952630862121669098115542789489068388332469153445437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19768560937379777089887580240486717460923797803402144906472871836693682877082346194553973098096403499507605649804403761762949994413053131890282824133334794872848952390735455036164244949569864088720476914768417616367240070254882900457155066525045700578970826182588503806168471557763777590403609714569313221512041120269052582079190971936559451750701399844931972192115402719046627394896420780046215564853391588682229533035016492872513371695664621943388740425956643566583855131192658067915457840796056012715292662313590804615513397943252012067572874184444336077019918569919371233276665777444505326452563470748833314462881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20056490923857062674803928956388124223747834098040116449491336301360960129420842627266148116646151937396818130528127853600513532897037166100379289456463719106367641333224991232328071345816513677216773155736881481082611307040332843991281396775538173699153778423545559002503500437712371555645498238169624157099079999698046934956067100260073837119411492561626283332678722346594778816414043901704710090311435678847390083767111439688596179584281330245141972300293165442706536383497889641547431926242244172174848392532232474713860980730968094210903926019562960192195042921434822551391443424792475354676037108632291969318361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26440546491525358683841549577669887109356988544172681233647396632210229296796734333055298712301602512021701609451212588079487026438716598763713508571570368635240774181058876869390679259647479850673035110922200767859722599650944865527500805056853915389334483844804966573438045886781469238151842260167316793505502579439571900940833063445921298017212610958606292480397159137909092069591024789156001309627460265330152050432392894362159111566785944089161714268620496123609078393568488128597166825350272468897526200138745252113730173879944608795690488581582901982936320426524730030206509877647033196214972355468717487822007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25079266552038881664416792897116879314176973068823076380126844190201248089269483034572128204716238758519431015124273575181289490747740267878977131142862287183573346639820354042693138241261704889557480761729245914135432481577901178042271961990768181680626456229703823032287317171899556200060880377871341609634686715437981983967392124405607907185237746714362622751290744440525827858387679660594840228426216143367337459140220393856764256215524194437611479540924384236791235851689185904115664388373751468712633899387841626305457829193021852884275374688607172068907136247629528234399850500161589351309646033157273065235021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23286683072540263768406797112245493003247379538641089448093515095626118310520508471498083682413996856783205355935769367236634151620990065572462489142204504868926242004469458941081206570599580375939549211788500418919202006838000061726594239251173372266659754001031666864804927148750897093417452054908865094654694301495896473658175939817420661066411381333955432995151984770813049235737382036393397651388935273087181719964369409426105183674768561377335591088773202535722571949712854890740483973533249174418328813131876551461766598924666243871901255748170379655759641360890399708772971083892599905789004426889960080625847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20145598559265115030547290028146737970622147310134734198513497423421074494852253917828854526919836182218553192355435246147366363577152594403969239876369165787245387863790166902997131523136316497094578548336181078302334184424310715272753815858023813071492822293237949416696966189000176962375778650225645501651559880600445730742352940149147096975144219617827994891285302233460319184200204825901554309552677600350304457913973511276414930874421042373129220652694527053828286272644267079299539629455113579316158953726156176279719159924549224461787846622425713431680342863709624289117932872662006403015786465574132293264647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25155597510956286080227709344283844258394596148965095934464976724728895648595223034276083771207973124232186095678462542434192758701343892357793497581748780052465290725559481916134394234455247416530985805768686107971784785053964477735904652834255298452419400881735052669783874624441838148511093911918089438077050665972346679625006193731743886288883721711781212760110369996756613038263784836465534906808124465399271869851826806670229913764621767406318074675077776279641326166706608439035622714840571599097004805627949550219816334851796681179579172511325368155448924447724061842375627268553656982189787902861997316470073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24303291117947193024582945159033361650847803579053499950165634449820642627716149281973402985995145860065307033007358527800071367628550972596467324118900440078137595872019013032754247774121693234987226078397115560525756323906328582126255482351302143609064304635763216110712794024311374435439270885861935403029320156646844919908868136118325482088555395995488767876739247943158488857900206653202768529019469029275518780510599056567781171960448360944264447295867926646574287442978080262670112317826929717990507883895715063663761685306828313740463200050485088651809333292391624848989161983526889252344886540531893812467219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22455326285773910655786104331699023087683852568317017685998164573585701375320340009681364454296782127028981892131886613671289148749417070546255748494350221064167548313458055466675237902863005992027210122064958558705734258715175000335718314556596463348282349808563270934115152624065898688408802857175495126155127197232970260909871642056541238653801458141330494071569448583017079791996325230710248231988463080968941318661815288974099610904824960575750640507574279269069903917130548368008322614915749524578193401352860193590437409687420215533664930034708020471998832804840226747293958028603482054250017410126757028096907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23471515923448410656680905803350329261392633544314210453207382481842026218258320792037296783054186634559934729345842108375832506390617572886677339595691533336810445710176619840629491036721202743486418117345114980078383410313608703473447625444105128370411135346047180225276798816699506684883650511485695093806343190522778413969778163339322964635608951035802144817058930731577147821224666576298901724697772889079940579590652113937327788308171511219841521309109667055899648143177342584963433074802576451602454351743630395289184909495354576434224948779483517381269474377033447005674740008955397064710444619764836165772091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21426334526356214922841983357228319917544483373678064962099210384563632346376523263486025058874508213573092121224331002919200015415883773963369611676463970136186632837443672899291592014724829896248053039653652782756584951040206158526492722991254655612113538590855464789778588510668624890981162665183577317089899603891346006622770922301428356055939493843476696756121260299958242919280983912468488273024317350420674452969103077018627830841436647597901401531715941532799418753508432070023272666783865292591227378917835496585097555844813449270504093558989076095974519361220797083032226569241802234804310354648649900050157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22285755035245889513213720972837426906894287744163890923923301234208175007240107064649765633968834646194690347052243827533083308463975024526442311130086246247064304707928679151035511699540383385604366871067550814020199197265440948426653693303491274378610826914854583231511290083359814330082117763773063310743781585232316380898458654900620677778434395042340770390030299583009196946182752526410278944607372205345102962350925102836993027229933101584280582547482235418141313519804339354564656479140094305862540113931378567124945829981301326659506488348960659625273848138328597285680740334936806119022470279233736019368507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23850704032136583600150819020598402325917045285600392001111542909869173536536687916117942907714181492890508482388249770228213571179382486821678619487705638469386626618497828333816069800124043185614440014145234494749875827203802940505662785458766207406354490091417083722633998440452530018704344498182482628136326163985669440449060018637946353085388107309896475129379098034939751534917960421380673290697708980312484368562301923161672717177982362572847888590887216997919543284771863824670952833348225985288787595152335397814185831693589909837231303732878039565367468262080138437143377507416443759688679265484125932442083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24256560537183554237757653650164607263562241618993476110293249220438243418153881114310834711699491580722481679434190471192286894245724604091522209327302934734253578593134629454369513996052233821613410249836853148692255911481197793254541741692802881724655179212885849629753115278510533431368351104420608751104999130766360624349254126371196743340448576557629093486689594722399378276704439830331450638927916545313039073887839918952192824732443703932627072124445987461489100469256425616952130649737641811881795124321319392270822616257413129792016567705829649529392540273115495806218849434117022450770987754603708324352711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26055455001184151163601896391427021553881934690604707698525267459160868180288645245196080492718168755113022609732519543240999066481990295782808524959820816032027117618319094319073350234914458857856393219862672877399814838566087590382457123053408458185338244201795843567493097092694727952179716083255859208436993964745087368231794624595751926109367011092471340592211703794107912304692185406684011955880220607427815554494745743074922361917716656937951407274595269822060151630061566422668569701068790743703646772780656024173870857570243008727003952702243609285409916735950141724762400723703321653983995410542489107159007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31449456243766258410332859172829803312130496013882034798508051370581710468450250219479562214006127575514452791705651750764433780417362759523569637510077125098505762067747204925126642167549301556787946302147715946465976944388305471818004590352009211527968904405061491120920609735999290170826707011113595775840631601109973867942774695421640067152602184134134264293059778798304575362202341029546905053893562386224756793681363725212229186033547181680605919947980260364446426709757563831819796117354411793450951042442761089545007762052693354570064615367542163837229046927313284858917036715893860049068487662259693156869971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19308867006625769416967650473189078462761469549356083374834540284843213735605594954168817667261322617379950291558440540052193119271032341207280136850427513578307744526124322849719500596133123349804905073318531057471556248170144757027603055519892832846150265653628095848482786879439495481395814341606988116919941435466666242922706651470605941105982522907073584447125019007450812393115007322797036459737056888145390405485871077179518048540463567779705228972149229478547459583938141003338406709807270678848009053800384361606576761514690807220059903785015689079344950383609562126375912804036584197723752956372451109208407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28222124374622297944462038336249756581286633947327340427836716786843147705511690383426127565125642404758130389099797843044918119312584557839547140784883123965606930410475659798499117958889757092426552221809036509367781051597163988469921320562787777807260479595787832168695593512361374693481118500066504633443411928084054369083997198215424003676074050771739929795138026674902955856472459022508033684796067744824787271315618922176367358977446497921071295586635391686459007770400498026502357325681393815738795926839368497654413346182123315992488398776933745316775870270048239861188528568609942557789348002852280098860479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23453800193509195498766642216951733664418176191992737708917155588527021961684550302130638048129172964014003899866986437942695224088259338830886620482919233878641234982619430389997070968307446368639032640971113514488227006478119463363925156186047175700656101724540411556712419865344646209052958059899616879218173070924824266081660328466074804619577053901517477422499872195570414887983037157021328271534339261873220307393420965443482056779904585712884352041042733040338009233077114605721834644602228243015984295300517855812288283767396057118254266614233945964341132273796963797428580021968950219099791399570313263763981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24180607847463811136913039254871629030851352056445971985417666484741089469718033131514943680735734963665193254680457690869007551370220515371590323556461057850719034356072145078703492486920611838804317753817373683648338247621348534495648703467287332211908079818988946523006896500033251428806247002359859606972535905472978648249247187230091785708717714040601835728913035746243830213718419095914721477768181752475782988254204304960000687937452719502715281268277409535046136525962565688872185882902458742612203459303947264920939963839632122266941624881236251413790513409275627619770397858643343548626530235420469405973131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23763174343504132075125531721064590478683157968443526892731770365589193585152139647817701460828582404576526479062142411718644604476884277985842293705136439814601567793622390710143138070285787273789401586567686071988114127801724117697182594115285332753827864091602405012699285413027925966235046896897606384240272959927147152289870196561869481051486169743648696247695187238848600633235711885561797270246421450264501407610884821031418123738085066413985585456340979097828067278107688698920344962553326956532967516539148683395436594842570552150318654531414167181455896318194134498872473180826754158706711920713339191440627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26529795210149072300252266689617468407075912640203430157600584449164691020626161960337705925009905173977512386190453603259077095067528880113636023507607460679099032993267747452334839400904469169252255734563894856341358322934311226274912593530383101252923169358246276109032931292490447716063163211719074803842510596686852484176326384236736080092559451505469364665243651571213842852259318880507767218049508849913808375403970313873899185168193858120842679162104963002765912116531117336735741251944704972712721494242940159627276220413315491934929549303995108837942280708684385108132663714881632416144205637016243609436607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27282207202512718024472469613768356977568188656229364142311041886549549467389112096791125350052194465559210644967913109338912737113088879352845521478098953836761118239775963080893027706607217501692178415278995459042785890663036640844630908973057252092098291040615560055558845212023383305380092012822089834712175521975598987667045993072774022692693876495689960292088777403215079462760919122430791930019418912597863000112174424252982062437178537208353067519448393135227411512944035655218052990309667321757413970949109152642634086894002476110134411874705795630084371904743674375709771292865578332617738718931852950712311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19398166394070412529772942310090032090476963311758053791880383647775511804582998663682028366602854075624316656563891228759906987832745475633439754150316435522116659548927400007351961717120899945195627331107319040565963998927319747700791656285216994858923301832351879665215617107224298809359818049475444732471016807348385233799678625689803118603292956027242199830145963227038140673162635144359740566513406243612888300285804422966402533010620032930662383720679807352301453318721314786086961231906182529405537792127116932838000233129484786425856712175726316132054471766114803317428119726637116917845382301588133758168027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25546186818462146573457051422979804920179250486030417907096258962047468499875384352597387683074373756615696698743466807192093026840917712311771595115571000891153914931178932456467167213538895102653423896919047319964682751666066187026349758840389202780040710075917306620938338702649882860360319865965214868240692263718464725641041765925175593010891058872875912204106074261846937566142291856640977781258453719150344420442333771219697073272159970137105059425983641957595922584154279123588602481295254296642214258608489609833561165867866884531359487417086631516061860843044591699078303003399440530663920264300926533004443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22970476901877717706058375551725435914904452181712660707904256602501241058148759730493641916734477401825865973757176706659391853895519407678238727174647239295738978807659561146530822224426595866080824482006902275722974803991821327548126976974891138928729499042487533010911999732554176341532444852354475642530352706675189412246368619442989137812009091646334426671790551412222318245697796566607357291513092464118959267258772939894596368572220674946252693497957715041712027135473444968596365509752730665475134119997600214238322632844739810952246475098902726158601012833027524581050605848931707331702362589200974342009699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22347259181464795521533285614500453058697927176137485280377031963183618863742625141343846371605822033160381453759801912627898961817107223651261046742836861903390547496734448279247373159425359934781310288400117330972075851958080710846983595582520333551774915866730536256342765438028069672381128832714377342651169793839883765235616769043372491774996638452192873166618456458821906607208269421958711403213478350310173354033727681410950221973494290371100281803791123381219959236854796689518835079487698031237290231779643059963856925556000653950594149024875998781617902738971273592785390249581944485922816891629960298604981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23211422023545062691140295782164017794527677995917350211706773188132776853042029864225983782051922272255636923190594098870431780462068260062658258516416362141413324144370544718234927115601751708286816767891667164147484110484718009614488678712077132595720806344130489600813987738324975396334545094183404114804403676677220462899540890349226048952124120995465870312705335512173433556744283047828989359007241417795066049757868689139505641290704215326031445192907281040081538219321458931762891812660822578590534808205627772498644152961424237402134635746029983351409122200503572731871829284107341547384356971076968593361443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23570468378822344434540577823971424214266784156754775727379105248613249085933485873001863037934628183298842573470755258619105041762391389032916827149086236918629910263326093720394874511148840042126103938101233486750035420486957199602969997475102044516778230667556430210892947530148140437170539590598655948541937100464920480093889241110690677728487195212140132855757166427649061438995929687318255640563592224082631037721844406594207254254716280715405717910277382500627761607854168580283084932830458348758780202648816056822945480349907336520229014503304594617033420335891490994659765086239578860993803049271910221167803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27708095579833527388061919700119243051458975996792271773901052863881460386259074260326254030764804106978157185150015334178462783151827970080396864353322091065248336431456267884965077038867120877547713515222829530032660594284636759425246182503550995562000560618294150876702811697215801603692527394907263072150226722581192182279631349888204056441313357907841532720179323180918536644879869782975653743735025959542452592208526263442354754047200585765310558893577447425267735907649518937628742472328863954524594397309288052218293857842183939342252571732360614078909516917832928165749410454871427999016059295856599050445597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22564198833135818216193297523541673356583465475693067952756075525847258499231010996929850875240946315764711440339031570542019759071657021241543295545677780965065024419881950039662618573143422637108120374817855021979620122493414821634323374388041673894890530822212010354548170977938520250029771321214534620378713077367411124030831052056077774219081229659907810946060145174850080657577524930579089635511321345243119922969221751430795143727526967319947577146888528488964237684695478206033343113946072818621330743884435183297271444600873290074696391237731309889654485906061219779205136203452947271682008357529114155136703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30846026088959305728768756296819996438572130896720833798059912122697275847480731918823209088656532973357140454778497189825891740459708957930873994039973970398125037660040922430193945948562707857937045579358032373145213118486510780993024204236566325386612365423940788520487925030252351953500809910774819882489921113240029253479048334188441180274096100587851637709075573036126639326080146952516073284434455631103492645261222180167172056941016099606336244754651756347543495364009327040925338248044190600080602803873614860645400651904812412020687522181076962342296537074024764086317125841473937827567920583526794744273147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20566085035524967511285074705600639804869424362750472308891480916541915832067287832465717940606833152864457603278650915830005118971750465877170797844786156782169118959190490722187265511420701518273279592357305741218234429217708316006733795757523725449310910837062983332752381687149505662142583362907430921582081228615844662919806463047653568977776683175277129203105576610241453081770383595256117838132633277729087079876487637620739484079003861625690485761781577279719709985411492622025053470067057965655897143976938871999725510240660241197057927793138879961083648326820138692966575965620654265181019899178216504547467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26647881621448015290834730331804389548292627955021670745690021425150816140014478660894631991169914098022416472828103840439062849539401419496549525884364426114468551543822622548080463486330756107629815150122926884120085488159721942294693798791559983754395347742270290360115094992592355570651475105948796675930083560627214169886443564460242682168387292703952841170965352456497883624991892771793626975763046323712479723978504180873579147985457530757971576971472401810527033060494397216611303828340140852295549089269793213794882324793218066868713817290827548011607174741435871273317642501969422567242469611018660595456561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25195724584461090791485382768216753622191283352171591243421013577655061907053315986004125086125463426654049396931334228489523624054740059149679945169168473879998306462091505880863431164241256497568533615800778537484600197529834917327169755802358592027001443614346217866924157484237840443217385316947075067012091529418944361582696430031305238265761325041389428368082379920761383384463148578800684803500391759510381090185737509777524366361568853051574944027062985535246767285150129143347028089129874888685438063202651411095104745385677695273984160301367749354317377898390439541950151250654048667283559447238998776706721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28600581531598002142940583469257708393341895166241431148325829982054660036237599364568943568277469805198524693916185036047960095929396793798431137705356886312890694691636752614295502986665087599245954776022967032200982659530548450007911062121181868126536931975310077542007352198616873322211621461539002180972634722027423567162489095655206657916519440949835563311404142053472607821026288486248421702430254080739336035338634499507803259424958293802639296608217741303494212719121538400146602157038254601816083290922131245570319410502270150572521348934766717531113412700213512575514723025718423322934506017526435278145607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28164326737427241844870965287471477778465479355727913111088988150670162564437370064151935611732651394526332020779476271205041332640445736009913754809907585287656339908300581913636137882800708475314458619418256526101395125915564306306764017498490201757719968986231374272484859027753923740742863733283828806414037016535289852466504223401329500940592498276695823444024350629258143922677405491435631479943673861349906033880440827531793828036694113811457953364284687275418778490462753635607601467968772860247959755878060446301224442843163049200163080807266906719983324255572027388288171478396603126538836021597299831500581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27341427966051017100174751705957465361743180874746781528828615754843975251786186376472146032164314925537743788929741653666011537356991261081336447995330193039174864268334435543361295604810351852578148550585264153401951035781313724159476721234583420442423993581448926325572055075828190861761820099052334194881848850857223933930337875147698499901038513984697341662405847595702065292235152399503505291214999113066201539951818860228841721917819260370853529946217813187581290928726975005185322374164908602894749340336270607600426203576284365902216795749469562255476281824677732354906700623568124332970892554441707735257807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24656254815186453191290038541811045054755219245222241928150701637144915640972340826127542106914419758395515074225435341673731292459011737283731749414288072537310640531841804590706116858094503741659438952393145580051325818867445261236228537654849773908272506619712450816259917246296941825895312509361920056328671868861182374710565668787075207068326785373399070768072997493339224497117455002780629760162721315288988396896769697452015547709367245764377346259732510362008691326813230713825671862196861606071553316981893117480324912457853696890697904270402899795360493384027687387070982385254170757871269574442201738475387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22542681581372834100643649586498206942781787102327899965616870925996469083072120726568151420046826983014489632467706009446276195431877023748362641941599819288352767651280535722852435873656887972091444770668124295860144671153866702452322771754184242358033037255584049611050289838066061530387127878060183381242724555189622930255186709738359951975485122283834658687212093625844579348573980123223466232018825630324772560873514867875807317738650872077260415527090417585797434567453367681431874484544551464806194203373408627022460050167562788820477521171456985621363077614782360991835534942086160684122833638621145095850209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21824921989549826775686023372006814677940327003871502617020549996299048908976129672953429075482752810720373157044211704268228581146547271627647318510357221204218648354171100929184938105903422955878477742892943721793425015732717787847444750252707153339610087712311952628797202335848218193267281777272488657905583805052148264984762742401357783365721875507694238903898968947384125110212776573197296439886937887593713072035316463854760262352692856672882231855439815971436936752413759659876556717285730305693309930982755985064502011131945166470891014960721983004290916524629043301431266143024930509357010574644600107483511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24886543651806990242151682077013231846915547364798068222513835378146244950992372002987044570069005634458452761494078046650922492268578882873948213979657188493111551697932127734846181502661310503113731610329670707729545929817504916033586725004433815226809354945346458181058615061471666820751922117255959009499632458516759704776344613134317709146415525361379343054538128203073391407824387159749682247118823853157360511185961226876504703356370258788971817083918491256728584223615478432300560999370195942164108502819411043440581181510802814054941591382379828147550109206220161250912983072199660819164230681637969492330041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25253197509722575304778358737517435505515738306841307521392630098426329825310238553467294272757018894849596528195805706085141893439358531932613098637722539565207606408240228537602107789093595374389160265698678645768715176254913405703677029538752792991181640251750561294108478674653942818697423432467152571221149696958012426617935447227730855652851484562385993304031283194593471083878809995843166241902102754256052923966137080368866825862521802283281694970735230457868890859105054474046518475808213905605447466256505005525315835005434846997625823102533281606055309873246562374987933645607150343442277605854292982609783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20867056649086795798027752810001417102041661212443781791363962822419420457865194234861231219469401903044639646391418202585887083547590210077961943846176225818469530208022123496126473091563678872035232038794939269691018316986608824398846234115594465302017537459617697568424154193750340017011555419037981559948699983252934701385167305567866865786912197703889389798070009117126681550307912745974330872573578802380006081078196653548720475000352995733996143071418451344829963484497928062044085662395264480327273701736735239958645951858867926247923070877489634814986333413014699653143047083445016583785434042606667626225733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24938584040427681921297454563966582042708115649466776162556992922343639748305087837499021810313098692615240318012405000344277471366226523754751250435146852509032212850814017161271228668887198125607896399772506104108279555531231711671295415842780439099186841638452379806390303944626092031837123764706919245733213883398675621822497069088662727966016222048163968991962883553329099402865486663351280771509185505331979411898822636786261821684528988293602440179283449489626133662185890444317690298161664618778678470426188894705687094286529770721866406734180764750401637848688863152327487691629792902533438884995538775028319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25234011593625240098150424852191291656819581670217803545222173991445272811921342177107834065183639454658982601450816935098581193021465497427766016031875588898881697268685187419413220723015468543564376661485046290983050809664592532290977684092733759839123329448399334211327347000529443324845841817178732135845735396670372069484249943354320033679034426048877043330624303968497545388744186251618195419480341834497444298091727537601470856704282304246397220387062007771444919724903680981717330509246448063419108487421483663721687827178213277063159243997127878322613811369386664328189064889128787216156788500155943377267743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26543444486816174024610039587225179328555466758980356259291016212854690007114140847290037851029821702615540245230605121655265448718198955174330285374584729270351176976295033875719763666662414619775054788331964757446416902614853860566670246276760098748532427099927024575698458700665819658416166374656494547929118392303015947463735686479185583703396320093243339981443410332905484461724741362110808905139543889610482213195410757156304999787436006129887508445714886532602015802309745057529161566072386059277188559129932203800922654792064298393074726571489269678657835555747629684179113065134903140239312299848500506880589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25390676774706347704015049255917372611144421670414511481024094551330563938944117747228416410597770051877663491585950429357360479592426849444411570363894622906503219087932537453851704244602251582859199227356608057745068300791216174847606196710938493072049086505677642093693014452677219136279468772722001768713974970462316561166601528076535288454118334512851404760420050709138145239238585897127129951412505404077050271298987629650346277729307819664014874832842860096591242650694577143953812135931099040199789088773927747739224458345060197139245309691856561082125779060982753890790910448565576887332748319522975950303263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18512425577363787301908189359695906683709388998395718199646564946859481303230931391174982123186725636328870859865924007684005349484870374920894236100343004507392891761390833570819896404942118982617683947203262632120716847004286853130330881781434221951558636436905038913195286307225066078040150382642519595722944717561226790255733784656546187192938826513740400100227383322033500811105315888355388513795507415697654415871378666002448058656044019152020998623658813641161210882355105824538108852471128911272229113386255695589092183813713800970765716496209931710261872612297190012561366583432175930490737317325482122730339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18512425577363787301908189359695906683709388998395718199646564946859481303230931391174982123186725636328870859865924007684005349484870374920894236100343004507392891761390833570819896404942118982617683947203262632120716847004286853130330881781434221951558636436905038913195286307225066078040150382642519595722944717561226790255733784656546187192938826513740400100227383322033500811105315888355388513795507415697654415871378666002448058656044019152020998623658813641161210882355105824538108852471128911272229113386255695589092183813713800970765716496209931710261872612297190012561366583432175930490737317325482122730339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28577800321012476080551299292763591681179716114443983059630495896229997185293435357723841665219933950237674433468856029555741957339098639152371237635132799137853788053608078039607693435932475381836130938073225131254295184672240054734250899237953504792291514090742360012613804607952012886139658649756216207474535854554760360475096609201318952659240483524657237602213764296388043479148028433017737808094211074458409001235559808073322702708912230717319503265075333257729169996896483254289598787672151855997358948979387376613908912052811423976303041654832165609779536481671321251450316378569626195235164652464022306505399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29790480935201116770850586089617580784477016955343030398470176610820652352374322301053956277431426795418288723451133008544676829536229498718549797210078241496991265545308487041353626293703824242900335361811861215940312031271268510757393608157360261793773282001418496048990770779242350021075016243172509390489414188233438503311654714355789495000255725633427151939299566367898705102680323069463577798534396455329402225187873559545346268363237568342095357881932244390133458330435466824045268519531843262165749112017621294127767107953891289598360248625650090051426937989677625188451143837107935059333387646493798508969109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29069846497476033197231574115141132301018588804344487256924562360901565403388779330217318796246260192319558629430899161148494051551560664453643413860272587509268793831920489386603131864718759544174189042509058520938698982591414538103464117711511740088411201332503488246189885342414930176485626947502928455626610061033670635614090920082869952448442294075125766222202434869648940993585908394785904744281810066440032656702356937535865329078813027605639246407828813079850406931574105007622446370838287180112487886887223020784133902197668653943621511338329674851534591524983260556134144735966525648579833363201025809480991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28617925482069519987762967580363952916830715566597620944322462896699502370113641072895130724634424268263773128520363871529637641218009443695694565426721552704723094652674233051957011105449023840872864301414933876699083938758261853776144746686925757569461307705018150686915860370151375058217579829727725228246894342226447359605077391432113089211276634744536519776426478739985840616404257604170242115189645730338677652669044438898759986411686351577830184726909628041105831862521431119151914717367462693648040161467878803503466624893635421312261608895447791368561477867484418467539076049999938232960405298578655998413779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21760165451709842394911146484862425667298121262428795790917498897566295415981522736094734353733181148974457205645525770678772652826051966766423479627944209217579733300953544364062484875415489930756650321974532558734246947151529625745470537363530127376374245241126573751373767018207231251084940559377087918092500889715193413885860961052649836960122263966963562487339713498307763886077161713135399345197131198855397026060609836375190552780983838859632308525442477380537538744642354289556239039688567514708263471756754651668118918736123765055090701109945106686315571067287090892714011520267681363625105326148338792112263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18365255206918742631380408090087603784837433204922774605865508782200697789164739442492364137322417082255125579312744411479177419108771507424714068210772991012800676859979618697715357184422376539429389217196716509178026020730263940942766501488267158212310665346933829480015824167920530802052906255078640223248487988235581065897686991452540601748641201724449042937444664199164441140847729949567071748954952470735895736252433340197311688581581095996716323217517575750811773488323089499310465348696703779862447316523333918186933174796482869179716309888845804138164791511882609033276130544032975792343043451940974233971339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25144774127315868838805955338316073298307880730128426526665014425732178912362415306017920856202800088483960419562070469072345768975865456573863683525606486980590759411479710162832253571732107741854562301839208201577816525829796788123664721932301285354213700981031994519969870265618430329508372579856877083340232242055177638500162872835399082754473177448312843336081412782224435519570300474107157584233060670668917040903559541977890454274863710016554662461294111771220499212164888582944406987393148874548863239433459170340277917882123914283392243774119693315991640183118756113772655166954425280949046711795095732685673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22047824978492297446651971535116484175267689903657642495760890777815565982009560338270897719215267854121365967699183322150921259192764316153400313532850764978070652130551547529764257661440289723747223409792190986948963849126261346313676152375140100982771204422047490539497040660825395713264999264727561554633422420682167018991864414498112424268294837628109429212010223605758372220016692891223349998204586937037201481183691090769503903941953920234717510352417182135557108398425233509265627542426247102530203410115747983771954948922708996352859895010719456567068886514900559923128931665194289612451369919547105543152491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23523105662016779897444767124014926720428078941686317013621311179567922027875004598985905503455747683712148792310969960267260616004268925861854250992721248900427742116547875062499026213831600322850428531926670068420707744090404059793652384420234054208617279813833112643892839142098506212178868019072719570518137243760207335278055314763327952972064860748984991476361564514662240630481068259058760757071674661054166935018527227140234239759449892793441279342097898921618621147125500033921940651410509803661780142768892786085167323096269296791851472686552915522004399442173499475659401984867233664403595356127774272907407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22738083013125235140736802286641757091277056502306700789213769031577787850756454040232959074535911163885744284546128064642044008726519134373294747963103179872543682365136223312095604088205850576262552666834948927947627801243229667815908376031921736408308357966803855304699484926726925511491197752015979202137387807918788085685119107312018953285898460914259830000577451639086610740522584701700537070621226973339987507387644004669294148641458054764813764541287004959031936706699720449034063571820972733228754696077570036235443414388710959020321235616146271865373016106558529891999969227372837580079157246635015018354981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23955873715347346389579993508211044724109834061785066409959651387899046357264382372819309131561646580959894067883656374930723973468073143071029912684734346946949807035905417269534075098707354551747017790060888792209446390332117890132825079473898629322106735966223477906449544722410099388515422124334504325045490781772886183328996887296940427609526208145518233744781962711520132856980869384710119833996611556183577842852828870470523069600235148883745305859099272444455756935978733294816624379713257802224965253699303485925750756256626269950928085799660241188060569372895358903749273209970863082640063934136028655849159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25236506001280169904560084092164932645971332247225008937123446789838196007491344770352122585673258335531858810852270854290286760372659495183435346252341445139292073069114177473782087483776162053047443548932446725686803374957578797067677228469595507818608848884169424949195843879218846428925280246302255564477185123846447144367311876642999168110601656614011227833778648042652362062602504021080850727126988133867722685651499652019672037156312810236776903775938414097554826893405291957117471184811628264622423873415917112196573518323679950155065798933872226799810219638392389821770251349830412801788704811614721648065173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21164854926237818631361523507489752532196840199122475832378124752041782833433345682670283162752927348303240028723190104277307672333487049677474040484634417337814719033398147819191693214101266404595753420458436858027638515382811528787511724741957392894838219652880657407432895623954225642655909775194484955201948509835756059231744566870933546420828367103061391658885436807163668702264433968627080488864085883577763083605518622844293774680411169875063340226418631478672015766256653739743363468190680769563154166377635259156780515110071094908470114802434203564626714517492569629921821885765779893925110822248369336414519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24410956819499027498238066693865914574801502466285168090794858408435920697588636765054606243593248790160459513318761766911194407579792758611792583205441603716724087546017219490190010045902896138827184691004624471739375363705542512104337290942394813964040694552633306166494623424668473118599129594729638676571033371220100896538618170219786163529449995185587229933860225994153187001757439552203513367647949807290623321750212209570527801535253685732059545446300131584981869962117895619883820309239879829495790547681061060333221437615107032642091278344768776345671643877824749281715853174732424945036519049713453363177183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26084605586329166756754873646324886024279464553311103458428779737238343384155960561355559328358727744315867950015495690023280128808244028333530942158046068187555715438028861581351024334962135626422403045883408050966662668091737293723169937316900482139186573632768048545902979781782002712297588559977907755179889917119518468711861860269799464936029763870983423402115975742309022109206227946311178723669018402798781550776935867349084929104232588949010525242992758259582008996251071125089032680768270191412000127443178664170160693951575271853697247874364655645974580755602734737446337512772165871266758644553902072237223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29800046971812063299360445470645002752410251885231435378473007274913479527557591199529082208445755054378880440093134137794986951137576027483464706583230859599505145597264342441536947417557815424149639633589344717267730236061656905886113412018916754266586329794550123681925457012241457923242529545559643027620510701816995921665745951268352090935349454223752469626666113478975991216497649053253517171871774734866805619364042488376266333549122471388461251568088150011113390093471607477700050068349745180237683259731989227551023759866091034111813476534742896125689557674319811865207427726669918602622496369575800526615583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19531795533650295117548860823619622787435822131738608650344005075515914194719795217530745612400087149763056064582296234271948113691074189327176644304778440651468797608143212873530254249799219046957396937274711419972623617229355372434063135405545682397655347624513406039292996920453113477552651414412141587045795326193855349644121376232525656627599978851948054853869008115963873095600342396902495786804976452124187344447546948673107622600272615532254088275127169652395533583520899270544484252425130933777117632375211348965921484454026198048193412297748511733932387964157564727573155123167726253409554536453537098802673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21513289692115257840251648427899640567189260173544694940536194659061178036947533670520193997599746850513659048356304260972791458778490767952448136440785757556348886023002020870567441786530091453560926056025690529357032853740678921823905238800862314203322894145132627217351987609678789647362926601563347656828437692446478201875809207228455157965712319432261649664173085464302573385363016405367237697986348071429676187578811125431298721721543446671212611547399924053171790117972927377153302217021087033779690615321484612899626090630462682869555815447568279744841344527030111670744764649765656865525424015359114760349223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29496153880969030544331937027755107830169202458656815207970854603941583490036790020142659629203573172732341166203139826295877843182145901294667546171944645321534456195725194554546204724279150689405028003256145430530978402319526088761786664086060229580204286743914391231796720208313871072897204187192253819743734680636665003338173292873249500456485418332577636803550694877933887139777982573374124376634493368548856085766923379970179943506343731288304740518512251743494233843580764205213661802932939800789880074668497460759110444088732788019523558638070262984996751492319316653908205851321314469487427395011420339364333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27091001003309891315101380824427708243275114910909240827840913349868799322077388042777985309968452365060349225207683688068056159686358661218069799612441929583197843069667650544022188317822553468329819432833665193160346102304642124737397420476132239713101296868682777319531774303053623120216231555253480373473951619832711892527882891462603235580786412776043317377228928148250324646847622218019237250037883232921811634510580602433090230154044661110209933890079852946784147055317704545269239697405921537083184600579967378931919895372233803494208330901855493756447117831446544231886501423035688856909814603578757911114729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29195582175846620225618461771376195384603910507182051280149310394835857301646283583709651008817711944312596991100936405060235850210140414709320777870120425440220661410613930613809916348439018907139108242855004585518120437146954857025438642510795702438782594283589070932521061124255052916968891141727509137480556195212858350993542885820734178889693882213631661699893178150008868113731955963000042890037682825109789086655588345799260433112627658662163339504895068113991476941775095720295090748292079225940433615422519535712044126286950014154142245307731712990289766243736900015915803424002071629898749932909504906413697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26131911588492642226303733752986033729400605628273869616143190779902677920343897381091213999120556104832745437049352635283809727256364544501707395166713373519940267884590216230280819329792147019750723790608792075831795844318763619114561344338055079517782352498895333125454793586294361865132793918861361274855723469601971480204546530341262588384310676992124147980430841375082437107484408206355427369917753151680323199366506786853648186755240597962235930419205030374573111224418749978821922193310318497761315781127436998574603265903036251328599765984784764435588045676324968910434953560043887994130520195850537316385033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22129732037067904006471862309647895804300953717884833474323621622544685256827006794795875438077010870859859250764818937313840470363171573398647778683280843573122662945834229600616789489228618501916352851950535634791420893621190060859531067220806576412303094470015195199278708899124110244336192219830197067226768940663954002174159022789347739227927769655193419934023650452838760315793505543301161267770712777921471802279742150292793421014867251770151058217955528670370571530551252042405523417565743807923651386209246945334787673861940965703989125702627915604354761293832801548829654087576936422996731431225250630294613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22018183698406146630295741794192929010079910258916093748880659495000859607153415952313324635053327681187123255652787988132507353470848977354209228307383658932349476156040755519937149801669391763086035862325194683291110354434188518227250525242804943281233855181377020742696250379428206695244230342092123841358402830545703450437790005306066613407452578919145895436952776274616313580092938163567984261198615546768285230410016743765434024938237966232189513946173635707350188284680559143096078449432447957795726602738601972787173955198966046288688839993850287406940748819745215958966735953960417043487884269861956277713239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25303338850655977781592646254827766343517630974290272962130724468876098396229035437880777964030600384067486316557922057705872440753928065801580723320496837199387131350979759779830189171094388481899456241534031971702197695571830562816576618656772974109556463717070291662227524444559313706930375026355604531532048658693016947383810095980057081415003298279430446192847526387540760031769739825532308478457996225593491316158495666992743293810272459721431721819392303586259085071304472445032655775253623146332634044938181152667621868043103541163649021157008093919901597891597852281330815656785735413944715302596591098321229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23245409750205731670200685943692655200225313778400753838811062460178253883690607238638610737374299690213896903873177820331053647588949536121571496175039498010522582155320614313236600021356160996595062772271021196778953952455922706158720372964349598020114514418134246063446585568932287051461554449011340303622028421897762542999860521131691487665190742419716931059577539987502439745209929453035095519470597175021879962747806588978900340606212661345474308131567017896925846553582950916695928444572696225817122538943936095911287717439735142078723548652720496586901794284944863743348559174304815814003621673302873326199859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27973366986770305494496972687098478550985156440324634560170084991547197423919842167794006829517354222587554098877922044197487456939411609042583107959239869741331428425461004719586195258498716132511839187013120230096893685874374177019706095375417034849792978199662742139110618936263436435463952319461272391838162860901333179944256994117418520939166655440311306584025665967068224051117026529610906939293221604963183133746046430532592174786490522371778399850147045228331635661902742488685649151517765152253015503382565312047156320136102450714337544312629229272122478780512003092710321433610239109745316012387519373821011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23563540380752198357744961721508295547419415444565855291698095852024742566396585084159934497179763551562883441445179914139621565403153441336815216846329923225867768209053982822069204522550988245255375609842455044998186566527801920423265784351245314892963922905929285125576228771940969991898233681799209572350499889940518994695813679310948850205773997691963255089511495604166486200282045054924704735796003125201010855949550048515874928458431788738405051221363647853755079468665051325949499246682991285462812261240863267655092184074430296355347729537486268345503051215926098625233720041693454203302921376807830794821463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22972009362526843187016491537939024024795216472671347371165760481999381279953029137472001476552481215773570820769065079951217833212409750138704518883833442941330477342081386573605745641498615663978992004912156589317319248416245178727127938244669656775356621043369934627463468559130764787816872311535496952042055137806179176106584781189772303990438984856065291196348545232564480099221450804802039589535936072636525417196057489280092974514308829155444318143284595369916055748989502222886285508125546448923104361121739216849066023205543782382552714468112472963402946653090376057246320877528234045267253755346107139764187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22706087593455896339643319412543747974988972009361165986353254559656987242987863446072061912139293441762108771511056448154033773381301227496424943894123620653140916026040714011748887286225642032013661300867707112416372669916174293847588547424866396111881272419326469945842722325019535573365242374056284947346332198643414426931517606765915377735271454017789871666896854629348456476059487579369781904744279535292905844934510653197323520034021186606430940358849654586365718083392080232957997432777823054415244039226390431991742479742433768048653685981994588477035086571791362676041135346323417393294389413706797864992197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28811238134567738111297879039659433753195505393908243547169571821029771958020452541087742573853851558728304684957774265657852964568983766193552481005930950061512623702117962060667279192304341491420435573516579125689553352041357042883190980243515894323318120455232683392977546878669360471001037304849644930083236230417167026055751274487415933116680755767334877735996320000416828270901455518811607966097158075506308828975593173744981507828685643028503797414404340377806110222427972401777025781188024773337042749785431012312726955378522735094391268789358715377569266118329883521450925829042858612082247339152333613602593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29789863652151019853936400939217621499351730423458787715492359882404578488474594337764182014263907075348384849353769553121211395751231040605327905418110154446198321108662503431340596262067905837466146248600170818657443550962456963835458735627270314154376915629502469701339909735894362847686243824143101927963662268130102569428403875975269590417412132721263744705419813992076183086952250171085851283917087869561252520127603406251579452837331317648113936733326800271474593245204211790111375706850603115396988907086043360563625944594181124174646430044555625785646251717117540741789221786420903500261119391830551284672177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22976404324067381265394630032299028945022481351480258131558881037404917102762829882868550462050033070428175131082978863678680089517382218126677499578544567807456736036665895029752288269396587232822168644303341910716563076832480463726751172166729714512628045902146666964962246167434926646222709020546808754722857603266361471141022207685305638878272635011005169750777664774233343036621015621014059022690938271775256129472541492166451321176521566734076177612494130557085768963468738222833024088680188535895195224359786281125956951066660520281030093236727542580794807308200051977173711070066903140688268002778726320134439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24069545783821469580235873419536625415282895778953722253148370213359587375837655665799959988186574134871629564735040599834644393296073215796447495381105927974376306767055164515722691186200106937772631018596414146139023276475855017714550081665204569276879028381471486821347266500520946653221952440712211370476408731604174151161487003598955169949238636368498744770166018501956209789130486377922604482688781345962227185764097688266525983105698913346397030743889354401846465852884271269222529288254769802367598907831208722422933300001713092324389300361676806079477029363038483763153235354687811454749773561776638909094939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24178088994051378945548414158438863211929869300436524891444590155158175244033205283092242715695106386110009275973712359191823506858020337252642695922425896896683551648216136859554314315913954632244551449235973468158377993744179990459442166431835498867557596994985195832984035955261433861754857310877949014197239569172152558777080198898821616367748300426265521592578052858239877630316916675756680253671699595222724075844777203050110542360365529473380735647403279376601678140555377884071887388719875436821483135954591291657162886028359673958925938361977190716749151728192287227337853152266965417691728997886386601471657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25499335692123056585175510741583722054128958558483469820129388627816013875961442607135047568478487867260797113189092799547071052801514018798558310892982770880479240163859832174924162455796157660067686473496290188245521225467314227376185556836335326197852089600306704467704742966703447812267758200657022539891115889822857899210001632779369127602389195573831999769065128512649368562371545414975806274625738055977027040975495072098741967754382903997394947710507863851653845606463310358344941180021588729006981660395408093667384809594699278158337720067001879201693725618955081201646022704589396475564133690779752214518077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27896284513926632039836687971334571812193160280928339819319292097528744589177239522586831379485624844686982788566926700931502707688856237428818602486869822264519354499985913321285672038394698144639801131281858182380339317386590352362634034483562044097953082523376409656051144672341244627320377536079529001316561377870340846794627845833089222611848617120996164205191660433306143130899234251138725850523624538888080424853070938004332964065792508935179070356594720846041347292532947604349616143719462082217234797730841329409210846405469700396842108072670467115704101970789132928446308025676966164539128270519183673744801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28045888228461022182157035480087574246339392939562256391609937365238695782304461206192055124086181685340320087546750137380300724078163910852775441502615144256403198657906959212113135778340733962667045978718602155208092897071424825917796518890820925509523965987545632940192411140799049676701513983765515724400073142930394413711733961107887627213856579162073744805568819930983074026696670072744275224993868684215188459625837208613715232653715152712910068859053240721630589036839427162799518960466914889807849475043818845123798806786546747710092182578076278640224979066016474322720993233816253549630852291108145692779007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22729841226004162911722424989158341792495290128960581037599392071683993797481816049643140472584862659537709912711983267322648447513677934879239928477675884804921865211540593777097909048977660962630250788374598821386146423395808068054289473990018405484365181410063077799291787201559634651347231200672940034279174257068892163980967698262647125851577214806674295626743731872415287141640207521078463519695314010924856455983442240745125851726592749506477914285904208973569125222022275381693346735262705328563504392274368268896067201000145735860291571312419655543600791626422002472897368674897117023896158017027412175126457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22571238772877886305290296001495625705682963504636320883850645941845149936421780717392812007091190750590919228528855870742790002997327537253125166933820497599776885603540846470123607583749030968936131015974396008013570011800016032955887198702318631762188006434115953213570407535443228645691200923326356690191012324498075528148648021351060287085257465184005140367931645709412060810153658145328703592013474529515078546822175042478094870746075746817676721726024967779133387104716496652285138793144540989382917413184349918515053608730995019865214970638606591592361659883374997189131780259351363123012741427258136563041703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20217401067972830838914192674999184972523064207378044843628648040696412609864672330433878251359259096799714368409848660666331541965054028280071911596317341048753046474555900530333372039163118845535266226427435391656638479548463137992854909465781536927515681064884240428141743044083443084130392567564617122246050138652405484592007011302481875054068053112098328563062416524719006852389235433662774103538081059398200247147394323764743520946812089143920157100361364296373596081624034049462993028587936612066781233408340122669204584581081346070095785405886886777031208216038395341777994732803268081407476889787204303898501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22178818652699402331523274795988188672736696786128300961098788426905183814243637237087171516716932602898197512076251089570691612503193775887472607379679103552897149629387503546048897712088736383741399636395795253672516408921620120119056645532319246255014147883009069836627578874255319833432822400895150677746378247896580859326469002221544416232744361843267511689345010147547791921768694266796666903784716564406082847386300472721781115794223428314815365405824571034159103483016581173110421843994324247156007237618351980773966409335692383306795041041414212711721786021599194530162832711517570723994246620049216976747879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26785353797150147073044323689048199256140157520386443389722632770188472113490811653056165549343725546393635295682500836576417898026872312077035881246524548165336847107272892382449789142366786460266831277981740583340858651855012061571835477424370060567491822656301920099283184491178050042109431921185681885953607497179543497114188070079602945632994053352259613672444412163976070468635120059485851469732724137022999257528736206205780791929928734954680201378612495719792562867807441008207137674042353849812928395049126932272850314814843900168418940290851062479047762531337207977896156524423694988969609471470869227545761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27198322004081427325526917360959423684615943877657103230542052708065053261370867196246123289031115323159539614049981938650822732319812752129950416790073803325281864173028115280583850938227352626292603556592202401981610024898747086389651078296812398339193124659469780108114554709699064739119021810345214081018336608947546651974939347182865290392356584587444255553993005903253108392036474285131202127494513424707875167298036503759568399860052895605304133463290590765763383545010083608164063198259212618149946875950213655191942668388208868032539899676555751207472440482797889044363026575734423093498578275282046111050331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19937082119200214304952078012611139157214475209793672215160526408520706673420032936840967916484365495103760220860805578302876511695808471466366965192116979113113936544610772787033095488501366830196112759976002802117533790764092213453004197435476640408387262034299513030238465710582037884272263703354386636055061535824807374793771016894776625078760873156079877389166851189165356748870894320696484958558211953365599154192013404973652035758566932869470599465294307382594041824833115311980356495813178042797185789298226706691630117445162680683651040167122171898904633360313678766368289904022111202448814365010737728718303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17543572253623453605825462541437165225548969958354414720496549500074152650190184998899903543497097672412483162403518308669152084673550813466836314271617948363682350664759647969867521559844130497390187586546504501197796380453797410839257896531147618162342623376278592914901162073397225603607082320345130328920554544825198647034196602578190681504203060264632007189576135603213396069341104854763976069458365967024404641595251704817146359868397257756083321150151550638002646172318391390449404839276772461347404744965808624816502657910045384690218491745410385384237260289599052499987207164287095817617473981900899670294641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16375356219887503280944541477900243469916101107178155841729172555503706183060823781038789440276187563712982194099699239384507399731531271838991852364412221941677740625577760011411063720919133517158016596254671537377258096320858394995823329342226298030657875277184807780384129672510449819007435014624474162255128601060007229285243918310841406482642738915131890417245435371471427012112719978587575109413998018959761748998057599154911079754422010997902205429356455230951109236992645170381256404292699377575858036700810915948473065564790422152313527865321610034064260963841952665041638742577823857862833455777395899166811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16242621451406364481287967824984695817884628666236008259923264731526054502731238690002771294554494956265516429377552178156219549506655560142712943229093781953496915123347753418211413037949000883008295782915626701626333976010310934245717084527912578158223730861058698843883842364782669267155157918195537406086490023462934499243892612169767839531051048530910622152047955602358867803498350222795738608305181013971779710511032398473969034269239823545887135088943855779797332503666491857249717524739144786995528111243485275120250457597036398718652772422881892798724459618284623137733799060295512217115511088582104296117141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17324937170309827553927520990019240590909006030990355455741972138822607539353615167627036287542527491981226530641231230785900076284946125613923670285734081104031174139225133344714094601880218787274024965987529091850408818985663325889338052002810288644523301911718694817038759318235214077145123178733348224903467187510170071946873613135377505481686958967064007705970497887142759455326455584898559134116738292315299674590521411819081473059707616671601908110446582124203839525459458599612899472318890855047146014037391246567046314746035080529666521809873002752240593369129486706921707434371537360884740534356343948074203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22203388597164921886709928844297954113813760934344447058060617209405370739475147010703528047883404587792928545321682695547831236461802750083702331532790293149742751956345018305665770178648023017322446647656301298561072406091296181552055016770918931131238909437810425957505085958792911414134721931821880354395809497163121144636758736793217694337820216215256917860957740937045643123217530586352030382951038726594960054502013970326928602486978327030266184209721290985391467556559781184919572508404504114620096718131556716912039678092588626234624797225351296416299085063652356728548890271838983017564831575860837872290209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16683537000591938453505901557868434907307172424374355334321650173001633202185215872801786278527907337325748622406967590463610555804966030402619197880359615296285938561269146180618595613518705770327317335470256151256314324329469440256171144297850258940532905316203518176501763847421063986423319225527988555280631624459581416959032341825766277738721960782597562071419265707929087786806346858804576777954445549114281582384044524228425029661263926141058422030279429801078210467286609186725708181901732031498219835943883561896241375241260542211728957823140763714061311929459305096187210521661777809546219440894271102649167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16449442968462639644184405337555183867942862054216045745811861396340055555665096268455207006015061215890732819386935382383216661969932717233130307494591940851742266420610000769881854467427698317839811612729190125337792332609957022035131851729024462841290072677415864251633759781742636581956444947572339681992631604150122218624765325576858385326198188970199506888707935013073653028427564157775221037581665432622873614648894492308919958432057419830117187178298512461517099147627247371353746727399624268868677412353881183626380551886987504159763626090763802053571647956828157815398816831929424113637944704017042367059993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21522850873373144033360917298556539786000052480770558049419971196072571666976596059613573183134709220800443701608410358758853789951427372161452734921087191968837791319574648508892994780683205907374888543343956455938315195159432138005419251856689477425320087431162740396468200710130061748321000881813002562112491942004908311341707362441051337858646258166631743940598465174664016025505291408766573708022160187275610359530945454692162603713548491662655483619574337925023345869237855362751003822226840032444731442303393066036266027226183035354644360860059670268359995928569563023415900151985445521730688646565849580176549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23517755808868914324447409194009150412328874346157096631568574582030802558540960144757910256513255048615694645359193389010967133791207747839105330500856673615247262254178501377388452651246728790613530576894192694485174786398988644888096098655390784072085770175170408668591989643460966920494779570463416160014259577634571085653907927277661485121483819377171372301245413714554586456029860806439221925024388727231338618479902374945190277745220888620724847749524138641055788947523458010480694677738077004529844886146659993197851849305153311590361608194276077383819070592520864363332072025186011840644754622327312196107047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23987200961638079237908633603038582469930585137377664218323551448903338108175342411625807799067060165967647954271621028096993599899799464144702782007237775195066800211453040378377971743513373915011736547577598691843611681414647793794186289447311707128274534698197057311361270947594784514738049099284873087821064181597154394185143770380826113535676723194754208266078444590710778783485722077450332543825597445253030835437794465234473877054018383586754437889742442208791140045711091527474305840197369113315091787239707082730412051384742459312444012723279510849165646147816596362853742408586040465318402761879005114135243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30750410093368912299173261520901431296850771259692921662590142431924187836292229541076652590301082884999964946075017927483657946342524580273238760218979536044594869749184372570605164925471988511996017525902775173029922235651817127010508495913742180076531918686764675151639680927013821651162722543542629614432759027262791742125977997188509588953576251352872613028842545885584070106977672979362909207025988201998510480129310031266897117371103033324979920394939900868875968167113912169804596786277273942638178569306491923817540485011334659576432773153711298190883432215107512881061312044666367152656483177217022333541049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18112049139634045911286742261502575548313163050722691644015355349071877414866173979388847558948884608818614094699483015652815447442141055876870969382911301901815553815472335009784078418236514677315431489414135626102542567438189840815780869995697262731252080545992600988290966173321546483517217525722703668921556348217108284094093579689747575511987015459775485675327059340637599363013572746657026195464519982432979418376986844990299489672035004647492246269197277204163005814773122274329477519298657498224817118118425038899253359227746359994779333033825091389080025060179460085349713462035269394731049495542644601789943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26978934384682561804990730423902232274990584745175205751666316867873052465089494550824066864308662292230562488850971649868696212009263743207081061353180575220319121919594133054326132398224806610615611674049014402551500568549907107981006743671291009550070343123561349192262209727531432619642456404439402345227728774016968702761119150723594884726334674693079973342752669690997780545842124813315731136396380579392704065054905579030441711271021623118750142469593126391230409227793660572225916800256089613077961191395310778160984191684432974742714755772697450341472262077021052419278561845116319320551134984620835478562419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23463651614453774656597120633524701803657171411062742208442640961074856586617203332238997769807937015828244787219743358142080418122307133706402216080114776478530437120328227412060489118263436735316052655774838250186826168931750361164081477705876308898464272262339579208990391036809614931968991005834343268450514811662844431346137577906918827893604217076600207402123437171680137919585614375699517316801025367938390685937409031752601849388804696545444318649674678836058473935436444173700723372138998336871943253538488573252822761975402022992391715107529803604197829551259666910053398910226238303050844527271034988102861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20370319190810823497662518698087978868219231032892286214573531343066621919788091398723472373460775514173795009147445635706284418258517916701797386056077688303292083933931205921105131959607099067291859562201244652061970940371181705330823558384897498430335066283918209985080663585595957449364217679778319864469366852424460442957117068184256291722954894666969811382122547955510004012237461633527344337966901619340618055586429885283360891967672147723611258195295275466667029551914935285865895313775860373244031921889869942104620870354788439099738332906220768627566594662867398445644894332910049091658894725854878800357849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19365130686688787235348265929623238576513090967742089324707699349823742930803678705734294254095498100160195529226134611527311072772214714114859191740802855471221812471396898655719149206139032145735913913063397626414722186789906449797997123872179500401624317162353608056019284762619021124524728138329325235693959389486737240684727213992767903098128378147032712431312997950456160256115855056192823882478447396162992370460383258112665335707349833119560033251441436136738976058414247083876922450533994380654113496681000103233983431396328013539420855605349069575236196326050456904199850363048125450358091536415714047204569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20856424593811728628934336185332649163929277676778274930465800318429479769123124405185586419239282806676844917163386618886167287710964255527528184254347867464036112748841049171996929176979583287478065668938730035218128065845065809080615208924302002342722200042314901700621182084324625255148589000604810904746381691097657826876036984092935375733017202577245586302546471886164200765781122800219129125313092454658481629572375135015199830480812327090388191716781174772460827471451024574794591496569943125789352477835161220352944991995934159321318084693752971223924779991847887232667246180474053324911170060245382564668517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24682134705697054527004484830285047744988940889501833893046032376841223159411008965853205712156408737791035085415079032011580433612269439723046650446526942382097603971647071520011618458551787790099773988224062897066258991964022971041114998999260829762599798899770939322022147574171321444591517394774177123719898034883195131581892386390759921455682979447932565569656610411297922192936981381712121520705700140652876570583071536898141670685150470968389212812353741277854612461187532414210306126127876811388600900545390975852074012526894683313415151113766885658888973288749924645337401827888312527681880289417369603557309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27978446308668947721379383229854025979280760254133855266967993451926136485564711017229570918621094063602696439276390909492435770519910953667165939696552612913460548817953021793409599522462319669591187035655867493452253310942216669481193726277377522129377971570550503967017710187229754674970520988765099130622714813879993850824014304566171423288096942929802011778810920493496436133309157122892574249471229354735182980924241167834593422741569447013554654455330863323655031108120145689585475457674513574054960713548000479468621524658903391440354081663245623729355598272772371637133504833935895451536830245217689885636037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21368602349768625864067507155730632369317260168075222898637041523787111602577289584765185678940921606841305727238916817990037394008955492731683575840007683732943831293364207838734623674726798228241611068338114470569030411371496597009912460578282629137602573342163160885666186216772851087649090685169691168381109965591603835115938373021236017445300277948301368427300006025570764619289991790103914885781684836313389286184243740451453311476254817729310800094442378981029014171226881152227512831179064231136895081435123448513145236323823417508161482510442398336937212563994130076339509318694301001929822127925872697714699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25329649917181469051862673916729742767006465006006921269096652041322776790329221475256826876738640648390054152327940674648202225602994830859370543217458156409403792805050377425608579015001544935122520151938690913485088575875785661016896521326680348862164655891465214603530481162575929760115770195246617173716712129488386773453135809216786648949044437946543313228299701361523830837511016754149665307184200723925984420149192388828538980991150154906724781148979161162251069316576898765824368125473532749404702028554749459531674842734897243002049178867728616967199325542850061852366253413239947717914728752017299104882053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22554233635284663079842575429600603776289894829777612566383359326039813674383765169820295068676951225070697898101437471912377838585680010421494704292356187126727007982562633688727314021134023026322320564278998979484831126222664992017965434818663303629947975261070491127694324419006168126506677495567000458978006476714458825834306126050134835475377190298712644082048597962376595456909490924625142759296807404123125956662933473339138387781658313854778333013271451791987082001179358096440429178153672088807580418341457279623986396048806648850199415266400950505248618863097378127574358830126432794796862576930127215318239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27068335412738442899872593447471685212983553174104030173051886296529578837414993908637106386283075345235091905718936152287604262252634638360789554606611182970832390080852543346749497365421668930976477881148093598018002606189935877439964131471908021777372997553417967266847472144224884954303304324592077395904237208860431269367279784237616944956523680298190880005242878441358554872940887663295288976353783096394910556455700255088702782214780954388376202725486316767818703043762101096824772253951918344593978872908776517036209860800233598386397723553988060866431354401597275883127409688751541807789811736119544853416121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23533716834430697316868956490405567103841221339479967635137626350419958668346933175656244803307579221904115266257282080144944081674803993166211097722120820388161672982849243002539989810260620819843094565377864853899582308198087899689377545110619598500261754007237826746502805348316918329057373547109465364068040387165361853492683290797426506835996717597008186203646297541178073986976590549482572851627556284292972852281232941889765621439739953703788790700615576761591051583423328382358208932549291612266470032247081030616430561445087648117664871968703374204819941279868909029960971920692777256506620813931487675973691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24593443549535030853620614885134942083701570562105716822268135916419357868606642312787264662769813726735949584434390328739146843672623653832353942758560113159152158948458165885918460844312116560340933433556976280155684295664211794724835559526061290883851004039302489986015602433752591681174722863452355555669342744386950975959593100634542238570474339905377360928801195577576586989325158629401426595498243067060206030903331601453270582504669810290136906062707781511764440378758755834252779562313850996248345785207612022735612791155388224014637464127005135097826235556915992131656098956737132064094411291532058770784497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21365024771518819757421646202541707528716796517212772589347553145116454919223462944242281037168646377285928164066661048324621002229155139750055341489594945253169824729586873108035119964969564400250188410196084724040581931038398203655171811857496669648383325532505791662367746695472020300533024228805550449678984018815640524607161261460996237143627121548793034930270449181450185825298967854464090495694826999489269100949912215850458063929806179218048943869130329796590889862272844042433645126093274533726027021644985731893678409243193713603807539568257349528887926751220628751333370400239372694125980692944143864527677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22804721416669308221065325865719185208163598692226086026989566427987364896985036469642628721607917963366079389567805402374784947868443977811818508854316984405372999546899173620922241135140056711398556427912769386028600608865036121129457586678201437088191896979409350240919569155222305928423040505420786950140814936189719172177256503232353108036717879722323117144990676510999911224220777717240997843834061803017753822531976280387355757327602913429876129861054717978181534162309729343937434584235418413143231485385240409520151844458602231685030172141098954970719286442512285952022639530592744445153354873076058747930949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22011842046067398410370478921730596324206451665935185529503849579265001886652634280294492164272989480261438792240865187474387236916281307212959709435350212338272999524964130221040144710573253775521628975820495473175144860072685817935518929582263345377768172829808657906300111619399328382300600626049866413477920291263331195032177409424940912508151387127691225662326856632487219299488815134908406956691179046739946268675983179236418755872245765275968135264403691339917979991483810890770203996821767042355845814382203073039660401601793679826699095191767828172867129479904795342371433479009071670241601832719051008941329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22208565482096748365034413404466458007137339904366069382504658598430733925845460710982099346437666856745781163879114921577453336981490817968078795732843338620356430356345984887511913652711673907018400021798976079945429782394447636538079830295950319317269971428808456041016423329396639194129690193836640462522922728431637953799305824304926730934248327791803341722031922703222034965504018628526839337591132869510378556672462904902386078298273771040248587191642236583117374779425596408011307823297773952280137384262417909437382901896251831198754641577742115781207458775808899966526535358634012137258898964517228939357931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25689526807232401547049578699063882704021067673319979862026075359854400954124434350322015753638839113114769731328746989618082364908937660125597687051084898048988514705146515375014722781280263922015304876560452420477377471864051364042648923044054426931210037565921988370242575457595447407812547622107187895944620544422925131962946586038641097420489006048693276977758150893298117851660777667166850151353079068530585523589053873531852094933809696781727686469170100315164951511597482100011658398607051998371503863796242876625475849917045983568103279782128477099201118813202184281062419763102800637193615822039213223805963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31515665818298567859124468700326121208758652944994062603248460265704396768552048027642166859290779299774869490632109812330364328515046961640983121356500878500006957237145031148518006808903933983696559756553717662999666123319077649085178104734701941709153566915397909576697876189249449127746114219483070803687470683143695320692487695821419712741853071720966967078063702808323562873552867608847575473766380119904912580379644110240179896490638026408709989394346427485765649089369471489890922141427630440605897664456930871811868914766579861589024184336768005315404361420878486877396744955595255875436826556776903553487331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30409348533321483681662909220582388362556785837970790284960422231885241671306228338627867051689304376061254587249797090580775969208361041848263374601663076975626647587145537575119559856860103028670700532634020775507535053136390700278454998210048954598083627985109280196637347377756167250997857241570876082858619969507068434054250308195102233900352239938587701201070121527294831897502469018627802306564358752212747889037962111820061803934511901499915336234440888617033610585553753564783434388475874836973003361825680202477791910692986067514050766240084343211799377610818531540326001444021604356540010102951493974848301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23954948582640585234200281051275659102346271404159988824749185071741285883920169883718601566267796316287509998901443143326520296196264447243942024460288304590203080034679858333367844070848605407832888398103869791141401802549489367448821422648506864035546404377723558131777486564072783866575559525817562537216288600398526819175515132036502060287396759484250405575950661008491231729699515273100933055458427065217712884792573402937318737585188366371799290098523361766127664322270928195063547959074995170676578093968823127014538699094941561214313052560975889617325785756354417508614773569268524186670796370074617037535419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23562601043795756123407140019853668882146604528341857399401755951084970380341172764368234966194168832165910004672791785664799615564584086765618138702428012901329296301105024095075372059011193107660832394209749484423617800485847373291016854097581673301935973056928075295373476822518056033810708062692845201161826846844592395008229831024792875084743220756113292858946427691607765915225272728737572820266787152407421610382629925028197381443574466856906020268698980345774449495737086441948030053121901508526933042198573637431011430188551182635648669103823644250203482052038462306002306921003982653635960966582632679193709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27873550538245183164607247934057180118961015983216752554600898359526329117131160083585692460666221505757517076252507809479960204402785774995187473574442085097272884414699241736839628491559652433909561197125396962681336560557191591953526265201891023930277508602649267215600692458924072945086027741530566527380698297442026327181592377245508980237094516471783844295596515676745076454300968024655567400823831005942327440176525313706098845639690825737653017889400885105327870578975830434949811745468331652010749826184486871161567667938227586857186432680180888166351741429845581316797802702053619175692438159640525144519041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25259707207446671049213587842037479852119577405455175474815217302374177085625522408425287346555128827060726589306741347346945244308093367747213900793371594377892306980373265562725045578610860068008024165934400142029741205159166455607816931288132412501255917157170025446532035340270081696504852590957949731392110040778477466923672073074316756833533433200740171277428030132139482697954502461784276737645781516059639768193540622096637875137268589060900324855400524566181480286863376970584749642307468060934110368025269276576012140224724178171557643850143445565614244237035145788359528889001631668300058486035946107733641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27093594440370229334496731537862831136306586623764877450957614045633986319458564504017753529378432565211337617257676470887397639093703842782450141015157443815425611376150380637348720672405801709427749564916673231876977878341063883405723973922644192454349441618204772196411418264530276305592767100903130630289149638524391441385174702082994337834727267126930112217110673543957091394267536033087263864006112238297051898012960848566432342712813503781168743774456254318567196919176541381535319196577418792463479526392382369649500933112961786291306561015066033762830482336651314822030247503591473691583069193820698463869913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28712313398447609278435582155735484482800776139401504254105986748559658393583679547822463734985591298563378972926266050850630158574206803190134864547669156903055901112432161898835553094142378174338447344691064907855028245292617671969023429483471794381640951848638587563804199771892969713524710677040082057231845670925281606055894048092350943233862560724631269994358111263035064900055979897676449761086417708273322191936996124450025228210860009783725028796828818176640376961848662435853704758668535252563205024959518278554634985219395205143355585959931252375578953988453355425801195744822374265544951927899949239365333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23813562974783006774848090171203729707799237385614356919775537295494842327332919529786605288640766796131008582793356010408329226659622479054043141010450745990669417516090895377667987061879354403385022576118413204104567898999280729338845804087477496612527531189844506319262967042792141947373704640953625892498827525896517735924172531345885811727441953651643717998682828815387491734921419171936041355977030201597511997349605368734077443340441713823546527098886944399250069063209783393075391251038420162482506111637604475751093177861796408607127952262268179177290427355803293849349935722207745555664246210453774927682073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28051123452532768054335532966390211714226296694740645760019258344041199769356813348072888033792591469229329025751657611219173206805561970734838060925585700180480747121681224126766019155553389869119673458928696539140838674957093408492586509932589267654696304506154404655511768941657570728348739968272002096747736256063870604395832121064175429823144145060999291700014824915301444191916749846957037183727848170589644022433280428240069184647600882031307220197908719285086567972088751936445346277092974663644483043367009683526528610592983762214133877937873222746642249734905908520915178641395002579794665836149129411447717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21574445406113325362031967580484474334884324545026576850042704067040336329199664786017019943017454123454775584324802887476685034351402389125242601156813684799520128476300072128474044598728523440867822068677962189134744380873562005482754136411054591581334552064719064840100544047520157580682670051445907874290732254430532340200991245881318361557509111042412881878397040846444866141546204386102809293556613770931826067346171695520004969104690413550087992266029349863415706878033454290513540003398850020618514317998392878261644659408857266694462557121649225382806841864162210207055699422521379140456269027595729312287677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25328119752611571217782922716351066814953500008277392795033682175837813528214677527654722799048145826764068881306891365267654203054626584588987153449649642536857746429454080966701730032777834189790199192687713767863512042801397846094886640000563251450604937669893628777026700829417106269039832488388986692998697936829852529300821979940245852477024591465397266681693690652882067377902478070239601826908825051247424590478862565328967471270643731710556386829013564530786405348141085020781959553075953558492546528588335206629436832177854684172908654417995552505767941557026292329402012164022223614588094926990089706930117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355386972795142531576795895711795865028003160748230087119521830363322793682672351537233056052919992148564200863793770815579892616121201391613896397801813979229450874252482349555562483433117532084074844340850642224384261456655653555072394403405428909646910895830225675791895307345254467959802219189268004270758302565010145606966203737040285796611321269588982098007816745277350097721151537816774200859618996927535993889105042340931371075001104590718855028771525489372717277660741690340096338315640548390273681005288977274766583637891799236581025404895763906773876455398126250221227391066875810918603570740283444889021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17323067736255307631727468030392540353171951829078229483013107464864248104473559263294771597777966175715932048280454048520147762874478425951617556162113899186764449075554752818930322357752179441894060036260100082240992413207795640586832363010346825431282815527437338090510990400243669941884051196008035144151759930234038418848971023864686959125111973244403899250785448320238476801980962089338380343263119263067405077238859329285087633743622681910390306614635841557503583827868898656685482637184302380677176583244837153509593646543668237123317624531320214794124672052519470826480840194465035643171223743335412554833797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18588097061926668381283102058522101375915729069273485255386025802266110722764510850091397358337977456755563142053252226919245387839273953056351010678759987989293708393580017095728486464608014085626114127469784435544165553574591418941401089034655604629651468997990693064327112660440247250872505070114355608199121067937999071187311882834784949906352696637171500184829874457245608337827251721078726085390660638101906682435275597182877135168631800671663516370576399733106774204264411333887178752527271714168515524082330522691251283790450976275576566552271838187909557573326820469835553166007821702600040231406122256505193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19612028308410250538528733265905449525695514985073210649297868014432611618788197520760755641177104187596083830797103109768487707503193203058283469307904241019487325465688996632132568260349962260929449640729828824865374600575152391401529484821313969853553833385395140112644587504573127070319830742454813936726222975351107324153876283918882306706518334902518326255093385074271073898530133245538403384967338547259225029705729229263276400153173424437053000160065181292259305323410155459826967551021633328148677532072428907050851227099725565576370911073255263860930905084584177173734973672359270561865496462188996365174049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283877377674390224313752987447237622806874728787197239160647247073839963416024301805716974530248121812278802971052157231882252667111059744653997409860783393155011222229668732131743758139961359901526504264561193081496261477597989233239264817446902756003648026540078177558072172538794475978921516318123346749545675939621517979650561981165063262503142251622390323765930092664137211384596657333568437409507457858187337817969931022835438014843724535405092120613265591197695059212584802388913252730930654205315171779961415470038356246972920548082437146216205292715270405974298124701964201560644742010617172140447023839151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16303178520236376036451721882700716159024477287639316253572405645088259074517737979501519194754510709251151493658404603333013306167204231539449125040652423181249920806366843566091845711363783879582692411858375056677711809361273150925642047849135203223329226002018138284056436026141661349071903618215268354379517476930236359400080741194585387908127674812453366106941710479807125474852576771714622347352366179660039037117226126113552456607680045902743519437994636514580898470584847410935476799113720373251069644845024960928908983458097734091115236822532697621677218876018037555004181104602536456793986196285390969294039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246540450137841762637077286576232157815536333471233289120242045101619573376669257782495152367143718187899669288847550358877029654233906869724171685778008975672012464219476526868326099007661804481973520455018906635392864998146851716225188469557189673390862346342795046573902768602959464941707673626964682928630781086931581678780999295876183985780164673536810359476198101488401953567135588541075150048858874916532474075785375655802482864473654071462769493295467298332272254503159910296301018175757473156742614993347589098136591581414567242498320426907059161188587472511599440224737602126809429686320738841603674087457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285326099992396488697474720309797035749526536862406151054860196809400225483542590190656461113074978642532562123254086006101743325135051175793610689212593396153812277533907860653016471427622753757267092240064666334556973307412901073143009227057611333359197480757037243785913268473533743161612108346086979284516310006730685735623573199537706717032093699614561973723408036003639863992906778215363705053886368349403231209178783230164454964729102789228511774301853621643293281178795994799018426063977564601381110452587633242240469124747645347052248636212974598435903823324248954656479163242681385219872247537862344976867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20173376329277844785604291986970474436334793717877292249020844003661744932214942038937222289875575768491764872678359235531132740666368751812778603005265165383601020162304243572830667152176719798901369512564358294171366287415697526524232922476045931482126771890451596947877350596706862949002854330947415145852085139847057375260522433052047494703948796379521818869603334735149683208909405353430729664222632637056089110560192064219729629742925677822511125496238503901093368781526831285780217835928809619087805260935961517310144973885431335368965691879705203132011984814609544286630358596196797994176589498632027895707479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282083260162852357319293864219212485045611801710036856506813205241453372004581091611812849770660787652622334734499291590631212931114295879222960666996720421729780891293974401860190459049281453304326822009792827934115904609889686714386464154432177586246251985737549103272685027094076544696440759465321142241534164889676885589169410849969300193593267240020305706977086323022459627805430087056380624869032883746875543187368584309264568291947171118606415748535582235632988622500732833577974366625793239354987271485721963648830132993429008576177149275765981172386903489847701214800060169829870636574712470714127625272357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17052331706476922754890275181463129654075435424579308363353039743086283849855378523934139471569019880549750706465572574218087226821654228814302574430993063401721500236206237586190885524156492655884098730925749021222240768554815735333447604432337435933858079852965228373688415423640612576553800415731071017762956927770258363557782928899520417379506481101855008878730699461859933887884473598888036909661352714459059423543610367157026327037074578544843223948905593241126322904048380561179847372977646501342687798397135826839259731874046534403686081071380459675596280011638650039806763968945983818629755133571889973989493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24100571680545925862425193102086772886654522102254834601944055248289620264622028911799105614410135428759912920167414235793169185301697532263704168612423790154050229121540325716786582381696583072196571858803147311098567864261544604990248389406453251805632691088635206980715374525346123314918535121961432499883060019542594653920478855928563720944042391568765596147982295362412086554697559841069363602469731808569289250600130636367089935591331724780738923656391403073983023397104115598567476283470632458687100901945760058679542887471726000050368203687909848618702767980421662859794510714987663373166469720787899457116683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17834515630069517147437369937015364767765513422364615602469609727530623332842925602134831027314512936779050276320108436270898075357775222897105106953975798781033834455060424930047787217698392188069360579443570292583220537524084564739546362287192253467020401889056681341772986902741378436836295560291697718024877255898348218588598427452353746773122040724181943899754773102121462662585806593801972248246844206636580352920143525638633578025987000435819331504491510992457248457486332043653100527145596385030515300036565961212894550740709544856151885084733223472539770687917038355121890320611349419926681413907333347880403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20341753322329558317176392855564385985489364860724427471045596199948236501951223496978043155163199646409342596514398051200513680523780516930742003289799145799442489676114962803454134415011474283628159508688746433855690690819887342322187149867656534312084539894839501990026949611944986855933765192440763331651788864067277422980916228825625289815883575936987779112011061048813001386098638556301691367323825261997818243865236591533516644107920730127482507873462780852657876544462799616833465190190704569608651218749091240199470112610247029667867339500278795318832998535192514717469126362001769354589883008304929711199311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16312532300458751152933765406712194828717998241728183600470279200880769272907733594445428162410201643780329127169154162156037475797285751371573510014160796633583786976796497670727251211008739841150841020063616961514975624140378515731936606572091700820932566199409496190240826951563322477811837261620263085219851071767603740627010385044259151348002496381217896996746156779152500428805123129283683929964155134262720059969854162746339829646821456948188294858965136295455583665679562162339945791048570305253522081314650409390593635512099124210644605903733388615284917776916408753924911167928707991321634643619936032183769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16283112837478089868978945036749499669288260972628535558257357676303291779382984441183096317201558027990852054897289234986338184273977834747840049426326309042869084485230520220898606325677394083932433291367286041951092780303874210120198273803639676441707785816712070075761712576018793785597223443054406698196289789795822339637200523776133848925063125357740484022604199216734693606831339373425815159788195893509419271316766578311179799377459737006850133189490070507521386293083597884422638135331457224144484731984404284527408539588268324242845946140384865998564833391547292861059314896016420366606900475801045722973107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17354336515575410539243876556631347549237953207698287103563556571822722674813894682056701270791358794994308512596889982305044502300832075278905282859139038727520199497970148259825366783039239371483471365200417696787826133249980976037473022683688397264609605659410268838330725191582334766269071067430448739694445941499127928445885403566674005036655472442065712147396700758728905772763961841019539814286255141525037162822296881391765680658273352631941588665611935263740458490681549296010273084198001221192329132500152666494661598306451813264288610775723135135490188911201396795173980635081175962959727463620598478324821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19244059755386991140294932063541512484475387523649411393560265221024726696121311038245824359354651288701823084134853186482146337517430377005017940951247708469267860314982993605084000978311005149699643077769224220289685779087071423545808933542056429654798799385764458076318364282236519842328906147117273567463604354237566535011669725050918791327458346002354240414136044905806638867455788979444955085195313142663340556646452889933319338829486112440351859795854106860368617410352037706143720948455651719016684162396074065207968841481729576190169214691980193812271646224732184968211593382797170780347503869779784029586797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16324821240298286065802042951065140798638765210685214808060862205125322811850209551697083281901496636899728227858191705159758093454014345233443504994841573182464650023625359871692753823435729338771264674752447982074922823335065508690622318401894872864548815957286180699487029039864384760953519997893180701634702900509536860302666029619593024697187269598675721198508957714135444823407978922464813620525731266934023968726529814682154943687869363069376424425950973703829981564198066850642505138014940661397723203886320065487559328881956664006729154496227976634971789713967687921785577335644634201704267520185280767737421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18618370668561039807541122353914359612070165826074979305597705757467749714228685265801371398629394516916539850605110146146414633392423544729947519061196847798864269351915507010186844361645829767701995136770928274417647383165844051772108477879431769949009686930982406448224213492660664300536530671310779221849094977757766909119353563618340177417812307913307666253254602983428007908010418483975537513419053896096951511342464125071673464570854658147466157979377404344893236128226027290117032340257983980700019943761557913777426134423903813011710898300138214925827424461093575725805522242922797926760768079860373571971249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18799064924556024263872489841948549471467869341136177886634055366235753959666200993785535227221407125547826933480614173830660976593155082289668465306868247468905616772806520543466341744051928147150206886667935142569979497874024107892613227550857707981926854115086297213830034891970865851404435608697652561629073088205744433872689732308906836513425030484559843592316477670515888475426679373276166980023505146955371018969239413805797521450979162134578406716881385321057653362750086754990497117483468500782170331501686528237479560737276532394336897444792483064229978290116549283051522240302839742661168767462731578672277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20287092456907090502138652285364438538713784482809876104102232117947602338219826293811026824383580321067845878733658667346266800179310735213349141298310852206198442744470908611060245222332171005127200237857945706985217421701527378024017342914600376514404927214819454009623121065373456361176077370732328028633599547712690627864192966306887785537799482615265501990273228650527630108658278643148112664570698216160693976914712714306181260117886668236269896633464567459675904926913178088668536948124415601466799093089632674185818007924683092182361817027756436730517804612941362561461855234062053570015054545292864236654909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346598914067319806279010185525444736031400256720198357224336827700682442786718911936801579093178180934931012742121711337817672553277500948438777251071134619585495160093733877393085538631317961115274698965295731797574244797993532761957402492089596041055995529138176042901747732803518974759347841888875923778183585905917815457129956718213515855255732029752857410517783784036974206963988396040428296968906285271027731061004323491829859343382557456843873131582025302970090359415207118827264239265603151701512822018962839576928893632378523603772206122123971027733373059796462085619672670713172353594373607651217724680581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17251104187263563677358161499767213821741460161470736155502799920504036135354721071099758361819887412209307884175457936312139769305579279232424487151708841549932337502299091285570189179076613395328139407412864496056661169576486589446051304362264525762172968661051603700165886813318472560912074453930649352696299142035887544109014382858837251634042044870014846318572428539844830022456374737598184931722320937542850220159473301413257183523826278486134805899453882584758568081016183612106849424518970396959263593590863501749237947092639843306222803511659402697048711427510885690182128913209923543948736864048882168412861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359653949881644744622098751457605980779176629856593801618044297106642586662312732082006409407385256986789126632325735863761277704141769689035026154750997322086505139237585481122577960323285030501820388009223328530912825392604680789445948155521484168718774411435478834437342727078881697107976128605147736574378993264655414029740329587144861506055775307662993098176707082908140559986780657118701340684046044751685748446668533704408624628532849551291961521736491418278909284014001276566738130809877673031366724104393851380647209680056968418203763035362477500409334148380689283369745077170969668590127269544276115199303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19074894500786438241837606542283788015504541760508522746646398662299481651179299076958707467405703031797804692793132410489579126368358810575614937357226464532708200470269630136299262416474822925144882565902193138768312574600155391930586280763472457859574769724170443187748538907739004978652606345947685581244870930643555521682649947452930602974090185746398003500245286456031484972004393705234246632527128361826357251602722975478588210439660735257374158022002497872206429479536697607652171353793154177915878006922924913103803815147269788400748748233721938028642231536217514210902346051454611230218005055917107109977447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16335979855501275324609549468742933607870017057133481561188551516373126041169899285006998373441403671223039775051099567490628682895432628810703768843745037353231050313805929342281117677491383319009818995228395969016990398410805841277874912715575298592396982961402280849627426311590583715249087135854409206919483959722577701001468249238111986015745076536075283079827633049736774311531969863018909119583588161692789692188606366949271685683698606009392808683772233938544924971988856493285238244449750789487980784880175689034743283323748017268079521158511729036365082390574464699983546508746511164910210221180571620974039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306680782680555968305396564328106555108804031505076586842983896860236640671708451298219134404813533472073053187907499266547092111983562110246767683106218431816220652511451038924574009419130910810178493104466245734185200402179572105081930729038271995283888026021601247118699258509262605446471459918730519792751615026861769958761296183485542624942969562104177924176637614153902535365549734009980779130878344599540340424937708391082229874666465033499677124364145940475328960636350706336109632020951216173316419916444929374310861159640996054597360311805693031777520579717937470318009600649933194472467398753064711072879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24481605143607348215108153207447804117590120343201872290132475437457112644473594727769300685921310138662770533618045746130691511819534885610780654117532092950493432760471865124520903141595190094534632037123677551269474387618616970305352511848124028640207142773599654400800412182709166524061061683089553850761456413125056485263759027932964750962187246892835074389891516087575451576769591399276033466256258665211818397613941688819230830374208976213735733957435554735437926950675472909234045649694791787988730190923544277875565779242647203605274898013685275262994349826380022680354116896711252194102762134434265554889513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21517331697544938127981814634531641947565865128117100788102247266390386810769839310007134721331773906816225306980055570025987990474633315277574398957689137761397293826064654268523947275973316671042195622906044878756886770803830413675170183313750626516398937877569362667319587944030100097524207203430061298134906332879143836349533629478446783429008405182659574507760216914034692191931405448775929427937514154242558902990368350500606828598306935117785723606011481647108444495509460568368728004533293704538545533774375351904390826324626347700692348634039907544205433733293731883773960284189908518258042799112089671521879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21744942005814763207590005430678923287021385135314571701526302242473247110177728982579994313283139894305967288698649503985093124130807930777518887544736613999555180290907399123726012964278365906147366033361223867925232146799166022301953511614458461667017724320627238280992762264711242143558407588468750606330164687106966624645458962201575789379877937652341597407977601824018493640276125569413644813729584271026547901033566789369284607652197938589773590433601390566050245250243210539292853446881119766822814809880403002320752752204142941022811172109301094913724491006105029829475468444769007547178915486978052387471897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23367260493145156605196014352025794032485534560902632830840475755829640366050208365301915313672099323698398294493955977478224200411751193862683549845160167511748499679908118108228423781123008991325873309086666137378336474953111013226727397294226146853908693061692509020294610945813339865287354098279144460441759146991343637248004263888484682828693038798142348751569085560583650223471422970481195969664195415876344658993021890374659130951192952962083076213424920348137907868082274184892848632150362253943743506149495457705415369302495616081825821646556367148680383893485095065155382455024408237091772168471390075698591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16370744278987528293494072106374959360083221763322596689783718554703342156431278586507577200788137570938924675160841253886748504621142099260373781175909441837467049712795571754575348067874116877784958402697501434253657641891561937232815762545463209628461135091762131611541175926081835370562738153807991566710026476794010409144417692982935653571362073966109129142085575308628469595921583264857884733017091565883010119114545810827494722917456792118253708517999849328621233884901649124041822571357253558251034516465758732660254973896421228222982653326661371025080241139640394057525133044991969075639094541179794251874113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16249432614017161816761991532953857950503664756383289088793925686804388530145381346494686213926304595585844216368386246122484888983474018619639814525223334868096640086005551148052995442752762130689972431963107155541749525915834006781162566180563425371833505149555546334169168055563769310284739017472701050088212085649408263244788246984791085338762260380145113756803985604186337308218908506618790972641447101074294853118537533549035756527326328143933913302241301885607415042587095680581289798509173853376910736169574647199152119253674898364756005601195557080814848895010892137769974524220731936935181914926593799477099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21366173973529213702846368065550341450472486022676837795424920736101339292337343332131615770715102641741248725164069280079652082638899116085946798483470105478408093019452425912719500873956606039312573547925223102569530078044073093410842879969745621923395677407292332408412710595473985228899849704016851276535697138074061912946122710080333247347512779193900976504121494380025851629306660009419128077091754549299301688780935162423455005144141560196273177288689237521345794313066493671593927223667919914462635245032174713817387927004580197837287915308844134469420331587438558340625525659130764395151874933995596095734683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226788137128425283087409166653303065156016071444765624638909247256425436145149933160746762004969414387543013431640854518963376338202549406070677687969554558655907253365574350404307852863307288574004080959646175072615567316575814222971920610973495727541898750118702555175666471540358225426998972378643950564551172737842557926820523543608127916279329771948278001685962703871717828557482910163999062730547678450865519271533610848195150016022412593342060010414289619211341884443141343401820460215312137107480086135519181627881246758416833375693493662432516252813538787179484908703881984665601653228144944512179257301299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16289787963768955531141196001252198613853803452162331786750158576337361019348031492712706670256866116104788883103586803330109120990515385073279045808151814050070080624248107784169511201266963808206781728358018364659995067997350647825501139497158059263492831120121723840953792408184627596919878787960440002336716927700696724483333918421717577393632044796136962923860626375225314194072812836850919431163664029218656278676448265591922373882038307016697261904057912025253698691161384854036227126681091270309840061852549297258987090483070979018619249252154835756014735069698885058815361758497961381638885325406013377761937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16334745883793335732937515091621376794605488919897111185560138186514771162296623602985651265142727379030680540905457321792517883324627701214830195025105936542735914051603683591481077318987304559214441208636277099299350236204481729582341387287982380083789314699471337260916102271797201206754362389014365246061532111286485208556494280986450764804162913289713767569713281925292767399048706445952126596282119199126112736587403774366003637520665010042602962452308607636622271535090311381503339447426854411400002049048690720737503208153222563038586174835794777119378666555668757366904062156942871592189125828203079092676039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21948188645915804016844280055363258115310945463645979357038951522625076989621746917806851083019192877041802144048029051819144912158644060478463431351099882300275318441634679404197821655047682869157090024836595962134374767477026370184595224166079431246149628891041069038665692011554939506417301764122831954159198782847520545101619736326874699351850725050766885832408754211523821209284041117678337680159077339219409243993225777589183749183599495999546791633340890885661521331646211431512538911919208810777770154292787637054035178266308668825389638899745004291586995734606068489074544507855163449626798696478507700940637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24450780474505983754251498522809244664266680827316654405140045524926921885812655561734801164633715506454800083857108623456072394714808408966691523717003226727238511613660498277016748382113437579208443486408259752569127998802125297787661733646278984740209585721207098857993833297776726745811533726898963693439609005078555884227187318839353679521462057509489572326060173496252138168117919397219151719174301398841499861810673337240656400604511679382485057372059215557494887329382815860057021932060150216780180936242821271988719994242340021803086226087386334033929423891097885150046362804013356058814420284260263717553157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23279631223052926169554838874882162104438930286847127152996089730208346929279196249693979773195791195867777939972550531213640367320269713679396699002085726802578439472681612993397485168238040369818964923459217935681917177242616883570662636930525020167536377244948185972243910205086909940938521578738372930548860277554626267180629273484590541612132127146922325947943594211233693559818962567186277044343203602093480706614523581229839517583209727818884049627923164643521949662793699067246821358342754529137629016184208749111536037502063851483170282130541639753666187037591283241691984541443375560485758156658128068388727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21721140662946250603657940527794524470498785456629474799594547255065554808040281876737606982641683870853442184799160459726022869782092601932164982490973501147243376561500094412910790975563473955269623016309709905730730222718108536855648729238518225708077810388245090632392184132901676040051814586302223746722547529927544491015913618911194955324798290720548640149925538415023663053837550694442173325874050324058372779841532007617596381499407963132292654450004401299924799820306781289175169378215763775989403562356390804459296803593335091979531082270727615925533974448432532108715219243265648986159661686532243623075819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27825867113867745563980992834117799740974227264080893910808714700921996327243707047023291213983407662157792601062958977511073651241268734454062425675276756692699384309813581285998924813418782621590273364492202634471244082969119313641162442778440597126442891433003496384911976355717770446540988097540796209984687265872274375592558961280840702028515200136095771971300836599836402780706216881626562888962065098399341620255823528179977385562668708071933330511708927131860744263218944164452989896444900689515010030997934759490884142111812425724856532964992636145249559346820244292088209764463231392089315911201223950316921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18571472270079928169146145909311932201787877318334427711467605643575085179157869980195913621527873508208246500868791153901950089061380504855643886304489939178940253727647725941073535494049532499664864572093314480989603424453685234067868699155624962189518348828335644315779851109225921048518502805101004911901868337470871226940478852768719327951571945463072141417655117564216305864589585705408996837395228454615175506327354349421620962676458936553679115092101104448772188795632134980096512094372942294895658960348661690664702854445694257436553595478409294459514444786522292230447228442077613567096210134155719956792197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17646719773086244909095095223837940476234608465226339852393679614763768810308555958511221650983767640720302169632498302080949312159814474284208497554089032372370180520114592362123334573548419896503564440664319953261535259574537680593349837118565431641551025345373725829049563273698594910646724511243597703339689695507439063143566352065647334678330972365324024984073920335144268730404491597550391562864942830511906191215003128265176562651809065507465375269727396820120441795881131274432005039956490357079825939586689809588469342596559801806462322917585926570173887196343666951066155720866393842886721751232360323402429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22347380166189357112424908941188309581054880011991782268122748638588174637087532186034133264053280135462064320681946499979683934144967664649961757147818977885869749009440011114542711525672260779140594815099585424524954506866187337199313920747475119080334910364812439142814169153541444825726660590007437970437281869248474576684898709730961233810388879892876828604601520026121349253471972005994257638219792223022141105400125997156567895373668570363291123381754130796605204822974468054677079652655215211236465669020633738578527857097298530828725670348070119133212739610081506853857024478701656797862466359879764693848441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314108120594698259231404080688103712108167919580137310174094185798114173802930803997963592634563881831747674288371658665217478045861259487342074469052828256326253817118849765767688992468494276149055494009941229026241159676798814637066114215681050664604792563280494583484681799876439011577506693145099947013017420349516386502711692426688763275973482637968726463303929670841546759104341517009785497477748230381614178578621530875170901166493021766593442617072115522646483195424177510539964321510408936352699793355451170975101721916971066508288357809081079442801198102498089491752345299481184500889549642791067342545269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325510905672321938299788731800318290654207767438469255666406664011292610283049891938325705450351284076662562373383976979038451869243905244099225626344043991572779543265304506842353096119091479087064550168295744175019940918480788756249265257440327193520076322868876226692477991267995293424145770428012744757514545210395378688072781315448971276876757563226305332855603834586608429281731324242421034581618276241774407114447413125403058737123593319008219180519014232728847988860083743216554914884393003998039409057284868461404959759988690154385937728059415480117717953996260610507808403074252987833067946563484400940737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19810585898430352751391945569256747206223618421761303739499488758303181764159781873041287365442448523632407143804766102427339027147057413740492946472168118790637310055122208150090240550621029818869905876625337093448635648787179258744293437386791694904259690103906835975301911221193397333223497415707095712334276991411168540088276101909929640281181156530855892856931493032945666588382177062438040752856045615283492627347755647398981992795186396326918854662469532993938007244396966179354265200654671765406674966204261868439764143500084880198391553739551429292801588304564495701474946419726671611913249868165924641278821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24495537554552320988925331765434805686710544631741394287295343548074104239603367455792352164359023148620376282338789086319182221497525848752544342250658645343938989721624887754861654121901657388023687455230975743673410728311445824922344014087872239053552004597612991003966891681297249891047935615774400447551325855707010750355576440810338269936762819119121201322678730065166274092349025138836443715061191271041879028237607911667841262180107268702598917088205015892905666596049329304826677447795023081213002719034447063868540889914618972165515618949297547485954102760727950315280557832269815169124584996058040711503313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16367188287195088471129296568993294162820009704374517600932916185988639722066685732674353298484821272615728999288968759154901956706585062784879842275126416917386144861838187560817099446050512773568529196879364887154735148842637439652393041716686978923438528037063772216805132797546182798289828556598086752034833362323504262762992886973031866339578816680695452889990890724025376267409131264318773882873365777006705605611279909426893784102252310028029070874247509140436802745554614373152963093020967505832739701165213617255298840351264369304367303468024544410067979925625341385786144842786336291979200712147370727809489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23017215803614848129049948821672273660318491029318516917634288308409104748188930441992360655715828544332508401422503213949866871142779184913787582942595051378420770618097556626963184572942260912687026723757270372298249466543687389821685239410779690479134326297957899189483367130677529517381408487330465608458670235978175651624763989171355449602787514330761421034680434987577301656726802787000429788133402742934937580896776284200338448849744522133055199251368469968229033324140675250704439493939436177497524368857013350612662738738901618484714912838075430047719099975331759661301639068799744747793646580962448706162279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16326236665823863918233329702940700305292254295035764432964704925289304517297603290331799040781360650055974314197649009155023091593360418593529265035849629095044342243729420282121685840543871556120668738427577880721420624181131726573136546673821700104078044821558969692722861499571203128977629378954010120903885670555034150108928435473450579043794564801545548006955278681029821639682055324825419047153186146865598702997930744797995859695586968428399912257791094202529165524219408603589938647282195249695782406621853724964756091207471005060178083355122788449522443552866762882113886949920208997750648536805984213501029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21736755914372694340067842793313399015422276072849913346672590887634349050822383648986484923092271370523101500234369589734197426579816365020356384518844624279939286720360671555207875610615911237140611906359795161686952617947380434728529586012572565788213145090418544109953008471542834736741440122184991589423871094264532745095659757772494785563212596807266237376866964843954847889582400074783713004650196858413533099608502914791951819245008874336116140794998429289613454657390674920542191983221240928960109590265721073132278114786761333554154989464305172358572456094453747776500928883389644022864056676456745268730363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23471592845460103403743612708439355176096292119772447649392534730936664364518341993447097991442436729992831175381488295822124302392102348014227324473478993379360161014624833384209310306518260745342582910017513032672164214871862621985391627255006520070765654792414392883661373822877230121394718065983535336987563001094738058480413679905833942271184779885594649628927716280901999570647016684802194780472570769661666552462770558927524608960097379003756770137227981386979581089832151711240470030169999536126007969613680561948997970236224787675828989101791631094921068160856102233631865657398635118762610494557659225826419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20805962329476687473978663260345069993229374270652236304295554743206608642721475482571243347390787824559777225002926529166670170249491138701949544713313129338098361821611367543011040693345329330729509910322554150989123206645309241165484133084744374490778843689112757745193723608876804640685306038722855203112992007603363269391514511073645263508627974664996361567043655008822092205139833182908024174615220848643005732432261265494798042013967249273727595732599836325136525642247362703070890076144364802532635247947700782483266063785173451626545707607158459537882797472360956018287142363220618079546902016396408935629129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340243811200583761393643466081431193446624317455799439984153907155503587977201345112497605704491731835379321250118641647354187797470773621679017793858231851148323410853077902718978894735208948389044037162966411793075970085730534835847146529375751788550959212192101263089177156254725036838116907355034520366089192243750219714383117174552057053089547889625937705662634500603942570648301729006076178236768178538210728226549432676800280546668253117350683211929265110996165510054128445206087199678024904159783120025617720034794117559239662858029980765058517147941747010999883411154306080765642517794929949057652580848983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "28143908482492720866339764205135209112960762235622988838066446105161438215378737834348510707076714063139920323018069586214368837225072704039488955721783167936113728254920048350130568640002487867031213481800287399344693323372340689201938138617653206921982695009833712995129820312059378295215967175024174178852550587032637478516685534777710146539365157974299754961409868870379399262058356879486533740604728214165184730085404166946475254510849749168597090787017287699384901231736673515469776319176495723809629965804621997210494283271462935684998342330986687798439569196863042130982439376041969277849808489754564142934463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27951901797502432039585676449385951068671006021786318050785736905305520853642510340819967162593701903461887042723560965330428052115201095588855858398098144913666372849064205914863622230987891502650492147631347238215621311538802992961424428096179415104947246845136167980056713079665090969617741455642484888785851583777388037319143539220842791528172822104238157121705530081723431010649417911067331353833101537506339960082486602522488798329274762000342271816155371017180505624893142270488729702946721205605246577528332578255979504857611015862390653075197790175742577753267234220512462785104997622951547347396083877032139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21354393427832603695083740366914939198620954499143963366208986919553588395149026031056219390139044259767824099561894103360728439384273529325236378079286811823300444633336952368115107452371772760175809027442208795667125571990186937675606437478463113030922930405761986977734912121669270541962059303882584549224109235196214371547539899158438413972364724393631442645026841099100954051988595776979540436373055619204222253617585457403248691903298225101136754590504986076477206868130639018880973050755122354820098408726686883098382057658361736083078940877695506807331760032137570055918308763256037331560953652305251003277539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24248663768596387244478406808516562144776914307192275292595614022836235098680198223089743482577150715718671453952188595962922390780529118183727045427253790885434182273700895120758619983510421734579102825251404155465746309490132190079598620893834932041176992620085432261840752549984814205811226655885927334292769829737917156124001675989808549131047084947172353428693040482054361224230026081414583794650193261513548262455079810235200541987709034667978084969240221854183667972381344412876738161908198557758428130047325049452049936311817272862123041785532104721153901663177476638715281468025928843938719286531521581864043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27077934855999363974220240504011414965262886820321263485132892254655631409480607697406591289228520862475091175193189264055398748460134347254923623068964127931505574221823285651052295004404434325040504378652683589844353961314565536848646076002374602461695952235107304237991352633123643498586998746427725173820050950858563104502858939515030944563208883904763379365721666823253082735916615978025385858136381859071273973868626929757579384402135106362410881529984592880798032900288050427735897563256339448052185298022230639263286188126527643252313698820770308849022504889495090043096591997150720313528693791465559061962029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26324409608367866065636983198721896059409147903377409344388300539607700183344822211173941583362535860581955709882696725095824042434964755797920979492463193938533233891837724127764801500736278615601699384226565399808982298020500799490299832045696626648575181959660811397284121736443699154862472433087634304183361152689936624682326906414332492150585685945271497170152402173895067162705041954527568899385915268578563588512600270112510288607974113429477449797698862566475239215482457049422707519411072640888455317135481534544661807432251241768364698591425784296729720477520472301087061675915566081921307182043853046534539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23998477461789786492286711882334337401272856941693754443035091146380274375600620795581861084358147421419175916194760223301522259341350306784638984979106732789755821360554455316821044442095565725509055943407555253667192330386744515232745637492146488477503826315625377076219920076879350145757720961181637630284491109041202201624637825764577693668743245984200322467835147744213212922348691610829921869303037280690591301330377978207927541379854015114852512871658235395268235145846917735057083918797519579646395907489011275297924445855080857763371960070488645620196484746349210328954788108636462252442030490525409416796759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27466718794160616617620993119806460517834099086298502377686183553470120934236972849319869289054675401188793288593964474986725462435654124464050535292132473105836858787633695327874740100061474291728800603350746376243638151134496225561221765625264685822260033556067080980674049777746034925136770473036034405582655638588633818195223412408966081318167804632860396258098145220325449124173792235316466231580514753570162647344091710855790730743366221617907283175351367541041460900004194666779066615959095422768364170193782767813266569774047451352346545122920594090546537671501883904666165622325884068424335281185240301562141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24375990660349892140021335119565182226950338331392706194275890637504403677667537697911181517629976159093270382037578455769304716430909991943862619994601412780923712081808057964697167281633825662037261676786535974511852829896424329764432941516284744280651596473133584565468153559271195344865012438506108705781412813717765701107075461249109149720449094694501315022576086331061953228696320211372324963535881445376798924459553306628121842195140259750331096926799122914990562362786658007576117401522217842050803656216663103266442505122239457533447010749502333491571112626852013201750412947681030967777797006357044272642199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "30634823511442616145311304794991139523602109044522010277276460280296438628767210962368524888276564030098269992473143620115267427880389800497116276329146367272065760270402879233264484676564446719493153691148705487323215191223798423335061839929831006291262196227565866477266099752241563939010940107383103225858450405499259698179471006644858377107255541165734595311806422053419656737028429536103015484468390534139098247954125139993433633737026190826401652446014942129511206996564407477682654784540529404357466053297109420019937642885578150892714383208327546386659972981427818909559793119309372219814484492456655826452951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27926274635332351805031065801811814119433248243831701734993408444452393711222139165881014548972472701316912764003217466492330400959137372383347506000976414527827838768276682953853006510575916246341364882823669044599509425896670254904661592094633077686448403920541292700257922430721915177869170671739730158587848657673240172714293442864897730401482883613934706142915499461682877065367680521613423412085688780363131463454501708995280921582064592144102142447929237565017226259750144279619230487666606123246333766996555303435297995936231038316157739239678699820619738769078014656937667753041038429567892022452471208335601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "25616776581513102006737642613840364529520402794553930563084925993364982768841324658599391207686284526543662843369021033989204453432849175390255484032277656002932375425983311590956009820247923431040015831041851183315624849697887912557248634391172015043930324753534620518758609817683555329829554837473355524972105989466151587714178962831554471310630326897983953647379093480256933867376673260010912834032738489083487230582013783752009878892137628268710706895285157286918787670519417389983098882204175081678734891805285592124878148920956864154089236726671638644186835142762527980163779835168475190330407254787727562413771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "21984718722800752918268315396038808415599359936619378798178790707420904803437396274467030070351810000415308883298769115238602001270850274627402602134615305286288689439727902820779717252945707617014579633244769720230681496984782318799962528459617144852095441695622710072631814217451419054574926989739909295009648315629006313431021277116606689328278864519232816166433907091552357797618293290664635807212917409590295799110511509808051172959592587860811574136250459738768937860911166579408954772603452086207116466617856357210023688462046600252868899623049909820308571892436787297783221437446132402323640669246721922029067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "20560863847386636163685870912052421800374445672365705731534592057807664118472351836860887917850112800227704621083703003788763894070369308371294692489185658293082799363383850257998677221525932479328593954463232000066930306897237183672123540394716462527666958104331985974965681271908168320480215265842826743018726488698127258011446197676253678336489470560234053530634042797311615571717938853384752781381828928027222037636032250855424361737813269550490686447717059984960871592508430945530525684067288005792126339509035184563481510745274199815172434040414423465169396354716282647132448162962722073139970916640686993339981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "26131545743015864566239859060165733811432930722117981866455715470922816065238327889204584502982926100588818803956161204530594914358599180767862506186013248991712648386040952108738931571312123475115150335227502842237411698871307762522375646182128820187807405257557796594572160433384716531405161161698238197155622629534370021621368381387355367259472935906828303906013541266609598694268333092296443558778997193446079075985852409393341165224844223826051376970143346269612063461439792668223871880556298296709836521946991209266609739861868492933503290318677614314110185136155954515428020296986223206214431766610625285854601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "28973744532806738407801885392838909170401870617358073744284405748744788927814025697979140954102243383232772636088765785731720239485899370334154011423987499576290840112946836856294194063734706839129170842037890226811558792260070067913521340624811102074983429392288589879524308218754627505050887371599629902004371891022136562670918005474172763096767435790667228029485400153648027676693610748007035200136220990545521030498480779448182853295584148943402357861118987855766860366359605058300140990470992675593109470518894503036846322084022796413883768746142685875180749973157144891796157829371324804631602108102894477389781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "25801011346929796509066797255264973937605024685596490526266700575724889824911300830330589290312814595317330641780496289356493937367857323156445844824495472233074167915083708680894054312242760729676178273773795342073267839932376105947330600270101439595970371578070339192365954500590580230034103437412940342033118651870012749978605589842414214452945944368588343453403819203039600500420596584280522359220653333877180528053569133792736987729868324713033731400527762629348024872901157371746356089032603852133875437275899211084666644930245456524399871707757693156613315931200664451962117611036906846410671403316709659875231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23260425643442857241889188318574399396348112214985213049675064918633354721970347932606190437525694362985622539737693681774091287302063438887072787136101193294958485124549930452089326003749015448008766766534346313790569215188513290966111803907057945496776237351549717007655512862552354407614077036162773873313798928687069872717721836066857239745655247546113752194032766528223949250320203229353032313655579676471515072119539380703366880617940704708177242375348232942042036084639166062816990102289752562768903592491316610396384667378548588187928744985610287539318181511309667590383918926401500027320329897771064265465439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22443073302053662878116495789801416254951160561328414321777834654618119060545891617529664334103998059860132833118246267989634792284471189773527115374113163994998431948190049871829592345905752266096660509975892007188465886870996568112019611618625723632021318541694694639364705838310717744356855595360996592051942976986998437828629768147223183172609681914749704717330514970056330727653730247329644624701897904227775319699664660248140074792953355271581047863185411514503230761229647276348632238814458748012708909319670029403001245479730817110674925475139907284935354936229396551158992796040229045001884608695776929511651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "28883174494677263633868757267261322563186149224743712534439250489122079393623979990063953328650339966866086050201604220176165591755995269151547996974587387353628285060723000689661015839223774408897046217578453001784353805343226546651787979362285171369440719297066520517626081951133405785746186407265565421990851481112334281749493481399131316477336559991992285427145142341662137662508358953074307733101491880674089010197500064262638726185187821506507768320643622838067482468490574269296260545400817012590168619373808667293187017327618179152428553606808422352640480203170421500484999963595586787157314329136443403036799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "20362308874540777723181024745112421430273508350048579691364726321297550771104035732976144289145109603754234696486883560694218701164570161485277129798726160629233464739689290205371708323061754311859366765607063182738559666036116997472338799137389995404193214640796792927591517153575512775449019354088593603393353980276667721114607867420858512273727102127038804262979762887490643702770792020079490327568239051189296228849115604349758627855390129071398838589849080740484176525027754382283017040475411487914556991864658646525050192389929050981819508249453601992449597215144097021179654711767102237644297697995279442220433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "28262202518354669986401621154331581074903286391401911745337850166672014795675659440407006955351963449019568849331847797551439766806967611264914555143895110562951880210812777314700758653963759439964004673058933726539582195000167623183587457921036106031370013620406217207221485052135849819603242069691934569570231814359888839566465509175878397633773009276095629817010948739246183024592443497211743214577580357663848020967463866486213804441375542096915199067829423889094653109608382388586379113271771465702878123796792949094127318334747880657833081534707416482269055267483224272002533755692898193573326330147011942546297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23504108629515502355163203151923313944235021476964580473121325230100628219463044641414162545546013810188989130838013377290608859701929808645175496076004872404556247598476972075700832618697707687343916773584490031311832571328522114548497382647326130667784476627993096260268990482306613196737593904267695328045920443254827737402992456852530653827565088493725237554953299606998237258665742800415639557917733652715440279780126597225286164434332283298478928038546172614658207936308309794970366058079870486609248450352464901432303605556677212909124984944592553050727762373618482612390412237599220261554903437977097548199439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "30119137330693032735832756934640366371561236757095730806186468945579101494106051045803816969259705349573465600564037932491395551656349862186317611172488675466459980385070688523076374343465891369860376852031890014627618836211446597887285949737948721431643832092334834762190874686520921589399367646721888487952085958208297103195270449961616857132784544240494919557938829726835409170461806330774582976365944585574049712106241749875040324133226783074177317929589624748859518964229217473221897328136906980641606678609413605793759301345167453681079862420359269042999040126247103858131186546466911926346725622920530171781739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23447192327038570858524958692003768312195775027858148111446485391221923818619811737391023421699279139472215197287275377162692676067457082292788900100655289741274171451385861105684480290035449893267184536647941876751771752308276379294215834746501799806680660801972813456904830087432033555373034852957892749313545389421793790449017300219341129698989335070389996588912567989054599508768609145685254548368351725785328320803106322402710354850202476230915509480748883759661259108195451921272287121868621966104140023974657297239603199932704196726764477688874794242001086846113770858755053807245620134059062359598325386188283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "20953485630292799759430855358708898978781012103466949665389325862258809918017052675669071208282875480098950037510968105348073096768310183293086860605030019207332064505860328273939374494155357012400701891139273376692006901606115731608791874079508204577841523995015702915984282062591490144189471085764176996329711449547920366581609621695503666461735033735375261633073760926633598295972389481315556188898395342986599636935943916041266332586212163318062784057670518773629886279585909107178430916823038389735095276266496903251293872260568800527557734099668911284575343099679293424639983719764858033848332683149878674712913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22531100030773590874197856808962840479774101442127015026015641911265390209333827483811299419108369098865762825670695838733466489902725945239428908095898649715687246540722028989783943991327297830458668823863543998528133404655777108750172083383461537687705436258403010170637425658437869787300519440203300169023315846184570963113317818917323977168307000337813258368759865942943293504835230177098763039189400179669905795235964548419074018998115906787191086931770237243306062212642059767299164218793667210549934763300774938714981386935218640166829659687920730198884951685372951918407818283976418899605947858870618069942127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "27683930767596839458548686487347284522107659951080457574751923455520609536513770062939124608437597511547518118311961115689145444891082630499758967293278194596913395691702071989708619536122281334720190925020314019706368317174230060018352502817056174139866570374201917214210526832959821818111336962082797441910453342257349782176685250383307036274752561336690685207432488005894585382736430576335389726679998711540784485837498202557396339546936693246756673552804836793506620325086588638390110586924755117761639481053324827041989179474358328332616581694207302402396540323050867753574679669163016844646958698037799771779897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "28483803054188219823181116735047086392050812779756053863579916426745985305984197371508027922947767909679383651987106909059580925800392991583798206318404876282739123686076828897456027001675396692578699775241727082331889118638290202943959545076691647475898485462900550155453716946672908337402413124782350056974140051696630387264668261763115316131605186932065397172192778106796087419031314298153548641722478355017542432205664255319605781867533526147271797125127884319228484641726841502760465770795532567935706075196591076559689759194024681588129879297042686034459407014085379411464827006605971746933393415326701754401981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "19805326185148037881467390385171791071575294889577082955254147282324277788173908257836634865032432749635686174055036537131019722506853946488273153403964012385377175272708679869582518552083494781057681369555396702224900069684653366776287484456586848890979230323097915028486091064881895134792773117303812926611917800709652582398291503501485713967570642382010880953845387502951408213618819928154888722137997785010782686741780279348998886880881388112632135274824634414815274131391321788055218091052445836348438557877627556202232401789395762798550225684006240289723210174985214357092558900210530409044681974192502529141667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23641349791095382804978687038317002296156857319993288626401942022002736615864823163692312542500934976650700348677149275802546444927562566182354232901437320126121772340446092387505677456103501979612612904613717229184713585374959588452673308795761920705867751554758151064942977130869746087675211777259936086836476039346293382697924243204590821314682099179817963027542333573587673299569833621259947814039416319464601159483167222439339659809005880035528492460715063215828290693467193448816846464661486556249927013405578510919872963899350894607907600835207227566501627084048530249410911549017963356588538010689220308479543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22097685941045764685949355594149175977367355982766702642801508595594000472380871123263278866191583917372541782140642234358197929946106387466903375324034239513445512203119429080786503997149092729225649035678712914814434979838569950711136529379925883095318107906959954369581779920855853261743218188621284740559466460593282366706064239071762677248429221611042053352332292051289353518865838230918971599001457094236869935590384129619848390827633980247645538234535943743801986338887515727658839287724727195069529071908310506676371189054188749828003534282706682724640444583823303907637054113421068335431250095318320842971491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23649950890142822587211986513318246506088346144921248676842622236790277208022849543631681364618443537324933967550030558422169887585647151598423307746075188006815686746499206986228501788862406834639881577649842785283963238503736005943075543173800714163180250449701801598211105790587786438758109203136528250851970446630693406569684427428786839262337847377561568956087497371419029459477870180395166225288732885110992650098554762107365654084567682403480354932524996836949208336022469896441679728198038874361079529371126935697488933950866916534098543297422093706184920262415734079990860945660791794052173685145701240824579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "23647498522189691014586682744668413687408133020376286669639953939579127149073069999891628960123910911186130701291121630527154211416369730436763041187247595618198020867221338810513710391810458744241794545552711725880087554104230550100109736246473511014156125217532422336853280320500731414026587765815146881037578518416865206493895854327689030873509025109972858054501158239949193172170254471893961780533330347326443784143208653993977305255755158246084518385049464209617351199302675775621016022489021227166801956068112275914344551306954906181948542356203362530477622416227164271456609095785018984716267284311844042068137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "25792444018261018197702934069943658079013307872680774141694031990113522599457135815276558492804779175502519352516770707920394329862594691723900110085668719512393074076834360684809224865970609061405446649814536322443993227716365441279172944733614761617084708293271775114584653464082500578161028119894686045907665221295238288939002829571730600776652159569978406628870062827538307968259930867971080467148350950481165544131971369425577029117367655930933869526247836206361995475261878207909104603240564728449221715987033704425123406820299228622507956178697256860538283770655283627887817390882450168545248735574502870089461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22089345999642204717608748271827031290803040306022291013245993776268473332589610512337744329191946674769586118973866582047031144528597213701334117524951112093241978193532117871085083107294131459044433112378413451738203343942567850708400470736422105480701667198450625518553465441828437831486806827396048833034220700923163911924063747384053569677538173853691883509639365043307132869377852152821893269256698980562603699517915318708488990548874505043958068737102566869668164544245318021180386368972722979878368892345736527773984978760967293382857342068317736726091017746880082933159774363272838069085665177827261258217353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "19892514920698504505436095596415532112080912777050621976216962680427725982085388929626935956005638969334245920512178307949373403128150464266104026780871955902121793530426499917757715873294159358983825885871975345783739930871778595565741408086054916518471327522318894719387078203870671996078822959190242859819714714108159493145437414913554843861385458555333104992510000587438446937399313280654270583591161182480988735102748333604395040352869640956969086358823936130053610602035403263270431333896725189913472985597821593218823036748974447084925637319737444454488799126791419715863743066201191484802982573232910956596289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22706617842620488976617284198701659389284494900838214450101057615018084083908807741776481268901479776893860944907065639910258093674143017496831878778478446914798677541671509385572762250340704973432131656170128693896444176940702525226744132409038483248764533273444215717469387002943496254990950810600124411121800773512118572750971418921941606192963431427631078608215338728394929188073827257507740284800603209685515114648207218498647517641688034913051419983932082877371624552584836376096669707039197303017012506156694048749560615651571214111762674621441561784397161697552321926341293513799224973538762822026652842202747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "17860802005173303122673028175259227901049471814380291671982074342909513544268610193048609795115704066319507770939667345961709134117000463771004457519785540018595286935145020770993292210548425682090684304058930349242084625082426140514226031601619930999526303773325249597129506017552859840627743475679957751129347526285838850600835906107867967091537585705185409245798594743740445760129040814376870909469330853140594146001932568853526602886483061656128076450431718505200111832391171431333877500725127720365194315715450253465241055838176946707716470096191281732944506124056415138700236692094041359150687134392778829453111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "26083469344711732617831077847820903113530260906284569894242551334469385879076016239203093794951948537162186601069622273637557547057517563221368030979709016052387045955338080035506571952877336304808676663582918786750953122215301762214882497195215054689701235728255649626413938877363894653435760930934151518638982668556289237164065754756923169729349986126983405493646545641508738074034396613026644422971175702825074590323375792534659048077979090820492647704344214784917137968783072915200763720205911016774536710386944291516814901637189382921338239553358618344468756773351973061824106201235068594042626239122675608120927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "20990262106181159430694636950631570089112231144159696448473929106190122625432679654160287697925753567596350503896650232110201210916920289552634774804478751105669605127196112132414381496967806075308754913195886572912103445365113856042694282801581694871945618114804922014695565814263025428753547329908035920736379062207349215960314476798823930277432218529229269439498351033767865611966312229851856784146832498151449449081120209965209796452343858422497518721251559398760104103853572596238606328669675835491399334336905388487207846976208924624171209048230949981028157034729462508858281072673092660433904924168295338524387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "27560702347840389607038348023866867820520320405229085183458240826970070841420766210781958088956309093855753977511026821018130128071167714697683815744415570751959527855955642483371501122586924377004772600369587977514772443476122026507722601559585946389161914818292946668409539440848121429079477368536323862621773164629407032400449055427712082630052624477709038921753116205421995482962860407052817709796716460069612707059833872701997110001744012785634758682932195122079467795307052434604906447372245531373434209936011193815517265142400518945027471270753462798282702788600260028247908876688574616934432976623861355873299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, OU = PASAPORTE, CN = AC RAIZ PASAPORTE", + "modulus": "22949437586145591890405266960982856915168212818411387933888242371685808234919087533458423707388262665068963452477543956579536656115870332077806747777354452408919929090693266378246229474811590700153973373052727700030524766969476200245950954466972689368460187403079006547330391713013022292451493935246215947752919620571218547478848165269099958813498995087325750912320094422516481347168502096068630139648269726048594907289868768788166349252516340047780867164374828084812466432873629134641200527013647995190645276721394720883118498917563944148566934304451119257555245511612891063935784275878025377363258030908994655571619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "30911759334119015494980248250266588041305154210132488092843686224739695643675110530265194558278702708629783186784743882900639152115810836614327405856917587517344688758203526691220690883185358992807404208148389917544950419390084547304227551004025138740188425425745713307404462564312134580773332881200388570985935758277455344441452763386150485814267930302207864023313933187314289500717694637745587279629393661156032561218027300236895115909149940890044987597382635895631668639829998777417641868589548529444751214796363505074668369148489297458164589231964397433109604465786184361770126635595452467452212108478626277637919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20288677912398551393099211081238453683288706590966728138096738958075038108722325778466859309686564763042643230511018078081610175648902845424414770504174804433451134017135332314673653521783815518702164749101626162365445477858140781721740994638585424062307204280630668106428363768532434004428908774444828288283148360281547712592747393572623719954832774166886758713449695408528956637784843119240879216102176189881808532270754282098880548462754534619130239727148857792773365802915410355532505355241253826353504085291003303142876524981477080575192681310264794204922041400959145616396148822113733732229642618980614516345519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26336396846609849804434535552820831175182618146589734706076326035294328342444831721537509111370699671686261853905068817246875451961019722690618176513610150165150525142251458577092152683602728480122302675942461796851106089071702699341178434095198337223785108503915784215357113463545939273517792321542757253833197104870261580249376757642636606512823510762419565075736414513717114880419054826799847577394003984213597941482388094091631268486408608723985264893677290857072204288897633332998974546391464843376639369347289825306057086900527737417418608145131359591960954595836447423313959537855305489457742859017679298492859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "19848728755630550163915793560029856996150318895708384159137471466063578978555990173190510487139910548536215656353083032543431612351110448851134147267613729052435375149732852166259401717522515135141173381170017245088256062304434618178675261698268073900381842135477965649240670495809628986142494550517154318763445312979366000670960645693205373529526914481533680608031512889486026186554434987858735829169302708920432688420097603254623668536833327807981086128229882154851948657785992815535397414544156913453877680145805451763297457059400457155916620066107888447583141648968126986410259500158565324162034383685297408171217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23858583608714067833064001710196072551578368926842639470724998445420241896417289149418289244558356819157586828209976176386180748442783542328299992505681071474380901301321887515305584887151026769494017462818044363242416810302308361710479240827342281692099818044066813616969457987137960350583799761177213741912803270629004881926021022787676108701569023315534409864954306945561694804356915962962709286850855016862720767846105525494644501862587762276358281185436578979420677346779308978502090340773539809010137320583888965472700490864302240471023691698775541376069684958965255311975373051081296231240613779144537057426503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20499193139623810017532752547829818234262873249626636412032504232726337758531100803229913165889476804895094641112395109985535534852826940903222245172973399774969697245651944611411678937215873048073667931337291809915831719275607967436544250079744240963021821720941683088373589360290605591030699808890672856480914724646862500244138005611986947208905143771155775508741542935364813107563950270351382811870091734493198727026558134837355877820393649153244043065275312076227916914023573500455360505275627149404334578203789815741197072323570735818667454651071475879319097983223404239065133384063559141993776146115170871011353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23505990304567892786215846171658445369925202146442266250423472812903971987814756599220052470070203710365864257719884582775305409085124964589558426362683586301696074222164472783132094199036183880299792007182684402223305502362174668719415588944814268366063263216504083804946152260766027028470861736919542243965746780609059809231010648460565724767884021055318930052328415729928246818374827916411409453520571141155459938106236873111065508658057166948297423415421926241176743277664648346593636000268829958153795000915781418771766995951709343423661363194441512443327440242386761146145556575171516355528236533610325339536893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "27706903496232896034102707861520013987372429471715147285246138668284365755926511231216017140754917553688545752162880067058344704316675973573256185147234232600493440199267675767359757208501006142594293589520923580062557530682242400755494812975722358591212897208514685816400958437918535529869404035942522871916471231138435762087167184350073966379275197859972875551694037264494093371223202014120636449523357595722467795928614811390276227843015194280706749901028678491525748304772288940850077299299533240468247816163803084635395060739370579747781458343492660072045072914262013660231236239132728243488162757957984417310617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22164840707399305223619759550475812126514409601528679279526634729676471275385749078014425884940691287465460373355998899500133642493929901466518260206736933957481966248431780927131124413640387071257531385862295015577332212824525550614235740194191618046867924239667951564353268020605995819759996256249980228381951772185103090234908644477770884474465705365684687485011382883777877347034552523907238693250269794818479001161092236978275455437357985910487577693286282013236017327904169019713446060042660646105736230331813446285078531167433315482805756528612709658799289638870965057850060722595832731525201418423566793195807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23910374225399508985157130565962325436308314846931696182865929264597155366914669197671250035461988347827565387364949853516455687899076274557099525982640777203404263427088244292558682984724388668005419137565790558291255768879587521147891504280373371649653325388016780601657298022662243824356480631535717668475580642136549210679303409639027902389203087308988065179421178890353104841800589091011303106749937829414032476494400545843888512661980131692506535503809174692385979022917343882720918689819662401289275438759254115744254339903974022320094306852949625092677075799715269934289389930215969865787071180496993732884571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "28350946586375456831871627938603911493912778835624748438943382552350684621397593427003116292389474644867608834050608775761207614880811556256292784410911941509932610209962084993327069796399715723137032075617691118558807465260196520816824457807129004162411377358604063033688437706358365808142427383868606343718324657541145933012371669802368267791893586692578532805466172731998268850181661866420698700117215761367033745539028987246139884807573874836016527690211075302394805557442217635300522254902084378516857365868765440146522531642736145155662688676139106629401051819804291460217440790159292236067221859114849712685397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "30590957360808902126235735190812115154469464825323200365883469186988967479191515840191751227117322106140623968955207680861750244153334961238530737475087117345188441476286613482474377487311440307106834097939317081591960075422728481462948798804092761626352291349170446148445253832100344941070070770987876116523660790373611944423349406813730731665568347836892076178325926045643955804694581724595541739947601488400615339112906559343448294911597674153161305164561430824956866140164298657701908313309660244622924501258831038315557576654930967438859116299346540876064962951537793600254522603300629172662224392581039584861287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20686363543318596739938627136497899717297995723837618125276420331025406030084885475737823263420969293195778829741457764975223354788796296511499292024944358355899522555401803201591782907885655869602827708458094909839955062594865305023020792258106767684819356660107191703993674708156830613532703827468238912578481821565989631912623234206786021754372558562685933517715494276273022930366807208921499450712051859680259584246600021509800443053448512962852449936685253330018134660416278720869662885229066172422356220298340203641087044325628910428706256362649547814320421159675983060597964873398667907876487757304233126474129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23163951197044452406295710876520795898987712594061394981016306282895924013398694725945488095555447511124052225078293115917864661137117817366789380478466832212879598044439918377674958906194238577057069424432608999396728855291309322218031901381506053025874863624362459972894437968604071840204618892436039318032641466976476941044984659647777148096910969600203176720481655541293167147584972074285209119128373832840743614102620285668006778778557816341503661854983899723299639417159780016288645825011580211905380695251409674668292338210194996113099130973973724261590575668967117341192579236085032261359819033029350067055319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "31617676886992697415097635155955810905794881466419851451550111828796020613852608221753459241935214602073503141001775917254518649261334331238798222640010050178717418916351090014420929662152709810590980076162704450388699832843399811450432898390439321926384052993844490508850740940257690227827359315750476126559107274442596852575978158442121643414218980115538503555739735058467115467265882190500505290684432156898058026145074039218479971941060639305582727032894783560299706212063743563190403227269830572807776765453630066439254940722451979889487126162523789364790876842147697040343871169306993368511974603526904889771143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "25707988737992446048072157185119799698419093963020350860021712270097851600537604763250377830121116227146641337087023526708260917339744578330743370934867357986968851712438427516935943365904953600264585739991633013534248443031048747017676109335554212091981237111802576652329791199708790297245370503210181868446579605917424298657782342617747521529315282792115029252392915570268026040965601539806105398384561317390658373997238609272715551419876939553434599344259179403831337265780221520441982956282324164225505641972532724068599289938989520309918967952318725808368275773639521119301379423394376932088300366521593421105167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "18147652698006104931220531843862243307644038380499668305542678334313562435738611656159057449318497402597785916413225926478830870356577366963766764358552919219630004073455835534404791840298179927514157052276294580061548597557711645527246766004804291490396282193020750337069870138754103701828664431600367565099321392971496464331366740722492156201913318626362852763434576842958927372854229229730426830211005152522155690009019136972593204199745208478116450412643222854497018698855484275230919078191837973184596298368069870341285536189788403613286941543255156592870176352105545580126571454937265925368739234526327029134449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26578247897706001114779016116809681289426224203932747384518688135117162847902566277671346607116857828008034897291292575661972636227096627640197777592029030527989417746563386467265486864012302130526315372141894077861675754842019827651489092603850399541912735210692340184497299299769064410078916103221420326174492774946342653264631153720952424762314237488368317798038369704546662201458469416839434224123135014602745627042013518284491577159534348254566408657611010612159054428093739477778483383405338891383811940097128473628175115229622916315241193131965038010001746142267923780562911169004042226275877988175456923509377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24317717982081030966704306163373401165701507820408654488565806588622895263821733217382251226840772686318541077871870784332446523649374298778390238691757029162681120936677192474520133382937185666469871519389714494432212391032205110010567745621868557128320224988752722039222742865251074748681593985529807817466378484911319203799936929329167250020953864888396800114763348835367071861458905798124345259870230380974698513875328181138262896824579612493918658441790721539849385403844228771031101572221226512019934956227657724540052779028045424349717686735716188249095295029344234092331289644147844919416238430402492076229331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26247266479963278226569489812090614165871578800766917606928556559120307971341506085939513149310484875102514319932617206907204923217174211857049368932283324507935537435905171508129867679004069170660504102130865475673780031479404044928418990529061842476196139042975814691701099782324981838600864092242946057889082593374096799957308422628365704131458808191293001788284924053509574946321478965210422059344446837854957373885348260912756279588021749322285592861677981116341097669178095837245574333805550455161721300447654022411561063247886528720702758412278780820932228121028443310729075119634289948107903582110255055038143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22519109675305521048545190509625538604214390946728927070966233220383334005801408577258218340637866528276726177365524411869548927547716509453486014428381583463198501472284486418377738818579677840409280146834382906458655610249563268722500551118964897516995226608916442958842279478025314523983662793238846616599998309690618026653723716332591675323433467409188741671119143412948135073250165122363619080374136924239686971896440273570866565907127211065258840821995971976299201359526287827285210047856904267555471577976534760541932886809559408875604238151106169487602490018999156921551243230598986629011634403059087299691227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "25478106853341368205124304229197411149462272096849020594940734670818153743920439176799953936940110171694138642607370631919602983038341864019624925322963175782875038540570564936151043217109560301359513143307467975137343875957663963748143848754326788279561073614172840838636385845390115179397235601879809137962672434291728027773784243691908429708024239030122224414593253061540500888000344329143087763946606818527146459325497833237792981846116288771126211768410424354023854088018757191178033725736604926112177069427609088365515020430409538519976029242983367547650398234910811102045845831856129829287413066062690376136393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20999637952686075133304404603040267521788618038274391586536630504780591260192498386538907634483236783917101491412945306856845758026457323669818847913546846918253602278953235262131770854426889573469718532944482332670245442906949869025532186502420671604163244371006536345691665747186274906874140547826572061338685304881385778795803027244382923953172506318285767467497320447167662802715982985816916778437806894077603478652456633420872317095608477288896514601974160192781231904342122602594434521934936272880578565054929304935522876735408201282538445936412256248363708858060255762716626650088839866433635547493756776220563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22176862047984498183865565159235013469894918340462938929537097513144110679430977211113262315585464292556928234766004979169747611181008736124561801336893267577788657365194399726407534972379549780872100682211442586249457347479053433061008601815476199237668918240935367507066253922469791821133066506577042560678068374243232038763795652630402856818487043950707560286154905326800836547778667476791466360373257332194573537700960173513456046788159985416087241797654307474349692251161749154218755496652775770748853601827776605745485664399561848232931669043885584955290986787211627853651135119228371989369463108719794733816781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24902890604464989685090847919450024784203927450725124437813841449487807886594329737931612772821967745040347271884492805161989530550800135326947788858410429990385071744359938230176432052142431728635966430893912555361093290150803218939746103785031887107033724815681370838518040118285270705367124078686669691464488020046621195774771882123742831681554987509134719278232503658971312731508333873232316826654961900528097775643306300353488844016807195012660195696700204581123618236746708537102989856946210071714322159136650293549416076119964342728361003357282678236494123145946602193771845636474862380516227002495796080951217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24216484762350569970731862203920738648832868406539575524902614672583732479528346484282448396922065551417817211102987107957250751536543690830323508313485418559053799507466779943279922999616974037281984186546501893619643821167585965616902601591925772970694972018310882031055936759181048227012426685900754425248197036374020917695455627243349351642079285906653100912667354682021310133782880012493034686516785247464473234392978713846512507807176738919710376575364108399231926410400858876960326570775523277768712802979468169149535782635225469082431288444975005218570990326784288633435146805857866463225117526215689450872691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24028429344249102152457022967236915473452483864267600035548673709062585677113848169833645295469333410103568167137234973586462369084068938357253574710646752682947845458146471702381821506723626114153261117564917729522636928139293619626042532152965698509117944841921129540222443296285399486115170500153630028719150394731405894231776441157382592209761671128891168301751075582907194430430462702509696246500065965205907850717290329430350810393124059153209289856548929857736788139334038632072406537178631739664914989030793060438319396766952974995569745291086350580908060004229948000658143455528141130855261302804257797321663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "21653289422420776025432320317392038195333404383752449446282495323351081697719556598987479056622872847353355841911928541490224567801118033003013406525757129648554831486326253237240534192944858370022344639049213105968111041437466725482404235080001825500041476778370233295727575505571627893078082414791147386914131704058204548096683424524630948339121101837997789655065381392595301328810340557380122776081795726055875752098845986595696258705738375352587924650741687906305112286712730188568851034214675064375416116017077192654457392447388787421123965948194851615877712727194130193760239421623498827376451398337509671014081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23577441474868142477630614084982905940737755770912529450797721383410100204213804825145410761559564838891730746544684653998914588698978069714940917634090021842468577000495096993400882137325641626507853733151752294069465974766549981830532159954654562234964543618876451859448124667759172740572092407291632285273639481621696777844228405756522822960791730731862882077010162078152856251465019979031313611200442147831399072171417502715943118199099273465463120749990513976218045051820137450255630977141038239399345923942573067391478289402685310610315985923950139125527463949756230008755698045646765994639169379937203960195509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "16602819564085455215494824905601795141264331353825342578487303492722715118130235411727432729446952142814575124283643958963414294318835954109996132268267322479494953300145485262270543641982033169838922334413743651441637413996533558276450910625262040371363841418290424065220671407343364722421841541879960153647214974265127246783114739080379005223596379098628239257598714873514489604738325463884819915844570208308873470743205758614146281055888349907243173569419660906377118053435620407839778681569946331408896590244027688915106180880505604797573856852785024729466595168145331582842452797025080354379445968500724448266853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "19520032470152262320647888739195177773345121359070900651299226262889009500427858659151798862740186863877680896414550353766232317778767297901697609804817699887270016407843623255823095724702056601714768742879858861290873213127203656405400616102059112368848766221920461616796071758092343559130705522282433402965068816909569972177404605553803160058563617283826934121020214900846955839533951356652143494832412254334348020159578464369150804862291583157975484004525032433518900174913533738607120993568551971504093989128684439261814910229721823194136194923404110385963438297566134364974024728176766169097003253982698854815017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22453595465448252339480985842139781734785655583225950500330598122969120325781062572774876860123097180590262261086591460257550660919818249571155125379942270324632570870156176985875947959762401861716170642194525738830761212387892061559169722879363318592551843896596906927037662209244790557763771744800649750101288561255388952828414517478055534139695057888519281867089435770740560227485791856210679557159498344729132477878655567925962626476127229561811550244647893073688241788046179846894957398891493269287967150221731763366872051173121942246848651458807104164428563224396003610299196402552822518282627267353823638786403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "18959239238064148070655707858367038154037662268544684332335132603752717224764948013615376413155991909375166484368736788883000627175805287748289165170519997141467245135184240050048503714531156010960346137082067020284978001745396730896507461042767173509065886249235302231186854763400084349208476456998065172137963817006681374218754210995535510269458846178054033808152327066554494694573149882545910925562679128270982349126589976473314374618697912786770025639677146015229191814029716012589028679303073400238781712076440376451921600111805580968931237760251820256986358553170393056601405219570423257154953699076249748153391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "29215066814712395341536096647099546993494798473877252978099787131015359994224378274671567709027338049803587113434233417115796027319980094807739060905886708025240418097931855509339827364645490114889220422604119303141912580215572263975195679575159071755127471521039522753986236808054562733564116607015325656297016248552237653652835221376327816204883940511056507156438212635845482009084541050749452856289770610814763741348362657759500368725733705795906384302396597935711366667103743380729213312483005324356214489147830507586726060096907055990279011300666351540063029845359047235919423925399615051617018478817618077859481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "17656813256633318393093175217233426412749627207067225160993070801318753158669713693145786331897380702632269100936023348659762345157765595347216632083855444993824724910466965522491479452802104663824822995627041648708490995609431332323370489979136732135379373706152370937838904853617708390986341359253780470057089011888326514398023990543367102455937329182036090233683585696268208692060767711095394378976339380121591528480765457921897459825093969601677603003581613967658099060711694670664282941414463586297013132358836508210998977324994020039878723062233458884980489612764293494276047106146889295602302385837980571675937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22756770559677929915548335445528733495273323583054930343146702662175173266885565038966285803510331310479845134952353972855742924050298978555243947249827919061256703435366401682903806242970933766157541154792061328078583864533121679770841141056942832435508432903111477893403671859098925715628261915415821470370855679320385303288600568078565426107454595210272239369746586862547766747141081555624236168674605381256001383491648190622877156678380820638402794772476468560571556395808504568991164510524534519049996586956428766294537785363371330539618684917547505404833633535007956095657448622934733348869290631978482918978459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "23676917312598558905337083960510221785810783984692491407096250130226762582481507285229417196731838419023277179124049266706355445151348582254836296990149604817675593732129789498690807144361119920306882318281459045431333627534498352082849415786852446616245956602834420701154861760132386362641481760390414991137071079105704424178156118212512461682918942848777811463995270514964506787608832450227676536089960701863963233061482464895377831430570400615935686195823105190797828258921161112112154089736503603475341000787107732719188369136328568851807598757109206956906458164226018299594237116039170860412403964781622901757783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26058827900263043981152839217826602404315373210282686469453812874120579471141799606918978478851848053603107706472614051209018101343772326677876601708336570500949896949237824617273219075651600475245391244114745150578447727361051039580551495533338061173452775670919066666910372701196232461636122248217665006532937581712580407012448851699777541260100170248748458459751358282438863819565322706806444205919319750193766142653572809949937063503114708227757257992867091560908310901544197452778957740463744350249125312595148213753931386777321034397750239245235329463320230847279432647710057467481698396690767211749288344765251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "29315147302978878146706522932480275109387510618377974493515924010643973669413984079504123960125533695580375995899629794652621648850864701847613547929643892197609942123695589359314995645653997823443663464243086025350428167576465973674194174160997684103829873294594284080086348571998566929683041674741757164353156233767841147478345109085307822140486057922052990575237262480779732502893579919872045502705384381718139645540869049811962376029209216901886228975932914854274425647096777560051354185197338536611493279491692443391942366104839804650102782680573929730280940760753056878266314733599991952016317748702806393251187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26260632211648836358197725414159121657856903779608750094510963116521859273013151891336370813086407653614320172012033127802992427019878670847110780616627962499717921781587494093670686693911145009942324982170667178153781532189446065665689430743217382995557963119977085717091507749605940237129544803109896282522612370243758183065065487696701193076718480097820485134104316179957194721208631438014239672057401962037666696459318869585322529285451795266587849404534185755373535870707860357306498354330866926171569602649675945964498381511585311496023294233962967427587059952824925715328140335899603121807131838930554523993903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26156288338257483330774627371039852335454383551229483148381982047234782947156485877507291659731499607737987871973290097268103753019805166047382951543165519804242485953818430418505125485172908835915351362660027211255611718459344063749847125171067789142065686059781169615154180452881392497727559256278160881789664587129764655674975591756420341937525901445157304076767348517548745874888752424820538085620897598426749717023099287294921375777200920872963922740326888778334370567895466988053037738043137719383680218013506012413407521218349873337151154731691837387842523094286689210184093630792355575012953926218758825941069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22762005684485873068886861025355053429206614546197064979798602144418378637630047306303188830200309450873634794032099845830868454962087167452425176023593918672677620780516253518293285598447572495718336295624430548414308223620921047854177013045804325345352644209676595300442177651571001787171846748824754798987051806937168756641615808292764365122349497351745494892838568453757883026598148726149623980263706163251079185518140177329614767707966126079527568607661730084264401383498872895240915053044706744504971786516998840886825350964151245601146308872068375897107186835086004929483766459657182455670594098200408100096181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "18816911663837502114167315300782590641596315188335021021700971781334265902667096214874736997583021148227527982540588679400075611848030623802487376040207824181078607282186391444185543466282660895105676866664618360629819744702945093693691708864222016904683048715844938552583523679319313049846501284953533249647280385385646657603533738586847596901782537561777584502882171394606725098447171712196008531679459244069292503433977997705175283551504813640248608775160472126921695023143487100660721202912347168859147875520147362041734781535333029023962667367534096539982879423020610791568579032804648262839740500521176510612733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28124585619151961283511650624302360005708762989311601508698901906835125027807660736079880103043793262732287520022495546029729503125935798327824048758436699074410255062312038838848115119025964451450215160545973522599744357633131055337703706576647658478804150279048462743665332431805631209185676968465863149900343384768745128419571567885069151628401060096129334762127691874744692617759416992252489747268107109712591585809644979688294667304992877040160665844425846228633076735499793093660623371127325715016875192623741345310259598988063825175628312614477448164704171584479742565139614145872949306343233442163492413769633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28274824730384260075155912637445754369329690642100467043494234402748708359663673284880186911886108757173465497328472703049446189430592875622312607400886093513397129591677595698325217357070883302265819216692315557418445060924805558843242590325465071593820284240984613311590072806317965625200351018053127527144546654603546076699536337469752842735207729041816711488949812236716638457315631074458034174875745097597051627735358384311326082416942528153665236859165186186669188284058292413595195012934735256474090146570717593545175192046654831252560526946605598198716616011356064491075864314046024195276965892060983246671433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23485018742978254923950078750457700697410203710162572609352587416348577759779909880470545396829119720051779400263390470044338310874298214422805331763806900454006756756315778960227065364252949320586547234758969104517375346037319673374622329074710571946866487202016941739170212652224578679126406498342467558434015826868452792577855772490423486706172114357201618830237282906156206339234682175702356724642461070491060074469627848126862286996911216827166701717872367536900557437237850943359192379001957455865797004729444831125555537304034829361451105869969654776212016960483701566229604049543880126630580469055253426039031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "30311142290485975375379636659661190010109540721281622539898246547873349551025668305915321970673310413703135843560749909313898082957184164614559524817174109359651727909105202090168339886022319554490005468318360771485850535587450750368516359710984215229309489781943889678483722535441426873924511446412223896579400063440018704530888006137650485292068693330453470190256803768589433459116020711977608107788144715934436869609048574524274629257461603897870103840658550429207051166669743284529755297731003836780238959887817044623654919760001447556310019441886946295228404209691014198353162319097222547798505857504110168273911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20279761706959695619937149742076225121554954217040271045751946629720625982484321434360865396376109198645955274672118016542672653773558255503017386673302015779310993491227151657891557687037495521157586288400150935845968118705261165787931584058943425016339872799493778099768858117180734740197765579953604804567654401880614280575370928930453193358129503803342950243426441620590956185678454701557815541775132403700673581385752940010296386912557441261123770410402210971492344743733427174316112384938387565916875694954173036552767630564051535698236799601983428268591888180552722285845074983050842782107265595451307700610033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23790315523140444314735957689853424890267194276113406395334343687338503679380558440136343388687989742131980821071474419235044115233736404546458044028199968059919836821714132488856128294335831049980376553459861838501152471405377102491048553675842483381682193604555621933809192561964632712010861923387895525463861614079485819219555539690243816301289397382070657015154308289584452238986737680812160680213091985629236243278469472388364071249397028359452825034200836680034593512433713014044328770400875478209784016454370341426508439162700435865167263220594738544904337522846748964404701270428428637039039462035618903032153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27797659887387824467851782518537619979590513810321102746527826191785434408043589272447882360921032550958089721081113614957453944731503233445791103177701576834028083722152015952981952982904479613743550621999759313217890394402692179128568431537789036401826130687976656147416390044151434571457291984091316344797018047061510425587515132743673665429278068225307238112723072606254891310937727051654635573230998681229971794897468761703445528970905221779074027189620894283920465785985750901479077322395571280851425351708010300423246400446165428760382038763914914934571779015182048620205224211104568551818238886114079035721653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "31051798181422261741949004664402171396274043910616094153495452232721816426302771570225096485453121151324387848991263828372318034521237458208050613819683941761588780878130494149508120451015108968653928248307277938251574777535856569981097385663572509174725458328577026271510698608253663524336137514193510988288970137425245792898995026733379257930897176325383179118247527238191357984247621419947084952512993573429195376347760085335733550857493693624327774077779591944683868061188907607008680579530206724399619367913307339003574125434124732550053843940619211077102179692661192527915083368921602834399115395019396814068053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23256356440420036290925243874570884871925886211376969322119942311207933501503603539138743767829674355394094875744786011534043339577859068063884253057801601538346845446190128158154493699860769161615848337270825213425255488967461324038447670437075006536363805998770136536393542610938628148055885299310199947699219866613776434315859115670362353523221888284328815783340122312403591017459961723144107453073031596340581280819821813560870397424545676367147973235466625740292849046065029981444915253905245369427477022043781003504482324489673056266038194251110646764801103450538008675848843394847397708270717968041047593686111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23633589669654315000247615571813554943255909493033303108993892232724941039778593077356525863754415960807810397349022345131248888608960001683653299841233409412925057069373071412158928369145722842695585110250422294164891474742544671066940563384006319409617762020426200803210594062772310065382239918529862920531937057000048820456749482629616194965781617569924039988837173190420712762276692547281656401387004594525351287864054236284936829142493182935526232941160778366733346294048392089688298392048836564844070492147712656529603562908010071666546963606474835038905968623641621378768300249479793734284025041578676372873713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25406121664707477128630548324768688747667421607093578865607122360356400422515268544220550786283797190664578281675894261330346464782793500826921585069093028755870770767076741248782512641713909957271064267844475837581541011114467470467908931036778329505452510610779460451780883345510627535726297314590311891586603383668176260089014425344730218159096298599188484009029885043910269126651170296991681684442298044090461726398072790189971154222189844978150265953973481982729410613883176534547718449681820473225623720058628590038252578613452814357242729298249854422514069367630227029531004911648666006763162054172199447660627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22019477485119445147653613528819831904837206141160157025689610999026660220602320093768208750818637866609997899117336887374640804884660585848801676462904305073643099427030241807966932417497969942763262498874386018680600386321844333417693267547050830769108650516730050779510823448928135648421875780488995522277078045546837938477634567868485473491934328864256875455542617866553279742504460715501723607205004359824416340103142374472596451912206664278037932245360566295034293942976600632818398072762666290372470846683136255576173629522945599390326195464575434621341996919360016986493968347806410846428066734636334646277311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21300589502109069749484854377148475740627568148990978743571325909126684112639062596863960174577960583836897815616179249989596748426620774883163411161729050722809735231890064305219875247447364936668635457052686096258119782179624389542291379983343682031352913229922470580281037311136200116509510466805907349257030331113977729321106775523697656234072336593592141287868701597766265559681094477098826172395800892471047204146545933695761829745791598605189104691136020843127276042311585610037201923002078404069853606673696291346337415401109140288119424029665887888840973913866039589801324142468229265292385656093573210416889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28981406669587852389829103440298823367869019893413129564021485854565626937254569854372416199747369837085717055836851149816973421757759322227552777815256060028550083456158620584041112180023469648273554496796759184844528744854721853075904669229731027542058493109584096849437825373347545602998436993728472254110988785718292116453057489874333543600597060356657826669909249466643269653634147303701907467722113815772036588104973640295925019160862477058405708494116212294419446080210027984066522213955043243084112403742323984565433689679208043898299877835870717754590744188274236760670287205167570990642608407445989027072047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "19909644700682291871460219526993675908841676808510640396267129503800051612055311914142478893018705242603979818866063784057283044135208657638501940844405533372597570655758497828807267384100293047340788747801315347798762244381799842678034026617027497925756586813438304943022793183905014713287124235613082704169073275981812360243320980850762240283535668287186165710491183030347159113386487898802184753473634215800902913567566903171403130251707526141987755293836230989349651715899887043678878431786721291983910379416909110332215777438053632819530489963611915624173260842724306967809468063267199157707365844717431748577929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20710339963833763374506871031613154286104283935455652657249730188708926835232041926700518571191796554246076070698215462093383351797276263343035764704170160528038806414949925932394219747880717294155262919931806816775647499352396959237421685378072336912809332434266736468093344958185760852005777233774954109438511121858033832791195407468114144721937371051383389375869806935597861647993781605044914498773919150095711677171171995107773015277868310322963139237403999164957494696880110385064734569932946044521750372693104703764205948973219082606635408289713377364048968932539855837255485699775525412218268969824764047245651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24647075008054431245523435869069086846375443064616542022624895936319206567064992596419784946856580013669763353597074241522248538333800485807446427323845890203913766110070211923451428289606521402466304475498572917541350169480371375123334625046220645506024650447281292050387357631390367700011572002481966411681751630532953523678257362634851629036387635832697766731401484089232917796927273076405114946025863289971626309485506914339896496304970593563676338603147741568926799393167285150286487079223870570319248687024041930558969677790495019710194924867064939330327971388894884216834676631126293429040175765075482479005611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "18774941009378653321063662198749805111723651290570223359926970317013800939032894417415434668098535331599510126930903539143318419028457615861142867929745786810455732778194103096482966336842356904714752024973556179043878872124474573197105780349355519041236181536435052655368316394274191573011068607474092873283770563634953220315706509752957652616598689668268258267061230493213157349264040776750058571074358055831785578389360393248093288900231547229447878102689505884220166553948246171689932873839239372749814546961913438538489827088806070912059660407317082639519088159555400342339216719338583052362907164491080569574599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "20232040280988971141801970840022683681788089667342296709992598133402532217642605046487560549730796133713647849717485978255059360451781712483570905037005318928097174575400133233076477333343875015954358731027119890108791649725559674550480723955121703445300037332161657043157788735622506504135607832371569219952826298050802698990587973566750914097258752928164822780610943821332652098521156240433236952385128368933251601893772233878625968291748204043023346851237174448298331062373596472810383757503313323640944549301473521427690926787706067056770198792403975920126449966307960312624370290678164436463937169785282104478087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "24471110325761525982999632985005535732686054064076338749990178252753668900035372968979049477225673722089189872338669593790655771099444371973349457851859394570258715012234264043145535585033456197352017039900114824262415469666502574047449025067901881445621825986539259266251924154092279354726554596295576406272493389324361200131047598874403457958640577196785809450057492328460846338752955131275197661873344781904163890274650337713796114415224406170832022128481854889939007433061374087973121714975908021188636257646288101021309669022701447975883793603669231396151495989913763076615699354978113025650808251791833500153769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "25158978973485636328977284414355954619960616484548083665082844287565729118892777872888345573055006484645978112697964773231287851917079969044420191085429813955006941469624287363050800462114528045079929095978699015402811960048602086753552456624737323248528039891758212085072241842101818631637263398643504768437958216339597605027054894394402164361323846906387516317227005037446625863856003209660157300075351178639330118428455265016272375858190603803457594004698681384829659514611749868698316240382407146375131626169716740734698538660522888786697569431888874733441084466575605345624048418239162083635563536636030836133233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26470279363186058614353097847612689257204240978842656198351398948812287107362549444173997860056939535359055484707880289485316231116317186241235845218396814335007025260826187735482758599144145079034586735178258406020164581138139110248662752760965559324860913292138278520987151103551817132183099687026081597813705125025937979478476030989052061294509667632055148507723684032646435888476607176058202879271035331096498898944735901765032536672674878730159538833825357255400871877075349132368911269615714281386418743203070785343128580435563792609866304798805869845740458959116807774383086676628004908021205819880809789791319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "21185684021953469789611117200180869894462997291678368978381092323350112850684392344691354409792771909722392646229383963001242240287174367668958584852103903461371024533278525966809984289747553159767881018080312820607003469504184876859404288956551114541696185774826404510387962019020719770413009264137540004867165941650668235158403423026122612127856941285962700714412336573975596532063602443624410594442225736794446597927174613794636868947219423126904392767934291483878225532391707970060582595731038290417350851199347576155549564940665544615988244860295250987757096205811703071304607087255541130846799638189700199994359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "28206278543552861115264065470659612813832145845292585193385966353764289824751821190253672503157092103350818292983957311238018160307794530714655060603035746181959065203172175512035017574955128895333907251906140481425508151386174440353510819547391404576734016461506167020686288245957101657559235509187400291537227701267250875973141323025593084724736417847431036907621851472826404669772432384113216371403002506607841050421448416522137815164820965312202681826135217441305543696540442082549371761673627671059874805179527673033916179489231778524748550234640017072378928734923073575894300562119199169889635586390978949846149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "18556393809932279355099913278821700861263866252447918615155111868279748230218194950517935080138651213112258942841209613507921809591482783332050496132650918477083604298691135117175812896928510382653539120409307530211930587917140582668656554339394582179851826148568095055526643263594004639621867086739101933257683867237336484043558446605342219123532311828142202499666729673243707057639629427646443082531949247706047011350037201618282411244579295016307937529614604373035262629246298100111217701936318253209087338079092591012328745730473597822025108683449675748299857038940284420191156474379757703158901258729514255119323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22351915300050991043357045367241305459188938018925758202285820007566183554386475429495786333369517339248279549696166749671342879424033717546470961534091520683753096882034258627446626560676525158401669616487977562799431137598512963202458172970288593922525585915702620659857543198841972140043331830897988434012880198884969718479389775768187720011403297987908558692706291432590402383020602480695689423713748856474471174612532809167700130625481378061817556532488857651783424559452226267411069884471832784905472173752691094912639509889957502419081555106032279221758137718007342603094994888070040248953202878786357774654407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "19325309761870800556887404734111319118151724447327226873498856602642986003516936269101946894805604244394280382029263358599465144582112411713857724207014704007455666628651797113842412958298797235094755639203722221462135324988799238742971533075090009720836649288069700302452337047897812092509763640689006028868619118937332146079655644937007409179130963740034225861790124326205861459713040738299608046902267295957996276574566729208996647306657960981926456257603054410706336277414465429261669169493691138936707506650632965856571185039562483199142773278312152221406287726791962750415293688793148350729381229691128539942203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "28377455418340297283698515289084171503098261849392480429162653279047287640389787456300938777953586855865507264470932040930374316253072096716725465028092913532941054225065786890883561056433830749086285120991002597139491811666589065809578572423544493036102766670700565804126467805198681471719841955665691531145551769157980027745651829832540508459007831172404313800637596477325180347135586176504680908260550973118914732786669038558997466518436894001397626844103466027535814007512762346493067954746201156596424666273191798698317402967004241625656799965652387165717843467098755700007091732233204227912596905071069279687821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "28455639188625222432111470600611027269323848706834823709150082386987934846227034276437965019478470569234326271998535612841220269022736612486426502460940547826698327977795019794600779113608094680772956724059254154459755469497183934093803260772892557522333132405575183807382531510089864481364144006531743637545104704859057916903520549111440847897171836147885929260357767484202060021437793270559329799572105852066895531557978631903230501537144141794761406705410991551712055632958391037106202835386908619598584743360741201012930228780766906155072471569333539094590859692903019628921926716619382237083468367895917292603567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "27646542140921997535415014191325043999092233648619832694974722780017131586674272633774007326968051095374570435495301192700842691211533168474106970006741440503188447817902907011093439353387808922767666465823861633821295641090991525239873088792495883311952530869456624074923996459292280613367527074638496931964705573260613621141155395786270175522149708167407505933588134161824904939326812815276469401810783190628192108879894894726540874786526826339812338079018718607296796170252851684944249582411902573744639417638966956862154795488608427506634336091674338621811220314403111329238562852538705653953090539423714250122963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "25950338938649708224409217641377321826142512354544299143732249318623141115516876949912438518100230424691009250861222502502175779864202312979505261821266174489892274277243002531734201477981879906086439508753948542675967556145649307859557030670144349875947938969940833343837727220078117165589504878659041041215378975947779152376983953511422455955385763758814750337746187389790175151596529007837757676456907613621491008549729607067014913834540378859216146403054949836299847318190268954057031704227170628191828783297202463499487816469936148438067074966649239950866694090127246192593873366023948780949550500713345096457431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "25253093686629732636908539300906146985773680858915396401655388912353259656741782653828805848506623933376736773680218363866729568641541889068155546810061359084630050785141560281660715253825927726054945316975677325798171808233507507014780187998289016334188645283485145109982274278126651079070946973573010796297000466556399919101987316168691036674984644525103392157523572894933712907566028552014912779022136857727941086818313280888329240464884951488058256105857910594614498083866423172638379074993315146050930917960847942411280201187123490885032032102733736745461801072743801050642998918694128180022863184418781833608947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26767426940170182462692889502060199661482667834616680534744756746262647871171058571780184055071676937780826588629966705684229912952323562100776364798928001904490369312487123915202120818425684180192439576680336604969478352248854661416968786233802833074019449427969389428591500139491944326099031938438503215022813517289566570970601675248919841508374523980952515263471950870499465587108484103835415667777954059425302964101711152952173965951221592603154613660791283967384418800474476141615352880199718198895839142842523644776032753323938054830925042573445946143340543103232022972607699167665774881321928115569408775842529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "26446730229390982143968475528045398408404955949028409208582443462862476174920680495308359602428000572109702228193805837730599913854495155610536757556030608774368304678466862125370310711570721681235076836447106212572842298300859167572062737610063067164553662775462782668843194190662374989868060119316258758666702442621702727742429603647241745127158088641993650790300876407285162172767499097125712346840370505432108221129097522090074805921617337058742845327974620000187356387712258361496910517960191933663735477251764272208102351635622095087843168041664199702259169602261900180137364370752979578747894629429066299114013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "17113312651823886763773687429497374226450093037482226126771604094878968461046624424601041198949483734356071928321048168173073526846545143053663980485727275365976795392349657627556505692294750552388724857441239745504524045835328851958443849923812227637310571712214500908673544001297230173730289748852405883853306711603824233466378351298899131841101574262560973235601596261302031181024426071571532936411799342175416766321321618370725940475413840741153106879351112572823063568701653272819838485474806490878426978032047664914770775418646566653757164982224363727593026435000170606212291509519550386644013568229288678085719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "28894582306422378970519437814695160931108080699198562928642782977261192908865363721384441187060223775798571207368561913197707842045817179028082147493387975540640939052730607678798051765921217238894337110584052429166129290951768665665104842857364448580539235254005801961310228849150013995141633748746302180688160963399389704892667414406891301352233798509296513544539721725919343282565450604539854600054520563673071723337656307340421256046621984007710030207087916186339849960975582774115336159973958577734123707039772806172568333992891762093305848524281543779967741024453413674958707463420966163282585492144089434773497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "21520636363842892815272475153721931622057592277202323101839005441041291991781172944682840613605631489513141771900225799810849837884184249995883092220046527618266907717511159885782289500732550046573962847796140749085353380643576288238360844649158460957020254670385116660066828046482095556162571718742564870337308530050473484914794751597105824509444284813065418184607986618099502022738098200630801047171053027170913584552656698260501496650043529889255577782472079673834713134849392392912829827537107343609534834036110993907108730922498765311687346207357355366795877733735380688415035777467119447223054992683563414851341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "30407915234934596893288763904875391935367452241955496218599957970838495216009488295843118355169945016003640631752748639440466112340085228953864194331919194144118126328324966529031475757825621817991531760502149393555543132770189214294520115341738929521511221207274537259277681494751660413315174204228343659779734096001314275438802583492976431325254661832911918642426625206967974044396684528473900143017329552485111346009483152737202791529563386891498584727530072427361514004321443678185351967265603524249899064543527789150344409797083507708073076196963921519235377139298345760763637493607435732319595807004830576506829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "22667120495092576005336174273918682772524764081408379694100807850466813926596059411504064903913839894688974700540320270462207041022171735493023943321536694918661572201145394412983911493426142901335890124539423352330083264368714548957951656999855717093915739429640629117135754071363545740423317430838297623558112906702239268764222354399208642833053230966420571899387700095348711359231452415061768498899950235616349259781368773589663216842352579037905328010183128032146421167592337226134996689697407228099019000249602750849862709453163937019357238019262419353214998084954319566098624987663725440327630551729142098873859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 2, CN = CSCA SPAIN", + "modulus": "30543951763029328943729389546547171180257482398624698822472402771694845686225096654323285851730228725396144178275490738041846597937502706701186212403630197313283369359217264019425454125627528708672200122327842585351699575397833394930177769730700648602683072624115133362862472816051675746951140456151456097979111906261163328011408771868032157724525407992357724924026517636054987814969698197215263877500606440955381953533643628401007476804941473254487042278852331470689708713099112162554642007893157244877189679503305329449842285200151307358756636906062410378341050549644107515751707570832154712228926413937758839922141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26249252576704335271639343513829061199501938579808431247978152405930540765168070480211118838652647337735219803802930945234880531086520548911985288505621524062843493646458069094414961920674245201229755151680476222530388977461900971755103663463402341507113497294586614379185705690857840393708749571720591692990194844450119051095489316053063920730704583536260417325046212049949314203683968332528333509483581045056369012755652695450689603779339225376355252637553573652625929254937145104609355911252267159046523834824757776395369641274768984680872511605082171151076242869522027399902071672056671305301729183401520088803299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26173964779115132218537623241332829544081821645830842432102759591097412236681614718410817316826782109244584587273080567825586580620998414746871756655202070904177955322169738462369215514171582931861961502193888548463829284362860828874036668999631708402935137590928954616419321963582611976229896998418818885231501141849706374765449860536790139203940996333476630176526074896078565735870067868868890860953526945246231319463332931194768870356531508436874391705114406020142520523918557796499039269860272608645222366591712219098353904605073479362977323697572259685002724038718009726494209023468770844104394010834681561405563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "23615734403043348117013075717259181862874525010664234792534562246573916438925958943792954991233332117107962275834160650601715494470834375827668569782398645705003681217419020168467433299288609856179146535867664324483784023802122088589428295745510321728937147576190186698071375127653104673496038455597663452730338882258010102529750183490894425767883011218367467001090488972624948462248070337668984499857327893267008195881355922054710299350852434420748325474315185461977873236156658205749103313992982533262133949014607111039637580972062783863199291117444595982715646142724586396795819717573319787095333638392529556055709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18173039416652350767080126055521335189994768768851092502942383229602859142697195214188093431116544324581293756086532286033164627328613375119456566097476330139949181130448964161679110003529828002241478052904415876905654008423559631008732714434678678013704443903406162769336788166049876267977659058045417415154060093077541742845325971050191348726398992020240334246883534799154322117499283534350261853400823320913794165409870570854126953853533493651962883776286694420174011767962445164625851042808001773044863401796189367370970329505220382233123410948759600659564746368181374887800050527843245609735929082193534197795793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19292379536511452262297597681382538566970113866538243106942304861561214192144265707932923468227894914814558602823973757799902294195125523808692295222196637852107621576582718469407650238959838382120077611291182042614342222217290139162395361922644083850671845852454059799890061172923587469942025958657488244470771350834214860142628364373363509049399138096782249313961669668047763004677505646493049844875809953375511112639103216717261447053313500615514683167550942171198820338794283730246488763738313647555689123589972763904071968820938447846692006125412226442853674724402643319055779860493453661630416570363125763082849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18516258933229036301564857558053332577060713577418875211758103489927958199529988946279066487797921424465701842735566777101668014189942789077225897605387213369990154964193395785851785715085554427171934844250863508392793538915177873741660664085682083892965788695921823071208406140944199323513190672415270839290148154000804667366988045475822254867533983048262298601702615495062082726778445896229304439887601310246975558522507313328850372104762977345747663503895961672088356748755794496772587044981736341741316386413347370178468214693918076364182291483064080297009288856141313018847100334803621767580366131358853263429457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19166586182749592619585118950002676196131730535422154223183936961290622092227408857273405764801204865039240327103684568515036149208255294829246967314568728173975574127411655869731496640502383556105430151919119059151865467652691112038858939603690879350808135703872906517562590370768213963918192980406182461346622605657476153974685329188647530281757274943945398871304342750624795896433133485821750334757282064673118465870929461591684177444099815728535819735278345697410223923856100886897701048036506346749145293682958727191295689910122846707647211225705909373050527239429675236290942659449596655090772186601904916650669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18571642992401583031940681226417986927139708232663904263633500169349534241207742568584100588582775933548846843932257876428006269144581464552879706657227071606446913934952195045848312036636946639199585799489890975940784427050630944091899793770551952586093812364758956526542065709045639784520647014513720082202970516839609679121640279317174704367566283171020812137986004948754401291912114996279482873302077334373582701260141041894052381883809464608672269859367756540106167071547563877017641383281029354464511508097859007444971368944460690420717327226561511082592247717191120380451615432320757857069053318042407207038033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19266319894132891708171473136801963328981109444531926117693679844510590193202953045724245071426638746013436802016362929561869014966672210954074342903769420661359592748733267540282237408288578536144693639242950283830755315887719132326222326288956451236388724852881937240126394047016710014603495364993356869797196821136777249958382577428124255492995140455064377187854427596360829849861014799987267571313571147751905984476271578879472122921925391204560960308067545024414093408107678253933068718029134261027993191232267383376010777140032328683103844189846424707964147166664278087343138241635367426634819784997022361252293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "21890635720014798819597405879353229134700589748588010077393191675041200784912839682440234846522334938357276292755727018879950565649591555910101647934590204138973805267882775382715351921235046295755432779006978560615277962180295062657864105556204052634945995969137502840362538503047311670237691186852276806415985180614349614876773293310850034929414352390069679929980220416796251089770311855318241109324224793336998776999042166499699103362410127857922285855213144675967070607723416597051694077087985531623136341059133503490738606187694046438938265934286268864416175241114866292348362854604466703593431640408559437342261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24756402102947990146361711152672659", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23142867428353084288094540306657490", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22852369879737744437373451880548694", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24268726369703713172841058101815766", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23786992311632249089370981411505224", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24861527830927841062286133425991607", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25164452279262334003272446140909121", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21204900270143406250316054388272177", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23255099690029025017064643219152665", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21852228989500875058331124249779248", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23011392198080968723478443786052550", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22606680645261142250946808187408882", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21138190476079616627933658542416857", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21738742184597143175963763975617587", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23698310757598590857613982424453645", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23665872595908357296192363455356349", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23509823421616468343890012360651697", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24282888544754608833320410053831458", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23159449640472375763106218672035927", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22236418608659426768684054320342605", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24516650101966121060159451091118718", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24910524192095859546105109908255095", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22896456334237228816788147570281868", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22183166140338136164732979547026917", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22070876744761799090408283811299025", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23348227693726153120148720653305347", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25096038942185017522766555488794235", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21693148971695129350965621726928812", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20958378982957919333232465121938291", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24880287117735752062143719321217560", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25795173990010637695812520642159583", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21280836072889507619236737732473616", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23341576807842718232745663843185516", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23929563759787434649886275189160082", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21859571768784588622650507381667954", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23893343027628463254538472849046460", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23327096132347511448569277453811315", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24881696731464111930631834739936958", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25819471422638484948285186750918054", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22377958095831039011521236293419610", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25661831108612142803790691566394535", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22436409588351052131632737003541023", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24669515211672508640226699917157228", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20950104755812967014645663254323172", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25857374145127424360775686083142364", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22570513148149584040057974422050647", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22295471996879737743202723163132016", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22359705805488480443430301809189928", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21768382772420947332646068834764709", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21763183974589141224417463288881147", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21171411116568355972727195355292741", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24163267181323085867524593912046570", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25451401360127595056580291333628458368529015691296335783451052162294613980922328590005598845224583393765647597429053190151467540902288093625767875203503554942704452072606649992190923095948728051590013060195748653858095897495539102326751022393290751859397508953961925298528650386152397623988728241229606289003875730964613180906506677200246389250021388033627414783129154155013766152452748039262520568011028209228110328520927297398338747394057003201282614166172150401224631234716807595922641190243192150278873005527751505826423704868912655270906223004335304009098557272698394688169126663162112311701650560963493291307173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24215023239112435269871813019189978016501671502095581846686837450859210382749582717686497211527860449616710780601750317982572233732788759149555449732341166752451079076835620074111411107205560646822990506632881666147218761616153610474002898273227021886382775005897996343616874145292964280396100297361065524018750239505756433091934363504596478606748187418273678064051134584441671345953612073154063475962922397340657894150347337422484102428661455955379362782161953556146029042822461971266475421360242007096319887810243967906990240878779046841647011398145487880940988902959740800249140823179629188626859716984689032980217", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23268231214123354832164170401461908283939115270069960278444351246965718893392865759676008047118600248745696355726499235051101381624492633548412641522478728658107441875584308623563828403599603709876593275511863728520294515720684329594262525591646778609554138866416712013997274402540722663189027000318935618664005960475886347818867014999984682282862206277235599210681591795852275924568328771512085496573451232763281637717404644811160953468038577610977234871800698185791511853380915862392567640595575780345047021391983375640739840067220899756156758980900839237664613688401274774188120928837681763893114168128299059936183", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24327264299849224981287944332101238501455126936995591368959862928311734958618427811121663214387487942699611629137973727530535066621205269478729825345156938087151265793652103420963388590797847708007682621610012864965044521370018607448209706111208654954656528389805966652083743697101755757118014126938478788167806997853913177649621239754333941409742744889146972676542759104113017811513413880064078032960336754933907056413790994523388195363209619755356582434512669921475184924872175534288955320761754879485981978057776873219928020513776177400386272196949709083972110948436880867276853567839829830500971199067493719868449", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20247440805556628648877290990106371270054335640234919679240646032832118779510935573661441499959927560806284641891445575180825595065908661850894400822174641039089080047739330122055754622659263248371550300169599540417172412466345006512489946749369518512384276054273749577230861207827729367852846792933912427498058242761247513123224915134113272958281640071323050788648343670258839011951226636700960114557003497260733768872623517228522793475554964337471624105674256133728607946137759899427448467259444208499757602753103959237698243161012244473786451832652721430641026899102819599503015032208111516086184250940630362295873", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25653634886586729607780845895073592889544190943092359007510604346938808480809011564763301700441608132123472917625701276855942236087188287625295556211704024323595940546321194222792863122331799067887473432884897572965246174346299575467037821171589592654161504279691061546822138446613261958867135399226483091674906788583822518562238216126009066092306344608387443000690073029444393212413199179005485136637212434585059183193520805286989812276289121170313909033713415001494850075155735794455144787751652446580425267537002637876317142428596352351152503981473328862462821713646881838250950005493025125278362687941087290381653", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21803688115904558239870460430737034621971786628876964685042103120178516864919129639132284725575466122088565117841212537997657961286981899529256948244315348441609951700712324155870571812432175391679351443773716075936803400485865286999637333087869374508282998239204849088009910828586276078261217755113536850341063917550926110927896819840392377126822447739656043696710507167039430620705468199776111758489947618257571052131207914965129741372468747024212728578966645187079409341285071788243524511495633007599447838272383761748072004451319310583642590803769795369572318171884658967022263830558488853832444981923641113194359", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29421555133612360716808408818229493702796728867491218836011570500008172263418214216070397296649270377019610470117534462213254891500715071952046035133334882622428224894534182729380526499726133630539621773598022651112889020189840607390531550473851760420314915209677117242672930834821664577326511175131186974959140044804231628801844225435659114929390527492724853293075604513838734948224686646146782400410073580429055985144635725679541456018395361676194114977322119594721371136252267961994190004184905095366326104151951248897832162251522933866649377758980296505814425070484197045467766115334438699551632829875475157616991", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28264886441130126888921308565328255892326100116083335332986478172120036842791337186176290585800708403012867495316396147891210269129797214734586180879716253568307624924337587389329813938127515042453082839588114073526881642224334155429742089416027805095692375309964986149349528223966481617937295663878110720457691651135889732858909257853893862668032126447511083864721494206263246112638492045095377500220676663530165783989653022839984277549715385679097918797407612811174007998301282440547953114119067259660538837097766669965701274198284923773442815394288521421509941181287578521018656946707348910090863682008322522830657", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23196721754980419260640939977557436066754713703721645204931194462658498898274574838783663610713639764154158701787911665410500082707847375589533197097411692153848725403285653049863692038276481292459028231940566067022253123101565730464096981482796272853450666592635561985698862732521741872236560739009097596338198577145335110660640875381322360864092953366168820329334478221919981135278158027981368955634353492754134358755078168328607179612621506873429150438826015569129853191390649378255651676542160802136662329329396181960036243697848400549572182118847493299391533161542132934099098272965406919548418381831690195628339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27607714186930425750212161543399410670041415304097947376039691419932825327705779664631818519666736484808862217952639263509114539069441464637723016203513096045978475086233006157669752118964039185352858340862646569373475702447824817783638907654777399725145296264868280937860827574178558144687842203709280987442785829231471747793061636073596289912871494265892851221607695828993846362886329167060783869059904322118769705692663810070267321093128807371331994054706193559788187920388157701594877070550990039620358682550185491285170300335292908404362002892466414859707024708887062854293557645385619019133349539725158381426321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25753103712451127313148215989796852630810145520214451460308477454219714672915487221022240748328140349079962899015185582557231544122661328628784986345295309930104939353711089316582334176850433066998257937018334983650125366974560988270240184329488719886816378695979405419889257794269415001072559613807279641185778856734450608804045993734026183454789099937454348671557008835800020729712429778028969047056113821135797741377752451745223652344971392888235598432551762409067447425796040615301154545231479891322766596091191764598266752823370071698172793458581997008450589624116831508796528728895373089134953196166391346503553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25564239097886183330474452931240189850211736299706663828540186339582236081416617336393438024346821720608967359666629212516640365360335279527842542876827315756127703851852738283327141222737095447462691124846771458542193081269895350398228260195499466665264450438376189253558392002090263876522657962956925768586525526115629634414982022400047572902604271425564268319833002126711874628651215183512865664091399371116635587484953005773704621415280462593590332645489843526990639561730932381453168917968389564431083967158106875051537959244123252834368800968241453598363227798191791447487326177811133256777314747193446438746531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24535550700347236634759637522339821963533812414849386528740198391363104222799559174012641432933357945140357504490240708502961011483826601285485294534679233349460947257177138089787670521406578876086871224140953316269592472980036510733014684857061327496026917928093778973080542590741869353656736427509683134458470054327201215932381760055903751750977341716645037633400058608014745705276721052483246839236415101528867989799202147043297108456067284594523171275324057600038285448780348181118107912103414179826496428762377932062783303347215395921365803155380431497028813337448786823466307095518004741850299710610403870891521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "20638986875540629992817852604055666146440655842502722685672637233937760816159555021346413035637643206804163573212151943559382015238171106086309842842749013233816069259031240364709504710580398486843120301109653560953404177854819295992229849415638736901705501927969380680181846442106404693853358490678028696479719244303684473673289002641969010295282143796211674178096392512454501606825922024835827690601467565780286621067291125201929102368501676262294223427474774292512967806956536859684181404281772926866745669635856405078939051157738535473156575127456506674172604138656226250909470003061996000072718891212877992406949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "27089091064302156621785233052352247980192053569267274721519486346057890419490968180917329937564953615294295417639486642149888882326666067563889043979970415791287278102782889829523601988976676387917236498545752847492569672402311180781226853161185594391701644071580452935461320679548457433302939856095797473636046876290429727186278290566578460469513144473850382227250669513802037176738862736098855530847454736360915999521603372870439352092894807338123593122210135089537450304230115138145805683035016256338282920439108919689540079779380453496666201650617896322468356604069993354344340361602082197206808667821018444004819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "27225138112544362212896802064274263357885416917221100140143486187365046995199856146780826370252316879524666423014090241948592792501119516017191237542754023204177271701695698900115844597099196113695090877698531580065216437198716268030153604132851838696581462981446699929271173160074969345314408349728775208223723774948042355182244788404130818876272015445653497282961694513619634704846581851495843806070321674303308104531826651330427771666048522148798978967184868836374775318225064201173038342556385818970195793020187379722473930021194756377205087293612816727662959820402259555604452574477534932923280182211081624565291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "21121681544180033556367307161181172103431843545101278347607213871465612586331137710567439901232848261672739358059557653667142168174065878485328701767929280533252836237414899590380307010727055259039059360308361782836141824194685865691284158385007020462013500729278129664359881468594324400667456190402760159949213752233370439774723671175933578189549559237830337736016864082169144657115910417363878906933499290193507870506055582784518379154041927890158079825245937818421405483108652926284840690504576277764886596486774034762122594853263511853980523232658834200870037915369240546146462750629046689628927473774735801602317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "26020027687657465467536247881209940481781458838350499874087754756636388338073634778613944869824669017637081885012626818917202605352177075653913392772639677189127455611621795664664041914379616565617290104563724925825769548731043828142948771184307415474532002910934660473145907907338758393875939540008524316797090273951201025220931356418423508261367466641803450853262837932872398557190754514205207678695319568250863723663063021179851610587686862422410055782273334878090730952043112999202390971927756136855042739641836493783564106688923863530504901840669578601567859336841308497065622051018202774614889206299394425140099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "21231197882143012807247580367509486950952710923639013648511995884346740963323964997450347297679091007769858824228267519947994216599038388568086178447151091291946285048271348640539867251229220391758197396904866072280610458660644813136400533020056899418533627288685832915477514415738520724077880158844664280257981648381797747117594468862687116178292646045285647715258961374519374585164759788752979346374584082504175383514703715927281382446474747094618371053683974476914157918847267080766085080122511732576663961688287059975312854598866230942856384137498618950225609768837896500068756468939889747997283981612854882448557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "18910136261754354767393145347172602248968730377569048939318313566513756327033209977480628831977803756222638100342988592777559326420157477250300206759785767894005972844115026319859041719052405580856437182303402721412982568359577628432615339200651967920080819951650323561079153683955012386097513622805070400370952145220920752543812364074319001529915161497907983309331693182658310274673382447077057246765105548550687039913878158765600273900244876769932032407863792816043052915734830285563299664503200448352704111089114914282902551686982449986408938939369686970452572459370265667834871191001102611475393398178314002971787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "18771348949579229225957105151761662404374683070833186868585023317081911894886627208267151445493474271604254474946986497875455237145900823767125106120176908921394610539042315385551504761465913404855437550161949983968102104319668421751826878671094334563012299004685736302636963077318116475260255418651055036758616135554497839582298714144601916527404155347663019863222583138492327768993199054579616307156916694920817274039412623686359017142318424082679323249811883189378530606821130304893162501952403454748500463258417136541965625625758266786984552771071457191730512775957444591629047963236667583911493996760805026381969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22493500690314359614612934622001024087902273822223816100285238535605073179919830720307765318654871756469097501462503959062040536097615167541743485848453548078594281975597567183088700603841132735862384811825901563365092386001228363835080233409291010341464202582638447666414229375672630351940652071617614433552223124804712958412878082150556534212044037957591793830824642420396595243074857448840411203586212362624860997725319198572110644461766182490005543734913714854297100021881935020989467873613341428536710405571314941612941084646125522170664440962513565819063927863521044654237490036638596949025713062378509625343887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "23506192054204030943390735652254343357982363161851389799368928308910457188097139765558930449163350709978827641564656473023772567080100010507309674284679518316515739484747141837319472948114976514241689260409394071234960775732857381948605972322053118119708864526272016869836767816740518705507985451416871545199245058263187564038921089434338501827307104155879347664907777881847346696506174107720301049061280927485512179834421197170401482176136104567551859582312139880897007012342345302376513725346271826093175813787871909675713786092769205685237008795255394030158670670390020741940490910637390959929959545518325437422341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "29340081081429286857196058266935750755770072840545231822326315128238720024728867992923374711715229316643697218039936346601196160857213738920602278775357981517198221351229166557862671413403904195513840719741986944094507653813995173416916056689159455788288081987057412256394937184004342354567252071923646496472934344126401314358530097301586469395993782667752622470828022383219807768271924323982664443540745190542734983280524017497006268232738413872128032046198308177054940582850101332875163542860371029745935922907536032156633806086477627129417853271196715327631196662245188205312837937063886705624742454757789323159141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "23516657554240349848722429506062072171626075201806171148442159749451875486092106989528890096729617036611287416162043177073012818410996566018671700904360797066535895949173748879447454966418733034762857698431959276654362494209848250461146804838146402493976311525895421248106942695694167018807620978411428879556954625459233075560392414491290305252801276461272666614757152358247040674892231458610401535558762511653283187307589718373307603788086200909658783233657822508899606883833843586105376176227980954809166689608872871319593234533606968748621103964459074047079128517960042176002916536089196031889002514200058228261667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22995704176663557378290215085569622021060397462728170948253498251726639615762906726636688299179816358507945011864412285764651205402688391337447642670598775695705405590259175738978113373932271447268789405121160983313714750764564395746392122527909832947088990070428157459897950882726814734911907042264121232703028970087972586538612303911419741166712925379006096444451528308693623149598730578920981206805126115729553908463005838493456566664393742601360901882184157901645073852389981058814366569274024855033562868765007544153924804390237317469479606744640554230681068727991065131247805408203351875012779064963756675286981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "27678362879562187034275206387366621363323371617085919953177444610004532325685894006898170686882363953614132011987809903666712048223595568672766251806126742057013093931781114123672325831648469413000156151082760872952945402620457742270262273226401562269339703457822836237805529015675497496244570835340749846305650613599468722312249533355415643825271044984962392373840096558109470868517754313227277508169554015987627361303803100455265831854869293796473691021915827878670787269294417182691352531939614141541740306041919388143196628152207260288479464314390555375642885343332287138844258115821186954519408379451801268799139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22285149915132719082349737720592675329972921303315918490413563615030124374641745606485089377067499973152889156265476766782837606101876020598849678833551407405598529625951264198650643290361028707826402848448707416158516065554981767487997561067789218412778610851745966829892346193993014760682157109533349667968781766766317415248278548900758143166214284813205505300760253215781588666422542034007019450239753535399089445700484905699387958661462026233329225301014329908320250170076817177570953720794396814666483702720633403473287699050487166646434422555271401344781216748544722667591862034720101217109245105540988035097219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "20430520137512535413953761032557451372861462827522609908244486668678407678678842412277101830329403732629709502442768469485745021425229431525009660151080752945031528836749114100222953269409483841054774918688580710294333083051133384099166442652083468688006508325698682750457411661038355029731974928055166644097504439308836108410865850722093852685193970395813029723051333878003124430821809445806061395800844372152394275846717282375344822876825185288869182005754778642453228847873453499338152323728541735380159812869855599003227484433163401728235098205845203417614515586164018176677875211245108712920798305186412335868899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "20422127225049365333842415009684110501887611256658683680719756676974455453347984976616389057121549110059949587566121405990593395322958680036496951488424164798889031311428369434770719253596031036354866171405845370198782379869771789556115287725873306990612649675805237634525458751418631735524283905244199460721021184512568095343470146438784800845054239965892070608900051413096545132315992223580899810598786537690256623727479447406486352965458684559618207327007075219679325886675681029263790096703517093071165279089070393057549618323209162846914968924781129320344899964683205256760958539411517788800448195938816449466819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25802980757940592530441116018198970473748142324920366555639910661599848349090235022151478730551692706306537136409648304641086887756961361738636288627082402160344518720344455553371324915849892615083644390965937611005513377039335300477036946457311766081790654348045764785419027108440100975839656116566424276934197778919221777377044198146424993866419521037279616602800721998651673723905314472986377863552191779189570731664624429295030780689779955669802238760975067008462848283281743752189959805411896879803575407689414407917697216329668015344169439951973220574556212195808973726399214293713605162169581045665780127568779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "23609237149240218463381877650793979973779229019782323174825433752025920967814793446564192471343967475861654651407496778712273674448277062342738302787695955085781093012252067683842719773871804721438351868140784247468367806028269807395073555100267503179237210350199711098623679814119416323944293275945607691126590705042755822388110169512404955335202789355631315316005554927814243816566503626955287925459211047302581326453795068754243775414608178927347219848883296756450215005270356881009975692652016323469319972636929601312376869451886605233771906946821812809512544836217585753032947532666782985569673407432073347148137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "18012312761246101472968188336799149726242261925090764051183089979502571398380634359164407526081832140335256347519251609885576733275904752379648475914609583783906331690012839068701484058745331612803174181306228064642678642524860559523198424561386099005521941538049158237581854483919977511129074961061235112414310547233245775104342012914207498423928955917675131541199036980178700906969585909783550472907991692611239652344761931082301498489967604446589475462578301431391697556296203729685022070301513730212276678445243311560201830952132206794025864094268089308413054509667314128122800945303891587581194000471032690773117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "29583114736878409110568119413382450238997562688795937744511689550049632353428463927941357316653006702889076449261063592630248970750714662002523175905656472581026982825985016097315130463108025041948507512126897602901347898999447405121642596169615013852048892735995932656170941591021317517487792277033464083636585691960746336156282179213511817862681499538767428809539421559884154431848093235097316426573847159015599200055201226696753037958162830342228562030641335819987815547853506098619141249041103991642715617055094243112287153646427637588361670168117018729101573241070957845459112423012635999945797652098516999276383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "24019444408104328183394552095852617576638696189670589221321212645422935985410641579353973765374809471147130520887826206587825869445845194161532889407562217534356791750978916426436311490855776359020272580395825455699402780882172480860409905665421040069876704125332852151811912524756102983577327866732281529883440977004609051085418104558093905996006090588992342155430931198486109880497288063454517083172029807099832179012036630410869289799469396653133362122931842269773705586883398288643624387074022397048059929278848970782422412525224850996228613940522586317407142644968529903831634335247556790432490735167217759824687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "27620030867656698891422438633023470998008861072030189360121109863895724656665176788065628161453272511504412792052460634273884740767053830413811736651001600362724397510872442683193574876683996414441687913329363058617172463742302742888083536036823475609330032303385784542758692604293448965964328298511715084024127982959092443180379425198610246099744349167494571695898864474038289175374712163294463472953344827139376751172366289480161587772229918685928858034781050106408327616211512528562098537613253861650889086138665815992342035189522446636258397378898278645291697825858451896331750407085742501577265437567969817970439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22151156057909302757271407778861040461849597641013083204412908863269313138843433915353222180252137468589370793207599793833045054041189727597580794907966074388488275901409284226368103661543660169421319194401147242263628077603916458927410846973006665232945994136366166245257048835768995740470089821602858362738548399450263709550355333253541648595697741446292645521902664333824375680745355366958900811361152679935309436671330450941828773231934479193426568556287230681079271484385091110708491611016798190994420878777480666230506170771876528026718490980252560845123165451177045819943370092864766324251295702649245855812721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22139399249078509697098720837054224954576807702601178806108500551123573637969783636785556870478528692313480286234086938939964944893818576669073016480975205862474972047123473019506504823822500847012753432166249803356061156575990518907280540950613723585801243489291524035595580041863011850360789734279680037499435420876561121457974514108722473772633183347353097905980598988828338311370623276982551828031639835265759006068953437095915210825599108405598645499400557595840575316451212636124448295573313476705462268845680574987741455388368862429129847082565915397702607262886620404248424761409838062589197424230367698288899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "21141102016768851990688232330137609804044187669778917984403175319087407208666570384870629964261693013284556464360581171311468394787580341556003116107302636797254351478581256212854161840165293780673706555084050514011896689417125721415435098690624522490605872224878070143286117446484886004729880171050894270829239707425715828582046274656620609339566699364107402341605814072816116330201244972134991246803254573415564737980838100665588054474747580881173009283209276572276239671074699541927294525153436721093812216033553593272823075000851915932684353239378825138799153650444876543405051158748743427959888272145733868874277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22644294510457582067091794413204733", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22688511743126901672610351156717540322382772564296658786910734384296843622825995183379541760781336230875257957351137238129488885432843642318173680236049203975074315508412078357122107228756039385980834287468101451843915943159528647316948965534706371673849006635045780292203763884621345453219844907482172255092644689974552864057953670670709969484306388432268680013649192295629255561415902886199014068850413807335780925669566273915306623602856057814639176486883496040858950313370687133016624976743142428162165715355907065176496445785139067110541223469572383837338248422599914556361385312899863473934416364990782952959207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23289645707485778583653751771426560523812862362855436763547839075025336216619406536414652165565000882656703582443377033362931282461344929937462055846738734162668469893939418632720893652401281686747059801452113292148162486446173157810214539903584860563870566237619020338683878886963380418697326328595654521872970346498578648211141108975680632539725154794139548679446934017044234900448276050225722427789958169117594563636170797181288010149203206630013178010273357560992853675663452029843067004439566541578143198208210945295685101622775875035519087617493809376082940713015208380727738816889501094620415956919897243419549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21377013707111292579906050949160628657854461304286819587908357706594057692713403890258426480866726451858072720527611779946732424065445042326490138487691089287595366390383963134942128926445914664197373526386555582587888449472918804590978946359366258279626183816928576826258790072377561135760145453390824874914900624593516396421090696620003870065429724010093461609115864790158767150137585317861231054544454564484637998028280347463490293110234296119520134103951599936121949763266596428922811382223276336349009842484363081872662104053103790747818250943635725568493797791546608190051829959084985542036804568346127664189693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4838535769229386009456608353352374866286326402008441764712601463611224678627592264811400421383333133823299691935222735935753183906278678886354575728175507619127873705611780050949955236536788867606092913027294019858834122156410524434450980610391596075823873204234172476914743743691341554042482110214287662852311626879256433380120061580273369994981044009406510135626471816455500638247105611906941604132326985738671622742966194281778123636970343507036152024141331666357756428777363539655173621834202608772936080023708370930063130914809775022882202710242242350133223834805695751912258807646916119192913394762563714285413248638409094232017616740398999362435154955460988001583432457459670252514362090297166496137630395158252548027686813485678154936655207683024234897574022500681929947509563322826607358354728512208297252620010314236711950580122942112968446405679129489467746572302676267599928738893704934886711991765619716912899883", + "exponent": "64999" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "23799032648348198769959809396623939310353736187057525686195157846254029397711606170506464897014338878996905235165397172439630736588634642304450807600814833941731796554113398370057373763865723463609791672710057081322627127408492621960589708709944560132804529929597128483432977168011234539017049117774293164800440295916950299267968260412017380821571933995061706318366547197753118793651040352522889961459362526540515253826006845959652082630569090859273160472941122950266923010616614541719763208997598341676252701053470992878625384775893881378912515502368802070393536784052373913589621019402616153316631320067993583902957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28136686797849111746637889378764372345760785932940995793470084144763650102213997381361092181515422460876748249817531603967465448919996016431966547939208327684818392398498277148970425451561956788551458008266526251844830998807597359319514109627712740748737269611349040977711744932219113902869835965272445292886247190020794803711598006394794553557427467258756345114561337586164038713707208458085269575222058024050319774210255184877293061365369769845463341439737385817475334937724865239050844518473800709610752115817673711684025320442976355115938808607390513189088583414006479980949266129207585058314478557925049340669417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22066998950609051736130853536902595058798353318239912311215759947994799795917595802491906454432558256684735786100649772853341790749033593122896441075191248979656830793148744023509491904110367734495696781702162716783948151100369007744406026781653516966189393677485364633233646161106603437252734090330325597409483762443893562983880216582601811047745852655280732378218414270184606149171571658477401489159101749538207828441674524688230233696431762719991388942081096011796810757766438391987197312962267209258399079011694435237880123286367566290433050124899265054363882839264209109637211445331140492510906879635579217875171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23852488415713677677587390468222160926445402112084095050820537789152297204324500920042428122254615972767990686691456963966955468785536448303021366242778397575838169656022612282799865577092017786429339431099660952265430281287438845211051069693979624523763325558055077103942720281482296081775807754952105044060658648373819430071355228817535243494909954898552094146006398459280728368826933054906974953973035944594648894233145341557932484365681549246401120575022200568938213659083379425187464069659113630264083147091648386843958498310284838269109352446162479179800537593131807704757293274691644330682235721877202454204057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24381981697023715039034281732828357036231262248140291898529117381595005908140986306710784772248169980427818904607433533906012344579356408125217979759324593177032451729379427308836654335877224697978993743654771131436701096238627407511186902488833695679373916631975994041296777121918971884764056845142159424811074733108173243553522774544582171680988718695420861216221915670470921196032101921414579075886529440535874595849143659213751929090789765856922657066431871361143599681170426827608889174802350687292852616300777335104773067831818543155827610453929766327407001319218721616051622292785110132267339380843335781048037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24014835511337089152761007792891568800867651505070145566448307310353108620774602205907137241054988198711013750336283116199696992212778013295490481318086692787235830307751112065513216305263265290758690807756979333777103331359214076187502979900038740651459707575812868552447627531406451774084843694814462730526061413891293309019738731541448489368633831686617667012493316401266868648265966073335187388270471510366893769894759399148955468349672693736765882900834714080246184050777729147746798163899725905768245742367923578582790360598243858188896140593924195894113643084692847076454016735897408896479944316849354803073151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25591756653713642030987196713262160664230531457916956540803850271743484237229398280231883857269993265467829182715876401150613337911381809416420656009226943954910327454683650408690882988134868332918487879757868974142926209128177621640304878179523761554654592087608619980105663371861051482012948692912150798852075166362715519543542283548654941139063093037428370768848397222969216569954649793174549870413098157120291452155907132888868769384685255131122768450741052501444122788310198439710435217116111265733963842635275335961503250848155985132126180401713005905467104297331516530198835077676251822401875923748919582021439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "25796792554977813498609599187369807950740641229486349707444775770014607699620816297794131518318877618221892384962927726436824126366183411453126025299762918675296718413483558077845201177611237711358536034238158171390747241225878280279502052944494167154067347354648425589886427318774850016281840129690398010341909314589387630390948169819710971449500895749311738612587493300582138602761235457319800697553769841298856058742406527788597201969920658953087356970724651912598565489390329650541788016954591182402240954296065980922867797969430116614690762699927294317534180440488501665360936953541163262683861281407956258313823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "559063683407675616065975026880706988928039933956322235615405467357570581245613283026156034389523655905117993694090668860792656301336769237909951750116491209862468578447267868973157119345549179994854944404822583337944021230478871501451895957843144003784294161229030164779221232107250039308434511541862327880409671183746700465383444762092147657514701306317140875669227958183090429411201097965470536052797051425498569656408616501031144771713823615967893535176891828255565798100606012097426558042605505087583333449863198137469170236961868198559003085925592268763417521822377208599190513912009335855749216887393677357300036931896335712591199207950662186255611485195933015086534319257566778287707921044058269838533721363539671686978246634368265596553898324592331205147374822263905708331140801526755215858408391568888929641596056190414654042751320060900721141682374227033621544218326875418975273255792119173924834812974332358405690210924010044950386700918120614688182788786630521322627340534053358196988414609029813449212703175074776994274322427262322149365002394074932934118512394856813201057737408349708674684379923220797316405179891294396203973254022952827618043353404099855131846724660601991227321502630194866501639997223933262581998053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "596575807041657927565953312339267412668515472520858285644625870179427577082055089423520584792827750040336919066323716959341767416976927564593799748154858197148469552657410675937132399162179580309701308937229288316332270242035273918458434939576728352180480519676948980146164415503659159838858482491470706473759732589035894306396456737468333622820659380898257675785355821161769512094473258397846677861798625979983364449678598399116332166962758594628399622707494987673517465465220671156268190297349899210353773248467409483265534867314988068584578753926038825974547000702021855064222383269181445351702402973658558394756947766601782346105061157372699804394001350751582347890161758683402140108762412385991764038115034261220679770153990465651936531767025600155525604093120958879695475246000998828226748133032271833431213617769061642045470385621097019930033579541126763007179534740619706278999965776192840550503807935319332183727523468448165725203244062935254054206687064880803407677731830714860906449616694621292084302024744372776068040848124519984591528577741884993981638224053578446712929248838344803641671476573676388641401943821041940005761450170093109246727048101561376867311295341518203258465064878860467720101317121771204859311226879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23546178707684304335987946496958159", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24932923640211909698185327607446264315754905262370641815779311020411327898759350894561320777944400683597364878543595039284018741263220554445315108938260668427232629708789499107299530497619116963532425138443955886084236986516438748921738627523374668189263087835959056925934592522895704377069912757368600172667183788648656014066845496573158777620885839419887254008563320152449801693265109233883293651983407595072659816196761870131545595987702585471293745538548758433803848741447052154993456051812990512095916538338440155624051743001808837667879588312389983445188263683782318405737202889203272759590841787380895505331453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24568309775948573018010348140644284534922945286545629604763676287299237942456585753084816618640038885796113762525953180643646576854043803743730755459027746213625451768784268879676232002105203582578324846971107886457519285765776728445612339825286255048548006185860816886586388589863630160988704947740715398658455275051655346321556348690350382057876407208544310428167903127203865398360538498649889536122935300727839931595946151057147022493920378065444940753088239758131444249680467328108303028840960940339875548069616965545035339541899684890073012434051033333804327247938915345802278653433067217195122055932550692958531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28414081954687962643304835153391812402376527878210848246109531014016175593511700958646560941988560988159231559731452225697664880253017206094357062085949630833065104088735492769367107821044765588868443028569953162110822483140605746364166002185227255675763492653377644269554501545163451640636508964188922230154373054450410871061934268345853684117729580668440271097294088948131931705539086695823346875639488461538682754286051331872849248478953357279759157274406889973355979104395710078273456342796038431727340465569430272523833566723973790713465121118558861905725662987736685882304241705414011571646698606464208020941843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23480253546234281928434483555266122081108957799278731804591563288716070381898832371265136317686782486781472655878940039618803627808784360999660270496791457467215647776238989559044176989971015045461474397072944951915786245394090347167003086997395139270459851687735269977149707496446234749642263069216462065299439433172392522255100193177599727285322530021612551916950778693117879414326399608713753667991037958490222307575802397949274527223270343711218678903199169411652315782867723163122524884640820622653145167316391647230942139580595057509823549187333686210410516345510736801559172016408054102893897986810710826111287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24877639841139728999716791231342042150748127558560672842432947624808598977255232239873114914235950031877636723024722890475164875734411667712772979349339749092524578086666473091628403408522005670428410643207857905544264246539539007694148305392266172489881926602645860664838547293875786504430136065678813429468325719529504570735613197966303591392015659615158001281539849094067167186686686298022318988296335378570062743390713017513633717580239080687403954794904639508272633893175661133727645398646871825968306283437600344603668292407372534946457861203728437301045487090958447535420072783902131442912359290313053129203197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "25864178147107826637990928446793463441751144481417351628730831846850481645698910145376430634573550356705719980934079380517254843886697218856309741480684066574700584179013521796048831322431252081874802961031408674508911143858343556461838847364692170854559072237532931175756305404991308296373432640949433760436066383409459590765911285977156120931773637980008466538220555496794334034289555410801516021714657293398224761629445458587888178414142520988371460934884276795565542546831935836750290003575439279655431857692175047108046274940107461768662431599861770354968058111613015682725165647160782766240417728707951416445863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "804813084425063875218593917770853962250656154491870027301565750334972705068282319093263566296776132311376074577835919882276795072619859807307384483403693004403718026212546571867981220740119479092638603484382573196637401216713189029031728937834000992672429644132134909099086921766138319014883506003847782649747225702898374940712694336418719754020996282066609804364437655293852727010485853610131396832149812088847298061977438089253651439718630496568890907190534468853392789988320290646783190261885674186723853703268321733015816802094477968661863065733291510080277535811911540265711364082391359762430239946149828325033816061883876269812552281055791351643308708805846023643200226057408210259093429773083829819587761584624215837853057766696990889482475744157237742126713383826393188667995361741442080928031885772806629821918801034942601908875695010100905078892522999359510245143527532606777310949647286963221883087214322951584654746909987688794420853828940165115855063933990579368504739634590478276002555550140470428646075604582751053218963286710439637331355428318449654883294259985255143190777383347701318508323615030240216420357735000801209242799349324681638852667935746797954237733464688343574399205558234881017016513700417409689743287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "3920699477776143169134606392906751043212877177189642039718916771991467133817316537917678811228972129154993499362804792830070919017965620555372861007246462724289100967576208664938413483507848670043757297951819961168597635014364721246464490692246820421984517026284670552514776392276817359413022413602742314894830775811220455754005491714062061221387806985376297860986338427869350073437332620794578885362099514314507980100998294701751423780021550793539920119561673575415974787748735896483273820349671907142496804964267848601466207642821302330878049379112335640214319360789584626325331509927983749045236173518300961112185237467143812268092459544921902369543918983622196547189276607497634863033755701358673239496436911146961505475537757521816525260715411561433365966806207827639487165543679285025967689337729352078255337598606280525248989277169031491519088118132108562963060567481076046443905226293223550785675243854383217559800763", + "exponent": "62391" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24178032619863356712587001222020074", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24288411372777346146773256968904691212390166762912758030264644543924453526680654527151710368328594947549876185867523209373486360139375984736848228590240057417479487243693675891276747721667914076224636553441654281621426931250998951193175546058405889595870990752730156074685629595350376168853206827698785710874222031507331306192585390069029653250082840136721953070928908742839945775828141369239898596742938787914510790682968038226562620420279097796149545515778365045288326462991634508259075234953060626033265786797861581920761891168531808952419656061774122498112777475146563355123916493820751561551475564566939597737559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24479906336418504341960430466316756999444583331161804157120916302533678336590248728689511333563972480027867569759684854143225841949431219986652902059957735597728641797299211905721785568044945391839960289775401677573501935977814271424069101131624123485068321035770511842039388604647491845583488237137001162250589765250479587816295171865333887501223017478743252946434490624152362778583456374127667139554411497924796462711140952878819087184666066545634705661438220528849689058352530756648332548144815768852419284860786640341435049733304568607769126731785140502358400783575028758536739472268978410660821769336059178460759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22140682581647923388359093838762179024400594440701705145964399200413815228973621120083379621809524996707362273056737817905087187573703752944538459286295769819895132308235151552867066028872865720867694764775401666363334424277779893730184336459845637839907001552219361036296816285011403985421445028599174886503119514726833667894322642818844199966297208180551480349949840715803662374153316362306380873714785713015843497642613255536776951246736421818514426133519051960766845873856295756937509423517926852996188961047926479820851371224064107031780866166928633424563236741030457365719147042350237077025450498950626623233247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24872964706834247701382881979315712338101044700880410608626930136585823691636967496077431354027744977782198631566753448243290263986340949689901464337180006765783420472340735708762716167485340947932148517706876824400232526015455496897492789908302509429318540633634812530532124009348213214574453420603785463698157728077554812540414063553435171415983127564639739305238018085296692507083979764909756892459523751548812026352979150342503924875554637231075021409088318804629080959802486572667901159161350701272358061107058013456301235029438119477796720251572440473530838715361411488972217696662336956831138093632349240142279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27096159041986094724026925217640224711082707674534765475280970661628213882338110260721472033349354604609354934018461516710392856962476693489469595903363716574770027216939704663286562724779942334734692323075446085617649559767589227655071109699826865228306978995088529152788081723056938566456235895303674186055797993594511900434138732342065213877954287223487969621242233448536718117365796632384560063750765824563627763604478796585685577502614050856331970410742760890226202353306124766699771041686179970349834133462340986609045497268923690243343932345835765021700125357756495264339505704737369695401578281174048838416227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26117184612778472207410079482261371317731509127906956473451923739272762631400888904811478484407584674663897423207312072814279097256667312294639001696686839267868391308438605178756368538827272775083447650590821082616299322752072549874066022319277432826142619072773371770003902543853467739490315212570840176171858164705290344845933869641019542682322597721779012443751762301817555598134941683013197946391578989094568734220232852655818885965996885376896192713348708309267887396067262658496592374257790161823956510280026659178790025540900531682065947582561618570429759638260920948141920874076821943992285454665911582999267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29302033552504221510242485275332077076087393167221100585632112211174842806427914926834529449848176431160011604708850384001217095015105041868199329858584838498088858298730490689441903402970567625392387710721554113642903583288988043816607076113463805352291223368361394365944719332646351595308789035697408858777228271932880827351079736708163180862323527678206196965074584527883526568707138680103365362892131610013162874535754480056106025885455211839832510730884548745638862060713160499218193983593842369737147145994157605421969652031180753009104883842595292217859682036265961288423926882151868910760731801249720155933821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28254993835531673312749487953866553593816601811289807858625683025498272243676764378417428946786925897631779637443026518592622105622432317619550058799524765145817677838092511673153099393269436789454636730350735710781983569511563999883890233783287026307224943943871725837722173074870436811075184348466695007142655000833542749472820175891919059820297319866199822903698823733549779140389097418108763563844225727285731065876885666287510176292506196381188218617679236055057860251615541731769394714714824539810767645265613582605719816511576708108359198728555183441364788929579666837974647581179760736158383169829016707028099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28159883352674882379057769986480568362451772038776968585004981578225278693333547799102130894763405432587915062082465148496474234575326105385821759136009545779818222153233133035879793115174362760842019209694080335094106992594750768845203453730838752915512153732497843616618793848301960760149638047510008343360196880685663479558178763682016378217247163810196893987406871499561685670874108707284107075831225850508689339986430051452676316285408792544552423732572641619762668633933359140892474838724513811145157680654041371778117922705097996064897405260161239587206924594751637153123036795597697983924175089749292396161441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27958937737723895075730927513390163788672786478063181527410427390087904538295488601046860145462094242815194418347116493966722417033241833206091987644595816008570405956244289202329161346455152095479226942938993489857374436255133878297845765015474728179416128423583873539763501124491963546217346519465801442318172749693344568102715715889175258401179163414846798926061996879718017168058344733772361627031316360478126580409867103176262724419680231997516822857497523403192890145439547073704068242085207099290505406476985672346302096618319144273123033048153801888372868246980057176046336087289019030439825682573462357886159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20656633738112306097875745343754963795347414408337946742506524896153740953182998738225531305955774452124782992687852774207748617430671097153495259217883689405914742326036243513014737478012348621495845609855229443556671605984465117572738013231484585741574959949296702167474643517110287547906441524015708868467657832540777860668606500472521283753080775443667632679622976634519474638087158835288790942135720498075958121190849208786030045589277844222914233750552030939117887651812705638860249393981847733712593754813463844223557862656015206484623399943178715269708810717143954239949307300719763358148244513216232102336477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26784410116001375333389799319108688922291732348955699580342816644418271467991049190396848072891478637862544183447770546770217746950226920803750370640190378780722889470629783318783052099699159331694546988250067013415377779177827041810635666803230829623223155945914885743072068866024453539873006948757760723477414991480235397054052536143761469953511392925286565803684867941812421384113869792275262125304582159919138282513426175769282594322598169928116108535301141499199039594383398087066213399320297609101601089716862285031501306018740230571218194139501347856942538618303704573363341561694767998694909741357003173439589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23238311878970966340680677884753935775085415908790726176627789223291007314947649745427282998541589097410248626314829091102912420483976987336011284254406097604899759293968047931496826437294948328111873622593343073984414996055765072190931791821426922094413957561591443723587382018433104817019837934408651066367945083970501459466561473691854285458277005726233410445163697267124042580008079119133303691286168803676072752214783371221019364712874622940058299341235466888514826181283518981997399576394584021927282244984974586605742468291856504658910242391238616629835381949222209329348394205236636725990750589693912463600369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25864234552466340961551845281172308835271960702913110698111219155624025431018894921686216195050749624228764341552550484745106972580060647258614834546058524104047068172144687657977135448078300963679249551107040600816074213899395557533568199071163810690059594139074959406543383258523176450165490283412251196255328486301039917972036712962018581619684093759665305230092405277840859416158837600010981289769021633725575241929389239816510489094429087175464704808592457957272717930341211080616873388238450758403288884181947347284131050924830347336828875854746139511881503580201910554516317116730023681902607641785648188122891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21348626533927414450249014724181456827098043499985854849975395957690879766679035330711865938992688172117658188830322132203175680672606682771658281794152467514039606652936093445339550522430954083533895252858318040622401313060379841919096357733032476371374799957719654523293614598354918094215517864191677543670163526901091148921129760038724763532388336685035498478455496954516728712302315096713625045184055281341533489285315256893235236752237025028540973146220645382104557101422536657680011478970335543005864699913161998514789852149633981331843437167864963021107025907477130480559816314173276918827118695851640230993669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25853979163143251629449592696487560494561901478210114638042658698870700435114152020352183370516223649339944380841462271221915327612860969873601860573751917852665242417661877521613268973703209908480742204477093520564198716944422206955972715305606238447829032659707997062330934982828782179256423389723639532926818869485449838922061259604619211121161290964876426632830007428141505088844980291896670241210435672049498112797629113762814564881659823335865653911511356217032839380181901520255839922563709297667920134785941916280184235017268685466778302566795069291736180813977740013247638829564908679962224805060758451859991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21353094513671888436824796398474373732095658186095249878309974685865901933809110122966918097468076963193339470158218256642140824161803015806921072321942834825530154462073878740705898097772784708894454695770865844703504804455402661268319786598419972752676212703970852878550125297464740119755017256489377648496440944443045573185359703347154173342860408296764789276894951915107088235402558875664305259980602836055116727515695742104711449904983997234106689706646157857473425782644891656968996564659562283656180128323977813147374289879405146627939806285787272293537293967101696657303791367335946274385465797264147561480731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26980592559716662166603288908400965245149223184279168233591502867207830650583970409098602787866812329835136376134631193837477971258934612433355510391208232180347826872904041962454247239639312251707321071254552990801209583950742529401050012950985473089406796139227054821750047793017761431620045325430205199984589601327093276236902570642522302641238578423902564254903423042510525999632437076583369228159930002554207987757795872506317279494271279750421291061152903813888303744351845281189450261143138997843206810528067030583561357961381092896195281009151720779756495894432575605853105556785319405238714630661967806869697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28344519857391548762615810251091663181030142588064977129569926946774963790516407551246705606452366183932071474839591480072240516066824592303811841701170686955270738515722912559028377637715906086874923901629538136199210719487001464813053669208166357730918809483563002134480929921012941276765664580143367441102966371859501505315482773661924796632864907768639345033940731530692090182289092807517092166442841786627508235432560925377977654185236646666481968697057112475670723178612719222128162352326928967872066140428800612879203353095198285082232807231112363455227178372067774152996030305345760482409401185698730933504163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25993697352999728474130120114200258203090739978321869048535764882704588462329336711398276031691675440037651051121903226769299003349555129158221780385851896192234777289535949981688248860717550307946538803789945455229235375887897061599976744469718605091909856626090419822674382247779097048038160959370115342922846380122799412884158200358485351090729606993059028789738687197919913807008726482853367586548093993068430571240018709915005053956112977877117568749954451414762866214890340723920306010105664376163801502482565938513675866864723917961397723462753692013703364260073655514430430908068179898684661098166781476178937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18802122047021060163661005463952556845678728996197515555326621388343504659494436677000598336025768585241033026372312423639333789880504772157078938834167351181287380350280555623657959985200279373454075642469801507033414056901996084081833658650016674534497073285705678624090606506003042896545338864910328925595304912814576119187892576008457512473176863554136216831106200298685897821967254905111661940249890361405174976582263329950981724443110651585891326779419284356418152133250176002768859507273078937027783080013531731906684441980117141095970757133156353528268561668606237341335695087077061908561500102419218398476301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23100431194556067589757150548295727624714531094542263625136106980401647217431977282512871939042779540387251003471498305293351116475746716146642108272250260316895648940495062816871127453073068993450639207718942397986504392027053560007348265411606978373569312098287311584077964910016250759137796581293594465892008949475403909173375572152924868020433762672348396032355347656455356199646482758048334520001757268996572147825513378006606290302590153014500819311357524445438466060674030168383947795845013023484572622133918061967857625966324083880669497903552078147145641485298908988889025951325613072713387270057854824315539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21890785170426354409078935034641368596564978654848693691717588330032301270540282513081950161762197107501752336587457997448307999485697996200956568269729303903604625644597060824964427458677104488920284642826863357246188381898336185606567267002136408587918292096905544691103078962051452860085726536831407993950358153643274551834638010107761210496206333794251269174927040658178989219084847573551932292036595811841510049241432338792978905028017927499276051983698691600681457658625024102978261579996384052228814091601254540236918174133933996861871514873242702250232313094845386206771792230356169800840748758540433734634633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23050927484405998298184704226423541339978441028008967007895471380165795224696630900195899352995139781347110863174242550337948420109178814469751493203254166878450798558753715223971631728837970500647948425419048209913863159889022946731962457434999929693226071528579601437486587505745432584384097084478858455567819735611091469875519251211390563048025136999603798525108139403080187062222820401457959137342649993777312270873409282784694017324085327368663116967014615025594606808740708518945734546694667379337885818845637372891483050956379985977472392963748002897242837314065544461339964236860946644406374194785691713706777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "16289151912550996158277833837367960579511858293635801404194479023880080641033404719250807018843262226889898418557078991621181929131760618267950862433170752039509274597847335126171154436034513591294342667990555849000760603259828322921688122310638250165758245683080353853695946963092026957284437147311057819421967046427324935761234876244381041353588446346910280775437948894791098901403909415245105383411799856747261722709306191332497268371930702208030430606909582767207307310126412010674247493951323741900272017167921093953870530372432219776034725929448853906029443081837516129161972515481801778757790240639295819564197", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "30340139388157682903422379710427025367084103049025862820702359184850350825409162613793527727115375882350687916159553087762498632858537705826442207775566270261670242553658892423663645715146790838184318747578960812253863063700965656070346270758560261213987383966496827928287514991435982648551697665725765820813945132351577066279371027297780930481941651846034730322602779429061375267126294807084866232611825159157219874721991445516965935144319548668138413903487637244862575877017557447678286954751790441437515235233631028303494736539676367196581544210268430121825557127556806166874632621068127561018702184428956867513267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20439503099544244187196064476064710227167496702568200085994167894985316630783170312744979757956388544586716385620058462707865532361996937245444045968602409968363421972756872773455078529447152305561858406310371284424158030780923981026367878991117991985305071778390789770728111693391222663349053941854099168731431045615461598396397311679750698210065930720479097399742969226160578878491808534813046039603009255597190575908416547413078380664119472043076150821633206014751052747471730279214360955185198088559870412457327949007063819452834101970430888975412425807547624389068798788285782760959689363879858107649064625750971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19202498634471193573226687324995311955990092417233600801760697205804696851774080541899220023985246340360131934691990957311492034095756649998939911355651423146048031645177707932077734246150573550699190440997449844413862167445957467457857381658111500508553183022011124545901966418232584455612017663257021318837974493300085490354862723799752074164501383879140854571986931060355862680504054641042407386989494950777997990148486234289148601028195499970779682790751006294115636995153726170790342668672787710629572960174563835833919456896480862523043893063329725572820940072742124387035947399111857909119784249162827597262377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19536642938746822491574749802175684394763493313455749377864987553412780382247047230453761427285676471157880890841785026876728658513196889888975573622604778921355451556729406142259683160439480688758677276367594924861721050880278353595388445467291266690362093967382577041868503473342027491631933067695350951276332980008895390188382358834430789024771384950199152575900437322306586871906773030132641523921199120574972287943998839388538020583274181263984391606016333835786848821220745437383762660530006025896037407000906961964165849448257596122501733469211861187435860191430255798970367004011347178424887966392797110807041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19471562632017305001490892760784851323017069559403755377526568952259225637666423215821732230697252310076606500860586744967518585452290815990270279457906952921702342508418516631492242831073431287058999667747510860177360581452859185848150130747752586435928441091973651964115531501584378999006537030739563442549519035352131311077362889254681909633195752964727250520712112309430479706517760822625687491302402948332956802806340612215919659626507381036883195803107147379424505932396506539462632379189613133926517220434132491232744340000645224424990523647962499190806389523966518088276307177045179638378868423088061281732961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18775552898560218790517714349153694317507730017420045451641426597647013242430286266009861951149769025504673608882331426624379703819235625470401204004818775647612491067405781541913757782687529099498344668125251727514459333383283049838445155944507620240243501992275551646300758078795510050374100547126742119731045937722112203703440276284723066923769355151488842100971781876921323080110852728073038795914037836512250308709685824211641055371402415271120593788028035797738264429304295156626199981894241420269466000700207487415293527982722507011549600938759892821784362435757556053183874242835721991661186972870343294234921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26473436487811941325968767658111580260908605613859707528065449624621719797607366001732390302838402468247480596674586121595995196651884995294129047078500144728447047657731409772729236896095201826773027486262321094374250273173605656029498097600343528576853281746055843813392714616314963338359243920481144281569412519012697488573350379655752266707445539364333895789600643844351992184881891486482266463459364476626657917888105628323329846197798211500022654484090530924821692480108292213770880634823810821293969798397305284908200462067750713112789235045353854242036879716759422056776909597426369158746864376364899947101051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24963025228600765874277367394418146861525689233479761635801476699944794632774591168064470121300691955255453264476191392611823278551692059502546160970937196020047307380604712945667133188500390950978857312711508619200869079566654598330582759063003882405348499419241086540358003720665304261473226654487196509385603689623568232478349077195170084916995537609660993850972538194240352592081362231394938998239477508042256868865993041405360363477798490884764029866508865955688295881718270557956009316454356634439156889855036442911261555236931348984865958856327734184212398807826232039530958021160515260714257187408816914503701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25158375882533717271883781917741963503628173979829156828278417824245823271132419929767183755918487111926365290916605268386972615911879292608869867982720132208479977494814844778552995189690242305513438107959660283850204402317000264115845798324381953405222133750230259196658382906619836978581094166752480348625706650775821807543671140411655137380089764688224515311723709477347921431185175942597685866622344517763974106547720907152621909070758936294688636791674945828733201341261598193130552311820836630727324829815032605258530903078372769877782396722180191366392713275536196843954647172538255234340584506235304574856037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26274917468441632499456437492051696462010669608859342280983206950424270926405468219925959893365980615860886548355247552750267221306849545846267069530382532371975965379365105696272913705667525579989709968023161666295418333465676373930965333566966135041492191774458151047798988801716551122515608913091606260400813553384686677022398435458268396158071888149793674116702044242128252324299333552533877646552914627142820440286358862422627056064884982337640084640457755556023442979713621688036935879660167842998597918942980265576983416531210642369771844863565539135018716211021370971652567048890959155299331354802680370335141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25751452104851300282596733850319992483182826502465468363367534426819083801751413374872078630623641437034680098117902788342187257416333020973989784113609427074555424626997142012787857430528604811430388082962517798107018202033825544031229773013418728812610502406955660856419559400960368057718650434608705464764877577634803136542120292430895585830738098553915813038200148019197456410834700403364929054143999672946251063242171229244780694390238156638258594837210932986553094441564746043766334026794946918413653852593888488792965838063284368595319402542611403318314202771401506262356206151571038440781055367043808307785443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21190523339730474819656485705528245432064960291114709790174957940285749150653516669601487918789260288650748202229493992210624791406153953808493709317257836982388377668693975300106294860240484232841298787972408054274091031695854890246966478331423774497994243889187071784689706016336326140664332696762692447985073143744643606836557360070589975232863784339677466806382706625361218841225415656185510925697396721282217508569724978518705130231989916930147087212566202459666276983392830842273058093282845346692102531800215455291285510938310716526047346485615699604868079340842960362663362664424759340034124438368712813600581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21568807424973135035198254843007521569210817646039276845262923708966197667394772187391290042197387990028634870719953011946932213052452092255157516964936151693810821445780284051103438915828177478616470765211704701671046191206105445763347526939244597477085446771170337336877131258189728508030521168695959950426679577338242582056465786243074400653859530586421369912476979216094837555554546619848151090502981099339710107689209315361014696345919388141039838691453493788618262132502531047185800997707468064610268803133906726672020578302069850121284662598590804361663093529007144207565861970278718575265488912691073501522813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20350579390844346643056512375287344132132119226943413339182386963487583791161173237076599712489167159493092536506582767436055861990837002529121837168348959418136615863315453149685177735947298196890348449108512021753921809150354132517744311407665264930368466425042822365985257774051143946959164333133519772012009300511106817712506327476182942299779795374434324234014798640308561018081771847089919827558024988854698682777592806286774889410875016828552616658704187009042846706786543883181965932462619680499852345405375403446413486743198501747807833669729336955926917896478624353173791171470599627407310896451972356533349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29514033081395204788043974488784542313976464912183963306281480991346988674202074691128916555854614197704826190401431893790424803810470644642306971302190509643655876769868569322377303265862810777874047633088814776948198265330133331774814274161779231902566394377237452637527758244934361689668440556988490374574360700795740695384829859841230534422013182987898144035809351212448672966571159441149051976617545719748666159960019519896752535462614947947207041765988586434047233279802664075756212343189727459786981908350297749811845152067091304603648154919844717576087254823933999605895620331605799504567371565541465927595647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20030047885956546386534247818295438644287778029118167932439427958470021638618593664964946671136824864355665136856425626427438838011063395876028524736197395242760936759922996291319087190346662113094866668604504715026834097644185037120635330446264746162107342423789236829429170318362780208135874668785836631897678994139829283005851642958614942879250604420365597991520768346445494740524566065273598553792156828817020590330749422758013950567422349003379241756324253820205313544786713172626886903423946785146396569469105602121338797963281390660672285386101087704356140799157169434797135789735915647624593478147388917548277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26181290880066004044914458879162128881544156359395509255298167915160253552082575757946347580557805150454196277946488496987680237283025227759650552012828651214145815820409296216575008108516942609656590001829137708587955443306710914219357391718720696627647383709206118201207292060643631807561728415884307656545410119523701150381212424825001056351841729484202698749916170626955400402865206878304535951632215694954155124869805542437838443805647541462993637518139615235831065344853886449304181327516011129390762102828710906170256620395061929350304466698792079362999902184762661214369115808707505580638503220586695926547423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27750888257348375256840356099128595523328310548335397169583176480465265506183238398910758752979758722737947313180467322276305756543885891615928555064473484861617166499344511653004026879187995032237259188014522654582188400311538341878183780317401569901716711806947115540888869653845595679333478260965034528623214858826569335026747131788633438978529063171739834449309676623946303700307054463930520241211811043480741141867795388367549174026556577486034490860753738725677439938418173156289097766788671684503510277914894031213735499253522865526446071579879977744491161155825473994335850024122656375594130751729307141990143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26056550914018770312097258135220494317791871993675406972768068177308789057611025257735045238657167227896437827699685880762276670995970251440358460680367044245166105891886611074917180464067171706685442782052726797707144816725553469022527666996670647805060768743661650958889483657595767134662273234821120557601156150833098483732368898153918449541074128758112107802435228915116566590882883312217454445684668671731156709939479293834927872155977947199949103411466737045464459098584485378834844545895278798791981874207591733050790349593010998604990223412956886924845899195205431928161673751033623052759717658472646120092907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30059031181450384468655848649678779488833877386646481808088189092772714127093310798434490652146085906253043353177732472076754115513035106732723432103057612990314984434185528712083286485345614337753165790505550930444613011635284778978389376256175486969810154198630679646171461340130453521708951215361245474181878584776764869848127564708729269110928105648198009913187753042791127104001725771289590044957734312514012495411001185280762476772560917319517413919611532687219466603429396467389577217440135098869840415075644572313419767068969870631659800919762905980731396271172250922737723340030767438916802288605661204154817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28976908417510273753385095741401432371567780208806089080542597613115680507696787313066125666858876702052411694064041148562677274121750885209495420323708091340184540604183247333939270612006186478333546933213545437610970469474161489948228282520303389608843156470143065265263251242116258403535973463840565034035101959980527985174490324217570885580143006402718069674801715601477949581246206365331090817636486146673575630193117179900009733141657181241871710641505659637164051317603294630302446094100752308447858651770158802035431713226912564804411289945565223884354698831368960274148794987973475520142419468718596710174531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21457196039714721450932676433370507291154890956701319770086041378202320572020431895688277919204311225321394355372463277131243306767053110600506048609756430038434680561614742526568749555991180044456093337875962306784758916354777042122694034468742904539738613309172487162625949836708851891244987842671826138147615598068064836039155064223129822168310416865260503349061345351075831533502641038358679531847165651300281471325158727487638099820701515342851829746442118807332737048307091325680265876916014237619119514305415464395697366393831542347041875542661444859512507702551187202295710309920829978650844132680394550506371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22941641780189427718787751508870558198777893056493943546286097500857029292641387091695677243593684289777532317862168414993593365097011059587489799154062559720732395468061429149345395672296459166884603112023835230839325185220656409619833056302184548159561825517160433811714527501365414566213509586136410207337392480403084743069839276014342116168639765441177249947772435248423800741173155655629942605244111374611409145141876004530126983759857644859774223160804140993926978669374196357293188448423695823587371852672148057786414315269121022014001483914804637905310709539639845609085039808429990532501482936933370177755053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22707955783023643818442802187285889654828431460191418619090405139161950886254951805264274347511166768875947572018571869152229620302380778099592681829738958671220178125905710101242710794448490844445452996188197411896806714616583151638170935613515137912390514918802940349943922739295647558382867773266892576779248033941505593841321419042323035308459494080488531953558304111835943115402138247594633490882154504795476050807827414542080317459270281313667550446945493148941290973656094951235785185419541850656553354971626135938962942590100950429699547885006277188989402835727001619213245191008695603254505944840840869331313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25457095057300899657880324397968730357342075866653183901591766120583592910723036609121673062322776441148608287833139366728919877154395227392081977074830415916396400715193616746898024825679607074556918177431432081659758906784886785035890114789947195999325973776117895423371526975809504016903075462036609981218398727995265429563987025111033801481223171484235287861916744165886734097409112203638951100061905412012906061343079665627198910528045329988255337254677681733754467796684313424415957219656359657024332895543004368145705641359848850762414913649640033531004835605961317022693555656890651094209138654605919297081273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23911023032884317569017771612797757334084520733761525489841425550490554500351330777961976267504624721691007884073047048296307946320121982391294291000077454335897675957799390809471221367368648497432006840627242724639489578238214021852397590953083109699480310387737338353426788354694025547277978341474689888886912316620495393811974947832760994077138800267200728326070655225874255599776505356281140551155807704451251471257961527322679141827962270017878564622402199500196253222792221247233970329584401020301803212373139798196240899632807859023218971277271089639776754997873235879893537809926161547966529508456310353579791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "31132694884368140854980717661115431503741646759449687877234007922786705818213002545965926178206692158870563305888361595585767183735815977711369475956824981033830515914909815120191973720254248728349014610445214595207402908896307353235630169483644690128540380834720407439210808700626822918206561187744266921651632859523579626162687027326001664494902500029818405539510043543979061018534935255373805988579083110720576160266185016325389412962195054545065552797838259630449630276169645097971399293815115303240760992297531595856894536237677270698169416215359197225119531590436566759602470013513407913784407918797589099403403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16281386677361592834255872439254005228229211809399817087793961488777846092969238353975149689010113941075376381510951035685623276107080325915134620370198951533990992062883082908865215089312670184368328330938377641883075290507222000857124486338239146246262165839266410941063499987965239134410827641065684559473597470690945017854393757005016971733498114931009508608007277008420168646938990079473954881830610994028915398902108578680716220308006186456064641056802932250878792369148167444979962932627451847799249843288681029235811494756461853154230391985637846319495886797899968099939614670979670974867438091815785778708377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23445183127807032357288741927912067433525861310178582383454474495359079483273771020729961853560284008211793098606929115308633331744405238541592164943701300287396171020113337494050936076558164213675182620160261518202034406134950172235048603374595384052883411969727170137782258322289083769917150964925058965870019798161693038538777334303921163710114494288533447047519662462650693524535233891734729760380903577482945512216504597075610924637991608680618659929357779283345755061502293904901854737962654894813008684950261476877918226033131482158315656092189015055350718957047658166412753132464403315130302686071526695630223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19552562202158365551206096620890740393173600201073910661972780499066012317996694337994204517679966955767872344053998613638025456028631334324254011854383106217851605113322480822341665639132916293166019608113242088691779941211687551438937516228359524717443703391966185803932915159944074130677722387526220076535371031223232313784926355257856406345261201897727671932813840870869393931292183709929194405350844246235593755593150942729012153426547159734521014049799447114986192641977913027559263207306732422621450250036781752525089629701852795772270126027101515379175982087221530819329254771043930753369877412697786739897377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17676340112654134386850900701412952109645391286377946193468343472339355739275301637993260635100068576793457174175319977778769232306824526339768102673993434330477721981796444987081971059222022006137956217944138561351034169570572750393410266127233385250157348584811173082650508825101110190605343155623920983772269191815465976751830960575530246071581602715692189345832407704439008298648032985651495556891021035544354212994640747125082762850581484772567718146932963547246973594373698150544121147378635343580059182695033591112464322861951381693727861221990506775747441146120424909751567536158139903362788691652915001460277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17644347846140240458089672334914157495798207646611534856536908361443051524253756488231117636110415556597329645420626797343468819841350599941662958948861213612033611992544162450760318491763983590782725451635810890411006084934426359360402454882761636585628914352505452611291267829364311479133538297694371722745454160487089459117836396097928374126937481489498149836187999085181504205823647753010606815724650685819309510170093571581634448689577020787580382689658936357574737656694829539962938090348552120668013746733334107408743585748258462984219343235973528563601781846251468064692747729536911946685263471806528708143817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16369700366913963099615375048999153027841124425812134903534220527763046283459358224444777039691472765493097291080616336304420425305117384027500270540677098992780457074178308807789312857155035086259577448874218258890373361677310763288981801025115612915527799892120099670962874863487256672931485748273654218861774045387698924343017706778098937636905274077473420386609079175026369474460122592485248187631338828659103191198872577804666318016011674818540687501618712746125088985310389565412483221894317567506018630442192052955994319162543215530202764228587922070110137144725575884406264238381700259586832659516889441979097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16308415825242537085047577978369192461548751206339456376410473061583397854190706657597514751538411664383442625169894266569354220476676758734140951065504020048348497913916835932171836043745338801832800763163485652415922283134407056837080565315267852957966878157026258668378532441224202141165414961844550500302817137876168011756613759419387627714318264990659083375163147919583320769053703661657702130134688113713026388677515294044833792194974955760467881930557033334824484217832982746540309397969803552749516261328373365111432664214080656185202869812668661195663446564314560718763958135170654820492239228098437917536461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26113622600558799361487525916197033332544292994999375074536548020850264446275445996736785810004791844949108807046460472864384144573168478348689587861228876473294659292547134760671451736691890158116320764881391181724280736514581229436726401812736419164921670131401886401384283267660743294588263077047404361590573801061538152658167389097731302276461816688038227421047257422006528691217114475822013442477959201301939043821645739313698258372699224787015813957708304779481879143327859587449617846537097958021463482486289230289710282817846841027637855475766523898438118252571721306662054076548195042090132151584454796800487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20196783824741732002232458650243709601479765042002139319816041290208728677577852678075771291126652144287622736614134770366052281828085995565508813278673010316978260159177023153047761051098092493173341980420176291631599990000073162531880254168878681425884531645280410713446744807253740292744451913338425620967272227602692540090927390478210420359166057606150034138664625980198576544874665353705900741252833806035962909408196770501498732441358418570493773320905033290570618473883992183368643564097240948689888230935690661862029827069099040758184829145888905152003723223127200835341739696092428972330532801768469616630783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18707095592235553900550309816292319025660130981099136526786177644931995338175403407988650667579788816226884584653275733456519550459666865674023308190249887384363456357423987010665850147190104786365971386227629109822256709849336563498061998165779983748103050449500313607627605339201875023475147991404272887716467434150233202726583193985991542098060961762239597637866072651252506166423720234790213089943335703242260906888250831905683430773403875081141003620027417145997629998311119982777271963336887704049666998571753461950330299144962001789790995003896085192739288753321526578195387470233823252731137068784323903835309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24461562750253923516298362170988705317610987044588922363922318323641936638730277033552381690785328245951208595702389127545666868595045284106381489490714177805603071929008148126090100355941277613730321939239980792994600184210463569822019273195629419988170238851099073723066802451555600567655241500165827222499908449573531143549964684484405106218921900102166513287640305449717021041046299115830050516094953584798129268997125424616718973351123519592324901594969002986525240757047205210086831739053565468638187767013327542129191483301020400892775094620846279011804211914036861756150805581796931182820133492644296303638721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27416917288070473967841580860865837662404347258893739750901925122040990974048484075843259295647855482583420562973391634377995165134804952412022558816734246019728962677307893890903054058627505726140243565996142680915105700159810618139779535941828722595374796273458311162066010110092867059181489257231811738138183510180761722382415381327021633734348463332552998737990907525150482054873019572093086501394056333426422036874651768950959089855441270494400963724429022056383552598294590760369840719867704905063646128157311300851674674888041375906502372265928956197324922081078085582798767693935101584313813721024104060150409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20861303419089684711533800449550375440948755169265956222823243644056333611055392185767724699131946261933011090212107793235551789346095859622274375281881223992850321713244182448182092212374931317433416915690276631623206427531387599897970461948075022371816572878277764507209769086037696273819671934063007084313118041776345119323318020011885605277734847060983646634694608847401393956563749277478147108015274235524657937475865118875461072075941385167089211418765646135933672240018654533759086293889920242712669507553078987156364055266994168000001479057847121187505542797703898267892618451320924535606963194891659760554607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24971713989881287581645205681416923350256191524624488603011188883056354723575473087403884582384758016596360231321494552810762475051944767115872857873233462080366338306325954556170419739907428885794494153568536151486128113124858665905633686243912396301033321481702591381225207445592043589110759272320192716715574847790650115130168548085988197410146198063772598906166261222468035160366360420745621301121470957031118177337124630940377393802474270197941273394168339228290249668822033293823818179419143414588472046205287933213362688100893616384769254890795005555091582630195907198782738978040142277481241924574100233593987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26090790260808553716903030511193279506721401495329080513964605710472838664103247314978238149205863801677219561776458396237208080984108563415199326911435292895930471235272047803467660720065898526606563157501951714617979657448232926014526156838191810741624456087753863001582844600041130249693321001719772334077323275281517034007102638258239176839750485115866905476101537383840321248369906048784269617491213715110287382350054209183215805479531620915527836611256160355339467151682597408403880482430879886483187317273233257568817415244025331183476643065920310697354546302739362970943590551035052429902430983717219789596089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26754624847203518212252156347794093900761864144283985821985952585502244757713976140480993281687112444412616588325986328329348643025087952979893807689140903027992279641793978550398804935143742707334655525139956514485007321481900347151120573014923700067238490690228549656371696392009992302716950563979387475089607623209398216904840111406055944175404878958538824211935994147120185464297969255633539999500278730926637464934836818744781677424640240047183038860864816467394185123301932656860568451172961819385109710896924661305166815277390799605489243051315306943504738764429496758159252008373187926295864551427283768542311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27888255640817551984063485466695250391796664554083885307741562406002441585610807350525189637853167432814558833694811529821272545371614120510633606140492227219972286317752037915140190676366278164109766108073068850816818726481193219169751133130456350842029360791616013570828585889970725459645163814037651820805759336875465235932951686109557984723722034795334006542491026262149806243935304422982340472493282628841996861172088636035600341030125599027569515057904799585031463173198356160715181308406742828912050065967159926939958882444970974294638050405347961063919570842499661190636104255445950790119725711015091099014011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23492637741752403783813839056946854489397180517633469032068257987753000981698162967155315609169317370578110372930515932220409295856251826467278456591290479788308982027486195349444926581696048052053790686430465251837826690789899214334347568286454605066662365289643676486121198396871079382223859313225663540043088830950888021376218313824725012656687218147303231277428006301903273870975306908953773954786231382740819759670490231044534619715540667810120161765746828493867468282303049377706249777030341583085600548344529839937374297787702359441356584053388017044375151134032718575368478734211597809237168615922749245391103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24748362338632252770019791469286268821149914899190595189326249336271922949527419718879728566464513191127786626051670846573549944576553252910666453804736940920627246149519237228915313193235731624075984357434138873508750223112677087214307395113758643885801881095568704673471803481669039132780336732368116533692377911587416932507085841051882748475663126183834502031247439480235241737900667758599928963072527095180048197467113799156675331693742169441472544214035265567207739730405593454701757675310364100236570703564998343741190354618422368284069864644679658486545552277962184423042856914324145788987311420699981557142909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20235157275378856058704785972268949238852948143546378859966560686441525413138456513756933840879390604851514429822703856898727857981349169183128637925813018636129416714747969220931902160696941920862370480876285340586508054154931070024939551543595051725338600390462317199569450913351698341131824297340075532824516433102009246137095930740061382068485564647013305104081889516048630889519348326167277597240979041370662837172773107180613864185387377880230288897665025974109672385873141696241575590012282301376503847132646880507727679908919914373839348439302082612206457226963556881427091727548564330563661713486183340361153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23948668387730144937020545095136963858909721781669146528774298709216489875568735899655318912965478553195983608502731365544033416925984860710886947493035040766846068609294249472364211045302282444031651712530693324442052805826673491056419356612109067403406707609676098362120963464071221100771398222301565184493779303400443481998696195684559229125616959029448182193362436740729299943997683628792804210650661795140806071431312607534403468180097215561395170804069833824887858706559648576988585656672021129112033266728845086060548103287999959255152035422723588456560708374522638855003340032113983687776981716162953800520791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27875708114548251527376358364883536884082575954677914510820132847742984095458778668634759267535140072295059151989590536312358465588529070102433713250369833335960878588033331575777379290982646416053222828843737501078519434618775613808813601543638662212494066260618129621331621241067768713398105253369197555547427000594417482544561393266348718623241420584454374794461923703680710898008931700219133185992567318071548571770533562402851555625557141573084643548267837877172557459109701685801132396654489435511762341184214166133153296653499675157248763821447722443476345599867636424627499978717259903019380044144575232803133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22043585299238067273766259117048046800424555254468736738275512780728064671848673558549519887347720673776200636388068560295972960659497603683243055312183987033394066845317581676691470461690152400893525908510392369711435905413361693325161315853191013188760360326801552455350336341351114661860662163224094248665674714382701609504117112168130080333819623209882471516982826515633104442021529393931361502371086493475248481380933829602364432231016472634665976675657460812099039508717000555618691196694252964448293470007193447685731958352953477872457148730461399688126373123674981056704795944624132322699065710065686023826453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22632886878244243537912722099110594444431993538563368939578964806963097791317829367986098409207377112200159887311677052952779976588216168393906871852673931487597726576849678931471814254655096904717884846199442194037597451943344045508292480569727493077472425455811165023628080363707117047306387246285545087795328785165095872733821004597900901927333862805314951804981080604746790722611503600482430588573818109489579855133808782000392134492468713376307686195350554285266626781913137910828869948940826381053214398396784194587932432841163183849010963039114782472844822686499150428002569021288665483092012359163789372420413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25275769382600713411736194918850266666706580245220232796465304280505312612511985709610229842055737574711593756602893501662064848860354730672900895489559101828248975374768493362265542475606584221055457488266961737267093933416730052840571264050659755715065462174633717586939498839957738368130528093634452389525900815754187898420229668345996654704050975866409143557587620198567767139828235434342696089875199999402768531548855357891068023905439772328342838082953557062740001259194315720362783675959369456337024675639808937260387743550104745184128736523602822432134486082317642244103919484521740889725376777397041409336921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22247784303784570030598722494965958530078796613759299892735113721544200743294072893434254945484822407163318796749378943699999602677160712161642512850137949425975333252369011117350445784225725143254043359446888222728911924524770599777626068858988624521802472007334166793880520343654226651080584932126855095968450397173862160469891888386691488758470966558396203987814068062096272817479389107916806467292829774292937835276964073449912506843032583837465121971202740014880680388385958771535982986021539874452818112600779169416395091597415879483714694580806231225456086162325901320512953916324232774693742447676581350244953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26438515164028056200522527073233213699727963226322130113117486925142118190853162500342155057281205495402129691179921012950044105697998168997781228641641803171100702968893522494149894110440606840810296141510400017970579771860657313263915619700640664812882942009800230248980491494482568815765883967783678120651798286105055431841865141342176173247116157832773828783156292963073574949738575752745410382501085580755406893068573563738914092569999230218580919477203937428508901948973570204391438158122514184306877414131400957143232418483188338972259121469042596595983276649346903186840791651653913550493892386362768373845913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21114454797068117218106626418125383954225141709225681547704889424662542663950434664834059837246272171512592469031879094630795308361594684267989938366223642177779117492765054284324408174689448386780709626481538316645156819360615119703891719824971647081523618805403861554878643065133154632054026274593424228975709135779095572891587416436329146725045436974902497942689200650104800200871809142538966460096195736980119968071757329351505976856338620479675553576971431961879192364356596532206791568676736387575818554243299360208531451396093466368258082714536324149940539118749851571841662827414974629259650921144211190636437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22501512537760849542946435161891826937976095838062262048714232881770132963849492398084808412661617194427259057108624633920004985886429665466997433631986540853528196311023435044907991281481727884122601831452224181320248830116055740509797433316254993522206008206848697674120688663590406910639820072422219129890400227294169508795131746976482604540068476594003248524777990808651146571388578401235013810386890734439510073307333902455567105283210635648948985351479140519065056837953470252794902636801028908565973934156604605709164479842801681882659130347968078289642292288063654731829644338875126248782021107592140917925889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24182606042356007652774053038412205910656644262476393811139629980925420400049222086780904969008089842226573891939975408740342528496645921743405936618315674619218136430696942680095498907876061415921424799849398944443644735808087050082599728346490560884224512203648930745729426614730640719812240825701352109442061925925630346846565917850436115356364971003847031679955483930012056643004873042079247649459176765615354637920093293642038564066764540232275946076773831530335473253029040576557668766852547887190679602772352196421588140965682128571492764028174758036717189462195279027919676501115012654997243228465006645662759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26883194991027631140317164416293906400338132656770159815698852054117850448488981978602980177352134327961261387248709690514007639669380250899591500351005162868054881280286795777825143985365632638644771213811578662041144245164310661304128804836942970012152594653409877772952506471899691818099594653867057032652450521814073714529472272678352888277908772541689669418462520594498828868570833167564672834566227850967516083235772787607657286438108489458679760293336676713602114959407814639214214798204050542816279675286300941935605345778571414409653974173989090770972174284472967204694535535663543289703444278591276756462403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20405499176876585572127226539558465403307977089498380410922276754027369824220703800622377411757388748686644194115704158538653537396513832532341864976075867445114877351148967873789545767816023939926567219609006843603635754519385829103965488833619433260218411241343765168005480002428731193699685571872638237687462060385760212461533093972264941751254192765981660072208579671110047478977990060942393673070669602943113814423482376322188758149660507559170698037472238304786345167522947324980672471198183621236284006784595794514243572611593709645193499727161181599752767634339965807370836816933178500421783290278125986003171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22492765686675491760963775915876162676231883615418812486616180127910415284560599573574817855439692066889763202448835301957100841846953561275811699173882222787764871684292181378545110813004229125476771575623773741347070222228490056901017517945857770376656346353064223505506269706437194851544277917842088292153121366318867445051821047496173934487218830045015366821921129352822532976270065375141783183713572480941531718728463258135256957174894050681155624864686318553954562088209909476480415552585551063460324809453628541758097883012037131367323161838882310535521218079987027356574887911384878798523442419109313698340413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27405766961780414556823662512290069426794171914981997525251386331503790525016975497659993133251181120921773950231822251586456808411744473804845274847911874788168161413542808190424186833497830094765695430318688688554604176814218158972623212171742602364235652631233099728967781485888570084247861070270671230313487643458238236320489713589764029075031671178788407464924103767619950533006918347010618981893629952871347253386200208623608601154484176770772610278813403472516524138720107710700345989417029007236326659772001416037975473361592394248114107690957777592966463610441636482540342047468260390762197001581381329380907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29570396283765797152739991181445420603003622235363814948223833638347797284757397739879660316411553896284945459071067945885773313591293269855265533061032075471144803059378802711740234736203506984551582200939986548292006859777651138060570885972582363087263282724252028665653660976925624230537792473101233023933749364446716031311650521853376316596040051705124747359100272303250483240807861806621831306335000168224400613030559392579920392337161240909352778155114732057703120655457278102895857865333610503855667196338850408493358418464431675443327726835967049730744250457369588964037196731154280282917404102483415714694823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21167368122557405605156625069732233928330694918957157425791684022259209578713577948040513287046521369920032103895830095408525507815507966013828602342587683291409964505543843706440230093750045459854054362496307651547271703353382002237746290993749496884932715856817091380696543421174979547910992223861862341887909363096352491959172485828237249853207588291495077119178758195365302856520854525205670468804765936063630105590577332631807298347954785316313183344152701870271283150683668262820515329913457362445954327210860771563965391971314305021418567114260996287093936027601234393415318144840742974435732744249914377465963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27663295907632498023856751608401262957063375021006806006117470091073897685196764022672498617941089874775117499638413348233451743327516151288860707427483560682530768202242999971897811179177277613992321963888263791951298800485625304119219806477158155750686166481595067879365328857988932249839974853410742160820668809468630771763350210462219357850786764595472933930377262069627816629391075680363179994264866331243186091506925942625365336807564394057001773101903537889566542626788969443792809243833988686991548029990991853369086517270109740655878779910104061494869521749926326311236835696241564118289289919396430192419593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22917751044796094465503689711752081179739190750504688074922999771142776914864984615875026434990873412456369533956791120944671311827750459243526952120591526916280500725762519314956424826229522605330216445131795567882229667352767291046835412053898655602571525027012255569857118060985243136375454320010377758216522044188052738856250503375861639919802084188577142262364473994810166127903327352583708492268456028808144326190498141528006883574063321414617072906473727276302360024496293466582397579380922967473974628949610224464013593318444031914709976649601639108846203593053851494104633850142867353945439347796637892441129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28649366801127482403289182789957869840142850138942408876072071722868660653773576739788775415989400832160418725885947075013619824018480739196402227720194996983191846886798824592404989284462400223909714095778134128472970455811009516714228205621042219816632040870412381435892438058003838811174418112385242243500290744286712703207076904542232743455735626284790119448544839807165139498841455787658716079061452258918604304210895201918221294690600759707571630580691933021334433371126184023668531171565640566920497066491637436616347801042533584228360378375960065332293885432522988653334901576726213796986872285547139750950463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23203043146956565642440008511980766274924908764685407422474734235008556913087675441460241766379907518104566219491485733975023280902044956196526550350636031172422007419769897342261353373337433618633602180554590217968606508439356069543336434904033848890644972726981729297597871416095906985301311269207750581660838992033378719947917500571660175636703817214144784030088175092394882579118297100746869325841136177536897535004732764500098719801333113266928906605366802741440500397683754659960733856219283002009016284198404948152578560027297820143754202397783871125387598649969066686265841838162977912265721818033557189513333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25398255067753933272470425853998854899387199680869321904220864720297696478718919195653376532116280513150148051675847329301317574390558551215299252928581662550280994724236093495776069031712136669853113071052877426295878098538469970614449576288676818888803701786094388333507257908687382692822724774235283966748097040621644193697150862152842163017700641046161199360000882230179060677977361878462227541218362394726473254940285323083488148442822932338709743382655834835670454315191106807474619254569804048027659702996796621902406639703024242723377996622312383189027483582427916946081312521955915433620778445548920432830271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28288179536150343858660046496774955271753122860509636690973763119466823325951429274411944082618908661148220955684673526488309088701946353348823155376816426388122399771256479731121907350199875385573789899165656384185846998420459236883141508858916868194261878027712341618077206934598621042788116930750232310302774198239338514748808731517182303389238571000650977740222888125634156261533857243434352055475077668410313862305724582883493935327925253008070652738950313418117797748077284260310219426459210816285836642374648095936024473141769544409375439203896942144521768596418728313104592282969572103039108132463987761232353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27756191295624349668711236057218108642122190003463914430848218678548949642651513741867740337469169078625734352206142364984510442136313722421118282955712400034438970702024524347950623451465386814155861935509793616467178014165212615155030924929559218415241377750085987546235947427156283696149257135203549819971321656044592063508178823365926138463618079637073704588606207113389152411997558638382253788082663540490889245286666683997747381967351276743386883011903507211437345353254722090968269564217775400092619229384504537390065305957167545027540598636759777268402704725078301485319575249341192353530113268994044845159507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25333238765405323540687141809629350261500939554173741340246735307989191974459514254839281174583638140277653614813395554809879320984467674953404408660593924662405103029353309715961931667975672991818773285103757135265157353494209745975968133832377698935699578105375192879157690853858722337202858979838172389799655127477916423966839550847274466296380925620461931168234959023672066229311343327654153953770377810397539421011925475156186365245625243939511414824148506075947236793389526467742968452360471931863687106532514325139310497169763331112792320952044345888004668275095176581739321426347629272089723826637525896495143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25158858897382831798910508244306371601349336410526004922771133352122579620604544755642484655563210148636874212050485403530284804932823767614794583857629510381827740240453120579686090349339267869095293112030707990868144929824160010262048863086520322162270732061430998251288389841383284387530412161235872223212431167519387262270990845650610187404559731848447088307135936773901103850295756729559390915672876463235006787148150268274084727114233480625548918650640609839055156756039486783306415059783700908578308591982617627260178558605695132368451532611739644323291698627378360901134757084638017674588763340995144680250267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21495065523989397962561463152024041929344783006796489112844394619923889390815429802447786825958446290742884647683554619125400782173934312330405061210986905419458990602920721522898233874210145655887612653671018876189397377851293028361027709703411703791240400337738879024678215883315549703676971058226852313996889382284895999283739688334578165579200194907737724371423654377754448493500637975895714047284631176548250254693842205443297994168131994317457727820138883533229227030450029564481716257218077519288432218447957988488979070169719513295271735932296615119350751148314027065448273364285373648043909256839450888676337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24266254402018385931361337783145484428032501508509439997392951023915943039237133600662992689529026819840710207731377992467852157182986297984631408411102006467851304890882607725334033834638134955157663569391779218581645963177973321375864369055544144476101773814868050255958183901647844239362420102588869486377620924124441039233518413879171206310847322088305105448316439201301497431658400927808911527188668368139368793165507084555503943558879110318919793116186352849723079265063030074901602216772002371604720975754580938125685347726810525321589912409190527379691103989157147000659144504955051998366780276682040061428039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29332438061823918159412421183926387898823435047928482103432139898371339530944365834562236964222827825849475991370915234663842266969669660373014482792288044433758073227763366626558965192028448996042606454731490587936982146970594168589137476730536791817019006202482531596516889429854115894239321683435121520414281593462884741675968630812871729219435284155377860266801176482225914145045219724717185827806325700823358758182801222280230243443168441624355256862395140705729448937612155399612831912688927345548169906687834126044454877734858012390857988351144604694319960888668483605257715784684627270363662455861454804267757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22999225584994045523542554196566247356834610531598803902119060734947457921056736209207051691768474735561969818646733758694226305260055702734320576786264658636499834725024297800571900009552648835417539262257222155547312438742701044353335038325469483557332378934078838794733637126916347505245607708389345971094973606417487225768412083312047293325804546513885482445868883088862303772631245627098163957787366477448126802520072491708587535554455426824020883654987156280912429960612616906922589354846224652235933181601168097323894940926102079548471140351168421103125279969274433997110689807192399453950613102501151814773169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20919664661922261780262661401216122201892016632534652108117395787231589211567357534679706544256061328885341407960465366802330289635389137236912751635923436267794809823889254718977637213534169950345049316512508782231572801674564919968390482279160454304421203079926822560570764083733590875097724109542506860833343170948542232445167481816811162989546881756404952993935822572677939226165235531573147614809431005440903768831454222464373961084419191150147456139239755692232736102003221244905962629204698181945057556508780563427847536835737993247799365228741103700167483057169062671074987928327884123430020138262704926962897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347352025807394428208958696606769002294304744292320371243215197703097291510953493961385321401984420071720704783415584500469543747360964767542771780314842665221379180935070711006900152989777569551295353436175408182739693214010450615800092308392635527557483677620957377472474519256997126267150540798182306821195416885151583210984759347604655619322823340287947563677304650610447420149348253167766768362045376711359351627134058906054609602901374831485110489478076357944478528386727509727720794785557153705529508776329730301288364874862359889847108528491456398871885384249916862387428806544492847327237885450359011094403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21915927423701671759976276664509128699112455353019983290393715443011497095372626479072988247144968069080614952637828690976816691878245647693335149502460326342874887159162818915962428038942990108552961081826133023793294692803264032477062238344074758474050989512049428258196856982755361246765192055458257743709947727327924757212610908421016534000984019992324274743481281115920085905440848530461411095187264584205171581800575319717712259924697166233555119186170792308397933761049031982506540470303547017464622772515604688321828941179188090227921461349832590542443872496118643632053799247791283851948973214123695921507093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23560147052861706752482216414149120192076137440483596153247513715186259410631080473133826086615081566058906728493002970730723726926291474471770880791487242321890243874322351763325559161204769887890719937599392810370335372353601769127915726762192952818771422323183337262177727625272717503495115162612137909168159087634970253884980990564979883813522830931711689970811463053192016196008555876049766794117315063979272709342723872925276862435001714329991305263178703307155635933729607358453144229555962138454731124748241304247597668667840236903160937278530892479149334285496608162215837505970786539559241340331068574536629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22710532254151286056335353789231658313095240883603020745697446923956706563212551908193353416964133522946123024517878905796317194110987949715414506723514539589686462152995881312611613534111972274508452976572064622729139339833054667106905256929419998788283805575842086294918434034823991289349606407796087914184435206670103912911139292094001904955046567185114805819899330462524038406611172020843260265745128885260453270843772854414208544027549572108280603134902420494432865839932192200677535874431419403396681483611520395938703156962250985602263405598758826312048837190190739342108790734492406437331695451213521070313559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16576042508843416911833506937776164816437171290456273864034531191879108106136358450760665681377456778593266228599276914467039468171961841601407773661267700398229706649621366166287703399072806022352007917065684193256386287320096189890603616554612165014218193789614309799296844215876020360909789404563624138770746389208455500111106237501954644586293184719852464621494483612350217090217845253169983141246406821292788448293268071931673054463141427431002517985877190602633108957874567244903313779593793792032182854917127364574865831133564428984977170313792277678878563162622673529033565186657769439470181260278753247717587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16341795890924445285202697013172815671836247237424865381757389298214218283135102726387769010521432673086382180784210333328196125015610300028246104452386905698865482706676864062535457004283867086574688197627131887462071708017106010940967018341975925175511502059026178504889081996901693872842378523395120305604569969373349323285711566666382064150502525402912452084280360759548887885987102311041809036529258509417655365563877397657588492165703660329362120161088566645703831232247482309373764484634141969331108927063510294755126913650456989415310005647684723326852271202500395511474916661354748719766656044917049704513897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23603624443251034999536138699292362758967830933843635073315030626132212349011775537236594352707965172897594028684243812887537027144824881107177338922725767791109793392875952753175692841879852560259969429248550051718394928805747855933173047821221612592827070827436909751347783069413342907433783233282807586277893301164635046427902809113902410240385872340596738554853290504298623386436997743035701863028789951906272847228425399246747759537331948439865986694645450755949958681543769228638799960753339680339488213520166301072174745183632016834874451161688176917192002276151648772426246105552954770529256801877580802085351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340357280861068803756822958148117643752674306431185305399794846886968326369326270342243988693775280092110278015278643291793303870673661116118182082620153271297860202442435254853599066813917089643121962356026177824441049605640609873179378557629214363145414897377974816496738834890068641928517967007573144333686495064530962528247917694310486246446397152380955504664056148647929886809659760121280121230999556660497131873349644022660414144366686213685694592914403927884126341831881241891873872481980829949254968792364269732281133122877969221498609708006545981568664671771071529801728011554455701790015973673621116116469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285539418519881988287975825401975515714968849768118076618988650491360379582835757164089559602659748629417759929644627641791042377018808109100710436793780884357283432452885853479270582418179444693881912685223022953009380437135145436363130044071892891750597519889428802764556400789779616856064888574012972376022678655080523845557504614970628190781475897816826409844045964828381051414727455978085671283321725814766289818057417794721554037612544075770747500157472744872154713880304322418796689523576619572098358378793831093088617380574826149311941314012562925441655798068655258068343655651556469619814990876016299059261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28455633591708826235813070068533148070498983176821022184644521043259744202953392318299706004312228119278786322121192291781533116570357361990297333964914328745099470015902856918204869156210394805221316859509450807031752669249346649705173358885381184672578809290530964336150446149668144616148845730490182127824895419612468533728695727468558936805613421249111097591310625346646032929195741518334349519751998236279652293739319359694963598211430351644070982586495482786186038853490236032776055208846645247515495679994508602210922473481791670787665642498645081151538241811684789724920008977902352950765223790737456422442569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16379463709952030837507930503741415619777166841700730545956515421909237650438677865912228003252568124470023146577255906709325318956437413464869024520969354491641107177265879812977484505310519814296212880368096918181282649076946553901834781999557312640010626239519020480018189994659904147535160287238893828184117039423469076571742015457436774120981006852481527944305382385869251948652983990019045045342787853096938276281693167352377508201550028478826071910548529723075154461546901905025690315520624170399268738443687159591027870962822977561248035698199811362864114945220743599625791940368536147299749949326730929830437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24723388544814087315319779964090518860244194392841132336238964548978993205401422354688985474088744682764986249239695278908089714483812339642369105692824510140486636608614602408435883104847977740670083988481906204889947439748794548235495708816605219521390252680138571429614116614067258110540073165545763789411993267650815125100517710336040308587568390118947787702513249479008231511667547949899825713013645939517037367952068549403899372901053669519144271189027224612202026211044554252155984625544707834506923463185090603929991163264824256506747694350080600402932216927798682832198829039727026970712967133452277086422227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23476185473074599053571603964404998696528538617257113975590400228232101082087578323418273213325031705761985255085001432340573357649077608251606519447947185236422338873451579789260501069207630610277704563268940347009885231478811919536549425532544420251570147211596140619747873012112433619368648901057011680563400712767289461324957551534660445074667741362066507595122488499405023650931141132710319090726404702650088365000526835888247131788898529096970074940676892257490313270210959648894673236354606106583146178698073269819832114557966522607125737254940843467277587828496057603388402320553988041041037321823901157666803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27989241039175754638396227233491224852515382404558027966563202018738000743936002544812942604536545554501576992090237962196212355706786868743585312682063763707815825581263220544483530287309847728672550520111369207314597934168166224493872721306254091475871379793362297703052582558095457347780218638604488861660875172088586597147906302550310982731622596054109956660819053464023673443195747026819057857146324365848762929324857213859879590413967309079309832896984182863398511251185942686140595871879526847987017378148286219367884186945114578094030510585663108977952318718848553586038927034153135897448248819833336253597149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26845103988424075433269167009453880004586616313623442008846938424267947884813135868731835385000937044205818987195406852728900180419574178590345049015905929731092175219827364498719167834376630612025813913115411794215202776094079946199693105580532518460507699086922653426756782227912029600443448432769435341284923229390546115463455878926378905202974121661815352945700578907803761665081409536052455011548498568079780619232509711193070452463376463910471159867715111971498993794386599682159780959500802331301121515210997624570122756755650666090244245213597413377007574452589788178856677939670053159404133549402569510494569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24658945691729365853688325200868521523502090933879222002189808544428355311878748307399755648946507388341327261036258068896350143676340484686455123808547419319155766376475453503919490326896213108877349112659792146842999824625717755673287676555056114462190167397635649978857313264614089313558344575307954057027755253423626473664099516576236620130549927298870130427148972652212220483295258640085395320687329183829532981642858098204291356795077764654354915784297561072026508286728953448820436047191734637411998177646055550292724464293511363720032906714021981538044178681357254039430184911560016797178479684794083588795469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "21227666027465513394782766489261537496255948252248098996252277312337830287374536819710245364636166680443300243697348402950025907880318221746621950548049472772815418196724518255751081374602343738487349398252056546030329891378459397345015439605134369769057698783662628156330341448562822387821214019529981530121771511757583053382466368299637694432703616494036263145641813670537059759097987014649859319341687315346196904897858277172260682635289874273122867632771091835804430115399138635939327695973567509697716785667490359612005640002738725821746143573289729308958271815730095289486399298265778642712209467238416318103407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25493867037129379142665012592526543922411583038991960872667049014778747011365151518028264563237807147420568700569887921011214762060171126142411088040489658225198192411513976164984156690346275973449222874805191481436491642016648563574192500671000198947399621892744142060023771764776371362206871103187293851261354695110472590192193356061244343890060456303543174176458692274701713540294950456822826909935287244222795808574939881826074387697654314013495304999263324549730076699842289219744687903484719318545798040088661133452572282226319649261976754820180196401123784035616015239509625159175215700767085709651334110291523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26850371846059844511863423433648953712577629079271809046988916579720377188704229905450573330465357598468871601303497213986183191627548523341285067995894027908522177951116699035408325519169262169583442685529800939823955860583794171735597594626307587878702855026554427316273772092111181866649233399209861481300414197709552171908456253802346714474972748531880969262731498555483251489159240671421126006193946507609865495124069868131873345060692867879771733535492184110088487154465204964518559734319773324951117424111216314577500459552116831645015353061939735001775012017302227400855349560270687442029356833174289579601319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22042704470999903420211869809712012", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25454403753213911382328498451180375", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24599410934669228077490776343958464610715247438269425035473938053653299957472440654289667187700439832714784707036050009040303559383509785005737992645085505998661206168266082973729773615375568935954018099253641175565847154731580393621496809105624942583494676107148682838412026144062084161460611039231447341712917613824001507183735982677149668945159329602058398018687698915912012217437708150565136248263146524439113827615102936965111175328438933105812375965196590593365357585822462257151900672994885123394222088823631392354886676768183180368567900052293725939941685206746009744368156620641859950913451493360169518812673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23115350103151333985727465788272862583360990102592261410860203497484444411769525429548379067701895691131313045564362809328358813049796116652921741461866473213610947868842272899145573446998499687059588917533776011337970625463814029023599752315933860013658677758489283084857572549057561888005879167957048387535529425495696901460494302444259597468616956694650284926213634215297034281113715606628315796032447545193919001058157199096838309229670372218121554694150149735262258874420658460662630262786104242160320380576713900536172826612886655651062298002472587739051130909119356956598755349027069167364122417763643468096811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25163953555565310944261322225087497951853897592411825431763663942908383498941898135437456584030438835973242758584332813733226008773303197444057817421602567938409160414952386679166669632101596339787954060605600514387975004807328676370235441538129961056232209861412300464438470765636504089928507164292307573672655015252719921263348870785550103568033462080102746955360107268112951080116537355115295493547757830088006851201572986558713191125378984441115982583455097194036617304259096410854396008730001795408205249395167504317795866006300375321388575727507587584804966638324066666605546197630948862963216121501996439809643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "25445758169873906082337147988178756500550078038449254250848445915184147264413674110153770605808587151478854408742280248115332147936136130071458191341645952432811322250711630620838634027555591377218490884547218047602155998218835518972550361389560277100361046519154614197244802604194336274136496562029239949531712215305598983736218027117221779555339817605941805116971918886569724352396719543274226206882980404100995208294592380369916137768738501567282919279252508125667535904777702754083960252270373133578593446681498869607113720781362940490681059502083127251021646764709889186967341256669609738607490684381143905848663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "24565663049204264731861202802713309407402157209973143097539440051558638146062009940066937744619855816426253477819055420988838222652102169861244401685961568426274478140740835985825096635832009096416484703407591244727855289653230177068200307914156193427482142691184669893658488746671401587622261508485095600241891880040710154792047706778104612951777876505396356782934754112063335434294966305750007807394466463856662353751688660485053590803935499011504062534531532353332171182897410998470273383570227588373090803405173439728330232755507877820814427453146149871326399245705808350995161821015634117743810575321222089090457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "23135239723371861151114198788078515593687907682191813905372792905460451221714572871046769618802721739270270148261404219116033562412916183072279141241257673551286217052532885955412047095842830980802506390527715441909310584936766965853353016746645236207706182926239361605736700745154100415549359339689461492651987623011783994198100072085184138639046762770683394699318894622522054249518692994673781090230923134230898940489688636137839817045523565466330268626482952138632591086020962167370404577828034728097625460735257078155230604064355190744817426174059609748218898290950692820090395497520095220159410571042615422058223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "modulus": "30333380997114097073132437095822550368668172063359548019802890430654596605539714032629427255932453886963198542362534875456907305179542206084372966645223380422651514100279725023109470900386961728556971683223233517605970352408886052764930772520746463573423700095083601455416614847025974769341090117668007365499800105810327775991587642666385681000602576869632853340142503702106560259625464288197369462881657956234296032180051316212796687138395512502145247298653275078151371189325947204190848789145307225442026736930902019951720544010790268414998091081762213420088907379148993835888381852434032364824931717432594213658783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22885120961603210505007488802060276", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25303231990999959124814222025821216", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21961929012107561943029777057038535", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22197396637097526346907263418778245", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24850420625500990743773646971500729", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25419513243968548144991951556891293", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25104784326419583295018113360644652168529312633281225906076860421697815446621659363114655514583567163253307823257906564604940557702358975512547479114056424338851249942600640745261251556015517412631630192388457462341579396207213196330351936983522820876348862566617270729065528492995590480439030799114466268210338873039516956991978226051874941196994119687293785064995298120529673610504871126211634969967002012262125337442353787995453022309806116727884740399375883663033700390179481306055065245084094340761579812801019628253205541602984745749922756125844452255619591553462198214945374768857688192583751979208874057603867", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24108671047485396865168149473898802976559059614311480492778774267389220986110879977330804311079380787691631411973561986548856708592747473873808069139107105260224610637393878181128640873035155130429682969037241243737371848588669386756454644502065550455912620468446400303195375918169683800852621249180782711864312736126871661680212324382048058680568072868649878973140006880368982093963352385810562198621141301267778645837025176169910962276446962828763228298060540836531601810642981444298211442503854063565333230473807377706276111015933785767966654565000852713050624620569557033539341079982943094566927773848403482521113", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21756909010860326330317600874712291180057832014441542749096536004801611168926094295297031743407641139342196650847582624865018732663060843267810407181745380852658375880906746148762902289652061132088617967136920805272340360192249830679615683792151947468299543826650742709072235077766714705661114338843148715987377461382356628315727712411562888191473867604433288798936216612269440186788344981756080972060302278129888584006300365755696818208145115273729377604694358991838858459551626017697553481594369080682566376330357376447100192852507364053483213523231214942064141758918048598322237289491164298707222971897656101649643", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23446511483646120031045215803414221308197347211465701852193955059742090673638577519429672640443622608774887483390801324811900305384312064109831335067122937106414954002329068362647626738584541832821967070164856031717746748948147933082654676817745669992368566925957711214221694235242637669934310077404597503841132392017828690890224526294493784488990446409319323913841049977565277439651201401539777213896265611797010868770952443203952370319261419694812527931610550096509120236936550852519007666057664409973692992362698265371378501196211950093222055437535789590771067688618849808451640145205272077918035964103807161912073", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22516555974325716689421630318190597670287269324382820237993786268041305739054439544158114869624591822017567449109934556790076109613643118687667776817661928689703195790827919689766581420694777976904430524073631228477169460413234327547538170701898188697006446222336518272114877922664166941160745983505169035866324790656115057737788303432551622778719895654631462164160980042400150091007765749834826757842592640812962997726449249259007721795169485750871874769737684331619682630724617741430809684251411420240201530661613009896635838560907711757533542533246619719696691868766228246910093003737091067463695806112251322940561", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24088142909895900539502601828245849884835814814549836310721670445958074314884844111361454732168614849470084776482071360643491326019083358713267541445283411816467197910018780231431466606758632894121491112385381173372555543159805853422794363288840468224021204681844297660174805627382524391064116951086153079317943448379676349567624282992092001324674199760449819348116373989680422668255777803232044139311755019391075272080987650068312003269872923119484841137096846068845385546219560039955891852285378984720141549763662260789326066029522617627451406970679627913411214034986310460174539004413367971131034978464371296295787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24513737630950242024807057455735358664138680332846400021352584578060122212078439551978514784440319615147099443196325950604259578001073750225054787304588127403362286957069162879106688329931958134304043465439437156010122358926359775992409642139067263069342639317137489925600810535860138638341044258218275734346153258171807136040119541599693932764385354828556535803163537882098238246238331036991409843841805904608702845124964699786164411451113927820715384858516793788744450559334167396871139048371724132411474381000481044267485231552764967302923201496105575806691636722789141572615007406629588116485733628501186960384953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30237452286797339605407752593523297966223850147561277349166013137974444808045824848067337580048565723606337087958718881103627512344244472637470335645631658125036608684919238446622190237237899671815114588021844844060490240128390534619459962013186234512403883599660628551315125662791050249300415583516046332206609300873416411851609475945572388254811810313636702107923671260616085854837464912630260098240761736141790720252854503311065649119096702837296722318543999322622186079875026641837868668346238659200290740875409771748365217496491490825609917434797955237098935749552488046511972998903019582270941454485498837053079", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26087941549616186009874439282071860320116333147877084433640116728149419232683090861885598462558236274356048778302697842841540688268916780972800104552716044736741179955438190329649514398019007437509524107073843269614502443835386541066866677479116676864505938725998820997032255553306596005031655290128016762149335739039915548200184033877169667819951174936920465012897823848685503501480134484592399891166807565448344051310161038207554902887072724758118141502976980186795931315585524275517266396275555845280939803661340972958607906478575913400063580038149786894722487232891230267827639882243860470926510679590658832376733", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23460829189901782536335283928639277097940109311859247893555095733582763511851676160479941431649577562218449644616180597960540403410381324987725943483611506891908090622390103319351205627649949205494992055715672295933416362635003506784332442216087444659602827834901794781131229703745138653288663428544654632631178587359177323326566092831189726488756584041933973524718025522188017697084379040507644557092420740780162925950618509756356887443260680604014680271126645550626822256216227516173223188092125192728219846968892828086756519166129335600826472613396163144702981803557145539358508355827272521212028916094500379737413", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21226409970765180764894134962174646626645132377566957846580213556881650366505421927728020864530885502670869138601968522991138744230292809260141838625006150417498494239885857808181238625748842692953969693058273435453926359061271310193871843928141804315708243923555666122862665457500716382615940561406537985184106991313156454218621460868290116981698416609637385589016318475328207997509723164689841056091484149666669410082359845433911762697763074779557068202044133403169174829984510474566829066797561447652268578208708002888457184778988443758452690234713253813988878743731285922918531666261031042484822248105524323567487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22934994495874098129820585265817233876091896714881333935847665390898333984103111896430396022921790027384662685717380893968695444651384660547988391784977115449911656931514579644338172547388236863604387845418897106713037247057505714632304364650104536933673089106983531298820105934638582268476740077100829305320941695690981398943509273246655944030464798619931234863061892387060163344925022860628567961543760922281800009337450512678097774568241607037977207357642256112837309792304698268577610030596303008679873933532943753607139713856244749047643193795515567704876762319663234791678525555328179442391107228716705160889181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24678652742501283925490252706653836438790895530157773732669567223693625021064069092139567814818868999930533146781831230060541279074754624297348479874063257672506307076311056546942159636673886804540704352348889684687646381023435464778993912372040809160091512223034798843389138728501905245641141452260722079591490356817381121008024181675953628727304372743662812820830773881267497597101918164892621811146692926129137405188003270927229627742709519876837808824867354183821527010815720732827693390968274080495249393627892585116181887072408089243125642592641451241670306827813060700431737957438445077531866887622800967348031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22896030752607127584563015997383096139362741539707749387982526882831516489896372341290025098076488742372865851734038624561580788002029385409997449952556275877871086218706287493484333903267407233290211368813671206045119790067749273900625074327782704233906118455717226471529408598716538929279141089611811299580936512146841712634492665474286738532276441354597925972497372634734512914352940197018634022827772113376477130291493978157842311069382991802667700454379815289838316835340901691921056790366196499616254947766636326641802660176334452910467295558372701333274590303960745973319630502650510316367525707772113788416149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "24245537897294730746244486501635339781019131640791290496778074830811592467286805934622057590790323458648484238586712759381342244793932155854460252846355063466924391967700526778835051087208344071400560733774434951974422273423070439696777618723284295035553532546819060570485774293583905175540490692521465852475109564471405235308436571660547957049841912275429419379421919053836341634163995659712587716559073865137690693586425521353843860870542213972603026588632230959932406897353758259822253632151434541186479701274015086609700668936680883875024258788997682979173525490253229243604451369895054552844451689274224624264769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23578297350532667773084893988721113", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23153895803346540544996985160347070", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22226128032267823633683665110265733", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31424200962636917851224947505177053757693282687361806903754220422302929879611892423613339837620383889802150798258792671095391829790776329013851256017939945524621748000200907922225338095685988643582800342063471244731148970837616280671752043331740212744227081741683516441042848118095167704676758948548385628576718159656942629405680814357632184759565296429586466335789417569819727927522435757207405304943869219715339268760453850582143115724568972682198405913246951770420152525246617222498248901584404860363875657121785486669575789328984914787185730965575972165817917592710505780406547185749850497685024938073582769859383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "525940611505827370293032986486390106340062966703933044712963688729671704743713773898609831909368599824978055747463535085352442373148857820383029228778343142264318758322927658144648209394379577558610309900883237587892385745659652440096864268253814562452023213271964906958061888391845612226544363135374528192407240373160983286083737662073679291946111388912469959964574420750998630875610056661792901704472882222197069229894082058501536459468140176505387972813143786696798765730278867215955013368019454329732540851648179776628316984522532369077450113336572789219151605704807272747905367695928539443289454958414883507274246399471574870375833954017880559254246501888254829003755869240884129393004305336233410462749765580709107451894967938203082194637861869315357801925886127866325627528984109074677444951396980120116362697981981112344055503542796515573932264055703011881770502305892771926763073211674291700381489604689882670025365472000735998927555822462483207481467593045864850918910707289340551536661069227741730501979133337131257779550616474952609920825929275919869179131376515200529126220501859321656188980120483913181542786388699324577391910376458282143550057737442423383728976443216762174899415035312804963121992593855038038632921609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "567150410107272425937214080262307250359758151787303813650014641057648551650194006188010731757554563885787823865204361922945537647764857391280596108878797899132481370886068225346081934866244895257017458694223164239441057274559936404526201288429980811934775801147389972646737875959433141672215766832925170490866751921500430631167817363577468816017522614419941051067812860338110995273685905917934814672354354650785078377069899312216206083288545153874166090853935413076414308377794283766222247549143151578782483597969391048721365828478849534572325696557793032893848453861995590615440138040256351050072205963182769488201397458312975383484628488599429223629552549642616706366283466846003491219802421788528257463824917323717555322146421641490716915973650736017151945189388174479881346466827927051533571503180303023985561366004643335994551227800907923849470661046871170367166308917926018619320635897798453489748823276538469116465461326119764329540204537912936429361561690517018247309801833244000882196240757999076531899733881483654377226492717884422173655835984417219445957044324893945290056190538560786120924276081083672019846531237918944514350529831611685847974437068427173551644053390319122537094159855093724378396713177553958705941103757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "21687929890825819282208368106264010955712541487273065287556198451512696048840994198188090067156312436463029673204986322383002980266394604185588841731525614302470973023642311938446809078731092003729061512313612799111566989240728846171739651597778325659773754124169660727589925826685228275738575236661133608837338427330774611791170477979912088280663690252802378448927654483300002650797283350930869863918041827120819071200286250490770917191823106934029465322396470134160944906811811418452284709905502884030330297011834012763097160807177771084910033294674034511837439110390619932840112296261501290807721101359024470481547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22275633134344165219838081483725152", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23101948194560653597435437736374545", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29040994381467063401901920973496542432231041261321188387102339015991856235394134133604942115255217895412740883553912354559528633677131666824853294783006180852949931210200899517274612280435520939563572583792063005522259636695174495995477333934895898683715576374072882462062098735401730747384322574453800332303617679125421850426458882803494972926781594247812379166094926380184902108242032054455568103881561921580270873619723927054883180775340208898579791583095317464446140891261265413879142873472902224982818833276003121057847242758596095924677116903172607882039262413306777644803523125254143936393424638458755840393187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26030358004318843613935226787576569688147378819227341369108113863658831583248875781460702397426981124251304462984645141883549635925980533721967115855752585278291247050880940530330285577938620792181896083544723176464743126840314397118969498141459643653846556003801435567775442407888587369690370779809498717311428956088834996418704172025564145060989870991645651942600148174547246080771262073528550262836211778257061075723925584355428232420244264683555020079086340428734107455394382537886961745300815325843552185248069313788395382740844546583047527731998686535826421768350997273588703093714541159192270395113721670345757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24321152077487357746390030080561407861271735327435475486812401357931550665821496685310963319309845347841795170599875725749063847988609541566163589682891696820696069482201386739895702810416364761315703110384015193351328290049426143410254192114783707632031821987187844899301184109980283597857925343597247340147573107150295925791814795457754999104780677597330463989092863676199819510323253234276491011695205356062194381920616326462251547140603422025743652667050093441299429922381704721436288177551592978125561623413987520866579859671287494109263441409578352338395275527410216411367867933598509852624337510498240617482129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314925720344533914814439757802790349626423279289451530740379813108201158507921669894212318476697490760027487928690635765139222382269185612814679693762781445967625855423866306052025067622749699693026566886207149221258068621410627813431132706467202850171492239338620939923026764108596231948376559791470825451818318656960499590122568456928529783870852557360637214632157909661349634414265589660978916218604731945845813814567028962024739690285912885831575361618365986620693499071094652401295096035848527729097696538876353576120949123824807614632778712669311684493710935724353062673733585791623170377953805291934356746627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26469898927507408631884328352488626954131077501674061069078170111889645999334587260264722784598166207001635586865761256943411821062692808771733021008030752421068467414043371685153857307766506564197595652761328846106330693392488856885759430196373575901746161035168539896490468852959405590309400134777472614255541333303389697176453544187722295531174504160384112272606632013896577285161753425355380244359867512874955802587411841244080640896699180422785311246666732149403208730994265326922359314691643122913920239166496055169024319911107707976015628456642046150692213118562451010337796459429370654692613256956879294603861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16819342258141020168600580708894311057434746256350773793179654503422133540355013572263387978216089930745645744059090529224926466839493722975257452311738435696900092993904272032036476573864927330707175407828377134373301103755822573458893166067243819102465318263051339524807791636533836710327466649236626347155657948300312239277845189324077570792315506353207452462455521077435856273419115659217683252134740713806067584332071990964344556863237817925330032883246091614325878962750406582707421980540121926327408435382308834786211672798191417810376239336196882649973006731788140126994443884721695355619788566513648642841297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20699374147868614613344027285431795750336501249855125130305145635519844673347430343452620610571470694096266169433381867246326950628826693614200030418268629221841921056199503105959348900060847464935217848770042357097443390917572838318848342518322347768717233010209818286487851591804229828318753385936139173121883276318655836659133021542303627519280187185556518687735030242845621903510685267299174723893729900502885932578788370280940114599503395963648189455030542814429883515270956961930221754829226881832597652399613682393156302133216744999732015329175405818224923956953194670488595360293850808848693787978919885464429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25662423588259220216550191610517104180338330913398366462609896888213405642338119267375228465700505934010529518295654427555886317966714282242913880219271836595971419704994847976936707955297481513248555388678565735290899864621138962237659406338100257478701497566000617101322343464369460068915486258436016479124640271538868324446943780679906761287092083812514445215574219615177557077233149505858911256664605572570494221591747063933040780752201632269282971037494054494037070263047947080171399873169704556815192766182808627637332220182942051259947676164594479865095145821015050201605793834770224760048851660043128428548013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246453772262293093288781756721111373048676737567833284178756843826481744958342101158357571513036940714732257272821295577313158704853069483764922539966620195271278738556493261090821273499974937066443893177325524897606016274217140896306310196661786868005273711459778715181950667730402706217397782241279681716095068094708626070196015700345349946562717642205651175751852054403821611626311509667706166020214371560985389127309463577582676366208465011260444338138709694964729002624109554702079915431176888069304754815641185513728887743844827435223136007063086478341430429549493425571339266426437892562870365647333477677967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24572831220028575863902104296463782181683022936938552085495881334758645135924794981989124051658091789866248349028983769828061706728000957668439590611807929892630688149034634537898037754761090332090939601996023288906655623566249920076518244577500541753921958546681107162209196919797350572113479397010789345388433684475583223539854673928030785976859728355850317792056926014276133239467417550730931013257969745781176157467605917619073556547726793466460401625912053307735191288866630052015040555202971467372197643523372565502920164425041184536925938733981784185470992792371780525677832453683300191958582526919457320626463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21622745688728626795889309307688414263035627823736262172073403998983175001935476197501170805954117807981911346183581736067361976928753625590665476534216341942586479719486241240219589203215980425423296511183363803293127242465522014336187739778294551228957904166155532580058274299283060871238664004008827238241515879716802655866148492287620484123684060042140864592325397334277320561620550169773777977160279950683030511815649512424523398139286142018153930413985337194580664166678017131820172120388811109106775224658921240479160038203002383620492471232387084526949746517071109466659692155146424472660416899625850498240083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21539703089771526537048631987096203781290456080258272899368949841982440295548718808730773629269046637859247675561008360065061934572958984388924773290716367681076529022278643857327749199591642027789348222362584188415671148592936917116258810731244548362774627838452183737389137311580191531753654791170408519261412614368415457751764533060533664230264524897277455679660490952385208077669476491546673888115876953133813861278816101907457419628864195561597378048575318499314574708575215421491143281298233139727462643458614058630210248692323828637747505419139784314935668576416906938694227526018968877734425367920739204842223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291816521401489719280096752695083546034218267462503400107377045436818474446842462584953858286010303039886920561190267321882656991142423769608201674127001365538306211079429882701151987721538349816315059665531916175828906989184878166973193828316866430396512713990973209471275446958577748286359452736031784834299642466579814008170436843257721250610951199290865216620712042580201662342724150828699430084541983261159928935964452132519918839063737037674358534169438478021050921200647635354356169435644719889043677023844422016315351619868196293936637691050080538671789102754039470347060462366922345909404262200490650544597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26531894625543657314472858856184820321211316392945201146151656330330650501691080696048138671926956228974644367373167425822544900298496952849858188220106814005290433489967783405585760390122967741546583221639968363066563096363580505582301304927439751027140431394920549424794050654832190360905346034488944050645398523097658970140881591855544928572664009290802164419030004016611013909548123961600152350844083449988651419663368339708741771586400074723644103449452323741672374131426663713410087428014997830184455817851690211866836955711398738177484668037404997951977870569157609349918374286758118360619772973191331717765419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24783611978362140680696496111606489441039617629036871254226521127019213857110665428942492415987207220021074461669279723441358838183989733683481202749459392053497711159886247668909369770351083343068297897379342194037954724842437511527384267135197514978827584782088883024324961011614911520442996975820061801367670958217966592788442631884489873931184155010887986551445219960460540089465262628567333854569469258686384335918774037870969288073522513074168910896474636135225696050836358055749695857794065314437083465802067283898839593649883804274143387307469359754324790150220379683576758009753811981946279972505708116867673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25166490003311605329550871041315001366592917405169053642877001349395618866179723186870181928101917291636564809308445928406936482196274380762871831834027682211110527677178492346980516790073185518691730656809736844962120037399137442323817863052326694659497588984237293903725779760792547080495670602654477017649644336895862670159285790637984596394086032100711443447295528318971532151589565427803316033044159769546803438252236487108713053254211380762518209368084368239693126592234845170624026443140328729612381878912877368609634811514473064587827793638185424697241203472122656411846851584278929310171944092206880813073179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24786889427789710121654671848786827812529917870525317583511129876540625547198547723680025319390868788928297194038867791429594748268991321139408731983467852196689686315181293649794777973114306238847835364233685745091525809144993759281691896439168805034558059181897412334051073761129509064472193236819656807882983075454064688212923605731771559557781714563920046941285222982172841400552961468752138294723257973590440642825531202378348165028346263839406981601388655275029413076740852797017883533493597236917205036005825718147225053608221315957724963638705233914555725195645705718706662106085957103805538919421791230165241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26645262501559579953866263533876611577050558817700215104663636429143994660992452845272302148661595043410452079741941617412214561986987888049135303103168482406303545499102033232038707534221882373734055903463115041188262079598098348312263954535756528941706579057192899744946642159786674840266942726379757963303154197223406854114571498584514346874710642777968426005827403576917763351770938175702873541653484046344425499831201357882830601128270226997435020540459498725145886935533087215311430727794345590314297308103571110388815302071119731514826534457168348612084270338119156079845583724429291899198918177596271489137627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24704910782528963186859215070139308751017692165251461363101295001956728992763992999988732778480816970253753937476307668526469918554464961920102221161883164417770599381346324387603016373181248595950939062886312953872917114706760659498216291328960543394446089937853967639507313228627794905871708290231490184774219113008613102408264581458054206819579619420178932493847949080342730682838096052423597098108815989675831675497526692921403628547704419528568066831686178171636622406804299916243751979871295229113168630640363908674529124625741469545258845154228231610204434826830404682162353230491200883701968784782253051959811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23294400800169786664751734339337848864059042505994559679063676879818585099478946086836197026473213340969864233272441899289811935379708235216117331356031113236853939179063983697781626526669127441732441637912351528712065164606148416526868953121159740183906283474725622433618712263731464894961325116916450242801142817567138003515415126444883428028588997976193474955456526618453098615046063289954531885648874461273606660500767029270561558823089940472861878062000807509980802029100151513867822777628490606579222942063532379972540574800146041552005219678275652816375584884663798208460172625947521886504190149543791925960147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28523220112987304009856377310829293143375884599944471996336271802888691927004880278501337524510095559952996733349829916624837890134429302103038852277456692807756041486676802826978136863764584173675477383040567430810097489035182080847710622670223292075610956655725942546281722464064200664181146492443857724682852820721381731672140718512359757105089930523297358726540112102129001357981529779667572039340315547483635835558151183320038783836803491547182920417003716214215160488208502046444911297912625952405387445763391704271014239027244180223642851020935685385190977263515170938877358286119090029705795076209855380757877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22908379233631950666240551443797038433854395136680143422260610379944654859340785578023268998381078336495831812532607960016708077013029371523090452279577991934248167308099758651499087401029367541183498025835426395693492233042661515941923064818203532686129942015804145173504917974688162153001799482243795619632913962759897919157725001606288002519799849096839363318998235005744802370226818829056238553679715189242457632074560885221033378395551165761775171671228209631924699317350538492156233240396279010534497482982723689294562293412309875282496966691150577349758625035554466091094734945855797484767260860604377406388851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26716359278035676936097037377892969846698307515248504719327714301001990002044056872268312608188989057406487050347152988064314538171147693355699295158464785129362930453295350650337012883279564471428193358657681504773033886531959249689925755341316896285921000838941036720947894067642221343446717166753565346274008911482546348867953110116041574332704508884358529960381321334214075105108002546989099531029794106736359362798622215583316294547479924249247387264875289006004311336098465664867524431364412049810447143605465474853689152942830696663133167827333891336221609004138386480361160281405628330349488610276966961364567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24446622440176676703713163777968418519217506383336405420147273438411340530877183159049224148108311645006562564558625538099212954223156152424603819174718872661931734960217588398852874537772638700053116029058843921505328931231186381872871674342058988996565374167915630440778592320836902795719647222623516592140480874050870926786893196164297115835630279918077733565017109806223333300718060583811182187699958244417387476295849983434412304051867223431696065133425984210811122439444014651257311425275706191416668075604860992948605291006474851116473706552772840836029212639545339275600766236322696899691633824169371125370369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26481559431010083390663601030618055794753951563954714189790966347822131115651918427388488965600989335013746726467887132998795288993240373664732146486257300205392824283109653941364278326298970249596795355580587135651486568657501578634722686661794156683614857197637898584124880266569145436375882188102492316037506776045276923269088195877057089411333231824755239839796384386944701988101720696409894631250492541077605527013380601105397447596386763837139969609598479409109376563347166463782451207946017830424339878752975670408372352485277541190586534781869054231090327344787259572575915265578057656544901168038849871344623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26815322584971636669649289241994621225656455999715116899248387771753882074161446255325492271051137046221176921158432430392053050023259846439306196567991027950044308754027238553826447906913611308173351463248135314058065214504489138793586106709720500866009256169471029020148329486239370820554666437810944916034808106339786479111633537856594251415092797141391640492680142341362428997873700044101787540728361454752334633196147621652118242154808018310227860836388634276128461731302803551878227564051530753133514775982834943191708893129739383043399413528509786845008882395765830186711183449689206444602537685150825473123233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29496134608972557616547177898177931391052731480754859886014821293225302211226092670649904408994376710032583176674400866633472642355726868226808725076264948310324705594502075558558483451336771455726025428295153598525415478150666882454244627210821101113795862360800872695510162612280068208481102603826901301137257561053050817156860256887955605037624407366446849768565757239175677263440484458419140428759324089067729425545679589498042820964192889360093074277791481233740054191220814563819232317721793565386602011753505588206837425593655182954377254381289765564714782499158729997866576927971691927974381074310267606192321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30850806393368017110094746575071807111811276407446498400742338889818409621642760643704760884899659381496164396234295816169426271615953846162044322793972991757908847526436808484353912632403146684172192794297316891066018460729127865918696077263722738500211924684606290526396228918245883513614317452707138655740011066875941388660585918224413323946293171240734854097599062512630165689902879901853797972444355864921062038192417488854538856523220451128571649321875884674755426295957567737194714465107028228026363949610656330474268269661961523215079573709482459507118025594337665580420700577475244869002695486806104923344941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26166542576483618031423838124489683221866916672938494877067942565903448734074501376167442925698991753717012750750059769072993073900292415302703271048252167196492893170317363484551415178890480290212435941036916607604522161949219378661900009333633949532237524786946649728559639695054070100884501383464467273472758104177837001700023167082961604187130868108052626124389071036092043768931077262819427348995758025250292185331280888521736200703106618817626393818933409139145862867936630317546138354328049733733455682541274098658198057377829455214357483950999786665685749189888983311182639622412208294655032113945625040302911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20501812613181844866721026259600656637662388429939803930175990542494736731689050460290195016347143520323465244500681397224191638716455319842346743538428101295378928531595590972982477787334569469075526187477457800673688821970497341634693095828113896022815498691411286693928698644530379289250603689240778655122678251253452352272290382730057985428964728699585557276061371830042152898523852713481554057968691080379673170891144061950132462142986024646883399854136675101687995852332880127424982745054378935004552467133960627621098164458417185904361599003587284969293031125376342561171193105176758047022579154480790107809123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20650505869242658140985840187435371866473274565666499453576756827166589629550569049837713377218677839523727628797752953155329456683520620619152330211157202205286426529482782603127570885313060937439987395154533802583901232484402402982595349607688087111585660211263082914792634983887285371839504173386562537839330450514391055889942497723988149192534652058594224072284243815192903425427753416662068690666068712572345341782036388963637289944104946531768466302746245357136983267737731682635454797722929035035172951692255874651117020976891753632419836695046383562544274799973263212149621946819015305094375309820064299017323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18895634035492864725173765036512675642605600517341882910844284756997786563235238176964075216367364483537797692940156491936733358070653772218577827852142791401054619794676783493209940603960108522460174359082757189261766504752516086765966731274769622244182805399800341569267152425384444728650325594382109808000347082208941327895653794226133747098882959441253811571809914403496478764274770004749771316130234227669242788273609575398274234420499792734502285389940219433940458111526299420144780297416427605607478980208317548789821856585171868522520793677568286988093313655988901143388026338074960195071460161574018316730019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27107044046827496949774044481042883554172446288601089783557665186837179526439011022531833404648494381695772651188930627686799041595071287861579976686280476471805443729750413769155744585020217659140119768209416606484233074777447768255423601176351206550218849520652664806067527220084281636326643974073247249482364293018017191258669807737367174125756184822544937736065416707956019952825214457955872167493025287885280392496080696114364223324075927360023129685011897067006590499259435759812914020355777822074841544352688828228082410857666260601549859489842231754051662980319995755637906358857787665353730975070308311093543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20850783064984892398339896740016277980179677926099570893568244816803814575932351555600713457725914118054985377815578959774153992517566138387244789909991131136779645872806573705287917900816221369448186680193069099759308403450839103329388776020520748940560760240931910314223661176624329919440261197412890315130411614278639759310315373432254654255695707618583230347417727195698538606368139255518546720688918688914265545967427141432875744239064094902101587176349810897168748850547644254044112414559281182237226423717022770081553432985736344102191197183785434734166681076394647354799193037096630345927874488306767772120403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26917234845157289862644327960407822381592417152041851289271480190846394321154831325521406837216220349188242539815415919321631671549883609313857391315560988997589296021515291348346715761448918445366470335547182321445308787652566125957556843363035892182183888310695907464844877937612886709189658833465288710283264348741043213918161176732026785770400436706655297663706297844441538055749094329600988873903991735534462061775610420423046797392521529507767536574482227854695900655667025672192566062030960883657471654473778062649842819603301702517343846916070879090845273012799817675645546178646596139423104839431505069745389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20383624342369076185025545679977377071210976928549438017712924991074224009267098408717434756750244329518292864754092725717077739039602265515142162999916868945915737484298538793369870736523507246511012808690507447703350062951242440299091419764486151450133184657007057567815451716627243568255589444745436764300926019268551004661360924137255082494616434591361201531366798524810682737117859674241412456021545624615176869776650696503937879797187045966752052366479068595706444677651245633900155623042854065018073323582140590586456161585130669364767055532176142852471773480061064224835010202796046649638811569244223227205819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22870278970665936292277807488558143680968642855959823518622960058423962682543077182869189026792187547199298151168313171012956629573719079562025335532851090782119694046787333844976306963309031306129471437217084623762168511380603178888566033947700743426642371002675850643311561994400180544369069329751922101842537252938750277816597628260412079280133578785019212052401075084730398356126116683525594413408941325407016608691409453653215590531687016483862986271668482222697188404255397098863596091937685159105636632842367348080382032556235238331416085084847460972504775879916174338309266190098891513728258885271302234408807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27109709746775228009708843188781648484490125181717918046128087083102691423673390689591517118211868760277789230378712268957961764415534103008871999020729128156099916343268580443427080419181560955590132685239719015261150045414727420872367022126141514112739878483575081183735231195021126440942182349316235039500663688217502748139714303236139940289560690060747814087202574222039638368730923869195280846999950936743067752890097211729623564719291441187490383437206829900849131835091739307881132546822211179569860317599621341382644695098793206826464532742578015238116676763103135471254460495194945513446944493835679180189673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24090872913436699166709213214101442143822616122410960085164725131032937987907596184449540322765934941782537525046110165609715115370404487977826369105611302371928335259361603867562383573438610138717421726311256375663252625589912208024049718348768225740609241898175146704080250175433983868561130115666751715494107575336794904615550529887063445984641983249422865332995995643990293584721806732174479609373543895022047304230330261635632364942728095399005657094972365167502661673617353306490814291532883831333291054274676668565715158768654262475981831003630160486741328566132910437452661255352268480293988861103318712959281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26911204138768789700139071265536905332766787157496493872611924117412266314299832577355429407177867305842553390548935552344014606820223693727304586045071841992990659103781480183042204357803506511426701914779535948821209052849548297502519397714805458434982235129149242919561695950396310602568147010491843831385664238456852218006262290041839453101240478006491194998551351071205268176300902826331567760911665288968878531416799838688806277945254500810211783934494298038594723879144841535095205780724230567679703726197703483149328970153933073128950977007827469524632035878791962141451918938063338042312078099087082896298901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20457376111976179294783758126329585614182591952085393306850328932587761910215493349626590366883392519361088443579462561574352409561288407933941709077258889547790141710990387645336993724396466112346220564529336468213353196017128434266943803114178309995845915162137642342948401475164782261339043191405885723863063046892145566916806149723818679186116342069875667126923560778205114945007061073384198351945277199347880780011194471686141636281571727229419631439535744357890487498739414396511638832455963177207498931578577157118935566680895893627740568023237030068455415073816590948189809751205107430268244521598823645152393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19662408979445388308493025157036739688545705686334495967150087834119528095988398994675703770882145802761513528382652674682065968862537154680805315820868403449145019431244643000627022704179772182261815054223561145890961221678064995802791970089114411251245606520084049589892215373434018831347948919421711433354764392766631189611760437675384840367327254654856606710893205999898657649993970764027492557219432275717175743647054537648515097830812186660974373760413230796715175269893482758115070991386429966129517171542833908365390553952618518986444975025581342128053167711030148433404470642281567563395083350549296546719023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20591306895024445179002404993286834699342722635189635427826750557655896718703960841602213732494741314663360441075663785024922178386615085788675566169966978141603916036554474813341140559227405203308952915607101052217571487170094066749684978847593314292509661512606146643025973191679961675280840928663929952673461357996148264866951678634813140442347494564277573202472665299132050247131613152742097327066026228445906882969618800685620985771238189769594125881571115611345740815167994307392326915264943713708110572732302449219423878958729672385879463383739556887539692253457751729834627409502342785943949501168558545994251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25663892531563232846371982164764840060790428465211284479161650687528106768824583439663901709866021426172864657129749788962063468544485640099652039309927404015833848466700460446375587883110349738885915367732173324515012802552886227791239056670587826092078382223412812492962166533970723471274095071968827438385711457925022802462726622667648230487236401962585817715511130816846561205844251206068155235604739893333722467548462590531545766739308865023812869642700188850168163291608232222298706336600604632430777860870259576720680806618335438173110729051390059493717160940949843923674396563572067328722189135756872232637177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23249750056525788878366327744819653427486070476768961551311521727625533668728859638383991226872205878042653707446288800265224599039348740120367313558535774736446815496623672739732494111222299116951845099341241391651570772597096879525165181103640171982155799075835949861350503152854980723342462104228348444178982847989661385862229854517130754396853812520892869409747100468985921235396941938474681023636337198044033180339539769815836012813493933927376514165312041415519971550725846973034896946272094910983681586497690310575562197397814893909558937476600266992737622949628019558252602687806216525498817864349147141078351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22070134066659394596340177445121953085467031970179992967659749084393699922971955410767244096700263723748774943600973021364201818982305555024743982395690910501920504911614125871561763010452473434510990855874601048304298541920846355467680704527660955912928259414319807937789120589157608642369431172110184538062350920456541007635228819223643614645766914337152839766537910332456889553066238109160844318335294564771763761286619359397138149073849314968560510042572869627063383356372247621813347559154840804120840329034440108685922980224856694256433118391332245241762201595176811367900004918356019001118043179185887558445671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25690596628385396321105278329442704409329261032028389133130118734055727496014797078023723524839354265339508980522886177589041078168799088973901454900616522402296572483532102332468077181581166886150582914491856896607887658648257480818337479952787972555673409583801123345239579729513254804677826646060069891081774171792056485410473633461785604030636577340892613719817906586331343301851785149684144796189018564289711034426033089101638153112143981961572028899868315835843136198034061619491292643724196339935886590688714437976525312049256912682885437122936993296994765563089505376230137196509028596029576029574427749473087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22653799959192075409078324371943991591159766857013850447697189489285757961921527425123851985250384958847732074351745574568588691991475977342526063595838732967777343276431662822721812484531724564550844830566607392498509666924797465737016301988683307769278410235451478578220660898247434292717943835179784064557334293236812429385059277166076041396868945483653015213157156074334669496794201724144931949566688503997615855156176399174754201471816496242855923576627584823120738124138714675120484580938814957940708079239256646511311829925135166562608419942028452731516884591135243941722617717183503255693705151418663889405229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25901246744171129923877747464003478367651989907064826217188578729784641307999555108452601695931127655905794648383416661454136827688260680067315278787287492634806209957346801297977166016489770361521838620925877935869931389090156898279179502405140879126353347414909485741296160888051854316049590583698386040242177914505998188348595380935499671690170536529701043977539790554652688009911038165016100953197482373157145179986303524490346003804754743055918978116277062585802436760321353651923499479152143427568661861824214894569371180094034619237218739118237795365079719339445133845844408862399990673349797966067584934615103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21264118243440603536346480871885797711394838667575420561547970132080674531056015730763563186959677702227386089724630738251941887155107891888986769827560772222735322556822107539286355805710602637234725265923182034174198615444868468106387023894607916800220722669735892576619782884548595757599842658005725675299684031671110958206182152469895985096943315619969289160958592345592255443425305479345785331136943172828854567055316454968943320623905031652725974582269425210778236476575818666568634338662397970655493369621440138152978932970199117251164629150036616230247418850318072301742574587308792951170950269919364705420891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26749097287234455401756627826214139927568222130718960933863709201803299635798873296408358402042937737251135090143549151115445813841286476554808901744905196085410550532937719200386585239304509563129842702677852013427738944242719155478652360518383312814601877916596066728057735639295398217132000816541960085955775107245019594230594109404269489640087194612754673400717050139210162824462315847477860280362544345511832299994897675455313825774548985877480716800646382810246811008295451450192165928211241434945396734728780156359865868067677538538384337737749870353360117827426315660217935740891453242080055466613932068093239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26054255431946797787657868962217703681281386250787956265254855439382728630129500658394576409894962901250827874440110986908275869769115147776494734423474479601363512662360722114936020260621966103296532274681091300843512080475119523768527860294903767251574792714484015378908063430676954798554878873210954627125889900355757261285385939094757816370051606455537124058982747255376739749616474458222587695403776939320151973549045948003829330033172840193203052653193109212831801862547560853175878309627384841755781680098437376794473877710085373980989298320805251334955092234149203229993336854203697978176775602718629314119727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24359500564250027609371176651945883452431597893660730066775508701067643352678642507715286588639620014440778283865160442824607053131327796157568824087988289784667019843386516818754501413544733032245490944232300979220181743084603974316025113827111354973403013744682074248818175570518644074726120484414558446387363847048355928502687763995451247267559685342770799913383052888294425334717623098709661831673741541325168107683265400485142128253820724251940087346131827951331392825523468849061860757442510013808553711779953583568325290530504550321175061558482677296490450869074197448688092694051360566638402106301773225808843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21698161205873829075431893612094599050543946316514518165121524360327619647641502458444911808142545216884638954560194162003324234131541230637999301167495277952846475541966470000512794254741706542935074207742730840743210519762358734822418701214571205894745096381498957500910030314811007443272751734246190440385699058274040325362178278903380983597626527348549722770123023406252356629688772119966630896730613662319444118127448622572059014367123776060780772052083962506491171167482820220577722746359252599882854353319862036858174516948064239425994100337157886531708285070904618220679452423339313270110736559195874915538579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30280462384672969260573551099782550723148961428100332323376163725293341604866366108388549713575518753550457944459580809863254738330060959244611583535877328068108458804795744970616205674954141956935297245727044482546691461006353575469271692678439904800792903072211583088498669838493493635316646913434079142342509968239464547964705005225577154365325221379195890800131141238913871782572164465795836981853534533836030597490185053103561521165062070045264237745263850491111553849789576457530630330307446064333763050369283432014112187379631599705899918406461606217152496064062569208798919856427728618823865994700107988635437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21889140773559411695084805620175270085133247862668179252939720401203252898337452023238790252281014211738622643843921383309182141593680495575977869136281374091856333193417660106595052936686256141404880677304401028394109336093549760102416771115371466582696615335273153076330483180705596662102458020030157205648709518279195257665186717137042812518849021249674028019765681054551708019901562996782805998136130309833086808858781548021411248298078130692990899561971967115889686673830355044234582686487359010966011419165848527145234578687086474617349192252928627102503442908848086039559053412999469317910359782479615816174259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24811425197655762717145089931208219259776367414969406071172445237027318232622118580106325929327130235288415181330497262311112689392025547002675016554558032584759039712289979020415335164391894456276332495045239049148223478588084042940779243916114724550185169547611141657350080167170927981696618794690234906104950645403920903365725869396358590497176884249444244958577973285507554158491312673758053977952390618065573897414909909898567721675853270493263574817666499457320307518937085940512217625010382284142159239399820278685351324073312983550165256718579126570220215966728521347504661626360332296914885525538567070992059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19081234220439912989690327890845546686179065340354480852379717617444420928677773627092250135258856560940119456137227296155447050264989879588853960662646529587936570267415623472260783777166422161260512947624973482044133524369000853540445802139040307574930929296128476923895293748817874874263411058427396225671561106244974412480799057259902688184671383381432573875204903414842798440031275830614467862428436143122268526126462239616859819012417661285837493308495464509734197498471014697864051176253693989331164889538187256994721864749508176021484578741300316458095185667591341926497539197037435049029432833190776320018861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29000458381072932694326518687761926493774629159761165781847676312249980805091339380845454618598002521992095929431004124299863766994145540603550652443873687154600211625680575728825654828687218630578421588806695478447036712053351685711582822678215425081187333872640759542388891373931174111206432855271444593204114397643199373939558497726743465539253439018034289660893022432131724336604464375211687517788526284881235636114234612928039410525529558791581425202847502360377897574917063675945719917631301426760375648981220577909118812030345186673371059538862600109763574544669116281511266562557011158815278121032673631539553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24406579093155281182908946786040208230591253465750826699274219814777777277597416609609102434085596446433152752385506101209083127906870801134806088944161303508582098690200855795076833997728277184021330192861387892932208419873998035788145251687337975814433832607312290869384540237841811848649682569602283224691685885555226377426888405168454498815833086105059819950266085384484831727298975993056817401769498120727110983435735980306564781027792573612783951194709897199145787022947313338680706740107148670204082262565334718671984805502100412312174645126780840261403939060674873642109317947247329853456757192073064812202927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21609868461046323549793244560322992612942104260657736517222041754623951529288791032067156886468645706203981084779558399642567650508397839634379655902474983162722542698253427374484375603590553866078507922341373213623995626673193436924584980351264260134284387746144400628448871362973543166805309663752652566324905925448798926152015709240461016285359715990391729019178214834712595039249749965769562539580058547972733274770118135071083097764293684382112142258145337203346684288376440116958315937127219971410170270929736680662056104146920325113163876759174675451686821610611560969583034129568412331324424574231580606991143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22940906322782270985546740702157141963312534685177530738513732681505564394248079209976766270216670588003105390993491867638073415221571753285855580268575053606992258243155420839541661097043593760108217799985556036349036375619461699963708838262680720620143280498626530776835187715897206777392835600558115273266352723767722142978172337832679884455465737075611244118344842772260335037834393004067421780688475122206089806995817740407262747966686822995954466039641388752874369363957711825989860415661118713892669267944947901147115201050902616777369479762289447390130901133702669515562815447517137968533368552642283949480457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29161310914719660395787992607518382967222499557383020390118739158494860178711055152655935241862436315205699931705315879478434945341336238201506012398520397875586372493623121623132293845740737418473925613452002429473879194150283679643209522129571543794320529966949071626528716464549853797536694667315032058750526573152094117284673450687368527840440409019000434025968614367515409885986504343589820649110127049293336936104102083400315931757503301482178909917403507533736200647845876811465418728509839158611035074587828399427547664790685083724361871096262627556155012107108880148537678982306395316615955859110144289385369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24638053418874928552100894868599757788311552998147153680331558313585943141798447108031113833593721106183142444557574275270181773445362836146242621738288069535983341922539187945481835930720716808785996461410020631080837781804371177980457669036461947487828238847987216670189026513627998928518544645878416099310948178763253681627731134860708517945970688515315655470211899757008125215977284371484512337066303048436155132684625642741763158655292167582943894032705097823592511824856039615448861807834828098483225052896218037229759185403512128634398734693011377532482009086316661512520214116571978581592305004878703988518537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26635474834445640885908021596027573018640689582379308446126789459554766656971346350309146573408204229285539895772902115837174912166769764182535203399684400283003157648111045129400122076451419834024130541855416063868893579690517319299664567330592540658461591553531390201535651927968550164620309640039717912398795935801900414880908628195206651919747220761975113761138650808342732688819895728368155602329064591296753488691753767103613063679542941823131065229302284277101673747369675065770214498419520234608730462637125953129210394061519591464380255075054111306853662803240552996050301347227512891349546883247785083891999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25942104840445955644161991615218982237875734159110749165418961417645088574470335075881811303803944114925596627694368736063841242404292536523802063187966010122559106007753732664072293798367880236657846992972471184639046355998835915449785397778794087572260008591644269995273386975881432609380517946119761702351053861914673227322924156224710018320499117669425065591626720661458879566802271890406466647802402396347324648579191080427715579299987822022706576605860241192315123384175474644799635483280370271846310526717058207069633311517318295594453937757005412096240748077139114603085132697099484202041837774066686174835913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25323922192686880663632851832350189422711865694112269585306861259151481384200037657870962729018702537897104849832069230684293326759167604376389673176455223445749195770560823365554911057229133499148433112088106295179536025519759727220457389656920207383119358334444932680622432777218301415402491806539944249857683337067149687597804251387674193611883550514708108049851232179545601067964883811900342743560614601332486727455311485503164491013848301079564205273162758251649694025411496446118026237900000164091773942904308114718628826316921170549461284702884848602303573225625301573775787840763942279561521767427412545995651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23290352729037705122070560851146680790523189254315678645431032494950956916335156169723349037619340362159637571856107712486684938578100019169807734524274214852060950364032564012225433800625258003867287226334604019921919575028179993570490601066478924950165475081762386862050367629887988725475474419008642069030745182826770361860929936110185285111906236009452863544857883523589797292947709057083109872808903396084314055580618585005595354766233068769414229872757869689696345903701122755732417260155168773707793241385049859037665225846200894261331069796148564215507934608964382581522599894313497248918617153807149443453409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20771159612960257696002992532909178938180061409888678310348948724513544155644453069279119568858294201945907594275881844046689829727953991075745613759529614060486163964206486153777067339248187021483318747854945046010844594214059599415306355318807215430056323963802962432781834648665967328490892798653247911167679591064754019022967810664439663658080252339404959687449134130515415891936952915023238284333498868655268350576566600589483301012491491641547161107876742999876392261916323082983974467043855218694758621483482494151271483196527316731303676762010215035820664538421331751000206905646416921755856285641308831966357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24912006607127638554749591015819857768522981336585734955202820555905422724406352619469390556127487894667431558219968430450570420440647372605200933918333981344458877213503005635178188196516899319715536400303414694072267372683965371758793786077014508633218876097798737217494881209966640980220270519845574999943788899683007010839580156354195814921253309904780501425697177520304549812039714496812755436689071172477044463676110333145917891625414105313291930693556773036238771926245929476809494588591970192369015266073297738575059503355921471955241263594757776174336426010664537384412939815767241911122871886334434110022947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27446178108215291378177208426606688330929073921120164346971851299494248878220243506718007587349601714316603173684955060425889076097876790049084179523173747289765157267561499243371789268156536287353797130821144067076271619568329955318198002468105640101890590736010014480746002821022277998440949976172512027216216629199276045906073217205120321785258182284035273329504660685825316626566892042095673579743648807365714204393661175644162047978488617806968632924965260542752816712240156517664318849079878378126434782660957567169681622051969816721215257435996975530342177830609334951525369249522215247495512031161992363126093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23431175761061530875644173240482640714623665244537322144391134462682285196325923023947676155745625626204794162646221685899606782268579981616339212735830283161488901833283455604455236910396551925311120127984124351303180314401471051386808045603769922386694642552146543519577280440246072268651135779340782381865230373791388426563340753244755577191016038877425122117640743628976030986841068764500013215858691672122112632119333238970148551560329246925623115849598038497516466081435393859927139262802863180820386285069578774585528150422273933716430854926893958278318970631809087976547668472980656218905884925841976563779071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23861744490216071262937975638519581656783711587271750450340294366769476850166111396135009226262745924760523594621332822670912259663170181645472029823579085804284777298410715382651797379071996901418128626097530146842379418674628249374522075551559372008940620210800204145374609431798374108969287672583199668617523734444578549891689633250864439321803814900402235751294425217282100287018678642803350941117488076741049241168569758944151080046347493806861733626358182296176141652681402148451764005045517852985010564397692481961251130193411653152825158510805368815676588002363785332344496788091764706105018791503999368053267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30065776286624274478680128147050721487186761618247490072264864460577690063757185312486423032874337189445371226517993414957469138078279013636091231012581900209147630928104592171184917841442868964646806013967280723111129124718531096496527686868349641825144342546144757035547912091777539881766851756039151722846420815481357871661210233336015203930951736418662436304424732094796392837517204957438348499430738316894775359913051927511936676496416333884981932420024066299028569901208860758182985256216663998634832763381494986469392737663279468332231551682206041102599157872005012176997519301049847554011135825873958766454553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27401432936549862315772464307781996633513271611256139272812943791391070092094834440277741909001488601536402755631826542374651669152462021030420257031776309751429356253713190817589563122027167303108164473372086972254283586854601661563572221721912986241131468754307326567625085226761635809505382439093512727926133766293356014596582013334550734372964346781050410362706643639198512708311911017330222347711646198728422524188780350751237645461641420074659601968569824228648224624300668588324259103459889522237943968176299633869467216601521869470130360243434687436241254678176674200500523483164650127014700449601439669476961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26019331826004835413048882501738154323616233235619077219527808118693749587328459982854673116290191388662289650713168212732999120095954431804800477702649812094502776083632030826434812874751359984879900698346620551145049513377797864764312257076502271912952054159353686104979287385035593044979719300484617007752128837934981765657462376711244242611918689154745282383756439743151135882714745907488704059966144517090822899876835716430043281337804949668147607892193148936260552857114964387407584449007077273460829524817468457137172048732787140451312573296678821161318351204615545816965199575503207626915994334715232411317629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26078570989357314961809524498236327439499245194281129224903990572709202750550102533612193906763020471312070787938903800884293075228756466168973679530378217507401997960158986838024167262884133248402984425876118557811923448608559880686597644462192581996039040072416288564793342625888982671410103213043367395111695466840241355237175786739433072213456444052467819511227126045630731121405025335076388774250500590228149224152323764752148545280775345075482738366362430331962112990435448468682153192708687201321926776766284000124427531211048419490096342128850494427112950025930207805976212666756830342973700027803794814424929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22906049377251333181489897389695774814989041698976888627383177003193554782496876969120594978726675165621034714099436736570374170323354396984715568653797630728775250190746462162449382625486432048590641895767409241024269074498835630980139480519146709447444393164535376879681684245533019908983369315788446979924256816550545426259376036385312953738998840998776257387899732640135188375403936686795989806380013037908970196107854950859134126587551870606536118338695053225467077261442866795715884305907931745695965763147199264416822080296337944296372901677795815291251363914253121356491895315313284961374724179227986037880131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29906860107523269928099968319156804446667612799070348337303969597876658622469717355830675735020030272729566145234571466326825793641327695633166585850730649936691884371633772936687225799096801090867918949686229170281680775250767080169783341403641125069658773254622093660009051956944968113515249279164030595600470591227662362512461720168723615909954979803397043090284805236311478177602769795748561778706798353579040261382045024609280507825806564703990403955667053971903874453210370499230263010476513811540667348986779215209656805702668611739349136803085388674524764694082455478324821274020361620349456746682063295484533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26259477189082347141464057629415768304905885682482446998600929923651795132995864914819645074869667546242976444606801265557379582844594171894542073981846406919257037063863366449620645795092469093169892062662378188474172370134901103236048325446908354106500708984042152360769541085977059490054402067920366994453830741209765993092087996488842458993934667884705359255906636002455397064866530743809949928682765470623801646746682920604576579201265408004642026590348183428865381758719458365047274412158445292450483908261993911927460752306535517969079889003181409129277843819365050110000036584809329388635870915876836017551603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25356662317313860333708745155055591919291384123214233737133202007766981248681139046628546732886376590099215394603558094093527310503505930231863212719812578306592577320779861552093230553989964964586723225416139484078453843938599633355341291546550203208692091900571750084757690565200212635589990547229472199175635038605401557827260620934598750504883808364134627059672062747228224275839748518876031804060363399478174053868646297164088622144562489816491560318854104317656347727189018834700722132060832203999148849624387789088284726698460609264904662818803739121261836706100382428347485244263695863632698721698328433653661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24588601220365680769389976999971857771580037965464549389683936404378168414411578088780569437044412184662310058501745638158858334837489840650183253088764890184803240791377715287055485674781922407455980035152285398763457385291299448381546546952549319652515150592265428975478528515573911023613654159585785877261799669594161221843492725830368789420968727611073967426770938555943233992730231693197375334911964963867882393559923040919575292852806365784340091068286927342393688252484357986216544517164916819443757155148574848628484554440441394212294558302275816737500885257429947736886821550381982393960849745278612176065769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28726140554131394517670024052583204435224915419685624347528035469414794042565512214464930772446178413418325267957451463705693559432647746690937010972632606053908747321158854672363818316783496832566330125070668653595581108104246992886863713318688786120314884112073178616069071539100797847791020201085848979565036169872604740080205950404268257618198472336309499166879122118662884150045007001077479716460489822634485576541682513722639128426210758802654167806353381381338177788112000231931303997846069261513780307948836717299110182481826884320564470431093034821346333952334385196702149695280623951773647161872458289285379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16804792245634397483352515175470077023897553110541117978714767981615935918430329891594579873703342340466667504301711171096616847200122716461056404547543704459092016984220688347824648095429407517681870973514393278077095291029357886844337673695202924120572735625994404753463986501606718251573299886157207270606044561472238077427720451217278973937620736944042186004572577218911942642626566360921120810801077107931879275081671064895236908598771611370023949318708552219280279310705183396212107185180066558797778257865785962278135919233274093021090985352362325369189608244181377458052649389929943636170457424505799674451477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24836935530402962689846756855894392935064783993223379053706319005693709204408452763167550281188519462887777111227120238915072984935514608022902471263539329755951672520428231847988168976399664996769944895281729209916029363798925433062122569676795933196164527135720076214950986928652670864455850344129419967785200106335497037351326866131269502711633553057273356796164682888414747269928244083275584179445965930342009537225538541987337618506579542409540649505166280539951818276863514629101648834881627802920883733870290659087237320668694779324791346613900617136281864886449196726941003945863774001328671377294519961299299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25897252048846406325658535480778388364685016592800890594825649119639230975108395009736398658516871839051466676149120253194216134407136834680093834308719093448224261105927224679422692132419024714637402190546802856050182056163421995092729039159609223574083003311334949969261243798228839986661128248275125892773606688662986966551959294896970187369319012831808499154588909323723241439036206863008191002933424022530581427018629243834699114270641475342693992263285070269073843071560329270636030398121453561639891755890691570717678800594095555678919284986682210102972585325035183735426156456116083331149397329630775219745013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23040612764505142857866383485611680633536393605751331451239598295261605650230441260216966812845032354013239625174992118205385516628899321715356889379497408746780794241719764408811773523601802596316223617608323158023130725494969318442443162701820580180879402186273546601191932428688502093571471207539214080280471501964145156180535648486176244350126617751164051655386997252261418118269914226689213635662278132277570210780753276277442676574073940667889146611430554885627792071758066744753587183652745576438786436029008591558513116280177213789615220949030404986006539828953622701467771569280382892724270251620468582382301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29706004129219430461975016326941451358953676283662314088664787643186982860000771025338876554445311245584800906902411113225512111393378881086821639275091902831017415453278573516303638334363723978468372830885009461109865085645642949696189913432790087136332315567094392564745156205337124125304613087026151200791826856596579128686247794279815975579096075300797320190865457727635967132714792712007041626022487297258185618024577710976073283383780699191823775180859720689649285574956086238806067392420187869452358018582077415755160171345213054217870202657584295778446607305498166493630237517342045025199005791303050758042631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25148271760055274198431213713984718002834308759194511893908735977193296384072463047195690796609293743992345537264919424256980273758238677751814770834880620392674671298161857212699303055116078292671720621074977300141904163722655822285977844597089951742721263534732475730439999844130449399388805587641290298688672078949120701204455670619555262477085580066290829628259996704126447229593636381683993359809617972908394825118060831193878872233430651732857914742696608412374809556201639929405297132198385362191960852324899242320550583945729928159966805826576063419771043538442064994633724678773007607906882578671969588185671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28857962288910849842960841867510757673745557587293987445812926151354122803425737258770763818727132807053047866380759926437912648494397227899529525476472136953337445236119627524668576863212960945422344774073689074911678886896339525173648466098721343743846080426255960941045983098816929126000702225307963838851050793306435578643617215100550280887781380605853131630393693580404618766608765603706997695360343529161672803754681177566212856634717665468361463515429102128938190264748283603665026382971897019134399645941692390305502441710802154585086783643636277756354077734298009535434000418718134954276659611059471152635933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28520963908167962155624801868749073019000932538720035507455238637397726848119810100703506853977189136718899814379067703912008483171083344459610351919604810139231739021491190432281374720839588809985741413139253858774822426557509311481749398905179944487617642071218705256000522418414863372461492478610947278419578380304460030695723685578612930410868478851038455979607761097770255183603618447886431080327604812553638358656047567572264865511579048021618804522708622792207700676452285140646105917915858571836609118816535603071499805316262984112060350488034764425412522823846044915196293741998678190140226601447018668356461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290778215613592268795624699531238990140584490627521703597227965526916463027404841991801679582864248956100360994360193266666653820159344367897202491893146122211844504431523747702031551873055713880574493747992760218096351787265272405834521523956737847775289996770420575774618618791952726403329009619463444095664927456347910702567838206208772697284576969011222137858283583606273501948410818468764309492844972166199633773844835979249543306232208672580194079096696371077125380331700717911779079796777784781326705837124380464907982265097413324791936690222222360732427986303432458470852269067729428957366499335712666337341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23701563941905257171440207926643883972967123774203415147216017998602971012220432845607280373704852765791121501355362080474879644438452531360226342989473603479584213894369393321491582302602200922486350124651686261662099022598304353581303106479242394714890349031309951907331134343575218494409080606772354675724690385978268904615084491661969682958062064602460195499132963419458086336735681391478026362594562189905664770026123054083595823305111072109536447250330421449801124971594838446430951742956972429476150766050350744367086943173628502695143255985681580040861264202304172110172389233800664881851098105462268338455663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258066834327074076757962541385290094335116274910379942258309250282301646745119132170923194572998797349240223396190661139252207213162670535135398590380593676596676386765827533524099700005169644619459451766233380308166845030488432067696754752024896033332395451071603635217665851513230364820883086819200827048685476552059153677316564064318002437548736588202367805280106028340577371469680156997779237830585723319918056881270788605197229065267532430206874275578058891479098232490791601709694635620484291797280500238460467523892272822002509143402449335529236266562452110950627872088630305713189700876133321205659340741881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26361177437607840334184652601920351268588253687200199581961369046999198550320410446598970497020308077387080488900057967368933933953525607814834395294661731615252732973804166300194139823644363129925281891697306732653939558054763641661479083863392230018121852783706632977814735899985704209597324610225094583019697150151631879954669502694725182629750277842196514327106474328402994904111439310216130321619310792823260517878062513611877707074726166382484645890792316904135427745953843398865973693340444371975784222184458549278925263965024011979538444941323170987341467102480114528061464563936203799484221624042765831615131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24456292467771251683741378151820370890359820748166105596813886472025526379935197294835754587457974233979975157398578613724853048257529524826523175055423193697779422161524034278373346660898998365735962206468616363863067548252353248681363445535676415294803105129919285419848159758579306954272897970797740445131204972697158539283433654449688071716432371871123935011226360072407951823139125649772380499614029027290963298767803958359321469291282149922403965009278101054602913542647921330109233946137625490879574041784746883579180070746587664131832101349257795015156454606933613359291328048823395492564942784658885080726411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16234288170788079814281262614470811875304858869232399913132137553064769199376456895211490338813474231991068608980494064179949688275297502294825621311353334134860207262024914660480121412960723473753401646028468968289871537791339379846148920175479823917837417592859747299107184232261424063208767216954588250459482523400985554077943150100214480910095411059408259175750206930341573118572363658707208976747993011770888304112375921301346450869967650857492517366513062422488283452864429737502874217095884891639772648625206270202423057737549398765731288070042653845906644260007476478635976380486082159727599256734761059753529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21093020176073217161350101344513956781443865918081030971354382666941640333372825044893822336261517107917281485364258229506328510999422421587780220222521179870027831516071498903144659573806200214975791183520658126583264103661873762414242349244229556674773649748022961688706144706847638794985802555116137951902017133034178614746989766094619910592693798649102672971594037773382834308614992429553738095822352685853944399642382038137821118472590225023280687709597222973242146201643349248591282928367279430882573118989084371577835486987621394717208045739560313678086571088221862049433447734146664117177584365995734119903149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18069025078651383597671160460854664109724364789391363472229431918513640806333589673842862279659259468222333291557228230190259723359623324435677223892512986851797258610430871247702663984295701874754433793270515729214538352526994395639030520695330818831603248216759396715941315961747084372394572804674971774715992049607478933630971772849759454116143973705171232300085968821805573111492920009765397513130266280689080864599531530047759388583371411115746691396531398062922161334245399391832750475108147889423259211037751284229993434205871300957293016232388424291361682923672625281135220230343335684157084047359272903407043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16291824511777176406986882590343451753313682598782965525957927928680690744928160199963531794424782689627165973590685306147774390132223750130053493354657629088328200587645787364019952579347041784761522415351359872472176723211155554905013198940479347812420768568390021160921121017527266373654777961380130318912601045413852949916195007593752094570708383580474728508992378061730326696504632941226698139544836503780715202466258711139408810206702260448306552397838940054147502938976909896510297385705462221727926171354981483905524241935634368687543728684462973631966098624427388150774737401450201100767613527768846486279209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16374780150801564455132866170125352082457788257486815507715732992804565867933765959812978758744885894143816599519243779120536220484486938624363977049986984446004983164270959921625267358684062357092302171288367126583309966977766215144008889944705975949598295243848584415049409883546918622536674840058884996396755897662537177767984898033329248832981354575596895104159883119069645072386160109316148532333348715956048588402653053004207980039113059978380763200895906914039219699299402471993461770784999406444666502452893519611364817207923775693348418956694396197502928961967476420189777289476426127754214827628886781776221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17519274625152419369435347444905142828043275052638156421269598922995196878762401394740286915623801907967279510666605962398467019098083115768695918332568464433235819459899260178579458494587343230921904764700719432802040975795449165394235083671083788671428408492660658739691695960748525006382771073785202853113048160122037245238734018222849524919144867474276062800341294331135734086181358105069721120040686772706446700588565279932142895443847305573449971737843439090591177856822762160316206219381015675994954861258001110644484726323424976240895823495499072333954366605641370153868019084863728108935450744473772534574713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27187317647077365031931961425377310065414137218569526029201001737093580736351956747917394948612665646327171700315787955533734084654274949584109464486381512937573836776431318540023004038214441490707761281905787275088773181434615796805206845520041785642434001657183957386546478181538802254108971779235795690576897896806289630331686232045638876684263692045179037125679217045005522884391263768633405254843249467572369231516669343917647299104571867308398715467375620392769703460388445988396847210586571992722220909924426183782674406610896779421024797340906273760046489746996476932633294447253783761893702684778583729520543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285056324823301757886656527942749492696676869921174079633735963304188918074037628939787174210908563063615628294427883874233022268940746005569442880263763186982158281108992310609911022245507236896674358407726123355728882875536486853755949399463834428724974414011615032337599714795737812973586877866579295854685056025196441658212123509559367103485572168155010654590454634456812766868395628143781078763316095215196201873888465901021515685534817690442281446421471925106039340385469629827524782467572594283250718352818772071906631375913195310826711540499602595311273794428412891572433540209610793647605965886796113180109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19034300041990641386501281992788641225683508259259208599825132278069083276148654691156552163126696768638908675187549802791415292042196246363646657945956596934551790170222888388572570889293254617120307389584096698665389010067639951684120616614631673947737941231932611412820042042211234210788132844013438585016796409908379900481754251005630638808408897996270448198456142362403785334053949374162757449335321050946785593599442995035724073460781183599729532954802646632736381375818761725990142854049030432309011260702111147967228100854527266682391782450281565269216739883825841228365182130594593518012783198627083335002849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19051439323428522873104979222908873325735886339767010270131773479983833588257150981015484819165585690636194024803875143390817883497845259324840411404294081108218430273726735638954522425739829448478478891977878625031569591034252950808522724759954871422070054382647362903308707392439068671948502594612658060036164544657108562888102315153380038429429646945775318058752444902609642850605762395527066591858646113024748414846794874148054937185401515006499764862058254624141333587139035477429256725807700338586895856047268113156389436819282799980069319042988593589795551455142310381145950408081736561505491951271974277028617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19061255090148963932416837400264323461762390920048511239637081159442839368205745937129825461071968054681114818268019740136335729181037147313170717954905090758711206181803971512280717895374010789111116262839227363950271027641086307606651224245189153746596414246330154361561625164027895194084471066983635600481439714710041196517502838948730544880572841710979055322834621874557776749481935398790960355141157032019233722016886085659828569035506979493013852940288710926838304486713055145517487915270526272540312032228474079016194051229687796055634741299240262119472729995297043321634020991309478241060943754434874456172701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17606675297103851088387194682546589998430971805256593674395135117737831093775290799225489850998686070940681180808169118896912984284316919274857995720787550271019723969600291237348370948442721768651570651312433352009229365335332024774742679948052329038319046506705254850070306607114253640801686121453243782467811067527843157158217368901448450428403322340356087621031705804949905627282872953116201619890160923000334900030118524012954377917651615503079952020808531689601061993740744395771602667384618170371561386126660267327397018581611915803807468965496189685798477452254055348669256220687577282380935877823315258037661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18224454348783985663689513978175322760136523816153836743725934844727949165700493316781347559691314460351929687496222008051726835970711653751820699468104153106022330794623669310686136566843943278725357612728592294817134631348829300703871335586954956161761789218088910123828917896136563050801979430014510214387338010036637663783203244684320410512492530549589957812086705772292472680880957347382287949220412172535596242909745853339605800683839785480465287944226926433326473546256513618456950230686357162229857075952909141857055934060713225743376185223550417947517300341803854676978315805309743706999811914217213565943961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19146162313211167369612229582323071969348062387597591558652522514038930570704546899094416214047139812313398999512658955284610694255914005209040153090451037761438019265807827991264265836636422564089298569894129992721807463468364528577803376295279306592547825506783359984769529403982235121853738209514675604438323562300990917101272888080209552449394646512892715487904062891898989199348730499230246691674493566451317002246485159081347876781006170287054886712476795891722314653271638267217821796277288525711981380590564028623945713942037321119884664640542146972220076156673421349757142256729771982588680550661320759257033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18098640324668024305298622346088806549590529617119381062536766901607680158590788192996216182769269610703206470157773649193201304662582839384186517729447347866633329601097367299008731345908003566779315446985739490873275129192309373362527076301054453859305465194919859716273602572750032621012509112860326267209610530522669649746775129583205538690805687662867339320277107641197889505546042541047131400207509531048060196130726741734858600028914879660790471309884702276503764655239293519469571664330776965843471241289851414218429107740798445373000258881775783978006288597157655833231711877217335328618515237362713725290201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17912437930944103738390363430019386770954238875713634093621406996249137790065304032418170315997983634201845371264414588774974395077699382656406977551841566552488894627653740433624087671675250603880591963633429680600798831314529776388352673757169107982578074654635670973513685010703142679359022845550159685905364482671723685789260218060907570641981933768678168213704261493705677799505891120711046256040371101789369936953240760112377521677574108858707530001014938747690625934279584766792255841355890260397722144138929910843574284446147321034373541155490309200206055665047984443104762908295145684725711002714069085520321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "26948444348966854658320452868582885032917285395904945870738269375110691831434127727934217246599440371384292191583199996428790286757646313099997300172654660059907303508929327106570470786704338670721128139272943211986254149065998447365011557032989396191350321323692082818536774284907092347060671257565487076180083891107721325369350079680703758420548927809391222311859987068245968241944064440724859894512699223897951125800469833749156963542646450991014782583225001696529447416152497442376181756897505490896988717296097087962008926348502930650518811134810838290283600021387082734580464255688947591075260887465255303647457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "21898412931136852336217128878421099073189849303528221158305414811091428452855291860620158775447745834529618231764433254920697595096614488724233947229306058871843770755887908087009913469962781999726460708170774377786476948722505501366766824067113089775290504049692311953326454203635206207176657225029587423430411188196959463174243982720407354707791132429616658830522639768858401399987820129308533664292626282447166057072916308425298617319961511249495319633031297466220110169741604835565009521343499407053279054142465335689551932616287454806411769794696377891688042893798525648915533282753371779078899316247735413568619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21974399117334907357957877107991966", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22597198995226487639643181782118218", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25326054030019552016919558385318050", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22894763556128637265345298327030435", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25797871383517686402079410220350207", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24059370113390159473022115707377864", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23024272858301294737672687521664821", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23755420116737191476128247301569646", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24783437902598229225985297690599177", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24855469937488971916318356923843107", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24204436583335180106356067594030722", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25356948059322028721803850025078757", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21170285207199687186710827291717435", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22283335888949360529335872268190784", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20861529477949575636649612444474860", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23064849231453448301634288119646268", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21171639607431174087802283485275002", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21933161356244884539304312820198208", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23315945551653717199879921289670594", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24185601740787856817132111403303377", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25192246960448146163740784466257816", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23440437848969348394483573718261497", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24762279938560905525903139578211183", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25362420411793663035948410341403984", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24940928108868559440755078659941288", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22849611284937462462907203627022658", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23603252388536433874552485287952061", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22805640999946671724149693719054914", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20949919207129205975772777019041898", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21083573642520278193635526857552924", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24247036402198380008540531793922067", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22267495305213783236368925448100241", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24907880560803001904472101996099317", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23328540546079706392556307224561869", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23487881322882605819149253981373673", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25341992998674401756048715696322494", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21312780283683459841288632975970558", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23452717102712676051190467499024318", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25691543110829068772882569506260818", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25381976380235974559949639637691451", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21376070430345634005063318253332207", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24401783081296680895383054556345788", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22767142774649027136612553121486819", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24811419130207339187589555074204381", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24113138767130692515748789147324697", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24099880416515808371451460243886292", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25742111240702394081367516638621933", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21631877965773032088405226492533122", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23790749935989142882988691017864134", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24803288430025234568246952968195339", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23916734640259699372331226236581953746187751780583446261154143459230194464182357541449366423088096378953248520264905289112698304905323259546225810704333238783604080359514106579590424386028912122523247840157833376658723007532276929309233290767221431501207287833057250753903763463651365287145809430610753715071477614562939107230705834461967904599744857897324583985419351866601815630971975940507819806332877673158211252703746448390054864807387520035476201275153164552648944453425795144227378767254051094485667639676762278243140784859740682540132838859164452281242545095716620011464216514768255864652009381620182498714781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28193606496795578767523520402683844883145135722114277565863755614349488832718712018089137946950078496034343076661773524087207086342397607756971809883982208624028963352104827550653814659603311449804049201139946290114523261314007893113456020652756500911620617450509387158732428571759980425417900367562390614674654812119244649187375706867687758282815484333546144573010007096194336599045584568369409470283332826321165506974240515525195720739506913331920757706906112005673169506513058918939301313202241997971698491174926632571756361160865432124221436965280857453147096809169909824214349745038051277375891047089398872784741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27503717671905334987719732038218321836633886188471031052202231107298565714415908138304743120868202653507156370576734947355976694779643042041752519398908358219313109698979764218195091598479042906144837383301562055024567137833164134617766639996520792690223735860840221661250771446984801148635004979946176034715534118629085881562727738633057295440684432525004147015873828400452808811134847511049724562282080301663122122517256166520079085796479948280476630316998258688546169183363039068159693229653815217770370264263541822153996879762915639140638698229713095127278531946893505119227934655192184852121624129261656186308589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20376155148281501595340356867341479681648237349016098826661954655374631148133436138563739210184075557507401509364186395903566515405461288769264623300173729642463567733338499678796185691038885793883712356769018181917952092395815767068897888610657970876659134036626674104046497412193561894782816133056618482235423747076053736931288487164260678306459297596821507838737137852025854561721618498496144389927890985035356107013948833498801396334706357549665542437911760045575653142971224874649942590509044072703584642105161444983772656358638436697090741965793328662107387518870556182499778714880991105859096733002793090724577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27422065624780883433460034550710051709681890940852516147076968464803823148145035619952783630234247753760292875998195503078943042377397833519706003640250668915176038916703791384383359827843275245396398154699700664156458117334647860177677652856361829767425140191537330673121652620423791965555553932077221654560567860339573911045915836081584892436082924456148147215181546054974639513565435479884670556677630401786655478940753708564183466660219650894740875828447252303816202018062239484000758856679588063621306822210284570705633674091510299405014760296594758573379700180950809718433207189570499048112253348305429961069573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24156511138839432335044449738590368845628298402464118896827516292991979385126691234681487302660038827346703883918414381975954914961827776291735852224978239089185916998528417542823266284657547456564045969227277308777933796897852110099776356930146761426751587146172465100923066427200730424639187810516601896072178971869730246554596860085349333442789693779537060872104411068484144014251123055894079142612755495890874107568662622913093763201046856715527715172995019304300371829628400021233074028988135053230679809611080117831713698802915621693723449925059485180983882473679460402309794436545481208086674753509196129020671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26407254874107368985276541648463478311656428969783658568423207574057093536397479230072024296983696271889757777615590673628903594827176178808565221004578163979994191211378114617353688311687836312743984192996473188033261026073639691994465759264341816302681061457845621862759574003070853324093396517766712039251225085658923268775480543265930442477918076522544950005321224548780369092824425508745217232666089112087617493638089530209954548080077683347044659384355850857658284902348835426242043349392458155735920124361375191177742465745141718774505278152904643667489738214911228947550236087895038261382311369547466841971033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "29603278276761052647963184104040195126851980410192430486970757365746038324589414205317069865440497500702572508340743622401195490976378863286982799565063577571007957717860417988717779599297019694392137854945427069375563847514075456659479825953467071674491092352437174470939997129411650430413446658126360131737976457909189047726468340308900058096984470744550854852476013525450858992114132718089572174892453159635255286979286401337166915043229655827722405182157047280480263151583569509837932788913793422380656808094624872347651761819345288384865664111806978372511577314826002728107738810990597387312643990086938336775429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "25255279520178892642874811925617623545196637039962399271567692867180712962069804633623875486313831233951825996723292631791586678351572582153085887676760226463946632082454882502260675729625688631339731648426737317969388681881079106257685294710743167406427702506953684675655221866596580980198482058405485773718305073642730568958197874250699990811503570868690004790356945164224321851376040684024361698693723409138432009808691585865972493078096590253088193243278052328729530656693678126026655153323462247360609957636784502691184127384372434296726519397226435441232365086728104998655460805372996218209372664562285130137497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4536959384047742980743674576072502629421136052707912676363116568461562407585147682812435287489832204625921827290538460770578850210627395237964735209319752731002089991847604923874538558773818000267005628020825087089741721064372556858801840501678232888577119556386974116790255312933523771933997021607104746308816340928747428781330883762343810926143574688908400946133711572981990075849625075975691801090291552923103235837543840638729232894329908365054484236134591949606855999653441615633782075426682705901158898002628038255642199835273054023236551560630128156642885221704396637085906482907104297095571321339104248272619193822788338565921368654032179230552983013162137301363304526319792216443793845014342654264809558397765587533046262638490663425327367846714832400499056878387977345411653801133654932784610361687899044766079913350757111167378388060316875164914316496223936641886454790354000023358685131496331466610054592253635169", + "exponent": "49861" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20821097822635118192512561377421458", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21897414553421447472446626930480920493219132901178737770813306818084985301951226126819011929546985061550076755295675868208660068652578233796999677433876940568137750222581033904930291683986172197340485375731771217652486779662457531918761298682884311642454112161659182079913736305456148094461645655809252817389075151191453010001956941372987296721973599496054335755444039927867374059023352317591936044020847727138989693799816772469808581149892806313088097406440932245102045703735395721910274804327095787415383547946873374035173500479418452059268894458076549992058479172296811540835874424469777905854744380304431034334901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "907117002555683992191803085406963610096468174226269992574747224693051368925412507626795980093322025754717764339698624919862697189923073191844792423232554817535425210436804044294527219046489017322242725243265619705171680178551447711184232184391708245355201565998777297723405699267858809201630304849896114073236753177114202798125597003070250053538617415132545713296693909798117752115718905186075930140063704844008691985192658975915952101961350067432892291102777563208019240555985996307791918646485033252143850684037408562238106974157747820920353726259340554754301390842477305213967289189363884054099641580059534944350422736134439324746453091687148156372633238095994966224102302182276691756502740831756815639172273982238493866135911008004373090801700797459065679698507520943319238831594570255591552171572902523186364160845724405026784844086607179396563865844163651128138582777297221398895013072852954521044816742630626118150332463874050298556129182141763274686872311505106845549418368179692045233028235477150584599567615686836387744687226707514493283117386648533620526090252199944288257040932979231115879930949277115570433014656058089505349924129250813835408577562571599506551025082781445041443852903848610128610887943419023230028535499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26688325555943164686008372384165119599804852380601952349283008650452631359801359990825520865448206197281886998502191628473315727279805945467423075709982640901693177677512367631128770822677264637407793519586137838412478239327241152802807077214054736895986028614577678173702701356381960759118438005860625867547402596483000380167703748271302055846428216726002280147048003760825853833792376446103686655389234333652038743167720966546682741509914614870319838946848302305589432619644837018081721367036273147295168020868189424941886271271443220930338019796814239378090401314768592188756202225984883364074643760290639557511879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27533733216464254442326395231870170135595471018696665443878855246991324579777758397683866177790514274430479818843211056193687596569137665120688873310226082893229942829435239004670105712537945023982362044488725292205239716239914616279161620126541212745073022875560817029357279950224939362337397707710465418079041359860070736027099187597870208505432654563041610221943656109867516581765145949457193969418720040378472471790515421693670353473473214055729907858190152503833544317002368310613623749089650316116292598376614982261609371334377816783423774971116630171391373190248389703487133026294506575372551828202973057697699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24633118288253236722512751402760431352782246785454021763972650603162308486811262277162120143961912044379191314497711272506723269082793176008913429419049057873707696830557374048650807435172793838758226371854564868938963138535221205247040719774167445675341831234517862910724640639983628542987510653388655553029338538282957664626569573426631289481101131443089955600620312991499378731690719583748614123203729332427754487183230835262554696297330825542368738050063897070711015507504378609936865078470057184767183896993465634432739185778600611668699491907289999318044868400635700202212192740829341533646070995487335410890909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23766910055568227276350500280014468430450033043928671349340235019909501364469450259276842590507541746819978224635669670319615740163589453869251856252533309667561626836003304026547234876747523371511027830498826729511740668927768674450194407382981961548150407523205389759953492188393599604526264405152792797085751414021824203052883682299705344521640212469242214881675560571153043134655081081852296271606268443467903299944770497638629664910656756817424391971998820619080249950288568545779178885469847875460821565861316812608906112675093756075920064440180081741071359095115352453291841022239506672964285158363276428020453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23866377733296198077338692006997494630645211591275878848238594950714071738695285138084065665639748011539071652242798839280485765455109319354579720040041451802324313689734754385321565487804567999397765342757460287516468943310716166673384782869614986662295416930248182648497446968714588622127408221798668727879477786762959495266362023097892021756869234581210969188651169679253186222093187209140114408675684952508496543162446362539293594543907788964009513648177383609537591120874933868311238674524569819108339929666194601835883502547265173326608794062847948392211230731246233975556441204464897797334439006749381842936851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29365615826533268354822598900561946997259405949049281743448359723210870423246424521121632396969211759599773527975968779232668346280899006360549428193240013003380094190521479541476063478109307928636910394500230129071251015800444996177177653549094404205590557264479720474993568844614080400472015833244396796754837391311213834093794708810586921768781575164410847464922696889349348877242878153341140200069219997323880328255007759529985353161396124175985893274524047727900237194579166952746561150755528986634538430286181932578645939687065165061883218264182462491681386421308912314129141496711930741223797416899450305340523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23197032529378968487766834104991920027009389535224302964450681827088375653228879902015070266093099721214281271000365914375495549327492120134354413166819535130639389304439379585107946730097349801390123313891263057981770330513337992211816905777731568242242397638241354308063225780356399572760910453226599303971594985246121667028043285714736900112354020184466975963960310112968661561551493285625609527163012328996512740617235860787377814627668323921526955889162219316279290022177536568417987388692706885706654651096534280920168365933317145926107882876199710784172324110559905624024215250503322017000956139841546643098997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26465811093867766424655993991831220619271156640025678891519618099239129337056215402621689243258613955712586323652828479908206529134540406887755983730865887796515094358235616742478238616061535147014335798984311009318894877823249820878845232806359502686829015758649402084404382905812852814204835966762837713223990191840576655293599483912721580384503983338733214203161675120887508353548036931680296565535265002431414991909338212836499834704460574056605990714292524452299863852626525050826144600418394503092749747188705471176422059249194496159198325705804583074853170747198809043652753633358333209243916584156274895526319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24334405913918628105935641304642986725376840208200680589680276740000961186057889811019126339988210768113710863377226874248571851950730077246278884646611280183601557273902596438581128182837215924217875040993865644828014352784434373440020662763886565033467451884783219915440677870156223444581096719881858867999448115051446315023763079524167890431850492491705396069251443509323639886770821206409529769407548283168323751301053508064459391439330539692780993058696743460774548336662184639417275291866885671499837482974540602387320281979810275197847991095301691567154688110679457288438511858908102405622767232731708338743397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25246804750650625895366751448811461714086447449460436589315348273005515240477242447136957301680441592999968303825743682751323768897882964800707501233379654038128212921948321653678127909147485501767571702989430693264854566190714448947195267055853498746409381530204477252398603782869001335301463059230648820342765339102171780036766215847138831563618241375275465951916568229824984773415083437007738691623174701190316864753714361743340166270416271705482111313920085060418201145217262134407706750143002783400210218910585635835918813808396245890247994504782589251511930799155783313452767088220741506258602131383855884287681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21631916561839153702975048835576245400873181917150663658202341293390606471167603886945768427407512371488018939147723496035361335733745067358612911968857539023058030406888010219996539011291104886959957360597172575789587905749267222211959428548427218512187970219455513163137003046833270877138994235925588525619044462637577415163437662458104712864335124054662340776818692734389075852611102268212313339331451915888734421702927015926795817817475545038922973891453205505646469100328089764825826808642872950629227036516174073969641967458585638843551122828202260385689772952205385317544469391881111037570935616925212375486771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "25016961189938019352311811509065631879816145804221643276573061701131444209008616689527058965389377015976528463655175561602870055305286324902530232889580239210583618876079040307918448019965029115654347457667378129211018948776218583691771943780868137973395715441462662562460375366860538856681724821070158013784028682885568679079160929777261180552899282227701766562651505000828972083244962693807517580940637548341739078463509419763832883067560200529058080030632475397153201924357138267002439056233946619846214535637575055541700681060968686815477466613205423502733172925750919060852607149714024516065228198207206728538643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20593765392178577578889523561568844349718254226663006200419092605738149394242982269290075341276950685882023946541945328140531779705541879209052380359076622491019650244422193887629695709937065228768950715270475734195326906530845058545259285144777706494796152558624652824391262876434838658285174219933668805327036429715345463851259538355929954166012492240840774744973825809663261120321799309186418983651981748238120088148009674237281787679437995692695435379839125831699250775931531220082067460173472080172912669703704626521896548542461647292495891028002992790147962055149871676150489083716585458456037159022075248034209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24645259872301916847392143979457094308396590642818995073235730758237559105224831511643830289464839168815822878947579025865898638001635742978986299311015831764578550356226498846959626941192449808221682849891976824099536270359266721827781432223152746289749142494938032889421495760307068185398529532195693582644896862421116582686214968571837460354612372094568343559504399580756619673130904986246444423309856559846840409349682428588471668858448696226592703659170226618830712677618823384757361260254697187460443022827938783849224203078814713689135293993480885641822997377780524878803893082785085248441905115538411095972173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23769898638922719899407034224906708933041114516849157734080992594684057011793924645648896989700039126512462498671197093098710104267716438356466597177208572483677703330274550284570166740067330304768276747857159616676765455129311162379318085716433356558165861416422601266131312864801251247255759822175843267833405131868512669926751755119611824208710690535649751630717729408294262038537125002062857992708825942762065132964088441805766389835027663984038812595151694890009907277636737993630371577442877050302847831874384322857009375208904604244433405501235623949300592948808402670384470711369223871393323743810472231425017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24438627163927203593811887586601662044899118269679781531354604065213103667705665017353937093155662944133710970533772213203562371802493457413561621164144806051589111567964642121190885409966676273347817223904875680422374665574524750003610465621547268292798830805507591050417656117879620576007555255759909513647338397985997792512428113393946912983560825731925057236656509200307779912623993093175796427585116163112516300659899092900463429145061200216445902440271945120650201937166437173493635521792674677204818606469214283185588799173787065762132331197555468355836700298506342400334362354553689772409015664162666068898681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26098029130371863903160415417383972419758968883078649236413570060656495529779297738806431983578139798509223852267708342316150384979332284990247111752305021673618938408929559542811944804909207974619899302150027843811976232437273445090351709801642746679973976534921005403407290796371668354261293616156318805213182315495764775682183098197129023719636612571975191561706958218583880711874529009819540914783645880193450443709662194229632215212577564336127996273130768833621733469326731517291570414258903826045574790376733448947412773903263868622431789566605902929582563690736599709657270507000717300193885307749066782009273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "18804295545756849663650666557662210555166734837616126583415369761051516011043278070362534023138729075956576853752533776438261909392418042054577624138175399383547228548673933087434091775755306659246933459830387951144565713249080532669833888506529616352036873761170243673015472978863891809466809868047937385194539377900648411572693322209221928961970908734197331713534219298346866681904621247500698132385413376787928846134879403211125136060878035798904538396051377178423791306229837908936530932356930106448209404052296115168005240391546205734789758461632731655454875295918622341229249787997621028095950212537932548988579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26295717788560332129545884503468407774831433321848593253464078945207994863778672637551190954477223693879713941819688790799256196745483518973387726599566790256101154354702568081022750371741445238695602319207499023352445546916738456706597336781421215002958591650778151203411806127563615687610934158598399892810993375249827107002517662420761556559144118265424991987809918087379930922318241182885009896919963647066848320488352290808311371847362970347224356988308386377627574483774912764720967715738318090598949899423913548902416066671424853920838488150664271266573293421333855389211016196938860859946424570381708131187657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22489194893117855027302326243212584222498120389327501499928061709583929375632073212218215510891502869677775359604858711418243566147028664390072081636427715761958273197479580431554830015094509072854359731312831663075894664576480046285835640937311749184905777320645897679466447803041224262995772785963514479508993220284730646744274368683176307041848814548916557841735849557465756732454405020066048220957490874162680968812752527954406804996200046303292742330518044805648650149398125739552929778083588189176249093405985159498036019319063993312520701626984158679813058074239674873508919981766901359827046278543576192782247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21572533678019361498148608364343450993173672139191820357205597438333539684433999556862594325714926526099364652708000458067323585892494554606412788550275806041963219284627664752869891623548065498713833764479729743719663095606527257035197245635127570745168875631934313661834470011299051689080945876637979616050015948258454756065341423767903353740560638789489158052926310874777757495612259318996368913666695088640929614674546225151265088952031002092748179596100435405476245471467372649828755039787933400032712835991643158132328491136073597698284318498683776118400792554449583948639295259005779081062874059300694652372269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21723571655951217266961575785694843741425123710524880225056825317629499225091234927448643083820078471361606111233741366860543334701178033517452782839141116311859563320101990945561160381423976278071466011955023567131633607865059076755811834041443039087895069925665144898485940228814266194618722147404762223737121843286293199244742763485671005574247920413321711346587911331671483136472748530752734679614582622971264740821755190341010994842484115676979920199214586948547853954895918744006256334218617802551083240939016785617083057581047758614624944167483180655852571798258587349365476899919642578860951836972329741908377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20305180301613360104123694664360975352970820024838814430755069219729018581477762749507669680397293853425419093971215873848912467862653327879492199685883143313617931156174596859714579800185503214002650839465272309147498353678967305104014763467439018578300076732502432355618783136597831409769221480438023245323925701457062307161581396131847269371576617105689201863971739316337644164511387754513095586346408054017850637473219258152184159163328660381849233950805658923332771592172617538788345279268109687170662258018092587535707350868198330980271005531272583488089945656888122595168375362761081000435640599073015748592551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24477279749998545990886771786599179088520455034519156677429204142905290469300099032371942189167435802387930350774653547613469690719501271618272385359356600020208915508090136532959252783974287433784563415942847531357532543913688059617138546934308774923640842395985231730882768832914960962027444868227797915709246198097272285041774183203802978119019239614305821864361268315833434349016552452716415030202931094171499604858419987836925100591899234476489481963062237670751553196568843844173316813806750118614507644751187288306767631710898960425192667791799468320926024227465328507078105275328970071330246868849442125132727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25119815941930210561767628666352908466963419958321582685948239369224991987510511193908735276404011318227994008735867413343492719393440115464809130295269037105181187682116045308110428146852545164746879719839717162905233989415052210955062985510326110034734248276150698624629621308228304634718002501366552717728992808957191116786461383417905167601346124588803507710571356568492822765179550294529144077021194515583598862848377633155327759268514048674631658397395800881529741436503587248931266686657395354476834451274163940811168584117448480127601391235720256343302197646697398230692832328159617173165128014382009089443601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21450821230431822589591601532659238688378542765948059116910669514284651000916450702613615006518414882579771612163200271458651087369095929124273727783123661003573005415602132006305630544497849406633785133735420063334930070946460509215208870797083920251183235280473496224244243698570939098059261465749421997021606450586320805200372150052545932594314636128788217648571018901147283420859943392481660530111869534322997477755516753215805209721298387556417238937699763882780248974641825350965225029574885825932807622334500662107259558483885357714142629692499072166338565995922723982532819898487821880524880859378518417437569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24498907540085077932655670868834043085544338617529609451064695483908972000741687381959994902033551913606033375306558215671936642570755406240081505486028003866437052422739352677742042128419123608999346995920963776384747174155059151701470871319192535597213136951193613372363419228839113079565443316119775745625684685157764762753579853436915477931035283295616034454264412066620642014113549766163762246334838433518369133379834029970210414968259576206735993390965106989000533489382305950614726842366426583274932957465058140373688674604274450495960404203913811479587962076427936099153238696359117482826423232614695995841191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "19592607264171748194373624133071411776911529813865009278045131444764912038307820602728926863516746590418822639910526517435106127410210199443323270656569864923117231696097997269604990651744349259655806116338283481559115170660467998232635443783966826650044133003019886405004533263283346293697124231370950763442857200572940947911890855406570895861842205588901823715478925331136713233796134732458534794671313070282622991524362609625236890393191432707676285943303196197184253793410023080441534254469899660768428727296147443090304999563279050488138740457521464851199379324872240510839329484810034149680725449791144751274703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "25442310355578311746735280490289899691006213310429716354481463468351636693359498928887612061941364912557581897481464801976126500861708114279253501740934573363409279471260017508077559940131917752997118471267239034994192787283729427804339129283000938014864161623503450125710988551664164911169172160353558577855171556232248286019174008316843818649262362697671672671965805860408844090131236843640219316124152673240719430637205406679119997085519418899142708184000753945297714889289934478164392781652987852499899976654141969126160404165990767395008282539400919023457455435299191567688964661239621509867038326267529307550411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "23146929949238766560091959466439807131017566544202724408608553749477716047273710475628465890947126707385883610605289074509839365891368170022566946276472529462488741931483346750783839507053833672003273856682095698184257147270171129979108500925078604358878474360392320616009101729434255034494495007123030480166816893777417736310025139260002867640709164788503829119486086181893644757795256911680229752974666399509239998810334789438098960537280559351156629104889856820675403828542758326615051757608258251278982063838977019848719713366762620258851483430959603875477696174587157469414345547780538775310991371606784231763677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "22818653058255877376601423507087210987869909595781723368550545022235169609553187677412831012081681712066427634324166888688338367797172454260535659700863203216301501287983091397852291795586990210865459439154105062471337408322302157763095758504426316190924320789799019989091156698731080446494591695158679933993689336530847922987324890975491776251115328447743355995646634528801680755717562208453967724631515106641589775446266449221933675178754878967204106512388306382006991418237381374437320909379356182183622709296938622197635639933056792963723267182565794049678846219429454117156900839250678776543435204144274806808231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22784982814641187111744240245596988375973280955015565720042145516897729683891752843529497664634107877396056595396332394462230367424443415163550554651845795767936124943364073757748961829364146938960713533555696036851915929731278098836973868469506697288492167767098404094085169744987416335897836126166266618256069098060293380627177963541128763884432956650577502492043598652716790327633718636980376602373413497887770624101299097203049271310760295816952836235404205026844783247735727616506470369582051532687673124011962446837416706129236446777080689591305759591288645325450862416968484709128636140519842651466457858576483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "25297896319954841580126901574418938425291086001176273773555899316426521069964488242475476864543965113917716051186993398590358416471566584292349984043442868255638670471281868661773908149644180856610501718223039996187877971258658358222316436048228371370910968774535043470430602965641863600982122475646169630991782075512241372202204763236899958804147974501442523993848756767801768838754525942756167920708089648771477853135198058722763640731012631458029465753406684973387871900062010330893094911901862992329643537692077142614992424330888489648314282817316938618998093530790996083317379473103594968225352379033400658605171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27097555864782523408920788122225678089553784725567848561855960331670641471933507852965584726881016716218586678023411501472774976804875501339080331585817268474624072217343479742327060330612867228198858082405579215808735331236622970672825110562131911891204230804052846227271588738198787093514637699787078588790491114431100489925008089953906770532763017554987719460469413395960018388018562353049101185705780048410523511430511470139553056324544078663261571681448764107632183693663384198550765205451060281892284037767407623050377546112809632368083896324802217754345014094075248871626600740557497045790551131381409063302861", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30216048460270224047241178590922534731758405011175852034757673917688351860365091498922973601414524648643268670352244912030469989312725023471156561045736576361343228824944955641369905728940123362112001041813143178094172969331504636479831705074864574920923468932225963944845267813832884067537349208291877212783818381637510844881972646912650730721415960217139913603053707794358625031547970081244361893058947789508776719583369759056345391010894657305788883244804531253273275370151389643998683309287044763308185909408591609975930863474868573627487817954831160237918532465573136342760864383858605649380579333453732281622203", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22290030509251921241087898676110075183115146401198262835067189844601604388833074517707470690405545546748719698687353884143782613887040160856476810232972384846291199749010931949425518287878198952290020912387337347245392306758347743994779617042617826155693803117084321104825026102671177772967371797043107273622392771515170713330688302420201097252034894591325226561566498725865561666131669406178936051317302230810459151051954482798987156157430739793067294771202569766207497355346940344270130327717616826308338918048986556745518017785787430994602265292464004117928616299254108365939525627564390588709498410418458962865811", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27461717248012919792560880292695521693229927411126816244585447333325663702295056187753093793189203397690390851938373295401006439200580184509941006280516360539690883272941364628613994857111247737012272699691232906546587740966250680982272449760012030145312139676289988782163697858081977015373454225096623690877071219004886933265584068198181985326590192535958695496178193645932649139013198975941564724548841328568297639346764173318065181638996394877981561269176574294956471602142229718042871403901911426331579129579017090657230697198029446334897922189844700518242768647591746278395229896324371046140232661927040373079089", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19508954083812398529895697905756159990659733151595638200453455441222931266015783849171851966596074622155079108902116664060306753184204485989825388364729045249158455797020523365101726718558152911824538453632175747490316946390201995286687284908228973025429923676639088186937294544202546092775677378674272233957463109386383289373695796376720827453923264257933250372583906220902203260453119421956790721463083305379033764222961461686814078845382031007066647593861314852562332331789409158564521071255378011493136176780037682292724269252863319171608282178236807568390438860449814165991383656340089442968639045730340234959357", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20794001892839185695031239584774455204395360834703999836457151406422150996214090776625500914924367180648351779752569838327025958050624440101115611612753963883360928979147179294253708540696130237769558610376553314358379240507447985027886188663368741020828924166368609696116699879410919049356758009650467054105158631862287223539890059432939079583841133188494066178890701983096618762772221468992693658224593522912010029613723132802838262961555107321722545542323697520601686855707015212510176679730108994191393381353521694109729838422122299461818312966036417038264903591360361248651586620292484413835132134491410565427539", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25815222659605407064566806871561143048571435907590956764734526512121978247503699794091007357014584908395826860986427922271705489271836922336676933837942279398803665778784932891906901853946594467315458983095640669935526271926374634668237861662160854927776974989902250037065592093140483619751737687480555116379517664208874001495624517899321014830081050575079568544739612590813642776547802024997553621047017032963289173566264945594595339307844233431746524094034564543386130421860460275167075524956326164207779179081517073350475840874402167172827522397044054073604537667274296956917514670263355438349841081127259827538983", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21316058047677395895673381673183465609343593676423545885172693305078252663716624559532887648003546718677608842622510788195380046066779456387912602650288391794241766705421941444884636480285005031301064503076849787112658406451489890994378578546354643195289211627496845436292991556912106361944734223959647805939594713242077191403095637646555576825000150866286997172558181059660646470413810137632137870902994385504494537595906983028395951097624897751868307950630443656503148378824119967931812756992755599615765450371040940758602164585993318779506597340086689537058066444479283549901892731836444885363738948561292053769163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23966427450339757633523261335864175866046434726734098002936755059193567658574367806325162755077132744565255424104153212254610135765426822433614037582397311981878836950791490975652666359181433246453674811997861178766482696260241509666856990208302386826504067472535843310021436817689257233685101557360205869270411561497940927213108110689223573506894420949900370205893729372908773712389146816278001148730905806175700439062236003901703681501537374587532922003546251864059272080639984772326428239227851255775915414535475569277127493239105775559778577764947731951502248380079522530684807119522549033996373656114628706701193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27138518777610049385319198984843722905841576386478996909269689175205615126833325501747230435474866737322706181840615182039281593057374788566639609070615896390047794848289360390810073742782392490464342353789015134132046057789992298915796665471079853831012167726013991621061404270804404668456749956508242221567782921782071435487666660000482614811277676833322072204011965940874650430862709914835851833062354193250542527390807550020600302577265086383342763770752830700469832486274360210513107860217423289324883958868263051969072644454812132711188187931041983421178241697632490093839953961857898039419780019278510904395507", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21489694635169916032512562097157528493337922020733490774957089999219718071641257841807359156451758418100254457172302275880518235614552546354117596170673181216453734905443296258029182891732421095777366273185102129783602444641594453552685149765210298309397066809479450446345525683590094585191788586055558774656246518171089574444838661995846701891279407240547974293305122941945488817397637046721208297047934213674061346419390821691434132250927881163506701697513457724135695663603053829616401166455459168085892193845868632899039140183399217403203291727527751615434672605268495243610766114626813982538073854041803673027051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23650124060782672517108551888367290659055620749598604561081820109581226484735025750396305320525717327412258978360997218136915071258091343617262576036797633478573063795816056869436439692666172759694853126100547615316653115319069522228593433903824352168189395036905456016148660459921175882606892596258157763704525057385190093448088573145872180459854753222258284107526640583170847733753267697171206725612569713364255691494449656419788357427561562064013954164367376373013883184922371143296955815595340828595538724016740882970093999490475600422379726870297498775078758902003301777881045848710856112874165509061307788521133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27984893068043356457691835704698248274918199310469895325830331632063027148139472903684801083846594744142985660030080597161756140716216542955199994630415443196497821786940562657955645028037999599048699080205863588563943870625377245986897526342944668863249869021550121960370735242111005503341657781733869177060486686280561093172883310250849628174358169841492327261200064013263695703326022712378888739615618558698823404881224632071401720634630115576056184627319525434076105854783802020402824584143792393074384580174118344087088505822227056063391148912972367230085069661892495667851713170748524988686310141371815560855571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "27254889300596300545493703397019766571789250730686317369297808754971595050334058140352537188838325115418505428733883784577091007004658627830921680321550068450450624155115035117595692558707320122028871203397686433960124385256417814126831444852372187252293752617359798238579705090318191256621611916545069371830706192821281244238445732692454491101941275432566921019221271235141415226137540467156608538681456682784200695240475315318104055668580641101296793812513828498903269836904932077899453860579256723530336264044204222537246407072964435579428243726165839730951983136906057198777394780961005462271331382684079962540523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "20819892518906354763796856393952711", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23869854049587790785934826735038019", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23096017975411519293940950881159398", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28370395097339539278146100182477602637627344251099378772945869284272170756576010502249830677184424111844082239959388604773964503843377371841437030157610539736599460601226529242934583055749292795965384633042881741222822212934294153365127328697890143362818066120145605947468830376732265550090840100654026097847488533777176942376951564988905564328075547741997318692955645446396694170602941283393074656218618189620776861306775910896887673104695777745361674987531024658704937314009422337924062685511225768714787994074709448920650965599186683026066360829075893414697788310343125013155627962946885812000888257758469430065237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22875413606489032255225076580583023979692706087582678948224295337072628955797333153459698773360924683298743068209895555644884702500571014784634770823520342132217263912779443644724196277902832195686836721071986647231833092113413484915603445346283538657203332992189130780977456749064800099808284890217788140412164709081796755142938518754077159420775556829738036935501048718735348999987764810810389595441976429856268015679452091865166884628015952266753629875320820203876435463389662720115654174635510682570009580892414881394849422631862107166085131097903249253286041095818727610308116838003640552805686978146308171022881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20656130354843298876620975448476487007639546117735020776097881271539406288614465549955912927487213520141604424955026399340921356280392028811234345994264820050767157244734192990002016143458365688232737425460026229888909121069266990667027958432120633128580308757171400142831237764675686812127543166097444226941962929905595113766586524256932421671406494598020586816995885757289137047929748539214350610860961351335574323416330187476124058631375149027531105567132417199435521044953176517314184038079244559396668529651395070519797822702590521476317857485326171896963544350266268034657108313607966333274149461611254315445747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25522284891531421527298078066228464482491997588966380819576123496855279330760309308951732068902409416472699448459994273926951943256806839118531653744251985835077326335163926070397415215818953485081488994056748261429786096500377155620857170966787803474272928644492463284021360515450419853564594758490042442608743579330412499098137666157082310641761144327190992246368692025822321411139350434980712756562674748783650743786804986713351079546023593544841475930285420714839597862621996705652926779450128698979368238553256681032084946177193626467727947495373787125964795863584410489807401249178153124899978204488869199751549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27048398701028590516385909821546896620964539285856638889532522079769985254055701096209706995173832858804229245415795203941953126743238156242223990143709017031631373527347462995070133347764750091697770976802984861709392511003513167267832541770239121368891821084792068612040885810978822290954603378077902402527248551966159633568369683436336574662534915425115499637226589795301611019213462830068591327889389731906268640240347522773442267885560491602694807379384952363361809974949175281393663280506510627538685606275304959728040262834958930648807671226705979298217876798000282143937477202361692097831658056846312053859421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21561176481827106846177747296047056073219372717779699952762382439056930558754032304994763332722887625749830637877450371349106819852155551404659324001588050304856664103445470519372688936341218988491405520783973365194412477523240731446351487382418132811043500173815010303694131299147106314632861833787109827858469979161472138361060594409414173243969956689533452006240573046697920448585408347851906012757926674876324422837159356062547174387993934747167269238172063796960954007417451676969420301775513961274065654285084576818346466746065827594095787600324351995132916001312270782789852964231401515835956356622924210214431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26347916805597135416924532865135209460061185713151587597965459460034797120079768514868467839248391366594376866130971574052825585550030314273722464870292328989434177815653083089069866137532466379821557495156534851477236898941724892265577163118623884304978472368077062101889116803219661438940747807487174792697225024983036203655194121501460441966548516857172531617428098940309906061777561613736776870021141899538727589664628437741869135424544260784210899407792190445581611809690220601294304152126453061909214140950071209563976362702787793359848058253868031577377616496576690717441752444742082088739174529128501169912999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23137473565904536045070836063868181", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24595696633208605580580798669667072", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "22533068830648403169180575797240572542470164835060895108397622835031258600336689800273112435670991203655477846576756212682855662359177537160133833413228801923250703235917211813413246344788171554904359591565436448785608774231288028875513063654759945956279830383503632055694217584831621637657528788685157379765701688787274625602436775039071914053861027944402540258335517984609047439671755619338192771575201783617307430278271453040682363793508549028607809546016307415687758186110082516677919526380662434270600098321587362535400554913848132615355118130531195393190692745593125253149175805525360136049528199524205193204693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "24558937510206457292770868668599928037546021271064513862009050514576631326999212519471640748493908757601795848231192126154293941604698869299939022025864088995086407840357312970506311565831113929174867426925203359060820005447295557433768721410230612227443678712619931505206418496035444586853557093140388885861653859939386359349409593684749624411097860067248317184521515067060150998411877651437324096764594913679772637237207096258346047158811646369169817481683157235900702368723611545338500289663815912072371547892780251069206732560878828157156840486377761255406894104295546908426564947457366270061463246334359828863821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "23273768846170084431786419285980959610552283742872454857270178944928208992141246879847540471822637237830276012263402583335555613927406425833416992729863554859573106117220095562433926772060356663842302006532419018577559593564830941407069882343802701136624412512537286837715962697824535633075239154241359305483945128686495896311147436212910672888886563051518826023812579845466693728007053149895338679464373882510169300759222921297661154338115024933056860079951464696392582321357080325014537636734078345415154356349550959942793513779501731347089449516385063590432455464966354233589805164866186277883146071773732028781427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "653587161002655401189434888492999793624300284990252853808463092884653403960020506111243703254025817492126652942561599740229743408671961297571031316089939112866271024032194843123627711843745406246911951343692937019933503647003789833083427237524628662134521938155210561181574617859297178723014715083653063162666352943739486779689868429864440578326755282865306015094892158714960708330400077258569833049918807541280495236315536754764942034796212484339293828058612535068237726404479160157956476158191001550093656386951818491301092087947403208464775788033077604970728913639930780589733800636972852961805771178526146304382236134088282486461955669220916603317432655633721493841070435537103539142637963684329580891188458642973152999544106393146951925831099820492504451859519356392767276339413351860316743552955032854920092280426481935526831311768567993515966050844931359767392511427713851607311220919550860099793726504418485460697420206925802013324653832166437216769840495278238959243997923416037637112329890831969094354229211659616459413372115458757914635068047472802778374838104119571497022575230793532874990752790449158739948927298362883832323577419720742745435097647729055950651740575392893422988610273975177631464843565758351991943169041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "727620809913521037328587596854564487482403382690659511209078278256926045148780720004489220757084217861876809232962695928214670087560165585874349815961061822322476350199577244849010658880003646223873841092190809755917858466429694931875155409855174467323031118340255755547355774914039764810757074029989104133102547808900735117765167040985235637339555682064412322515404608464647563172965472701777258540555829190761950757889193611776942502021611698702492473968073505840618307538371750541275159627435939822966101278850123087486963241291041935934177885602570507828803536591225159795725759900173218595737339607041963302576692438747040324850588780845517676060903445128815544205777943901931555178018816056129904045351264527377896363252673535939223309078239697898793888690972746380885389270213760075615742746696403782104892437519133756516141253186765589931731107003488333809029058092017381382901938509423528340240677174232138601307361581691081722001038296528162147928750599372986461795120153529811955540018582034154981662347872543216060262804035117405984475112684088512547032532281682698083627289276045186619505188206559500808454863401025370684597536752472044997598270243240528781324502772849870876387819225917223380249376733268613934754845401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25895354739243004512448929271209265972577788239803616723355447478203843230584352015793126029450731583998853638350146344890085192155378361740995987782395116119401597680914174215690665740512074870398241133174354312795088235832652533878233487583303743067923528576025416360753386927538843276314281741179196369902838314413797287633258260268722283148518867271937836666182595743376940779265931742800778709486534784333027917146454907981308290046685837036334874321988256257648365788834787568692250701852177530064122906375030074915650299371224599374001198035858313132388580295760666839762628476152851909759917102412568428531603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "24393039964324923673497147387623516043420095793630763106048794977725958287102999283914411711202110765710209263097092557758928281255533458833092169980617499478391860385943224209191315010288012779534739880892907318462821612266347731302206468753997421213668042565107577986306889225234101693960263158709757986941550655939160592375139159356110335469126736258420336744007025030892769917558494925701838689917473655109908974305256459194315791537080447038318087916904652771233901743411574308734612053281669488449872377138351754541762581388820381270930719930804824494221664769112107476372672637315866359339191259564638711371121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24695455087394197479208333302424026", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20881220203646387390924112872279982", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25456536445557283341767990762906917", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24904114151237601590381414421105618", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23649097476080951272697985754467736", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23988199226612088095075055890978054", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21014200061525135758705833241716810", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20875237595075200111260789486490931", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22457720933311674361612231727519012", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21020844610732339029482626838077753", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22944394305257938160031266940508693", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24208278310508018763224259778966909", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21205127415961662623505318831348921", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24749955418343558963699829697533800", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23528664329175173270385070302134209", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25586800916785384097536960398983432", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23049135283773474675109725451150159", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21009114681829799419502269915866482", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21689566967062504965051989081063956", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23856502930001937189729425098331918", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25182719738952968752232039264262402", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23316396337016892623641729705965343", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21240115724623020750337243120301013", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24769345502047724068434384201592036", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25835169981606882498514991405302912", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21547360196608817496862252113509510", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23083748595106722466540298419087675", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21457125377362752461645906217250205", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22823796619480374284585995808796559", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25075589771638664874659855919785801", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21862533444933701922109616722376700", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21881174343203508276598135516660805", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23703575334022138893204731665768046", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25437990801433569847353623953160935", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25162884705597090339209389661188356", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25683554309972707411679631512254365", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21933867697236572802895630192889091", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22570692923068558896975655903393513", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25453235115737456260668184598951987", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21940965118367940972600075578893740", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25046798895701489712820486248675766", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25851858219331676220417178498755832", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21275495613639453058153074097084947", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22895574316653718256208202829066721", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21327656009927356852439398801540808", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25254903828020441260921221726844943", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21625258743972480290356254725021875", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22768219594278930454836899354592650", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23425309175880012200688466186689952", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22724895063385337941516082377686970", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18714428946386542516122089734824954654635482976491035956353151023861363194578450537445576663625658876739203515008079749999888517271896259417837033215467666386519682212617452286504068837673149209106994468158208172674230825650163482900305157230677484921450814604948167777785366256735824657723990299108905842723842202569339801038730084752506032015402148238483943060746719680851569604643863068568650507035706316240453684663641305825524248528144767401222101338257230085942371077385831839196846806973914246945211348367756471048592183843313723820062912339343708393621102383157064830205373404804952511729329869748623386322521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18246758423680826661605125751849895251945631640552048001852934099917435194506774662813036552779084890414669947509979786477504343375590792278224756651871971850746036338892010874827784794195599770314846254584406513167977112799331797851998651066502434804367699777988437081855586572678147859700127185577589536803476939991029725131089253674999478642333855490196357106237730643301946738193906434005516324256849445318735444120848988240580657430275128586953146408805052880738164431387688350261733016701315411992706614452300823676656917612936163035344757648087342412132451006261792950565238016160204703666806101183187741303313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18735562216983368230864719003779522216138724888576663751880927774481722298091498793543618318656752418911150187576295001631290766148561905297279979293715049270286583884644875857450274026704082246628861992090921860362871291731907044194443412773870723389732397050851529746612641414634292698819328913925716635058784196795200511091290618908402312193639890577951156268932336074700003456406124241992010154440334971312594419263176012579290174271979984466589197057298305264981238665903091327174802081460612901059023956463054450673636341712266215648197680698232313222717906883860066382542715462880814534842259458915733237984489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17952609417579832916612238366805659130638678088820800697478231147003279443454487486885636862478456122711884948249036702962077844965489003733821722990860588311019733932676014158558363490163619941166698116699053451846814582330209147766609088860751415643108714720263788267851499354295960171342139026852487065646361693211760763556750686867186805577340453263237156560047410932239142476790924570351435443925215452046874366761902752794187939936689133953874637210195596530160783147240002527579932667380996016038053997505571746505331980623366255213536101067782456577063676491368863561293975809944242812985008681902218717824909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18757175632788695531223739982226435630091687098392520522695915763524726030809942884195426478231161283301860272886867531496876536519924588679901790358009862826157631767954590429808018908146287644774324862457889609918292758242202603547874705429587004365255269436819818431217740274247543169645340197400311821209586569215864359683813964634742031833500864460238027386408297183431301545672612691852825452925205849137034808468817382108593541993865860566265392200791363717252924281943882413856477402761839202981386835375254200557861817688128080025456193742858872800928430539433557373877937289595655145457722498970686625665273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17665283996028265279380615250661022403101014575406652250868137837865816375348290896375416044808005598227505590511318104821442729289062181615931174605822954432883777089966782404973511471297161962801160231096513752388772463223400716153854629050523875370624322814538058444203031036878743906986743322717262146823494494560229799882057301736215637065686125883121916295547857481200083569789786080942228784559567942823767937419066810263903994305968084334100888490521883038538540174893201127223674624075779531644898888882649520897399743430768758111711532956327364703997937513926720905925186808417294495305257665522284329429773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24360181694729792390395027869259911740290707689040945086665217511534962623666882393502478978628576320365127655928016705643036089817976161115141910931743864239757307688895375388532005870752402642596115627129349685979804013709063910219620517175737184317878623377297542031288527637118439745103031787548886222779467151462042026115936129169842905512860482409074307911321732115675267526326589963271325411287183799863227431822692529481471664448951038263904475999030883307790552174790616907126618968389464917966934849033118338048809613521878415890829162447013278759021581004084374939908350292655855201664484152845560896006543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24957943845459170986410042590441688149701658796348056592425463421247404283599288667080563318843370789362466112445843297429622686063480454104569928199509792805676837677734399831311012762173384343973161515458372019126400167650262561519641425491244498470937006767912608837072920135360200136718619572169836561944932896922686327087225631265757499506684758021839310681303067136974599325343813166507726596509232945601651034038980127649886773482727251228591604485395072293005696869157194283568638117021198554242975057023854431260082310406153494028452466025307735008030023763169721387944195815211858090523379267644849794534693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22703615732807622800917370787000942954250237637893397843812378636542338119299213107681408632901628659058447918778258869630926365791348675167116230410663467214226485300617337462175334507745149996988637400270206260577236107763261032210087468049571149371148642970251242959017485675133049087489483220884039143774431600391706514453511005321698725010104404148545346587428383243820543584994768229624695702022183142160668657008092630232371198823295694827383560674609972065999413985540486169537631925671423054725450154062782075291602139758537480098851965363037137297319487546683910025694189994474038778165257320069640812560221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21165894748508745483679197081227824309224279296290052411269520527648746373809746133146973369414736028504974473989036254828529887428400221680675816707548186338791861959063228328220162867873110474321020106635947145821105261855714854490195009647824911316370234611150000227782415451856565423052720299796425879677247711883903698532277679555699535240646548609896284570496465095629867775330407166274290527927084330083157975326409197741949109839157225228628685841342066973647801719811348678659442506380127324440127399415684668981810241062907816812449837009867884372785358785818537219339892424114616860979496897171913201547593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23433720150132792534323999169747326161787473859160868460793779687433283149653585843281886640661973987434637913047786741088428626754476336844360546338900056447897302771814624815081292786373436526812812440154604770432087063201925405483387802326384324035115300151154797163295214326096909818974037346704736928390826553673471395096726622518654062005851714149970290307928538181722324794283172406855600775375970769564657553777278896414343807992856037962123955076929949436201569800461773614004418766059961942080896044559641656139660314326267623352343799130149954423606274598168688763693084827501254577064627745193206033024847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21765716335856307136709913853405070932484087572786138301297426706735918313161113897619366278660610408941889898292864678751737173902753593042442924902576391957893031268159584338792604048545307719429806034186587959045903750720657009328139981481525294559448398286323590197589765508302435936547120735344611149013195987542072643489475522251706303764226051855621777883265054374747338643578793170195393825393565587683156291241603413279386587705098882369326807001203079733535018812913639785749709699768523832291851843595593449174341165247081058605501432368673977118515261028608584370913853706348952735058208997387945532508191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24597846950702963944012185218017744354929266603977247224133830902640352224658300241013640425194529406770889933136894684463427217664148333072974316000906682877200576582370917223889100936081073579607238427272277437517023688347554902511380315357783767381729967189707258256507575350735549140517556655072893760506085006427995182917679546608647117898925781351368499227338583460393162604895060847576174796148205823977069172295625738722696334150590352161875665176864686807619121331723972307896477421899880933141186428943716701598466224295841720514297703381412598676873431021761343886335993770925822483035231908597534115238911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26402546814736887635271272225348069587565235880069452202053941943827548174509363271294471762072346236296681273850804305285636502373118206270933693698506917919712790931400375581601664683025915969848028331512820341473184940882766878229446149154961162970418337576786612230218918314992976643178371730040371373540529236222876243271688868458037379416018715994063992990616344841647874548574082608927272910276205257014643856894658429417643491341110593261008889406821906682900861132477065413565823612093968027514044578091040581759142850070923988084348919706104822921072805250052233310156694989459023159132715647549425580980843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23017120846860305684810466757878019", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26464848565556420299747061049469770283902822253591868518719073882286401510367606054545098330021679694346417923143402961197414605631281817807813910444581834417103901224732314944955904656571304452032336053300913315914297525672437146628892234426307720249324532003088321266088447474183343419386871226392136664292449436799059680985452605325015598774767692263271565340881068823238400150430100592695907527835755542665949001769789777235632938012253931014135653617612533720222981153707815053835830263553404915906247717345926869492724881687008405580177071180447419924018738753473147290889397254326379412662637155584775554957351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26518385540439034638263009146461822056671300386391180475248371159302484731752949132112146003560761713812830089285227818933952581666780450236139753048791132938385885325251254227605488818116574155680507350813183681068831805768875279081049170596664247483667999286856632671970444338897668281541943998600455442575914544134149324800081639283136864277346625220127104821776798632642209654097267002035509873731645049312101618100058514894038970795868335180368696939268085511385502192066962369053612455613005776506739288219974242461512015383458951289111957513042374178213418788764143582742986299262985779809546190051276533848909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27324872562963963421405669303324794234732849590634713925179262775243413098734865292782207141579762104206380744305941349120531213295022471824528637257313482662707867424312765536586834817424713923191884580956488669780628086448304419250764849332778885024050786508153631561120196966349706038418134105695310606794709744631114622585423387305109413187562584782921436081480748039825707393490346899322820249104473738675859421818952924358404999223197340815989392954757843626050723080511497454821696297414956849454978435059867722607732680709506875937906208762835755584139596123070594134066413451728173660746181177105590716804821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22457692065216645521452503622757583018673425998918940803106466137415700740215378255359084333395956804498715025676884651895444913237449753660196427619827727365296948969501668684886735432234915064518253919986317066945981637566236889718772515630790824964834192600931937963131461957255284499751056298343653669706619118835764516712473436575473636130645076505387695211508285646874279736711925501114287849994664824636917275531099021583274038895561886431457693470211154749220232454704322062112053021091134505171707236365011255016387279013593903589255734414562579805020816330685778361839627788460603101327315077935473860664621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26070051627454808930505518626043006441865552962835072965775193404497548285471355323517991741439080860208277410948669322010588359642668371966784654804548193059903524155236252942947518502091570868734159984243973103187156673076981722634359212407446860291819674131698260617187901605600889444505370162799544208853544245215467670650095427174193862956323850448355983717808899573515722865296053565440477022904182539799711238035433100320809152534342494585218813633650813336577306936712825950042353849528888562871601001061085240494264027348657622907179827629188068687898897281757485590496125810299823153961486679630106351082399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25007076528037323437364773906176661530002759579035530766271205024371516589009027647042096125824325701115405038933802033084150087698504429755990358594282534547424615614813786474360684625027450364402378940104786728039964067494024039019748222669211750681770987548433431806727649880861928443743329820241560595016209678641785853060510429173905409487174207287011329028840912623105982268319711594849584663290703387880179488712063631715985817782300959208778924994140236577270047567392424432216273512401772726462273304557457800127966584946266075829322014464801861124589959123115721299270707501385319072955159938374656780676523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CO, O = Colombia, OU = Certification Authorities, CN = Government of Colombia CSCA", + "modulus": "25634474178451075264763856410395149219348866929760412959998105860886420055559796742596828163670248203863533536750795520356160167360236190065872243805948453532956982837239468222842804140419688636411125283878257630739666365453812113343034827810093391852391199075826874772449429278562042693929993067898484409754586348326423255425370663107585625068681503854827594551747415729673206236246951488664996875276520702016534488572169338206546464788101172379987037533281795627060862352923986428383630963454832324907444489454139366047093564867250363623149441682471605704710498903418496378735839753299167291317544515211424802277209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "22282721017767963939181787131709265519001304889418929782775316439486114179543261520083476249285069791451901539676509178155800204946144793903885669015473043890297141300875583720729549844780610539105053485210612906171285163683111610447030980242336274851133423915491827082491462723263206506043678360638170905358169980593246408627762359833380401661124754288792307473692611730878116732697010884403186173460155160956014336163474938855163950711102278227798290135523653161936754940613611381607542320033639012813659783729425450607234608043816456359638163977770238293415287465025351486369007429336231484254636553246098799205619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25327682247431601583448911743616915635597011766044592736492660280950344788231660446188892364105344576477913400330902353129235008495561143319966093606356597795772072633245997208361519194271948973155154699858190127153615619682618937143130942323292162497119480328736685241818629218693660260343272220876275205429494073362689157291258864666156343420549552809185299998432745230019160564477972986075474338856005338095876620249826612233397304461634180462524265957682112920462845997804515879769138649354793684217580027116500096497982045058236832530408481290080611923198341577702233309796693792192042184970622914142512394202589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25469486099506181009083910948896149288166213114431041686952459493811272770182107714451260385641366087206816978575654338009020093366391318080510239123591706539947724525029367493143989722796610228281570576935410977395509523377286167054367545029282418501073435958826865183624228595090284569112536361130909354904289180963051901447294654831403494785898973417931529157241288385020356995643714957470403828130775689171122075274075257048117288859135024769973191583734444161980084414355979965917131976324916585178248193140954961826549355941883638571485124351252268885922857625223296981063760202744642150779957821451253234157747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25222313168487023073112373086697508404843610237929399254797074127516115678898350063377547071850178877736306358662144238423620169630963572114152182913952285502563807671929460137379714856624103604608765528493467641104041936296593360750368235613884979030137615727558696668536496326516002598201123655547846314028052316086289804341814374919568069701446479368779627680076910550649832224397194577040903192866393100628966089519946057612671875289442401075562665341758299064770456961496693675701328987284032286930287280719950919849703157330374689051060459514937578211710735321870947272078689728313051769927848479557569389768057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24923108571617303179912418457087273980542315739883376856866109534356807990705773115924035961334017198797859248869437552401333476268679769133219391864331709206921563381010437933716290382753146844668450746148969858961597489903157801874232683861081516891077396066377067460070626618129408255222910785964141540067636705978819259176379441563571347806780989320511608173021528099682300391887835248813406433545841036786793070262324132850604242029513081601728299006844151020266023559660860896421176957752678118303357117188332524904601530189212730830528304369888114769238485494045437866576668994612093316404951428652517529042781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27911538734338286335624592008253434691436487853937104735763471006514934761603786574674540259604571382292241384122271889194282079516722432389251461171217011788678430323894596908338212145046241824053495602291077087794387590231625096338168002056682911256414627868493885815751987819895979674272980822699898292611107755979388386976959204718318816899966107111987044248768014347130337450595668853076622994265680854681627746091863880308882279084195659226590909889075348983836290659253657401174839003373750857429355146775786061690817413589870618823842144390850312871897619863981999465574258645705518141842737984234834560839623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19301140631014108685374145031415865466391080170920272311945019969449266995564933491611118799276825675384698793302522678570057664178901207538997697157575535630636314928988695822214774783429633144835852466084698941877319063301594828153798811593976588400551254446540409344509503743665807074523291885869544605171458394809729543950475286026907237315047979056450304534112374947176060186769757373637772012464597395795929568950549681458199448140010633606165389706947030184285260367850392052519178324527925846384184842815689482075546595233628534562222107991269090249208155258885757837072509878314764991902350960130017535898623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29649726396483132014372538591621942558080866583750737578549191217245393744112216675668632437872689974287561098401664317275746433545018786979941606257316727122154233868817746398618858962774686844843031009391424704800967447522066241848453130191465119916290334668330443670217868821826076342013982382456949048939937655524081092905984475465362557887614543065485901340991151806062819173478212122648534082514866846370671837783727570906375596902561069173908689035692812506992667295949860625957263055827821175814100631942553188113278162187664479326637403866482578794256672340693944387931420962666274915448761628249626934478353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26097849493742526838117462746763905045620875020783440897288121083926902704545461060277880558784065963335962054268661557656642543317664755007620407836654966560692975740758914913840598693246807822523287884862201506954569592770474559786068718849784219043607842530439450869574860939439308265592795691542111491001426511460375503080864376817832905124445702477065355184435024513390383406663569688617650673212059848822198737970274512119350195073891283144612297985900066065358791748392444360307447038625685355032163393394775871335179362722694006683599351928787193412644788985909469139445366216345748748161248717300103063336711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23962158418119733021373153687634855570239107131790149043370897555801259826988848934489330188809765471602180268284644654308817003816543630779599347285248447873193444549059466745561983154667245177902519647951481760258275960759115014959438574230392711345159907783841725410035886789879923314811872866718598478640104229401154187382554911072200906342001178889298919093954752678780787661328942570895380628850107740032336714702053117066937216987514449854099850945747106354131562416230153671908180864803406742288477545926108435329496579414604190795283360215197777529973180710781072621255094367469755842521651570951346254921741", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28375481389629123683937025383198822280270260851353358268972412532225429530871727721566079482057060294121462123777190828547799073134831509362548613340308766827467295954244313861954898188387478099954026940309392024829358828713599694098365184427504872982059901115844903866074077713488406789219114837411997744953187923955834881852030862915840808231276941737394325784066278219345836906103023818274206017569452489990909805602882094410353850737516243557290464559292889964039428893478938786456461507487065909074648258032716984576188357774426376452981798596118923914138614086140517707976589033249319332372094519695195675055667", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27189941672695312531562345327179623770911038358960614427093534705845400496640903681600109158418101524106368187999723181939788750178989841871470895944802788908870562908187630872146844143890980440824906766706793348543015282431423453663440349440033179576091156807171128407009774229822883257078050324630048214785448192510946463066966661887553690866655993297465895008639482464517138686551095848583436172189262248159850192796592825215989312174894350726553831050264374318350050192551116020408976412824093509067876305534916339877989602212298844773455354476630747009129109949930563253296733226415849590600850081538047041895009", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25402754567593772425279432087067304981274354593408810710465315034071846354359092148201302867518450306022950990525859771194583315964875815359052084844150673221564231322717904526792380289146730369442175249067776662749434820175591471223991321529721292781429347005513615027642042300069978851315967700202115166632811605217029299219530376746881885653826275797547816878716002242671217821830609844061635491048431768133953987058027312948516957984384087100618342404832427295464981382998695929651625301639495877645797108012327819324472218180130805858383920927214994796252595347386581461684988088475195729553092109082387507872609", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20109111458830811334744053073159135102379448051579108924072099719934632116085832191584409845220432949245040336415900879918828980616382258446107938284886869959857249566871088535382146991721958917497446162337001012728496991783653125484319841252154041148626919028375545871219061649331003392501093743261845568129397603005625898861990822481578148510991171402783525076143756609799197280540750055987914647952918810028354701515859995910344103116267975852125440472561521763520295191825596877642145096034006079052164097279897704481115995221985324915121290727393853549769846922686809746467023181908960137498320616092687355435111", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27683043697491394993092577054442060488477377762587696978047271681965023410671290312628398874680912039384216619961441619539734859816903215026779569503743814831973867111540832071444957996903621456271048881129548111459385103224842835415262171279196489955104335667136045914098694831553506502735377901724657809913194930371016349040126064903113410930743802753631678990811228006585290921237059836474494956548955223339196925811633056628399739538471779126939073238572228463586513137866046274383002165876175037094881608533161569997055641033784127848851809776833708788912674689257744573479043039735471792617119634098912589916057", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23154233515524373225033875831748058393249848342058409191690406962600581020364989152705479074419518345526672784108572461027934752585860921518226824973493189296708896557578073252114474347130185723199693199089954087553211868480848616690966352413713063547109761490777618986275753424091654420919101943909140597310494266602338872052338780954573956184113651741903446812664998035446795308101537363810032911088321491423865262385075162484777484008536810272003137554962332664569574890731631336356109676972582769614507890184812828007843133008684613327963431269714841062911296862095778012611266311408121774647043428021814774092621", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25369811952840349880263043079030999461428624124262094698256042777194089401224070181765398861385852884521094276749643092175546487373868277887845340838660391584966646541535025909286461326574997630245205828455745337708593202142479991380012314689416837038649618666480278260391515403407743038346494442943414642102037712149228210473995151823523805982967102476431181557470484894088584110240014617071162177786068683933570802030757691032561465874935758790853012279944641137775762761104129403655500992771445387454124862961576907755227887725245714960304966209616576560307617542885611063296524771005974334217714438866852072061083", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23674531417983187394809309113822547726019450695583801635581947095334312076115479192965786316950896049411026268171714098727727341812360797674970016531478972529033100142605459530585156523862212116787086488077471685283975067104296445219587902662935767521066557518340291108168255827768945129970231867705335710733169669324041077062119584230856865121274929272973204005470333187453460720251562709326703300407839461402116567903368553555670375608883005657420825714342834798440834253728688369354725844859730441877853543070455667597690639131618123158381220194502505699962849883658393009693617991020841087586641685763739907014671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20729293029108179469461252677940211126508291074329984326151640109218989405315466123181136187418508966088204877254389743085844470928462696373252972481047374211925855754149934625739545647605844291977621001565735687951351163376051873204294458168859448010761629929241453893002342603637597022332722220890185746931464307239241651356440359323349810289333952003870268068361937494159825479060974716388405597271579797099381459900706093051742454713479189140925913661103212690643210091817075199499148264156741938301851498010651240061726062816889987437976193361099811036820505055491451006542416266895955031639064415729825644773999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19888681861361867222509497031829507046273448612927908182040169155565062750578548413952780658763767993560737188093351510307688664315674851949188959942385040344863009837784923672521657589012270267321472916622937715807240150315374225042295123356271012809685431016240133078889422112698669683557022564976291545838384939550806587291343521772922082308663959223398263631391371192469536922528143263194855166217344768992861863127835197236071556906222945257474568170855434885710536235516889712089475914453954401543653309225050309716572035813049942373465811844248495171350820817367845872180259673203915826656365351414770447001419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "19493705958063288884888572049095187748457208290649791864417053883863478872046321657584085883972558497360111598942370672017811999304754724974194356007973072512006323659507781154432591261741027433537115163249656398405447859818005565538865495503114108306190326676548822574013112392866503384683164086833702087229011753116154212396007595047027161641920414461265907300583523155409848351003971662506993209161537572999147537787022293352913083071172944415687192443648931230005610659328641235785647688652853620532596448980844677497673600377481099998625350346387643623552035771044403423701082033044458720591375087833756027897753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21046849431594665355127437266987132", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24123325259552804346455448642990257", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23889909041192245545823064367886447", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21341995276982034347040063689983519", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28316518921454444779263012171936132545942100164028003744987262272789186201308168532465342233185729020514591475866017661748924067018089526198828306177752819096280979541357792796084958995383407839807898113413775518539547003880268470565367954643998173731197269555483230196229523898136906381896068484693005526255003451470211879905384006495726454316581871711754819276729628886804604543094422648889537643864387423260399852113782633818310644721321827193364733497551940186427596392239495874446953966829485536058306187093223717111117178477727269548319578831460195365713726367488708411525330620130179848520212817112121323730469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "18351478458769556717710969971428060794445169544882977326694975140862586099210271659154198964644193187548727643106003955242987130343528086666152286396878777798771619044409132686529242649935353299109213105836242930415228483424884401897725027679904975026139629891295267819945454892753288578849346498898012426940772041187490410212294336497626059795490737719222514410290633167528473637267015539272103542607708043582500868759968263612538591721676567816184200048686951920689922052585260334961733358661829142102042039496464559289231376974769789662635900812094306272499471729325383335859017408166747847598214521284703493843487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29815525115734825007081999341453318556708116290234788920323050608479516592257206613128492922776873248534786348959882027490562811045815499790586513581952638175204670968095346633151048225852479924128581858741034878900012676041915603507618961793930807828484999433840964761327945579008476969146647240492872768920100946556718252896053352878364072511834969903490360650552329681285883435520029222399731753240949429512048373459360320730627372405774167274864493756099158436994566501432133840011735937947592911738986394785615381086874870690895525760813213942254197464388911359787185873672731722810795140818823847153786534812277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24006079700696689570233332339637638121645834166908284486785605717157803259039844974035538540279848393999584242839226964769548285253930582152473521751729789041768203288950245600890418274856567092120388874373951103193668969297683107727030215131264309733135714938440765550212535660163754035156754412715049708235221755995649999867606533023268465746486891697671848922792847706058874019926673233774186066759056829960358625611845215381652836957716542841715258432653273636637285799331298427511543939608220050134522847304299005359579474561869356948084687933873799526992360541216348360393139402942094804069967205476618926372371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30421228378834739728326187980529839229619332583889430199206204887354049041878805635659205030837962492128264123421826251256296439695475885980454008110250520465712419021654198878694155584532663097139994766485821660107588281411451015997734548601181011740227953290598260288207520867056338434074973433053859853969271822066481569691678442620891465304749946462681979483140758729254111392870520184571284201539747481973090433465487459670533949807691032415383025334523412189497036921171358484263933961197536537867355580338303837988089806004573157180438758888309630838889823971103173686379045110772323383737053817247979451780513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27360754498870329720839756606436715256229826034691613523690224737641953466396777986934517133863651592477317023791848932377178700838847690422323525870327849245454878621562660205240899286476384701946389391703105131045050908341884878973277630008211417164577244603043297945758067622284824014945194358449840279566534068146954903941504305394643768012707799546176530584851366311222948329652410928602830357809561656945232442422735507335542636370452527394582365391141388696190377351041229183323323503717915140850077642659826748561757735347632658354025812426305345780506690405805863641706190298400744849507506141613730176386941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26430668779101434207852916258303119286069998618688990688671266515824768960394471892257652521156854044330084332541353889675178405262000763327276191397726399256278376684206339483211152126538054561812582986975218883721254509502538307381376366594044106930956033392422375029879944246740803439644120971219601549714137883594243257352981146195619833643794356043151560530821383344177516922584620162799783357278855784392066423494505380944199299245942514254642024118396762689817672121389550635705775838454684055697952940694192692271963975063653308869159491919937924767004997654111472953224012390793657258988580694875242255219781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25252008627284539029338398949350918972565081650942253035918521456061794633480935034305348269948368792279714911955478692838536002878413029434495854455231749085994863034074238333331004346335068859282248499987826425753483324058653875217876085790167939713475412606035544028762254425599260920013473322109564986989252751106655935389529059570768788183250905421569145116565456186989229227021932865070235438267938009582354886549724970583393448738434056184205978699143360698188743306942941592869414425115420161877788099275457734381274360655686272008271545239689785557929077316195736358819562692841696068092705550619997480161797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4999838168441360087604008518026561479463044701476525477892942502692607700541579301020056957244349632750817099586419189700495635911707885373326560106553373678625616685526135861712673867631818185034173128816821239024993903700554587793360496961742254873725756495604177805633568291279990849920328419207855313524857957780399550159826169512613600958136809372292895650140847733432505083611647504778266709637614980213640110286203469753576800839510735157818635211950993568837607622339810303420216512582466914819526239620843185962916735227167263480687826591351630743854654656186900319256867802490645556856448668597677827069116136506882824390905348845188944264908800955042517769625879519005013605915594806049039542750059458362184134013244814448382493978682191021125619328381341190881868303099067122172272754254111857630313885921207059957905314494473325363446587613727625193417230381300303922725051753108674965135017804134954572571108897", + "exponent": "37399" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "5442997993526406083706890887030076511478686918556861918619934321745898561783087719447203475101096176255444682292330156811404119617383945523361879792291704867105178512713766298811623895637672295349628232221791592746632797639198888913200235834783920716466521550467815969610026056703761087838867409477013504436866076608796841879872324278414059343472122383936464295497846948329253261344317241877540361634370809234817371133513501376198488358881965234884934014703292660690260087900032761317335517080613441887776896685241801939852229522414970328388044120863882407566592137897348811344400152642307805914527441043282378042883138763479673510466790469232035640561250620588714495235392154509656967940572727426151701102359770094393566287732041054273768209746047286858086122971444441227230507729786427489102489219005124121926502423449791999780283651018795675597683266613947885877521328038090760472134936763042437804836261797430087045024769", + "exponent": "65223" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21258213962218815993044778473255889946420838484614558966042987967079520346159534162008330919651421908034386850214139864003110827885619351905351101121784140636186115290189160903249269918694209373831957815110182328907047102693388150244715700522542687895116898862322165136665404097762263040011637059002998416367833515028151312480591028825580830762029565321095687572262836176002278283449188252958593544868584482532155847769067465379135056634102975121879557523682523765395622437492305391415299754986418057182247602209735020986647608648308015419032989558643545100132188261418006901065891490707096703689039406686320541509703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20970851795875582858546063614160895168502126413221699289533901869345808370764459212469475240019669078621862867856081263404108097726330816852788102942504138560980909830759301228731924999775769564238615737221692674663938987725391980986102488074112309602318051222716358442458694208988537128455508038319688494009349348943376540209030349912808167912719920751183856184109689266669247255303443015126870611034800428928151956533609314780519030070847106732484041777883202053709058755956931712523897237599095233831080571829750526335153619258510934145951865274656484200464624583472293773930225000947016201792759474964995129522921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26385501179207240282263716427814233013095800944035695402185044046923474188713440446412839470779730603755710101977818740567757789212769268881932053249708918742259521230782857832495810979845636598999694542850280457889585613916693706119103313042442275548385141429998489639674907098314050046571652688623218043642510133099654447914391702847875307740906007526150399963719358076642233084442287218760925964784557702412498431174315255731363515938489096156648670074572244298596002893883453672631638739231035323427938484344330223190014287277999231422022243537338179414096288163205049748858495737961535749628519743595952702634317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29017681397480149410648287734281422058976616236392024261552583296678251170963534664154321732616909300649611788947930163615302299326893208592488286131934630957702964312704514925204461974175158694404952108063225483951387157680750995004234482077836862160954080689560041516747445561406035985340743916454183725224969679398659877824993477355015874872840748331235815815523328819234798144881252169375353077405628983784576295249063643996968160343801515003316971136707479690033061652761727917377902095825004232859619808869900779660108665843115068933304263795257662097371112663874814502447664340771723077977654296733729039635103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24615634341885145258183457873675754836038639762728845537319445657625337044346887768066891868253535713215524861645552533943894867494424221512984374314371757527821578089440459540083113774241432144318771838940584120080979776334578762151501611503618163275196676473127183979271486499797922010606660114968099809856647421328183091020385397441563252082694510480917032013198825066114920167092407883212789421279407046226967950470742989948011798587065594577796044529780555155650281331046414802245956588587951221645914544742847906870246992945233741915558712250498419698981803050108657651138681845434318761313991889978405317508261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29802360081241686586439988016755073646703349392531196967669336849650461378713516124259662905092056370897806655081333946488386583926115676042237200645438977241459514653960489773184510372471022880500658454004392919454102172391476624180699787953002421413317847137959952213486318922332081480193467780385651350606076226064402536470765762458416730406918296971304510772678433815761367527977254074118368588454622275822601665705959266989130073411773751847703237808249500782616806725250423745361773911034014947260494268051369652713679836134106160689046386323270829570032629789612906614778754789345226685127866502967721099243807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25363785479500202828995820687701155282354303880078572531394175807759330089341983892571549924896379530025764310916086308818901440200570773556497421296161118471013399490276551518357523433076667611592954503583991310041924942055907649852250707944163432085604905734222916437742074457120600898912494701590484728428097066978448789622483698799063492386754005456758958344353375668728189740765922507746772241855033146481382382391672019041968761143153578986144012333546317643966433980029130825475239410846902089762616659895817107622569413610670570839575288371023995791738782481148309678839917914873390560563579652916927006021757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22567317778024866908888481488702511484387606471581455763073769359816957141176931262649297055146168336328032559390159190325887594855924913135125727027644566620631302752800929451364843411615664734843730491245498527287293108994655429513168201645794566442151148077977295751007140568583725993482535334010343261621226025303945710536825375770584380503037177921536301628843111560659539945094033765111531659925778552887032483016523277193537556038463106028916765253993037229672507857958704892005014589685356285663940621784261994547157191124225618791543211366746670810547155942016635030747426198722048926002261268842451636197371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26462281563721384301081814231812978720274363131000125488944263968832385980241341808984762096879267145636090660004701799435025242726387596884495404080572425211843142529236827390710294122634109528192351493456281677816264272539944843300185463089109360616617926343457067138746373914487345653755318060641782052376729680949104201297126336114172410975342261160706456580102654312646925760701618999024668450224163314693834802929726075695453283262012424157587558263932726606430940052994520139360360245834550417099375175628822832487466582143919767624943808275580200524563707331476956356055839776520055812160708499384295254173459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27730950555975563545232318838185363012059842277357983432062254728253770405193181375057084716925861182430951588731896115723137905929983928291031655208503568811349980566126288252720884871463402287949180311348259145078775565737258774189689233166036556375149390762969030031578671266248481191524821621083307561421283200069284193097405515570797988232671285974883186266170076135507703126105532897735299265846842307228965760712171802273511652028589740917701088103100310354338484935167511049126671077646850454742782608607744062892333871850313228578473941660195846891830414516046932483508494147989254811177951955197723612135847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29730437014165748298016953924033857992742438128646679178701243108805269000413425012819211089925093635546339148174780511538355374376778467038958337681522835293457663812879074702297654296267799012262720607415538521973931527283851195807103044127522271123583785993474440341082831033853866164331584342128555866925802958298935268725148287512552054291123580887644789494322601328343946666380857127813788468798323941589080931866425972160892712252338189800205705186907046595875209133437127029505985894475050940099382200905360418203898668212344253192474288061385207480461900352427356198565638037159119801649703552666144026115031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20554342248920018822793654940223451225719162180017922086479602711547185257151205578095379219588189760983862907756526546157225033973296096579945729379177287793826221784229182689062940599181070776031274310375288154124310193315488607393941715099177785275657423681176869503460817331060041407077859542043895624355058573676452835516019633135449706146603732618259110139676401275419717272431760722172994337964795088575064916073620660555117690841017387977439736837533901454554041269475137492936037212410270684672312512830831123843586266697006606314709917414025357955776517591930463657449823629465992348503098463034416922209621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26523598213347307407273090920506059337285142704852483499550255755921894484165454049001200834304818282610031892832250000486859787176405129840415052618643850268428563903119442804111916440110889395449163788976889511385607616507335052630309032057355278684400717058839338773864124590371953753602290181100616509379429837232844267734136173291928041106427304020903623811587359965858254483436230179090174736093114145056734997997038163534806324831051511332549509696827275075512748610679685185397231826690148023098309285934995413095427770385018804924652530211691852583710215409107147639251487275272854104553159719652339168125903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19103911846834963499161888238120768247962571268330503042947030548968225589147733905212771728941919914359060258701767068609940895163415498798173509445392724225099541403680090795519676522783161975473252752904105484200899273785407860569123849669143008157829465298588301447075814731795485105039560092571039106528681154900964060616617345270331240188400178643533291487233120161280125189937449481586050536939545945133364665133672057779357251583413440498708549824257895255049132795268540855508669677338865642882824460326339909614635132836931900116024509591501651188013589874457583656146541792744242056499710258842062881716399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24531312633576042938663897405285407856450715130344821012744067331013074281267927722889212169145465036753144744829912652867662900238569615408944372914510609478887468088318225847911343307505720677579489176284672599422772333788045043431352754224150378263713608117109136553704231592907756617836558637658044477406912329246275498715141125698277536614304703637020923387785374334884320715920882127940482011992468995001742694713768286711213332115692663696168568321677047903569903607630173877134843840641708701886589007901548665727976301913921253405608679783761937835145399723430997734949090043465514638471969744449020571054981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28224476309568870341475798548446251256423747894266561484208234196201214343011325600860857078627536813149213081704953274573843714609330443224641130408882603999122968068570355064133312539887596929863469985679288226885062175244961336856668101858169179550808075623314073153335119526249819203173866785590012204390865179221600469424702043478122456343666624607507242348101437698508624647729519139946310387379693223015188298437993738120185573740148822687823915404451234934875011551191709502541916868985559724442634488302509572439189658900024044356814297467176639654587306268834649959889610713820513648415010823445248778741647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22510959331120365990974397985247336250270376209420623348904415410413255142700325587543165635093440096584353888189048849497967444855519025955714499376209195711619916176520850898159172578456123125786415350773135674049547700592914320493874620863981831558154323448733497687324647075077031838211823810782598618935783860157162605185034596991739585766907842970986006481752050277373269260885823906769095912220059101789565991282609750395778706642044658997540832819650443521839368621931605122607244689227960174640232301924347681383128142635607932459919183609882511543398398962952501504745387886459876274692597570359061201933653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30985385159974672586059535879476815637022944696479197281961511281701632045211571014296455331160488682245431354217451397854585122106813952388964464292456100123371540273830761054684126025003576254961070310817839847604127294651497673549463342499049197197067312368245212621193932266462449564914545981598344150464292393056149793585963306138035150795586689519456925529887616413016793228545257039809530512192625939078949489872821565570984327496469269399364116440777327708146538599617169919910651119405893275932924192956846415050657935906821211143007959148975785373600532193299592790434102192556643750026184836951013856240401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23665823168446991066266148723624566856147780319125596408056670746319232197209593915631239951363437981474400424757096544627878346702871308692455773161424263579256594055356360618814097707691068430841896215168148257990555158643998170381528601458069539954080357605522457040967625717135712352452886479751341641352092238086932091133851835531435423785380973625796249617879971728661517125687852852532475141151750389902283039148686282503288937470781560146416186379355467865188980564486433940667371127504174955918476119927741297358388829980036446819703914619380314762627741911785745755704822617131996941644859177412451289769429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26517359683183123186269811493385652911515160369392329056695451380941563660063135516003247943234665636726012917432096558301086692953050082077171228848259136075904370048507958758657221900608833555727044720525850910539616333337671391236988883615170898738048362584352518189254305023813933641056200078252465767634542597666301564042647121455345843224725117576632921288737838977386943847443789069483107196118340042599145383292863477612970912183713444862721041106641555437216469172219819170728498715602813782555461041079859752027889172631229607262278107580393087928053603532426275048993274916609913243203191754581682759300011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24213177602858107446594059663510689698212010076879280644889708603614409470920211859281363239718090292539620927550348588939707045990444004572031093001426709898705636303549133943253476533708355609768050464178942769776852840256288743621653011762636508560222066008370176274279984036542960252546968114539759619192573762985142730301176074203224437231004239080472973904095166146646397566959052705098042048335570833236236139112715329215849088173406468360324895423312203258665346661296640318341962282716687339467211049113098753119460809109898235641709884404328912999009673597522355134493240855263322302126237255574232031961381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25303783064312158217848574986846098051437539454842694900948865782460805886809661999204174987819285088771570238535938927611882326076382337924034430565883298764403836046720065097916632144706467192542640351973358147466139712733300688538871106538203991010395387662848920403844829649224691095674973180797422867207045198565435726027625898163558560534762655181470214529066442826625599832036048590051557802974537546035560643707858499180093522366358271542487998455711892500718263100407330481962582190887703904613370721334794443903305539510303134020445683208653230068323815137797564392411127888447738718616336819086667895580299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16218077590306847581729532339743699300334584240467864816730850607211882573643721966269561585328456946770515701880635522844295827750851801751277206235567934403065438800222555146294748263295348194911192923385884266007470436361535861275588392459926374310737637318840688059198656979550989672071543581920009043564207139171105626896702548948363504721937246709572297675634677382260197068935313713629238052910868879466391933960634304667539421951734858313060327981927784173256007483240628572212066220805553527503415133158439649352560646070486239909304168978816655576467614499142993444930154534736839484542779706600476100973517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18746105540265163474204631694038238619985791884608879048039245602383760613638014116740303124185299984032027633580548986029960577820425107499823205470375405475930906515949674699172877607884515708541177326290728167111920865435594397017096679280338002021186426753921274212462395497778588455798229910165029230235141334091722952639524290425761431318915614526645303682596777486482485444164508895748835701188055398500459061105365183030911233371456304196635291929586099300584215663384082418123924676001764621036267590391595575782394214867134121675097977689149410830680850749113457915374940032889684786602742653647818023989981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24315320601586471084660307448564787584918693226874499268200647008845512837720234225981508822625092461227113506329957638557799587322879332344895891730037044771260851927045959304540400717791845923072075884454323213217608372068471517767348120313089107321001545130597896633086095305447738751830304769859234198439891759234182815757263231818385815072266551049417105945307520804717409116770238660211918696757041083575440199492170882071305945267786525106241785312082568539635631152477343567320161173124864034055856663562629246853190488183443483266752505468478571334138334446223413920447938144378318308260702410124668182792999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20005275489130025684091043591126024738756493067366208199484131991588687954601270984008737812139238327754902110469636140481645845788897685887605042421558778836674949514532424507468279904579215514944610494795588416736063455971905924021978537920514288259468429178858241506261506442449954150109035405346143784542905475943635521410132070231751816676958296653754419066583087275880172425673259744898269055852514501640437191198754572880604367836328937210080747348247477992400389802714596294374021017500824919729965234944211977617796548711370962749927273747511222915260779905143248099499875756106786247554208129414627119116111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19177254183028707419619122750067798845870572000943958509965294147224484925337584745210403858109204362082621862539765545096444474345041352792547216680208573362486167570540550443243250329533049247735332230152986495356220645283741224382319078491986361309746521171145936199189502892715468882552532577538444042716574898320894933099137101114507560901651972529696411605497217188391070972426689802172674571452886761878293538554573005946218350378873327881672262145871262594190629209044175927008719515586248899313386240024773448664140660979774040210553151763043686027013842986347338420796023870591503223887204854268877925585427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23541014271202126534927635245693395631799832164369819752914216392482092170081026765976605695555515734434523703019313735448401204158742319966757449255347461491571275144732640481410436432084211993925932654338081658669187900135835472513918589550582433869707794437625797084796790522565177587527656927397829789358839144840552749455896206775659437119990280362584865624933545867168353662776354388678194652719642544383044136190043920150094405961323894386238092639508007668876669777815019033201276442214973147026414270209703296269848026257789962328722862947751959541251135718474416861929228187080232582777923919341692812643669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24938875231386420740172380274865167210626430463053738331744483942633668278620624529269150776258072431442686001420424010393345483818486371001245211277449104539325855355312348440005013350810259482820608858071928331166900919221085351071683036948781146075880035379456284646337093305557329956646910497931988568388020535015522016572423181537509625740982091853507354303042734860049941971503127901321190902368528297449735597647310598435300010855603576927226260455918247388810405000982040809802950906466721220383212878542083839766941462254999617608184922102442663557253729021277193921823326046816489876701435472263561462810453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27426933198143670361086226339160399573545356731941564144987969706067326391068746482492112031026332007729929727386580805341130834001705317557168786626418954233407670849331097350433006643836491089254474128607415265647584525550698447656717059478133003843291078221096497348793851504143710281157702741101145484488549241896861755542976067565999347825334410349555687076493168722432777973313818649150001113893674658999041379553409324881806058646432430255895845046221970785133040511468323275255156304387905586510680968962460699600030895851408757658791149359730764402618207084211568752121861603134834498568381137675088747827799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16251900319181726950975122680220204272544317541085183526273328309640842261966795911281321944414981190232437368276513264389219440633608999969629155801403568568613652373082670194801182856175348189048512841197006788248839158668143106477895393173956239639302952016498335396416419095211541402459060859498762680280823414670797284775277482380175370582953294000761483037083891791061092438803470403277755737225563030915259976832937485048907004052605302410878403022979131370056408906249538423342514056795097771025531265351233942327210310820973932409412414578553434813295434602876394455383069886204938465353066765955463124390313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20579680930834030542766094146893255146858341556759379363380737773954117664051379070646904622410416300468690175876469991843570787196332803314950168131106403010817811716984457783828744628577658872351973123691959452170263508968667997016456194712082207746126657283569610271361554814973153565891097329847856074163675993750954862592180060123340646738370755806900150177595256023984773859869315368246031468848497003527736517756189081571361321273465256622135662541231431354307982007658441230183355490353598222169932120452543736722603935774678469763914369902121472511815122388193083372039184505077566325704109747796470354328793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16320283858766816844921818491051547055454300256189412699352084385036121767327215842161042412152447898085340692087109167081290622703190305682215519694683389115563162253445640981609333962266634742094368385689542224828515166398268069112844156415310234484359310119800286695994040275970371297597145599836371416460533082958692825918259074823606995384062662983302237413836299942826600377441385185154228046082719957280581814563368259745796488104237500562276612714276055425118072936048493019222868000810575362350693642687549273853110729273957978697657437990392624622675165514721960867000416308458721539748894097989982352634661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23450980529535787104838882623760963041326844783948999914535504499573275140476229774544081913015471821126782596173883766217823296062410334274159100221128532349232213225156181316319273865018144185266743144648365823134108672530014850479441274757657909082491692941791961279374682721335295159688834456508368953241575813378063487585259180794185786593427554251069731313567955238293606974649420565792024090391241183822345112634809772011119558782965901049757843084362534623311481490247521153915588317703583649002002534757178099849642682374566032556962075494611407746923167529469338825056027032709884910609534610599960681212993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28240889441338118061294067324171160330202210812119222881987126605003886754011031383040082370901217723296921948378929074421099741490844902302007724364055277899849474936641888687304770995385587531482991280975133458274751148885807747101731961962295389127881549269950801752662910909259502859352776166982031071137901983328162420462488120285150295715609010790940775482706865296618313732045691964086867980396135452385280664022201318704650496960994355208273464542075202955758017228591080727145792803839848119900841155594477984278266266959160614212979476639376626644065792135849603418753088809281268791828249028461657529634163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23382721749522100544853889195512951062974636245156187298251578905637220238501252835421784079327127211584923672528998991000967957147915092312147338762137813215150934285516059331089913721069716370639374053136330534340665797513304222775641505640106304398340292559216627065401662616376600749157636642281918487620717269531688027015373634074827240827092158802351766031014277728126323925627922421190842494861160114286057621561607527866717438205131065971285154224264382952362081695645388700233353401648363283126747216275046495736995555087479563206139233381128577194170969600191526430307901648363375752422051492299481042953951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23257289480740166178608517287729554766325317921307042201787717414675034085223137138185756284498662296158857529780265385512001946777785676955145591320217945437952468060204074418475935416447275544314912033854349386433929059571640425497355301407106635558677173860721220150271383980227452274445252874134277011041187976691867093117968781752594559234255991368366660479534368694563086155844238731355225106013163069692195182258795656427400904320487056144092979625291151022424283675135687346146623252726449068976791578650232451218209274174207951522762331933066584335286045938342873185415775813299259991520988666022533941282253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22801082259996205874023435880231591985033257008427804831486793210315651823268494846892885647894961533345018399724215342160881031539227053371058872262744518906759277683883810948225619272258701956668358928419417673767475327329091136360747299771520251652875721387055773582908483862137342818018855723993525098623734536775947245400348026698428856978824420719849355477153983279466963548438141836570400728289345029723165301308058099404012053671982803336375074847528027090559809595999740881810602544924133515751204381814438919370686613847693913234494502787915617407672116769199086637528030966747178043326089162198176465414807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24531279169058312830235635274784499694505680876001781514412688035481943588562861843797674740293547942258128182876918301448069382736000718377885515219264758641427681526885109345025997472221876798327224709642140399920346745818224505307588236934106823180931137819753664987379733839960047488490500357066560347061305629808349219562013424728915902574225927199513638535765475709624876833592601690677719782418287519928154217937714406497707601658560025290577486966468391102093766816000549729223780806940868938268374232711002574143740144434051129192778689907296773629332161209031305385633980650820320919423657583270392331876049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23589682567983190520496667473602734540911776062192120702361952638595248052003753098491187728431057861997387094813875803433765992184120096885252953803075712839282100355957348267493619683974038672446037447176779252671637416826145004061119205910441464208053922739788948580545443919351449465125383655412564512989309476802959278007246446238933972992505910639372071621801478977995537685600258498147681402869630153586771580636861213735724304855338305313729145717174495090484282898444381246579191649654377809252480457640267518094801261477942662159641175359538131848652924952296010739536448432527420646648930108976683570674957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22966750161855871808033984801068551388239257974400662295104657482575923998708880934624602463934371649645353491910312632261281890298088644350726524765683536622475424633122675236333330894955655292360943461922110721642985199727190254549163095747543727302767720982818740883186595304334065643675573898434033479538509379451767277969995866864714574956152993053743167954939986553713567980353243905144002300550834419269206617132521552535329995215513257482674145086340712619621406413746020146285952230506489453879209755548495265034575723152234455746294082387097847289681912596620482139575997734134530949268719487477676063394999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25224502449296786426773459761779922292766799331167262435356309203901960839316994325453491489011502182104366312209803786899577042750267035837992904986991647219854575197008821000928059389503239778766910369189035364571991302852880839432050467708283615097910007587199198566874662338530235111863739999380205444047156711690352965538971621231699925792608744247697703874946872804168873777004741913919180029309485563643463341883531653020933860863785723131350284303299900196804540146676361468394872748043139089352026320643605923117952575560497816188969567266507539687289506122128095546202274303220747647208181545448404346764149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27048467776944691612974070788741919354279322760974856983019709164621332465258154394109335073625465748973984563315989269729124852569529624167375965293753415918839608347331929752614140894610018633176491837304846834755623958438016707391789531868600917953296356018294102659416820959903453094252264795495123902197965000004987218197757663596107057576635138685660151299813458882398492934207199656595082743405752063743104605388402759118490771062754553423337654390643614443664270527278877609036567278988745544048909983176887519694940762264309085103449147590789117918204032567103734124239738717128570077355084522170955534116351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22913944564275570220770677415389062222143871871498853630228857056363320282223659709845318861536016606920113046970372042222049297282094544117973686553310456174086651056441883486683291752020016087248810648974277609273585052883435375147797262321513048447921311578494983396976963766872496310531291750883654839139865829016544552900811228614613026148548322764213963004216393024789843938902285726341922065665830384593314918728572898064722157153377661271787431681878315080131295975072480099303127630414198929733966769812912023660525751614013953693795526663591227135716611958012941259460504658563809676554233679370188496278717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25402399386361376285952244905528386658694616866507534971751196191335273657281599094791791562475548347891886005746163712357283174479492347654323123634961135722275572693563035379413698465092818849306081565451821800160023768772838710500919691370951719302613130198378051800674160805027542392652094507558484806780450341477137896906896342788024005130232426827655313343385291046202229028997645076937708789268771560372075488668361158506887774689170705506879525401011733961357444472217772629094376480652157222110136720277642298979871733317532911042618749088869111498840105091792953215841358096034209339565186066597435236559271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23850182492835958962716664093608261906571180597935453709620576356887174896414775125102123113076560984425807730762481362704748571029612865176642120129073217633219779000028254960868119403631964052102477084589748678802586673100324517003745375130961785040750431973070348961287826063905345910767873581422390529334933363943366706160995424119523947578348558279884234569046642650549523945125727898293626349472102106547383459058308556306139980890378957913091849458379324349953954689463288248834614920013021381562065321478781283427170739784431677301697592872903919908632822194041986614792128746725086940791089008507753251307729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24663624909717348546653516513699844089007268016592870262782426946372875267462708234693101636670741902413996079486395198031455707080442565974203903727709143698543393810498876949724345480163067637153769779497481689334115400477198939899611222586485519048535939844108761877539005851727011983890361099893294684776793043512396000357202842812103860226694465580763022288494130968415061245165011993871703049134796655299973940970456512564341523847358270377110847633890280078102143965395103664824848000729453128434928524197126652935831145154742639242878039923005388293489541398781827914311836380625232537435017119926895583137321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19440392078827690537616631645474047003900355910883413659142819010164955015473033990334010632913126038432794253180554414302072319175286608463746481099753049242807725618504488440441768267241641502152346779033243235355146052584013615003730908895458676705364752071797017530514026962907014914865428239837221928283533493974517184154049443609060914160638163540135286620116580219385226701003928833861855073092106578747636203424483533614077435849575364569054254465947398030795276330974377643157223985879595112604802340304545013730131612251049098957195743616382037185926803480344847310700845614443005409542931306592446402334749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21575838795776987871456209907849042534838708718526831262186476172913616668476970226122286259195117908171732460020186600412864135622616266829692450497492233506189177496188598158029531297307594465448822674132373157797678928176832081209086869066288652192048632830183380860744854131960261325332906305034004962335468198267580357795037989048782925399081253568824344770964364917700509030807796668402700499674670320753278836320948941464274441018997473773157821869438045630956708499443268167602446255300617968679689370260996652712328783382666172893630170614585843881199281067789850450446030635937277072175586294804857623999423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28676026896278276260971849119702841627273338363851451912673213927812847284384451622709010188340070400946715919781887990043486774987467178591291973062756574216538476256940477677624068167392837074993082272913760635463199073499294568558772171311029887123737957555048166556000678473455383306773087843835249713780491318166586054312151444499524568134522928401030811717167486371461582195080854674888972081513758633345353443472849886011606514416923014214830633532517692349718517558458678317055775792506056073662440416350437578746287370723683674008337407021723007723405651648583892784024951892700475573036416969656809159800967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21334200979696421604585885999975399373110289328418155187071203469405597404031082089275323656290754648779899277392689243860005687584121836621403397109567579571503784412490996788162777350087485609373570020738863154702953288513797052893287156378630079223137354037463230466093854445605141587895452555692516701737040612720699710775151178581248532515028763056246649461433583976781607128984651736479240136079118267406739361078493339989622473368846401043262553674395095402915613189323165985369343211862672575353225340838663179348172590898132334891088271191798677625829031443392462188954823800923267618235729785106364672569559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26568932805189474710354841444120787324658189770179236930916907833471302500133832672342879150301372833066074031979465260830345240309579491768411329649272122276342211954529919952930754440062824070646982115789384741381116157296540262712816478639421949357914035126213415120176938418979997179538759875351580469861081910647464507286402663721469481461536554772975686679037646856683062683454226231400062380135110669725257465952116604407586907324871674414794708032485728111343194183545085845562060429446652638027651607932685138849179372799179019365212040704732204926406078662746934652348419696666116202292725067407440042453433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24963212767676599074895856186525495113761971885531098972157926126264984137956190600748236004517753437207950013767117274296782462679870489026601896930864097554535130489218786351496647141054151067721050254894301413899698452630135884963947962454400705424220234092182824984882354919551439730145431063105967505766589974999082655828393844354794460552876140830403623753677572967539276626775860199372609942783881895036815457454724012887729486498400980429540161815083896270660019149877300906711889980176725115080464331219763794970433677571232654840585181070634216382070304841765298717086777842492341979606522416735697374670243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24604356387686037449504384261395773720422268438935036029338588807964129177949172061475928016197772501556207218329341207712480155058244921902916236737927700270918573111937631960999789855576361956887242759374300792320628480989092597368317942762605300490271739415366393957189641152445077354672828373369844640615717723192845420506697700996961637868015132817950021350648226931694023255322145477944253744038793489480034688077613002464984488068726423198363802717450647452789973228665828092778100932118284602135038884686748760034901495479401753082722334425709023001850739206495605141721294115085313298924216895290741138009547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29818797314217693052210875083211189576255540981575911375622853101966885014694203108807644865054979458299511670802608880504976471481360984151472180533001839344864289451348234697432722807867457195628568671931990454814604633610851712250236182969030355982022893530235183665678222742341864335727376535618215844986685804288400729951053438290446998088861243117571279015868987547020974847916696408468242045661373919244812289473462036916536109700588062530057771324945316789214067332524121285593603881839865937870252732864830148308171692651816700255407690912332659986084408040244583505335563033741388234802781008934561526910111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22301595865362713281210552221534617757122432526195893364513888672585776726109930979426076292165012859676912163898072940285495472304404259840987267269925682005021117345688640048270253359414223933363724799322189389006324432251446405867352085033363302383875732751697671347796157903891243012143977783711117477822913397623701930096929307847916299523890255304179353672097758924024053945820948952288062112977579565510318852806007760655324066959635749222501817485736519181310972773744042787435208961351735875115123407977033857030476290790415220795026681823727274579832317870160915584971127214203045367293865577286497040616667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21705147545923893934949094660035771656413231254131236000552292288792321999828942584698991566268606768472113951457036260342093484980277216816356193448900289601289020653603335264212100880071972442457880510014705424827100541210821305150860486851233230958779650398939748738021199319898555193583700986375828603697546158117816173602716325784928880426928767304312462660273032450275895211215446828063847679808143970429798190910125559066164603336071703269768958297773550072733263178317760314819006239510638125941392000508587908489769841475422205039010799396813147325667532699645409688546562757907161192163182039334757129991897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22008270961798076369595077903097871247955583825428850553337864584985019313135433915168307922762021962306250455569689101031970803949366193962768657815031672052022159651014453674245327279860664556615998478459191627730324739511347693744961106805605857416185108442906699282784482595561515679927100512989324976619897104586763433418346492062828616435488993356592268281250356043992498045342490997767289888736047819314866144812739138537123209335397464630060884125118972866672312079949530804229259248155004567455649851602386447150506476891000787000212990140151713269014833920452518513316910168600747253187090241609174833256863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27973888081837888119402637341139863810557336782479626785182987736270072252088850320182251485426785257184330662528939506755816961821864359649247349547576115637677255330444918922131409406904050588489566567594293998796678390861025637321836779964816688967347088781909120683602532922655805885426540401620727328921010079295272486115517332425027877466513653447180245323494395936616590065911593098638485574077897909951107665560294736786239744262029923629208469258681979626833603453153745987562004241286452858999839170030639068276430337658508777679625414322026854406950901209512309474036202025434395871808557296278125526670879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24023090472215685855464148201577042252143688641770405936479193554612070351253669266726140971453756300527718730172482753927461985746390449422649856234617686874617447477913398103698669929455796198223036286097847928647137862888668501826868117474222008128577700121317838074584313277224703068706014183386256597265803885084267446882340995638235152444505716279608901140340714028982270754829610255273209490826919278329006318423307753675223773563048684249602575181091008596804475564176695158531330928919461716075430381185042141209066156938325558103762514357538717050976999592957384893206237608348412185351416624255144028951433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26563677795884029400606940240721826155698663741672889809208722896175839782219174162582254172188224571892340005378611316556481037174227374885840730392053107806347472068786484342212192290444186937738650243969051037123885886663480015675973780071985526468567183824216925434050978888735407022728959466907651144858915720881116022664460427233496976098282274357167587177970612142461964693332176431382273756779721379501558233585329572262402771053142353452918481427460050688102511535761780590642239104373250464163007915447531300922073103022150752824861895536715721326629129804999891715795940688691568128128908654536196692366813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27317330054334127513510387665076548666765313179970948942700818076312302387946494780056294085533934067885647999225152648247655774112450675172532353903399994466187884893383405630066805266146673731827917808811105721864355639572754015000326456083420057257237564888365843374945962255722706920272149489495283552112211749630426776105208843567130856197462752312604401827072282893852666977219599139753377863857085491928934192674768258673578407262433567550865947859656474080489938226918563735729693457940614826037562861843921729298097648206091298616411333609212426782501586557993366369156541167713435022248688492119311336446119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24898669370823787765715537524318758078179328270917752300709893730055686759090155950538637359593569387261966757665023306739095647824803290783908031501513223159041326414856690027427370477501501234364150263228890168638838204988418969458191397776087761550577035080183920723960445759575597548457666259395137570947579206642145171246424885362953111843442248322678614408250538083303945408505359615653266700353966727342093274814845623714830998636796250217783713167951263607927919896011627746131343517180062809009454536234753813405757231410011170910557980927952871836082665430107080981153765555286370577158438395202537936512969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25076211007073719324567471968459259997046802921799785583370466059756492664913491515470745663578786776810178095203919946212769392225727000863515136028204484558114013053477193194907406910034112580369183679179965894915692486542801494555905727856825152189257303050192770711676194706250719074119846079982815490562932742030146488897519292122395255968028288784129872995686527936928065907877964591193321356198205512929024929476876665426409347050797922037618954798956094891064745428315311256161671124501030465471802318386911308312941095813669787884700888890723731658446356424622248022934877287487859516933316251306698270195381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25220290842793921206995976841533835513583608402043790666600591093840309382332041411564921291374112418897704724322627461302531668550880534397980723954722992572631209443316506946779503308370748952843742097962201670304544713108909642898318484184329815140744487475122964625383815189955213002562955119623359731185397485909953564031864150620976416455638815495981543006319845922814493415598075924056120812166187128622054374471380380178997882706275114373696802497877048323408727846916869196298182281396970479842720053888603957332150412738242596730085893154166539169063416235110573895405986328979151171845986395285124543037013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25307603871527394903418001955049488863689392774468259767971147213977673040477888028849144573239128028142920623674846758854353478905728765599788877062704786228988238735562242426745699356363101419868247495317584542844064957730996248750146370852146715349441584302141054215743058220069206741019363837940344788137899076801152569943445400270611877013364078605367089217862446190003836821998170206913206246328542858566705575926259759536993216417510697899640219063249411153340068518606032805086477589864859848170609193183265226913257588136890098242449735708850706874366767099665255950786890541611965040893377222696147684470457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20087930185038497747108765950311609664615073557989443888418296494203349043087898334294400298864553118610635653130512829257763131488319810152084568654445599887606972180955877419937784333376554353520782462962103542437454582777854659165535812956716251335715040042934751429334003327408952709704836327798502259137783370498571120740079923100388288503109434838031806902690381520411743216064867709107298056226181731986280016557976001474931023053891940119308300762985592036016091504051751042443181352923765035412529997826885212071899979838910455264853697510476395633462493718769323712954835530656076336418219863109956166948457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23258019649624810533469001503561444136489474113130676544443483907380267750314205302046213886678056762587507922931725951940670839992718181497597918659557579948003952153171122667620169213850420541719682005992847524932833891412161459913758519067121130923722964615662715330298865597458630453379314802763794034725317931871230866405147777289874605949307508468769038971469232019981555216782348229368838076917026467513381148777230674859578783408818678094673788842888178136857140627611702028125946587344294319021259332805549001266409264688276334328861901802711180409676919201467918488020080321689366715072435657965864260056227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20589269417602760417159395033897698365420083691249056279742839602602086509502787418706740003388992321647603135009957162921250764043648649905741978333082711334244103723558036209704329835308863512993539847737285401060960353848044665175948068953942321630211080645930495639181214937935496809633687297494107041847394628581281719036709572486169786830795107942463643540434155681776003015720712498596685781292776364869278338783780223970455555008297715073141379323358418913055669446154675472901806543669347687674539830197852083580095002645536489487487223295533422584761822841725598182486696646217857772078408226047016347015779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23961058546877162167546023813249858691497383775689779312039452990026501732846822158776054626472115577044130836229270617781014592217576081386173360407145728654137850242317085291306645019036735267013019218723609530018777101919687674772538621369582534449386371400917733476315526155417654229635865284469226433444858589628048678936678671634012394540020371005598750443277375612672284635285227437750291998012608590415816131465029036920598342608675800306514437272717088890280896074935201832391433661776806722710187424642797034878103808094580872166239414733095646861919017972550122177621614956284378880013045116150500099786859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319589296619659626244287679824350556246811756859689887634537348845155163876339326290856387918123238733746721288180668884047209735416297428059652803807735996590491144460300163815602738757816872574048158865335755976675351978166763283806225467202866193100867088887728373961185397794719354402093146358290707203393426874933536996892751963204289231893211317906921938337113110236162196987714421652872915029666397158681503761384550852124120005863031699496156742409480280402990402910947624584131283489830384315394043290383252647217065140775334467384419345979000546647264281823908610810409925451098951972388986059220939209691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19040568679605204173929845839326470772002403541572019655189879592430239096264537725739156748520232572708001015732288574791871666519194654807103366248881257689261019495575277407646192083396481339970635234858245611637858013990990306316365191055744039628685229156024870929828609637353368300397747264251133445400563903079228898732079721166910003613372761256041659151175255161015037538956776712552627384845329285266152352693205495388821615112920938519493985669659628820918393906432596709230638471624186631841504394655134482963919617815587368429636755774757154036241914484120420598280690920354295781259351682774866187142191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16325763594664698741066277985664777333712475374864230374524409590240759824917337688188831846676651456066735418332361284679589735155911182889936944345707947176259513450207558690034141894229847769275065910824888538604746575272479966682262631966177362976745479759705429010355179147296366162726088335834127182907112252500622279322662381208859105380397798385235578775381010764930326921110481592180082561742650062758535962601549335294503341277948045011814231149627115364552161794793862744337543417738567242735853663441927086114291511696587121735698426160043825897203842494481295704892155123788342987101063735271583957208247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16244994869948373032762108121918136491435111834744097098672250477245513129102479971429289100318816694340095032306680463826775228411494093765526634083806195313168774879357428077311276667610730862667378385410307387891416938850125220730763209544432436841077746667564433458604425318612550129041197965937901284602803924442702607369944099317333683492615716995994877993470040201990407546645319514648628047621159580850410283833505071676257788553596667244001776511098649367841366894055306913981787923593009070161076791625418902094692308775476570743270018159878266765507486146651546969268031938524299009540957386253655782021407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16237912447012604897610466162444884223549048293689423220183649500969619970674646218629339467012124377229875700996133913904648913364035767973245157985670516712038238312675634237390566319772203078578494594112005325749667548482118670465412599797629498806812192296580117028485555790782914859999776786936187396038251837297048640834353333297936387953839698457635746334658747479585830597500250761890591589565033256173168084037397985816452619326798447562055193316564483437988327777071848502140866114782641754304325947956576428052302374249147646354257493948091328126912300418842838290674000091846563413554754372862655420320921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23971555860072371502367545212328456723339170983441719647630545056623924097248552517566979428621976331871589419926829228452332218922706663677321158258432074308308252787411672961523511269658957910619156104478839086944367421801313907642594278460443333034139287512653619215629915668439088157788477421093498076103169270566756792724176911052635546693214452400383810786394703493288498614820481400156932244766332697351457054808857081588415754629483104053340781778373863631971690968504220868733594966859928293862531267671220669984766746825735104592907573560852096169196375829020080442701381590734259254022363304492919118222849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17080804454203734613820604636919511918190390941925932717795347931571571402316272741752286788465689148217222297480370656915801917482536294734852389019382201699127879235255833233600770066145349971770212735815400305938604095320605767276813983433777288048195459689405296648483007326913033224611453164963916188238564601158403935216110860771669840098280051892885977081316428696018285831019659836633119023636267638624273288687245181583817024982461276495425666465531612595140885590876769073714723655219612045611914818486431340488058396910042491146295611091243968608389486581011851121991071640228118428506034440434594319372417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292016605129452553005788206723750052687449015774087810649879322636541787273900346565557000153830112198404616625274507591023286272977755554526553649586414882118095298509862109850353294465866125384772427597197132481529974980955370112722274832052337424374652422946793015394529836580988573982108151001453251517088278401773150185799470906413470363482100144969141526987445332682106863762666829490273629898967051762056461606908371175745644769157845693131473183629116619234010261945395521814889644204519375339520765789313182231708356511553204315343812875100293866351467285785885161207242653710848542366824505478186004563037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20181635508379610908524194344392231044590001560503476874608441188528256039405432438366271945695276121493708949601286143565340509285763660014865363525424777364398302190676590325658086002393801587296154086704439673798594100341492144139507278132655499474528297674177243623971594749055847045639523795542382883296147564493391146881274517113279043107438913301185865631505575985760680761574666247224421306409787877621681343403622789096093252535162508587877167185721347577523077799897589620087727876095107208617331346960842345061969008599865831511662782681645152920426635889008789518257101790159641919810723120776580557040087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343277114217814086460346176483558471254912419988287869812125650507001400024717650830779102790661325061132958231443190924751593037203216370753138591606462085426912739433614052640913691011439070983835563644045830526285863924617264860769313175058805279133217336292563131730174449176655784325612771109732559036035844352692050251000115879997909668442812416861521457717986153296621066531417199950822520857426055878917412614954422411620964742055425454917788842947544923651507375330869590639936680372178651389441850969532876027935595089656812200886628782269343032004828745223578507253506154211809268617670980926868294083207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16726476768944439347013468730398280059678421406520982623729960042032236888844884295510698124352947235152770234369982148513589088353978195216131808880699594534114198289159314994964673797322615976286665964547943665933270564799235255575865338972947979028719942903165590702728877455952617267825116428237911053858614466994234910560396303811835031976613441636592490142859740960985186237283510163850743970475788987281108071266264025964543191963628640673771501349569976658222755448551245651012236357407139723847000430592923143674726396955644431003243397465091930958079349760421690457414055992898379485703394137967116967912407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20416660734777423215014097306791873363895135364829540194062462760098126550216722907100232530441061656583130650702541308681763367811325981585393817812054873768966633389529380276914429986906401750423139053743353103332261813008488571107602753168917818326779409030123148563726574607633185340280931490735330811465985232756996781613667967657755541601000057992108915473196312499636197621285089887663042766544751006593641471996888113519591814189053461674417908523215549269679069791747517441607257844261402460324078263437995245260375597165221767623655538909543575039254440365159945690343964690004092059825507294614257024679057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29843406124809225275542527846330258303740589450500311522040065026531352119280298831678189678870897123130594073855946984186779383700334263945251274038310439089980058802864290249393816735997514841163181000069396094634147606795784843265345066795302476167525578973538262853806925151206139750093113508736664506283412408307357351772586701282646484966650698736608995398217205046405545253647199750904471074528130360649162033749311482753175401575827489738203804204713381835161620235602495910502889803128411084170051511930040736885274099128330139954449178252032604327479709839998834686578841898407786235182855024565642459611289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16869458508843756454940930086631923520438080834647976966684764603390830448839595983047007518120203762285371828878525694977140732300171405830942994757411089788066307863049861476826568179180390813116302550987539812736535684107047317411742297502414770727631562930581799684333749321956169458019799574713779442156364973697924912689299777565467864873364097588557055042873995849136671929250873504887449551974529481832122340955973230841712306454727894103822400619097686824752553050971641344426329082900726997330429670972060752954304680158255186750727508583604581009126488803683156044374031757808905767426414436067315699464441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359056496883663224644416994168201454723628439373168093783379122841614634029234234609670554070675117861759771615260692232502876576506151339056680418305585334030856830088764352439252655128061716962047072346343586739826994401163457637466696054565123372656683837050142629725486711985097176447423491758114221066698167770936482456556721635182776736319441024214726773357473491367042785971156189318980196819660851940169758386477094273482367280096526411538813092598317745042369565732935891400693454918867156049979713083612554860811768793423191787584570997942718899801077107645910942312466471943872499965634626121801382704193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24638200020048678870382599354624571693064438152076532088899286674848079624575789703646081147862265136856439813733393540850555060981316939556502416231275231362181908888042333287285548055138126783672861098435965840708171526791360527153493380301796111293158606393356718435212048638253804976696046846228722596246435401549243603457256485854148152920046840905222688566759762750213050061373738470855240350170070754141988496859461676020070306607692364373343889254878983725516625849903296222275425647212278230331467661890124988081724693905436279014931569311986806516712920163318700395812609852202365993076356263259533787806329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18355012580768140294207093707657548126588817705601708181674460551357903077418993316005804821103716593976805470044206347098279878502628963042323545849321396093387550683438393174857325154860120611580847000046631765098244320152446058259615275354421679823560139055950379766202994644405618035581602827340767399615106012457475916342839596260790825431478736197460982103185703238440571562510154193537258640184761547142049083701577277057848968783511392508679693405080650240350752805765431681881580820382453984422805157996461652731609768931445510541905874374619636323311933692044415203042818830346751128842588877573182616792189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276815270338620764145478117692852667533964475568745975115864828201627837283313172543490743937794546912286113144805897639493584602615319304183207370236093450182316683632917348926809558625950314975709722962250664720667429039834832265287794915233008548664671052319080602484544133298301440234343981297265371055201620872709705892717688951536336384288328562703175336102251266501146255169290636705216344301882702237724826115668800935871335136803708301754885126962521901104537396993197741760972517447370027041792526528265179669284053410911631520433529962551373369619349617222784506850993611172433798677735963702048658925063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19279022978023040994265803360219917272414794216109693794463945565930558997701984347232499521954577443176324122355896436933053181024544253103689921826237541846868818226996310784538124375359419067948218303277641351917498586132166184606703178068253353097047917917286320920902471254132471142110814161273499670733584281550957210643325887772730116909521062233808708423974177905021013036073071266093622650747096225702997411958333079440590494519993062581888830911770432199407447523215270305710737270283293985581071510373074786481812980961556423232420512444994788940168388859081057406962053506230095404719421831514272249151773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26347337777783586110957046814163600140308172392400076895985893870649796629032103223598433071655001200887866083553728962154164641922407943500335810359058199044399660581401988694736862497796972343272196352873544357860851646239861190612858645287861694879347378164263954619102589042891523359557201354033759631376443729732083661327099255022847032905341559416596607992285233209706670660660441094785612806014539503153535006937634332692607655077139431667115217554423269626181727061944859326659537448156201434438005063154131389397910955970650352259840383294980862150277276514144103826454891223891732169056527540965401703895323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321319019544464598876374464079259860746688994323418850380205701282062461026310231398233671675651088136638127071308049305418779425651611456930968274132157301359734726569501525237077928848399616961568604609808190695878762651494198557767361109465953228949138514908976421715011311187688384502042789420567231740174352291224519291240307836793227735189821420027845468430229738958845222947710375161032883956518989710377164338160078769407408203505265136226034928162419905406402680068651935994235544434088338303601943641703873618429611104986751288237123538012994852907195500870103863213569629759962483351476530108622017808057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24553507026943287022792913552011877771350465906233927648087334317732926670398684637290391079490651114477511980761229363636026599298102904035766928142182849512025055538196823948105277541964008738355978136429789461106220760504751939550227157138496769527507475841938016942503766918057233142216751314831152407478550362859988650692347851597832221448393743043131044808731371585047742181434042407989757688830629298913922324173281924625996945263294378382112327963345154228984892724575546845701736786026218301479665209987135878815894792982746208521598946263208933614681651274699752781095243376923460295643138971529794271391299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28578754527753186751300172333825167485074434544091149121503281258266204869257753538430059775770519601372490537989658655557906226253913619425787311383356550257151570672002138224446725780656966312819085782247609189757165211341736483900919944916562547235416915383793100173344840554197795111292779615306153393645164341315802663191030828867755214518537106332976788239458355381681768551844254715244399452079404118620851969644147457713082835233180821767548345876756506277110553532018965224209879914665253596099653592578138358212801837642381823978263718138434432787472647646708667467939726471339180514874824651225065564266739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23403451848187362516318069204399767320535247729833914487113082991354814645030557995810944446907947960702489458272379580456464851166151654445798787670996528289430489114201767000998238685178763610809501251601044775854971630637541348787314260212786738702628770997668150675345585104061809384814452480521491074642483106796729267411448623080850133117315716931857924450879807091415108614014263228530225465087182790639400516910026882683769798215949528050380465367420182771303976875747468681822813581183962990157545116528999251020992060211052491695452499411159763745071611893978440176323607910724592856578079951540970850107993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19198784142211683877494003782686953849830824512775495612378598474649845154234286803315066695962570224916905183943160891475377677611521114518070069445369148101580672331242530809575007277442050367861931450183063978495632704680723416080711890525713431422293533905206084428862650270093402568806208146174367245218154287066392648821131250348187095900606897756200291389972143557760499433936367667576687269969878798359236337564377261284485307499801185806316751663962735055319429351085794363211046421852467144210340520493635105224056364952896082022242486321975116885562282801458472689313877154954984899763542873787895115892523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23588624094349427522404167454031795494295648650766481528794461499093974325997897048852424279095725797672252373031017469507331163615245441628855083993335137926040440394509006042518222100521797269950753877296679985544842105702843879771271918534389877750834906288507560474617330551762292890384560622367567083935650140826849823787774623454897105374186422928238627507255239356322893492626120620397742325798353208213853201767547089351559337422369300803193358070845791625674562639265407999018121392879649430281858719033313478757824947593445849386501061952869828266111557805853662633437080265492269124290806336971472317662047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26533384427733384389098282699781252311110620840713479795137041121940818831389170728016859573748352811238862774284128634630984502645434257389771644075299428060846299619455494296374724211740431403266945080010405613594293028812118711288892114129855032048217307974081242827871525248478771059690345933953999228328568049358918250443986860168145602293566304758717476735345836167072009623622594566560720606733865494456646520909087201826904780912432892064361507506004969867249087849263200113673793955901320441304793119115211554171319944434006516216010608209784452455678710134886001888527542214496838512470903406216290655423281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22167282944049458522369057902306119098418125764926385093075871009369674679664125241762815814999907904534957390189393270337050379756724075655542307975634616516306742400008638213688433166710824118670214467778274827248683942978491111430531808061604542747019820687589508676555032836011668926943145889046388774702373655779759332238552318492155697430787494187031719975503139686980501702820018602488025334107864376816103411798505478754451103274598637288165133975792597524236404875861294738128436606598588587879337187971920110289873022036919073493856158958686267614092453345220689455892574330875958092002318186348424492450089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30746973856803221270743387609546079841045774125752952266092834984041317780149813166748164548132294880444042149691916997070441743779493226536965965920014746740295111130332682553303072292757080782814631885152465963825139452664550262300394799990776486742995820953766595088817926795576715448879691489750315262897463507982570510882473790003722552425348569590680787667578071302492327368422421350079772636707350425440398366811570730198849332035232930912311891991659071477867798115281909732624011259614441136053862174016810660736314062594794124596050117851324654586935649628294180793394889120229963736820814478401848593534863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26848880246994768053625768955488578442252935741909244014263972550465014423449918409436941632697502399804897306816173983339748090256495858122861993629603326031849052385321463744645971687879117915720285150037525174686743055531144262991426049662862749913764428922794481606167218955043672921923322716945513816629970434308093149944336923982904404564002761113604395022681530318958231487168112377052195227747374807236628022852574119299132110750574516576165948849157702121972968887033220560263601709323714528239202106817652450240778214482994416694604939084140451125978171406931865722275327856406139204739417242225652272972401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29834134893952337266863656401223789591620251435323704858165212679373194426489859298745514600151858564080345838756257438719105938897160019176442879247251665176303631047603767663098551282416515589680497869403827256350225220329369619863729582089951973758559857541249245058292456638878647621639743548134654396283723475996647061225770584238194823436901288072933070121774920948212093946335086125215737233147938737411269171861083981291975312261362823389882222081627503299362637883703093926485663297625531121520561927577868601420915656807653003251698335439118717067168959619949010266163986909101958138972777329280171208765773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23842533846008450031465351458085728029849577402967729684696266074059498019583868835045311819972785692416430375238562445047637580852679283635308439817710394455358235709929941202601760542351834517585374358159374438541192958058701778198933026633856120588029166114858643004447038958467219604583335300088192003528554722860765161607376307959008850722997587346904844835479279865598067168392908122134533660432531444634177809672228099612177859183621350547882779101132193267425869124180645805560965038178833905045985443247908624591675267396126537316125220255297213339632890665601279684697412658552116934303498938871044319096579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29125921709417897144991433385239505691797366861466814266225784783804814091399100685050203356343359528581225739502548399760392685548869322866135431433634018592485293650795976024697938845711244231937946004617579206453927686242720455360017825456305112581745789720527126460722413927778472844271504848708517064479486445689968828850389690394481683374729283687388506817116920934941120868724440668839221533325049631387875601218710293658023468249109087844270210146531461297827649973227517864313822877730058528444068895137172880254824197311410071542798528255419422283343355020651375301295975020027611101918781133454355176804443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19337942575956347112068862484329763188443226672773287368367981532411940337008627514590792915442878523959397034463203768797988654318768606761210843205363076425002268628144343106901528049089835615061828454518095463021440567506416328918577594237354218055552199597580422417720657752267136067036356345233721524939221563655195782582458499536055518445333577302611298683080729922486273902852127368248710898382687343749292512252415713219928818102118716572769790071370025774652425940748282976911796993252907310314523869724570068253115530946964050780352143695302799497130612459529501714523080549501260101044932287347599808617609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25110513446676116215998656138090028281160137295623385804532527702264487537362703532976776484800059383668386175468978361756673135931820657676360794223851352756575024327911456792916265663529252662160564229811528098545966451305138815944871496615362794016879551488137383869694679888862164814187160305535195397282648681199356761322804740294886717568505491609135070056656083550194557451727299132275707913755870943071197481332131738864989976768471847939078335465259277624224176300223201292428828085095313985328707273555757105358915891663198824216658220963277002708228794294599034752922933919830283696056764822332842599596853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23296559882211719277209926906558134526155532346478241671667864963999388976372668969492971201671328962278476025016431659615170337732856460244573428019221553099864419525673685798452655083124093289209097723606818908371780319856776948674304890739008485285668633799357977469011285004719280575934694583861834609581117843322745601878781972877770962052949175804483400810469953941314983118953241024201797668936513836027164962901693480818463014859675979595529109974676113754100457295016683183071736260309910136460323928924043322014884270361743877405389642419679423804529791397878257010946605274817422276749816585748237902935993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31170169260607147807438453581077560160018387071531956725036711155734608179714556832450427077399288953230315248080201290837767747403379547965489644076006776813279057823802701911670253458733032253034638946564934775097553400917823944262116384968201632751994594873656074313792958758927305991375830226502898219636100888623503676072477959773005697305786181810887221257964032693878131916493506661060372152301649684104443558961064677117667945467816546523150146672548351554293428978875899452641617817204983616320367763280329483093838005153365416535113799155290738303105414896468130130640284909068169109856446350452252421353359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21988583887150583656878597831947925034934987108401227283883226110456304079472178474706819958145981727448406998913454058419809865832277759465800020387064252016731101057165106382131854884080602307296224756009850191239726987935652405428612923459558298102400194876786822118085296673281662391000012631444029737740384830660160929848144295474216541710569534610411625811189901783946882364609381781605587480684958047990271721251140649712267979553884896716485186140918436999697266367003084393312964645960505473591565260280724717434848087283141324006906503121963460398825668034071810436574166919443275014321941478364317091358743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16365313743839671418141395769069288497377952830346765450006584451711592495187265006054947351912861562773978669443045667396093856740719621368920921301835184241817452125709274497875578010358543242368450500934248220054798215060906252249599947417313772610966278748444362317746512958600017703019420752022290149847556934353302520389825067338924263088924550113102787852065751895978570921990224387233124121556889308501310024172211756785945435129264725356416207831382720408333543263754815290714766598248479944342143188253790410089864370651195218221220321450568484775428905786575397381981142539892306505884313550186109307918967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23461597688172168132062690464888862998486879626090003647553572330669136433538397694836347210029851741023986142978591491571220944392126137215779268413528088413825262753040290307801405433438822021653604565478910738324133169415763571522389741542891018741283689902190412305504835129068578745107613080187316441741609362789840145927757094202163090554305041796333399567773229004405737735486625220589422477698583201827520428459542857198286508429343446431205029713967824687207163684537764816448096510472524661690646618623336740696551753544038214677844811760132688692469657944836329230585727652142743425703456136131181896856983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24566062262065531008217617074302136980471854191814074815586642841328748843388832914214465868776878015603287408631593047622455345924985050204008633732226818082413958147349375784908271978394748359076563492428503819286583649471055502307437072255429831181020234002900023379916631231143808927810913199554993758088755728074604855607459759602489566019905479810061694643292177853871966173653967942140256671965854290569872425327044476399810293111770558629778062263338816679958171541318983924392966382428111044613904128575528665989577954253200597671692928334770569174698328525734631864569237939204853883855819186564706517318539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27376666583182520033597430249619325957169446664429424129807884672130335241964647020051198691758672085488567306436722362303431368099398726771444123693055558217937591782053424470181335851159626470053092051722755632019288841508071078501495334603167691388465716060376653433837282541984395414430990763388805023563454928904669978405708138464900610849169313235761787154846895364479166827544976482360902995209220477232356361020377372590784636981756420878681290071932424732060556386081927679479713948704146953715478894989270554299967286687078375967689741508867325820185746003651749453517563133982387597921123251890600354931347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23191776692330428705933864444155567700632625596212067441477062510672227567801979404329264027424412486419131078740942589274546762253547267531654689115347270760173177113509186388766133981640596108827834384198914295223831220089367284806665689373617691600846588348389251358855110633580743580756074316377925234457090470595562656022663833433588081909720192348205594786037108865785632514158464654562858832894010131757618490309652884332832431709296494496006375743291342367054914719837533500521449710106314002711689111413209096258597333816997407883304976503310647717934467383832029537745554811833680888146260234409522102980649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24539606308008560930020796049145811167021231958616933171910927986886549096807268580143653106817321841490221690468684534824533849156881627426120695581452133375669630942580372406912373792088157342295884531308377930048170810960038649592539538390630383111144215489940024858150791645926642314259751155741866793675674889139744996370011946456620141518680882605467249334162094945521181375986012884543649666856773223940206790160221087035741924611304076902395963682091916615703108738351939898959653528101848717088384323730393968697543345193311179954021208095997443583262359494915087635775462113628116117504100858308487969369651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22148212589779752851033968361837049755027776024131810981662436702394883071837929460374169106145035752116173709724340864359816095179551032525769113775956728317792521943766268669384874707382908269910788500014930461254573332416634929588700449333656200215882386769859786691601642925997355764488116556991309563851344461616192490500370632866493839877802249201771738749892805149468569500236766423630541628308508072857421280416525425369353333914730983685841230880502336165252739206129995192670323501181077439989552005721845000299597895643897116692594599830515854423781110559647476295837345226607057473275170508372328280373061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22106370277429542026678355137735266016189382379572856863321390462570066167377263098983533428689226111444461759106879233500706301122988852300927240642201069765936683912667770148821714242374391218749593652365568572310520372408527497083585203841503705284921847387807138219013957777201263381399874146568928640232135923766246251687630731796894502542557748046406868757120538139222082028959175882849733237054912828908291408302313603857200746013395900061120779349048016301315712895159885211292240176808805744331717489089040403855091604585645922926297315350465494261227943710572110901987757145732317430485565408407131431744157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22265163366531579210159843129822522427768622107637152622216934251120702137226061606397065977563427624873568842527201298086275180625870255184174045143622913807452311454626466221970952467458033323177979507915593455667001012427782540767446729555571863244297138333862826554483700639944622791687368020313577233779631819212045230600853258376939434322931672051656035612797967762716560177283874174112303676575048818751381060052843884788338236414688116151579135699102100655631918537310897027127300226656691460755501504637553631839933947249782262656670841914398760623544390498937187274598157642580567647924391537002504163686661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26666565792888499285786584566990245345431051178541534375130902539938230516435584721442532224806729969814344579144221533866487905624099828622064484215033573830411660581173831689266003245710895101962088766190002857928465295530659583583150478365144534589173709528522348592313445241171280790267086999994582169243655984684604529943308560789310034935500546462375668053570339697783710168537242646014264495984336508930687274272751659080858426451490362357746037150977996657716570803407699001946207595717797446057193583667124490684200493960467125951974746980171723805336449055330561479541905993245699319793167432868711992623881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23803669812877119261702195717675084260889889075820851891921976606807493690711280422059455718019751363852949113586047408025621251536488232494498607929632484797065271393873718680558794283880671325473154502741977475960194089955639376423624741804968538498960910357153529302333389046719208703915332409645969177435049120864062032916681153764758768446972255592887270970880225255904609376189487839820642214007989440039523413394311650974579866863225536486166477104974052319119857634375608843688957765379482390991071695130362223757156649564697136026284310783407063601676061108449798453441399290381028161922909366209329720662421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25502879548099486642222906473120233658838373500061080662570319736888269102716647872014607752138550867717643895381302294475418319302609051761533489148759942232771328725906861162769319700051992602954844918933395908016994644323057882597109697198234239271448517657718823744271633091453829712025621636842306571550759386392903040956543801610251148163641229634164996332513949006253487789403060923359252757517693235779361292164471345453196488141746277376184223442591810415913934549377790440760120705534298926971782994977373879264929981537827025354120763597285855280015515934839865719077566724112989380202336900325539082214101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23477701045988525079066524673348312453546654176236520788264243896131199812646652907257880656530545935570885182285563503633557890344480124738726583548717276681551410240498879395350179064676153649980406067386635143415584368764550915545520469318509390619394082818243358892309369023803799609064260721312407938570280766724042497814382354398870840631799877454538401794250046156646093225449636765522511214199411854630213590401552236637595336146627598381323706735233445713784852899801626705352995245980080986585230453299853789100445014334770733199589508373403574664847382922481374921025347323743170496094670628412568684796813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24357710587327720778152539683140128639812690188064955196095353359421598363352464032364934050719792197177641831651738089967471060193882855525412099053683487305800185033167933375420748840270445071886061634345451693009478862042158819479835066851283622646423323867636176552635202457842890482627682883198242096904580085309534118981095199021906825163026736190483792611657252041908605354306777177325576203320240697175473393880574138635162399843137290519496221795272735847229376637147216153222185986550783041968267512242199476421866706551646945824379262331018042998718788845302818401835906457246895817565449323066637615258113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23833273681039614188169871885318126185027022127648975572328404090526658324234030658143326201034771139485028222374647586647507821188046003790655141450099716820623728372563300431656414491261574308529652053302608385956882725823222156979732349093159741519449969863812152925563634271619948081956574318420989826520598911089343968481974798906922389196626401860990247440213902775473895519320735574410868566389921227768309703151199024698737614983446858934129648368409350920337029171263411675164999401332303340842880387519361876099757573852318340099524656093870426654447315263383537437995695704472537185618057972310870970694417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24574112098922390719650952922149890349567085630652472262088525753600617639733079752960009456183204372404588753001060479966166684602088187954627250316835612313603124546223168962795499786091615319346102683245481016459860298429250785964847975283339021252644693096209431819372864255402247374969285338565409469168493711501327215810153721842587793241055930812132634245190619580392911096460025386288861641614736267910543785100796247570196179383121361197369670925416939173310227369297596803961745596690232327260260123786342649164142284860677827160377370181237393314854323307844635564268172959878833585926837783404407231901089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28012520206726247256863316361925684042817050893378106410858062369533481593033512855866414293712350663948903847853727490640687543498314760547143308386617719168312002167207954592212454467011252841417412716210049474462660815113895053910703600448051397763914864805931825789451376458422119340631396956323806419866609807175241902701714562135297555177828864886056625736465044323466483440449211245215888779351142476853947318852287117150835173220806161253684952085318473337180622297072616388637808270638788798326898373045010362973930445890539099971477139615136064422738836601335519117892411058966561011339940792006609796870203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24988371994060090714600765684559500077480241940072451260572345580520102191887426229174065343123596583285049653786267051220043793788999678760409696341448724246606744054584282525919113684025815359942274660118058203074402675853029991268702824202448802781440950773922719512768186187636473979859720819403428289213045282922063840331599948464482864871052977364763477143805857678444474162258649836334894938252157843978538617180428953534070071091424901551216128893978159066753076841533438280497912307930708972818809654875503136037161655389651535675634103295189059564922051173836887414567630069691922403065415479851810427325693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24639878743199475625682749481791911455877323362027668113060851177760310505136016644315253628804683855240522906427260157260324506164386245135415388712067189074351776498260140211604180101528646172300988092790773190185739880783899007423754116861784107336673913085733778466437131294571056564273745300081540504283265881964777127563158942707353104479610196666229190875519388189945554259752699301810850065968140992774359620335708490419794488421086440924778006743585932796578259766749102816616843855726082490050759682508891338922260000501786246489520395565889822820823128495898089140893108279924588088506106293654303758855139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28498114698832714223275271993541645749657100837558819110066327484425969491965665664355413053970035767595664480342540146614886985766358632010093374513528336636349409923756270311730309011689950240131411529248064843415525262261707392914009406750712657869559214317355271929679250321794507441626139185291520692267421613586417057558400864390139608595833178178780780609697216321084175116895693602268182912399825556025131652180648594768407162995137968493548432009200516900619524703911772279497250005051969621601673111025517667058520320578491490686122295109446606595859196060832693783860028580831790389953278419527073574934427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25375500908108681961606782288533570020605856279355023897602667709386993781567042126925751580988451432842613236827818255095497044886168481043611126334078712896715364840455569884206592438024074352601389719654207859548742786142394581344323934036011960333806794217323825278141919476239312175450141692086099813193759820472244310271308936249294651090183791818293485959823890076242790763474921309535098693400217091834744503609136144896097228008722624400409998183305785353790205221713029421981127756106122717084699705146005285733947805986777929975968312216862239674559687036519021940965052006913176818985462559938862453712061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22442636611190714970229582105615358743112723317897584861672339626536233258964640244831516890131177068635651413106794069034605279641124160095254947754388919269033767431984600577904571764720166364265156373215369344101585513343601343136629143611913112981570945942833986703617576192821010906071767975762138627464523726800980260654849856471581805071179321721137139543686891491417566747034857814298953665461834256823801438456570124732122398784572736257751622070584793938497466942651215816880250526867324287656058803906007838600508843054419830645442876702940450423790456423699819062166034687123453601283041895489422341042989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23350605310181294694927647843859727938844321888714151180016529804622279096906537333550091316950362560389836996889991825056588032115611206710927005264943386268622451446173858814279420420083068251759795024613252441251226204549142164387360283129543320808162673345818644177578792172026149414872694871430265140268119759995652720308113438455154434354997400344371159789478185737306686523969587359511226671400134180110789523307991711838351685177235886779101419607294863265843538341294761988198612637112782682723380641369625175137713926912817350081542168112205341109827284872771208685621643336784118862297799734908522124810521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27089816805027324325762665443161444599443502811348098034183500515492766627724566997807768847804922380967701734906334918150122942249344981504319342156890667091908939711079858878917505863777734896163759777211866516188568133048924515458767934039817847487745058019039497727355038441853861905629276685233702881008237358081170862700359690620122923669592298825991880334548453380040860759294046682323517092306790848223459644689956077933975386112224223861898105498933856672144243478979911226912779254848399259449424465474003824328288062564111206386156690265007148289136056072039396254841024948152065334243569402705112665176599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24854217229798122295220481304033150721983895265350803376314007106967507555896287442134347281773013900540318253786381302315200309281207985020212036554884251791268412236898652195822763095501175663703182218067070377669084640141605455169298290695965259669500610172584554783484568214325624736850769469028000878373613386568416368599861466852065485097191137299873247466545709791790482752041269692644873514296704875646117335754962104366077996312135575246694123511094251728601285481095854074837618386451384730405798251928094892536683015568992594104949802825585515105568284226426634331962345067803137237993916072316161986031669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20222135029619832377568651514637008938510834923502590728478819249645825321511730694723845833172781514858232907167607757357971633100549418101534519629588186763139595536792889834676842743863502706358037261498313259129018334294589369224701266866984811693114197420716581231501166259011975827372122840519704130336759774947026516196409020942766706471422501074368755962465923624031447787234831866765761294559248972100269713262863477746362042824219861118408048423395974540138192415739518779411031109352049904044179455203762209724657348013167006840926565376874437372652092270412190100124997697315005882598952423720475672942453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21862788403221297667953288086409750463128805456690299339075305312961663011150362784615523913457349879553268853011786302045057668090126263020693888274269504335032931062624296463503793828998597794544582071240236969255176472263024784766516310479591789931235186569287591119416650570061727768826673687319633854801828822981511867482439387465703478928495014382519894659053525494570268947580348910767912676997341567949031986203249653442598628064131373821654803209412497618494298326874253516969035651775282420940954360946146303352729186865249300882336153260059213242001988564584218815890696066902613327890949997771447287398639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25731265608700175744146385189786522852229702671455149668594384014553193173599379160739591850682684122802066322005400598644715789460377705672664656147253645649529943245126845802260233433663157510983303675647709069892450754515574418306708697901457948563140746857209827236597244842550697657351476911813316954906713780543766975039406253246473950775161977053257444880576718811609910917648977425390709778876292962962827964704891121389121147585408498206921999211631428041632951590183281403065776679122750171128613885392287357356505432337264564667930313417364649148036945789886806019242612030688147596502846312500619281047057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23636238113866764269928525412539024513815421490196266973162613549726584237464295310456486709454906161080777734313618267476152658972688184634498179008380610625957410712467287646053153636828596710851289634638605167018826060411394146101309389786351181270682855488984546604459833484349716714506081299728881124541478948537418679254732261931828739805817373556369922877122930591334274639658726476420187725196731466627996147357026199615112861539363163962414097976513806473412835001152699055706769443478181786552694594215193586405670417299941371082461146075439814262271829205830442693249594135090405319339094112180435826661123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22307224438584456444862394624011619246585306180058018095437967567679903135449372765724449092691884273967746285650647296433969224103691236752300862349310903695450270608152132340549722456522254654585728790690222492664177953956079398133038654425625345070199314879121089563972359104136687816317127029457292346169399382819560048006066064241302482781835175747962696610510653370709382290528522999409251195896192754209904276327619228376286451458291261351610805637550502378667493094332914347977568804092721480839218073110860818372177520399552506249044004192286024138285943432827217428881780965501266769366676699324866064840383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19781392939443990854077779086397218584617121063714398220942552849998869967705436707682366869360420594159037898851785702832965065227418482224240651404361904833780496832184049725641060526397334832140453196414002407234336292503550798017382871354744442856949398242290231998072513257473978870007472223593134327398068945835694727643955051948655700703938357866001428154535529693410662383061909138774894047660803010952849939438307638786243990710790145575330251365323434435366839137392022063318884588510321679401156633478066535565845548808419908090392556598655882444611526775648160911491043804452708698443755618177768799701381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23403404564205758776309363644031539047901279458999299810209685526197740421531629153782588635440660114885585694481745525692515403992059227934476634687291676854604705071692250866374873724960051718009214539408241753235942400952769711786141488872417596031260844811387567765178011821289931462841140929815388836619294809472209723994490532153457127183142734155966726966016222972754001604377651378381104273626919135486348956301189288264140545037226231425271831609936319164957796991390907231336588606452079288832419807499930097357353260219278660593330068002773874418704941572100950403763657150571785490178691871600398174718823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26551500553861393364969165710679846588790034588284156997938659545783789442276987932025912123339435734669547484367105291067849813414118307197046204909296666773490096729441616368429869435469395451416511218473012826284185044971827391985039713807703370905114833017469227214908046882001006308742351595793209247504542548250466788969963456343362170353205716055734699156283378711619016441690930881760349664789831040368022034544978736645528108341945039693176126904855757800510758346563065133916657571898075735220014409659640716162100263508940438413909072676052162647756486770647493779193093024818875333976851459084581696892991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23827165299656932439218665843753236231708135844122784446464938207971069993294580986685491054306225260823123515798087602438144783049072234509511099591567781151165044567252666514801217295723597474563277044851352218451069067833079055291211761010158244883525639607343275436202719092204592982110886193261146584466225224189732245844923828313958417816798898369456461177924477758569298122674503997016793471805811041888165075614485909687980303449359102118497767016712033150979273994912062805230918109966266970933775990959405870275262205084230525794174887660856857943659246726389405397310239591126421177568004896916001115924821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29497503396901258896056028232895178478216535384531670041273925934355316583863130622158159283553760710363328611311133497068559361095191166327573592307646772471565713520058978882155360887113248019319063862576530044905699175909402348246693776499865064634171734072872571654050546028346312306555067512479744708325809632001913132105822787831013743199411318845236411250153874688494993032599078285346999624275611496463282841276787367365743746973761095636578755475989832064436185690537852634557372488954645694657670225732564784550593272388067742661510104260751481808786865236772608572949785380740081121630908175938156167209341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23236552164513479477412947699383734459206063387701531938061974428592887850394380117193094063294264862133165683373840081576036245380504754237307943523987192521945050304060018340989549199815517560867798752264075016720096324157793773812449099115889352514049603858674148772031752760518426511348399853403189935501781857987344916171271044459967142514551933375359680235016084480689521277080406443608272710673394471770223263861525778460051367235281540481108647147045293133640748297074978723450824118388344601326851051360245242594303635074315128413944658399963645675071995485664128218052574270165941757830619476335920298910037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21594390573055303475574151766847012982782041257452468749166635714558893790514333129033835598463241456302907392973594455511061820376880920935635396331462643329632264202804761694717808020845771397445692070162404465853354641018564116831069547224450577855490489115157419104545887269466769482739976894788035339689191741176492520466802971907065867139404707963700143048684954050424550304561443281927892934415805141476786583671537899799821208341113160169921696510226479742856068311604420058602534191015179951023195971538038630609317441328362342552864354969513748931616673751643397631622763160273131605109649152827638367980843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28508358174843650291832930555883007101284366627843323842726986606033385115995929476233924436343971574667366374852929855706027625948266527440646829134232540001835766203579961337452135417160417464422175890528620059535192986603110471158583289693569653198318611966728343618540818237255747852428351810860032653810292329143187952974424006798307572424489794447270429031240630111268697192249376146094660137488352114619449218097560688130342974314019594166692521944807927646969371052185266818247993778711146513743163259441792085725033207350573200287057233613949913247161773498448090235396553078146361548121777530961188664559791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21779058159026538784620874873046685827170676191232826417637727664272713860211205518578822100352017868010060520893992091897033247643885220761934334671487675708593652365164557419749410023020783958147141587915621234417365745357027271573593791721150529122226620435016337536554555895642711181724627761376102967191164466657548450895844267711247957255093546937940482482150396388748116755034732554302051740511269236433975552943270453689837694837289026011577338915254520930652153240416727553804224865822002327492867804601649915351854981182012608226008897069004410146995735022922954120257152284389539087536760919640378209052273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20016554211244199259179921252864146230135061530986236852845602044772528953352318606184713045059707703642580803054043164657389229186744100978289895790585076133266007358585387453868807602920566328196073841035664279401054253496371533188747538074300063135220578369309377389227202069492819202377057451735774634244062117052849790696430133109987499363033759727445223021027114986914354392815629514058339872447878841398731235887032487369252154857083545176960972138789914363791453721503707139906912257713050436107450199546525423057373862432952607986321206982839182301302790089142540252190278092584936523945412214787732638598207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26622049166822375134397963570345242974495801995984406020194437010923534754908106126160578068396824556946642679848737445567102943739447754350172937841097113857481045553960752942855940569211751589244257102319142413523922100180504863398776725638595507489848117173484610363077649878478330875572980178410015581609715019665619460119696520681719072085494540629397690347940921937522231302988427663550586297079640006474218092631836344889988955624530362163043390403539682068544301887716010751693547544298140260339762339728800918941984294283695035515894243186228909045631360175118647774504866835073038760512070365656760117487921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31165604284925829962436046733847612873201904524208483224128115115243037666625229396941202527380144871149708031351131529510799213566096491881655483601859264220310156919934923582392662795284455173917141956507631005525480583801645534357777178613741236232921488064557293977286422313996905671611207151747754573750918451958809785257632971212537385331293673245388001623421301423643549322171076301759997214178658839213772086278379445036111553397002910306344193130624107845660320271649150248799418033003765193400536619300300842131467373315236162552972739129023628169248221173979158135743064334159109198557573388506918162023707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25884191206423177455130606336014451643932786162840047871522743889593310658341827536734923091704657484133413790123871543475858027196124469334315325420851374429858940274527335230390781542552029554999966859658400617336427957686479652962217024808557708784773178909975974475698822913015422429596813282585727815498866176864470462066696769995051881341318641005227329087818107149760897747077965063221279466215157683346175819395209164228461387097142712255037020045257259631898881611176922525527614270809660054590848880048029478828929901813990813738983663229482342045687938001415305768151752288048768883239639039546817229351277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24937176984638017837979454419679002933978504207617477773302904235107226890159517762336051550026669604718729913869792576612981004486985598338329629168363682383417886304709126391110710279879010239272503189747341474921507728475076264720669607566012363003760208060744124808919544198560241539651025667818882666314709129474207421936290267540165746901742156140420109510272633450442851297635554361003247766915243110914435215379187211501552070570097600330849405026061506540702841048135591594772787076082805092155323214949031005280211214089252254025953291086922103305342181723602773817473503568262402889450830502916841345480977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20857580604920335222993491106405294009769754601600292503311934971155303919571866687733432557498008990344754966820020710898996176703621464514283808912376111334850770256663328601098535038981894563629662290918093319709733334657928560842872093090615002095643010388322025967531965063808063896086028070844692283296274396601086531515340648101430222933103515756165360732146092373566953131075689272026578992461541499219507959462921361766081339290468394146651427513961994526358315103888900527091777075965951754313489790079782311425137655540511276948793837901607983746391556946680183570435328597617298146408937925216729523651619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21042073282044409902096917550864910269256955233782533739194734917943048192039699496919826631357297058674739388415235260890618613829711988204651668264302334448843420091457477302427929619356918207106032707604246172247675971097740365144437386534662796949346566448822184622983239000235045212538317819073329443821772520126092566552959180847643915745040406120522347888921481881999222467574430516378839293138143169038921219541647138334837579615652597841832680684567169906526614847618847120068039611531634725917393128839205675742585170427975737427779626081383569727819159544508049140895065866125450375653464364142295037227293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27040420296103813522094057100184029559162003238521325376297715663924709288470402298853616637006011697533225166964179617173719739353686731520863966401611381067752248541042571913326066355573545915990887151810601472977017762837599295390984470171509524098888902445958162768186855054532100785053387512531450364120017264859052042845873016064164631300381849142401471332695738401274830515211054246546151323040512840135313255941231439111152447622566181495203113921214978034386680970612730606602613534731307246501636881613224937870912686381595647915374013198232009377047318574755257191166289455438856705530862193450574296452481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16816581933810160939819187283749876094792331030930893568432978385102366656846478448582015237251888583740541500188430506453875465830745083974269101642213154644299642932785506086479885119356759671349566710949832965140533365305876258365335732250309139162821129952709462499258629106880025929559690521755724604596057071821353278512573160171732966540198952831248681499212676328837211107661215891999760068017911583519766904357346628378951705863819901956265077642059583402726723333733969383656719513307492557266604286589211702642261357468014949804860872591115327926211134074306162438548742407640241648159206796995324457968263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16343059877443086586126912146067018407060575008668875747575140422257135240461959364320369615695599969334874208726649925201296056427614107255977202270818519153831273229951135573649760189077460806670448061546445417487136975458492493630106984532326583491757548500609974862264481846996221607757955792649021490416438781143696708628924297402282058368273151363237471664881715923554377966629969075512160622858490410084903106806786455534326541968407529816646902443929626120862004005880186779323802765532362657008364354903961814335010613290302402306981773143099197290075035571729229777210917173569285688759383842337791525941891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20239349674850011600085953325570463033260979477960244260046720479429276661734251303200847829171095211827432571557975874015449172804486322534135270630183925319320511702507615278533314441263975160592169458658951751891988327724602560780490633437620441085671347524315839339783435061062035347832695700021674370754347692480387254797535640075030525004480930395600687214477665905531932378287722905792768669887472361435351081999632603823840175589439119832580182948528880623253133494760905157389432445860660436645693478876538567115475491071280564623379500406208329418146261761622210906778733954308764913687083260144396852485117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21671202518744846161601942627145174095439776781706325423908772608895017764594992770894737597608684913812737234436513086719464896696653755459949687017653786404974957662183750522691583103329358516731853842439325185708638499111097583154636108721850732335662025062394068694129892781564570570610721074992332632277987065255375539703740974851195731444512397517396232702541400060739684376986255252912564975902481574178735558007075725289191848403846325009486638025841455541786995931430425873594992627213407471716165083496606659764348026417071448161201211449246253798836330052895313694473578996564475748794164520528059492757829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20469270693868506291362848091612108573744751915498227373942450786108115580038686901509801826703859674914435279004838954085748880600567594977796649938835386784389818042234069213865657220298664391054423535484460169081826119128087620718501019748821957785883705674682428972483618775072211693878585804351437880813440234571504641796121438747932258343521896882756582318776747332609050920316899597894901450301729995592453026748954468121022337274319098053506469142561038956871853545337868662561579159629539155983610383580430504592064444019702021828646502343738097464772784417760597755325860408470636925425595189037261321091653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16771963456686795665712615372279863618602310277389027206352870378181786581975238917768356564102435297530332132828074494194414868302002661246567635853062791137419041099472902018236502756692656706874031011434474885042731859365860737186209567835263624463341319654299045180379272881841606020520347000312257211520911665587509741619875177797299234411648070150503457583248831050218477026246268701686184524111815328904661091620696483508173298871589925257174773991695417401508908624552918785938289994790132576015592827225757963440637342395522092237809729093448132504308796120428830712284806708524561047951049288461086207312091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20452433215008852359115874422095968742476195565783031873409781808105882532533136184380463417303972168178183089402069086937582006035226152706778633984658250453559053140888340826291446253354344958362448176116901492439399697241383370431685310433477775603143853512464676171027980874152304913520152899099786081450055137262669126596841182989716487780827145489024799324922751603966634806497298722680043090909116990769471898560617248821479812875869498244860731544108199032314669181404270192199342700116455516408242802072161590493385620614275126357283453086650181136884894559084537846330563903398624523357812965378725939761957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27654299378920281665892525538881790986680291261380371547397210018673231745245880329598468796752808071655887720316728315520568288563257087253656225392164408051676250740142600958329874208645134453039832374423109116229168112349329778220752200092944754798710286006622872888480753045463505451274262896282878197849349966361208905519892541336158845507419013663448093314387357388650494589629226921353693304780915439975722227355273742825022991873374298944584195724518647550883469109496042997778993728566699501928454437511672701499465129973457852977227921585048370344439764164058878475685350436750918746227180216515388105974337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19779404563963209159262852462083308864051398091875774670925702662417954656914877299300601760224285437956985690475873089629301398849629849282687481848306254494238714444759014022159840880872490793702610767467786791070851251293664546826809199078474083914271164192279665734989499595154490934218647514666144303447257542167885019988784124990361453924860347256673372631917762017069061363371730718813114895002979914942208672433925756710669428826574101426459495519557800591718598356830692951834434913234597238246404538705824694040370668790123769500688862690336549158872044384790034377788983157793411374840653196142430358497587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27631661579608039554741973183817815064683655921475868468847193106756314819093340133860501270259503170733946087265397061166745025642933117634266535482114717624561292240906741250388225066214041130135611646461950174151418988933001099882078424722796195978510101526087223276495924200688284644095036923539399422163914444849545701244616546203693895883569888992742675012317405700128003629189615106186240678561732853572312589485204466699248867026925438154090814641149123405521993959337275944567490601943839341519710404426484026639199436043439314813721006840422152408548912577323904681573780276908516635604658613176914636791519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25307307887234848871487988176165461939496064405064921976064981229160173329446314810619960127729171913805838173855322493896112323617979277132580129991012524426270361620457688763442824658291466388075831777544256641599683058839879185737320273448042989337675188661499132248637085596499135565000330112430163416047219792912226564964290736689873076157705156438915146923996950417117618446792505241958372786353447351972787176211710320384051855214812289293919933918400734483321777603586877400041995372826465944428853433852252013497511524403391279882916613331805948916587287492718234037964064009805027377661880841845818818477499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21380559063468840473624740568872161487053494327351925292188515448174019932857842159632455768427603985700170606655715023087343678149855119016910308990301570511955077025642325475511322877114157739041756588417370920634784728776265428808618726375186619576801801328907216155121370719934037553591674572266187989527451792964699444034818664938851503333097965606533131803716056492835465755309727333538863447134778419947367208938210048974096434888114858202486190235899609107321610351387480674797068279645643092595519540888034472261177982636939966226530762760341951395013948854530390585968140294435551498168321593457525455519633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27202584460770887164745552609602228617082902235717321449523934716642926870502523634537538651259665112178566909289318009927760660269247240214319887184766803864047300133150060569858756119665102420864225759945327189923038357631612057655206552125078293749553786428954438568801221705940454199606038980143544429934070788316539264287769612623882881065835867044527558992899896902216068586706714076547295177838214887581689194938054648646047424788944636706295248775384140138976704264218030946411762581925589061036014423813131723823170435572267051129126997498012481282882405363176370235569451715158241046188398547888759988340977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23019462274923412698099584677135625680476774144550975643602734403397308500256006686359875060549962596303874074947718258643912759524921021253456128547562535325352397836333737199508733355912386965940523495066747206674064081196719954718483087918847675066522221858598481564647773891684981231140649827825822972576650454821025499837136094348557591656989003947096795938553838719869294697091363171393828953972351169663274688834134318820011315473424041674561262062413309972023912510946560551930758090653687134401218382404501640769841407755150823289416398628193249887142166848507553063103008494236953323374964402411930264793951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19504685079571021328046809450136573615966158773471157449966988215322968254594821721534259594398287475105292440818029669936895295275022990056558958736300272543609351729147617571527726609896660279306199126961353573282153103676196890653747277823776012212450122110148214832002671415129339650457481608189994758193076367162461103349680520986634037187407078663624113355392307676548484510108161202488987441219561549638688888789146400481435373541123766118707629535962147509838121696311563509754622723627453053281063585785965704135578217097347254598766594592713952839071726197233833657293037642659674161405000388167017590598713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19897923156166977464216258992449634831585502777218316054428206527696761493684990904629715408639733972737660484187866231830863691522280270389147160995677763347265613932095896225686386743649808830447227090391803039275615574283795098226582868307290885781874805245976494150320465082491078219486843733910426203071908780636788728225282442979539606419523576405952927640695448347469214235374316124134855203438542425643479774454706742323718097507842980158525482411945974660640983546505821101552119733044956312786685134603628513108148739896154844806751709308480032827536760546491273760017375764469415152830634948800316619265833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23618920005958897804019198129185824591081543994500960615291385229304577200456569924096011213445572650858127522752617214552394916029463636096369229377200536426544630139844098297506635460606826612570330371059740807693856961486535899279203736426253628937741197877200312394421377342799521123950173711482284814403805850617813543771698056999974100681791379885412258633855042868412383692711166426103828489869760554756226441312585902711943896899815706147700436313886941311234125366466982538123410690172110705123409225464744031881664305239071800567450756360764617714855814761052909610816738169477960008759908115730971566467901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23573687172223793953423607467864008842849241763556206980011665949649186431733072134635902993124183680109638299646198819995798216246466631999332960282447648656205512778914248926489708109995328437797022322387195881599131599316560192361346645860423889136531643415664662823130734591006161553444325804629469621098962592708105481341382835726342673435183780686728994642668393582874253292743368172186872849475635588547125572786719880448032737719577159104613373290339552986284575252938610961306726938418496028351771653656090973673725942840452194944198225001220882814121219137465550133059534543293823822765538897372591238114053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24416041022217828554304669085830003613485569390523310666811306677103039191775867266993579887657754402171316002506712917916754317864548385636704518786377128624705125623054891385983646849415255736771949637908449741466504246202232041144749532872845919615079094452539368725142490314022613701540200910782069811806410128467535190403284142020556792011660834337999914312525052203622928797345037647071916497411044461918232214905098322851122828497548452864848805592785618849724877554353943615502828182022162589607828913178036038314863470216874334476597635651323489616418866223587087644915687233092244623044353113132137191817141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19037722352610425053687040658888254680315540076667781485600679623136002884804440288437567628166203469180382942892532917693189557235349511882262757294744891451581429364269679983011370300530457688029324149383868664039186864853104125740576311134372508375771195831913668846938778077994846255807902120604259386728801665256362673151106004047815871592911351982815470027950742432125956763152490432049558516146024958498168162545349105236416524106032452560549858244045437504610699233768665760206976181429958110906511118032219161356275430306372180766117791074977721757663221229662555082227551658447644469397192700054942788143731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23871044848807635413134017735784483430429567848333804735005091151866127453807544427583501809002450146366967071397038890563145778716683921967414987440194136031247033743699690353579433695395569004086114531253594604169858517267168943495894053086284465325973621279855271409418061859476502260739444671437408159977553388803639928031681652964402765795504789421917783246591042604745699892236004160640488989680708389560377623612189841278035992801352976685361636231210829591073443827441511897367672434028361415281361591221821491838836965251338011443537496343092684268446288534814680665890825923446930478631957769756000737523437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29253380582402831788736781325478473137629793593574520099269083769899931939515181912496081300553532136789240668452067526546595186641679933569614990788386430708035397713495778080773787331521507521505754605353365883815914234737023731806172396489461158335592060856925037093611853460164836968067017018538277709274411129384868152733130325627501143762720488270183981014602658678783228183800427328911052712399734466967672434218525871932805564930618076111126466056157414284214515864109623920705856372306772554863744756935391966800110559010862686721342405391894922200028900377351752232704919088018251379703709305827258078335303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20271193334836266216277141986447346581910999302764007472833022022858738346742087320391887477338020679960195696075828703847373506909809945222915574996819937722986423524595176986236010066226395707124871380205059353389860681156737196725829489244461277771828239025626208869031236317960160310074114865304636258672022517149345725985725458510838170801402932357199231680603516383190832642061492137711802057457387036045778586166359721503437389761219446403316466557686196443069586068506233896409455951645371094049963140012996428515645878137754799178127318463938226317504811511271131554021228168276147197389099401145496302396593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22247456392954553550038019342298674036274985928710267293247109174857222765746270620917458599796201662227248866485535665953025995200914703816466672820005337940472594272419115244373581712232696554463781413322847916587555590156042225805346638274830808369814488817127293190239978008823125035375601734419716431033936759145569520366544536885936665857082545144234551739009441082798450869260480859869542789600936033161692035374072473230395270811841773722040036529672506461493402179592604551246854780071520533464002839625466515262026329061359185742766027344698564481962390540822543960604023515495919151984220550693417424211673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25230534052813280561706591702811217976982255324704617827776612192698539610634462539884978616484356312478206318491004633744989689961927844604807937191063198328043521685360466353396332858180600476685669146069647170110067479407043718025848890796214022591757872292982348503382678915168598291755437975878007737677975397424320674529275577808281906698790650792398404699810159682586487263119772011592610080906436329278767805934318952271371815971526433831602472609832792743082201124439262806645537986133999487062712738347713938496920297731803215238716215851865230140929804642384406176485335552251499707732175987155500224003607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24815380054377861859610197839765339844246026570068671754628166266755585708340159186542187368206729024819234651927893474503657396968483140635794703619784433887364432197642975475817130772016576490538710632938243398408279405039769952356482271145821878305051934105490904907737581014350442751316539983472411129809274319964984066335699933392715855679101573829271957244487167231322744089127951028649353865469004145483315628976440013087016145320803638808566910784052245589800673617148896766368133402586241902612710706044128049674628308335015569447727526804999315198979050818248082898067064505167573525066117758800388419718651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27047664800256276045912409544908532930900677448222434579544356171925441545139555081894774050140521053910716233484511121971945572286078764767965747785650407552166994203140817317031778604428826432122977979222786112454659556984745187988955543922588043744466165064770345206135263990687427007486239103986066838488627565321239929493646666778169703941700326749753649872862673720544633951833367687078418047594953422296385959919830128504459577594514835051875839692926864070532375464832555892064177192466272810228313730940270536225022345225845989852204916694231399464762156188172106229470000756318076812196101023266591420470829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19378330966423753310710238808703453036625288044493623804819483305198566180115459820474840166060090823449912836583048277523291222577037345939046547985523253282976757006942018645095977036065880389109762725475489058739238523232619302103343548124377439074408536476868199739894406177778137832895303211170229013848585841301299172303925914489989193049397629210294953020212443386714157600228832673660155603131712322365346034950925397083779551375934488365642655547312653254562357658520846259268993197268008867093318652112076632444530720335261465336134980567646364378737005453276991914018319910701405291538852154984578166797679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23773979821798073987762369003246780141963034802155311236058876497333797324018529624537024289430924832091936374052882079177183884011404038298651756882962392933144503145302563621990512844671710245305955419049431972566489155807580857639208152250318548974397516701263734652875718458157341565451803069387040432092454682253749395219463520235681770618755664593681350163432785292384595897212124591356727541334066084099794982795018819762704656870029030968934144173565746024097559094786777024748570385544623405279115377393065256802793424072606323564287942155185706624116990876383516313910484738192687729440918701107811946553087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22672161467862719059072582894896214197721885951100027639243781273670865943894432324351411003403231443420195221368740509127870796893534856820641413987553660653450891493322962829834867387208628923650080035197646819984592811728781058144860635438069353823238833309619284852163030387822249569920875206554433369826029479548713045230824094097331314906242354056968904694347479337131174887228084853490367801834259962482953223786340495482615666003643397334253876850524272002887367065140760209801773207784566630183121598566607944200534416427242260780896095815488927712298866469641022058031877877902007362941251206544565386879511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26396394578360729780071443355507706302142301643575556576817993863675825294005405776722928849869915989804970673177606568846523190721361995462218526124509686671497617128668318010067039786246066621095329690434156341717507762788099150514315582958981923048673329924400518159331638973037589581464050829982725290330251323718077652786832691200902346586131925009749476828969492190268789664870858428994244441544452754980138587475924690189753035285067119119172285841826589742229685816580327604061023602796177623981213160011997201815418985660867564926853947658479647415152827539814209686702151758996827141845655499173451851182819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21946204828794222396152740300644162082597991691996605204159139072275528996269704716624823787072163919869019822490970767307725888034077768724999869246678191067039071637785497143965098808597942649695005099243668120619887744671978835406400269952506224303885394006708631358269086565660870337709329692129308193615153960566965162408601010152863625609339711458184729707545867274744227524945550309790706323182620905310699185134892219458331216697889587670071432958699357150491982108426930434025500429392712177490364940526705143039462569040086922332036685137743337762851656236295249064126597484254321566910547379346019853771089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23184352503018754358549653470731347648269259886537083788969431349665431037716268577480206217025410376954985961837375839075767183206034805489689926154441148324211140068148622870430799490676075954588399987384888318589165036512507512759108650435778122151011233192640514389810366672174710025122357475033544750084776668679049282274157403744532633291084305721181624637351882331467965583504777524077232152269264207126476250514460127266818338649082354318642539263186642635190171704038696503557128411696619632411921078823457576444358720529857454101440504139033732869516471266092502257057145139059390743456710404902622017795057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21840532808368213802702858846064971108785426239940619958500298023355860210443152520269003898870852811361668632313656630912377642234316986700988147306669212607417085210117814458808154081558717444226808631963762998745604451786291632906599977444688125592890483188523687768328124553917165224787058722086093991006855836049194670233325508873203716252184756196685000856990723603386223658837730600187030011996392958659774914791497152527523977750439500093533216716220541143032287274256584973551522300116120629848353657299205428327364641020979955066081158716472325805753731433153346948391642279015097188381349826742755856120567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23533596675074844012909881740245131294952205464214660628677616051568846755996568525376464283539328856138413795806639858895330482253620209861268951579490841374902594285075959491048283614022426904559601914621491935154808792483155950784141655055998062593173874491613395477822862964367272366825533391850224971432308361779519755272759454577129598125304742981039595080524751991950509638214086375775016589918236401111354654942177716343595620474259901761696518908272411726576894502266645826709517757494786985942447013063496010630341464897327967460866488900733493792727895575378305243658028853737854612716486716162314236887187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28068294771683006447106167282192840554507284500142651552279941830446169222558007723858361784789767797912831268711661537866173279096822734911872966917909931309473403843576161445712980987161654383779834273367844880798166478142682357734362873787863042191738282569325468712540849749565776708700373499052313321849905009887147661466395105694337381136095422252294129115455119547972569634832779278171337281525976512687087962371129358100245501414800387463116345596764290701868715922576757589527815348595784074571673042001229907653328834456780221453427687692018659225894335895313512409567737007927323548108761693440247621812537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20458630852095711831439594302615358842297529281495045719779150591368663710985456480575987980541750660919929764366642149948610798098069945011675457604669075852095253527590810776220115670152150870990610275826902729610051690485674927448576484325694079255510959538150121086235170409636210295437906072086123114931156584135133113822741532036487513692955464144518098758449724402067638223797279298283832383038011968815779747010797915617141538646943663184923745500417726725377108587525148640646509723293306893277899728447523507082388082016960849539654057619495411781505553960166392847744052959669872081238395981068668438612587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17292642319617454351140956240263928807790151606844811341269287743787303625525246581034732280294447931327051317255546542750188769913899094769888515869644084643583088333573554435864726336812300828548251215984672017880729672287784678646651952079771620477741417994947125027902711494049008603066289823075316461203248631162612976945318910494109237870555966897403210059523706933398165308024301574560596839663031708465923726990612315630576874408850746434334949850515394347424867262495350900505598115410884738121642402758428066430181909368413764550913578902315165657642928639689577120414111677519212611541091514346562807352711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16350602102290734061973440874826598407340530379241355486620799738005530405258787025947960350724413867294208280638662855682369768727455266366238822447200710417380851792963441978670561013331274290746853507535762674892651508107135356781770240442214707394018765012216534911022276921741748719096624087132544747182459745288829738759375828442243343475445509449779751274882231556326071230150233633318848637163695434398231615671360121165420308158451775063573826477074068479113189228544787280442542433924778846566350415357126717498919153569867073597618655497587926228414286059855572606049039842182250987933952935477390371510667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18943165250053240568544518293090914890265169683297374644023559477375074270258566773054417558534817023517580389589123511289382740220904090066352999247140131104425316125085962957752796693712075960371641681655572712098620115074769828890909756604238992554930741743792565073804396284513306010489986086055618227704471137157889879129484114370817105409572953030312923972986020458940803823327038660571591049864490597175585712352987834084596151407627864089318793550921798174890194458742764705013895081250522676962036359456929204652455220525823479403069506885351378758628426090446938934830961116162434252524336929546377354930107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16374049031476950445482621971938551927528789440039307501371467772157366957030077375482856488105240550939111822743834173749154439699625265121802124607649124868565106571613984046123795604663385567073027024363694034799488939622446098921653597846921658801924694135860347403220171576244643181586064146297329605166166910178396648434396534693514277064751688716256870944936916262593346134601324332428232791860752677376152702410014629719505735621748549309656211956416390613230938398156050147087383936433993156525252691344373004239831470835178461007201110478197275660527218547510529712572716600891864014387386956798116504654113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16327553150212837958650292593307247304193785685668639153767783430170773544607064031780366359437748161586689596207963836402170575192157640607565313082189748724488319394508117306842374749950470018058335499907383991599624581527184386630785402766598033410034928354991028030227341775849658471104660239385503595986421414176713332309100422158774804179981220607008781489249321329002774628481362991619971421764571651987539055127563377897682921271493776701229617281080043935272686794579586513767147153622259829779998295423750242967393479010627322861207309829433654517176140692641320289574503125001805431498413519398397045759001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16365155104059514603763457144210530666328834427539914569834200053724238258615997337380295346509594603406213124274239143045158847346464557594089870402831028395512134299267979890366645283084439448893239393992285161502034983834537683142511847516472295608988301450814331338829645757292030123366103444659638165407061094350834199105083653253513830864574206273849892272587723923272417940939266181270709332369977875799208444451201727331508739042325038278731397112358699073543596025453247297428133282041639681680663798170816132445835165352521259136070038674654940390721593482902886455321651532505217973310293715528779101311123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19319320247203284435224755147670909808895099949715908543085944074019501842506654467553919428329361412249729315080625906892836181301958644963145887340901772238141655091316700482196405961473492055179873682310501751489835307813880088595307048226186354506253006905201757124927892538224770935466822977991262923909671786784177800678301454449817404037788653023529329453254404155907060015292638965172404496266034759724357492561268004015788275091926747946829325410820043316722369914926612045583546820011074119272526526935307851556311809071315463211699081955983005554220258700808121984608964217223844076331706965750873625066283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16226668911280733378830578882758266583072776752397328931989784117948468903495250445832321889609166287858723523931123287155528975189675329900762844690950869912976711746269385101714103541340607564383221245296019504715483898037864667556834364380102309462783161837911697556266574774143748960685004863792278383634552093792622502153810236782115207930641427097447374370448553655282797434508336570093301446976566410748015960968833361844484408844687894997280031604897542881907143031462266465516606673917866707787248935462827458559859990778960275110110917596367817028827617177994891717557854449900505166282451526692452546066053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16980431357238879383217701364452495352309194406074440371154954836101919019188920256794320269650500202703990952527977889899201867946142333395731093508301301394801764733513798892807300461211366429308183948813998453245345534446691250877546068333972987716356173512834919821754562988816357286853246950460481087184639896153725661979225518731517957681726353938906298497221109491631173306737376378782746414360502219737169530010222301093140862938689055878706678028963184153587898547892518543509484727007831557714548914842007212862473633068354578848689055634169162836694059787335280288810646675763877217335555967244531731981447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16429017210129452191625101616925453083464596267136185392546896921628328187968155597760756839286788178870251824590260906782961297834365429692994631659116486834496259687720149220480186574989593882720995247137161830647087310742962803375514982684511691391137857869755068439123847925653371967946958161727983011867112885950808720965618828019540008281299350533482428200462114950385398403985172704685973473362992786245676681446308537479504626270817703665853516028013965025803698009904758888024509312340844356094622920711015465961796194666195572042711782417704740251749863409480970073273577523518496311835535168916368957137779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21257018279488673402551231539052148306901656503277865184955303524639343678666680921085456430889750709621849432666688112715092892388802768110760120764061791883357021528212470332542688339723244756100560397295317441026336372132241233614136061074259992947193286713417565650294604974767438605129667289952291531548841420217969967734526295563485390959593752368270870006335121169206455858059731652488375544499821490355457685299965582689749767240398172384745794945187474126512313955568286013738409870127416131588349143301929416659518804933441889280857685800273961888239347993454140858870320061916578085719027690604621298933837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24653926064262947623433401675702733543108304394077844471691626722103147132929512380544901120239183560182582703634928297384084306522924306234973839275133131448201219291449430288421317254168746169476778147599545119840568088816240504980679742042108437990039348656341809270286689220877605097098791686755968828032276612865560428668101765325883228492478014374189587999658263908917946351467066958617621186673167649318563824383281943133932513793073400927050666518564385363008725727360087249778841383154425035601823522964443076777519199348174533436663505695549626168489802813677641588884601841275228443822856115847543698977531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "23391188354578999877718460935605636533134981158678320708275415791385057839039201447905594457833316426357107129675018411516890324238042329296411129374982468847814965888276100918747537342454011743435774489842654385460384395074475163902868086488157529047070805687166145681341815808826329238292348769088792319336123684960676475566310119147674456018135094734550572674394025230084150370784181645353481783503424673838351884085982618679760080144298695347964786990337935077313023813634879288604666443618918385828218964651168334300219594827985486138707736159327094830941865529017364901803040415167168497744032477810312783525937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "22818320952717919926163553108720104602361908610253356094997125876133313989683942410161495246945308142801700328930209536786428196599954693987960665860691873595373204320555220706694006676855280608519517210710671571065915739385099555792850780110563351661981433838740866060269434517255084931104701545503744235525228240024516650927844531286964653385262709437016088091263685213251003964798412084060664653359594984124057408507162494651583632405053249431274050213704374618399349231543887867849297650682546589139614611856451181022423633618566077846873173748527596174252645434338944589495499002457671796567667499302461893971949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24024327049788572832640130888522785448698765314427186598851880737134540651429175859179413990760140258322769511938825770010253828751932491421865785201692224377093759406068967050359758777872585207667474010395360166944502104950555794930017774400520728924489561225427035298387995519693135383263522732098084076440240204485659900245522836433546280416404848461992692469770323595524128421222614386908737843549945543743839665073641584185580242773152696099100339908981205562288633525811583035720756730206844099024032878015034705592876306761395775707641254853544144054494018968239128661198297078827382293079189428039720912546913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "modulus": "23994970696221947033599337540739121885998010274351979714300762190475791361541163901819483933727440983837133828462199219821542295340358844228030048306376062731100921611947737806737358592061695197959566767094953142867907021117762378024376410938252394351640424664526473531507664150498633067202165647592174042750568605389427715471636517555386582727509430499837293898844986404696689217916286829753995982074376030339866044801478356244194619617680295124097778681627869921844192509892415140653884321845872616521274926097453030171316997102309627439238712422548912379183779897286022382806741917921637662389031145491094468039437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27479564240802616557959277090088313260078360068640490236213504259768664833439222688512264070064510230328858816484565543682111473756002320598226749208022968390920365842771367149319226506430936830706647622805573137825787365004116369607744170614014042622728162637658827511924964788048754584489514089052491724439396483793823122425375052161524127452213633671264416653056481180162632454228596894753734872500628923673029346130099460422899884434749714593187045844473511571754586765486772720502675699522156814520744485704282865993461671500742991679456021085945286896639407153702086350198947047551833058838226525146387322184031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22883986556383303896927463306591085113734019410063694149104219892524025042165368165155090875443007485440810172133358005183960841941319985488862807259822815327108923239555702748196486365540570858170146813810716760060919052571849294419779783863326732492336885223013391563410957797199960612373439566769188758907370546041816689333010883944575489313678008550847108504318436533026442388952651718288471145343231579324532213395837391515739573667934756799089176269996971515117122098119291994170386596649843890705200206395236453058347756999968467856808840039438628060059512496942962087221375696160144069794672762880176381414787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23540031569151088369954533614444583484768933019536194360502998403356264699002756142887695915538204363815117384533060823362245458899346347943612471268499846689942929790007450366956148022258279145304868299088997351030499001892916414781015426886137602677852572029574129646863897956871424454197972406597505571636856603769992524603082251086267617175412894779545942196814921095684172624454663503541282191855874509081644999495128498658243840589817282864922266369567357326477074202159383462876528954943731471042102287069055337107767360146424037440806216743303321649823481750364394590007049853789868889874862000729831340938301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27141661347032900441715373548155067567050275477559042401392984128249903257824791790551987608615114769183797252669507320502419358253138564660896242205371761198246976244127746134710405904635854923205002877772573576921755935608648656615422627799387775445847604714336461098006002982276772681503018730803786830278500544781829723293814121517348343146994076086093304560872562896073374025287915253821487454741247310782664896179111293393923077402276906803732364086260968806605727492089496207448392831808419563034262754270103483776335119283052914329416420400054329375601555622856862030551335512377220813300852454390102977751459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23844014609216370645982438402882421421041301886341982308777701052217931173555117957253976225811760824236304565301266769378772816246909891539233026101174342299151793092867598300324659673478875121589689000098879092922410960776047675982144317020172053412605585990487245223521021823056713212106241311058102016672468657531872129334854687423118459823140254486274524404810531582293209947120227154584916542838259516910949437825459510226621319526884998554416488199447592270326209025381064569504894137016465802988670492711156929815504396502833610357574646812509532134188636118920537286964386637517832298140138981723312723368423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29229617005359419119775040609092501215852957727836673181074890450783796183407968829493882694890747193729677415927695823002274590985088446462018875217905441701090650436255319049777049459542479908229293120132929678428307457601129442405852652221541959123376068396805070166415388146869413964995873542759333679352642633334023864150096041626293339835635943822596709544138172302825071448579885736232811733944611813069394104760461014174126501414720726955369784588995066481128132866325993037550417650265771860717175890002998808939651055389937124280635013503882329656028195587579846594852765388051431868965180183464679795528441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "20210226914889808623665437902327515214936875305696514049383917528257463086864735373779050296392481465428874175448957050542371497268995052696514270767040961565893070753150911081469255458952255002393538296105294759121793211914185294833044926024443175161856518995726543200630479029603327672166643544880779066039436218572918483630475435343577703538957897723622189376397720972112809721046150546993880611267125214884761462076949773932518610675484967213310740958969051270721795188119955702282515557476520012667981444113777481004476528610646544287325774457126879192349363276182331217287409732780999691872440167626363356256381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "23040140805389060758988370972562905968743958346689611745316358862406295229292465953132605595862557892955280535604317286982951448873194131245267371552104149858209076769453438970052991749844055842304992358225149710423168780296569173856669168001106699505639449286008437197735450114233248913468614196323659282790548823087025207004279524219067067297567237940974512963217015697727482255479534827319691866518465628464566116894607893125028881158896610527251875993183372004571911099587689220166206854569370351195695005659050045268477990001901120634040478210842535077298616245012479517596881380089715339615671188984282854045571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21758626701670539178926892133359050005601356860916676149447095667196078745846708401139837960071194684073229114547108371327996096008518434548807997622890456498847985363609600114079974263395760392260926086686920181883128422688027227342711639901447871998091074011983039025874503966602495807947260720995830016314226705336306370057952341410989298829211726471836277645811557993427451092182475639558579161173410914193831155614671881005850057743706208236648471977348787102669129154498811046903767080435374927053231713605886157952634997638559347848706843120531695252124804925483681622665885102086586685446188443924049133250619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26432816634181667184700687617685924991554376600609071902758605197253024690292213685488168952317413165415573481066453911186643367485926829036468378113826495466951069668732780870989127023187503297669384013718908817201951576939720424690195072640710812769105186284979244535911047435137414089525940579481123922552580897500068928857174497266430172435304888918680463063476063535553826160419616473646450951525941251149124456223631399399317114654308268948405458659211826939882854560098042533557857659430184916469671002664964470628474690918277473058708745176820616288104240005087836220512043289623468266875144792763604288743467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23510022558567642751484195206675563254741311982863973501370165014188748782747253519300393688508226538486445856773097416737320863719110693408966921684359244440733925644006659367492157818136205980950251984183334598593754259928142208090137353250875798085104724562670531168442293537475592233338960859586402853799904530121463501443866307677284419709135116013083752005524489464501421855331036614854339271865205636081139273578142067671412685689074332670780854068114171854017061050386459494443334248486520655421168687433266239762711956700837598071360030568570613947545127177650901476882942434149273378264964630464393254944603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "947271370428448870153838332164587967203209393994485572710262081783719883352205368224440916208792086066866321660152191189725105620093376730391725914251846939260945507805744647311638067102022138414254866777201503787121798145394747262579669061327514791723652579140698680084686394376366135989228880080107210246657516015309845765951080335322246910912147871127664773083220348138614399206497521481206821241910560087231258906826924094420698836782347181298767686990692128857788416101140884411085319708653215582756692795482240149790906839477664511822865498603233256587758434788028439299042536403638463314702125776002487418545263147288773620361728730198686801971580039245633358807230755624103991220524670561658446484024285852906940822229501827043180845179889333210424435183201593901031497932923994437771033798170439204340657841127612248534735366990158180934283916155618918884701901826313585839539261446564847652100038398744063146859751216281876955064022041205011566737550529557959152953417174707025859392015150927541787316280633352927208905277335952350872540019615810704708516948343006765701694951992789369720824239581521252084888080705320831950680852921159264481751029780513987291790670055042193008440470781111744798231017897800183505730581873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "871243429844574194252310622309825012569274873103996728583340881694252249095306040250183811560728119585485625217096002016902470213062600275853841020139888201431165968319629716658808306503525812347682122731137107560587549002150343490415898504912471751808023799240894887749302549201856467815054221281048839467477540588690235100048949606578584341562510248343667420976581283466651337101446943083405234548859884358233358082681538701753738121292335876382097371504314537353482188327316069040132952266067943967639917788597677319897485378310180657132641878330662957459510026965579999423175682853036066311775362234576325908684293528333479773160881725689725772743683222858797126083236311608950397833440014212028361928842561025501742798338409697867370046151659723439829202651639794262498121476283304888584426912373893898154870010427022011880554068119534233261077701313328362368492794921503067875590386322326316165372702759485762557597879007304675780856223402637182590806653800537567058659009329338484085147740402194389710939345747667333274896631052421619376138719836158554134306414925323028166706796119496091730776810319672969516968114879185977683720812373197027556189269738743868768430680263873763465053486644785643774462793817192859450757844011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19552709261503722396024888522721874600646251240683429102143560076055663977513091486888395668622556999522648285197708609834850678125070255276359469809325853196809190605993339739900436227610018372108072909422410982913527927552668938226858025092284069806289203971069658734131868502762218736457239302019174688912628143063137075631271177831294875652842193392502250312383545377188753439875238403649173615648454191592787745260651529292718256706184026134919170978027830241288831919771728941201709921998062378774896885038790245110863170966394256476951484395553520910164284418496524944114040238289640236169024939196780693029007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "28874586153718751578436755797554576314266985054974965467980901361983479959698385395420023596607831799729228874717580165272288870706714352521675842290883908236403841295476950686822260952558442003016421789417286006969497931122925469167218700352146858484660141978946051084899754288360941438767783273733811953828725241463537610854596132190282055887195011917924577321236512445815980486710968249908903859287051304719137794540992838485251981672438354366417909842812005746877788977959365091402701887538215065718901840881211832112196519355456184467052299355013109145923469618635404337724197839678355093957618940013167044364389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "24949156808543957516118139294378068923106891736008454869594602943855468025805957832733242212004077815956697717535837171832424338511832352707747956717284174982568763695558093642854250150449086566311111692647724468782649340219637016369780720495321116558302473947463815982741349685236282871607899096507230603974057576027218724708772254038820159855443609271627559340790860293954834973010266810794792469592742567524350250115873977570167721784444932908991134336368706973855951722251411217174970561879167546465783697094018669477295876751728009202339331906957743763132396029379594062556234293327556899056100519967883440121207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19255293232539997458289620607752825134256586797189340080688609998765172805639361103705878431952616062748583052720505668285671864081961058431644859072675749192711457525425461824468715298126746103137554015014113802461373062956616712735632537598561838709280249364129695102978908528038813060158295612865834637949671398529183891221092116761038379950664461825669608667554907535414083287224350432665811148633102106445678980863956501994362485060026679954114772741784306865758003308152026131527643263193792578901580240767657487910323357855125985458168158970737780542233847889373464452282875103180945283612979242796150542042509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19293472149224040382444968418696608616741627876363386464668431365037430497955916068166219150399050302969218443234381780631312075723715314798865809778676593675665481030375481080622323316122467428467493878898985395602440240227975805891100058567547779776455197736013523286845600464695005259508097201966841135424057945946037941851231397764843167950124698945095920046386679343476152343627252645567345932802901541990027037804914813627082918171652523185089080564015027156443524745076668133932962004653450870484146916561422321208597788703144306478845134745378708355750995792183498809620882798254769125288641200918696847795437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18867037387725971013769676381915306126792442037280867204830379462960707213238537695430724344853017440381031910679694942733543605550014808862799374567645595741420014501075388982027334414811538894711070049870365697106869424965690741216124580021022026785174176786597420313444115689761451566445484584675016133582559796671940302762339234791270398665558396116566156556303885893477954231604716347817450360713095271901686689116868543327101191159203510585112631399080871241276614030962746317426229552350731662310734675585589787274944840854322340854156526504214459788048261962550559318348961864731572363788464822467124778477061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18128172456589670229765115794813086953837182593707855045841235132882177890923900046601558787478026766489509057599082097538110047880881897286038838698975168816141357283360005614367194556509775033328285298615567140216275164656370555854244155061121790582520102280143355919559075267107904658001031847216216965048698629489531833115768020978575772527097341078388106507604614807751233219920885309564945166428985288659558248787339545129150104520314510768161239541543973255386900766352566844821489359095657919212712215510996967476461860331806752616711165835735431167380097816454455999805702059759157121227137829292072199138201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19329375328460572166372167850085502184909495855157322902379128059974817315959254427334215661710134084447299027153228154567844921427326938892933031303450603322907709998155213319858863511963433024587472578157802827124177213895114885567336409820052904759802591331045137165698135785349621731648253328524807366231842816507900505478546210884460270994872329094878264665400486129609202498945695052042455991051891364728481517007240808145135842560092439204238428439728331644831496543080063771539622368832587141663882377352061277793621336482032482126753735826596033368017378962054375330953498552353973827880243847031122505001549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18520895567548924841127596973116713793939148247711720627159363106839924657757366359513292135388071442883727269274350488206983898519366299824932854782667777424506070686770836266489891408051785769156390365962009356586832983312933892390173596306466234692076456173212508447487457978069282249889922900221864943745156652148291907113099487765319502248862554570280097269481864416557226166284919364820051797003741877720847676270619546717976236508669081568858424676470783149785485952929726227337757966896836073537762535046322696268654705520316429028586239042263110564844722534927974149775352751816919621093411382730051643868549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "757883002199134971725367640158117578508176259727683077807845187409654483103451730459340490279403584260446640398790765390064010308570865458419829239560565888861685275517834969056150442702557222511659086729058272009767341096831899668504688881623786376288829863158949777586261393165505788410813888727520124305135417999241523532073851140845521258301099552348987706537403602655088457490421291989116482886145806638326088876927970636952028024582895209042106072772933782128282875977204533020412096158203554418279481182018720107128474790147557425893134798812108233654209486306428677641576601088619335916146596411839793015634962031301899242329833833388305228590802902845200822330577803476041647530824608235629819187185819425453238961755458813008725682418260587354903452670354728199194345651660414340249750201188080413262793596907908294585743371711911415274675578047010239960877517864728981420651154342126127774598625244067937464646518258565180593594827401981940306874538385663504675654126582538245412359818931729446729812573090582168653548590064639302722546694771152730052659132838320721185672064236705227809079142531218482590036247838333955875394069915304040781075174274577793358848670891507913691309238680968008829882636793924138430245526251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "646623864749730402452905860082963894187999505556904548358615402935775793221877515944944980759504788288655086849269968525410050194890027291309584771185726807515842089676751851032665009891183807484398103410599976865208728796567903997358683247454449117268538245531305002185242167084425127775093777107954881476534388914578801258586987176855414401625713068268173834226680786970843943891800526788696437039133229686392958500227530307726243330937327224414574853705331588509122525728676392640625578789331336121697439378159142075190386849071246670981312630699176707723798395371240654335204277951060482067505549190854057239201528409586475099345652905072933855807987547655450575180253636697744219627262697843050263631152379041179780847350880269129654084688480785746499990959805550078532667272177765153194967140719461968674121401368641746617273981760462606610484930488178500728109439181137564135718268657224311283008327565390638192913408177395587718110192471559864485864066714712749749579939708513352589301595726572668615551996825441551490302693473075870415658120942735957348587514015646080249474860876345405716692703780225827108784321763229041243635586534828767341000906326854911252778623333938883481227043763636324671359413866366099384200438481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "906525332166167209727764823558342180754086166773502628252254629288089228359427511435353198394844357187168538058967466828716748084385128539291549579641737045205749795986939166125638030099902119428659722229942510184960165641293867385981900986493074740768551554843230244513158287010230147098943536479607858448620877282502734418417944827521158945210069751689779142168642184680297956357017728079334182702592918616130116143296991398180108220508551923979827971267981942733791605298057933650859569504665185249557936102925544468563232524439463800820634106582171508529879186293324259015672353132389567928443606831997581925988433456984230639584545426985493560120541579510298286215104129430096941954364912633394351342954901799259937769581390668745726249578847126278133615669334417999976854754943285996914618434201616761115846328117730692962365547241711090230026028349204326374103154893991419074975463969297634097933976029348730131355704126339618762174337633072683401562793737154369133687525005716347047241830545792583728002952043212255905289517659569804147761206918194466505035896417628441816968926097136047709743463623226559921678209721242916852553502098741546415313527301809562801697304487806708687801962626408487433292177789248157184610026201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22277040960560931168718824894094291926808648058115957905329109895479387161241005442507740441384151259761892624078554958130394486954606767821089963130142255772581562259975528279918368908832037311505699566624376737934034141718302499551450412595428879580986771146172833256928646901983010046999522493924016379541793425493001092254898623855168277324274539432363845297030666985318176736798817892441208165678305927233215853317148576704088927324428234364382352273625895858728021346084144321405320303198457679340958014443393115622567060969870542677518382214408677865734103999457081761442834271235016681979779550573006755543159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20129534346025185362330632746130519829121513510484253627855422114938892287228664295216153631033678951478282302456319622374644568627630260261318758674625366822341192446228482838783999473329046052876080337650810834567939677931968335915214527937562743373345764838468571766977313668580585100518000892731847744029516551955434683007628218260885824218770697997873885939080788544421891740783709746641743806426780991491543199089249005904116015980558931841951967223735678255104383192560979979753651890556433053579930828348244855095583111020046908302497737856680539661651486930318999953581109757087180386988737607967948025339667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23643477873881311556216497589487549759073183691947054492253647850835516464750173087907365324810734696576601296440068687294373761137034072435321212368931663777058762682885289123062839135987022373968444224451905666648673041746094152902996212497300471208832684797349635868999747519511602463774447178469983273914491709496934113940117444751592637955506843222560424168332486979290580361163796575754680897919286132762451822527089720029226446906276903184142663851641248257872305097255227742676593224315327572874740610545827763208337232079917140029655159955095083471004731475007553307126446019672544019617747132344344743380481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24375334574986229251967764279147907402324087846465607615174298393143820673013262727539112252656989812594841475658695788477606329997387628545905971075618568060846218408358816877915517327397790292689578446638878049369591852061989521735758167593520382764716661145765738724799021987480154834810558415340247209472849412364361690704388282687109420855990598863856098868479349392610135843344844394073507281620544305814252888885696596801014147313650045863991151420722129642163418819243328710089274437717486081978501336776397697105753336609930630661658861273102918213742520086838415017813453944236208265905936479471339611534947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28127959790639898315968466549315597013819640717379632739769539408736740240091986247249458794709171321108269000409761349865717068501541681052539355835918687951585464676520885178040623533631476866569230845094895562558437318389381486789947276013170696767501865808092542767493889705687568997076758820176488506642235929353543423702717742486764035894606533785823600997725541611439734545911162893655354694270231785154337095763118794071540194102500559836202603503836971035887597459686513691680969614910808987712818243573817450874649846789978878008168264933112683655549432303782480901311931637052191142547180615109639111621777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27310043410943863412630436203688140078657108221781868609314374031459875043262026208174101549691025365122677282720313708728601363310609445576145254081447710078489000848659728905361091373341927340861113929653225924167608825838210949069865080553630139415022317600740078405092231198879053590595249504363664852662709014337684612429538383521931222569613398365436732036259840793157408536312331967768460850101606317922474234018523659344232752025527317305416097112991914914278801666867080924990742687001881559468405053319123251926005345902222633209186817729947303125873064757622369111170061158905887729449789279181656658238947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "591369389930358412935146325907081579642092537687516845053678686054985863453528406161082281136349748346835538826696726927554144390539459470935877763314027051593635321475268788372938405343415970100837120489830220299661413589014345307630583519179084486751171655776988764004672168869857157591854497343697578159738069163217784592426084308266866647361412479473640374923742808689796255528271970688999166604772417151165240395192938559615448153605529186981430446283830661723908783786207979645896755152120587862742791016514674132798071688239040094836867138548730503896240590089291474223328491552714925258714468581399337123935500465450788190912538713013732340195979674641506576433417164446408522852801789531609948998078080173003509974792349250112798169638246963641842849943027861724561078947615981310056423697445398103509070717478565694132820426624308490991174979414657243834916578036863686113471506986032612476891642757206599418044068378446058943375805121763670442217081930905098102719505331225943470309383990231717506155415155734825497864800727051786810137451267472181013828252316497435118385661097711678047030972205641866464028093839535456897559105430150093558716288214778335953459974603100665843129927887752758105538893046187022865215459751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "882947047098595266553511268224991866151825573555618189703222989893920307967660817298215860433988325856813478768443647506764240640784322487344350926557664364955611970722603119327649719693745765594704386114947098015043190976097024483005406803828806529012867341533245640922274126359963413272760431427950009448821566050075214171640288164710203719741895900029745734857018087176680680994529753332348972484948075352751202743567768229151223241422201831961478926962493076698642414035544303310441185151827095513104830567082299792319435665460485137775547200129408763092354074063864958211784031336817325725537518230761870377180041871150422767586784810864596061465282679180637473390447542807179294016846318853084402504246019694434606275986715017764716438258259483859852238689888218062445839801503897841665411856512687666101379926844921585240925540448122040050975377915842324021375805644230451000984097885609578346969626532576959685298358913706694147760683216298911783287120837793513270729835447279632598222626100081258109392948734938372081245360714978011844119357196459422238966899857046889498763370399951181171216568988417003121046743276427770386790113971885639882781759490842453360456991062937658915607734587731452965349209721412097994464758753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23228430876434604724673468321460488", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22332719423043043215054965055227139", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23326776189699572491927235964750091", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23648781758349156490345579957286701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22825026473818157280808694471595248", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31635231855573057597264071557858748598462407411391420090033854849104194891280588662945605441613188747828336847710951348882284748557710591932826241989420671453042587351368673460436072196742536652824323221352471656604826774264580749715585511248481003191754966429979374659621797670529847418561546545613154336601725111899061794877914105102089575198246370186426760428622221719347817293411001626174293117072187689323273989259783612619712194441767676568863017473811001565761492270412866219671931396139791589056846767603137320157573766502251324936292948391877090171819844492158484175929845630521551354195757163846265646620961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19222678285060136347336599023839574559570779977274066567380872681447134103289477740888398758057720799449120922419470234309790663246064070652937537186583039365993934700485247299575465284565429350369661956967044839971794736180535103108113836330418179712334524994221964636899099941746824374245611379770772499297055590372495645845339980423722042720517859998039007299591910088205937771373684960543720102570371476143879828954905571730438781721032537338783607017767930602552889662102880809870990214295069165079681505811220435519110695471096799820112709265996364873850781025320060992205971765698430786185687216724060985703297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19692227061271241803672073946775313282961192615820815432119916383278817868781240400844690160363562238840072902183460348295638528768579571304130889349633500737823664440063186496867278031811514628429623530588539223055251295586012935428884935184127028857311918488284941420819079361041236005934875001082953962249072431532722064215928732708115165858226622310293225375596418552964302255967974814113120891083304799128599866488001697900602441660988822527374816183906985373040527430090064092821836722725682527521191931165936362895912850156027006798367979869773729044232175136640271303630363972262132437192244809545643511497489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18357772167752473107300130095379532879754403193424692646482469186995086788616412477908246167254005237183168276689600123006425780502681905182232642682353452485591105644528882362640259584479902782266358233176259617049977899704677321896002587711368845204817563255104801460864520411658182308314851061870054404190921342756293072807367623902528131622187274572865934079593636382242424497909926075027902617276078315761847314570057730342574088668458009085445774137612007565130938387057413763401384948346918315070725762393569425703175677239445626777829752322103544049190455979628137616236923242040367725835774693854745003477733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "21079098230414783225723262935135809867599238890926330393790059978193996448965623396671690330320149468410973278898582021203884033299686004041165518708142517819959547128981590319076481827469246063462234150080844555889951752236076532501350396427993667147297728781471263651731730200921839453662218943906468609153872620278481062414759963456356087494493020084515604399646428145203978032180648691453770952457973299906313967028140988907621160238640805596165131650358085101277418572141281193190749475891872751293569358757933982398829589080321736921366847919228217261905787920354447955563364109129412402283279864793624581297351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26614089741909371339209614559261650389234509402549236282434520924796962114685834007232311812582787273501383626401847533013219632458464116989162914272511937689417678069333806692635489558848086118178157118743625929356417106504906452206612361637762982058227796952611757211061364131903038474489939019460293943851821767761128514456791945179003423075842348413539120225634575451983458292945683218045173513757787770105553308553948146928533249428163941800862861852327844409929168473725722606842015652642901173682300929544055177072882249405907787183447280094341258913923443773182552566091163533433796193788391680370652553500093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21757182833692988841031092732264032349421615196140330904910551504078815817068904055931307883390607615172267389916868248153311000368983359753914648842635849080832825222533814337965122152446509621765609686538930836886868526214073676477673965213027885449937242401962244794273377474398778955632917380475091798332942756502723310220471533044709784326220258243818817435294431730489614921830471598319868716339298577249428974616176768869130577670403552975328396531670869065230786996992071676671498862637930227012728034287003049798998368955516709738241782264747294771094578753550573838595920016879991301862650948907114804226507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21408683712526033168429903973313732414490691281287346406481857148292443657660411584777702676335863168359307076236812403684660157332098659216351308287040525806535087242850073194559971655735928837728691390002834962776295257462743485630777161834188307538884942684543776113787998944316452391871722417344431374793276948422695179629574126874254448151401820895784372794728323400218074280239321207421290822162866645542541594541966703962445889971500810952637295737372163120789221405056431550757682569933256415820579660478885136908792147712111241265685074929052955436563760399511175491601003026668079240087307923269641484818619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "25481158254442297969835388955815997769526743163172071295125149175317838898731340887684827568904716417185862792225184623427972524552988165907073702978013147019689756705898184704261079988982338590932921192072635067664345858003213038285700357370708709522121130739659885019264986283941044714063934045801196336525130185265615398507304437496118464460570645863088327747936464997070996103614912870798788320034077418768664580807108370956076205931716592395127577898853420173040413434261651092693698788710713049443563795986393484440837741575706838387075064551904139141718579101986872633368962198928999425864690990453700910552837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23522129748076104033176765488541512", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29298134698827904820415965167682121579039407935073579162185073064809422018536238768071513244655831844867130350363658761564109906286907617113088983051499761060598083003575339935519818184044566525111387497724957161032419438079074727291324019892234323092513072373776865514868195125825113793138034160614200905625322312989972394388413670235332031116238488487434277617147487749263060725297316192029570497968426787734615679691302136463091132181195984273702797602222857799652835206634793088017964154651066813407406656487640141785769076885716227170469504964824610042575722331368414678536690863747258138741968833086624941242481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24741991883614221024319303540583842399665847532137866156693916166356298616776941913503318779526726959844357158741625749615487818650720542235004896636737367375874755338058564556766775931438139133124537004111649188974187793738507752031875527353792858285736468494863703021853989186559482982286092067913403009022328551467222609858214745272000432318909593434779830887106357629451633736145079061647340299818128898072613180307480794521546744754611570181890494977066694442833865171904138744357534690303803255263881293679602938418587116435148901696833154964640893268296135149351560540705522202336709768447971533592572623456779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27686322543116426211733071006883544467274842952153231302139823413407641270845575666791201108880430329251990573541244836901393387225886785951011254501188096310525233368801933880056730983152554035168215462377114718362976454039975988868696813106134312501880320654504506486528877863230701222424338360446539903702302119521716314321442324066262862289811452608563500364397955211044730002601112231580983837169076200261056935388095506686811668639429136319261797236080048152430589066788273336607476573046328018034131006555411738879933302160707871160908635733375930196737864998296626818027191517946777223089110753803239712700453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24269294876021017092865619237475080937427641000494775743316404041784493773307816986663152535157011021598135830135965545857133842405829267574803071461888323278831981099534733524374784186361771544142141472804589541180657131017841908873161829611312141327346195215072920473128140346165996782867624950562416392190162253147500851048880197864579160043284377296603195216881556267420404636608257809701171565032140609653771918035120249376747091773045913009116816338259477102866704099651935706831896454454096923363809468982814094474106259552147308623380387418677299372818236549392594753649760177272287341061793821723770502158997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23853207764106584225162493840545541340551072381519497412290193800934246261931044669175985698185402796578142595803998050740961639675310029295808308694337795964356915577774950651690085219726693007898899374425170722392592990205278756211418226005969821537643279420469198098369307057711635695303496948464635505092574721858843911498560396627875885064175425281629878489789101208335405569885689850448907999798127397558882740989204915056405558152189403875975450424759389026126988908275950648709226737757497463661132971150497969394129678500854205554139671458823461966100541057840640007973231189688314907960047697240592202590379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22172018300628991920997095700374049498835643359664722994034071456371101128244177609283106371799079891749322976387086419000693180268449329140127031012678479590696246042453793793159465100020252714082850728488165496247266189036359695289520048255455572977575934513217334275973967468258259211441902345892457714345245069651902728227987963828742369006462290934531381246564697053687956961096304932391298366865458016936695167525083563606732374771347728098640709533574503649237425837653219199861406604458348559446551671068604298138648948097983720739787637219152280816632805738249179464159517016932248129367666248411975888673099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23837876751595518274246361554375187814690092414631890254745152233040637252045415421180539391441609429017210292455683604610435554175485629525753056393944963745387836330462643052484069096575973742849597058095536912124434777291729880460139786422775981978773309737045389594663346588666359881306477113014099391024592241136543946094068633375920967787186553338227035209505688508791336326195571644094110072931601999493197383026267637988445996296028398396411694803494533303717941933404135477664670676852141761743122823603843501335131954028770741199493237587031922876299829217630550539380791461268414962003053384869490478431303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24581972570335457199782475040559538669877349487499971162143596198962468574771826593180626645984139989222461524759624760559741843631639485886631331558118875094397904666153434376709816589988756305772909798308596395905148763050262479345447863260715963560562907608226714218256688773502334852726596393709848982783252294559860529087445734451987422343326831488661126516839873255971773118704670076274421498318840484592999461432904660511427100307573504710225461541324823658113720727621832262837067560445205014046087581947304451910419221427605200425989497006998287436335755829995268105321431052305332970164884392637450909900023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27721659568054850916739457996042562442690614263365295115173809804318899993117676611904023093352330040297636567878359876682577034143000738029566371954338883101155410258417417488202516727148305020863520350139222458475680065007825484776658266209767527284625830263703919184898288510587788710906994199867588855690117508922562973947572894015262604401769856821576158097715158033454199229577868696571286420639316261345057378117847726917165898181725142971043540626584347671091475334483522327635595274581746517652227577066930055169777729837854958880636387825833897953943927482672375575712888724180536327914371120037248066463729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24087621974809210602433618687040607617842920325818883932581653561577515872435695756422633734972755794108697835133280167665951159346793056886708450797803044160102276932255865112031293492859014901809435619230983033237616460208548286349595985957965719302809318597985639272607128766823091321545864438705514151765128406018411641731194000511702529082534268069524461724230475826935455139561763423043995696592518028790669649130495498947529386468392768638678536832505280200630360061306967868467301149340244924073376999437581196419702157937562972200039844288240631793909277090782713834066299569103415783911092878037231828885721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25080430114668392615950263877827582137601918756555866388396021439024935009107061692878923079884304043276641435893263271269237293254466705885078785314575964706678835781994912712703604477411491351772142991159805848333426298950886333739239602962656721735891179395452778801176752874514907060336410914387654795195586737388019969824490313486310584935396271619177317550096701397992098738630765382744942994860482129600021773644588038940203565722626714732505520392038228222288086345041273116707480765364730153168359498403767894901420563677388216285241051649332176128070673837533071233885862577805403079146511608223871220633127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25324097180002746143233660939208534620983228701840840998214203040483162387253032586314409855280066257751172789069236819467995422228508580877732771995390742311958593779460097891521314247852703885315622640796187172598262299518929208331608542990621749851119869671298821893889155803341995393938288720415083370650731887451174257123798208310791660637164187460145153695865334271951294737611335657194233612031789372227259473231368203896803801077163163029401072721649649340418463487475612185391844326988787576512197900852378490255748078052734587474647879040610277212319764173929935312778292609965799963418010316032174783166301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24907623215743422579401424542002116003528725085010298272051532941848239988458128186332334724354076478900628871224457985011538219950764868271779569854604738976038256753302660277703323931824806627822222289653633661650151849567561421022251855473175456371958285192962543488998074632721233402876154397365637683897018879534292754241378645860645066525578984822855016753483761472897041061027407871841617664366000619365080452893060479731295352907731965036624479597813659284966443161230471404422082205869886792382084095827048059000739167324899777509236794317919996614256394288645229406035157628980495861544229021867063721892983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24658473304865175353039645274047433544123395467926651305665028095735807284533410017478189458410548911539312625139807273504888536096703384425857993583276317347502071495595906761075198903095969153320053725671262280151758434141379967448116720093439878715412689215203527473382870328636772502617843143382994911732520660156035094593660581077175991010861331414569487345864231874020121406087130951310416957118732920992998691236708546600040784381042268122011616375538388709684490231027122819017743447359486795677883321322072151331904488097741774848256600037913629672249756263837749776879974457781514603436248501205776904321037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29614058271334565905964042598506368475818559238425719438844106938743043292412360450908588336179562181343080510913508489767724321660675085668052809118131911082165210847532250110669769391467860764413720339333768530688933786482746580582935296376120051116744448440489370323613706642764273131957696474039964322091208093203227795198102086850155366074615756606585252507937228973075755340627667893016175869117498110920833014257622032354132850076842355370902537622958547917095669132017638624100942711322045294759392159261762461833841969672698367747709818048891196965275139592544169909962351309594172364974631167890574170752223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27071843840306795128302719553645372483022362649478851251897944071373846762785835567601053779225130901186141704440811310026277936839822486571040513586003785231919869291371283979135796705385585278063972135829990326400124722531403208182744457937539660775255082369664184527278520752051354055436817014165292456467731435444156995803645322248800881511597546550512304853755813797648434696417944062730514971853644780847461469328357446813689058989759686493735571702258835775104763243485729953342838485389605380168611084671535574626506401436985341716957151678614190693659599170956159308503268991518168718420641050654121087587391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28728575482352246202833324205210657236936650062797976382352799255926905384815765880265605151132609194298146634904969488502515734103382137959009140403009402637215268302623089604591831573946248446441354833797245505030948797896511137148623723597588335258350331902667708809431192572409170209477736711324709664692520521572197204604923376095818203486647360783530802127225670045370667730976416846704666376240560969319877436850772797039647236124218430432763800244187689108120905172116675324224179499620666752479256479701803132303763299302409474555780907006838317510919414833008204552703631622265702010042825311951140314867629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24758092347222187004559579952200921288855639420342140961549929906108039339524532046704536691350006854743442317549564399473599278989263857663854297190982094957009440953628958212417646144003775230883332765442409019436876322868029773808586738150829626471888633918213843668384184861622838483477973626393856983957973990773213536413059924591579686446556583226912886395251497602643696180223678068228605529186195024982624922556013156419752081447732390332821140793673293214146393616904561112388677629372012409993427257512638993175724628866314558513903503629778451448066786213750472481910611606678095649564490878961227510080817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20806871343711367314104022396412512", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22611397328996278282914215367469459", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23361662692172899599390392105887467", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23938664880164040731230664986098052866151635057744863336721103955912855637272558775560315016792545409303868879895676825769688065014947313487090715564810471173268462822690710713606563178833212840274713746853197480967375206036975416184462645359252850182826229794777806221361156170224499129834808289875763554709561119904175977768851846456913872011222551328931482059581734898126937693095692277106160423799738907336110395644023940742740856397803768961601726395742934025919492715707182044365974844861945066632560802734559607437847721736191504948389503903759313748248247512346883743338659139810932239264705483826129875189813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28795394785724401267119925152368388359712857115764142604103675533427428349034797187031352006920067594545513420319832619281163706004758028292282760972722710126233655667396506312914550690298912172310144812856255174890996917482853163029483256331942624941207665255819530559361933275901226298742189897742417883327742830140193988090747225225361347235528967190595191926454831516603312535315407506284896027149208896770502642079296628457658364148720853950950285563626165980977367482401111173646531016388362242715338571923711251766627734570712726086816019804834566384066514332656782206747078525362872892870110409380604540398713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23173628480735457524503746404961078408242214235085669332792879493551710238120863613506051707487439686603524582153208811787515627193655680617195315578536183307550218658639840930927251937253855456302143419922309745074864303265541063403549075473245306331597019091168409372118782638114529736691166065799892503085538451673449634603363509211864878944725852059666736350627571234849784846475964553595977542240585121754951170557653170520120050441353753922540775017076012465704163604063742108071760899281009055327994582497889821652837444154166519560323230847813747328759098024828096205013474151316405757729577812792182948969147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24724658208424096122712326520807298249525666757481514645218703525881558645191259236778990303938067005675568304800673016854621179879805253365459618092706005018544934588212423664236135694936750704799320791100098190014067990861515341333479049232942938280367142284381331221453373272895274978111481632827093118329378800097660901012921095282808647262514810020181890943485824186799622527267032493904885736976913898581067308219387597260456608951068429660431857554904180310475138047179226162321966130524761131883212177652686138695127281326413216730056517927277665626287873202167412065566107896895621179104520903730154744097349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "30554156421626505748814558225270865363816365844343336261627915998615053624687265255780165262790746590618847300837965346013012992645686583287756568061218079253961446166504442462625082296069806719818859829593963989122301410474212512930952779425769023429614385646490839857437432466882550676202103848978444472564377366784078536083766269301933157070138923671491881774926028501844928038907770736829532914600848046073618239961645987818112056542838771600710411833293583424078625657059602470552602818292255525688505434271946408167790299766957080693339001902443195268806849630836272991265701233440300479027575863818946592963231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "31702498859163120005759795336070397752577870206605652053293294284699046583698833242699370833207107021223891587273076431434365107475562773130698008452599542358232719931593833647716371544976503129984998409656255726869103358295882362934196504708859710673642191975664787459371971218947602870072726454209293351413053177500862158658040660956239820570649829262189407300853880607878409760969671742945747375822522784293520720040108684342398372427750683989518058859602398473333283036259371327927434343947604594295102903141219616917198621103956911167945664725936790881188352221462630203382034641620777621898140676373389881841171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "22683765548708208114593688344671125554293865523889591220298801713534481296719541823516445744617511948644279259980083332418806328033402222738623531606677857825275548737475917837429757943921779055570696523235624888403415687209367158326868294930945437949207103934665578959451575573606282469717115204151045351877559626279822540921557785849834209532817529686983780727113045548100629615651697901109142115387594165932096214683732060091376063055535286867534758434999221571108167440880758704491576387106958981360291772888898864175585718433512187408780144988216022348568274148275481396400505952066234234617507254069421837337259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23283662044143931460943945807924577735870265188679798054330870364235667558137467053801459075570789010533556154867529800642416936633216790994240167466538682526855489716986220991324660883459243275068680405427751626500422560576038721551670076861094434209204575212814995127467072968930256076832841863900333501838328620157204521482603545741911474361482182499222084317310153348677782120769159594757418611643788375585938718090126542515796639547489048774392618733303758513945493671359488700704077553698774753583803906030724556743336654350937150038731379431741260831047774008065579035754031413695383978190683572377993051692821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31491938369481830266937770560718372618696119842935082613271011821805947997399033144333310985337014310734104522799758661150142085150365126605703203512174884767105083598141024546438897276808406349206040275005095174123497461971382030120607196819637649244871102683986658035805666641860281458628757983743230543114402336108293269096938535087789637168469891099012825023080134129548842452090599922307357877450026978474923814885073125387993773098800458670358428005246958598815649996029908146288918827133844796295775050010450951811739000067829634377386462093111094901743438531005006211821179853032127718794205763882463894659789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22087996753573046967776528303808071197320389985252783484745792334740689716702396957322684085102352169509154557450468215375564025892994239936049135665306360409215832575132936534965904366697774056311447579861064405483217630264731586124154257741564879470864615388396977117865368562534639016152053337013147405129406643375937366598636595881754989830503652507005641504207321717140319040675156560384017957116758912348827511853545138909291308132539379266823368234259097631417902686155324401775221740224312119653976693043854974714592093226827092230036872196165118777964769433675380652448574406058386230437292278680074643891193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25561309743005869206215841792934638589561404859028541539934582487979046222005522493763189936670198211350724634403492467866073302945863244618546387317049196125491189956052389568579602949877990569656725992953180623513457159982998386840983189179578958285967253482081381252642663926043849330832014712979206213295958238231372792212135353504663691459007936565608903974571673095488218651552829525334885764749045242597024507512183677727103281172685654823428637223331075906508179458624120475580168557498909243391499225686881348249479809823782291548163465241926695541019087537003963057091929044010461948423440692534222084985637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24415600447404477750185275809212112752532014209818417885415709018858630430658946404757574071566311823918543080286224118046791799760283812678297244761069101652561336548520854348637290789435169100963461747291432409755883253976911720840114065143307182962893617175877906621457361949764727180817696338309693609030063687265134329409323567049922780717608906328587123057179134846628488243169797264151723782457857772277968218723845457970907114762356625951811438218162881398406807227323174794589075725722295609479176964666595564733907455299857762457446086613010938765820829966953610193748255367212520384688174054175547177707807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26824336836793553496366868496962542033482883211362804799466675182528008816441764919841080335614739376284953514949094953750670356120456639599102898511788130876903898394807118779850687729663894265950835026407766619421134733713659779600802383701870741869258128427138781956207838779572629310805177671586884951813084648920507145045844081170492116791340897551965193502108714159867337899631309095566554198203076337456717598530312481742432335681999451883167085070158728300682625345735790863889812091196409694083065962106640210425050271798141795348123006596159747882911252532463694425611005392164713428686556829166283625142809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24671396415574059158308616271684369554633314678643944938698406900618599277129863299261263697528794144429670932388360466984098948047842993316998941822902981286032797881382488962024923038962139724124657271634463990838573538564998512806917659419586226744968940316413700539080007169733865308756668979175141670050164034508574162139473738438046016442656271488301799773280040166946560490304186513045111749581998904447018760451349064832027190061419182280542843936230088826507600766270069731016780643565868781006990801505774083577720881994015513893825830215359602601829048015880926239879001720907283780858588587094316440954929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "21753210678704369316625240040926964308818160000562141042731318249641033171797587774159620444882678542633668238684295725273035832102245057306514332992751333719848339917314693435610950352272695504520960730301139306048851359619246083289047676589311542841062515189479361313057711996901802679550385039755902467384326408297387591798586907874704099481488325781443237925188059396729393889300313574983093601343206991427787665556792178470396519238064521460105419994103112472096956985192678273627988168451684657578991767971572700888555012091957313387839926452850796309782827106893974912447343535471931653266379911378852588233189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23675636766411702602549988604883807", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23512873590257344977875522451855106148910265163900517689300854237748861377584816800961620984360696994076108231986020628954267532209283707136641151003349959266180323479886298118315241159556981622959441113915469702466929188115715581722403017046071793026943543591831031221351221513666228215829524801789257944312615039940036489973484850833987182362647265148570183810396553002526410577761044770326077808947301449980170894825597351015041581268185098916136858436922135005839178118380239730565394684239254282563212071468868112039531918636922409351192059664492047555590454846636068834900298543460105346544178246637922571845577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24748058103029836569707558132700171201207946876285720161027810933304154816945770747773828181464743452534722915756665605226650804587274786379235736458262472942913801585244898322132510948887426034569720328298924270031052925160512495118272759468093042006728644216383441781181782262353505466643579050673884052418679710940043558340636096257445495324947228756979824525613447440484013874128912030364494100674194672940490592315532985661098995585636948662940426356456922270199600789650086033244453068216611015413233750846715522998074611176672849609206452736717229247488970463122271187702707680922504106463819376283634585348267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21778987661375089258778730620553240630704590316636493151408597622910364563474320419536590170290198686924937751855916684261852522913096913960177384504145237961782588169389109222301924062764867820973466365276077659858021295333315826090873238710151029382243888011239188487297373121315204803020441209246323935212764088815215220314941854881655347574405952048504518042284494846161572475687125177299175779711919642822066442652230296885762284338188057142360612841781359093714115851010586571500878603449356048178947095034884744686277961976075090319408654785370410290172207468677908221618169640518116629563793696949286330395161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24423688459820085180474654029559674", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23285107546370956566478414326947060", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22748917242475583573483368600347312", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21092578414124429984007052846513604", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24214388757152985796891333062008536", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24295386474620975400758108305853785", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24625361366780636869165276294785305", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22137521207127715718445051299427318", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24941654642326218096045065498039959", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23295647832355970171815353545890810", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20936224151447568059552858467559394", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25906422686035657318475492668783360", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21621326527400855478596695493335679", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25813584647418148026556886135531251", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21361943395195492246644166176383929", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24187558989693658195467482967753183", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21950324758590087650853757499884271", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24768463161480781478529441520490405", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21356262367854615758924467341172958", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24306147815900060190009129686733409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20783868251661230103207792006010058", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24326223004703088415978459265239649", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22032681139185727759571115758464910", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24988439380253235024160966276044073", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21934949234521034451312534530842764", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22912103976465835322050343689411774", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24624200923520322643160220485439184", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21606491002512957656951686544432344", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25614801113821779016888422610462692", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25651107046626767400487399145948053", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25708680612289381143123030384883336", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23189214521380704944764908465563384", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22279816700604577827816438545127959", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21992596262396865941202279108556271", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25749122881261997706047406308747656", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24532089907347787914496715493241165", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24651348235704057043544808012856439", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21089142464760789176169288523259709", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23594673010580090895430149952938379", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24787947193955677196951353977430555", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24482001024226654587928647637355678", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23444353067039590732413321904121500", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22877839459927360296640470881453674", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23732535056263998846865479157261505", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21891290472110218302443970170139896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23039638976957703067006925524297017", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23386771958166254161446941130866190", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25576378313698710699046134509864025", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23589979943792413387776455153410344", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25779793679632882287611178278981507", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4908379687975496629855689847382383996375762601471037738944751863429630759539440343648169840709797313507113840476128940498344706514969541927235978126585914667323174578360798858878225111161949524599297031785124907160231456378158655680741801888436923771075497742039630163785686289818939427618557412908381202304784831186831971079921318715235018018892602669348117387599565257821074283918758877503550985809961974283779643471551949811608327448237850597837198598642814009279511665699848524788565544714885935540677983414266836455846748685673547802198497994434815291137640857355607386527565767998857460618129780101100998397550802472074104080490212468363413007175468661912312056437618936535317841740205119821968486975658368623655168307867001282393996933756278643123363761395496562563896021616148449788013267574385990316931688667639510300938771051882432776868154959530216829072633422283054711121580507430436692002426264857072685772319073", + "exponent": "44459" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "584352248431721213511484988673915921017209342947648678942035010436233931596391108773729662268545394422271506903269374630348038952708531799823327868886068619510675037238830262218163740029573137401551515212180298696014745756158243176876305373989654391034595166666913845052340406929102851523541045352489540679079893922225446846359707196041389934010197624427493224144327555725283812834945261316645335728222578283706752913849092002904853302111365878068325970734622161069926176585353745342073862642211775504557641177254137831441853198215702317556035542872208687415548916886447232212365582568046775949800511600786782933830476792723991664921109660149890695236575369545983001762883662742461490299602735545420102206715175827884798314454752322413189147306355357251687031122122331454292504955047691426542469938680478838203126923923935110726678620747380535209751803652743023074081625134157987771002271105758765918914893098709391804403839556209046585609946848869850021885187582640124206200326338091787790972579249802391550220671943440791603151329646586521913278434528493644269877955462085996870604054196946494161078121821419488440819163924656651566895503882595343070536513323247994956564809680242109770189010894792187607697308230917422443455108937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19039463427772294571696682686045068056239825315981520070791812804988187703625427937293247297351433775062140501569459767941374039172992835042182883667594426685793574242753487854557272450782177322303918425285515645693995314562830739538659045061037707375227306678750080590450167896296048298755695695340214454050578258388409782264784477147028708625692067535485491200156388478339263919186075499240519275935623559797320234244536154408996323008363070778276694373063162570068986365202073631823334282134670334843205175100941148559881861270870264573662834182914357283327047270030581501476214503618544993133660686287603406056071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24580480703504585059429945810279424953939361271692363601218711371009417435749941814873211876245719150826346316112071918450958549322381515445389064997071781202613541629265950493880435880766973565488320103403643604649649098215128382613967517578450174881365460864282806220402386713273660393779783266804528397929547838529076760549629393871147111079547299479554895118985535539100433680091105157627631702803455590014077813766066828667851604629394592668982706809743505362724975737879940949888895347182848811344526992507570049901349888088244841110649295963746773571705133219229438970368165947028919632939304688181328918535961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21975189944084587096473216163466174173344536151553783084595871444662396202208961839395869084689437380457082450214477544314009875332019933041037582953252778531096324906749260495746157698938386730291460630537429651224785462606558403381042578081739563220933779776393269634196022678929623912253029571703225903319747139687573307835460839800129792274352889335525188661396636814524674376379437500474660068269300494643796490266031560632296450540976459405441742810136830723372398332308369032619490886430071972342516989843501491867899228055848110034427137522545381210385233661326896573537253384863576739550459784425782749425029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22368880301160506500291123798239524", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22617535448662179281719766432596984", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30499958027393051302557747032741731729669146480785558717420781960789912845175360013101342857119406141261473444103822761055867844447754103358256861760616232505639105059594586095450176501931005318402975260511888718572721657986362490150901985029664177689523761380896385963262686782821307029173375240285940157894192204475640061982628230889533794901272679389516458904647944008293633956443649453944173061423400563746252624624918639704955317829571118900202850339457163986391144458374093265234876936549898394317307836272645880667604682144707415768144887251302085859941149787427820135754857823834574252467301149019040618128031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22393355723005260818245714206725024962486371301069445331166554855224569984445382916261429622176177140781540262591807314410586067352898747156084439961707526858088186847859564532494474036870243537067195575768378048765168708228655438866868474116765902132788663309197388178938674467739785124670888868275575367844265929118916857326058862311017858647729283637029748138232449771987753530082149036059341099893298375024506295644045950513787246897200103629289577821002129327008444006995106100798957655080471099225243443668815744711784905389402672253147927668973452188402318237961856862739256968107397614794749920940649066653017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "18923664062330292925097320425854028963773403290490260791110046285456624418320586493602694411246255659009480797971853587899751798517292050423925595147361457179113357137697749145910367298531550357947017614086762748912635286855965859119307952776030867877010227461952611145447072051996309321791337760446440213313118567587647331753231284949604259746195223041199251166752884737428983100944163716049687992324660497781727447044759039127657270895948752078035253350474809613723058825806773432999808385760039168727756721511853861666245776189002342359081055739586194265863151320914278802668358192142129354223978864468228342844387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22237122516972056009974851358363173222956101737160633679739040679302130202783684157860120624219243402824703631044443171697705297730074937948553056684889333009048220855054911457241466819764469412491840594226119419850879300691826423653457604973793008719854661687649503712843353259850555573106350193256228468520149310072077467035429275247821795858314066632611815121470163132859315635304580002670297871421820988180664674360600942562567556481129785012167772631963120468473034520325409436769951443923327784909170741168560519756415498885321724588331966556392156902566449280440027878307833764654047411914237336542004549439369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27336369448686407952927213841047512148256080602961221337693886456171045827364902728335838621842678034842618213831751486839664769164457200886358848611780642609807956151212730172140833687013993051128750195975407870449900964216012018464011549597463893329271551802142782496437846898607951995345700596118048812503118936355912146190387814602050603476577673025168330795693259991251123457253158682311275497273841989299536617177976494988597414096874029104664026936553002601910911661849350183051143288611930276425895937173539758709048515857274237565961822690166281383064556533577718172003091036700793496453931049332678357695013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19455332620380104052752947878271302858315527442588667010187630088074735989197961957272512153518489127739851830289432217977698694058723715795011525407636349677516287747249653863731032992357957356268347775555976157228375437749569819922331452863405755601338089952176446296778408960828432592403363697739382456823424784153176699345160867393176137698274512562982787014493127881490116440475264569017810860748045723749360744964614313582721389473237060194779872928160058750398695143879085790294098518633117485082653132591716210418642186652051734504698949655946185689300129762141386548226846082763570226156514385585744071481361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25445761243726583532578760592359577", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22488613692803253195189192330691791", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "25960428743138635373297399023473084299182984939980802809034272722324254784580750392887863080497230141134103314054059388926423363736080259904083569634531846801852637593591820899877824654259810404728944222962754697480568146686593537408092896454135259007730231185736283330842125612186143335861319892325087076950163846580363429554815583183363677731195340699139756833083803336899749266736573613599461367921967851852902075902915165669635443511257972007304752525341487523784732028766034837945570697087110519148440164962145847898213327420710931357008371311601673494907017738521357151208999148793504843803793692804628043715523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18856741406026309616962894118120627986437929140467014090009242712169493136425654814605544093145440456921338572980683802588040942802657230811107305879073338254961750357193579257793542700876729051988697707371435064008524629927156336060274426020486258649879467674238627733711624790036164232286058802462349555673273212766212210929623667189244468017944903389376587264352432967039587416651820059513127269823901509748443064229694060456367829536586597494281989158614564779626482513789624315250865001206576607471452280312925320025599002019563181650017297042193732116401915020881707741373774480545751860056683618050337109917127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18255054003540960946467412937511173503857275357279564523254876609644472897913130508410901755796911403145578324406347578394645035479448811598789440445330149684415178684244244364985566569419492526024340966634048116118220461036918642113322008210474327278744490304194240487107750062946074451285664877308299874286531555904395942468525391403989945892211562394389667549623855627586323964598356608999907351985914081500474271753579535719369050015078176140434317920506405029417533568848134194500134114930986692148205037424908325026233512832547432790929845596893425191492178144197060519932687484828624602648326757527130993391269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17585992292427893325761477757925231309108280587660448357941326585449006051615026670093843407762261369645862431030184377594558364867360028599986990350211272745058263739079421403078423419406305547323181822504015342080690292555314963266069560033449149603393597703745804154327490116632925877556380636602427974973849477647455345327438107600827754587723481538204347300511435453127948196540497595067645607903187442810326939706380147975720570082901152326027451725684307835953298079787777619279761221758839722337110358450428092435105654409605759906220276018356881513720510382203593340462393740450344158997755638970004833994149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18154819621285885488203715531180986974802467838984885593763447441560573315853214533738218006981739966639305549410205776140217630762491295788801537542173515155393893438532978004942467190130388211087887949020434027168266555032936440221397753124828024840237083585327878650783835064110269120707166076353171451926739125987230414337603419145796905193329209010981304136179575614562312906415510758685869270461130237860159700390356539992872827209445836284546679025134357745674868583064572688873419861890961874363511558819573525781437319092726642873866765014522956577530778941476410751593489326890221911680320597909854095234837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19176262357127492889273311102225517720605332655549828254208700992279261500492565522858150742937523132272446838820958212079001786815948746141669423362890384669401722242565126626860925643181372954646645614303628158646267685874341643654150726232511864066769910529482302303844824227530597032637428422586529279840473046334730547391324821148269051658034197227515798488708799180247282652651988708030562746747795102473974729763551452762795551681903194017810921719504340527968919893932976464628224130817752128619397915422464891607456367983247788535676346849933505438899136500870001244492530924194035059291084815386047766647549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18282952001020173386963033604792874041721650948749130743615271806358660830337977456808271658211798714769174444315024716925158631056204808229520765010840393086831992660692037005842567621007146305263794699821562285520735807646884122918472748747713515557171524446512032934802330782376367935844421830846529115465926450688926657591799595595905663870432109557342011830224378844937608769455547063816103795027190545847077486329770875127396503569216976214531759875930847694506322602532987716082940799667849047771005480257243217738029004115887289021594565395972608087106418704561008139556196615805377219198763124261444475368409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18799274053422910543759999083031070616846824500941057341883909590764975842152958567477047238248005134215632107089269780211521201061113020608293042076891855697543695788816842895171186736554899441849321941873688153311825557186201195054227648941040567447095305209042496419704388542381435978629927939591293844763933435370854319431487783293755333778655567202429623835210613107872650978579691912427098314451916258462539683217982166934436179735153808171737009391854688864798318583648446923332022501686155268262991628881423800096548052681445888888417941309855445339014715879389557395136881301835391074063771226310594320148509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20630978522928503101821251420521275192396704450895545838292480139515060170937080226789497778983537308087527957624371250373209640947080373314102784981346690202547995944387086672069659819474315884039786221422464297281909230056682612471064760756518915827124819898290552889881148727003826250004033603256705515257572341814423804471150480790685412534324656256218624249743267566330588164653015392366196784347124847785644356867032546054374979402522953939485192232439724628472699986714937893146980068382471136845670184375884327811930068585929873053607262377461276991138032071028696440594790376184461424936722912204575066791199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25093349407711821828114321172934048786279973818002922266352209617365841378519177202985609516605063943526081097460461949442309521237391030498253824241844748682766419960044399418468557877503180240729031793846099825487940954358647120920100234071505361780226085652803267428432270388924154306409140285612530383153562168004663884592951232703318770779075093042839513488810976290679052063612414887058145741939857186760484475705517946475232723906286084293557336569598161080354371808599950607885262470829529418310395951565673822226143900877463447258640865552837996335791771650766103982714098565205358565385874557614583916999529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27188477030598661885991035388361320542526765467275664422560892880233573776352963432701393837898306914818047143401179074252132785485107030797007463747098060075711793561923041661840326327900112119016823628933579031674589139341586777525066634143361445443492645691426342766443921194374697518370307318305164358829409785196280438640818519853825080490356213086060340654669732187363711647858964153212436567143390847034961826162941661093267629701192266168849392882882680210918116515767978695750472823364025554476734699026766591581167769504618848752130998652888481492886954757494004924970536675165068328389040356346327113056297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30559233524105579079399650827632656815914215510589505494362313974059411459958347867506281398153220313481081735721248122081488466842088861235528725233782438524163950628301514340228778708389635513100100962652890875979120193329888474437174446501634018600711274893262040044603703981401914980288832518792555381041250460125083795923689766813579547285182500950501962839744520446138853365236673511829618762859411819925544721849716146893826697162164795255173662148726725437733401778870422515535096894575588475384570600742640020805909181751695475756150201845390264753882257245513684144280106632795636724511155811724002405845421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25988585126960725381248011236972737282251192277106407814128989678016874599257898072541144153745184518610572549569750918125466890699391942884675137978796073529532750203334409900288420468277186961507706552073012233965409633487499027395409009776635949132123521466333658392523877104974582671764065736191152046773271347516432481589191805687104784239620280338786699722520867157554717698258306112612194395535996570951100679226443501313726334750518944141682728059911757060063920311373834477625307612773852129689241797926981697700552279882652936408993738871335640254935784859180444294754117210165932192181733655733587473645971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23490496507135685822734523888513577499886400963918781606657665926178047246448648730558217013088591045784870815968697486900487220007528638288314242059222354096750611368352490623871176445872065471893367211792607544188474912102874613011384204235374131542988378552441469368771840256410355359075201036698745209924179015627996725946979548425469604376462416285760926097524779525688213182372822974479772608236693438859075075084386289002469902789271227323642519015765439387876912347759199145730827043341039730384642531079789787844705495969668512697345959702290874845315778947904080163354592133014655537726643930935570847640717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22719658140721270554884314790739083798340633094792595294270440681103848894105701860288484203240910126170826495994723108525175395009296097325306673268026721294099248774860708400035249230770268508082128817579408540185166260799645570337181981990878287534913273927283194073677169165727464143629248643343858485063241077744413220911808776871917255163871075591381526721326978329324967666605721494493187023197644134190417519405391215465561225240197388855959113379454390437537190629103528897904172398454802644832192529512255342289492341738001610583406609557839972011030660892867591925522264505355088388005361778410298679179137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22719402954012739468533897292088103541827370257668022782484020119216535001095082303632880737589981469859274748416702491904158958349930228468241442931687190429133981872634103474958508932061922066030510874848373203802277063508373779725630033263109763782768809827152656816006330197061501743045941295560783504038247255434620451052769484306212872026857327653186818883189723721441114450853382771018353499303982265929284923637681296626895904635683779290438184724607238711810116855887021288713535460506898260866353683423141322304827532711471991394753775615108573273269473825870520039983165247260399166908055553621738420466231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24112412228031177019583945282514178543664663288756502095010940718625166029371247143112770987851708224463862463970983505213561384695050179925270934471126339046529020351219688898971247838681858119567406757015988601240706804067891241775664234055091948349849262032549275149733886706814768729654378944014357580087573766849695585023340588679377094198822007563070988323712208216567234281201151455749732249652725211014060782401127017428272004200592471117677076343636685873775850481446901613199337571271930818477655260784379024153800059617937800818405311616640521329965807883534821628696722867665601726022284658234488166362057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24609467210391061419914879722955984863705140332499470611322406165665018902995354941523355590389053991603927432488304191155977256305091050078475512975323507373966038754401004618597372380717224888967467360475814404722775468312666299557119600815808713890461009893875289257517243106584089981304206923768910574105099426538302179923862614408826686536046696419448065580379733204713407621926065223848526059391102833450020304502910045278743652442803539323276040958345056648883732058539286590718828457934691553002146232374458685587831642526574354896236479832893388010941804887725487745584534022772933980481403796643347936371999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20495331720158712013217416593716692054006887643431594423048246473877311071572400953416020933598474479689061088841513158893918418299916370925976547432642438602755053950097648795139418352079469947934880726965619835639538493735554763994625526542645220591511978409634843612630546563064602288155811339847329548343023692456219284505358629686344171494003132465942496077949151530097367946375534290312615084907718811356828724601049347673232741532487230223271892201827970994232250449444977133817322128747804660348355263081098266941501395613175116752820666797858792520189520817562535980684391187493297406028439004099752538860747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28520091863262921851677857241381817936487687881637098397982673128685832620647526690594151992915439935679998881434429494780621635832109529236255766497840316437468077620714039861560877859852961747566667932631404260995599454620208311603363361460862454911488118421531612490685137987060415204822638551555122927998497925729025663309256994168847596831794847312635473544437915750182070512095598411768724781809503041672086796138616766962170432349541629306111797697669287767862434501987477286389828967705431881808646328604166050775464942189649434528855257076195358299166362115287078283941536826551569284886587539345576621946587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23852680927418666134585355666132912079227373356536589513888160642266719925270774703453311027235223081262195160035546908079879769031464289342613733390754244613877454372843814974744792488054562441223535911796442045994327345138471998571862017529488548556789263975916119193640172247155256111738351295874697464266231666394020958217633942675251941800741023308663458074967138557124080920909074731337596459020214421162240480274777704338772112613476836627579554299870455788918277486089611714682562804559747110249341049317897979597375318382588464052335924303641970818109527584347821124581792836048387626067827600005681814830317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24427510029599157627142552370896983837427416422327072358485883755800109005976132283602066375993874988552776778449340986742829089422608484910478647854728411690756740402317544143840185769464136316319134017551126707545179051548895658951840561097482398303984374415959311299425331445844886914379760082295989641237613196270801907624679848304579922875779084870164262815569757025468153672110314423908890462618340784840445220168815566039438538354182862249285304497604825229565625292189478261950418727250770811588447316170754463855237502447823122236391480390555322546311033294297415045350705694542901687823261506287535771608961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23663180844018521105523741636167762543601982947957712604841910976485614866841043623871278005352385160654014849083440141118521166875841194685105372968261213140910834223465790182507068469340973850220559815482701975180664855503780619582875623191598373447153474556446440271856021423127214350955125518747210913833933187525306238744779945693731661075105348520392529866446820467170710018346809223498277943299503531040762335381627451075154597837738327487513585056197449196918469559355593439209826263923264297070101853682978564826941633796316014957816618132735572801740087562507097192124414089760365711710415491929504349978419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22916713949925625414337584505259289999317412038362118013453757261778238867056385188483334700508321849154003804013391418272283791560185438047761343369085074004311525186977565583185273489580793120231957433970995074184323821925497560919236610986326394167921461606671339468510515829418203171547433003667677408341132243102812083690847838272181335667297687927699943527329302990775020701007556119402127794100703098093797133848716396332224806326709619044563949505253173712071053185566103974359312841799226923467079006426660873410709517501235997801975279223812051767684981699596675514011275439170413469873511374908640518146943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22157838796356247916480304741234234920163513986215683264479534114117597664853171719776600841016665977003252682807624664288046618554665311179062146488263422327065992125626745391160803905686663764783123577671924804423230118762539675841085707147000240677574645767101520283789816595581366164908731184753502519153540156606596692364991259709657544097136984498255046049338702885476144437601834985812980607817232710236953549404210878627279997229264037690971894939356978023422445635027553167553388161192361304553746553911549825181924557583389097449440318371745751897006144265830512152250707084548142445611199564356043350317271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20184055627542057509298021171229425068338423282065526392266720858998343121757746435306855811424415042812994020106016996847320784186981052441571786281807484810411075902646064359333384855370938296946827641496886644089800082984972520845755213104868894585804064468437276738083557249350320514489673612276981700379179359804689733972315769737670216247638827081814649136360383074393434238325498723343439507357109605903306658132405702718721293418016634165240922545357821730064744755956262546967242131731038584994161536260458746686433935924035988243365109931160715670641909262787633412384645439971179602411823537690497901147877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21165290677109133447616701779011339430289365328627273155024477622990919519405936545546138294945555594989512049137685959709849568893994909906327312266093875749852468698239918005512485592165807894714220302652531164293002129627351923562289953539818089209322733076426121439429372536401052577489426523110909778423677303651396985593971438117734465877570377210336844873213284111226602273985679605712266252781198395309151633530017437120955555987202243585684935204813993466107748617892082312269491705209665033955240442852425697051126059468802657257954305289477030097700646049017392444733991560944502135806887339339393167911977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22078913573160535870598166273584244398831288029717280299946028703368196954524065243458390869426864128217018195504831155214191367529937013170794777036096329620403064274111512345271866520082629079407467283643320604941845790770637308008069273353642715435149934415828387718261718004790009234737789605218639824448755950171829145075949900012090823595620455674149817526441441967067057138688339476201063073090389109200937648905359335519428609643964852342620991058282257293267358196007729366741264229743444384928660286579005016180096050331426885594689154060636296821489280889745563000431387704429973653840901128629387654102669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30239021374736705539552010865559024451251413408795524063577868846009374727003062979749395633890586056695968082808134345396464838615510029586673864542041836574741865734355436926609232636453392471029463870864671851157953467616911835911683562125151709040874585415752288927624722168761870519313722733702473495593585843529335834824042628647481336521269868625636659760430237380889348223679458587130736430632487528389064733531232632448552498241819798431475338518782469252854262603582135784054894889560940649727355453188112494367708715139459378710496713104357205809871687781987155984794750512065174887425562936188520887049621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28434594216953281860578993301630942374289362239598216012682081955478152479326258876678310457865831907801558054760008974306590351519148795417257835979782144461260615924883589939398441769459929267861687184973732250560395258684019989782939169950267219606343173368419413128136156140224760183927963676678908160722866976543473847960992651280091954103934766323228875963966569197501446440155122009074940735554917117795136491709060270288915742217628992318426371151967366401052330320745292956210346708299349243643709551054135960467374395774613205302101539608501528304434819438449987570846538142689660943609948689746944665813019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23224136922157654121120377830060723195869867289601430339920522103851006049459302056488656381582210888615361387002555251462368724929256557894345795248438479289966825333310619714415567419534524644276990626786432604122472609620623549053360545822937866042600590073836146670776949769373597113120260661115998651710959040926153431033132451126232231875154635155521292171681583416338856297128566812666224825635245753727234930004096353726419743474314935904422054666949167770047641940260208092218896489415509169056665157562463950049965004215814956007226661866328784703554445212372646038562133603572760040338898632950995895195783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24008429116854289103345895359197319430655414559397576847961851268772576266131240337116102632078274557539391187923986144909228154414811044997669315899740267322067137394068437869164311224545164780407047234331036762554168044759748844700203948088509575059478057879451917548310042989288683682242436078415740374205176468944398628223829295237583987024992222060113584587145155286341297637863156208272779252251392583841867979046582802002978194409068452900524787588584370764735955179197591086495050477163795449939756166120312356181945776627615302141307429031589314688708191595577470013225506687786410470595836776579342377260879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24951840890534420924482020114491073517387963735290121613709925964826508491491346069007766947973170737858754294861752911798859761578502563940917398996161614366792553652521929777553438999041864273180033072611642595571653326262846503682680375639957648642236985589657087564754190429934864677234434975669679167523828466727141778982771308671558447681223967620187266825949603327014300360561158902373820214147149007888105545373603108536451800737517900858982219642647024780158675335700453649930878477996765526296477853478818076782254426347315768066451032199675936726785759113225935276744691549184201550484279610162984395607891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26472689466423637418378333307739906521791741057827737340057740828660448021215759335797941163634123219778908658931768087596094635802440614994702229628695181132956341922954852400541423184580836449913435265869264314607546121869228713584316769463345690540236284219443653735476815607513917684492135834479782061091621974390516464469119192306166699907921617090109268939564747484387581562584704471459941260427519504812462203346418077276695714410450539756264371488499936797896964507032999365176068454793673541729917541411919128855440004078467146924123279646691621047300707879161002131461634062208323157300053976063230999036583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24739712871477273125962467228949957009975041618394895535070682867339448451158924946251062632068059640623862560721146450458100135136799877597527621312000504980417585669484245736906544282870136448938192092638102327020743092674940417907604931456867802102622533142698290446921227626612831844509670603729736069925139368442720637490838446874754310212665646371584264847623358860982010551827365319555857260210940866032331105588034340647973422829858358374424554697173046853807880634092141351543652921696163939672779742828821837233817287179282370657737391795638422421900205815949117182684268105376128819335113338445996489840329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21847689368688493871369880107592987889591265852043771321526017432180124211065863071018745853662971919075988007915151190082682228769699940920196135887556415597024288340539714712299323340605829185598810337242969256544119631977732899160840652484109624141321261960151968603697064030156755104328591532740214705905831702682257027264747469982341920451098000004914193931830452337604649327284685276160134724144219677787501426765008794217194346559375421340868171798730653047254451383794580057418589478929079076680093304854560403630565734692719858636823004913179478226619892712578779835450538356775888946554307477245371803607077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27145110034364029087534271465321296754946205534294680692190509658987648078172136879730822159810298854463994534078805311188725710050152570660245083672211619956636147784476768499420078699718134829675595388881995319135761145088778709395997442811731810517840030296572667728954814913423631051276757783032408740184950610435051095563100142638961153401646184904857650232464389005096866229133323976447842891583845184204586041644471476521371295268787715536426963708537398794234732052548944942221313984460676004695713955876310847409932084577606340168820459191929115150307977205157342318233899180053566352668333402353840944350097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22743450472601157468924720502339411256856801944135365819220514872578075780639032001899864041385108381757877122444301715318271931676568604508480188951588495961031294504509393220246700601394868591102363044126361745260870446661167142216549063287783586648966571516569621574166379034361596668487742129534919530896396348209357504874079385986147635553120146208608723048601659461519713371072602909269846158638350317764488566324353165144657287163985002613922857130489347832985913074685699243293856702733129677640544196983566458068156545815049564081387722578996872837833979033114024611499021052845023731310947947196585812184743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30854087657584036166894428184160125287240654867785661841519384826468570002968051619539111928865216707607551776208578507607811732644386529922858489691721449934965053284808191622473822451571396824126096776484909858014145346776234832887756756568205342008273090401779263869365780159217747590943625633489937464432019616828330955860316374794497730885387161646057443093898078749433921083794983088952100174773387910824963671636601866080010712835909667180998623026534975502997797338438515758430905631768823041347302502828043434028995924535459403230389656361531200115492577741050759971062036421475509836166977411122692951615233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26634687603622652315618087482738774410534493010817228944464098612381556793051774779860222939499743631199660376897526632557431802204794623773105365632920601125908400085124983174838069806956940257596855586998208184291000463744714657228729948663213520351867673058501994938178183823266856901851091064878952892099671999979887918099448504574675534478512340398444080528261645034634571051524539154174694335624515462295583992927474669798180142339760550789758333988988755409331894427915669617725583095671469886468913345929898257864260796743963421476058154609257812492873967781925323615346518574739381258916877798454916421850463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23093849018826870489548268078449643888661817601136945283497035184183302823667594489275028180424479246970905731602680664142072473803199759072588815027498265780905344598305370571808110898221217280378233107578955090671041009079771757097692120072066272127808463366145949251855014269947690018807218586750359873786335943788036856944438895416545588701382709607655805725594490184274286427443258180476172779442227300097348322119738490093903890310645509041975912561189371148602432934339749353802157972160437635261793564928919110475249028128213651405486606585721291839293335394093568572545993522771474629868827894079307931559727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20253575729774069341453964868340259574053333130142558473271748540707332730941835868722217825593156660152863380588293126206220833495691833343931408392569395269116122203524999984980645733345010358177278398008076523075654036813653383674652388020923711698114730630441265161847604842642852765043277548147177066849071970465016804317882196829937079710118734828205074512250747758309811937383017241607152004206869312477398269218920591772283573534117925102503412383158442019758582482632964334970111755793559837621836479926796755685274451644425940930304460418051201454593506740990635706809981024105395088828222080517452999880629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26061301666514634889745826436555023869406106689070079918043022103945278582266750282187449281733027808100478511512083972198792903749072805227125781837795140309952668931930233422252894294588721478830510647540824884288760093121908174573156009265907101498687411604462579616083212992838988902861116751019696512403122900041954326432058263534243432116886973800220403991387256892944944900434234035329410782116603211456502917031538659721705738058175986366971595656760597753111180105506970875527114340233747215720716149573169900408908913217095707176506501133482808046674374690706100349170102449524986129810668360748962258547689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22347474623283321804084279285540223775178432348713724347092878124055629990900321369065607619240426122195851553734133267006025600423654507623409653934603432675809656330521102470334719341873062090255522267866580772618634919366287898924085156312497736659673872740939341313940613216970354059148675900769519532874274079655753624287554623387475084792654748557525670841953525711730977560765954553335248091631647644756022728381553720300867449004015957906720797112312849656510881098608459754453015818619524798402951586682796070997273939893690608330774220323068390028056427708640216367579904998021879173147478220240805123768081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21104423105160964356916840758269117550788070926970292659207710504572140342998362438786709103466431364276996471221723680717116043632119709766174243213083777130918858363250130299792772209779870181893956717327847756763671315140726593808687935877125857046461515438486841593739806325850248814655909427736380727561551494547216189441105732502183269776657667275281092218157286170668182493595303384056986898515328697584038439747225401966893813405211880218238953565198912028644761567871161365961363076867472597872796280654691749028730752665360321962996967146138705185317568599890930645067517688993908715043649651364334563948101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18662034233130845974830043416574058158252994847743862673846071772879571889163680873433734349103016060087266786295906994741487749292101583848439475805219158647089017510348496223125805038715391543515237891855262161399822834647220884529816670141170360467406704288169289137610745321391163899337439036565127747419611773078910399161383676775809258517433175695719550012752193798496691062466295683896793523754269868602663430650733992259623650683929641225668834680429240507006702086702043455099032306114221058730321654570997272923958868179043980147571270360066480044780344522253221147076641374562558768791320418250688927008473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25238187865027235977354175826986262840191006274621342646827270102224149486666999085963809778827925392922838267950582329337456364503965016600130246041498886732859796233967321345782242545975009037269297177526378494828748788970296871886558923740444202070490411972292183016967933110301932316953834269019360064485254074467479435883633440220917732638153040397418817156729692285747011962295787710830414028681348472449592118981545602997524192707069025347818236693128123464945848527471665063694672640648327299101629850825547145546434219598107995091022945900369212418091745858733023977830463937488408691689066994431408424894539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27331889992509293903510416598683939901388331799407782044716787346213603123793145902049432196285439165774315831765029196735671032236732477550209394900535152526160450910169190870512689353544442705812078811162799034072116280648812613482352910043827953273209104982130973107533171407774828538845863889331612262525810779351130730485578594456837769525235643854622891616286384834646709666772476604578544670558953869025026165473523389851996588203982038645204917236962971772481650551895631136310716376062423578314348609951023763997514112863554827820749371786465663822280484964244609063639351944082847757329347781783532854913859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25254858389416188233998107660621850780926489307793350235459805825971786519598304733126956166890352243752689837755717063551848913563804429663263544776584033173783013701040697904442632686701822643142723078037500727047175794231853488043459977649042300128444511097586904416438213708261060969947432640052713301385384237255330160663819739236984495723309752587437280508194183977687015488933676090355359170825276532121133057754360502468161223375446754949357598559723567489468679888917509136233267525727798299463563890285427785935555620922809880458803723647570300509132194877844752636232725092544198866028493763402262202732627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20897159997601385378847232863349539876967730379009004512327000276720948708610175980184817909721862522722341415529563323788340224266077544734536777600560427767638505714146482795600733908226428187322306494420920803220659391076951092717357347114016277915304794394011353337541088474876247872140921828133980192707665412169300801803556904863343998592472030158677277562733316520621292160935429729736120221218752234505850946590005402270727470298970436448204091306879417678072350842544627569048854750442515135017838626164208743738635303946536312367453573308009407678655301431129358653898359154306268855265374631015357194153457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21292215991424081058707370926807092226086126915753092752235826712126908382006118755441825715444348400058284215028552032156963644767616395612195915711931929779981085455574379238774252262952052020221669416063071513342218686040406356300363045551324250983286316084144713394690603004472195374632404583732326221022466717235116726672200223388437711434668560342971563348726022254081588571341023010500063069134618438063442904985613557533322275838359783722139282081616890696743421510545063112639811611733664026412335193551073633114022857743168782120399058141851415618916473725893990555365528732856906490645435365635978185894757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22430292558633969101392351718671582392222434844027604532992965983909276952082098872387112209540258728894600692408661631048669880468367922321003542342890616824185255740322088788742095813996923018658289847126284119117254779600394137678625892177944677505556287724110141882153299736907812433906572698570555990523490531001969269834054055531917859705614723788791882434957896329354331313660824886176702302343451342287736015334554801736867004035041988374036927166917808096131077662203143816078493016637375973088810702976222516295259014799441927656814956269658379784018469748163949836276759829308856395181842026409658389264211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29799506710548780717038584470596136738568559159903778771044879391023398571038884474305981532242375775743282959029664145322440884297181005390714457506598291170427109118735783593847403102930047934035079870396514979472533885158568501565071140285001635382945318552591270324772082735078731241662895105422332270082424639197447858098692626685388493651745385597344349708269188712098334117308018246262370403010056639839236725467930713084521834332510726598736293792807847690343850724569310492584119077893014672187469951117062686591839198596621368180506188341453462319110781415677265036894162541634110915267477834858207873379771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25466576665084924226470654132815369171624169464641958393577915318077690918187056562802783728477767971505296240169247329586988933761996426562098937234062194028348946523810098522350644597790191310511115281808827602211690682590617072590895147306109937428811450409553696799092543270369218287827002914579454817395935153608142596240045682783729676854403119108296827354101975547539338659337048576931035839887008324768950548984701775005426844642613281269870307008658473340377746163337548199497346834240495110965394467375654735528098860264866726017574786130718997285258820086894478843884323171024658784677792102005164618800007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25416193650273694261136188889128066271184310294965960980860488465003303417729719066467884679540840416199019617032002462133124759297962241447857550272190267819539460405320985315530255097557077321165008755624684872675316487895018138093835904259673791811717387350599449820073671775651916854847420480720613247336747593222956155856029387561880427447673140344711192442981434820607636810362029608778524177554353542880004604355734827715476377578096819751289515353575535480611107427913405278174044673027206747034203694210410013175817708243680480634411903514781331342551781935890348645682067017381304397403237646046692228748997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25385556830927676051383749009893449094650849030690273663662524538943970865371554834038089482493593015350616115397608123290552366730370076187531244667195932798878235794447067306307145290127305663243842665468476837642415367157568475448554393236732270550670400612255825922982048304709870155264705307026873007626082874297757936544051640389546262654704110493493293154500941632650348594276133478944561809200949603763267569023717458824697363196556536828524965429234241579191944718178648259835002912662413944751738898169419949014171850732347032822197266614423775347815500092117031989401473066516555499652497803480908944360853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26480484429342268349612904331150430625698508357182253566005951573138756092694126346084326824727840888553869723321556113628110654056405055372343092179200342676044985160197798855480318201663517854983219323287562717835390971448449830976924395028392093096689224812191870100027183071466635820871124729264204885513982776680394703545299004338883644004373216656324262871409993518331705104628635796535011537996767031668763823455333455033780335604382490468066669999689981926123491638810618505068731307075994784685066930628985763378453486942063494431090556042663646189219412005938932123400200352010909925910203117939604050476569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30209910888803229379514983579937805420567860390304166690342989204823562204683175481795817795718427336593733876965022163544387422180918669988249143211257875952624294705548095692768432148427846871349365170528070585493242384117777371856022610712529483768404136882576535114658667614696768613701478148831416122122947125512732927061393842073057998681505839283325439084946024184117174256657338061587082922540853784730694701530682209833650723277546143570854169794705349212206586277319217607564698068774312602790329461571229616141992799105829754711063920420338718330741980732212356733700282731360271638065706972899639444727609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23177642579934977930744056137741384179216169316012168330988771826837067923393671310215560556350689244751637595065734066601348685699498876951425268696904302368678607781772251735024272599001886222612991286674726035409956320367384515627172763963114061588458840350568630202257727615105561486309078972594878859822661601103310871628885747290945933609445166019587824433529903586769447190540402330005550985547282247223855706411302817241779924729441826216339446040086000386204086028638951639980033093721365318895695549680422434333395866706914259102334304795945017513013935271877430508644841247245194924812972457410654811741431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30126712207265484235924086043196366839193148844144969215508576764834045777363909969364059184556592889316428337675700793539097824197150464834602120389362337439438376420967672935883376287297565166203701577165126733280923062603453223694425169035376230046137533957354005915587696391046301299275378073252084226825293878145036048464758663161299512008212758106738119415845495225455933544035858668439299821965823982393740606049612803723593079241701059693893039558680577350883396862306234384011451777239974173959354179901546329827053053299265725575076338220906037406228311287131013518663612052879692328914843102242268762405479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25477331787769594438216097211335391586358292970213256846693507476910133965652497970704497946096320427734972123866418613970112646982413445888092152872563274792893650257655955148876063058008349479489229720386284997294463759204192290705494564175777003588931542910169222689743612165603306494822978368875015313728875799946536237809250765963205883371477262117688214798295904480846043649201507515325353468357948965572881300116611546259575406207739214445700230047434038211977253979713008335030163426675249091604336093221856105131776441399099745547835082080548569057191768383863172751087944261431854396861104498555901313757377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23781819756407724683546624925197845144060153959187743888273728028954484872992333190718818849211852952103218435940745653304149068007730298449021075441219604361547144405683711253124812678459324343219387077099727007578116445088710061694416075047361203397557577923044792567925876901331735510048012796974018754700552585158743729818504094352017667202874673444164352799852119111275517785082782022985025618474195689060809883173791140743307942417912627056596937283588480824166565808204281946614153367040020076742393364207974453041066261447859001790014025422728180444105023713288326246715006353234359327015155845624579699767061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29847370166579928301988023906100823219146300911280967506262856684135402372707755256300229922315027924717335083550303869447520224297989421396822287837477883286443089679188922197471013628373847349296371507427073468671719670478329550786459966230601428332072868885080366831646010594443868422615980477179361816992766187284953434941524846586286545577062507541665399711674461891793412603500261841142892567408593142549680707529371525715099844652809135127209978149223254199097496633409739719189325398050482740723542086616310047512309389143009226339481599560102769170035118026596142750327640673545807301070120371250771836155287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24256283976780154011049521694694193441344322527614449875451571856026063321043180869629064293243689171561293966583376504841761051341093989636551231655423891041157054840939234779381848631139780500195053319719912935730181247584149948320955720588957429393670498654937045209165745752395441930401444456316397497862209821933814200872816833487671738865645266130863460903743988324825188492862274262944197457026551330422522325252817717833677250224168151677895513297441313139353372386039970040591921481350376742006990415751403478362052128025450917378089889408521844557216972594869293606279672005577472299474270247555411010208863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23564321062183098367696085061334826575687341360301625816512344792605932599423511910116929717905258379025109838643738293869039741945166355220855759166569784630251630511087449686311439678778545606787341034822905426070451171023657971897039558424059881318203079153220848394941051766984743177019994583663480321623990208135436950256168912711597613597844832826511179337038561715911832008547219872614820450643674761040698678718205423457530472929372213298780084861843671391757093175868192638374962270928303239821599657225084757513072735910171749686830320416994895594579092582165183628488849332396658084977703889692241577761753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22664592008776164194863159305725345865268457682531009970267954096381081213579931839916129933415802260262100078420993327264326796779262052569319868048577725563621061037338556933942719001028301495589185420988164261964520957813300860489446748345464405705262901048785458845199534078722482628575311276623470262171975635436176047708081388587083419232947486778216406422915276784052031099837252733639416762691689037659046351536551185555164290823563048040437156115844075924888032081039051029684653663400836119117312657336815947952593091736532484470132815289684552642310872056134070287472702585034009456902731090908505907588743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25946566991876793384099426255408117173716296624613453394473518154022037056303556409429025271187143271910494711655509036977320706910809359362872129242477596817867999976852957460764058510007866788752002566882189810488485691752415928136150864092655662327928407577417640697767060312541749639350234186316296210043562869268747906554751797367660755435620060175262433786392962441132080812301798493566103842149847556153549142333175572880074046242220086913607278833199378905236682214332246094959008543860500024417381414937435917971244627794759795197937096935942696165020758572525773686896385282000472634870633358197882069692803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24220565454057773783199451965015403999496273450571649115522959381846346217150957025144704028808191550629633331434320167827042405505302721401692521175027347810135649423237599390927057579717691453207355739512845600612586139132615497536269357618154611465189379662022923738707468579053829833463746977789814876338129257308244432552994970589329218998653002000113984348929269104677971600014616562033349167612713573000245560459577718664813881637176529582470556847922540381746593883020626580497525098873351627123831286986661716146918005147440158898867225893560866612092409884819079514635948111273967716732075293621867603869551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22291795341713641943526111520102122862030218331405099512340433819246585680576468653345267050932731632730322705737155740238541814337347486772351510701743566071305221250210912225059093824962924042911329862987785356162988214450877458210133726419805681468079764959254326764106399440241607274111133184326737211245830291300008759408625336925713601755150596190080173996255472937228390716446411861172733845085932640767693935214629639384435199023048267901678488235027266249106365381585213127571342642179784173365696919653899957468542431802544051322545431329421107851908661913895350410493413931888417511437928300483417949852073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24653387370428108101282420489948397482201885916079812331544074658898002130047312179975477873086710513774849631214791409984708755061975723483402578637027097547338249086036852704155201966341257079793371454166504040620114030856522214050745183993674409894150731177770230020308555514744959773717067384748502543846540870364558522179745307665183828419414891899559856901059313267164829450132030377225223284947212086672566908629243973182887425270804314990261154712709633029112481372107117065775377026249829032036757636904896704426908527185219463000187222262490248310332077014157616838516342188331839554834594710292143202155201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21382789256631708272529523123988362502380112877988899973282906202840954175649798753881463221530360814900816244873506052116936530709022324909098733952043216622809018038911865269653304888207646642534286028294486933000299353635013638245031535357731499552802875144834664342243381749748861807045235930460025556811378760414163281653467963733226517300856573823035925411759819132489206556119616690837144042164286717369797054788183577531536459656914198304189643348449708526564565624297364146432506056475749226777343640618133957949537160905420900811462033928256989700300204073229963429764906716053667626719441726417223306530907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22804013585937640590153863400297110655105767195107726668296654376443963899890117236749770568795972926529748463002356688801378534548268331645506780087623297515995469019376875985943978162988383074984542183472650383193321464390954060730706649354028943789839583639410312872053652529409365422364829896984690148647874382491770729998651321069415444673269371753435244771284030168176216206752910719453398973547906595005487321540057369712527624473873817618096802177756107091012064156138245069473657272198408121340853955772237239107042892462271791578819635968358356595291740814215189388879582670916794105333737229818339306119141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26420548027353499479966857389269914479350541781144754878073416908321730522369796051000812189869738994440442769797245325433089236340608052730345886914519746384202956864451012962268520339463913507366761559311065681548032595172245343158858954121630976146963445001981641015156156334495314394939589934794389345585952104715360418632141477369470825760966185549732450765918504952477993821685778056654867016312285858009919274363439542624124573212970737336731202136652423670422695206219670356040468660056065558810455284472931341063318382042187483982953127804220550577982099360451765577780442284311992776420775969509220191031803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21889556637390825154145362487384719808132577059191471112223504961509231999371040302198503407639773137466093722908527586272921766258067537639004722066790496463708767654423025432937302202150971461299121930373997608336264140637903076565547690674887540110095163961941486729470063495697331569707444159911219549746832067549315567575511816160052164326919888870824922852867241358802499419100690940976642625411556598643456528897411908151084888358820046649462767877066912144111585486540325892071851930991614249957738257550303873329285710151356911176744822887957913215082461260528708421511029000658663074997443250767885047221489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21011422018435652566038877865020142450275258089305289121715460624960234766502137436439904864494194744244025221103162965041724933020321530278569725430522032888883024110795560351438605841879868005357547941254620620623445365663920766037519222930991146779628314219730115675648800679310075929626286916206734189755510827228974693442204218129594995915626422428853940872178688272264317564717478425125986056521824921486455823585863970944378784208866725724192408478366316118814153642915101607713225866050466883174369881665642152802390512063242359130729485531133107872741047949336706716775266783461789720398524047216793147195829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28330801110924494576998797290635293423109463881394516007933489522642831869789684293865566280951108408592114188900114101718688838535540279315810974020999409389905026192276913168232068224143633329487560438607692533601726543208024273346828267614861981170083568128105817392670296845616033220196066038446721934281359478891123857112192407419287378002413088906235851183842883293151799889965368631711127585914166205889049965444599228280025174963917996101058794954617303734652687630606519736489863826876362249126523487386731072270400215491336100440214329313107932192595754754136633325114437162350345607586058315912835988548081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19897051869507076645554667597598438293006836249944676059181585233281823462326930004635737442347455728703867187192748506078860882905122818637686371651761395792324596150470085800871350260480729022007345401439431845313156464932019448649869340368706183826544699109419482334743225827152733738575478185330661362801883562458040956104893005152487710705009498096183529778100069449794416507919238367514842506949557884133654114983842072384657063034124183994518153854068530083443110451862541241957513536670616531038514820929529794828320613520330317143709766254856810860098674339830798619773768582606686363425278112019483623565011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24299894950051945264813304357170938086373455115691435872846054583252914251781698725458577642960428527762059704655166561118851283575845850523550519330434439887935375277479399523049776285172848172390343232771641801173736721261719357463340201660583992032414173478685451815332527209455839413347274503539921050836931512454839122307339893469789234725077298387955825283114772821238507517734755157126202965021012694440875430731879241579139965266696187069622800263760609213322901920030422173059410853984287892654548122434303457191172818628544773108856860450969025037559532334381229167728327419195552528001287369616613227247713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25439504005063711367863344533070812348220170352489850183250791202585560868661965612104839189771033273662233002275665345870598877648024659722030276488062335818477876811702848920597732067384887741186579178535742795382026863633906015077680925662833034255175216036676727139084961762356607026149705767248517463626733535408341703893509165818568705228051159476847287460802776395317976314010434396493681796973649183355094499466582070072437495828041451748850292826867059748631401959403320584130098987402610225862312931697464029953241916540849080308026559616174326088859697462434792689699317791152603203580953455754454537375339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21786163976518461541383887238438835704307533168198748299963283373200186042426434798675058984283173675462354659446369656094394374442260241122333716001463709188792969311990844698630640304392322179985646979756757033146320998731684688640680838581801177451414257859210234750177440684138047866285144473354081087617725583217821802628089235800839125057604918629981208316210617869316065038568962831336055032893338762583326798465029614785766872557277958550250490973427732739529641714662142748478760353168700671410830758907568804214447132197891693028207668695602341924596499314077042634250068853139958314054194278321171894065557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24742006323925308037393906129701380495647653304514271340923899148662587209939324411053717451458915018295567807503164892769725320637650562602991483931053675293073186154317761316374871952504676714973725222629878277331059715807071123702753791356577217311866900077765895973250279264222326214943491873973896844913031413053988929948916027076113405736264068809553532557536428387050359628951477457812593764738717620813003845281652966496085293017817123628821952819718782739894352379359006245452304130907959770403129485606600448971247910299077518010429014374428837523804563227269381600789657493529171714934525351390167568200231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22310694773239040962586793196271866320020355129965283058594203842954261479348997172028703183496740620621792421779651763070250964886699412492136327135283000616492431457247462470214873022723039174242519418179761628810705382956239406461812475844403827251779250257884410285337980052405328985819502730538764977308224958498562216313618511389632866932851626913176939628918794492736194224109344542321387192597626646597681003903812013891595107787233161233833580945424543493195536322648480214909474379284419594069199004709005905161163938169712841001697001526415396778763734647931368622353088174566113563799275503964526288019087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22398665346351733507383388905029629088661742239748918630142047933824633800707010664018884142518430733780636851653314574467092784608267048336403672837266500145178887862959416020823670787136368166639171880529550927536562000640261896477388764419861585463241946556293922587525936437915743544773070408066077988858136354254728064942808708913590585454538599395938013522729942427267341431533272903019883089473011556015015227109383819315983660443009647463962009801938763640804933459400781360001219349571481573459096725712250103580944454543436129366055253606338301895239779798158258344517714088738922407192229228158065313614999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25891097578381305865645154916735779327545085201970015058924842690845883507375656268227842785968524764367402751582588704541978713231837762884579698988835118142008809548634958088714066108064852201242912446532114660873466324631512340271760155872599867271667294756917022930112466640451373863166504542602560869139908997674135184965320664783395899936546439429023637220330310080782155373218140190541693856499501532812760796611506368879664850934700192049067035195958064323562416176073881542024268000500731548173104389800509386546643473422051512424541944592945520139736992218822302891312301061572363049683404981190299596668667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27922150828196978350880677973737526357602735982022665126452137115641736258925524264428467399939457351000385703022553930659793370530197804097433739334521752238438104943706532001243933146069113984023004488024043580821281014759056042271943204942371670297481208953954662604311344997886989985724408832893792034288510086714141227558293535635552357015856216488615637459472160781178096934901103199413356490528201185411225073322773793615161802001527237959112138185150629958853614704394402886218454543463923459527067010803953815880859668322320662439327531960978011621528567671911973650804426131831267213568687364551330070055061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23031524357006173488509697396505332470362375620672826602487062287769945081545038959270427690128430619802278276035732037171935204118641481133597287902881696730571196944336850724916831340915436472969891307186320181127698205502403548064452156467588366402750155902122636660323422036245349790162659091027260568894922542760677486732539606782294058297115208488047022815312242168313205205996807761322770767461610938818270019398373113953651953250463928636333377550272922822238581213104159070341919130412906069642223604319094938871579508526886727000417774347865477323603814233763918748285387094620976273895056836749287478622257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23974428198353260728887913114256085452663543493104450776642586281225299229765500047071636772116004894561929545778459840298955586210622075477373017216736991800483212166183952763319460468809375539562434142412864457673824673932814453169214701794639725607830063349138287982086574012534664262001284205040434253770976463848712101766569347278033939219159246621876175375069041532792044783707030912421236921297615688139706498820410079927640944178779675408978797001424688571690499162935481129627170344501142527827974042227254759127614333041934602298453258647174317242466253289743265334238407757057250515043778417718532629091849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25713752022049358603470892001213906049536417002389304312741765589397436908882886058237195331089776939954821618264943771884774821647120641598813954673949767103356449216711671368810504316979973252603609923284246177298326372477570710066230031021474977399102412175513263512916374841405293277177230620387723637333192075126006909015271221169617496139342319360676347098912155780366515897501057281422161279257477092999248233106291011748919504200644288316139970968002190733675667294586342469139101699576039256442453108171757561860896551200328508989588023864871006753370704556007145395872654841945929910697911751666939726736321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20218856526930441496794748895862669459766588050659183987802686930833693542459638258667555548997513657362286816377174092218147491789674643990236167324171059945328269044156889354063854701403302811562752718184543449997066798601770693108485432525781944508212537179289664456111370272222490182067598617580433958830503972170886451034960677619355858671055107240622811695991593823501644389285292111456120036329315024201877976321178374591174029774980251863277109718020209548102878511151980708355772399162477688730811667434496005740505917650389431352809054943283873845950562220909729475720257326396344150723390616561906708839577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29202913450660168481940636577446796596617972754335657253381261106244106819509694303379001261840021980605353023730286171031635798243442445979319494553382005747842965718471112691722005642866274869679992217111394077774720977075925567175897433618821189996631186920339920622938989725130181669428388171035412005654816275570962981253627785189836219042113118350440254583013263435074866702092404186635856598355900625254107258275952277974662078765557024888227617592907683435825416251372931482804538707333214565314285470317862892042866293266951118359074258718849600529944869275274107248016759751863012867836684817449547258993707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28242033434033207178332006980855024327369872090723316411793531913974336984504829905414399721358089816706303323668737001452604584366679972970206251446812132866396162327942991649658620301338331258031605652082475817108266682982390695237404775896034043795846708932121746276319866072091488886499570938763182762861389300487633367082106029347938368119208252351516962722137584425721392046523392635438369289424467894544245347617459194173739890192772048328218847656345945495011922370881906327419291575662575874365439237262529170816392382524264635679455949495404522377861850119672573240716838649940479493011109384615213179540413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28428274375419474831903001802155441064273765047568781283319306948161586896116279158103188865937510087358342502306105061320944749346453947114256944494998398237654265365461748945169562187450764325195502908342057623725431929309137381937354286405898684007516392765202307802357837278875177649850492426666244510340499293756874723952676240122211363929349820986429988247216817715440956925355769342958609280008215222184986102855206952126899656463645523743236960452510459671411779118472706299103235813911065857940883814641259014152005964154090536542887450325057121207973814872993770989660957085809777527455441970664455077537013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25004661718468066447599688373926651233982595574416931831246191616914957744571839556566053298468740459228272888861473305732822422414774778610714192866967393083281386777389065023551456548841518153234853095230251104598968555493078430977928303573276641787457409518396872474038270040481835717137042494350922842127221748668863361382269910816497192586259402231180216817412262949116987924817633942702855397760281014181202879157523094720496557073373182013965758455885387908574133349081928117167161170890517351931834049673665990653597779521356489839103282254160153812241559043432356176380447219803052954124236252353781773777033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21171024812921292964744538286937644678179785179404386491185096068086092800676353950595532335540806521952507252304722795306248828965579636810902543937238006385105635007177830373586511456171414069619583303970081198885008478138718641827612872254332600603392468858209279274758161931553634739709156945864421955350143434425860842001854369335573185749363272879825104034044356938304620674209514983677611094305504397873072084528640943424724794608327811827626529246984842022630416274217043965660337796094232398267760465370475616057626877476248220591626347945565820834601072768476185543515959428639120415232884196038692726798661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27413737664113548554304588650000073881049160059889516546618096060035636875356784718103214267931907765660009973605996509437714454179929812127082090845636102964053746205208394348851352285314349466662546849210235621669883501492357972298337513880301708587870439226772752738261295673001100595271449114715755272486451734653453588887258480741474087332715932673859321305482405935015795360684013276261902436467403820334998081325048650792703809695946705380074342633286896195993054755586875366507813083469581062365871396159652669391751438555516331971974824030600405552281231626670289928545721965645193836172392872535387736420383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24961418090850777195909418970238092407622561854411863376132906367957421161693782548036580206748228769361948475674095597771985202065895881731632396116815517978124480049476613932862112208982766702651050958202895627210840320076423415374508212459492006977456245633789206068105576831682351515075816776342383035420548240777307922464553088895090102452709383774549314379385809644082589530607481391109179319685074314689893781145649514597947187397119318926579249882067742160544488212990664371945359166946828452624997275502071401628289290124175819749615424814513602601500986807854637817591506282572900916688793799568940613476083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25508082957052357319472502685362779427956066246328147115399884758390623900719997172882897889258749848992688265122765369583984735039109699055221977964598789014660212545061595493353400610675625333753216477484151370144569374410923377837380888302720285062486080767630653860390497855673747565072157734589297465053626409606910532382453462743423047979725534451818115752138994021848008394242671955623401019537050608431143743190155529561637348139162580576643836757289093590337954719457080502391576110585962204462958731319745824912312118521410534507722421783290076429634823091383507850198017496467974487519501459742253898448613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27752807374943486912810203760397644242809807507633829148405795204049268061089365170717682472869970996309559880388610525237828767604580486688455371228907440103502773208692676152516701738132607915440837461060184269412298318073151486978226768486571692628027310997748803055509391514455632471535886510193132347951825336912514830289203465893701251217621646484552395447405677424450895879103886164234950616381730927748218261126082443827848787389107357624838038299547167503180089659915590260109090179658871176391351889616624119468008193265934634254223389258417270964909061602154723511450815649724486119807844619932182724348813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26187222816058763459156122115857646765348700945965108483168688653568513282912538754748995744757720308986259694344253717233341559557736048203555818538597155088976317931369163169274838200604836680740841870618906306450308836177108585192875758213393866314292135241320669200122595564175503497957681921132895438975532921966019416351866075899711414603515827084246245178461731070549472383307105955907587908995382465954944619562390688860345919975044483945947600521910613168547214434329162303830770814956006461878016412654364546596178849181793907281674833799977275137789845490181003729715476361376002754769952511807517339665503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28486108102567360727974424915389706642864076078718434530255681573898863073650172695634576584203268232367389599466320913084467770912521093980232436797873743579076535576160902710274517084280305640697159931826000506545791405933008173130068547209913081832553821504462176541539236177454280974800816784154275649914458922031251644360500028174987681067231698288029850917933213854350935245453240961262190976832476489768405251198287379175266433732485054629932103664393663608845460235862014349227828153687749903631917236130875614865615994767989124529304179170805740176618303172489633787134036377676078453404060917922264926732927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24959009271985127157440304900059139189198209479118294867509478457277992058205659239607763801633697083578323380280798928499785228417120800897110330788781681618416030934345121748302304604096898864218755402303397089324818838471643329697664557668150449868290875696670475688626334339102615270369880908059127215344462616489287544646126279812144156121630406708536389123091515478903371872311032235372411181503337983255165526183647535148093245450176356839798280806044126442501052067948853957813447693825038882689149474447482097930806783113074120953570367901432052740964465338771702444574748526183753776842708814159506298985403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "754882196398154339089000697851268757234915520777380825500241239210497441967166639172581815213977990330296357138647346007734137946903497311979057861227569670558379616093374252261764583509757437444352233984850954379841564877730590587046461265573329388281683669199458830787489604532829714883646937794590547430029928156355857791727059544243664610778658595763524826422170813544317967706951509602912191908831194637297738376224056651735358108275180228895273736280570513122038610060964572369042251636712981245138670689847682358046475679833911172561288776030231932459698225826329705765352095493440662928767105313530000653853896870056903005260399512691917055687578514288384331169344650605890642459856467210708628246450524301106249911295879584573511075983759631409358834562674407316581496222338591981677631463009079389410097842290947061339198396281847512427477269377549963401338004390911031293772927585837534350700932492113165515893328415269276912845835397488185673205026622698561461405087097314924423611902089732487640795369612613352845788090454688122904178428251830505103087274392819781938345167904748017430747302903777329473900107376460413632529490334186980127756738036596467127232995004732938619270056386871908035221099283650431501905665319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "873561921837586212038119011215710329809014251753921115382544326134372042818520645851841693965042603087380170399400935938825791819592275141133114400470480035543158649758306649074393570235232608252163572963298138551498682608537164508339080203621422881042840386628011797455097898870679536553733500219476282724343779242724967809816356654307131227446667583029103503287690024987449045522289027950951613808793603813327036087436795953712639492566849936795910729739854918961173326453220772601142418974833605672325306569446399165123692238433544678533076016776553787477525065380787007085404405256590867732767562993454154501002681912757805995980722528107124019316152818504916746734577731602948278805518491226346946589834192669189184379291721876257870343056089529995636337075623888447102865320468818407631598970775838630644779923598358030070560717356959047487858847675980283615974498554383203002470007151069973309958988291339003557313530029657228773570383137714354246597240391375694534406700192051707087145105211054707793761687108630510682901472120427922462760280005662280802070851249000666333839810492243247350162746698460002851166744609017423783527919519779308520822499035019574249831760366950262283626832737231155637249348898346618975089527283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31566900771644009402337939762052637042389372997622666110513009758185190908373843822429044536566106804864073271414905009558446452159041980346052721623176957384714242000288397534972922241535264726955789477471079917569153797023578059863517812819663892211374768842401060766777889915126512978241421903762618817498051157634839874813327406957427933541419566705641247635923547882908376356713161375455705462287696009429466332557943268617797713806021304041935431145967721442007582939988796547757957881564953662116400436875267652816936867228780578143173041263359703403503637515764274519419550628809485993678870336960719984614489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21314691756963528676983363951167824133912997853140364696433373055873511467680590406333652891229044590271774189163031481226571612695314985008524199648832192067992182522210810362414437388430832666857575012854735180517668127800052595767337217407955807396227745393244674327824700640867471776952693625707713288624474765451093935308258967481439632132447264964715215011163626555264581022780047709321128990519529169968923177605609145221656645250875387523170170142881213443944057785297686946901151400162672630595272560733667755236771810327117827090135495826326636921598263448463767180065312065731660308163271812698364512610223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23993025906827325804801729233828311225815416880247139212609317442686738448664817303616091666394974796418549954217340707320030784809720202905256506648847777405029602206315820551612113493787353179824120560053893479602859620542559925940512918352880320293191095972911598146646065449332630434323414496217030950748141485296505273484480528099314581251770671581036222173425163413912637267223319941600808404617196473721361984466847076547374106657940786893697230846152427306294652337796091631700257699876523600075858651397821794171435786508961887808923120399545420278893096182359225058664442159362705895186834085877135029817893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26933924417595349082581069078295607610614995334964928060408783625006500868349645335236987989802656833996214898482925429240263868365305945231212906977181890013716749113437147255698624210256465865071666345300242821636100804334073752351378552000473843469166985201585848725417172460998912876204630441085857351574339853435148294249536144897755293930832688191330591632180615273938051475706605993040259317378663597050109172397255171159648879696293531818590153524796296153471082440125306508963427105634077019959752982430677877610497239449859512716061213448193826414487437790585882060105642361967645014112187889716604062505671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23741686379222310055868337016394499507546458020751932613096727309805905520093984640791120647686221842433659837126395202017182101431845627713565722657498767723386362109075808669328488874659223167335495297666711209302647775825512395680009520009681414741346112635342650992877639513925628451874702217984114375808929632842705580217475842754792342768765449397863806892784529279387546801763942660742173163505330122915372302239603731393977171298937053311037810512376377070265122214410291316991589661040324531037413269117212438816572900184943706871710240507351707802411028664099676728712806412596720489915249823025393077783773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25053080037453535397141501003954096327809919270881099257659413646943551384343854024136427137071760729839527204122755811992769380851278347412796622293318873180505669009427759688228862419266007270319173790582507649686045394142877715867832621202571870222376476088908057303350547086830383161337432496070374027607470054218968520542227458296944296228402498186974596503495823498200082075639749385223026004393544778802802784812461697103329859590813671915399293838869694879485205653928918694982684048162393330823325855685117047470291550100220569741047829020971982461828587722898162275742009611051526073406025331859734909856299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21113442935186313932528728651021366950312705739536526487612906940237087281266971578310409013382191823794380344077377890761841728640376161048807345749528596654103211771162150986290485215857672623287747340132986804206402929625602740046400388150468688087565292946307579758873551810168354383547289183837988803218745271311094460058532066223943805971372100611957141237714601825196155229094904443790199311821450464104529053978198902801669687445799855127439991285153119869309664831152977504638845275522835480290905606241437826596325560315159396480104180782477112746611383160113866448100780751798884750347242933758420579598197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27662273364987972362518124864741409500755309667816527852528245133133920520112366454166734082409032059293635641761494410200722959767802756116391263588361176512725731507491894292953467218654336980512420447375906996260661829345762615584878238343729114992411417589357724891482593300441406535436228196017641989817516255243650068732288879350180024986271935227561733513650062593183922570934841575174076477998318365855704062758720831808453016001740967748383097512639993700851827787554885722788867234977664765756215301878397579151713632955593807393302225750096590981390206267626018097797997590952892205129614537561502932782657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22947442215613426362575668761141158280140401977601126964262824907316711719402157589130778706116987258415688993688976237237137496416566040624368832332804663497978448164129481296557828080763486906501048594929115994520060093170292956939545833319820893056482659491019037853134637810251104150165118021498695348780982130447712008711001963014837477940827787219380728765205628306439647023592097791636111278359725839744781819311977349570408293784820655998048705076281013671273067225661750939300850919745554336128969148840608084634554000595888603802077069356119483949324569934504470867821275865816632729653631147316082115636009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24230721832390842094120824597493772510018444117614578170522230573426001760636923979425693482707895571336701282214780919710991318502324550120458227828977488944124353926943203131246859620703605209632937118336370156548933333062323677289778569354484450557144966602805207154147300949926702717695672661203853975999861616229357498835050643144648641154163125386791625272800760482892054227262154854612885247385164074706320398362610025470781625970260958004378145273069091377097411540856618865934166835457316742851234156057513529784976587173230263487546659972962252418787986714042190878591336884563469339269995018263972139184537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30397334610077653244758122198596779760846708352173988860462019963494447252005524624341334323532128397644869619510144903486821462582588140106539063772160546360013276117326182120395583627729376946089253313948043013325648299368228636043761859769907559614319009473352703348005406587435693143776764054574560387116749566367587036407289062598444454484694126769166572819582785882872452650009771163575332944780807584168689100233823718789130772662891235020862360938466138176701439799401557784824295676224363862266862511647690057813830973912397193325409500276698425513018601230890325326400936574624922969125921709419304353968639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26323885783202304267921744367534659003518399574404139082230706559121794971738849092723503888643003279716587396955906817778513383861079386457034967100962215625516270924848846900654136120088833611924187867478329749471905022561958811632550625334713491582902614298766844593140019864648971450668427038673648711149805982897526974426695982691435591596416326429119184036658315174637346759437051573742075093990690258040970193313005614152101598804252717605501447365636882879747942641531069295511501612538397192260723457967321825901145398282444401689163084069839179828501199952292265812695052174649607782384257900585172689918979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24298591166414948054251571020082313587136351439361568256165160549078660745407562954600137641196576142675257070828251557288845577889192910629661934961771164223478001016218085603457019981180277617636871851050585643338639162765383875786281990237398612734825424992473926208833922730087746146869761178348823803121540491670868324778271091829655764417790195019713808438739416434878154687444734979279200349754783461746243861730218730364193837658898628362670647487121175194075034079670799050980276295285530935628714980208172170835118112500208706037164180953933987349413520960789900673263615196044733444353476020580591135551487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27485572730682315962089947414446566742051029540612400713993673367067083552804614632483072172530282859319783790914042179183960809995389699216876027386542700675030749398523268968384180182930286386459251304813853352532531382378741734673671814117422403084828454314317098947088710592458825254233351620822347287987529228277173350649546543674248219881985728358694263131019164122375735029673375676237731513260632393430240582927662838104608542856618204487970627108030087902748311836310989172552073902772582671000422671365110375907083118737977369972303363777970202532892627229197702696739926555915987266462518042316409661229641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23046848345538954705802687485212380274121133729727115524185714725191607916505500291862936855592142670509783194357209750839848524787534656631017958212733340755951931214595194204159548518760665581573742246095101226263287546279338850128607477114847484397928368319649051351070864875067373268870098646216720081789205768964060283432300761693932433875058350692413925725556237887488125476250908328064606171836052723109390379423453370481538682964222670632760258856796311511240073369116900649044136945431427421551299885784702207252970669330251828815077129225531041276296200318311293634792389863406359094968305948509628540370923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26585697735353584432356413393754159438147894730628340709691112124478611365057214491710829886819416339729241448720452348237731885456353419271139581174173327566684617050519871260045776441127793996738930954880201949043572040983806865811361254031350884754230436526103633598845037635980063907702754641236518535662108726819329504078225058237553739400441764281931295088273919623428528826262778468137756906816530601177494782201943980680623024540565799030709140417165000902126221383253374594052134553651190911834220297465718708236415446432583956339284543360665421204129376454923418899479833824795246506718957821318224517918289", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26847660260021321794515888933452091161934452509506347958668714996146067104705906590201802971349759922685766068183521319828019037002848442179773862866554511338399354445387124477967568808185522377526795874374837871213433995700153271520510306674262187635990717600610752504279143218382302184846241228705500893388793518932767778752535949872486126759488755823373963819078059496072593576418900470011758364183776855411687263276968538970388762155780961127134997289149884056315793820652315077994465884291372329275374551600059256797469635908529745731545875284731829056680229741646145338165454413618230047207571948644320334800133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20179001121101879754585344659911150603362139813895285967458184464756025821869606928388787667100677577974517248298802973448575313774530166494139998317000010961906835224551395691760166832542767784406012819333962911820102173307058079858905791289988151595280185751541945936338865477031352279712005021197201582808647814851045342610569246287125736291496460217675855363259678951806081456672809218971747345363193522223006622542575798726549569501062854813154461710636270262587689691878569217776635870468836860345928395143149170433743550246002248250133420468219725662648190833870053143386876557219076115727397978136685114395277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24367163661013679883628615361520269875649934779584717516676567079815566393013966375477868794176050698340884493646135668590922411881950011520741957891228473274935553270919283235129720262999113479525447270393542771297135913924085961754457605208411688375790585764084028095802160572443716923348833548804556053839552255723071600459298542689750522484025734647403002498076263554788300853947513982124579853401367162048024184415235981553846938451389404472541447341901731764471217416444127393592555217019892319659665393317808252272902048689198803443013353978447922441994760874139134926697819450561618426765377299150372074750601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24336494790022234090460132417212966619153561854272183678413887727546085944572233127253042246040794317895006608720541546346271599679961001547615162845567424930770527364358943930808441470151693692606750955046900662694475242193230505738272000264096248041405903397992241188880149451164335526495296874721032640495283744370593184620777998130885422052776868813271581647491159612919291893690318374303285161543741681630831632341281030888474103627283305077839292578377591310882488403513503171701989950163391789944172552239282519461662125792358416152913241865958158003823038632972921228221913178881449235168942341493533879466491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30633986589064618072962644183579273617811570363192566257945940046096160272966359340712781610194565517886585099949480880921698057998611144170123362508958032220525277927589937066999707638224403490187351190992562031979350278138149242252874995331459416739447437539956202030841863015977654453425389166705769607651370588488314409562987178903224006055155074593743297271970719598569947200869365899434555933300040496830346277087493530904115424433917515217062534194805586852327734464320207951268044044352686600502073886617507693900368098825521235040902426637648548052795609157602081867553236222710174349990804325564862106394717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22371856985295321169937079650089126803028458016146456469215220103191390119619621451632617326740277788580916414678095164996642277142388236143977395213433547805480258454665823120861743108258297331425449745323817718919885645224049450965859305132513982897605146543111901909864883897205936070894531250290494960620639732431687551909013495791178426658870902470297962115873865646571107987325272481550844248532570991862555377516025961881255013296766206493705556510101191051599230739404081045901457992686505384491345531068320032034144840867573544377132499999046185402617169389365857217669913156135708815375126295985949245389913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25120124478942200224995708548034981039811669806809426542166101708844755422357876985126173313863383495637975862747127455225131482113952971040264174165373908549364050331608734122893873212316121316334778535030415607263918017609467212854148439403602835525667890659520045525434405964917345652596464004634214089093264810792010058897325436393371475682304071169420917220220886979829255730288255570018869422304530988767951375232141670079451632499172618886158672275792706578305552289686391843822171382412215556738963997527066186749907475778720558979732842374490530901099432330819340965283218803398958353339026148571544668988371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20239728352461568277619322964108103138915244243366707553756201810896937741172479663874168045714120269383540415095343138592492390827364183017220246770728070730214232636232356273799545787953022335629249204142465811292284038306381721916986354751244450968627925651718042480524405272505126601866266860312176362389323397614342272631378655933847177904452504400146286451243777928629359914996751982137082377833561425481232671706811765494780776808037762546945549639458004164787670212490444036054996967289047449394329993280129587948887084280705910501630601931285270051198860350688872868817456803696804910095493195344886721834147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25751778776014891313931651317454230165421455755853664948700669616966575900664561713172866703864822532179090669721280501846542430792134510540396635890489950292978869059964144577085725189939369878050321614978071475807824252009313357177728721040165728256124208794530136476572633959618106827128864953829967423971475092174890202577253948377861792377249447497513994148642803594427547044562323938101646363152417828177726238967265284926445730850761744992648740707420634593465194413572384559478401475848724160554422733704339104659217292406051008929466867935733521692197698836723340764091831246440089948408931344921824570179961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26479592946754978920122921133303889918750062617749136247162353105352992342134054097968362908761031604244415144849553861809478371440129805133162555683362329603045676266919221777747392574529458953667948910409410475208724983028595186894632406102907591987157654173136107684133569570260129632627940011874137836991891476461762282347548680644393475687441846909600735247441587862975570072633123301979666780192560247503018385789626058742148718605836117333652514468749094790270668676885991467410076931043220523017340759212759943165509001591132173694647086047709650791894656126264691918210283537793620943036206617484496844352487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "28620759493898062392717153948143564701548338872788644998215904083580904047347869103387541330995553832043265237504945924578825243527975987473145433134002344099541271751743804956795242760039597945890879695256313290908259796695033258404413886174016586277256158480015630749644002303076460996175996315193731014564071247342914803547455427922866332067995545130648413708210644523506570842985766693810459066010428369953532876267347129526462232613151259573162278837571149812923769219777371401115077483292905422758661320484285817164137291243857663256854816724883877055900973929169626479723988924046030469887161154167697351474487", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24376037589385640909680158416670448107906799502377015595153492120758089163488048904203805349848566549370774068261488533748277843270720151910798741387651872533756181709149823064743029667103278580532559658102719470347939069622391187616750605276358560483930890026628779932122407063185198782240032322077392377183028718828700166593140036767256378379467496142001281347828235858256688923204182341450882578030690352148952938002068075498378630345970515105490884314693146285150663158717324579539569680722755211119282939954756865519041807236432668425200422451124674097782763207589519522545550331322496109403824380940409362967539", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23003167998056515289275537152492780", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25090716974746700265719962097389951841272497994937989944226387629717467036202194830676401824966780615185730029426888419523632634861324657038730028977397128693447677740184820755839503594985510722027690648135328370773034759111228554871266022652602109226577217571368194106388489072928409505783378129127715499195332916851045566735108400659736108296028622078714465140329172681905343762410718458778203774123507757971564751268946581933554956154625759780893829902150360674963055007906947169817363774582033379738613913428341968355324946834116678149460511158140266796223143072504723112147235514614165158691330491167421555181113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26681489499103951919169580441329363792259235174326707910832744057446909002570204999031719799368381789614260107815170854377619464504332526286610098731902284528401776213575949527920221299088005196382268054059617813981475107463243830708434169740751083767038628856532251379250465076993001314528439943081344874741563628141483345726307097127544422586684565460140611364419378265179637711531848603688641348568054048693813192866447813229645055801033379064974353802071109928535483125080662442910175810565318559741497681994517665241075528711296424188268181100800137416211590178493264130344041583342110818963092037830957303951887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28143575184689456293259027582901520996207242482394323322321736549536582972642276271530334771777460316465857868241370280873740818479711233363304635638119418406061116146859561311892023327102726148217006466355584174389405423059001877835579826106401201981542509408379419608186014826540503128754771735041244450613482368010771826424090256719682483486102519711821769117732598652963968480016701605038068637355414830728715976047759876326643332491886414728890176157477513399891324489830744398900690990576909766192114144582124364823027809902524927475953688299208101576775513515737414531707194975168850647783109831387863984347221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21468491026341659274175379988546217018112476961978024490738440987853893933802118300413296851495251867544210718804604781876633125636471115672242055920676842254221297488637365739831230160786891532781057676980848935767696710132746225596081318281869854254331773430667801726474053791304512611927298791361897335801773878784078998874589335997937936976147789841377786795389530638535440532686111080877966365560049686669245033237412864352999415867216592186148568983565687249445091465615990940651777003833505857959724431572728692515094637637206921520690630045366157146756055021560518126191130908673875222178458682707278322393999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21105417830849126257859321716827015390941122931330445059694723384424304146106688042905640531989205516193227220435557525232963948417193041875728567955971987108046909029452394085156627630100030673389415363687072538658206604164333406265741213103323779683841567074152435873328229428615477547545964239383675250722742489720474985141897369965707593202027591187901017759946794013575565703641511451111564700329624862453833681531515626247353951410432045843343033808807721273311056530619989349955284857276737915412632767021156460029879863282855238901177999164109020244999852711626385446478507871580379663773837460595360020971937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24412108560098136897510494578857184670989400242716326698434805696630168112041161081060406742639428167067739055048964583347036240767027083829863299775106339024150104287386804430002159579715163478547893277734513863887683536498137651354069928194621625599602460400974136401728449510581460334043220740107097640782213911949740464921209988730190050086955776731215538569673925919746630081351218706990943552332563992843662922157895835086607780451959936474810814866880848541318295435603369770888706297968150586945451795368311301578933049538170810912268639727514667192254680799010980820593851846686836857743558440870945810211707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25812135098556006577893744196037222312991396658958561762478667776606474525285796838282071224476626079842307340934621751058258192801611789019466154702941739993525225355982312157495233151352115108915670812052628214440000984019544897114039939896239009600544308669009099216040786302868444511168240326503756965085651751175877866637931976575161035216056928768236133246568427286616377579465147994467679774315603069527950021019957165453985425733831065907048311859467737563829100796627378998433186490273812304391295145023579721276712022952687279212681088237022532750830940628717364245319652825913099890582009869202039068386103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26038540068425270076136776126098794776935047759763335421420234006006390922581940592907070919799223959021639443523504204332945027283643379588784065930916117819194390705820469180588190899420387953569193933284866799413412718382220412895352904105354241236394299990325769305932660394101220381888353771255826481244823614798271169707880390097717388848781380487938694550978122089206066567539545056388563495140861681917512879236463528128740138910814291039356556474570541074979509238668641012405166573235103697705766291969711256622342449087987613884644893181386586222712612458015577392653271380252430995679098168825107169884047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29213047474026265806721901968580146226915109722932803347081484323781808142573981831810940755103562516536195239808675154738074905597115906278519895977785387606381123736427679206406011420198092704464714065977702073916362851488663523519207614109803093976939687940514326654481260577251324811716719393628692659876260155096833408398513394778675791851569260261711183781609597382158018553784313648590148443561864581754766644406106959054114014503887498442369987680959453964807009926188948997542029710519472984780541561097557673720676534622586977161018704811111865904396724516818707053723614908301796163017469028968356456597543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29145112180895860321935539927445397084957251846276224666554489623238746984220266022537358387429352936524554502599403130746872651961640032833851070872806761183254945692239693885471609740521638938487626439943495763427299244501724046242297627256367771131031711801848720629015342907154132617101806400043581063633619590687331282241611480837368802477811200741758103887356064455486483752695898671599761931641008248856129844348299270296938266658447581331590382225841055830608104495566305843751374464116139692845992802465247876540692670184042441619828646039711091740581421629704877451900028283315173632334777805844739915210483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20361064778673052317602444918408373962654566471017681354336820799171446095325479815516194664890056444304737851934300430934051404740964216315826298382860420793645862583256410623121935783598301417611747653361194305368093108312496674908887870838697010232248748618644074242178926299512108730058862326386936379169079056019724860325429148722321254965506359599495992837251015785928158162470153129741022478193752079930345036292540502639549050052748042946451709007062612663389102371299913859862693971100439908300103205950581960230933388835646490483718795207572139108169421661187889421691130009198273093558674030444524668217437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "21267938965002833572634802921876527499660947481354651961198509533951638428166581796353367073197169703393535115936981742654617755068662267898894215778839352352046305600454256961269403211893676218241998356601763025563866265474685859486650857642826114173244584702172842530824315758565550982794327395691820083284400158616039132016574122150924659243271243838333029292157239356914413918655980197774842889148374933160380265448741818378956683257128062415848966079466171034912834906218953798752288427627130385496518992736402270402595988836541283437521356362104936539126732598715171253848672786217894585902452765372947843750877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "30642603408324022184519701461256019055512391017682278804152007842314969560925687400997826869179821208815092515873570174463253784422593196856025824393497045522768212369677546489537511253229182868293794808539374200657703742739125715203725619676923589428823986077585003446070624316494700985281879720978158302878633266850192353893358939263961843249634437805969778442134163740489401024042163565941065536770308420161251091101185581109737345008923930573659840136219454086210870144303124450128280966545691362615984000455508514016299508092101866726410805451375204369627514596191446917065520090325048679650151676973110098052687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "31748279373175726583907239058466616790141745544765326981646258623406415345117264260997623099740106546795549674337954278967273562928767484743965746078391144841824978637392095959211390634298168759034317632284644069626884995152786098308186391623524965736692247735990446798434926424851943119780578867852432398428067363854642170608875480083766843601579801073112987773871952301035868898114928080142650423544713849908012373584487812209686511410055711583449263715434615719531127429813097199272376683911542763520988324995184599502070833922428379416640068028486359374296180807683061765313121580289729633124774076470902857605921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28781493883662925929509555163132804224071829391838547518667834858688642872064848248716459822057260050084742927288957958379036066630474481259216214616218083021582797107334091329636185756593535629615423870843972696368228185974898644367620712052595068782895310620840685007395775993557557921957396104875534198944444820119984328683693638688588747676934016165182473913512380829223153427633813974058940920794235462005924269712244345682196040065788033189508437571112790755954972997917633219604207540265936853878362757970364180468014005866634677764343396825551302152564448127059732709131244045746319927363739235609201203578047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23929803939219352346888122265976694122030156044842439849411086309823380298589311985863666681991462558632590114508020796040451364429899144869710411024623335171336549364544299024873204934839580192141902523184319074452033248188666016351843677892046562739839237246484186142361689394046356971467155274421665982822867769502545558838187957841923379890571299653157533398752132365812948939563302965078807565958275311069567279051642704205163165576779141622146444834154287964232190427397470393850221996790718119292490325223538619651235979090551928323763212283123591538151748541889686864539176043601726999356726248472831323578329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29969104048247739054929348862284893348213326755946347472891197727389079653891079050113999694250109856755878678054967916272098822810865956929967062172583995579881716070655419220668701281226369435681785872613109883334495196985216556797495092683686593569391197823469300843127130292623300500416545358111876821742849022501998547456806397540861121696579731749893153024519391568396102013717335233978142570989049688481980107778644835252241024899413241953350605312684533669170898956310054359298587139719782473320220266920474819471440702547389985265073351523531432697196344879385886713963953098459738648882471507709708954946191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "30103475801424091852534428350180740454520163676523963621591731381394800639455434171850880746262469088491957808713234453435467986602537516642122625332361264562204802881958383061801236008675263077387794754762979293080088399673709230135244273196750523875225705290767043400513342391534107733860307032823189759633644567867005494681026497526106192436323014785171201913288561924000936185953157543199797391080744717507049368063154607163037102709840408022899438336108472619503349292707452900815873943264387163359963691372032395095900009523893147702329630519978142395486435253820158778322450628788350873068476183069558667837013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29474395708295014218673259686320287663949463997027045240164217680449251720261618771815987618382034892758188703937315100196209380370950404734404681972816247828548115261788261279385266623222988418581621902121577635234925756481757319425255362960338901442938567774572675336968098985291381489025759926443880572878041763121097423210677402252802396325706727766891434916953601189073466480935751990316190469770368866257537981946802445473495320819049610546742060525786794292616185066754076276368303878052634321316045444740895417418823457736640787175586704310172639406310894056944490623753348344646604626836360492100040233877911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26127231956458142734905587243952186020565056130501277920488561776238100041469434465284737018484012780858285056187011786880739119845381075702246972233183145743298292337105437022386933057441690581072725808614960274205747450868698540815076703452780575229213202237516513791277547609853445818821053147352791401994752510970449431705788222168859122126950760681732939154371748729897975749240653284466442910953010679330740415099210320887148331027314694257115721567979086777554170391702414466557789467847922329821122761208356557708375204448291574893917453468247694154936151604469179764748761455887971934858545848258356125815643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26934344418094026259222140100225921190125112599087424718698203750284133550010442666792961248867501791881247841545758808292803975257624743934951838057665598722976332789067391369800723532237759848800909841773573850945124002905719576379466439938602027473298496110388445792170812724072802027563237406941699424614830553459133329942242700479470713023533885790003838762637631245813775996180084245795437881322034426906990551427978293769011796681622836095190155301846134323382353461914506438909113328808605053110162871048820868591991420979717566651324095007522009690546900980321323855211469514922842994833316998079431651390809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24952048089304641640185996784304167356486235022837788446334515612049767835132902359424195162670596808054341585011374658200579747429091410970386275974437954049561432671330012333765793738470232597221726814310793082281891956435411326036831696679250273077626836258737011792078011350715893140116965915598055949821314985493323072848216486151040156551714755721739695293713009251247705600464958815049914314997739147675657709711033728819909675615131742401013835811506930736795817441937499538071107260534167545424331170668331534149111930948480810178403283495943161412023169624104110482799142060450772125906301343353329520941409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23320170435203346211857959471536475274634720418597104531289549150253968482395471283223929582949670207603581883307917060222042703520326912830828191928849129578709401161443205480122627035897373362595869055654532050907410591738144451346237128687055203428757009470549807622842740130169207582528944618824668247466207629927846192788732341860706999315058847904836993381489700410980921856854465579170843658167677902980866497706188818414061236378959289762117799642419473208788189665960590990270380380600892433446867257598693979853781038025701129358569150492145687370065244282066821920305234929268022068250354144756991074113629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22539644226637735277746037336293599354520826903920457607947745219159498141779735509027017337661519780764519245810103806922890979645309317084995214023893244229972476254343627098619835802844056612405242185114210816668360446933289252414084089856522538281277914474902807583239961775052632577174052809485034251114425276580732644023815847996595750470293550255147367584665136328694226880745944742554588387736217982387110192161400809820656566555066347077456107173898815072147831040524677222988467454346227143875431728514497477092304947652648369714554580405380005977350817120222228742608698644818588955016571098871686695797591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25842848059622974096786986394394857084779399334070119411835088947797724909164237676079124228364878091226324119272594569252317992786857968937957515548049440571979218135241854876838009414239083325993989334786520893802419187966153341147424261010051711581872459371457668781781361964705882512110610377800064383804486859056965702460679577985630890291143478645034938396974658038288988579517537501156862976413276780941284697424998898215789129663607290975749408611654167769203186513005248298747092870993424514003214416076096596037249813613356301354268901070149062362220065060316609749043955562442560344329711963456417163808819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "28439942034967208316188929198533084525356924533216839188679948513337901511840750976229997500637094341487506298162338523981959827572633068144544488095179630175677752720296304458900065466629196912202123252860975908224305222473867677102185597663732136623617894093782494291045342706226105277723657982163345176311497036115088239006698367904206217121656370803943065026895956538787042493564811856701353457015095340080285574837124527057688565766416014138818468292832627738583886380181416725636828797238432413142899456852986008722636215507556539848186041243797341016070757780561768079681273317041960830043176216678400048139639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24929014030890752923386236132076563864176052744967120262475875487762692886920877006487347491312463992544763500361849288585739598628628270196774866230315908567062066626437788746577379533967145781652800119536734957273772501199523864813004368064869180267173673989341541906771274401999346300582631094738855406644545186744391881874109441823737697480837118738035286917945011693721789237924701014922330129829035355794616384536565312228318966920287019192252636837874120036149728012362701966647204625857309568400863854918478347550162128945016767545838904436578416221087802365918025496326336875661263454302461125332019468880217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24440103172226408159554353616701007784863595717160215562344125331838708970586431168545685491208999435118941181162615221128689055524431263138764914906295015861296899792350878658345709513143527170725503193123998400864264656753684470087227578303759219112252856848744950811190653004712635577358057909154788010577907605136883952589881657656416934381602872951057255732203464621493885466534575019713094660551955315162547948417812302877907179712657204720057951660489541077525812430391674314058640972318483094928272000450140578562773776864601307438637308790867849080082702371359891113713547086769680001305679580046020821390099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "22286938321890096368338528802345238465329958462988800801417934709282432135971637315481817956018492442134842347228948694134314624296591302171674831840549783466256323877038596994723002064531173073598784596599292177619268698830197668253297514363777267610495300628197406390907677143116325483151252322956163963873793559929440109046877542502985939245248602284621432393087517547822786783196659080992799762125765175377607061270636858140882296726970356511566221171744964460761669380032139083865717964120448683253222729297111187189401126644558724596412667521827798850134367391820479349866626976977778435570454242628366166360023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24954035073365053169085336384688031872393364156474306215526834811218683252543386368041594964672263413762863749426858467247301965942940471743466294085867572651187006416767685906140825331342328412775344907999781263875160314830711805992030020998181555707705500174093700800005580554113685413667792929162192716764834498005785883664571872384024170306048321672745579657964118762054913435112398691707806535460422224227658557832881613072073787481651318693255446763091647806878855844782039307501548043422489893650111761686787637339887019527896681258288089993989822214612299368892262489910041971243410662710917273828421640993731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24849923230067613490049444054731135735484110609410483687511480426702491416137184354297159641591366327162460415246098569855100216882084186771721388012340874008753786982715913588031793211126562469605362045012848771229671717639720466697812913062941170468466778144833222349260234898193059168929579896403550231890244866730507814668396164159224998343018456019604845435528480584194357060628757736264421160671857050009821878030134902162293687114795793624331515672623185767719138724476663272528991509165187789215989683516219844685502966736404387109113290478903551369199749536690818125377964133884709425665697901766206140631657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26378780610194919910048291513548843072126098781545647883738365663781736800395735903214365418653300131995219466585899545780870323635567551105842956587783303730169092689200325257174077491717364236222396069128323477925009621317196369373112356848319776519815929887587659828276553712612812944635264754979920059370398553658490555980310958499950877690176253032658578651858617600496510658500152929892562638397497626525862675067592335548268290703555614536102067677720045538612602596653701756368097127238592480922515561783509116260759082303398561008681334005218201817458031962548402306369415411717002073562949691158202000018391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23449767178216943281635005355511612286223668189094408005460589813546380257724729664305180192293996971536524735976399261507067790109952496906312932918328056705998671800795212004296534626430995846938385472048008331080279586502869779856273032443819898846292446003850075409892404896182739403673954413643064634672451199698668054731438654084885823033150647593221794962602900591009089053034491097310636702045661106122265437781417453293946220325320450413223359728911372307659640390336292392214533452009634870565036846564038509308160917768316551619781328756265211128788856903251628952964191040012347443432988776387738856787613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29287464970307125150536995207393833357173335344568301150417454800215687270886579276406868566687546535278427803953504360016984971011035037271773027704402441275196350227955738089691032620149735374086301461460092661957433903364979403305955987073175404435200070048406112051797072486329202023465355088641082119634050966979658076883172659659076914273080763187223374233084317049299467462507118624772279202398740282814929731159404164094597864694120144235144678485195765451745096367454755982223017403308865000445543635412183695535053090845436285890255532798908314056527805352737156428277978328261548598047117207468294711984111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22730625181637953362529344957814722541455169493311367822170188645723332550739363513006494286335716850651051897236387789639728082490778203200403689808911869933857676095014101511501630391412710865120247095579417879969896510267771687577750049263702781187333506148740900476366101151668334673963053326854433537376943629562125570810452245986462432807997348692592575097403031683318090514741193945630100005688327525930466370899263699955028813545843470539215538545481434431359320535860870214783245485616707005936109447106138628675966980378664067523645572710276660778851437497776584874204322369730022638015666958861599212180743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25544875946437206747956519524781919236628872674202006453308588116390609316320261960453528814629292076245366691503049615215046386770992390430953888046495816509064702321651573870676383184674908337477679716907065037837678624703123194764069698972024032809221467782634249644299558250543415718393566944890137704776414888529813993974947036794539536878123023144116275200331114516401896414003437160452951627123153828027583918442119836198672654923458650963194257290430239282642430819145873956985229346384088931000824177604019865715357662612776229217781153365771443104802031074749681768806019056990415262010767781653891684352793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20498379641766805937740387179328251700447934209835801284737942207725145933194802932144217736656608553172842671615869380459787589546202511866439969279840907134759921518729460042960497592955849187113072579139353957771769828721371864719095847403879898552830784203009932657498079396758235704584901104777691681394177466139341319080088910207029301249641710826606156513117499773634170006181380375512349904733363539115955400272048755603427928377320093856188838955321562034300852533422971872356199848936729895565843983531994722456835168248259391844553022410688241742719089365293771887052108759842748498973324052053403820857029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22835731924086864977302792154502181331305813231397155763314827177783213134049321388679332111643539878519617009885433523443176896638130338691582084590859327142053664681237803829223344463414889875662216909510808576583958519803522005521913470690792204807059468595371167432532391473897324292930010148838507727172928658453225946848167989310899609105624535797216726101924475263644624940714988376951135362305072450435811475084470103623014746237995699588500158974891637819198000564871781267321726069812030788452801912446140315018902804181899681749222472046255604360563093034708666464436147388717941194712938044878767765725051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30425626141630403679434361718438835496911608287049253619745687608071804418570430639738965674400822069328520782425997899350740380529313553572656079313579105272444282980989019702314321736491266508184869445174411117861443246157620475538505363189079092264880415425112041198862194177357811609195027704148631944770093758463110458581261486190511612681430029036070550770065483758273150738601892513603612744128197885551733874788556997305419532877979914525671099183566524205705859851897189219257228348028534058908146326590623812489064459935179379577941840915002228162154619647421624998146830010112565429177575049831823996258269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "814562377460922416116644970254628966136050768807592306020320657069804977012765897634008253474024451190351515325421104119472855193081931516240637859599655633529974681467595288604805448937910813634079050219996313434656589483791967518498257770401169500048180137601864046904206965416832634127219283582513783584026240620222962419822460373261299981252964322415488020093552068192253304901245588045920281964541864826383251103669174821862008329249234998881606160696524173484081427751024867607313120621665996768295061061135245693576926994847890824981066959117146865473636872350243643477253388432332003604825498316098394001852708020538435386614407936998279679998187728603290698700931117295409734459066438789361101212297705918677061484319266133009790502583437827384804997544484038219438140705005282101303929283003185844921994067337869897570494728605727636602863012966277578669143930952614422560140605056911681519093571999131308003177257764354048986720733106430081677145954031316042232653575299879672485656034825077457577396218308708809344759800918677002715377424624181630213270544975136513467982932436476354777986467202113585898658147085271578956597690539910855529894589453669636360292686041162736730695183146521046656552923888255588691281562853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21148686498881145833319732817151049", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22051627597181402217155777239405686", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21912663143596078278647069182247860", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29041031860828729870052036359379042352506274129892313552758516104858082092103719328754620673905079862190374553855971907145169994144005027479863018562143223536815487152422248288835686848946918080567910425651206516923771921647908284854477905818064389359400132436286966363416399147572647172724306852544759943304386096727480893224406115939090556185662017496506935532362040152683793074032309151469199944536548679826684748095817843847328506638415579117218898059758645514450762204580427059141378604026381506009418865918452694037577584790435784793331927592434129076030182723515132199639925336193060468031323646368416559805549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26273532296711514060181692395267141484398871883769743621284429719192711311492309292680936088378183650262161222217887129799754564864445569912957060579969617138054350935778187513823641738276811559838115893663344399584820345447002859711807932671445929154071808366572744226175840267550010358590932406956301269291058990807111410949023832235539322291019454333483767549318435035790994571685608567838280760234608243814095944184911747792491533427424235580173031599946499021234853646706999475381283007421866159213379004962415146794814026749413902577142983229277609764921852102191893294210087586918270684051052537986089065000843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24142065751561868420210660141517878911745289111703464932060625123097532241193560588765750144350510756080288838958339612762834911962813437987475542090896863121891475259219227567109136717602109766515724728010906077757387159832142057067045494215063248627805240566706317363563873726061580451618469596021507182220708297617726732153403530657354383554523447725727167819000798322400644879009638712668200262537925822729895132371622118791044509859265253623876257479013143675158138850241579775862195170858753505515206175687465940089403319759552152311589827793516069025588585085942847143962519080999013597915505914972292144331879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24264833229992198824645906985961389674997457288782857065230515932884256702023372933849672480748595141202354329885092172603590513645998442425332869225058550450993799059185451409097107130434273742886916722143505538751837325570422244941692657695259923844530096429588440370848384338802870854019364371328323683071470999379977453325063836360429953381089119662378831336634544255500833454292736911189114375701510677937516647752482426237254748140382635906097272117301333521446852312270270415158879650723327470104113193228719458469862649410123701982932895789376390076164706816768820420328624181297624787013946103272326563777099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23593167331638571368125689666072049900436187917626658271967207346897824565710916304560623275762845705380081208888929915255478687853786609797017942381467688656773234997942567126567287027698345335724165820228442484885309877230315731281239305273860012845966196088192718008249439874597051685009066774420185135121079374843632616274438987760909865347674681079625134104587241147773894393126417138689010354969871719255777800173088686279169861857572616929291352742882447626648735197214719213994977237607439211896234561614424460491609198162429215398819539228620805494316327603569509906209973029414134499711045732569779040455339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22372103241891614083275191759688181", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23458514742474783398307849962139400", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17676299239312106056732629180289808013385139266210336849529196539047781899198323899819636672572103375168841995548292303209262858062538530330743383668574266780489802197265875192549152733636898501984416938527432429066929614444222999954348056180606898856363016923917079575697131719643339078807485364860022169129961186130178509107749193384854181120993927459339348425864084570727956049102392850021066419313252545294414264507250072485094573238142757689568754871874011138383650513811000053533519471970286771135863732840724719488763274499636241466318839060194729940046229878493935514943168721286393108664472848487189253383089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17389863048796838960260501577237406835363532612540736908344127728005888593127456899468752709347026085428321486545226763454329087365240721693142183822676425205237671854809348417592819710239063027210326218547994663646677907846549171080052248657472976236108407136127016717932961324069861469546360487617377569411270380779995771190580536148643008948093707949038701682551224936051216068326538741001274726386561950358883383132414438966255520534962960775529213804707401853443221773784909221357729840184323012907498578987488947596492685094323735249285576304857704849136554631033232174309709369395279600662520176995642565726557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18785402675093027683169442575897383963088533821405081637737634203882605368827877994157386305233488497815507613735841058395720503495685738037700277312144946465656153353314233446167515530070133889328584530916752806875608417281723101344993964031168593206384965407916530834662935873712814179887857452257532076919735100305951472873895659905836150724266336212003317346899216866825881184895381664693782962601132175497432332693702243289770565966645140595689959286282908842978000047450287275752137398938395866536925049614065741513852149642885245576542558402584867746511668515933471515452039880855164077172600586376125636019529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25709665465534190862824877596502668495471629386502192711957963765469419802684677984064817736967186648327045414103541968373916342784905708329082610044074409843205884584076284934580992100562712694741541114674570051454916191829351444473690332561503658631056973482447166675841628627401254252065406466175153299138778038163116947838798121143484304329246223117074542155008513437454369195351011993024973176953164177709361132796056999915274407213081478031509455759082715324137227871781995314533626136459277325450709956287683237416442296654511464322548985244865802670126798173117912052831885327381831765194318632541888634393947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21969482267609038160426001672038904", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26562392641898641971151779724748009394785992012677594025659541047732964441001233800410344899188188646578668346014065729915365898764693490134045735765720956235346821121673916841906514727630103423962064297138584535980132186385198456664236278150033204836632621025585695990253685627646284716294789226915227535487217982358264654082069262589745569848274723093124044807043523318572140085016832421210758536601736909151124636875219138204217434592257153611243884452892742991539108489010169041454108746890729313401092297699257915721868637473993435244135297477370562510786312638297605853460343167198600789155409526589803710318671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "25648978213838169752498842631817976309306240102001194889401295990980502931015432714397197195606285851967274410156866494679826346497598913537941214745043106613115806807079701366966263163916056308830055417527665618723447526870117605385111309914698158019367266876777158309072859004736528600792008366386186133360493578876551257715832945903686503571696833822330650957744878966228507879300659835453623465512308193083095786750630483302605809925281015210279078449431902725185580032707991799962893664309143249164011008653010120267713785241690620141892922804439820358057667990707609302370121569794416472269092165096201216015643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "23906103565176204672091485036153604656359099017281508250530598225237553166520957737497883822966977618594789729164244518117775913800785380432453038449813868794235132399224731619352530484277409274682167122776651611413021721893883783118051129329847541506984472369183055989808209679870259858950792260361259196251403575302142184630936508257854717704568953160904961299377710939370069094313004625070113758100738511335624077338186432906159090634493686020892478553218805841306065874231476698865801586064215516302891206328805001195787110271717425666976155930065990642612671554878626235211753229480560362745280227834190824529179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "29122846799502902426413131101454789747785672388318544638502131277688740284813812726971908988332593525549567773203572291376062952927564593121092178670394420592693450557382654310974703009335347609329092713893436672164754581907633047325774517367440564028023073627950012392857978836811523298554656722924375989304348172032001043475364764691792415870648551558469931340860500780487560234203759464273919968939070532242896800368386236277252926596549039608692112555083194437239873718306160070640050957449324142883858406922390864065018903009107969904474894342804496642797841993933673090958168497765373824391664155948653169437413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21626189896064581372577218256237069", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21064097142967445461987532255563443", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22951190887254479892384224384811478", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24134701661275279445658243175098327741158141303901687251734752979042202462474444818562762634665268072748254267456773545958220516829397907681738279347439884357421232074298785318103819255108864868187184563212300370283566368749966559685806061372094372062148373263893634875032244881928182852281737003946818221068334945835156248128435668931328981355365465133217141669714123665647582898230653178832314184877159084438729043310519223722506524924678007497829598484276971045138791463758717031592673442326772115363357060831802151038662408380322887425963404052776251904006903849347317895592828622263609206091789307046372185854211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23714576438812308228802578126499067543216822604698654315638241783034791241916773433538450206717715547969561349558369940698569350470695506612676714893511426257866058230825578283157622515988338631133799064874251984232338317281699715914066308172914249614719042492666429010663628132959258698012310016627547012343781006581013410453244053926616410579535851287182910258175389575268204596125632691418817029163014012056318598539181576307020695708781570579624186715006167739524815806988119140201161874889847103920516790703108601178044263075216941697367120002937413972988207884827581212752045587509387472489252561240601692096637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30106366924250392124528069751936962568903829766430169035098899022536062300907055700195514758583255782117366318393394429651262873727466699935122902650247178821094148610530727005446629426520246803212510713923291365304188549646125339304456585960127751135481951605702281015551727118278112004148286977341249757874606442141048756430033400826115641907572441986294381037755517447600851252253926979991839431383155202659315093329629620646853053150687511258118101927193569996994112014819614778839915989226741385040245125772894153880939582725554644705959782642552716243009216230029629868899774640981522067016405420926263651381407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26774683161477554793752152848311977107830120673772541288712709392386351282773831339022120390884453037862791120779667873896518573970801978379195749696779793350755364410382928650832849979744272545082645062124377546007658297525319777428145618398238204084350536738374641649914303776999053320025744514133210386638070540638556075155204432806508351729110206580943269955550041617063106385553124893030343440670848454951721549740014194825657350189433521023009336123743622050461017383213660120085304896462847603018990709108472171951953365301284788125548323770950906533852720781152078881824631026681503536708516086109485799606297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23922847753162708228841858139838791936163768320347783268591825038835149351691981096520911212976726803190530231894096013302122346692852927334268386121424980520031348626815496781762089108177178117937230079593340255369007119504558924662931442203489370352507156525392906856231740448483908424149299988842834875438390697182836932128335358771051817559160949003200544519722311390042341737121470784247930632409477763874772816300214493230533919261888932547681538405417188485970268832628501204946579365238069648151741014716652658385450111751087617476278205217468914500910640274439164623289081873306276135281657541037854992703779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25193717395978552946886603809148538861720369662085425007439533957751378775104022944714794275280117737206945618999602854455288703895086183979294788057626332896652563257175232875337728445058013859519354261035225719203948802720965131316847877848865784513960511099526099415200707084400396303598890864408072200066689561162093208707667389985393995810769702857621544526353115648824532661146607597653453221759619089222488152001118156638419231994180596326060635099957560178678617290270609811429581094616997727573980594311285256616853874877852588693103615091430084465676750790885222294153902054121817381028172145832138410800803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25548660002002849772033582055068326506646410395810939995566748776010100178581096956276302691278982773248711289024789964154468224263400956083762959584628252800080876986941978664926804890916787778590663683871444451466611431310415531374235457619230413900233051502205616199711058314706789065953679538455401801472427208430179331936104793932835020567061263772686061792632234966255996964121094131418888889542185752880857708058279069310550518150592385674589105193806833600221204760626034931123430394898189635975668847113727324020726150820340500927799986511504874929542044077141464095339178610405024268389593035333170384262339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25815669036083940436391765558418233680030553041098443323187000163069874798618509214069043337650631195691819780138767431741206232946195137946120505558712695017877997906037895850548668676295658472428169344354706207655156233064913575140527173283353626577620185274504910298901526388490199157759890430424948093343631273890950563417066206518659385083051084311275320983059682487423238809209559246764068497377500477408187981187290270958647568205234518826122452845331042200518972514064874322668626704559636337961542083664569636397558175552644289806394511101998575711174523096084469453443911858225640427993099116875658471127303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27902751310332756085823994498254137419974741040002834812495844508769788296096735568608245983281045520783374199815920286713608934586365743121170251169290326881041142567964380989621192168381208618714886685880003937306329536649287617469547553413436489108177159202863591115629962224415641629854174678849166771195375114203995851412086780983231995658596934371175414974857066875863454362904204553903504307206624597266389682135775235477250088032789864949283738163834484455738867840272960329980853892852161629265078202225198162004790589888836207615589406867822182458188743642070856415164815045947636284728848305113641067147199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25937642187640773684630016609127554830406188045793815593303413624713139676420259597559769853931823716100509230485688867383252950351320493932165743849700429098769500721442414964509902903273069059026698078125142387023357685192345827534383008021926627259480833185067698567669227860630590215611112358370230922277409563520577784005524365049559210660598539900053433970794055764654874243783940449435840508292265758954153151902855501077467631501892419422771344694737357193017298028687351445177635362659861328921847415865587901018883398145700534236441055979500801309776506579989465739949568516183856025828232950665482400682703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21232866745093378762775226606132281897948809901943556564393742181475537255941116788355521636875113776164071189735984214039712332161518543996460111552095674742438128783406071875230181609028551022499829331485550805241492662361303070440290381193213351149296385905920345195632831420467901881771976453788992430487150279782771810357089252853104864923005542080050875693268355536085360562093754022120442672749540406138296196613670970872735833505192216362896185663389808362594484047260581479334544611105937681864544122920569391321002963713823978334995208892535356105349088733868528440123513728314088539606754883092391703851579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24311238526464792159407684582814757486203088029588420139311695513353261011194888159499465082244758504462069686496672483500000615646161638446548664376494360406877594218907504753861222674393523636462841521021162663320484566086096238696177138280191430202711790101821570871645330453814214905391371207876013582009786942646327983463754861878942991173045709257823580906456658622608634218751237221790509375836414122019062942397103246239443048216718709567481942968268593129352367805002796951410649051634013697405538425315820988630531609744681139472438864262553256775965820058830950601812782610789243260431007167374656360670047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26984669139210053814097637605935869189982705720596169090664339076424968311588951071984509071586594468396978175031172257953763812337302042123899736066146418137932649384912090671138616787697357229021439473759780617201643939157634600634253646328780827586109116698341099945377600061367075956227960854959557616920058714177384037453395301509565269604791075664979942141665010582278075741245677570055383256729936147089432939302155167884038065401879876712763340160010966545623913462353337277638164282520268039522261590972741147220921119903339672372298516801281870559562076915948653251315310111586156637148207564158961401801911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27469701862323979958809833367560268656013614780905755124712455457685054405484566789547564850548097348316573706241354963498105116814936335788607886186599942458830981200636415525441954218648441299202993737958236703846498050473235351210963195923404330588975016032964145593585592242750858074981566929287011739054195022178972476055317616431547569201773195537232204010278947470790245426952655696096248439225782490319468579429298727466155722367054935851687652920890110639255613528721202810156641980359295392507830283872611778675955634386727971375489515741258729797477609360619963553552459577457095312788509697130273609135569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27827922957228405561364325306592488532926135241463182726530033483845995420790535063497009434842060215531996471150128072778757872388866049591343340238903164276625769831886235490279739584014949875125359273441412312229081260586959375337954588674221483069786874852682299218491859433133543900571488392655935484472568315891686332574802806648369438517133578551497756896671997741216985604490118926211851071718932009599843048362434072554415633820973979014167017338774987900664923794095221427492475516479153475102962375748445257145412943734185325480632362805381931456027050596654915918422163827339199760199265899903429058855847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18430757382002078146044914803851111699993744328884899178613648845825968276781364783643129262061402724112984918770883903133888825787621167888679169954475385692652707810812400547465311118755572686016234224759915940920938666839069700243591602891352616314654740150658399583467215514155812023837621704069482244423927290436429295939469286397718329300068048400286878937712594912971360690313560690184211187939191519215285842449512700371154708213970707375759377070550390023230756873836480907170611256573259367503950485324365059498306105292014055045175175100645485154372633242242724193336499717245267694403044448276772659286689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19081117073620061460920028464765301356269487723882026317082365891891936887808648466021721949025120478832259386191354479258283704631371546740284555512950975485958767832401052801913336226585831032608078707863173850389897402606555693776598275162833441213015942860377714914851363509754700874695677030142414456050617969698036687757317482431759173804180744133073207534404885168806141182423716294765875749617642494381020574234481676310719728962372530042767519068050364410324387131477037716216172997615448435802841435191419887488945060158666970365218323456776095315878583931283771834047184539081468948140280326028042830188173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18391059773224232237633516074843356571147835958749385361546497953926774122503835017858780564254282666750531002060078199413158104621399834061834200532259978242647280430886507073225722693218744207653132119491316053872122715203679119458296973808832735977355486133267276067827655044664009723870338498377650171338409783503587870857870828695621974400080842906622735351923535724433996959214607842857909698199288387603701855813194247037622281395297897989540977670560176524185775533275944156144581696069164060682741229888708025165925954585280288283724012692255336857827002084814337446450584858783564481762805573112653810971497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "20236511908750582187772533114589265304167166178983556156509851847777845271909196041608058228405563634658496009686419518654206730864753291018843447995025385473476910775883616611846029240390198113405504721772899549143780100222876117666502071202859522329818536922257708514708044197053748947016437506008068681751626369565601716694575352549821270876039894400662125427215777377739459275703991464485554996678345569238035056241211857495731171100496316910895939403184018315138263416673884747777305240241546958624822637114741997355023268379315975426665428029953510621309634549317850911990194285913103655608183436988754144733979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21212849208216211433042364687141366", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21280228063192847008658787421284933", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22939797023813922267045793277736149", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24709589339662495901810607688963542039840824952031909208413981617675182783613753401511439555946720247855507121011300700360967650295108366718294214747078892186943156813293860433518861135029450253902044489234104060386392251628274144881285093550556298050266981924767750720030231086321679571649242158515135868965960018522911600195340455575477258119753920857527307004604683455168690655147581368361928790112022117313344867024678757030896340879266161686727188577460892366351339638717752110556419434152616107436566554497042053928794620847703406180223427619119111509367557675508136525510782227055929257917038380872742320526037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "22894031368367575603297030353430851696795652187991179062222653385919649989240863425304336939780353270816584842626889210352124456772771570142922809333146097680695854664750742701671148265698864332916409661009163861766066837133588957493037978432744107536402231954750953386419169568995478800841375063991326217710966008473920702104550755195038500579532338703861749657586180574318284024252653311164871800042001420810647448154552062153606116059500965201368328536193720138973296652517570271655619280827195473912961522812451778917277553885525051296778443296281473475095212500043520260311900364697053356455353965355353466807369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "21388553005852698752700384023051421514024391431994637542880504978090342618821825266010019214594041094938121191525082963958011032098853112989800452675651384534136309382949820902704171746267781575391781974738322921374397993282286973144075346935520941332157526688173359278116845169193518674155787049078698995753341621220115610549126424058368322601482732514677984192188879225909818049549527878582771815989921231627902102472486370315538520649100105920842113186911013280962690575649916770042928252126837254311743643994160268301936051669470003240145144051599904801549986446916552475739984637079260792061002317918118837872411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24795672290845580227312828352316305513711428611043440098709445814219263539142002679057733243987383240554373902959142578424374022420095626118813624401947189619248313280800581958026515260431438981144061242239977764250334296037916755039827011991998839243109572556239200060934090857405585297366758137965888047055283197177440279258532808187651875579701881536363012275188230282968010044445114027847804334803943430764339546291786945557464199156995661902034716815218343927855238886213743498791813758579015487060879660849028401821637764444073098200933500249725354992087903658786763388540778544053920450596187376824559362028329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "24810724651995741899679238629918966018686541489241107851964528325309413994165073489717571790975988732735666985472960617746506338058518118488857322515364662291473739475149919987385124153760664077808571900617010167648368546184225426492674929409754717045342369160402408852299534651313492616281372583421476147342941871890576406676479589712135164970430519763336996328758656521707038945269338084459552696316020706427688577957998401491504952538298229107420689755149911521068457113340479432010157968285140780895247615744250099664989640435582616985384930043271827520371310787350592528390071311331689343819578659025326384779163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "26849930348829188185460403914948584034840520072940293671758295508407651213650075473805901972340431467420863223683433867381967529451530298695926944858792672273191653362236478464788849290817143656554009431616010450535901113026430748772371253434404784674705686498450032712721003320790528500020844770462915632828914484297768296148899576445796261378903477968889944877077730314932048681845415429762254407116952000377424333771715405037172912559884730193636788689923468515573403798337091724233829766858230111076941223826478917304565005989973754950384684597928843898237510534552085730557940869494519296519589112139647158936827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "23346332258066125612807828802198829007956465526471192377547459338618842841448274625225498175900192003656077975778656943689239341760032682788252639291539930303530750578189537649074503595305960401819338524243562140361806752256231188123160583632542514362725301469259710254675957037145120031651751204069093337500312280858631238697270215822791145660924669792601689480668672930138306914763078950217858583770215048741758560138092137517741157358822188938501088929802788766291873023334164888920502476396541192028481100182972813295312823857015354816561098616553997315683919579286605921955988462654576532209545023373348705784717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "28955076304759595871471915765080016624107566000973788372327387669038487613795615415993352264526696348254036467154816082807902921225083179556431261247594337395550601645622963062056000951225070793331878422653046308532730948666281160787375044268798273160137851536557051401890470025638786820696468739369796722329154447134970670050766248161925606607639887039401902385109296087255639734542621774852523576295867314661894619558676814906825714279917605151169438894134246173903163277714735090320997187098884898697768660677165535654994683296119290411584818059468709682047617749149383488273863916744249305839553599729731007342817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "721910478298001923575051793137016672575134112434597450150884675594371635211826533776611269394693649213881804127190878892999120080052947145122558025246155090242628204433735621591210866109112423396163182765955442866744844369435644788047371512426158562497930601926245452621375931121320876783829605841005625935019253713103852011703283891699675061249215261802519637652532891115103833956600800858816417165566217126950046122628831293338774225577778834424733109560872545874107193936268179031582003365152836195622179139300842970087439192435904679888414544908641269462560876134737264091181419564718156545286987701550020023774170728115136779169586004668288756754386056803530871413820202141479629916522045544787735892912126307034786465354953044910679470050059423080913163359782608139099607795727635286235956790028211625092810305253702527360842681154077182243095305207780243056347235221450977845713838488101939444248168841843863346278188289033648316491423901226365128560423810668741442527102701332300782182119698288092542476475211237608017646806230384970500480626243111034330508969730915803995311760101291009146461245487570454758368868623280989206679291089268415580473079835975375777115612797720866127620343274091536562610351617952423921694868649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "930748181282641902471803700780184797337596163476698767653395065556207973543740646665596813160877589119373941244284404943244908406214559526904041415868798241775995465827961018206572082892686507113630446855852742581728641190938602706535068678877357489068306797843311482107498183170755467834358224342810274685203695768275230640900990417083637639809431886440912260161384932026834104533071251444337325635277029189989755537093795054034861205149328338710467422765360010977381363483507980819114187499633767412241905992746536354547909286060991267078455759871196444990806574960838404882158391118257416053911706820158344887281627459633091841522612290103990634897811931645769552069754558679490056863075172624128109303203314156552131357902561782647644647681035984145793930948778401588758330591776970100250922674967522483777503841473754850277896307408279725921882278895784726963696793344057617097473608142072341988387008111685688827894207798730059918794013614752192283520353939996966461574211814152502886512069669051463172117471462195926046013043444578498881455084755362561316117307969658297343345799989384450037294814380150956698903863779276849228498578894197023475067753268279298548386353073813311086811610527132191874580322770807623942766419633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2017", + "modulus": "27945813093394614641099438135431165053533947823932004544576597367891363855621563817892472532320951926694245416443211208822361624717387002482102743697068177719976232142735623260572024833952179121380124325940332287519080748955184212310623320944429736725903462880261127774109708016608197432504192141784250176964686979833341769163625445896734216200810922215646520952940570139910748449602048584521793553634064588182968012449066848521714287137227668679258653238282136336680581379482376731348884737247288494489248515434706081860184640114468768486122532143120630824511865828574963812849856915036554602837222033896655365446933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25453331671120821385374317605777120928969005910624346652560855898909692823542348395315296361077565200007767528086869903582002426548371492252979418042614735689542012268506961320635812923935529906996285559124034646708776937920760323053574105942683155167051627967007484821802991939067264715330028755641458224998808712613809987031620719683867595098775032581781074977454214475424948216322359903017101215052103364452092691550269145578429248072845742439259743521519658288382467486285714903490395386462891975248888860282750779401700236408579632326609606523578231911525393392641560065279282407505831433644479277989310687643831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23434146381729941467724212960089920427667721954174054466435922607313643900320660560548712962760821651057941636458771847992461925545023744437770417567963916428303949635986688213058476604730635526306396713651898301470368739197582828381484498311176130249354268645641529687103519340277103260705723387040523188365024185240140901571163509695949889372215793908257601583624610703888917082628305596813134679939136287762480131738071206985030124718351447740325229238587102336632131064551482109719579347079686350807029422614880663951962825540297351957016676628595984842623601059920120840106949841575463082979974170139942238737493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25318901389772995460042251582352216755527242599869797784248365221509806929654432700198484976106598325606633353172463875672283807294917594917554373485409088048623149030834274068754177272360453753865059592797716970045551307778112296179285669237165932823588774329686652705186968071223635447697011901649632613249552948795868120335496889748077690423159263864847875595169030955905880339875007653900242697471459136787062937515577112109567896560604847811234391994400243039631100945122371046464058819465752036456288922240850731288992383723114733897486260424579949846665181229759754869186560286069871675824614800381052532575487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20811691578401086465836183946146408044406864924850744734741621753105579786563886377043169391851253657109653995530847731281055894403820505959917242279297506419024511061225680286761961207351224501111787222395420082933117995628092872949218196779010164137199467598324666708783994304615873350321342395938874247094627815518554027648112542151285162798232100136875808058873306888339434552250262979347854343496728081644797014449208769051175233218777278459500786332797521823797792560384633817884545554074137399464764923227892949471321005861282399809135893731455142921275246000563983205718750903646568962071316154438046872867961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28460337473724295278271819879762070788222294211077890534604941595103110653200160264359355096960209203177246789718866105120050595941124187634830331620128284201816858335490936890120987421193688902796698657074112954555203194070753967209462130187793143176472261007581682400850192593827692759643262786559393863213284632882594047316482450169950258694854767979461904381387772100105060892408323496464766870663721147857482309539522017925495112539249013681727551146320187630281136258461620296692291740859610680753218754283939137174255673705676927861047696347070175749997916038194952501964130951463993295652473306238824049304997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23449716306427589889138575747751953732550600916669777742141080443996264025533082456297666794926740292546170904001633392928172997343481328604340941392275977218602087842596454962605643647937014513384780626715068627947551994738400663346536861765198567706780330251409057686401394623352622119187702512299329070146066671706588936420943423755509551874366552887335540785992858784401047690586967879246343188031510186197357014625017087056680237129006393047714522754485069572360432133832440284978385601403047653021276493810589007736948876281281335625952100594118295663632383244885512603951416489058190676162169443709796316303441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25303068277850420768377878845529399922871564888954028523687395034571526487050996346612029113326883123840803396183157995483162350465867298072582198765890010576632328206145881341487026908476925948306048274563307644695900039969755425232031680542148523868042488721536811558777663998771271498666437509293098594955358847169494606470060389328174058318916475120768389623135955720906369576878225656858052404839859604387227567672759779256016409714434131901362766684167414821300240818284158359573134446964770754930379433117212646612588779358807719022609716143595444314975592582379067899258731166334020241619219852718156479296857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27194016269945681165218532611893447942348326139528929191818877964840845842910889553970810293551975312649295227641125068810991206669912760889132987007889266001289863785074012768725906332340355848189851098823928969849609895684584127732748363506499914803380562527539791878146704739540568292894962937724441171533404619376303451968286595686690131386607534959762523736656060464720556345430403671985308042358545285873358439386644709242637388503921499897614252135571308143156513856992453240669782714061523081463644045252203788477756608528384275281944054026336817447040813994827970294808996872938899477392894408229773989518759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24235808022908277297134718076319075621273202647084439781287997931169353188492045267411501741864975894148695362846162764007136719759966404245661165979838090778350828040891429421713738734399491662575901920086704917457443603829649969426781927662216042971317635298748732303619910911167915162170568669154588801414634429469969438489801362316112110419145169451574718543646628469157366428292530175931955588073657214294475908394148672768658498661595933580306658479283324231997877290585936027684462156596841247789747462236875891639512188619781309213399322311526924327954040488940298369741225767718480603579658439780809174343749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22683819496961420503297008276660406070030048550866477073469942423617840569788348745649371837556211661606767068569150560918656246186046878380013933810754960053140868238154055179183724000381647583441199361462362011681262912675833715183016992410969838768225358488266392569850518461467207380663559450734747357464388279534822219879594022196858861254310790688067752664056009740514078281737135447654719431788935986418597741070105470911023504645995050975509556448841365957899074021035700805286304785824394114794504348990819306247891961521155706164751418681894457797827201711141284778248007902137425460376375611248138007525793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23061396647618126229356264950126691554879383533373634526900348747451276691356746967613531659472149976459778162088830486706704496354791076440129063625322540696469421858424677667934599825379213673769444222172077773096397375286751561725376862879109107143263822444245834514155818866288674464667193625281689904175240085284938734100174203265316205134608376696445895951048735326355715364830629615842128110914686300829338672434387770298080739675478973025247821021522164304875785486538464832608353250689481721385396427025727568761720471576994312639235854162858645767769293882022447676596890831888878603042297918361456904575777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29231314810870957346823214989298483972423093142656399882988783350787114574050831548179306612999049927554019220713424238018439985957921872654127935995010927698039304606834650381096154374717800216351863566401500853208504167877858392049138997712004286479569293203584559444304208991604450460331664434675174414456657024482716344855097613863521872137071099083347000107046510342202842704997934709637934120171630888478630098463136634994767813188546020055186800417329661114011753827304950829999890179822960329784783000594627813285018235406242411146897005862734241007047799199747865434070324439113771488492860820870660048458099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25580267685335362990260618247340511961103484428179804675598456516710256094432312794546323341581215130453804817825549941894380474430896048744260532507327131268912668425955990471709160970546259652202304824291480286947457094454364557212275350513500149220274905799801973081728569322079367206271756012849996535974671708600584710988577938296533123482526065298926631209576633835016393522223820601202509745678179958842795668560720326123928283873194718761610969990689064084842696174441744972800925172621918244373657990366519285202123240507798245834827697839356715602175024926781931658196151862239237804869602094012041259204339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21334940966082787629612435089004869", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24882886397733797663835884775816441", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24753379367516424895023828924454219", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23699023477707129360912786614780808", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21363748140354513961850850211532440", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21318367564132144474519870244684051", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24867193079036890949508844427530916", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21258893477573772931216253161682172", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24343879528936201833533930097729541", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25526139921941860096724101450209233", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21651062297057170341052676462802537", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22864812273816050704469065829000464", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24044284710637946242928450726152585", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23723122967851893281349866485585055", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22823087603767669541723814046097635", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25753711265615907843123252553163584", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25161613348310965949173553015498439", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21375771055632227911189929316358253", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23203277630072387272020430764119076", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22858709462954238826230816683172011", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24264219582656739020773768054308064", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23227688468222188142631461092466309", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23970628585166305857999604607849860", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25171711791147169719824206079034490", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22942307311367675440302819971881468", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24058672995839712269042496342030205", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23899461850307809898397843457656233", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23003040676593947876113757186574575", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25306697935057742341423418179910451", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20900427161536444199267440319656130", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24714306985431000682097243634436837", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24824989632394750644682630825671599", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23954341884378293867350633455847345", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25153500856522849831736220852833717", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21753320727693101600359471267559117", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24141150153155542954522065222944277", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22967905023058521486951839837109114", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22561005570165003296189179411070794", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23997563224182880650941289289598852", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21756720385450095690158380456188233", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22781458717528111113705664736560518", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22115228198967388106239589512228412", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24075184586860094865259029387187895", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21487787639513488010633442643133218", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22796849028408527852043610091839836", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25695418258253596508388318318243567", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20891609457577730393035193628357340", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25262546466898381941575954720924038", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25013566845831032178436455095061704", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22562567417812425190145070813927149", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25591900350973705615153990485756634", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23627375059576518791843888598225414", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "19370318213405042163514265336779345925422225451618643514994450602699751751500046648654282307989421139995392072706480983075061441274107031624984328149809360103435768090879907946876550741472001672900216935467404564668418696200797535986940246745868953851457562147096209209401670218014309618274224925071525997326795585921391317484595995116075528412589066823310999669655372810691986036558100644950448731612911950113960134002825820214078119119989015332376989944108041136911363715354138735514688636202634453037316977307782668668123933081249122545354757925578702969892196082508897992957340176160751191762836882450922629631209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4396071941439304429187615892478105362843641105094531196438662990851786161659982657277937359186406290126497381308846943788919492319900491422133120101368759770224766106046817135816331053515841894597376053736466356220882548510514990288688621552288743333600495262155424881560540762480114464379739915100503083079416298275817154379426552054752510995339359174545608359537206504716524497790823836983159305554030065896961911776336295571306280645967442791298433953413723249954822612798954785681663707638284084350878458388098356091643112583272625301922552028830891331581823382370872473765642120468614301390504530536824488133356637481108896825969964395540583792388266802656439173929735913242562162555491412261725217414158773014638415397270361664815215907251837231979603303603455437232969318939794886489967671713291231415175762744357707215329870154765973625288509380596094543282986687747796511639919314925792712314225666994801040848075397", + "exponent": "54007" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "862952200925869988018229079343439115686771766086304142296689555160299470465612130309035712202857292360924933637565968892252370430252570367198112108649927181637286884887878990579854623036606154816756332337107006106581168633175935747506014836376223112829638524972097793468782623047443599355277558009788795680977931749527053599836938429941320750628335582899076600411306104537412929592598865647281328791982184366987963838260273251231412634208070139522740182294283111526760327845385318452335410116352776470469974101325014188366417934703176605514073913773014340958526291110549680077117306510539701505387874816530922354308929457816699832007961237500073781959243303801437056875805313567141632721223803545395106267523466623141484325835738411934779458799684628253937771512316956161057400229842683961411997213048474449385199784048707033215442785454318232420329508572430113322338904128526802378565043380289460519838569284140471165748165342856670783998826860445673412859888020575179344772557079694034521850473113041164809871101953845523397400218970364759113020447298088832594861778824987154264633174817047050883560322525839964164750098069312536804255271714314565124394683708379542162502149783608097862645971784845742753893511036280618307982590223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19668828805789311157809292633031824406237764746023521441507118534159539564189487958118160583450412136825635790861376320081659009921543417236223244366784322754949098937441252388081982492299908319033668450674888422033702447139408207994460321202647739730963166008919411208352493332415157246722002566226343929191095426245787220624821996325784203927966581843124301334917338868396783774405739781459113012497196007363599887894902207352415103778902292289835346565594718971833381648829922288640727045884122089617673689483411374970605819451391660870653715325455281567349797183712327731996632489011754963174004608887059377907529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19645306098842794327549423022637656958056301227480277030529920188133577232771343465069889055978920827988410845252241735197111603954284281640483732205201343943396332231556303101381125574619799002592259756295515469184579387951060984420353968542043091818009545108461269901254321268583656193049743179156260517365379056896451334466142943326074380947702483130003869387046318990684183422992254991924108850319764464473978689011019423158849108922322455338119593151217119280442883022495908129100225939884750870015931401995580435312376812752102713512190093687090356880558193864971511045387954211275116532281081597295328085554129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18854792037668983489832804108699815509090891156473020759739056435417816640657963500856275136335563733478606252771088735857504083600230846152636266164183977535755617294009554361640160930109821307905526842351156972918080695060149225137268241254998796412321045321966157106717048309144481681310872515253558167678411177536568014240712594879034389510456835666974398644485717409479554608770898420220977814474564219229896397860701282015962100556725208487540767821320217669638565003944297774172000464289483975027062172319461867786126122625238801054461950639626900154125165362258239426030507297814857912337231182081119660614117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23198730152559957862682960374009283", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24753756731311036126156888712739267061147338352540650879598289794718816694216978018429579893530075996104288701942105975915313321585382289980586428336012647709288430547061651969441304651833392355117300476140561857896803761985781396225255767869933990996071546148971770125653331068509404486771806165664248585830332798859925266416983181192292548928448925250758939040345201347006475981068179473025235387674251079119165404517729401132679066192145011700585781035039360887844145967373467380217415234069999635324623245392458667764229057625899029205951045705351868923188378453723935233333206539959845877319671282206618251676951", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23822743487153500144913776251884126608962175793524707281926180964924114440383353649229310454736352638326073215521984162091008777962870169173736557412763890091634866493003570922356862971913320273605484246320781529267827938948969116923651309119728704542127273716863138249225270170475388764063656230486705862470184542986738653836377758891846292252885263390541396066148360151181399127460688760740873453379847520246868515699490974875965650448168165733212675176970462830537691745751814297971805707527181973616364134024935608395072167336680143532591356478717268380789306671173892250361576943247302723150246980360857142735127", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24299542499774947019745495784070894596792091145897209319967332317396266096070066331404495901394057949937341370574436852267682178426993625646186451295398343521797754863185493462046361777473589220132164074829108070597472699204756241140422382738270280715839485770383953160054260731391771206145335971551118729822359392724171589278142266811209481469267718758274784895752283645773641440403437326703118771987915024892055217153418477750114420600095758211590749595129983686261927702128583739470699937116827636008117507634121648001318636635135942520322439958731339340600111162098995002812687629099447141693703184700249644825347", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23046723471608548443735378915426409", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23288691166505914384196282896671665", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21356808291389119399334571549712859", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23187975129538412050530248321750940078373817979114339460238278886100567966861226558697765359638575852686340031652577701789290971599279143180872958890688241639014429158732689751033499930003951978957809028635106741010272362945927078625009741690057413962524994280014816428710391005738920857285919273707708450317122133025634570243575079916904261896410345756468665693612969802015960837869723451198246353489380836864915970199315115433895196170805373266903406398699551826298820107917973315227916282220850056276018621983723821421923049066133985475399850032955923868843358747624525552705555645802866741565808763917511920603283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23817641958805586376291763861016174", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23250186439492520902258521115460148", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22810398953455083750755488617918051", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24086509758681363602367595803471535", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28486454504348497233800147676536251738344263740557617092137563530926645570620850527117762168371116898047371874192305327133996654471786179362081859528455235004327421070014090696374399823434143894955931341226366808756120461736046292402946117944587309119596029169298736527524543239641936345467069419862329070162356981120128905203828241304581477635239092075263640452173495047195900996539101140607479259441495339362351534632130802957449921008056189706489092403563600307736813727529795570726999081205009071450376290691667626533685559185928692766427213897940036469377980777641306542763807044037989578014352703090208604711541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28784045792708578534763887037715210416049909644681737277393644048129763770526167933456579108374648893604489756504103778401172294303437493452301084985425691823890617912764192942780621396051260928332639259380313219530682068933040410744855526942438303272295127124951809223622027090821130427942441804376537287643488133717752972577969426785202699276262821995891531840169066526330026382442092198715496431145171420967715528649739751413947674475043478646520775355359893827742609283337086916620784327746375543160932060914137339539956718311390128235119220377223744646992143440711800461713143678264322614894626959805819954886837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21630132324373223694459677345836047786731320847968626484233893264213277247183206301447592766543521801890917224983438422930409104938783281831690426159320448673025706759239887046245586547360786429102390733939379745483092766363973389855792695796489769635153708812344952846164092737646644963225157209283520683308281828909401950772315615116877776955350970402480123043306955097511916309401294269610378976432199815480673510443858314152286704580742627474968502942879286094867365454704678414924406548938744742416898876008537446805069230048747150154180578973071489378489913235588422661862279603298232098796781016898155340737959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27226251453809256615680685483073987601884515818649894565298939771007281407679623739461599703795328657974505426496307826461795818799081060715894786609171353296004654951660752207994386737439266118742159184822800549667338323461987514912660051365161589784903966382256701542194321890122858603434401848211303256651293439922341768051065300942612716080760621559867983464395303316924723300654308736543765049480455970449607220980269582194170496379148852622975400207911045676652783006866327395644409851376241159783873194530605644118238560139863813805010617874718674275429208521467071350800365740716705183894414226272753200018147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31719304776717380407411765131764548292737638452197094122986137536889907987202311303361110249791596824791406727432770191272813720656234656321316365263452355939293557005889599645255141126392155359052440466677850551741988629938514913745231378691427233321635184802850340634232005089904320484796132861869865312297170765384589475907947854286832725140333213548503227403402505726874505667810664566310538047518739065283943787994008794872747925284160557436696493019905806041430813634561186842878164140598462595431208716117775035133374970779344093325686084140757603188150175726517278599733415780369203221902414588366225286480577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23815837118442794039886506506988147988899309694433280282220187337565319208641859862879546220560936710248325249708384125960518754219591051619953850705222304020845788108893588850666652887376713805796452616301906915182701872339818049007556678526997203038347251050856626076688553425590586950387398144374921030235833642820287925037905146534136833514785053215157051232649012719452312887427158535389820455696951073800314217510946978733288950627231156525043531084588858317948712059415328907253664611833164729049087774700584027622710059313759018658316248039851357557053441045341137492274613182965946151861189064337620283723757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22038406396163986067008481005496493391827528922790691465630322820932487619745476146478704438358223505455207333708384356105389924412100950204670726961545886622725484521725887377446104651440684571318272516896873864692805647577036871260019907816080593006844696421340149007486414050899459287941451295168716965763642019132600011502049166949131132822418067056822998414682712179337579092405565271104563429143030502240763226473220384048819273369871732596681288115972749773205635319731229940988240314289343985779837882612921946521976140860846234041089532332528342741194428894435196283278515831302116016465616437714101750733829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26757913029763841259437931380884962775235760136627837029638841202672063162899084689857116175349404119516343047227854026827791216702332940885662381538932946463277324800530408388510016350247616571345827179007298675801158247822468803205275849281897632328971812391521413687904878117675313480461473714017893171422169954813067746937855940209698114987690921335531979259491253240558896771009543506538784770168204406760215025277027444354955415421036681951648637290648004022470300695884135427027731643838728702169451775252371147361076043855035952095923571107987756060865181211039867285115052153837206741827513006709994181146873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28132947498434833296553443540629285346825208494544556938829954618952227387650790959275960389928918977150957936106938357097284908280123322156402208334634472695174803764047818423557540576412022041485657195760755922793905574960692465649353874749667228957976914794285112408675065230939195476781498103732241259073006676502773025049479856933718021486999433987705170240919014814620454492630287276695638028089741614170848283173086519192646494810070811697198199851053374041744777123978887700947057272261448063243331087601243515387182029471299179700694594764170492152276455374194459236208059467110244954201445265285596386985151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30374451827740607928983571873493527708140858605731861754863249614881760118362347300832820699231070098513987479099067879679361749150638782866347639201923528094654466510956084183834384608056133091036343875392060942989986088239112731323496645118471888805232474897589416204024986733567351183422695975049415855876928564630170761992855901631185137911862842781098716007508303331781782526627149909177473460949552216825706788312198770898100842374083194238784339610512028706356934774979954066401565550504046442897625204668094582848984904532906743995301401121336167930102243716398425860899543607208969609960359163394491022588907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22633177848263956848069608499901221027760538384265117112615411220323171516163552199634404033729069101645607098779801669262530409292646942420260467664038076644593711252316350819631724056942472694086425231188812105658740630578210105750831851539026899119269672652844287891445494912098359741923295573422128587033407307366384791716242217690092009029833200442345106345324489255943597853347175830905736663120697667073847209480769333459697614174889337883822228174038346574164068120807242149481954784051942901693205393825528673370608096809401063205383144288933830425257164309061373858385236296271609521578161387497803154759077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24394656940615827313682334401367964747570321194459313600277433502679368467785042966767455501834419677974608153675839366814584661772850217377185388649476207400951550044334163402135222004635809804818080542343252279691170437899139732028991668573325156601014377091926350380224348083822973681529043984121853538491364801143914155406812843914860292005399633903471565919207797167023111966185267764941276556686967018875650013392804495477891994890005255052676527584612632648816900015434516761258631193584415640884359313287535728773086678707317598058790618879525520983432983298202484156297897510280829494157453592704352672817267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25690169043284126687915265661846740136657100531805509707089804421529765528660860117336047904072072503775424931612244873548731156449197430675505903633276413915254125142351484442990277894760429728789777538241375358531093489346551536580257496767797887054372254183896573494980179834595423523495981517841973627717468364714046852624611048511265653463203250668714678442018590487619768809475679067174639605592866574289250626855249968640650398327087109969347894069465285308899537959450616488837895330157780473209133823346779362277177183593161555740816959005561688361508139540111984093520682110306323923621244150532381144038247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20828460903516520398563049060715490156497757061628245593295258618047233001987841291343523640391329273162695530894964117695324590445466469705152211868561882753382995679866134225518822274048171889459282309564023519681141449110591355095546077600718307828863154764114707594946385131785182998192563924944067386172004687610812164966476219582099951334356184319907768333074258176773580257234948470539365476162189282305985762651811737688602141403773188908219302369962447439203273417311025478649225524020253671409092778232173846425899867384710052643637286158646767520386752304666288280017707083239698870939185636252710826869237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25863184029557239390047805890866115763751816984258415331159734317654251627837778660071898063728432894704992068813183991032357161245940527761023508951534822497301072496892880598374340343902139812981181690810043671245398743589982400034035008922954943636020898645017027138760312857394245807964660719717201307623476144212997729554621559320164822401418125224576267356898212876771534660558698176270282829061502531188905074400286739216935270904980888378743627344996368232778299943011713442289679288857237744732562866170291152021566693566927356618042253408672636170570140976119492691063496914225750765658619409577931976371089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22274384188892378406608464285484661471381388940071757295698183941370624497161715206172373680372172275279518005504580006399773649090802281383370454054470468762148396640030550669037680409250795074350155668210092499409775472706722486549109434618893041848504031447285763577744613010796096505486032728518972382086201445897368762239014470219764980829891980441927226283513337752093959738934235442775058247156136983853650450795308229807720176525552419887413767821055953076226921804164664837420765301425370849512150803343162073674089451419484675314540249685668003052698937398878708200260299657192483926986775995543920458512269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27686938196121133007562116212731628058599882240920712832619104739760218385205896601378415432158054175643116106411867159237588235546714935450158146488938881835389263385881398639008869658151631571269860888661439255987895078799702647407640801888102995210114293274116511139976278682584455413897119521404842484912180424614559197117258756088580801631330092709297626178373868799684658992538623976822410345301608838906199837749856770614252092920395317578775110115352937074438086549415512184695728629487886778496274170734737827221077098792592749834569863170249998245330988208008525319018010990435624840280940424637910265769211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26049824611605194408067525349877922705997265021989490163436189415313622318947825125573255644614860881024245737617885481932341495315981872176068718203492890241821729433401229646106683757509873266558701052163948549267858264425302867077950413708100667132434706929739671809298315236315613287520258954400885557163475312226374511025759382267306710186347492102353473406213915434527413484202394695137209450937923445023062216459232601830375508870713193992735092568121446449295277189371084738477508094791672533239935349779120425059116723848631926068867783250768531368676347567483182330123451350886935225892195937740247500029521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20046812046453626694138233211190126464427308496583107591802667511466244638558863065303915499902640882849327806931696720176681878033878907549968395588094687698899267500180858638938361172000738689605922926810259250509528392269645317050973645619135761964678651139221569676345075661764150313055964080681238541063939187497977992712493219012008344649866380961375612004864689875519319236763470346084960920223566817455526682363588740283981439001447406640030524075599443794339404575578685340982370707042639330904877423343006531574491084008850838548952343352336048857074131111811737296079101947534109230608895279654564946770413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23533659191192433169187053953475388635670308108823762699602766454467918260136859677206044911282108306402394790395541390318467534386242322976378628769325208670643749814279807446664671462901757393503330979755791134564647303096611333592616928016586052985311949972905209883198148961971821886945331741163800791160433893008003856201572076303205567869158215144456815303008346150497651287704156323569753677743662431501302344755544066067405328254646577701020047733667152111466583027569476300987301597962924844811786943696880688044987236018513137341697733224906796138544551762234059251229139449721713669051782813534128968108933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25553427510017063178560770863564734821199861771303651783985828329494830194300302483080014357883647896403560955494203121976996144650067479814152910635225105625893497167000972471428849883301719368324489384298125563833477715484373554238583589353893762580665747677655537885231023723529510286328173129947377009760732949549004294800829251682781186485476481329180305228407450646795409511362330375744407561037128825180208565817685062851623304692504209650173658139611420311262656862686067256888562295692084884939235845195543512808390790873289589541023631511741946121518402488038888688110891994376296649613654211757860781652541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27300607568024654681499105298908759515462254642491866161897742992364079287143745288212153157287268994508499810711933098006759392327056780542620328169114584021375685840169133037377508288647553268207321458678946376895681723051175280029759135162150349086833082247059336061089815645015108934270859140202731296951855219672722378932554487533478752422053941726015472777579039660321431248706000313874261458298654994314819218136427593504923014736982508785031998930526762383826605140148506420641873447542063512628081596979023588368630665394410790251911410176684340270101773522380819110653034065341769052982044782890293611031433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25122238400843257979637704704537100451065402070184439043122253164574955612120517618311478311046533837768401904780995043272619308192054883367003029041566444411555900641118987531390846424748439975104731689414414265738447078503713787484238283501693683913321167274779789012042988506083270174461873121840335921953267236558093434690781389912030125219131024233057195967518904810936957632088376988836159354827896578241145644386175862570454601632420288722557923404128980651636209332791245511988167405497691920940035477680952641486564293896852365625600306008555753492537644161351356891231377956806996056888083666905524887565181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26738535371480375657716513179476913899081900454745764920242482140951028360493935433889492553865614209542887489557656767039748225427529786244431427292303059580144277950425774388158812748540720143837169484452510252740855781502814234645395062225992773273762438935198351928698579402039993954979897769590027912801178069300545816278289563853195598750807037664924747948956386981914879822909312979431065753739413345118038001863707559975698722681153175026413842659289607845212316432815452236589927937258671272317493523688005338755688683306594338894037134521596593284615821414559761225076169006473243962196889751932402507124743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19725244210140713771385431103863292341620994842694009041235776085210328388090405743972040980188949927061758808049702634284836931295012654647102555359437790560000372095348535251306927359669925220790794024724338476663026557241948843511400110813818220902922450147443569820770834817135321632693820633935331703829054393972538383289560456218771392637865158798523879052894070473941746162182373879049851082780588187392368992085510411389368189366549277236570869679729227299493040634603899474799868983348734781647703336038280422063108188133518631894963288871892642996692381853225209381646928107238212028246028083600955398541001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29372680810285771933418120832734660683698184192413443619177423915383814961582863843945331847815592657688082004671005529276241717317721745157761194285221380405458319243016954547190012693409758323463670290761681369040953615124767876110734355517218552213809838950907037623152180257002300190270509212333640123330228509083607645228905548247977028299778508876539714660119239137537266666015601058376522974223514372636180201106563699046700265093815911097579604371729132577767339341318203111349416139161171557304768829186660371761669195945610504158543061416106519986986017188943317216901700414693166102896901802115199151794829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23840203706953064498474323055216223264547231569405504994131578733560435225449785111793815481246240601133749314445224932421707843745130588459911751782809035242434777056176200019947946726370436449027014894822042124821669365604930931496575214367774469544869690127221721946111913818978189760037403421179993594450631955420443641870701458788602879246585814124116668827175746808507640922839277998478047222471519067515169643067173192192876985743319174230112948369339806138749065917394368198301074728179225765484811370698257596359037788198604372104321047812861161664399646916848893131711111611558616704211946980284165669653087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24488518956275238205698893905611846949000805876253905247639304283940727179215383057757097015001344624116531109598477284595760572755942947270325987608064647902250639109858925381585309982733702409414857499743264650464097021293448310264799614471778780669545724155241230729730557163861433550818960763524893927222049319365301653576703641871464488360757470715006207844224252936781774091688815404938725075495072317785852579869236619507919411333226457877828592223476994914262383416136039433446751935908158160958822335869132764280663796158534014847820504881821134215531012510418618334800481811077784994752803093989932095321463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31996826031160653415191481671498730614652956675740103522004023139324464513041584752395603494699476562625379768209175826752400341655316146759959014021562892239086980147079988722560751206644921672156363366289096656122565317830419579783714882361228797408101328903195489061267586793012771561668814897555764904851225385602349519847907881205334839171595456698145724681712947752018196657623113311772689344770729166740003102416452037572796694892910304315426228533054416112354405077344161654359428319543695951609209289308662394223838483828685926238417256647886422717249360058339357656346265506502508161717743464518489478691933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23719341294234524503257931733249799615311250871925263163444459989019092940709032046349126197813032296290254423111124582497874844313588562239667658180412230879805752423718822644087409618774732883044891424389274925191934724023218226354020148974184722015659008085682829603840609652794212009321741338220697193824843011548636616372019873455246108625232082620835981487372973935762259428086546381076274332044429695593951710322730545627166542917623131957306195663835861521893563318320080617102760360097328609763589007961669565010215899320326473685891832416446227758197137337354181035416250307746939107854039825717913203024129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29073983237862885485267227155688728314727721290608734615160704662967292178762169368204405937917698996267405336997263429750913641919704738892753629646365219611198570216749297938175804906505501294631165851254849111408917287876371088755831144500655330373390627219225289850255178253595801583391105913666038037029791049805893995749574132766117327168923648214302671203427412990665793871145183287120402350080629532096739297659041632742046455298954011533613119470138659614732135329444669831139029493980730239272353667499617260193399190224846649312787637353548295596751353527363732882827390505488962369149420107603281436313807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24722384429353370850569907474509269074769271345010821108018715512062774222125234853973216781794560323784985827346846793744012828455524808103869814870913822152649967638322984675522163571125443819031934642068975913323754348062660216670140249307347387331015894161697211546363436693792547218013140832773191829238193625151150511345789085393329143359262607289497250437585011205279749653046773720666910476682511016642887883808684761237155874971035409417016218496138810728003569311693571449138911965598090343677193836205039290158516646043820428415908678836154930920231075047915315659972994560097692430680307965449790402042301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24231937649465999055469059393008764007899482764388130758437965979609736676732207347221802606047574240959665832686252236173761136282489201131336805851066610395287886166322065748877830028322676831338252575297012950551573803746098005267141374126710864572824340765536888667428198553823078867611269178759970266904935011792717256166774584709126009449156361375447530864288503139360624363969677222525555288830470867631444364433499202377572723694021722043511019847268894305931965478614201454575688601844326947040576062268797913279427993485135196369250783505010408958968630814576516874758781715575724184722811808830831138133889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23871836077996748272622246794239741007857066663442922689123823008245243702332041851431635999399532441456730999028664737759411211022852977529256652194233823888737844631812500287420811132194142559408401810660773997072423753183326944948811415683203946194704743997001552333053248871771670829583933925323381342794774933936728899495092917490779495104273090969013810752632286102522068800587191099183137350231471111329371222494218129676838668348043289098775291402101173035068447531123598334671030929138422784353003609805185098781418446914515670327635071602895931793095104264214550845490262030565301294635669922775257346386267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25881131056210706555743522078952865335590290149112087758159131541443969602521693270163299303406937518842220102297619855197234310389915583154921836847389654826518653618050919720578432822838201508805968552104411703989013634927793574063746357670182714148753164683294733158251054287588760132257629074011721136233811039475783369912905293803117120735090774979114931307074348074533876665497639623068202958151937401407342589384819567451585180756665680002121034479440675780866351061932713392715359092051945028042880379796914530279049052831589198841490516462554246250065492199365785556997874100370956142800299001261545321269301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24873450347960954673138146012229206842997009403972286696718367309411983672031146076041062792867249902505863960000528803596258988072607086451368465572451340890884602939881049799967526250529836685133326736559414196587715638802066494302614353675048750102276453366178282970424801464529910530673021168912913705697474520039477019545718215240313241110482252575366465985486156187702412475141778748841768996293748707370982865610757274053476530889128785085495399571540808807098015888617578143906210255540128004140571843458501095117957804790944873694148259096752791659010077671824901204149156769667475606261015419946107724252339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26524239648534998757076536534106993356756255038061096614799171154381222732358090020802310426067696483065632635653788442096757911877261632536699409632312148191668980591194244620295972482454916737128326085069508768496302879819257701205961911777308906618788512692574876590292133547770044877098676189514642955568478006657787542593126023610515942746838115337874720715313892506773247816781454247324198495274415614477678213953578660255311223190699032872475366219207270699666917052708477548918316776387424112019328483503213764022380910373242543403743581878228759681608892791469185130392349550467676416497455180227237295913519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26994036507217821500382359266869988270032414779195706828074131003524753533759428669492169224593082586933779789807325821442208840288178240301057065169111356044470028257765683460708306770688786650775620550985489704541368548579256320269329164746112312576836356201750181146521152914255662333192997396021026179164514293597369008863682611080464487133401893357858133097426569366102745972013071566614274672187356915301867139694198281361526673041086698609095709929197586520094745697961139681578485936685422352118188436946818349124171417001089220950752999946405468259729192878684721913722366697657181605920218393116925714598743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30805850806085764597560445680859246829204698169507741800818131195700584434849233107673817372184728969472711260799877997134670587763928152327383051930173132483487347556443775028609364074082808261717967130761373231319386634872557914643677158388656623939855418819691426618353775997012068204374715481752734738567363484347235707885452773928321019012833437362939217894571874514330946880977911526440133273996352330802436105311027469873390522629569823578513896934033715369270659179674099312009751531462332257702190366031857504541986717918496202634475296442386165191088255951234454787400685958232815337051027440334184829784977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28493077688622977480999973983564993129151194134174524721865370577470198623218221074013769088460712077894539715926453940706476360554731134325776260021441975167641319354477214641177710712830777104598283588516599327877018484391161364029997629095871006553509834936102446192824078460215858184108364465279125061068324157023118277643694405118046671861712890274700751845201973053183481214524492948320443423068333065065147602365304213450511691078624735591981430697007842404024169859059023883290339309730653453970125350158446770085330639382108918619568935711685687663561879646993604727441959494309830927907701647123804145783079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24920409692323514925474465452878187065077600837487836921401077119128270915302471045251897651408436426396895189536939381444567047094173626199804927755500517875457781833939608113090887929171099472179194145333556498945880584405683725934729592672869591645431284968968743932623059652642333787130813042993329282554406886285793137033872181660880966795028089242374001638381456416641272617495639625913414174174163117026017685536758114854741184574000483272931116467682797139562196723941332361360270814122339223044697343608998300991680404732659793407990545762638718767677965413515798600956642360660583330222956196993159501932811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24956765311349055471680740229274129314679274721055442360872003284328026795166284992905983454403412863436385693676336961985616210542703693484877046809735587593258107245597377945695481820843870755946612962308342546917633567838706378293087254619091115211095543795361221484898517735060412190581423167024108370037081618260606216807063238971169198071713471693369040555099898751897251353173676636674427760688112303385049897939031487615169869584040046098794950901028865501341824610209617871935382902398397198074534556871804057039386038574714937767564701716863728504929116943846875328611289223537769723848475741661614401628711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27989974316250456887360402069228927404475201665408433287764155560362254880054419362086266315199172984681320014950339037835096486065118730221696074440825182330734543226897109166934443383279910295254217143818356724672769795962804983525924439560148559158959913910441167944195892792297720881504966872582147613861375883370497802616805167149606784077125078538927608950125369135522704763144436113476563350494731939072135498042859475999756870491773698255137538164940281174938386892393405943812983624110395799397650480352147399088944226146055433924596094508958249094334810496117958388522482075374007469491829449228129770623089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24221068288056702268558566659968111415572110388284362723750686683279811611815792573336491162488925390261109278883487359410435571188304770013054637318640668288492937949088722414352267720302841775049592015529784869097419599089309888327108348038517896129432620163639704642583409776915594660326382052718985438562929313451540204607299197967851671695894088239599341987294371459655190590456088757746623178982494306537769372386964064510741521467241583333295024902586664792522810517379807388675780499149431550720074311059492119736309882129279025357739062748522123417504738692704173890722783439085611183698121770583528809575819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19893400558147195315837959529028261029654795701370849473532402592087807883477102299136333014302028159707270751735043222220819300218892981321254695530850398910891994930007623906507220766724678412396876687289085031102285581587016445676601576198208203111494676295999185800948707441941016554525659723589377997517666747601388725196888553956647803240643573110751710364605172319836534870632172540663898187240974150078744493686048186877906993159727524096570063266185150089023359098507545887804774170633867766616552664736925120321756113343418022807296067248079383446171099718804788274542296389847745515552680788275695162212961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29465448106797305974553635163571358737705777293867286983161427793336369915855485678380155319035961797845508315131025389280378170391695892747280222902569592532786759484881801773168836347314190047382270506227675889609761645781287988095832258879944690883916762346654938298650558455082551654250398979856000636508652271879850731123689487637674493749567374250448842543941908180103922874702079665326886770663263326912344764246951363635505826112569164599588243731779953199717423716081861072190998186249925947349916668708639649317873731271040648208630308701267569416575706356068720359283189839484518852218033149511326827124811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26054375741157895557475110012717365395526419657132492926615606417279370087720047579214360350723173336979083035013058329630918548716150154399204551416885564771261981774204601910678853002001023831813810392972008063494598547665680629575331179133944089759752699389186365143675330442673733205309570138739247026158928387161449261261180696908351245275361520067132656168362895820889671831769594358462537993658958287111048519396983847317097406064887094957139567047580289056224165167971918040414005194581707840776177848845292471443200710269083485867779875099852007637964399457588934166990812305816842183872507562516982308942323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18569064488785850409169707162172754795214304408964245132237731803276681484243469599482731300325937683787870701684810837895495062469249616375817571857573055542385529485485622519969126593690715606589642689717945573577380270863084227942961233519523595719834686017227241940905935763855847155429405729041197407141502763808081252341828129652484458807452622809060855468821026999909759461162562655701055690106190253872813567605630840100258931360818136685739331368586567543248133336599965516024949634943905763491940128090421693541055188499183990497752338688749286318252758652848575416847985572748635720442773368863940885284163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24352538366775916460602953479194230254372442658433591187826647867948245002061905267022901899080919191275456986286874386968288717857565465068835267128252636536905595844338908706365265297669966582480118317814432344464386227296850578315165101308810719447223937428151836578467519640238509283852209674523818774141805523442299631053309950068310308216511304765938298578386364362661923103504816345060242317534286488664137903440924914585197270334777473972306567980414986283257236638939567001537429390444640453981742367685911826107875672604948279999639712869761675491962237141827363099339692978117188017290983227850710905079861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25294106979952897117111254289373217003704256323940785057444375643070455206299497446491232189474633930902585055015013660693532059203260843657424795735657865443875109731287202133119956165920526593690151049042616536368064736292192480411765747272489091858466687892439628644799285314624828006784870270387258787270005461784853680505701953722381440879395776833926266911966995001861878233037820894069498847744237587232758820495929286809359193651217714671938469749611895375022491306242206402179449515079286437796034100594425453899011833507548404989894515488286941391976562885946765166923632591627516541170093195169435497338951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27659668715887741000787484237533371452948656250080802281486923089540105609912831661053082250579014572069813356029456407556185673594084291000544354026796615334625733011101414745461184693041444854824796597423270403988978978756817150620827523692063728700251715729706447811945168096623667010126107874007840544683864654226431376792850806605929668294574891425179278955793219057526170146400477027729807604245701895515266674629318500742686518293089609182582086253981357822231856685727445153251009244683412834326826993925471526573768131243523222798245216449983822597200126248872029277452042817858879610982398992248559740274053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26356562439272864349116117024207530358407178236214177316455703112027627725934007842430965645383612639053301088108002993259232276933126537468247796633220737220169177661435376760809201060489113499599931183212076825698500328134019247522054518878444530714539465959072669108205407635155100552667190774252156727437435295659157430337004217579581925993406366216684312726529970659305727038302722475208418708353021071301249920834221237402085181911491986977678863700068502305679230232928504983035236623226798919534671721470771825467050385735272463498995722628130576074041651563889841080155234540945110615902494029578866493091297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29199409114787177319633879010255658096958280791765576269648052029984751010269642155645414427250600393123057513460619485651509847097029110358940360996236006165589199673863650600824663893528141257628483900314349807383816954863034117003290121468883119416882378163410979205762521737223712836436464560866700027713805386530424689652170934800188078594277261047367559446807382148444595145993326410782357346236512512576509152547563494239799754566797613249616099129829231624720166275257398815962280845434223292636286037952156678124589573849715671737467693499539500909132691951750355722717495832683652737936124743461476367546199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30035278338379018121595776362282261883548854046987331517797431631810231634019696395568288834658532638543938403682479967586401134235356635367526609936868530990936186676876526314024889524973400695020620190188938438124087413799680883799674808628646874968461445161477987486540446952271289121838259528420614828778265505472531036066583911546628642184831568870238329940633590179981754144274003653306436134773615463733289473768152683795023465080792116584815107128595811633675999572617870289726621021612319772734986360103198266608822757168214418627462219782383009647076496116022594024497305047119367618107506412616862865091439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28438541048594885920231779844929923444423962512845273613881843706203149916676414030604820585693237360683972922212797676508735820366985101848058564047651738105430665000803662413164571298835317755516819962873919229099337079098416421475795625027794973017120770710468820506420647623009322351969269778942688455469800803583070922311721478011675756620397724616904083560229630641563751674111710337051699026120576281233401879651383216221871645130756482752684007267168301109775653024727712009955853469858725732189343751838432157502397304497773259059331695207761349437643694635462312063356086011540377670274337759617102697327133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29203652041630724479534246421368952532969775922514401812866794516418185703930716013648688630289596614700696541501971692259539005115292611518060909639377754709300151495422045893951374389595318374616931551671282532922456302725818424071680959300631950095887514691829004835082641771112612667761645969513378145815446906230166472331267382076661810732927977762052084138689444912094145821764027365795274880922601502194575826876884625135600710301183678885300017785882848827901980975725666764327548677177240771219290252500322278977929549907740939638132523509795834867762831300958945320334306187427317305406799738791324434215871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22121840918175192098637681423592548605379504862316343404205363330083180045512981919560556322325947885812358929889609483145434057814753212288166820560087670786738073067758102578892015050571739402291048981291385765384121752305830750436364574866624175290005280769323047138183209423289268976841471105271637729894307643577020399443466958657174092250535111860112388837262640375603835217754982079275735483178840680106985516997278815318264164528966886013620269883569303760452436878531470666981140056604703079714310426883537784912866470719795333267962981539297193464297529227279347596028149965409458350230868785527571607152651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29893260664385094463309886639566143767714280533913216028732057583672923248991611822223196865305135507038752431026139286161181550548520590926256295468058476002863144569571112317032513271457252185805803522515974518453505460224916321637877530109295743296911599597464330259597106426883562220316343919583550643163103012892420211861560149556943789611768603363786457359210292917063639663141418330395479368405300238696242149474733317205461215230465793500224310374930931183372331903622825148110767597960265890559592298726784785496534623796430055608660432972320035344740422979629836028199986398873239417757908859484279537392299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23579843755894054574650299270577802815438193472580889702090625746278454848054177200911079828714375940109350526643941489352759609015124816468764511865288557445564984778122062562844792620411058696187061616958787838898244098364389388574168485898386417788736162266147430379048875043821105438085783056956528764201462775498011270260824277889212009676098720942590046223357826658889776378810352733869647523824274207093880833038399726000722846583849608809997174964487136207892598455755881175182154644298810909831984080010483259855477968685950952023750292421167353384778734709088059521808792119460347221150167412410763165643597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24641366695966693399204771757591309616759403733173193057133815300561206119535026342206365559486163753219974659924653071567827089710684223577791833674477348143034720943096415368249724801083257097000115051299032829692310159619802881097804111943015446470589813164598870210673744598790229342420256559782825511243585762352991898458105627613864305197330354655683821869577461818396092460089965495647145149971217231860735035504024869292783228281971807604786424770596947361805113642531955040633114953251339421590036129628028391877649341458119478566020079390496773278202178909222718019323454242867513715830016611195497305233729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24199377847772871522563400044568508568408389019901025523980492052669199901034331340475342172147621890250780067263995953559188773302889087932613069095418471600772850807462022083798109119829218319144014800092739733223427547315290448041910812222514276863127170841973876670177291545061354075457047027919749970229971503311444638843475188508218255868239293883928208056791399148928174618866149752535428959304044035071012227108949434289607564241513940313995068929651639462986287328582099484345403916105644416284090797802119043755881684754634291308452369956825239022962768431273250159268770739626166357603028266686921712792393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22451386650576186445421611338084480821314460870576204908458310717056529974505140043287192138203385593531570444034396086641808596533333580502939464807199761205811225505035695512099145379182306228141635556107011108108888016700457953641808213509621747003913021190360684684196054486572492541436387032485586853277241122253895784080546321610556665062082051392506147111610807078450789686481414477385356741509892657200497756976513481045712894935347728306130024547821684662792200124066222035170240197474894650839681350920738726713293476742474942829448781133398792317998795380156221788933608781923524217500953340140441893798511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22870907413813647077698378849796071268262021576475695574409356092624161279820847328146588388289349739998580832776200548086528388331123301564194010460653963279122646939745929387706706337878864331399279514434892539168022711221314050895128827431519792513218843611289830425021122289740802412362637643317600418325180403470925027577527465534863805129580820335204889929115130297884538900488354186633023215486538318078499171978596783877210589801790686147819039646070046476859968176724396693896743572532925659535261096854759597039710697999551712547121525832125105187842658159994489328585976515515707767790051319713513767683067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25751359849145502643966490780824568240148851682738494868028536067501613094246359223326466719818726156118557357756917203163694398820808351300585108355289116734852758920321579288703711906737991884372270153777897225435334616522047212211120269065467187638070780391600702131450752786836227843952637549582215172295547615165386577230216073371069279960506027401615789767207146594718596131284573030670822502930484988318249602142617854900514928024029592584083265786544257157357093539825330838467482525383409206230257687891984792553881780460134294807529590303392646408255411630907680522345428936644580425239435501673610625681513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27285250906275345293152530688450767192420402656092982592073604633559787556741293194687738624480169009046950566901379110926235823781262855934630253108688168315732197353158291877194535949372384780371817239880422020916034484122495812254931136702557160596367764395517565526640304231979053302245372743925912401916452688391538756318747215890229701414715281450677271936900422734202685258731918844013145775348313251207923031223739171580977003467255620593143069924580659038601259979089583468471259289247983011839245224573676434314390940482353831873365719123477211856074515203876292331477546565071588447236806383328181460968003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27292505374761198059221122988031048830395818601243872122512765651530344118625679974365117744203434045353549199739444158022687981620509408642095893030474055235478370452061904969504661143823400779364212352871964138300537478861314325790034475065590807186185757450317951935105146039351808945894781219880936448075429250948226323886969756968769779661444562234085989311057666852489973879644291202503095913472706599724886635243626419632285921062333285356917726595942417944116404334785280970921601270686442603288870756077946813472147033468943404942318296273853149731960268896446801300298517198661053582190317435462288181340349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21397280854299461675864357503359264988347991518627881355182362848962355958071888047126657719087084602416144786153424786560861574389562484215600588482090779673320774603042434253542993799943304564874834718328251634772366610182908960426569852841099031609124377494898866459792975879787820085029674842186864241133630368528931176090188199870107022063294727905728201511442718970396075284048937624830882716452963712044203404425497090637509970518179780475113220057627955214501197835632808577974959105741128274277300346558479391364519241937371509578174291387448821222263828491441770085115136346586092937947956828964844085552313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20073272904526841102527576709103268994154790742848110662077572662323287909511579356390560041302292296246954320992773034687534006384958748108938311447204163085617206149626298296697798287281953345218238448697485891189846752149928290132759170365510411268124661802559670531360241691998440211512815066877893599237286297924519617234015698242870000448846557058969859407192293249681248663876958681708176285969235211683701875108050500274799418727845202102776052526016330533948246022274749160630232495389170439826985419731030210222896139695486390193355652858968760144869733303439762269751240973855772976700028007095297561142041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19578203819595375853049449215467187462185812942508170932669448756022987881202513940237615276133296999945814759566406862695450181761631362264929462328776604034223474611629962312223723501447719428154091795555319995711656635837603744784217549685963215960121710987405524580134553804874957662702299061626971627783916357624057461893719783527192170905588860669659914846489842029918752283074418208547690289062773708668607111148469128194720897071344455027604963533171184116173253461619110043709567701055741194724694396927762188695688103378114829325626713222222241490771450176192891749261810684198260811385587567859431816103441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19552520698632345765792293781017449773542738462698059562066313094338149421592697692688440141048891817617241285541386741696359872517051008418336701721584590029327089691295647362385172248809785285215818170936378369636327412786518665745214643951775790544328164034792894195599831775339602407804338836608939839141571732234728237065976790433898661076226920936954411734804883252375749905925795034416222363793508056724773219700932016089464212550371467013415310094927846531449672586224449620481955682147284213884444012935354982481203937674136594154697118337724570464461843590427540459089487298511967015211521059466450395800039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27916758006321770784855486392336526221087922020663380690087194746256758541073557154434365674780679833812460385323067416046703487863852144614888267956992249180690035046128157760384396971151125819691344740921037207001189695677354855353514357428771852347321462960800761077810702283022744135791526551375325356016986261635228079857808136480828824079996163722970624287858665112862824686240018818302881167415078623891443987211488188165211498178157561811795356641964930224884983708402162088978906928279426649270219687432449706656064376496118553671338841337409248377754735338190648646652236302293195065404042955657828117907717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23940086501443207988006952156321878730594245956401597676715608468462314502645305724174280812989939574234838066136446697058182863099860560904432535045225358610543606715877021848938108150094496324805376137703166895269005848849454890809362812055327170412091830816366220521111538939390978585904202678819140141719520299517350302245035535979354726314510772593591517181819179507462185406250141201674815369678583029828804348703735250476637514607478710101303599612632365831254837061391952799925069552073596498639393846500878548146744286206444291480591296131550319879329841754102071129604979396427090097336437256273248019934313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25045789487001766823946676143332802173800788420530909527443596612631020306284935972994363943270018031587281709811259236928446613846461087076510643924432515543061005408294680950135740457108836359187653410981521291989623290049353990755204639814508746330443136094663809148784005543115967315095927500053794886847972358779620992680584486941796233434151676981996817853920820361271424879870668963292633991035140985923446542024076817180607495729446490282753691986723944543844374519169627749055657458828396460688084719113009223612273213997705001490915258834925834120553019665452331043287153989411253939844438540817479558042757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23363556490134244182802797417608083729620043553171918467403810597097873468842044492676149024617868831117428085587617940476636146500092156751082712429069534973026395638435176557618684755564038323897224886583222236465775355581123183647214577312185213486433515167284538713862956259166874526432544944945892522850328783318423840180031730809717693075301204015524294212918897008847999320492207842941099054178711094610027597436691588983755601104955166288352419696243275144394805972967422469135041400806432829132017508069734701795196165274370033107846299557756835066396105356788223209605848241781448836511113614504015411000141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24003177095229186761115956297256282355181637279932697322952438491278145724749243216881178205788946480178354097261627160368919833515631880785635403625075074983498729755330970554621220444576519189017043570390117131839925989410236841895202326705749702075578082994075801911673148933488077233355608599644049786202148889580845693185096128558603661548485777618337590304883866291016986562552285080817903071202421349283621749394587752632051910887211236087456077494790286319796809139055879081845333137879685653717186098742884652411854692855417715657159126811650287765018522192718069203294566011053638969771328159014788151381079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29034013946755078347536314640582602831477008031076754727207712126602359995575736632614860720500116733979755773991251905886097204361663726556109658434506447540700582377235929994532745691491791350362616906669744781105930098735524803594150685476638313042676936762472055899339943807088613144007133327055959455344702668744766592699587785640129713564419499320651667246461957213374329698369302400282184314026756552522961754698326610837044981413673537188018654839038988168882687849500300338257311821665410806480671183900484182307470248521530536032898558660308887594110611795879835761549935445005118798674600170063420178667829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22666691325296300101783995592584542678255262096570204349864114585792585098314926603476034702274220407494896174720037928625978512608161290614464320874176770632568888468383265369995643021087686955766990554543339631258586559717585724640869421709586133553869250273277775983972622775849419163333338641305777765224945268558515926267580248103704854329944264798412657257631825128403014239332860993487236752706988072047678620045356833536288189084707917952486450711194387873038190493803662540635891249303962112664554513455703277450063256671544860029934313816909476870706481399416063913450433632968366392191267271287112191928763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20220459410797180091948717305698485595456989014795716430759673463464188040411404888730101734866080856874502221004395237784740887105685585067340073051336889951944589790643160608421068501913260481585828059602399025627253345525251860420217311025916475719285425475510204485763286429954686767314075747274539770591838928528059236202203866140093304284879788404201757046400459827814607359874478945494414688010077777652095741288077567656313848893670303799492366492337594404610780926250759764779942628631108286471429340456422370640957034001768027122777123373658075339473892659474098808224349903360829433747391073755659006674153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23943599452048935839483356843897652750838335502528333962620719491405861834787471867227807501903319756097107511055228704371418799507971458886844091409322458406594108813088038616527499540698555684140072844615158661308742165881681093870321513107346781054514593954038439167430496344061042097622619761440713553651257495163460762687899197125127386473277808899399981080367707615443387270056839365330366031123320224109878087873662614759408139519649667195947213434465309636009964160971037247040956343890041393704061952278281044876535359724748530208740220300355247473616526073849200413113780392185094303717147925244302256084471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29748292118232068231980115030841345007573008478255622624163081210719564449477849602009552122741665956357106895090745837429144177059673906236966645782418711495085654537979782435299395546105975691335624960438890550821084896201355386848928958108483213280842101189046237410295625522504077712519014126987055209600901624600134494528510532240079792007816130206274182615795709733760408667859348570368308732929256811118854903235955697906400251778839777744263153789868529367982622267437611010248593677419788698843698261952216378834161525923075486224822083096700107009925878056720004152078657706998149298091835291705693382974691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26072106153951187600436496752316339465040217294013856572325624606589759898868021268643664486350944965937139106564597675438452078727648958282951144870834635593330040303967541487780077988079829177355617640918094814884033077673332891691279154728364263939478010305656257494403999985028506875343498186099101265629346707525104879334161762295488397373166951871472416939175707118080367730750537879718438349443588804379706137418356505273752115396682655115013316013628370669532246997717971860244416092823296416096369286091596246620293626962791954015174966290973228197556888938069568159555793282006238364729715867666927367987913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25528398598812840416317108431245694914801537247156468004980549890637916849100302375093291846600941510673619919390889391990101428866020531056895007885784438863173264377362443297937005975958145848866302503699025620900375781945637313496260663762998149843539798944436343881535339940089462809065901670865632889850101085510107457199828159246731967424680227298152668063615738621909969934406443489010759038551127513800305903891211936981561887685153803406270431746598701383285756609899695198217095147084870173699166804356632666548042844939612990646179874323948945115644113020313907549882752197628483200744588912412685962282833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28208388633253345088801345210493718188619295829870633551353958359386912296180076408725219156014395724005867651681684276321554750860344375348109965295103017940643131706981752366596160046169808500055270054791982975411815702377482820101153216121308696973578026464200074818817866728544270157217408261677201524027553108475743970098078003605340150927975082935902353587338087351728848058316975923255634652395709883749852836094966690553490514532781691844924379943455250577378935925747515531754829608148621829206822527389353864913012183632637475993399398648445090955575008592854509337327987645267793062458143940671605685807843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22601808433256968167776160475803227935864522530815205528304820393444115285000196179303888844183894954043054732660518124993851207125692126228548081257223529641533315728677337071038480688209841142150354108331450565479718594116843005137396939317399420384268418961057510646254657209526069776892133794284711621712815981586636549657831627755785824499992735269124146336685689140772889339892440993043621081109561524230595030752476261273382305226507478803269068533694974181236804158896615420625081473132315394961871548023622232409897306587296411514631715899416394027554385702821814593799662583031530374907233146824522890871129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26109616932077178759528618608793169319536988620690410209189901303258797524270123216348376376806657769067709720985890525147444968509737443824527305220950560909390521560559399132075741897970801941688235936235865911508883693723022431646301310839646611575873786276678508824806309041207839797444864956554878545649709791194633310804752101375874166562041165395372260206075156742862444682545413510622078669431492449631787103589295732151444773635063980622311637235788321468332897493893415228617138498363754788607875591719286264070841393522764363943829130028424391676259963975463074706969477671821051598687735815186538615481317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24593111454541034559979607727190573049739078760225337270753971219187965144850932496975824753536061275501830292506411030125880146364943088446745322658755551059485059447668693075787388359055316901294609139071740459098195368099032722272983722299279682617999200421326898875171955512589581492518833994948584201470577238904319119386955811530458439199854821711240496022824525107386698102678371596659195127977212506442250371819383814919348659829115337094518797424780893525735956175663630434949795121959385881210350250878532388258508890537835586389034034803291752520396151970854944789430586100881512991687578525461608892454999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21236977680590712111202514399937484334605402793382293660783206837808909269187199420202850699988201807779111673116583554552922554942166821779265894666943247983959208964062918820958197701584078364501594006976047743180174901020275386407232043625220051854501326682244441301313796475054851172369957318518839058565902369432794511152585155312547752472915361496284130785736263614953748929033760185558163679279041052490920529736244393043799025563343137974408994954760553125579604059438351403079545246603285491149133861904770310970947116774103562101048294893628742287750662071642000408354738411961628725890046837486395671495583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22500239318086885001927697387359210214877703723614147973509591838264238096537349020250655268522361122534590586669978180903056127279919498541000602603363931680747170396436156905350142629195474545735201996836812177984127911912679121638184797057182862313631394669849767399323062579053140502769718480967302009281571982103065234695126886288495608667073845637842699346637072316452674213906342833550188939788831470277428795998649750700476559837128712341800678987334371370827726404214431629318697603635993007225714858608763111227845826534756985175220381682168866512814934091321484420420543666969843413815449442033826005558261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23103118415556798275259174287266162166702785906052036207857210378495935733406919196805930938475669758833555462315974266320782081715641882104797114731761828727349364281589408391258465203580913370253024880451991738593823135358265597657278285734513280641265603301081798637830677053005711178995449135859805902862696959506910808632440940507848824700017723206367177082815214191561241786509900636320134717560925900826257015994104237955400475923699323902894193720851430782020222490682758843245843584861720471437860215448445062656393590956539265151648235643814240752015079211878291827731274908208671956526927592612529154877869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25297889305095272897197950611624959110271655390266231748649074706637331234125823113635440159237692832994758859641926876620819330515531518065008188452604791690072451762017826290252707060527259949409424719175639460827272512237787505592529911274272449622544887081367118077547405799325823254478410897238405161308267293257259854279311018882380582409145852804440922334575465437497242362014702019537914379609603344303910522908105494611465754075605538000150349186869133416376410867001329006688602290017569896879525284391064040506265034438474713624008647050383857490170832842783066421435862645528434527081376116572746429784231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23817632062558077762790837956337880250248691187069388289784257847943168997543934168510476862292265725228105240862328897106944435962550652444015718951836962605984354646088843186539792337042374512702512571590761772122417412930385352881742951985388314736074614480749489917546594354835090982120331539470694046436320003064606318895613043079451566867765080924966265329375050127141323166855894736465715209754457155274334289239318523502611592366500468091496654898088901360695590688327966020237951160440493926207918240579391822243460055009436050440161078735450963232834420681601544525453785066047765916754389558255924143356361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23124343049799173538058457736342650419646269971197130022467383173113720136979065338635888900238322669080403383209692159852605017157293910929764226223443920114414164796987183439755400541461849962117463619572592251825833111042700169917053119308030864438309096138325951053997516632646879205756166605507945749463399794289448067139984532833914653545044638039767387546012974639890482245523404281044691056692489955576382909268602613901455206733980121856973889485065687280641960882205818654449221261623336103033402016456785733420253064598905998143910208843143136606359538984037994323846951449606340367998036451547298649136761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27258859698431920914221413852884480569252593439487089842566844948112150435713751092375815141521083950764855223050786601474579043091452345452258588034786107631960693752303570997811130469211856596812134855354248998911703640413892780427170975184646437858753227461914305633112952476059213527192452207729931904163916867417518943432850141990683354984000782305670313521469721363101527404973471413716720533988819535929366923934126051028685315643513220155446937083902712442887047898161255717196181145890898676667838055233933765674848718817408396763233289048352896334232337524040376425124475913426006690059366015658362992450397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23842538563075507121214256573565701226834594291602652709781683310991424753442826267447998353415807483854429580544293075498738307859614225466591704567927052538761824628898186960793549628731604222376490025443816527255398604892518579069563707744504337150277789594332723223637257622432919300498621291799682957799033943765267986501358201686446964372297682250960075040231783814284770661699059324235285536693225725645765718649847207672628664871051744578124973108001377652236970148821201569088397699611807935745697905589500090673215820556391306258327785839059459863695995201505837235166999361576917420701223186117098774439689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26951566566505882292323073657884604508940377198722220239058859211674513990986516976192443892682764150526790134936700271638924796943505873986371165600852808275335432151536242954364120551044533500648004134868535217064260976397713870817013305435975206193433062991670726605451490550145842900464388498423822651520813488568843279614768270230035626589834901540865693463266366226248790490441694667439558365704758947706726481061402726482108894213316542829273339134544053959578217442865363278281321568498304796876842384621282600711881047749758018640405105230490956072967464781188050306972593668535763899374307750153500379982807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23165228593684839644179132914261229111764937050744947666945137878587685360928384332002356490738061771223088454279942685780303690746162335401160257146134285163601171991788483555897624473653109231229042724038683996310684860942982527031801761739894978136658440221360665904011538268992833694425216685487365674203796851273942466931241219867472682437766012025138788514853390242982428478123055325500700985743484663272670453485852240940716797748354000690859117706880841331094225093253111364441775629839826109978267566069237942231239824852525071926600456662819229418658094527841443994864975994364947635941332869367344975823789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26969593113024913603018175094007387546565685224530904593717809046851114463291319667581467801682754200523620113457808766767067244371808851895259473065510007573249807591575580903926877614183659577647836993737165379485065199235332000477347374040340793573696902999615268017317672202056642560169243736842627853091193139569985450683525245428684560101395743186682163495775287236270015970742663144179392965887449682884801580259833646744554294334047123766777813951848504815952642688692799598196825882419850019305785376616934023031345683225336025790550946553118420940883800496980773648456833562486674817314775725853329395123759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25292966149146513323351786243863724014426331270830913447744418191125789966734729750337767390765107825999639954317191029583793948823865091926456180749234218190762791628458424070358755300040875667979412665370769495445377871318140693476767713467519187705016267033868414555223118530294116692712819899728789093322363143244134751234748673636038286465414702358613932598779512341829459738029968545952969930614453038256026138966158801848275244819765445137693442184456028441696900114931337351156559166573667429157111478293812699650422523327472678607689818514857278941412052646938705277591211485678416716879921611623317615487861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25212501785612197832917792153957295350487452428416973394815895234925828767701861828015275245756410144871704682738800402009429573014649118556464273324056214445655914219216999616441040910894812012759473748073697017034446329631541423608896469375724199195078017477529835257538294270482258767901162646305939049607855870102457453052528358711923568127583319179327629341824340108401611419648939897744114632377763653700677263623950930523412871416186350227974002100437379137962447528513331626109896883078134958983074665323654451806190270202241300239594141033656692093941086568152225269519926844234945725733491892640427682782433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27747433157090790513930705723444274532408298548868835776074736645713175081093932166403886943125993396844458299518359087872143484337023306512945092570558093754355060699866649034309317612585914862640961795306003162734418862328222566352250966275451653394841537000698035436361260073215272029731137940778663192407907893206588922777042079426466035210264794261940756050644836040039778806743474433299811567570898391787419001185174655787792376132528484192226096499619576993160702516511321721163809319278985651385920886774649386956018959225606400326657649270732697368523301295767182313560895457770064019747529665872317528823161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23178044373480544001831211400268281634007081677182674936497995922009170581032323602771391569875014598038036832435645367512359296100780716737517230067555112857399784992419880160254687685155026505204695284185343968457187582402584272967643404522436375577892324432294936189034302805384018473627557332770698815434897163361738267995032617048998030053513460487319210559193708820361590013898011361408786621594647661928838198574027552697606366090292357001131448739739403351218950779763049066206707051001329594794544010005260180010668793551076541732263858255789099207402894969992799040110061303514714600046420288060071660858269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28315590289148727237360334308942819005549859499797383765606324184924902176724700776664643686531747484591614000631421606604882282391688814075383662689787673176992300308050079069361135198672688865015345344170236709785070679723049850771215509519603212823916877184724082689369633128665691865289019099780051435883940739156005897292072328483691092892874529425092174535544925668707065480010521737096493808572958516082224752020106619635977317420226764708889500705684653790181591179505643188597600354188060406056556610579858415083348216414213318691630750359494134842916903156680689481419576620200962255773870502739010057827761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21630234874776761507360471130777994093797955462669740130333457222999928927439591108822753266083523562286546753731796757249642178063728836244293179002676954351527492779984236254846527711021628315971852648146437345041319736181357352547558994426413882524837018439167257429750171325214259045512256037647849945909491880429491619431900948680087430922174378253414672459621254949727672485417827683118760469846473698055295542001820595036456081623906632039023178347875444629322487589354437110297685067026322931639284799805580907831066143310634567338763603085522643223784142709498274382971978720668181074250613365054494849019951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23899772545321839441292209996586542197789642922143550614774889262378752799738087889371027440681356478376475282679660835268419250846490437233010791381292891478208378682776245735204741714863310940282739139669121869229816435646837393902518911924707168983902702404277009229390841380964165095364074672107509532878871733222964766039738540928055941150637748680767903340039976591722747478829537887031522483859444610895770957170617158813492725855039674029607155822722387741454401102569627534961628382431494797267607852540452796058819356657516759295271980207103486660208969069931449033010033877408480083982327463880491222458017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22568873111064762496368822223260111960500498656131005842691327284281087526942754703016710806799987126685756149759339531589371804118298011374490589490302106483658599820466523680381483350077983621979266560503791272804040601898579516880689387875762195493174731144972551182514501705051587403753206446204297727246591640244724741447502525090923543133338023862826979107562048510457897406020041929577016178770594842975052677160716596760997141224133886165988127017658446269961775117325458677292076439258876325010248103101568539907711315598762660852150430541519819953278721638503951019256288636289854850230297020702882688326703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26306816674424820036929980133655144911158751777856650831742068015411516270093133232479847584297659923154719652359217205160931886023104432790375941726565248074068572924211648656427957922247905075743298031369316201331741100198161408910103159556901193578053550557200553034604804325889692014094973989054739163076862060941477332675015915100573709543699814332058772011913444961352377354698791261750638591543462460937303769948365040607968483177359539243256730371574781620451017074039119278892985660183319409608945427795587206580032729412149885930037351675055494389510874242434260147987903368004597751133378597753361305251281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25681749125425680717529340882850519224233514426215262534775530111665228558270685807842760196376307498134886422837842458705689702140771855767427141492034775518618077980051479498644052917444062806437130862844657346854942649584978900818491180437291840938907150458275074913334714746176095734602824280456773250082028664899509935325449110994337258733509760393871352742543381226616085745267883256150134287678293659712700891412652063651783301348460961325724229299372585986741638191327656607552280315785166791000715442501739667152854823810460762618437654886284895984942815619730320711981532541180787570870202085423531399964177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22002332040608895999848122514711144976424740018520942777612833535685424585333072488320851960869386869904024702812164201661233269882069003653477619557355074646994308627156117902407907050421636479905690246669334951273225075519894602116309826194677228063727009727813883006715820105904685681623999480076240250106527416357525580159337702524483665530510391629566747354176949661014182435023627553337514205598994623232993086658222977105348436177744371403264868301900683357548128277285790879669808852076969978109945071796539392175364543878467096730260746807267010649444594630410101599525049215000254237574177656127008150545947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28981064138836880037285671339646444910166519467065208951673774962297892177476095230404659677471016131881696073575090407556405823783073769299195854493299402822750696988804754873405077633531434044809306632691083307490847194236777378229410702151021552317506312061043140919534167930594886323388799784238899143737617189542001686612326910290108058978931929684237037198137465935975002946203588582489804444251678729315394498572096018131737235581090932294362092694272681589498287017350376026800581316230732507814960777510013796788417891692585096219421140290291822248375360272095634852479412787212049763249143012633382111503621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28904315952182429551851939739822306833938410035820737874070053408935400726808417768932128923434697147408326799013262890880728214168673650876417191750155493172204945767614316584295664347192402167986423573370475741205207079642474665990844952916771018049601104276759154872436410280017718498783997468601603538404437614373667507689500071436522559377293973010546670869744649331980032546240170699605697299697350323107691755735106177996260070621950727855935649253648616816259068602214998609724592426702953799636886530989393989496748381162884126734638355285245095375780709914973262729236864882095656557965690042343396098864173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21241053627621648099436015619308620856071334991424119469951399565868468892721825762247947688719933766966502790794709230351337164749389202517860096750929129800315493190147204415895161633605555367725359860424712731179666154813316961335544824847296031346777518887151955754601144865842903216508927758294874363482694130320745521094373252963403359981096303187436654828787821928771891934153830279609565162056086065475554533474758341019044697266871198533568094142249267488187956637866854257342240188127506101458335077151589001126936853551121833202853459985005112094943635928052455652254670701127221888308906765334179813176437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22554638541185940091708781179410820033610783567109937409879402672403418754476966665291405689333390731588890354276790154632086262340216451279458989406920920132971854467688991441222059365108673915181928149437299618426867616409986399884163500394199999317379001385514375653968626467380445417863278125324258301664091820905742577815961724733622089779315051453139251077320979319139695704063150547032109228492583706399763612428098671526089069974541947060390621925361152794450589984249033753759922464976638031261348290798168284315696831107850882514972912614657792109935507924322751878252404646924582299243524207870858358898717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27185963022407113627921262196407653981415783833433351279146064935119816939917442661924207987692574965301751666840335728817615624597469444251540000106470419491725763765806884315986657516467945067689278130102732924479896317001351046486485857336256596873702630788997965142157944935289655758630121482490314964395252834782902805520805135254010901868402131656308484729774595085575450572208153514454576767434669468497897105873704676945811613362428002989036310858102532457993724423594145648018658363105351690551715842283498596191217852383255516006420987548355761947408785186557718657449897536271508382354754159978618796537399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22628501742630631814133221897834103928972926876935882341214501190035306984510016236017540552078012909337059326545883310711332785075503034705144248948025632273652297478381618950596074270135800984505922236617799441460698165961783976354545931600397917188777816578953284631148599497400014791005476694968155604983299034211750987276911252434956925923686008217208858562134481438810985512834081224879930451195051264394164064545259366990325486423111856991232956826059325390714623188210231774049025644553846491921985618380937764890820884749641942391110063998475562844245328824346692314414066833910484493587387878814766133245041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28002454335917843573260302301279329849621802411281124200815611752480193472331354389087350778542071681918527785895034350021509686429772804941510013438230609724302707750890171177465166509821583493080143676423454273229190519461083737398103487292239760207766978464392612144991571499606692981592014596871915911417424400359616598152951592315459442094509142440620530258044373059201167070828424354751155044415724528241081942663554249098555532526318451923036682965536073935569488964020256045330017494411461590240389669250564308710805825608070260295293331457164568860482569888231724745692630824487636489534729031417179688906121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24220465196526181109903480730835599495620020283354534877257566140632523911354322119750126456671164938401180165694534857444839793293344865009778627384628958749677034185575050180279672001766904358851429630503642355748051237363185048484515814916929111869256203676102099837915909035526351010429294357800475398280474117674872040992650992688307708021452028442688705051182359994891363974731401498799013677488378259394320756009082181094788002240513352406102359210687076215377811142915429742588051948339704853726983988893430781396903234659163241079221324989216120693702241502627280453262608108848353876568867648403599788895003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24260357154290284580304748395905114249452949234729989777127267843845452139284589937985044185094928763743498040331424146770372345912819975524253092317152494569156301323941107673659218660981366077332994179870562333600420719258951977951980578056468205341707080262062235608858187627495784482906196148749582883170160429111390581245713018942789750270272903607404614512541205520324239414773285457758322281985578528425406679791266594294599657576393181580373131540903827904085398106035795122444585653964331551493590311541111714514115628056138537654804780164623555658183334929703507688194956142493168627389655168789195649613183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27006748662078737701677074174760920131693242605972882339661073923375816265491607222547585364565977552704354365162535980152510285213735145182269215928747839250381701271175365565056173722990663094976027998229187332589001221744063475440167489050691183445556483843153238936691811455264947872138478799693651880748663968619486491617208278360696886941967847717419804312793306792508321419733750272016562508723662474355352588132625192491669356723102932935055199807599934366281566648267020287219871611832021014254625343288998981647606802676753719870595989985748220293899606576160265982897687000822191950151197657504280161990073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24163558825509467576014805521521582320497551062052197086910470590975269675336072085458622376790181207940225234509307926536813469145510696896077096511723867632232324898417081875548349410742036501414370295109375813089820230718039322352872771661704390241384125798172815310111452526769671618810604430304210156781962201667002251701883382948266157341365897155235643518286514221025957673625480184674110819436929929324662163149231777063278946543148302577827240996077928188623054557400825798551213021399381124961791277171074233742043253024104036444338888271107161700010100509169843386358751559543230928710832324809345558400401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28647485210625844674536426221706688168560699337976199882020385624486998579387138517438595854957817680492211759874088041918825042086955531395451514898325232948173451678118227878955255871916729283460624354697721335470422953221593699163136727966258680470364534965177528804118002657053239152368090286942533829546732090422864858378429131436228497690632580888631876650062792351124592298698220038249074203013805242680488223490696801380084556305568347885535865269439972488926773417521554307047967032634392258769465206681232763764376681426062964589344097104602397009078426100648010477903579939937562568613469490360039428608507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24202298009264739393854544947332447053463014353215756307537896579294185060786473658265115240798702981230100707902241332010485610658934241324930950846941352498183678393033151456709456516514866537370319501557705199653840033257174300489628748559264628922512805616094544951859203250083273790195627886011664354959629411260435407602971638878375287656950114606999575279080011720128058326696178705573352722747331918082395749315213327191443637715074389777577778403777073625445489582282915361725082442723062140736022271581376934189208420179615459581718849372092950293017472527892473562988360985500186780343658329915710712187433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24808744727827561891508810048326452414767299931105555335342994462108024160175987746096445970380618762509612217345823142151301395428234342016439181502382777929862910398163512760660990144095744290054426266224285218197316455906039362701131963454448579172096861751855326695127200300677542660078356845185649021609529945583112427168486975057580331052568331476640879592354233855491315430715146607346714571588240631765105453250289204316570275064977421085032699370901315410841659255570789878614619332569113713486130627366153203044418986937455581962313989069279974314778952209234899888359148898473799608475062726656698656078791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23410395005356244428094804413534635082860549552256352662500700090084361604253408209275536437381757888310109278976272123323096528676088046946290618588287487422827677007906139564746893164502921473230298667426295602443636458402553358926224480243294516519098274224061944431669595506354328178311529480136060616764401974316368712492271260786156127875361440007218410499377713011773481175741587485414491825850538598527148503053309066178572246219460537845629409515702248832941040192105054086764830184009624681278231209330742309861159675148195399871114744238615422430522059781316884674463325032591361311104031288422900039517251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25383306616813182173318055057549798732720528716673623722945172811630934121675481043343889833600755367428374686202171078631304718262144613050767546830393457018633899180168140334954397575170946250080704013831362391615412596109552185448569866402086781978656667185537559015613273077850708105350344427476492411310724254639387987249264930197514159368805222714521260746181560003676867878165591083021362003477612213729672114406913505538729749269948026354957520262075253576199045778081443685440127181308873370216414494041087865001172463741044580130993530231310194566610737176735060524963766832033992025946444053069673762117999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22323411657811521806352696932782052518436259383944019623447744726543562761838645515350194478603745067193926381687049682017638948360322918852722087852857248787359682711560581275260904146828417683699317443217873085797435984211463672822594325583537580907603598212469907829557792614997804704614367367996908606801814801558817409328238395374639314343399016713947516137421987511542589983376056173035370715314533094001385184940677856645852653726983443146811690442609573456908807771745140655171344397059451656148238560507818702428805116048558179364968038300998248895887077709478040524296956164810681084397623623160056418318983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27750914162166736049876260461943921541428190804987038399089927309892488647939415160455575869730197020604934847826819211991588892111966979288529896042877060317230704018188068020641957759803800512712724106405750315024395112527112179059081968514448479485932766595493894472637720311509819027211362033642388298900376965968600447904200207377130206465292949331103501157733176310870250723579621895838686864295329197928244134692163064609048767537354681901503173817490371701638707023288435970870472229398108120581802042777660977788717945345883267012458971093917842058972096072083104502208125967585954634545511368152477109085973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23588302367993681303010734776293901924903815250586755260040273213202995338347131079848532177266081085757222426480373799108246901956213196602575458607628351811150384331422712459534210129135235384902459564295052975534248004000668358411692233043037228656728424875343336213682549853221843217002092030166360333884859948345455482469593125263471921474331959581105093135029660668852487922295937211762459443673267906412140449012904852275581579005324085704369829871454901871934529396711165833528927491352947749412410405328137038648574086604712013006727663138682769165303688799848273740255176549114117392753474281676139532794727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21819631152254409168211082556245963722297033968397886817120211616871653312503282968248212852383739640225127669523484801877278932207922604958964048678217029295014652399471091161566524501290684293226793840820650310138124669028720819100868991538380507338695933502306074233036100554775209974126556021632366000709091762246205911734994069623112794192239576260502210168442566736303504853151287966600076236681692498944185187321060830777160738069400675804530113238163175468725644689284675915462411369168527214506923585198819905584885464314812918421670624540719562400965372966798615988008610125812264014906872736721616020086721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23214235778322548038905563234236024208086362046830511086544203038583540803870620280795382499779300409546788541591305889584830750314026449966891132495345044188203019359187675957337531723340354974247635020745246469279599447569970175246530081284134732264566668395418571492130773732969660960244453005200796232131825264686409030815157632207180000182960194681124336013387550783221925158037202847534055278085493720377966825847928085298559621082892973017305780483405052324437194561571270501263205761824822079687915128894913585602064284613560060049222418411870195227598831275757439711750805334056861762269084050555223451388127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28577954635030828460825818907062173890666424135193748468990056796484334055371951792665928362480327307377184206361356629037384235185758962738888725932075749125319668788260950362133643265374897033087276886673845169662473576437147479721738471227464006602379460084606319794175238959134917296315790112614970458046488214340144961775552798299077321451752605923781318050690364705700591022685614314196673444578627152593305560403191677585534556355763068575334363485948106559732265981307854416320509538057687125125229740615141666257608542405614591646487649002107676474687468550273605891781392574144549978234118682848001988254047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29150673459872190623469854171642244047040989523538501764884511169058649738164695752966603732286383940966366028912360359767833064434331569086241280990893637147589778364034886975393027336038037487910832555558038110679548586446753947100752066227733733791757506796498111941598251580599447152860706613964817636339312703459515842485683168412213383813041516514456032909809094752877853424627483368550117131871083056897268819133720494574448623798701338598907527970537209443395095367877328093162442090325446815851255637261123716895491604306874158634588695845351544988324798517392109903689491729499631142325580781524299164324217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27234106324064293270660837558395911961479220644114316099358893367436830134454953425825769142981389817503671395299101994327771774574812017852343188039310078655068145571386559380183039533654953423414686402384917136586563455063356584005617863852810584742515843456493710331803432950565370191609127022792161163766987290515305393898953635856144416795426701912828212024484655955651305865495825885011250256958067560360689579542961592634920252420151225044427811546071706875686072931541329627804245541658875947848007002021962638123036717763305320672041048756089783004610770019951165614717424208286260258374882414367522478598741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21203042283789257724534486883811357557254049729287989348052522920688623608862563811497834734193940627282707409340685404179341617535410218751184420512963649376592931825137755725614474192659097844064865972519169075360224059489609747299141167687800209790240492336669700853238594401529224303390534272813649189019194673263662320424211353514950864659791387363579538674153362383789044868959505665771120676413464858825715972234859204650931371877548422037585234358186407526017706150108860180580581814659454846853968652623363594875695721448585549021972322573420064231577274463058681384665880114615810286968883165737743215900269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22256010204675742700434578127716997422692799031643772634590148795445020821416178448336897217059556182651509473588349657306945763092006436409140693606872070397847481603907056589975481378605944906790150981189306512940682993162022923014031995448668010489728726738514184038905803362207134545826651489741785959864704286300455333999941671136045862032784493843768486916094729716654413503226469887015607710713814865759898280866864788455423368200935279282633692327637177444034184961896450419319478961700807665090073409302847196795794878676489636336442393715965900947078777419689808116601160102584019566127121924500853945429007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30891958611806125950930533965578479903049212784787349060651284371175905863021206972479085376531349018213796375871518590111000674706366000213727626140954194785710302069957973173119400154368563239717470990700575733087018587370381868874802683850907877119558192030752150315101564988839325622779796291553089028483318843854354316528380341169649346475067512022236612945224403407702551178547845270371884497444242751088444565844956173725733641943453008461914201025580188116132801389268260522422818596371953042615748541277035836429656475921201342328445715470952842796175486356982353019788743657858280916549200713674098325282891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19091704947657720301699771300767822483430477946234814544840718739773124917206619001994289007096231284789655677038832554738611952585484764491763053847465701334508781441011427082112916671674130715511387741462575618528978382168012954029992217495558505387644434081989204494482508850323813724177740801112535542640654881108022376162983025578944172236647487003878352277299643156528621387865978212899495444576781415440327735656444426438019193541340019786664431698939311045629823556929744178021582343632785858942989449706867260807981404528185529786352255609686804841902199562189466330510022306765246668975676040177926302175623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20516297559680771161156636225247635358563779005279423947078404595118324616848771923148466210006431148165234374033233173461449711968756754953520368785917949757471826360909925076418011043958463953813414838649346434035137403795429126459024135078700618007637356502238243030927239190705646329437707306913095126647945961977442898462111618991044211986768389640968376470583969587769072989356420847015250204525809448772554647383856720445129916222057297836607433070732905472278328888399164671525263034560172590680728187046607034176156474884466699568893672792762449572538743255625958114302174682564610363513050767973662272708803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24101498889894130085151015951985131049215674256483655919022800461294650908763833521510941103621294827505485385548088255869598030730814550512213982939901058795577682623486825002972115810892577291782407481414193169232452855395293788398965589403031421422270849004266830735093939075881369257661462538025902786583021257019617034288750669229170907036039302837276679135148624924848296593768625435080425002774256193695879445968581010206359727192699265656321662303988620890505676316506228915675944238155106061507900173188891125116433814087816351039448004081391214753052133451874608472926685467359225489660229475302990973363239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27289577052924177241890691532403986833745558450809806922522480955319551884982833207074698363517634584201060916368124604465446690572468337792592324736239558552852839582808481297084059237150021576964870583337401993293872284793657845974391320711729800020966816685177888942728382234533576847114316983584565433462786483371031656964847999018484168466466970808788074311009361061954933267486294590668683944361082515494327289034638894520801410513660219343602812937788819475196086389365863192227487399467495213927695953955835081145519364606978961489387222098980775587858852451372737245028198642528307095027074868342109451389841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24231378496583008376155351688807594031887581820145434619890918457388318949404037237611950160506556430864825575603480033537593594835730103706430417476022568435662016800748392999088090530347152710164262683202485401464239855562400738326185542338772953127110080268285641585349732983651846062823843012580061299816316866978061104226180701724971078507431782397212182258995954652330839548703701329353035376720210153256252046545470710378137511500340210478427631568450820921066789569470406097411239979525125683529914593094083625431767996256932640213604067892966338801472169971730418826606536312462097891208373292706148035925867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23865756878824728840302471074617916645768635103568427367353847445076754121736797393602279682511938085118904437567139157592847430849761058513542590770084689484231897378058093820690355444873724626810298067406792270966115523270200943904605114249511855905180481536413651588784446779721569746836802747116703793342289370177836892016956844489431230265070268368115059371356610931883564960217187621245105716062387509493523149589242050610841773831907069811008562602279403835993896923894638126913330825419120511844026286432169390895380071580696180348112988305810215260151210176926029464691818715112420430062271808090887702103841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26656969172196360971206868434567824281922709797004052699879643979589295756361230542015975273808309065521554461927219957658156135941824648970041953969472941186286316315261933772241576267031289576897636818849034005721529140638316468674542825013947501876161687794171650847097818622022618437833623697893278218331912085418179674657860780242856795946342082588110263969656667737002536133475669123037611929659143104168794906976784491947004533343550330000112429860966424252036112390381549986101111829107875541123969159771115147754955454872200132665168820463301237607324377287113342490787627635385615835084789771281106797230649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23578403968740185580947104887132425743301476346879845441826331306779669945282367922176002807535403752269220580008004315469768562775427845448167887973080914798582067227517414101487710674490702376310667510027252876922653961925281694416072737684026031401993358322591774692330577476963239844118986161920333710503146964830631219032936333464781353260625070716569594501047245476042419852525968765621924158523788776543878469551260705407859292104475709355358928521868481325708171822827894592923117325291689665409775776307466252521840168537646968277596151546219488123578389956530777817248451759932573521576795059774361352829881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24102226624311512222052008288295200420158348066101745035924484422889531594197661105169476814220499457479492197994729365044291539208491536141308595888619218011164412529618471400699778642013403845215150724647360297986525223077911735199663870211277597644701062336945930822823015652935492570865370624613525966136940429726022318400213330223737821311817230167899037042200466713027404864940461092379790596929540283453512472571685273743868748226315131682253366264581442756423426568093279016740198879612991294032827277152825961361584793896361003159208797019330737040909545345404390327301893150647443416120168579222193883180303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27880888186536623839678711639136176530251670960840503150926070660345027309435309719208316590659133299545741789555871888087696926210948049569986632053415027517149192287523866875351195180408574048514030378475514154951659976328345230310015602865343744672726772980041519798445009942787492854095758456576630311988253034286597522225048599983004361165355258943662910213112781943051784461169280460261062575210446772269859036249777501916699829901384705435473074101458151558169961588310001097211250362465395863967558126094114014021898920346826976539640941949937209221892319972446104631728745624399204232327527092649212186652809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21968478861833038527568622785537008092374943198913142480554910895331306444001356685238279620261554940839467903027507745563343835524051336185404127886112016468119189341453208509455047786016206271745919534494577107622120980263300574745104843503086646239194643581059880321583518774913397843901310169133700059709500085696069514213144741948544260933312311258846715231638384915975938730492497079232046571469568770507343070767967862109419496958695019084237714602018320984743274665717269207718319316993678822725188174240694061652646181975588174572797261196002952833579023479576882774138993436937344090268394869549504321798741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27645734526290520166504205301281664852083998408808861167413892701358012856674333859199739552183786864738345037699015116153688394519667096119319790045217329987030939659125222986729886508574113550972187508074549758892109046519173327786449834834732933789334070262649416595459886838349657459418198477958424243416110422456126905350740276320130884570119625341847800174720092887836827555730478493273051544671948734318661953932112130042690476000733114158628822786484338500196240860224752433643260134281543282160380834745859164899069216407080364725953719417600257849378141028152768165563571928007599505590554500230345618896373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24203269914641221898964968088141344966330766937066333121094095283156491197361991165949132685243423016216237751538708724142319607198140918740397870665711350204568663283262041545595213090174895053061740448783888575933027829678898285395389367021938643432118199203480378844695668732980365214326459258676122423194424100472687349153426610329935118935440178649888042683120072052047525713446034073830973570285252273479341434719307691224845665056153525462462509557257161349636311483541585915481633433753671981747207034332681958057554045347839802002073585382829984983264995127473294536625164018395961622925665902914400907142013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21335518655761489315971913084757733966471508215670591663880016604199381779750864447777731469109254619755632989419545069240463466291279863337459275622380066736292215908463127669811439554860704095495028340159490470245406867511583978454004442758278573387670073889276926855205897628760486483350908782962334811999642258010712420558743376331342943933127278898170814029091365938997471034154829192689768468058731229801355505837307097846934417952454675357565238954427953656454427893678392662212127257187383817409490753457442165902897106924990565449934133727274913883710720438696948570463414627738060759802264457303520758135731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23776430275715044460937207831998217107148292122162651001357905259967198572160715773522134501819874940650589291940148671518411271105911775215498104609100046108884005325911631019795526026485960521607148129995578354314426363115310283439389789986160357313517977451146040961256223602238579004365539777984005313580502944581904543022147261152656257283310620581555147114424461814765688900650210415746928495534251730103080004011848021394727585508758157468384333546850026255249127914823802666484878631804711504425648352437183128220026254091721038825174160899234277669474035374372017038353891818412086689199377356245152053341037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20856581677066616029029077794591880136899101216653787635418962346717822280825680572661802582572235287220092778122761202274561330641173168384355371924333453929798331997282617245906796889178816354680951758095854524660430054643437538271435870245728616605911403467847688674680692556344771195706174238554754267301339761097865588439041652221901021705458102804444639136102602512411716952519760219609673832303955802544346837352656327964684275240894102429197676372231470616177440154968410825280447818361112681710805320437216960959685617613281670057875828765069298578647073490892087478366904731831045313135450579426082058171677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24195145729565931164646728906574701552578018029426856058843871122787728002894632704457994254845820417823495172732300351654553487094476499240789021408579770283673897340700300461371037863840875429926081923848852147612025541613024002539244324538810845757282928347001717577005946613885934621015277777746288717541695982043855211995434348915135472541970889361146138074988779994889853477743668345063215753892927434305310719332183842026413257764907438725370919380845986868575234341029860845309587745414790787667098237992123612737965935755067227577336885791402304666064256390080509161203124292231554603796911266989909167013153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26741776149248962024053063492093440621599123450996905239670754921309707427539517316924089571112657948476488136645969735302115589137516353914648135854086959268898389979999607241018279310721276010908695853792822765361710933171483079945749001152932269577883897247575290770304364675057399085086503990612196109714686734655049722216252286491872518903543083306290990532713770467395298904662309919789403108308287224080710004786917894136743040382918745139340324797662877738480691054452242828534129023384229943187345848689885510828519966436107981307283171574710026279826311836829005498243747619100323637609538537986050413364603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24991343479094819588924923010627761261985427622292046262277956577087293452535457548116240691733861084973478246593780133025078700081809894304893889327720964784508741406977868340350990932645588824605557967719967890136564637470199835776945362820291299626031299789646544839595857875293165267992464245036893640122269855771002448527732692195252472516403254339139910684827636925288613593181458664357264529570616902360729145269280225750982978195667309249760908434776236760004391983003628769964694115966637472086972488863917405027356689093417231698838298768893167445832205058538008440649674320346722783136592784625454897601189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28053894349027176583152956441193188699556812524135521726157302939846921266527233357746201406206050186050138676525336848875534849496230427290033544960077557862387006886838710488080824496135475133646194004948693430461531385288918872597007543245702536652116158793980764661282504709207833225666561557513385238351565444245355123671380118748902273921627313798177804145705169715605823380727477870906675114206847495000217353895371993736557524332094103542443197407337410755585686450076237252789491897320839944443070144265668015898603462742389655409870679055155373409186015923886878652398987231835687543042799464881729856854613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29318707129901178740980237618919663860722173400408781337170507648670728449994622322462804376694484895733164245884943208364092841287517460642260083354281175162520069010748745196958345841178878992042117012109877282395338891143212805362760124618452476179850854198473828893224522539802388413336161539328898651924925355191212242802516148541735149447845700997993173475316509718333223777727064035122702483582480037069359516962106455334413977170794666194872563398962971191919411009286588018051618065283459081960993390569733347953812157376201388282359569305002278376652848508298743294183261059294518983535312293214392070200801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20369704308950315362023233047413655358052054897601498860234443406062333565085417915597162001369859332923932325103426284087749540779825708916711997487747827076608126145062808383148177315773712460005032320783793361113399086289035902096292201377599395789766600895751824325401018740455457396339844430525633285980183374298788406435849230373860659951311501309181027091661363623156295900673721148444717936737779942339253534931399143151429167000222267239741273133188926427942032190777506368610211047773019352292366027813382043467753542532430304456863405376165666685510836013056614338507334909644185233690530151991640819212117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25179090760359302097554046060279751059022306743268197556325945716041913233006487236414108161944428781621898327617131455500020938101118362032588625714058758912807450167838670361579894793948888262680073041566564581568028317095010379495042180035633924537280198786598575611333114913988149531575809619807417471056942484114376934718142926007183351587223158603238034556163363728231928088434255470526272416028004950624696427366298748813868814583396279129439903799279889048926024980311748603934990736629660979088249053472744147282375300186345286740315282404198625406977734296033162551277265890156632849641889856030486510820793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28632497977524490745836223232063926486628036517037591095686947141920806006148144944305604748908984321435956540217957382665704520954364285097746165868185287507714087988652610575892393471018788085143224813513902748778638481872643869858733716554004819332867351672941037791735898077833764809413094745453757731576781920918671535860135550951691714749027724921795754027578372516329817284842727125607181672205099091112519774907038052165189023115727141125368088774349479956560489753514506306039876826538828608732966659652996997939861280284806385326681758987560247733390713217748980868497914550112385018498946515087363098267597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24609428987861665014429281180117027261338857383599411039827203619436971662260677008443105572787141836798031836377590495955514943519047932116782522215164453251915835034329334679283173448523553853034572299602451690416714217818667789234130710667178644386152554450229223304001120097523044208770534451095176317776042464114028394699195620483119110526746270252095418528713557686637995182382625135358024404617390365955510983990703814340754072855667203175208266157831108365056941597818620787241897757988093474151279042926899364304905974715492795796337826505449221405755038672482569440521082572253493573742437244465575232102753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23377253328832211648262640115380391278935903720003490748588903724752344651341626004714345549645196384935572154171757864521336082820305157520860955574509916855080492408963519315805291814451503683370359580975418410603754965471296916374278587902278163650676572935671640527241150541985912067008179034723399303803944177587466633688849031632380578826994157828782207946024543159184097756529661762228014955500511258752400162285476180074854363400827787615073348926604292070437016381020034035837015913306656791794565517361695870894067961082841428968231681802492611724339764183413291618744080004665026249975661010912441743067011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20328435477902150153415506361885194478632159789963390856762347729950650991988308789175132524663636201345817611792876037097321462782648187068143708981748581808475617740662590797610114460013294570707852085128369729205659343564952380535643791267943252735016903884151196438520799672122206315033509113399504748316119822197355146239844600966168799236661419518178513243407420915119418217750796924612240189436186782356036153388780919491643967240859885657124872007666343973440058169098599909737714579844333457423611496216654278098705173682151993554953831165104312813746512871237695005910548138143519452335707078779901768325787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19139877730464147815690555693240455619738520632018896058813533641433807785718231008640548949564520192364464343448035480106387100651471967838943199201054155291112217592018509160485555566631420218124917137095907353230850604720894453292067559111138060792632480892677276774495588215540544733698932859699606707802710597227226098314969921894277593654670933833145411540112471271178921783585175906344402360892572799741021587131813107702020958143366237928131517488422331767695342346894985855531385243293624764416888745445117224254871375977168357430733273539685627696914457501722269583015009973753681935982777231242041233247077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28961210171391478830702113277689173971182440424898660123054801181187833151573594171640693429344683992470099240130044340628643910686526535278886909074843868797230202918209306145473770887474599277262499694560237441843806887874818641866495929268544071525532514009129537966988402091463485291335368400525321009522434734910612251574140333001590714967283890277459896609473273593409008369574941590509809393201363084421251585768878108931602619822601290467343866177512884995903803336372893636707972840497772768784051922254250505454896995060667855398263563200941649367616507869594833506675206977366547359910125775437319036801853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19642673276282730352913382505097719812173350901270548547103506421337983899571522255927109052453378632707893238592486422539404582209317894096572203650074486286836808433714974354993066051414627149618121297635167870363993068465417641732238701483430124811524252059296422194563368260473202446855138576147423337998008584056337903404039520565550392418016862848297596759286627088073908132102039283980768426366693195464916822621571493040089802517248119784286820931281365797231600458576968368258178010478947403830895409578118817777147239802492619874185173264223733422864330068928543629724268957527385255843458095642570478989999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23800548773989223465882829357036066989528587742069767661314141784809716948308636285567426089616210691531541371942265051579207044193036116898620056014175508618632389234407898714277030026582274993976492606972939834916075706024563390380879585302258335452109360018582774372403605699629297501366101844972509531274510496995501955518515254501169076672173617112869383746316112825383936306366156787999615587656802496689085600799992436764081423823223438746015875485192974164234409817545380869572545399847323574737519629354899482297898855173608833572943880018602980209578548118088933546846181310520187091385470120050628778361891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20851677029000231231659892161011816857387256835462810241270040174546934591322387765108293703599171676203828289181144215797240234794045002179507071885912459599803829919596234763347221227890817558049060204196929404311404362186462609890934069110964804391513187450877355161250248994583724262816491112542396294098454093020393491163757581332945682700095422852422240852475618807945973587937731437205506018995513699922749883665109732675240830621476333729071397708689265892589391023761019055349044593698231078384452618023828969270717865599252238380129077261127060311942212248311512565003395664093721947006739504988485285955037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24689997151349953017536246137582557121353441335545469644902694459634344527205345519605168501796715929991677499998934559761329719671920568704468409527126862118850542950331112748685924744874609362609162980577611800338805488509079977392308734653557876656411086290577535929344053376381163786791331173230811386688367103823131991381465764381246680371134677663509666841069055143158524754742401589910922854665229038731382742602620963369110877487118418626750675381843489369251530860358503823027394565996919579967553797685839149715660440986942743772821510944885354346860135604034716428254596887374008620979255147429755718511963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21642430322151397569415437675482490226252370610619156594232558551788983063730601164046003553150911182322928011223359328537710639829202397125832715861127960357671251166409743011757180316214553340929997551829692212338028792507313109971491288782172338996483209083562000406507272891724047077423020061664827006100126937592904789990803714593973424947818937777459337588634939875969419977772228604987189399793883862979845996155614881050458063133985770041094209876521125607848849912603454368700047223105672671711323896385085364622371998143171691083560918305166955802223485145930946708092640075796948481190316625369805847562251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27373798410150702209902868109654404787702895323676062859996542781104103646792637822450659630685233298356021228112579008768139460610094840833474833689412174228539081756284785122500347680199541714185345797406101211866696226276087850842124563940981204396445034096865444089722783198782870917722651683750075811358629648663027332590509760588250762747421012933461426665190888657481195492076717938890688825120612549805326549867852181623403844803942618927205841861456718088928416058706422299781734545233140960902600652025997372651834807540586190870951857625603766366351482030465686678518435848143946591325644624440370011535931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25144664151874141672211699141981962901003980048741764892207181643090873594111821692285086992838288036107720222474274660943875183375261028574896490377449032265726305109697047315744015327050737367551718790757748045714673306800523941638516239908589955736738411624645318580341482297380139753223772497047042423218843207068686456812022668797038594283282121203195836103535915684453014440936887250317900608069491700676732263641285521578857805977594399219465845660758426425186016062749264038634617588081990683878675992829986368681063843654731816289846378226179167056916577006031102446296632313066519478696627460139325818634391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25015922273063240857174467645459666645729518618658914987468271831635758165966359607348529991060705767344444989008047316286588178027513925845528559509168079078961821229402500481400374611548444421791740657653726924903670477433514286007933942348546081189349523487889301295908940643118072697279615256853032400353598453417546695854661160290984738701455638031276707160549373226447081809328191986994527719252768269699930136542625892751349201471205429832875623292674305379090330486073210762561750471253069098036969974863712744487459009906737606004284278741837563911121031066043960050984952285386014597323762897337001100654929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22029179703490893901758803265226437195891715124938451037777763926390622989506943916639766403912275838700175001263242001537916216332504688567384712471256778829840370682257578524502287079445620026143709108457138475388743008021987723954906408455772012764897597278352038440407746723028289731671902026899038171728492936940669450863961093591175534551828364685283182350118043053606113030983664514915353020832290540574428283790501338425182757804128644619356408984420197376486882215734069914029883580217701829246508971520707139444966325281902725674504219322877432041337743382800265085051096428016906721524832582706537502746981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27743238561973283892666447747317709029535975280464042506346787108173588956545196458531845581974559648657009658411186160113042224909638191003424981046590838221767773075514511406673965958989466404500089513942144109549629751011666206590011720301833210231999010723482291632173256885050964646724004762115838735560171344909035845691246601046305877138758020285877632741298878587049919550854936171820185272437495550561468442000265260216413664206409307262966445156535924434309908580728651327789781323813019836491218126483724277293333761746147332035660195065753542767256784657533582523693272623152793318795664010675542169127263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21125114869473127663180057459769424440718917677757480592660997814019955504679475056668005228325874927216145395615335846047561103949978284045513540298031667402304073054037561640512277773072213689413800686903151791027045141994579088011532837260771731077230592343906166589447207657468115415557993835378177275320273917272366345994476838583296528058821417144451835986275479680925279768586540673575511373318827980009518137488642844796249879328528153794625119490280558309810184431340646530075551792357570723149082144358458304730913353318170238587165797493703598497741747822298660968775200579377183046612519855696745373545719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25100478749621706812017963719802538020319779289602969962842931718678537935394005643619239357204599784643031006910896708397080458460964798202694326950121919814425435871365484603381198506221738441626116981326139589958516908568018830118015176328228519143483523516583893060907496996609677723697697411808349542991517930011237966206570750311097482467396652161716503564234520206041806803069836566376162075966977003986917299695130962840348387652689224035442229993558456375002203241591880755827982737365404857178741153325884223381050622786208061876857951102092211871614995647928375972558082327762477032410215272510886859786313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25141802784786615007570341018673493659726079968765201097999800889897551322907314901588140361162227420374657074928043472220016601914314428499669620174252910827443391080061524844427415598784166123132913371321539718845827363817801049513590785903517299967332008450012769104825218122381153463505521758443086925781444639534033809481320175755680377135544880132785448311396226487100074190799857469553251449620611821774597048001291318799820928751418589408876717848686585207309094952936335049886163753659384414152387655955696759882491616325048631229191218689732847447593815264521976715625764616847412402027537399608228411524143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21584052357386749457594918489271772813880732764867558385864579631178394976322007127796967970452904259781054095064850791297175572155573174474874928149363011224562938040121984409483014926769711167564856584377665434202931436411978042731418264883937185742578240429772215370547197076992893257417900032601943824079208471083601078718350742987939348076862616986109777088221546784928096944116367793531886371748130609341847882448955841292282793174328455525141030152839539666066715776725553592324713616991107371351202273394163893542247309319338177394418054735030740069231521729072542369079731191917081068749467242769796084544881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26052791454827480125780880468482836004202730529053972175850516300537313025905506755383652986573335268025249977223020581416835101983924492800700258230977604348517193405275955411614621485698760096513477413774965504439890316770452034777911207201981135188488799797701621092267562034239437029620982057306911919491533155854722591016500572959110335840882332071344023842456915086433932233806311466137258879112096909121102332343139739885625148445572935514978119313551858670452859065259383392042422964631706547117967532843249969566335912264530882881034142045695299490815133640122306523180758514017213890898385929492751247283383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26714557660073400755606981384766561453916874892604567691874920248981757295903173248222325857732805113718986758128987144367748783946513897259916922961792338310944209892613860653697255219629215810117050263353636391155475175750936437562731574370963670528498219422879494205596291361058867925050462190378959237722834568591379322400119078441984657750316321741003182156788095162086194827077689242634431346394187609288795702840856423234016550422957723883307864006992661429706817822865351983700899067594279529598782090323314862321937985478129244316285805913795681154722402851889948302875153293622668113110639796016025316452643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27418206165974414869062044403218895676413336949270443912677319341644693565387993261602746126596231997315588523043073808571443351145737580438999516123273715880355972842323510535737366632977690580774119174966240130132271596838229245583791122095086304475491003876599854384665235767921644509839301249774227909467123496990527733760681956435593445444813088807182290289684139696982875054285468000408842627572201563846054567761288557132850388439710364574305916882762034834814176001629974345955876089192915974728769440519790671259453936560479165433754645935500722892202764775976713070822088325131094612730268600364001667698607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20737501568952198952325621867465479591757938168519771368967447327138272947092615996669909444107694360343057222426341034761072883886452897046272671427702738429562642101269657206968675679257787346852192915930042643776516445209144138298526021596927927217078893110366489399272426925250754262227100467390426842852158283459579957631678877126031990705307076605387506331273152916137328644043721511124097286726729174381362304298239860358068224032527220618641670595331189544880254415403061249242189250776968775806509375694179311273216809296728816917922576105099734176236045659253479611398598835183133800205482826460902584328597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24124894032276048497043423372066146579137274505794055413225186641219140295936048918999538356078579142228171018770443962252648293285376973733019191165807607220795856225189860612181867272593971974568934129952562061972574963012528468621253362392398681690491441888293183533037669979150743946739366400099008024759067543238151534673440573931219740322855715906427800364576158265384183935723832590353340550231138519317521549305599825260178594025277697673778004089441997023688510658397020177395293390173719381680514906816687227751011046475453255673519788597620344074954468012586889343478393315427557407723437114386291886651179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26061622926207249433848666802047603185949555164497340505397801830329970959528352318105042954880873588156302039335111849715154342197780361399651500645372292955941057420430808658796366054248805435587466854780363516701330294903636641558845042604334537504487493631615936142393650928571371683468562329305183668949036700382795276316170398756311783795844007302734655677772998963014174865068220249082693641239613800120611722025901058491203130278392016520481179880594488136267372271445554339367281358754399979952801840303405854487408753998460036278775392474656193622095348288703388557316898045511553689188160427928074546449091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25332687623482713421293942740877687661525397621255826062428822726359235604375892665734770764438356655168104389760084081205037990691478542974269891769112137886833458485667983254489663625201232368672483972498017299166509442489582094670262758428889419228310113497508789732430509714422336937856267630391821834306375062142526950645518269201281664243554969920511303631275612482884013280997706931962455239256481523538608764885237256380617827015127401523358133512867787376895810327201257157276101741404382993816188485442313084219929414650961379202763839326017307300988104180317264507843854701272708650545511867395811088546933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24400140775479090089197191845692367417029808018387427332647031188734595760022862685961072747068568928674877928585241036700729893717879708568126687002226509770836301544975565643533229750449680174943583057284942987201233626545958277791279900497358101613276431451924564297254227060015777326912908874336819911212927076320748469300834988824296240328401389978975320332213974133066658811654362725677366013181377543399933623826960926496185655096450481333439402677950182739834976840060250354652413511144912202992592706515890697533747724963046178123934632207364839669532844237293601669924415375266150565203228258383432090850917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23730619967752380933679224433900434987734013792748812243423536461917334791636228131899684875770535147524986298227589612316635722728327331677110702338395464058557995405088050721805613241397602213134141670641884476098001758683879402619430521780160120263181143173791521841207094975568142119172580240262641796692528035129240164252667004934341013213633881377305664094424266447159019840239309771406277753427846502342129009672303535748359118429750986029556853820031870012341275512810658410721130047756299194749563345430003359226936692155311938790046567367884498964267036203755179234202711836661376317608973782276574527472527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19605849958043943857868201086684312954497577404935030606955537825915071228904564787152096234931836070097047574116232164407028406531101551328632175037134235538632984967121973430998739189830290533560380090221079396809638369335635451645028022328567801365611014359892769642174426501610136715268768549121633633180993982071600786169580390318103128612186115006508686683250341178339945981067995041377817223611044670108681005004281707895107592154194519480748475392718730484504268643556337101648649770125576530381151207062892044808091696137077734467569687836301989480515714841574305474791430484992771962523077238224588149386531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25805409547755234070912356228436712093928201980677921529874722239518174962240280988827899447310467410353506904849337002446325056855959288156662699608201958030693790481944527226050076715172989429679981078665056875001655155197899250433784036443475790868393760344835654963121258718172231913522353077558609384408993241030443797117683407349652747523946644238864050646926669553436053872878849209969599579678496246489148996526794513285573157601062825995262122618251066781681256292902954999745005602502095420191235291148288130227923342283021574674012193884425956725764151070401972066365772057742970365982965825048482842321433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23861650194343737078573876929758822036381053464113360280249937217439267510189988515157319018808389576206476807876659658424109969964347549017177604593795345822482858721496106413850321470512165190474633163691575770016719293129024901821702601832312183631900780598215882362052393581218220751744270113904286408418629265960155963414918901990420712835735529463541375605565047261045685326690375247639398607186080970147328986796570062914303203978274468745721603573121170478923013033587422994027734747662692515113039586182360420798797244547314760176983313033257063591225725204903935800154397949510219484380824887727572542143993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22274850125524599649643775056649639170594444459630499137589699368993236637649461244134133826995094498676582927188083085313364846904871579907838831163612978833958840864506692020342051694935281243742684571600730194496695232855376168434568971437729813023258736841725527302199268433869830641269999293599776487819456216232989541863242601438959453075803667247514783645569309827534422315283344848337466194802449438088396849763827717223365581446290961309597711966360485221513432886324677093548894132559452838062183071015829903075836057997297068237375026300251000547997047100068835454852721902700474996637989801535484870669789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31330603177727791401581890219035462997436976324017317138524395296378214162160707782867191476519061815001731181419456318990317215588320596943238087995432337578617724129872420045439868177820757344228450283052836803296931630451214315053039868515608183239546185577237995997588018113707119731096224528465706648841878028413961311609980388843875903273930243737432184467649316114054771415207645752047978453429729919966852993447757157030168220846979611073811265877684265108371466258351213410272727701688657503094445701401421775855003288104409025543098793852897078627145414455644282212468109658119696407051692269458505271297737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25817860543202131765439096085360886809761019924291593055126991004902389657465863411076799835564287559475264508866544890599059945577675971449626164808213399816189792131850232628753947441208565543593813838153981260669978921505764021740535962737997009627737686242023183249387536912844276591847451692488891124352366493493256112998111120763579038488948190238521373922920360947013028220963201721482585619943043781971360969333999737163261407906340148555995116340630958701860684264939829310741551848941716213350119129457879418464096487115742349021874406496846357000482515575970142956951309827875058896609144088253622678024097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23261811782664944986823589215421953933095609324399812674250158662430441979709067544430467569820653839115317496421632294723836150449221869087408438237173138067491302432241353482691301300661145254500652556078486431795725056139281590691954043018601393754971612125003482416938111305605156477060195316439694550142231263870277640550763231770174786466491724619794530251116896887691297112960431559870390023932525195041110818639987442736116719842734063960779250971795874552347084739607472713622553418650593941272095987432414097085532406024662939542840308421488692258274517683297546318901317883924567627476580970739350127634343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29461913252702351093890790052945601423497404597972099846267769135853681649659899273471746854237880898568502725264097690243233289860196961776624061784390539419819982830180004607962740857572986251618376183494780391581983777854530498039870931448731099239505616568500701092884374286600835491760498615013838532922739657624304345391388576093198997140952850323161916133924843930734175634121840006662615187676170164681938342117217694115529333907339709415853598950944131428724745202343696801788063245504403898577316072747345307288467321548947579758659113232748301229947817673380694956521708956292935923916055906916787502411723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23764940785790633075328914288441915056402986858178400412140687814217481074467056201098135106498202994072565852825009439704590022095656178750951412720762160131562047529485996748325788219090267682198354481662717585332868243643469769419414725129309370885375980861589430548183983430745673371741706012251900060837239223357998688782086007440507705766275286444723473604552210869383676760007561618493873121625180339558672209318989347061376342257196638154685899906977604134351035909533841963495627865343910708767278852041651835087549637109291140264773012507591585039970911748831066917900686057894960957018692147754273807921991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24349592022842558534651572910897221925765347596937896307653518160006379948812221531459314177499677437000027237032619848911620833494800875296178667737592015544810990704762100374993393967324948159520386907632576738119315140634569396290811035170449333233043443714092683455805438887126578110798213046452698813887901597001119158190434683456270954899446384142601879490955617773327598585779966831657776554369026653331113088114311776731417669224158448150979882706915345833168371584571027131917069850046718213971028469376808939521055922012852290740835872218719662278871698268599978200081767625437121710960698041251321931441731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30374722636167740697058834260214610056942974671295576596530797121614455276748880992144720406564140167206550479974908106111938706691319953594292542292794795082737805880866060311411309156324954733280029989635624374576859558874972780782794182794391111009498662659951955855619460523798351102304329673882534337112493346006583382353368902701815551024175747327699825897561664635985608536511765083268895734208312907622077362108829518155613278548766317211217685221642518802964873435346622379387781095962349331896636836351201642328404322298914329968162848240797355611643038251597530091917758806067345808286869927505523245066287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24742021507064617197970975861115452070106996804817383499343412731195396746570244785301895707701395345359258044085932047075632640243684521548660427640456443508158502128950612022359145904445478173371400290341516467199060957412810512557585351540357296054693620001189175044078658062900221702231847917028932113704792573787256273032371485615968468828026489100192297800461266884246924873628816346072055971115537962785279341585144151334454836576105148233904804924996804096664371045544360022879296820473064039937735141789614674861637906901606473242249780319763704091351096173894116831369478974251610700004138199596486487738667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21020101645408909781383199444750280613427559205594422300908197098279065730882778604938091879859484844065889030020460346088146626118960328561391841944277843667490981864497170245976061776496448737313417374883316484161275451947857064481421963865942439242349014638337599292303526297833442907463988946364610276204074640509500262121527833585131674059240400093329636672285726910961597654156622557228730475375373174969827345339045696134308018141233129479321471244943516375975826907300940986816392687866449927110177692467014420751889869489892133148517192639463852901040301053342861438077697925508928976901482410284197427875921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20655085990430278494850302346266679028795790944234496318561266907940042980707474726470176641294761216030585120354399678991249482613909469106425658300633208444799380724580477101485640235465746468840134757159988148961583785470564477946995628649613959283385278360012748241528158756714832388984135975357524621356073752471833148835679706394880767376601121542546930013429318152836400472527162692535907372310743838739578057930969249990494058944691311532400228180435588553501255262548997519730848964071840028323303806738961816374967649388076990975155269189575428778178646041416043202601629305604495190117429711980572042192881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31648327632181942893262973587188339159325782703636169603441882867002324075994622617779709510121463746240649742078959664968826375031172647758796317438240267770600388511160941850353598647950467573263727364663627772080936572113555354367920537920049856799794376232374574276711936419345643916343066836653121277839424575225908750792739757820970563628007618574638411038177909211777137831713157483388272269741189458533369935940806152284853044877242369536366294113680014189121083339016525192165835808563732366697798682469659323560859366283148488170194002437147954983704833763026812202939824011210107884436568551648374313967597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27393252310867747245256959844181935184017425877753989550401125596738163823347729181061175267283481980376490415104768927679117604990506503155195299418494544637482257250942758288805289164308556452765733561926019247103449375285736741780183032215135498986458977907382909442501328369588594108695089061680611373138299704171916614460424418153010204208587736404200777508796888198448474826067047372862893932240953434755432262706108426746040168466792680087878662223614013383406825837282658934533000663455617794838321655794965731599179303733560234702953682257786924095796042474483818532277386258773194826564708508377232701579283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18460173658052701569604192309403567572431641340186761816502958270871281276874264472212595853013934496988717429172503697336646435245578537526284977834376022501392441860775317153750703486805862855739203543207339970110154651595819836127499596507517053151033666975115504077452136584050139148226336293908348761307068142221427560720718261084004612706239961703603588116008716274350450179519003485683962900590488854874275629351702495179767723401336419555345621730466386658328820354709299626770842128226736302715236570403558713314321187217627897442136470320937058496216395467829194249909406921682355139287784642960428305585377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20613951173694500883717098241497119204463278410827245072900206776464011297729738245484402214746702623154268210012272388552554915258082400048747679855330931231991552652814788396634009387042955370371013180174878094527400971148088058333244443257394824067338266041698078318293072659804673129743141593900673624453945917210364877412248282499752751787825740948876905600579530474179974069082375984617367254719871433606663886377758474298554090507426117958496477604794679079527196751511796395239683212063013030816122020482585396889702687506374238602694895317606979421749071728398566271947794615093965128939646351653493696587021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21153781707703816228336789354532087721008061777412733279245769237100636860348632104746922666936179865516524205593389909758922575888538844390021309687119165266174680360090535546502687491241309493462551884982794121587384156327623274685867689789374826905827721827625617486560645434843057372469821637065685795270576332047877539801003422391542437883857995017508199775468607244037301205786963454922445575214665360686326134179348675377557212694803077737690274207143653415038273915898554146346437598915179399241187820012049590739771558092499148424541946075857849610065732823431722289988991286603505544208185450376090410513687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25637243313879979196934151492426173445197842465337848534889456634970295585418873099498484898755227875474925597461064710586104752814245149979373693990885055971600270151092724858531251657172973181903927725635003104319057322292899064928899010345340503927737041468608804248256240441354317006596131733718383178451185419882803805666027669593547597750073740022912929568273281523458330111788723186280466829926684312524067990459668307824319746396282393772699947401035152676527324309157659769235547949658305137437609361466671322093876522667452701171537046319142034679376755878328400566072196785988718418455963848141151536039021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22974183979904470515106890885062132506284096110692262074639470644373556913283590472204247133841484422842503077388205645859752490872301376279740730579509109284034949074321713710804874135542480712268163443253076997877906692064980013981189335507901143007428450968375823330293009130123239619034932923567042268747009041443116247978425487348942433445485473785615975298282405383159664941315603707914673711286363267652808922894730490772488090661551703985872902414376190195606469129067168966249757129929063586882418688176443479275885949150088235833654137130409905356959009063479121549125489654973807850973479008062547464992967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25765300939740037498673609469858871609742141793433877144755085133933919864294166304450795423627646506174912078701002392468944416703835356508463313283699314466825372909747934003016614178627029735816328231881262810398812309288698240714894108093404059686523215857312774251324803121927454300586330835808683742192683186059860317597119016866862484045724235369293715583158758568085821105355279949997901453221997005137997736086323474709125792291054280245387873104661586984872645987338747598329733948162554155596435455676517132128748419976444051637607524273263382228975060756350020505246787307000658761340209398910378049512873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23827403984402244155908364550499257598946178740660429451850637189725559487125682524290700778784257600924270685618281255312352841961328223192598656991262717012950709791903883088307686994368689775902700166989975083388709753869768602021051234421473667608595822930063614736488978282276897244713953481437966823267672179962497453774870715475667977002137810505730097082955557232347278187154379221654684997936908425970847277760762512450457928670677957675181931881139792821509250741467823879023959736819373955607051089819220724214884356999019538031574107976839585178466836443472500814170263548969252552956608441744617888615893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "32060419028255233516358084706650460627340378240152213886307757711593999893398676724250958006812746255389608494639464425544679996761902851247784290797790963766743454147177612017826268954539613821439085430864697143268592720964223599160727411001422237135671376029008645370119690708101350293827187371160016707180848656775342220735593761170066690978817233009500550234558036388440730087670347092307746669554048452619939724518236908163761711606019277203422566253122100036778317765209150827110351793652761611820533310495753044082361637334724141035726430916028246737649625521001870444382572652289202143838150538687586921560291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24238482508773530388189125287911480628356586009174380620057289119081320295511450412123537640409790956022193166246905401513328681839151862747195250159019813444649347493491098532169948204411869935017432566023095443965175903775529068192908620708792403982249851957224347438765139786685831975178260370652906970003212967066477540889943607121221461156300717332578675590412934112465147574345757645614758137134125512409911036374210607422081149639690389658812220365608834922031171283955065257439853800954363534896439433932868814027073440829580840091403331904504426900193274016613834865107616494949967794263165030409874452840641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22829699963162696818330199526846263595183368329674525653649518551299229448721420885783897272813326444014636429276590602929383722974894566737164650860590651199777309880906793454265845950221390969207760671487038761694167988686964197156178476170607734340490606383961057184064135354843772336609617590527956295295555022187478318415339079105384111242132277664058136044667208291268471428554509401750013903493316675427088857757804847108605671567101770066523873161462529906804717263036485799216432686041862569044927921163160042146974996316269480194429300769240671280215290126660897382244636280295453718505195142764404306847983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24839743265930513800825137614929651666965340615470938848392006335548881855800695093154931552931307880293361832331245704709293430033165323383691582675642869358551309096578263289867393611176411398314814880107655284394887233403600264242815412431893924159817527742566278871688242545385286903791030029715190661004635737250475987703403937676252543772860509513347839695888515998705051857030140845381494505574787116485431652760356962464857795768410474794557704202033378575632865929393538107204556796444284098025293789523862070604995871586881731067194233183954239812826530885757313102958406570512826945420106153928653555387779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26904265138499333300229419385112701601237440937490839429807113147457518435256210852480903379234190528193009729312325085921284974673359703232377436701271368901558475644469542692891724407326433692147732291100583865877017494027570253008210556126566234472256275790923960562437143497072095901082635817290489571038416491030253576427780778223073305604635584168087262625195309544161791860255263300329426093869167929113617293236780096058827491237463533611575829465206595430933059926576617583939651046925225177820927206608894732158409317528503418616170980540654824191460208394535661622389828527375477956638725624443880320057721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23903037941223316478778407473615174010627648143325762840730747401037385842657147328969760287920728819676860195173945193406203135687760553643275108095562419326701719967481832226448718774704302655812346772406088149389956582886869859873662392590498957132220585101006998782761177510941922988751098413015398297284968695177080876749163229092643767759363550890239747652364016054822020118594946438174734891581880650742042849590513374106161129220947077450238304562230293546525615111090967192737209317273705257170364408733871127384026622822517573100872538508902913929407862718361274168444185532427961324650675083124617349925899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21115977378524783165032838471650421780760239286143938890241026616171869923113669049995646455756350108523490062864223606449828911713958962319803067919679595134432510253354211094020141080540703633769677784129927538206305230820064899950235512435403252110531633661846469971690884562261034639758533547659662807322178242350111286237275095990502995214847524399016025851235180368792844051183353660747396486172983670257136754670849077040856329772158203087997704678888864790914934127717132805026849256785985318083687609095354285300377595126687227327907018894994065786575450423188901086516487028386289253612497033736776220357183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23022325815081339267616686370087829508841281515469131204087497995529496623159287232230284645723136147050608597082949721544151170731974289025709565062639938724439864116447599457521016209702625854724789118905638271082728002967839547891079975897479405074430238544767692677906044687194156969226226868614423235387657241216401095773207218435164952375232345405583226516747869347960831808656993705596508228406925674365664923642114343061143420280650761757834772518684203548040717150101677255391868934051527894182263637911414717765355239618401414431844013193677632998654453631027284373061163461113678048031232356543342754220067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20464232542302017151781807957129888063124412553837067897349307592449531522915286473943259941951049744000273799830809150330268149219081740241350101264865126154644261573734604901983430371687557977864612927377377178937442095694894141471488203527449357300027780238605253553061467777433008127969397266676891583300738328689200088247372462553611475741004968270578558458871841472339215140413476405936507362544885449273950288996465160401729316112823533496138656795983738163972437475663829475963513041597178570944799484672466154950310141480714946767128529170020810344399936274168995299223969536206031848501763577809821274738373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25638822688379227775687288501790478779448651915085155906118147900942514550469150447285227193062765279718254318963949513569610732168146707739147845105045310055915872589524119695159048205127421752926062527820199261271681720185001607305574426442235416648052735935203509864494156587980794495854437011184297922714901718049682129954582603366133478888340757150287021777836178222082635918936745004999895981941423303339120669709127144161539328417885142982214976619259915761147259944854563514181578623551089910708427011118056057244787467725299279554272108500966339026836605216933284273422775900816884392159604921967085681724563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24850120567594126559438329261654325542915310735231456365316696174989801080077219707237844605489266943929809610530739482986934730750748463630337098924552785261163575463537124471527297041416969168740492028611918659120501943514025307370008844072534502179947402794221030128886005051279744369354320297329838252248446278245293797569061177489351523324004430186655482548657051783949717092228915756062795927885041659160298548421792116005564668530452668746275955355583962004928424653900219829041051687385841392342885656771064922038019723829400770168117602355350694938432025093875304351460856975821534978770059113255704070733709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24747056825632490547013492755488635966554266744582827438097130858354524250042180042391330795897742177445865385343979807828778489792553108502920181029775549718733825776503110401218905086923662925168421576682215402937972829247979306520016644382759466335166988202481181186818463453796027712275517117132586756756340108561541709325644678086132689865552239952568234882608254790318963990622526395692307509829587223832230185030661577599069303492651957773984959063308767997722051225575668372382461541884585573968059635495230887190477924939058170143688397830005736292000545542158875329321698942052603085483726593034126974758177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21813163511268293772017922769801970453932752043820205544395267431422229079579393496005023061486212117961705681435344975044120619268820570255368319183960417737946523324666830039518551706192574189135527388097562652688983389973434416059963404794646330881615654342235980082783491591129330479637711021455190896935253594669178873292105741835347757854927586917817104480931974772722051352655133441938679796280747943183923460066812041903967340696025247969120464614577695307374582464114713171119898553457057582734072856804307165962352779115195231391063772128804391295370865902118901159444445980801389963002161676965003400011733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31822693646900758791163740039403669919049393550001310160560655808060475475313620580206041203385314828036375211648950963749959837992026998139427182284468123930369430664561629781047762601200730559197689709967821035047961646044332064903732187126950471887837934561912768995443421642482230485203713501343391525850984883881861475891324302059336412073758430819079916868016407307213520685874599334342581484436160715922736353805519201253451087336659257617827729693307982228881744037973406842745014133592022072235429510966903294904983052809376115569215835831948539844866571961975029607393192425849105668577024037641568782090447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26032826148329085301796568314465936031247585386374133309244309229522656965340776454106817893152741479441374399039886353860915301958111538985861120945357640737091135816476208314388023378488186092945093935151606646247716179625489973231632908033236995507041752472792175722008051154225814276825551708146762390759057006379776854993514148510649723337492604115766072979757829548870220981991978205374140662517702110278522295896660344692519150744797623137516750478208308520686586037257000511299043466382663490413249597833437821484370669383829051666360383893917971591648414569624163206958078070747216685560988663279740510548099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27509554802104030064970922466705846158312330024741863798960850552869335236597309975527931184583368167687485506780732632016642012850155493699558442050685097626343104147836773857728356117167841358310471048947549860472863201943305031216245694842611621912022825228262940631419894434195102997082386285607448066789530530913819746648405643820150844013064996512458688327668267376590345948892504410444662571622572873129055200139568920666553548521611760305863783996831356920182499921648455470928679633774867005843506319096995127733042658776321881484003144172176959143818256555188225550635059152495753833212573541672447854443813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21877257880441501167814443954839416822660218322358399076437689898034627859769155000927551975103835111473103865443858457916391751470015569429168111675983314669234298087683598471001228023004416587948110338778497481655591319252627699623956388919433323210441228860827876469260121794859669554758039272450482141341185105473720774920447435406133210285047117656804948648322448013374185204276063089338049005571128580101259278118326868618940742454386666486452871507844185954727376923273596618230399056739303980004015508274002495767854452135382207517380021293232483707717308850463871536173439935747374478428010536030062297382471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28830018283589180296360371392972384812800027674353228833695062120529704177766735046421506887745326627699482373049980761149377130713652493912067836501581767060491140594154610434830883864747730860000587305308107868207992498586335658960599310914779494280007158998635810467665738104769667979872150320563456098342909824432076994315067511860876458135138708423778002994841515710335494042438778285419463877670692534637647983069817568273954624026274556065427565018694368527725295427549202046477722804020002341051991034136250822171640365056156481946206522696179486590088246175323169625032386590462766984228992978329428470596807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23534522812062704044480646978907596796026157299896113365545216195732029465452427196267566158961134337819985969026896395167382863545885901344723064117113390329893139103028603885059937067397626731043950264718965095203204397435734288564334591183145052000122585579163051172462839487563915009091836989695948775493896572636916963186051082461657217204490088669497944690573356895728237153093002707921883627131459855801613220495773967348843958068826965723378699538581189349364458951819520707772841787118646949902804600153001172960678061635486341874208198335365102729832725161051364762962817645119967605957335020827939494022071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21418107197861861542469289372287744696851336644851412226699370304871348698778552114213197667198157635843430733004068165804554757324990367518122832714044144726785330083019456910855014488298186911050045072790338465337843532573699150339461311834492688971285048223899166176988604710171467935989601256803369291035920926387469898791504825347526770818264326870416859203834776663814022766655567465493044080111225594923544434780056953486879677476301735628520554225251053598730133984054705906764865187053444435034071148400138416666026749009038744171564371841525428863988518070173938714338480695840463373260337305491052656593173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31886909003136213977363786460625455510970711110951102483314949153195580291211397072063926363515496805351434788009015702627941698265005458125052652620054367583460199220041381724045791064974565348887414905993313089583015478867876747066572135621140524736245085712164002232506905477922962870143457893168791054400100330643370646737953437905681622233539825906183350823479970240500904498410667847772427439610436866163861951931008957011001049234930889378638820742125002258972074962423697764617865878663134236612295863471231094536082675232898141677167575717421251073095024216136762575503335977936098972118638888670387417449127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26291166167422700519133532217365945155357113929621719352367632235083695393389620480933051582094723069227361348767890849286105606419094552908860623812654727371318375047685812967129602114281523685837668516860679165891701145942190235982188168243800875263214548685530397415752062512140172022197757727630146613354477105441470630263994919797446488573514102714895786245497084256945915545408105920083656428921097497781633974857734865042834450836149600394934598130729110882537143738144039680246174250593595936005900088151963288099600636613193721675195340404273786106588824694034480067135409249751602951896101753566157972923879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30515640159216200330283989366367998010313497517243451752266997987193271145041263817044668523306299090929093538656097783749167030331516045913706600829800365741636913867980973521508360249297074618503763143546476867303575988397494743335062574453940238569998472975611986201959940662811441366781178690712918746489724081586813145184004799262701678462219050676408361460792904534658101146392218320220205199541207718720207256846122556329437263873351881106244407284093565942399894373537876449975676760037745253875048061782321871439355058401797754068869416540570242560351896158725076222391522058718625774309807177219038706910071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28545761441515796607145486011167874786887979619143298655874102543859882456740923326170472128896002229327660598505724252444560368661385303379754640405857426522852551385317389064590807512396220782212994239774309388285609772480833084716694726340520283932679600850939876212178940705048798834715340572170354308110610292871067484440787222888505506673684951201893511736777284002763066002385376197247707068122714353139677778469143824899831701126383213542089713554284541556011765057243814662016422054116906306463221471098981820315011541724835528590576440610175220756770667787227645814075442048933877317968858542312627371324933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24554038382301443941455441494788779712257179883501026440806161713632750744824748579564073217613063082839426449963417907860051837083874043138530356933447119635895392823910348488107227065335496199496073306958707282241864475144464702463066364241404601362867111666281927540540150330866328235001713326612057308009386716144865099837056583864567903030087071698241343240959822002364201784978382995309267804990830779570652678446473192400975772740276521119223544924400380442499422546238783842722853478946370893092955957191906055284144529554268654447228753230268193003161919445947445333639453256196200975901673894632041904642029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27275121910132256062721547601348025543132408784357209476149829474422283708498507330788400167139743567363615583426592595610798758479218624721450222361594130830892750339313384053032048940204560887589172154589468709218651368981713373076821101003389421448494044507894919854989000254698542645012910900293376734852557598187448943695956384635352025213753408433774132918081573647184117906810335838237669524365636665367664516931580797226248253773293518835525551763576243063723791899233585586942120355385146808100846389868792671635830011596207823139037091852090846410652192161491031848361518920864121606354595340525190402205793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24803244045656696796326469235074405856524630872115661097300105153147879133844407853695050258143697582951082630734783186357339613719010965521313273117053496276530037242905606820767765150141241687278911466151432915069644703226940424707808167363537719886706360741636143077170605805462029515672221408741124563663931863368598911968114654474633794920997261975911073299412825436546570802105971513402386117278058739476801744854428690777209586560606122096139417632051051214874283027414791867317929988761323055467463445427673927680558664527384933067223780052544785037017149352298615425242793176127356221148029890581301971659091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22404016678649203994881553808618822269170988601453542056571607241521604443675311621264509536106484468016172864275752234524257012861414319541624569753666842618544825213349758228342081520879004734307755474325001903856498493115345578958160871410586403150173419234676946487776978237952438906263179964020288864034307825939313721958418170263760790370550815615415004958414764941644082740362195381718214943957123490851738882833556645429682229983922182890128456163838327291786780364794944181832039849346841128033199812093758824433893637288386764737689633221765013547633482845318921044958734639123566116353722733102501437294483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30324809658986751491519842621342306812336127902697434670297202598608529046590391391290707321094342581126782877030046918106810549929294784870750278623729664127554200584260968286080405056584851501154466514012225710732309342021089585785914865749749055725396104482840820925155957618876964129833086625871776895921431928718136110269446697366216023506908620619538592495241985358052279664511490575058249186188353696119028678810181915604027682442638661869608761514960140636914841720127156241938534766662528857959066035881614359910538137012048090499426640196083490275023342392165568404358380569014214456972792615623879164730383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22377308626565541445435463251866544599241994880225315392015814231862718102038591315581329132151138625373027224665055210258353928742416196022403575124820194637114482591638066916046735130327119163904199143071708648309020041415953660636155820607760345059632691732822606381709176541632445920748418305338880492815548666960124097388265807418977954206727667212385998769371943806645698023912806689352442468964165699042675143076134208154599282818850879202682746515227408873953160315332796431596830017348786448905935948874186829184444254131872589728659855389786702506765811089985448243884432435287876216143244850096132696044891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28084626631213293022180419633542825047222194656463085622256450413818122846302896697105710419058748159639601996348627158931291637756415094738235682375801945055917332499924010995512259183081019374756146500885047161373693171640184981589371372723770098099278943600457827601789561048369805442392141064369281651406206135818030930389914930147089753557884502902427380497886594891174200063521586702731687629805823855550646458749078621135172242605794114193779495419936844357625383437611713047706371044145906001860842561959005571331050372216651462336734900135597931721648682406913973921166902553586397226287887204605308758943983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23243213622718166254658862318352285427217667696566113051789845632328095948825115163284819427239787485228217262408262042083112803126504874053266908518476362938154340421665518132348870773674735169601047625460967715085387461349267096396492062134242493540790841554124447447150789919468796474087403427752371695364677193674631937144928341038963094914786201965993370139854097427530985830352158739810556428470874686145287438543304580492334421776725394777298145323902309726558219198245611202391409275621077322733243186662527843107695389903400016489756877334454427092186096427014227300765405913232179393704862868950759929657261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25149709429852321766149134429293024510007250911126431818189335161925290950034109207309066635891763620934908818193292469837379172776732941613556005061317053541526052880006270907351621216597700362182939328311393922406868019093326625253397059680697092828359429367677343712840245281011212093916242643609792334907532568321540902974736546807630269987973947024839739127797826941775523275338223572961603218883616521811668359006680405618074767958965223332437910893478971801562244671933128251890926190529958319936645281661322416998027652258105711059190477305564514012233238551073302927526330635572259221163555655510807347971159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25293229435704999002319485490167334467063926692101689758609431829266632301869535523415958074218490681703995565501351898671352873738166153382668744910302772195752799828188566996713025992044089212036582532762680465905665561901225607431718461528785512703724457451380380335719370388205429464040122352809451733856501191186667206427008411294397622456594043351935469153974725353437355392654049657289418016318420669041395837760717224515762224978646409991284558056099360147440281035688547294176513181550678707166555853908167468541157816965347224751404018125112877520415193767624254682306447294858622082618198768160579538916941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24356240574467847645744067584849108825146504362569348612104662101682939175865317029812738000843653194664194006357582027320670192753259030195490085486927918970106884642085287547972213987997509677875424346522929999635001385288995298624375725011107323655068356225523767652013541161822476771567770972916949182235978171899934302209216038061744812319309561917647043681561871896242763803807389834099319410199499906936850979749564186952098434866169751300638657858794020696015820138806315120650752365700113031663639190451868503567222664180044269144164875947842496090719449048398403729352603144370878457032805140192506681182007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21386007817995095997082947992532758539179591201815732787331835268382292977570141949105377983020699569477943891223745167407738912961212149469585553446856879068341674882421515431070302200977671471168832300081082334346941617497214169620556830898140684559465136908129807635567003517801037367159750698504261318059852538443039566762288251822620611791664919910656116412568728552317016147371555676524147051266330161193533251861580024089213172409611374411695013940033206155494477587317758254936608934865856069385488083120089835210637700979617758441516114502598476779570292967691675755360733362059758133752157630391776025502169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20037715079683092420649626512058412576620314334049105323916452267585711138812467399150122894192836449350424177197140223111264257554555956510985799358497048915581376013482365082630160224062377326022445069752518049077304466922155689162250039436041921590653382782330545025155996557671355129936177018521195136236722289319361772239771808091257741431766340899490063649432633268937581277712828785320755407694120313115526345078816196732193486978978732629014631351003617447415204750496157534129540353767611131221790868869649428845814322293846526672513126878132644260104048922288773755944945553485201790906476096839626171092169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20898439758269300160450366588539743149784930432397098015793835936095577189087985408290335359243714791374232023308057274710821628786421317565221521461461637954115901633787938761205452858065598582009917132116510096421006812883144490723580718887008148744218055092324454076258542789753615947716131554613743471683439907034333393768087260206229904033341427017884979497357528289876255403931837563324206033713664656354412089455907474782627080542638968409732019684791579264512167561162349883834407250293640616414862681027334216225221570998891841964969977512809682360737605370948661103727635927466405124799605842583862927769147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25579714247998993282846509760626721110086712514110043209975858914470976819907500572544256442010629444786969448444832695765958946246311599927097312150761303490575908358952573266640918291160131547932421056054189008827499301207960552569587527438592430279435123331508513922786362108690087237035657660898330311944472146875116434402826642388198702272307025494030731633377761697196918521219745147705178874240221696247691884548241432036614282306597486434674745096317051192148724141263091431742048766571118205979805155847097023624761622503627423553928930557172915443888392919896065049163358786557072459938596510857218734118983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20052991941584005123917371088524789988064392243025960273940618349439792347290327660664616310569974057940887349865012501802687716882014071947132374991727166833957722715050508009444267798970062108635879432754643510512423140620596825538106940968156300244372303447984972844590310365334909217456109234406857967560763828885956870222588137571141088581751370088671864006816064125682645912871614632436183224995519498497744875868156842133541202607235209206771795645573318500396413697560011364853027125959019786492083426141198632217471390493319718496395592663909729998018512520852367046163265834369057649661716878678797731695413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22581477687974853160120480012116793690743134152605039924376155729943516774783139457000288659395635471630615375297717203076913098325712277188728559816350041149965642051086983797593697345520429733667251335632455721155724473042860880611036689125857424049214833047407141745413477809112207900765682426811982615672682717030981756402318731554022025319063268295924743663810211971928183161000311332567020893299174357042459976410566157414538853180910365862605675879429017306886110843600437789958414405272463155659354251121301901998793376340201245405780209756896455697874279053418815723650749515261803422797614597300948756706353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21423488468988054060336676487444469308991016831229184063066660579651670863893242422649437166117058038833703752966031299913949426511802421109493235684364744655572197557204476681391783353603402549707166541212507608545139096363139429426769455610550070749562315083475032301664244753095264088366720337538058746763718752891836538445839266344881388663914690120963722961338687055248503557825481417896794296074907768431851855394220204280241697838281089412795837043740868954862469350814230462166041611332933602251492774933996516203417224033546744902852140453086666457793673971164849761742923728270548839392783282909966370514857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21389946340839517844159772701250486047178197660300306308604970307727718905741564474324592167385714886642481449092016525456732489923223438528699432355982019236602347187090469672381243258148107442951753823973484604318904495412923985923866663206393274918589901333708196769588371805719966874273339745533462198076862879627625020580507214573635287016949288949791053795072748078372260355342852560271386239053011525252870994039083822177429714867244791780342345471581550041159801411993840346483669949029038321405439536249666008546061713765177128808763588772773341545662294649276421934163620660308503447687730421037482903150729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23543064409427069900988801456289030059144447211253667888197942125920384612824553447122271967381367328171619380721090519461684228444310986564154590432841104460162786034721359900694165108297943893751922063367993521451233087519406151632930841305079553988649659840390360553560019357257374623495614933846016756234034940230512254653517634301401712471855205424355570903155822448031562863071149549189958872246443574239207093043492047020830809086587775078707292469799292188485931742931243835832514516363630629249203343199990842041460325705816436506329935011713212341646730422529813770185225007978016151937658251486225087771463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27351940600788741418482824627136266453146389701355005893810728911779076347066632052576861884931123135477992162414142790442417547336942439089054049774718378225904123620065610879643667266456482626739634294886850049481088020316507444050548673375893782625809670834212156756610942242519893287111213432186298784911999175172190454764522562500083442229262482837681615662362265074791491868829993293225701805874857247911872311858241779046212914500791835559463541341065749846251162605256526889452527770049272546840311799237803917580715311112921824439848742129199941706970998373982536054847629727236333965785217178995943864462827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20175181618707523617154530514683114056151593153293637572995457816794485635520212609843092365668852251271966289824423273208637875914631953322419060969968849368193078517813076787667084976153520866175727307070535758910573668563921137750570888159252545089152879730524068814712371193568091203987361918034257246890691545030768348971685269469730982380332194796481693148391890654769063723347354472703764073848820198609190872548332389923803504826548759597392652217560635745882351060704541111308507837250350480034380689782272882608480073021902541948831334963561226059403099712158521367628970139438304859175579078508095292234633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21408647111473845272795439053551852527570173255150232187212165595872745957807594918057035063182867584445248838105785631567464730328308157948137085903759774521352871216066423267432968707589412171522043821847800107551144007638886480423264734703655123463744229194052333861398957307307027003683876639199697720245736457792327941876331422388425576123996655965950606011308457399144207869408477724329916464718744702027418487346734826900441440872027011181431096880001784327014059431693212273697375595590723433490968349845066060799452759410391819402736001699770069285481594299511372533487421261607571023781914057808962421341101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30827409293811546904909656225489222858272100491497119724819583303548095844882703825114629628859076172792602065598387021968473464764742034935112389508101204919406554433995973768600559943776787689051832632735525813851543190132351488225529709193474244888282157606959301201045772251432186852082167590320487723352451813185224047840692190935463122591151244232360828878803014054604605999303932341159003310136806012296074453357106938872376367638774978507868308259841159550578328240905015094562720085242784474282004580490893506032431070018639183955452037171709848575052761987560782108176134398833918082053511192873462599875221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24029185243146561475715053252002833181603027197808338222042577206659015329549598925300098020563747146390162885771936833274304376953249327210353993649442556936393131492609390458742892557401629341867570409981757147910435234065098731841477989172661649025938279011089728348224392435831791215332859897301127737031382883159043745617132816723127376948774191513551371117654872265996106482898036987926643509140820590591582446838729223679275051190307928870246080815281592203703349334076401053539655412219775558113581063957846739108589805885676378972271135183423532774136014107245637840164629909502967212552530637754811841928177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28634354629620708579521025290939725373435238185272273992223783063804540295345293664235184002802851390934815099625763858483291058312111233892249912562042651780868118622217177735004455021746236055106925183433600254567647057758834317883715106402694521595708579403516893640688578800464119721125330715641186890160456917621541668973296889222862574995591662335108772378946902155706563332840567161500575710140383428725394357340630212813316016359146060416122755941364077357593785698609088688244800316085510058345128554907448703042010818227705650255436017402564800912895903321821428171911013271227485907759022881894068616062797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22179724116269305786588951233421992308159407339660270206838347788417510078224136182744813860321016927322148557829295211031386432927651253184483972107302812068591537672377513449356490507478490711910449034307897116476917968970005705438081937784824356693592822065908003786249328683846928219549624589147896209809525997898009214586047815629368581369514076266406225989001563122776343615281512336679089053646079932972381529930683089464213624747157621487513402660164339501843904081121538642794671994814755869180093851256244342441333271718280031270248270431968943557859074770101037381175012058474301745761433294734953864296387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16359686089100268286060302075414976153911790354603813823967516149884209040502772393731925616791658675589521308570212268723244482334094117691894584271202368204020102220742190497157681199234222693097181904453458753587052373475782438639688295678578338719497936793491475522494809017408325767059919923935488115652326431118662957596366654720961697766931458957512306682452478252831325898408122406641120681915777502979156384801959645462993319446156179632610654926178571254798489033339736933107509669263221837972992191548907659306145186252746312997605427953434479579309063099310436736189464221819032905463441722514994938926993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23559716915649038734168228663015185625737772248576068345279534443677755599680164024136773092239190284339571195732746100477321249530925004143806931637177421843161620689548167259976241150228903415527322602954991706868250516369461073177926550810214981569406562629036772410962088546364426411433676138151900116708400561340266578122790200718083462066120468228304531025347281860679168417210391587013764582650705457578736715375761171289558324094174259167577314936668491015916257931155534738860903971419040879419541834359883424795068063036016623322912074005572624556855732183160377124052033615180342349561079281594977255786409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17400039941951519182314112961320666736499878931168514539597904167596968098054597779310467150354427606646251593228349866703385321241273500294080339352272456417357999261736456653378024477076872317425692930929665522153993267338825806072498117276562768781147967111446740501490984463443211102359063339984421976716842437873298106814089369340105429355561419490034986497374761181318384605992845797681383845660854023945297188324965889856780750481409923716614551781393372173202807646551364100420817034360516783886904765638424601583164660159959679496200680218020123408355812182051041766264099760559555106253079344318520364555819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22695477753679562092482803794851072134207442975095428103954873951069782376081795102477393689032100918982611031198941464051173575392625757896159258840365170795442451981834733157533514913480909899338235789855443567084731410294839771532385154267754369047742636959154895731271800539153894348604006398001794149696519926440194223349764415817409235417142488832792250391205653527605229192197616781407216815788838910114915756672567144541633832727886113351296442738724879500226302563781270637446995063545620856524665236012931701167036348624806005588890109034556178087438628206071675294182667244416610888818899231250953022188939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16292694110939624623787374305128181645369395764176971387547439341346203461806142315972146338216300556475832334304092676339383567478873992152875899951688913405988718689190144725034128941319797921816274796824496143787570097692757823325475964106479609602318999264951252395405422816956941904145512793336909588179605488491551449900582684910968555218422398148045229294491198323723252258275384267565454928099033804765387206551334012017985037539966510439364144437604426714762222342870875461813414017961616517534610306636357555403325283604322234840633303439605993826440928269829080877665691060565233358018318139459948261744793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328391007576145782358824733303480946661487906302964340250924118243201513630932117527902395815696345112359729998474358546323575217055076780972815203127211658776050700527131274735051554768180761712598610022319190213427977566091048561422170968731228346926809550143501157556458280949280103030753425205252064503924583882253726681810810646114931723818039598770296754764317730516023911148496217543105612443256848488534550640874002762723850895999565306843443526679322790852272958238061142404498956839158722446602429007701257109269900889671698273038205214033145490045806685232556773130801486876351558760256473064606815723757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21207993073363614585500429050455706667465825812904125615749520736386339328470014408261094244971397192881844416858626888996905802316344134297549706544860514274477455963847168379038584893109088609993050306627852276571277168125818925262845473333098585008450934897676064968007938769288297953989451325199384019064510990130633001781802064571168277874172788670109782555754745618470974144523658656797111509026348653819855044401972421434816778919613652748693529778317299203603275208211540631143713443169807049136947914213000139564724184484940086443451343115095591907015048849334926021363323406068141453458892126970335338203133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28951622326597341187933687641484785733044090835279730074497153444843418363944736142859015610877035579277819624671753398235049239077896593696347884068929261575748810544097816654351563888366181298803285636423063525929843830314609384277102679234957412333321593745008294979325550249689063058332173922047152899612199370407310170439396232790936635251728948943093470266838768424892331242232176766814990668222610951724093599723682988887920944089468540189522277203473799611686994310970893145431105922940542473803626658099577407454016922732892943802497920875731308013673392841056575487571280183485136790052679570648387934132753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17343623752179974597720054893138371225745248098679891374473198438324854673362626916528162292322334874512621719372595617625192200124997094976186141181301832800172536569995160383401334732993330405201544027586728624929651315955115467022914407312335111640670287265260815016823987154108664246416795641305510289989934391286468946538816153566545646563870106099817476724299304727610886875122544708281174375474503551841264878961939063294057244247021802118702694343781839409027821664294320203688804511687827803428759888060200628349703391183116930162651899445204656064618711252407592236238310189842739879825922376608854624480361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23635572154568942134171553272125129452526047129021570194806550556710446440876632057154622926166006649490440250966679023433191658243933354564123776484390899978008344824644851347405181206607120669550800260118201470151191930754387893555181629056715427741246979794036773290699746341432581113876664297736074223421771290813880839627472858724339458153347469603464772827657515530274504392456353913110194181595003061972088334894678638905454382251063924643341920914057371200220910701365017720253889944116363529820116783930234789290377752390861150750056518821816909165137702866760026368007035759925494631304106620120835822859621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20385318246514470817596881382073556831094541087149265623977719089232654903526177229862185830269135461592133836946508619585847573192541539940303440238988319292792577464415061354428645962505796897771739808046971471435089788179678932185558700376875865473540507242517259675823095360605102827869428398205612597277513843479687004061922644190387103064081110748568100355931660067978854327951098479657071945571292420015794063104497938239719785085027951744891495359720615480843990611420486015399572244000650019137456969438092510748826665622181840878497527471757135456706609397145310364344435446210844697410891536442673606321777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16499888422870668512508094736844464590771074436000515167010460872270969930431214428086496932917087178870983883343029203934189215186035553583251109120121526296733873375887889886672949738667910613847518425012189648338540300298501565655388639997160477349229836041003014137519871059117977424878659525644420495359261623164216713235639419494433122854331480689028089375176583919075176806467355913868241629030418041842420782907395551071982673551123566081412236994353143809865398067233944126095902431383511093854755243350286712694446116448095217285344086548563874689005070781501924854283015818662541171987031326674535264963671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24651674957524450471680139632082940841026414013869259894220859898462020799394108153380641257981334982311121877499731434993024238673850908226031861602824581757413095417205536735687249112279910135429882499734380508015965352113686858983034418060209484096927757163274335792463438223437185435405350651691266904815328699830267512319778927778831199810069833801827005668043867105668682836595955950837700710502161578542794863260574802277322977591324129043616121051145056861596064797885948183202435706780995111903883156983413237387228291012573752487661870973461148580088426052519347988007552584368162236964856366637303885250701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277623360241935929545219606842202269033842445908095905547471202047349561949447072047689824694569481780800449379449265349539829397329230966229428694533476064215979559241813881282609410121595303167501791721276089039511308030383218443557561939564918797980609248378383770475122556023041332182100490483438930051459694785288115445490397273038648464893024700078026536316381324994532818933248741803011224637849775210760532843261702150646791703986342548984272846364247092655142866851835854502493904659279441498365239259462409115461483319187030666887429919518252729644366452971385762701200538680489229167280489597658628325439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16349854674580369723742109801750226872443461741221143867014456466346842902022977912350971007736305976692833015194699141179120368242011514580833195211990843648787754475074443432770927347268143642397771582643700157032345005216106248684622440645692339521258546447153117658302850869020054704803465013230470170031342973698610873078804845218864971614964499464109712464870916355246418296001275545793293129623662825188880415580500512109904317474311154278950723360118953411443937175998513211520721610267247383606153208283311265495316446038031952743640722365572702934227213785156903155553624398130161705473274014068361045752421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17391983964691789753009919836975475910643329321019485129890836022990259865428544393584504980183479671118132562156875780197660458846920701821118230944946136993248998468332618215190743343579908663358927773858422425042083071147342005591308221819351533019923188280149687134986142858218225067409004181453762239022651121629711397312801034614321855466532453337986680494909063884553531292412461953260880975204471644889740691535318388539843579724663603996945584936780009681622268525732755668426090310512939471653337786366616777808458235869000715298575555456232312401719918924899790862368294737173884707743747395720990235658877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285123872405442770068861759455271163203377847028791565929066809397364084737391235366507599612490311312124989402841713485377440364772170410874701951940441548386550529290382407546300667712352542570742393399352035143447939977269095179359401488406801171316615547184126102353447463953328270711867050453910297036141198104949024244931926128885668107424439996336978243624634957148359625884517816302010453274332855998076949581847872837979832759452163463183615140194006823466724213204169212675158640099461707555909788559463075196331775596202261510996944690483361288833170729605187190059039473154716231466543364297406586981801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17965850060067344136875632139287317083764511809134180413234523582401687833052641314026363383668200556215534505159633666983899060217148251553357017950244255958623763039327149122417834147004484154355992740558495454100242335717245380685578027429730747397521876536524149351099785342573922753920852986349221655028525135157342387495567438471439673691094546741931422215331110392944291618233115620981799125312292496940747272374708019241961947576038026849045437236803397990408149633428897458131719312280886100278469376662158679496687392693395382798812498793282284290486562568864349144315126027826961724974054714751623079762073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17032359327429626729813296264409796965760112792867092067526623177803146649548658932267596592987061814703436365911028801149957235465648633945344014180097568132065687195819499562080473598233115943425497826623272559870710669521609851694322547785775495855926302136777308495911947297440439955825085915033127637974301493593493074099358236136838814674829237486442917831764237271949933452889213405958409891616668169060476391482851366549646880457010298371604304331370137768836665597229609914105058494144557449068483653540014437810582734291533790891847957017495003634112414231095552313235641630362754748349715640876000357180381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16237134415562620898054231233969105542063639686268886016245138154084017710103787267936412695792265619653764940333524418992052645690371250599954804050500569752163529882190802517170478398946902802503298785072114472014954041745909741252070452936128143443243752550285056150236737938612532708714184126197663714715294251847547183356166904239076798055578199811477809420092164010849181593164774921426528445277942919145220461527200398686799130735515599792945077707469260872502870335648757708724620839729040341943368518682233908218213189964937785442976107047469788766146894479601413066346088588043117588172675764081629474965779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27449932560017213856350201548376189336232788243196155071548015666863850388590653204187570760308765385423468640881896409815248767877823343039674194855090565821388434678861553246717269789147694587540199158742063117357532561916326118892265188078549344134568091427893747948388964612433245459463003948065575305489828523501056344652745537900810564713710258289041324788279294400264070986861733479325569644406594249323030974250605860968485902250127844745822031887272017476089481157086792445412353202591174604571425151316916485603946338868749893132460045470676488376833360288257778975800393495663413891958273498069797330362879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23658649920846839051049058212338313389181372658044756023595652553689832866578567773275327959263603182260358102322917394850339552817599015121243680163864581690988414034755968236026178555356431621648925970673880476396488990349732209755701421929235816184884336780881075275468001855063420570640177232859746172342365622260588406430809793578735722105074612764449491200849115672761644073178302893015867137274376553245068700368818144203165551007954200865703848129010946858935698076435073826557709416229640506690094640130883660817891882451740518238010749372629096757443539053428055544955024962011497912037827989592984500654223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319131830243869457009606809281619039451702362320283610399403898525265192514269993227591909325391886533515903862116904105246608743822915932546045902256615549012115671302372578250722659232011872947279014700486481805989266374078462177300875338240339721076884320688571785807933075019881291706447674567090334682665173253322786220908466430219026001549747076519864929776223017924340389208022340973096470546826046540996229000243732574389514316429357350912153824371356249999453954928227379794005521406978046957423429670916356753481747156082404270177580276179810728117020891095521114330791247647521926726779831880194049135989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27198066589874995212650567575658577471316142601973720978924865462019674001169826844870509285652191321630591048167720693643936202018909056145872130967362406847260067540511079931787130961176198007724486256742198341945292004885050568984581551287049336974795173145187284995869629311021562709745734745614818717303705153369698941737215331783827390433991793470790590743140933829738884503577664311742085948196496580943338823283189833396827133563291370398560417805439641766726377942534849639752654854636390221297083971601442438206408379446699586250289590473402215619853299072283191551509014253636511778442488308723753593856317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27850484451760261229721545862252016830033581568184286343665033701129496893842640332831676313490447917543638844614411051973197454492566604906563652286782360121811812229012613993263674214655760821557671558432473140048964701367392881100731108536948452407350191046428051243441694581122559947169972646007621722796827073338356052152080165626751277609270803887351783076612324245383221557491380385667553362034332331292105800137050445010157282349112758695882671106070278996011528118397083289023770844091243414638038341875376400268975334590995057113515781028708768003376647910459658949320933793198159499429807031868954439343831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18355891372084765816231821079495504934818025628326404836736221282003449831324560420865061665740973716422309322883568601592436302936067243445427148995827276697019064450577213523779451015486043998943994087126580580442239541205751549359713567763213390046319579555109458134136659101865772091041270367258076680315619895150874815695686048018784840305537756508234650233485627176142304009253751818015983386232426898925271508739105461635457297473910754274616807983012239324355273639803888223834575766241844079000344410089431323030192022747415479553468740833355796365834203389720547700947655050300386365666491982695334682222021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17740375933705243456896021837887115286469809425357075410553386473999588408365415597978090669826630969713333776227933617512530310149772315447960817909897808326678929381251799009652703519961462164516117778781219966395019586029556360493613211408363939693984187575618247040214378860078927058519685155193899789694222314697785069902214670758482313677216238931337629632463915169791833293462354152742845224861087647639228416935177120625531610536075548423808801307832533030387602731585600008121180065740622665950064996385569759653001996624811397450439891704638491731530998025809236576778296750189082624333210702576724529139577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298356729015961959317243673014401494728840409402022315851801401428267335808487622421342633673835017911788568792663122957797397320334343067739786028042632247044732256739229690314463938000911851612447983833007629175749610584443556332950432685851675848610035701555834598017938445293118562710271116203725296894693537940559755510410080366284493064945624688720499834119784836662564127417537547215717106877612475415413856237795808136722308490118497870140051598387177817739475750900990004013912519563247245415616614050671758265881629504874569274816399973976228362751055622612548769779221011962635145263475873412541468714681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16240925638867034997792533669789307744097888244451447900421999216152152422796089129174675684278886620143708001865387763613016590387105313820255759780566444520248159658127338255816700838394111587276358570826107969100438622420955414356083964543251779021956759785325192598830901295936850638687404695174553141777111267181552235002635738565780072364212291944229411944161028543120617264902921616647778067878385864479651348771358095975077406760893153150568040727520335924711749409040450925863406711422786817123622377251733653110517205609111923865255436182201803531741841011462348193082659650166117297370459127534223811270339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16305138952648056640521013741008238246374515088022333634649626337496029222788259570364540043307952277746753154437835726332388684831439021520861735645013526770177845760112666574973663518684107984998498920314867396406241968729431690573751757787785264295463433441144334520761888839321536611483219656573862264551964654538375469840608430929902339230574710085328128126981374080420138980268764533405087259415562608304663053084914146082889088300749029304369654186896974206702005173666003436719515050403546842460367401872053056813060411424403078683989169038426965212958507501192955770089439987116065772460153791559900394424461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16361885835406154123806522214684063797209671444585472494045047059299620672216131516214494724367431362053346551678827952175881770424034994239754041972432618303373308755852727916380098175968690680949399492616071419848634077937466540089410780616731217852440187146200654502092703417392219877613273318260552437707755110782439707851563615005047897600396787548178479991209925786493832075722312330394568281677350591053521434106885307819581887954484313158641648097624637968081506133931140634295320236411909531647426904247800032448592732366417519082629756624510511077195380699482002553252886846024619428635263712586786046812333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16469026542719158753220265574026253283473157632942588081435944090175448729103641504435449229332717080974224796062814651107269182903905967788459639805382204772487927513922497281732048862262968398940623565196706478174360563241263640776293263039920203853170813153653952763165459217890724669684125510275322018466620643308142820135142696454738392424405776756458824080361599430429771661166656452057811149344319542270909598402561896875188183740061814575567104546615443318803707773397761169146737086425252107561653097418293485309522088958616333603310818334404051936245852107237057330284746377786204496620309571454958354133709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20032321747907111864760758512138907850491247021471526200056485141309324453383989083876538926139443553076688988825345946418504731461732394936921606941955288738449788890694431934860105752406458875350060469709957630781128706916742700945496170314669710713400975636310975940558911480730910099160369717513322263483344175792117157355916048049593943097194645122589894034786703783603699465440260855205407725727714701497693828115484254328007703278453870187432140923698839930758288892996030662697085437331354186949902512606474205725533924889263344039094846256359644577118295352317504085541127886041729121752157722136248634125941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16282116673278099526439941964438284841741924377060216006062651933310913222383206935883759606381320927705349173900213834126159522680668699601078054159745917167961157818254802243646723579037968031897299548162576517457760036374254560834256469872521854754016861658116673378904222285936952100646252755796498262479633546779539858853436898240823727654136563141820949236808446593765906686915241275541820219132641272551370285571049054128908106398706947602281493032017779838688330254803244736730437261516516182187476549845008022134792734700935711432809014177331179186600164490471389827667460877466573479763605509674199337071007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246951374122521455294476599345071477322276158196666298574612369971078273864831472519221747433748065522131982741500771389262572691106108389758835447849104970214245065040154269289729063498457692103039079335201284597191540450572374499177788934969613205633117559686928164834631988483710118573440263074551355659518434635527933560543405944897202885340419973467479403175690839374039300675841273089298890441868077598023006995534748598086087751022082907188240202528283355464317439321148429862279496940648661976681935755994103229902632765037265207133257321256443817937640152116289512141876336041949379256242875591462853726949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17267658145139889373924027009197800367411943513399180715651373318314521421324436366885103826621171379752694441699541996261026002490519046074673193765808288018260059960956885985071254599827275502854630830946615134653520124400283410791646820468720372515035529360744506626119332596657359196848556612914097718597294572945229570807579268235418121244040424087425290153176326196875287184537703623215733486328206829239441919366134724726920832858303419266871017714350262827540806115977555461682472583831371662845657002100139898787698606907435001096374520475051724647692109765059365657271410715934112187023347143140459346333273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16243803338794966542721664928421480055747086783643079407697307743850714708588478608523409312691697265742295200095729536395385571352931139278471568248922633362940172593912675463028688351777076196512866767262879268329591417671647340054685879240439007534531134558197944289069212669345910042326412083034757330153655657080658475534443564396994910498082333718379204147847815028471468143465922099797194653310178519481902417127881646925315516949805744380076537548901678771454099186502877685624471679205477212160253344288127346891466410092159925252601589844192035046707648902185827386122379862637131090845391539653449109234757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16340768804816620793146345826557773903651289160377552369201218863138262157811674378466712528484277856485377455181826741603899405299103782636473817241031469218760712521965132844104842721395357697311732635295035474382598150349949700986166348207813038319541968597711990315981655335523582749809621496346411827323026945124627859297293029406100198746281741685145286064587489213539391439003547298317988137021636171767772633528346173284336209494909628220554040576850331323056697585104672905440055699762940641787144241278333604164821185096693169599425370710960134611150865932179502362545375063190430448303900811707259691798891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26386344866960640127283121361464803048984799903927304610268912657239382126527090791998363142549594040956128560747416128521111848571295283912587215716273382576766378157636477855283809453862297338028546372858666784601711050075943795196938936056740796189679877186270926550931582596469330313737408758385119624886771921611989187786960229602625404436048710962099495906110353618026254752423495407079244828719138340540108304598872845227433317472704702669199010439811634498411510646657482220855723831649086219772921004198793576649295633148252899166324414654979333343047833100224802902279255949046126562688732317758764753147919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19811860834273302462495573059532828286474000868965241849495236096339730197522052282691115730623083394424890843541288458658032425657162322961297481769314251381802921215303786508608417936159906914447820437402999608688955444444327317261973369454072499885289270166531196679073625907984006943288122653900125958427146370741192494183906827701119914581052623455989030991731254298217532911194101946380655131949293749202286551179157206344365273995766290191764732311135003812345657046696612181952242981755218278104662118495560525182661078260702307900049286508231485377804624056856118250821563914873089587406257045867159191570299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16206976948395175228591157115443545757584227131935593533146237810210411677189111141941450082995769117985233190442205899650870520444437686930034956643283567995877920429482023330181812350723605977740701338276913049142621109274657217078553830873013443150310951797002977686735214899285313346874903663843689522918432780162181762845753173020087251674981604541043351011475714063387039052739724382053672482413138292004801156943163154803806856728812891064274541756458055249085670869467999836821477277129430450437133989218218899143706416605828320251137583168705948746735030678501044919015858797407825568305463763936516765438641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16855837562782536927103224876524899110297513060070746456821547374937486366163313591892519202240943427182529376639536082701524552268637223893364981250965470642406681569410214020228926390011583611384271068980237087925555601005765758441819777360337414354170655896982515039591328562488817554889237578972117186127849298762802469085858531544893735641467333070885887438536944377470713399389976409495008862304215029580387988561581667150201100697196098647155783595290290553786664955919579205846893352359348478977698556074638376287416480011989369997636901911985329607078920999678096876809379101908014865350996293594345315258413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355499256773779802840209329719130302771070613980694133133229102191937731521009602259672420320927470894183521234218958852590448634264345593601424068848031392806719548759107445499797244369563058007651848718795174297419503032203964671745835091851321181017683649702479064635215730889682417614662093074177451011439599565017991417360161925723060527234353673504338120605806066019413214531435915737502968973667622945469749647104784162155741971479787331930097781274082383403310395495801893505545450293932607070797946999593580686104468198241808321642040254009970538337824139766909047187945921491046929687842475167817859213589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26493926205646248440367425013213758164826113722461311038228910006020328634143328447082708944366133614786648741766340802372931899661175010234880869739651423008771940962277115064086859772410920570819122252801595245864980757350343102773832400939791221041940895625021892111683277505341787745603632214808124489053772101819872351640836350147249081609843472904218796381697532318812768684803789180930744767303100465264822796518215886250769353852227114438893557676600207640334523637543645231147326101375179151802989366505180482152856451903614469834433341178311816648560689893246444970844364874419063158124561705329760049844859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17072235002740744199197982465695797335776968854333039831464204459102784491067417246998208593029860250594961910520851789701554761309656307075687958548791979584344264016625326558538076830129278288629485811556009844690355645650496615182917959357383845308205904290766229051539716481040228418413612999061681911557475828367649419964824445321952899393544781857269663935800104049876407929611445969681153354340221116628116102799139463373830505335628719255542584926828153951254806000542411116272663503419174681156845939947874714139953968239803063407664375694641868946760149398398899498033281134575951893912924362674801852355727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27821171861613999090369131545469948894286649746888900009321490867187812090724873537209533858387869563494076142396447819536809819285913511179395274311199472769566230812320778257131201594570868534109835896147150165668301721312400093339816496438181119075631190211827659147925895559515829350209709097852907648992085208726015773669222458719787357487483450201197231993168755387253437823213127419701637031574365226466843498925959700693712547925422423043634975891190957042577521941016909526772232520327638193888130763833579822478225741829742737222741960613021171848107722197360973866054368974363225151382474651957004644475787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21255117710047863627407650208854927935800475286284503659289911564847242739314161473622066934175700014166857856941664744131584043059732535205543181315421733018050808197872670049936202765511919943881235417244237784393475357492918586162990071670499169661246868225368975773764983351016954250195206874335945997971263139157322060021627154735490821876054178247871887198136214496003980047367121446913741482423065460964500686168418791930054816669982602960979685964041506683070955141771556777347210583010181741865864926162012697332750877148858383957686983291763952974357175990306532730536837712182306718700711767337625970582227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22077091461164364313572850512980922748010374733651976157776713263725552655618677539446489221599109206758871979833909393922258607177742074312681592011437176462470191359622450354394322753738426836786752229894586934567203177556536027678699611204599627039656521821704504803143930571804907886942180120687733057857622707151510063976742683286278139749076967859667084311947252941288633488502091153758578396104667879228065069038593851780583425401151255979308617218586254849702447791338097065367805986005020680686344214834777805446153833869236859957061685534108610070794897598795284004111737976370859272809826911277408787136983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16338844874422328221018131695131334426585353745677261165764564384377674393277487425488377947780818923020465655930441101335155738719405294790568457671898655107668293916482973242974426766515501884385174474455320975913699342967761062747860833498308807227373305860410893550890875052302798926820859273532839941884540620249246153597772665116516157229699692457431274598700489262110811806717613308219921108892089817980880097994997100537640037583641429985418578179532961940681741202239141608487005974844400175023177677753831152366567985407115882619203801066894118931872241785173367573975152526337720759434123095540886381011327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16277407507512957961336672429555201711529172935373525470577003027107758435392820602303871817842745759095349493518628060409136146867087364456011240420395415734453965822405588534963107215063655955686638222805318629257563948160501800408338332533339388192557818708927460898098884720038961411264979416617447723250812216933480615299014639622987295372422037822197443994811797398236733208311781975466116226956354753955277032384682947585213464201930872901019006722038393449234149688295531806559336389254234040163282157170645884284106972513047454865294820056409157022753570017409020277297912348629155658780186855950583198807903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16570479658645530745337821625717330897454112746332248790411348742488969757121048093132424160028495945435875187838242489654136639156517969740730531018266513641946225839030381571549436928045432416162032371154981283312275223750166269661782281503926256170557903464486453072903675053013148499142815429544344789611722415119999310114168304597391032567294868349023732410470571802324186738002963155168279842345209149977127734821760769046729028336144912571436470985341612044548977294741418089374187868583429654996071954790346091956239419082094280228526071159088624655644868414205855464438630712149430694343041116510200568125521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16321241724321658784314751979546405366730202299719069120729123244508148395381443226196058863591792667349392061426087082935029891497745929963432102824599926380872359364928916841412901750200789476979874138526622993057204242665186437896844044290179298728967497657486201894061212249484496552907142489124685478655425296505276709081982666811718106631641136855648528630715805502327538065275197284890507468457189041164921808498704113668581355711420301745483810215554887211746372059573696625071363525522910939294703170018062603447511056340648727762048493193293242493758378926642114706062531470091162371950945170976094023253451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18412444883752829847823527823593936063246054467716661939424581765983428532850308827728777734615680473285174730315843484010723082516498893439652189167817539036213974535517795230461824924963453632346585716419513167535293589404690208452259285121503363635873387131075847314528844993392913487194445720707058957111273061432703068873753129940610486169342782090489873989331378858546536480775503256887094456283322816482611167270022537391018663810226933439716053720867897087340640694012057801611350882573841019687918756954166362821166044393283523173168708260094402691335916006252003489102797220574347949932190022531697633435681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16693964294037837958550828214671640870741370283231789905354388014655747391127427101696583320416974142991269096146395901735111126941947183142142219208672840055365491462568114235094706364133570559510972547473761747173471336245494230395786675971965046905015678228813328452878541578335827020552527613911574919842449617609853663227829761932990838405956019971737639305853606222420823324099795280215981502859337198970229364833677922426406042023828371091633006376780651638978264972781531747155647803720359224206119005173246363651719947865535432556511629232112644095822894250151836378012610667679783602714611935120521437700097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20056123622250788740111109597129538959594060233179198531341021567138975501588154595724770154799372308719417399064327214095066572018958246324956108642558926073709955948751549051694263881265051667801359731550977987924671249350211619872474386584680691785080697836753139455843756096159416008110589658616485722129750974123735029368012796861831832489459328927648067674197558521990693883590288912554126709478275761715096980476105415846511434530109184773757831009154285239176677195663949380318484441553468165461816033446562281488965595765155857713082900004241395957803527372628314276952685469069339305085411446353824822808243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17795655528471335327109464775347587973312871191269494755825188614850058511079027461933198898541616941467918097378051613404244080702550072088774945372472614072299138274663447920713795159126993312398258834961366759739959750336789442589968427746739957063677037996270575214719994239032418927691507289742932692704373538042925967099704176313021262569228060218585315578958743386203708356990717551211902881958146704724671742148402694212042196286556697429120995450503308669842982750335134594474834942153504749051828721302628578443430493791192461619746115623130580836950333741273696354997131646540792808535707073228970666846583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346282546829242555441910639559264881964270898786604300670577675420708610309479265813061859773735590975081124412409922126712079020456193514587997046953096092876965646447648102539355914471556222807156559786464623925825308141399770976715505340707566393832432762133147255914216096903349305046987340700367254794498176503263046003908733036325956537352194915711511846899599367876446334946987151484643661891015140785446422253620881370465119407989889912545762591104122436638195054725353238452481198682179626014697009681147598652967351294000093288111244575647570713554028107360309155644295546525027447519933605711875241747693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22565695989777085646870666939818952040542340809437802662319618276228847757611393106383731733415253399484338272440581013547025609719190036873875020439354121100723684217633832289579108000015956433744838579518978070398305202971931706264990513714186113243713608100219902969881521674242596282695402674285786674223475399514032066054626797397011251577968495783284701956268061209915084558062755900925867919245589923548095540554341201805184956963159713838420821080959486127466648846687943284519609654222962659642818453333151672218299037570579219519659897932446440327022599794767621128655362342040327368276087755309865484791801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17549525142238562651272347747089780759418373548730482178283911223607511810747252046792895615213956505667889798847386988294857124122648288042859422031401151098535942435818128315614238136640670980246416455579076925671382348575075397437740674174137388707689190828176965630782689229629416326631794923302000481647666068850081656266863294344383122722747127675137683732400577174021565904032993514139412875199936485194719014095093479385642732269048605103887110461144691358372105527136529042944958637226091588269513127999842314152255758731756780481839957452681909148667889889095977831892105521869529349299666108207473352639943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16229302100042771115651430591747368238213195417164493109036174139302945829902103940743635637754261910675148386659370286985633984810485270186279753922983037311489030715322455400338120618340312368478761246335036977330716184790927418017581565543914046202525131984857781121736313606161302970591324256928205705530213680152066293117558997387691876333279154109856311014078977540315780018299177595368868727431489741638734474896580661037635111399104430214824698477580947204475249457686800197054143573856091145752504430946188447936106450967181937059792867741582010349224330391680206833352986004499826831368697363253144505692291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "25301806505862743938169407144446148052008293806627448309838710135577267900865683387998697598672639798128465773001689192564535323275160047158495259851701237990097317200812094160242146981355705967116195706766752402521618920544702192560237369168253992102143010991501253320033716445398422154085594121858211713560041427378665820675579522261194002477265843031220538988691896183618756634411921689553560232068094567597795523032514051922693313346229380754721023568046058594321216745397738960146490027038194252064383620207752826608819921033168701831367389096194212607298843860111883706556989677997064717546653208061576693782639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24301793507774257896451581206610573080826734265103987279855128855553534768904541125247774556255560560795397017654958638033875072466516158924842173858574527606286522339418338210349264823274358143998896448407692376773223798300576907994173580945878379553914650926847571774677195468644548072123113417129987227084314979826364945169347832034989421575436005166883208320286212988808141549633289217336471030384900162279747041785113920428454351029033328945656484269694920175212890383667115306974399359677447059052281112465894013274892777487530221442859212548950060665377104632645606999958645544680322546001796576818548330533413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21748675328580394969471094899614982224133276382426026646068613485706793571181813524935428816830685566346372122644418244475515523116875952115427835151133477447573154920290936633462739276416425756523900632483772008404671646585137139914614822887945787682014075205714861044506964865460853126777560915065764115920792316055267445636105685419078782179672202263602921086643789752721891225947555548276727427463532073814838077909659625648290547512865460315572154417084352760458748648521066305918375663640730202132184776761452544451899555022780204682627977153468648086953295606739142164585703649194748513747517153342025790912731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "18693068878467098197397381262607928909443705841122431746589620820448941768715456369467297681879340303666902537408506226993472470033141230396883782141131214576699228017031305601930246802504718713442077284211549131867659345142807966954497182430498521489055951160087728670878275945828597694150098907288827767236955309162880538133533084025017115248019935775212550983679073120599239888393838941156277373363388347158870554492376584986747889438097209460926031479567699797359283387454542026350059794640928453764173714479081783322994801583420069227946234866965320205383496268531971569541332486936618181662241780866017328633423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22725250195286330384706215546187550495235468960070668215052021769246994361432049254500967243192196179289076742634369293113969115927057612101735262351712282527806692360128671455880656866985312169866396784601070047843178725378816089873407680487277262633133710568232407747086181768011587451277617400458077574491293893870377990231995227324726144493945730932903810031802315596684196127688229392663177712735244627678647255822321705909531608595408258685272759582416987836899360009094762981575088365450688296932823748542836239736828843251195961121447269230957536741170788800375996925883804029713681419364986462227592930259831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27351012429588305200790924052728649198290201315501391023229609202589239018332793757466044223455218096663917826937939083625696768838092065392513269737635821307396933609036933381301051820711882070847264582476764659343472898266421773677023617659657906623570965448190259247824764779565566364623387658652084380481321585857119648412289958851978808012790753194969352984539381783102561645065442301974427791602881933829243608989307591241972978428749468129028066566768225958656558188484078106827411300869065829804400143881391936101184416252777281313117074923497485945413210049543416479221587983897639092885371105709257762200651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24473420296078032277053079026947189948066013691101038564168227885485962092926993694577006208665909369378785477550748981650464066047036637209035580948827971955473634177039774491577294525661284755129411272212437287090316674426656923604061384499096715731995837621052665829697365563573859460843908145440729013748721830278076789758503004432783448917454136533152548636836986907335203504721247749270278426181227130267919659283619352535474198866078661588613276618054158208823477275614397844032242635112128535529622149027277444532491314784292873315284570413085812979115827878202032686751479937331415058042361297110575851230279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25526038800835898777084196307059630186644670238443799159830316247897011458997327422084273075730520083035921666891791647350425308405908608197319973689887862335385531593360917794250301232551966477371800926900953795795113978579864969597487825176315677027630257051154401557146661692462030186295903985697908953742283258445022483720703208673750719224231372633782665078299611188460365480713478723515633317817084542028428812319937437905914790900997676627999229856350084186358176066377707140249299014347565375602843806145148326816783290228637425523148827863006058927594437261746272186341879193009723587254729079952671575630419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26785217789901564770205851012399900026989344333306924493456836404841903062747788694816024340799429468465078132235462707761840591091625474524226217325779673159163841942946982616588039286390117084971585423509915958273502950036005849893893868937777695844186674874717614649802776549538564407411625603817788818538995628183511344086410492538423006610985389035667393955618835715263554474148962388304843027941238635748508230384006175996406473060356866389886900203589805406147819789988801483051843583133652932949523601944059002520321964893395576384093851059084948326701629091143473544146865751938349280468013643744455720715711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26362025849531796828321714648102944554716917521807273174609342499755903422280529474789736843609902431129565215103023717659809182423805436098410050927494402256457786292247819894571692418158647282384458667017388725922173916875934484272667878969940909095420828210639232956007893748797593089716758005039854034001075809656260663958558406447140553346796989364598114550060121210813237680597209847858176996496277883344751598792402988129206471823860432455171795416013859570087034781270156999798249812222682323563577825463692882495630242257135933388616142475451690432042189048818970125487513057297886247212135847597470533239991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19428026536303122047551312667165601032976700385649038980501475061727792839073087982371726127662662927481444086777756769602241740778495815807658673395433994562948823670878702002604113885080005495340243171552977500722291847044603085994169942317076862728246130606297009187856902786326293614566971148488948876477393170948750872745435456743118992553470535523992834851674175948752533631193656024981332445212788039025371700361001681292831721364990240526538449730428168516824393261733595171066428233967943703754275208702440797895654362061543811074211437508138425526697751429487151662893828298062995852395742845206643514319693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23376845541245814743693083016141444289202271565012491294581367202181902781691718056672416405371674274324989111077403309211437592629559779436783948297766437367410240217939572002025837879333499446374403001929159853541718410970672375469066533218410905353977036768585338704051293825361900105522658252158186337894555345062280139820358073455014235880111391277668295178167488719704275235530929341174761049118295284859131546011864389859356364362491628725295586288425951534771713265114984354290720967343653690388321924823147480534345355763914302516972466488499276672053300464312494015338770322285833377533613503833036116164663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24199608569224386340358043926069224380889171784357906074731965670588062835292839454940219725384567651856039299841603927820636850635156636875202242059617751681638667097686718238400049896021997693475751984404895091810478944596540391240597705318922953185524203813729999900740438514689871648298304113445798494311796285814378747450427116396901989513745244259120029791202523440401594190876360127985880513063729536082162257081431326474639214247902159835305718809956419456227161998342223341160480693981318822815607554139895387947134790631557740697302297791307277958168932732069237348944141728787826636016749924921587330530591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21394281141630944385865301612896371254287762027638425212820162532769885022808670874332996319069056810961423853907097977882990641061080284118354447563101215990089389246187306492181162958121995149085494116939570834763723555131463469528418060231086994371901383030922646700262300464868670674971301260707392742006608519655139345562453782348983219472105233638565948302031594090218416421105203929818746408696333747110421516863911416470409327757189043022537260941749236788023729989977386223234957102361365103755191191171953754102471561057822576164543795464916014815467449854866476297375817351572267905199705406501169535227707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24751562821733678846304957084228314523915131732007619430771255784771823862611924090598083550800638825975704747177760589991669193767897604912208969010970668385763615545656677974865355759985104761670518859110641789180214764018471121334709033735543804783154872820995401126308053505990638270075859538218465946343067889815592550853568823466105092743707660931548420342729807039418185160505271067347898638476092211217141292210728204332567664333518216645457833198809067081510347517673184707594627990582243677250728268076528249199350487735168462633306066532668229191843525307154665412692385282298990210819429813786702652173271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22675267706488083426339739955771291423411095384584360361120336734161339236174654130990154040789457338571193497668506568088973519221543413193376652033670042961770450609383175746756804801593503518652198507534838377084764828781996356207817600636861975624137410426449919407904451076872926681422634210316287581650446308814635047670463758302534938323434009613740585416363911390327215611956053691653081080418984626682747590854028119290445928221909236154286198003965475434331786224414502602726332192526239798874365734390842013148380923922755018236237745595596655046868504558839798176369491137081845618857217877822174956885101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22858446734278051854517293947425431460697028681069717176349495155606839672772545986859596216693529650417335499724737819085550868747913262390830216065186118545469763565709323848942056475403408025422751181069905308521126834800281322223008096946763194888804455402901223526127273424796693103872082510956044195785734414496027691285507255432704517323144080937441823587883493983042521489877972473966580349066183049898555262982675605251081128952432764599985888783950739235096248534729182387956168672867784063138354088345370744008303265911181153445565137458955818698635314181453778739762151949047183118273766220234209711770773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21119821567334081170045336059578998291231369608420306680518445049860705982050981660445648045402353871708752080101407640664205514586576273840806998164117959762473135353239769468890157567968924910326812881142691342008691912657187917049593819563775182275783218860549145212866875068223957556166295796045273625999744457775091140520827347453421670654384194764922297885527754605258209943250674631924925184293255892424537973518438273954568092565394559962387098416143512893305423624056032580645630842104466133908706681449611109405268253864303845545145645406528424513711401307136921425616808983121855763555767995413364744851409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21134182912548779008233335552474211613280561627898604137981116285211552671263345705260368696453112040461756773363146497058043645302269475764231169665950851463643856200420158095586674520705898796150596546958269500193411979699011202392126607005432078521070801794121367207887922313606113079357015338279004604359693358443735418742426548089879968037732451643710324041968859225660768248858056204732123985427040030468485126450612134826003712478093857669969951774802273171421718921750375761453119756469449657676221528410306958903716840605787553451026811459687383128454351843326042036994408579318555551192405225573758301487069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23303755223060944041830380095394616225125818802690129732291387820683730928914365205676626771634116904847718634200773120949844814795513727230394943423028114824307611028975042843555918728688538963369590347630373343623684008145378425035698452092929603887126564768932984081200604106030438903170817304256850768432107359114435373915838717863125829466210729727332778600364160888616804270345955391184851723707690643113812027314570937076262511165370819363841414603395204857825739492928755654133134169592955918894133498037344634916675084848171696585997422174322488730951571072433074313900616689679413187442863479210013626015259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21941450454342063378140635345619056705930241270134041107976416297260603446223047521245263688235961768786561235143194268197954169315914211958397896320742945307351576724760208666211195354373571422602705441784359634399354809357974963727170472156103520219596245713713562525717528386892314857882469982657004365513711030755319253922688694954408797143957023466857693265693129639717992891292233496016671167079551218510615577765838670638026532446889104579003391251423032871468940016353137034702903787033000974546340672918210799755892924211706387017905242570145025839303117394281414469344190871893259625417070200118533891308831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26430898972546870219717175359740706578590027130664768057520321888265985994843720001742242547481001344414931094570166325506554068069555142070147848495153169294369858856210121918881103653227678049515254516044151583450139660446442640909318132665766918573907161515649870248241431645409339427716982828488358934635685794205453201680714858928063897692469626815416142674969475606710033902014307386593570003867194083336405248427149648356085076761643369169224442256208261411033016849106180355624661888481898532958356820798766885131941538025593687985748380525772348470876276204973477532107676217307083471266833404831854561617819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21913248029349514779923729893540181339765784461549728776022496967428332265489265623636020856960864144129435925598232059684772549658031333164619448816297636054465401491820621900789730687078761616944350072939050377716379884180122900404385886404122579344445045731281961377313669590504379645497064987662000246640440761359331646782120229655436783468068539370096313926729812227974383085539742865115590262786746748604509232474544633449688039630311794647403220153613651880322826025055937893366989346545688285311257202386050847399475910276744922552638868090779285789896855186066994715437494339626402916666867191393195235045431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21044958727515883464480909632652364212432504482358807673208537821615457528429446702725312832587643552009345708079565612320489717415177531274401540091278834642847245874438716491794030445271954773125894571522881071716938944142485421144818077948249634266157475706588426747269864255693749830794567550155706575219976500389719846414905854416448962357744592231076749779676978512048197838319817439525187166849874028127756850644595435954469871625096125513832671414582296274022135192758528084771629741104796454020882952692444138302907601091766656252052332902585468338914832162374394376092497286104940011509459558411349243896501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21861009145267217735101982117055132776012594694209913276318543952227335502780627269435199891122593080175376157613271833694200298566920658666118894755196118937378108599154385811740570283018237094982627083796354638589359164617388729669047482608207638217638467538398247917687537208300377046843683861419291424583249172228057787430556390140695086211955463739883061060396239210986075458209297941426398373629505022439268809793741203930543093808662001008425754057283183952942239795332678939471608353084747004980412136158824735493138665742022899719476995477167596597452135262054918921952986085214267226581000160063289741976681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24211751885107505638055350221216753049615688891521517001995642351731841224889086136941899083636740463978078206282514189541530684135059955903854324550165462268919580071905462430149516695302143361935302114852441582790664843233291996653258770144431812695668232309267815783453762048067957254690117998207375442758521059266650890156897402212307723626803290257020911800089743823750494511064895256108518807721492953237480420912853123383565719897724391876342394034057278697414698584416042109058217072457017887814144700239721670732144207947098913905039134277302987201187953945281190483578071923176850689966444525885274199643407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25372514975473517836530178667083825985077022835975034568210641819151603935807987927185307490359884246708078189219961606979963440834382791454690821362636379666202913832156642371175095630014351850709984179581002660098312793028588946180393331552105348912680998659850206077542425647538275852526743704013739970893260981107576725500674046870337403134856639443660891187100455180464986918359033055074884354284933760787584311560925979219313799651193012410063526464394849310516986208578776714377415205618612983285858551648600155465883071494357401271525372563534018080658370101214588339262389754385655542566224346636545341429987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22147900192022018947100233605827449299523824799111491833538963887606248391027072907692189565974486049684355132141986457873627092013955745416587903230772796394582477725871062927286207929498366558159494618665763623882990764747903591750582811912728668619931301482974699808520380453386754040104846031692630890508106464167591427881714583977051314962183695044485587649611703837003172553245084888247159340287315680487266197993514640650372919920928004975115448660310530427104642910212985892626099270521761506189089364012637274080641594523590692581358930637879615017894876439147868066644316879320408643611040787030128997449411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24286773356076413115202750785605003027690586695729621668634721484413399521213916942499389319974840154953719151580772783156797665348122419663061242898645645858739166561719663074255982870400927725462291721956497957859266612683520264347141199693294840072230269921122898724028549611952732522312303090963814864350981003836866951661686558968489478261494039997830970875004104080352173843099789588310411866946223430716342087352228666092633595963006511636704274267232264979893707664200840061700347599447446554014353142458939785841969978114232482297145772415435507889194002695904804078330239193067655625425264975000380315982009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21107259292423884548378056228498861", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23645695520762420791236550026139987", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21839693127959662234478979383509109", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21817537316276324889025766956458364", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "549704845785260267867523348691647013042642547021154140024142415474121134678290815462575204140105444613104730963554894910425068341222186396976445386903105278520335162664720033355421953287425611887383993359399157663110541619883917019408806559152879647835997630997195774624204640192735895768872277534973851493011794144648366901071704791400518494676964005093983733804037550336091628098091143464311310683797010221440583948720863964847102153835499424464905194889677450462894805932122514693995005724884431079547491481570541246653114648262476861633308347328598524527248208839435087702571456562095072605012410837715819129130060713224106521595294583907191877623763910276492683393447688269070396488844125778780633668721061085694932494473940216929213901556766954702271878428542293371130524585023297102815462343026830572770472764779411416563964486147778253579976547973954699779432454805348927981344457899627639184443638648043688063705753869309180203337217763067673238249766689266336753322602791033061422634062002260379176446131417024880314380434044318775819710234615356599873202330995788770634801488751232012122273032961543379720526952912154712094582440661890619299399033380846538672959862633369817258120033566674988563526340780731154909139036379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "671373022300056560199216495169926901031224807012949426852055516370396482887641640253330830129845698384916903470362416577581844440588022279739378761153737835900302464719938077364111950105769567039575743323014459343134924097594291718822708090383071930924729956339070748175571964919946678842811767849852512267583900531246664793430481093157902522581288529710897368028667158197537834597960505437883384464995263196948566699221966597957822372951829948054272458624368024922268712900777866295262284205498750480192686638634257699011787589399086712557396054086210859166479578306240416540880122103747844068205212574571961593224120252477073557193836660134594567384822261793430720708255649746217904812808421245073021745571650044213258832236306560818866569278338426103374630771864812247118880476892901582734108848795189956344841203131925270277723453880930015990228186740789499916656998730128577830257669207988830671968478423327765514010767692904353848231927244282150386575881196118639853176707519691166331128709017042608441321401746412601387899962887541135543539612052515370173685234660434142137601180316182473578203216403907469253941491637157907923532306584139148929302385293496054828541311463819151854646962024092684397911371836663520936616453141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "18279115478531965179530923684509530431445033759119933524522031358558766406454471714739292609271432534650371549575159167016846759662694147379350505529759593032108556443845262608859181153021700180257212583784150393760937140671268986578641290834818531794079731606474409032854216162721617832868039341365806331943490377563315278926476223230911347806361602324491957798864192903271702302263363111714322401913995401588959523439575996243216708819903992417639483241701694713732191756932697988459951031243536822296251079585414450275105482929447866829377213118182505193647547800213648502551186670549620941543732800161335176661991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 4", + "modulus": "25431830704914445026749733828496360950572562857607593669399684032205885950923342888947793303956460157939527640816059315016074125577928005229453634662081410573249402289236225709449409158918512997474783985541747684283309154656147483124279730842427727680459028290442085521158171440940143385701482888475331666806122653200414358168213815369037149510885786002447759788703825465411946784509079620107516188853848741478176877142317933855094837810593536693324177128378185724179058895598653284242160632466281808113746547041566896611813572703020280006740248014290922833156269831935351334341563064372792794098687311439716410091981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18007054690804333161741577154245420031046909509301514275420366591212079886818838431108982708811594904735515843708620643182943809560166924092967100067989258820030546502589680914364818612934668256824368235945090174524916789294155009683751090372090989799036988374432127363193120015366217877410746442452836908837636499530247484444486358810639684584048209536141194349518536583396958432055763441992350677990904071840534212088334737419159902519909845452243921306228592523288884190589079849580379421220679522805355418319509478410656975334134506805251497482288032480742616518357402836687326704365960145343639704740865915663741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17999326039649217931958793750787322218100090177969820343250874568640504120938887639897359049942865083035731532833040256275767605411887191463025329646397301575863716057406800747884901217689236559230178545059503811247794557013314108430166832775398601246831658481867439846650716505270549752374318211802138271707994891931512989237706069331069808710847473783846109805633271161446697431234000933562952509266536586767219940609506600938826798303293349011232844859690070747859375767506272788273477015419073672593325761559681771693917153230991314612105727779450982380004457594552058916915230256151531483360820343743243435078801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17247445539872073024498067669918069441036852676848451310156276352321490903892359436765464505133049745184155253266837632877741831149614728547911207560448706381107869968389369186014056616233230471234025054724010703338336274396791325796650504247101340632979477419138607536686594276466370359356917311737748907715780722074483858352969873870001236565525383140040434915318049440605996506631341224177051885549174332898424332688181352075284797565412623587418039326296446894488857273106370129097277823554190339838833308128240213178638217543231365495546659454691905152797050199956547343701520563749236251472131083234617719460481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA", + "modulus": "18435635784478042314594046824589440503798909219007023994872316729617739730114371035799502107938117241969315933985530996641711313122014928466137818565475547658266148189545804708749164738473189582502524893683991324377995925321396527938609680511917696958053915708376842906043864467749083803580054414661949602297500316701361674444117903309223378341876189868774782421213431681677245789288959624187972089052128222628829408814842109978755536335038375424545360999704303446133342706402184893110642453897875757314264756771078371826252670436848571864108758041872924440576544364279651134954779940491389453082214268965247746806793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19249168638405508263179505287264573176973598404595425188825453879155889599765182495862138196775676420069326047258455745753678035601958105514795668355376869653167470971214497031794264548204583174470681014213205952466071071958444555884831959539583595685710270869222967182375584529188177664258128678067805744374585861368752161570646424997517607704320853887472679384285969660602783284584816021108390302016278274626308729766732528958827707458954891223258488999537221140211986513211627437450380382084875968471822075475811923865425539953944796661767200959131647030292021168106553849422006002291499075431247260684889005808873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19172581516877771284062835336647557942583406151378729320060264304725530431666345270751803901743473841075882559372876834561764755178668773927676510370785647273156021447213208495379610128660347168600563846019259605831597740112009945424365619552482627373629623647495243841507505891593411326223884704077406747729761928474489883054759540216169725682441196282388767851689188547261708451055059042168890040921158477086703706660952520025284165092577334825194220837804750725196077236463005786352051521540180089103979757833066129727053071011248406839400437309696943671859142221918146526019480139025327336633890999403659053015789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18257998843122246893699607530210456817263747863461640998435618410008848563421939811756899664413413308920443191802654783139709646994424309716667303201715537752721865587251204587620899302782525823552910964596635592783561234025708644861801668847037210567108667825541652083618455249152663638560318843470071329939270927326221601995403617862967830474771322661505196861785929412506156070957553946587488104528533940538543461707562660865055900083150775316243983035616584849332968120229146902529321189249387433098592865777542758142544708296496743897925637307904182102582356338127957450084045638985964947879958632779109579061769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20769110568717232164806992612948276890724267831334056312580861276882228875203023209578474747810043928766187098612192633791950877794016414018440325638016399285501609693163697436306402671690603988100927348353273659580587708526025042135931527360246554789300226679926123967492216674387041396518883536862151308771564074453921537009279203950534600199643343214393650813872219627151685449844081131546937312915685267105988178654478632125775283598882434496601584384932586687627936578854265748354538307978679253729576938572324536571876950316275895669748477413315746206074422209140464563103229412798153824542194916041949881009599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26756326862646130111981931021503056242401522134511886351848615233998962993671767930007462385187079272920994012194517044558973243042917367524911342256480111117469207628147759218650120771697060449438039922503844847972940018864721167360868691740908619869195895843007497098351404529428247096784516737266352525011987377208789007618482925732189286931818080896697227716603814348106059946726564283254339901166225295189589636733412039384155880453345366922873037258329340667688250387527420158806436494691791798885019875984301145821330301948329687746288269418224976214682499377091144455520578966452032298674155089949858449563697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21710280682263795654547657334645356864548597176288866422485899716443492211238843752864499217523192816738937692378136038827616175911605841419905121123394891547379450543548005789844958498550201274314524658216520642076505772021534090318298389164203080483707404850196220247237642411718394251167000767121805225296353241847346371777983119481283503721473320805600605156433052949626114974250140612442913513248711547219685296798751746733127350635963663570739413630924675555810976826335830205570243078060939905778626822982155911506423343680933561520447511144674681838944589409242308285388272537651283591553339662937823304241787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23147686088572059060533341175155799", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23187438075237594302247895953400035", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25077136328422160057005880647917866", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23289986245020102403597617596609786", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23671985483810769202691687740543790", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22526237599423249089378862132292060", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22938596458229052785929684648422755", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24305606589094252693885512682683175", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23075282141764340309070408012777023", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24224099310183019387863355099094756", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22137367010906888245452644629749220", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25384139868271257648114409575851493", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20831554423225817508890626481926666", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22133309517471088611178370629865881", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23156829628881679293636508818972240", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23069501151569749765339398290848893", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21888423195419573789757607063576232", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23642787340443025760404024922083981", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21764323091720559762152913163624086", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25563873666125308319304992309903333", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23184062442369599415933918758223389", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22646301308895278821010131722525767", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22185725044943205424706147968736099", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22369318976084636566356422814481133", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22970053913496871299250179142257388", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22265593938130814040723496107374899", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20954355814911133757671283705107043", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21832653763116976445407909906428021", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25921651634301625825696063596223413", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21156622290032750141740826700477920", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24469968854825926926776337569326150", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25047872958366289419662579346063396", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23550058154674954215777702023893501", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24117328144273405050283127399084700", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22594959259418572545103663547880808", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21515502235740602797586776676227619", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25608027167891441656228113460021024", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22340024491538700645925421814405202", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25103714311939260653232612743516725", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25170515355828252676220935442152518", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23758972344444079937745579139807059", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25521343884543041868888329027618426", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25227081666564815559885598734930462", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23070609441153569263676686482467918", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24181342408044638029724314639408490", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25624077892353111466866209731527513", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22176146914470510583213035760869868", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25151095209651690583109409840477927", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24385095649911785363364071879124741", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23028954585210961913220703747991777", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21466352013741774077220126691137794", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22688674817785317241501938474804616", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22847266493759231335779497836233428", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22375178523910366914021467090461738", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28565994874907664278684044869868138330420555011519394403485569761713780732225474306099499799085597159331238630190029422714413068881129428891834301905858949153913705400930557161048535642257844667693624424597556442002726054998329479640657841514048361149971781044994873097333239982743985231527200525111091858247809652585489545644414944780838038287020590139683070706767945458958673915537267880247687006127256892545554267144453124581732519941991741690525643335671226819260844606532081245968769175508107838734696339597972024814076216934326725360475954332985285919272330803503295471826961651499640537923587500290252012393467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19170746088094730398064165934448988002838068562053612360640662626066429800746908150173274905881098187354629447846312670805667600119604324140747409297394213509247801686535025135393431615770126034115425880839208642388629523279354915413033888285858077951583077213256152691789243111593311040912038512600357550384900136459804560198188676503403545001288881252313777668647463612263115912505919847781731981379681256338468755339306926915410487621550205472454993616185387331552949298892642821437314992463923902673704581171751959738835253151890006165028503486546654763898069669909022094924387628429120043104874442354391721852969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27398806748947576665991976687339614374643387067073321008982650582752094649161206728679454731599161415664157542173510285473214999768691934859348081059528741115495174205607394555667611099854626817633693891475034175931975174663486224635014563669107350009119532612878495699628089775647852682958804643720097637986739943106871551064557230589789844457232410486611899225367528714619394374097333607517334261731005583448772494142583162267094879557326575785517238194415410362420455649347320346799651332422912436311614434277511295995193112963516528805183561003053272986072986686103127311186767555833383235777793598538793891066351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24882803024807578895878649890269322340643983174479610727232109456756197958737225730120863484679472091090435791754790745503423634497344437698206956290377864941032335557013985450807152333494871088883552606266815823139213630496584759579548369785889434087981107497407924438869699029185762156078992211384539230374987874032348462635718381232511509969488026938368477945279703125915727793485915365383125652146891846528873493623077730458938308555492449636018026398884666395235318193046070598146709104311711491924285112791868999516478831132158117445323460445058015695974678562386760766312522737116375897294280294263327107201403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25651608275142830425644767445622777121559969646095938211354122590756169222723478750282971601063493473939923878957828050678007424840467686180396671096838239270972908479366872507208784133163932156681126882772340303333470638596329343088403263745468256873820516110642577045000989064192149772128285402977332146733424649374275523202339703566602658284932624052995950245895653933703212725036895649064291976439770389569718969882856948214704029186118690229817347432644780807961480438250287493175812699939316096471939420993084238022182425686983324642746113074789822929087148598384125850646661084590145855069373028585234787873051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22883211648601899941155676781343013372089066722855496551438882298860741124004242966279534457396473493056919010671589525746209525505501464756556347752672429090844776552629059607764026550880615983309727851252279133150683643179733451769313303362748131454816112266348753084593194564155486149985375690720934868314825378165034301953961753876949035332872208203011590040428803277123132750140281857734717061122831373052329602074793481933986454296117267558236356101795705813524268878625941175931394759882041681103770391224274133871756333405517087822283175583538804183163274383710758539552366946689180342167789307910447306150467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "23769259883279416418805567497923709832016640697388221332529135994563356755297090047167989740570131431853025890764674586943599271232167243295165113489529972678720367528422042149789499969222425577724428725348386700341414284267643784349215255317626622813322047783669781892426823865416397473944334454313980330568565407584464114865345962547675707491422984331675617810618980738724485636662787917461463096644809624222749115568322691222780460163226044790421969728973303295312356388301862441459414235330413138153930659385711066716049414401709476562118895573194617000725326362576107471988697895630529008624081088709223185676771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23234387646291913062265257549450947867802722273522120251838200530486296836462824960349811260145376512641115464770533050472742744250345397831319375336545375500548638312611951570711770135061802853885708905581179622695534493278898562642057084845436759841213773516503436549064061174575008711919433521500035826733325230364363814664212249192529433766322147396131843740706632144149003540171537040426598560235939632647284171460349751450429781175779097485699325707271648078060694349875560035196726596518506165270859135418476117745712119627664730269099372375435328606909493416689284076409142859269657124331060377733094614674193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23348031990604007477726031342252886748241465722793321057067603614869164882913495311128350455997221268636866005245560093341145713180555867073152992178373305105643802675706546674821262514078656834294723749312771110970875668160078231128877337053074449646133145512320113837476859627291965278812097043788071121646579201002635378698802683939732250857313359186607402848447790058164818701780484296712404380935820489052434602185250803415875235560441844631910152425087207940537258051526709285872394403508052071827782551975542934165629947060216177614157582756047135519609982918340396971851276172555642565299829231037678615983357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "29642340062661090251839806469838841562918871421081107804148477693277641389892484385397527986305027489270096825581866910405802876725170227776784519914237063806945826927855614211233462046464940227133346270505457865265997668604445298397219918413929862542357890244602022640715081694872648854430701525911118485524002273100186022730151756838921503266940372236564371029249642250327218698626155387026819230475012077969705184804173201057201270325698584471727007632833195273137774786093314099547258566210995327536280421816942080447710262007287195378516010184307107683901398834140693978334084155777650733184704738439870563031419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23837339445355346169765977992227906327126417449479768097545216247618363849425340327560758728913699486300571474970841171994643939419474658965911629691187904273454678434399790809470960334419976881637330775628680324638391768421259931300276431680691017674518288064682989824051958624772683377033551951958710574310898811338050366175559157827445183715485323791554534351606527627223144247021202896344806781045548677812650238969488834642033339249675768129070188699392689379632229153187784515431222553421958261441522165189347054039009053662032397938397269628825161016298918926827515421480006699103446215869489577626330483167049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "29799912498259358899758528383196736297133405678216208151254607187177583447772254719424482281523467216222221670467309194702832680158376223306129681041037238313985961412530749208894863240934472886962114372137170923779145788971418903701577498204523680783718274320779114535818045471582236229401883490965724215945197181798082773459474011027068800753913472394516740871948064140261926393384951640042010478083083152813465819308948074237699124759963936476587342955718757306028335856848000475205085811825495118848149611115093396160584680105913854984874085761057428168419346207641437431241048261755710083374422494043727131960319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23244821626791763518118069909281728787501631811018396590695568490383307253464405270448412931625157078555253919798786837777289895213326218715886513626693374948428944488004168934908969192288576926108622555324333334943890814366266943974522456631840279316743102206886580078936522595108786597584668555342375089352457258109475540415524663388362129459634080358055871519888415936037832016069495399909707347847328625953246718616672854163721225854973000412213055426695944131417627894010589248130205898256380546061638749940614819911880374391284425156017574073264907149820538364689946427394804719658003610871247893462024547208587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23685125914501230720885577509408546692068189630732852725445952375126853220526964589747524651357549476701163322241356623324355250207345354102144718627848156001923095472776201504055731013913521719076151814975729966936990322757131923588697423028398982134694878532028589401845028181864609153618793762025277253207549914391632949935415794976713736314361327211386990074748909404921590869605549526952876473277904883179202757034278008901365949444931043639731395385116796449084388881824242773690480400742578695254988807989115853237455094046636922956011273211699794757508651394444882883808811560093559153480310133943114236488813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "26970905804648604123163054805433660406547812458547593066260888427569324916307614683032049724932857715629134069295443070410803680752652695797602556519198766753105905813635154060443796951327314549167343070181916805440003588923578655188964103152450850865143142218094252372304368189206896106603475694158307439254304936804077618049025846250622444609262914129986744409110875706454982460732373346588381578666107810618681768900799398892383287806298621898972828105721465427277058289461615524579726024328681154063496583199463679970220538570841098519393323443491037435837467115635579061817460361571885707948762037348924764980291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "22716918330376291289910696997007808983880265724442833535046422902260681545891244523245678887529074583854901313559587576112637657939943728021832603332925750963576001378776028395202264202420941354091221574678220746302909596089159172436054117106424823202228100573916946980451536009031644255734659277910739626189100257473983347354877349565784525571969164520320834931334527851431739183065402333654886237203691246096468958494905588832918959894303260714536622438444482743773504732514101737800480830960399654016453268048273078390789150493650818211199333517555637283541617978803626373045599949806047925291796696661136010776611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23652344154416102009848261426335022813562584397064755945926726732881346032481160647677131605405843409158067985569465385350301847392269955264205253720894542739031674198052997522751521079609637180556683606939273038822833340822452262840103144682764417270441311754481278059482119132414617669627469976273619025027885878796943011732985384940878705972225952583050757969313703716334549757260734608566520190404411867160920566294435027168030548580567116991991512082503078339684076987676497694444071035081361072048054106520108872171305435688004457153868386424415507869409316780391152145894190239090034340351236975257460759534519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "30737214532758566117086087928302990250474136827668574122421102625805553902179213318968289772459302795671696260747931985128711906133023734093893201311825216484390525611641354900300941706123843759914057910379252053092980040326631938409410176494452926147507169951893873502464411108888524407213549383409364196864906958240682175209114455001932407980095899560097328402258237333721468334761542045613716428118299775473168344592806311998016761040765231675043599013614077934278569261718800885160611998636450402884910641780208108507885024832377604904189576085402648234748147636602779114237253174248418544391703697724664536712959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "25739135801046782310002170961975384734231179585691292698769330233933901976376344994775014913919382534618674937455155566463369492658243045550126445803618845242433150526549093155634164422897012876081690962589871961948540813809452014056536995610586497788607128371234339538059576232076730667648735078918325306159175854540655781460086473553754055764130526555712131565518960913733200824487619055178641929653096857057492754762047514212089448243834495806000165758501035168961568710265872651069597931688085000255056447357787439983102090041946210758259648237357868360136948164831275224218051140521783875017364104541471835602559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23534293561967486415189624795132500403983619262991972490721856233552860806430296433169021072422514891003430121281021513924907693053948881968362059121198856925306571369881506610349794556293413302061916123263133730349744279287860446428770287216188767131087027877480457225754216683018292117920341451986393499176728582186883219066126958910666602172156193346118232816914402019085049535915758803368789638827616467167871025944284927436837481009062300513517074741253295028077556252829541521393344559210041024652931521427019890224612729344347919591753500322159992672207129779404231221399270545834498172513160251126736936214907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "24122203543869385174003520924116520888830930304738211037287087139168690810285870271319626184428105937192560823009832913126681651500801356404861848299458816369619687224331822639794330641863074237544586643685605969133386079987972368047202513341397187209452585523958576996844714957272144807414489034011107975702516095298072737729478274803563803914100548659605980414130279390070650528836368396428659949330058865051090793296368394312922113103209335747585590885114387548663573733289691077261206824305208581969190632981116610233561228322471011228806260788770119017333296446061579316842181612706976303111959026171356713599427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "29203601768684383329843325814181353122586214696646300664754229803773666060680504074545544661657879978240712621571786445368713401097458524169765465049642260973747117495813851167276712481863451754885697151274097452589760276308657722661836530879768084838484991945596147999136761232344821527811200108415233711498245792832403687484226888351409311486934909080481326027213162845893363832447263716886374858211120675112778556234174552940953316015246507336734823603541156167340394151314725021620014970770852090894227364616941578596598812455661140096716064576539563915560710279975066038802031229413961097025452456379389361438853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "23843866594163051257509820279220985480955969772449867760172830805308066041993820782436210870119454653241149064324610819734591645817564855808068344562622965577620836029858124785690310765340076919319777054498479733377375729915612390614979365186857854041626999809629392757713936214674573925005079297173915558844380337172325332182175730373063618054909152441717986858061006570741238467558716076210070607633243729437318360648001878822042126622398070587417608275742169159617093823245132898366684608250259139897310458582038784613433221891432963516634847343514023200821080305469445224506988579020767316639074397147554181784289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "24133526219234324352716460322591289617365412393305092761417314217316379758990680220176164233996923733542861613152354238538325671434814682515233382608906653780671765461394798071471128434564251051471666047965359562609003559936717084831524665310835202986611831770995272379491355680040398687509812772271026965622886975188127507087448303854672438877875860148575326154681568185367523604426196088630832926953421050356930723429693717531133652517436451488498428472323982461540060511921236331141344257301070098202859793601384598030755272205972785620015516843276892282741663345301467358790359578878760731973458752756442818019777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "26310164624753820387637874156959063554469162465328668995988818457329361920575604014199226018962929051736778255167932514063072982587691401610973443414977191468895798196176643434790444819564578546108359555425321132162105276735684808523140263207595584258893480877146124715558277033795911442416166905460171123710059384235272372424292005439142120387824056789816531831554502596251482362543750799785292487147557286413023361741503367956082890859475112329373798349914486685803006628954539222837755813327618279637550686435077047528520981071405184782969769923535947218610874181465333014713469903172733362257902417356632158603897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "29689788245321680957685131556489940731633174629270824535156248949729618459733908278194673841846126720816076570060869104303027484521532567233198666845157532351990154469275445735328457419194807918314813279823014626541523497303137203071203422913784556534063424329837674230498215611558228752481297797246995410652114239341051095724009997056115681092798533750863276680164077237140619589496103769489909251496679081512220014611318359774991381129235250716607619875930603147421515406718648321688969953636110719491922077208986229251598780848715643813011425430373407396513172692525905980228975915474800481920240185108342020079329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "25616533938029928953315058915239590705165367237065959515689965874241859636652281356277933393095362180540569714769844534554848948187585780380830670613863979912206364894419980145200400519186789622082565174223374969777099402996086979940251662265047887683690374024898903203176345705627153973633155680569219339330798248324711210257542300434784356780141567582443462590952348480751028967186946506258523879238892463943102320198783383344296667759044328309781551816163174550118921748203797634598179717885916949948671226551815972422421043949612286143499457399517524830757539521940293145732225654166009248574929250455461334329801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha1WithRSAEncryption", + "issuer": "C = IT, O = MINISTERO DELL'INTERNO, OU = PE, CN = CERTIFICATION AUTHORITY 01", + "modulus": "25735825835218783297691386641178923820015983966828588387697244384747474103439031700884369607627427627749026141499370853378764249156661188624245113600288495828556258641176357826128785115362594317339915876004471220498443837341256622950633619201270507107250580749903070908727922366861636709773151368478522230236556775912887219778053129809453834236510701193015050817055279510479948740017611608582946918488691737472037078575173422646224538148682238818866638360524019432528328179912843500878215657520461949620077923743680184159449708748735464162631324862818226072483735052911438143015091538195795971351238920216435941119261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "25410877404894850457598456677845626451844374211826198292397791865986773614177566896934703770827236023832653545602846926952816068074951943471619031226130575867435838104023687672360599589559936771597765679833369266569646915056954126094761805666487465671736075199381387486453138526796463618544174593699291029321331524726112907271230455451658114496838747832590242898696274535580808245370367000140484329181431562743261222984958695799555821861254587365045536754335456126791913413561406534916318451173459592230176461387421017381015732117196294163482181413783517134975732246316515800685502429321681459075358318227912997754263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23984193673352454479677128053718013277546738051820170745103647843334904925198264405013726441562014787101350270092005755688465898837080112567057780138396524520183807142529429623595873807620923958315276185184925131304567471055017711652804982411935328198128100708932633442652610441514040504251137589504884366676765035245124705325987479799524495479312874123882782048499725162845265184485233355783423115453100130719328081189029730726850206277675806987614756998052302857034484253832236545619679217669402949648289224166312562990541050081618669709484014432925921258266111696835889317479330467500146250690077850542800398831131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "27258826562043534767439224594115030649830091826309784039018470868373262336650228993709630486505182412118425168228548682319533764971052572703349558310667414857073549814150808560465147694438658196759644108029310379488767594472599194268784385514613191000152687263374801677844246432449555346466843577444657408408078430115193588869048195568411464983387017210722231628087508624690015941114212237110398630949737628077359313700386645599460004097801107637063914674815981692865528173106816853069993187298348940607310445111090596693023096855241187414713336104002127630149351586928071559959745436357742453502840163626363413319489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23061438138700652843362001778055777660424625826367491782267927240242810298624614215294033742847452900665522537555279600299338187541484765026149060775178335407868306155778925120904252292304900993412777165266433631042569066440736821720516656147250568566110845601541259247521158967646840373222016749656243008861564961090070347355863526738966581265684527147496379562284384227030098382557919766138789253468488513855881642855889580018900600106561780970621970300975703139387429449394507120087415934714076776434823848801107622193624456270791268014281238603572283175549423849720976006707271422011670131803855128598190718556659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "24715555882592650012834430317913875229773912425004421338571933736636083054242953480021591642788744944058063285107783344471073902104045735855270480225847702404754202550058614994386358242393875491869639925351640719190286308633474939413845746104089541673377501582339849192100893391163920327366014867454375073472117019138181033489625634637708919566988882549186673340151200106816969240234736996424929578401237547383271828284930667523793241760858116620581013267642359116673435864722551854115560495635707518868374896483224840359699566016312984034590598576332335403489835809280892367309456670043280890141197461594027261605527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "30254301824461963463306909775027640646604565674464532297928923409576060126112033043195679536446648374047705236217616010420905466900920935017905792122765703008829952940640376192168918178262848397616746961193525170574909289374264898046847866695409113576984880410923037394027001532419825306123446689941493119062090799592235882309149984605334574434984031290450930843539633166765982162163956037189237883723684959902679790074565197553211011880391298374510803161030227476944477769371989145943147568579113243393006218549729101226643102979447434716732406036736942191211038586474087258364627399847207155029776768637822372459469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "26127010670592100329079530031945772473450008023464488825461771253161095117892429250811874562546930965170985779627589833541410277438972799784297090913296755855846786639656358447352034757381068062975324379594992202922340560154834318983352655166659019552922171370032259605162437818377163604867820257531689797220743510692144385898737137076301115927727748794244071006650177328358314066646274701845812945825491794961040067043356328244404538370480995787401807335393506396664458729140273417807837790821183933599414809098383337132688797265546589966345214534235213176347985230467988929418907157835484431415271312896650341507793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25850302450315249842493149933473908", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22603375134403409336391887439587511", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "24738362458497411430631815714334154077626438512835059532827177155397591437525960689823531141770005902936191219228517659888139719754373844106745120105096998128216771859089976099538621970267873092606386824189023404850343878946417339691835441353985945503044348401910764798518133990275357689821960038082240050392701538150158356198490219659474663838551987287690742584282116008431898073332353862363386336558102870911742988864239325925238758092770217537063501271968728816587188382141492663060439845593475894059756501833821458280913388956111088551639553136889067147792295092684051744265818676610733669708151690503136128878379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "23081271411673963005501327106712142115370708400397975532199444697529825114980269590695964185887559527654116287151886215202378577384038820997893685839142184915656507869920793133409592317456820865496870480375595796452090552062648088763346932066796997483175158518054770154612714991075203821396314669779059624042786405926336962620385676551082624431560673322131349241889923280420440251329890996576201565174229236938663621313723866988936492798044715638080337635211539665774514511945549284490124027861593288778155575308326553674121918946704132267374483417126019076639946062998762914350205519769114297049902579149024605235969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "26054044291045360611133025424636729220147715057454585112602416772006061664261656195277990773631488831347149128010198140946342535294132167740884884239425063324999020318821874469078349850358645842417720063457212769921521375311405531417285026346057390790685019552447831808528204290111233279580961086109425018779807658366080934431655012117526066659612114391181534358359744472206071738546264796448945180033004614634147009347248462839710087544932303964919423169957629127393535259801464469536164211066990204338225449571672366330151366041705292944424615467980907414588557462973201649943551226770417728210966782445542372961621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19175049616417089243990103160992245930654553946038047086498131899011659914409585079151240753335590501436079735877552270144860875621169877877941713988421884581013925022935907227903793057809156476041323378376087554571990855136008098852157817152389787256173755670812101833729900271773425378685309552588262349597871245126164431372513735569803384191675641396326165968833264552819118349481384354169210724931159859625066139707256731298894493391123164304037619068399058708316624905894232033791858656686394528328431122980967422351142123902252192926171752788988487261702575215966734958565857298433036849068044980718056295836683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19739351174435889973667399557081015153466818870284188043316984779103160953633661121959260301552091629318057321030371274146705348550903474093063579425490326950743124873009211888113875022408029411574471786535631617719861477935482071542246703918966284117386705240817470338569858187475027597528387647430297344868484375018834388150901398952483880247939578708559678940732931841210371024467643528030969852436399015497038724828996998969108724929429874005805118130631917303193394145759167575461154570996339089302052731421006389767083411159082437637319379384262466967173506815083141355931589037641576766156137521944418046784949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25995021367746620091134949131864392298957791779905119382721714254924117640534663177373351321036880033313014860156952528437832000603263623865446531370174771844979514005367856881472511669617036242517093980991965846626853660535175188827902204547994023108462843507798053982340520547084872860434136454680203609958795841420048005719520950940586790971091410327725758285006018507536872296214928382915236723258114063193988387776137151359032108055884486051661365673501178571597051762722906585989281429829176591046213153378680987828849506389872263028592140581669786116512597983904122839245731042106472817056786444044746654443227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22913878257164208700133479981293649906578541266573019700069578546784011554704075098250423941710109420046529243861607378172502943698556952315955210464070981564413960014535404018095862446627847850978682752784362566349017945258613127786297334856653891814230339167622076113052231294107638296195555253478233815381546142147063577555762540223029018140274508629384894096132111816486279892674861583348716118823492885760872110907231998674161888296473000585724521091293191499566085257087341766187732685345856104397518000545519197634648705098521346678656306809194271635237228297787129819833567928415378486848680256418362536497461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "18494572000262140274128338287840932044649208826622176424585738654386635562571311077483874514690851400418189864309090616680208760257388280977752594400831463525292355943977446189090365066275995611465078669225734742581824336998048081593040695839338813116485453914480188879384284547957945882066356015373485445091938361948740700914913162216664407146221351977765907646533952724984528260423841646356747951986262899426908654500299439886495599108264529118189874725883096516335309212172448210478678205757591698451439485251325803091550069278245842454316904930169710361632969691550289179063958626109408325963792924081999436031959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "20989255898282807698127244951704922646542405688411657582586400698413723172515487907278624611564885898834119925983416961307856827325882354535374794951605693220402203445109888376399432148741104235111943854085752415115289325647842814538390716505081282847500334761121169267275673328649999441960872693135020010757545956555199047107461801692806314551788537254796080895660514440166849245146839403014027550926407015464848266138091614729010280175996884041924556410162458969853703887031621284138636296843440209119463125565618936589933746453983868735989386392291927409154092765526503751812077802080168903379617532515400587219791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "18633642166894441288216762003636462654363199581672395650254510766884310532706413007493159805391474005402343261184226476007957546594984626958929864094263348884200556495921310877749534540209207125955811562490904686615774430730316530527901497671462262415655598425328229291943270822681217362893840800747439328133088186006379707462860005126297710803722956216189929412634590422933763973341625252974777517641419104400824168264499065616623530390159795962879175626197043658333647751199100043321049929359812174457266394244339424858926495435310654840326784052489867370867464084073519692076969510702452749161078328968988791598879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "875040488476109116934662907446881735178306457346352201020601507456577172912467761874243220960502400413056928488934982930500923776453322777752254100193029483140074862630213123263563913507460555697764774896954275338684015486886174172900113946559149310081604611767234675892793986296325976713938182733955690943022903312101174743283066187565155819367905772655289015980777178668460137414552971870572932528677536044675169549600770721154605514042328244585164500574868167339883915614328823296628660782899328463957577659302300301880098401703778424677223409899428468391859666230679037720540902751249459491250451670597623983286347342369164508304079991372661062236258099499334613979218208286952647148953245557540413163082651438692171394294485801812733664695184074077843376247826782654108405990363109224402481748652582135715075398040001692309072613037932617696907338561536698627514013578344183965473754201049947415807029260264894984946671573053709153802226668864964668475369801812331192436378681756506408090075458918154365399734659222109676051085937413012770634108118616855691044347635897462865571713494606150636498876076138935693218085423435475522323019146624315133367860170268885370950812465297444794559995375694469110167429982058851458134065133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "26522901808746753711122364207264916676423567886570721143133906612686276681839548965960698417027819516979547869919887120411028269437494451396472247610785685118720488112643715234770855882895857278374281343877262058100443672822061987658706247336518556774376536436432142814175943445910764380399795514107864695629354459398520624424102636151592695162297299587588025873617334491605660439248620631999438044190869684320739458501821467595229573822288729522064276229444845869550913363580396319603312322099438972304046465695097748086944372148633011515583047654090628716731875579402338908354936370985678602186503964654981858715677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26745277005964681169136858310490049531705277884295374586724037186866096500477492152325943502731304014523708447326835460301213732746560384099368585618804410985429113593806768652631473732100992282647603462192552157191631684415389703390022645244756178222485335029256708562326021596842305991176412340419263060406429039018731633214879393634988302017130633038131591684856849552665503343530147488423745493634757126126982960509266125839469527813729461020698183883127480009499983413921541538765568928644221593577640977029285669764429793821969872743076864911591988875065922567206251231550105130889383087352943398511325266693363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23637698738537619871638874915212729429634736099532079831030479324069875817190098698804867739118549125133363126843955183002558674854703281071479608618055056298162196066563281637191009478185223279898804694444307533639116971498993808201639517319078807605365771315799323347153553040230880199841310049724303304619945752993270745283719527313883110995214351584616688775535080793340986746631947243856911789398404399676465896835878333501934176407743785070912681892770233274708973240360445368591331110784974643168274004966144974529362042875929111811854633115681978204703364149131035830291714919437175999255451502341825783807679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21521920153229223888675484987927687012687152205009710886901168908125781505106712675743657707923322251488382184598222763207747713569108251334189448298573100227826969828481799958000301579567809601176522453655936788743129176647907649760702167352811666151795254872581961582533185268429453481832633411436331270761776315394937678401159672277971943919087254223567494750241650615780578366628726468899074503944224248885724575179845903565561614235469736718184723370172939718667257695834967222940428768609085878975026856356783193501584796275698091418663185065026810698973371047226162773812825679020302239031501438339053102091801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23874423335907035841739441630552402161732073729309821471964798799951446693377973538255856879033365883486860574857589227112855297052053599772572735795501160621461672511478313976119449831302113946646842894337875983726763192174806227971104997051717048000670674899076440521259307951284046140590133604984051524822614214156076608533593351144259894902213753945922410628059816446701495553999415815728531579501056374957161377847417589604178409782193691880776937227619454309619132589971506709654244809578590190922559288787268650084939772054278556368808624789664750726637587049458104865537060325246887545137032633216259888317673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24370299757145855481408329696864688905818328649114488089893721438335296933962614518065589226008259662523179225478588514951664141617379421498854349693963241816440807332024623469476349577993679114672000458537343891402839422724593099936099386054879845932730201632686255446090261109454221521418037151565777393187377076408562886154041872814036024752910713734888419653357401275784588824602750202530245035498198854577267288250618184722551834374874872857049444674251314063993332059662835372325752170983403965640076270669633840693174646314791072316485760571395717415718906621963069621506981932127069560726985598363346901387531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "20859535030290712811279186849561609866960672773956661883792770568171077982033118471355112358360291037392056239903994940301884640741053892778067458760476221911370018720035853522442873461592239632179941048847823984246564310867116069470662488790957903653268820066620324220639377122074299297381211351543910126397533284932628369700232226518604128009648726345309742660860365957616885397194223811347621438671271017752943704036059670094058851753414898148144322467201470070898501961679942831843806771747533149267186046393734163651503787243327562100697260776957772359558025278838624464413344202065508558155324640565530521036321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23447166969250972011127534533398377955342398035685205687845210748884696237846668153196935199360485694421132240590243753562117554153886783838603685481607951320225935447174990275613621654825647306338749058357283696786434165428774133529862980223058613181448641557844022500713775416474280990506563070537067127425397581945680605121982157753617199648690280158289806795506165292840229671074773298668114637853082712661185803808240154981530248116889152912495989940830169447949139091554359580143982194296588746813391858760894729934073955450956231661740468427231656581439361561121787813224223948459045347684863918984361433452069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "30187675028971463387329437851830323719328522241238210465089459739441366721039823563763978530575821352600468663535419915921583857306661344057582957982979398745583795922454024549809545285393660565828537933495426692021416905876197547915046877931442758601053973837172792353118090239971515031245718544480418143150513603919353201682728486474435396511803599393752602750100547697954253588563856970059463837215793753099084997270204061375149108451863630506258780144255923196746916322364736701842797304950331237711738593175731058595621413659461438717523826579364553805024832498864775998620044281082921381786417194235633290535463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23267720735402480643112067112365761", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24944228199351667945588247430033873282228602804772553472245750463642967003294202282007266761972333589495443082498439324491321545433946878941461808576409849496996756948335002645504583834247115141712945803576812903782303379703448166963240188492910770812875857282538633882963504606608523708371676021853430238682533279445348354658424666557884574320083504976084746028969339549200316169726528583145297608386701793106962070442690695828239712050489739485128720795719280487312229795161414736658098195744235678855423746739736520952059591512556146314057422590948053487902102964862346377477509590917265689541886677000611277517501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20712064111824130109249769940977463590064847138428238282080544749480834236239849031839617671716271950964570206744994950883189279835303884472860103948670582855127196786200067697113211021426807089691959175024614241884097406216065508296486475373911257305224128905970874015506993947914287089924491596620876427790905743053185370126067766522968934326893468900647473713240710696159517314565402785665878863607060625185737307582166667877254311715619834495826318831367419385996379930405435449800551819898544063964832651617231748082374186377845532542314661457567044130365140567141862812513447046760658841336108236805678767369147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21617724675916390771582394011022222438208692546126024578760480634689866131540875416925379770364563448678532591516076022099279486951315230524159042294609742770816287616883732252269556308526765959389923897253566508347783379871765182344660464558317778530602125269502252422828071106748165334903083613727371700824865931979867744519235664500365125175818493630085405923812993740188945321005596861041351893793713152207383611529531361376977813821988047129521093497113697374670235918353424109126470370348929043113964976677588699681481282637678167697641554303051980925690319011754634231487030134318693038667980453534680379170393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23964437327659660967941557458295191", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22501770777843739331374916436185582", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24010498255693987270820199284617021", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21975066283031617248073161989825406", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21539317449651896660313248779398493", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23425825656853093073887001984597693", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "26334003018434004533990616920399892303784007835110707951690870603991506299538097505881717467861252040412984326476647928172274784346739343451478986781679559736011402818391414820137179475669590212300883253192713978311781568403671315013939275737729601063183404530389645754581639848473895844095508094821489639428480134199843679515117628056128253463328248230944257516160007339451854300379391436582659011237877760358305243537778035506303251481813180988452754586811057249169195099470361309222660902251040183003757438644874641239001732922851350394131269555552446960564032620113572720656672793883975059985720036798940555935197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22155928076514395352442340312543982", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21449195199035309718313579518838201", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24654152302299409701037650611435650635793808791968381141220585377642363926878394788253335766667483866296756958032178588569489420724722645173383571080197891331529170466628662448686009217608003144425527136898075108685773468321732232602046523730879030830567015946780415701835672329033778431141359293137374296525569300403310853787461539611520109335119575908855722620320300750491159130260825947776843620347126441147397565096844683119352427184794104944329411189945352800627676609991708042976596618265051101014801340005962714478819956727871253232790404279212924917465298666553429148647800763493727200629847854894826395827463", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23046613700439163739661080586971154391904934121015037403510403630818567243821365895265727153290346927653882071180711917311430574411163187979167786240045351303225799415508186136824846696481982477969781828185681292017122394459096343117086140945179282976787536297803386747862721168773728127552486500226881186001467124167493536531334507014461942025539464515389711250208245330933818506209072855997877369151616506347451213616296421186202105628760928458812553707088274938671183502280263403982531668494513637098709045155555380206243646049872646622463413520674113341763261490524672908203650704341529965340082053687584885265613", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "28355404436430983039448096587483300030917397883556784464933641111452473156249667408764691957965916760896352010163944952743795797546298420161678680185028903660967731927454131852417283590707757560618668514014024122384511475946262070076791617418063823258233421065882648269617381009282310980010685925072110672446743050364299655325337979413888880919373827748838815272118730738879014538533471746279919290183685365668253320038755482623106973646866962647555670655880152220709721569798577677822670151898468623409016637698771999682412266419393099009382535442879071803399605878081329122498535468995969620980410988869687142681459", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20922443542503318235341649279202263673666090732498642878652447787816181358533084197759471551821621530719836051795687700718971103041684087666038185812700626838933262672777630192868202772441508066557902133149661419935474205051549045645739676692358229557707106765585039301716520100516032879108574219598817127328048773505955194639268011304884635372864842633843960565835048289359903037035862758455183758749149939292087273541049281616979382591304177466358435261764027072080177599021088045600418628392115669392795002003717838028559507827573983871506393428506183125341903407858153247880605092398435229343985209131690157121401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2020", + "modulus": "24998822074511177939033274624301958291827647483879656587199535635928771199026569168607121480475603369019551123502311756561331832251276615922207150817998538161397257222635107711891116995371853594150903081227859193153729221581929351256631382988671638847908259237285769556397042088108047067131847965344382512048997448396361379405277607701735552594807773439201463093527289416412685427474739609523413493171106161052840572161954391644044694522238562866054021630293221806657845306657524299426722705849223998641560347004908894079945363655312548162128320552944027173587176458870556318918508502804288562697282188213871162427311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = HU, O = GOV, OU = CRO, CN = CSCA-HUNGARY 2020", + "modulus": "27513197133801066427760486567994617946822710917367453288476278724931131901146367476314465700010049280210702594023034086667961547632063624307383506856271482712295317529321431437711813173315798657164312959062245900324112753803552929676288808698558952500100729326534295513503426456110849807813302577240045846562736522118475112542586479845156433197777861672733316301810378374139649535935819086344671341715638536192751611549566871431271380978990365505262339766384786036197816684226789358110882800455302650420543692419507750637879334276624106992497127086587210207939217633724260035998140843403542329368010708042749468211419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "24258497355691172461560766765207276282990724247468945279774431722605392767475664987074992959184864859535284148745429149171051143854298166025743246293334174763486671101025268893455632215105808264817331662615751653882255041372948124005736857718012986159480272744978807798782995249933141843414147823293552061883063834295864563516084343220466728761863777369129042676778957085618882992338397298657338880007615624483569079749213329860171234539476991861793288824900397721538809148920299014972063629939982363709515335190835771178445193848303284230629312524259798317488309103638838351498671263032396877066889460445554726628331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23440887808400778568967785664446945747681244018562852830353583474367616037393855797240322626271472305703051443139571575562613673345359575227123517679572486116567188839318311648474199930563369354116918395586944500693040582514165729223520591013942659959364519117129722112197599825854027707593139266951429750617125821756959221827525554718353464864299467117312650909905257613880775396705159742602604573702687592285964486112365041428865380865004443033632595240401975218285894780026344313868784139527417043262593752049096755922901822400321408548762470562198398154521904452702311594948746352422569178806392694924170299038983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29185253238737858852915368078586990692184645943420863847520492092278883063412866881422429912085879260355660770458835633067374357301171964216885668964966300879779955569706833166132402409225196024917727011012247092626738554070157095299624329545090812651775937074425571465241636049272905636245242855241529165212389474280360314599954066099120910652007952080679915824705894111457737358462944896172377570235211039119514308892935539314321073915290854189154968798684896322383130414395878773091282311732287084952505151573926202397570419165902024456603546307619347698987671171549284956428627923141102023403461284965720140134947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26900976343606662772749606534125970333177279443922215928260896263521441971535639046282915164303259479591673844792529141030778748878499119146456284093491022816867818432740828295532646026282667150521357711546170368763655228447805587779235788368568292272641230919577373396601024600678979112446034778366251391499779362966425782583740089670715819339844984974522586746696715269570847790249923357858770763463224925144374096078844238083929183692392482848665305243489727822307318751014842429051044716769536595591190040323745594397230630107241530114199989468273300855835710039454012937297799036794772869966457945969758037180383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25710332036690129797883133719796178707530593588515380937595181400912202330747865706639750085358219879280781138234247542828715929649651156959923621422959321119469524448017905907174252375836677613572509077574518362202097815538849476657409178518402882346848488019564359275090286532834653310802566428502296640398612617432607200507199869553721030703376791156209226059785612455212381143268439820961957180642837438141595386813911505425129923643197974317995133764602191614492162318538508256945547317858716958359224315397499272535851201440715417844125150134999524280597600832627800191931777095912634887732518183628760166133169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28348467446341434649294328411683824466926390529115659351783414973582917262648504765252965874298913741715120671120361312336003504722932902279709918415994949215261309456481144386752807945763970537150813874206743181269117731040258213401738357372227501798722177505944467105099911971096459360239202975989984263140790425805140602932352990919041260852082212286671784023471384872361487532015360301591303450410601552362968246774283078816329783132723697428937377442810757553039695923994075308493383006077452289701144063910370669685105970902233720992227864395933435152014092119403361902568239985886862899791837085940545834245883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22598117741356570269284775070718264928947049821619285474544735389353485223373525763397349270821312406642759380538756827137327740872154062370833130054304437799895242935713693637126907261583434377242536309664380191649083450508990250530153954836734060043756364469668506526193140196703812363991865084844260109589789521354370852444711371135418252058779545018457006383116722753756220210884344314828675647434538897090348612303038404466361270580352347447250324093841421118852209064631269290307043305802790254251221992325277249724725974182690678204506142937125189128452630625071923043667206733723972643841857679970780527107473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27815718620753203160882713743589269371728486832387688501702738720537004148429122517090220831347647232576716321537210305068172265981410789720300218679278722403880022302241038648820731726724004692545315449033088112011871951178325000396792923271246796229516510434789903165888708876505902550920465321494137112663126825717849540072562628716765625334381719892780724783787003402543794288110724900284209676510215882000938631315929967852918563217725630474250300133275684295189261820466355922730219158810468031892297137086153477030827774644543946264958016050784210291121551885414361156034333688376464896263268208240268627042167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "659751385708496817878546293832712122646347701339149081530602023276399119912774386364998993896462219209156336866407221639735220408493908509841569586111059468264039472685931230659218280832905245761993709726373758640091354025540123670436178142639477538177283831163531127054636539499911803892146511599307956253033545480168890198783012390733573089043876297304672283153455543620038051932311686445903581954466914703172968150604529848424243661062951028752290448185201788747825521266734397233426551614229521320552094535087287165809642432693154816421772664604854833538039077691579400513349635581165543604606579790902101276672458111275839842927965694463825153137617179143607538769458110663207904919424199343407122396930005091100175400975088897276474871520219381468044300969734275796487764959139321259353754138333648951245242297248063536601039765478363293580253924935812058493417791601642208872930870358637211506487119397739192491097950380168294861079048486643623914777481267617990046028250359364313648669439477843539633668783539408044002860565186891544335714566982025139748161823701516000977436524150634910934303562136324319146232485331951529347622734386889080202405313142248970324724248053546163686296847794087866266316048440351035428037969127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "701940114360619312560663688444682893263483288573367825545171346807203819342303770498416312790739645460385358166593978847075809489037969566801625140136451786179714176788176541052847258170977024574283952946000140336953966453307985794771643575042750095518585673582861036851701915633622936229511948088669573651124467000284794684623155806294733207657492779744233151335087348390573083351110418502326851836569947774713379333268534091481242969782231072985386548838236271257333996704920734692794579139560087098731539694341231457794356848407395989691050097310730276135690112142300514061690504957616322449857762977638854540968778969553026098940998182995450797414501594041829054986979436911507695009591258069565520538621796920425596471414467381434791099293489075032238602013424083788615491041220386160676773305859554674140964521148633503079849116438108038015275537378364928563606542016242850563709162647858254621426789082583883834993356759505179084249971262436889663920178587466734917967930885645218471306160863384029863049705466741435940878346508399539769464615972708783607851493525852240479006695913155547254036954955038314468847177216780279635247185726356874661808306300299694530689719425050364250375113318811794343913831623674575380192808427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24263639342901046902017665993007852172144227849862470166020490650972340611161482278192392659774405883586233747637535129422116102577884136548790710326881678048936866989485679725220956903755068766390744908831482047963151924850504007232094403990906438302662670187328204184326537131023658904550557432236286615849214986121269350162581367704995388873792917201470092039366424639761064580213239692695301213457848224053224238890211208956607252863981725373475121934039310694314428955061820042042063182863067382159849681359655226780325099617504931407489428002212632012671472252803796550992952525469408232908231535653624326816213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "26217136095273088068183212177357866925062919953518691136301822473513789193550604394824177972060754581801347909144652685271460243698426001622894313365145148325831971248067458673592601473522457934549997020142166198170141766464542953030931794225306058794610138947611003172330735566235206483771388259884110453684189476928567936360437661741384700967609516422660167938695416619044304387847168039084542987399309507285246598557925696654575638660454606906531595307345847945552834495152465895789155146710441662800777205663708264545969372162311558357659324819212720870545345425510027974768953029591136617124412508980946778051211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23111783079725426536453079658474936", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22456156492912499141266056929729400", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25738104256030137814387337346082171492786722127847626429718194840823204871382729504583367015606352631153890242213441948765578428719422134212509474038164634499208680582073518768217405731955906270400828935234366861528153562316969103470461672639774834336673811492293282036268074638640092742847666564996138918517735467520327430466090390801108888941992344740655568906144929430857106716136116315023110141485280850775209261136449685601069758582038063616276281019522066648424512493714530929764589365085364781916947626613695739479500436901109287735628772989383746696850416894983499570315902099332521189266674987248762476566889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18981065505932943564743574617502855805235335888991740846670827627431561232211210143177514624955358338416544236213618677717732650433683966612177545626996438745894008950657946646575039234396239766112748253134704011273932950881432380716121759891795646329159471128026161573008246572744320568906144568830970751124622042903251856726579611789482959858450349264797041471023701430215583047784406336102956580018026071255912358815566692064983093666012851869386437803906377811073824676775489735160686743837802479853857218970940244657634190102482394656230445602139295990333863132629861341721567886513885201153713749028947822200413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17559663132007873208475295463672451563825694695136429648489785120482755947699616697552521427367247543987105714786665599658810669204057687244399094955814754051666556159429296936145864293046302006991151090238834366992610852012756049877035000007070644949106557343123231506550893306496731091227274826705480977566987627475352652770932711642496849000660244261693325247998943751459474429862439899169873287886571969307062086457564644303317810291200161380143204453997054759693428879559980150315440008215571853687878916806392241254361217894660167691433024220189757235060080124245804958065129423300372235468551499112668807829833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19434393028555144338701944447369383403212268702138844482358914755849724542104417527217645128359916343935632322067203171681130000796564820026605594782656510883225495468121065772845971845711805548033869205031692696962171253378685830934519992745579654458214060011925504906321784390338794493088277853197042182546853377162091884559784907492533084173466628046649778459748846435141559611866430536265053321309998724488510504159280260137052620711262966300614211001036530337850714685200956515235222303415310147789591746523766844083808735217472876829080131208794881474221221027185314809664160293310807123825155563175740616351853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19372066008716562605418159265964345176985712315549455896792848391884421709963060109044590919786125400527880498176579456005924951463521116269549980711198736821189152513241406147682777958232006862375543893821008249180393390322785678975611230980063606842903057041579947124746120235284303942164661703186753023441204923040776578368162132921891543175492193853001656883924227112008411174279611023578960032578978413771344577864969628032652871991646281628558275397117141764447662916344446220686797351748377590969586974994650098398182894304013078252293488749239843760633355177854375972335142806788898376452249542361221477989973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19134175791326806128054937247476418502879665466481643976249233130422346180483765914219065154705869417499904799907844550446238962483761621362936062626548068190058588446960467472259903522304527868921222155367529386319640287615343647363269699162533580403155664784386136076071207098852895678408298144198495692941543895373896116935831736454800458498932846429452097115987009904509197303743795665461203314145851769007026734264468763861016632533180416327484951145988278726177173717794399350122442456172846207898837093703883540846833847042711447454753609937900882678527446932231465988942304766656707617538725058345239045358561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19279207682771568895714766517377354807803408415063598462896673195022244532142139925920540096037653724367275654059805444056967534721659382286587611265225064314877814309197539872998580314818862760117512839455976716108745933614773083657658012005087871084314219278616435002619660975115242127690927020225806804432377046568255619260775770005015090288935803585646989253093018000622224069568167952403983094061317040175664140893654840889518194766893782954031086295301604266227523826366683922713292165443034937566986731244962243861760990626554051547443035484485926763930617926201789659883017924381794342663597654924411628093917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19016331377213938418826177401864916684487455522515190044331409286381611397009251740496495325550456847225676158988865192108917281712556019864804287832280291503873399572763488958853552340265227648198716729936464149201280598638172310925620177601063437301221234224902091077390816673065800605087416633650363570751475200933787279289327263122329327438537530837803090067927020425953512469039677648399976819579730688258842323138555383712620420185841566654561227998852386358707970825145916805707580008808281090360510811249821003822394067042822711235325565852909270842586214898610045324025316773774265986749261160966670400758121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18885654481457362155629510002687222748497061232108739139452366813462058078996625440623985262858854149150255474502262070476195928938546559332373144668706056345053399978663159512298752387631803530252604161308149601566008445176195791309928784958370280597142467007223862380841211012880353077279802766151896170332960955687031445672635402023290844533258845009605554736941080399891887707120764200436974960669263675337898498644020452375351325219343783281809068603289288363750250354777302021452509959625550764261122064127028681721473199306730103632159264945614657363369023884058602859479473156655871092389399738245255549038917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17784654203897257713529154056608159606196100254473801035440405410923440523066993533580906985171079954782330556946187281919349741103401435555659874702814932405619972582156659135811009579278050008769281951872588523045262727161130809890550683321668998002037650401984240250853032992598586696390018025244308987593311380559627497233847103422656857043496308483755731456129833397248960796805123665547809364056152669454763388736208099599765560884304288886042700038369716834369336014655594870575327918002100906595553159892790717531700002329201622279137396962600259721109069083323904326309999993465634593190405927888532204839041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "24598470214144486304169400278963575559629762535141872063801793528391795571736619767924784665994476531820473224198458421123237562922278043027303940322637652129415770747587710908079150797519565458582300966721572265892754350568256199409239239601441064182923150040193430580681453889521917710735197717264721632574374827094564632563923696652411129648868947188879434737009677241021762880850903669613840931394370754271989352250163940259176375935373789444789614582237351062969805860031135083118163238869465718046888197076354479901135486152219273101210578324548475861718241710090517298238904192244778035048318561355569070854377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23407703272379268587551531348713929", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "19037661162118850137488238536531776126957979391365564935788310206678118180945301905928223824154165022477553391883414117473051137709741050865057737384289046692708187376887224129418026812577231803175704261343347491355122582803128023225519366462956998036249124455529286671643076542148839591975877068959702423623902003464529139308557239775986283393580005003267854218429680744381193591426328765573787734519593462528765766531772506028411969615429685692588464222245541610540257954473318230111099946287826613440825129871705725570003227715105145734745285582809493477146074455054884012846394301028237681124492535362676707110839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21796451791979622207422479777605299", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22797806887712847806512344040490975", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21966159029339002735790019375613856603786123376478127392198596948329722891632554255659007232159437578958128258257823238235570789813550285807067534271473451083460494974626708239579230681622085475590330642767254546604075380573306487052290470420676942482757973791351798339390328867356862523371300864499715758243332359071073125342598690630564262746683359660001285003929312044203354266036926140254411582293351222606266626700567261887700825290851192419821411320882607339112184149901134754114743872324178566997434987423744310913076803154769810276521484173224189714502252582322442453303614115523657490840397190181522757464249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23541389101679997456125264409833476", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23873472230517475076652526350680963302634929158539874567259669881562218459323567412086056900057074138313700816102772257551771023610808611989169282414788667466219740501712765386354541735839750353369488946427712988091738712764357800757629856674522000534122227108881359898559624495710032454434113776879289358278899051695546320125898588434629735523551019895878433494125972041923576743343642561814100891928744973411776630407510369610710277412181863154498813379925751049506880917409683473004133135678601557523502037157739810380868409835262910006409953761131827191316434887769148793483444463954025027692278630349754580588291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "28538103577594246198524011568608716112480804507560344040664356596198173989494484851818813052958081133102866732891503564308604938076302604216212541712711965921269055524352088406423267133745738825838081864047619797448357713045818674859050390074072541109895704040766889730603051688113218485530092424316962555748752435679075426372475772476478972710008659623005236497935540903779773260047032177147074999341108459129294864877848419724820178349704477729917363252017563416718483990424869027119019897572021378924883558174959060751474704001343142940236017965017782401763981632124257851218447543650067859429918126529058117939931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "21575373081601251102043206682759483166290138976171219334715301984674046627164394291459677401806185107128142790492526556581189196656349984567613008717088283916251126449411162756177101463848595798446705646853638903729950927243264734979102089066590675365848122866187827576264428059173974704786838450076683366539227487860804456938137481658679124912290226431614867734619859889826660285393534326160864992310679346518387439257751927844485567062539451177349554094286691346807321218106185362726931927450962053170902426678582798811447407257998120863743134034632929005072245492098522044180340008767849454864058533825401960239541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18790611376557052575316554118257037386588224333113748086678395625087065628534809862211434585839409029441615909127145983158227556857822808996327395034099665117722213309408097815036284827927040241176467965839810966083636564248801156656555530761386380712288172793366516099571961596146690298066119012157018329429303563174556256343790507951045052820644141591840085514568310439334590085189724233498473324428528746485232493028286449645745219373352443752347529669080544392970423188022121022838180020318386275320849842688475617929280918793072522847932567002420910963547125838031595282485143387386554886112702822726863709494857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18947538846958462381675923089104558956957468715363159664586866018242091062123337245239270427759714504760599627207929993695984704332815998013703189907629012946996974742452294061328572014746049742478197411364140806541608252609918152210373469255528386665035448953369751204880641253422744465244574137631061576809553515141694855569535687374694320458633219907804590684261337986894760860015958970183078862577582782145128070289562691325275409028460776730887959957615504760274170984760189779394711999271369305259215747707697054754467796053798837135085323939027042988813626147914965742714196776351405883866719831670474044839741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18460194885320467850701797566403476357336667172499934907257199731367260988584511983093063207085401853036004435813012390182292074289572038670126470888150710586280441595733189022832569171394627742358522533242157551024239571046532179772235933219775904912793655945064761020202622905263261316191312427226207228417735474524892073509041725714757858854376100798614893727142425553422425843544627905748740050472509808686123488206684239267694921159141784748924985041158878450434370374639332140212535621729250857350274865941467959214820126136133630425780908926795645712201926030064315502706091569453505111222608592093520835164989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24678193771370191450300503426866919218881189188254967796834396590674779034420123144524290072804600542057808739236789357497931301740020896529773617071809768442037663464931280662079828853243628590743714456706178329060989808701412288155345045194118923416098500893986387690518122884679536354334341554014106591102131008575490602072193257605976595735860758802166708861139719151473439602706820109115265904658251211003342493593219191656137339025634002830938816766638341512335105674873251291461372501423453462016531180427967169887221900061839410512482706541224109492874676583219238162143264025749834311341411810988425470852479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18964206310770471251121349422007141268111329052259625743187158962535028835606968956150397086653290075293459291390735034578869286284131802643808877690330710951398647955903029674810588380335134129178553940697845628244158864971272588175583384502160843783490921966558770269654249614048796447557136203719484144559205089484221468984389462103555206130676688310341074697164282665591935652620946828731919389938117993887804642686166157969639165843674539304712104330661792176469495811574849724744347968728471423755866068777531775532113725276184342905080004267623043041056638399152315488696407947384910354870420846122015024551797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23112518292799872770314606696907518708952242718814383741052500997171400344945715210856326521211272681390544388608450084869063539721405004590052022252957842617745181015459958669668822735805518752658938341594130779423290786673476905766923449190719584639886783766147392467501169373227841742081829104428862748311027511435395226675351073655883971936182585099998813321242522508097525130435157327254277133002929513893817161745970007728267885943901016037162076897149026862336295602671947220706204835702193853654897182909490745634260387510520318202374663450370028619917434958406823039798178555354846546917000041550717524829999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25256252344993540229794422761566551667442938383909847636845946577818359667773338306435889861157571052124377667446931559932947175774578466588488584494071785935574386426552249977932614890197631287619966543785979232420683424504120288595232529407857071692879891741454021178374286033074858757954321038579135970378585647324747848978982039564723445316181728795842676904502766850738521388988167101865695047435343715934572597974405875487939596220268030305498721791645068674607075823873235457699649946862354913507151385560446324975708847569609999544909982745300904102493775891609080401538612457573087349633627671645479133630541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25057347072661512041398714570541169932862049184971026512302703416613997620350414364478133484909129882253868850959116371320237629569041075762405832338070342924436144396851976809299717069186255984640864773999756946880234074154105973300441711737008093053098130787613815077707150182764277884058783321740431037920771124520628208655966889906548779546966416662838803409046739833868755079238239353698611158290153102679842934635634265211546747448518250814596717299844506339870722573975668205160372084272127516625639565799998410327776623729560930518055327816323730459555491740845884644369457408639887891591689227992180651699419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23146691347652218381733021420695285244272279653874640638188008974917333959126762788588085353629888423131411131514269857648742862434487881256435231185567809982316746418235371828530946921220618693679597073519612432191029601973348282108228342459846753581699797549932543194385227075968859991736389739212413445352035289377942640703154578581058249402347053612627040967323255438359882619063539893824587108999616005874656181145832815930083988531738589455090014112619039260088331895456988865637576371129730705679453578929762867908898360556531801686956928063531244186102536815626305932820186732581731302076185696772382450625499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27576518150951364817647386400785905553900847760429885354241889310530058490141278720408291092385736375833745131846101880546985199539129183545795503079729565987707193380462065167764213322016720622719635537070595001298051812007189530062989481701103110787458389199594571590745778565278088710519606085343891943039462218675900671233543045526452050386449118047711467915116016338312903126162308785018387106740797571012031363740474899991432523386306392823587146225914219266605916710737244427704790915755572749957575764564561235914717726284340179252896363488903658772180069235587648358146193883386479006374031321729003788420959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19788004096713655142993096632942364604771288686404717094418232355024013758029947254549850068899830231407478361750148731267581518643586536651067115758888198489734827404720164957540044670702933451844825554939206140333624477450341026951124891083222594963125623050537968588541636328881375216115457057074736236041743148924484536714463738833679061705211246649258779462711245170351634640680765579454162507682263524936113206673442914004339222064552942539784641639492543162335832587216644045086164579037414940616593023886275254482459562286563281125453959802048855968152362791135438931608307197375887182942650575732271019536979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21602831946837826106232006136319169126459013292544446514737042791914725868602187714134773992046712131830763514255143385840835859039913045693031837302078578872971554935984933529939599787831563222696916705361018482134352855000262724421930217847708856716481933124573141266938554557892781322009067189983250461002614377561382801344834550987672273121998761364397342615137506125958487304677823860671740055579414859190724105846748175010007682752972950018928537489444620334251384582766376930310028845915798485134686139080906968373328529411777445177210218198421880585061011277929139545235057214655943699424861033374378373499663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20812563576359297600609285022745487787924718895024045986048039828681436212098649654411144815734774867757056260216056084216736968276698630159582104913114770027048423411987127020091670131607989086810418845608628682133094994153382785172542726432883581010689111430397598350563271145154627221504254514656634983887752889025468822970464750695777936025199198192290964939879923393240862380884167723244682998804639104544209601294730135479486224687286617690550751165686775838098815545426749682060951616393751793528854050902658122501520209529267411719907000726360924856076231030208735087963469005616124944436717559275506749683051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31765709040442311117159951750131620230801936934165100181709357893849035420875678662671392089127792339258973329925864100703681456257966222599783359065111890344546564280759645865688843169161435394666729867011323835249923891495349338758826741952368618615587448590679260862468994883938797627482683933657478638143695567891022765445122172149239261320670058577847437610942885071611437735554447987197677512771756729196029923094082057281829602882896798677074832847305485330674174711166727025048601607543746220365572101107044073309653588349521725982016447727884399450629699901098524753727865780675451875895658863440904160325039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21931384642364979150006151408320447092801535540795816999059747956059096041312424783710014317657628296636177328561464242228882790368850729650833722782284595940829344299855186175638869831320493531770115522496559150037101210775671974879163501357174180478430277200417224278436094114189092126568639367271136846093584607159149741209382179201247387200175899380914580047189862717035763858826391604341212028510328881903558021623543928688669975567406121826659030506200981121226217009001249680863874400273357155901744724319602602492185199792056361896292200205304595396871755962346043229194337652125894565259383448638726888781757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30867403867921700595181875210668281337138751729195039459714144485619823963113649077156611304894444311736793326483101099923073334472788252029389670515824994450293792008641272791318225878974064900489135858124538061069514859841039170624221960819372029103814767782184915501118248431458600448283545914568819752859221410485334987477043706882547246854657532994777279028685413051933766280289429319395893233392482899629169982314254968583161388171799583043324769705700247434763277045125554686985523097051620899750364305590041663550914130857458485556144093927573883549474996781851052139281280020676171181316351189479911860763653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25727277624518997085505357061733701131337480529819621715258333129408655184883041355690734316436959964008978837237385164809888614912839804365444192345966180885393114497402862558458080967819127520720095738988280243352339428983373792748817520407414835692706159786713454642548031426994136590998755630359464447740581272961595856590878223342664138388263095589587855587461946653013716641985997649436153635275003972316047012559120698268668905869698474506295352539974452066348250665987154959162389983055174152504328258136327375083883487716565321859654848346991639558306425299667480724620321274354735923233762107704836757359731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29884741884003381922367977789492465937094674613759715927140608841731133297714712102131957908913978167641607131921328055427756980212986050156593074878246808344331629297035289259819324497001216206445207992838522681802023866718164433833623757072210934194608714395100162210994038278501672605480028477119761419386885839504847372900908426168602452771693271238524550316421121898410978592636437798897966225722744984216103878071682229977757066915567746894225497502512908492212395875428111900943664415046495033256965633818584383603561156410490468014532676525232956745381627943135917799556238723354102464786660401015632701310283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28305583011468426253350599039445803534490996127156754456771811069821450467399481715455124199130555500345907841252980588647052970152985290643756281156558296831260746257141409211913092752387390845292431897557172307134587090634811155140052355777370452569092573540284803264704108503153929541077162067346670641063031823311343849834792972535525885858629993451378234960686600890861237364028646557679268244470538977399692912896382906872345039702498664885326995033210890681048837510702513102846986685697607615793454241775685571990979707432718623103624275066155787334838465410109553731524375992522740474386556382766663816748819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24714505570585884544835276266727719542167406946023823961405362929732703650368538331889372279692997693761867235223459100599677573353062193632464738173027697691061603015480302517774442585133387345857576198259611220066471580440978431870974614671086788825786754629932977736996950211897483734401658791327296951053766271417712423415526736851165029044583955276489205086200043292588050690912973219545687979099522548650877892213716803193064272889484270540115560442445144167153157874058218743150772204213297906975063440401845177955748581000758701805645101056320267454130770858863657296104750909509816165848824321660868470945341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20182472011189868578849617644678856435616678140977771998715384445548625260850395111314633698741853697212974532974617507973920953158798013161886186130329797430809602312387929077277593804401306507818450961622618109787638528724151348427978204365678637550936559193000460593275298894180625381414908427307579214308228217067157666099204187244173426477079592676543015564709836556507157964826689721646299662102986067690024400327390043187017819897044117826621097300927545678363311873115832668769847092101773905751822642358390839450004696371442528168574769664218012642055502956985589039079505439890280741523860792009006948124851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29047169098750471322160753895149846628712611496043909735491485474179309298532212789431145924613046806382487930078837126841217560794320860176925435120996755370521177248794073970693807092263166316894131463922909351775370099017122097826768049653026889178082741844159832521320209788301851504725859023503755682287356542807833370753111163027999617178440056678897823019079202070560625615461378756920406480695200738702820215512991463397696650405520481873653714071048651522171434194860953046228810806929241064267938864377243273945175658099328012199284010512587101398208157078867423230271072234391949619971167345538194338132873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29524520822453177230687439554618455249742121603766583728772210389892397630364134223961962250708822218349257067263769918512724322003395577773541085005470416053118133516010340333112655242999642162190212451614149979747534607220299402015259750034667528597760253908703555682910733868260486582867226629809546879831250142056176033278926146061408303210849736566674443391885468588594942196479302272208093870881824062737499885490659295046333185805067785703981046024709800892454560855989392091997892825330049880396665561817580287454752843471880950087289603263273298018673104034440750548800394468173605318530651555231341516301709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25689120449170947772845835134941797503599485512382308615921498629454281654208192736120595794188608988982591937845333206641871244828414649005042222441035883112555902401746067157553040505497816050496738379253886122605319520721155882842948904279682210693359354659897484953800964075053505168986369558633525358690077224453090629654685250885845018832993558028302323154944465330497740905775445203201980397706998640860388297196194032423291525759540789025840972479578867036924537410345226393242679999378000871636537451924648470682073176801442640383670793912079460618642875603810161256620499816356343226168758088388587597503727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27478388329821914008155059820156567202489308561437661097213270024929262920336273161274792703229288525570906422528131260145105660301296566561925574012147816400846367384519952368054336454325336192051535978062491808633047457443447808157206043876773476589787133786557876495046656828429693779752821303434899549149818798335684457846818034600501489453261761040109128833342534070535558060285376720180039553283498876873173077395797919679358312856745805160742828216725072965000248780437564615329394286514679210863707338539423538171063076536928696422927327165674954376727851830820102199946060996641081364147426751618235520258567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21225063798275494292108375999232984024515123959657957775892069812784466182980453216955573221613225869558615282457685752988544594422975986350684682769220405486079061657789032461953422521711318119867981842843545628495579698939244912806546010973105720414089795669141631341747086024331761935712853277074005762796221216548721599229873904695048592081045433247909172875496888869805839574738697614630498018668817376836154506206775128198754746812116070299505828968250597884252225887430727354649618097397474549760344018567916314865208711146065850864768455539911003542438598009437852327236435784538319817701536638688723256249701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24351013307290064401234525472194027355191448809508157730123573938726793159901746912581716695914502102429272056830639413516797957178587994682088463508517625483190594762803715913893608468002460566197305511332952038704211033243435544177706059804605100434592196550203295427792581828512955334543887430881501340920212985988405677459953396678629053234823787691623832513086493219951278881437594351199807401350622450342946294532334461226163501847633548614942787289913446481855656531577884410627650113086181658959168204114059630178247655292400904424633413620232313536344380757244062766990028627755085520582493918217225163242663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22538703383691120180330305777530677565363403379854406295004787469856223646575618707608415848823510329346719049517034674666612090092714379350669912817605084394747770390511001414298785214347007056884274441230556635699376603995350337498214283098756926732580897220401993780162287287107241056956858090397123132413302882559037671445825898658537563294979679375197543354274474758803335377488884102501644165922362499335118023354274522880269627597236200691128282892111773430672921582841679673388618782571467478386265346481060087469112731438916630131617415896433294062843335782059567050839665299493432631690535032890363440521117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21715115667040303694443951763341202812439450884040691780567478871659397997388901549365553689404675944623011774744279249976937713992568404093309211767142269330154860384258863616871206667283036473436114422018230561050219320261140872508724318814647511851602044238347769446226803761837886422048018339835131184423795488422489696012203455503567272300305976200684264019366957151892297805548954829282723701699624072321098094533804649969899780575363683776629811224283367841965204577806508419886307979392156652974652747573132699941921383560732952598461458931643756833945078221526733665176568785751136293358551286512307295233083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28455569836129693482230372596178322927730539427674502094817173395561023411554455487372956384581604580141644629564417985524251300917736711056631732244062388793723743326967626726249686477027613580305974744179027615964814833882862532481626649618815369519009118721897316776977281684102845871767121707001802194266479204818356629085610768774668320917874344984959524598732175295356871501696600309327653754080140019143653253268468664300776218532476955156005407960790603351334659331600582569210407292734682726324997633670090124915507342238721422812313764579288612592450439822834956985118635575907336081175198766227758385244323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23062736280500603630318988736798339741976216609616136745814083193428926377206441240880858075439577381569532322286118516882619136142204895172660476825781755164892809029325082786847179349106626697555211696109965377430883834533845656930621739390342778510833568709286388928249029694626357810595498062405320912087651583017170595773435719562033177877052983095233140561960350304260687397816125418064878042570344976773999706220910424682985562391604658629746190032188233040139693467643806304272936950070364373326810549981833654431088994939159841583676630257173174680136321092991388169154641040369089083616899623538871151308371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21805399030679028049081324940472103513484537789909889827796365072044906389166133658745218536316844557367643285145503368579584239225306660818319528851927087117521596089441997603840411370539777198939573647087705546976142155203693412917607069659672778462069398519603185947433452093559420615256817293394418180922505677217649354279906417593066772099402927338148921022343032858677689255016123126230768553367420323388596449293008823851672748373331847913090040597487628201143021136190135313627175627299260806694863637586943625631899815966239019625704294054046163183176297983902500981883757616662338056783541738600389546529787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25365980663250693853780459390938977335438919262789017483120217742291576594150764013953960631472656491847658534855752251068487145947047051750861534988801716784261710697729933387398552389941331655514964358063431972859131791548595163673679044051176124087807830129430045560626813598123541002170894101489489035724207017065562323932624183264865200226437322741929217575013076762999213117154355248248952887942628736099362317902535583798778538078852974513001188441494821475719257490673570639246242838243430418407935576237686931637789939615865200606577301740330258691327189506000810846010935974763426785673812544010014140849953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23843124975643651963215274452979990395347801235562730005221103101193034302241079961871793536009046418494373013057828061478046604524625526367380885732379557679091112591097626272787138887200222070120662416570472515633389903732822498175886408835902850058125316146867246769741992198687971753930639506042599873347028320892272635497414561247920612410418860782365643110646692583678791965181092456573025025465892784423073056405399537145572676885738619493230427085004839486386971989083838990596864412213962387665704713257309680344691807016629463342944917302582369719926540395033769930232669853035350575242952804517636947909803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28709834091662294013647487058740193172436334327040803672672441497253027594769215831089751801410476006425394177404876869483137129020440752400422744674469873806250906452195584917954659447251791034705677698895209501491692448439447984848515627196638373673878301968045133847837807366343044541682950584844640823865639255656929980378725477510758473871793802805863670015933460247422428196310242368908551784512146786441947361830970385051883720310750527154133940292883735765950126065151360943938660366051872401292760831179628127904475272235797254282725330986330589237157574089721198923180939632242819619052148957228223916014277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27083678814634643915877530628379293693085957972522322592159471190372514995751021346531728777652595897077712075540126564044179988787431796374428289085384748165246946473988597108209942049497513681756237120654182986504613613203294100874974157483567049439052017625181818716731688794494727983465401571437194387815675564470252835156044462226397721685278311370225226528605063224058748216107492066225455371384619644479913281034236485484228409756377223486415351644136626761079505158643102555863346625844878332332273394576752470366664723290792782882804895159548716099101842691430061861313476595518944583562111336010894966449941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26011322708850809104875443282842861948078600611842162017450097221026084932308810055062360122746251882457836458849380934799952832982230026771286906231499486879942804703351838898373856989351302924570140057984298673568821295171670159881037515574746101284290225763009066662237250684785233686029290177406980077055224938546616952555583060866451136203798142472468598058301799812053868037119158304168660522070675732458983325081609885146266385075631809700436149824204270079134551847172216894381799561310252169190564152222747196015757867732741234046562589565208273791710012932581332401668535527975673661333030557965823055618729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25941836517268430003553423071006296716665263035472427197423142045188304317700868476528721933521345832384713642009959110239660681925372119553889248233336396547565372114139651830804519861389563446994777530083766644958312555397540756090742949962929192483584294518205040111983584660359890972479545611552175183176847357358811999444458871895966643232934372871276805936097374903796793817115465776304703048665777107374645985820693640734819409246094180448760734063311270358498654734884859867329892629418671336574396187815891763799213303499763571177384264355544558857048722731309640369992440484309215214407038759876922565911399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24889950412321038052330421573540252980845147908872421543409001639689503083698064612435284137739442644432045582185211277941774543987427583404931323824306392889923730250128034849680645211481460100285855378773167282107749664478236503807102385808225319251583256100257898642128311745981487218554751803510646593729957467217284082654397631129483304293798720988250543593968742899925621561168388617315758045119271605376455380893107391611454299576715465239269842877350962275925578852672332886114954174946105229469331439897811455043192253558570350403960697249374375666028416749279459666748846950239992263766565898468001217277289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23005031041987076645872099412455029706208730648051847861863779668085631329281474401512091841010012836883838288821757280558147540075031736224054321220902313462228383091910266115817740106274330502329406523912368766329650491760988176684561259047758053363785918756943028965645826455652701674097349932542582313271531620464436090709960560088120718428414432878574151078065374878358943128166794912234175852002480524014929233050547162105952651709818707160944142627352937325495933371813383656441115384029479339974085310075184896756953951506745663188265366408166779363015925719817463807556910798145657531180490998543958339729209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22510143781515608813800824051078973433815826646155106633863768394822981095772418969535154104050129056924668828789575261968662503807067663412774590244678112138315714643092520493479932691349902843296946790327698179436527314523398560096882461870847599937735725194863627724689786265402408818294965533892106109795747327333786866414943341981588839121508256905884030113160760234428357313889716763401814058603741362669666521839062821530587615608190965365320077610824016184748392034640344815583651195746785372618743811841429354481690519164084070943256952233529649285740827158298251985427869378281107524633342490370406417482061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23086169516752392045819833523156182630710320350090179324694259915292739720257430956653663753136624977284547074594653822072164562414280473483092892065834308785618230876791061873349839279797847708421540129557921230331865161165494772462267393371975087139260961583670630316298309985090570628180963808461630710390095868526055525677403571625132648615337195102232508662638547181743428351645704513118471445259396591509921203528746288983245296427159788263968633180051484019405874500285586655212857749808332070305609208013360776132365109174826206645333938272612711432029970125672078438145398775741897189596773300242380979948379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25902574837106643660842532381725344851021550637711278445011906573892734322740689443332337534193152340734857176602150200906897844227932690610715664204235021984649154946134820963478893584182845044253531351650963326494666203062694327935577338109178404527932835979468368199788443556018523986135713651050590758546757301771290958986640571722128185842796165632087737448692574147701204352055495094110324957216818708666297986252100099070314974859217928443721525457048723164434232332389497003296608566578304858371966799315495182959574668582672879946786070622541844673378736624503836453192871749926636219989831805007479521585673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26015176249315481613167494578478416528586373944992603779920727776873589999275269319647333302110986157460921114118339341025705470847665011905967368850048369470007488286977523127494534359251186701221362261164440495193432455953997476719775775598800842043260134122470175697633407553865941097417987208775813543315819265896186003546867826452281586373158377211879824003046828381434107861241269246594208715094554240847046058412074744956214731083689100722496011160798078391909928303268252512698694196616664230604277382713947646024440238438018733760204768884954433088577005156476062687998055988008582223076243965732199274738613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28806551662981692569148226786809943072856619567248143969744831104576114188960491997124520604365171882189357912183716679247195181271073611041081857002135347424931775536434712514321359118972004868365829557267440092587253916849261728308361872902015237688613916819125827173837536759271665690386380110374647834469813510799505476681597048147749173018377902418116605728970441328031563518239727990651476929292849856462020434937717723189424956701874477114378407792044624467529612271284658663676977292426630521256037774060341250531395910853162696363859869658725028164082127636799887300857368228163493679624181492181592034078101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19368968184909920549957681563238813406013529614325330251355046229000339946220357331415437107797140376081728031056641715772379038674300036571913317124423352105531889273566353884692489784333737383255380953138503705831856773898732828162133654784311859737035275562750093000474758467566867668507267012120650654228437506666584641666088438438848227900222547957422778976773085262034505447202095179780704411403360049951754433004705573089245467102076257725118192856454946553059261039178025076174051258139634526956426786221950866907646281266363873249961618339141930732828888962337118231490362210797427868658681556744158526940867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28126137533529002660293737134261802456963525562297497971684500991838312267194502427154899721172285225743672178636759478250157318927620477954581825312872652865460658343140319594162072280120128341458189871863273010328258992566709307173918251323107060470270429137849606173103818088015634401277209665566316848381294203571299418654674398845440938597056081872562532521854545187253939853990428579140287886495011668274738397315017964361204769601668324220151680212118819821551327979339575993514490051727266777105939569005745952031139613154532521954339554978067776262041919450763476228652249827870984074278454640077737559524217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28731172473772132911854090846159377360924423491015540287366460002193366868090919200366629566588111732010886553563955264649607545181555922280306241343458240905219269981913952843782652799338808020264518915320232049112532677588291473406639570054204382537449362639190078352014264604747083195904623977660763873940510372934268153691193731899938922043711725190465217776443103170912978735756028213212232992347367992235044361309946299733506583067080688134364849192596973768239104225482155472977117478386369954111060448344512045718795775563702115162637835645470548499248806108793353835201213792902747915034810911069691610872433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22702489926601700836784141293795567611476712282160808193958968724869530958440399430017175984390706992303878910081873838304825101710822331976875002629778218683095627785987642905678703439534986420800929524366977592075172820191136658965154276461185838943587282221750312390280240094856635031207201762346322553362699628932873326785038005714279868708233135746552197121750682912430921102064911997335012714207165509555657808528039228051085662784135375474983213940255992414752220076053312087366591222668009457155213547327364464676898593744279042556422115423319304429540739983458514507290252531509296667702132602684542760305867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22159337813133491637985141959054357946648853164472132760638658266527351708049618020558736021219133688831010253601609637684006086688856726675201777448793333630708207181928861812042495232324076421280805060015935004782830999977004369877474889141253437456821794025481303401982513124782366402989312968869998262590492770682374017072620967196341788435189574500771331296700905716578280963609263474308482116522045763464752667079845540733148546213770695799275310564961843750754343524574702070837281414305894512851988088830331908008364669223184150913953085007415469485187107690752425205641961487376217607794952091152269876635639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25263460997660711221071661667466582347141219576571589635000220859949390995795323815939911016070300634561216177872975952860096181179175777826648809325088332465058125853263864434951493003372063951362279053898595608745207088421560538645954824501326628161409751138110880008467522713022241205597918007089800838579526664850021286159161394784372343314326521743116340447257725767302801779617972407579019455139607473397696430396317358844580799693080250186862273268482136520865841789672324763552165103308129308064478673597983850608196900057505117065728553518894369578622958360367712267477872673256012098829374779470080919643191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29799168544785024375535702685242453730925330116211284493025616058586037131884122478824675012528949863256481753128521551374809550229469397167816989638425160782961798778669907545409008293950578597731177673549759067377247090812116933597935078417011794074175777448834170873994899378150242683392149835065476310299145821223861331911667550823593503221163259267108061834318117586672117062507058934062737163397366250889284127508466624393162214251392265650474301827065157109530218001413416317949111091225240051218144381893417992071435898135230585314220012219479354439208451037650406689075159780251054802185439608185871976485311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25799337439459179199518542716711511644830793252969628584541784307810448504674570986659741816517627157997283358660883714450563951610548547819475091196637754898734897910534675682316347663879495305352439776622325625194562492246129114191307495161230926839237458100429255862859875998423084185804633441864044261886501268531809380507978993725472734465381655829818655696406689827324967010450570777981834620323868585071539496469705773456804784091587578284370150258549159835928092856995256435485145058823100686794141670614497679346379047109338102710976256415591948279968685035743296407595020779322337377103930341348725503409327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23437505658571620898203311441345074672199261782859154175560549692038947444714025859045216237298109223900926232330816281423813558453271649239441747157926622610765095975409574929867320003350630469545041945436196084971158757106594685318389683553417136857368083525326099542618787383344730566457552624150367441842029675618331224950123642170764965847945563963812517627727918573040165678159752650342385912344894311978845475241058147052015757872996739231319727802214578799318965220764113567182026347642292198625718321934832237200987792608226980593192544246780658625030600681860556804069995400251645706168271711751200486725253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20299875857288446171209693375986027394374040121179641253460411546841714150389118517677606530318625055542361367954612252977987494135332685380683245097286982602270047322054073264013678769461899574925943212326747933826732850907886785410106745323020242097934345466284092566425561127755998504963068045179265149961049949166811196944525950705642496341078246395559238913885358859360880754193491429814286848645824303300091535655674980073467821392021079848311243827024413170763444751026091218801379469394187012576225451241503925050523932954425838598126030372129514255224688786302834632408414339260857000769255665081623341918979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20745484697328424436968972530631527766579018641964139818388027974714839905777127005895887286451541647752923230912491644123977149361630470822336396607210558035364075417989559726406219452876334283552813820720413286998833978788903187537097896919207313593788503630599926664272586710567250504495073421745339774666531938908696623016652371087405321645657861999338386590040654266385158742277803515983616626948469373796021633850460030736445550209195286728220583644566160907738090150725579677603118888991155824809967480618860254967149435213063239326101021015253674175804679397408656118649584637858255587560482324030369095133773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30880644248730532041795240207425729874103318274790621552146222311447199143098420185268426383521622427360808151018446546461013925678010639128603182533827497100598310047336781293381124778311829522330747000195612181184391222159206084687943651557220421650474186210751070698226689359748261813171817531922221487086947691418741725131164534285111519175442588402033233829649453916781545719186568130395753804896077756593972973598949117551836537175678585016351061429993548144830049984152756533677758482900675809776326394732399076919365770422749537079125188213711812223630610303212920963805126634511760043193568879251169724083993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22721371739211116500717886249168586356677479367674400471717068086653022273929676701293163651447755406605659975986438665969365314743719138238863700999047434886229880260202429490550983109173989686195313137699357404406443722866745612028452944144184408182171229596403054982650926372979196862898706297877522939807850714927658357581879662474133749236637207312583038327151077173365839279295013562543231149639686298029477478254620238020187172660186178574056292872247472852723601250220401409053446400812007421870226226322424127211029342921234582931577287472378677149023720200269800555416182369006207206474287020242946469416697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23514791914971913361595262658537630720492774485535571972453359305552844853214171979914965756907127518863533088813579934757236076688214511861757812064129663633184743720967259228665197481452794800775974796325676051946438619987349837023226482299075193766033635267766038723074165015653906472144305387472813192418018188189216904032278666776886819444163505903655228075132736538992672552558239006786100638204409533378719116309372941900209374037055348494132089317506917130093577931751707269706991597735678892061199756715670502761254807333694293731420881282758748464908424460961214597452462078285559427257064776656688520648201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20018366911631100564895460080023232376441156046393687552458953282983942113904433017337091189446217762356521358147412482826796569565826171177061517130129023008692796111169982397831740583806530317716504098157954195800354577517638678121197678596469815917196464590067984409812931614642108209144738033240707649293296054122138937289681094024009353147711231459642124153587517649145861450700346820950929243155628312683293055381710826048659490919703847724565658649513755902674385865386197909502818382334041339704904846710472946415357326807858353514638586537340665958455948047946788520126113367957911625310755548429195660576269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24954148231347649462942734311772690824207208891173668697957609458481104871009386023911965884120033694846527640748502271000038211641290653188610162946166961758533050174629904798746889484811549214878324404223755349410385794117967365157286140607516390836486502635777731985173937966837278250911844069047374092990173062005311836514981786970904548406923071695078182515819126542487030378728220335366915213794441517544550472618621231769812071387563790873742961926247539446856900876735548873307028408386312300011842164869900869862754271593170918767329966693424781586328196235148279428560134461584884301511850744029867599357397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25890967994640380448060635064116112997711356212324228148378290691695343283334774413465153443885692551672966042932742808172227676723154805557512161646809969917745260779951637166648524214755568594578836810242334347808749879471047948879450456439781417569165983388686632401769245518523770457035988925390751584653438190114630907749835649500256112358347964172521567807870825088154920262108199919311190152508600378861943549331129649605399288095810411262770419069765788588950349942236070678608669465379870265182926790943521291145572213570648007086729800020517018370696013607302785391352447076915043614439222297887974559497637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22441487018561466654897471794932055560615474541122930902713638602543897142487360041270553563239122808334246762198745855029053088834957966579655064738084928951901045022024587725873505412338482021447559648908257880464175135999883925523842868189651616274895717687069411016422677239465464566507087845952662515420250378348542826624851960602075106614630833243555585633437228634597561531911081522130662133937730836654143032328891343183981995409172913738910198977462691004005211370370991700864376622185076616196197934565329569727251415685105909089822902801117581551034779245855766409638467512526785314118464132710763572686939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27330549623035171411533764585641300501969808931293071555372724670950247208238013757149240424216599709610512829735239912701701942715801096536978444174461772310529132816559689543119552091546270224234218978095746129274555466689475793484876023497809420676611006014327843656954410204121531670205447206748639711467475521242985916129599169504243090899104251591580432002081256450319676286703882553398317703766301330123484841483749304782578530326997054284583889567888466850476563481631968626952420835191273351691919762531882918112141168289518798037613854118947963931920785846478282004214223712093287902829944438897746702895833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26657993939705112597466079318850497400508747085138855410614153779521392218942158170362116511756870607038789393963866372436086134476866058426217819615019025274276059231380183271104278948990980348274284848067921526254384637346326847603425253755364802761027416050314186929731863854316021640615893012179589917911490045496560403727499434365880736495228725356176757481581870783119301322263438520073027756738790150049374432287953911025198603992229120142932748923662995110184850371228087301385155959422013874770891155900543969080998514485785117036001248334761557194535165712658173719358095521599076296185179608140573702383833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23773509466911256378454977471730005554613156277372964034986280859329023458798186857157603564965619346411436231760505797165649555954315373565793548789396560535859642853293689727167372197188645256649485859698224916533760069357631787310494372312749429702321206384321138067580414979570761047854283329415772399499665249135102382530396361057218819416051270467052059975495813388039383549369821659054462259439885468856494220888833790239254837734190025327067881594472451981598715820288834252098881385780567928273861489488921549946071360193397559715039381481920145427399997661893240152691907810239417011070481827102089938218623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26704397824531388362651192728470274609729602815770788367701574669118837300820865382789181646312772004676500178890042816710926337039086974977330426916381659746722240144406323692441739356874680778961667750235058392819223779762684797059539948954056626503747579239525321820734200893810977429889909633008052856353804412438283420836637759780062651366165271300330209537582676373319278384006054460496744654577755314785760955072058288243771296584331305063900123618722566202483537382128833565199457280875489497892292168677247552663498504004829128715222632288153303624662891122291477586585003692643863365842229390437176763955979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21925363788684888332223013868186802180349508823551265302281899880250181707861151209088747696546139951629717423552927949720496800071604599850720720771834927319334006093350294767843582654082940813742109162355800804892637168589762619823001623444406306422834952437416779414170765637433162221861690781505827699734679643269922062974612708606778902250358014045274454240567789771189289401735076365097428689102051009135336342431192780609392481477130968325015561759622863213741733454766446428885398204789807285459715131297589516968200458024881949887399540180483438615665487782009626858569109630140039552808025352397435506456133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23661196473153203001438077452578684598483128075704148951544098517753163387977791359927393044776553598785681600527062571935836159102780249052419813881506558910396244193001278999979260905279780516211442632588135005821995089815506356436946277313291287851873582912889736886997811207867623450911265816387807568480601816710272054677743078934494332834614338736194653067370010353191155357916159860463232776645677194890818067332148933675418357070596138564837932979727910567448689233667958727175573665271597419418180059523448049333278499788864099369293632052567818658413130222402730679822111890738883579283885161335954316367777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23769889350779819198743464443704330599118409201719084462520839199204672866500748906794608877589042986579705374055381473220130939605217184385693257871213437715438690479329383321203402888756577546256329070929049043241238660181963242497901901005466705679659187389950210751989662236093440277873388075960974439036958716876312268900297216893761366012132638665675418579460254037616727162014492776678651754052412573970726587498210632312420938283197093651234513151026300775795772811379473479701110822589970662876106412835043961968870791214344778632013692407311325086923491315985726128355779510580304861614400825200137360364741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30151884448751161003868017969383500678948839242097725545296887623298614459620990944117015191294265294293842380949910914357275069387505461800535912923755403663816084565388237964432323485554540615409299422508855280878584314242345134658249619807653391750802821261118716262588675380159095932324214448645716552057697876860902328208850406975099752822268444737171455328733629180764565448402597476800208020793767811659905448553423054253324307915817213742253146928170224602659279669792048392917148763517241262252983342091513188455894625539445658751860841154173661659234367870335471065681581737361333004058357882876467143005701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26712313872202319766393690580440998720817999876498378623924549453416703238844607246253856941701633272407153594953128974502415585845681352539482614488112615577568323384843696312285211958402997728259832233250100457757420210803701276895791723867972424326275735365721207237253428477337739785708654391629464437948703068256993012916064139969262996284255085872788407788291819218756105368219811596325956149781626577185527250730759571097481293927227857235913845236819752385738907915214487942087784997886006649996093224272238636019062960994723529813017467837851630578470856934046302102662518332962006390034701746760165850548457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27463838643438589979289319025784962991066853443785391360667166276912804653404202716672470548528957493259886954569097853947596108595925293226860016678674242772641123628872129232602979678225351408395529460464133879732564819384047995784254291657870300079214065164618574895515961417813417087278417226174944982771631779343456928473445381239623858577914735700623822232765819021515204589285512973381260416057412664900953332192381104902974145041431236700786943989942156168638249936403952447582739167659393447301626039297142392487630675409873376658605765524132118610142338222344979119558884910958443654501688216271449758584647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26774180459188890567514048642912885736300363180192701857363533242007330236130124260484627727530475383966804867505728249585759203077489333340274866372999907353012672098061593858101856653342474757576374181980257904015674137896605422282618684725747447182262936697606549976891516418108354016233422113935700104676326299459853673659651996572766770525964733266284829080648412365353733622067456408426171145312468325433126891486932738387220925776663397785065024584252473531746875224830454841605557688742568291358483833499598008442705963604482891622616998758174549963421325212408365915438532707403510549295463868045071943365531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22352233238951282246528569637757489407595945913253742296704169829544634715827285816210783655336725135972905773674642702830140688267089231228198587170250827869500913832312818934602749252772325392452509230472818172393158986450798301661432915223256436655536834729047794980115539494477386427896508473450458146156432065567688661013626728239483856555799978708202596480635450300688118734668620472531955057728912182878576932828015585607993002789430810444419470485745941934675862244908921065734263437176714396238583696139772744756928497844391049606795018066506514183634895078919125553719344620577608600659388816285694364736497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20579369729586158279515275343431809729574793556388337041836585833434352133161130589058719878430892697869374233453246880816695594770736312567296576560674925677722990713828341525369982414497676752340859882063337884993905541854329425763748170021060714289787797551909888895293472559208447522914403331676734413640657449101124517962866105712372183542379923074431225164608778739062735111248403006604816193746857145289135315934751375727604980466664322053446913088660302672020894713504087600635818064249308040165641486560683657420056216826570811965819408880950082496941526736974758301546117630152822310102315321647504775788509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22868615818802828954484814201078231370912610541403034992544457349084061496768800239057514875215617742653409170271821468050487288957158393393242324318400315910801047635929817192582392518742388114783864912515576626404085573754825709027644013760123259797220764610735549311357794586046175276057382812091030829371358090864827623925445462801478379358691317646923552988324609847000541297137028338246900069857601931316969206347258239330118746749216254908682068065851624481334811273231112396410140959444256891223520045685023154360722392289987258011125676706581020574829837019856125706630047985245255036659888890895257421895603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26131658155980241122126472854368106344324023998769144033878586616310003592390969790885357761455913156917924027948490838747496883145118790868272252605625163339033668587721249622598961262314907887194312730856604654893254644267340474240967155792247477972282917363111692023269835285478647290338843174092450987517984209245926255508934290563473011068409780205324150205329022017017779173042835828254658429486750805478840098575008616941452423428989467958414106657915407959870839821223551987165375243106365382834805934804354913774919369353394110450813173239811068052057364412182905480278396480158500273558595911077770855202703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27656783984296445218844651602194051202835095697265853770586412752716148023035735234441720847905560508419875610337536018679050577897894599344078733385930811073340915356926279561769357146761122254576201949028368515373782944602450400757809670548048006422743834119678162038822245130085074945651232604491904682628323730260672769005110036149272863482738919163793138539024179421437298079942613944742189122051232364685366711782363799616553413414573175122044741223739232219984018839676555882592453329105352230477363669032774437560023028717530379574615471459461442432211478532146534838641175648751118724847621440104106076308553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20382807766182951709911842403373274357137291359733026581871821746265624085062416822420287159511198679829945423673567659740438499087246514155117197244544042191172096512074425157821393310530437351533485083163749880724932942021459196720104834693780209731910151892883907231289954178308645395721802304023438186013510593235077755442758825070689632758973881819762992840061535089849834177334751105202351899328465293180222659644220896530458155417400162283453789077610385230999215248114697179952680128895003623228991770610533007293707964399220749560013909837189517089265827813567632857796434162476636187965991491314537129400053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23983868390923337077058477165688063768701766928303018193769610924910921200069410146516424415344223279393109078079663665766794404889977218775073521948081120569946360545501430323444771408780682629543245358577516000736298628020453154643526789475542514134593776632293714693279839415396663890472832371100833052403918160201715699179213864163147867106517426232915722478176124377508057022573993996888133821090795827388290285191443921907691189692026017411321923106265289429565059793225119474960917273835768963256816595515320483106484044616370650540831575589945573447992214844486049138447919670406679223767325484160089193295321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26235575497783345167712308596054657032147700366624219452084060029052008953997910742375091637634509622493078980740073317740313897626799674129311017869541030746749650665834941497717404126451945341976223576468803147274774640714368684395484719325443028251712867752871363609676357756754946283230672363981648014873165717212090315764747592406227719636487574535403753681897536486609882954188595854525327685053003078648729965219439038852734168238013508354005412708788975943619718923988965597323838779040052192839697208579543084565006211078980459163431922304592899786975728114747541825216985001775288128820852743844622110759879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28791714623616343704637390703227310157398235013082369615358344109056219045326061200688366656008278412052770787103339710790534287358652868586862800532426613601011959300227968547585746372184715769738944428921784222273217059127869808485725710242136140993937989690895686428399769710733627374820357813280785664712946027102523864180299120225865103523076722718690709145405168298183477651098005963477508785613200631196395695082764448761609684180424135431199298181051298004179769198601234815688116985626108904277392271487870158526358487862395132592818021810019457051717364815057499114920782370927534023610778220843198344654563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24165864116541554460331542867050050857768699985502046926056843267666090443719377050563320369614976845639080442366110577049980526399994157490239837168348111882978291672521678952792839133899413911782844556595837194044556966194119426101570217922542870618300141906166307777088393630288652273814051157783716485319095141473798453757682701503377817764737968399816518056304374926297712074269527052893895959785275531426119574068531217798310373735340149721373781084419833432038945064083250865001401292690056849019568892594918076491188879019392777532627611120894446803033922048741167865757706035972522917631877562014236146449483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23965067716471381580357939676670516734663946850252766851426615225826414461728112555313281394646222332119478587286996540960526071041287632782697635620223510631803537310897315993760879952769817627585711083325108477528638324806874235963124830794497603405399064832553115985406493331331308578292891580742411751141598370463588958510951018364543313779918015243303842272417074008551535090962730954935797006062683296224172929497068827400403945825711466548820180117235876023940626860351644917622911066752474958629804446980243867201775629593014691026579961176188866296024979026968159982976817159699498503516042663924278645541361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21272573706658185192089111654078918642998057171852613672779677020337674565949078743710850310843576313536616805050849211282367197466694669178302798685397650530132423588304568705866370592211296942498566394233855163319170399918306721380549893153013367615361501902021479480022393801010102227256820879162087708725816490725971163702993848008239179591924206288227622790908395635979330563889562660138824412313717857071286092384924714757472723736797574709020215440099753187341356264284354682711886590451995537775766818268266143460219376103821250231228681453216374819004631114775658202163140906192518321186516390778261195107771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27570781611714059829798786868836161442223870716052525595897483749470684549510475224859148104567694224223951181166180038481494676638530450779860827883347033166203331372672073397858532920801108310540571751053897597171879605857753786037788466507158803883629547984504685205418515996932729158011329010986231558038997832560060469197300464897669976069374335233488441611348982445112875272739241947300361674916228204889080733018370193768680326549213928493260537930248128911593324680706050497175894376922880325530167832903708874421851450692732470841792000864579350299068545741613923138390095785659941309036252829368140221893957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24424097181692555049008426067578121690310835145580040962877764311919809822514360746103657936234639913210146243095587450149377691422280305157339420126903577075978036154157128634330532108216930756998772648587430269570260393253876314509812662384843235287556512130046717262014507000404812874370579494924702852602684511144836251580085667291009542939798333633124150994095365405924858229032766694882752002517194327240014332862513992411450118548984230923059226469396513810594996086318616838199087498136739863303078536467027750184429496296401030910940667164713286365797837375440629329160158651012011192899095601898646013695407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24135228610668487617481884467495788710450033286771699253837472099344168910000813944637515729951803807988059712379773621728055577967111253894848421082963270026839359030897231606309916360534268212279676485921256351092311013105024293483335754372920261609070261792930765932842984097338630241517872971139807659020962486673265094315180593772574227434715889321381109575728746320859249625270242316595565267364402016207185900986013977760862867689841583114433050525001338544292218804256635627097169304472548083854840768292918241440849834124832342244879061373840850655565097727626554942698828937360764323443775033074009240366779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25232776314694999557149492754961044510000310172785204328668805148914857352623133796647199375785450815487620762135651801969856485865215499078037153739381240295916739195444018899444409219302509608368980323282144036957824191172172479765880078761636055871255129055008522055240310374116246508500604785577585309746168715775356697038184964135507517134291965636685501935775791319488253483951898867800626547179650162240434852859055190497835821221278535680525277492706006620834730155015311752729627829934906714459065453352445670849984352376995371394953050172288038021192799283666531734965601127758163240428198701376034182834687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28976701686079599952176458421096557781945029152850730466585236526289296849035337094869305197427354714163336485907654220402495924974065890200625363329008364159643238475641502364323136017257232905999989985176511069632526729338295010179725623032855828876060041177081026876180748034483179892595741322235348401744493006297278138446168665737500179898057203260274072197293353607535617925719900219841074609421108687597542380454704383232465657952094439526818741016289016734894889433012578545370892495543054961184937832510767417857739066738585872799805436453335153521955808677817245217433448026480357111005034888659787019284177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24237229307938339398409620858498164151550164452693037189213274835454587638909849668689057401953858342191480938149578910322555815459447370380789346403057213844517951386870030773975879161741029718143820673963416192156740559307186766127048278481424987134290493609100056064914749279980783955820469065340720063621909410429424782696342039155765772839841461335933361505296438258437198676230302480108773957475886304376163248950684950956518832589768498939509586260469642287395944476862610631950382289219202130396814863265142566923381360606888324699580327472333413413990148176795380674428662739165211677117648629598086749115161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22164366828128914797497446947557963236696822793770792659597634066907396807161445019110011413331684959400679714427548573375390731696163242898572512399164081374881693247507510270975516407098037554093298515371915360226245235936615435324145703592265452204951958973972068592845831330386497123330900249284296686506626597829028263301145445381333513762306810577789690000977554461802047001749346063192222023912963405641740045551165892671369054446374770612612168129869516778147949740491857092967184543843966217491377189544892866960064332260730014397338844028705021313731071139113824212349387960735271196452779994919087905066997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22761028792842424601090951990920499440041326151029982549713514766339653323624647180910751863388994329203240884065690348036556330963916327323405401143519299892360272131404171027020728393766214570293945063458991148595999425443786307535529866123759274229385245256079788660805368859004870640053296853518887446754817381708860356841945252597653609317219490914817101881072865790038873367613275476244998081308285280803040497546454633831403313729229781189287025804179740799045364773606481800679897341134731019801108527296329507142699255350285211261032750415092869707837016338341227683240471207303958902459939210526761217169967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27508511796423997611970538238234599479293391238396474663178578031111590668288209965010724332769762475497260415143493669197862755181043225862438162322528093925794980245211640195897922598704448204052751628420293311790222266831279343744185674379088627288621313695149640375541936152205118413817525988289296497321571125693162261251258751121979800641097623915381192240089358282561640057103825181992053758640695210365215272299992748642405316313743043971727725451818728337959991850072386382824426703106222311147274335532745989549753704788472325671490420956688844548242990828219967191595822621855455173251481510245085238776783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21056555252945314710535317066346704072211101492293745301740578893086358401503298967537308014589611901987685310533028370646080773501582522622578056672401256681859219274590410930648440959524958518074005320381787242352308020603903895149163365561992107746945782856571208554525851092890105488723498988314063114361680391537402452189862426358965868916346394744630739839706085414993852792981719838136926194989940578135606481595509040820617296118002097083916381597903032068943040853496583967286778726210737658719723604685458585154207137533419649311294393418733071747910168729515944892303841986178450567263887237486030686123169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24190810150814545873832743371251466821889152050014893918506290252111392404380173351419404558077306882689706605322465049483632452225679320525476151167474805939294937535030325046320237453163027798797428033523110163442506066756464523267148615927573201065836131120136972281454543583503847701608676540049138781706514030706161224047407218157521838058083964461197445388193979378462758549345531993856186749893579311705975963804441357603268702189700736240269309259010698307686454935738053927090096807890212450429551689676675103928720796849479648635409122081058127644853672602111443179562328555613512694559424911859427383527229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23243123941475331381800539646487335037814755836908800870972108211568948396922533400069839873717013080243149127412398390295901952933276435055029878401959906248676092898769864141221271312497204044135382568305179832525949572392508575224737308617176509332113193675387072437645374117527463563332858558027598885845974903114482863123556849541803061912302473825908162573293276944697907837483261287460943485916104662182581958964565754873812142232203823643065698713096920755363024581334195842861543889343500712564166313545094125477033178038683778717801039044019737089405793195595214938767947490275679625020900332687746020275671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21329817709181186179532369741486041738409439294276462789096412747843795762227682147946775858750853299063291953839788829276075040479606205894008110563048714368778634156462843650795413978002041602842807572454879983724511135396041188232548358514821098042814000975629844822451128645760467363152004425211096061006756650082872995081738518259968478762606662100415573999134634423589921770767684060160611413768891411176924510187409318970508514021688298142169543344453670020285699441711989881518955733976664476943082056298588623369409940299843995850759849939128371050491207705365237991727867183572264552826126576302660316383709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16330281798309894860064165747074519223853341574487745687880700894273746832939882238656991693304990619690855737429730835878329348864238660263150983249003505697260079292996298173219174015458827683470314157835306827473237738915399396229417909114736179361547052372208147774544466754403590220643744177881556952606783700254288461434146321485899353669614030046970279485171737551690062414371423031960995278042758865738534222658042177752714860369607494228413023834523321447431248988711911288815390572611882884266088333839540033336261952076471299352462828054114699192798529963224141617907864915488618221468759050835986032896603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28219814625381123945551584384291224260087174231920398443354113060329653264757811933668437068847055397866343657560166408902417824392066006274047555774914092115247572331842953966551474801234716785479602252836832218773738225498931558775347019087925884239338824815970816868944737751264012221506601257674023950179182931248650161203431808048091420846332224125809544093285758519144915396615037815002875124764708762127758258563572353630830573224201989530825643518908032677250677668759771219464248472424277111733274943249430212358649047172428509783047049502722476040771379306361457456703112377767276808151834195074224265806449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23866295562608565555886618857362904034152922514083257469835601700604693990957657169413575377852448189177409410027085482089785995189623477693349556863803620995532662209472279781456345557294238070082582018749684046778855220375872056207009867856506159483272155769205600097688998358514307167635781334097019122140838757978428998327140064969010849046570407778737471146550693948741998325267404255166032359225579456364701832564171038897579342261794016913676515058221093506176985116992658180583995534696609033149339966452875408377257979077337124852679596694998102965225884670131785973861363241998016359456461944744503706949283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328380211212611044687461357554408126954838598120434478986204152971138134458677000763303607894124526468075983556209525540516563249032606940298311732693217433579434023738710794279064349970029373454178910243263391984595925659250273425786814655244579361778306229592775205354579938096784535300636365780973284923907603629679215590935481964594864001812696301967021160782284875777370734007343899049551224255405882593516713461562881071404177759869559738939912802606687986712341208838865901557929596788462254354986221259671324010800546184202631301796103493386489310823287540269227246095438800794487744136591766747576897163743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17591617714626394512321943939281077645742577899125479992708371808188084417042720163188991512523373165043118301419022556401868697141503465969950278007259481600555177197585899303649647073734762741036014248029898904115176439917129022173919813894403393478926212248174219504842998762328988994670366523944772402822259338853223852283563239259401585659579169329299670849460163317758468230721938558928893390768477159276339329547521190756467668147668908688827867366441324920778762658518443956790026342033338627927453896376784828939386204401653970795423137589940752659296977161770355670722546658827457459216374525360140627157479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255113756213906754108910714339939843830786764596385829998726134323285012665055112166783564222973431503124353750550368858605624496077808227525739873839513647708062048258276945906439512071049082199573730937104695360493849219979264631123272514921058917205174361878701763257439421623822930422133887188342547912387836490577241368298150797914258936391021078366099241443335442577592010138373359759460141025923354419675688613210118602476934233244394083823352760524893944956522118754373316560603110748032249292056535977062567662009615650458759871829790021482393491182797653552808831774601023966261343144572379435559608264919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23621616985488683934271343467715280563867387334949421360132180075705938769230430506476719896394853501443164328388525313806372578818570195043348428868542195857276266809549942680163640522872945718288698910100171301862572190033788107003868506448981761630791219781946633915561314157706663475251183001485916472075282990566143049343502981214320285109045477393924930930622002352906689725355636580274014687287464509902175275579754411041365248794389688415228409005942510721140591688968058172139890826798637384613741203615493490801980157295325319407385123010063479740952056347736604733794375230613558937810058565655791095631121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16266875857953047251904791175997061784476418446934252213308369323319798535551465843397731784847507998530299977522273129576754762103909486444043367166700079768362270578717471016722616709966810619899188950020143940520412777227935090736512833964268706387977528026846997116485710392810439429139066473092186206738100282963597294561663310861421033883689847447944028014994991377457304608135697311383508720157304710580885894757238180602227433914713481129374931710972253565740081078331219087619510547826892688894191376853861060178493729301691291158838015246182142527369603164869654075241794223792165064920761800726385733662981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19167900407468305448407851652821827646367562749206705434607583334576154470776375968524802642768493445817042242985662179584015856058287167011926898759755276609187002920826220957850281839684816010866075314465461979863690127824945535107838436564624707349971017728659403806455154589236033852945497801289699392701990132213306653816523076607379247321715001741759873684934525572179489980240367872554758480149041620271972242480954038982336722708126065264698071242713086326052839254769941111656141126621716783360443661323060050652107261239464171479627644376209152479458236630499186576837851681984450622391618015715962463030787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19978977007583972545693649786339610157345669143418737046537894212120541367642899226080580429782727187102951916587859975876159027128944224660657728622650059806965501127840007105379071390754350796054831591484821085548722626550126416719745161412035381613305201620634013057360658117986002976401999550743162886808505966801147078959903200572272834997835673680986652384498465351984726474987770290191390376895243815598945095217722837175023302558363355218025388595325654217247912393680037355923620596607153144658781317228791141701019945509806238304031172320248316204246361073236522495495355213732785486166358011935152653396893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16276659825959937248314702080627846000694044548161994847194540620934257036335278448357728134612973272488219390475752283746592642622048263196537940454883570311268128052002339361899316080221642067355502358142224148650455740320723421795982384207455551790812721794594715009175538438130167877149113571134450220095290977087867014728251203284258918984248371323765931879166808979468008491021411295312679177653056217082425261327581187600855981158270310684090973250327244248906147936150574714852402798763337538275228128642227713822889293165695693280147882683302053632894045409548244531815650752149931885134757066392282975787693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21440472936457331012944007355478052061407677621885021586259810359520694240927825601837401430007198486003530346738807318647470270753935667981978700978158966702949039730364464903509759411908810015821419045004966705074590773097345816654195988686670976393116851068719602507592912137392866653100859007339482834089258325979730630521745034981137498404458507080442871928095520164987023105178833500112433719338176183292846123167828494014485755049565284660625879463233361733026612519687993288305578150287430746168983796265637125538558009120333538498177228905438225011927429038007945922139740419304385243615826132835421864812543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23144781787632243584879574037988372131700608205378127251790838537563443620226105177966850059768144856781405172025480399163419157466986200402158696033564893112006930103802529044913512794850939449317462932556041085155193065724223401710660164552924636874131593280272053837822084860891195713764645573702445015163421589726030183476039331142705169320727544437668013905579111806234417888541176202382963848015897236455305138481047721064747283012131372999711759693919206212569157811926693379927414230939334081582383283600356273582917858686244781047641297817738245856163280799277228393074896186611985186293054268075154555508979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18618466111175988634659789725069332131836349937796867152521364185717216985377669186074347971147983734293021081530989015145883060570816758786561162542315137027830931982465309273609993986805817701223493454078146970304914850111544884957056600303226657923334971457332887614655016701909771957819482714292601834372941583638080900970457677770028458915352980559016540750580750204952453350468914475918761660261072026673960108255103890145000371739508324556788743172419185605915461951054063712415229167749733703785825114999847895997894008590943496500633408395951336952708802144973456999226865044232370364175789120056976191880891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16355476794016578170903685910971415069025876269988425866713859296518052260390119361357802821382779134813133527919635462894927040008387313317958086405778564209167546808926693264392613026230721466788677568295467807294304849932836343113059014626201485249229001639840077168975579345766655485459352651374199320621686495415845979419837316515124727236762946417902499757117550808886099100305272386332382201205731646872723441097178226200479962818466992750862724973245934456676680888703618619207125758238921878406417082284503281407121829712745408589550417815890924680675652968495609517341755909523061783330374028635669708067911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16255032850187270670672609149149173346921528847680248132403819194131285911063279831481993046481590615830689426281980176849874860285007075475135247941045428531345460237823498706944077056331353918006010423975231067574915062272551656239074345380796150119222183981418074046001062402786944155508498618291399532478516641873890076190806966193974385631706156331709719490440958212415185097546560760118143566304886560183344012662516380746542339171624926168699817248146604086502604787063996151953182543206303086267792677425168070199383561187288000888025080277480729057022892435284765335236202640296044298294289228765198188849601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "28106539954563221201932519267017710357404967820221935443934509779766836102269223734507952547056160429966003604678165244447255430086339155180396078846276803732762068279929804444970981078770406194270549970105585245167396067798029985629560574549526163347657373600418888738595762949842830134766936819131583102590276931032848282870297548388748312669429590095952471402750751506919207466035858867082158745040641268854986390513910678343213375765782260526073545844572021016257934149352978579366457094400004483770816471929220820766138754115518410008199690013123217325814320954253364289990509323522940341178251270735802333158217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22908977904589144762354800598908022533059530091416642347584814154615085273192965564432003022400859062866495103931227354450086565214931079866819607589642513267210814803185049851577944140848980376542316629389667240474994748627394113691332254287403559256670177862018573302463873614388021713520164746079077092976283663007360219664846839480276940698627300750853285318993754483794863913730196519736888391182133993296693233509644916874926000927062299009651508198281405554510323129775780637547977019760270935923235663998361029087247613802052254048728384644334072311354321020925898527078624579489750763254538447161604566824359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25195832689526769213183154697535309268830909055863470181626843627017520312402649884315329542432350608727178229781179133120118877928004401998948601081900027812425044525527330420173196991398878210763734196446352892794221810313485750780662861136273805382899189133519054256611567727486966563299213922130047264617484277790356920971366216404419799896299732562721736730304906881021487751843788603640670327023340993847921359872315977020523617604023814939321711959080818349889953891106900825984963693396054970553467629915317859741894376169293191170504737130212174826560368970948777845758112896575655422421272383954262557261227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23625113548888101409443950058025131711380225828676021108936579194741200776433377430589844533568459143403327008260682152988022454746643060498212581384217617212377179411827296178531294780577815830225029033781146140649087501511292625239006527921583682994298428786364560628967924294168287837710339877530776034230820991540397200790222775974241558162356190540402248253771687535038282299973626907237734642147913215627965375811289317308210513064611438231906769438399566700333822731509772491827906916947806385790729975505933209409507197976318904534498130226033904539440908946657483525483885535923441726090571696009208479081879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28587276027664708793844748159965111198619038670389250812552862685447838389824063344381253628299473521274762353336168570594688396740899813865283021637601134185372584200244282029693071408819557077998048951135546010699090984064275339842489225789666184285515342594130837185781403310648589230926602900072416634435561515423635188485477602833092261822391773454791394891474101238891623643052474628507173903322892563220175647324294582737058343913409392763050759166815035177329175646573952754506931759785928046719562529274190036930771062853456996358724430884678715321586867466720745604154558315600277140548896923992008026210507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23508937443841316298114266768379422911666257079301345248743262207262858686361923223245454050883411734122238498327492980656699496957655796921500918954140197102279081409833748240909148335303958542740457879617980307384666473619337072429246803137976534904317468748711582909935422652902511681598530271565666266215293030510998598239858259919674365117255700403451586504646051969776817194587042006591299784044844598633551894512270286839270950954450167007571793359616293603364917265331083735024448389832192386593050915017185125368791580304079283241647083822649851984377322214421398020047954967915206058233917826781617620741091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24413418253371629372965793297863122170128579756343752508440129653381813507567258119204653990941320852237183164325502585220123658632600751676951896985744293068827201295783767645990362943843275832250200464397085164264218126719253394263987640031469772203415170265676039214882403638703874036788663867008648000587037481623354349033797153849020664682099672640620677247929229156642559128197241552182124838327097351039721775193922305835687064665322436098958179703983093104507155360823358356124759284323520997577645194796893589311916525034631276374605396277252322527203904865206146602283163035510822832213211807940044043087579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21277066900696628339859011238299831803171476354587530252833176615261003083629516232137102830707144514472078642116116295441902049814539153126700184669068734915397740570798834949433691168821233980519239167027285578959949436005604543315972960854704184270187145891674537381460112482883864963318982140692886956847624031501152991949627609382629196638118964482271795803273175136926871888935900440831181100183044748226944868985938510464904368604942521670910273859646109895213489210619045988270549878389942685819107057200613645171403063718846887931641895048907258629798946822135026070700716318693840062679505843713020990044999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24330100287886088945821501340725519117103196485011578443474194500677688298906216059114011013720869619872412940760658684265115661853252295752828804419554105871204868399956672769173508451909914060814759792758061142883107677550794467268146538556648095035532039316130959584978272679164234231593662203305878807642524136885117339371560745162109642731252136259123001562921907672836332076149286195138950771006695690214926956030170903865080008206933671874877050379231876840159279554557369537906044552523223287714941849245705226849555273543480965258019927198162771475316317813657031694184276158561587025919445203426114100281103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22228769881192148100591466666691907", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19994747694375860864082106285913432957901553086389283430100004726261013863974586666678724822071963882315888771052322063413852233516279677632039032514978323172528027772405622295193657771238567880802233246580978675219044850214788338083725031550260298469871199005288315844554486328804285094017028529042573571847308115472595034948106819135792042711350642945666706329559639887772467197245302138697253691695453906254680935488987185327667269531161222034028603074989213063416767021266252193118783381739154394203400018419590550596355877656925578502942195083110431304966275475054029292774312092206484461093518061739279422513707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21990644848124119208496071921489969", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21883844637132617362694316110738670", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25882976127482799141977136232643330", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23949167027311393175135410379687431", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25404358405441153041333474899057349", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25652118425372750260676845035319168", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23040501758041346911461865911336748", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23227864654265960680293894907633308", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22964667610798352514194384003561228", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23208301084300493107559750214898900", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22627207069240049261284640550461630", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24446291292863280939988020909030396", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21583961361768910406437088351276531", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23339529063933050083940526383542914", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21840473423597025223091396616748191", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21257115188136894560141813619122827", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21425665759081880161234355675075729", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25950372867232231897291074332092198", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22282317945615649822236137259396915", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22927905206667952091321681749044858", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22412277407059170438342191687545799", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24342871099096451615878334455291595", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24651144738937034661890575054762325", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25448065039695224190181277059545458", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21102539087984144302494086371072824", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22964014831812518850931511870072849", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25351247359711390782623400127680218", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21344716161685510582907090380416292", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25447876884878185186254287378531320", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22541911967195780806334483913940977", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25342868258943673865978827120578075", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20943724794305307429473156884285011", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21762508278807703882199021936133636", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20906183081366411283842474124804866", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22371904822550934036152040296872072", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21110286728581659993581645178289760", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21524671597006532871884935284674715", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22384640066486571326158898651107003", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24925558779877301575194655175294467", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22519484588177510863200954111813284", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22064396713094098575742107828859409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21195728152759009999966886655218531", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24926267367578588862809662202263778", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24223361914077481513213537383514728", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25241503231363653783920132154870562", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23464575564622733805756055782024327", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24144914907344781263455041455876175", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23383203823260038630939158042022535", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25198170684668353261945413837944302", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24943486247976042864404818352102974", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25569546731268217640854335728231398", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24066617095950083350957141042736837", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23432198799823481932516301340654623", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22938886263130598816101476991591115098371246572238103737009279029153385238664770195694446423843579305029772479126262562465002946837926455445588359935134707076348395101535999783585633023411067954253940631835831057319675575492027692451229010541182680983318902951669019239760369898922962318294917148274545058366483378100738623602429671327232370201118102862596246357397640958571628476622763965299567120663885098657482245418309635956906828700143943725633895914810854850659040945825903781647472256003085108549800626629566147620597637333584181501428100496988015311818251192617500388665954343169105237833630520354966150742557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20001986433258244772411480784860025691163145763839392997915371663889096424832325217406777584493995922815264805607797394955775798175742467963318067271304903285367532546323324622196535914894158772310320355138991993704523663740098712056626563883047032631409260655028478108560935654813627359752350445661014791793559049253659354479876489756989945198769484117726347942618240890940659267069349700576301125193907733413377374375280997497019197468382456653086828203755917720471632631418638508628485423062405190097547016890932446305051110371810862820207415865601098896262390983916037166492931505641066288178074017390140070451603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21787104858046260013247932903541565182219725348021857212353889728482830620847933094041325140760355608601574646560084804267990714615857326412488046964029846899654095371447962502586348255663120437409346547197172418955727593901634567261439573194978152894230824170704143960884952256523557466028500019370657218414855706697889903207931022801761583893931416702526431498504354419008087894529819169469695493158343553028166173787099088004449102231248775833050975062370958676558841703282528331074163488200218031984318549740268539626425120206151299078319893052666846285328673956496134706647342094311045306225551847843153413439591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23696153742351512246367538241837406675544356066555139199187368457478560471370985571716280311729927252898150173225385358029092717640616712331146588979727879411486074040232478009735130080332970195881406996937755177219129056002523093741297767275830598777678906430604717354976812439610433210297672221784255663391772137754429904129981464675233606281876479628990613323297064267654934260547184617197920937450261788363890802682500111714900393830785294577151773974174741887998695986665592686721771747691975925929340257851977694927691875853795253881856132606587605193631090029419838562597637121211445241395555861909383016465891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25924313118205769615159630780496755218500319657096875558388312982429930521971840583750688415375540526241011361992636683843171457162465955351028790686939150288869666060787534303613833601984026369899025699514472651095809643720702948853281053078572534109235706624794249198756660502646159028218759898463708418175217777779850957077940144245612041012515355936946864720851962421851205589587734577451103002495160683073774758094111953644625574386874522537239726092873158258046272830012660014135949983982837520728013823050638035555305543153027222269063421575975370408180721688239844887673412068468373339734123197908484196623931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22359849797125041677966398997383382629294365082717154380301102859291069876957156296992287646902445356246777961078114696534379056600021811629233581718523425381093277882833761316393085251216573191674517830401290088843105082197545302803635882359999256516589650927422977370225467096306961969387561898905387308484008573088625631021848499754788333551604794848977586027537468999597150491037235837416480320626225995139538439556279831728939154734123389774742546903032484479686481498882232979979161630692226096546468460834288520303423819943632480372364525700504451724479948593493322404590025821785039265596959431318951261035171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26529234784757996266476082971574177794321594784435992065970411985898888853897524322364591545573474186898922090430202709511540287966389897032228177057019155876577702424855972771489816925142999037646395724740585814178101522617929663177064542679116206941241172867672054423304511655096969798816394455342351705904327006263510977713799517731454867932775637761899106364077575455074478083930560394290649462215305828756792764408389272870264629015548047542813589584717958087458997222278051833808635146224927358986197036424213299765752452861376182606439643932763984544326109411330822819438881745289677779186233165290149647297081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28434676441910060945304816037013428947597545972883678466757958171806550189673302451602277595363632370534018272431217055224878266373867714740196215416679659481029369397000958440656743076580682570555574246309175344072604271861769245987832854356402579035297801610429274558601900001253009609033117133793908934070189424174441946074354082284164187767130694842481104300927491479114026176721651226283199854537390498661415338658284308744035776064129387645385861458650271139866267090918854249067716097369087686239523746971609468267980167647064277271071529282958452808835379790686577331198457756502958889478051675627696585156863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31012513895452891650428076372078974270309553875150389871273406462074001438775146021905284082519986361235943749731612938859043396127911383997710641774279100548926849968789187393958053729374688161948407844490063285192797150166730779958541227354745862729833342920250853800321355028120520402324949777993955834404290079266093665649055959551603552732823837033812772278386846489835539110845061256904767855584332044261212222357741973402716207955402492483304414210605426158662211937609472617842257083142031446345328582743847529056466341895258520251440450277457455947067416054099954898647990777363769114539986242987112570578937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24845924687095530116816257342369595433411352388030181541479320905801352675707123720024575164413036047790409969183933166653512001503677119725497571689761968324936089376571738527651589718632648638712345479449870140344658885304620378599766283223673464399558691955931823992443869664035947873463155946437559326155691895317623415089381489049800225043977548108039490143994960731180616119556653484194002972901591771171200016026032005763481646133432257467358763142376426733768658175996957985966198428551924053111131728985052202598829241757580656445654582532586498685159399458827283388191492416937477735034343996271067412164853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23765849280619155213529202057236757866351186217598626328410102491167835820892271015124412540674088494236741273879661021924630526182794028463319273726628939951911281785780320182920864363019998217372644196397036205897501916242171900072408688040116213509545925658645925487156172915249740753653867768132275147953745855886922367949425314574192397716452928079397314598876273895016237124855795530803632701654027485323736419668181340797099211640465534357920739989530332965659819812828043170777427789684029470495545030579023688617886463678159341314976431854262927653123657272487896720615413499462935378784017737783167601243463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28004078925796472084193831377522977380386797014115314925323548453736339122957011563023652739955351022963663665494124171371759511890650900984208473946281605319810174449434434662759659380679723789970540776664200258927872808407691669369593938160739517578725037214044173928690643303348070219907065603323494607755488832945666334433547655543499844627261926581552796745612981682332399509787830636853736745923413234506946427755729176071451202356923174038384438411573280549458567856699273846805245986773037295126759164812969841064214336661224724443668769811567844239569870799694851173611410534019967169242545348367924127362263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27863445946696426122917925503465959744619802247962324211059453177929795993582231216950199712711085178219664292045708869194024121885891510884431381981959624226293657971321265232659112704896267591349142653539332923743852740733162328263550217470074018997138188787796798201280062635976513917871401028038869913557396082917715625961556237418210384786156231227101106631165440094301071275293936634812222238104786043444889110013071116614882124718550374310201944924071167793012475447741054627841596475386913957413805002935765415977537321905906131212074856424788252208163872869182512075174782223581336771441478599741021439582883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26786090244475640957728725852131158077212030709276636991852386268721091848989225372808544451392740785344396870264639113147339957041322731780542601361633178917512692806604394414594074599728481340961265359726121944525678746291645437252121498212361304848173566857212040535438624616630180238282237752804002501017733278811206746697068576630656734009647825488361520704165572023552561464763533704194790124342274011234907167103765593995527504171602680464735074501044894735536012231491346739077989677163651403173669222930056100974248248694613653844659546709651470951692896728669574540717417367977280884551344873870251929675389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21901408932131778296521868694056489442486260930666452977190507622551375711574078420168433092597223545751605527362461075363654096014138517143338887806528376560790437366651435290863441600271594560391868134029952299753495895203415789610031273773536340937622539661771076029925518212268858814011811687542345466524714718729207662518337223755649983009177979935119657168855425017674412319673479794680192554368779518292099836980981220478325385120654253309182627085930198355440968119919464416938332307992476789643961033271469881707957139186162653725672125244744319869013837907791526704067006294655630542996285569118097595770941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27593849671220404078589299743534327379945677234464378829792403082095574518765130220266544447014990272726254933135654445757646896937850785301556814677105284184357017595555357132630688723055169423401843554089468521302156400873172579122822188097464861233826200815970011143746748514275692469903614114829082967812794824691436837849981198508979540405464623372214930793035936610957318931887357891750264087200434358366969474094712580000271630959786908253064538436654777175529349280378587032680424378584306471018016012555581952260498021158767427915935805691919385286885148604930448390026258101708929869059605612247647936579649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30185493344414733106847983442292311655657876205215007323978417548643048811456365869630896961103026257599113211370300975985587171393103277841290665539370674919780974759938902529493880457848395155936146403262712083641847305242977484014255732608577323582682736648186694644253842448251433096263895406729628309959535003711789494625247862747051347511716726550709594289777343950686945631116534665929696339151101161671101135851937815877070827600114750230659658363305051213058798296791256022954325694910455337440109169827337189670104900172912257540881856579474270884849157849025411731459219974096420587153870420135535817884591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23446782382245047048387433180940350651020948537435569936125613968278527957034712108503215261210173411372493201578610664854190454063638286585349315303496994151185856542035254643695169370922691669309804421746948277198813518707336617099943990673709694765685332174447468199869705491722113578314452992661807973175635373028881144442550423966175255819823446956439221257287258103878897239936374766619172437961743021463976343274906495601832149492175399404708257833129166336571439079402953372323711252884579977858146720538364513252359102235996108687013701381266358331740987700242245077415290567582075344557338648402099728685939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26484309464065806518051207837189006953275724057283119692926115020582291553507345433659953390603906810897572515576253161941488090941977136568003002375644105691788074833751923582714391733035894994560675132361861292698683790584316669997266272286340867979349653049097162060682138094117895566308884579319034911309393463217943612462076437357764999958563327770677299104109283795452183286991394017939737622996102058592327966756940625700783956824315863705837482972798051994131107526797908824228594495491500804524545407780976269997305176015945759980826653047769960636689261716062330780945543490323849139110605691500560610518059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20641585709534742228302127222923774786527957055497195541750162239535250411264851340302701483616629173303546736294754014970164964258658091162493296827620445861315720073934996505208173352085454926841059975990744794955133240294566152849540770720699928587870530136847276898898635395769723895942244124946267795267704796660746575016944967698749246765683186046891646758814642839309747857670703143422189195414918413827894774912125734728222630443752744538870303761280244948723582316694396638204318389702906199333569014569633345326176168775988782247917646538401425395287294135945660294762142937197353787269437372180801142808791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23453920266437218502381241807081083158767967249747916247237063968558436461595684165743690004684282291011958788308809903021625681497363216644273487320606154243146025803104904346353196428329751547651907060105409479633229459212634929582406475542866741810612259068849058906710013336158839377109676568117852503729612896571989757220435183769890449978150994927501236156552304655409503463923829132935316252221096323323590412917690427797858821987077423341133924696322286066106653082587738945987192520647917673511320381080097288941176911211949316223545181262953300111333277648568046857975470664700505112175459527144611860069301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "738140851406490840867439376580832356686999142071337280459628320598514074382069448432732770728898262925546691599192747510360687351438162721955396072107310604528466525674758220678216043501271867174475906148206475904163691046013310555661251036993632215854310821220129071739427715412889449856733072667693605529163995946787515205211145065317950525468389593728565726652980800183173052559938264252310365324095811025956875481664530483020093234247868819672883089168108789759148007456231858755314128717825843852725962663177275723523087020185087950367741502178883541412547219243437810875144189883055676176973463663287581979443508029762375076475454028933245093486217982869802393073503810901969001647138127339909535117732217876746552990325897807122888364823053949215587597754656074486041183246459451177052949189230291102396524684035783897464009827187274132493721854290633688680576936893470670389420020116564475201373308556220341256937138136898711159500994449983854072406517520411200250641223467164275168657402961151106459395600427824922898728634242139013561780169783233103554263920430321482141238524497107731615625724450615867383231255410047491122585741473027874403533746801803306993271130606284563997042064410947488242953365291522204035468732377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "18927418627909623244935546979426140824569633251113227393875520065258007278641587926585132100949773294381938604349165236890392411113730038542834144490825848924170406343649182167868021606543293369966042289379975471094774883100630931710598431978118977283548470860342899488228738754312779668218002236628158783533096975897819226951119355851433433592221282575218593106556434714235776756926942028954035890038799861156917965362532269156941271711266000765109900372256440947144999006910427187282623053687411620054934220283145623256629728765741648776845623361947994284328581080163245095977155119334862914254481674069672352062347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "26095957475773449034635753508038248780846785148391738416286833922903723956610928470956824046134182923202819425947053618815502491071688599627818603299781241285680875973917017929352461898756860126711324500074427446704563331771392451594679658161735849391922015198982255667366122428249384825942286430265583723625449724735324359662036075438986328306994266034341267435027461728208361586632395954142668265117144387150109218714000233448948563902384425504374721850507215299463643648849813889987078848523988784917660046616984468292481496169331927107559589200389213930086052508531060904625649478418444219167047405697110663532129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "21785234429227347875468855277207902419999631780151548514446632145193483626336124878027853818316468493126729817984156494607116765274211893043643830504110314090370565361408259900690476135855032497107085044236796114962093769089836417623044044806264233013743985091228223491075237581917375688048245495400646503110115136319789987161428818830724532310405939679405750138112979773892389847812218792133673555596247380326412223620851219901065642866363680919127575161185750229755457574257325021211882907553006463318172769396317765902719941626697082106984167220030671708021280373831173089014280600095777180494340723300002649765313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25922716520993608198360266970263208670906806414882565712852948272163212009201344603699645602916472688100667756574000655975115552734874004195595011756796300319891324469459613537404055328518085857988316011144298358467361090368959587053543705093053122502469964351735704215692294921589386925797905824435376572214288241246474220660800222845795903979153346613010020733214968251613217171499509475455602053037903026324171426686367124372421476502638443015872876348789402488655079945762245985276171562769693142641396878257878437605665858350333902897222428629157104430229417012237306783267919545804183938086943289093186225757063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = TH, O = Ministry Of Foreign Affairs, OU = Department of Consular Affairs, CN = Thailand CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22691806528264713052870267737555007", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "19680732811523397334974962779948925277407146329393067121092933329240100576768752630571609276352068475659659222896917104446881876851464350966707453955597029506276579677281913842209206505405956492656546193072377115129684665945055172316152458800638496671872477569122405145543201845835824988229992558692022728016492542565849132750492335394598794866019769246526325623605838753496971980069062843164141515798024042209539353785618533427282509228540480718114492667982331119782405101933438875037344610151273621835291591978637956923097453457480069262959002709743757430655346124617194541353684022287329282413101333193278142507649", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "21860564741547306146141013578805053582254068738710861960171967859200608474000516876917532410454927882269720456937685219974497165469349680411452311513772149117721945066853625604852720020191616375870219115424113536121676799125358124202990978896213241314918586570067406057808342326924155471593735130235203229166283925605391836744699352725072483517434672223985283547574719078773293006340806862350287441521221853275300315318429524665171288227352054607815033769277152935533427801379371473027165076675840800262983958566443734618056433251954386009045964414338021159913401159654989645110083215144884002109554490715694549103701", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "18609323660424612879228255645484686504794524017540472063109509705341299438976450964479021073313807001612167224320300261337714417278527556454948090653785728376321795122299083414704321299260632099594709747756710496811204777625436990080922566660609467451226969262395118912513751562716008755519423526729020091480195788403771943255331722163398499750211654922673058464370814535446701677206296116223131685043494580296146853888313869988859705969552297778108226955579222873387220233382380915698606646877562018504470770140204440843408297168983523805395706308042087579056110333203630972351560281441810834374696036680425100634739", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "21418351160753237270500440265395400009301792782734347232568258791172263704503053026978322337184082501616187303069961671236846781686496683180450628239643414286784330687812779785233993477116816694652358897520917810281011325638451632081279619215635074324085757003517881834354438515246052436002642516670690407902134928395611360218467076422294398514981446923329977895144426745762689766766526566204131411846399628106373941719182417334805116932282583212195749734820627162186119375733597992466216013326027195399001525519316725961271190474415085756939101124771078346397066107514434984722322993589516357836281434613630627885769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24532207255963590778661594079490589", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21678057856058379357550905076945672", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20852526598172980840180841396222953", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24058652915324182779144658366732111", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23221064153110125735967935264373970", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "777077221810306369933261398927957140023248648419011635420314269183651219880672781270197891780472837441624627035214333734599004954406289749908187614899550058414518812643474059619589540003909047639541334794587429790899679306265971858161772722081257170839253669723397102633150945831499528266021561423412156829647556025783447249922865348246793516922540941996339192415745719737630921062975798867312522708357117668853071033479018956718886479690524887528246309170690098394918623291686731641891866823979054893362115719078902914017204297357155098707722262252245287427947086905604834412098018696404576965592265507992431896043866789592286090959159147290733638671767916005082021248599254355218395569860509770319171835977687577663579295060848169254962756306242337632461146423184525236433950976313036205451236874532555662529778711051291030007826137906415398615738536274772629409617012111486853240302043592784339240942653580563654330804915262673556827838026572584058731529165202493890821873533520358289054164973466343818465381432748633103535875853101238946159112574699252820365069207337974642741404105593190367929772210135972087411858228320344114434613382433375318896425134313772981009033561167287037931068508824114104118004802845041632152457972727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "746373289405710650882974569165805978417333083957191346218742586039486788825572081807840274863319360881573654083755984163919534658456847506681717609823369336482338202601256778766429968663280013887362033183641637232720799050400973948175895067570997889241913012653252147398130114542753292779385350085721533435796267235729938980494677432246798487644022270332370205279809353055585330961432446331375444895171894597684739100888250315058809897409442991435698291768787571090962828601734629863618185584611704971564541378357070765268524935477215205206318411670029581411835749892000472333612582558349832946550105602217090773894731288179938767281867016533275079488598650463175917064927464155363806380412895487910342411517115659205250970484751041850568759227596381138017575930528911487151500097442109254003771167209393179116110840055414042426957500515341710729129487259084976987900461320241798721744378056912309544356122355641024736603266627330611610929931505217188754250093167885318664955603710978946955949400687743685133047893829580040802511795997373710462078291608032387104148377940872279971065365382078976906378689994872245415025736487815150175455219543076075559164700162368649790203464696014439249856362053270599243689107094307436017042942653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22494097984101433840422643974487445551645413620755545999535961568263293650171682608431996262065875497705518260818475042375284802109080214028147479477151121527074759152030642739440493736612562388378061469034729228339475863789915092550214321291630519742175858804869899223968654672749326881565721584727963912695350164650844270939033275089722227873416533737961448831076138371048837414232538337986116832470971589725199189657306479551176898065285515464150134613028943934500612415661506542510875316151461998316016535014847200048007406937894733165557182207005416109582526414395772493218121299082288920046698291853783720641253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22534508002640382565157183439645349532722288130652912265989293712024195719287269950177221149855529953104222418954159689648700519731602320337758798036714661175196193707127336860478696987357130286353594956161622771902906117892575240938095393120996400284421165180241043998170506775992347018040398004973057136234317849946611256711381315449007913003819101784466556841299320033214846464144412313696703907989951684365794598507422995493095398542851431767837796467873362883113911600044870130029731379147842713131347185461102921083774716355832181533129412559428897521428219293253780042220962827740429968037117896166096887597237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23485614053437828785114190307716403099471577396476234135681885709266868764475775894973841708089571659904794121863540894814036599066295864857270719583589960551661820832572315852604793937426768411123229628384875443831964720767216338813669509221124349965997358904515062818761653326948901625275291668190460258048566509886332886789882133781691425373892788896032611871567799244668828690879625216881608348668295248447527422067881015611136572383321544412080767263348051376030959896472048495012897415289776939931687211308301809533536075258691930177990401724566645462881563275852778372962555944942317308122434576986894373287483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24694932539297929123176272775316027714837943382406655185448248648088361947339016115730744422456601247461284483697892704374016784085642755001442812598752967593196263345010610927584993880568435712170786815269311653829596415697806496448115004477815091862855870283238493911814526727506161420343232164533806234664619911896143739843859599240180621927276085510990075991209022807822398592761324465019522940651943523930667941750312133338289752852662448440530496895945819864804448088426547589641503195788959058945532196519212367937920367543593068200654558712890018586796282695049400681151133085582635432024037693782334703155867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24390787356379163000953218186213330396764273548427239149775312147455566951845572923265632343949539196429631533239812389027638453585119178224479408729771956073092991037648693225996828697679100041454042828619220077569086037574715309279304702257066184580932538961569492956409856777328580546092715108063350579834458024003797622338221650782266712135692834035274482915327781122719672165727228936150574143067839107850805471758366732192273146841964392089787998364004537592323179926017639897741386074626630052842728827016450484508717812625418598726635124579488645958952746721713955246594819509895211443173734370802961066936799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27448281610964635869961721450260929964607293837970170360432289557447968466041265533336845771363628253190139836215113837672492427988854741044876800446307284616255038716014314428932599758110258692940602124265591016253490018402891807786442543606086742166986593637862146176191546440486879720834064633534747675752240678905765308633477706053895237226035976075163507193053296297997107961230212047398787474237610530895627510323997617202513549367785545707126696956574701751367082747240214205283323097539056484985063262573053450843825195195418873895794497176293658104667461120655258897897988461652340440945482217313447965237329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26358891909694260992633319522721322641635074162302476135145403633362675538068875150124509410637400708232267020706668361960156638926943016842525138518723594939542209441951232146034652586706217291110147888221774514900832438600979295867083318305845109678931150954081743467362388196752119687692506025332624034131748571615060388239386876619066959760689686361771328916726591989441330550710831110061450107002807259121188358057935195279351209561595011253484930809515409845124091997632182958132254056392801979354218405213510249682861261401895816019429365407242021878157237013002111079735765276639489260742879124229539656534181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "22615464869248946828857203869211146891444889185584012068805960842891770506158662657645205546704261591085805192179855219379321887202517601236077771070856776617416674565632676562191240267164557806763653649048484768019369670385392691182019004014513164197607942766383084532009385666759024251716823707838063219416815680421976125849373050689839047605582028009301617991198368594420414525301707568542722023584021318078851185559217310998500055744535552898903419731389632422682905449087994564707551565569550422801429723002221781357789747363367441771745214396804589818089712099915373968521497775856929491428468674413656993468803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26864723589585288163468342125868595444154451445062611758424821624940563183360235298384895455707968435824753041652990443992377009965027567333367410478561335067119719625536860737810725639874480938903762510576738483538675649954773508350230669692275715389116414496188576145076170963927789830956952922131232719577517754852379164666103273145425831697661459533430861459428491209173031321928917037566858999696389020503117249547632779740385299746625792964074411237923725750376924552085828407438489737087871918442790736619497798367973364960082625412122261816285274387568734548274563315519734922185743023857864961083833915972341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21566834293508995399549398755222364348579489081994101024809544514966780856507092510053876133597298294404945380867338527587986372201864994075156685217134254479243778164852462091552902415807522538742535283367032441533147435847752342931822997366207528415660062454517353300903932669085996081780180035951237361716895084641234779923708716177440577492737588277841289845791024971511470329124122063793220227004974697810101179073692097018885154314185187659533619964752547655163970859702530323461713786946543640762207165625937107569738801141705771052048861172756367673221979859601647473534355317821450836198225846367192633915019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24130053488285085047482265054658052083447839021138757708246968523694583624572077536703479234238460061034142031183540710933696849844462978749432093654545778772471298354429609139612583572715470635819946062416414202358272211453977783363071997318311826810507428661891618070779892110599534277510600137579445977331703542889371641055340770852343021476405197028837105588764924023664213917629856836329476265652324745206475805531642564825899267584854451037699534806147306211025406319171809953774249935169288540691239208853573765417626637822994600574094463529217638075542668757068807870060641033950793081350982405135558387916213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "830938704714703717954230542993169771151257094946663688842825696423471783047117648616538639336517338139894014845256693581900301131558640149453682553241529765317171150952617981895849060087442757406412333632312246754636642934184219340001578439504588663951317160636761061444562741032575071706428080600386830398888964404344143003003331893312909613514665420898283935692554340951664766299381427732421770377666175866362834700034299580682822304900176716406317767404363832450328285365241303170641050159534981619347764145175273251800425714947987819844014260035298608655933274108997449895049496654220301339659068801080993375461721667318170088714827692569870175381290726327931001418612669511055099963967676357471662712302359230319175430490975525979294992632790712981437956590977817600074538180804413672064959064289041512084186031589741083362058429914483809477983884410150221807923291682181531910401379033649321907581267712346698738634872730039553375839578172144791961514040925099077326824848198168943703091018352603518829727161115049201495537834509571827811242405483863667190175067744028670886728925585271881206247899212089967221029751550139272183672220909660684154990037743814048834934249314425064038400822569745360136037908481677163124438144453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25476693766489670594213074607530887744520520277505732854980027127078233182200096591778163939905175969803647285146157747171631678563821958666265710116994466588876708961569092790580249861012173890998747445225944436574329560793462369268525915794630506692548017743345775298396835661423483799232097603095177815902613218377625463533054366134099484640116231389090666787597299207239879789272259870556881797215219384289935505799798237288187399378331209534820494573062600942440016745079812693961233927618236036730331035001513051084568760128988250600756247604351220684109027027837626214455613659209660808621790124703328794653111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27286949804008471593463587516259229831741439374031241020528865255629244060341088413383292222692635406993351832083163068248201899061307809687749988199350299372752210021092054351108282723383400663844735653888390010861196670048431609549122525880488182972105011974628399210961140177326312933793465372077426268007745641658614504529688986711394207058907623941842192252947884600508571960524918305143159623769590060093322413518098969816628679678116168728207232440634072264449198461074608977213050999339065619586648784136113063279735522152243988985768033328815808485019903072750765740987417739185467859052204642800311846700253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27699947124340230469440919917212476775995087664433370671954073735483611499634152360517576308438777649481729646378607512502645907377540083282569907315597425717042589928990666819591327350756486196349195064283765468884377639667240764968338050334930652405935443183232685793265545765677127009015350311815214404032745264886538880185711847148639103315023405227815181268457188735847869702990261721688755593948472102694326737007629336848147192712315451650541490112835185476476332342771380564758405881768182584730790741827596426215894917930973884846789955520754599464551320920469865681442379533050361927174466033354920462578047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27378976923419503872343833317911182857213285754221538719132249534486023621407999534661196243445310724737804701299587479717572497897931173012372236713782565119304919614651993216536334948484439706691779877394143849121589228056337387061320405800292419891932003915648696867249868956018731238690285882418548106171186336877863937848472915533455814623902888427356185849258600564228558367501704714756816436873874623982656267674074096230058274278683772902035663243643804487508799106549872185518977519502477056526084413752814352831706160598748662831933803791132366874688933002482231458149623844999184015147900115014235712948393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27472466749626256765723433060999425872956137700653895996854725950422066348066092440312485032443508137116816924402095001430813413167441465688136971493037347807573029271052643600461673288008834904859232973935734654147610260429102135375026905889842151808813777050660748989681134525301045529146917618932806697114208942809725819326933152258330632843530858504313085795350758850933465696474927839612383763692956829510414951938739623541394552984739877507464712383109693784411538264754646113530757318017678757213448700208425171163156121773397168457292620068720179351616742128172054511559450204590204819474719143277861913539861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26287178074872852151663378411986696473271874484268493337405220321025785725664376194659222195543925361571061180405836747622773720673963374004733295172480029188801767551979162610445962342643586892043228950982829793692446150043916411932126531835398174436266647236311715667379332713139815197407253308528431464586382088103435786839860301158179470526025806438674403889972843799358378104429480401699463635520312826793315747312000085741005494337761474106374932853187336587978567860468977342363635555780722251469400099615468736607527574512783847132461612191997249572311322558425245422213687661091499085891131614371899504986439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26919302336368128362129624095362922765376092875014095749964529082172356727922089959074622064333261694016886372682489771642113868991215326801047916408213692159863157460271017313644064132357314184062955210580423917298574390330830737161837589869161149059915614965649825308308416009509517474594629363954390358110541682950051404432215715944976096750824672936263590217010178852558327039964173137919880171218463765510619614680239096081723669740221336432516900299820103730871851065401121905447890299185724077633862887143287986280704415307685730977031193935771774974342088906080130670635646718911336112716006117653746564664349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24623869505496911722232244207145525447261410001992849767634748173476895649509883398686834845734850480843965067447328364809404684223818676277047392199793437850216661972926221059207240341764607401773306570243563774832080087995240543980572426743107205384595118167924673557016514572057736672277861981758881659790076475985826467817632870791067711981833205528248471474049883783659195413451817679730728172767947445153388393758442778934285625184796280604719714113521994636841963239882918897108078637837875502938132476942189556868941568808859130625356366922849373812002199862604951172001707886108599187755329485831158221399973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26311122143262615979765231547805508747616226077980724642696525205860388019264474158715217607759036195945422664402985258950713314632946988168181702672884530726442178802611673596562823337031127161415016310336765338309161205241192379965401720079103623440330668323821833819027889016252082867994959488641599142072255843618207584793117529992283105921031413253485351875563920072074719014242396929566320122268945516211862843822077257763142623615132161154049739545011172414946567451696915471533638196387749600378994832122084941930277264170607208457184848649276751195431384656053721817048804594879251770095505358688440794614439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24378125873176657275739312430354385201517357723537379831187530467558529132147517640449835243650427898205247082641355145989810140958358586853649013141151219202633152647697387585911955308336291222408654139593744051584370911611167030858450989878166619284948490848717340235269990693017158074199992871480679906444111395747724496809305932582377224564075326059282927005351591565582242520461786746047802018894425351155968108942459738258136766319487472468280431401688897035796544133863130968780204206089925008868213232759484268040618497689823740129681245704140521950233296113159460976642021052566373016615429100228622357863441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25567733082332442413767116151797700818234694086736110351712893494794671855681523419119928116132207856517910444334999084949183604215205836135334426888474875040464178354987745404388715091660937737908331749102020646832286309960307746821962756834223987855191270669772218683353636191252611189033234006626956610216900438532559613325408067625778823592317742848056861622194741979166097207167526011075553886379856856028886223509739210541438247103539249613428564375892994038555160625885673433979949777777093423235248074970048272103516830598614281010726930144327762255387454207226618500468851948783020053464402262658638459672463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19728102645868791969138595603051455042698808854444973235102299149400428765176752781106299655699603544983832919356772093563630843148434452005144084248078767825540155218329671807266354255780471629589224011268640218408394456160589351338782670024616015511753958217363452493433881946424143161699525015766097938663918439919290875517075847567277512275170905547555073879684942012031476788813300561218212451745675871133041815636825035657855359774287933892449979325638900239789118885096926183420477284433785185366825977045662032348125656757101213310926480031535632033450663326778310141874295316693721916031612179853196892234137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22635345338698678993964309385249830596644600865574836515236567230797149345605654318171943009995228461841067311645703397500588486840714085151875823444437050940388558620390601154001391039354233898237006162102114834931868924608802189138145518899523874584284567124544246878422794916562353487920296089644572519520170393976874270790222208735020292125329769967981391086966487202196958904996118549683300888462060281467214474431033118387180480509288742780225478152361842243061773559104992064233762657126863901736350735599039388312971704824102264181714701565522623532503203693834316234001645523536362151318965488733596539363547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26454694715351229079390920937006681377809111485758214732617018305875096957541141340684764695098134630795097263253154895476911215108160223787657880114146022733737006818128699317400177362492753823180442547475897030146109202366530759253340145872298662793546343512619689937424651803587842726870348775304045329984569440146796195774305418096183181720202104218531276796261567988015619711542987708433053587567503620698598940487458321389002164441976430343379153841793361585543928308793481188201334232556453884164424619564484846936747458094112290157110065161304938608482352618975256410521222318219266613403141738792404060685891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21273496518018825120841410483970567161572436375237098758640333987062859866927623340480508276330291151921081494959197504814318492500754655404665070874381742248368461532310938598061667368876421326606066598932582513454366984261476370754773532352635399141236454983585812951560862112717304510580873021230399267318291331136141550873417184347150876306189957239493144962211588049920152792472014381427238392870345184976811101303488040627552831755319383202922879055249141758463501836598861053489616970859822132501681352375810476934271039151608062210839703843434167184768923246203409545546167768787667971173513770526505614457823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24968293247181715989981766460537222044669094129750658996589460075324559245115839869440092247083128155174822325603021253577440171272235640798568142300616251248519028546387173232929049401804349361935290605985214567452856379088794162877841021041174582828399568617227976430193822873973019197081930025957885134938257646972944413502482637096888662495458133029781203523128229800582884876562658374289662873150663583975569015825904003898595265618533444427665036177463969012114039913244895245096563770110758218850568051430520949655499200873941192902946455162054412134077328438742373898899608729831025481488596402423137761110791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25327897898947325401039625732892351946114366444427419960695685733602033755970358068531516767723808573517518810622109212234602316248946610469892930387343100336708074428455932578510915224425517335794941979303933687002844939362894118476682924440870253294767873253574584657457235926443663386665019973978584087737857428714634305434031083144621608454005329532270132851657968000647567817475232488101628921550488729889670453941780297161866935385133705818336003889151193943667970507556342913440493752618985161342066823303975478175280639262163934671593518719111837580265277596177398493070024742538675431872333861009487692684517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23485494823475818114492474857751680170400446023864733469299766029530364659664874519626905446378467659675658962163539425097911560430991451146066667336611345572137095366534468641400874019594694475786827002557339641775824389777808468680513847671820826789089812856287178630175253980922117814277679972356054856897810218006354200439368993539455141769045768353846625727983699279601092972423756970122736973470779038988291090034567595329162664619409568967072953992848300993368404478450900489175948194488837376407015540010840263253515519588354742183090595514663960184434941582208711010364884284708716877997936705890008030766367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20825613719916219301554229103375765035826233916695155336283882170046515124371326085539014487073805348545148924563610027913923131559364261159379865948200006558061489735739520898029179577699630836806669454732017430109799489554476359014802750079438271915800327482828774729389541294802137071490858881296262140119203496166834922120130600332830694283653237666283984341175993339071093386422378661567524904491215969933294137139842471044416894321347823325896848613403758500548195651072382811597038601461936698952327516021945701261637738933577630566413278249708913919583614333705786630810015054638207692160874503807396673580203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20864887047821456058304570633285613302084024580925254366561519370503703231640590701806994411086020411712475497752816697330313025213362115975721015260770709731423664209825239176127928122306985946376876870374473127014884613988607986214106662780612428695101898525518202492279851131623358809965432963431984750970734202016572026715100282298725524280579661250784362222991416270167319532936229314475393978481740293537432638690229526729443470026399355853026847785714466719101791281736389882902573232467922708245112011089658983357007854748354019521079798364602438818366840409310081627689866799088020487625535663892298984317269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20304865370829663677738495460829499660794540874892697269379994707877314098365961357824021985958431662783803956644576213542233172714420111311196792320376127511604315251432370777408662380705152946082154904819087864123479283416471085597613822824204767243663133823758870645109840109334440443976381737991814358169428162340120974350428136600137841470359348113657752915795056119425797481041319929792293128158404089459224386174710989841207161178791390577292545358890969328211017040376573475822448773056149658312185153555600301891082430453946992908529300984642064185486993385025906793905651599827395261869686159887859986855669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23565714004479711587175216398151391281967847186727454546333027667012534882329274722755745088832045811709041062776487974641146384993658127389986728025583807966327268615687463987553144234513855396380559005756928058720759840133442873141213981851060185368155178822669397731924552767038375213003348236614913766902107540313933849468010550570853894005277746152735747937377703106955848636474945624983766861681971967036480399835974761046530359739412665748737630691461863177437169395458009984558667339520546425077477763417732036182111391743458441879687602813158407551777649817927869258159491307051711796001759180202830084380373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23582597302782235348760647644283282685238537836378466604848507238576282582636656065378740686072628158533059685895816146209687388764511844142985981412192509525006895073332113586907407959329136006454054015111344269577003349811339315949455182227192549050135676305811301557611603002183298801468795959100470811806664232318031952766278611225617825628966302272494501387013897090124414320788428574092535857781067753044642546107699335390097633751225890178059520707592607817767008720452878928755134117961106703613218887507792572781255380997759959931641204597510682901361319301893815969977492759459358160554514170304116023864499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25787368994679797062672624583869089380677015339273556597406958168679288603416580053845961227445575012749613487217707717588701649141391515694330371747471266362602165328359049927125736956195936621364229491268705046661590937712490046835159037271754916906623284894356459383877060141209974691546295738161726498646949661893903661429403118546868908957440438128130931736282781688726328549626335424305861802608900713814093480295495160666837939664854208021821323702176258960049814240905222184856545572141536953954354446372515373947485804383394067345204009119178054081808106954159877706057689239453321695997405895329171714530497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25053957379192478350054000019188034650195691473984477821106653323078409118126369572269896492765136960213715972538881159413882762016744236268943331863365911802160302889769408627726310193888798960723819737642070430302468099864228098440860800033671300911103011821379466287341944246140532429502924188900728384424252496626800265419693610207081401133764940149783360200205628236851410942820948879297405107563996111856481717761742399922143532331600853464489420598431278060933056723959370122334134303210648670468283783248631873488134332131123136212222789560635151877922256297648708919059900455051850669187121457501258641142281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20395819897926727103900708959139072650978225698850791965710472494865217044825645195633266574862703312637431186827837466685362600952241722616815539159895218152427118926874795345712574841842132089619586873484548008181423879064098131889537610645352782955271598556186885878033853512356563540893624718060047477879938027299349846429684707964561712957348812421682300627913884571808996980280688119891553318183276351502518316527130591153280214117183287128101134526287255858703505887365550083571323442463364236629816672589129100902994655445629188590468864672845237085355251958984554923530095594303921303174279931395936682886067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23956906966298129961393992651156956930469231573099325704746087112738057669696961046931926479028088550638828897712258715018967746867801909973606764259043395589741894561834201185539641393830853161996730021897400414650108299681224124548897148539532362895620956579466946168916085530115951139953701473652677107936154306586899320888063016615585278442178851545455489745712369950106219990784180637066003388171152156144767778516684449861061425584342641785549246045571123236881421906562705429331369878584596844849333746150561552542012088881572995274652180317825819994559122656235053132427615665454518751868530651971373288834903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24393240515658175190087940082067410828183226399056816010416147646956979426389064076087025143029471927247798857613165710479391545710657586865667870239349322279776790640599867629429145205283476709599044833742017607872322422146755480131078161339950948448104818549644990231639920028702970208049593037728512740099760053337010702587149309052114895016186506177740992030133421744389413709466598431534627707334675471957856625340205866735570636862208286119589660315922884594596427838989898751893667048620957421601333806682699431010050610474346905119269722955058099875258005396878691122423880891874197230509253349363372126304329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19479343449885554196023456620262486082153762768509618174385654446137242860899377310288521434420748515209884137613746891876017975710880552723455981014245443377022395100940676861195335471496248346829557581015505452344489246437614305763065179341947111763272986538605353592370808964119284308426690372586585318004287519382540800955069075194373561346900897739404016382030242254240688236592544679553551037064975885139857570507798305430432065613357924250714103376971674330361431167948537138842843170353796839471294314624478785746499227703589519438897408758905791675805333409873249254383582060861366655826058095661049424547889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25371195178867064563257779988798337410869174039793043626289283487671741780194087219739050861481852221115741445128503094625710773763257310999769357688908019305132709361354346614041056409911610692160562329745047191836856801522669486411030947137027114390878382975094856016364682311140910471238152523997416283225976786721641570138797908818852242126005881738194457763417487882306373172174905321390370409425561261164809919895573944749523350264485885653844621335087898627506554558975023141600241078381524874361749789403135851780469141331166255073615654539238412483970960923393600757946136439566199061377647179197931504011739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23568123648355992046866072451532314119760827553582592904783804831359942762217599497133801442383861815653118369742912314433648485430520146930259244096711592008689394385099879827893134641093725495000322632778398312283085719964421600955269205933500267476608053314725736422656330233579382798834990355326769779444545951324298540882750098668800264538033156747487466225945580582008669296872271971528636527520305315505557006131132613210169728427369935333046974961074232165397818680131244196090711229391998374808949872777051742647547084957509382320134842488680345794973046201245712557539581069134228164069501750614772982798171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29640815733422248570097184194395647093152401285512770385500132433834290916619281284769731784035516058573474622977432554926795831384225060441532890507909246654078598178361255127867193098578855800827904621135063870022017849391247117031089075432767339521835689737724128000029316511951868569955300433013622351359441255146440905625041511731447729956335528207054250130974099347035356989547152747165492894462684200793019559279848863313506433224349416882102346385678520928556551671778293542044952725874876877166298751400177124989912357463499279945256613851177140238053045506973293957760674262999097899956913715889281518118663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26081295199869725484716008319728611325385759891722752380485310977267946437842817137031608528413332858056632623516498949074064138223912031226569110383411862530765769728978837010126770755885330802017392446189906341932824400035416685735835895604766191061954838308824192657631232032184080991785261796428807112986720169351843176128778274683470714862543157616090013432593381172301734551952813572721181833067258418992887742925464246494389262095362623334441408994871970313545549819345456290199967047874913216852978524067331811239231941746044066400072583247096950634888481057689269053036528603606704752600815444248565833801297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28218144784879853802100262299441277567946376122493980641866329465036654217602094463616253602116731484120559703263070484845971988780625894202896743733087693522231615313766799534087712439406707388080360383864089788786963272027436720401992864901353467740800340460991788446077202536864821748990799510373042884118064028677876763719358411538608825477628773207873481329821248209474858418178369567358874799602290735971368899691624674221448530610048563891444215058912396074345877857718613332461283071087803446491267880637647823171196355624062140483705297583885283992094621569604460930850210233735169362605908073934497813058857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27810552586014628327542093928295520308409628449543127420129136662538508297771070016935738300659572381458653100069270253797843964900298751470616673083156879567798298343294202158351777770800383634882547437848344562474445622954812066814086948654090999164625374585821815995234666736444805560105674442867975098587649184039299336062130954177662545267043779666010982765116312679300802686948516111023307432640193226473074657148824072799374413634460569847264247921858685825877804176106241649086214806387763233910195513421919762983425130397701674145347099124486862538346537728820605271886913334089893235774202676595014621563227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22072345987785500539367390976318850604565240722209407582551552356801136771341963071868019265362048802031325667779340377087461154197822499112206197406049137958176770849057707155998910023607802884443167838325009692637990249136538961722038086570287791035253842087229566150115860678282535958666740499078461884776406679295829022277357282473514140241539981752890190734991013967262795467838220160351687612742845091820104570271550910433333261854918041500412735191236004467388736364405553363132776356454138152423587224493103036911462439935202371906245954680237155076024627715298943694794064947195245885369446190604290943630057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25387010190910152779810689236773960915538449147427232877751463254620324607755836094829675249168987642563836447857711047026075171195080513002942737007648232726254034766985012203779790616870179453878138925792135516637979683625885436719907315996727515502379535544222077846954765492120587082383081687587703033786820172938896666569002797986762943051828082817049586488233168354544785574834552852333279889888586538155677025079486515135590337270951688986984540894414828082282539284527317295556578069697477588684467352018436650596138760068412471916626889542129799607316424558132358222035447690070643722491219371734434081785753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30282957398683172311098196816451663687060154173135756271613755828048139897818184292850605970059485372501826869646757127521945811765055666541635462826341773891166821496751145803156772385398447123552429485052078385332507167332035384080087380623014766083166623579901273581743625780510894872596174419547526888585941409154164399960952208141524953445408422750305501197411378371023040838601793333331546557336059452905278423414268292852877254725941737593286918056722267187058970196853930552989053747519452350874427266193271108653019182270111274647623475156724868585777332831800679249634667357691073973200785430698887282975579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23484597930956558253993624303293080921649200581635221952605563128215500917432007792496720074712478935441093399140501351264614029722253366400758537996687086348697424489756954137688739434408053771723747841608571912066216214086455282381199052585891940280543209121297275166183218458279829403266548202137390785921413824130072592752433704968269202704133037422529361570596252738435227879026630650375274362017641986914320225575192273289012944126955128103312144547469091807742402469293849973913361429744721413283769442574615500724973779993881361847422604368163028996994561323932596222172900140507585671675918144772666564188859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24327840787315013051068248847529885462746980624421757806424616662611600253503343779504701473084405152667287456700286807747010729055639178352907087473612965572172897184421966175116918151418261731629713808093973693578159522235149527579066821852165821875950615725998393888441873886076179582074087375782382369035752522471101413512717979417090587997543995083725447882650426078421247509537547023326878846874370061233670042972972359104101067175792815414958590285158163183294850904696189357437239394474407608696392711364740963332214182121818088742904323491086815724656743034849856176863123208507890411472831432758676441684793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21941072000810925596052606275701088310043794985612008883668231284017708839217109633962554547957346358094154525438470868742664337632547340804711724624917402275770601032017377513635065344403024955529893261934667093389547821559336614987932989895811140254862444503463321569086411922631658893945008207171867721274298086785559575708082142276184078669043377287338142455514862939651395005970113526446940171284704176167804474264007328036607317912559129349999625579838973950911957342140862044940302841050373278454437888708835107555377116913308942332780558065829925628012937591204698477744601122044138587302881564844017450386097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25657867736308291987109419605532447525267932879490713088778380178488268726908170830059168160741959042272929389258172043263886671693452612073603609351995157572968856866356433932697164199449525689562935584782319692319179872629140369687378910594247546065571824878055132257668852396991525405721499191895524176288954883876760596443326138498501057114523828385115905024465236245552597328715721759966827846782784948390552990027716776898261499092360062293520604604087147019162771181305863572261820083755793283585162190639608036452520898122405282455748103276351008906508767286711322454136386895270989467639992307418095244084611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25735247697386861559216605096013578125066892509974197900740502404209163314561113318719995386420065737841178411071838626600146650017034435877609117330236043486093009454860214225836688672706844852109936732494007439756035556033189719785322665779991082439334135970053212448556381272715955353618322434505077223450993917753470417610556363853268284061816123596985526153040432854056581488778290937735873306881447165898518304354026456053065349911412307502578901184757305924818569152084351587152648954796947402315907008766274093253766825163645726438196350667404830330292157543972721217282212128681805641670276206002082664481091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24481395459533332393098807217588050686007571674795140972392012441202799295342684395896510405332113813805264419562713343778956409800878458473514884543900939201535381485760297921772084512290779454131367819889618743182874522665425138156104515480701285810977634808540704476799166461102831444155311703886365495185426979995766981973985676764096847216509932301130103102036792734154868457151483817235976904600201957795509041059090608169861918628973825400020340882377514999455044667307765782237563987889332429257992477874487432131858301035872232167318457477416877765036983185930971461936433809938055175708478752079467847254593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20883497029123593810767459974017164018783568729376356876735453195088080893208192981113518981304695805053547978106433509378035183582014850354147342959691619775952712305899656878964803195133950629959801954146234910322717542200889714712254077435785544337984853370476524377418363786268829998800131980163383359564547921971768092662007434076540658167439741434116016256606304056052092313515502309902538943474136753179656779992028531725312455724441351604957054060214927216221931658399738104733720187592293885599286372125748896034064478460986353322096956853967547376375981075633855512262183297638093921010006977645742570206483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24307071744787328396972667789410831048970351127062516604986884173467634327722113580523512777316268147089599712602363736128891058392092641999868580459510906999668481982850574116653768363364604190157916473903535175498963383105010485639853862415484454781741342515646628760867690603294146654920154677417939656946535485871974311565575231801377683903714132167651599659121171310047951631504438982004373964107492677451696745055051442876912627033579027120028852392163391575787488220412091425321066242354118829840577555687712256613991059130679627667854106625523138612175052247664128659041465848382126039792447699753915319934187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27468233625901546151347882483576648616526375317501302051613302058701963358555943823249813003237074410994771185571313227452225696157968388518838031274259398239109279107986710429597964151349963667810213786754241415675046715919373895733760582240222755305645230714044650594101436257793642216624916661289702417230138495091960825039712806719097711880596475146388670947262328925375353610413998545065461908349128740486537694920783094561449884749119719104356533808092869959735582242876156368877602435050860171268150469539969570906979866597314449683078821813434192095724626271378736558162350557191143190956892368357911262350921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25059925374592001097692726376706106797537990130873923984573271153136331891476563969161860919038137221273045235803114295645027679012078538684373634072050624543662728256646708443812239537362238616575948991392632211413683019833024694050342009660499207403262627841774858138456380806590775380498455980595804115998529244070240704877342643013375147807777030499588348130220080509639028429612183367445464135863443137043679409189847913515451286373216963413894691005364266602471874186120265844820867864940227998845036579942882280463973596738283655261788316347894444151642279229475273659073683911802569122038057186834835813593033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25640214167916858475662421705795547832740423823903076755950969007521481212970858976653779138656449075503332325463681028896763978133690712836301497468073991872499748624786658028438246416540003322959505045599676061843477042189853373229374349699820180028439434566120297842136973686639346315356715627156557503278367691713729345067516095081513277809852646675461265979034422787721107496689332450345234765820230987670986526173887634025705724362710257391418388054710949715231225481900106458776088723479159092037634972771371581971537648503440021218277312295540976596171845241078070768443354970840318732945852423929001905381763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22947632122123232512993018065083671995484455139808224177116230561074242343996704406497349608902669111069920433964067874300536107300771082053428574890649288166677106134926296080757366020859966058256482682359248370659453116438956123257531828889326486331301334842841473953775997688929962656860037192634592517399658842939324783793642159130216109704475013500993560241598412457420773868804004406427812601792928578000732757072411892777734223432852233932594111810805687312090502723032252762016272547578003933574676992548744415119105499529555804563125599389142757398054445982578069247370443084798332570525914262159233722835069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22788030333204321608566742890829470119513771252235546289394873966399111752543022950182884462473656326001992288279170355203497819345530486289544907583638925886943180112704368162313426586497218035241466063144230690496504566428617227767831315189124715220784937789839929912350917786314029432829835691510437897509430088533381196726276690813276073659084894883530355629069196850753203364738868501066839802477990807196362394775560241300235642242629895596065049293362552855591040308323654622665602570623737561932136993055540181460091344357670503359280793762699220990960855551673601332734514405383814551086116459982652169533069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27431201220987725210478748092153021803501761787906354163154669885457844009509549050433420450905752239227509141968721472415781403399228839323551645908288017382756017665657142895156885377197047689325394416398629287106061220044037508847668262930043265374157252928240586582171374396156746827778516845698431701951035257805826549888150441044316062017699262925938700462631743480968925659920048896464455576626510645110203177334572285131336387610738126668985533054158441031220273309397191001440516175103867706764064078609253489226661007715218699030312291335636199128772821510917249696561072940779893886460593465984466921155037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26965513000955410441497029320444748129159262443150876404149657241325939439318238061976479463809465171635559643084672903881074561075793992283916196922533142022676859259299288452103272674004131775071282187267698692599673758016360820300807958157440757831276585251463747251438712951780055907150055032000501661950981349642739286983125033429381947955191006439675913380641724342632764148813292326984674710535028634459413352287172231863083251905988142748491778583717979667853799486304356303719263483387002278202783308730596553355281342012435676652273804914754879774090488327168394954522450000402144327726725135531477323717341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25966335611474800691791470930938602985395395238820035225517052486743370471448478949182767566636403114911030858908676558717671012789583360239962012837761030259806171801197135320131820132030833226365988947497694199253687310855180939006898768861751254817103932167291498963765970189668963142416528788355395698683957751438827735345987825906237401540654008845401510011912071185332380689795524533848482712888850138024602413253699414927159467534754550212732278502501936084443883074973500486177830395563833056823180702367921440278707304093992574002286851439434436439477837193103575958315023273227372036361892375816371154055441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25322314359489829353970766931022753097865513104914045872161709330362403140796218024967972074938535537334908173443207566893062714440826292392994607243189377240484710921632883521616534944701198567983580795176071337376867478974811077089801164378494159022304016799887251602806757017581144648400895808518553628816935046046923072415559147844018307104694577074829898501116914331642864346418810939452575954553795528678166547216421425973598972503436696121726372702348812151119518133050641559829133040935155779417327310458810946326116569428622522287426003453733233455523226236998742231186173405217023032665963162961329735535661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25661272121786704330785745558093513234689963052641201303178029064019678815085575846442919558422071950459935061554919514544410537408589529577968612523157357915669641452804443072557141409092537707911211571797801941807841440002969604209750625756579429203439771415090286891211012797665511545627974487575951358885051321146288187433726940316089274041718322755142223117208832712354287572527694670586570993727964116929776946670834934112033077506968838814538725973512626583175032544466726911067096985761501910862147175184920062167219919559985871292534988435206228237382160293122019583101062162602698952179154169612023456627989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28212036408787579225676525055482252523277443683890018794606277583942939505674018601691493912360098080713379871967466655688614577703761834841007485222672895766279109356557204401940280145485505940661081251700718304151600016007729112552814398571711957024850352646466008567773425484328595675994479681166872664788445139436452673422850512870603154461436503164554055372967176057086112573222245474194336708564356027002704780529124686766605892177848617882943953885963950206360616242740514399045556688864595215792723069802436584766215547248876424518725437476367038815461105604339491705329311526963658627696002710074216503903549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24306995735016379672951096663670728428572317057944256849060970399728443032004468769234603097118498222131270419831833860732400119650133261722749593237197577152246495764988709807099210608239245917323698565368066403566304167085440581265083741927487982613819993849739096384840085540074537463222420185146984904788599746358438486909208503472567591054567947881391697441811717468346670614728192471023343409098252747957348467659568157111572946598660351896277495514696946151384348124412378446529891893975643096399545831704500581249886990790957467439895500934019922747181979968312351058292279619689701522352485980696500700167491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23372950995593531493698354535319508359971792816185439869644133636791256542566239973232551719725343917061289639734059643663896668005640104561960562267336928687025579394189000197444689232468836923274572023364850587043596330326144044272654730954597473055011533901975478031916572881214064106069323575511393218449419377013552592368767306134471673616119307707231944948249353294749464631944373796445111044397513727436652799559174920029965961785912217821676778209868931312467540452799570841071687026040351717890900417831969167422175232221756951789324087361724606191629463993980056056363912822739121900870606635322365759890841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27243836820934720295602572042799783872651216223258156948142228358601136243268507489096457485439962890294888393512166028367715326576025517572737464668869518598577027412031599319584016212887832710918539541569020013396590364658061241188785496181610705991565143164240674330907848023388330155711969778131559470074894138450760805690003492503914614237526261533863752078022750598223389460366657135323193763095373769176819876908439039603854403873864346820300699016532622966378055184566853973804977581411120033915785925301259376780182044283278000544415089819402809697420291320918677946105052933986191887486553197594463267424627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23502825680603894028794003851107870707450185822782845888566635732295851368969239455898887484859292041288931568809709618773163243286715261677230885758854564492766211507596965273268160820426536105882800384445372584079423396794784659178865693091924655572927184069819130699077771323008946201700804515817068009938353103231794462306699818067833685363706896286150631074128143342585147714130969040628366527166950810475020035890540508736531604320287501731580804812948056670598901507369314643405981299209991175788364468334486753928307361704727941094293413801485771906239776170024228774571534866149741998153827347276256702273913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25711335115007509550963577193169463345914911195110389433071933759541197386950475536313425482002959382165491859835693552390808379619956062082893094744606876561567889455113009193652503478869664103205172592151565687544590589754155129995729349003978900751657663941619508406396117630628458746672145897923026270062834150208864848821827804718731791074112288817893822981595629346592544890615294159826991529957358820343601228355671753360029352991835148805454669962922154840075045194953855425130280048159054177586927802934189878594925185178338753161522881350153137128313501950709854599028644025373679771637873401195205403136057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24937141970001426407981460010981818428107333307905494925712844879421153377939055756610478625881775191932300361749309744324186452767097343988692989786189340231973785036194751208723819085662619256961725808031184067061301781536482479781453865245573222377694331101029647349280754469340694368484473974832970861855256352759044183128859839076488197083053574038985738380261644693120162526830457114542593191587761888307388907794164129701930163501255558837017025238669549949636179854986293609778640929298248285551081640248434689514927748032421501185646594512791335120635981414584488952652213226461303876301894254456976819107487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26730220349185907362098891614270680827210510771866622014481711864898311834228762165309274841544494456504250313332954722902689880610749695062120859448010000751443359793335603845212916787877897119393381283097260592839114452894201760679768699574686952496047908427089282281604630082316697621743441196558437676305122250063039903771671745613653600392034428005300897942038634464527405339258012716436213301338999262044984900124154763497368266548809628226046365740914520284165203670093385186239607669034181092927710968635822194459345242360359652190498161385076445508712945862871209896236872854124404205230195150869691876607893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29422257365946247804195463468239177302191107359577145348896955322207869483782316800171484510028293060979066317374125643672207976668693661235548621695660612150508216473847892460724817980536942722368422583960417560961872704200161747706709162878537940796168532597945586407918167683134265830591477866875130351563160242896649924057823184607487415163256020744989573044704144488327415422766594713417759816257516870278657623792211618560494768586308990672385739641323748756479389302989417645577321528096599199661445712665730854764983408685222434884329772813611535216547479184582054100452012728940424942353002063239876022995301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24309371283072182410505862392796661010044525350711938078644230896082470161537578089975752021833511913159341954154222358860560392168782441052913765676675128083572985860042451227978262076282343567582245859953294434386030451498915998667198960528328059519918351260630695297234384131339799094788125796096268529549004830244080497650219477300343839433251210186651210366455314618620058340476054591178442093900577045856382949577577619662253379572547425274951219766936312861092466038198064013427664396096830019858329076678197155880364254812404248876873022984385306500223180192611007132180208137953529130231114459524992165877563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20859202986436977711534454720892335437758494265456434343580662352645160237516529746784552787379748665249402014163539658426114700108284698095820862615425076185975572999016281463010286831063290719524697113487258938044966196041993860616790830126761098980256390204845808369021943346992300475260321245105762332844528699846358128493169806273052630652676604262678984383613217641393642689887832345551106043000018110072228547265057124761012104954932908868074361781765586169522012556615590872011954813394980562172512022906659583865336238400695813243882326822595699806490829111406171646986330389034853991029103968899470179236267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20996756200262784529418819021883628196790009733387866251564730752886256987102589035826692842913445219529283519519979101822057170453942602707788430181450102443225992820229288032097860485021161030204164241102554708669779032966256052475111918309657542167351388886240430749587355643351730440406335942603710056415506982541049986283677786925978272057389581631087137883747407886867091738690234980745089615637470168063511361723235548015744307101251488397442913768940938613034802667582095067649953384787749768472357757758298866038680203002790746027912955162419972392804011888421821119958738803883352120799756321257341093263113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30060277153789796667880139384432367007158836606469358114721336413547507937298238932403595390589616356280748873821357969253015714801708994752176992640768609382196255080010113677255328626343380744682660615875449130444108108557113558302688954806379192304973958516230105400329562145325648382847975288660516722728281518639566188673548701781081904819858133032996987414511293119839037769508827509150717889895774311550892773579927029836881620025224485517302354487962308423202100996559620819253776301682613402499614461942174046221092132324500170010402473653347016414765193415851366826979715954381859580566912171679765457730617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23639721787921617683913607189683619792234110552394028207559344944121884751748736324081156966368176108349411838196821312127908973346005033892011642448651141918342732552038451596351031061537753563146012253605843304162026328823761751715595743482048959300890600610379687188085095868692961069468855410181100341419808510070573831294943832052215001167257433987221382926342268024618575580383122939686004261847248710153605043281333710634850683855238763232902035583489025108087681039169195535393265229026076818130020037569758690761950982346095044907684319767780481195701196672417719541099267599492359530931399977762160030927493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22742592141148788152421353214608848469703665850175548824127662087397942272140857475584224892629046048977400483324857740672197839389186897033995796673478929078361616343206390993022420990794468362965807111799737925148298043518040228837139908084497772878322664757359143893761547908849616107345574560968490821523953244060562174456580386479633456913404772450809075528047511752438850049877338968735631799073671042633921208023433725242854321351652456161607366225353337566088590352138917657454423684774412897580624337320615783539856974196390524313897038255044289408367500810516216125481799408427467314849229025292922561209091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27583768351303009802192990997132454910529236331677542956421106946070274359807987598323813231811647034067481941817298243349155124692118507746926870746886669502331601784398894842164771166761309069332363638002122143451669317910612865774158202429340686930770393514623993998004643186163642160205485114662237740093823124285152359619928491775550066322073327832410183808986247815272893319098472138684094674438039448655620434570792345687232852758826551374332429972281373646269567694852727483943200293926290597973748611590227114302446317804779225120347747190232010318311603279655904913669239045027624963244387973344004605018221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29299620691733883683550949628553611114022262918501795747109996495952625421713218834632338743100751709865265483311611125928289775269275721889122905693233102372683865745291810235614836058473322183559450481086376886649228014010740587036634545526962878948931635808970913562352104213650767178108909835672705715305633172841713223290989019847104569586213024326837476137613178273511221889904228035974699231826202479383888965793352826284753475114932085195907455624966005101069774148883428605218290458479000079050745192246989414017338319439776084151737233127093290303972105129433759862559854011104620496393903993513772238204741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22447828979697098720007849014730385279210449139127941339827730455994724535799545572157182044168762273078093357143469222926851869977474389126695438823265919761687926663139928263044605762316213169801872394527187072613845079380718495376786568932991088249948365160119265946770009667394088178837935245181619099891792455823585142122776528548642687456717671117013057016507404563580243988347562098561280203103401624270465666788074809293553873512540840600519537280631632152401195035034814490498712499039890193946359268529214351328944777682212085971026086316664081181771347663431553483309092235011651441019457075291369964837607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28454425706683650576151417580567485722634707150162769854978628005483908324249512221566307997382750922189533773284373078540437888288007178753816385797932424980156234953775016558301186862905285292336470561077564769394971259109672513586299690947081197915340822312185113426586130527811724795068698865664500571298742574779974096070577356633821278909233870113025102769399808157510968859850551487199082701911792973703096394142559362806169555652498662734776883376022900540523467502574181422121399118104520637383045671328857809554599607280517844315772474100149793549029054442170370068970942462520795656652842649779609020956819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26681051288806373153037647567352971773623845144818850337477240877060662208947556466319143322921772812759428419692135271343116931475536024399295554271823758862383664006187011293815365274616827434382890819899652193729914819366609565035528388424415325069473375706412758323588380390482477768304508126347787328573740483572000245063110032783707755874571442618042337428802748779739074064646243947592074105949287632425736190281418917583574831473882208614129073492062662187666166966354084473823331844061644202226419756799263549096905271435379716177598482830866901381795647642212941765522565691474010682400318254879233971067541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19407230913810141060271384380304024829156433925103949086690475186717609032845132251364188265063015034416424576777456767134759598574087718735358452558161283037830263838865151990305508649315520328144331826384463395730196099388951998522883959485587722957164194885023815425238651266532430185865968875655077641396545753219154843820168062552287239941175574756862102817145221137222824412030666784446369636761477553619657585620827187823453298880116605025422214705598726091013618875863729195788664486503946310305222658110118002680600264103100962438958127448200152559274944103647124550022913509490601724057409457519387122969679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24149206328353152746288905445203537350203637490523533060481317467816509175110294739983731044997754257364894277918265935778127985396440295304204119121628651307690912744215555140419047117166923500058530052625725384887887797393134347871926911337113992733444786705286286451989527989955875567771298367030289767495649155877502691845804472612597263780023665412437561100877730017705509295033198019127237865795408263207470088309928591694623432811907842608389947753165573635853917161073045083130733392769785933936860826690477901134426634337316621683782011337444315486560094642307007818242132134303716788374051223021898048843593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23201124123311761062704910773417254669748002501771048231008925186914497783516795245896299301422249077211053134296397165868124090939546372678844206673868851137002247167488762067901916207359864008460175931343242209938954735311426227694904979294858111748466101099781045410451419173961281223125439928796658206944678826377211439689300985627931957638889856080326990835412252085843874090459714029455333212022741075879503069706522640149071426970347822101967402784083593020608075969486524757352179035713942034521756130216612481202736478102311947141833774076589702545480899600413905793793316491422206961515004302646067237325043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24183750094474868316563359783796326983520530618391553102090697966391135942028893620310876825851362341603453418890020392859662230557175898299933301424708186636784859600658777474749878460202199448726116070189116470266100938919088368013040041310825220026410811508416956430586023980754798768312036700281317270915910266994551195022158097751782757484868897036019441274443286089125265722480546733834865486132470086693473570807759933742127161395112809477708769579707296738152555542347409794698129331048407106603879725948641765952235034425289811647280924440172572806663045591229929636704115525062851182535485086103639308112379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24342730434900327308693043105994940170228160712813606939885352293303861349957567716450344825463944047271103500615181948497246253962648007910432486641585342393917276615240075284271153311541608802341530322945513943151894982664769325576600324244819819256233297923766712464153402788852771899126034369415383842271272507912247151649654882691450703169646060736894114587784733523666620477224388965352308682040979403569791817880476658999057551967911915088591267646513251997825890765083076564769024909466625777965527727548062692310872175841620413975237278906463386985267588674197363370150372876452025453752042206655441545742817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24715113732001955677413604635931124847186075869882938021471646425095565858985668045354532878192159179310112978760505676875080676596875849666644448279392418424994970238909841563785324612928512406035310908343731273101957717645370281767932134058939513522294504234788845074125323256372708274439379687426416725523429877961087860593485280399733728285749682802755749669921424318748947826994771625826242697587093917250938806610674052218789736264788915931441461786535860385224830940629619985812064700392471790416355987066746845705411675213541329524796743104764280016288633099587993867269764300160343365500223730572883944197323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24454984380700790095862558706450158802966179293512691854959791214694671297554844994403582469124820218157067399488465198470606838769667710800721065114377622504212679509775789355076301479465868792336235315508249776527630136687633358919741359600998252785371127618220070465328372244996500445997169683447899168644441951391946082542587029011832916951445570355683571595005690418807614551563705164279714332756000891518142919193302608111848984089016721733477232828439989764898968230840669206579594640928047866886906211161986452161837267060405888379557694301557235696212737312423537681748764297893488606567159512451875875151403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22778165112987004907359716794326779742600764138339304570815795682370723774231967486547677947721592242194012641715799983759159696691925122768486449272956923427288976428896276816622667141079022307054299917206303314067064085711778062545961948546668331388189230117029675880048006181562234599287997588021379899875504171697985364677220086412519468267853686216277596510673337193053263223933731536245403289339072580143730762639360454488363962696239340112463283384123468028159372494522089885901633203016623907265061467276736327754399345326226876816256083208879406042754396271622990568525532479032372868037830786873171698563789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21719218175428176761272135731339520240608211701950103131673057308878710583007058086711114383375443939594007550546791356243447519762913706614149712959434472892446212313467493297300924814179914446211475147436201596313874979349335994002430984310186507999924340911532682365041122107531208761338225284156594585907169559230752815719349932030425247311675606869090157951874537623384238320360195351824592593490304832414624374170957979709345341151562568687995267848572295163620010692304143432943096425931044212900398263161536469597283580753807260468670085294554566238167313772739647424189364133304169790346838160231139749134867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21323583955080960829189594085281160778022082272508277701556716130699430023291542229511157761363406561529180632224339082940536846755617728981383852809104164034931766407788338828756494153494207676807140273112076600707970005465530614686392010845433656098897381054150017562969781461078183976687547609874244994722544626073577490438933834835452544438562288147176840450902130209083843304091610228698419584412316604711974146788120010626221056183509822904917656809480726747833626661751212701058723256685167839624077685438122638569083646310530018844173893816243746783052055673340373207846659650605522878415145617968881232622351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23529704473902172824087230034287117527658262160258651678052386014905882682584953914484615705326761784722356417276782990563960633278418286860237830653686634975359750009739573810346886524040424351270178475742539473295183732584540736308697385551548045597764621702332478407031829856392752103077343081776879900506836122063697387567128605289421544007337364550428426792743214209282840692675819313538438561983254360987897821003819681020095965856460327796240227592201066535876494695006801634850607636891310530658543079036775212783539392710792655348979383040703833337445510319573654345124356153687669969981844950260527350900321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24171819273817872815788028926007118216225888425285725534166892372698766456989843771965193907128988822060647532846411106120193354777416221183409612905214090514700000813589285241435163923377379410091134116966856073388223291279276970611585321366972544327796258304652662961343261857987786124071824800157512865136860137202957100823568384669648004432754185440147888741340225398279744444500307470526710317182400820084947883784494697306328560986347663779927285914064419573650654312901374602108576328156028877249612001298865937106137634387008664505255199065796836819754507810595587550568414522544681877396959159790329425619671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23454138633332573342321291474958779843619502575443525683699590222955116994722800286302927091770978007425521799601121088603691107748133939483668873764439786033130389009846405502673200702767946740078605667306684445161835581036624840188878561894667381000998839003632893141933962984792700597883232250629616840420103232608851582894353100715069367743115827169582634257424513322406555409781673019499206676695942374399774845642363720195190428064182650895996735829150277128896753801756586481117677304894652399043796431439144427538375278538627908369958820936995891729967015841512882312079528998734024598244471709309446077055653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29302924508671762955618514658543065442198788861550393111380781160683046130910718711103312503003676840196139048584216676952343251013592638806432665865257092623715453758307798110260702985820432460533285402308018794408525310726348627715253855603865825885150814906572944791111581900935860408832662650044966511572057831056312226752411551585450089234277318348696873079140657100573314592136361306152248943381478899586975302526293072053786286179186527442129295867755171013684637799834448679135350492397432051135565537668718078770793538352654789517899617883048026678006490248812199417249326161567490578140993417098652684158019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24849932433374019700700059187229133666980311669668391810559630600621563269998157827710931027569211507513762833143974025301660343708445029350478059756539432243206226863102473310822354782311841240014294763458904341512442137193515034457549526924281390406411074882447254855377009630918903800646432301492119269934706604746061339533123499602292361031978648396807112752494320811670312564477726502402190596177917952315722657101399586270900090658641916633396912998337237219939476468764670699947665232109173223437890803127488387526068904038762516365886730555425908205906261053523595021173329680163805681591346088375754118050339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25282203364516979047833898668034081023474829468096356385728574712129728057158104550505105298447116488941282399645883714768171534912056856750005559396353007574070094762410341373319072188321335152884884558215183359119912530616282694030888219407699741931327844963233757138796287390630812126740814850314457802071378445794441636847914719621732156515356095346554949663392718145888282215568257744565405464768660013862458251715488357072189128445853886835947698935097120769914596457948623782144629342361357557443506899225099372155612607546516044213226954642982460270763320283772901044608765453232254355486108101560074435726651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26461696561855156710918687731117907610493220547669743827497313356482081396498436978379213292199141618079818578764373662825894685395720119799178127710646568164847176188494001175597976097419035933792499772572350258799828929396687614145468750035582680635838052838839573755354321399388783691040918076975516328002087528975646627226232060912312520674104153251578250350800212472398493405472939420687963958556918392521396727940776247091627076402357640646264272126874625973381853214504766093897072854002116588212492951378966195665900109951383970299079720076928743418342103859982700913538552360792891519374181990827772445497169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21600933660617356264101810029412697370948888440949364523085563961843843474763655785871947341919869162975631912728044827314159478582148688463665725162564667176973378370132901721682120459708850299762527628486892455064902358067498258376012103527277086877631577072603647195814384264496103367951450053365019327956659050097457475985330212384206080091891463747612897543611867289038208892834552932652415413273365616353281201868844474304994191362963715427030880088621830851869788482886345131625897815413290810754787508837483889584391231443833185969852277748119672564608599622089560189473374094861089581970170277991337808644723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25213255522467269252416968148179965693128448765745816465472371593703813338832363969805161078503068735294421459222587928215069196159855176945235532789030168828274045047694649153227791193394482616546061147712298736998738279938799505918910245306601130967570461834779111857859361542128463785006520062888978600404066613509721592928319493449758321800476545573326427744546953994057181979271945386451219532877645212214635912563947131553626269357830152364277495854193383892304763071729706803705911870237921421805784056411954352287448852094494218399954380067341256216984117944300121574058934163997563529221351594552263132742623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27168365627055667970770115716223269448376469063869491051095614363004660773876202781421174081636087662619749045763207907230158186330749726036994290757935221707649893945000105524656246012756549196270657247359340864047606854171527005639375154935367997355916867226367565777524270131318776853195919658998883741157030062210051983771805504763272207752203494283774395557044533355203526667513943881292277381338178758863204454052208582138174822690591556146615273030836590023086456182208705084449850179176131741665391317223377384065186037161289561515675811214821337651358358038019728165820608013562015485331847552401390234804391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21480967997445950275478250775428802089693353061172662148614366450821249065733940862412639981116932558694751350312048768509512058515486309717461891917609128078672553489020921276579048852001183205332994283704546781150725168466525657056046228134666232658719823810911441658594709182185205597654656268514253362892662125752317984885494808686230702245815365327515467154346350509709126117690248694113057512992947254721732191457273104063010737674059814848534325070041999832956712863113319304234139430866765150283496444019596369904740742661697748742980428897991168960560221731706648773726374591853143088448535334183571736295601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19383328832357810861054352391962873931482354323445846658403089007137604599121823435577083742478125204308788857486277349942395939323190574193729615049384815416518753903821618168371254710194575460861763947218635089642373000250123249884842008803499709702472036219402097609974199163488529480977966070555767950586299585804938556855558746551346267416816104670123935672062505114817034369324402877740985319282634312882503542972570987139915444742903662737313182727885344833239114410982306361189167980913702745630986199149521813535455205236130492397648103503575438424390179517704772378242283674750395809613389824396514093982801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16337011688023685758990360185160574038407557246135866638462655807601201357605586954425391274719360194745617968463636269615769271436819363065523511794241990145156856726683042595069865804755265487917272063851024117471996283157982521694278041056037180954670359931652759996833095545030376423404425674386745190004973363532592757039142395680068327097074342414829366195905101061809817835400232122383978055064820314244977462078532524581675140049511715708724776098432768954055277154699512156913146903034665057844521175247037461800306654144760081397374423149450830097407375934706542619282181383536106661283898293148121502204147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235476940050716201576593488272123733827338478481527466967869787463814873732985785657920030664535504903593184161656143203950355142249718316215048183438454705460846415191999212420142841175878100345938488848370845970562179936224129774220486977594772306494199648241117073008985694803584398739629166602112946585557490205306965696213926111700195162565852529659895942638200587940211426681342646491105992188105859450268214949808017762779622890157511432045710952795972314941605583234972777423619291137945950549236840506815926130648383664405177148929729137093322122440960471623412832547165256167655857858395958641140450680009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31765599075484718180151081645530457229962330373724784207605503497520530234419995159116246541836119678063260820688144909535018795369533225187611581840446038561264124656236428330688789663171789197142764960773357718031335251869094782230227897399533662360666550417189866263206102582902602750425215327902828873903336910429821295346499270762921551766815066879275536349488742929025604322045751939101232722655732990983330558826545429727782550110991606241943925034138443365237552948175321865343829993690162073480029162833702805929638155716419225024628899118859147630683467207327504819704640323743927376764148111115977732340869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19098390625490504737178596102808801679070840751927950430363851210439436263564199904495960336832563432201099395664986077582539324714115707184135194398732576666073500678260505102872418557242893144325418335449104707540444911423332972644355641460163169777286398997220487444568721981052308989720480306665681331910845305108871550341853684667750663707934812036325289008704470910121023939906664797288666740563674145151506002734839892447947726003904930785266945279272715627611550689008442987862662809704509809305133816092556599820961880044155624981581432500291925227915480132351402635732769737118322896699566739092880643161633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23777139679798586864519597948589060364612520186204115869653053713074284955229073728019959747676325468691413339896466479209494187324873669329408671172226198171288702093989980950302788494966591923574169766424766066593383018848249359796028771925581720597373026009057668120780347738340656599944274929688648962082951015847141291661079065418217255998501389442734598270563310723537559849912950970340171252778762912108193034366547469182512815135719258106591207150836538134807666200856379498911886129037273482395044227157488043173308929627234399696492655112334672218543940156115854530234545594545900678866665410417619048944349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24589978423769730851058026810728784265533003386835646272556288640094756067157191753693561046890035261860907474052207012998591609489941744793529342069159157355038666077749265751637430305397446701289723771799062659021127645770827810537513118058648523578453641724747331248061085726918095461788860191134346679522023856162112794080244639061103125114783999601388636290505015111747287663938412885786601394191056379945216689942593424992618815689680350910745804084681262760368370807906409497035999804374504378759257687608485595017083029659923277502334855538277294972305646903434232660589609603908653558831080756744436169801437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29784616919703434553386188140452222155231036057547417328032609943815590649201141885655083577305650852028392644508058890299890032676239752570301456958625710770571408385918409428967859249196465172025189253928401990449019836576034999928115373833483080655292287410886024271701435868460611867527074906453321374735952362605910215203541246449517467203529865574908127678590947698157819052343724883494142254477797327067301735960246034885621710939776522123191971775520278178589155923607333795139662157820421495815261255533831967215801212204544498847901970363040812011689437633835728512115111348485337535918659749448119606710887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24658507049951977119752583952529915758659067718660666393566541344510423826696879995351519061509991607182393511164164708428562433925179428457430708801516117881909258503730281258065973478676273609732550917546757776427942043531785117771503099024820792687572864902504937312470550709652911304896268871974110726978098070466020667170777074217916516724113816551840906022618525818720661598345941323831978207254338144120448563158769216007996707224041052018945295185558945031774296048448557648762619230314972100771578540132944507319326665895416506544369475074712541934629975226993905484506040156112039063146978479616169444970887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21806578127754300200102098684274384120403708548167288364594823292741178502422074720704220421999397138687948327440429415605199831858015039160940849016148792727304466256962862041735512880673642941723393148897532811884993027435206660967869880289507702487306338796199106363810486460913560416580713846132033804184080806323686231468522021326618189138514565665918351169002312386557330137322731008780522457674548051480438278684370646158294445229360073332875307405531634526110967339821382311476501126169874933638712483153342796636375913008149429636393604386253628312683438053775962754644321177093769490917209566694978059217589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28839694604082649327081722757854361093826649420501303359740660395319258882833740971041928835472210342109875070082095966977209516012361129013751284871333790279942128423313817634569952546106526669238874738320859442361732010046361143280451699923743717131079061816313464111185149634949329478574960735261403646202718168193162298256002805821008458741355910213206732069397909893003730675250872212612687647912446388665436104556719640158839539478956177043421816721533626450452540065037654681891471330240681641730719766770413196964496663609493128453980469215361717343918809820965492256170181210273090608855944888396365487505363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23247101574592732997290093000072287760835690155070633408314437459919351860269866196303137200032659514709599962929692830232293156636520379556488051691180932629285222214063861699119517853855512123766485087995522219339837511287568476428583879591555955702167689551407886551396479646237644734972089078891782577741145986765999580401835985352442968574948766504556934073685189305280680518790185800832453151800030692839763484646114598469597879334986448809062015227917276779229011525753704555327531940580643095972564687076745680034712553303427865380561525692490369670271786227629931549638782989981770750767380141669328096202887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20563888322253196676574391668780218359827385122985367662777245260449931620597500614104151703880491307911790377225771117558702302484923601459956233573126154799551432249138323183240919540203606164541661709226531871829588570498344113085923114134925665565582783797953862866008207966104176281071388334385544658059468188834500128468136995612685171598473904936937682196350216941083234681706148528134129039679092959657932400045209143978422755444055309576658572417857648924126176034755545498071208690274759408526372101849633771375338409583472179405388093396693305047880637370723585865508982857515695700856543881928668082221279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22127651220923905626826698792267410280497623246817274494646076517204722576005277932469332691599175429984012889175382577369339900420556671447186106413845151312548959725455899419595585863320146096096211217728618044973444648186115159810792914281631867231357609103148483955754310667546854055729812725455085846601276145944267931435068030890713576695450982695063939795595375599972126747727300981205617461680097648245516688097161075291843732513925960247608687420471351311079349956766696672127288744388728042141543733427088587111355891540105036259983019449130384320787928755225065952142993844865610282548926568832690617678951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23581190772980201476805662614565573319624536272551817579677258091273022916605087215845959650344680867729451278370426473696536394951321301056976413219581327861468045469782507469551130594307214075442532512420708021445093339596869381323831668783019120142894095075595611010316907624364283241687813157800767040155994647033284468465950311876718252964555835275596385103720359683057615771885910525286967240143667561084505052283257961576864675225616582505279350562888905846133057232882376791358675865256334256763732105502227256737843451739804087255403420450807355051663744304607042231754220399424837615889649774834672853980073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23358209340319079474516826383836330344307236239990039655475972446238140311803535837270139425766691021808236570269529833964154482019303672012943133888794462815004772468420518848424604932565135519125107889660531576739804099069359461975062026219986816722840233345862265674724593594245311122386810286583943978636609340016713861220928557198309239007551762689740483964095729456446935517399424110973319561624589943486443724348451919614000223477300369907367392808117185732725659965429216072083847314408409504629995206090185521914223814118914871473456340336907040293320762604420234889433856806813218851263468584768052347172387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23701895951816601651919019970415846934379965745989497337006415901825049495726461106524387970305406750311089852215733031329271212919734439300417943475236935937483867765604138244711741095730256861774925561770243249847800139924097016641759237565519338383401879566520610909853569653949424511473090522858390691260285052313153007660279550596711640164610609738121941154823250893593395496571984926843408408642204427817437503299938785229814180644669656636325035815545408923541211848908000234715959753424619623702787134409093760009228668840266771986096639023760279886858524012431982974003005270771587588782586509304919124856619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23292689175235420250148990276075506757800085972551512406393605920603815496638196174848855976002638262654570493925627340766463929524290146926058477456889825592341558641300665872421922761025951226955735394952688114001845252367452884952312382743121163966447347003408878721495148675539345668219369482802562582041715688129466696520305777741079769061527637844766756403411041261209529946764353155501600668177654977942874611842482574108297416096628853082421589804224855921502690183895421364412763534623047986517725932408181188244724057241089676089044660917823444296410775742393021333679516511232393167564063251576333663512033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20553741370812427686122026952297763016141032652325314969960536279115664554013040303606370929767939445974563867999272728816679565577150821608600780396847138246988779998949654772286279900934277249877231668666300767570151619637859806437838344986212408506074809071350235732863322371353492319353389366986553535829152668369982851403768643997392273657446249902826875551492467089502761343049545381242540905700077983855419944922718182496141328675973627467632043894228510560555793543443620029436869360872068495966375565291059488016970053246121577506878290783152781474551889336733700961320960785428970051565116070871179614491077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24004052072157732191907446894884656548615427191532296863031401657881644423116388191769265283245122233571028728658826642442930520163592962169200410251433697907107039280680513059645697540322546345919836981214227289396877245202337483973821765264476937286938124753644748193620386309567472012132666750782111789161876995681096640067415691281640245755086332118476760913534879458359928930952256653767511496288958900532493913399576296325626788356302508828124752778884031521531086120990778555628212241030715133935317708826074418334039922763409934984864708033808921080587100360875423480751081960695704528218536713498389742700619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24742052969801604395351517786029442129114130142954420909435827790287243650351169894769307277089810827316232783380224524595096833770049194174383167452902854691570726669827823241269857956042743322706241643627604174017432540461716858352282022735522015169331807777491775506283336071324031301588630091658979926752365579456511740020266120531591655517302103879755849060860255521344418541960539289806997995469557669278105257595587544043159360333248534828817897361415343838776700992042765109751639992107970498296543058404865152750151257990043749997203252990514468571307763006201233320983583362964242802688686065731585395754823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20877829643092217692629188816159354446266639542409649223733104164925284302990098619473521363352034849494831545665360092890119061225105184645759638822914299164408794639250192031246433758943443175156951640919725196463697686438362930126151745838862836253584169747524166483932006770286388811102219237728881086249131112735315096709991638534436945806483838760368324955928009033992080008182517308325838386916769204086513455131286498015364196839359479971603104935426426752030633217238316608093364084653320505326568684249197709360619649917489213836434691674372280273978061889314943853468520424582744818203710230506888535106783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19047357776733581491405643213257695034520386562578584941530648326587293313861736333074269637698359791157551875206221988320212946330610650682273130002482346938593278718902219589331898531242911060343632012808189402122713042233187913968548911841033146866603824215743745765762956819174033752341847598270952435571124219243000699719053162945859207577232980304696859178363771369800428464407387843942005789600832699372454179744802379499158846908601664280204393244466007498045945094104976595646814477830973024825719228946293301374320788425266982741588249694921228748844259984425815903740555368158131363763006145043249983110071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21694277666594337378624316043651214674047129797451598843662029214699973275677857487021474906248873249660788957525153879542509015302035423241523951785936517157903542058793022734090451352405857798076486974543378924064582043186383436474394255417740590460703539014361361775298959689231321242512725632019347026166671261659332881417260820100497096905532085889366158838122411614258749411192380316889200257058530598874347553508576748428915715044154551223006014347206801756841164155184314088408127844499937065329793783582055995295579334830958756198158302098179509312348040195481198604346437198202583642983406937128483844706829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25929337260481344178124754662813164534595866830625244456807690057812187029598585681900377370579316857416254971662414646316948721371689008471417932134696137718693361943935945772996941401393268743229200921753278448107774569976852154100915881021558377554949568474909443027524701958625647843294352896805926246015560265597472357018915389915448888427398850977953134636305789771712934887367693387709442463850935942719867238454111603547942870451358904847152092079939967381808551726092389748143105983590153858735664002826360039752620936165881500015100211261600549818882694491924706617815899712769227012486171209167658740779957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25598350190509192143841384196387279750559430609806935611301829611687559063558872905449227695782432283631001704632972454069393775200602951954733902859892853243068262868284105985295855239687205798004705320822533712020489099344492440544087896614210346377075944240094136275128156534307737587492838976051644137843653231414300244124978864846457240681956495481075664100446393552534565803906914863910733848532666028466768105146399059290857169693439656231141266538542626992742658541692175847123774145146055276165645997103489503268755575212051504809499391381201402828832570253980686218896253215145993835079989978066085955398417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22376324863778872893199782916121314653501636843911054894333487713735830970816234795772456153466628863587780041530709292663950855869028156486846086020742497737777136046331582123713750225793892702184107921008975531973284750627718522890806206387789905048992570027255210972031663267177879128930279106998302204975004942941342726381727979681200600038748283910346583727845332247201459204395255043965637170237574588240943203819830757935386238715804124665871756482385019851424239375379387685625063976341760173747229367281658951178785329788718265541749937270006347662607652302533861415837518072746713693203379532031168180038241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28594598622372750636216634568090187973303869692800182991245949006865901765998790446745181540361202014381389535759391241708844282307801605471560655804654463510351402372271796556987653275310659051154040676082903315877738563059374865189991993912347062527839387164596868785779617370031110986014838126377752324279608574073929941582165883666582052548485621557765946133073640657981883965326760818590701200032710905200523361842324914653099703632460156678325811378880942970417735641119055225899380827355032398943088467623015703137588691676788190455047773666061427863339217954030057276796741441848635548720685763846215219858299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16727210453515793951392034607283888240544516192222615286581786068071591812793659328063224564291347878382746212564309636257031490140525367157534490746033016790545239132359705371428936447935796486392486596823976363244155341852458999038207812509955052795901647351856966618943719022290861509844768208841405812809117656986460011322472195458727780291437341624726570887574267840312818376052465964075878619393396916846880761257825346335397267384816803721025423629405508355460143746478072246710273173676315160325976277068899264302290433409370454124637671475560762708188060114499565177537733990234447828023223278658607672405973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24226304543016038446895381958794276764600847110299664794858210310968053647325521953545234027003834517923245697185534739761100712765148504686267743893714404174550157615797942359235073961026929996851559731752516273852792168068326820716488664325390044598368422926665880098183572169864484827544284024537458986767262065620566434498470636109698486678111999370993228076412060907064202136884862460907354440923297617725759321907752966114393067268239516586170241654962243500625646443221181343550880348935809203215655988765718105344918549201956239080026146891844760245568175457176180643514303313257726352498948013086024345300823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16333197624450091340123734115434062231825770021853331152810640390853935190894921688389388474374589781325017645666421327263437005788404428340376100299248792336223716369254329040396138617235744093215350415277491051597907809501578601545762158144834007851644469400576953510286230770067236901157812005686013640004920801188348178351226385462258168258574052932929316700890190838543740786233302604476064189635369424617083766091540642165325247091871892299285256723629791793722948656636938115946491559552807858044435648839775794723667502327772716563014058988058405333690225824478039456790950277993456664279810917150786324435567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19069301113021171370630991893398910177603406422489932351654259248802627847098196131924177702535954847495990921187231131717163991140886037163693973469913717727019159519340971141262706625717540586599388603263659657216616469283253815205551410912086977570371779881060307765541324328619205129474950170726345088150006805135183256772645072997398443465603051070710505179387124757200351901428739407337838135366479590212269446185290914874860386357340412030001213945580018681648582350892200503454612020303022933419755147246479480516663372835746804447345662529479692535544661594683774881341046643708817820747080937889533989331623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306771354978067684741698401993820205958963585874760819931173495896807176931983797825536328270246918378918669844518280466999458794681522813236771841114040134313836684425481051467968887796071562539285190967485851992319093069132050572904555814639410675454058598392730991583012259630495034700831585869100950601140358858527829262258532568192776992035725284525915304713453528327415289065391243258850245407249992130862053450217563396426814132228925381668868210226366495603980578080488460837516636023971363801565966271686689420717754397141678692256939044232192770716811077454338706622500816541808755654331374444995809782231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18794803801926809921739994741758571527117037757769474939539901842241424189869931084277595754509707153273642893981915346365402172991508854776043141804436654412164274446312818153910778142527153200474914349119111343076374673034335415469070958079398373289920574751698206961784601453769041975139494609919288746171857460332271517176970349816247773823583795606072962501483169868415685298327533959600124135907103952550875007208685134055327061999575945221066036156672286918337272632821900259875426924595923211630998924750521031359016156069602464296917842666435702251148613995838838769053662228879092739296466415543670360147051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16314401916929405230138329656649619660241714239491402306835861387912058182588121487767468556897589485675970446162763098820932335017465750801439322103199703193768916678733173403254140576232612398037140512461111428091880128693480678021979296882651821872213924286153154492089692381237963438970857151489616792897489033690267557105220092950416083124320877422426183425394081979105489161939925891133928969818021135545843617208731746520343457854011424314625643116046134060231522782483160387082292121768007651030528702309399147701082326170478132831266991240767121062096459387364468973251572728458499324679893134674647399446563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16247801082151115515225014533215508550924578470569531715804485913734950289376002183644612826668910545867708125126362773811050570304322975162463508694032475657487684495481451390165381149914897148393103564991699862813147850806322195570822913400752286758163892400074654929802721252939370306745432682210660386951662775986487982688148021856409179776901239933279342476066900687414227484604045132992302332647823599653179062351083587026082224568296448493936633828693935926679394257469696502283344203077299919628528645834244353375382670490629608754125651811993605457569764679875965806087996772587422219200469729283726441060689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25317451571766043371390936916233806511141504335083300608557158715931411388487050684692326941299378169046184254792204247021176872875452158536982382283540717086800727885909061152087484521822151778245385801980051188312040812630231476859929864705581413100758049490234750961405844705373250403709267121837255878244491556074011552319664090394686957259284600349547785679639692115833103026229130121851391262513256391052524351406080368599889799040867323079598936189620655717428938674755793830910510429803735125554661526154809357288721654597083891131086991545554867593143804971719926310089896369462282288736848685111588628964913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16313399473624748592685752940366706745692178333679151890854781482753081321837657556097627101573091312869658471203206223288898786226532087997367886345877661570793249809414282788164669342916941485541066438174948867709689470047651397181306481595530924432661446654571592653737088603304871609344210574559155273700775734183529060018642963851103956262100795162345816231566108108779238275018558864742494618081683807968990539554258390782921925900054721652921987578390120265751674345516239550328719237025275364775725305424892860378178568468983425975789276288387680264277338923249481595061466275328840226558229597641001493647059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16297683511262468664690153561322846665702569185344736393580367975293735057840208136813108488987913881331176380647722598129931770362473634616591446206848011934379429753823106659376081156832859461329352182440101633258600795664797167263864068821100531815307207085184716177611300011821223493651752644296540591704818736915526698487839592585171692667526626479182558097526385175352241620119703436925029496863428535928758654960001551398006550438765368878323168649110476990904902956496564618215653840123727899286948983431621617832590300412219313470531391902678433243133127120134746852200939750697619983107686817121376376600719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302092803603358137235749503460008412341715963951463375824042121924047182961967176217155561845066126222080933957742492533139109744246363459630688973885923130273893900894872943846466979639511570118827452835844496039216256210599788061558543013691332983592361101259763302152096637521378296107414195257282387087944336559932541333840499818760278584238810456144646342044603692904826688048853432086083463072682315688143160954574121649822494262590206329984392212301757002279142841477223277432858446835815191404892895581672298983139499134244308387938666471888061310556354167820673890573389832191140132783584240103937980524117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16274827663925796053078210251729120640288895744111824986144258654533175038213635893677345907284103255655700103366607724950417781240722811442990645858568453485822811634763624487735018540415821060739227339396908547452074349883346897223287789307242350983091094694133054842733579305581641490264106311271750065058638368369057961525106125402555259720856222671366640551262254601733379702254053640719802478105604062752896277308960070577098818487683467014562574239245071825205411093380152175997661373905098506288864411606501270306767023804565084596338374172785599156468755826959498572352973909909573241812473394025644740350841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16605290618300978079862780208226290550400805558705121833781386131358414825051226131180026871819550788429849953695400158367642652855757844608035810797489618690507818579946293573033673842287303976694129566795552928335590550343944140194688079049176282838735135491057392603983611602299460430580842814734977401034280238458451795091804647804251272195082287882574302559608473353895699755572488851096528007060860841166934727684449888123091546788660961374542507807974752610843589318617128760352795190189280194253215988900510759650187716659874466065989564163042219384225742135294916728093919106153085082933262232128881400503657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25300133051005116720014681390888931507913180539579056165863760916043017034604534470035157089982714661643305569787795236762043738306104992190867912901864396950097413102841761965289785808108121173142506694704411088780723312723941367307831079857944691600164199328188891185151977088785073150804544375628023544016530406499109256400045489912822127182278493331833133389934121556660788950391973064616418205307151548326325662295493166657834148731157510344434875916308541918265182214726334786225011429396529900468884123387268186240183643332775781248289693812725717417161219048231812202111778264262437005384727484206163711755733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16783263968527730875803951157374633608950142957576807405854274625264745318626243400383568187124103502191923612099869742236908870554054870046319672342458610903834461184256484620090196653236352474486403952889381806266633025506350325362463238765061647421763563373327407272297936583042294427825211551320273981819938384560571948281205705937624762067314065230359457419377196383142072297901054260339808095841867573057071447679343651907958782988433499962471933503044835624771753550107824366192041424584173643889277581524521698298454196749777774665440726207598150413264272930788745988353937627430539273409236581924115372895109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24748644497134500100582312187881093877473771894374916671277046996359110389308840232322872374381924448932131522727723325827036239853931062563143621806751310697197023631928860459052822578523608108405413365817295703049657052430025815744358522012173746039873135553765899257306361373265795059085890922752131373696466183278889122804810557751332452896107792287185942829768286151537741314761643388260804263806364332286753867113745626506578218136983176334645226295740268004131024444323057429232651265137348479384417412799701552855565510314837609440739180869349661505640007112806412136700403493951055288321091754887863508946763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23645739570802546684809209836813577344596085379620823998551108101685827213038901321912883973990009646719672251836253395975074188229860457386440969951655038551845773802891923086904969651537217292580731085367358421199365948085674302626627280837456369859645731547257637707035993758924617417981386766981534176764080660315059693206772365474737220233945687241840755561165160252238446582140808389387798333582127133422000909081128462859567497744686481252605486291736284667004690468741170317452377538313403126483025060017044267635933301914159600409966005411555270843864015960363622935210826330805223483974076655942335137686949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24394895070522444382922914335424545064869984615133678388909047825307044278217695504403880551226673426729986377745780026856119193995199648944433258756623789915000678583181535176791135570691532518357513822315032713826726905842543848957008060888343782387128916561971541889777361668723607644851009555446660608550233190526998226443661456795125015325320418037344129159358175921936746761653780405120226857596055580876812657579973773653888019484530961273225387689687214056007908723776691897011667546519673591963414558983754299961139698554173615005484276975578975912656823855956425136531004165081508736628807920082427302528241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19757937144308663907271336145798522620034734244069454674995142512122837663499786507663090988587092787207400651978167947172212308620940284821438050346104174172313331853968844796253255644127290901707573765568255130590713972998118725743865073372859424254148638244866166242811477444847272903413844754510900948325681341593639040115496845214226484393153833309451682104115792997732527741324738255246811221944838327244949765789721744343631160150051766750356409585341698534323800126514376246228997821023418243325809784893420657808076337234563253430587899553095584631407612397992052012332445092217795524309934044493555289584889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16653310106918368181561378954439401466005890806296720160461521915618254835263109573851399723214778535357880114306271997339794462156027347148094581470641293739666197327362568136326432462886994352869536234979430217577549531077975507644078337952352222781175611307119061883730561505792648063598007128805819541987433495026003929503707191910895896860479265557731735842163689895596283392859240694389136544402293962712056694772386896489545907248259332098220374792131053098850439271989374107781685360562612387549256505662672962327544187735933713461837445027760779161005025095195084403017396887594300004168392454555768683611291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16302030892150191558876873064567732981207762298952296173217080043733062687225041860471839907596117190710460818411939339319527640078084499149176693536292977950788147206927640224908007496601839744005719135928369825213169183955086009466243014809435094026871674831269025187874426543666630878718033069964922209138982988076635705225190709011613648583077010473252900859956216170638463381503304103470809808435943475290354627289971208507531896771911785045446614509116790025953913315400908235603883945065972244649296334044131951307420962764218357184740736067437114268876723613249942514858012845968249350360327032158680196423581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21209760168883936554134453655535679573980569623803444562618899191745342112422138073413485405583242708146388989775986788399953778844423886263928431182617499002183961911479087936097180691335774918221137015439896549174833086868434279552757483194407732176084101886866363482319004696010269834766615620374089646364722719580310474370825415291120674608391544038297340339908241364327318226752742306026676348387020871775498196305011702351843410053452464944276987162382491861680481881335405113624946595105520445753329331151690266434863436318068670525529652674125640427985194131236909538446112752431804274181218225521659308043437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26466945543884831245703009357315381392116187073389438023323997698260192086159850143459159179435836488724522817918245060423449411519524246901404520161237276218685348716329238856672587065340418089050035706082152805191755917820877500151047335547173177234959317695190490572367776130811690145345115396742712544404873572118990266168345244552436248111161523571621589780764051015676843664792271484071026087218580204225970120125070604364613395052300785717049223883241015709255242136346845545787471679820713877261398648503914392391255386231877176580727752019726781269638078965003786334789407158441693869863871386215079176640119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22715450026373775218655332428652566236428268747443836206191208461369129903227963865840734881621207406193534309344312300090199995782007549739603472927541030084803190704710275721165937136144603960925796790459674088781233656390098902770791761725098873776271518587122171607940569243197425982744695871519114202283047644310503635451714010210385038493344078732514609531835398496367270087741258174562165720382368007692137780401011426358300486414701039551776620908745489522573744501278922141816048416619382859380682558699505563022013667539950509925327121410311947902227968297664693695473852971777041325747030677480465715548153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23015777005353067863356019835739517289811861407186988089281106542009176277792445456693074920568409718011243938755143305600914100211476456585689594364378943131125558597006133823170727962684376689551563507109819578887231684940233300187050398156916224608979167599231434041484855843130916123767117931918668056427224197192310163781399296628891103228867953048417762544773293270858426784282960476441432679904783088387912558621434358158375330794661922312501199062971513365464189829931992229768765054832955044100754167116017753949440927412638153066602475861633669054264793207237969179950061010195850800628972859007590130050683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "882767305375921488296459880401536897549318376625110180998507178717143020670981219054743112484367978606857097991699875139828057132175461150456754418739248235195634176831902027496888307201582577538855188889587319288209649451130350175625566208985531496663717851389967654981381777500200822710634416055746747433951304002449135198594710909631638635196911964093199942077460765153320782858199422419901278267197835624201585294821622621082770555008688148021634516246779294579115940227207820269908335635843159471762225690098791934738800724550349298264531412028221177605171592648563668895247692210731645813476606747799071947342675517114311260946900051372642495620366968368529671709986630928075016143386959825136176598735683700741408369612522039177203411290622928663954079868582716246658644694950220266179742497890819576892983574593352741322694661284982196825088678976826520971874012079787254709764174794485172270521602907062985752027820686102645468766466974030320184542981006193275225020849299814754071873110213796245898693854833973391214198684263724870107435717170516177481242325233553813163816192042455132186795005514723214051952352761756676671518596390594133409221047296346595663674923741785139190676931714423664321826729044823509153237271637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "703344855171662865081435982394138731880241396481206659770868291709936755795978001191565772144765892119930675321935231082670381505329727879649519406982231316555384529120668253817121615220218596653377729295193329324293542018484125972790071603311845023252177762679976087596257767237463821403870069919676024588769762630340081883455059062478490839224891985159360496228992617106242448177869344688903237785801424955936927303338034509762935994319294467777498918709088338392438534122647288113812781577413513204319378772828002706520828343003825347204228389249854968480468125162830598292435404411188014675440462053493370233968560166765492896186535814216864954278319561640973882558040025716376291742637188305057531357237331111290328125291569460387344285586155014573368295128562753380487752339932151351628071968255460977925964593966048414128634643670933926778258141228984524760313238271317123423715978780267860967833530161060635081601788652480185409742181887284416356533009491042754441624508458742852970901381344397505607462165148405105026720162713214457814077712049082403602963719411665030340064830023850371397989321725107850280683033810819361270298333713332856171830457912182001405375121372626175698841556076309501931799939512871051907388806489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "717381179410873033698272460534892975430442561013429287304726230399216665401436249367141502299467535284461062354190574511429527836189917162548067363827211730306122498351588557209412284203677785107290462907659656866559346900476225356743304757080262296721732257270303379039957319860936688509815088197714260990603706137160518995519618695192562186644419045100335701988778803242894403046645631113000501105365989643405000227065766605465717490027932035916489373063007268678520470464870101642337767177968425987603867985935790972763931364850159450276823680704172053520382455856959027640744884632728940803375552594029795905517369382986971000352173335845415349049059614238989290223083905812252897191744626734925693811010149044116284842032474986625280967469191603054403205005374914311579716837306720674549394408748447132012415824718568296849509121658357691101950812260770743927217295465489331689501928344994234094062317062579550864252279964617053364448148383656024981158430952823081462674363545713200301825108378469619513465849053821274311395013393820287682605223875374440320777075626678543872449820473516201012286583826933682882790055967345961905169176935927110723192751470036253953514727855580516353650637112671376823063951909670015818819007813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26385420144063240492080826324516529780773218982202687738232989761951587982794589880809528384308240728343055508742537335037250132638469641974768269797277081863834313658367043937251579318931518469161640847501166017829747017296358214767101057531622615556713664602799166392253962174813567939470682727611714733570953315641056896238199752659930874461854257241418857231097700076040455868369074756686286375711166256017984748640151524543841159132045919359474460135082647595122812761723093219412894156780822892085953234729749271393254976146148137136302221831852925315202593205764911978054288687890746313667864298779699800728853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26042450671455483434695919963240816628892365047872735028125471614491019167331724968962525576790537857065168987686645136867970426568136101718394050249370544474201373663470601123001120531203559329814804731845770270879772379772073541349194444157013963441893829237667628632271171945584649043394371733191495188987989919392464892273326033678307359399260009750409509330377603726050842847342500203056752307555358905009377631059725502928430155069036456009282206442696355579395625096099187369460353555605172567175573172655778666091092586886587172129672139930517145409024560933443000375340762913699393035424211792847964816651361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27191423688851516016268385922313546053552369301226635516993945464980735959565443505440061222485699638093335775791466851389329490459445779354284766953087913114713453224267483217631159291561080082805698560715688408130574057463883958237186131081269694288350502691454135884518273711369291605893509230596945192120977067277927399442902805526759826434324813312122421018715653786561783688511214989395722943249753628847961161698774948881345990255832171592431104274156829017674587813076859373587158459065709288494386240718780654652814007354677008776547068954599722941003109809026639378229895130385477801633560904573077250494197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24902562783737728171982381371831035125284276424892576186725394040107783731922779461337750592282452721023213697075971311641884037036207769454616612592475175770365632000536637820140252841192787733060262145245741194384256303724851900772318218617924372671764589181823291172924647972034524089446968969916511805390052457968228347278622627577574273058881193183754276324645522638038153651107519134342832469448944359273081339861372493344293058186857984861997025610293254324346068310232704020220291136974465370137688611619852821718953293482209076032385072565998936421876277312885284887292813405750195499102962849726589369185389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23679229194088422398733657748849044913552644512016907802914844374729107462953455134036742675536799538669043930420948361506722099894614552392355968204765273742693861748070301265837368381520003813497368062960562007049856438176572996448904876288179124325366693684577887799353971255363295539053396209435958777513980031749981382722839133669501042124990527556640880207284610989291090713750973628482942316007866818085898822324824000141973737945031969699807756231229939094163151268835881190697766331574776072690956324510752255931079679961307689664733555275530400065967549150723299413127020343362633281917650818552605205213191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26706304727698662364228471499702986910379203763883125996591309513153504956693450753120444392407418155900386497906368049801083089725481613327742136124790736977329750111439369137936817027836675747047759018869640331961962346383865400735571865187485568286691265334038183643142791747524772123917298737436867477484228919068295190349507593381911414633884587181787184978615410611967222170422845856013206454044143334310934205390112033123518701217602016158974924921914669324272313732955800538663886123614248798355283128788392971814236310700955910078876123388644191077836092985100661467723648027347784485614316113021422556795349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25210041586656985207499677625013089025129016561517733156631504999436071761724039467901748056871864650431143076215722265494003523454171933715975003132961438229686752167728585544104623896246435867517052900153858711253581698533621115406963362215719772395746816717288321879365505764406441776003097490568112035955198523154863991025486500216593785497227940917923472793826275923173114395847769639821348636237832805894337510892797885119594808516630290633899846731788583798468309543594898711232378879203040656853879341420250517954757653707179008510400681856830428840851563529042992039939428699114641510339312340874078568839459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27168045518283803489052436133316908950163320817243226369710850515863333095515890979345644275182623921560758236137768724324669335483341548230575862478392664418247359284206493759208237215481114395387076327433393685957942706096554296594887305026221557811943786220053246926171556335111395163718678248465785975738112370576152982340129226481597707453160801947736017617758229424591621138512730531089604992823125973546909127659945519525773812868787281640649905148135014384190583121565702374978239899279356094731302805008885038416961155552616552467961349728241513276455350945477437745717015014453524322997500321882691516032519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25825109281504834068227228814850614056942543057236873355061255260081893857560721507658757364351931839970551672329797684476258142158452173769905158065790737891341088800424489681973154337409400398288095941744858737454997937405967709960962411897440676165844921345447351306315076076077476848923947107998225358150671071251981366362593398902670687907112864656318268830657246326372220122242268219038395910279305078054608297505096043782215982357950939296220611197319240124576452922127331821814631870461991557466671756328730513782455757053685680135140493024129008959483138335177580820754661615465999656350276296658539567655089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23453034797653275514408138245844000450236750914438011540251938506496519269941490629096046735032244790232537928919178016798759246519644873519280569717791644407263619006317211873085166566602026455786531793248188310281928133546165051296072447224286260769926008745886328323571100039930285099283817801065776051078784859367811225720454832932797539123515874380607989703842578867146598441516544792168152656920305869287970273605555930246075124835736046036690246943014956276809398488693001234450372027478684727692523454707505689383595322744376268155554174577106837852738049969915928998247286483385899113072178870790249012782233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24121539756156852491514654622342603043996285436458778194255883831044381498087020036780146677739765763634242475533392943695412658826160423674103262240219875564606201446271453601210935291124274671656001565277442759888942228038508206383642583872895851652247659550648629569075960318053306860968890111147812018616671048622506756950719752516922671991122104832151685036153648221244089411419216645285566920839845256428373440443666175153327298724508793881634026093632279137387051132313195421885448027555612252793593989464294232270172362557490857878669372641045139486798131328484058287799061715058256391260292092982227414891117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29054570672607954044664303721447934346177614320890155406251310083451658527183359462546324255032998941510617309395682836071954866112319887232455173612085611386960420907822413383296582440177666710189361160962325146979158656015666763260779386686392109751369765520137966276712757952355735188674953817116297433237277914871797722153319513814509065372637360155114395644514865566241406357541752454599188447028323178830059977690117353730662239040955870066059418278382263798560047620242218196423059419384759078524531865741632345506816476862607176645852636322777262759380263899678912802363284236061154290702213424665088412146833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23799179089822408089693492151528358861769016373571459619371978750004713411021357442561899391061723190054188943273385396105258422531092767299430864516476817554620427119129987860001515424389869892049332933123745398914850884501975630098189352297019703747613970733268429958219609425914956130107016240550012570550353932496185222815557798883717928336746351082712371327949299178009191467055299697808421033873623560391506302814338541436318283890804165234708189236149112605483555596604735152369079672718351349240577152674723492687040187837268550265548239343074137807438782273684981660225643437453146168186110065554363980895837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30833441230821704208734632933355560236140854954630936635596256048194165001010313053898981870036134397872163634323543800464316008264292495912063532352092777905306408905038754825823195411243723643347690404979400997956566028007238411114225773356795294509097823951542194930042688011313883232460113785008983708261647912830236141613468629194856096294013453250705705754594681649053827105087675590654903872772511598199195599289168059735170249127050418989207294781000046013287838445391674526374744796824937553817642523576986910443022170275202045118915858372481738000779907334993826007018365544076853729777161806187815334540411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27328995062471273527510179159077844879254016706244624204377475684687262173738691520600418639418694756460990644237478225485696425259313492444411740262122752548281464703699644130820459868240357211471242378489515140442519454668698310844305995514130156089007096877094758002923024933265975180659455195691289256070555159639891148064067536736102839839129131226148841148850534752299672356028333690286727649489342930928142309632964366659935897620655441208295367260606588395628662382618568777365619239384160970187382271378585535044563908245602568674647753639102266655731823565768209175596294769748703349844142870545118721349523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25857708241439929991108260840981784275257583527347177156902313080448530649087162799889817325573451565894834257599625853706062622786963383689213652977601358890503366080283002312063407612068534945626273350310372555680857176059470579084354829958765131923342430589860137293862570934815996978385466226151280837425661879087123904892699039966654070286258104537396829063270876533858248098514533584131278116068767072437871392586857178275774396545319180013446752707961001193080653671396814774854148856753414764833000522447061291027805116052032259655320085742916672874019293932936101432664896200970528072399248731921262290064277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20350676475504225238522778113054482935349623003547986834702663871126653042852363483365413591461318999789264470664601252962864540717566027166622572270222042114396766352369270729838675013003054038899748284640995628857299467072458178937855877426688692685588761110011938048430904101581558158990942225911564374785983624956782493486927808985794821084276920550919467401395665721190603436259281203381673287078559998163417966845177808980748687170951126434679096762227898370031763870264861909480269560719082502918173112282466318118847727503096005042091791326945359228949798293885670759875768230413613266417946457294258118546361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30129078537701380301026183486879796935965208202113499539384033499901648465178421830597021240995540138628211165553312655815300600380007079408491101761230157382668557858352093544925126392774377833542123083391454581374860185370796079548009974335126053055863680804452499293254940941216130677627935403350542002698556251004270579926222196677199604914943823607038353962731980403010010965919789999063852218163951478414544146104935046173288528080493277875239364931855891324591433450673866818412443140562921653424161393889992420602571944689551540645400930991742326524942062981931968391266784794676383039134980306228272834439467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23284025310976596875128054343332919", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22637592930800422354418115185039263", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23841154974997499416015745789358834", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20896400170026812615214053046532138", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25282510261345583611393591682039667958681965828487431798659866210400873030193048544392200915131929183412087093769191497665658693127408494965335347670792455610463249796675757827517940404978038291521828810324596487742763557961099720202796480629740194128547592577860510009597021138562180301570047430437568090729396447015910285108291502793153183354316031206411537158572754923736351181241445760264335745168096783072983472220669746837171552932700729004006222135656209092663113939146019978358740858755156741683393312376431003497820592858650206315622602034263644342126480825422049306987272549671504146353672385147478918421501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23660304098815621626142515169749530302816232724301225285817566272030918233481061054498249182447522098651692445191426072773379285688012923235065352895062474843314679314885593499343053935924613638946793222147624230263531449440719421827461894312062497401170391209605060231130703411547386054024861762934966412469277969497145891880940119364629115499438727405626305472102035401044680717879962732112630811502163878573849303617172724766093457904951738917149112603787309897397496463914829539669459031268194502896164483449617734647633150727347052635441079888957585916990405968461210030722631543506546229141605344598465488507411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24688166133376783539587847248213075915356131338314052207882054498678735379534966252723397442623675104943690867805598170568458762523081120341692820824964796598786128844269329808727864084447489825321058589030141068752957827767635900111124015621113164764913159174786344709365992727693395664390582265985244074971408374932092899860960693672030798671540690955076719801358277496894505588011941585893621537682742211377782109679427615193294358624366173414898812787054397200781758513098505811629834590127082843077113325132129907854542377468528130610521660146901967188018104332589173890560147687026397103716953341062024697595323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26071931219418662996411514758354569046600676000869401761917317061226855828824799567417290566716074249066195471937155092120491167512240342685277281838060109514722461293411217584673015014446565824522816505796674020396995936059471043893315600992798154237237423282524977064879653129632022736536552426320567405339218443119107055515221430892148563361767795524071705434276569288394278868892882945641881473620350348405934061475183153126683008850079351411325851819900027809544964989952677180054740075802179343851670821543714845396788897713716809098326353805769177797267558852862419647004645304905482379704035641211816259343677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "23426141799907756786616745785821255820564828020123515298777962698817109421792535939781990570803718762893157452404936694711421465899119593033292888409750728738929483345433943920635822036233336791827002847604539405304488114328456541161182620665841523313347199894911678340648793259520347403123464200083983196835919858731403650916492622194919818986433297582797122684398147965676995756961511763659944398822253598446154687316169837291480627674192923768049903628175487141805708271280268973511666933813451504379998946822520514087880246236195267724202152292323157710017510717082817675261051350226951734391451212583261117494491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25008549037362392346991239831565432581547168160394050556994156608064784465543686302626803031064385066146438580635413364311698187645443159922626703879219787763213601181854780552626374572918558933623893157157133023494713439621794224799425915705682576993527260454212526279722307861666437133406198877417259709249976646554623164720335886728063233840370494214091948813024564010001496035720894343554035547133717118029097464055347794216712082684265091575502703552281445558457815443331921570268772687641154293541435289665722680636536235148414364350099045513931161099772440895387989075302194398121620504306967420706472865113169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26180287849622671113765545476674946348943206198256703575847080510398204596593009815228967276821376634780806964816340596092091712942938170939353764854807373136365013917618632965719324894042254059718245193820111855446554324415129547399227520245908131498051304923620814125201458929372811148128249327990223191155520601918570614976980560720606572428957408565197031389790873105001006012505347451966514389260970337157223113342913758684498922816078300091429370985620377910524803531822501185490684990635526936674637390746368634777449877647548877106535882673250959822690094449505165527015138090886432838428722093006795852170339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "18702611504421297655345417701397400211105307526937810215310988727501057965571846278425112326050382169760776504712861871199806727994531779225949217080277523354832882512607540716249710295221580025395438679712624649556096555664003345496446542937077211284660296224059771272934898752381737029882402344409519679078558127328227371039739907062911826513048891433818863847773799482639359657067139131927405700397080053320871966572126030422131110940173266065123063392382464022856061944712556384960333177954108710307993247731025204412055551217724032234290550602316485720956899306303504060342922595175401833744483197317595091707003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "29931842336660687493079398812367694412993370028310609982512155734994411072293593597341362473667795627626039942212115118165530102101753644296525315334042831817769264629534540418797422856516986053096498330250187946142725624473706917504487452752427901693332384335517117897414837149371836749776854141596688610322533560730249913378409304998145263043414173504614529472613638482326938514025916894905646508703877201291482274233804115041097585152568668864776123350646349877258798198679648933949588580253688925323291446006808067980655550307465714379451304519097762764543811051032378660357564720984897854213902519226442146686057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "26406256353013088792009164152281113582076692991510982857824896512378002656439350973103680052876477532911092162813897973773921040882568007182389197461682849790197849213633177395974349981955119914873072588112800398663182459581693417568474235414347358650138109285196113577719337863741547531951323211447364824072875266099336915174262250216848462755205560705834750339863407661801224605556417368771279168735894631356030013538632743339713902105231629235526817499180409546065035451832216430847914894026699462704791314223305588232424103680780086365429563778271499877238600114328061031147580201753393875900583991387254408778807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "25191416272146013300921915410923123425009320124593709972702695404031003978935898143764432617331638532359141977350008075884711698733717024043465645872659782881651572631893018015925375971679364091860955734693977536986565566684716507847727237985602122075544534773165447817179514156152035562324764026643639265604063137975954357117978293956959883275976004956764778047217779894431423693134880740639210881182369314131489325967412105962046803898139218978136259678396597356650648072337159259891913254147777705973153800449346866435935257230218083180634355999700252746839436999625507011381118162720008666277560674943090987378141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21048652371542372478523370044295575430489396765866205028424658345729267239277361250815659024384938359855729169634538627298356611830643645695451652744201835275631736180331993659556586584692012986030678979615976446469281339162764061562061006214729762577336511247631846888606673469291671297603986257268351216956742306335730650349261305083772600974710648358378949777342720671628944556709862061766117051060728007540925345040913222319962803827405798350794875846548464060398272923068401744309811196388078032175893587271963336844484100931137985219436280607058461690690645363354419221652071243828765724711868205728465969302917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30120481505679235249058305331398618916871231328301723181966064653411061422193743619681308086565495801968866853181327436073094677094539852159328909079606521736238219143535672149729821462829685834535017543860839700161443314005609484166029723968156777297012158344947719816597406265572114188786658790055930673699189607567676626375864948966654406912806511592466282620737665546579824283023931653678873544779888674398739702938869920767192585064646257688607181001814547532548005969525383763498456102730326385711225254700504919129753618856880290300053155582010436451124448224142368590861959745379154655860351311237129324080677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23436205486118057388586687825317715280986269120318623238331642116304713347673763602524636806494796239979216880487422030140555780582301558305437136487887636888284489421039984499360989612936760180426013648149507707585755935623382128255069564835768093327956539121024689304258683664749257220806781042174780932859688542221521966424579003984964075180642810620038293463057395406354698597021814539746396822329431984280511099193012468989351361974836366496809703781667585199053691954577171592902196375820327643615659786124356797287182904671544939759857339302441695096568023440374386230176944387319864532329652512835808896366599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22941721337647100048654570278223410010075026527221891856277471605044720768824318313918467786047464504890622274703683085355415861936107933746433776397105304115269867708059879700995081862597943600688551150817829824467059451153677079250282725316609741983080800478251873910777196959153871010139217648575079833989879604535079221976042551061837176365732485607969625139754728482066166777306860390141191010172403404308415190958549303466615504522792324695285218963449504163045858926692004512223431263389610637475916746017277723273339274414520849017140526081995697887888490780097163520145304444236436170902075451127334502084963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28070065262969965396982374029427338071802705798719287431513525695496485068832894646543501277406905416967472360123746586867815699373643541583975547523556832537031937054712087429686147917228108527585186251900673607980947539669618658228649658251989434859633429838891915333823822084072389046570479664238496894439924514597042592254463258685051962819631871867603684541958130682866860089851437901324685862768576143261108810838723622037265797613198537226797789906024179754723451608802637442035451650138719483527060512344753932487498094470864309342274054122643335513078964219501382128840760177040814577963110157987863175929511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26681697459965107641328247206424203115275650492979890991824174653767206216810923639790601823811902123212196646297823699068725833272593017096027645961570130764078831778252256083010655885019618503723559086631768070797681504240629135532255292769620737321869401548725183799125384284166622424548304388486941148347393474934187678936746421761578731972558629561380373908302207190609858412568435911148688203035306824877905296302418578248453245683251365088454980726169873067032374655723019697830844323051241228053139601963444471453787999067987005820342660920143205332098887213695354003651584459593462615119089785168178372910689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25626750137926954084499443660554164", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23526365391472295419644134751508134", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23426190480275215178553595018216591", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24646974048394358025210811023254512183933753880811327169636325504652262464493249934558846575710116355591406152945769122665518056691305076914578476819514616567509452357326460205575914324164384984319620154095399646097630758841330085363661695104209301220631145611606746876918594705381998524990766408530463591064094262055031780011083584227605648146850310498211957082833820550463755347062673948443344708664997739962919060437718140534428437245376567471237846963973814089981727784062873546889869849193270618429253675797345988525676158349438850250404683779442376149940971549672979478832123569727694452528606758786585181713899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28805015035192073344236223343395720110242723394200124949605660747150653948667598697644862037955730138225758854840996333435146668105341299900326161166808265747364453492525440491376822589721420022316539271231454094729189134155308548844292871614795502385562187214215267650736813776777254407505516940355437951809374169447905740894291518617346054557245630505544343786665491721850238743864666199851607370960988154769368343710129358813822566080070158436047975811046518255917698264643534817580752669715992592128948973971025945871193127162153769522265750916218032493738633198169621197526571596906381625223220829331230769339701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24744945400017090592453722769089018229185939458121283660453774500707982336238903702451713180720645543363014284894566207851712881909169305109466651003002467705744852033780590764950487770992845535046162814909744006990683617669244148372630881697991463202491481959890498355769844607387460497150871388291554609984106274667861065708886249389961069649815373474729972353131649772303782889275127564741549299313977460605876788856326806634333035578071378511123007655972314521235816351707112701860061020550154120753979722475710435140299838558641556106363687610789800811579196865535199828326375524037197704251252534677351061937669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24004134556522832727115733826763629984147524595524317658298042812552050505626172053973579226206490979058404433042406658706304663419029142026131624133539848991906568941738760447958288384520155994901950467009202850034473151321188983314600390597222862807927192829278654960148327771007054481014481613363969836731561529812589447801034134677546683670325172761712466336266682700604790105039708722865029391394227459371608396628957139085559237493067295872180697856953313035998691452851941590658940617241045264357208452618879071418868188312589398215957700154965693734376127376789480956846516161437624426205993762788162580240657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28849409905906330535765412645294885505110593665135876515312500111914592865826095451308277819981913550554105948589576210602864991079483128513554065385776607729126088345806928347539264629251410578066661229970142431728037027850694538221032744792746747254951885873891105429471705079132847920248350803725518655934254471337202014514266110202127641640324768708883610651208992509546092640646501522496408661303955289409737110669848753179631784424295301480298162951447701984093045096861410199963506575833218836359707129661147303612490801143165288932433233494961123635134565197124631956158052092031882864537441176923063513329189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26791838599216796139073503490552291976674773918355542257263279058219992054501938554188224755595195318117532144425124445918852982893779403617549814311295291394080171298081553032997180871643166516605423515495940314240376703740589840876786656550555368248572663112745632850195484218383662006156673862483398671392464039015505029516936541896266374261508478912289411060336776219946514387607101235063619404463402872434753044778442880787639318085743438150715098194007320332637819237350860893681149125870223327316299823217531091148290225702745570920467749710497878945959353541014932525648820248237879849131463458049059655993497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24245324945271706996186275855314987736115982996125722609767803382793983155066859317960805131527477464438106528123349069887341654034201350343172759723534357911876001800624153894773295570506200913231264493176891167771131896315559294776479586133603723900446722602241933512414597858665317679794933815772150822939018772924442874084886469212068084205261101143141703702228343215735430443460058495481544200034799563334655119797458383284884782208377918362372288299203250226312089059951353384702779726404775502457520098764710102961985734202460896372342636374127595928861382626117143399135484685904035658154059317723083793904297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27853170750622569042638294850420027325030831841149993003390798060761149963364976982136993256378541958798615669755588928739377943941988997394239765234639836665498919293024977998689370419045313170262787751071655003948875298752632795419339716305371885373619119883752106131596892000637145834006535700871861969892706709966685853649097494395292602897856407631890736503524208093210836790450794045942560134453877617061537310459037022373895653324072690788968746025488793450674908699504167706215095476995731966706953836453632107330825095642676108019292141235825812691738865343024970436122213104806400238385520545720363792815823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24033876093877649279686608020822292817662789939791733200217904922877762034762317838076234162949837008296544195226471195276024286195137462322931853848844295320298603389228561818061730176920961595630827266712755846207815016909185850997278307227272401470636012686947503968239249567626277173122239451232440670281694771375944047970155356209043515401568728306369019924341648861147193659953603333222595238239529185425132937926735554626865095041043229813477649710337581446241725331107409060074065252792726911793726246172735056028141082521732116517974962849839590865824602553919166153429759968559070035019890420624158861215183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19825656898735367568124838150374186042642040594957175475415884856999993399154343132689000847159466166073544989521604712710641053371734085400698871409256732568169166102602926704376258411755874684387143135081144832812525819941265062936416486438576547932706237376934205858097661988354506860347898355573595366530993530449617859032817131936531966757675046808156804868611701833246476836626588012014670144436658081707123125154673166911039731616673345516559972340986581551652071345833467929068985709235882474314274433165719489524918661597330669684089873393451453928479982220644187273832728878522703336690988612487266605677309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20930738072352516822295285294665437885641688357612159969938339202241854069277754639323928050041767130456522672909556772966310566854406004567880758876729484064283712067464183687920225659119236292133304573978705756559013046291134748639840833986599624441757065752120179672552517390504444065990081847255037094403769640882438496015364296409600603821529576951731993367199873692629532357082991233562590572009969735413997116756839935622739337676969705622012238718509858697493973750121775280221511059353960917889158690849360755943370735637519256283259195850261047036850163594118881643589010416043759273507560274557410840223909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24580640402485928125029599783684935150349164666589225529308172080878612939774018978070780930897417761307642098859462965555683166701550141178468914120386737030003829886063796572379562105399509289731876032157249068810948383179866748390923228805718021439935575992616965229238475820640761991854119483648384201900771428426123056404923068797633198171464091796527882891489294741118888219728890881738860479385951945888035900651313153484018658177274278991379313208619195854332669172248317866788886209192821513702514947559503724718651963388357756458517985666196226828417609718449142983919288876685974077158967044865537051113747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22639726107405564172347097522087421560632366808540274111622170780992767668975213022540982654504248922676843379239420335332324412090815898331048123841539192139099386088097719410679458925929717498318361315293045416028014478058525973359855966865464227222810508638378221776701651204528705800740897439410039555203860816529058638620163030078621736941240067611243910827766148903191417890562870352080824762283688494410492969661424268209384822974099008974556191635534052067178411061168454708212003013169401576748752556426667309325955384708188177947762109545126066715249665880635944770900875649360886596791307227086007268901479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25195448298930585560493785071331078453760076077125633925891948389834780086895889393346224250595848568572152547945616427467373829837576854026270032227280561699479824742013560028910642034080695656576471481987919055479734026985335718760696716655140715428215505037247667305298177079103415413606763132632087601953580588794774826197880333544968295900247121786806151397106987019926073263893881794721853048971735732121825586379076701457075357605299885403852637431960746814800221333781472792730924650489276067394256918069896976789097239582099962862008323224423959523910369662100175065663083880984291396943962498922139234106963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24630418838917506901345270436012986593692381181747313373924157504506436721310426609110673773670508909077807782938991727745604475298502668858623078371758208460030130247550695507533937573646885975637463532581141881385984367020438778497494036619202021955169425722897111457806421480603871061147927014025549652683028693676726225903026164899026409485465245302998785916847032132437340867855613244592376820278503228942481318737378408073607726408446688267921289625783532543342300341260991973176362684536728658193217616838699474367427332379413640814527846445738045554259095639926514223705838451268444389329515038929800684103303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25680999598623167930909607943873181689507946801544671002399628282223144427073582316228543694713386437731270173342382932158399473280634225176623123541149029520081475089507749662648290512397974824101598739610703052749368274799367545272579137165614997371753970843228213172841595001204712190951181765217412875258328377639162443372129865786007353654920441146006436430963392636322194420790976921734875897495691730566589466430137457567746299760964913452947922226633224598104499497522242661384111114824531133268004922448859333711289604825567574160436856963018138108589934753037245391680002377232886338390618278112259085124083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23135141502491534721365643131892306393063897026184976786963073299420462055366352853399507529448683945095492184398781531978830502168109164739508555507109218073351099029134990560203810024233881537557201369892097450919021049314620908249605857579395208810843906312573048529751230297777706521358615292481582895177857732662377914769872481942842800298742813347614387596214506721111733780159521989854999130938479480603024345506587834815301728997953510568984803342582747098975596829785718202837848038483233962536479611372007407292092865432161283889991483767146492767146931779688113681914501690447312261348078049235130015874079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27285711424401625591205341387027475941896058544020600313722152808947618618274370327530569605115149950655757589133683081462830120873127186158300901091458633566346936941882600434441092974227362063488694538364714745159639178149932953446312456128322058320312421137321819113842662625042700726687075847587512684672584613689297769403481296422030520636144239973161568518910953422316867994697578554094572653168636790869779308045289367280825565403309096053978585751641691471160422379281177731474155200909720760185890222577280512306885521516570481733263807071811396016750700814453481253316360206149528612410535532787250710768597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30117408047916021040248255938173039652007765638465763695208866311222362387821199262925291315851608679000110281032098685562102469189527311591618673760946065473116986797480607725000286965367659918079047283277539514871258806372091265274441039795970381444585425364889915693272941590319508293344226480748499629314825680742519217523899924351584271499388461670517239683677822451456130661320738714919183242451779526811184337151215533322948453184133419101622646263144757484712366502550011953039650106958536102843107871823265802097309127776575882666924368615103800862858887261560935577599540176029624286781907861704999095977567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28436277545971407809966572894024848024774350366739589467073200226979316508476571806561780153538022140962710023828409689431021815207650253453460777793157485279652029821470218544715719928306956044024619505868123869813542272211999113785770120908788979342634722205726731316411945228075160274545590590242269341314164097945821701740688637945067348778758840965478214158236500525530736726807668656896450652607168458407471296097507509564069981179714218642270301162197744275185476411732530210630634918530920366424179389067259804052803108520908302292214161067534594330711332843046346086548689433672342750943216642201628896186489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24380696606615064447898362055907760212706918322656820048473828018965966053282287290080955707948459473923467026446840513298379248480162001459058950672159455434176336473484812687986869268044482980773804336785521005809378213534845494112980145112720820403931135026319994559910453169381894324999386419636604792204551081960791017521445598356475647388941905081741854706959285079947165773410731499502931562729318325932592641336701464474701525711603462845676876039030050219424946621813276758582578777102383314441375954666964285715477073190991403014559401813280371926194825516527353494120640355636357208183775638022788707603259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22802227153846697541218295171105258039536071962279910539940477504181473680358662600128048925725001346296735817037629438240818533998395456630731461433817107752333370763776358306059797598602519190944901623587677319461397613753087728231538690227445759667355636784261207789220944902634634299273458892502833013616798485865633048368786212249870721826335757835075835168795331209928805577220939912010218676430695206407728180662428884269479609200313805568373001575479991012969687182993927516725626150919252962689955837144569520480938423406891234226786624795426647232042819000462288756437594199106781262015231564358840927344617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23350869548236860532468203485107923", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24357144352353542088477200221404343", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "26614515858620923664677625876802135237245815330172035435747337641129767948132908901404135716315138368774634797110668602770847677766874431535359266467983218663886731813118913823830831946254608032415025139020899943948398806165208241693668697562572103513737024103626719337480069922419802134428991738395502839034946051070441892884187106227008761376548341098105550172617787065262987510348885919090249245070760512834631948808562308433542829316362844201834920594448850222843935680305291378841233640883551469187576394105422993989604835537296505025505757091704921529464471096617227512090347124473461016604798608619976100570693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "27785846245169593737218689295280644595142225674126354259480879965521408411849935428619678243365406532413395647558519481314195990037088404211084320209897431700995088118629457301303379872571849340615446635807968034470009363542131097486774921817116975442481392454071926028190789770149982309184916020016774275521382303606534828011627886330104999542114796044586354265463943908813858324591185573979644174919656645924915509879446054832377643907460688706696481363463449207252657897202580125625670650412529969577936917504156999092814899330824840628474371136827661911776554620613300696683258790569774394443299092273130900426109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24554113103687023825453528359084067312567432759481714103240576168239542198717101588946620999788144932313327026340000964465082787189655656366292927089705569156046517201800756383256088324212979629084729206045947427094543797129455744235006771946834321700393321652935227876125060111316475671031398999562255249741197139925174153868384159854196259876168948180458872928820068329032005056873835036179416661605833272470196249350311749469809911306030342203354196412664761777895468597877052333682278760279428621353852591274073684030944791803789979118108799359760771284030811322225418446148372523053216044510010779870731878951667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 01", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21019395539566305457103954459862307", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22112099690916929932275730085613931489291005057466475492814007327671644847516704837028049838440449329845973726753044526218045610674552131617802511229324248582264244836920781024071384679785813476211423566373595364767915692812692406713847863085666057403730790290778143096334068812559952676065764339068877610720866895941146337000365233517069599214220189517955632648319312450744695730797399506866569759730786547653940745725370989866120310134051212981622271034631899908466631299775759673950914660063958928846470568947017251995095922924003337687418183010378408590533675656776058214894181725872285530011941178192581051521293", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30304234211429471846725933666659036921296704675459597389159809683907885502478185165600826775729320718230766874424851959596400637748984766134029974854559317980615703493540194214498487354494270940887434623320489815355021359270624447307087208195646326464512857730487477959649165786157005470594376146683948220234914774504982444633818008558138169219584503734151545041418411010810505667711978989376449457133667538409545914828637782372344498769460278490777119253560894558231608373715177441385086027572069906627588591402105441836056999568840414859272472168885468862895776680716788768514841764925942498543270487707968981064983", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22230028232746971191784402064545687179573329014912239981081608055811072414067134959335948557633787420292082191024642060892833459496761742119422288468725696735331089565316030911653320815279556370977295112311821513501897692756743942410461452965634504700571034531788395632383798110251767854721891706282224492554369773676298261672525892662429876213262472932990931160654086587703503679294689111683680256519937801014517494323277645500821718799633147985027373379673058931174552343003571532963189539756413686859494040459175581689913983294436777095374998312929070040787471226047867611111070521209187873863924047136322159254709", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24142256899171751555932146123883491568316591888059906697107373034535052913700416131354010337365907329345421815860929926901476022994601316488761689802474999635609645778964676061860933837635831640847368033423620493755885267609054710253222002824877320084548582420968879294989170406881934339862335711095676952190499500088185982936309524750732487857879817893983475045059698899697018480612679861681530522678637957619473310059699908718353952557883837867047093273694728149263434581783876134993553732560854089179388575636473373234391394569541206670492953714114217951688824366354641099752030024486939360581767222263485066762237", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26037280536229093307914787886494524658244292661821333565522608271459983554785295419977878695015154988677942567963781409811960391602582373396872430393162155153312830494162571095012869940779856527031194708326648914017300726024641712198215766239892330257803119661721348462423802939704550369582561495418824509118718881109493031430873493874514531252305523744990095846592075146744268139853282912101670790512767144359501373076829067463327015009446807468498160947401676488082754298125195794737565186758621450564302543534202530116759932232169014335875069232962379218060755950819508612169186241891117033652366474875568081895859", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23486152631369741245551014495065477536308165849440060331392415256304946568675969407515556936802835839176408683914908604270504132019267682215178477177182565556416543488695172265302535355906312119936599905790457171251878783560303401777535845637357041868803318378906412167800429195180839990195468414231468432144802370266326701266585675230867829795122582566436651633876870936884256637366167459259180853889948174506970338311597430014275769572058299466238341118290868591985228255397274157389265695409327400639509024776056798211054757042923823293665139869414976929787970820356892918218515991844887155879889059241865496518883", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27815142989613923836972610706726527845967948325588193943285946507460774030978097564172901085096332842680577214344013032290313052244668030240967598678774507728449815925829441744948586796442991339223094688447799485263966816174354426063669507415148581933215346317950109331822343000982921108781461208215728615814942651606214107681518736659082441179444756339790565154562245275808945444120934343084122920837566059994389915804002611991293137687711263192829533733319938675592055138841497617740459618787136062968647042934955536159925286963866211631218088621562263084063980912296750910708627186367284064772093766914812019360331", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21428596836587425603635967436672396594647474732662027142817861649376982947026010489002033389013066284462813390008576953775931211358153692265466173295646739479448168604942747154819051838537811122313102452189265576096911089017196833411157809654207377571909234514520174505185333237856042489137772867429561895743416162981217007829548837180069928771300427317074911026269463268942057859064098190844854876446118658052345474826795267692711828861993947489686889908478932988586631585597116600572447952223402365699503830089218903852171159647338674988330898700436605003236412465952974791958763221712955131835537301869418083754857", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28908507077169627885029974931586830247412901113856211857832487315330732512102009511498442890064782275684757184405328335884997722164872251996990535774659951374283729966580214940737209563463895195389899997081431079888473975496227158453964074633711492014512405870278768777844382036532356712481501866850575406740461851056037911667554711141492698667486150099138013001069120205118235858377059726031723136848959785874647522581356034432146673069048816616290710848908113367456036188906121529259283235158087148928996323640139815244278510905638444211209333189022211653172425788310358920036079104131566839005407406665772926485137", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30304234211429471846725933666659036921296704675459597389159809683907885502478185165600826775729320718230766874424851959596400637748984766134029974854559317980615703493540194214498487354494270940887434623320489815355021359270624447307087208195646326464512857730487477959649165786157005470594376146683948220234914774504982444633818008558138169219584503734151545041418411010810505667711978989376449457133667538409545914828637782372344498769460278490777119253560894558231608373715177441385086027572069906627588591402105441836056999568840414859272472168885468862895776680716788768514841764925942498543270487707968981064983", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24817891000733214167814964693848389911057795642854060820592662689392066463845576068460087911357300576082141720729250586516112250852176558651063770050917270027949081845767870466447704736013503294887336103624618043349197130622986278456560557836814795038983443982698924723870243821764738314831948658683287688484443804182655718471880015450823754347867400230404451469891465385366353829839436535514148293707515381256197451784813481636765460207873275149000936756340423608380720302152818379243396907650432294592173207176690266476893167048340712094682138820755453723425339758718116909308837105550198943145296137123600951496391", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23566348265257971357531631532448201469925305776091873075895932066267098497212020611879198582858076387541961574872472097220315153182763646823380245059491016891089768188786385958744801099485729053563455861057572162461122846919958039893529017523045836704045231860918918183311532051968308503348413439694424056566790413703596753913135846326573052630082575015804274175471542319814590078266408773183464514269842053004396076664497735212534499245228241222950128661002342798037553662923841592058486771997526761831690622737789119458714953775251171316468171096886239207623319017339288411365269706576155641131655672059118795899307", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28908507077169627885029974931586830247412901113856211857832487315330732512102009511498442890064782275684757184405328335884997722164872251996990535774659951374283729966580214940737209563463895195389899997081431079888473975496227158453964074633711492014512405870278768777844382036532356712481501866850575406740461851056037911667554711141492698667486150099138013001069120205118235858377059726031723136848959785874647522581356034432146673069048816616290710848908113367456036188906121529259283235158087148928996323640139815244278510905638444211209333189022211653172425788310358920036079104131566839005407406665772926485137", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29324574616567865202048481295721300756320921119302342118176775789439317480003751788550261427008008405627284188095570168313350606094537630539931683746787612078244279673651411391637823882657266104419903189575480685905073796491005351437824387028943850893391017683107592902621856705838675619124476935912788392554956407953156873084844736312813788926294888457532479360460973582858488315884787955637440482169200681005963074098091366274646166782348128511088057786495567084691652579649974355587534821765932986519863419171734479653120451030551120480202439343342947687924438279427677507916003537428708721011939545381147832792021", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26715631730186719457458137806030882588879208580460345529847494511565745187924387632619752179694287368582322410708215865225977771933911322021402344207221466467650894532698259515757673501818106371494969673487239018445477929862198669972715814503759453605186963003476967258536889415680734894769389675660370433472980297955562076671532230665906669077835762097725803184050833730129870931103446324514619848071564537899501875208147064150702030671288088069334467935293807189496262097040532610871414498534339381225268240008625719826394546149462446929513852503211313629930709052990150405291394732199932404908377164247126574314197", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26201480777152368605556538427886031156771394322992269684274417456697011287714694848892572184374707745846042491319631673142695030287111768140857019901487435758394297423856788885717152544195337553945485910708957895423714968510474755112107523947072712567409790921970752473092147356641030161283774403718174635759301189386865879647375491104833492684390126369878840415736175707695479880601758334226837799604716419901457738492833748130752061495224474660016864087247299634738189970817574163062430660238524430447550902424553769931582718984787820800061294098374935638023050206561172551309016257210583016153041458988448505431897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26776951203750247695895629921792953156380489880865681097630984664386710776026483625358520569275643808512075278973513486234585881895240242512877957014916749026134100999443446801986868922923203449614332953312086514531137710309139382119507289228696710861774603778885048584619662637863014328938195448782054391704430492504369078466866931762247957385174514085462255126470187237333775765225582184862375918211423774869163011122928522505593044407186320094652109880870203118002232372771748846819464414627988874457066353030607615892831951885807103601779488142820864208166783524291132456142823919385331744182032641727483344483603", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27045806904427941710006122848457482004709901038597738498768190094635548571410669468235345807043910199844964673683098315554612643388105871767068218224467968169853015632957648323073739634860466481283782975091972607424939046460685434439148444236043395565769817105540991775828223033161595873806645790106308870671745049744529318642126265862487685641603880745701913070617871912706056205502809235146253008418006040807735133908798494976374964978656613160117910859612088717422444618760415073799394258199941469972775352639194792683673582680091018708008248331404843533145920643024465359781559352984358812348677630400047208738739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21757492555293972396754102318195084", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25883999612575816824598721855004387077941177492344082016518592398197576023628836143165812870865852958674751155934434353386952648962689781613245514418524062899115427364585726621591637757323348846452709694228873459560202253018277601054702103781192345395404022536021604030946822806679362482984319569607859157082273187297109800686004376380332807732346765891725862037094172778249554781696638842685486990451733791951568647618167097952760808459890092867962025024812045509183162491635114886644837582686276846274395807210875481151862965753005819218436894757050057919366806196871199968978565571522802257946393386851075554169393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19450753340080126565392476105046307651259778288328678148811024052867689248243787931769640193605283079744823136016057187728675369198577066525631572336424901988657085260119485082430666468227596086549411412682203261002749598412410729107414769380535870116683092164691021944763398730498983805875117014297381788222999284484535617545536304867016157321965946296534241826465689134286718944523302738682279649133976330512466203168297658820884352159983854992012362414052010969073876502078986010799177911916759548502226376304164166717178400066822284238134747933699427001913011328940150016585029234082145655073592200225001390497503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19675333747725431260341517921896146091828338957662849376103012137689626059134291552230618541426327606348110984413388194953974357431960723035601280150565526803213494443258594454844859160948320001486124777622741832534008229417653504789643245463185912924259467513120726773188364147098742985360053257490166545011076485371102449112407846804046141301234574038437545967972305267315474885034212326110990347593738333563265705459988613431769367301753263568796240386118234784249343642826372445214487274354244823975456789785440262463772482480039203798618031521027336099062928816448193967568603260378252169731920464135983369616173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30938167679172260558458530331382456740556391740145136670102580734073802819084040963211349129497500162661899380308031085390057152427820344383903771758837476118587756617007683783782532887162069926200323796262457385777108896393007803899257192405710759941168844752502077155235835573192555367629394373163198553161801938724508904721560824621612247616725109458413480021064988276518021448330035138233211799047408406374338890661753703729344024396831060110538934648498493625526615971790887176553040415591330182940624248379352130276036124265616780322687574698629630344269108382691308583305131371244519048394203970292796235206517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20910974378981365703528046839671763073482777017254468875110306710229457364876248757736950967780368261441496032431339654635437483188636237971845501304433321717283355010226888701480069331811303591432279180761904254985480180961708166487842282632453082041509765594910489770232250728628469921784161647563370375858557519170874258961874208877688079379595067946978737993922498853942510820147353064835285594218130588129335250245946308813252010150355956586668861544589800434743316365067091102758948662125367129425269234974368013656141079690664204296982524721018917417320630560119113264479747186680005728757779159191942948765009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21160499598883316736959603283672221210164088967875295515085504465808304159201643125812079866058545071637578960517205532906220416680372013135448964856496739485402923968199297180353211167716021565182422371373696125878230902088879158741976748182365689300671424890513540682374368470962299659585149807344393232457908066924471181051290669756841554975718854167005643253973189593598013718988377559610918558618177876278758444044101907459015181829807042986700919216151204750469601831838029690300676980159527310228018012998270700518372722998505291494236758012758022758060792362471341749149843566915809722276573369342704189476453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24257704404250509135005290718481955653893892418913079013844305028475808399360116769553595677092052786396756850313605652527193356551759775854492969548890399376119954110366160002088883675505751727081530445468508292189010242974153904184957182748762983881605919638764018582963357496350147446901590093552771088761454228391852008157753336624912723173528605666017666688134820246850820616511247336250454911492656322677580623736478058603418669542796569745539451217158125017785597747210134917872973543535306477003008350491948042565007228086827287318649424179689980346425323958278695701606956423191983801055435644565860092068041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26205343691227900613682700601016694214705177660157604908417470234730391475512424291447766422279799367069398977644589112608850161141651601043699506051722334289047547239500607282026011049885156096230616168253600032370495402190920988773062262190957634087786499374485902799884915460518130275705683050950139339548106244815322617611740714987061215923927378193386775527759433822217053268995954069931844849853791207277723924302729911469596383698788487105564869727638339492722817079511461941637280387926054027993103932859812174088196540130277641178699041722730529524408065513231708442363405194570244506953109570562398071178593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23297892143739967862979472825508519291736954071738984459021814081964682193154789318104636648929037882246284538044819378811873103572955075633296379255194831494948342583389420826940346127049347527739284495149592844940332554400107873079005595266882624041639067768733246816861825734571316080943194944739284182152403054621988832479296287571030388610928613593875566318171656356130028369256509294529517619677457370629657646324981447627714190556241872458847318247302251114446368441281774777158224587688174170257623307075794460017258067393458525117979398153866434679292471510898483205841929982318749525150508952442076119847183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23814238473767226786930663008451799660172965375719482561952947036477855488201199847555999920162667474636762982409430260054413741643952342826870482329916737914338982199863082616403993923870606793019623981339095419851332839293794657546925368982845300492069513844807748175903569627029562709347851034041236740253642133216760612284137764910925899307241518992014677579142450274167441796271929846477694586161935032594733058517352874749455476869778724405765647514804155293150690781626192137101098809259325059900753147470012760713953538169830166607844230636220423313648442689726644313649711822261123021844204076170271032986799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26058558534025957035961250617145085447582669873782046248638076190892298855726553733605152807215482041635938777593747875327612679877116695351910278867125262080837656473397178380432985196246551618351271674940597328159554099189824477609135278080608330596843360751078986557036859341764199618565503939360910252497114638980592830120835691103134048570578018346188247171171514019604935545223898200727199349875009058895451630687627280496371039716905139420756003263303937920579179442441777696779614953633313814161513549483503516145925636439701755927788791626190580723333260699545143451284391550389532220793364923920874884418453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21452229187885559582835998506512879550150247044869060886554054081539965063454618431506048270111044086924445365477956886441044052916000613418100726318288249143441024717241773787599724295645850794376943842412474956194682445052173447557667278292443667693901425789774524631648362681884093032929326470429102895896107522145564885659576143299873497167398313564585306648374167504359721503481700503366349715926701295541260055963603267345894690204561736910143935936744522434082680219791255330438846246916407175809564815696065276675527099692333298045951186168625083458907304820111995990654486585349359090391350220233056044756053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27091530926451212028162844942741072905465340779310336504805290649007925429024028188302420731434574872035546973258372893088288225466068774524967713282426280133349532312225200640793294534895759676088569868962023773436187209565613142757543708589164105034832987122263607673746737471468299869931897513764528623971579063041576170375667612758929948073129686013761540587183107592144269889660955870568823815371601533541095687016618462752381790906029125300545431535372683662763907385879004933379881644055651171665303201418733718189189698811125660803713567431678735244219885812841196190312848017204732757959035564138188485854549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23829423763103222422656204868048356577988600126237325918451813561870070672907513806730002129827355300143456353077762807557692132999280304641215674756482064870476958527295485947390205124021675340351586176353269324132079582003839494797131127947663254766185430998152987590628757469110940980763205225665554811682392916089386940655697507075124186055491340075248005966544206646954457156490581386808392058891036547115041908859352573793883370353438112624908059867235339545411463370419469106934904027834906765088499046045226441133587439048918806143303475669468209562081307452327680037437619252238332451043287021074563775790017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24331564724116748177289305624842584303877481371826816948634674333020882205409426854551585136503946706020240253503510110868823804445903983978320616776145938465744241909534752860855593010969940232194294666041968764290542340201238054921862282873836945390979659125844571396143599094218018580496488716834588539973013965346129275489809750878099079601819450638050480904412268709317100886351010600727648861927655182417008158945435535525225226365574101508813674187234694995668447137861364913078949541135853989064337817605342912394681570262543634722254033342702046540984733049137788148946852102234263495330274739580248077205601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "29043138864469674410115813916106667311833652736090174914151882311521863047500412671217594168260831214217640154473821349463244840099940403353514054962691046607215518896219058192664945053926400357493308491036135921784803844132462788306265259123048543316109552329846222009447868986154942168463616807979795361151879764265388564581252164208991834704304537208578401622074623611000806626282796221775899648448052856245059736068941264268239601212193088075925220766906799995243065909526787610567139680220657498607606354007221164930339248191698255844930160472755253768488138690144317472555588675693385647822070481683909494216027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22459076285038580393402816941431662521237155841640288698611140390451972640036045526110905527416777352498947452601337283325208823934716274933381437772843136635405670049466415342902740542931367383526394979919064949419439983833968504427599789139871948413580524213186654027036623925377835363563976765112648254488128598683872353210243119254023624687552014900936855709002099995167718454062164839416857469511043439895627532211143185328113276189664310429119444002524265504914676760920478319628344128080991750241344374320966438777353066028128963936487476768854465979205993074108525147356337948161966232611133056455157865200161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "31777378825553737505598498893763785327249587144490309799987344119792986517160075402299053938126910492149805071039427288184864181034550313952907789701131960460023017191625554061993517910360102336674053941650195731278959339729666313818164075522560498007524675632034606084102809951975437129571821585170748055186235390958022443257919716421870783815422726275649860629271853473069426534741882833240475298569593485844872786879807778876821707706237552964350645031308201167791689627218050681355848025365986647321223169294135264972385518799800985947708362316487997527014696520887564761212194014271005096536316977179944033698843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20473112063954487276487409885622504391831841883674957515767805380042264112177535737760196682838268840403247683400218275652769524230773072433103264722771059290957488536349007350333881062476575564241254946636114797328625517033308172311669785441866299931809126788448763461140082808905615422985869527127295370870760961867419222515134200618393330557764825203717488903681313412969879577143815153841467978888454451362910275434715323629878614779225705852260743877072322180197666877262427575376603900949517907118008114012105447501783285452718661884944607676902461595742334969615706446941306235551992158910996216421291840657677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "27567142458162116086622504196233110610915004452858738646069066061964999428557435717854921544204220025514434950246627736009756568196701834486827822373397088682985362078466360816177600957431678216216100489230918352271256181367202882764720176235344690927787400051132847679548286542568843592096973541976341904871222287867141807309247048694165951064675933868064732448452682447947179202273460193927943483327763572525345205216843345469646527530639949823670046415675995048841955249997264149209298167328528558055193175108401990037625345799925339501217587441417643815306026394961052346964824664546421615717505688970033428441723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "22346575440988380560325094033781445245405476697483809890619243472797056024598624284583024776937450765134668388583465278336526575204684037919252996906156766161453594017161332045814564189500342039113918972710089825040489226037769394200674737596619987592159167043998066650554497730693108800368730081900222313748998468275951268402199352842047209455158424538118675410627986688920950622996450397671706812580822483589933012795683981245161674206334117771942439002638948108987222140228547005546814196739271734620379402970046159242902561381762482876579548851722001677842475442038977829959201838407570890024063027023432197524933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26934612390694040798379059580829992669346957190698940617882399349929152753104555620903384449302103768541365762466300439874969000805491983361025304364177308891461992675252142598375766179211160844831387010045298288996021062558865114242961199325522786376536862291588928072904631606811697422969437208410107950801608395745033126918461411744876694864462633282688336443745579114931298532712507345635765153368821967461701178427277402275456348175000793582220307576764823748133364171044119818350272885125176805459855033180222635499045026574739272155903322415370623547280819737181848430957272615198029770799710843476730732896343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "30059581314895872074398393828164393558376084839552552796265012703892826304425172859600703203977910181836921773628354807688263054921652883736234281278261446461715788098813866353593351733717858171356850496898618400329511433952461469325872754268900356107187669269158909455248725541631262897844242697134139767831768426191711838355243617517590204662607170076266259739757527864182153764621816430699965209578733091817984556110472382053302961122175684253951848236865649650433509596703830231005128654512609126860859958464284557006769371764653477107639467831802838661845070880236876613756271417115314047774584070958625149443857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "19599147039320310942849057730998437334375011141689233380624351156289174198506263921099733841717388632689970766328129695103430685486193697975524091961707255565260403062989198911966410708700789491150167593736923423225158329711160707770691390449033396977650906832130320977342582291740942851491014329554288068190172291734829589482682540416100776313169179310828327482805750223789241821260990146394536769570836369202476907976890898442918786942281367347864383906272761221560656152952062111987634516033969245198519878814572413149919884379878585157189680893235362180518205123407468687524043287212934722891980235312574839921967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21454500039064543397562244145437769481447184189980147407850989898471676534924322639936086919082701599503871474935089559985446764470469940969371208247653087571896794467250607867159773082792917771194872770655196382696720107154861486316722770372051637121650825195347982241803341466359760589459608069882787254720365813258094917605705785549684809733928185506878695688823701196271150011682804153598478855176313482181465154619646742125829059503960323520786013254091944112129023282342238032428479356039046311056352190798702594256639132412303331895598433552301687557282349097086742707154679050515499888724913632948017433526863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21069299746919258815024270017828724", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "17324793134348415042469763843741423171196555839263948102808698887019743310536838054893415733867655477868264386213640520766878651612994182099954270683423732188707981548500330037431234618781985611206376457277316946801983365364317752663555002234321054779713028428182108467289092797989700754988075918793783227752260451877689435600206304705478854908883439211041665844346476785487251560274481205982146720003100616486390158016668262912934198390528045486857929023346564941691334475394645004415693262848244053459471235091772606720915028548100656730878667603067039095140152872601640588371290898380888700656585392655199458558637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24596768766769141303803028310187979", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24468478256214160265410129145857603", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21913174815476850925514463807984330", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23132438144490415682615197781675116", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25418739453640679070055034275122115", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24279296749252520111554236270696543", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24603519011477945988858117487418178", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21777171174273410688698650102915155", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21918523254571988242598099550542139", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24364033710647667696250137152619622", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23480418499332753939903428103343251", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21360909804608111930918679364999154", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23253735215098621005620459547974147", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23115034512018571563767166558347963", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25561316674794630778780509296384611", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21908673039638853289699350574964854", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22489646336761470137554599836641931", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21777113440674928387784054809384008", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20913230695374732326063257863710978", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22095375165649107779755072384238076", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25579350006115929664812928976288356", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22451690949141501279979563245598068", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24028150430822224504850651133459120", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20952574672426352011638590726029261", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22887724070092912261477095807243590", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25233977044616405872850774631485946", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23664214625872241644272657342081422", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22129773334146858781440228181703508", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23145476952364657792811474341810779", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23453826998906469689022341520077105", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21515543689331720570351904122858986", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24443757422317889864420439883308384", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22458681960488860524705569930477548", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24521204242885691313888690137359746", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22728887572504043654235513834121593", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20909829576185685370409575413726742", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23078058922122234059910086798589299", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22106499911758920332086877194931198", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24710756203815460223519533323226486", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25225971693437568162670531276511888", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23350600661153336447007401777245620", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25554523607097670303562292165855523", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25522105476104067967296660346061090", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24330991376100834157287269331501506", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21381014434396769553504378422864264", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24115908031891410042970931548245028", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25078491009293809175688787751619783", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22231406541725561643886165235028121", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22305449573958320338076684886261659", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25018001749251030158001441825403999", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "847258069498829744083585897209530570657186805429112655766651912010872627233535231685126188407457113598351678322712874517306985726698696990548678848689074626554667275974085207854875175090778176408159098682593423072837552086443391633849168751458958993276899999399479541362544785530583875883369655606236445925490085649047213680613573192061720968577666312925180644788379638261166555930138757226018458974049898850806994945156879351597542238269077686516266048772201336385487280708264312755829640305324534378489408400274190184129697836582245535119236909233569977314415612530479177745946442381184089592263097949583897256960537576322481766226359489086684507331227845481269250194290265726225494116680514515187209148761904417342166322217889207500613782971788096286169082057652936738408857287409126195156160782990069731322068587012473843842534750229810440383396785965292021957826918355391726088664511787258693515923596595011213426529572397137243910760270100846464577528801025068703087117722495747729040700353361396405448965644022894215535787178841902178989693269683050926188154514418551369359342032494877732767218637189635682881235029038590176680524702907653296962785099200495932398520746797113200528190871978573482664667725782332516945229548821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "28182289280909166295041689971328674021620644894989672793932220011113053641391636620190450359741238299055017022723734613682017115487451978771586653696368532115749660015864759878560309809687294783818195788413077676457145077084957929392362281514072577629968288761440177480878081030638045080655501536601506790889024300611080772637320334658725787104460992013638490207976957749449434021467093623948034981085588921033855513438087527742989829294866506309502768353999328276131770155184498065941132302363560315353189876094972139022837453412702842179862176968956714011765643646682131346673364793129791550217494648950748466207813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25346540684636270847534861590615307166036433349651100964339638118687031632713535820312702078674970594014277137218146519433706381413547689723468482613951587777036631694811300302896617673801691807668867372864458277405138380961114329342086002162323298125512590904151078367278462978291421720298672915541284715248358160643353914942817940345426453996462942918382554991120434217905719378561856379443840067090542323243854994443488959243616300282580836049754008498099941431599760831735252113465274892853777343698594428496844787317007089961990174510285620008588240879515572293366013262388648809444460755793185620855552176087157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26535544772943442709074264046751583013162119262619498357290098876729189415491072075333529353256278345514819195577317572509638113370494145198735399322221192151965746412697409974178991846657102110127392077474378134085577991162029342660796155088686542001722763800389130557839763941599633118128564847516563994258375488054070714679513923083336951140982470512479076674258449411351267610532508501806392222312800741560587463866252051555838171521766197914124792434295608156804669732428195993144730487115462844525224306158724259847763902263414010042386990302389101402832467148148977970979910125070101967830732202838201341890809", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "29575745624495406276919266432688907682599078176454673112618989751309203957608884604994479520420137720627662979038626716601979908928607661619490934962050069178387029035153528144480182806244447042538257770239833840352712542844899818218026541587435824361856941110730844502307914049006007841932402196215638395918140645308064673736840208938419857250418027913854190426417325463883893664747917760971780973879123382536383097865761304446302913050078557361181867870384802471226928283800827342893824831710378734292748062449425552067890434801337991274117296820440923660485257254090269702242537848120841502825157703226613302149863", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24639995080147882189871865365189817419048440277655409321821276747639709612076846932708692457834707192818046385445622475480314308538400889450895931186556217625323696089700962864570727018185009641949635551492861073761897414873537264129624616876351438393037709346488085282202287017281274526192585613845801081615318919466102225454694216135458842087025713723346591862759152295398379235557013408744324021465406105980273886350721383563125635305185096649401183181684862597585106251297921314340054874010650752708476033138694584019520196037688644337442686850658475827829514628827409729093991572036584355944707139113625909950357", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "798516349974766743503304668081739916117410282610693138295249927955596518702099123189598038615162638570655368772376833598348167408755182287564568431484670192883959445181331427183046645458610216898040474265812982508841820698292844648235013267939038869222072632021041806636497771607257295204963250516536262232525471866626213973024906775164154311703120134499249070547514805310747873224932122972588162578978297894577607158855895596512247458780987456069595848216665223632615283363787341389827648364954004021084251287923035750291311673080653036058390720105898719947621947722685256589532789523731824299020486734259185891478932772949698136319377687210227888719026822897222237354339269294506158101871812331363560248242115266094354441905154015269382338810342457389667178705090154360274245881266646498428068259046343220494083144257381063186771632129050206451911748799039132519572604486321252305829157681304212280251801690186191406232463084197923655653136893272780375591489239533403715516805467271671090127615096109772206002992657949797798851155472244155658926230846229117591792323997851961668883224036528099421463976251894561737386598430281891321349342887038565427470112412445086032812040554350527746994854425624103225558736266686618321084965853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "752092873868183068961923931050583662267604065013974462280058290863386632054064245055202890415580508194554048566842927413411515868852135988387844023832507262680928475141372624069181619064832295847962812680203287343451673813213476629540555449200400239243783467983915698060530022117775752115848919145572868613234093045933861880876687178096954590477771146469273540632641425692887948419253146500506439718064689923855070399985139116995880246493858689932176432596727163793322067010444419719495378440041370945925537773624800578171974801378822585508561242711579512708601746194885769451360193043000148227351801153751518124969209328803885574573614007157727408496365938651812919535104827368531324830975635812955652890279356417507503073027061339362512911844553105215609685497118363501143084871473656242980258371975876423175474372187288356776691448092622832887429202925378964243893074303106621557578742203546582680300303403212560591978218557971717187633898283825634748165437563550064799031113319350936951025025279719474506326955838040641113243630953096726883883472391044060706832794232550089486866360625262087003206326251272240520738017504757849189571591225972593539546461346728864563070735563895932756945684622021472704965665161542311126525685923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22881504823089203509840216717383661", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25717619054682067043230493042052405635104549871387055286198064633267375021623541225180134290290125413465862944787514174804921861279067835993349864198768661129916417966149782583575860073157018679770205159528137919116321242196626011232526809981432009332982314217605604241649236639880015162329846084257359058378242116735493046003344947140730240237002815026724228407569173032431524932049163392570849425414747411076114096406738016722253792444397935647177420423407734156560238768164546869533366674457048033896634012287662438562239173276806212670325045456900812530862108585744033088720021549617792300134809448560335863888339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "24770691105128741439721950199137688482865966893296002972712686733746478029390137615530071807186977941997593053477851770491764517144569997322653740768905258467367515941021513414193007377871818123121790323388628003380885599192798732921871835848809862800567695908283817694208640921107785526395566597088658080963644952063202361597028232602460936812633750495588627622124900537703447069062729073323343141709723185617015334577501497756212326962482631433900547178931550566627304996850463321313111580224170076351706200760738848364930624320240091083743255230338574468212062352919310296346752941197403282692863335050959640554973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22979535951730655924456548478811633777676951768687822522564222932170896903421136745893237228597999432793673360575536721442541764470633727680267117305853548480267321165417713212537433643853779558224083761877938500838438232991690310087444917628470164881149889596652656813319068961063285234253677683515919418662799889033376931828931444176281035244099336087164473460996470162938238847232177122569145442563290738224099988226717423707566041999186182688504990035348948865498893878701247221699137450042719642159649537289142362235801491668549490834386936842485059035325768261289578880482182970269976503918250151513189463112551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27128546174668000605713984225995315077636656663655201464297914032947212680409280249106673239527596025888767294540216866865828658061139141952571208941926331795503275617270843361406477855699194627697595632330001975408838855513047745208173692884528414773318239669357640655595766128257346449032974074681762036052492621194242866382651918050971728728115169915530101272350421423901576781279121645697578870033164756458125347309745876264293727199615818640037092843342257654005411170440632392136080197418072864345836081457040595330298607455188444025338876286495157876870864184816514843839679260445383588506405866323571568125317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22617019744845962394915543099622294271117658323147277543982343829142978441640815433229216852361338105635994404934553794400566524462849614499357355910226728671399312594221907957743028826276245948082315897912035705040963091609139819660050544387729609429991862986444741767631426289140331597514105715939155667087565347580708730332458056703609029754711355772180253953273622754820322727094513014534565609679041518960557029205743456277238119394617549989016148949872424619062247991324919492158365604152679722924312257198584600529496893859686628860508696287578555146162483883690060063494225821925372239920672337268189376012587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19541300014136997576126008029125575770781467566724773319460473212959605322910550630717278072619972414513614601672936288403721223030871211564727122224010588089166081991213326619082959626987722260422222244995815899606464771445139634507166780394008960057796485951588174976335992817803231702490994198166322057932539513991472045034438620116236791713300399433421280505494923608205392052244067701779123378177974286021802428683965307768776719299736572357409408872343032109080834052980714459881542623136289850532011690995951251631771069658562406647905792817285795702510621949964986585650734372475008562327755967626934058385663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24024391455214133322839859695628467100162825016380885315058706909768438868556688232056141682300169185411526166543050449617883646614985721416690687856716395673291926090400503567601674722910172306211446772209825682157736414327665057561787372828443381433572028453437476713110654747933463269461325095529030110867574715627857666084319852369494570892567977473330638134845222805489194291436790494345998709408671416195863335244681858486902699906687878671921041733064342839579437040966232531136601727355460417810832799158467793692028889477807049272844084550660425687412926604461783703348404165903912936251375131375087387038049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27845919826252902790108338349002106208600829007532259998737084943360532130744299113298684895422880994340997834617505298842373924248946676980525884684968987386665685663474311789936772178512416343944786049753384899274479208992686342545286576850544051119313324629810622162448447860616379373579331873340212571452867386318126290308680519009280218730919509454103005154256500997891954730684624302159785624394788584838962470845994661157495871682893758599588683156004343111134461023093561876896978437868229595203671663737536885324553741061685054691316115319148621774739812654692024030852024850608349046888258833230115768057613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22898731492420527186203418211818844135055692015183295459659412379945835304885995030114159010822795899428261999609659670489139170092400821525437975967192833418957789684923723752931303867431795649030176187359972951406127134889746314461592076442119135086694392598013385504295121259690901111838538535181846262794448041775770409159067482060436384743867380284184411091925511406499470911869983770322205694909660076457617679485473535696998584551062402344190994351944994581763086274776507234919751781812637115139956402959744375264545257036839001623413320867503037641328756374208216377299548044069309948032023636290815049947681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "28652836498533935046002594279451675491544054528694675049938881403055332027123895603641058253973908445541297430254027242587359383460419514964341382117741440984566885031449145247910925633722318133498579418956088252876132383468799445439798275236826308207905475264323922672644184239238416435602841000962708888054086148073800003467717998835224643321116206526910257390312725450683973306861613881371805697409113237871343081626101972749137365282339381948869246317591468022120069691534033189887171454974189628059005992328607654519707589863149482930030095354747352577017131200542334498276648142612764597048834110574271113929979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23223964718032456780116912932927793830299155475782930693573684524950856374569712739811550631218067224021028103714914799941884147882907101769900015523020782674799794815095084031412777648425955788442588290340685313490760151786161760925820219775825821877879445259506326098855248273351447824847559452833476384303656802795322777991043330398593317235681254242448374506914472430124071401100212296153610393237557286739233260177666584415550033362995371635317030131235457470750903635904898861095353259252827918904654972452148186646380760500457309118694758250541073124585408157140692521108846435618470858154577297762359867738201", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23780723225337660339994061682866898612641158422506869389794373231325709820020009195258256587068931870385304924337872883768658837447073483866574623592472812004052912285391586302051050761772731918103304619987549891343810032279091223924787449556818382684397578979883052973992145645732706621166260088125109846971345043221561737301854510132081257283615389630885349632945155644152480863611138697553643817578850424844542883941037508045123581631977349281131026369909632881260292022285379898121082224950749956556477020571119841147075358030013306557453078082728527926843481321602112509964063393579642435708408273357215321512803", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28875758269109574517513842351442002632572465430282244994730376866590214708982083213973537044549263901641057429573722108155650244040711365397292943206065939449205452143937757040813151677303248902558438520444745104677158494905865660082107828229846692513527789200605798943630525425255376067504231854238089987516508809253452749829109176614715978622202391202501643616457628024305775607449805892040129458249323803887899700217140246931689878848018799570660445418589621575555985453412470938150307390536796599886057820381310076214370279884007541140763916978758123291667190832717555083277010758925308718446043002234504400877829", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26690464384864397588335634421353847568779477073189338596331690334800122441652438310346738163713983922085340785905398553401170967370292440901047127774301850259359663676276312779579867609002293534447076330584143842852267886275860602583777621264284551927376614963402317735307842655283922115945659389282523806435477720839696738494172229912544537624838177733529595511611258243577408789473388653639044843238075794740626149697622421321720978709534497451913819518554464101071697630530545512934045544361380304929805780406988988787486503671014427392804952474521663667202184072530688269022603368237181102913535266067813996506529", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27001430878332647234192707107903427160363169842315664952779053853006461390838718102866401403770691222216966559503336785733828780157984302421829631309215455983590511703259642968848587742113007434717886690720855436745219983494222762708103573279182117921485761260826859858043496920324355193504693914188924513106124106350658950339521543560372280985530442546637917280162692275361127554752008008798283907412488437587877142910357577703048758117437778760327873190046925653514865399991067590337109465872504122349221073543585766947654659452699878106361761658358756860388792411611280221937667812047466357380784769050937013844697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19145310934903830749953028746230051464565805570457576211867688316824536406719009442986401029514639489830024669396031098560262575044841455824125349073865756654356099312740336500584692697952899773425880088719851506112390144060445841328951530424065866153451011980205332315865936988355229603308038177361440444459386255955764877891877154246930835664288079643670799655279308857520453859111623973161193036384035317053654405046783250914629646765200205346775529337750325837562584630043262679461143771070154223514104537740007052511000044847469261588203424516901132188461462678375100548062316915784578492946264680948281132685803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20658050069788861298675433257212595346293074265138116876432200555229046351310599472769569616113230379397683473020528177806548766546070575600156413006307277572300112024344807560789863326692785920622300752234190070211813471426429701012636775427346617034848638565334930297283937393251615082248095832884619181432203216843763551838938766710587778965596430690073171607896406176605451829508156006351156316851041741958240482397458402752539717517974616216232834480221641457854188754920645274524318968412927059058493841990280967674680134174300553342750565017647962439642832168673985295605264566694454596842305566107639269757141", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27396362369100846558169857289736841596406314193387085220426137451404033482897037050681139906382253063630745139867840699112872628470591468464631138423360603323885219157489570320863625468338500559393237205100873835918941690953034390862145622907669124296377477346702193458492815473084665584977680976042509441972200803217278183087520444028365666626038227250739944307298208034910499540841269074884444633322143401580411090662624226081679847520987578385838508575274788504704068564331546042172260971741402429599546885144878807192075198612527496919447625254432997614852215853523800949493118888024601176135883832882495980323101", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28885681529874386779927694705865485636819186501362927087619874229254003005318595838775261104014344325452144124517554538933987718646319614115784967895737589983220879052858786049260244459296054585662449573040554960872471941737391785151934955146841785713424263800302846314550375352979136379801472160715973173046244871620746434024037172471426689366908507629349819403701650222850969724875473543872266510687839206316595931766160281834630269321330395447097538215783018656667661146053871972585862166766300588312416464887025134985115341710543450038360390340622787695676436704794207531532479506552263015888556247366496952502971", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24215113463303879740939043368864591040917541477855634738642675579099262301674138163155703265196170655087522017183381554860977921177459435410069969825570925900801869272102168949384769697218967659441955391118944014654724324082156567181587477452517110868672671710119252309348207397060030166158197632646338576179442472969048271256857184828731664512715852984296338387503756204117775701901980618139087808117791419709979653924129033234201455481786881198915059252908117667742455680585487352442069225493268888497228907748475795212232422979616521166581458366953388262527871714304072760951709909898677740349410473130750963269989", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26429276728772851829671340857924213428920265368606145190348581110503325560413572648839211135484668553060592750063806068523568363917049736045811482135031273795116848779044273462512711172190897271031328206294522691313451371349826980496442402945720545959496603462680752454675351438139410550875330451711620933422968428337216932217611638674126258599561297910289796870005718970129464059063632342060513340787466509183408117082511993196332955756898659019408907440989625972698847684348347341746525292257106847418854746327544616574391312225105594456188120502895048896116280116281001410088212777307960762801111039464164843183287", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20404869464686502853566783584914925779919748979935497891936879210229406742008876081240676988224577429254782742360880107227540568127635291075485052422494198792281324128842769412971912850870756962440656636891177228002237656399822793685145429492843264186832021077282088952537663624182100715077774765454776087036798115564543043417458902712435282988720813889624594540144562234894870945371168977883266677720143618709167353510444173770896083169325575245768494538879125874253870867081717661526674165250288644578832069203272334817286374917638645947687283643220467296488728998091843360082187362360892168003403197727372337571479", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24643338543774888168310026704753836941062577901533196693602584800518767234163639779085615248268645572156030663019109767297197122415100551213132354066047716160227695011576540948454777407813773632002488168386804861640594145782367059800791293398441482346862193102238674628677043067229104028111651789821198133810914390484191704020041338155624733423588950982984370100936017125228597300686131971736976570879120563014655138201010549946097181639136281733062657146018846684222519285765809926099679792371341775176773230811559136143885587855153300773152247224450889658113618627209482709917658646941279451118747276240497123124863", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24955887803390271828138482116726316774187153630491570544831934840937045820785810407528167361178263922136221079808580689082878168465800467377103345615502118720958678502974683484103807089310308106629666984804518321799665504096339380975267418012859237469674627279575266639064375061593571736549088988666875838969276707535154435190346722887832943797376888336175558798265316773883495065833943702909389904851916302157882000675397456731894563258039989732155910286396713502198843215998361245665281460385794453925567737233009496791773820626199949911837251168075290247247568554632816249115322306596325719275060478698814903126569", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28506994971579851652995117129466512812409889053305316854173980049021945636018496119244081284422472994294835322799307509871331487342868063709874883826473974635603630754112701034772681957501772412379317718719313148264505464563566991528793834677484981605432133374830818344628174105992909707132340595381123646512373348477823333813342220528835901757459564176082612391779433199429726131799952765251877301241064715411135732147450184324213808715912878606374590500818649115944465867285319262506037676001231908903610417887722948982824962684512734871450168014270851142768495329395497129424899913655418813007082006542920514655131", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21317362813703211951133446898980111448252709551682600750321211329996157753523218571085335419367194334056631100765653537269105569268526357102425924393195419856684828894048696226326650766833488837089290542975381788741568634998105739645186550723586424625134456027952998152607377132898700388894924218657487074196294241999550092932110042449487615512850707899878146920613215999109367615883719132943823756518027611368355791937311227188296713279313088220678244725294340708410567790333505531729374414429650864687733930134864786010119781032318598368745469723688978546893397320726127855188718222348088978161712793025130242877971", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28669404548565219858062594424524534913811014748547962072272844220626666556183883625334183591752620943505600950738785705169863249064183114478946939983039945748322145081431806928454181048921552128691237163229820884213373852816615537002716716885036133403003217153453401553747963360019866636968162495441500194268598943877817779621629800602232628673225387939748607417485394669206627217784394973761150750064902819569431470871734530903083416121680072199414126641937226083062119337081543182711936760128693859586767045191257087484705142758548254264035848336440918802358122235778532471932886650658586604576966224588608348045949", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29832932556903416412859674223152178159309146058403653502931891651312846364794532521873165574269531966507595073076380678893630858681725465495573361838545734083512465863408588318958056668572144846838298849942233246048182439365171382492271356599238682573344734014881500035115466359394472004273319281116196757672021120427158870499970249225979784430327276485089114848118505183400458414538020764319720523746886794180764188079276454010028817190214270506946069787187050700813462533909934085132786299260188615529811542369259421523408996185518995152178014466734649206413628935657235282439864595268929316860522075351813132313971", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = RW, O = Republic of Rwanda, OU = ePassport, OU = Certification Authorities, CN = Republic of Rwanda CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22342550929211041870434476885231939", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23398955128878918068795434723005832385352286394152451819683435124202983889805467991229706218911424549364852833778211874316331998803185735526516377193234672597854649560882698509576982801771241052545562910971177196721833304338637490008846435053039356510056298127742892619223865299663948311934647303208408157526146896381622179575234784148749769186610399010615990029737891568083983053319854869835220052702171273752447012989526143577138265676743021053479931937087974655715069108667478112224742931685841779332750182160462814643141448373580750542024939085603205704236530070420477108079890812910021815662240908086801567080749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24021619217245908111322175210675270698268669980351922052072461766062732250298470027258696340591405632555799419139150717433338968051600244619873593746973309339279988016687115972307550304873651741782414239003507343087233254200136854046409576935683522207876586885215382733432893221224248571326201405205923070935235995966352700453110580836048884817580665149901837893870383416603719875762949173085697336308052835006810938723472074801000098888620531200097625577865904372115329721750306672470672829257038207302842394942223097376952046813670015755004297513841247965080199650240850685673595672663439937510698397571461709671377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22483314974581068342659364810614922306216076962528103114162387192895479810043635807800313653412262096063670341314258033865087947901185960446569155017855997724706219943650655039291420753655802299875860303574624443076048769745284220397863758727381485365020620558685714626872457376284238844744876942129218041954294278973848702918850866563831980274962600778295497911624180921167055841662494441971398047254585629547990020756134104380131064274270726904207778383009480690741690871887408508126350996229309752011171319672063516176761603813807282088784669922635540172546030272499798261002815196786250773139731429194924151586293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20819025232441688140534026994454852209475649611844236549752105999396225285215697115383547340138165101451980039818690040012359079967853590701499181877415439206864897922635254812832220181387156121621132069060911866481334075846509184374351663355937795784733804933311988700768452933945336776095264974625907350971486629122300649106728095267346692319115682285092300682980926668552166598028789267468619745381715032128108655340394501128093298329124598525213786858898315581148917886778686183787243642161888800245743861152447651228503665905283551553483969692449444534822464882691784590241764766386285401841518456864197259896633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26268481793391523102118383329821669679829083844257623267846471024181262248542485485716309499412178041812788309851407949598300358939906350136470312571319021672831232330587571800827983637372360492532198604359330457226410174406122947909024095243526245880406528111084322163134179941195755696715655763050333219818472541964011254504676451847558484612529859472533588079659329228297119334641281118913382678858950209711852157540748075916515207948938415838525043723478050344921820106657293221821605812867152962928084635843953266967483202568871950903088923362547030135785216624599766143120965586457745590930357575530981163360667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23596124122677219915840554187588376969549490952612026496280307790082717742127089831698015567222326451166301377612924121475684483451898977168622785609215028529552498837856870222740185847592769838654057153684375469600451719989486678433863685762555897709952370822729302861314830674028447009732257763119580849257882152966151099702705602951076563683456386084643921022412901992844777181989106816473649970104133805586108841178461299408118068583939865165061173514193438051912705549746053298968072850905002182361966240219518495445351953728886158495990142701515181486756019152433641803603886357273661852403357187597162167174263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23091533885252981404558332140720651863051465778776632135682791911941197114709208529815421211180920118677819149640599830582944444247151688653079093476077226176519075955755590554385797467139666025915847609278786228813069504844923914661988852907472938179122157181935399004525227568735903889877003387392173813257168069217785768807769626374378218231625810862204253194830820909519386359526404095474577184563261581019422707462282215601901608969159220187120835262439063677754094525737339281783588786191435419598443047939208765232617149917278215805192409566418860014329625115874989239076819048101924515832588488568625150213033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29748426658579357844324215764680811826577929681595502735926018220709481164066912420971492106415584646736827088841279834492392606148809743331040089081245087252221601643119532499181643792252748084015228087210979218241867097828815261257826039414692761417068385926166443139286588459175521205997481546965256319298207129288018366187192312971299363588841977925312936116079013485005815109660140323031177267691138504000310021812819811022900680189698322096056768270801285036377594642030155868776927082402987281701294510915881498133074415915470992008771566501334089410869877768186425472325507985650160691769350243878904836266561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26087717641942757035411865621101429657805364620606254342256753235606137111336990140634402528375394942095948425505508948335795173686946086290703770095206350430158022994347032246016596429157970744188775869314832592389241377277528310124803929588443204923356519515440571290508294532423708722391322721258326792373001141917782885608122478816270814475057056466329798793528427845671038506433618218795780820934735863408774429487503822356805502796643716361904464117335599787466637893529162565952362101439423145419408646011169062774789991342936186743837877532203962601212792504437348452552682808762821419576094087065965125419471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29055238993607062992011815683432355039810180419805600998969614337509637938526956616303896863965506753483455450244394717030528461941562098113941482291387951718972261563608299728250423115291158560598946786400159801858834359973331423580427896963505671303858789889255187564493626679212627919693662646873981114335829193777864487734529611048880178556190328994085206524878653119994946335547966162395319252839579645277571808141408089492152326807363659397605254795247455526352503072960603096340823836301554849970851733093282814673977243299383971956731417655498068920503230273109359382519076281761509342405994855351382568248899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27165694286807529472243091883263617318853317653500320852399302816637657466975478424558711554802264869858035415806508340315805241937839879585456481849138161150741333726210422014173448890319670405243002073798382303695974005000073963849723450683614080393770592317003844814049847879924218486616932733064067253730633420442698430749349668328070441113631319662093040525900534361970576864389651872511955749272775035479233780220651678708562037166401025004406473681608942554802876514902693138902117331060801440275489427754963693843268973381550765920276598311690865832100561071939725837200013432769028798352137628033014194154493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23418409670882095236280230542758969135536862672940754170691324808142268898126376497930397647069817281167069627806246847406191859830036591503722774497922250533892202287196065296954596369447900470001547492022152860990938447703949014760890010491271871751160947046626656404061972163896048030347983117685240730129705308432054947308441100757650137196856832903035913559247925089808404797056332202291394065220303397143562096225858899743907042103775057737066417865634122167127605420378081109419961425952159040594930640800588904358141573409266490902530603884225385958230253475385680851605263178582496687101591170873076213304191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23669025583175037399333243747415444079206803878604059936614083354792168005679055096770949947301310292008379112818478478164435700577703614791886503887601052301143076723847048972487926488398210070800962822477942466414451655784697947841046382339245845990275577789074193218905316347544400661052413308436998925602790664319474252509177437778920129947818767362586320892444507427828678478240732856455241329012832223285220474692150262411964646304496962381986554314472683245658664677723490991494421413710713217317529733824907438848654314473914573421980958483698112827834293000928436412409975894720461736453607001116022011273291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "25714096452576932857904370468113759628114196343799875834272604188853987028687747387646533936292947064588751840669734028432452453080187259007989618814870475216152584315763475516173171131399731671111767134330401115719680006836360038205802507196975779815793972348275223783191347368956630199498168316785863618642737346349627788195392474758573884970263171927721215129540585312748689406320768170931692235405575766753754166037767786085754877982549943568650554309872437787190647663098232516667146695278289686383303018008042792788175339478763301977887786659229011485624762976287829944728085704840796198838612331856642652560991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "27509500445989284156100450248043224598849944067116557937299965573212375390119109958391013318001865334482627509303065621209437273691030648509686606315197147378474638229968881066943644299325493735676653803235049034064956863434209649519929823763430509635761550945715052547650510913375545477395662739255932924257462564437142074744135363490170436483120985879981521178641060908171616384699466901896308304549972067665795686713520343588292611416070708233771429149058765928996956070694388858769229860469654868273930925381724270381857853563236629985128998558587848663768328116885903743051896006872970787730092622053880447745629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "799989928722311347579522638039777926251436618306191330686602907462200750310055206227782188828787135020445622263213302984713295001460677914658735209296596973410220478417889459503192532699341883842235117194927737428691471228586827509899956487900120264358765929500255678043478306588068820056896680681386199293417309157610057046370969430282907833212999171343445460034483999414324473231871213129960370190233615454789846488997175457914404344365583411457217212119927758023819744030608468412148094612984518518891992890124399822059233272448676345224207458487157406561916113194306909891656800028203338660130138315124521738332867810843186936404038462814995737351743606779878008649736291613976029104608607050659051690470903069476352587305241165343052911407336260663028916277391687743761781487961941590931448795089364912099953341883102383025614644960558171974166569228954495938249869139974838300804190557378630215616881930233300891746538436245454283115399440088337950681554273982365705996190223891713241417971284116228691864428618974768012982175898581684697111388253899793295044024132586434811712635965191841451353373543318270855365510211970643379360903683822411206026937277003446458273288441488026986370716764193039149975213769660494947419120633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "615218297999691294679739454709470310317918894053180955495795403116773979118569494958738800527573038987335360177324264739586401142279853013184853915896691345375284725973033187005000430966201735010619800439348442369246993069719341844451967600516860980234660559504346293967070630078536753401426722441694971218296303327618817749571627999592231919411638133945103791757861714761656778359207301183803784917086515666248165126287379640908045376522794531720264659280231539130387158850814298656019221598506331181260564899734363521995189847845924656208978807036597066358873871109598193030565806385213059493035397548822847725715617727824754040520277030337244078996955744974396424082398939442278065344034850061364337158277473142896057867568907550862811416410408871861419193490387319059526970870193637106751778385442399336565644703904557658061506469902293780150966838955585924400746182105433993149542832511800387078315668553644573980861749520308365836864256912169839985437318755156637853748808606522335419723134983459780746109392284358770262762697569629534954976885636541066438112195887685636486356354559911719876356068584641171664203343770280469073116352759289738729789749420455889117235360852012273749700581121955380564864804174134354651914011351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28296211467220480439356302558336679584569414075528194940596892622786908272195035621333046224602364201610334298887412742132667316766478023353790806439952284345890559393780209599058205171063597355355749828187665855794117211329744504562055976871853342384411943359851790033014664839143415073955970136920995729792206827594274634365214344434758079857371260189657884584886241820675746701485219825911817704099733753393501992651621527097119850497515784581030595330916862793180421039160838120037676420174330857243435216903673687774311959925303480082865886228634649700075583577856015583328116046667046003516510688107859070027767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23939418557639144205279981546050893136571792839146337704780839203423051070977451168804075699821587235758540126850725844139963464801000200958936758890490059299989314901571901140851811327230715133707807390907443109188629574848333965611342453540028071605673165685782538873385483584833786564682190488750981391403621798348960114823421409805501540077110601278109413423178712166888699023304463209719714044683566334354528088981788727766055769718196004885524591494529671783784461341524518812521400806385828215650581191406006978965248921267712516813868908806804525914664386924753134289443763454046545892978666360083800100921937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23463526533338020867480840789537187028455497782285395582511684401178463630189558751030693020201500095944907856913884010838562194413963400725937938253671178568089625477701908021893760947784040204002541886553149482406538788114983148916085299950327468610450364123420756832888871208246664532154144055574574993521621419846416161661254686564323899804209761189724844925784234456162476914646646641912618114617449103139986878068908679098314076096260127296245729087075161393942975679988862527683659861361274534753720744886897399546999412719816348951810094276229588506552601594065784747706586402735450139155517596381370153569573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29821099413767263452158037020025726217321234253228308500205589532437309448922712851012386678103505821071298841139021729634940356323766755703815612937858754689542090171040052981518717052853891167169231902793787853220434470523304213033927012772116720911472764543760828114130664082012989301502056040836825118762568768324889314057953900476660067133841793537713069041566231934368937966364183966986827780593376108727229020232290907854958603135650678902318645114311647023012711019162198146690328384554529612202842742437763346639466423887977568311853908916196799359489846801410366501063587189571061588165621199737812264916501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27532430108129680859940273208397473313093841192818846816504798536052384736123549764813402109997494208686773291297092022643091979137219178629420648777667877628008626175081222345506282838310686448930144841566810602998460769257466616346017701290675823262575665424655178589062775989612572122836673393913024856723557864879676378216147850709068879214280595809784979469912185954755893325886615701546529312779829392394313586513243076678453481356428828679871382777306052110444924118837840109638715962252041329210810381816558913635466005320208569971436394593546209244723801928266280759354936560901024946315731994586115590697917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24473761004955160665287136710426572142076305764402402392339094276863076977907443315170684109686738700780575205140856181446654259881887100451550140863714140898680359315565364993056587668041529179748651826023387598626735760630265688865497746053270702426353000039020384992534049846767037690572827726115865660612342860456016896973061884749635966405882206164663882139840380926688284090182607491566545461183100488999488379312780683193235777370358666803976031559017083741107736193394889530117466348417228480225072933821729565881324675697093812681988344263867549314714037798235827217358481892127991285001232829336746587368509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24840607448283561963947052027825303968858663101783079510085894402265935047971511087741722887307015206464196649167890620365618387735398175610586164756520646189362025155605476329185827960613170893063294316404865898208335166379230113977905607244767306322717366448334268405337123731459559670487157200014782278418030043397206461188720099551709581710854119908633400862264118965379108492383077695131254697700666148930558235378546179171032650137962143076967525938909064362973259072963201416197032058217678216229628345439338899518233720914907045946546971228664953670586035046079092862156077875641407315978982211107506754152007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20963468727991558100306395892287463080025172559945694672806102225973079373679205085800615947964736842733969804141626769001904576855622988635871648422626909155593458487911129119743236008312261012929586772386717876960700738327100768959264804526290776484224926626840590568296953323716268610807303266931991332304401819886543783890452292909528043435900095110330623257992870942284549272148909729984081012829007022520147822895493790438835656089300895643624373290960533360629092755895428421235859225383694759383716483004989828027019627384495479662092669720044654679407086076457187445692908996037458270642584427901240328386163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25153737515731145578145363497393049677335242322762713308013375323802648110342943209739496164983928981717960040988145045118698826356973184126828689418268121771708008362715719183437523211019812632696736161115856344296592284217339885680116747986817479141624591152327025037081604986309408506752463180083205179212768632930921159102976784395596028845151960604662245263943332576223343148564860723408260765886044632068260851785423725009474287234097610070054535604855315501190692950563803953642990134859820216508717171416756599263641189056794324219894890396904895751644229182583397782206114044204764181313956681634539206787739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28527643423751928886326873871145040268054883145940444382039461709359795835972731186594780953080935150895607739536003437834495852998261373283472441585183159329924422624547308513780734688701156504105815520917753140323672002643673580496805553867489406920231176884145795600537446500184435409164719779846277749748546160136916983987271115980057323354302201971606556733184929890215420190795347682505721550860126689931085090611711213850921773986429142707120123509829041673212895081775905428287639331536126013415262631735320883996793174200309147781549124620356383139523655269618391603640744969345155833499370715906166271599301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22631372540354253472402809922378224024464535507262496043285697790815160552032940139867102621108544107129855597955647539593887140966458412218837153371669121857945317877280918903997190651730277492407797294997360299098424683202482972902283862583386728679887707087450465768967422961690118182623953008815359934080052934187625161879007544708645739613950979560589814471008467589651288446389041721541443620568266168447721300085334967420547180974329745835750819490922109612379598430700461327618438285243708478025543190122044429717153193210989450898733022392875828851533369626520995692295257208548674298885736858625953943469973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24463597110894152860995111655182542131567402186927082483271805165087611549453194738738566645709602530916185880688670896805945820391285585698552675729826992153188063949680224310686721828660164471278093974266418421348096709864140705795482518565610679020313585598805863230859023219523890459089462636306835423289136779019822651622062853632631145264470769298441045762632602297322094440768709810281596427778154855257409626996533244464503978660794181380442077612750088101751581653035751736958048212955588918264565143176536784378726574379780758667729783231141584193060840489663620220879469775371101114141257390464242614690137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24921241198157786057043946035052163688449670239703177658733709338192042845277638349302485431843526948976663757528270881094040209228580909190441854949718676725179366948797366775870255508925505519793130430939266169861326940786122169241323606829895897049772272872565202295132123904165979016737028839585589667532168255506288795785126443341161075577354458191278630944033246546584115893483545005851723841581246860031718277847709269321594126207418064355226645321250114343824762137396173872916651314134338658835305340955006240126887117500059728145112084473907029593420712989838926110001600055918542136865806504246733628648519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25035931541465430557779916347110961443042069940293400263218163909424569521800761104420986704432072159557320827306274307013659242912871519592105719455519730927207546981151762761161021141198599529039618007039408238971845320302200983305860826098517848605895229481063713389353907674764557324849108068255790647845114511046751716190856562222394968193498569238897314372933224876570703600935549414403620987504663818878347802345245986741159601131584765911842453541758454119409435808963290352099214191946168098063577236307837454168066939450801640415417814350330464954196385252535018084592481816033206856631185000511353253207313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30521897209571794757759566614062857495409313450277200386516568264234611920457627811597799112141945315287658466318125519915610293833361343516909510651488150688804959993759062248006000722093381950375438777850657443670773867594128693129298744259157366243897907022468241743327042207751507952889270272079198096895201603000701337074769375138173518431902042588842205094992399728330085347037932701467154150162632614130992853041625975166780774082997624649034917221843493165319345279198857239597878935507587334991742911365101170777021447674644285957734215960013002282543825055054560951354402434146101526914178733988486599527523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22702961178420337759004248815473449464350220284267548383985652189330296188941955279886219087138340566116315626383824728989916195056820938991069985605152441915383284278337828742014738544397592024460761935917522219183147033317197718269770932926319447960169306866614018385181053096631903850500503393051575908871822289241851347759394188184186311715518178311258030834224810123053287395823235305978829862788754447104151761293479415061850651125250580541511106072193981744093146456838745879831429655943872301071464956114370719633417349046337062604031908616721021432076499858862456749304904324400067496275990954339049859012371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25678268345637398779895033306854812491393597216495468016506808404985987462041439768386359913747455230568508457216909649244879100152204247796912032633431440890725387575031618530580713522397549840169301181033303134274209650111577931112652813088567544022172524390198423270082448908752403564338767275374721229527158698151422976988420457499738493011562076787266386942715734188604786095372088823171476111288006921374688149921642575234755112577367139079006367599405133241938788735036217251512075314220195243845974229402940667142500499544509137163233020640852227143566871028230116450000268953891749044636314398110939752267493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24805650982199111569040226437756341100003490039227663905900174601508412661102078711174994942754071706991889832349936728077375227161299738035368050635585811281553586637284072114987736600280034393602169006029160121492552689813254642275474219761887144187613267512677264032067924375173231187866702689169473745844671861356939121385733384811964527428253971724370593344625133409901908035520222615771071125155201772977837650328240010054494617097461198355148151771680241067367230614933823431620625167168026837225246315383986677881061914906014338055234508046712555020517966461190403841669871548755496044610636475634941105053579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19452820932089948972367566456233018472376983853188939562929714062789943813778292589883945013742770997110769266097506658049661016263922614839649076381175930023799902556979229422124943073886185442276474222013143783932276495963596291378035288850848908141009600337316488008456361368941829963091142344601735078287346684997448687000760380431787527434940678586717301982549143400811877585544294073166182920572183428203394290984258598253876486890989892839009812331407204175741630897296290293625974511013517692788992319413523380530628791951348178079261511021849232151079589248037546992063586775178485312852472776673572732588939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22810965301430598247322274682341842315858065422332782584337551701265939498040012079777972065699103489585477578378261604099314510090979823393112391708880492913241225933821573084828715450848221870587643792423384710188971017121889002248402904686966062287333745328403682394086765952182681958874267687737386462939384069438061250826780894853500422596151635776135676205420239851796653012766209267087557736268365018470376585758221202890883101710551793218689629171749524466030238209956088890825131323065400167103586401200815487331635207623935187294111092740112526427839915046582558594361073379073503307733278526734745670531683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25557018437481478939014469065306235732587991891052848709287486128560960579724250454649595126532655481150646782221246244367127148134725030343111284232360575974757168325206873840713176580415685448355477702652655083003761013079360827831492325045228710844576143561652750631591337597334663730167901858547781995808609595874767258533360714070438629636502186055333203432940068323622932708457611245463739422422059435924183224311311021714137791411406341632089245406457551491367396251460977125612818583066034519237306019012627659233518470307227688327502262022689209895692759805443662351603958755738756921990129361193734899426081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24555217439285888904247891128592669538399949643546210254980049171969508822100060901536436234422318854518797913829103805566210527729178055854235535062337421409161313911052452536178477570407616697234325671894500529394754689015363237040583567918791022745179802834302863968352081972811363307061706574639705446725894788462434995997176340800662339543505351846236318493165009821993083237241601365626113607599740566111976633962970655363335843741786116558797440319357911797360659848967996008026276524497550550462364430272192962026911548783875776604478020316555758803340385080413588713865902705485775271646670746776096186474049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23479476397825932726717351289310045143098821467343268383934955104029337427570940105738052223047380835532535713471696132429627800289948271701753144494411489392837369046633647497698850131957928303104102793877738629244527669475451396090287456507852199930760071054933883957798948179765912571320659999865750559032025146942674172400579383305690101808595745481515311473533287448679245868071684878067639686289971590828412440312612203858057074954316494235577941027556948773001362014844964998466963602466879095743066130204686136946415933063788305905750609332139106355581909943048016583527778213448129885394012738611945020216189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23340542139889411457467949439099325871870954941050747222136809404319704257657672312045441903531087485868262200490885170636446994359382751132290697218430382623090796098471919361204255070205624101169588410106007120671188389064590232481017855705648203022364294901583018246554327610683539653077123152503356797582516451204491959067917474416062077946211671661175179660577597332589652301603684648683849539651571828857420543300066029102719462110177142346187154081138262026852821155211024644846287512039084927620534876125746639434007308241289685016119255667098514037430711833478955986594860719123160024913052832115022669804047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29133552697418760673717832479331596144663134351527282565607931635810086144579367509079159065182557604003981567124321314448492356509495427344006194250940862148839592303040292775754828474756277108718623065088277729060924385738601406885186729885336594385323464903323667226616797052582570249399598560878526412213367700397234299360915578414011067354271267240421515795574884478045021991786740690254257176804753157663098449216721356113460160573623191107545878421037941583056169709432382076682270754488239098965702080840347472503211954192798923561764281834837168313086433604569119218445993899278985752794700971514235101597447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22056732882550038068356053359304163485936775774580356890134679133999115504878238362058679348597069963153306404494259909339843998524465550248803615094910448835429420486432587249697556803365741787876264218570768474314332531469053847720161151586120949213500569833318853492784586779577917586326740643879582267351902026487792930353175329885907359941554095388150019076075799632059319808149136120570866945139065501321539045814617172923693731450958574145117625126888974363109786496865516766313011907116557823604482742528253796507711192321019078485732970051665090950128081896587916559451030441988469805081766331338070535648073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20915340071424708326938228029399165995700877797547564171970314643183269486518544002588910156070010651316021797862525696451638208831520652568544598931622712309367351852929801371372083186850663510282617787214688466921308252677023401056674192480649631288078678147487386522067347947377970066962256524090084800730803172770215580502798427764779041561991294753116536721688234041143269119798246050178782829757262228456138625601589339102316050853622580031813470962358534584093052147817877628373293002984559499315383630140829698901248784028590834866735550133207003444394308839298746795537722855526361466071483588310040633597079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27895853504479601983082049014483496790214890163877906371772596918718051906673009045104652122848570896787075787343335974093529959326616337185366629752564439425125622891741160369562371200375677331927823466632358732158404268866725339846074576463101734455200791173577712530177599969328786237671364104048099513501357459800744166220063125788772092307343814010210057336893055103802781648217556010331824393569825858226882316463271677296318332765140579413905763312159208589345139542408242757493429889183974074774395601008164369492368320130704432356185984067127011562374911190813330194491534573078220959676561664203942852726987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23523849662843146983539464070153909739588921476767535369433157902861731472744688950325627432617485757378603760658587556303750991023890412965436273234040022642659079486320545877646429980732614903570900532232709157864836300276850248144088534752414511136356461875594714115147116006032076816526735602294068187059560660951503633407502304317827277409349258247012851908403352437047616705622665149884371408012263246040478731063669478606284824363655285776770498610407822751995859398617535460304337942184286547153478212964006911011253321118814653592185019934526703240591169934087327115775679136673756713285838776603308237018189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25002299959461971449974115281020665154707219230504054376981961078485543974306611261140800281078606201698584232480783235542247720275331498973328869332282192556847080087968652473761049376523730762281314587599474298429681901481010537686143800600974185306238079428608125890487945029477609692754274615187613013491489429507682048970409888649750005827879095129527830491531903755996830467774005494540953382674087118401179669325299362742425259963106032236108719975581601947255929842026727851187603380916489004698924630405124889921879751295620179259721141769899931669976151300688710258628602031485740366560977557560533839531117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30381354308378960184768842923108641286476412731992262402136308175938268415968811638689028660136136228872003335376029393691819906429877272151765688549463747901948522029361460615467674426400611419111737766119200954300841738993335171689478043953890337383768239949319953104040463971236304296489720989298819437113257954538789804209817124125042170104162389542940521989709025260267291534594835685131618632829898631058400118906383016309572892370456149141084445300824392549438373330112049891806111415649118658122767299065615373291065910854410626554920043123609614936270361916779292835886327452753395115091641720299934804426113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19647714142921159414606333827826972752240566759470596966849224316287601981316483540986660000098091591817756478510500354438232801968644681992010509388359877304362524820332222021643275396648829014560767603784570873424375871205595638972838593716417294008949002635967411305494540151234947680352240227995367359565803167560253457376633949262405608930226963565980363437503255019002953866973637743064323807305335897378556550476583367023969257973695209388979232343919889714431922523530779179693954652992724412791877658487564204593211563395534425548522229163207546472332996156324914568854576652216503183619819714382168242937613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26726214552269585844333926635055444949879791286547802124287383264848094185753644477143653089655881974030797789685896534424203706972929464851168280347861863129349830543158453864823364516585355107914739820739463266614576559341147577920414668117720369689669480717664221389949467214691446329896563986075344562606435278722976868537111414176479704466781230753226116103265766582293397516620380736551226079013228829015703101089603430109476569266951403111685387619589661954373066492331863871575792314491409628124066137833230409320854559312680599649365093764344808554064151079553651729673613381525074594961732624817488103666831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24019433459339612617004608309354935815458657706736936340802007859085744012497056723699149879096396802382942014940476183130996187209094588348242954666567138403009265551281780341113195119800209267075665519417478339558535617922667575630933962626744436830891848177017769453581845216714424743008133345530016042224571169744442970191163074245558103124157000863758683778744021065521809684102663367861591635636144553114027118128215001453347354222566181938675627121912561714211455117463855501265146536513065313829595038338893460411737901643490037052291952889487116606596984218078723837094347907083470022145430083729708605347949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24066338764493468762069764618657223131396578602448778997665648264808092053775983054644763904385000404766764003555564444192460824152669818973860909030384669641224490412026940936193060483475683143828410493852750752092491104872889568379423354779444419074191709121049230319933879138342984104980037041120199975834354709759037046467046772424738862864330709245638087019745278662373512429781451106154270054862551256363741873130308092686883484694807635539334113488306704424549770924706671887719596981405663062599408004441440852432507844658783147681965890148026626443568988366495606556188766440113726032708563824662594841271287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20069070411303064049989835628361349463738238111408309224703997855979560351472581511110782349625401390137419064577497266662798592908700523643151400087772582914019477561684091771235081743710742732575005322758206564354248298871367366994539929221015075843476777683848019022923020323340549997537912234346842078515447196986155007244492335944120749512628178686394906053511233297275688329101721072696909024882047803446167557247533302450386391245029559927436124893899631810096295016859023230729137270416985460931540332729026574623640595603041677010721371404728110342074822207934464506128302270254960934370915937348532953536229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24418728658333690812462603539334980054234877496076744119117105712025141041581954027010786886325447350244642669919802005537649663014160397513765222713239805591315387685403271228884103947629581769854928800860642694956711676477044009062647737446693491709352577660432081388930061411315800958828169664651206314374290907018881924226159527833004371642242308820267618093364038378252949555601592930443604351898121795792141414107155814338671834371127002939696589461457499807588550672987280745986790277202267911572531507801156440640024063503068469316157330397112712943280845144656504041395326283656429387161976108296902861073969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26206479443599762122453742433705699376573599713921927354472894578495267951516093475295181315919784792893552940529260099402778891058329869539841888920957326334912848513275149980474315550820254463284971542779755364398880846135080885152878320808316574307040757890735123701262644531207832697101686790655454534647819447228015885199362162032360439286103586105059834306184290733600156931462174317425953707973325230500560062345200151345590053432748292565251097812673477890156478197868904660858210851411162664502486259813907553118360374483612747350089676002967380294158157170746455227863237472481821401306871094237131470923967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20915340071424708326938228029399165995700877797547564171970314643183269486518544002588910156070010651316021797862525696451638208831520652568544598931622712309367351852929801371372083186850663510282617787214688466921308252677023401056674192480649631288078678147487386522067347947377970066962256524090084800730803172770215580502798427764779041561991294753116536721688234041143269119798246050178782829757262228456138625601589339102316050853622580031813470962358534584093052147817877628373293002984559499315383630140829698901248784028590834866735550133207003444394308839298746795537722855526361466071483588310040633597079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26481066595568407321358884573555328510668985219012491017973417329846118201233329130872792041447502815931747208196623374929078181742993386354819574931446002634623969107267553979622703674526929283849765569865457309579374533882631345919153452975620148494919350104411813675212978689604009924384771354811815738790681837467949707861066723112604680003276987072300207333948443601315990502138749134264827135117037449848229096012555735942670780165913551427306547988486232713605032755918280748337595421713082245463833650894307680328840345451635944189465698973913028199319072684813318714983808233537341576742465318760290111947997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20750227884763448197386787251059791930955024281377481071562927683794816069910779889614558166897611950348460926102340689236700018229244246379007700044686185794072066708759004897460826158645374650571242788733106471184142215201434383224603163707675602383928044375620662433515337966268515512359798061755924592092290347411536235399503604688180030883256788154770637082993017302279361567077037965329519794828944177676893859548408527075822423101918714934480152165279477902692569696744056099412661673349080302798078754044954350644120019236894641038933071154621039248806979760548007126772536550863350547421131293162873945120381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29147558053169478297304069269805761567507515001509888449816420010528270777083069887941069075701415797236601271287110645108295809537751413400571224194853678181359231260060636263232702526918473147097553822951664745485859478167140617474085014934071831665639904488145978852833965626194788047024756896046416308666512557451016740384439892626235164826866708136538925577349562371307797701917882523001537331725128605160435415999587931652424017957492412179946186430224271888449221105896759214595333385666820540833530253157833000196800102870523267848669499135436030695215076714174128687941570602981586654608693692148489856727653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21283511068543722680376629064519778583516044291339181492189614941848471740920012533195905175549741816718851731782498025071683422401712621508618196918522646834715731471493081604968950618868938511526765804442867184440068670588399047802297851556039745991270825129927038997366065606381486317397235376364967299773980220623077735312532968568527530938380702780365898733731842654353603419364731583954572209350911998730216953426718262912224225567580896360797116597841859605256293257846852591100302261713488368431621690667458673345856750404804415193527272476111420973546380223926625369214921731505949745288387876343928386141553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20834083627670132868933858569215986659998878065611125743878463333373446503828706795105838796214177936109139369312439986900978710365293728951304494606456206097914918875396054741304080675939051649176923388756689100287624526003626082089491045551974551605625607358002895893254239345349482383750359655088073754398605352208685451608505910846761152042571530285388570228508548015319173648585302145629125602693105237076828463871255090861402024520041507002039910158751227226195674617820955964468285903159825726139158960716801379300008431998871852078422762499196865925090373107232419891703324075697181539823159305302825879422157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22399470667481360363535920440556329380932634157647965555070709069732890307788043034200146395567276532661426225226802601896758507698137622365002405103176205983131296971214169356943584483848005711232491274726550252995143275210593960127549832461687548087321878122632135979200666756835576957909049472576431672825290908965357460694262938433144736140300973726343389808288433279159376720495482840569640000286945719738030103078600281531330163814940977150339791007070258793708061443610258981245790110289014479945430678293432270232337270995167668365503144219562963998967924959251723567704512087793077717628966964991157809932683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25871241797221423634903617924307214053767146498656680438727333002864262766397257914171964286091305063308838011764098909278421213665368891544133392793965316462937533920298103948155636931163564834963663379602971907943254154491356691066929247841548735431410393595326422929163033819242302189048493667167658402879571088509740990795030395937653707845776896847787780201952819378332084761262630554582455967407907776551817573079686738312478175817113930509938897507196183511369733355816008486493818920955710148595628146755495006812025961223045016983864043949935584279796410607403215209761973555017258815541613969661997605613693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27473520211037289425565206365085109674411673398423145958119613260341181393441159573135254673885446184968422705172403908778916883398849778805845196785871623991403206722204910388665058114627869015534894727521436075136056547750078550239707318804986647672049084997690503170070930453717848406726628372733083382834779532403294822585714275143529471666048069049349423709514121234112585527470469040881301996551731937765566623006655013727190060169802844022169469371762977675576709884730364133647402074716997673187964598217220504625270618733578122036930548730980586221594419875278770127907966381081449999190854478635932585332693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28196738115462440459515514602915359934615701510117136442561355517568726413021791003569215548885605805081031337119487811405271704137261994984196462405598553848985182954953250313771581566560706186559773553242595419803998780819520414793498529686159184809324813849304851485164535776649264056249064244865124071957340658986036375633607796657836779239043636688335638627924928689692320267760020119622088494942225082543416176535730748694363494017107994685599867499329969232655041224304571084167353728154287249642706486493372793631489861079048686041511949701461560917064429757090155959183463228032558301099546032082151580618153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27655539249930929098944853359630728462397593633507242236290524215227393655284676894234041797735805722364129883431709836584757793846239738043199653221459983655770152104914650690036962688907448897447653137383293797787390492038206117732202251426469029905586536003767597703980756840424844232573195928356363977351583564972791304889649375554937959941214062085238793323023259687887619244515377726504127964473775687588194769980520629362376337404993058610344207801271322065848792965946401167870694899847236874193030608400607357074141265342935085143117657089650001635433857569763852830795233305977223159318469993761922324953613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25303214365272286069193638721959370278203471639840885746964393785541195179206666230683399085669809626794965216416042872032991477681237857107948449250810081434856875307209503255626113593102138383327243939625277379569067123575245463005880155049449421887620294738960832086024604560679636642906894161066445633334349980854045559343614911638324031771455600602174505379515756710534939418115176534759964330496523953626358404903586616832753506009032381447898475378628831372293690487208851391776741997735126771139123791490133952206282290595937616988804240605068889442106590967534222184814168328048870977539346125468035550919733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23463745580468755513089559890625177798286011178220812772461762559418229906471486985460531798537347870670851637208634917995330458903237847222534967586241026085509769622089255630215803766442042892726196202829736221992736888302898915545552801078243941746161363470603163708537888826379247055840951827289101280627480529496635941916538030477146155125195086588112226447676079348913599364463033659918601639621073231094924258571717640822719709502275897120112526494871830707904998409699235737719493195832309151951688440533236554113013854054302416044497303539679924934740355164066611023777203188480848845134508099187576443775967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21402160751649879215349696892110838964023000073802245035128442113568129815465711070737921516383430248896957783945016116463226754450065087344513809872946300747605820724358480963274898883791492189751592259617965300007278085744264508354704667683210168696904531597210381832886403377399174344558015357869597078973962682067163302856555982575428175476610173437008496513972709998909731025610011588232844417989402383416819223823254573371330937386112214417050995113839728954468243635505518839368104626072631685376738957638655374395591047528763745385611954033275657556777205571920479583257871405928687053175478589777920281045891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30876833912954419176228265379811832033547362236521489122068466632605288241676410598148890019537855229479319485985928100724654780464962013058539073200774393399362178960912468732908648895846778062528330728177320513970358693164068452575106460831416057125033599444128074298219702691483895632177038798425374061751737174645191552991586090189475707557920261097701532168104038063202522251847460135936078920705823477820582722759717443254487687614102335425288572879720796365978706746803725874730569308133685627894238362860720839217456958351164576774885446222125435429451333971419662725230062740857314109653671767118094282822047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22772112257848775491938551667708680226112761516630778822690649376483092826139476641199345295701106932901134004279114729428589164193647386725831316077874505029131567749318368595433006694269516261284685346596148001268866971007189895825231002508707746212017461666206744146334738266154655299529060660135448554252533590129166862793658414361743491552299740555878568972406333281187932947360144462806521765850050065190494350334393789031543145331673130005648231533816219150856642715619713530886538576892866498991531913154572478653282509847727981587999772665807066306339858756798449646084597180401557264363318892004800751851721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28527643423751928886326873871145040268054883145940444382039461709359795835972731186594780953080935150895607739536003437834495852998261373283472441585183159329924422624547308513780734688701156504105815520917753140323672002643673580496805553867489406920231176884145795600537446500184435409164719779846277749748546160136916983987271115980057323354302201971606556733184929890215420190795347682505721550860126689931085090611711213850921773986429142707120123509829041673212895081775905428287639331536126013415262631735320883996793174200309147781549124620356383139523655269618391603640744969345155833499370715906166271599301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29343058220030112985125195305444761620404716885230322117068053205137781210685270149461054730839003226708108846828255862986244464003000984920192109174653505237791733998654436564155997433058064922715103159416725432443745839043470707391856468489276727975369475529044143006056449560806888975746470294397950546446436146762765738471245098023572928837870798344448467580828306892198009898959130604294067410217074371802044239426938474474310862899010292333153306137112526184291554762083266217835934106945953231212267066585720582777422805367928431027205018080695858727558645070362504440779576412730575034233153637321565201631207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22213065072182807769199067697546596563250265175354008873913117192674717819534280089290586766854223249388651812636754999717226910189735332785978497929111134532342132578939396485054730612215128422066907753586420096838299097421501245000639642699888477799582176721838578080776304743842024220729171520970296463618223885279217893580214260305231613376447160656576199004464079124483629519606100478408085202571045679273887937882932704783782391383598284607052323827193577270707383210265309931474909249596709846533240948143857589878943377068197806842724229624231442498867257887204595160097412009716404878369533015735385798762549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26845545223354725971239455014856536567328126655139369980648935673498446717100904199022786761547533129159733034861321179594576916946990795177704029641248417704787945065109266190234582722946739757341835524058107214529895026732422063754293724253363053989073764032369988367623088142500748099496705385261657686999885545782013711204212584855059842364218364100360448830621611983789640292736386089485360506133312021366575370420850967223524235577973751006469343162128582366918551345837741872594674693509441227583898659700973262625104346118428867324110796560102525270629717641002076407510140317025689742124936264210545644860683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22865958656681909168357724996084133608845208015235147887162686693120948254072085300287587401180303470221602770001455931743793017758307411892401204528334574409505618356552302982021200564627294584317798604618183111923176005670229993270367650450684768880808781664485492120298758758178017612568457378356341509275642012115199569982831222994190792083680590155139542087613400184640610048056256745191075064895252356031775979895544570861895580251947899782858112127382392966876213839233889706295495875482738904895308069042650341588670220520021657167861761838662214505905664680993574897836014844507815721021902600568278564931869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27227624040466610856115318327635011611188665746104029117721436018066132680733741822912716006322410257806937555961473550832682989327795442879992414854692426282090180737185961826791047305934149570968804112599285787985214895791060551661687309089197696425588385507914091688484468763786536651938689956902573316076413417174576024707456454435597872896892575494687201309230778040586808205202943830958517395393583177682910956791658474782908776836939504461170603028058241748636247105137898986634059116449118281020379923226239190964051505309555824501302847310222435188053858075000159704554363142706674069620114238209922245534641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22153462532075352396425938461553281044805730373382858053738089691415566203386796489363885369865731128372123736248475848648722159320013262676196069804810758467559741021880330215912975244012978483051891851760075961812103885532635381337909270933597916621400979569282220205720888787860517661863022285982883440268600774564556637336815062939501387443961507523485009504267724989296477197677897864650513484396815245468834017705260200641656692960229934922882471729322033263214827685290979675483361194570277291069218044906084304807505005578346113595350906507565667079834265513656477790357765409152801048417883701978611709930101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21775209781556755913383989344156609341270489356041340001456410159709811774816758368331818196247940159591137862874886299600592155316325588019772597315444566617596481891965375399028236389321088488110238993547566995366120911299078951191335117304022786651654831917438876925178543593269271112684759996503800185553222293265592409064649542414056410492707613283260761656744282016723209730466016836770935306943306322197711286808664228398370193602740441357310711202615702528528807014292962397155821765778876385299620887488657222077461684718136461198710532812358306440657858118781580658579610869843991382874195049515763053541239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20453660804341772832674433763191898181983545004007931731158788679697456570677371760562235562021866764223198493310248967424056755004698727478246958711014503751503204021469769304581078531081416867662684376554621310760356211135541329159207417800657199329981448487325958973797562848721664688757091660164109670569178889379108745841330466766603649003223440210568773357832679598692075628630519132767613818252746826724165781772209048180375211398072569650061726844359434778935094264033045444515180422192979710757018006846368584726557714918872167342527926341064342003271107403129703204733849622412297669678819483663718835627349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30344731310488574190088403654575180014029462042523699066930472137483163816629482618888681413930147698120398668065490089052049481703650693099878878370769727707732251812109180622990938425007655338377634812904956407457715390819014734793708496166800127796595638177229788942491568553413510742181449779321974429655927380360025278706330513721526468939274683935669533794217500346460556010844642809162762498553140251606245975480569198596470494101094955235617491369069425713198260003574150104366673735842802952499856017123986500257293799206516778794063421615071357459577114881177674152592192690055917407014779757900900352567297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22867818934392437913493105740706457605661002132269280635285952849049990671186967158500770753051208537347093941283362715135553941779290856627737787930444288068393375148057479919028393659490898862195589102978686819412583478103044583219151992146068589404460382092632316826301457684049428033063839745280524514560689259826797080191487525872908847652153388653974277619174445921177469449445535271096491258611232247027810286071818298550122762483842731805701989944021111931158136833803009104838867221517018556809083723036583003923706148489949738393033527154322193711866671234202851225902465951332306838643283171572974402361297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19755232411556140312341303350686171782402395409143499992694984884124541659102749383313819813228489557302571771082826414221826345712402064774797116280444758672699405233178213660425906675278324865402747706930852880456343106717448743626005819307931313862558165151367569010495830735037090088209454954922084606960555421620049059548140858018119394337626495270827405883990289682456128480067629123537201038464279439395673992848678658257858630639664628962850673118060609103887189048890805854715708502558947360725440946432325105747888368524535466163184573841768477257963713422787094639245129747437878812336234011149658350172497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23175646020547391323754337811858270623331867452477891937715227838250077025569930149205887004061933737691363492015489983132894476264031415636058773834506251667146206585887917244183756649377985455517370715078828780123182361535078090529250452187892868190668922535229363265576689246294130244331818094525012941757541886180429554556638408087807266899488579278903114976955346919503037276899732474323506955823006677443895892314009667183767975219675055283586835757281788273127193769272882821568888562011079726006103497938943084155993878882098314340918483081408568376554032740609677271564394563259176120463920168296557062044537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31214633524608427028536355553010917095956760385713264530506838934246948114655073849820627218995958974028954760132585316724708102685907939540263406470253156533521082528599793312313784533232868251599012553475705814990873346707333053829419216568441652369899094451104226516599911201327111324628834430046004086975198469026885132790120798601164916885789720844187368046134513042921565781504882630757161232112040806357084238045618757242450975282937455838163562165293231658748494480923472158600142241696545525046898160720248548650926766627639231807107808972871095423556457246875735526215651097856359878994856223446183607534887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24615956949625017619358579076373876933630250137308866616203531503084424318429235964175422711546909948422352850387081860990386739647886173214504763831118644077399989902605919686445499889676585992203863433474733581191592353759444153941299586968174045814896230188689688575568817620631980409051421926294146214208647226932643642490274486156719815148556594240391095620309701484946188837524607758477560931314705715611009279360593375374934334413371087688470080090346916214797131860179727428609637753272790690382992150285503762929612511792105399534277775566301215383461290948769992166696987239904073848431333793707711193994883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24972714864408387270510984838484876303297796686293537237288943692047495207892701918793646042166523545228822787946450901005377634353023945654876678487730032939564901001375223949479934566151169241860300905872402670127220845845463970928133920121607723735835365601632244257904814345964490674977350945668484961417109912331476897828584756767782071902545693560574754928631001549524896742025225764560302823686356319101030078579126568554439617797732071119147922255573738700535270227748115469573023116509244831055414344369273284739926439515234581611639585780120889655534581000972890208735910783621738654528932352835749200604359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24477887598395451530416538155749698050450625954409932988508260540374663016738054916923565436164410552213439112484055453971872797264637626882503962765585594135043056178991088789831388921545500907531469755052059877489248855499127835186740709808832804036763653766094361310185163965961397051459327608325260916079663267788095519766282864472180906963208259615295412695763669577336647381507601602265516318249476489736600736932729607911550161987365709398017907319067299482315793834111351750423269880746701587642607557541666141879851833205838009799756054924435520439601607579622844262131569095825861596235429433318751256914633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21130561007123883323779514119971002483839239859894423512755288587260346470488119696313053302041418507801153545933092781387668282219225223400873264249207321818634753538570578849539169882216890371925656979901517147124650967665829440520202958157248595663185531470935290790544707155219710150687051907150681980173995390579216620427966655699076859370951494659706878954597474445015836009334074045442410834713483605058931318081439183401704648624235766572511852445258084680466648022553165331276608404470730570006947672846694533152283491625883467467936936230638343867378191649547241961686759825326261395286759105887772680087869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28377588807209132358031758638109600908748098022785976963374636226539125134378999097712415732040790228654940688516963924059721804802126899045167574038088277142826513876737823934438826252058219882986420983020304518355429251116022717872903343963000426223239267047245189133528015098101332426600769421629215192186400851399262586503042689278893879868074358601078360866352705992488278331164683581743504101915413752067218050104270817860435437070690787992639612806608563880135337265111730871935988791569160303550650661117433509960521631797831002840014292850163298998458638775732636078166478587650412469871117544785151544315753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30724761748495655863633877382561438941263020751572992814454007962990308451531284637340199073289402504377837461667972109822425994151303144449955020096339427580867845967056872508365926928761001299871608123213497839303089257008962374597407281856572313908957497446681074176642485467097755121989174427382404307688056837313380552090084583813202968391148451350437452593336763258802095268121371586678426709323998621805476349196340348519217460234351144762034711942804273504257756680675718069658645986088080604667453989163057835398192984174257413479294131668742899083451613145668577711374654883051088956539568175432323163108499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29833746614815069206949930675248567065842091772104328837150862636256539564587420867038722980707700634580072758921127074328196835291979727814461883013309541056550584745802376763937908287409918847092007254080265343849461912499523641628195791084472197135250887658469187807729221970527442913094099014304915078824298332622439998149501225915343420548148806953451859375359548019864871382529513394100638514898665595712736049287093318631079488563717049225732767410021844131900089338993882045584799614360546531963573426968795186711851754075155105743298274423296488306439408863935103622734589491448974823536767219360357060714243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24541806261328302536748319575081131249656426665836461405140455146029083902240564635199998535913619589266421941213673986758927763668295010350563691187890053532039658568234667708902311723094473575010642898501011488329672841748784420335741195392610522392265129411451662893294206825623567686841124714818974726515612091953766221368996274716216736471934163237329294072484650739436703270166459815702510119863147572706511286683066475348439901359287758091648302021464206775659098673420192402396464660002392202917456349336101336663585923188195747838337900696406999184373447058306417333650535462763813659776002478587676284545253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24407645689503483224352239405216760664472934967927178284828523082903474729350646622673378282626895750779350952840593999053057652391604806636981629552620493920248431881021106242631730372157540074121565334385794581801023696993129993102542841531041874123390166776486541750548110141384915964306585316155471825559100023836425864083681749901985566107608600353399397802357224275356340533399895706722323691851155989920215352382316365639577520061029197012502875193948563285186810646698190275529750354353338247011612469296333137274697235376801231683842074897870770165621892698978863785425206917836404304750106359234031093794759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23880505782958451679021048581609493661555733089015438132772356213563890832537952007778561266523105324018917962395109302887746080888348245609449774245814217784059710523015123066734199866496983274363263535833864385129789316014774278610605281566461164739578160159427041431605613858139010454758609689532022884760491423781987637180262013826321944359961700090381163850944214334319102601551979863534915071067993186873802811085874191305044906740480063116696989527573377695709663497983084687069745303854066056485279260799608036813531192718643101156428892404451868082046116929679403383862893578998753527694812469528588447044341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24216261713549338668598037337852906798167355413152516842739450445180761630096418892435953831210633341716340404618908363320834687560218780857617458270895446855644045653960491632024170554765436226706944094396275012051754674700084297024030041957128931192679978046319812271387309123376035364360312577809881148646002368413826384870811091322990991059675674181811473603572410041140012008719497207614160454624597424078316275322747427476660499405440824681579468743460341565155674335086506184839891077842269701289474229864868247036916882878790171702730412877763143487698285723180067628451713714718353109165148046483144436578091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23087615509609875004710655903199187340967369435377439523530931421348909933164771381912993600854324601712963143823400171002547669213570262377492636319923493215813470019788933301653451833960742118359118266868610627425205769490830738115364860722900436437691992135280921620679504451944251735877412744654053498282799299462799704572897475599310584131597459766425415995811399684656653549994011665059718228555028416710053338100586621843197769291708610288261978608447881039692586467545452463941439539026342038875219104052117786210311096560752626105004415399876596855282007312347010550680814431856062213366816484286518231316881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22280378031464286027677426839399608492387602523851803501123782320114979857572106919579550279598885706703875564655753874311732497032370006418806805772859524006311835174273639575525920962278295872074265205895847126527499992349130314839624724723597281503746262994931662861146284106671415442988903611662057051072059431507758891738608703149789035362511800172824493097456594186864577938515770502455887116619736570868152488867597884482137164541820832813410577043811579806917317118261925972060886110612423631269211040575843187101672957404249385579172075040250015884683879623413834050322752340065459578725919080789543471147259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24237718731757383453004109941595260802496123754260504693031200016831721048543305180973286434170095387328433978427405653860241495649204566426693804989242961524112289664936430340274932814687637113347582159646297532312511796981399180080127752479366098759862180573229432755498214404156236373124117050756712241857641647013096292710224376760388844955264316377610099532505486494992829537348898986050876830628298936332496000468260361199878372667682821823452215064511227388406365498902476965010822363634693730188648386958293864318400964310312615142010142357862464264327151499671998135684065657326280590146740992693783889955793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30098052821295274322250496325485044349202586853117167670685126127620122434251860730920528633564855158873642814467071216623147698023712110568415403524805159932448731135455499721442077813451225603128045141731957008656326722458950631515723748663341160099461193617935966106831402112441901523736396549117399869185320532393949912944469744483111425895152089965372284502471010030328659892589104745400589314808180950919328719901402647708893387626908519897357471587028679519070415054771722203934820201164977986089286126154404688048698554259806561978437922695046963585670323349526150844664096337016889132934653682011092339406221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27414356695629172116639974206902814913454082067796726416763629276927087961482974450064546310877423408751208728329570924406236796634306086234207038353208456545697032766924495586251768780804139695339957252197427148381978733344782500562942064835885773279742197662907672334190429622298027504162722648617148917253971506566836805553274296929625529664626751894863883053670947640428486121057788518142672628107395150418040400529267637485382604811041962411317756799545194181945861989279111638699635405978961914490572435340647446265175199142172307916313091073593603903787447031041773311718865450437571992006948332201423129873713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27225507610019414702008322173860479507437108898519214352646940755173154434992655576742088854111022220820307018103581977574387838675496258574955588634757657718502070775660573825951505156236990078272505095401989029153339310523738451389415516500075955780118949586662497347633414946074702536860665405243356637900775259585915731963207898232234848202331283271429248097253570391296697674704656713637425823316856533640596667174423543507997490425535048682677088552887088646994609451305957809108188251525802756103239618948963628501752893809981861847803673858255582894377695608883456664012981998107813842356740492083708147450587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28921074293926746151686926783531060990947400160173020107088822552294963690024915237962697569253785629470612143821962938691026460608616713519588112118483777498542074896436375384508230151388586443853220032253917455915672274992242335592953880016729409162505868886045046376712167095086027555006860023297313480248612195747013641080140943118516872950770531162449026724617577038436197229234218145417371740674053554432132402697408695173344885521848406036022662613716967473220142266542857411728168407201453925774120472457182585570639121208908828507597203051605083281189752388044284734408255065685037852799909835563894000204107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30216051445322363835950577751726939735107719296222274182820937598656593933218445342159232999410748301584196821340032377783110204522809382448833073025944624941610977655040711555014499569767680656615376072047410789593253227852086271531451529942389399471378014853853781397662955999559560892090293590721500187694777185864436395613219231663088875657270993256721241045211915368900441758517355549885854808794887545009035196505717214327640429923899331671472107169666478730663218509767379306994683256085250318358461894478585926283465835923948234897551248965614591757178708920097040246201530670768262639398261926677914379817591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19467787374206650584456059852065279691706523209092978778130931230661874536066374596065187195430404379666302554227127133809633501014205194238112295661934669141549286381365066548311721085903359445405789601162111017686750423757784184256089586760746507278909125425523323939968718972081695060860330808864083727943831341697220143739963987967669466746299662829159571928359385372079641821514484114352696739052214704152390088974473666096860164092501319115544533556736647653541245376884478545297728155674929365193218277670259688390693020163900211322746000040284047559382605086881631054285909741245525653294137546136684158189667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28340100540243462509849781702051255347570435312613944092281565888789277364452456993739419043095744100777038935197707604247321747892561106771192798492052643121380913341946348201034885723716654088513636078766938058132311487578076060026691642372314172408565871874956245728035688660721112799259374678244621404535639196045954595723219230550823111156207594747243642742546070949069308600405497922503217370807768940722322501012032049888867983029153838478826656193232851073589128558419375630838531930156368916559963924838162078619686975317926287145047517196605648523084344216860072683039855268286423197129263390708841920951469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21328709467565853495316851374330343207580600104578533595645995099961375664629177180467101485157314283607093856358874655000697650451485042235992817724321412951405688283544687786284988187071139405354017106844439101734028670813226097515634448247459008960756168128831508630931119055106264055395683604605094249636392176719926383383380564846144954741554400410337690114795520718707259765721993236351863772090925536316452232175728341900322443311592057986747185862506822562531876675560539731341947429903197080412058583832569649646257203699960139214517605287301443363536221549888823848675998298136266301738213742808613098060473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27453199736554961712354950084939202636982413772286214120227149950099031313161813699107290337752139149200395275528069133886144893031241974236936626584353667778790946176719800410222611442757023464314170976475810509667843611173344983399282621303637331809706366504727034496746335366310645960153695986199305063565893909341961566943147327780670791699119628465417158358998095740174585148384299177890722965633596161969786393813153081133601037140645974380130054091966769504027114029517456326448604312537386013730081363380560227396052638110007293045854984902687623592136374721076296571841213246366725927514524212343102569896343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25950220198580596259218318961407439113759433480699962045510636354485180625047472059697133675401258045363996458885098267883421189538192723822487741248267722790909500716074781548311096109907768541820002491803491425001936788260631206644206487682806811735492750737212913400020934062911041266705279841847957660919580283215498749615139928914238221374173213534041820771968648453985101526408595324618230515550161000870217977268618428737180812367722898984471947316684192179100149632899678906955318081143590189525997188628861218662183688696034160893223835057925973155769764117161411855699595094121849682643268267168737856019387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22800137320132372531154494103113364498275469387644031847622208148461045223942746783193875834936885572184282527946433913284183376498853661974162252977887157925108789259098455449486862810766951721205463109053576608181423401519635346923494103357258589578908464797382728413554695794958312553994391513646917772233749502199432180901078834443967472080898266446875569926694496203265646963913158260277989801687669867120294915142231554044680175570535103478409754000035001538659323302138981353166037514031708924057510648212740412770914990248383899535444795653429320794444383158944045169393809329579670238687012264885411904827397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21471658659590736254291930307731479978617990934533443245967509144089408103745105002626342679238198490351163312704443668691000353077359952647872427899215464291862764852255067071622087010821870722473068553906291553202616838201169011649212957285659110758839609325998222227736781898552385239142159923414836563128126096333009563485316739048492343894340496313178459615021091880110769886334430234631325158515614058339737350906149648758896357721215510874842946872677861485991494969860640441488601114928483343099320449880656448725069914173331944139705327687330693183457860296472810762410316132083838015069890853455938823517797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22644169449361930505671508096331454955796795687188022429193278350683187366683277241619565023355236271550809533215582879757841298703584695292937997200038855547238418348304971808785111880132201527368120740438992092132250144631723855750405082607178351430348047080183055950526118105403410848910428011783628519515504105797900840839779088113927237147453833821286050716400610550645586655071471582061969291531120027847457045127378917223308664087635654306967018289072521706450795693428628823385771660384226086033466904048599275674038065625196591511824476194737385565248017753462238671071967372538483957842121555401446867534107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26206479443599762122453742433705699376573599713921927354472894578495267951516093475295181315919784792893552940529260099402778891058329869539841888920957326334912848513275149980474315550820254463284971542779755364398880846135080885152878320808316574307040757890735123701262644531207832697101686790655454534647819447228015885199362162032360439286103586105059834306184290733600156931462174317425953707973325230500560062345200151345590053432748292565251097812673477890156478197868904660858210851411162664502486259813907553118360374483612747350089676002967380294158157170746455227863237472481821401306871094237131470923967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24534320010813012997572545154867056015725297309747769820572548267365873221685023149499109073505042263668772733764333976232149586827939972082555455568951033250439237257942621320759932542574830992230671078678308909225596350337732536322428356753904525495583053459388800853133299330759860411526078625007474414230232726564010257126166407978059111321598146818466970931545981955127766591832319529585715979641119411877719454858041626851095211218731280199739406332201929152592139445206869479563623937162177422431943043870127852723213861002838224806499205478014946643820245248541622331235188285282233656194373312797458174999691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24753575055669633731960777135800666854030316142422709798989627754625282455884451510555478007274713643358502341725005131233737880538631235660070373962626882819611170488399754709375175350367985856476639995686686112601611124628351023938661061805956863063306483354733431958607266928504453215208576462827491663797379502614709445960432080657642907657174864755458731727301781717318837578489359325186596779125585974291710523505279056090752452128004047160070431076499476226316819192541822008666523478367441012032091800943864888208537078521276842899503107291550025427350873484908707204283487141924401878202163959925308709272423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22023510482749083760343962785357663206803309538511026039581887343140354696997113525014162459159389981383435830332457019525555608673126646509337027256339326795384752950182057753781477435641629530933301958965349047211995755665173391260748438659652299751427657744124260517308176129143866427529033096572115208652036461398044093262175879895227571890418113969298028930014319392207325668094589223815992158400577215054741095008532059731956758625190844532216476126514184809754320381269888598808201950700743982871108486869149969823844932227567731895515505314653191768551362758068498892655079185401395006319792317325923247536107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26548167353139421580090566785966527304022317630014230049221357319146618231923864452009560454308547699375292086937905547487509302571950258956832936048112773497116366552772055090582555174258271386782171640211970705923526149013692337341094241007542400649515482680586564597078331007388646160396568784898325681495206501526242458674389128977155503382295875515825898204430096449797661912982779491327144706379643258067572408430001270492395850501069343249542946850764803212344416095707757321621676090654957687127709776166213381357442874311150891390054128181172500442390024517257413935735538369914972219682412104829294937754617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26664089865312644288953926412076452919384419222601652444731729605560609375436772545338412830560714495509773271878518243626184797897243303915776588810966797381427956013220602983082081802533256897044167349175370499465161614512704460460728061981082891073207560088429166729359552601828389217961196438510788709176964692458960523820763530088254570327278403579441045714904555161898915956032803436758778285638063025098962746968215974613189042325088139023777124159723796973280192399394147729080876054049551405426871968569467213558326558463528821583302473389206827909583198628426445941219247246342392347796999202523899108798629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22389366444559095119855363114076870471918953892060501480481548292900405451698223035097727631431108015228697707528269319286449035806708015116328237434185743643112141292629371608851736035427025599362882135594193763764636174672688668749631538335518952988147242322624851024142638235311692558985056328387477508831682583596581941928624428618551829003168434438903650930067964967530745132985587496715976085967964411878620730438128894983297096573018246110197748583054764420507111788411683218904492343806833229672455642675358296769357773133001532254427053557988109884335236136556475385409326173970837351105010042118432692949243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24394518964046394964971232511181954183515580839915829892526380140816527194708405960100687230146225700613320268019836735567655991121269786406213503169774155193777852251488949560892316983243581144022449787444934703725696510287926179557469851541379937348280137149935458048175846386613615686278091819619942203291336610956829974204752927167337328964479752285590187327793687519990542265595264535457916444947212757051091506629079846390805297659569020377473649309411105899324545771371007894799629983241051530070931794462009994499365339528899015731405345150092619505815966051451407323641693684097683640486040132317643210209257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23096118321821744612977910230756099583316181006728439679919828840124577648988056281794522199298407758010304178100623442498493910219896223807110546493195004017268905248536479414327794841845303805374828516633802360475977002738146294384309194864228785117801199963547746296589630993482186439028124509382432135265933557781444328627715574438575128074921307074499392713156765002131214321427488354867904713123896228504679405568160010070727698906031424117823463943518153928617509445795049729721988438937694453193754318424432520520807486466709752058743106532418875783384863910811459910945218756461637512315964935235197430313977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23105835347748978745406629391814931568866611930624703140106742457781093685262051431658595307729503360456047785046336932022025135650829329152181056746708634738342112550074561209704850718899628387421516099244072276383539488645255752494965370962346996294686851103038054742686454915953909374219815801905442633909919155739304341804642332579926973323550896515009652339892040628781089967984567847636308998825960553739120348394328450890363400452631547595025554881298768659856512186967853360593341322929038945372092804365135895620141082402533534867771439637231595887427933065981421093496378200822791927686923508737502937347069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19931555380633950502101013805258866933808337339606926009666271958492150535283082065540437747004748884185488385924613616590920447835316809838788524068976449954782041564369106841872938314689673507224336293219656218871912934798500089452713702856620346214642553654455803432687504622316330926288850617588763551250021890999738759303591795810613771666973955561052871634785864421390110343298760530667436712910486332698855694782865104558904476173316054766804675901861124338482639684108944538355283138588276542376342910978514294734944552849447033920444506467368897447224726204965186126787143764801957601852569050546110222777773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31214633524608427028536355553010917095956760385713264530506838934246948114655073849820627218995958974028954760132585316724708102685907939540263406470253156533521082528599793312313784533232868251599012553475705814990873346707333053829419216568441652369899094451104226516599911201327111324628834430046004086975198469026885132790120798601164916885789720844187368046134513042921565781504882630757161232112040806357084238045618757242450975282937455838163562165293231658748494480923472158600142241696545525046898160720248548650926766627639231807107808972871095423556457246875735526215651097856359878994856223446183607534887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26645801694583501460180588777790067440036449825158305577783349197253770054293520905430662807726963125762212000056961603315704050653754538550244571765584637395588321255325593725732453072956356621557309044305692116291922504594672710140298786403248656042737691556036009494698461247591659684083045353175871677361792982929590785897151192420206175686782742617099214211780943954413827109927121293798943493149639247692939749665312490722661167257642774369363712626414353905427960957181752372280612651765858671926031648609869253032209014333506830215392857559721403532692944448247318343957287429326251344269251428499359326854089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21517399479011431082626656167912693264798866256355799699184516356676778280602455710344206722274575508923053687752735458441016012312935636359321192079398035905850953407755409540880212743354755541367582707204439980967000129494764874586253182630924444908830605758888321223130287795510718910468083586094212054830660770536139086180685284525147054677046659532240955854400097636518377784103094698825672658990577374710797384271208487530481391329169565705415682067602918138827290568420325056869104847443315778119288754234638901126191773401235757014388436174180741796268281414112614369327414051648172439364373792866714599607211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26721127624306745546299898334949636220910677932413598134707742053908723802828581620234219896881517897458466993773522180729761479708260648598393848424794578430869257282788563531532996881770808575316136948335376886171318165612800757454206460061949883052381375772047475250638655833624264068290725945168182080506796400813860180887672100092763878313999493765067621277815786951002422626444282666954140949580631997107212063718772521723874985208224981982371774327805014518158348549695671495661126848645629542565480375110078469927535934227259704008806036048440782494370684613634818950669502327664660307469261594587154531870521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22675299272951352024292095343577030579919983940636230949685640758522095853199173055699303692966080939212149054916652937745917206222327328528265023243997009297518583592592113286193631937106677849838360165469113873426803505552762135275195500431262748769551535290328057749185739208940179690373167947781740468421720449643456178618235395917106006829712014291930348259050541333483128792487866945358965771422614268720269572923756954925363757514168710193084932031381932462094146634010122994432278071665128591221724679434016635482234704459382850092865497527582986854656170410395319662290000401365401881119162124317823439726659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23358794438981311332968053278975922408038401934686093468820581866798443695374843099543111135039748879509404949576556760971523196268886289021217703233019218702111340059826037156334373946852046015696922115829333850076479971804998253398392525376539964684923877700770314264091253101100434604811287346393520501054112999552321556629909890487334808079151114997760149484641185244955443546252473039258393296035993234562565714652466697316515633912026143832210884861344924725406549383280265669812328353511590673478532766439858809016015076359328808196939072062295275953418015901801671554349026366165294983383549785033115972974457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21870848726301835315199817075242958968161575033150941933502004273540013704596878854617685988613630151265688938624531442690990347524112614338904610916835147504882821687921806256893040779246143322934496142041819522352620128939879727176381046276200900276750254543491799979309478654407125604039286174577495103049337698450743846090863064538992520308361899895415198667222025625163567748631569986104300988501792715937061346023861984193735680516262389883179513661365177309835500863860519812498806429991321350409866381817692748740076961441297533611586850458155307163349503502034295061735299122275186760147765576707088438581671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21786818828750275120477709086694788117149205654169034395375577309315554842985382526775025905713680191302301459426706154721448810165129919548514842871606756086285175812349323869626472282829630573660907585279718449520073823809773790793932794330800884752935922412651111254738594381337851491827658152432725319253482274128628661223449490937763119690806648436796171897964234071051191616634650915051300988877366923641427060256532539148669451510764751487333034797108125963911846328590093812310514985909374108744512011533931774901456866076622811827304658972590644595410128252125404469707298612261376557339724296629962940111751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23358794438981311332968053278975922408038401934686093468820581866798443695374843099543111135039748879509404949576556760971523196268886289021217703233019218702111340059826037156334373946852046015696922115829333850076479971804998253398392525376539964684923877700770314264091253101100434604811287346393520501054112999552321556629909890487334808079151114997760149484641185244955443546252473039258393296035993234562565714652466697316515633912026143832210884861344924725406549383280265669812328353511590673478532766439858809016015076359328808196939072062295275953418015901801671554349026366165294983383549785033115972974457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25606340709124884575546454267262290920751590774402213060169817776854362596691367146914558579931326692682968788047455567315321881600314383300034055725750659514725246224120001107963449098899326497962292096805877347029939521851368907016132207109178832724058321032248883867142894926167470162669112002185382743234029747766178061575256112431751902466206086005345933678936051609046272604455542431676237949757062150213870254519699905285171084775200885412345671136079454080607715088049674790342836867249742816482308499030065809611197647549115317633647636171055450029266222380253317179312501943476155774546652977762983491073823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30266356512369030173710108768463194040725172105619077787979460350717069342640256038231703694607101856976579804912003353284325832677075975627145532772306847919071486189763009105679821443299560190052628408582736438932839189057096154960898575068990801855887572878913971060495166791123451654553949993589990838625916467942915302428589706685488280231271813208897624860148070629503495430304117058806139164111029958110276198953546727734288165450003030471944207449923276853995020024925318880777058387108804669984804044650715972213398465312797476146090398861255115108676144078391387921619067163963001566650512866756664592256417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26394805097932170153061215654044686327808072581625496360441271594632217096672999166148774421793836356423097158517117577521417039773878289187278275803401486974872445780446427082282928908816967373183260746934392265075157069991719529633352520046013487547024624755856285532010443781369416117531267461994594452041368438883086139766653389258029011029427893802263286751018588577365837880609796104221917064065492059773125113393366237760883916383164147047792492649150579839017936256889804342969999226899629150573872869184484951616561808430412046906116370921921196261613793210024838868477290993297512767053959925384861921674503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21979518125158892157582213816459292702947469695301342883525191085947214829866372179714630012499202912711014694922955398949221098906137492628896918049178553266873037635728532591146255903952322139750665462878362208321952236309437106878072133520233379474203600654244724111908317678252340853798668988518611560254748721832268230419988942984717042743299797666827674270781813903620045524134603619735002512160379513195466943770019445937233282241080468309907628903293662623561826847584370442082512000010477813754394549064222934954454184716763632774397759054283443515476584482366510724823395660550000101734139086334580071781899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25578316425743990640071618330885566416329441914759175156432152171215676712811470218990827707036753477734161279652151185655248759334127058235672958224131894040875183455581554138686812130435943329740367432700637154733718555774000618933426024939146029072529794201277193414838280346963673339657715189017211037247383143711834931208533307797419089482747520018611065125794433935410804133286718410383741058249377298284375307210579471222044900683231355731028179583371951336225744498752282611972099829825760398732774672683467980982064028300401169362347795126017911013576598431862304937140817386403877179786061078089251547438701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26706914675147373010669273797271252103617012940142325269955169638616472042387346391548919860822250995423913447097174748850007113007299634815627336804373897832511174368541334333154596695632622152132378467178911376522246219195870201386938019418344295300373017896829628810291549227102146580855967257003906140130117477931843632686549531683453136760690809368580717796736442230063677560774279465737416373287062264724059443149228137582081249732972215852275866838983462248127881291599632572492723527421305802368367421155998066096105409783600133333125527795163476280106258620864516603520149745280850948713605891896740973728367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18629111465911713506098623156667931579231455890796209490829109064774692146279425551045856097950469017017866291589227832292882833612553165002923864776973737437809170286855427116348522957287607570619525111696943416168462003080570605794175025548504685141199527907419628067776655551578465486940809418326065008390433796010818062044284936140893618147812690361740704084038679919578825139590959419534097966275467478308969078727209193710556598072756184545721823845797677255896275424881979741526945761161803370192057179852147725644090131001161038135471294680774282818580842830452730416959124852114577910032001571129666528965837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28016614494909056182719086511459691717635893427504845666979599498619300061839174252226590840415667842349101611759792055600082408761283144143211453841008295602301138617443744531542844351390088933497154375309054170048682948902427813048479930576074165690247374765160027595909803643084263885285460485442297296052960135257617958514067361507419298173538336951080394550836922550738869649261794177018686895694049744303027614298253674914503673760762652598213443594497191371046498028750720198567716494126082726896013690233064523370657671949758638433308942457508314435186452450908083702822245480736714776587428072721031951851911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22756247056038166791093052697252931917305195365902112839491122468444490201510379455465134138134394522883033295191546447414309230478174841198240930654017476723038758215748332051189778262286471669056059643333714272798076474138325155771464428620150274896121370048080127057034908886790999528625474060591951916400060158994075174828600311313475944128371935268172554453700902524547904549503546446748343762123173110323589988665575014674232249721135829258351253467862959556828354921341056493319867491710356995679117016485223417966743144802074392805373737299690459039619519446571415713003115815294863771521399086760932610009771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25044721190379249265269026077196379155750488852186930711692181582304265328460071721418154522351742470489168193519987127769610675693545283964096573103927031495073154117188352359519068431970127427135768463716279393904425547736926349789132884609619264388371399200486592700116448631372656717847547759693423868658767365805519390014358971852432478409986948201022208245742347401419468877854199726679598292065460200070011071532107598877418058100215064275380396976701702892073679176735094408045870189949157316805132993581356042550097711789349687195135012407397349455357857276943892943776276506890768937566768362740607048881639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29235624571543768638101307966427088906655403371726494966082894548298386082995513693154454032171310370075354573936806924670015888507373655639141886566079246643649954666144339139824669088583212415217908421458811535916212263320129068617771701324591780435480558842728307487248311676402058981278953573230790212051644462245608252853575566798885602963593225556761733723554165570422514624794808797367192955370360829282754826016730230566987330096481027685118037266647545479540092322889258426807653730114050056636723743657978359986029984357083970346305131523020335754961755200946822485585023525916943611279582495740059521324001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25501362395026090394066293013373826886884407005500740428581951671560023028632424002007338380287691789462353377272525578844582607822800040270276371651638629397689807668285812309141144727312213892338099545109735449146171840582841237921302847580944907099142235198072788754192338143881227842477430475386890472301173734580019827394402045697486867051888734163948846600584797056504190051769631483393558460859192946463386827852327918569763979312673036028084310467030246453286634421103016549870996233546104363589937698793883426192807774370431107250316702592309985566119943391346538194276460468684524943554246583113784609102261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23258591957562057253500117206891117185493362801464844649052723568829385820676848473116886015394521337753500061759967145486976446441055724678368332556668106068209766092116380958469882822996402257565797259659344922641774049018641572880790098448198918473137546393399131510825649116349308891599702068769384517696821267170038355333705876386866781049137564986207344711590286067497632241588877167071329717446219556048264253929718797557741634252932602438748293957331699268033138475854049567014803610300273472305045595135579607316625385602940269704433838304963841174773644099599938236342531579031856805689718834677856099909027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30632498781199279041165594059387697736838917610170609302355383541594116428096758830982960158432887687682761535662147967135212304821430523280737927978065578712937695481294370728486255653206756549482185488477483781752016270195351903114264334180344236733348979215854455025941368003627100512732291681469581602387331613832924670057485068478602118409651096742820716099455291510668018201055788942428300826790978506119471220986877348479426966516940470270118411858479709455756478203538849675209046244214690601436511218249181651828875040793000911289919789950954064598115738088166079201714827082597435940058036784200480230925939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21077074120385863705227517099803542762530324492228676664977395601780605697396144141299906637069751545372916197477623375695005222934249584487586525341224874303717324466262398045276313241697079362537379915682030635834949288480789657644970330341252117791218352664074195610599257879683280174352498750997872279294339057072904161439225222495330056309473956001695381247213911394476022143648608319212229133646629165762093690459202763833971063772339353014955594751232000892470844353708838917622680104759019095935451413259160798401196140177678624415216290396178263993071264054601291131031764781530697967099976697706163339104627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26564392504018655431366730825503842763251539401139082006486160894850460311177743897144558725817010604423523757407745711896935575391132389139565737509687455388952037176739933440895216561628603433780720992021491138030455698330795817556668387577603636914869168872107083324811454649158305258632875226561152201850013053418363003149936617792006300147758901993345663158936571763832617366645054454528986522156119825336133386542612496051345444033879985726902310148221979207221553574350490475660458359069245562218933069912364061786968578859738489447502833545955474469626676787512651225062093245177824003855105303058926961751349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27276668440605466559411677533270011563952367418154455315076093461381825728640125623306228057407996325177004539461734275767115432746007028759911670452029051556170924444191133383214184529456248845827426952584745829265463345849106328351033305167031023161982331092728405185625037516883767389484252867505724478025259217053178211095869268553781926025418541581930349568632111077670273879872988657249542922314668334005038970518492634080472156477308529374127997659025704847080618641909415581192635273136623571679376062435737040019475956375402174186637891050761322438959902397278699890785643823919016525829118787900758101503573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19569754373052634323819767783026464272136345232328106874822580284836558067636510171911993357700656602879273429186954099089792244639313980307337826371220516970910641547437296103661788152220033055915289790111000441700406007606437081730530402916249945321085210788130170488911738771979296723720808360399839270449839297107049745742403033379119088953888327736119928583979218005130329375569347797571930360767100271024754550306209937907653325504927819440307539768914884009622870600079664372187738565738177445360218573205963331493817778650090995465216544414601390618678522821366906664461381827441008045436865864323749872192327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22478573828037913442593221096127045545584563168830606340569991839792582945863289742684207611891974422415840477726156375343901279768995546179711135676052184337722132763475660218522559456900313498989546970749390389661141155995538062047999188762350182876038409360750670274753293296955127118737659597907625450900389442820226610298254189981154851073343008343169307611635483451769918184496495734138761362193321632033169945168322056952358974634830323124242763740262433775305985545036999944916364885073372787836401860722723786733211170858252744903729949995352682531682425569058803174366464815738258999001595099848949022461293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20157644511057078747187983224786674349711387521035002481075309952504032260759729744581507317179572271258514551277763987473329086359445102227414765947117402138407448583575076862807962152691488048962973737075965589807670840449535082081446407488567430364869438417396041107340092527533510706587955255787574951632511503458395367320507717461902934476892198634480313884741545412959905183186169861565323077672580274502177495057712044822622840719719408800905430267396161488249857778379475227853505693282586226870269796169011664477642276451961434786201296298994186195380853572803763845230742991768126390190191106294172750719113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22642186519361711760965731706522197060262189319804462514305841572230749709818960747940496690338154944391560281476488939199381149741471867746779861180504066110914515111820264300301617129706345143148467322493216893565018148459477762710812471644509727954141453771003983978961835394254571936003505842284653106030423502595551543497560410976874191329153888257804906369629295979862631857260754379053037123052485699586094991916403041183384979439576818871750185187473729318537716248865048309179485364969082795910476400292414951844000067354461099836097739013955019389027014710719930204552157559887308617413031802255325795297357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22568690769456003536532764549551458943995204701651109075852495054711632731311833705794370731151620709836601648031179008047844849089225833184105540544120685274685004012916365442904767508585281195826354386786572764970759778712481766301753026035395695463453778868496067084091123401669706652960686337410955628856875637370380387512810011397672348483324442930308797886378996811340025008402036677312431756583823435710978553791001396992758265923476944417013384079503428565092230256490335092992124656216742389344219005499463351590536566881582159976805471671655068267100162942115618858220058628532702034424542107174629592310923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20817354021253641807059877840812446718226891685227561883179666174241252775363285427654368461413616452539295663958212676274960563944180286113636344783031503979340407317738755974230724394181324291429222132589381313249534950398888768203945957958916063231012359308887736153371630116671298940724030246703667271769770644928814843799042085917090402691854445133491974407970606784103227786060376131469584534124450442282350036582248448742936800275023693680179836013665343041754253848208453713042494608139526280001538981474740788320632378263672089877047675724709466912107592369177264478501567948596893709828830387683089502814343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23049329366582442452898605987665888554817742636547003927572613487878660144200144015645090143399252034463031407388881698640076060915585722473203606266393520521593295551993680960637861974228645829900805747103306207857376019035799727020603213655414267703479275203963220925549546017070797705540759839221491236658561504820254858378464497651899403305476835379084163047995879462580132330212688115699454247370441257021056531024005010819888683431475746912305034876992717170160459054414966054524524864472997330121735562550840160461166823269518579127366050764847114411725808446705427783871392095442885423434910029376634115929553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22783517679532191236530229177137176765100321201970400829585838893271899561179437482284045837168452785983706973420841532398643888634171432608451953958464129015704016284079098214616579256790424619938133574847019107117392673619752299397280998902212954061516137286942895533317374529729489518342277420693026119511312855339850915394464305731309792015403729906294620729776416344798051996225319392642233699645400622807563329137338936877675799422820584681107565018750446668788570992431052193085845634929930884339093466541881184527556863165132320096017403208241092022799342730296556037083739358371366390663392796861983496492223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26855450014389027283528767983805162388036305581424964263332917746160254231840012579452549538027166360937362607447490372328952664014629547821377208969070283349571136946419985919079913573057026679118392978831408088230238098387304377407795101196415643262608091727248897576740075871843182371368895142477656259759559157424693308654156344902170675365976415186640196213530687340489254936063985866805117457242116976750885884482204161338007871485011255882336839961227921129864340455477221865693290971735756049178957289009434536834124071991805581189656818319472879776596447268485463414795680781461679138555064471043833561876047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26150602850240650860185133273604608641872742019678043678869977896902606869251616197401434054640613224316977147463486997827298956891450588092414367113694060376535167691440103822090895114995713757584290906320835984541020457081927617486091395041186262707155187217249554218614223358264596853525248954588814383960185418974077960604851931137789871217618969122941765756395301901714465906943060391224659061206879496000259667506854568715808042916852646657647901909546447287274669468918761334132071917387568699230996783937449258999981833556175682926458069872296518551342786280344547114570902917673579252908267962595555473773967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25625624110824889045695513253976155386861620113011634121566878743462475669799118233364213955363201621110817599651791321645790199784701113459989756233753949582550787488638752340359404854411494596595788752400689769886018391117493755277847456702097329015224467152131581179410913010751553436348917421471229850024482390470720542549357450203590663452585935856671647573254252395976458576124411526605695363959342771560312289471752110894459132960099973345599071494258439062833663878097286660928202759215698767153444761118355874420415103674570426424799187778681205983631595282432389770661677147685477655649398487233990277886337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20438281472145068462455025915321796062921371646911153008833937987592838643690615223377500968246023176908317544931145850404072153066086900704372537744302345119791939548432551829988189067883802355377536020252445450691834159742857812719579911968395832983931277436935623490200076595145834534386585070045356420001737449214203784046540210260361926931053996836440517849474649001621331308327866501199097693835050062713823249430459786186189731523871265312667467879378994504083297025008173993324269426556542169420945567758531323441225700488199075247172183702376595819156744523626398726863803525972514418784747958433098575505127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26358782588018081734126328318578825550774823581832971883693267909054157910965123137484247023206478624511970134137094317072210483316289865862219200538969284580245819601996480724681568834167395277003716959511802212629613587979696110839587752375784150820411489504896051350323556324102579889082730856217551635762052059864916557523547670754983374603495034602276368174163529005930557932636830619234132333393219652339520973597462694048464347468665015189037143067346163220491077750204239208329720003995252942095419793128747583170999355263125603445691994986689545949336794652484099218095759115336487891141998235700564251376897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29063355275125057968280083989903751856648402166693299347438398105638674229243141309534618203857174088680490924304612934555490883341639148826426615757259705780555502002700028099203984477320218799573829892838541903188414677572039558639997485751581757101918531992434345298900726703983885520916789487925963640162114064354583619209258171065105728818137298627231536133493127862147556384832464102034992138687812670447109648042715809555981257657266350277662603130743800251355702640172105506799231337561083354378082795253258159724905646752971571009790581246800380959595282894544345435723726524424662396981825406702856789769167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23479829287244738525295214339491818454137210124331918119508337161687536184502551329790610084468484397874089434141052281449767170979252309820657149532952497541369622979073171268681362575087417457966363385174650792105404422557741964358211399152655074716389912909540967584217358310250306440545023896270633206092249131291045003692902513047586781201914741841696269613222377938862229466840781680275122519359121760790215861070374409826546040348910330144552350884886138516618756424550811483591240038492008812627231249697680612560009121507357435025064549966004639853264147419209278010314241393000084075923024452008808102338999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28428871088931201093828460985811180684654242906922864934964153806069268211850024604289707358913082974696200463216565609659924020213885219512073281541139330466043530147956790707826309422471062181374360364704121419505307398921905483635619321244565852906122915291856559000940185114276602161661887430993093677147019638387701476218152554682828894087486230469101586545701544591061889718646892867764444668434361273223332448992033901705098519930469396684297211051406123339873725924080514582976681344297939869461841766107403486928138555967669309347932901923682883976054887495119754022991366651697626537100268016128594032335449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20466236661419957908122292710701366802214607932090286802572211476652143398880071017156706750899751866759584985616145901508551662760552920248507171665466628226053116016025621681305703773451028313924630996694687044893160260227781640921797994846968652223037481985648905224148709940412697456602363289289915286917034747524591722097988600543369071457691728867337149923981139051251620160304100213371867475778044122561058030580943675309727621081013633465882291067519391479734997400061672609648663902527022254815380775137870622645578945403210937615567361352461630106438152696346542245183091175812009307184412022182143081069303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20955014922533253379589530269659083690934175697687095541551690992617107310487300763951133004282187169189797636140896110716211487512518256376590170502607818048600112716351953705316384867613969674603957045737946858986965812599853559755513458716780248054426157511523758036632441007251207680692296044454233952469421607366543439167944386976469830432726174094450571215950603318386113412602276649171484993302535394633466981308511960518030741255285500534959769329029750708227781987873507608986804257057783759444842228592066814578756287851176939544706229298123578418379491745981442959042011742314915126790446051422048725138247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20706050883714019567970658619870333357303870561273945329581781027505794835363415036397672542480938194354448780575522013300363526082259949763800365525034744425302068148974792343085452451339844108072433915291399601529471688584386443091345003819690183067726502044329833059894829692876695427460549160845344117788261862510760301716173471386849812661495588869261729075066603949613021295779886543654709160635222605588812406448383955830577182734142528221970837657397538167422878674480311423322351829224208223696314197895516765747021952141885265792900096064690312313002736920834661039739200395837444565872736168752469194728507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23749899056478588570353003168436384659377195389729509801230597921004867515789015992164669277907948821189911378541603748422820837926158674268817876127992591698245622238764924865917057108618152235530258423988997624115069314195672974665573411039056317460789490159341570915531645285603062090082196452804674654381502166776903427194771468429609795564201129594579721524029487106599883090708529021093621304253084933371982162745119831525575958645669642345117641530429526760682292734551888712239467139530224755926113643970413920483508138401090898748447038233736635172660357632183487579966077100871436210237894240591556059700703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20898092916623240642880307547217263275467858194414010054097883272245111948807723630644635884278207775900456066441232847511719321795437678193440928214651564042126265823184149916319571123065919170643506732548352050042024099172048088951652341389685742848890078533928370302982908959455217530584408906901258417918205850996798694869466773206493391903621555581510763296613295155833824211473120815705221735700086447042059161590031568461184580878848784057884362479866699406884346594898089173375207791502882807768253326162171709496110850226419765066315797653789424281070628318331938443612528544260118793886103986038466618352429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22774753707229385808743198229990188939640044749923480671486592852816188680040323444336532945587298606599595095501772193154976391118299701659013792163560915926376401821742785812376446514121495130842666779894420545965604366230488114643885884159130897776003625152828060171987199596618847740784140017161206501314856548837482564247589091182590222308042023375127087112417195219216758112039010498305999078511316292784260856248399217549931224113059245430398173758332757374659432661858270944948660829023761419600508138341736132346757075823166145378467372712946471381642195455366162414619979387995668051420830062172601848895883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24565980740891708488027089364380856811225953310980094618129385115099330201731736680859994965965571594881870170876970215827402745268088964965946182885252348661651665666589874090703222773897475243587975957939565793771209620340495586722399883812612743386346407008996779085275930295488502861855132555103295538415354509135458189137213047258662563446443353325513342920381390189841093061818499211154250894622738953584945816302348157647498943964110147287744854831144903126331841947333397573985532990267293511231321212820360559018572098938653077019975846996208101016928901927707626680611562460589960759166371933231233214161221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21009978312723408303812753230668479609912553328791228208828765962955699125692632162811290970899908074987208582648590190229210838040181870061006205052027204322123380270487888813483974011119838943751636457660677997510828172398106710756042255498664442079495572135766800058148170361297626340351557803155285680155429219225207448282795072944495115066018416977331512662486662267640232961032715042382674482097409658869200389867114375161960506960685623059671565141313520146714500673044758032584366587458154048150268202785509727537931496764080188277827229239030674981933545457968538579507967927382332522412140798015738197112787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22553681757705695707277753335235740268811270458748571307730676935588174617917161048444741554650648290753747981094038930835125773470762242598680559446048868812597672504581118431666616257855697892886887603246888803357589679826068547857312073971266182125357687862336339700768821204009097987590309572187995333296899202497575085765278680128359271880582279884558706105963943832157417510502816828312755214240379284078038970942719804059353595143618528922995852092834861408202778760800620893215870966730458043511600712764191934544573486163675481377615419881835805161124201052897968925934364467067109940817992741919528154157757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22153409418876898390634190286742111029018353284034978782721412804250328781601835453531345715092136593648274653412666972600763644936079698533234411941416487989196521629085472790099024131307248180397943413519255610027313821440979702325103936716042078386192540653602295573769446946061572243679728578191574971302008029612542743538618429690928735985289870249095960942716072548045580199902666716183223653084456264759640658140124801708540345388437621546468878202749209466154472064072440785276431902391056018169929552267494895616808154394290910739403403206287282507460227717347911283528046731758179237450112625553643591008701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26019616298292105820407470435451731667595828328694398126801208358385168455086127355029250901191709216368396705358721022798254484893904312843725850823749287608021790735596700163356073406089323400015830779102319216857603043907100795789497108908484750102565217338573831996363416952423719482362346265179939384147193464422217163259209374816550058620964943657246393542944536454634121058483810024500202753780188428280085546136317659103501901020675759972583656830121018561462905448832879693114929588465820393965174807684878101679801551610784059912652178559870446425866861604481616439874094241708558475269723029559334656734031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20998707154238490766001246192694576491380083533997354250078352353350759356861668684101729793249232774402134306500331267943240248290331490589072601610257936131125232081246239372895292157024850351632387567922689753535757417676812988938608821099155999955755811974697742327498282768144134001486780617355927152969034716828316744007058929099237772342455274005876176154414362186213838905133685705342497503302303243704396280849879436798729445275945535594546997394628580442021443079688294849718452298596658864465457642034971709256327897280691540017916884269469849205970589429415880311318633922542349209848183086534413336407421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24362463024925130474732069235629918509378751865380706314740201168228902809123211596198919733040038413005613885831830035337439362391763447040485188463273930347621325967208509412710799640504593774915260540356917629739426825162551273965003850628087275024475166923027685981491883235974299962139985095001491437639903971865075210211256735583343132839388058587903367692759706616013984969041588682022271927145783617108285614146897354717393689661482283305248160280319574541486369081992180971272939492086636536185543206450580845162383652062806186436305370781849137794965507315203086987126637748639163564605754273910666420025497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28234735067999453882807545405845152590537724918281889341788082912483650240530318425872500861077516778626025088035669180967823321009326415513836258888252612759634969304878339996519802017308732152631043738618363983510753868845491876532046659585305347642805924027744771501377221310566682160776942784764943878613084045674295791954160973400145263232264106971787804189941240138658865676228303032506182687182594008255232760967321027474864702749662347704726023202965741910797378352861481994738197511110250246201294546322157114154863517929235708539347583444780535240198551953257267327252946381195544006535085472377899250448203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24799953764948310925020912069419737790941029973471134327449366912355686104038404194158997149216749607059495523899949853998944357516040305598166268631040576443703834956427745500813787655362878786852466250465335736822080555328089790272334087646947633600041333636404391788145743373783059978076547524181803809576201951761354911138217998814845528590848416683183844827541103821177732756000786970322032107284387145410955259820066487415175595632463428169189674015771706741320573891073870302241930002440616518540010674130597700849231280914803904020827618255318473699872740805107682217234511920491219829686786762266745433907407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24302521376558374470054400899753092406664236701156100704660475176874000418393162759459590546841761410854491278469645599358101266456279739329023116243672830200759179116717236414317221621270065692588014564439235930323806104539786902880536775297259288126753479360279094790904605236777938225118701498364556184582908630149521785160742323420524312415554902432049398866100441534662289485023924772312034300508967364426427893453384444816413850902718286168387685824874679468739368889822842190672522513204862445396601273725264825540637641840613263839473163302390473582876871218092668552829999187728861831856139385136457878791393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24632376373557357717719424170228604448719007316259918880890091184629240081398160831371013604089992254776660566738943298144065836915283925420201043340676507961552931294597182908715886619133545890869206466705484910185892213448009957787108528320887230950102204075491524909931134735227531835813203975386638690329979515695634586002333753848463862513190267092720001374971816550244065549533849922495992424248127420175977024446853152681612349135234253548832193942682341931401046952604968547374720200261719948099932847257179279577198904078763380874245470370284308279076482668593131353270800233877422309363357052760091460781907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22146974405579851361339783308400797603031439320138036911652573612965835918824611774235400245004058799638291664575074641531994339993575323404639431179890963160299333412162723670714935156806161598590275158073990810725158561652598860416507648865176506411044675769304326425062731257819413620750398290099386862142685771628705653815161803434110268531550105244677035161094810795666818573499020451124725306153736416528060927378342639519158511059533223304434897213436653091521904648904946706330913057269261818885871585422170579449449026940238195494075089075051708158994543414813585592288365233189109219613411711110671975247119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23248319197291713735995346066235872891823300943882479129904373389709354448917955235203932531291731827782462209080125057914039299119059830954099769262186308891504598911926953148893188349522857320017982495772670657910067769368768294076896123588079314888098083408500867616329641268608531912383231829174441968098631238534347498959004626773076509681436826696023224541114688598284551171931168637709358827914951262750181648662306299196477495057232710773277067248094956496000740117609651966034871940281277933379739724084537478076442904758022820554961752962025257481074273194271132917584174534168991402764105470883691501335851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19126647707202076981190053260597830093159924777974060895845425390134612795200944667364018471619044060397144689259271803218867450428157435483635304161463521482380089455573098046142759457192434963568559683683529677037206976670780595499702055597924929403931363664699048535905842257158161534631456834030260637168230538021872123125385295228010614787406679705521485754741393684825958171444400675956186867180886509680909035516432581476725457967574255174517832780211826927988893905486843909461685107501837840812149630656356083825390624109218582995869154024652990161356525110727603559789088456324252110637614090924115907611079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21245625662703348875690006757044569591039000368734595745736820345038966652436898016554576108417832388712183079176146394912619601066795111421049279508262697255706745590605395355147621267879734543842855719380340359784680565169902687084258750000486188148463646673679123911500895564271447220568482046277915933550975926685847798470742148306767465886862037729726170730375301386189806187824294525835629045864618792529612266808778435535196308245583159317338523382207791190058924966129624745799618786499679791351550242855131934661139931330037813002378766126011254807872458576016945389021995163091777352535790801255727067979589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24022585802207737233494389350173065478672704626466224818164009895815403889285344687450977887942094374389412540141670752282583715532204808664363398591604788146099943767184831650345168511562917533882820287937866858348437563460060338492740656384230384443864526997763645788429482620880597864460750020984600596071986958595841822274192330008198095286092683247009602451684003722970285557391323147412715729813688233780824001504719752901025557272231215225855892370922140282098929322185907619178228856658181256628603744881021080525690338501996036725724571336787798217337837608165243010675708405158959040441282953050180272413539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20652628258853567413363085414179657784381185381158420538184625054008081767973610849640448946805883032901094124355192886564734599135870592943660599370809347358384518186620674485510315705918319130092729750055483830904707506100910007295244527440875434799084957789356461007682953956110971673261641347373572481248846221712206762757782955621393309434463555798190406833599815904971843278394089538624959359449702904888071854065876104729919979703023635026451271669705766984019203350371865424706502226255032081876678399819722003855768280480452254816234328238933511817498887315753537682346035831190686180440146674131073316822719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25270760286015742185386142321386634511654828062669819581775365054562692875118308291483923470887383484874962031594536581264739158592463434452851566021594598159317911390344439356878417565572454953013456335268171235490281231704562705836768805676433293033302969925374635013050460952663224077996109284566843895063974130275997382126194132366565091170081778641522380627712382346390491172440295655415379706956934941701216990289310516219110575205409295469391496943388854945193505246591408195102116243942446669675215733376697332544393572929447243178976568386584653993956695646668319987767241099802694332108837407428427590719419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23130533093897015735546671667443692190499486806863037053702655482512656969603978596205871299609408044032851716164087151093172041044514794790519562229893689703023674345779923335520352967721931039783066355812067404441510733097537608117800298799410017494206198670328330816545446653276656448360523301617989027584544315603033187929887578483561878908174052746345996507598845786779298199957568045395660397668068999599656781316640890626517465849002206000782778860962166197980961479813523856596515245938152751075377349939165063883456659936385722545040346475643672783825118085372124167753468418187196725439513408758339359198177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31504170583736667476130968972553173105547498633464713739323737094343897111935297965801854668853338860718379613925520860292129823704303597787102429574212811462830738839068418742420807325022671061421521319056462218925135888485636984966495957581338872689507238654008063066240888532712916948499356126353550360554380589124845221537698855262705514706286734931077803531877310760662633540926359782562664935684026790742618646956480256895487929111563120950652122250949224159223135246404519844450080032689412258749118426137490849418535171927414259516178955343487781586538438601411179681361425061636271098548355063884716265424797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26071660845936166645160456276803700875401087724914079059917213100277865229069456891128368562738462763482849053361943392668115561231755761375395357387687763205803311127198455683749818915870130961526024636313537847244798271887528820720747446163328474101233133750832314089924792122832172788480107670764309935855452677535516218162442946958564582658634889503991028852175420939688686180359119652576272147780301697076166945699017141667019088956067549243181937865799209431780093627847941735923071885287195320119413362728258758057241392666887206228086978922398607468711761629289793694066004858303608233630104071031459601537349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23811970064952674440142606616217764816736474893646461122712815495938677708347352828230683841996937701709740750076160377572494462502955795558610453782391887796749232568175997210080792086878135148112576633242741286104471810048725826971321631791913545073549159561127449160517396639716144131371713886698982220754626728549209835031862777705932789138183239338134400038827194937997224170944141241294393996830335378506590193973577759832513077886015509144391066841232917856610184058577044036593199613536198455942059560836237979570208791559660964914517912301200597255079731196394326937065391457651902784296470404921130715519157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29649765669111731903546593602375844323232631523773311635880623668202408511861298665983273168084046532089717822014009934624876770263372520982131235035549217997292480868097251772839974182706565142706917062834524494881891202982770930627258514505501001238100972669580132115371348934761529576133306512050422192161460152187964742148324611582295976048648475561283045457877473950780863061397804513121612225463530662112217872319383846474378478009272942521314925321998660389892604778760981070657261578728736523665133834828914104054983874299926441584038298512835330645007941976938280907557283585699909371930551969575306985311243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29481128857631040463614539850183943342602071037590876114034409731523465550331249572243515035741399704643121486061829111092921818882402043607428820848785894753327468731308841002782714137052816537217777657685880222094135170435790525698980811480558703649145253175253309320909930799127653186466615593742146248417528715515834919532980785731022642222643778197718002298289212662841459410974341167218435472736214492044967214745151498799980502453666892994711710771884840556854784067611577390963443821665069449649933235458006327126721410131449990951154028338705469107580415981908886814256871912276494500981043638165223848122583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19288143725621420750715609540018597344145280822400221298886410405168903330466067052230186550911943415609787749430760142232932086055583048417294823156705235387842061133252909861440145866421534511050216636791265960105917351038532021719318412077877677983807340594817119441460937266530963836157604759438884904517903238448792931237178242699952656300734226154698215643883403671501851654414091762897318892094728730981494349296666243496603671043594223737222670425434063693824107662095622139275696280888181974087945325599286140208912809951927760937866889389877409060597477571243903749846418416121098344427116439685007032042599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25962185891807478641996863665838266647812748795655184994754672673852047883689430247165179724262586346329402988449739702620348107173266667461011838512965114956005308525976013773401285309364763863522966892810355792844724081449634175774635269856997763405370597812293117889606022747836940107915357527665232172559221359902025989642462256264842274542904633851846835754631386128609743280678053280427379809586697905760941815814392242945619177719777623140482133795532236855739639906374462404246396637637588539785792213930817956871067495774447124326119438611323679383671528225844118031668262860930688199334369121145394079617041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25187092563669513612572446271593022576151116091663136130010495851167005019826164606486931892256277324171438379916322093811572440871265111686654195850059799875452200824093510392914694364888630532429695365414811899748619946982690210327856690388525018375326701670711328647018708648602011689158529249551308433350312257258511251660821285943822840032665970899551239696482540235339077514945946225035183833246009289627846265516590646582230536014356085188653779126351878095913136442320717677763106029173150413039146550427676738783423194563322653729488982751078760685259845642043975396745348871688613085118424977766833344532237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24623672801734300469998870029162252479111214154460180845628173383580715120561546904314440218395318948521144396223230539193973341130820546521748544365092225232082931002107635861706113572352713486222805903948101258788178235105610658775981279172876657369250194434803867790555707581728240594662878409670094116903677048683017093060884137835610337628018563959187153204750091789940023307295215351888777807926597463698185172308596020424662478664909385469391632487562561591884742854229100533980695917530915322347641726115784902137632626121460804376914724955305225240366281610188616207248655977228832194917457567349964090426667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27221713208336416097309147146802352037540382379853646486168454740240113896317705715530043921635952273530225390476427260458974457213040129752997439930090850222267616328110754638043770558198688301128687057046847291757027919839983693773035655279553937256859374734574141959588611371993709913774968537538147507144389626465864943333040970098440148936230100474585271858969515522930451140869974940647558346706110640924991344624340891332701585400206978305013595900006176862885016796938841410192983078750440157804384642735033968516549234007361080288854207207477726278375371234042273358680439414235055454127223744172897335654053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25755771358253225726109200065478557672113856439769105125007327084863033870374354773314362502861749797941096627800294858895652540572249738667058038228908869000620220386471497511722354366857680796807443466840583550116464871466764196042090026513298797134224037788191901704599269194422176004843567851284554927151406513136937522132459120588613570575940717572913403016948034464259692865968258623851272634230899599732438006423277803609618459754270191249189669571709150431340742197763022651887903885388239259844151974889208228596204939073470242964999318451693994958936304736694200780467603512544932697859433387693391652050727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26792014130098429109039487888591253374380500061407462562193500260448306718331176853118159236426046214913254514512584963014848648093881128709126702339529321603094117865250575694201988804204199800172756259576228773192646543072710013706606716558512106590420243851222419613116528079139750477087372160293768834530615385078244765477911780274237427989882148639655868589452583063293165783272832022286586098163723734889256879925512113467347039352503121244458854683622235086950988717372084726262990748064365342912103420605463834003277908512309351463002999532460652663163192926542057521530764316366503135098226378804915036118967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22251762072944736275680912679539535264035262779798897731228834653336180995356666571975502231149200382152277873079516614273906460835906549149659459188306891178049897444902788185225451005750148150020725631490877113414474781752619887692961839627886964985860470237629368531993739489821562701711302252033169661477593327602038021882952308122842156880253059751612864707209136674000859810046859954603998698247933588544071142842821481749366541626490771781685821212787239084565261113468139027822346573563316375881152298882303001908197334899433119306511984947478336164290973574316102211072776037701232628561405356287750191407041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19421228649784915605951808665741331545758456703253138000704487153907421364873931208008173962218196092962613186654200261583266454791826426256478649725910213156041635840318068881853208202761252581678229668107255666336305507144337814158705165340997523561689227445533872153092351922691925057790054820676533398457035631320792643708854656518019114121968362593574591454845482313567971084616117137105977115577874213445232438820453623778603171479928424632523140787157261418991087417258047348376096726273106895448097542129228670030744053818503115676128571565929170257151803569601348141143819834741347027117115124534484371083781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27833973817243840492258134084716139937406246820211492015131322002330283435943265283874490981536683201829932044519661937959242195119853101155194986839121671315946133339682375506994024256540723506739620783753406211515785834356870887448193228355878582003037233963144260968177005390858167372692765194290888208717511012062177962242232050991409339153486859648451626721567481363995762097555342150008942531300964321840964486751577617719122932415337764383571491082645101086933228660716641004288071297859202693660680036016348276902286085515438925123193450310821881039115462842435975440495935990835377186143396731129997470602111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25678268345637398779895033306854812491393597216495468016506808404985987462041439768386359913747455230568508457216909649244879100152204247796912032633431440890725387575031618530580713522397549840169301181033303134274209650111577931112652813088567544022172524390198423270082448908752403564338767275374721229527158698151422976988420457499738493011562076787266386942715734188604786095372088823171476111288006921374688149921642575234755112577367139079006367599405133241938788735036217251512075314220195243845974229402940667142500499544509137163233020640852227143566871028230116450000268953891749044636314398110939752267493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26510412410581360461491836127491188011074794593454985561958126229710742139980855606144055576078733235627922495479540794530619086606135588279389829716859685538875864534165564314140033147101781238459059865033673630378044475866148138778151375591374567977293014231293724917803160842123484378169612605372087815251022952270954531481126373524486493377176903998645110020951923373151939222813371969461993867511425149010626253228037834862654702625877933776864290311023258851216047218415201543356703990139688684837605904276632757461938645074725019802104934702649330828775232979515965844457906862040759388859686299187825310956349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21471732883039441853534156979067127370656946171816185633184860848413373331603838063221838662927530064351792638227674749900241880761729262236228096336102707035033377974377122851158187298065716588929578481693467356884719987017041323039267539106456450806633755428297798640474848179922244068134550826371810770567505259354515814530041540041354174723777242796419877854780747882083595701864627306375671670936768427661673770794691333582545967820474752037842089904295915310546625763354715071800943122225391216112967501652026228364407578276674122700057813280760439708205107539137676543097310944608103410671501468184850799195453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24547265660231095626634748434970690725803305470304023468570574970467692459369224388588834613063668089215695581154058020012374866346583607160861458775312232496019616388297168361339051678369460283589334616625801240428239598360228849703342196308301888482427432215865291895827610074036901939024083965611545413511075556413222769219925401620047854416543946502270351602394060592827072144806174847184546498866627027206374495821883751912251552725506586217948452437752680755228403089820463922528186359678479340318368445984593372199611101377272221303193667310430503425723651075275395358682489039958858501376037284024974058952129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22687908842806232313563509388667891095777274239865300993525268994033220431909903072395475604688553414260548054333001975321899748213149768171370534690130998486461741130403858355742838532987398903308997058896818516464416844830993023707390875088294619493037002716161412657779588832665380160186217360050842220578318321455219618494217428550987844732183477527647054962369210160660110890467401951212228567883989816623087192572282862107757136338613755086752480474722494305995699346002574506611268429803037254069742882735129575978786265586728557907278854536710406189945287038908578173899575569579371876949130098231607963610923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20834246665952010589480007359974117282403811293437549167339315682146136634585710591494819014118314842872133875603900260985122512605021783869123015729405183289067250709886447668700033288945996609476271664561017680856561867018093639274414566196977312853967065483010730149790496658539563815663488552348004390762959286708293176010540247232056147617721037941403039279360866679219818784195996228483034915178137874614632501938608976099278138258000158942029666753008900391604472264466809478434336695770958014939303931590721463363315868886127641528485343789682236174722836148363409050198834199334433293115300652988305253459501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25608950260738997245951232762332034821422270331985744396097698210533576131580864932211791674893997461168132277265975262716307068280687344371535632735423883133228626260531427760477529962864653596128032868469100641603300665329607402542284069079098910817112386438921395947077300326752251303221582110678114537582212895191386201184949585409276306550719198284784329470316507146902713478511805693608764713287795694011262518294416710788611793496149656893571063969796782610238369652435955838212956218074015050803563602411694579901546112679975770699194161952909202253616965971855295947281876773515572031911203551866810510940281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23840921234533919658861089197294273476912107339608012369671860404628472726582693898877547234797110240518625637983059456064678447538156813418335819064279496321312609686724669992074448070890708098253456554856211659735183719512597848362857038216368524082517216006417320942983859001580288876908202348035959009975138940650826515548665902631776049381021725881036858327665840543328280166415589067172980222240573516520842086031235058158954456078280692351653520182528438496856257343620346532014589685277221490467208233879153470173365794809413500521695549852853490329806385829873544914796484764887710393880101815964884884761491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25836345935908144929023139495055354942157907855997098138007436860364209011027614567102811578678082115643295253926669558272074126417230186708939229133919176670171759922902674221658580133292025868241783505244237083897358173603148442608336563286060880776168507054893310641939186100764891964311268433750257934573302418550174918209323513069415478323759622469536056208819225633484331174931188092734050353094353764840245994767373993113387154753029046120907781432809842871755456442008615240965474419003887983509654143323040690380680773881617908690092536456359326448714710968334805007675410458904083757248736937454330792390473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23262814275856215223526400253528280066809672721939031985444986343416493936592632112449821609771602797754207382666497451466490592915439706497624320207816395577497507496786158446214181188614461483420783477185034998533134600618119140909025747729745584761960055376461149862384880496201738548875158391765731952609862460520498701182056726909501604040855347206366868832858599243246540484012374286031878502591028308697621336895394152695414592680230699248665424894669096880427982446888610464810641801380276557994377127828676655272526885012277018932077895731402268132490355483443961136203461680445480036658933630958994622539327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27355168784557780287019018475833059806305087408934475176261012044718815466437821907985848205031629722963002883352453896062673791283844682335199396912826881524535416184352707066241719888078614205132750046273090071636828242544298631873939868848626682446038035046667321184695258939331587081949740157591432046419614265206035941312664110397112949150947557289802378473980614321486346085042707842727786415922697060430954660565737893889438438756489055820497652622647676535693868244045083430480549139487091740854449871592390451649075825172366004839833506897545222004433586569696833259432507925772399691468308300057407320224913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24525331675508464492620419439100890938551593199333454200394165679037142806125005555614556186624538866402176051867585708795051470651058448063313281733635501003650740096065321162327469810166700065454646947231811636950615716496885837665133761199429961473276077534978654459115408872745732490408888903599836840857795602623698490544603750901288626876063623993074714251700600375516961295062133835270951242587500388148326828770869483252126395947088613514251250633532223880389278216340920487056956597332603810089507881302088557586138695145491503312518996312989398508847975718595539663587591851654267320865788632979337296486367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22552542758566757792308724547975315144239021248579627711843930768683685996625594173692386696188057762416299540227583116143544157707688541857665039918124537905029858261915222825533504549131519878630653574245293736326619782112881487593668695649875238100210299645313684932016385218294547391057701133796479809907150470134082598944852823953813003598804902294519682086946731788987402357720391266915188340602980383625095243160960224647509279730753156729941185674066478164615569993082419048404427537731816854495505215040620371284653363479511374109664535722679859407325409047848797260846470109060401147602355264865170050520081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28509453028710400936895566160663714664191750320492214100223961340689269584625519011149788538778954560943046909372531344519261363960963754587779963442569172003617654533937094318395328307560133046399881298425219571887615412365455473561661007353538031771527449152670048608900994528800995405601716267418331686354372806392200380759393659544259898283537967713400963786355496335853549361151985468572264793032547359111897670450308942159818294040192475362959526443215492428814518007407508386844954006308948512440699037704678352086993327741862508963118621385646248994432787207604626798248329249907539849433755492640577660168529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26635590263754449678850183591057727691627033501661405255495072216818037114645734547987250581794496486267993192254790432617797940123185203560337432646669567930720005913744843889494132493917757008677885293541367658880703984252161470166144168100082008070335904865306463870205486345155832651032162810835068801564751930293853368936218387944657319517829544580054875038404619490306606346110622686220971851695111095899782839180639737081807617639079208330081561862074526639675910365756814874625364856721309432051253578973353915444651928378666197471012659536241143973690707204764648899571782803415940387568273691893038897139381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27291891422550951706424594567825684131987044577686794523797958786812299717206970931706854812854032782843113302864519239528037594699862148680145644103884780813257890314993386768392486958644185754611245726653862540753231673781304370261845033920635094438415645940935485471616811930762643892697173991464394775946839312200561878108846820452051804300020742097003299222254408520830257074013453452590627144874536158558221458745279740462899173504018653417955220957508843316490634492785779887345961301401299441318551684397847564710300988358244426193515793712582055461345230713008416470140752113215066057730541559504823601002843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25624524180141354564656434967968082050149780912437068296892594229209214566148311609315900043081904694059680422028505320799529434979849503688386168903659728747506685044480544082282683736222400764218584414684018135820949086390033212638809032754348289649384030399964047207137955155608409334591087069338350359500342890346826047473728588615774281336569610497203758399206759883494109142419651055535149191458324155371670000188892266279626922756270169183137821158492727859107262015977366077297422344570149396113567498604636654330981604076001709837303346653798489655185686547377379550301205913806603445653340319383095346712287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20628303464503035012588865839964166258931759282333458004646991791049499303104531368375115612231247899066366003315521449027773806672967636276271491961687108882960227901065462833317471818690240424141973164342560825096144827979213221284083821439070498459484343868186542551560096615165292453585690092504172378925320066412372413294510776049812455682273068219985474939212615341528775584417326220188801772237678100951293213137866049883021210959239522650984688849502353402266766692037205793108893169500327228980233187599640281841460338929513209185573175100158339415734766685689514723638565448004274276314947323414458451477123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28296211467220480439356302558336679584569414075528194940596892622786908272195035621333046224602364201610334298887412742132667316766478023353790806439952284345890559393780209599058205171063597355355749828187665855794117211329744504562055976871853342384411943359851790033014664839143415073955970136920995729792206827594274634365214344434758079857371260189657884584886241820675746701485219825911817704099733753393501992651621527097119850497515784581030595330916862793180421039160838120037676420174330857243435216903673687774311959925303480082865886228634649700075583577856015583328116046667046003516510688107859070027767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28184183528784026432022156260425508756498931497681566199518571699486702589026059909747258097115431952355066751998264061829793554214331800183362466205341390333849305108763993264964104482637247957122734539930111967420473652329845816596577715484821599027699771610725997757333591618878804283427928336242259530668151894899849728391630954720589390605679064394123059686771347155273636845726466086574762980085902090448779855040721759044313050146069162207943923039069169095934637805784496536526310362033237427420117952378254249721300181852118994701963642594416332792815665324861389522753736017497980734397319438388741497894727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24317529666608063102803338785717976232315337643526156896428390284775798223669074796474374489364584776127202060338183571204779379066987567576486988927214273401219550627111488491245293000971583504423720290822724063231407850352835851558108771813426776997960748100549427740122049691547035268286975825738475579779587556057988486940973358475643050074288013497826629837364437244857791878360853044744436183654414308809633570617919923545915584461636085023851527574679804860571690778132003766948941525095717171907897280012102252202767698089779413842364700246177867999652852820637718073926911859495265181046860932381265554430349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20590832605629625086544986917797996372502712367831350432659204924826513003161453369009460719335862176195394172233020798062218408840361069707168558467970440900429309997918638934391011366045929073955352195853151393022901320237307695924372632669745734217545849112087806051173885181423984321631398819149115761749984286602182831423526748935225125899293200050893986192966311589341923166645875365690090060145058581129943689128098617481442183348715639294035912887955277071763953409780239402363425508992085383035039285333060424164954872412866963020294608951746521803206106623314544467939891478663505414998256936004852889494081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25792900745853788431804689231359027024820817250152630681039359428285468971345208225065865419381645412058977183738809188676269466142249674777256541661814401399666888229236425323872945029988157359081210174376104342770329800801841446939551660130750792292796955980535047641908661212583774556598381199564041792752851716170550657762508257090512084542693963970150478195519096310618654955436105045189532023173754382106768491722815929051164244088368813983644908146845347146014534966559610523456994983239677925652110983870910735749553098845521696643656425144949634288131126417302556543890296487088129468456208599645826990346207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28988163077497551586795966865581927803713578008910969323371847156920073549370437143728349386325445726258710560289771542435061518537883023547226317026138004162057560891798136450428000892209869339207159662885713523537876556153664015734578692281913067028790232458330642063412615435875634693650221609611718879995823744516305795125816969872087946531457900209452369768525285432460566592393222742234980183582142944260045891829198585010310973807182976631382988923617249273378832051096145512034161991098536134888030190013178442682750366998326382774733196766756785107448539084237693559589833163029060965369537322946056716486899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26480926037090888776293185311504230309727497147394971109667043582764456578199779583270242156982946448727903795431468002435593588038921383882098587158520564619755127842901586233115334290461257890471160823083156539167649043759632154025831896926352488739859298269441692553258225469704403287569875729706126957760043090763939698036320986638933709683643521971239715277547640633443273014504241615512916060977283232794092526046251413471861016568110336385345331316815461190181013700323865303374764688546618659660288552417663231904373314556412394616162737520677699174483952146297117848953028778761457076959135678030943994432957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23859451405299214424265663746146209832002086263947998573679807964107632088146050215758758017879935325568085783819955789048994628648590897219267129753819347178097739055277543362402326689050342471670754797044378879703342789584219371231474030730006115983090911172627240284541995639714920415301376174111090675637741725087132589710351962461672969418227826887067857801456763404530482574744931477308432108927045701746274610070971963354435920571615066530807351077739942613532332779156356684092116788755404659900001942701643261893820513194844388238861884242526310880316126067928387617747520022514881271231863987548643204337593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19741089665092395267611976131259452044813454268768804417029328563441825213508781374813970278683062959136778426664068172755198056276427248661842922530535295086241895325789775133130081605414752791903130913234237211101931542723239567368890049825917871450198853585441021380583418177463067127311462557020808237497280750042324772309359821561135822990143754637980534136517283335989452141263056055969184853521414084462491929818462957370525721427725344689480949433972686441077408820747553899927044110792121581005453276218374962764253201572124152649358561208179607262003342145585375947776200285131314183571634221520674641654459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26709936042365443777795880861980192796679843833915856933744222231015832892640061953294277385777537318628203657017480042538152868557424593242505062147333360410980781464228691290737625271776730783258791369313950821499475800374427232187689378750134413788286233927792496117344107851072936568857589130574352467849819096783683600328414852710963421532623306539913010773217193689544343372630107341167545056773427969126904058824233298127359242616073055710700934424792018278162269361597857639456578825240349992361939301176224504131087849861041474750792994605467421835076711441061254410469402791153565110665146995650643798355179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23963881784633990591212523189136571249605184214318048048691889176699952581980606209542730576520623351452591822574852282393139932526018518523519532313011552697549420847694634653569632461570047003421801080758487105373642545829000960070435223983598654953117827822682608088920326712983788793529818186691126506113770988421614191024633732566531519091423400290550813679008483694428036915241339085133797829294013849144213566691120852800464654803167906657610144441661250615157949635654632325365286235511867355977266942338647538127240526634180737566210248392902725253434841190724030611243562133863398033859756557559266877275853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23539731340565181643481564960880073030941992128712886695725204000991119435199103097643481740825380752749809133297451989176736232202871003308012498314174621516740407040259258699908844695925411057044808309555204725613731770874621503538394540536994294473314389762775789379864143694661623184891905133154520045862880231959779126687027995211480043272053227311089942055074539545157770099545570701663218704289143941123667337125599795397412623781262741610892909594375681917377000529051897653628547949659573020896941863714960989789521033105095781005869426945648850306875498754363547785741635971097537749867899536494348232213637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25857585541223931039738879805462921319338202732706967768560045800858378414716852685016455072984367398400828086836680407777882708362887374380225664358158797840836938792442566979126857827117173252219184653501073342127600399868984253403431654043000411766268806659122354690845553544058735101270852083472685340316678010024036349111230835238900681564505058105741715932797923622146957028313530871984066127197284924847329531940583237914979736094112569245323939294393876575350472458898506242489153531057811969942747064601733982377772773881272708234590015606336776834715412348401697312349546498191456822230834659321385130523173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27535375289668488067160706347418659687229260666340785218446824337752025695770396495410569454908046525781716512262929987907233128035912017823360766645168900640317523767030395290691126032409456693391168310737921331935812155765282489558273721839253805577730100483667421908711023957237134848375751410021268652826984882727417506869483566693107580781732647751596969282440285802030530441203754651109085891598525995073512711398984818007822270838164733159782698654231825405881242071631207286408132965274172192963797996171415613560537512423571731119097708743536557517389866720479209238486763246835285252194649624795204010330399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26190388446674645645918285226079766244102063779933157162937147596507372070393732698987205228290736436728482162582841039816731719191398877226415144137798265909002457446138021618365307977181911264633096224611630771683835425408382664929168041390045114656150436873898627675627368475670427521698595354505844445008394723816768132997843380116639184926522030298984909908628718486598777016506289361349685752407377014308007582758790231363573381623470493412350890335750953808448072559418395703742652033868336106729305320732951383284548625387453686688074612419352645041930314259627861817759537201939793452515846886444810480326977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24973017072963770748724618139156535097255400643866417085510896215441960414903720259799038974955011073878506463293842463223211866227311603194627149847121239633975211423410372156654390862806799561763989435531911012212120617057078596789268874918125913203743173644592290736116715147598874762144519294313170025788535173453769576095152786831358073126510609431649933893210492013172365200968169411812544527108831876727434778103018856112224186793135266207426911119097783984256973123953077363917237528308298936011008539835173406459200498461008558766928602104485341602018472094011068885148115764030853800499339803135527984609193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22864815429790784450114681932454237023928405590422925637368073257024503848072936776102579291980551946473799279201064552949230336031502257255993052497497761361831446359341525987733236227263048724824633201977501790205530701963990889165282823848752773614269567292469931363531291360682628616955458015034460245678154032090058571736728515350888760192985408320151292685702592647649076484288309482466291660856205052424699669370408020597398922545104502670673086631941876177140634280097137206865162702474727308269995393965465142612544706975592998788454967777027423109445167859973313783141255877504180569015909285774032979020419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23588804351161854708668973770806807696704367674759227107004595907136303717199882172115026539734240045586335780307083116510951398026026047071820888713283410439621305030378102261241974770411970441028801827279200291707273224742620042559293280081692165488720635332042873114992778318428260554993321263527929596155698452545316647796875096589067950661395148586764186569471105901642696233115092280422992230270458553189149425392821983548589810409346628971184785751581891227869364299922156854827685528448468532796124564627880421282195051826404074884158791847010306621017277044521301719472365941408716573797469525279513414947521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29572779481829658979824083703101307748666222834007059150185164076267871651117544082247942454601404769807827152178422316660285415717174578877547901573900649565037214518742590486231972137327565534813878677251977005552640236571367840905280126283913920488105084231521100230267249061966060134197117305273696811523128468318895195936496447755425915077395570287467938900322123599216733041721820340140228299684036051539975955651609637175218935595689854637098108823317324609825164982419583430557824192015970199110737309935216534177503532683518746989810662711184163536223747325499868374162552227586031427989442123368309782746691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27535375289668488067160706347418659687229260666340785218446824337752025695770396495410569454908046525781716512262929987907233128035912017823360766645168900640317523767030395290691126032409456693391168310737921331935812155765282489558273721839253805577730100483667421908711023957237134848375751410021268652826984882727417506869483566693107580781732647751596969282440285802030530441203754651109085891598525995073512711398984818007822270838164733159782698654231825405881242071631207286408132965274172192963797996171415613560537512423571731119097708743536557517389866720479209238486763246835285252194649624795204010330399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21512492123590059546715468937901943260233861138239232038344049866467590040571638920318390867005125729582215677793005577810244990662897777614339376853011172802555715378950288258850482702470199270811828141111627724261352125656267827515982277809757128496235128849340995580672466265647314723254442228985687755679351528463847630050188532097079473120199539029125603354016190823207452038418946705051343277954732553251067131915653248549718998114299236970317953102425175507426800456212347337917570658283066621228385210923908727768411317830072066058683728532144727246092490981671501164492659418193669991412477321386270619581009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29020552472306857674064310827094360766404944502751013295473367768018952798793316199229899043625087913726279333486381037711970032364705030471129786300803688289138238992926543019464885824604019229617290179541415297818044017658640338039159214808239084157444169007584582578528388346974860996781306912581229793370394569905329946163526709655118590062496554069683262614650593100650943189354853042421987987518560990539891273538556977760739844397187494635167556561572765403600798631232504730259949923039658255328344462829642015264298464057212086864975590169225629358555817118339543307251539991964910361906631974286287417362849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24437161329460725901499024570335253736945675297082946731815982042754589593568917873909900306504680375661725793566436868684584196885515568276618947940603284882589856061581857215539640606668358068966116096656594091298596706311176868383995726845743201900156176973811562409924823484829323314226800658996788698887301204985042704436708650869540350024199635924780113509357686761552080473821434505689539725089795453793194918234572337817113865892285825754267410264786652922740706240364070712525784462381921462287158930455700671474365481105131665435468068419675953646823788348680618831593794866908667614723825328340834035822607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24295166876153760724480154775110474960233829895922200335542997273904856662056894576859318282201395626026727320540740737949335085653288301875866591603802323179509674921351377894939546455741088916132243948127085019644420317386734830172929540948739601594459710799515021790687437431922136801641765743271411727202373172527502077256555543163458596641326059723824885566455517634405702675536085230194849445891441454854489640685290362278258615010935279371328932326377652721396264799894384929066552544159676010431492994114431119824594199466356241596440183936900406391893325234450172419745676796444779293101338513124994576421791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22721333916329661154120904413842904281113364625519739768705126577110988358141555683548713947103199106826712914098446100672983269426268864693450047802744297821512364831390621945725900645203547881745856574770222196896056413875132175653604092366854127525868514037131286758100717065092727739208778532841034096336056012208737063452885472602198059480695698234204028007264721275734471502927322547792014493064417026698897257975690464695448831193772066428093482179925909608439923037784049749683859803776645511163532766138582799937977548810945963627407168492138541807311947335106364356845603538114283380876306083536436306337613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24908137999910859315170943823657027776322664509116377967187743989958397108293685997043974185491424238342460505054660729827252374105031856638681709151656481116281212370541800396501415870391868372864820819361024583249765858601446341377213567144839891397791462525592214566093699282774408251976950221795289552772845245715026047304973960971781253587269001567074597365804428714202241956487361888088106927723120632094233690223150052493672828824211077659771393617255586471887656914689215623758115439905937040395021032845884245074118771347674759895583300351016117701663772601008573903480682278365900729869939584880010938991039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22932036326959456636861101540028643561282063666975586329884768593757594389305432783339987083308816383077009230719725481053106765318500169213617563544495433426597709606244073067599312474000929304294549474383312571978467086104015719868821712277372124575706064513650551406951021114439604690093639528459773253692692381803241571318458217790975770710177694578015530005901933688858963157066033636899760468200931354053962307428252697832110890391144542995764594957834050124510869831698599256411449283681241600231343842163040679669308198368001498697573204380103471843605250944017167648057191314541029146880805074346104130246669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28592065228832420730520032467742363882167283985125806017147205437268776652611414276745106351577766522965024669069760115088975966022929970772287807357241853152645973605482764540435959473098673330703431963916139946970452498582375767427480625992079484496059656914516220905811523137298036744255583148312851288722915471330727853156672728616222983133562171845785797487331762086996951559137393532161021936881621359030924107523361694908330688557624859103515787813692865310539487923914103423071338476669026651809135417100360471846518101317510395133571314863630742007881904336171549016437475850901798015040789451690479288222133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24705133686413674607423631636535645647674455388722618466384402212718932557201674930326081438623352872492883187852794383116587935759676797560462832152463698618118505302618617696315380878475103650472380598265652388877232952618201420218433507400075276805828438385437139615886962940323103732889717372706953798898519916204895095217747384937129891452637650496206797560333293388970541607286200576252676734824025885654674305433956968981324634455680713675420863751057583926877299131730918786418315892086376808482222702454277172106840573155432763406958353664277013367967585667635638064144969163284208915742537882532447154206731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29970712482640263982579779956158231770576936883962362858959266445032230660088158898405693153865917891687054861709414030990486677930375592248719664320856122789812924341253577732021241503966483690104164052635481345035200904928849741861289852574985273863824451098591233492253355450125088895198254546514123556454296731454996010476020468045085455736998980266588571448676105403469009289702407751926171928404953563780204795505908775214385126021438355727741002678860047005559641523089760231495765712931060697132569300834061275478977180302269026024509573920322336305840872634790391015720744235345551159181863797475963386167241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28985582667172943513355661084171958110661139314639043031035376743705831165010685395249158135807981847451657713767990561267987128300129856509780796037994585330787898923906798519762950013907261751818460744643596789446096611365566609254754639922653558692864408983400546923633792613305249800333164152279042666822239245731706044006922211656967260172620964571268856953985840733339205851443908422213454863768300422066114958964348753184582337169425991754386005189139717732532061633278006526993821901206777543145351523337535720504573914317261007867980741873518301176678762611511435644804956686058900296355552246569183008848389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26977217289042575077530996289685492711088761360055315992745573954645430089249445365416063259290738059268092825246780757717771894004724045319231159223556737329007761141052570046960131354590953962848290806307415898717199022656918854462708045759279865875145864334774381455221787561004754167582463157845767899628343381655313220283361559392365621414222314678898020992112819256057409556654344922379975435419868245114825032259549590363850910255404853721762685620629203912603150243410044818641710489475901059630006982114851123468959537120457579613782717356526912082773972241401892441966664297827235697950891766468898573344557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21407711626954322577915239211714735644979239334683167903417696586539162525472408087257779299834468764571714873041557904027024789140132631080876542080049975803134692567266496019466910189100057914030999577307975629213906376076656896922901897709120291985107993141419904849103595612221356185208842606545480283266670844834303318418643637676715574391923113140450128359859404459232989196947486205206378955211786513404166271343864026084658776563134066658769890674468653875303698447664858204783561288338028049958404284281958777271161557672095087794885508459840167352598948962684311149368373680083480083978397495750706436240397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27179587034740566406067663036370036335245060754022584914436267021342671357984966048187275684853510197844865447868686684080848095995361332805160843532020407519167463680440026880602035339683436597846364634951550323058246725888370738769696598405131281176782851488788915778714707811816382648787653807988578336856447394169823971188269947146518460761481248532455338546776162967327976915520014024788612978505366062045700784126522564641021212604140158010380087239007237937686244552814959288328920698340595955968968291049763720192555658101979069175355705550653502504974720323828645092696919390215216059191688615004548884525943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25384733927135800169270704479485293118037162524850933866748846404414632513120521664516095253502068396626808258139140134648743115556438635870248508185197154334034952350254656043832869846605756405425657717683267324502267317716214560365502777623652118140181671918214221502453647828671290889844795430165149743469205975907430087999444198072512464153944251751106669339298439071881170974178082938744570931833349665535300585812520033883234100504239545143036449712420656475130513889697754211303506691575825795449069136574482390129102885653257775161233963882746635363254836884374126431022288742695449213651554646803618550726251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24199746645248302976478435587868522402623121460381812175561662216682600034306157792821585006854015505012091544506558448877013223690339405168915935787822351035889194713198596568793549543377473213387717944777630642806611418111447254229355457554818820376875257607862737868571986501766848542361444005041049433576454576996112370600608314374723725650499170997019538224214977953428307268031094473760626357190701763301418199938149037351058261981962212665945039155563184375478868531907708838614631479659735770786401999455954057467644478096531737956585893147494572913853564599017450414310891868031379531461725961650541492123807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23994856972000370831079524435329855657359874473520088658261047425278278519919233089097080980761729441012069260161783164137868998023651849251176166626290671106136044044469413792255439315060684584601585498288761526827686747856522016685259877339305744747418133310225150612867358420936428104889940864388526064019734025321737026417162279835580775556129169829589300033827913569575399244671756119607278576658563515909982048261864778707836619833579549314530584946363150871671961405606810089439312243117737690398012379940969582661035528950942884858209626059287222646399948676372691375999083988654096108490712330720894826177573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24692423578410549358350389168447588914907002497359671131033322811089397049474591352644461778343479737741817875372588402736015505294028995651430003288303670441143177311686280838061357548073080044243231222503328460926238042991033019681122443407867643729821656845743147926948355004849005455271667004002431810377542489142504547110920709230619160007864334032943609360498456752796338705864040082695147740836016867771858355483806434192497711089940586527705717481782185286574119054038411736485077554777932883223850604144378134842187271061335662504568123530591407139524720157009442554821087936516468689654653258753453074105673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29358589121695688009248672415553463425312265550745103886351764570770375813436422290711630060401686575512075149963456554526628519658667975748703140563758670626968752853733142483806602082161048728048748532308093059565270058386229718276086926841076841604985376459968937110092941476298951469264954863210942874060166114480295661273269022968433166311265041473557903963485788618548811690684353841625365035051361311121235597047979449733211299955162994626236296623411594710840182238618261763563255589579010325992515069278949550010192850285665885993312667794768351226589518873055454243004867098272513874607222105585352519135691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21396371110990235499053577656068334431987317805659724765183657841645537285497626970217817920171895336846891653456977830433433813046567001173911647146753446783395443460310688493528514155723048346181841319760261036808301418576029800601105785011816387307951466552789687267421687631229240148200834370148797902779869152651481206063117279378616110193927318833241460042299570228126124421250655586479526664773398580786962814288871715180323719967985545676449247107232475119233540945498586385650618144795962052016840983728941026073274466250103612823731395514457246352669878390863856979715701726582567154088104018917639080956011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22458816993743652012258269450086492111526984152220521761101032850848710073613046996219040845850855584998311421024171502418716495004629165403781461199500367859624209554593714723394617243404923560359572314174848734484862049594619031890145439888663473768495293451277614403388294082333059658907199658151485038053362994594529581246586863806348145575793104911136894704455283509529367039086722140570889276958618727456552846615105094025057792281035440898097226657444913987339298692413227564542422702860040406291095695914320105025460054626787305925090513403612599974898509498531579050147812048952136405113088030247521768004801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21973382804346123994983635418874262399286135487173675832204810501588707692968365775159169372839302535205670370827884844703572210346164666087621246462229850257534622907730983087389317942712009672205174613759486890967655274156718958130281812838036271900600554968465001981463905865630739949301643683491875382442104195982164899404336103027177463286901373383018330978786665456182273825047602116892872089551727827753451937112598849605395717830905177112308796391852012673194540958464140333221580799762014968408989873885479603169074091694080604346718192432285433108348280082620291738335418636051196465765213730104949748396493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26177349219272037576796492540773067507824740073081163940312657650220696902154929872717268794255391540007013758990871854768918010462116862775241184466164882806365758917478153462658167104495764752683538262739141341097598721679584948232690434472206880194124514671106366346985774302831033239536691005782824280090993082551554449236983293001162103444493343706972344752471213664984519163036798236703196326096544138225699702763004271671053032686489962359206542288374033712134645318470817435625536151287704299026840259137219351248289318487781116567663730689834076550952274534968715951716044091060815913653329168907085802918927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24060140282996404015561933659776204056760256341983242078443741181191641802816092462169442363509116682094298939001503334729232473865505486594292571786373884033470043429701026768142916156917657321037409339704332191577845976880393439594102028740403543698895829665847855852587965520890130544941843630078799265382166212907367630270365024051260016447367176600875046680813173093305006684797658744865041692325776092658824456340181421802542104358767950466057068119588623643455066406517759183899860129638303371789891361036308728712542507443047343324486670883112450987910641288870674274575732531362064963345414321098517380983251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25166617657845101466899009517897978823709945369312245646778688750688273195277933319126882960161027044230204177796279345470137549077140022453321840284679415524595569126784986642428750343301411919625997831094856714094428259697817468411206837269528378261163320858218390403196085015036722545088596525671115532391210929519001860003038936780459113601566190765558540220471492610049431155989617087799263257744357555097331845802586210366526869308220150873925618841353787773230331602130118734764975210505987040139565043676039003821199475217923835297723208727917529062910663794627587278764050590794733279166561552365427043660351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24528106931634587372724109716306537999154806933344808901716628543354093341793468498037439910430882823363919165616649688874530271888800320504177958875640806385446849333699387538870277871669433524808160251360567788330858720004540417536738435028328205778404163254899708906748835903907031473999703514958694359112026880824920365637304204820143726438688209903245207220184532359540471175700184726536989681002014979005841697830697619110553055905371388940374416624557992928048723587383878149546049906127000330545417333743336432923563586173484382054470349691092726341900504511579471071445937605587602912878750956975908734050523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25523850914565590647702191275951470857771032028958683768664793629493676144203408365815505777480337652525125511682143710757994270796875535466497212304410127980080080179242107886368246499519109947056045521536739711411885956342782862330643099482978496421892262456607060351054947923546317348695810598716197619787440061857227516846025486012663080729080836060689603475004328496870210028119212091658541152826051298170882547537987376739048522573482424294747395391404906431429478673284136077601467975192838856768547483474058217379403282409571664879736736383594117062150089073835805314969417602113562898125877028989422423723257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30928761381327817159487839099239892636136469708354049790603141405483456212277209497678466619284916501052662006000143629749436707935667510446849438837727224886205754530648833022402130733801411874858763860105388605853911679484745273339743386090374890866337833464308202701552459032664763253232229919679014606306804310404024029168152933175087043245687646086848570677083227390269787123532899920204317111141458934387650727702888868960460504860869798886614011155032045474207290925520912256808409628698607928074495331376520078570922139756903296505529477099870825949081097015252270983764353498827634257852966911826176158667699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24285930273586715715239279756818432868870256628364366242696803065732889988389664117584565327471799738668506983975721830781636285136052550690229504700476227467448866121642809342651954809563780794313452918195973771648765810364238248052700846007196288297675034762760415424401702459609661301769093836205244256500365186879070705112809335003501867078923383324545035231173202357616267526131869723664900382482070745299804394650007761797277952927428000898475641350466015188838614884655703600205040995856475601871032370752250197706769185215181644448040437683932822031205606369945552421946024324203922656708004215387073268043907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21893951163996931120323268836798299970132271980908683477032123648756556298550163484112494660443130444281570426970818498089053508027121755363796440794177939332743583275020059772761348342403912134491157820157342592912141572051430978365048130835456576539767293226580189424523466249570128140291837720734279512917410578028841380044588197139007074510844592908332947436078411744039668780663230244644056614813176286652677423225510904542304249669984821934907920286716579307774288110725085988448101536251725237544392503573613861916009973493322812430165051984311434690209566780278438352279667635048264747689467057320700097008971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24575994807948203326111522480901821676164668341184030271830076863649377348670554708025733870044146376777043453794771220240105428975584526019139916337332512338450554434304720691200386752984371981570994249033595590604645062371336376739435388662055770888696146974427883248417362542777276807404390498880005384412700233125942242812892772528325670207878876292425183514350491407472568325947635652661737132617603589100746121018715893533665194646057422601476449754996331346226657090002169825172110171653762995162865386749678933827756281472245777662435660809937713447891816869266058165739248340655054772754463630874809851240031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24098161985227081179558446168383674779205532755316411829258259184254714771192444784939693566349290490398188249007162653329687209345489155625834158065286754516961084155988301946655363165923472489488805794283887976975232018594917152974313191690868731189775729433450009128333973552262857382476328164121210931660727794632889383333774416013204953002276864706212690617394327894365921088247794965278585524434347894786575008551291065625786872573986230419450651643967485035167966829610512536217104113971797221400852488847870798877350970356888288945478168214926574464675648086748786792974294640226193452095364249735792432744367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24078388132372531632918428140999853330412356856984160144284528424488311741934522276564342763587645068098894167165402430929044403643803232239333564358483013453467940758904141591691902808776923804193776439555811908881715456761042929256437587171457944065531410912065536989770789942394114225857404584110485699945262633202685431501833503709214695053275906342060538426456025508998037962271130182829705901875798110382264568023275862105976572120978056110848373813011370088175445729348282463551056721565403772337121986417086590995021069801212716523400193643886417522697117536757624423394480673730481001940262974024136691763949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24855963161823936963341713050525987088314400113358929166564450800978236605825009308003757840908535126876893169821542279311367866290532383778764234511243320173554247393440745941646249578299912443219892958238756110055688140800577403048063480230940006613823877906724142456050359430401059442423791239124154464586016967667433019709777476298196143174922988781153382801199156397137546071677231183843088036113244495337697997963417803903006112862415587124147342612682810706989750968249902123661432426817767928670983209284334110752166355542010107576350076078159342026088576333447763535055597992019630873880524784227422480586681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25808953199581476737575023647316797730151415941572384105027862590179229250230121937528214910252869119851607270693816945401584472734651087646230876634583453255504123988107048016075016585959442444237837318100600542226458410315543564025106215713759170045337871259022938537631888796690596803126554820585659222860815994087902118724969973115603401387543753906517733426196531192020613419972798108284682544948704048841494430448409232088506302950158561217302263218731609979069875609385440534584628689965501068624984698458533010592632534716815292190538935109892907076564786875827462731312697440549139931451651403482780619253059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31360855434257012244996664157613075948866872321427017673657234658146356100677072952959981178145139143634643769925463889593730123268673288608688402819315597217278235985286415004943821795918440724886903412531511706499174437477442597618132270910295098726911506756561985672301405284495057072493312618013074451111621427014300226990957050802485078888576705499806487642677245316051944716028040181028534133624581619189990115403947639023231381288604860816364479549227752508695406956716180105951151226768629656856844144217976768485461935953581225762459423860356421179410738157006408832112197250692368784831982078851709001256929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26352587869423430189888871139428320981614990112189772089332309804143852442549625688379190446053063344865569164747513463283610152634453506251652674403329400027184454049896103986269329587577793060322037806737242641360933090746588457008131329789546515336322941338755734396528182418202726403753566583801253921629574558330708485655987732199927504537223828503599715925356167212070687997051124754924191650820734754053876418070105808702754037341169410103900444784894335705769333686257467600563637268732006741680639449232369506469340531063501258456363783139886598673139654726394192344444715139810127488927407691769330148996479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28887856441638235768745510608095052436045423196400184143098416171468248666525863628702943787637544052045606619094740879882437941065840793877690416600614940408054879772777997689407886697819367174446829045759535872698272018012349189177869448331599298997882675229736787670616104741123271368204219772296826663903110414764399393929415685268566416913726628723413988253283718078935220124084157886534744499080237794222835502695528226100144503088190018393437128537577785301930889743682048326846975304839081248003480091592878862687672329407236918140028636759547874465538559935725696186725929038782498632495074553855071938457387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23246508271107735526047385375073956252497185978641972584402580418818100314408689382667462063834172815811909209647631286415663928844986686527178399032977595312420577888519616982126397542808014685410892331148228352619826404675383115262505120105634631633628850542517176113551106077719460492474001854768795130340407302580742285154992989261072671256168000192774464193119762119701290271129197332113879288106975543528562338997157107817752550927550609152154359070779134292187258512947439010114566115922601591509816712401574132460469573116551363904844234731124359748710942875577165049679248174897485738631482003411564456533881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "24214451612794263670883722655848027624937924106834089258054999634628128544848244597098634266304783349924736225806114264115235783544088159453389196940987104633454731846254833620389833003374122107851744048460984568711190572506725863484502990053831938728201920042459559908835921686292858433668966844970936664059432414724039931047967688803176310876034633044599932694911876566071279807381455908061767191668755985209789679018058750818011191866830711879733799375789423585570134957338894631582914201616277290276869373183131171840209182866798774981691332606743144055981885212446387123082266495680792416287780004359528003092507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20708362799989051971276875294044811805205325749970759354344983684937802204531710462129398907869885062559595872125547731058962764036182309616260959525362968819377746238212680181290876396798171040529016222888436572463848695925195899337522634138807639711336518620672836534767094698276251223638145658324566220292420042894056611478167017501981591333459559160143184601260841499724876103615835249032243898851296120668100358389150172611318236043752341550811075238164823741137280106181397819501848989868089553122687569100307065216351585004467632029257558076923023752137138988100965797751296558768499008475154088430409262569479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23535282447328904199750288914246581554825456115322696406468407252729720621008899442236401298911681123030770208389343377888680735037969661059876473417185071889409874554637554127185984741828917873843434906103583266376652786824088724734309244489041386216880589309172961807694048281340019193189051628080861987579755132434873603539982218787642272264722172992004763444032012202475331660001047703626106911438000998266845313915756174690130189238784653612755501572345079364749273044780737153588527958406242463703477168171600471800305916287764771124565146929732628814364471532692136905381485195919000667426239581108407983081373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30591883225251573920722332093989931312412065951645382580591752028109960086879096315691464631428233921289900304713080101000902114308700211673958593634865381783700914183167119036100957110349357024260095558048119775254565429201444086061262899737330440718767872965500665576629600542047611960557756971760516384735132056102142987538512196512471849076304197638874721992575652674302363539178015667493680290000113587830154615241556209769735818358215205161157157319797618090969466562255505357849625436535048227704619590157311967077941137936678879229512643802700424454287396693315808397962560633440621513564933825398785781431669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "16252378683584222821719358628191669070606623806749281591762299266759843439917027672854551728773310390895140914480264573714871751428262871321958534386890982704593370279492620987115509775185494056943867957134909776224896456609454864975001563443009914766467215057984091705490036029394595370073294790316066252662826572808665102327942292801014856181234123526875683562835949675640276219658223650613848854737772168136752956816224712233532898360540668337315159209455116802475469667240730520573292044050445092997802820132689323366085386129318532453310269862681080299123685327581231353859265247288540482196102575081555931330809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21536829907342178033580890003532409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22529617923473930459883692716162650", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24453598425802107000277142229924724049901896194906348146038844936313935953491589267870850714862907064389745908193761855270246066861377679067038545027513523245935444422333617021361096061312909202982247060092141412411170696156431789536544177011871833116258863803774512111176811592266358437964964612405532468099607758508077650652032698850733177877962618515066644609699893882426803556466887218019450879040517240720142149252979205621531828898690505362182763928941625125539918161777681481023193828975159769804620961302786306961383710471566611152877887330811390407436034832039006656157353713166554043164907506635428973679419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24635723052503705702853554994080236057525213003351680498168709943628042570149933462548734711110854908141980251305163448496261528210277550311638094332254843279096467598652956236833157442823679545412634555127079108320322635089894344262427434098425824058652252439626071394333101130401374125188438991371292441400180427376715342372757054066596411480411396328392973421751705521556192226315206834607298489384154353448156108097263822074778565162405046182954832524065969820368983060086509337077068612217048485937823752810711129859748048503007281496634673736035960372315446391265654731342752879784794905130855840339633078602561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4417636106389519470868218362596044458099447337694546457667243676839829496650759674192363042130131925818040610334646847209172475475077070876316295141187799579366077129240140373777778312124507714964461621700497709749760981052210565947406447199630640054641774908470785544259895143631764551495295527194311669072887567763958524133736295893637984877473784958899810225537951959290628077370376234421503347863571654711806288030128545560628994930220360729417212723293427794511658547233842582448974514183813128631375506689886170949919807068387544623080249850941940028708240347265531699500287673943615968327088222399919007648376328970246525043834953208992685566482904987767352946068332184996940759617017254087404620457033304160381481716220021282389768618946196860228539808933076059158829061064811688379258128052164781887256461064249274703357358189596061264304136614816138964909619957446222659795891386344337019022881835520533858088363203", + "exponent": "49729" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4669118066621695774166455648046023857419463301669197898674872201274345460118780016840392136402220459445225379130669716342995024324863267936542148718077138167569159956580472907897023055851184227880753012156012429215415957225826990758967733532319609552743813918907026380599079207276879713483628878183552546620994623694033580211330186636109999578307017168170528561336730928598534872701309450387975742350250898061074629137798423576745982231516301175823661503403335630849659331619008402778840695673687126929117017555328873268646216377501414613110746454645345288153292012623411820055994576461695291774580162825567414709606670872661017389242237098309828698503242054828203864063316147675981706835920668206306161388644025061537147331279069456238833956954130369205270218216186274600508304148003381734485546361843595111224461591984770467134548017634118305222241776260913291273342149066086838943074013917069843208372336240883729412282951", + "exponent": "52355" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25483942950904035257559527823705166", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "27460631634557969624014663209353614516502711080116071187223788148922905281393421238700763241863073380419940275748913787254680534548873098456271402482026072621876920854988330178054309078838748246055874044734041772047372639506187015313432585730550242731774763407317437365964622878779009306527608586145968860912869116228008747138957800084115831241906375772443111887541984990515411180407291419091863541496260853305214611445420148582623526649974284931958972654490109720394361972723903189793666297887302188537842321206509275477633384309767509334855822566433243260227615329573023545495997523742875627431302215999232356797101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25852805948550791621256992054818370669721757119576108419746772529557501663045379822210118194236627417575391811578358636258862540270276791655596968249805962863022076052662467025426638081173332655937722393471977425556774086107218506627249253273826811294934118174755295241667590962897547223106198583564969656012021078952527877355170566283715405782879406128119704962833528629432745734403844144994812102137530555708552947430073169387731116377369178581822142401934157262570723334080621002302847999792105534386706252535190717996697186022136640492061397634520709709150401153060760062233429539283680218491460842981693298234367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "30865672650729869623521867877985105611434715005259422095909148748617477168081460312083399983299912943238492951261417998410214810850184958797181286753732627305676853064126162650650911017672284137362805982274244811919779459185024816262059812087731008843127503475914821378178892584865551230069617487846457927091274243640698521041014403353347679835923939743915670477366240367444913748197945033498553594200708398351644467270451281703252312340141638065316253454425460083460599539264127417273921181054218056611822633993628121499538318600550064411078415189616312161171418576214846580942575039808088799297868557549644265785179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20872749276286716206155590515591364", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23895760492226708912252512062444764", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23627859087201736113378244227938091", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23652588052828391099587335498144150", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23770902921086190560410440815788289", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22162777634481828864336959189767935", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23926269931471484665941617229593038", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24106180351610358367936868576690843", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21563298648528249487876461873744811", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23392293546694647927827054461506214", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21590223409215595952384112067667849", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23033692165927394123280476522003217", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22527979586461876386934969946657982", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23744689271398901930443286935537872", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23260683248167918219150520277537832", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23856167527051874698813865532267058", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22068668671050656044282523019957648", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22707745159692822311735339242954679", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20831102539096944769402804614104929", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22108264335614318851451739796991319", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21134328484340166966805957713686151", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22808267080697019495318086710813499", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21554017651496410983885449354996865", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23476019381058530174823727880836984", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21806048554381788458889517768123478", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23124453215207853982182360962384212128335517353185909592731858674292761520631374966777973678628749802097980191741955262927924464049486709912556288314069620286598625910591096235088375021922758462222588141200191590168918575901679444570310499462231707658239461713987883815180165285225165636295409281622644119035698699182682757347459970480739867163471989530454235039630204141619988877751538605256343628931416713254802620868195986658803544104772363156005354418600820101610218591839485125547352688014476852630783873991083242640350516026351000842992857890937853040131792853972698193573086044829702810885700156569409605300779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24516605545768105994184782001369750168865210405862736797629550959116354601154169780516878413935852390179738380435436012776987013447593595662418239946550994757692960311181514941947529237221383761826771861046829772306928909386286073089757496324972382351852063386845542526150764247273495114677957429180425476611551076275513693053768284355971170119242883602742390355311439489206841851424922129032690414262596741894398098022051890163234770358705761197879287376893329440373859610552996332238718875697200356206065392488068683371409038883065529112965475740473594477557295762808435305765917611207275729989981101162293709262897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21971500385137255669128366210237239374943933705308226481284883988488874135199934784966417332802728989728948103858824400140057824161158350490847193092117854527856705991612820275947636868501396081345202106491530509587072820190720799257840209093473949526587515542517659722233442410187283307977475429340768827845653853223319159598810786724555288425158431875831460500391750466059182733445840836239958161531262065065990782394481380002879737250612754784364354590223238013289196043767722891831583376210986452748545358037396657353963906457016894345496215014025151471974590733240848201815027159993746149260725971688250531966741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27520444708086615972906273176591181495145399681282005456341775897568372529853263014700557928550302218614240664305986745137025752005121930539823554293603378361592632712958446078325378602875302375192593368749497977161729948126131235109082844687813405751165137362612457899640269530342867498465628233328829459520266339290066493636156080503828994758875241745298049641323520874978731196190805493610302837395681880617280834592215004609989783021077349026038146260006832294919150544263613739842343779222656599432913973076882649462078409201280925048013037791688075078978835524711893525912494332023120528078552930622768327023247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23867561082059310269250599875195651980787359039992093568201431142341405815526159342865578667309022554552990813611901847773360747675260153190917781830740096587657673118217914033752097600904367488120602088560970024084147350730930692053141564452973377526386090653957722695218368457779420397779547633510163677980361944128919791164959101166636944823917331786502558763174336375594738953751199151474900664670004550094889222277233488536981359027424113712388768690488991299770223137887806183183806861032832899484315934816261483379227756264401130980944237531966020551352239471248588910667880718981467953812295926114582234539661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24476427028621088178457763082326975739668353614942575121633782413678268076253975061989492246281029415657132254861697300485588887628453688005991281676846108589546522534656966221637284134533244886643750593041645206035406976064347683086894365740936236825107081598825726279953990391673964297748455341835445422422695700488949244110968614730994487805758267180217439061604285031880195944844673383828355279245829035227044002138856117958330948654071586634034270095960955576117002694873812983583879630089641721931041974778760033548194459732586492465533779795007355849394086088613739977236621737993102698144822568671262465738221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26820843651184682276624977191270029477860930551595327505060400756381990294622921554846940148895512428881804709288406278601851304228322293699316954611996796050277968314664918684629983157437633557566140283366246587019524334939760910023673014230615949462675469300115805931928992484825748697174782563770265536452852121807821114933609209751513708711318642324103455083939704474422874348083581204605544209691251808781086587743081726285967489878380673312817155350192270511690405145599695659655358058355172022129919779181816545897123273404029858967491188669823055152691021769125144610362590608130470939067536987417527143468969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "29782103805737149451365198806769003847143529961245101243713733088082200418772758489825219718650818380082714142277154865619866054420004511602751601872216621082470540408137428281798574991352534031570021361509976570650669506080122075593622262326686402737967772506975165418260655261002724074071895770599013176115802907623662369034182557836265365873894101403206471993583440076893552700042900258156713876436810484599414218814205172671372385897771669525183874762396700715491420780168099563438079524674154099607409963251903984765877183992722032529095520852713425378967372663122709297548950705230514609951753452257529882272479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4171662186870594934370090179676740345222588228189378918105048696704674310647459027482237672786617181895131153943174961133345968757198400773016320800519851485538815648035097037884937007420230680531993049771230010781151062841255687619057928517637604073653500456025174918652423413957143274439157981611571862659890265359340917378789442363499508600407026141690857898597436547613416224053821401528686571253789856302518150300341227805274980612503076006968921704466634368761471563835766272816477430000277591105277142178243673057046467013355511971471620649282110597732039389128975378561660137010223009994524944231856138097729504846564269711518514561316071001358252707211929302820762711054173103667331009226586156629273334416981454623414386097693922537007785223112803575546441639075331243733869992073044219654340135668940387446350214469573093249475096818932159282424361799736637565019846715962410159162288144174702269275603667094376667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4673661531112524409070529932002372585139547987626448539575325660948560368064401036849798846789774294986893650744581608026598237372260254515926950059049628646733389472419874117211464161761471752353594003991608021870821436759348990818499870336073604479415226629449986959335305602572674844729695223959124599172565898568050739942836926858027842387266023031987850593836954307997956795199953353200972056578572305775675463980947663159620683038058660724159530612352452217509042773319857873163621788781759900649475838523913252494084830638556228149025656037859158913699169527978878081089315495331720180001978677480848482533797948085256460907816702513011853150381512115441407224122583137063052363611077321332672707752102675025369131343310175525078501842815119996141928004073768574705813799266668289427230098610449058749099764215766438376227743536686147955733182737374020030252758030511033096628479816524619773523906627082439647087487527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4184587307641296819936283034894347281860130860873883522458169929696048274415654690679967038070461642889543652706021092709153467011135975701922786803425692470674074687209663440858523618594264699661205638761741183754336751528841236019738763969927284535872516188241708436268247041886048015987842301240888521857035869043670978276762327773652060397253594159636596362541440249134035362491264242800372449251150160622983213327255492472701982259273652281982503232060629887135475853481922025593648872948564507987015301742648167609678349591662079545669814139321756799752598556186001549198506830354766993110869692716481114204079380615864730520999922438919022893855956961939375457277816982711006787668828717098258693805016365514428750314285176852247719945927841813122023501944708929106707594353368653536695522593672940264390387705013538762253456090197164682238497045142588859987651025283412503326925590319931044712442518602451639508262479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5476520713989349723258363293444532486332356609393551381231939800722264452800098513290393244140649372926781318215496359345477219989585447060331538771586725264297582728616387427576029467416066783229256215160192590366291855428602204083701794529094183263003784785058487215314567372945872031423852792872475128279844568503202447495533446049571396557236287191150004991401551804344769327280504566114133120779508835306135070187913652619268917621882249000826800841009043690893153764508574537965023781598406343581696970194383586122783682450194614881245166009600070030642616702882568461024072072995538728656177688807422802986395230834100434188706627764738258961732684168813885900901913903370227288965049272156039598420169384575104526729343468055961131359437685990258935102026726798095774829947129394697992461917233192548061653758578492013663554087892250704080703609810891353434912398199010495796627175250003993549034594121145390242097701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "3465944487255920976790004407761699669216385442027035233231453139285722431786360851736163132039119942480939433037056288000204890873527450289201278536986881370956777135915012480665845451379443028658011800513467885762351204142312144932243131269971807325820833388379150117775172399255826211352314654708727890238751156246579962774825227368361285786819932110059483434593840424297850747544530558161393563355311566238118625403343623164689139099408353007422074260800841649110055389909974989469316657558288368413003982391504011196957895070175371835374061423665251387586121791495118112577812775256330921261549480318495370189756565817470474335464368270031417012609540142918374709845496343152488408969583940193313095454261556444182520500508508928460582499662036575071839887494968429580867226824489273794286331903470015830986141586348095097573189748020673893187127291664239060727522800006500116589735093260438060172544435628117741469904781", + "exponent": "42239" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "725957163448545418902245531627012043134360848778422883350901541642553849413696595634536052428058673930957755600048212409155939368536601678543935790362128419731154741248027923939681217362721238821649766126316668250942672272113623888133654748624256928892234269412570684482874264571302868199938456192701909602276370597371758566001814939873012688818970913801025404454556980270100075116623252908264150411074874772269298885148982166557446622821621381091063647874857547052388971317531272268621864863328875694092202718991836068844358662292221769558020928405826649879935313269203337636335126652587150065145541196190813339675262483397928666013461523171841792320212259180505951287468235425264250287319717854496360769985044821621427613762814049364190314808030795155882255133257516477234261457479440019089181196154890785451781324613733740457141906469983250592829775900390322956793315278834445210538851920919966549937152009049078798263248596784218444525492071502291416808238651986264027288843158188709719042362443070856680182240255260370189268626313579606622603398374787698384819341840053713347802927082715871578125719324886888001416124390915027018220292093120549048128489838953645767144052520100416527436103424288212302538518492031419672348348311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28610430137861487016972128709676868681970899830654858652947773059934055114412117208271417884422021148349624344675251200587548540299349993343512077912855423142636684316010239126083366072757422112679113594295682291904233879035660951803628063473599104111603749091532764699393274947494143231316092752261579928172239083501986478285170180756303695701338415011349277118325110152993331041949394682110061822278711169999886744680271243132759871858830697821658668310617333502724928080505697335091813111444664557023630742907661423405318351478715390835439648499329734108742127416225727180036309704078796051060189238582566448989101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21712609269818070276544504773010226841898879506501507477211017510026059679183957933476642302885718705371403754967794188614444267107842271675130487810500827855354302953188581559646008738260433957262135810773468584326417480161918372817200735307241036494400055641292503323986349252651547014770528187236724898671804866751300654858588769828631896934753509953054865075322601503179387486767018135219270488027517393003431666245409263874427986445826226808997031696517501176038431477434865926486551198728793597026451313806140737974527948525862567887146594496950594165436817646243759974255868992901238661783738242690038726609539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24604164118210248640403503598679163491033379468080319545746246144618025406172032325551098569403457032675202706454846363660588891664204835088231411611339030960974017060152913590418665478231322719139434597588177588749097727788230901873526239124836078323028178436921325788817224575666945920457178080378001341177076715033283325426022474745600275238514618315516949514181846218334504627555667967014123819174110954558421511805845585747801271632950215720414916187572923203975422689337462373154405601159320155360773358076034866700228340155481448283315666155544005914939848094414964409646538081525965337058350927102257905454753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29313578393355610941336482857262790666952535927735730443310252336889190716344530918933746413653644624348205799808792146816422953716241514564230276191295922041734517957673161884123881963432819903007414150001636572994940457411117209775620892091960872534042659600772278207735206003084975531856987827938174700374825535155401034909722226910371044009825295290261549143764482185298825451525720945555136804229989126959352233851750546550710967627888786557239906926110121241759359356588156262168946882138829412106844183517244740102798989056418975966684842537718004458132113064409429261830679770510746197543773933627755742700347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19107912531529681995838837897233753134328769259276159478943273313509674522853352689264833322076782911461677501880036325296139121064055914526102355018049844617252433121278094572751514369464190786569618060854008529065092837130267715006500337253741551590696587054241675556999038848710657491227838106848142173150135077422819323718960850065997279301546178977226170825660068452262883295398183684799308193804243987437402903872638479080753673474558676214447521265252910779225473464163658710325135391865902486268308873890149031727730444359117150443898570513929216236676337232585949042559759131608276738348991121046436962520873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24418053999867057868694578755141407871194070933678058371336721653339932775187907252290045521269253980760988328685173751490950655158683207265495880676979911145270589585901897415217338976973845544978008936948004279611489060833006367097055129518341369523780589567748459050342768846582437943318500634279645096803527664282536990074945037212120770005276972729913288549169674946168581667114826057270470655180541129588051578129328795565151356848456355904520346968267123416707084722430001686942592933771352131328464977110581421862893638040496580258043695914871345748926925002512577235113139150509128176797228969559700608291677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24019856677063942520339952559265138", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22875002479603602587731478928525833", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23235795312329191704245442023787582", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22899779889396537921655086011443087", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23757379226366003868490705279622584793130671690397180365003200889615008958561549885627848287442052215112759662556835475135576059589166014445119798873499117542817238277339299998310949277952910573630494398642938070036546841254326451388112692471558171723956429909880397613696917639992282287289878306589770998752604673210222758609946182828237250115241931809690727372206386011481275732897414689151206342452939475327961144616567483641461376528930773709346176554933948504352808194474728722310813619298212098501244247752883957639539714386280410475872546761320258848527050824286262315783456832814736053417696541939609440038993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26676337383870744140487360067615092908013169790987682735095375004990396082628290022079464036783695516480891642088125238249332096271712855638135320247964743324230804484426899874764099679012691915999908830590488506384149240137316286118620879461124350304630261156645571926701329992220542299969410633603214555331916382189378326110422385360461370019889037681735851383813479229005629483265620138250182872929017563019200919281137821770540534848340487231559865156135592432780150619210084598526153916595930308827767731389152930743433214053081160010115798081379785188003386433416632162079332913262693552272282495050813709143039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "32224748359679401549348079893608528857199428869296463553689883375092996465307417563209064984854587779339248301564560821147482828856203486106768316886700952388006507540411448342945307511636530134954231283899106619166782403091719356993664890952487648000367887035980138636391537153504034359561875656500349629140599816033678939365345339253373916791949247045744276672136674383004609888560821472296235084197823987603601193636434548914106293694778784668962285782486261273708575585910188694396463508163375673815664604093808174187243002230288634079100484912940255314025332756055948252841617152073017869125486278158100254151247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27299896449152597919240593708693903860693163682023134769699987828390181186387425155694020974508466578919931932499785590924914335800591200655736423626157443282328959620009655383458322347329473983190425893322653543164195840842827379973714222918017323111805755709770209418878617174843878263048418498200009697597327255697689115963604996010003410012230133669598508134431499717723097118777487707854404905867416868539468013360725954206777914175121184358962042771629619164047439024290287969956856087535997965294179621865065625100520665377440141598050025774700700024919043393013936508495045130655129794817192436597512227825939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21495182420094655778631553447406230582567271212677754065771599146035069969919748736247561792475469971241528267668142067996116408068116206370960348501311767054328143199611348279999709168868991710361520144428554968864768043977053108684005982804765437417567224352954662960766460601638871577838581737847074784229999090590524935938360817440350282144224583314529701955207456617302422479726245758827693290889204913025623779619852044458269480262250193438274235599866763901032064864423722878610443902460260318258687012296567568374176783108128213950084707398805445047396609508527275765874037003016657312353635918603310144558049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22833179718386536599232279516298076369221163098158867777628455325036200925758931778095436510453472320675274354238422878154626402288742493589487558368589073393491724675458336890812106954073914992011479388344512144661958069912635161175435105979495109022932406087562185754761522755182700369592433136629131374465637946608605277752785045998716848119913930965032790645998254244302674170108223106024589401464943987383763420179401377628559322839632246526177650058568737131692189705138790329078532955845256746984234010718968700877246951949277193202115108742373538257408784681730525139478041690851834222381807893437521362453361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22329499301714245689150414527072191642560734736125771396164574506933075258131559294945312360131652429430816041697537687246154633653590248005024840096355957059042099245946264828122776694176076106809380594415816244590529984920122916607156404507359295599754967549348749489664919022987678773495432103648163356423015408912494911277484302944723286071248139483361242741688037400419482817988512405637948256812881642162473700084630089356756697344397200104138949835058134989687312011540989380952174833930544891664790252728879291350392133817703962581336878310325979957638847771502057717730751492487672049593716286735904385147021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22573642821216984229224077420916006376377551652455330949602119890998756995295855530597160168012513114542917828628934774091440346631638408353208866247663458593873566159696944763180695237108023968354167853248931210433345080078731608982726811986667636686633899835983926705671707807120221455732966848336773612741496002243911520117906217113069457566613199227433676103120291851859583813311103814432739586941848150167303517383827350013991274174649906822283538596818571829131804365645936109973391387355370547626272800102741600998772823666755228145902767078118916925014035053357567976502471339901449128795375184881286148362839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23152849982733991396346826334791202122196319589361122452325835404115306761215592452047629010172348588085083231514210952107249789019158295239002920560589723277516214911588683438720870675469248407263816398857864644120775720583151826252744974310202286386999331475494224912836677151222376029114250325439276380069833054567195907049298884018963830832903632340181420461920128155684859097006157740451110906924964791284165767582944182412319231496839061133765050056014866486817871927619764892985398374468257835440587888847425275562484017611831363772185357070094911692377904108966752834597461290206673961000491090731333955413213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28040357075384568261958038021166584255026664832602683098165784887385538796561502410409516927204819694973771109830334851376212118966549894317514253861061638935916482625425315770012717078494478355558437928769535043776814353634979259559686043299387580280200704640341695736663854373262557809025867926427099291423258728318743365202538991716875450652449233570603808537400337920358938095346567109645099227126888180881759577975492348505989378952910294464044910271291665690413055793605619104677251498097133183785659282105067520879273909842179166082357645770002617836410246906627099397509104557289737322761514294882488002456923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22462271382452068562834065338190890594111369894637154290593968106286838034677816428393302356750692336849533937315860609260294632667272107525167098573754996785975603766742404587259113836374844748148588714830434647799335404162726246585234903306708769991198899671856445117405656409065520681122971978801450553243593194997207983522824052574653912044993447884973183967946077685569628042993230320089482165122009832896569982079578001326513016669354450641787275181848282902975000979095235260506545699615896506032880712348792831227978726390027377781407227797675079325238899100787197993132564213816337026781119355422265804996547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19881423834448797951526713107029103666510678738949261170170897193773777166015166119537222807328967291276419282165906004983458796650482734486816782585090746506219075780253380267434498125017780946345839339976433014432789385844708427157780617497549420326576081630455712608114517063306285530954041119657769458070624918963281698346892732155032908144955199038777587817753789785274721235524878480034166274942154113654549146879362197898587897425305704513865493792079195854169423076195954674254822139849182695663493215928881860970255023509738168232076681344290603963754179681931237874385910839198842961599783422027390217400841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29513811609505287413441221133525351290054409953195996086208517540319893208067123921939211004121695495691800854844390737554086340936736176049564460101368535431256018673480645678191505351937824626132329069905276087165998926872546058247910443473321847247406005312543217839766831189526967217014877678760050650540593015724376885056256393073280584291462925069554810827037606677627075734325203914877099259654166712486447798406027984707383891998642135810316849517138269245309131860409946877158523517946474708387206920190127714399615776499822916021501126130131654094250478477062741127488042482480972168272502635767294018549291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "17156180700769161605155635155847554748688738944414365430112689867460361415539892419105501706124499073221283795872700038927708997496738521490213630152862752531160509463699332022089724713906388184436291690060188513181130349269039750359115343481797585919729510042772547143994307827928113600634481173650089743250826508982860683701687373917251926773934452274574137037726633887576571347062139461332235107796000296809757452787003827862806708824010008170191702080999394854514520358905889313808346400482404078370244153297736033399935624954011647037534791023693341499508460462341192477517119153244218471352027791709986137122541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "27507337871882894225915873170564506927802518017388334154573629053290479575702476247079176784923994347927837988916335453134084247140965657671322800690837849099761362211545014763255191674580068489693547851898764287475484313121338067582581714101933630701719786649350008337772247207439108204489994195028207786481248844844735831150159880239796449008488116178298357539992739606502512889158286466005428491246146122999350722716587096224099966428728565410675704278144100901923237636625984542878442135708734350830814129606881631319486543029278839536225239550694783897661638192107530149131034411142517350147913065750889705794261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25765204524943327152445842087359205690197018212853205356524709938062797800532331561837810277408639400595813426283681694747555929893781248401644394804704791281245532086160351950995511120986142256884102920500437809881443552280795310059137584917421659172634223673335106284516372296906341381897270413182442659745404065121667916333483864159161107096151648809712095821260197064188122825090438875502779686831954721350311945267851143294104925702501989193023639540490542794096738479905296382843951531851791467280989116390123230454345012028890619232134804396799979606411516571711190519588025344795255549570691075324215631616641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "24509236491340974952488065730678900343204597150485858437413174096055571596394415208716041947455524162741274309649264832277552605436718985193164076659779071048357154520299629473330647172307394324319116499000047843852239556190894883170303851374607524604883185698906364857297095687633373604993953703069482667123261263937164905890555712652713990836669997619822004259421787288861036154738150519149649940486828728640883522900372505414562375731013491727131363367002396264423720066839073300803830285801490943042359310819547874078699509788773816516278453176162822683927615855791208298894847479879092516585739789983143763410141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3246106760547160201421252106273046376827931199861725345584360179610591513145329053896521357310924535025916430187110631085197701646156625378505686388339793118568459808047869076629422779646499836309757409772745785093569234233465109363105185770402773157299098193164777753570112751712753869868023028953355243246923361911239016440856292631324120958921391785501443169923960369197797825958022406354526522667840403198535723430307549055860607453973142156862837202872756657952886361762484014527932453681249796684313375314800998783405234544962027633296025624224235959847731852509156393739730517745292702764566108678768022671125693015226949002535524876996806560971581232259190099861992865583215891019443450475143055204349321709362144413785785861312649851405988929581697593735762546304859777222248233220352605351410812352136019545915408554672492694789869241258552457437830954980919251171965442127167797002440950099350126643898097111890209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25838800905082719114283297317462364", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23957910793965621483200098853278307", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25320856295829065024474238371280155", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21276353184402331138663814176043116", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21329232649302567926243165307905686", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21695979462488883199645435889113071", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24121429893836458629979747831624058", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20885478884373696942547248003029729", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21781203099889694370050102074754046", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24099823458556992754095451221301834", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22319850460418670041685951066090552", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23662454007989361312101741987098430", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22818640192551933246037449261273213", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20943146487858102584944979800885234", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20775821169035165312548940254292816", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21298705200456903465096325455563978", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25890772097931688152924206679820400", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23841313715648449018812231617482785", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25766239252121220121957663002088818", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21452942855474687348921257061153806", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25889319254005952027172180202910103", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25395696246891391642070791279562227", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25161823697736387302333841871401289", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24977700529578249090983002535373693", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25274491445457596594199394384591822", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20977155843798969111064946623124324", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25607520333281592551404903832736473", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25294296160086716160063796061331037", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22227434302717250015778303702885079", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23459762766382541809812585256536946", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22393364586695119010584970770722677", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22370284114205410949662647601556762", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23394104487382398875605638525929851", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25656025929124667053285332618072292", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24420681301167445216343660821726904", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23567346942187738590911851925986524", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24764591766818522810778079312439878", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25135606181247821815404321956516621", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23054658107161135883352304673213428", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24473673310023658455787318776150771", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24514574581639402723343068904043058", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25572761176494676483635269990650311", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25101486670012069330827349620060701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22618477093748035416351275624368861", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21809708208272929742206239508591967", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23808147651331752730539728525853411", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21529424427075110560616146174617734", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21855230132893926000953576010224680", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25835273040314750799821983309076764", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24199912715636327006218835168878204", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20460113602516130873969524799486078829497634665550980031819378990021936145326153740700874936710857818374602716399442160028797760690834201449514917609409350681547292223811548529433064520671845910560352145837616302489480899252593891432381671149400639290371723091383071862930609702824810078286843306999781929391289203715838480286554248418001279532575565299712565061066598742168116022647818643024779427021173651911682828972414630355908850565551306324135308128029649648470835675221936844138803926325152997821002215909537191988285579816449968659739323414917496860590923433774838659802745642104560115844677657656926517952319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28167316919078000260464335988040427627777703843095252407003495869819334014820323106717944527525426882124755009079739280393800947210952658165181381928903176487990115928617133145801910443615102149422569007780064931713347497895170360922086824093445462455869994160659234211440396337433248869539600063472140679501810761213158247164637378827506578168992010404332888992896574458225266254992069033566860306643800182728459726492144529460189432559380671504817384969796934617799811640972370123351670910624754281320029809608827676447906432226953768353543909374102962317901636525751571343270644162653363073554785548801947728361727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4229767637005285744734454518645624842348452176328421480749470049257276955243874661247816030952986829601424006819496682691876943598546436425722015375618957050733863701732701886702094050210548427820357020175678985362958770670363345878491402044703477337622804109316485536316151657847442662098811262657770381564327131819756031023496898907905461282476425168377668153243941008154362522399390408360336252937311104585179013664274783502118780162958562606249392252088212232870362742081310899512836117442969110683127526365235442027088594405629066379284431324526796102888689579652024727036742556038125432473969765479544401740890010396802140962209231923947760901673043081136175512170444172030541079609451649953164832835108606976515858886669398273419297773842716755986583326109067135804348371578538931849877039220609459803088054830356606712828285988019803773339175317064669585031328484684730863782728008252424016429937115457197153837494523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4869791377327380737076453449339248304541352075950206681925068494202736734953568479720799475940435779408737830090071064453420266649916301524939301030135746639203437022405853477116925914300048133529894769776113977374570229004204184559120268411998523836805979612913618503225864782758852088623915911379541852896916398407069811414194721784329143251963401825944320856612964111519057393118830530402598006283902487144238468394821119658559568512284215452465864645874125239459896386891568433527112103120009109819898951745254813014014295280105300619895267517439757828260316719642541367641161608416151062054219136639154553000790570665848559809589712592095095459403678133165810351038826658787073924569277671891717854879417224075891507307614041201036680867491085215239822403725806260897449133066907100673176589398145931196601204417311646490076145564252790231545374197390553028568963929826328003810079671820476619882221374431099886206128371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4717311996998117889725248876570398434257104315530318240050791120769292771163361615350007753948416276577087350990842719461078160362778778284331093998440170384586645381744123775842568074018090714441412572437608975597297198662553355771657139909428503905288265451374465583803170305491244337007320803124421075582847634367190094823162189005856715880312610196340129850176799797921203702014378452689533021698822422306866261983138846950412917847745658766729350477771323127675227466009911997846796739439314082005403414178667614584928210116278316728936208881309502076848276213411153387978320893586223219268962658969021101414203889861546726970137778593746937717912370010095360904615490519211728358707609728462737689809985203023006563438256478121417718796219127046807777601486765058804787203012404238225042166339309303944341996217260580588741180306828232217967678715750363889453811762882919018937085012692165971693948992624271053273477423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4251960251087739720422090494566028182045792742062950954441329675918869258527272879519763808710102665159599262539112375294743737967564561134369296569614394952283961190997435820071632133576577314621428081856171578483140800733936687946997700636000823628424944714286311765282767139177794354987352054053349472893672278687956071966681637587011525855565317800647788548847937961028171426656372088236419554519214860452297017125355847785707111970136930242360649223758876717634012775811104033919059845970108048826186236325770623910260714825559767701826237785526427653540151172588396453808231800918052346932730267982684126454254774921308849185089687791790493765073398268486093053039111312328469254736411987329297402343996618237514406193971025132738647520685746826910308841988003073566440374678527480230716055261886139095290042520940895900584157000218443470993944401456846300790125341629434132192683544520235397424122959028912488820802499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "577353093602765861432975198963672842750599331358478142816718722418481742627395170456221218912429299261190176485047728678255373858111847172084880255004466760460715902400186243523482574203501732001414094049628772666752054335841787878149669728456813268546332969343602026893591603904374034508957786936647796370681659597435008651290923163467875639486385001738271714997422617361707905081643021513016547823393457809785713081635705603297698633700627693156400699712903448149228069474432980134156581595301145789301667917257570491346742277875018738542534758151600126909905258452863990330707032920631689795554703250961725925301327153424711435254333269159480341674291553497361364348896784193424741402538795316257122288224474696225212844165662208030118870529419365396848909085412754594316767150387896274221158893333838841719221218274449465517339957308734433996625500169230322806694079255067287207181235862835581966793815279706182330839307805720144141652554731296573195760743498164669016312522183325742043645928678336082086802352675808011319540760660629953101618614328059497283305326993749732138167365064889354211187938238958705160003499139764106378289626113783700305470306997874440202658809831132736336968992168647289415539785031169585345790790881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "618137968200458505275953805878947776969576722215672455196051558389670566813652908890706031776219676781774725437830369761822590393261283687427971816635174309571437085301677980298718553437281491689387443411279925664927379604401837804527110716183374244239842453850939476976872318708140104568163448830988861580360547364699438816203071810268317834984265139308479366113412260703727474833545407984157869508008029086128673633948986963734625600576433051773588379204764955451677512455468112465911360910827050373075125918050340223438216762785684927127850172306229300483882326649407501820881066909881567034370467259955760113238771818329082756018363612450487666731714537148017239622430199518413335184291037969991612258651743697527973415056204483550757774289496231281083865178607844582860551288480516851548219368310435319862473159235934451385325294522734752538777271813699402149456453862453220927418016695950036590756222241637210150507139427091438861354964689916649927567222735666803508740511769157350400713836268922435529957955683577318292080181644158815903873426590316023314905276420316318619113361162707213407018119341151835330491121711975708911092296237540935880803833505147753284589599081846515677073929794988648682706314545115756608061316221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "19630259273377915560449104028969903259634682820630491665372369121321717551954826505589707595018554240047947322242987294788212871181428727359573446243114854388481189528004491102951521647299146886981029311422419317821274462506860369135940676015779619568525134517796449171283130757893168910009992373375151066909713153075959949070261492450038588696856944857147849395254614965517630481703548932068249553276127345763326271551506427212777040229023597189063848106457006315792441887448885126403953736156698211748528461789838198582970909678044284665920980277423488953682580283902974162453699278358341023060233157222066287042249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "26398147530598323547857450869729436889894600131124793471613127235468116865410354562650117376536980228338740972784656315893848168147510194507523615495540371654762117195322619107575439728202778638879014476195094062931240113047112582702936616767278433191946445102239696326950665418802372067971079187545143502175419494605179092540435208438938859767229146132461249311754399173209175123235633312545421785345154351051852403873713168986963076588311524869085449894559460514277100789443930469025361719929632557195924147964682856610915900669371343159328477919064232287545568661356282682024205862593979580083585173939974242389789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "30405335626711088146267647778332268530827368208685017977556082798822335342855827928138182371330032645292746675701069428384588369085792137187418271396780124954594804692150954757270707005927935332446360462021309547955099957455951014584678111589157404518892168656825114002708831720566379820731834465577113408825520703712448904450513650620761751755750509400715230035685849970980724580517732943341987117846551374552657553813675922669106715575340525378054957632882888465685187655813296436259992965912907410334505043945449070279869264049448077469231116877716173351650652466216864501838137967197952090589534738780755029693077", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24785509841583542798612453848131655443988404094013041667795287317632457092317795493990777413025943263354497813069173739445722401433368296264456280735106554975992888589186922118235599913695859283942174064469588744587091798925424637186299900038843773179110446386519616324224628485911917390203473349824574376011349190158928988015991785846009249540803576087333602787121055160750257903008434990348687434347619926416951320774853803732876575320687753836901691464498859143390213871662794418591124444690104947310382862988322068307510672870426221078767177422750416232413648193634270609710640701377916515607559171616839621487573", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "27354530310760012861404742668839125331785856080378237576480368284245833530957566439175651466842933888712148174519639111138409588241183121301347688699793494995252661197055415919899052231952425036146518177294520267300512403926193110709955114166374436937376099932822106696334767744676525208859695564125712787951506789113584967671054533987059872823183355033114632368915799005848159816377830730108595463765889449525665802884334656548008412119877061368382454745348226009237120250872960658134140904430563193856006394527130939364427418022167193895878370663308172490105857381394310265049324045820897741946070375729397082309307", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27564434273863897901940509311686092073650471906267448658350886991568547907733701930606565184936896160062872297868028009142305866304651430730039227279242806047452461440706424304597779903586225007436340699621714069870775016298134431930052535704199558795344244408367393643559268827872702768027238913278951962085920223033490908394451543102576315584094283055854330923628585535018909006022102179131815909359910112671381742780703829457568159997016124236419258752920695998631697163870061386015554252923273295298048759778349873463771438334819741848004337805991286462531105833608928917313462287801499173368184235535631621880633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27203782661857913146379214946916210763263721981932750841136422575229744700013359791785794447471497525025743883851676128425271591405596418736586187659772495161429327994548414411313979379160603644888347213034639381352126191871934773074863189150275162107597648073523378645538439590550726926886891249240184554939925634390541763758216445258981594596104433191269242771603945298563784629486016362243903290584656212307026030009568696445212959338505511884623016282451363313861893886868699602544568677874567509669132539813828449622804683843961791795655083470356138788878533627636792953438573568581767106697969062723962023704401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20019447647160150868220586884920456618012128507471583122021513783063648427506392855299119204931060160620101577527636324299973786554825570779848740107542262649172755458248863895756252932003926202815709863480185674408599466159320633959900936762988771454486482885664308489196199657510899680438008334864829783634709363318158105722752472808403401667637985698973399896818981023206410878929025713799619885982767341470440349328814124754313233211609632175865110541510182422292263243866270312046650581347042253673485708100828052774290189360798712173186577624753423381412257347162113575533321809691057772369155873873769911004661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26576573617829162514661748992056681848919959728998429622698259107172714686895283755742332934376112647939094244551348618640429161547382627050394660093794560305565597809769825137025721236287210321693105411351367748491697858463365379063680777502332435760619441102913984487366790136158131055767105166240280990508756761446731789014779708594157061737565386144010857412977019553328093992810730130580045123427895383384412977206890696382910790466531726769505711821825355015692631673283536929245058521082881847785647991165712023760149821659246220293397114319799955478840965857378598028767445251451319396950227977845364143312833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29640439583544519289148206936064634826190727946808986837465966859005628300362864726706753406936415846263313624976734994588044686504866458478117186336132348929538177687606024635457063265502628151591337233239350665323267433271376815919296578903532122641459581616853888584162726612165642042606340295011145436443644618038684997151360002147990968158062098962660267950260152375235670287400187533055932023822726588820397139307388572064319330447117594078124861861564661528185040551123893748621734422630844426499599551883164233012460513351579625869612605347216681989166052984221819351115528053191546233431034907506461639140561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27402362934062350932902862386370018956725901752035817545183104888967828648054544398389848861253949013985866121710582329887907732804857267253236117139995296778090975255873780288147544099465526590330260732726481562619741301754266560514556210354662282628352330917463997227704035912463451033641295158359253919894063498232212411089879333698170736025958921900916481863904970021237426069976645026030965422418410042777895439211481504906964241604724019308283004428000453105947014866246607775146628742655453238694357435714242288673690901879548142006699636901889052030653990022775384661191383764699088308811612211358701918256377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29525745242047030776959935116299068327223422418405093350237840423172130831160318125087627229203513749649552140594340279465023604116157379503863818827225942123934184352489342875962280477780384439055892240006240949589470380154584060294873004896395591427646661243122167411896491000945010006456740176690956413233592824358916044748415242141090429418866403933680474628267051483851597327508164206789205922817262572856054875461423892530293015234894631041052586178620422043913383901371491387856041267548375686596971588559515826190672997499252639379233852051987309479997077585933499706232206163782661623275509738307866838419087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24811542067361496329653285905489868154904282935994950204736793853397645554278935592713790075900708883666224245286101236364264215619236616186414037577554678795988554765139031419918593920132163323342981122958877227712863744094032903797541644238521934674118474887765483939061461647785523688812074224837341139707300090685875089244746293948178178784198220669780493761148851979174864109359118364541655034294205031188816331201999164895690732138158180191626083615791769114178362237309416135867907036217917402740200214897659504328867976736685558551373568046673368807724424488429916432499700534171703979383623529774745516563231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28108108666555512640543525522067028497047475270659461871480029488088385637164121784031395566898856678651963006548459882314616132580584891740774194988448893119256797791291870755235564433271216170059918628649181140829416264294943957471488876464806383757288612661324058251481026857346164706111397991629811162435895442459912366215064067140211063423499899925429208489249672511825813640569433918884564023351675499473662380692944796531352424348065213207321119744031800799859710657243208518955506017632322606000627077101639665321805705386970693622507176850070971940616867659462220389721530809690847038866675345814252684583881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21609481309213900750447389336169563794234271739085940322100222402529345732479900374179985312695617432225351419833072796014862680552855226133710279501400595779014627129085956037100898637513366639147969212753158589532557125125579816455446023163935040669048979950302343469747690155729173484784514932244127587027438948540579638079497121146377814650835095263293436493884877742968341617399787805191638125909796689978325717273604302209075244979962498043020495881188584306943705963479208295114981479030147727088810850946003725541918662339368895565763682676597623210216021699937524314355390629707512751109106625080658272857843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20747808053577151596075893669297726062003157624886126110508476835644255932042719500530794879592745071580100453292228767624595207973351030055534096481786576679939958134722862908285509533104315717922667056548186199367280241268145456810278101781999179661173234864430377675461936184069309714636110395424662895707382220308393576222186032951443127854195378517244553334931808083545758589607782038703633341269826921838627723919608617760837311473984147405902097818496859911728840204417504706512837243188030998086037316308028462311086260767146886380562724755533128471950892255836415752122505526229511481270233430911413997872821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21152498314218143778797627310441467774696242200113526161019040632999925925727586974686626637410729275648217765694842235166883977371620723271602047309427908379142094130881935044394497041137942872749555070874954695936942247943804154253627208147531331642460884186040617722625807873511959941871474314366619418250049675353559654475801105180184225600932439337373006711627888441100352710543690042083898426108915781643401192738562938889373518705000600528735148483686660279200834153268905072067377280574100063587163442659391304652187047355592545943143973613763673551275416575046035448865425273545426440863817060913918799572953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26869140001102438199540652620527030858120386922071384061839154327953117724089231437083005297793358590872832738137519673484325606979183677419624548031034502920309339891446078603056809152083778290404732315786142199722115618414638845554666348808629062373955835053213165518590161438877502694612639796537281211496486760637751277307139640522567244405802006098252192645558555607805617169600449985817121416221908362055659721879406342473561121307581619796325795189618888875730775562066319633662847400634348987105627953300179535095031909025336561684371991271194161395604917158547978183394102149055338555136188403837293611498941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31027370483412397460399502685537400272756283502609478999760989760826988137665163095952366464592909711770072633617760752879334761249853070244279800555211830290740260404307217023757019402185756050518831635179185297296317243791252745759564307294796740475173780491728103486617235524730198953588402765410373258660785068176937269640469778441534396741052916820178578440820955675129873548098558713948025131123390826533669750647525312647763252020870092339514929340065741043437981839826921087163378526875546240883954480447904640588375964040027706166452604049154993468673140261768656277594103402595159895495334204605364149649153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23576068944980054318606652903548581819368769826165874444059503993594276814192647705318731869026641727852762447742207587715425243287504979786863053828030658857769480093245175112229342770005154778281856900269808898012726742586419110231254551311726377463829954324005855390587578715707922747234306543619090525112197312572210414726787026144279187955800805151490452228102048325744622831834125175604558215218863392508743406484410546622224232471605048276311683519208385857841957437646093585198119144103182530820962035569502233716270118964160696882752729963806977005555332450188798668621952525371348190119697568008340324164571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21474487897822561418786473659384569608205657267458670711213794788745675848147153240935977455499001763395412405834450805788473569806379620828367001192515790021593674699633380784477264600404687417964537645107580343044386380291675587293328972230260964553174735672210272410816991192996930369640152297956587525711507933641121905927938996591239224477075806744755290558054751088827551989080476820428511338280423553577760517245016949926538681453200231988810158125711772288390620444733309163284602254065509285008884114260650976567787106760686873263335810413575481301160490350601458128763936802046106547578832998625743734465551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28610323366651475936970856678699493043591574672597663836909811578064365845459312501558224466351093413350184351038841958978785962335016908828462219692118179246276951928833880975664301517101475167474612511255349242896342448536767558751582441526204189865827516683172434825020219013167242114460945854963174833612639108576935959814373966440041556764816607795487459310462271102309510906906506714297837066786446054855227135427991598955851479403258689965372937585617885248043773992528502775758528845699075185599068449726115447436042713150732010740432499070346569180201803725706157883107162865637357794791356469026305029353613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24655522651425055888150425729172948343978220266943447386967567842997629039023392820210846192525969738070276986672432907678095854375253646356283388757242135945673957021875015453605981153964939404233937008534688831221797241296725032462483716659504125924361626413102306529893864784219454294302411135088465434290892341832484817613292554835193714670053554047891947298121278375797974090042641131281804915410024343508835697305112449983021036033688453325213685698896477720889613424540207988574087599657343398031566715457696827373161361757790856151027527464239180367657345181991589064408602674347962001221336335674869579720733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24101494112970608847677917388103574947153200644715395720343509957890405396816243607210502978718545025477837336938498230103361389242764602597860531490410205514752279285153808860236667660284586074949188770385897355510149592144215082618564852271388680976898093118133396665967106130843692481416071564250310170880676664783845634798690276836400220190674740517464532012260286823583919702881081948487836762750731771131273762132849325757941454229445799389586955200364241619853885445336142837281209140690335055592414490443263529438854620259728756667163405487125445038025078991462297294649473950953456823034468258140922888742829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26695968930603147488449987940959980967390817053374036808002070704970570684212482650387869839340353908786857520961417661060045099331183637654599505460866712055165179738173792163896972016173395481432752733404318464229877590048398663546820235423016547376580675187072639297312359201019621183168315285592325289655019337958858295151414948036060931712917305076142001190429567658095339752935497849536642867210488928423042026302519075711634165079635048814463585087589973866014842892720186478105235707437442615520902224689483985250081279268676171366715788393834950166555877146478327537381704576574252081782682358224619850701999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26945982338278330979991053193005019236858357766450375026881689106426630069466268126170664624598325449079364562183842875757362369904472160328721373995223749795137927496842405364898761809479451035009790733031283898212200977280754656268704730169701867368580363975816219800651844929408512140462511853296104581333136455787438682094400183399991843933245251382738043774373564373844662922817982541310318293548755754922057767178879986655226653453620240660142090232752423318920616829356251929145163708480809592714316654476003674734171634333579408534896199973805554666584709474988226770384007853949509920918439100864355167732047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22666882797093406556797337726126404711870310760377210451406249668420587523049671251309511619208964354838722136548399667403103513318162378238420220470753163438086191615908274301639551727545840729139583144947641781605728692988425719822010253824056793439016384839600517179368756067522089325243611905970989587189339505440769071526552332345996440026380704455566088001100650382329351687939249971806579869364700397827222760500194604606179296272605431057121768616685730085775947368005165409848988218631770370536608779030629368790059019720283859389869364084667696034435897655593090548680591891309354749725953642032102999221697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20598589742056736746394537331931255679809072295197297346063545903464488696654187767457426545397950044284369453089882173515762215937728200322172755263334035889675159123652822576008197638474193267259179594919207150816438481162700906038293225286110818977401929521847857435598891471656604626541570517448732249163244313221884246836270301831146993825959576295287967040666367203781158146673353583496098607598671977479621814443208641978715835389289931561181189366324536581401841557461902928076879334535690871332049576227931178436507163103720420120949469313465899311174597787526184110869333952575019084300565316944993427574129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23754679888604906729276585262294446681973011703162282682753277502652793874324964808982672865778837294154188927733923347880886176718103752008453564384303076895348101739851807814411549404522272005032742310949552608405708092388308101943725403367940004754251582022926867677785382236657196888145653108497676095557831747964608715685916568290819253099183081100946232954641487771686840444542035914944173560190449266555083420347772637551933584105992556426798306006070796288895889685490979902952992735495533350540115551779226757110803967355318989687836661162799674290856583944390202526528565466125926275410599997160764973181387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18723977360145464039005024392851136723468615696139599547867363030462311965660379359491857024700578026397690669394914567790112726927900319351793021841343192228363091743050374473631223051054244846655627580039966731482522893477739417215424825765983404165459695736088854393032404578277934338603461458608410619476102054287197055080475685937161299876630844412005877679476344192493528073073845278474347005284946194415797852681111345673502417757581108501007618255736122956075362064038923334680933811082163753251394573670137173640901141092005412734968260873987523772923425461560019946416551714911351726346606118559883639115933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27762425448592833702219058801904066832164718433020747030799546531574707717583865962286826707252562825190968347251642936763093185955981489476711490028513242075805008884518371538575128696627803944237247652100127608505793720557430417553351871198735872005941497230226548090856956081908170790760250914653289269708522867774314073882367097245243994623228172829666593587139413963403333986863570418025281994110250309282506385055018553580233721311257421445038782726039935935048493659654603578876832857040621012742734734428891284828360146093702423940535430585058822943146932890241569305562641378840346746657321263302043763095181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25643790841997918957776127182320484519392404675213673644031518856037611287803490256760611661235292019972296514728882230443115763311808808701707506143315743684020477503372332499651481917037216704196876509211811099854395996980164997402796990171397763037462975703059487844636487410096023850319583683998724886051844811143190508427909604374500162131204656620583542288573956847073782540380335293184848170564084594009498276568217591652052350896156912053491750430264489194479232073243137876133857531664774618582717006689139437216708628049042566018889834581411043693087721233491025713613310376202757136401640134664255295037559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26643881647924033740776171812117541313392387062978251971116120250025483609232039094072303637672192343775124770074635991896746105178835716658673325728777735798891060197993831735684240974031002762226431190425867471670961730658876152859802666253165796031128206400996619514722737835578925274704811729056103014214543167516900087887304902906711824162158531318607484873545664214746298754173440078261145656359168894839990409544854143983253627827165539837577042820786630284501628671548616957133024051162600199709985280790481993873682332983948895529361048085191171964069927701613345872074151284151084908972358059877827909667811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29336231607786847874436534311441691686996473232112625289345871933713149138703922113091430274274599978715301117902764270374705300690879324388666138353683722137846146399955635932345326355541486571647650755839245209452170266334661982304203602525782203952545636360639947920017083433458044214510607557695278874678659634392154212905922223897294724559899219155867420883887760195900452849760930656261159762226408440092953273274733297044246775379728797990500860570735059990768447459162032786902487047373159849491244921979711392695250706157890435453815749130162886815595053311752968206173027614728723941984299338174655081513499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26390994318002276755755252008092616396035222704644654429599935965046843381662255994548113241751494999037100532264855982460573368112312311574389184009677902076915418747020445056879432841417227411909602251764310936815345627720030304808049803551464353178829717138524788064028305464221085360901212466329057909172615756618621306237588703040580674390854803912310564978321724098511313959288972877647913256000573801374857247859471108200060263232471739738648677392031535991051337405951875700761844263569759009478983462664046615297740637563277238362906300077192479286838652706098162788582699731464949110305506497145700840431711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22864796743425257118474340120140067898642083297899073019169924461530605981252893663133979373845519250733214900187965967262942031799258467608994472507560333419756239514527532366860076627056707577698874266639796918585266953215059664822189858401424111359407985546881000280793767333315366199963326296563211947343893937769133525212311936193401137797374124970707797536020494439737521257927660541972341994266635947716261786382353276619586781241304691360261956495728949660725006774445842077143932605048168440609305674707275588449451083181445374480886953598828580838948341089470267794818983584185599312467917917206862991387589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25151203627289266538369407280580216012662551355627307403949952064117992430453065685380092523317997977426870005371539949932877375304479501589277258771300094941030772068714600498920712761584141690769480319013656086394268255355534062484060721460404654466331865090243202795738552932007224173444795399833219509634981020244843461290783854420686404116140456816291340989211393441206327907186630932834777960242975516593331273904052655563677487040529324157640050500997149848815610936480652894630444840689278476450089830513120031883203660349774314402906033239933500971586998971002571824353365272166079495050737497549153222083269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25669552755028729300302280471183957301844380676005702023658434607908906026546532893679825192409192041287737769006592738255748328124729621509893734535599410062443368722891254175552607983003359028046796921009895080852248194564650058914220967457741508841647486370604571669537341656102489663530910865038002215009843097112549620390414042707190711692766107470784682841270037515418414618909095279785749002135350347663468616299493061811885210380946760455196697710820419236292349676508184819681107074619774563890805473880400258372116597683111048063963921858581507420388969918780845067619896195455175211784239429044369613751407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25932072214577056145588414356801561757013265674275059871310310977777275745114496925697693383003509299033755668434961521228635467833641176530315816723869280953050329082146356531390564326081179183710274509645859405591225007839237899885938417022787697292952994707265748303349010113221766494380497895113753663186301721867726991319486348405074769286852882744234067371457107293091035110258132291795423578605487106455674442989567585652010523322243058645556999166792004734693479213575433189629038825808531034111726110759036385115235708673415539073602540154475694433208790560818547238021886035674930116243014359614658484341749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23901006159380424605682614920369235569223792272100956840448755177798106676248760556554629312852436383879319211942280265946313692662433072774441240091617632596578453570066989850113535975014156602689316570338267732563981583942853609405458175887594893242863806745512805950687488037359643754417237171998790023522351628876210923031141197863022977199405709522707087157242500947931116446819048505570344190423711921485811733675090243019249987212793153923279772624677942262076264880852654180463003999490068204395338318721786886709456988861797984405963804089627946792824367840177494111169156485159607416757197243698081836835473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22914626544786032718465053955519190971382454272609019423861588966262179843052983282038668875321148275461352586211216246403481953403534976656792289861863229243918915583786589091461267311170301142054992552385288790067655365717701047893410202143586903714583141025831289998384592661148906465352561509062206384113206678345088822795993147602201694876510966888362765348561853476800723695085118921993766008713782315237432677056987452739885883824432530395579199918319159066784045591125990793641026780297694334137358430988083248264548777966687213120202724072610835931227367122485085017673502896092070373338838334867531166552701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25624729574710575907811725883516358671918911939051309197934685009845421273039061726673733568452444999417292222741839120964760290713337985576639836016513382503358312677240989441594624941436755615417507925719163460254904203413338827492548489547328041546881918624017911192830618491115902725495415360228563157939286408941284944348420365464643132401928185467326310967186541905462244867180262844290187489493893412080631972916824012723072862398188395629143751150564809201281161346889242796937562907630058519797222694337818331487537010270084953607862481090006172686136863266224421893669033948422441790057349578204378443965717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22306767738973834355645297783530828707101862257890616669185544380577420894424240598810050901796289444940604867951737924842547694956659952930636432583447353622411645225625527570076701699295437056292875302401833507096912786544922715907177524163745729418021149333257160304882265694120568457492248553617171328293222419215566834539256461969377396269086664179451042966233114284128369598952292110321969058995585098032760008417786310052877252870947835595982037600811301174235166879551866147349162705242307988796446499241421295939294692499570498196449006102634537617844321992965376828017223146338292793758666316078849796037143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21196550184697589940982202644984176754664561867189910398266946143217277816959586970258936556821909928896601234377640306185668470619095955052713521624852076232779303740192734264995300308919331468390232967101495363416607169422739088518451300254195410035093486797107338009492685199272177895382056625091169131914059838043013494319625291800337219109731651649965692369464029152953293926105361568770666416848728383863704508949345922564015585709804769243731042628151057644356019530886601289874837758342029543312567238995831675330681290808479789908494785756194299023922126850774909460797523651882013745373653081419936534806421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23940996195732188001583576902327791512924858821997208392435568257970249437195271789222123131214087948439009265137042269176946339086499309264376261715894757848033004519403168277134906338921155446122420341319209790868126232189774391268946515203614539613185956029220459322725388569512839826166512677953678312332392109010734234631598888528939429154274596132299780426760703853900053104858963111938386883884234915698286643065647408483599370173639041790226242171331216561980740198699984316639506512696104417056983332307426232249517375202159090750508970759808884813364929030241127495336172273165435368289779221570178572209587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21425628887554618516351719969860842031114340758632303076438672826522159981509786110523040006476269549551128027083944420654936003345165480234452768561506032997839254174469181972530476714601267777264672392947277261156365051984953268627842788191601714514260531767962347514277268532346979157062864184304096724110375810981242830361459100577806797032269809578780257851889770265756316691643753576526876681841733105272001857885961525252290242149013315269221739002933862768400727892745330569168571622993378851626527611951580609051943156618031033590310061403363931420005891444098470319631310156582664534857163902178342766282639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27173869081101196818946455226640474284133120083474502109591273945981555788617717418211457966843606161525376676284257310791454516012158137721243865844014646313657326297609664196381546480181459034273054269840279070284318141699979849161899412517702851903588366383553169395736246743634846824538266292314229303087644850012313285009802177495056453973051657183019121234199095802213058986386070466378658037770700206704888510754910876056185579201167385388726888305392148160311262215086065152761881104778620128554864130512538038229586875403100817648250556420630259984266102772417790354976982934353136825515654196620711380858421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21245948131663984981364811710383604657888559136408442561648422518722437094084139889722178346860342174931764471924798074201582283288418309643987038896229486518906403752408926925032157518754641902449260800925670459208739607532487917458088909352934536792817304724404421360334584654796967336370490728559214775440996785780037252152587889175106534819779424014119372327851854358159884206675478753020208087419570281636105354651881610921022027781982398620507887623226206804620990585963091770400859792234424289536578218995649873397562499787102092948101498380839073505829126772611557133611090075888193218307095672481721743649307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27434217338808578309948594101754358521910836269029113030303201192735412459488678364476650477891679646921725354714816466287955111994430051471500171688274628636762199055548876105726504929329456445150156408840575408803439621235841921594698498105939059257748447584392082212319371822152959281123606106571937142038925743743938819049856644883429018907080708580989896043600580911782228134050689124859494514205510415369336864272349505199258424571566486184577531680239307369261033836900983410755130286245483847542166605254273791670737488341959255153373405018728796760131342045517514880920362940178722040504214448025269218011867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26095749676136013642936344700748555688442567572352879978589514383463418833069839157884043479107654744208155510705634944300657871703574611096559237606989506209197296232362468023843717047127578743259765597941547602753865691286662979165780177584782792985511385264615389558472695545185096804169233228416969963119573457637586284274645385009661394510645125330439827018013303470302520030340328111924769333853432724644506120006747119610343345887162998882637837245277752404739548962219821495121158643848923912946687475399787068146028176205589120140578505202691311691575369171443429696346986512062568782128490003918143511983977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24826304701562014905505709656196500627896674951420507454497921811805181738235997656507692255439726590927065230493940355322186663616474465203053677798513108557419277820393319310963455015109906808548122721929709887205589741861863501553848432752409001037865879586972690970423675541166322605564614289907440084762456141215103683021832073498336885663755821247875631725735546515539612340491996412729610927434813416514420964403721039118896093396849408793525356233553044563366626054817159548687145156524975936437389335717357523656019899833548386299340030965109416250339666350331306378208538177045908015211475105200609528422999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20727212253260387906673487700083894773944624291455989181317879578785483445049876616815748228256645742369998623801297243455037675873647397978763208597896259594389217918774777547768838019503077495201732531065979656039900497982559913548745717926655834966130887231694571167479302474099713598701603992349556526442761768211088285467281300836165316113706306385347314457719517854941372789416762655929991225833567173866320043147670039839883124125686748932674712959443186370222406000330274234122313060325177513940317091292836589774903043714297117374744224879086235838844067885716629216057886178716310062236125519021230162272763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23388485344448149283413038584081636329754340912864746510053490324026479947611743901950368462843706643285391360140302305868639765085688725973931111132441769226700787876933410802086942958849435488496084065541972085218275234756546513615068330770774514409022853085775600516060169412148308990102426878066160613985218361684389388357236888244719957587401815516704886271257604280084060291463984753494598748925203623556703376519011112253289072929965508144697971529994763544135907675321647284002643515313514012726217914002167268499943323229703048593096784099453873443266331450967003076420531080346471682823677234980748746754777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25649054253666784712910964029818874061415170694286889394204669832019532737813490310652508821385714395932630910526471201077695918795837258121097042000964528774331717179883074346349264856098062518990604922021836590033202253373670687022417472265862175917034187387298363123642067065283545397798278207615606819399421200823431070807303792594698795802412488340817997360554329140791456169772865384839587225875093449831253540680626279852930044789943482322061245656231104343924733900794406202099356271809151916392388521047641717302187062932374765283801845350119079109763361481201801253067703278322497534293450615642869824471501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30572174252479908578593288312077274804522806638014097427702650234301815349205734270911365792257657632713386908648133907910378308297641744209977683032520337741527704190190210939992891869061494316300912238438614729462381112949300548338140532754309852979007932856124475872197954861832068647558916966257802151194709047053246471379699235122588288937065458183425188037594369501188195379508569204054114279872102063534872632213555047329534387812387948987377877510224971441478912387785551474611936500514843722757073759052926977518137452662719551186822516314077201320091068417850134965073782800954637574933896499091393046311039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24775414512702543338385924922965957257954484930202963370836004625943017138005828973324850790660943940307091077611088603183427652669103373460251210587845779816940083544115948545061609651112196959351951098768233184662299995200190038285013521431468137596352477422452932220775360641726442237286563713299408022236249487963043826766759084914165231260808039302276004430046738307268633351097689957962045034208643445030068664104516316545703785692183107900771338892235427827594464636792685002689389510656372217857301934201876868711942583772532854294769036944259885814304091594092998479943620659511325539997128356431845221478631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20613300962026898464786238749698797555537407838011733292168157647371064432789399507390040641096840161829665646825620688049947372376525061034150620325172139446968589203200158639064472413129061759216687857098045483852293952079635736802940478329205073229115249294476074641691853271884104712425142410448153090799857813062957367656516312492014618545241520229594458887914177415313402873998479638589657489799527604994341449390436825774077010444758926197965305252682664980381939635460916180510551822919807623891339082710999262482634680243181684040757158927026526345449320770468651416007104164290475644976559042334183729893729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27930494220424860738568145091798954740472677119975202734474886023118415209419013022521463524825138286967265226285031979908229035767807020496775633105353659024847115142615835963024467582043613508981074822356712636072445646417897726152767258913811320089456846445574787118505899347908020937369411728520142212745531839301060703504291157791402360670730685308027240590784645057001784720358929195000677503797059397769659758904567304705501093789504926700813870341975477031253332757266778463202982942186437856295505261487293251472119759627484342022165395403613852652978653408227733974778538338640527263423577399035668862186183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20731625932971911577741714022294497194097268780868195757487282355127499667917334856838735969192409203065743296666337992700082067838795571375985784708139153114578237171997630034972954448403011354841713974168294371762956598884652651793570996304453155368812494549431805924747312025939828024135883034511986527439926823944021229772171030173458784115186874086663988089274010125888055230424849196516744799790682083610881399016827014855688573462070299929160215317362877103355979785008468696865254373114234863567668287838408705857785176530634362003888705010597787228130630204645123387097326087493117095910470901913395492567713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24620276892904294971992814820957147692751694082656637387050803986946071561854517349286353728910009396054944903723592316072560464710034767118018424819071611069238800205711180846932120576499062879558859458470951962334705247828608313773629627433297979056085653327745112213100864201695529803385797154389249354969963825680761329164506502369888040506925421357563580537888820826018638393158718938741696460797664235552932107376207147509978635480460128369383048061388882025049685374803730918388960715848986899645163025919712384641008258831301680017098999024130798581256451687382368611827436651571347044394153887972414343587779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19854938263903545249908553084632570771181395576163958939528012262871157281634826801681546697486225685211528479947768381313386569641828211480456193449083495782951313848415379401147461588064272893427076470070843948284201284564393172122771380518225867673382511397245164420254089495992345277840486051692640045318127084728353422047530043000194385557487987458058048909126648739472934232071391734558174437450057372543783651222777867584503305497440832308579648829393078073721325138137551616183790712421450405072116046233781903711390225456809574150460358876840377736550415791471578999811841929784424593198567842532841539197443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24422147461489934971731652898744709274937566652295269365347513833630965300700060006883784868775201271496970895148027164692857047479157093126076865538679251877974247165583719657303148012317200588397091996153875583986099292203274185391884339251159156176510553663819732615577077209795011936367462099003678379646486855737091797500182817662829158635455690027122530385700503553736569680247049571149986238424537681342362193644292053322770214190531277606364576579463923803437940858857436239195247571041840881177223365444646702905160025294258462804362387812982462864743091662202976230510282145892965353092063487114040128153417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19938452254370224931010015430273984658258589875042349955733010238130550313395221271114167042119583349832815694334072242627022914172101371113930719300378276036439913975353290298602962434289411818069667954013321306513242084478962095896432915774283313978940929041269661969490317950751851821583454211387328269157136849029557376943720652056762370379269120557225986568570859752431664600992585106049185968370568043120209869167256829296961457628489736258375129998151760618412988319627581631112278195361105068919863863933829258545680302978361298746270351058783905117200400152137778490156287926604360919130796799665893089591207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22340541281320313131132591748190290522451924732183853653385529884579091214423440904041911444685668979489843046040751333986693023453878266180259405854926013975480538164539110854790932997042211009784323792075491628931117823939932327851101210099543804731865985926752423486075086275269486310128299264999390242463246191037000624816589128312765505433469833499899861140428329926174282425334293478799796716158825685902696716056826222230167906254761490717307655915816759093485516600561866150029800724767518023677187100733403590153515271688372244557376389372300244463572450303115154694333252704936958960770739789754660362780823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27954928390497763594031846080150064647397500387643495397059198822221582980181428868821210496369926614771712606633501716522877783875589874909911133252635478744863918859419421796003258856376069485575477048594801538416813600855523798956306823950905068430710268112360052153765503168783863285823080437559726686127663006697062745849537311005926848781741022909836475164428963540803444172093478508037598547545058764351708734788342328544100501643770613241783021623605777761028767144641033600926414616454094032186311105144280528889892901446990748029607545026016515031050485041063009013145995538816121760981362309126403342300707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23113069248653271827983157598361486762974570089879824396800665062433381129164368542954067730179519453154747883329982281509930555154454270957697997913755121679485227504517621400288001157506595478567787719647841484098210259458112484465863655867334345551533195217036438085452309857218490480915360191147294943332684973870301518640593784793636338228384168324972628449826821259866224942827945218515412605760509803772068532582135273780346122051819379907038660854285473653734071166219143819836537962365056851680946022335538071392751097205959897756838306136675175521420713531315849267686526704767821980588491890936858929646383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26889016118852317059625536697552974829656684542781630356363289955957457332930003683511792972169134993080974115073926305572992493301143317178451333921241058072050865108177980728438663865071312940584273467447183729323767652661017286748337602017522036086762732085905096341450708707318524597505974069765344474590162621500880222106721515587960785833509268295433399498398488318676678932257570997147611231123267569387822592304409740396392899469334706928004050822784203030053847041973438570975639787302392374147424039087694588865457597641702650115177358773003246677265498908385736415588381402120707987726819197929559737651481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21709517457212116909685977813748411639056068249740090885743195745558013211691362168358321931657020698265174914378276089073283008730676151882278110528866567090093514239324958165344152563513485435117485245359731740187735972748954485730689892033714164849095029575365537680416370626058855335231794083895669473962630269146003810572388859541417287226732069102294954182945321393477904722389786864626569955237473229096863886358243840623400611448429279659526872255061016804513615098890981706302678640794832910577917641881213854388289898463000545825710041597066639104949118534236077244679046784011561939762668981308598561087147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24764211695346057874494267412599287286866484751398129048619718411225127320523321474027540893803715445298772189536109108297291382159526866943639292377599445279519056411101428739657853467364431501248254256934822467312626684465698462465769766671911003838832424453633769235160192179927259287988226139969381798445605672730392827880367087557663160838120048868920297871588550692727668106734849242092779589829224141121457964399163889207956115828118776422433457800470840613568596846509067846488736826423603758594221488983952024965769915965063047570546734340025801884040608203448759500871072449563754169496868040516439181876807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24627166305545148436549718065072571244468023833969433871110020446099349919776631207321760439137259186918469392321694863185997967688178042450469670755527455426579381732745030190667728644932302747976182840332416962737047367841890197434759054375896719433534627571843383371173769292192102671319312005194246598604571763043412576485125198481850163702114301141315074318329072518069605380186121586228387144512708827185639877255105997872222506131357246374575451034118742543638387183194206529466302284939361224842357987110517900478172523571952583735760531838505609684218267217908671540816699624104466639157105488244628868668211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25703714940390275186196739818733172842934811374592336993479525104061060835597494304162287061049557481067764543691270497265512228042928612163729439218706572849880370567809799183733906592904038465179634514929196246840728797524738171701196893889480088556399316222167320962922037262101188727977972751929236422516690654844948724297595772976744253902758952763829043000172746658063865791446585151679878574594304877630528134675404496935917546226128814424689676355839350272609720760201623108100803309990127430204091221473697169025416148651331890711359515456847970103885835897341088680126586385663505239507413854525649098109367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26309759165153243174926948642041669349488288886665422658008630233973335540230538684488922068100019479458982191875642093311849116116732237624755021888793533845257000661672068063079116811667696438151773410434421577034620045912790024577288094294428525404336974610553526099793674132907974237535083550840102476353240158208124735488964171563374635012941890452486110082316312953766454467410710924708895990111661682648351237600760068658577713749340128075989899318545407402702696065388251419027038946529974422735841117863984371614744476875098025235636320628789178667362135151585816675413617233461433538930446880378377754113103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29822472771423731316027069595693304508107484481557591746798556763798568626717014026659088712666975771782620642929778445254025809234947777994015508031334360837627642530565401562280112761458088535104948618905504997187425083214779520597827010106588258097917355376264736171729494340232694181697682193742958539445903488470172953099533239786395062569828497846004276680548738268540584858675771680941102312963930368849515199732065234449639590035478482946506893167938273027963525282992036731845851776234327834133015039559379516453966576407102753135345926033985861955619569530517023853808787693251479579812905509181817195718533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24026571217316520252266988605629353051139192327921361758944996348289379919050689112730149680609105678416497144908963633314441766173511305005726149352243358775839977219381423581106836295583088451323299806596371667385641000741078469315112924555257469970567562526692065891423696435556703364222648570900896549704902772887410756950842953574872344094492349028780841519804551870051522299656002851175609195876869331413552252832528938364202479915538630226615257205637722446309699213014026849102255169558925672628747149409884844869475246711985190906167374361378687786569284722874952013759726061721184128096558022362823578273079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26629487773947688055089700357189910471275583882725625182887210537479290930233946637892875126934589082199247021411860104697391349453361887241599741823417932234924204075180373837384320976177242766487645400467530832967199773703450774438037553019691837822109856725671788224902130670141962079126150889339533730583248523372174625231487961634618784726896689921312357602249978682764755466896017440570125898972454363357131675089536971836300668196869154629874616081443021168060300663172302706069771254866881595525323333837974628064916606938371899949339496538610542169677473267584144515372678255787472294564651914490939259067701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25310619369082324607058356597724247761669364681326655652210597483474001481911425723132757265156030375808505104008746910926297254313835244152405209045345455900784521382059286700644621194738739168326403166892088197198095332804038062319654455153308120891853185166094333676347089813422688924202560885247392285006531223438879852711860981291181408762073880170390323713226640879236305397093089179270114358647935623420658455588037684849876700859495929883248972313351223166850976974324708056860239611631061589625684713482558748746375093348713454072105159289645829371168380311198922427035409330800437721000345092000261268981501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27985573273904240260296836660851094370290208469022122657284413776100036687271141040978677750322422385918978726579090402436376460401198994563844291329753771865939825490535162906673346562397725050180043028778842643660566145615921244636398655365994555618729187002524806642714060309812238401497114704450151959715955823173261519739472867786908667487491225481452407344702560684837824574540739300049279145035401257588738772723819626788184698523845718229751247113301445773304591313172988503781223690873124795832813091346951776772325825646468854448556671434005524599169846736348554128310786153309458687487288246102521719414471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23677323173919322089747449913880232079993294767100387716370732336580853265835808431418259308800248787722660353493974833517858538455414777127262606257634818925496034751617191109652752448849630942786849956852786283191550997917362676745945279132504658341262319981725357921746261463550754075447513734450776516968780205792433349478935598843420123522829583287603241794737141872062670327625304101710477382253451036796983853640206405854529828600826249472968016413515346343029223321227471896729884002333375496765082795475841541607500485849621074720499060745211540067054318419682105869051565507802716521747802857809736919633753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29698963638130482485435967497602145550470651520033962052529065124016183528246518542334336044167360541772926155001602207475992163863282555595974018835273414240427913822697710667989824641270898849437999940056340104380691910367384607466806914220010441990363557691304873074920423387099263341895804748044809982373119081084565831574616688013253590704332324709393343081613882712103296195947373700856690070009282788429611698042989732652821358904614485843056152563053758748341096458034982072370497871300890151773897237087406303479693603927303880719516279264231384026807244517851028631738770486925334447489952050390419573907103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24901351274367804174523478286805860057081414053194651190345820270464439822704349711890233399390884106288843397339925642363053402144059209678738406055395550435984661465410247264807600608108093995742353963752571937051116355291069173048886815851534943664913320479088451558133895992139002520307717777804605229827456490530232068392576616733686753461357196981369246660675941491299951132683400873647019483244622685082738577462518116986728449491385239670123894469317929311779076236336812901645044101772839034766833341210744550937144117460495139200299477320317585227513242817433457512436903414249172691234648480116312801317421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25119571624565284898245691097056004448445583095254889688611655019019951810874964458314148980994708896703451862479019581417727287770638013022675348108967127446275740390711335497135775211857813784280848189244472092264215661002991505485664721773450555963539645676422478314618696749141559099917292488413514618928054746835418122529282651726545152912014038912829504048833814587314228386583356839835248710958511875871149554970224505549735371026034751755569656593178122736148364021753811547735024136145932108672387202176299147880252579996689179195602340436502541719616596429763648304751847051646214749911611125186150359932701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20934838884504582254444504382409238021201448292860835858445696745380876788196739708687184925863768511334365300465425014200513013357511803436635187129416132083473850473818000808848198908336910135528748531597001346622918955469729391989874639120477086411692382089808358834975925335882817599015403893378623138954276111942058044420586410379679395089042042113492698484668548030644273738179783785172814047935967237201684003541889740355401510109458477937461294188344429032406946113090760737055786916572391691486422117846414498282516682922285588869635566321801169401001146874998407771094165992141941986412232764971798503759667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24430045388801193688197907821705188061879575507222853821308053461944017433205758278387476935401748918748128327708071598675990330584293360474009026223533103820333980658307190775751577674277379136453054118092300059885200885043900665096867016284259463036932701260556007455292900226052928302344392802385152851953418975407990960070257712226121913374372363815199343346814960214385508035922734021505081107833016134882767107508395119927463875745493410386055615485027042833198563602977063339780087008078882495532199261775492911381337826225584134255065456924700542475549671626444535698279243936110258282631982178162655656169829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24798164160780304885056890316561392106663079041493740835608794314940471751787634852749402248131493888794247758914933197723407304879409042285366121082909822281563810453104388404891608840831754496384166734236884983989862203887381211052070987530499851236094849122838232915191798839065119959273441167630089921000563969341034098375416063885819171953990622843254245245701970654830363129496035550376728485982713388200415595399740709891284097363504325468919400231733851535637130632138552080516155040375559344404701233565797001253193117981354354369553642854863871730302400389425352924131514266259802567820342540497753454282729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22298807332472895563939962595983975078800560106798426223950081844889059303580675648412913546297394255273396226689002567335635610533868196277678204614683692064936143177036782643027083043808534602401185714684388428434245284573356647354954904531191120053071497753424435153856264703632238420831203974767698132302030665158057425635604541923637196884880879828819715757954126156876944735332389364671643535876832187062851620621345838502390733998083128920607644344984968458724310872732230543732123568882255530248961221765376421356179386546778467966855528006562869821313617423749385329391969609858859513002312783417423577141897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19942081703766993571702747368384641016356667004648100571190192731509664991066029978235739198006957913454488184719392653355207130041022475939561424756257473507967975977431822317834056532861412310970975077203502044880467455450070937886947519995917968108672955010231507509923741734190260129102950760617125279842336530078335481605533912130852642897805221243839783400190658056539245226494361897340082903763799333969378572591536909027996820147886953483141855888531440647008030847738040186465768071897942666567693477962501341135124726302879304682302358806097926251392766594648328611685129060118352698595131372252525295552357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23860322796030793503942576723510190298804932261713643336696356555080906380134017498188642489654249597192623146972888843535732715670525426327589161401151631172331082927621882169047490968318005949050793364199325376144595522776607280651485634656691185101273983051046234865249262338390165024489987211649701644598623690712293928700537164724997882799754173018834327632806142844959438789082429246754965396202371955433205262758321166576610247342478473246097170369015324973563923635858150101670841178349878570640312770961314432970072464998772675884050246795941966700238999290284646590855665134920729142269618167451750664402253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3791880616740482702154534423057319996701569987810653697672441582340070654290417263420778076806310534631779519167093352810336722175944805106995588358860306778065949716271034487861486015482401826877262516612112026714169860611667396502410706087304525262372905053474421523989376283026911192098056564359374581466749161722407795558066797235585991376156575022368913634323369492234100189192138653916465272658659248389617598072002885793404868276770255740991253643295602442496471751175805646913480126861584125712945764367107694722512189101663105006251536676404752487743613555548583449150862999800429262344296811059705535552919299085929210096710995687140898217912883103814628016914492227627075912998668765666610228173495926155104265660608455453023341282980501403559015651153529438420512054308010440959098243734213999154562559813863052604824397575331644635296012955491164731201627765264345253001754005783285153660787948654174636790404639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "19575370243276852165179764206391865351921277270528455176391843415696493983051390792394912150941726366080809528220697423844657113895219572653474527742836204578630165651450227116863454006094165151988821333957088623769754443722177143537818651942827440369096882923591469925703297252308995239683718633262120516003436609775359258669169463023285460049220357624591728694683378247447970104725224433154368260202275542539700684026468848033981375225398030943448259643317926302860115429072399198313073994962917936135315482619146026815563603724628792434135593141228219943273948808501671639660645482896546798275530970181023122497083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4125673003931253962753446969196318888652473495718368351648464996413208186693817035593710047386085872602274952773989614666821127350798350738031050739256176112558842849595607637413045890101611048324635704431687830736786230845342504679820486205714884819676779811718477092827611992848436982224991356085210169662790058052652515718788468104947785736080132493243160700975512482417448853006580544520981067681838374287598383010440307441056248962416486194711557896437866578726985756192095630303667435127944867017343750417626536675038822292689593483911833361425562447449136356167792492585321285143137566592649587653134843422682818071225410668081972486072087782582678462748363066239661588005160990131841813502403643813319157564770655099192670619961698687940697653230021762083232313645182931497898637194853434736137737891422714833146032419449536542258011841386912372327485486223113326645421543679729060590468912074742277612585424529669857", + "exponent": "55443" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23308353083941480348687459745412524910541486203418611148421393224737863896987964771876937112373237698189392251487394063857607477712759688398197469759314563720152883455301902266929724835891591796643504273146565758496760212386403401137401749327244295831379336104998602222208780967727567033669821644400521593437084324320306111945053847621125516900198412101471232908517551154824991588188647884546804401046352449324363665402761618819372566762296763778693789099839841472162754357758759018126349860840577845805388096040850346633906564428804468721171633888599086129641230882812743050428320307766606059227328167381502645602371", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24630254221642811348129389450359104593358375317626507413779808147212006110083076254660780511235944873443939602542018403951577283483397476453269078456308123314808548328393182245564815108610772255973112680030472543828068956457102093714294554380796713809586474240061845707824198903936472546878429083891403618466215492218369894700367162301792837758547206277687191955440186307100710179059632770113682503004503123180791203777904080550106874499390340696312888411331848161319663485889488912783115164667775256970124408757895997405491792409305304711813585922096043366314332840994905829390665576539480789609244328669036278898077", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27020464123465195390106276892575865386633336404141044361940860397615627075025503138638945671763118414586413221708568346983291514012904960031764636787307911533881475827634594544141557900971684073969335125942260963146056974462006916553610024873168732702852459578631244853105957204764918652150758108088215050228608168932989570575949126670362739447001694009454936264065779262580423088180539013319807778616951438867607441447223319311863781754118534000732475795388398641310021823231953186772938941755249057462364836747120720114115660716567440147481490012652165790606736466686310425519018669456134315697508910553880410866463", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21755528550490680565878170992130365884173682186527912381893259441931761849367545735270563228552411188759474643921663373567999409770422019767797165380383605817850862238759111599637280778730598217999497919920466167262214239648022300159910098501742432722666256706068176803229979755730174542522979404055604814571277127117000620368040715774237597107413031436692250910498107665618648328931410260604034489439804207534712504291290472993728197464104384158710659573084112561090708553922271704589564123056708920031584074141478983714622661722172815258986972991678294301259238126409076883152533975995211104948924708267782195202113", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20819659201502566940458448806127110272709781663148690693867471648686391461260547440954410530275113187465633138703541128677157557751772396459405805807627955707269902039925080509160829584101726902192328903953815757690715837475123213248633285427265268629795724423141718214121416760675707298157199000417894068807494899861652596473666609699468637148568507040588951500371260528479454706833812359612251304350103899509306704074894029250708521742014209301542590146665667386387372038671842114310088713308534373763989986021153512994380613161243630840983628571291508964897774440079328421786487778594208043041788887452259292521727", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22312882760877829430125421667010314375274291966975215106452875208350108675252290060152743911431149799642053794598005724362859164340279245748590071037848916702928823978582117159666136903959915150030165918782684712774151330170128548327408047641599020504333207521224255744035254387095500118290829733191589998478292194292275640141565226889005590066716924006431115153432994213993252071295606249368826922926098900312347801707874978876221258315672994454956504084354849315422046410393327912185453712824523810353385289584031657676764909061942690614810632167900020627445458574339821847433093114204626558672351958727037763314751", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22781089658322633807397440924195784258974479388492187817417425214381673129476352114753998050661919279861143720944390205484536690053123338735161796686654990811170490090061521462271368145413654121892405545860161291052660320737106437778219799141587927267876907112893616587096799913117228544251044741484858326003500662949722536914349918435875480073009120223137716334694949793100737142226007483328863856580158352596359205117097931028769687660427341114781345857036739733735101733892935565504639272101284201865116284244086252790487739591240785711068725918931973518442857813612250719971843745033270801983535381255281178188821", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22986072554993222177039381120563820627915579265257785011377391389466977930098505983884067645499134165570723377802418357857738495586469956804973592721362088257284912607560670141966562721647005847429820961475114432541300845766534779262028872527793019545386836608955868693962796065246278780851305335952139824470506210888159425500094207227056566043461104347167234767800981222611233930583735083654634024834529093264137327250459332685753575469640037559939681912636715410276515312793453035661132132270977401306011250690330354785946780675939453790282758967344777401958967107773310884092009074851075757049733364721940977396063", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22781089658322633807397440924195784258974479388492187817417425214381673129476352114753998050661919279861143720944390205484536690053123338735161796686654990811170490090061521462271368145413654121892405545860161291052660320737106437778219799141587927267876907112893616587096799913117228544251044741484858326003500662949722536914349918435875480073009120223137716334694949793100737142226007483328863856580158352596359205117097931028769687660427341114781345857036739733735101733892935565504639272101284201865116284244086252790487739591240785711068725918931973518442857813612250719971843745033270801983535381255281178188821", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25090863655554237189067578670129895075944900130290781000715553581294806641643042573228327199866846114019787022522713152213009600301697326233587064393487578715403073613001835118569979143683107675245400162327208268960577806285557825666516195682594190731030802058381697071790368278184886083423452894992042215056308432297826028178365545403885582853850696778350602058331231050845266696106808487073687790158503226936989514136169512263613643432119982429932128599697877371894919211839120586065968317016895368770312194490299206269483653282499758577764610910077438751913547667541593586297906108628318713315124431429192521124651", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21080050079080945849964861391234652502330272942284488755040679096366408513075216459822450729229738735124214472192391407184424807150807730693988508304808207524850241952112503352015868898202453342863950748187451992148452372056709395803494701540057075718097049882317268845731199399213763701593847310597564975692924902441663082315242068555522070903455565807264236306816729502967886569550500543901309389371954155356559497044816768063832288066602299806082051133291567009410353015112681905115500004600093356964801516102637651094313015975144543616422416202532205008214623712491664044462456263070771265955500147908049938144911", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20659756587147930427294525777773435722048596183550845826535096049135019217439669293963552051181897993011385413288065236195954022145531250241474044974964275452186545549951250280076053727178193886511643957639792098052804365509606690882963507175024207442048394736875282487510664512198182361780487784909005021692287553677985102124341300925429342528783934192211593769513121207881986650864972188729278526764281933098926290904948296736583340505634056492161093016907049378842697969017151298368819508519732686768442820506599883731785292435774482933466387214423606799913075819606358219702246434925421911735862647646468239237579", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24557126916202178925856793956772527138826379011056717115097607308779681144456031233406887447720554485550073113342775429168504284440538595804900653198147806815487654499275131375033667519032390834232343865828434102742384873104665257241038562836381192261737478590607264602984627606550480775872782558851503657129821345571506345094236410198080156738719090770629063097735583418975020415268946482673820831236016109731681100221685026307161775664375556110241087614658655084459967599636371397641430200416281136201933380948992810865331097418407807648101935999091525840184298868742955162706914441066856691959493764560759887075893", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25595504728091299632530817185025829387061293399102961540855041202692296272837613025652463488862268477427580916411420913243098330111465494841411482702228575463122334270231280619186013167745708132685319231661599588591108682396784101370327338530102655005765260413849868056614032911542721688370113697805351804021599147449863635361262584150638752792495325112231582274538846363288898385957059863336267343940805554601289142463185045674161473945758921816590981967610171319967834557112422639758421558788604756952302467913245441184565804932538929286017437546347672506263886667161368238963276005994082518522500974027360435725503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22649511598938874183226987443056817994074171893473907986601444237002302007069140303542243280699181550149125057598312021692120156019106370060216905449553290231349692922520563257264976620459396572181098872117375611058902375468554847493557903806955360567335783400104379936266873832674629407848670260737011113547823555131846340566305208623158707469272629045274535811899936932667828780949872050027423272557765324159516381757561910261148995197451215067139023815234791936498530476663718561848052447078827984014453760188801763483939757611421700442655093536396279156026131532440069308375695526728779881381999850860107996659669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26080108863703590491481048540138243894725884505122176691515185084839102118363059850683381663759275974018049282011889455523729540345279002166150936614013261062572558184490192375088501912394924087046350113426563373129428029752155391507806732724539420139350620623324641557980077662955165432723122939714008980586077631953434132352324824007393701051353254181511200892475896704423671197194389801736438867340521616266579015644904081351606887598709508285380068515966964819098778990901309494219217387859148641499755431911392756650351755288864247478398982151243467409923391261231840196127443290347103566189938956638765897163117", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24392189066588819813700934415294608944807862321989994736625156350224403251965202772196491581709030775013190383174334941538409070724748820186506885609385389520958497901703906253480011116391659172803744487107038509650523032546448302420992727314417409445287564597439200056319390674627252074444360594326549352099762685024177123632292671900728678971079383830015867047457166514527162055267277980176214022764197383406577831991807672231341177347185850306009063276225349086626402212218257259640108126410404222627720835941418653143034766602271229728986797859742488145821039359001053482108645250648110666999198757855555168183779", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23229266558143148340461302210374821881698016020759463113786529045177287796616971843578518720525466044663867991724802966927743037391943102923903252857339907967687963341853955330081345341032572011687701355355711032324403023126909479710948356397405063395936225862190827491712115908702299712230462678675947540489510889979337735505534362300124444332734893840539540669745607975239294742620921291819189331490402497303646083122804749173112203651721693637452228545026980452451682714878127955557007132249287093147390019588071948629581873461235573559426683619091092116738248924671547966230964660653676387582461351752899379292199", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30716202415537180102923506564217019221519345349917940805608862390970228198161657575401856799669522262602887521630469829287457861382592961723846264082194102008631814655344086833685109852901864911276945856366649868055168006935031351844319520399849190869147740259833150976060902572044846976245445394335785849390183564875773019633719497564849057717689954685430426219162523116240529142715351010193141829855800460079188091737742516674280630820334376433064284005557028500508020360510069566719423714542403458271459793778011225687393968702691784840833667536960703127983510256366961456351778860201878993749185253537441841833359", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21043828619592410008593843548308601", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21510886137735156645588283900230267830215112287829799845730927147807295254802836201144066309335085309798012088524340670450676403791570678946130018863362921604813592921521312295390520189280587122700595783598015658188310482212180825816323444920210612506069099934590373835324685900159079286910782925047855202054109997923221915918378542005195450405284422972494357418627501926418011158336201404824201094140997772467099413691440104611275475409474448573292827765748665464303738353655512489298796580703451750676441227011996883731125327268438452456126246693866637201928702530248610013782884412749756838708607483997511287976529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25336830692030680810141772945191464980342948735546758553609462568470545212917075476127192753837465387995630370878385076783968213435411051704616422013951318450355889195932931213095485160632533397404833635393799840540181248723081371708168484983433175007586658368412392013199514249409214305849550880546539267769721826968607507250178544965720660929901114835755576126147121654328788060852604473710057854894367612002889025112747933956675077191889485941491112617317830611058445646810591803996596107389856472699756375275083115175171019607186056285537319506858673485204813076865798441803490789021731408563679587474983842626673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28048582749101910057490281246488770883064639394530536266392467293058596477576607100430825230156157292318000272602226423547130831437390569826095700961574585677580230526840417978381472392732233971176686350748864939043017659409836586428977166718898291402659708869738746906283778556923859728725314053011854763620491428120426667667090720084371131276887567575624975688646854621417998822787587260413368879993100868013018754011324288534397296316720006367242864396279863952031680378130215144645120112967951873738605621545338105972635449617266112567141237677588019454765067692426436852233710556242608254056835967716229293582421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24543314110550806511841552283428971043710669829097334902455259129980067908529858600659500788264938464391121813020681748304492484967823395659764248181138758357245030454188027964839903151467036237900341104565721200274009191743683350745787959486241117085019294848014503345993424528084922009726000613863961215338382112251298009288365843099571619887517351806442011136492618782866227129140130778750675568698680351779375306365112032622767313087698874599291840543162372831082313992453123731402567019542769566007505064052683136339027282874404079069884229856303355488489939950102348123061573344408708460594134944788660418484703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21338180468113093935955372793413576217806602134255221898928868179320261252188246998546405061738706640984737192597980040352945093232995187241570154246965446253113124632014008487293562702111151453135751646898291858814948715108448175280712920984340551710697139198754066743714892973842332554025771312084574250245043586555836730504459595481353388695801812335088162800138760421662395449938494124025344662946573746804218066535229825653800659761063617488541488835748813609297129901951749871281378474334242495288848750887433043737690373817983648609297219829760543294609116010110701743213401115210125545963553712885207065989133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24548519294625614445364524808808424495645023406045815417932187211620707769621362703469421902454830443023334371332102787128296672585428821306928060752515248384801025039778122936472548355343297320402676649506651599705123298683400229477367859257244195604289562602576859237243834418067838377228714459652478875835569241986956148792199857431410719671155977154230029050559121332666870697460831719763478461732662950420343670114137884339231675855338246626963100820240921411031696354903769541904377638786015397783591579212764312386852931654118681022006417884721955793189602132011767496312480988655611948578828734019215994233317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23929114421206045605925959564776960", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "18362815947788489259203526892637211267701100750073294912320995229078222785525934163676304064987622410541219062908198744004332668741920839612960852014438210314572308226620051772070256676075500090266326170612762692075961418847210876035280532780317636458242859957700209002228264473265310686747211994990075878344261788858318657289856448952025469299670123978072395263430062646695039008736311028369222155038823599865665795285678196730593683887936635633851406569218126343104272933134107166278389515372898180789453379617417500897440085761376270496535719526158815487691601695689060353533027107869136524521741349871657761770581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "21503768618420170712735567929146931764629175892329008558115788894448737827254616179421785639078573163208624352382237804177601524145352399314606722954344362334231410720226894981448245126215285579485692192325567898369767814174848800717434955540107443300061516363038604320403803061591190275072753717981009267982458567302350377251074838311875051472351267201266966836493128452798798811231920805679171623504683993161351386607310009829535897362073413617549458807126378452675589187531207389636598264219900637836052336232919887518780928256352556100263355428015172991943447358509304150956454823655606411560540034919371037062381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24215368275594968937493493437035943213317486683953401860361602739474069237418058953677037557216501073585841823831473590165666003049340152079083114296163282555987056261688593199127292499588609764824710914835357748591453295872223472172381811969972836233686708867135396233523188556804523717162705650623565058019136450045015446210754953928080028671974521370261570637031310642557077851041442104629235395433863721230105123406686284574864270823421094057434212267765312228511982837019747918022024872579691078666288450736034905561409855150648638884829730626602709814049426384256130606260913994303432458796971130788476809370871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20006750482144078936014850515509997584415797464326711768276527673969727085990359941211581025993604705136912928433471417064714475206141304133387822514804827364288049479605069487048414747943980054749692236808762784837182122164250654130605900879197660635713814860953666599279779598393650478477131555902961431603264943947895429153711905087787479028280001779992289592783542690321568669877720693613151185456410823874371096694649848376169972570751185836905942883347411042290223604395913254544075844514480606637666312035765979683370774303911074711130757637593645974851392490227747553601074223857985332195468214365151379307661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21712331320230244499378709998932997434650552312949331476291158762615988684329916235667696850388891864667222298392268965703066270057273247892085356179781271252268080949853163027869126621974882483318149348708501021294172893919405730122345548682668070881948077516521719370124692231172123509934376099969329051958209819982262769755505318580914825045915783024795561465977195057343467228559231507880477709067871353964592993840932906147286014203696797513887216260009823951210028024075982746587828129053225991594247486573489420055753524557026457391420103123487067662101714273817012890292583206433531323580837329268635660927339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27106442992092842128659853560384742239112185058431325393128579201692360226997473818537520438223765145706480703747184026087243374062267394726364746035955826260853055909480941205025834071143331873226471049273364345735703699224655323219483706907150641757283246228149884180741834371357059570198126457463596006573915609888595968088015967021844014595964583577655891666878492779063713304946305334207422177748917588380204532613220290265282978583873558714648058622832614640539333108868983142019170507521719255399267525892309298072882736673938972707919080572170138281856141811411493878694589243159890980949474328425008312951301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22830769056567656477167482991442120933523305726826201310834063071006313922645883087280641956805507100530893495830691108462963009317146472849856152417429267395712553124791407817890161059598994106919688414913337686702771376643015218450511955860059916724073921473574453158102108303539266470003333774914603452344409741632734756970976281392002391021261843046666385510439386608830498548541802872068942850192189529676808476588115569804007055272194929196457760839883677866567985671447260877433774231993690936164912914241505484800069522730059084246696935571157318462437120322597147188189778287004946783461137227616583180793299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23290603091905421053030616273195194375360563188612943636283235415832742672516011852824774401895865801957411393792265123805878149041033125399465057170646409595395642551423045017490475690326350276945041873547745000224565494146997427472540942650476938153031113661253358444701930623618812781329581584370145325919375815009047022934469030699280440299070714829132339763944861807307399877675628555667174327914541167609772508236371475360555248360262341874530245026305980464814531254553328418930892427534746303987504533462614396798589934676212258068022971027785880600220533543040270789100618718878318115333210096742897043448147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24862768445309986251051174700889838527297669171440182011615570253785194938702575803788490178688729774910856788914524365162977088085713823415881763231521337995798969710906594235760545766139835607562638448941102593905925670601279947650220469767861013246262953775733860717879507355172940116410586021884802643768375437590831769130236963402152064310694060553876244190475781928253269009605280599403554033439312917616504154113758546739626457391942109212026345893816961997666509152557721537382783304283244785106065389278863273632816561062340274700698557802496979594914826431981781396965787174070105931040324837882140274086779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20700282980038395856292353833741134457370693641326112739420075289025131305414361213843645037214919408295386293460102861678005429446790775612096291841145865877015847830808375739687944750635899226473884012393070331750625785609502110977973985794162993892572442721896033115415312105629830278187186081987599887035294002293746355651921755332831129385741231453475748022448767069818271373263053475429423344435881626135888241318270701626862386641861010096099913277345873620376709723017901121255372459804310916592105318499696372588244028697306010951282123141447937367473301749035811764641050373767022434003145330452001009257597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23302145433558036176797357332901102156748748428236361173905022239021794238311209926545190887865148088586048157002927896053232375371353020294336603895863960161332970184619071169598063308839583329490930906385465170581736854624053047735911369057971527847274486072976666827227245222930667107559560390874446638931950115975015623247466870300771422962248523451953253493611418122350775422505926407276750824684229543066412188680317520950995756140912129885728863038959507808778009366424771664441811124623174306118934097726384088299858262523431459213029602541809321648152511271414677897147253815404017902914288453829363264358511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21067681829098574795409610152080385474492945561838899664291515321201800924472036047732267475843932967394377622725778300546734510954711797736850053096032800375811363218027152125813278794790918898004818501179321809328694109407291335622103974141832823303801623883172249537910207551748761788642217261916267403561381068599513746784023411034907381889859883575521960266854033906414773887462937230896900393693652539991794302998540384983691461658286833084132999716317159003487029645187724557901563402161908506742694638615293968943081032072486061555536354519096464151521225135448976920361899968092278746068049851079080594603719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27741812527254647256302199975286812145266007522289298696979384582937424360484808012923786077745218853898607110593986270068569220418750005587215480529699933212368624540477544643202002789439444031439296192144295769671769458207246846123756485507464581717930379729443480648239545612564275282467064137767419446558938131809332816471430007010912062983039193691086310945385864332540888806608816096317170434939393218772074376636023007127511612050320821068258508750024265395107971617124399187534207038215144095683561721961193510705492970952426740275735725320474077149966252462130268993979145880449870417511407552138884786938943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30351225092729768829145248411633538739250110865399158154227304309224531999786970605720676014085957341402736171289821181530234817346104656885537155076987795386672593509463024824938357755224163934305215426806435873844727647790605030631060488716956530990853785728957943878973687347489849657475309626755050664757416123085413285452872150721685429077436758405781540432392885411261303927212525410948934592755358670032547543189129946446191340911984686685632309938207749677374395883221398845369055716375898517633230509977289340066184411468307779445000582494920396744625754796610917625371947410716919134427603057426090302950699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21991049627630316888330699667875112755000610796916600809263710156912434119184148822700005970755209234676844860564226461931066417075966908283061261964757305118429647384425452834337631598474459677159818975323575679239502058690710274747992507273508627130101216309913342147332456185973808353352239919340743856601812286256263316330852835598772871771888441052772806281548193251539312880004505509440169454426983043028503392259743182209241651945494614356125286388176782195334800865608560419056248247315409347298183250040129319780439863298296398801327854351377369979782421067838893361187499349075582233385206085368271950512033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29334852565439060090068409087747689612521234300129445878256967452908183369541631036032418161168356463869318881720556734683446720549034408832625264496385854120325553119850749325332130180071478331988123202744841590687544210837362377517947302388358120436697556437511233627867309215245184467610599328643661366467140001274304063637002699337534792348091726786832765930011122802757973649288357575166261097053940472527338037988196577802184735279781150413071307628150182601532472584260413384671215719399833585613112985511266312627226347930207624062847344470422101861043700750700282318321681304198917733524487594058965619907283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22730274425669854063512700730508110115921828484720841917915182798526366389716318705668866389799922745895833797266120692632161427715948820923726265944066217051844243505849396561350441688403661248204177667140445825674267020058308519123151827502919241326721152176270909609531456580521908584622356277002346906713623376049658360523095205164421628404878890455862762836784768674333801669795925870829483788249228849048006475487308604596321403486757860024138429592676110514636407247298275868892176937246146218544134712787706352866411737261247092475866629200187087561936618649266731882922248692902102225177604173384902675795209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23503635383100190575429444700480541829435847083408593241986939718759313512173894105298181579403940263187537525784411176052814664230298009237804213473925984490174012747278333567240337653789967021288643536520281788703883519016183166833851934114842232754100619298444634356101788672067716724314212277060099138955066465167889407960261322914936552515199652133035473416264231257393726504949839862128278694404710407417407939475784851240775803721148431444799405020514926676502499687576960183470646308649116913672643620550551046783004441541329865644662363586856438847479231270741713381114262663225192119334373717597143399190471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20240084375375747953038186450978548991893951925875577221669497536735469816570347946817247415030567559695845156627966785038755982064591031339555515713574818992660904934090713254320145365025209081049394268649246418348861979072959553716247245573243098927719692695211314550349300165247174228593684585748085208634662175238604917507877160428888931139424262713407605634814094434754197744115764837940146236721398899489398915075823611731265424892464303594486582830727127498223554478260252217421315445107275128717678165333633070350083346222653035234963683941955237432987071864325720509972508651858568549633202481232300712653683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27831159799331904637496472005812755678177807645445941499716714841457150399088052825787170603137711016547271528640135444426099098535859346208841428714806740536023338665085460646999753240181176015512504717324289816880444591534087045342999837198133911695931551593448239964518712776609637253647206268976306666209864531925317195202251483687286886355848764825712378064242231959988641304155669663886462978375729254090151960736443749755017269014043346964578733512276526629900101011996106430621709523013170821857677673286841308719592305820994591053694722523466151163401540977581669693938242968336553171214230116101273725528721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26429578425620978734021879519820999415620050432039780422721413761892449672682091842123619243973897276382369801375228027650774108035204874232207654582037366528530248519368977233109692617636455947870254338459606037778336189676047312830971092753362746771299918033649912151964609913125105462796228530428570750644686581118492092748883949089566896336752106317686913066503650206017744109157534374312406338488243559681904316978620958232574985528071551123239388392711147095387371231279480139253537658041152069022670609636626940174920237325977987505388367698081417488992577372209040094991103439707454822658500375310710014328541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24900886813593067391404637296229979565805936448612028553573258211310955255212833012164788567355647284213682116671683192451747022064484607137695399639211041079443080098846587657892176638546610253340394380169536277939040584078254641671631543492567268370530509693782838048353151564164781567060943784965858105896465742407553099969689257738899959932530633398962247644563607610872564724368485224768130027785566133327986927134705297271837538897519724701747467171968780170818483439860064388601308879568414719287550881540932152030241344745544846006143858083962646963697584832795046022159583302725445891909967723570835564914579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23912240447480479036417182193118853132895287860693307057176575542952926431318573731788953061661509162710801750135022932350834552677884266017200589790078068505151412972659915522751061503688587618079272769206134102222372513755897151366139269544642571556234896155910514982922361921117320666194637583828949608079880439496985188188435061838834562660849000769645139846276281506391340846856542291522431091480165554935108453994287545344919243392485589005838786451841291516350529928230032179132855370833841406193464711992906959256851377573582310413671025962689566385645074400731342579884143403467724826899525201271961386992067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24610390034893476700180508902536387402783359693864007055019373560839446816101405271851524669401546463461769674284537919361470957375671618534705968094500368025705872568446429350525524825713813509361035082719075025105630141782203129214977822461431332472282536714255837484180184347428129429667586869202926319416270592912286552241200097139718787083405932336049785745616885932425044227854993925048651338087650300613777146761285125559513272272924764881355220530140069880136400458863143883804079956063919786479906573220142093800406075412522051379117763193467864595491284699351608631444217681324163193482768657068586418276327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22973548790678570459633055873625156754742796728238506455909007859055037443010842807011437004237913168238227699683367306395189996141179052915229245635405397498289003108914938788866947875099258368428432054283811844131492178222393703171904026094977462532593272677369211833688307270648382972222237972896687216015441928788320765641275521811783941430909694722739684240945770081799952421418732283476569161881499842432077956226761619174721911794690121328265378246196183833933951066942250091593895331525133922822883294741774819362432177317679090789598512414400682057830701922413055435456604557762791372897151386653144544594879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26871326992261849036171311853581723171620060712637639335100150457074813134407211053642830813394150553572729598832401064086689297283598778722418439139569419812824799626897353859194756481934255317932260349223124397059172816262727897141638980727525688482384243421117216172048710191347394097179749944742030928172848500614220990156781686011513007807195490861451481971178235798588155855823881969061898253791662906869370740926597322601809459935700488015545291331541423967611934535180013485310932875000023608153441990037197638776390777398758032385195441684656857810405521378975986087415624241243453261301512298979946686111439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22876763294084184983050170096223158412314258089948211757534103297373512410768570213548194923553074555194663283553218410824451194125381103289864874976482059658365184846992349622232074218732706117088490787479058877086000964733876649960158107877070059892753778562888456319638513819902809970643604546600547946692685919079961854276763866612970344833357804732569882110934718487468365156662091501339371364584315724899690981863443037308162433723479002645638323136460451318169154705484268642791446188686438674868063185652004486691086743102011351676935387225924633511171500201869935459668876344796167579311842118426393955764851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26482926513833369520278856056979705077701339385880257982617562366059583546791390071559361482154176571207927220998788511651723692826962088258173291625575787377105213272351011169088016477851335007935606589414905512390844252807838005763547322392238422239308673437528600978501410495281279877369516922671201797738313916435445646544954424308566555134172300041736619623395906223705114221686279694593483529182057726307866070358069384994482785278678578493907713942820544200590397841894472484584291094101661092112515948468576137398947974503173723818976411601030985312550128723613710625430281053228500536618974714068547268683821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "717275054325329803093982244956294851817921620560173962115992287504304535423235831850769253209973238187968814479460450309183250568840092422737218071990817582294636287142877251445784998694660553760864816983289522963709857848706512651404726411247933131847561608416302987361962539898214293983781544914178883700483639258184949285823630528285986674378916432976518647966704833714236497071871907719387801282749236648134973185689400350415765597368855781346794736175741312408094537939524283888177985522058312706393458008712584518744282709924065289173624387961217053260974757154328774444219689970567677169847257841297644998983800275306849312439674552115605817178712775171618753693700386098296787485028136947032885783245489509165879623706127637442082328636413404079510284895043141090681027055483148775939604548159734829779126809107923066464581371989059305636321654148649320925589880470991462935379839444338924590187836320734220529592453452560897364951734611284748069437777587540137443848643030394286411934724574247712462916986704073713371450849652923256612898046291619642597711644744219607738595598836112133385534472058258616185123710526665922390805645534869985643285943098361034129252098885139090310092263803990240397202569474240466087414085141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "852360760196869224568950006364070245151197433441918934465767022531735659208489282823272378131168352070703468839611494113332103234691829973208810520731266888870570049639970700335041908787701330270000981528923893123927270260023163185050075881427698522475061375766197958754935436291459282364191208981660072347214264752912939368309823980801819587427256676568269439160568175741160038396365931022911928237220086931589191890319624995607220688629400619541330124331646958219793418860614005053540100951587676775289745031425541168212576937547761594760624441101552353775587850673180041898422327686264493148906116945261055215061158793964209034942130900086682813784385003880767118583172152399849763389656111079175607908576186141432645752479226443391512403394168271463151818132234673687396192245544419647316520234392364497776838640844398521579530482243453232717686876684037289148761638561613555313176564143482016071186770810766249785306849585995587951899339829803441558289526548078599660065081002836269859112622895928939125599510628245919581678170541294352908215352589019590041974326327993668381595828093692644495450481329809537809717634462749589318394797825892269721796587210499569685533925998207720652672783252506319674406755412736064183078594433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22281968596205102522079907906014840", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21434307228187236957863091505400077", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21121265618915166102539026542317885", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21060940416448430120121490702462206", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MA, O = Gov, CN = CSCA-MAROC", + "modulus": "25914110924628588225660335005944577181716260191486416679732859915443434927399741753446203174780811794692939500518859748490473447643602940686000675701779680707433319833932016804728764961758163193374164796197908419863195617688516884957949460506796171942695212045972522467748909227924807493115940081439857099647075774036379478666895533279162240626734655892599321028054836518586285418529764075826835169963014768266394441104436263011280746888160759517465630377297751748382394603210095480376375431484291310230851716114979193235074101274569668150779511021466205694447298111161652318055191345213275096930632316828640035945081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "23198922923304224182668206057570774041120884201841720646576568427095697611050014906110116695188413144889714889314842960351072586058451688484922847415952742623948078013360427560785700539310481215943044710934254090319587586340514306458195448944717428983309318789206608799555259196739779358620374077443632414605437408789578809542667926193536149379170836381547384587452161937407740938369475392364957854539671375130807230956019014469058574743031144397443797131760318628845964394504648807576009718475550383319373974089073736427106192312692426548317055760522839058484887634839892219582396981659579910145532624966378765386831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23633451244172085927220140912411118", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22324749132156177119128016775208186781558949050418844735975648890796155903776040945159110311232533571366899750757715229661160640248863095110644364052246624556825528144957313476146012874526589192594650740366569288723583996416523944137274596943789365276706265183595160611253315423683630819241478107708267889763757771593533331798304759150457454327014467800269069188160415225531830551052847078983338224766573368014970313332060296201233725873155212676597643482216146560362026709145852324703451999095832770776206691819560909981387118593424507734931741869067436646559578050190246782401859527504915908888967925607693007214609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28759602658869899992277720967676237707347405628698505790737600216961518962038895185377279310797314365900889428862837473021426375650302778381859259613351709870260637082766886858947467589654976675273881865693274484444130996524635103547709484655490179778383120751300822086017305754458581571246526116898395040580383442343167133087779409445097241668569565565281285789760982248875058082431165060793547570269442761640672335483551775654610969536225382992871841880256254340035036394876400121786106186834522235367601760250435442818640636157552985597018831727955768454972480943062588652412548600079870729287308180212045364625279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23999989070856620980058392688741789163138400237722834650422056633938842776663709907788885906757800894517636149486842122983412180743990069113366939935039788381783128823358801731364088730389880770432314092264964725782386402789212690428385146659991024572608903612790470295250501993306598049675391812095058562586069934920281500178179203664224950350760294322434013124793539681436500702526675894503442540010931574620596966754509425667965754019997667239744998691256259332939255137170762635280900235345207636225381619424950296517224533005588807087481910306068109441186503040482754026115969928333359459318536723965059779160589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "28707959178750022778887691889138317486980560946607182799918196656575962456744517447082490582048537119956880213126880629159967004781791268345861973867539787381371682216515203384371540417626859284761719469273415793923498436301029165044703204525211936198869342180867885428307815336070042542607504628141504322395083838160109311971643385950022720802419103768807564981925820920781610631865888403578175429238767278558666272362025340596908205206917885409313913731007587813809144920741366877999897469391961932501499932354436341884303314483779804398095042502480415392339448462950494606716864216288299246237712243149003450329217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26913896058428175339389831767881295345226959765449861320044310695232833611791985542649812202674427498202747095057877100683489243875003993942097952646595240335708761752054532986393914212213759695839929301163291412039467420124572535043358833705321946270896206909025867682472114230093408134577327058554176600973601259399927611268944200941685550192208313730059258528251725840301416721003179300877721119558672990181054238673172532882649688473019651959546179704811386152712916105217297346067630401134923192976959818901079386307834025382341654565678192247751812047155099843049194485273896742361807329489333963194749991206789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22075875671419717317423183822031616455261640111978534710592397344668320128196266022077273290487794992187909360702714682021619228391325219642205939420498201536056821316829017735858540607182663689647510391425692518002623250735649771785050213477975235435764014851861148859401133279451093695510257004709995915512381935286557632358399193692579430768872735601235389656923466881714741659682831359013835220056716639748946630304468180712312101059809641763681991339472232931583739448645207121380166872430808698991082640768298222970108521628142033083489944679148362711005746640578418072938464932040374518661010264513318389619281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27254865989261292237746092261194598256573998092369953691134514152799958701799257139117684566403313814817321901413606434621979176003545364632040881956281365289234133557427784361071227162893424135193545334832195822391636551035497369072219760587100334834943367391945244767009471279844312465443840588742251039406692795460511341923594599079593761483108691320859100564711976681673988702697469226613294226497533859553780356025768558127628745243460362348103868844409836525920561618273523666973562040051965956186586174258544086243362704066531562152775116366315327507631641965599849587753851160760661195456895242536965693275489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25694529379386335368748550880438238018559752162313046533470717010923137246017923192648483261301234325913547933446010235178984027512225970142920604948951979122483904567716238307500035572009212594682066356871988260465009259399239003047639536045251824443239871328063406562531266773400661721633830740802230294136631717208682303536583704445162802382157796535724096244021900490786375266822109605302753369003776083755343596273961511490898845644001482309789905250639065198779403065938251052854606636615750993545881964025262094103868099710988766200821132291133274622826448667498485702818462007280493369455574311060117271671031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28717803511519323401673134752062262962743392774505385680712131436152053761458677430279763400986303905591150416511631245102873444765124737592939752258417271643432179881341428260833872799331297902271276790128056021529592161691726759230023550953143220772125665246353300349770965969489245161679159654487731176491642154059278863234255873584746936625922251981183931587056159619125830143858472844942572285548668725826434711867714669738477517730622485536288950676685228572266602638310968617393963888136329039987527684905970289450512424492582829555356190132970087687813650566123950112097979637242655463888329562104144041300853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27016603935519014308693374649032404786353509102396276828329704029011859989476791483427553201989851300545776449361594289806058155963101612620174447857841432949817769132252212799471787534151072335053426685589671630970068160304224588202594611447047988995554824922463847972132771418622971049114118621841649683919200341973918679472437516600783881315115567208592954501278450142186248763505804276356371432930607772546163336025889891070039503793015028636343305413880838675904080937675051718887353130130520559847024649659402489857495950425305905731337255499056612016492297822432209413043352734782916179111414773933156702849099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24398391832596690330935156696346782865792592873712644391415674262138426639366521205296051114949031122485825441643002756184903046234515312024883052479182426151446414625768934730467918318930190039884662286273163771722112366807607807248356783643147538122259778395865976340438435937703031061137993934765659112320499988627065602799714914136839350934267510717588109806780757936472713541819042868489369873499290989588367911806960377775444720198854225084248987973434426145231511458132093353428030404234262035097026605187668331282097809673855057903892538824912407569357576042256677527526894181640644210575922276391090503054429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23539204818305858289859043518701968358083881701161024172489664367567131262885509265670022967180357925468451959648515125866117893169092666357933173559451791115114326045905409470218075199393605061101730646735202430153763988467583852662667669008669490147632907694284474948582816846645153526342461143717466203525015692942730618993098243896676563996165226407710666300745537959765765579669834240325926535388671335335592618165530410309219405136257468670740779196016929012436096737971412763199608831213735673985959736714766544944826263042181883917617953787789520424526925702045163679749775751934441207269399568869079408646261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24316221825110083388560045944208818973062596659580734504282771805624991755783644362841260192609991852733791176444587225683471893812756318760945472754571667584316943969478682329847778094748850203911356446448414602225407570524826737137951807775822250247680298316114494898009967342369784443884479479153775045784196463912866820282150376835828758203022105240122352809695853344614628890809654902672929408529108313781281670329104512322793101052729913258880889176494915671565409599727474713353005986180212676579360706910133093724555679274833263862991294444131437009755048502836915927149954903196892308066046394773709691801513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20516453386814954391028218337941531796853105720894465841073598388409633057701250774950409571059440762348600253634198370709610099103718015674517336037950204703248843975418044275350721134719388635490852123186270238204071638674062384690204107646066628690661391974216040773441740432593788648300526348368198704668730698944776106859438880718878283504248005856186442930603073030032407810404176297394050525151004118227241924254075315157633213550377032657892960742080939795860090280883797216344758450533587057530155126346054808120398172641699694281886594523066339667257808449851958385650351093574376722966762891523076063248793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24658686494152101675925968172992739485602216925543056952155313649859509022648254340225441288520983588114868725312616773564291435717824988650577143826690609374801463534990090937265689354036591868430417239413898637975196073655725313964445051864011029054275688391397881446316590446861810194313870535320232123880390683059468327431785372005503832606651675178261551755413907434630487268888038249117182336866105694888228924297435818247300272235311132003539541703989856022467924717070622381196499827468032364412103741066586296928959853597339959321032957705473893511159218286595672895369855380884653869452877938725290496511693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22232078598400768627008214838788474278469434176048170868150095635884082272131759125723779382956818176213887336107439046470097051659500151537824752600797601281855903565819413185170979321368414863762854753797087235083082016370544360139959063970653396443673627152090760653122892247739802190254906207993593739347451117840313570959120667874348388255390908921658099084197523135478826614585697587528569644734504540530148908709229788683183503831431400873606095780092044237656562147531768811939491739093940842513509467353158947598825640393486828965362435323708564187174591720421935958173296613146111728745973224622883730991759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25163804874851507660894794329912468278301943714583314686854568037354671475067733508256006193138253190435443533378743941883332861830508265152781714052522473600113042603417763200788875564089441988181453490126913775582543642916403877843241063585857670705667174697717731639113525308321792186275119823103193763586352608864700463297996255283392007175318996344965548898874882090414646829183077984329127532019961551878276604481953264861457151989458379596419330554282590385757468822438729552217851974927752401086878109346860176994621009441475001502957368188609544612791628159062613445881513030454952144484507496225059967041851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27533985344805317951945158100615708629349198557067272898784472857381709850760445303288043032870813182359515772289626788988110433911427575372695316081764316134038997642555745577220224715417125302047923010691712084738494540781446891589106537258565937616984331803965639429351542443185329432257643456871237512711325651926598476281495762152880282179254906211918655973677505439142490818018855381707312442802775592349352531239642825648664277076915361695817420932762226597185156145507535373703459208190425582500129125182102414962090411584438539792241878361084142766943219780407875202108377667919509401691795671840215159192117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24032960944367373282612180899370424423395010970940230013254735015989773088328602492126683734726806308677335968717965184507235772132409068133969504186455516616158573734145605531196709020166559795689381701855845218784682967461591486704791935185652817959110790179441193902350297221737652529508441217036736502110864187620644317745444726236753691731273055245525275927070315187181931107262576088716298835285146606054563121320965279669950098237795500458426268096728066866757543266799936943922209106020611676621995454257615260520246646321061929831298300816722584762558289967809411842152115741453932036650387174082649407128917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30618226571761493853086945882058889551725499523365435580053213784439162704312397957886138715672003168693512083103060979683885360182637615504582923737283717767605519791107813290527189452970256250016655013854341562504516782781034506423180894202105314263846560618348205693476822048344210244690027672363292013952578743316362092852859810115583428955116122079145163121522940192122270615419498945613445322478664610592491146143774612296625943082538662999273006125764339810618420347187654779815643402355116896261187331908582138912345285648129601313855139315819423816086087828780351506383265369877278056795152402145167354317841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23787915398868584619361264477009701413892001606322115764362976348039207095942231049861352974735939291464026691751404217747631562468965937222871508813557268836602311608480308181705053163254353352061399452043378054664614733913319358436672629390073073228467941400690135700299432509115714862411452867395232800011981157864919102901424261799308501688368794419159519461189017366498882137361616729111103400149785553027443692443930907274387758077075966334932353051436772561007811220876884940708344466539167440875394850077128011953670107945188715410032338361735102608841024130940865061580799675803254231474399472173014456219523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26050002703073967844852368738460259885592936970885805784794190237655145788689481891149490183979569570242651588798540897155779867873684727843413841316275737173221003060601346034549517194806828838657161964718927686004173415489141289628181146743696688344983310190803717146460634506698488260006159614178384962882878779496787751389858326213509095699817457554692289837331998172545344323283608968949498672395833467997009324041813294861621057857180734419515614819352679789471555432141940566489005966266534490665571752390115558165699894574711651354225407841907153539170914785997781463387444506735416780685677272456338015598413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25864044021028436360857317975814945834817793330952185948478251511717401263073022548982370100082303643619438069835113633951024777436300911915425410170561747712998258591742855398119407546316468317954910439230322313995694558038149981865200462698742925143799950594223300440089706173599970930440623926825319145324762278635378065146507426551368230817262539518051391787543976758244261036239010183289470593492895090411777240987091667174366468144814011582223786383462745863338483041187503166281071145494990640180949504229035507614786323882987604789830240888559920000520037593975128044728950476766806111077936531224795251603763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23923149067278838934466123368726464361985794068344807312134621246080967883416613138117840861378003497821814588766689551524116170067075631381292825184254106949605279713543660060679552617895037644368814663852943574284945076178037141829287674692149984897245119269296206461376450031437208014421845913930280558716478470992268503623347113720976683026511045909646659191916860027112427072426070263045466540766084854117735361442849987519393796169574312319837226931593386937434979576496737141834184213290278826478598679108556338358315422439675539471636683159740005283652988919224874926731597112871435884967351169099885832822861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21628294822446608814050171899468837969278983897321806514453956926115700507147825576057717862564923450696459898977230600383184554934434079452424841301589529817383893454280417346851266018273332687076297612160267596929160670375001046142061090205741768212803630733105227508268307358635585674937573135940221363396783674450801432011747703024433307531185690919577214599991907867112045100804953605952157259143348423614398379304037790804661315758795977618315526873806821061776745035272493949406999290658212618618503764284690192436518661765384263944166849004156634418310946182275159872792831050811761026189398550171307467761929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24609656437190862991013809974080232194448487288932653071293769187376309682148250792966933721190432436090381099951137444180951919131643831073515931649414104800465714846984325566081879540228595365340340132673969795575709089232288473182845347105510354159358752202831295833885247152424772858263426631198318534446345220141033169923807171858957840025694128955855196533310680866167630056611885952345919378140481767465692841118987185804112005028875245395406143897301317731292963735413946479356532453928779001079303945601751792009791984940190432073481123595772444409835014225498048589553599568708914001072712920450515789823051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24120578297927680475226136214118830362408321800643077904606579547190222104873156551341212817385930301985560415991504638741016467397547579898291770822245772882523257044851463381397122761854270805367206425531735791539295311172106681256608377993199220853317228191349749581933265641336955247957609380737237374613264945690014507547077228591380043276947255802296345662462691918803049991229573103880001315824605388074435755277895551216436005131210782229479259750196937169629610655141069106146821927995721914270868728416350190083090504186140238061051687394407278043564586373599655977097003122774774271045331126902735641203257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29561334518000774933884886834279267093570048875965328790948435187111796929632137142782446326085070668166239639415065893039590422304179225512136710483193611282699125867980492151325299342690085975304079944758532287527295819924827949078961673660451257496473780751827074880604692480797841545780015537060775240769612967342645892631824172554546390902304734786126285586303774552429995229327613016676072897341506684782864914996964590677911122318695581467361121011608496552572751587931626035073787125369592169152237668429793240200732785875927649434517292112903036910106160120294914505314297949259145197267674413811626561888827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22228306946744396835971303432332553035315421423184053090753492461008062201394481417920209945558310771546551384071434572714152989190161098752169558126994949692164976865247647412494324679474073878493205627811946968398163441278658924706319324072192208111404738014505865843918360249729137649514233048433058347099103329509530859215700039964772411441674824339800688357777390569641663740201502977305678618766726075110274985412010083803590068602233324083003287234752227198124405388796894383524826705817553556463518008577063699411485767023851525099586315604188923580010851979523139935597787725148129236955188112888786760624957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26555504277468813843989194613144072582216276244640537019478670259573874291245993692784564917646055810439185540565074803622196191467845166430508686064129557663730805407096690445172663052293398633791673213100971514277996834242902798682233679444030545429187715325779515481919856323856467654076601724405149728894985113527495001803539703477607560380228358983590297100600890860343831946304513333619745499509551522178898206855037257578493276283991700527087983612728561280177809796670502466920215868645543090120478187367681901846445509628790712976562435816290325226021870956929450975192549570363503385222835172133773037048431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25363211874405803157603944804651334319352410582426413388921908171488485060821488485888115602810812445726776465262764605840049069712605624948439716811286473164545634616688979608312170691800678625686449325618900547891482264284297347115926171562751064516559858002213237881584300033280002588859048893471218851228870925109013090628891685613130088517125783679333338919378274867332611235195935400788040696183130303368708064452915403641560795681126768559939867231747616709334918918007498156199666685949440264862907487345388604381620127172532195128266226091976359138725540537761401981189855545471084290854776150556741624161007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24615681484459291529079776901526499031895339826713703047906411707169910720272676561695163028871308347197668925420815510266705657348851115283420192950752096847737921984488434660796185885534444094431415507344217383617485641160690334465894195236691321545011163583226416580398164802701324672182197848149085018569075489800483399415608731774387346043947063136595476012388512332120320401062030073624222132661789463254644254172874703848372253318564384782667465796813442909748058858097133499556163823959622175933162617477980388065422074948130747672265732300550954509228633400823868517873525420108384629507254291672349279374607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22333674365983315761205540121758173855690112812221556504963997570069998617379702875245686813921532928371676900310834912501327329650405576118680565423767160684664489788867923078556904200444728630108890412953921154654687617700160557334262689676795215810794989183277291078002645329959742332354172009513923896608559963102246058146233931090326433038544682719575104759174964016041269235582058677619992684886462753665374496082072981897506105090581075631564605528757502457203403700458226921666124496044866439444126293952010966584876015527851247007918526449737485128865608930444881256468773156704346004066168790127649237218959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28499660386663464634291531649350025391582666103916583763433420071287776132582323108139131012632011050982848320146101703188454497523971236766495325388247341350021986553544097646573046549422252544189573329501787079064084309649032506175166785582706273327544188666491982340593716418760767564293543478822172783238293797265397104748071081546935388368417517343579477647957536297101415467600048285104933249797717666106190744353109420650867050976913357394094653712555147938931407357455391203396737940172438354010958568417146384330718763160329799591091125436019580467549443753045633023891412612719730796331103001309994296808689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "909879455007090103044912749599489361042158724398822511946465348661734275918812063756928956575369489706030988159784575852451588759251014418851224266903703677991989400983901866251644739598315424217551415235539685104001188902742076557020526931751024290946156850004990074152285948699644180669881252992883485547112811315016406563747188368675756578503628157137415219837042345218561935088654439275598615308424846991036078045422667049509293328280726313550935330754387100889981836278985573662160975663850866362489184445006914044468728874985539686331479161217732090611200036327159104627247677432687107470081355876972690592023877921881941013436116722119610804015363072180870001389417568635048270943598820116621199673261926911046385734141068807132300773819415030441837137119699773931754798919418006810008954860500337486876008838136458424744036000109645066069297157139667235719451932270198365651444582229108515540909356347601116468158452823276457706760424795413706901344759221321014885444469500053203475628330144799348302931367844274509275653110201230772900929723736565440343199249680809540394030193279550834760518773466360896710159305889036614172270519799433448674318164205937685321323263524646444779045244936924980208238435325406678641790126489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MA, O = Gov, CN = CSCA-MAROC", + "modulus": "24442040648549648007565344876027621097890997718533819484838109405750118559975308953099653705981217457428444362727883472314370494008592438921994390977282261292753639463306298890716928088579631506266195309322601750973716440938230083809476877753232415180547782426540678592058029583275212638118891478936260321789869726157014264064268025893992742127678533860116031085084698148060161725492480770302750811186620342763661357406329011187796602445746219466510313212101705026636781803654325616919435377056481576386693623672231442449323234289871135931341019462796243557665936823336857714487642064929414461496207255267559918721089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "20755573889793016454762275299965249971003000154043959139341952823914833334985798764166663947512323504873450737338345698251642506041866825810807802686978787471558737521923452222862435556798771563839735103825696848596629183343747801855742275265107427511832356522468681358886855724315536270339260490440817261271250920232639784698103117115819247113957410129624734680464672901330490610159298293528567385479157447058053898744939637649878007077431155506058047480471686199121725800126155375132133181676778372902293839648325426769057166034566792367482647645303426044345962518693435082657418675794014984992344588439040960036907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3592249617836299071911132744921989284838451740595852057058643106259199558462932538242420054256299315078136819061778466744482624296447095252380841316591421248868389780920244735455315361480975060391346702891505574339951541809815315413145829030529967255048129503197254661594854136181427249534148181368274701917131118258665836010114634361278562428901296104539613427021141907869953240770008024140291226746242682894249420146738655301191385501599561172797014318987477538673352665515225187654192407053774090720577330040811945938655307059243442548973734262404126509180402220704095801050830949174596858604975197838417210516467014266430399357060503154929286767722512740461277428304846902554469479620881753908569275917538723227111177756494687747605945991291502669664675877584107253497648291313933755439297312927395137821342987553248634790856353368770520949887991516719597805912834831377726170510253814204206389984787129171768896506182677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4740596922330551282458675247343946389749043365988152239827874446666309438152891350416021101302858228343013042581872053600544577931462903741823934631502430342961991766197586168394338819352448771402769271189333468335059915839795887032512016476262416444922918166612573980620439741592936013302755835068245551825365542327395048714553736668186122366526341973382491985223662117008452676415130832415039838205656766864439564972549886512881735228107140837346591257263886006406394763906853655173779571004626538075304882629499580198908281382171119743332139602071253276820597643166816183366165130520769957670025791771900102478154996911977048928275044136546998981947517276680660117199278092366888452671202124200646548652087866602156806922250098449455018899986812661611558203117574812802697881765890021088669815884132278925788988092569245243612134602936928801233571561183144384572854859964380676047669687194925337482536034374409495234009601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4494172554369921290824847459378041081740524249392904499554747294603153548530817849880870856217993691836035547672262897626407118678118417677142928077226715726504437648991364022945331653586708002060829030573815877218682141565824209486128209207524766716655921206717236078649346620020149150563516365760239848348396782216158018173453197043382264090571247720765912651495336115352738320948434296099050945324081154331006411250897569983970772587155510594661914624947765236061976963225913299179944565052102641089246890716376809625377908546202642011422703654286550050481795102689862278827967059940616544042918313527634685280648247133509626113921651921647686858517811012474519061378661768258859206872865466124410139835120659153228455549721633152012365309587167610041586369435465702887223000935800138628621619941541442687382144455536139606783640739592222122962615091809019815274661817581350157113474994313232821607414264837514575453102169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4420350450468744078453955528447344022118196119415155169391581384615594018221451112704697958477048286753080933055806230539999600792561232434664369520777572266837561390166127584888712988531228845500258807630865702133629573728319350368854384308675721958839326482099610646257225827227036934193762987767687484091024383913475739801852250136890218569417399625392503767858220311833278400159658179740639487749031335018979280750652948555985010481908188764240338616793756205297058933699982830431562616045338068332876411273799597801898465217874080073845518600253799443262232567153121110155908911557307461127899228526500983835540762375755185886496971706962872821776557673449591659290156190037559162309204689665299984994804983713148355423618775274984416891608977369385864650380725211684705440153188883771581553962126788655295220214180750369207438572882237603669519684002063092784708345640559148746324269982540837739444054198370985714219787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4634801416930823986793755060493657495441273560848313590309713946705046308591216719094350545611477936851348822083715154687758920784037791088622486153867199462540759202466405318020771459671097176146983817194017678989607764662366750844678255921275386330519365643556269675717460037009314259981137460601766683823368007141529989619134571619070163100183890378999160882051335950232805777006604088903607710204401460339707011996746878578809528461054857763536458332184291042765427210677099500771643683807645557489827014331770518664194997176177054403251447771691797579606628077981779981583515910569114914558778866835496476392370072975656848031077570467797186742483282443917650507591905545145919539082178947034974928075315318179803512331940098757000264028606151117020332339333463554540798247764068207805172681916217712527997444594925916242602124465160401758774540690511236855038668290461397171124300528391793601977032538187129469540991453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5034902858931071731505737073003915785538238871771931242748305904225338184717250356853221922571949615589633741588528272267471534539876118161321099942738159408244993620985687431700550112927940237815685703928763087885974807718387187439358136322951220530478516855332481047958765055853940845658001330054085249031447587381293259781684773208127336272562022763580268943070797925248070332735498250467031924288312555028863659315550401696868578092648645903305914312914057518501815548034877609628713962131368816132002632748346109507203652485894295160324631430179880846057482356063618754497261811145521131622963664204963921680282585373581931684430518366815948434127387969808592040472325450415993539822319564965066330234312507637298116022566812433990782408489662525789542024015957957863765729231764182877282384354214473971731973879257647247227524763934513557288932974372474008334983153551585774865958592877211719040235717282320741718805003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3554500239499903515396568992433239687687850716165670438597367626229899176610736220361462655209258185368170235029865566062727700344983403748205634566931799153705613383782556595742310768103337508696890043112759766073030711989020339072072346342262497704885932186531058425258235192337780580112347309888327707257462535986087010378686827695866494985917158847036088186902495149817314604836801961361544838043431144215292851434645580390079435580086263483043957546272051598781336885661169897280426595456190411250275613573940438784393972707813173748762857437579525447312805463210334158610626676739400924762124601407892618729515996332745928106299936833699928422381166653021615845110893958963481456022102799002291623311822081177401823504882626107074385827688273278086271761109463502519106425169860252538282716742906567323349116378709619814270050490415520665087770226166544168830919676233502801843973512025522388062313185578116464901847367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4427092167055899063929678513311134736980343756334427228723789085133603463877203931919592966967491063803553872901219449317284257600087852223975290786023165585101891198144677798592953476002815578580851416541557314055713429577506954152942643270490546896688280250974328865173086793135396079102069185440043847321471216255600104814039778599354899430466250351142378865511839775897041748835959073149418855212950774677431832777584003731144898780094885225825337149572296273655959991102213259634081197516289909663841228047923680712609218206602648556175319004296581700043739495376360634477390291357919816986264447916992272962080865972060370941338160277396959107080423324529777603873238136205518291705035278754729014449960541199701948947627822482703077785326827312715935545564227110284671366281588671265320971840081373656587118501791890970288018872070222592709520023880444747760234391338670548749872804620735715301594076090758192678601577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4443275045904290700143736038836561019708832453663429340356747827224567363881103932620638750273866297663186401309779065830284577423797901930396514546289765110557474929455878031092545503611681192768606704492096168946190637437038068186591427947115510869075691249854054806932211643663863441263624681789044931103966495662328046909235733937007844608145456179638196502833079344408156816156790160818288634557225145089426793821411901720094414827065375000042790066298564878225802686317616050770942724970094453473352364765895282850450478408962325052572632198178158394274780761585841502203322188729225561628252197226866580220186182660765377144360568616328502187356812258794670424990276173008726975355851755261147135908707504652230085634302224681503156690194141673237366955538100266263502144269351830091009310255286168447518428066543061452997246502826796568326360787078398846956675290667967846685087262950227839048043617149198651561261719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4442802283657297370041570548905602217394167117471107101507645689943208624271878636622605946979325028327346992484310230128448691587818343867270766007483274362429422938226641051149896854645457390454516207932830392549568099118052190051772284947075685768941880215812054654005501503550260336858159301842616423278952740944114654777514556967956239550236418732380731062649261193215786495705802944725096980302000705002718234885788572423033057509151541504495666872044092094248260805061283672271876056086202982137783303668862040686640829842317019748650692254204220484515657082393111257276130158720285533208685963417917130937774564567665132891448367201993803298467165827146029463384404931238193109460665057662597354580641851452346174273716090753714574921443179323035483668550919289185542839464317859100658712425613009816198293926437790395223975068898398531271199071621360249977894463011180790342779419051405232233400274508645819358629003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4325928595839775789363306072236989882469204967198167187185818188544659518493715219592605122367290261960068911751604876028780608447173439493960072912682343889634342611662350313766810652339918530664747391782160097057468972958328130904601878234702564056193551696591033819274343997122689860159546668327840578758995842679520324256647506762814715398102358330468059882181091434503839333284064391851535779744575258547598174798869491810120990856313060922499519300380855637201601954559364277900723036457354338042636953938392322864895389189948415014646991215148446035556293705116835325403175435684726641757888263299599624762829619724185206154196228315194946526012391483232196261226280398396787397075626278682909536791932805404940641028400321382733702691882830939468545268742413156911213259408985900381620429301515027866448364267704926212966237927457834190394426354695142821461384494595577093837361265256232976953872857659351888726064233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3717070514380258304984934528769799836053969726002669928144906549435456771343344642013234571530229088072940559275524871942058688697289387725381855848843806477436427291294859342618029357196299506098825830062968876765606376916470735207509966193344822580649507628734581748890865330616873162250409283836147204211351735882062379145005179909258958671102975534248925764922235169120481587721807989052483035980988898355583465375735764206111909277476497403602911115196747533187351439311763098375411203688324863558720730536204709263500808652263798545752545625289727057177387071033946993323550095370731032501399765350834756972415018466016325995340797820085311819397186925004701667490046228150790698090559772858338939023116464950241642929509807719137618012694780829590898751614240455530444838235991953378074515715754181036152492659507881656002004103271808766941720091128018420616948559412290558314806388436616342939887750142935567002719659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4819777645652030777322976280475925446041484495543273410687507330872496913523684864437998542500783894058201780715594557298664337550373330126548219284703572354521959847174425480139370521121442170388619224133535796445859733005130715735247198793498834561870566203341557655859619523810879538509705316852037488003066731436791706410273223031859813124623659496568550785568639383006033961704129195369722391361093153382584621476395128128480298695803226002279371206252593243417358101643279810767969643095111118889700975080867383578743430324057445181342979453889708618661538386980558936090564600536636029372745317169912606673986333535265739434227808112898173080008226399223928371933234593574840874302005130835876394024026607961279160224703803686599442614008218582702803096232724793934449237917070316756437396042697327043192511884195949235209395356383857684151798576714901935210146083792657659629587448982373805642142356020039411803119117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4189190082253002269557049044528665572723558050796417060124155318345609821887305569420324140779555139033170947387673837744226865677250612702351676042360771960980853757410646500274625185701957598291889606073386901945583106879613268323278064503259855799801022376504229970650303901670894089287157921873559263320059515630727953631266547691227505924979674171930350229295918392226161277852540330907844162656198632967278959297996307415491283130561923236218761657752140632414229920510372955191201469224351959589240264907573823710657884561491905707181340080929295502296818281387616945382624578810010352884800631433372509164397584630170936345952831225112313521853811752483518901490825207491344200331183749253945484058277293105367423021835535120780710228719161903519753572826659625673650903739221757722842998364708776545148530498565906595314832422332278084288963847199564681779796670502284608722470426953823821856022433195187400183099189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4341893844907345076122022333632051140866475425411681298773813218797347622693926798333585822734279709503324617041267520638903391991385932070327332421165054568860763430646210142938245350574696869986518113145281590371438952656828190522395906139391441763881726329456391077445707633846263611170049875786165734103112163691416545947551721863637165240940454191989968629815806854870121439357483070839942622499641360015375102994729010613045641680931550959294241435447785354843923853269822787329651322487986227481446730692251717664699138299294404644461476562031831413547070662271321659911265525512280112348928383596279202751188805873664560807334769489974615879735896377437411423716650172099752727846762851220053956330336020233989702132489877310073102910902277042604661661843266289081863785493229199706562264023256190854925267316605457251167845611029358439270546257496431853093902986888800451628975075340212939973292696537104619456401099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4399393715630212511577584869790174220408477003002071050326726946859807586231638340787365516180860590078820947213133898716373037203934020076672738594533974100650875138695329568104081551170420457623783387498797725561502366349183386686363904851716352070452989462970944924395262451806274890600407625099348955835568305621564217845647747516269517649255636073560257830602492089352552096523805670949523639963345665873319755380995492552276608427764493869896569570011734144053899325635086835338521735746755213286529561155209398125434789181322963062525506214250803936164573051123704126071682821866302802403854499911521978694483323490254159921484458512583963429328835379458514030773071207437684892022014322411578500879613649780716677139938697728280952150053539177511467111352648408984354194383559886942831236279478557287322679733341685660712148256394032069959948420383554451110259175860248364737727117647686791721113882317886202881493991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4105578215798043302495569838286157340622402234529683721774304865601024871852739455666831531637790316657913393624430586941872251706046243031531963185427178249700674908124011792499701993884006150271276383418343739121862239577112991611614528066050465364019795392316778831894691136736179714237876441363567373844173448432748438727381449370979949114554429709085276199812264087684594905970804130457660094900777260173454480011442178118385184184647630315512944992916154607157033555644278380684904968155922839493748194721464204617765333503016583809895337477470101166944616931739229300461649492890989823754841767318006387203299715672659116384279455576919070969532553630889921793000976959189936359211091906573690168106177588914057978295800415704699991966999121340392509219766561142877709322269862891423229259657747636599911099332032984737998773403353574502130685810123213938986709036818704591843607844875566654742220152809446496187777043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4514977364920012758103173672740803018946432229186061596881021172032663541698856092577128826898811670153241396564845653551926010572595824900180761268834725390849013409540443230806363222021836659996604702479619399242045374312917937124855136828142539699852231867356986433057144972374856410318155720334950694926810773775319993197577610561272195195395054557341136582228715101624238750350814090851530330339506831485547322934717425041023811700247292272291039044672825992544129473150470662089235394839789017279693638787739105629545095022645888152732339640088870741659860286798261623424950468785291159382388620216960260689466165066471569118862254044775743779495757267499121848424205262285011787961688869512325621649200444648237643830789602829830490021419620290766103537723899129177144662193347582768658787197267536805435239692913064472100210532386115197482974254200537507512577423601437880390865678547938687993587509848939293678130053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4483467325855718403618345868477031201989193440369911622154553022433282997974867665360111543452940141262841124157865700936302749244035020041600755851999499089196272502299083468732705175612034696298530416112525380329209324940963166144410823161599424444461761682643325867386448186478654409507452209149618978425144328603460015702571699867564024994073835152446863854979412859317057945564584425650409430567301452575053743060260010110646962543589644387826820382927395311857998549601024578790383463216584089065237353284048373986951191458621803830633948396156974224842060092655838931823647114895282622556650240254667232372074027353538984991843479922475180028652597528425283593860158520968867842231274891273801756722324946222325825238802889694019233060505313997950392484077737419363189862632448286124555039514475434325045548294679742294734232857045788729406998828385554914607668578261437736535599289065945498771761009293730392728209881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4225084636458034376437752367950952646427071019058329709630030649214388126092494618127245327474151386497525954029858521867686807968176850590576408018473326948674243370559353062637083677513736507875972655615940867725349675420344982528969676059722424598717014701689027105549894198761840248430968667243917252039228677694795922718767639586223627206174992449450924731197205229450524380187948481447666926206675778174205323628371920650919097016710014037503878494149392501567871162787468041245452563455692563853900307042613936968002688747917328342872629310258928978028955844370552262730697485413147063081271272957775363184727983339697279631428336617800923992153273288723450655461111063482450185356053593145355759250721431269435125849529561622725354233377082565069311129720982568414046618243787325448079486620565706462514868930751536435565372988461905103093884235390368175036761543149059493168136503330276481453755893446584080472778547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4960262672558526830560519714393200603167394670469434450786042121999505206942805595935825894365288326058992225282860592859584716745127979276798772850175839171181337562686269199563663390664851985937109224237817887184175192967864137522421895748438701133011302162255906558886429182358977900240333904440673948670465297746924451452251347254337638492481794377689945631319081340004980196757637696619315217847157566303832915455096341322262422333092219207043622090608732193856426413828906280351832915697130102904963991695499298303019512479246876787952255686858107234257079980052879693595874658359362998142073072587767896357719188885676500702451777001934084067241353473217199702835402127687852999186825749737393730632466676602002732025933459686492212938396089608439701829623136560824004076122374155398754341061669322279291479759198654553432309001996972855192122800477334784341862133566307832932627292323718982190913096282694796195217683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5169793400872300983052205148151901464592056303897188565261208055467122004704523600847688558842369020057392213107214604329861107102207597633575487069042421954375400273026380368800591265413825308109916697361789301160090190064938221882134529675770061422426660372808473509532580128566970415268972323483741048553837545622136491914567814811150153879422099430075606231064197829200352087735409432318506740055000765535677848821700243345142736669016658929836416342110745769959214565613359214797497169554109749189552721338636031630062845609958612079099605146768286911975005091452265084399424171487506343805767395015162105141744047692389665152415882988073057213107415603526346011635128567255288530885446598200475538998570952288374371236470983793108167270276184993702228513423087575924752962944902950544107191367827831533152765467457957608564377870505960512136241684669303067557387706422520421462766925329395815444430575913835848639098763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4574064433589286000614089860737511634161389330756756185237006000936625873381915790771395231591936138834464062793252369471059995979622106798838130860592595727367650172870922884687583953591887288376395970726935229450690566685946086944209413516367879120331985694457224981995966068923245231201383972892875830441335014646371459753329758060719924560413394067809329872838609513058346734654173330631782139968101291033331852756859118737989355827078863507897963663771939155642066814496423827166070726440759965176126967741658256957414848983643759138324540903935646833764066792016789171698797802824186741056042874185040492242002137683818084289762295889335890544353700137471022375117161403694474776926974057739935661979793610955182760220347485608430522793994282125641585621244311666693217406209965526276806773726080470214790471566723460727083876396166140747759998952924054561234555882359043384610103194740104229177644726021436114350909847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4576103842783105561359535783102249288283622436365062403326335329976049476533759791566659765860402527066433709970152499125386764948474853444142439020198341398551501721325563289764088367522198935161435277627761902909802731550438230969164363038615827347620659818158910188097200792725860639621979329419996557564348525214175297652046264901933225489034978758098186568931403809610566813680221308683195981759050319642869841363091192691875566985310821145907301938255559878018312789661044009064322891647323865911964861439189834244735815283118451543255090353919384016939025597279367320536711786878958260363325037384849626980332156288852256239959123779939622609618421879963203415404157831289695535792238455748271357211155071707143324667304810823327390710891325492530271127919974260653028223052061683332557105345989860974434654559874253641827752456647109183127227871202243650256662989053188540096405140051637914299328523734409439922417821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4957181061502699506967028034612494227620722277481915728618753750587005047500745547989106045181706559459475331341693064121411156153410555538493690414431993737252261314093579038126239085938732517072112434436883379566729372298926168045726088811354095296552048423008592841006426688607178718398494850231266061516280825697931696785790831806964632956591086979560554982351428887639276115159610244247120438164514175220050779425805393461305460504374405663942416412566832294858536226964415707726689056426637457480645203528405618124425646871374747207047794264551571104488936937508704457308657575009221699296304049241945910326587752897308733048311375992320205812192185039310846498823837095267170769963492934529791515042757279520590050143921197934274501277479768639832959340646501904188551375558230301299650531611794059198550479430665271225368305276153789877647865682544828187995626804881318716459342781900869351448021778294251708466979591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4633533670900029030536913433264115233901428596794675750509524561643104918486853721075064392108048466059310027711032891360398691406013917960391621149397538689422916373359230511868609264834654646000436506329353462504511324192347106652346680821732942223653906608769383405650744592544132164759086466986009725952871005251433065920866700063128926701923453871405838836324171939860855840485978782386883734749556123051087875576600490338846363514756023174428967997956008159185168077405157314937210933277277824497506292403230988131848747322604970615640731949587232188539763482743577948846690283093083321846050420703470781090724038392780931251482933646926445096839528663119551252861168598410784109536458586178687630656269383509380833828291603169011592345611450382179179716029430757624204748360321271873579341595583194637583763106348131320100755907264519214365927033776882720996993653347127948264321676844776602925872992598684694099456209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3925829198165446251474449107520425426598558674306020085030927529279286611168986955576465251270057797039723425564381078905117346823025799172684742342376045512826425197369613950120713424503938449841044704632287267955106367508027092104184949016804151860871159978134283803127035545386323786585838503562163258552570647609012090805121786008840530947625612312127349393468958557357900070263426105361656724079859819686863703318366574661954514809135200234894888858750219049487852579178758092448982036181936751306484033845456804842643089996167120534309053736547778484230014621204370066318140765792506480871928801851405353536000109946451167954221052296995396944702335415966546380913293791531101650969841870771615538943316281550761609563232709193048130158039677555031089925157996752354080854272974834787575653663755155125497079443981147326832537712642883693317246758928002721977330480166348013030936056996610166719781234134610207094467999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24788601892403754514737064054034348", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22236844660251794691573250369221848", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23126060592426960199586726634094181365245845002496425682800479963244935899922363633908570584761172703618633614557647119363751955697989974138261931702930123393090245025757697210466275803874322473674952744895881642106397180386465559485327826471479741577054868932082553194604227591181549885332825201055144210851683231930526776898553306502285446633023941662272746635377652524780864670309347087963701032685264637544725058372643897595096142135663178851492765799774205675335598493614471568543398944844824597740463276089563849347347122122890300479809243522910384379529242404741778020830952078333827060395132992283039944733319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "21493892519848714422790879788063660224431147389801159805549902472285357796568778862347204610885474925711622100350761607709923954366113219297213701877005783393685593675472858321399343889334358468500952859267867622653681327160959457004176052801556220915837353134900151275092199814881123012817526069630981214743127462444789977221002023348832025433360156529699980330801322692634804519018869982674716563997041213767233133708372962533641429047666104213216746946815391915766049617610918607024332549871816806714798094516355895895755946396544249081365632967136476685038836162081364026846515819434702805530156072874003944959731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "792947649312091553582794290203318683409417520975426650555720018909428172756274338244035221043188850418780291396912443070425122598374784666599705664201805934994303976385904964382725057024061231756301050830514868508356205298567644196681281229023141692808867719077777006445707356528600975891664235423412459223519937271838685927660172122312524973985269298406938621953810306198040103794659953461994869240347731265966871363357196025901269382713688386971976834291159949904749501764491616136500618188470603973248352539343863879167996016950463995401487967649073819442052327732180095825251605899640938220893600525586968686343347559437768885619919255073221607430978837930811930692082328825195058848052209669593815319173710534693815275161120637466995471614819753345698784663460526247792083531609458948968480051486958181324254126307762693094675830767005024260009437699064869676601082926457385904041023219780416431553450861368693090898297306775524903633419343894686874564553405932912062921632547888500019875666927430053175058275745910329119146444080706096099265729737684506253142098902153053771039175628358202174119196538776900551611022670088397895654570882665556866093342144368164521191153824225877174898600324422416975524840056037067522638532443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26613543156808445039107710009380444944277179509501467486129538876675789494737616972284184620942197878115934310850294117655473902938451953487605414609978438799039569651963121775179179566840553996806485843014423227428568065460244428024313451630416969796748486376929167576810612673093938102009702585329412539071109680674275044978800402432860176496084377670645491818564087252947591695736331270983146971150615017776632195732781940460483733383260072488873792774595741805152608559910561007666972592395945334431901002608184698377334352386110363965804926360372635666538787123381684490430723876779285705741127407185077025375311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21835958110071862409987724570717942383047150537001928975345068605679312839552271736455851908999686216025608963716739873165877153833212661422338141747013278404795028554844821608927263619991490779212932076204147272760862020329065724623325027983842298841839785610977800408647437562931919712340049256965596293141975292743176919297436206109398055394724538010645287128866689768825670498088364048777557918741234748630822944634348316747656261006791035917791491815531688110383465382941127399514597165547622986464684120468239000389251598775938936409409355480724278358167264761167738820460577846649808783584653110527380859340123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28705657298427603978639548806880653580567523442850258650494793390268140376696748092932823984927586921179449057210888753131643043927325250094010219221413848448102942822521716989494134530253678172044078333015405487829695211061958614971969896666164468073141049441478932701081513401914182441715737232581683867404283915769378505022888067729016804329573937542014231788296892019320940236752179517953052713283711616675194670092127813238653016874939443368452784081209004190303534408250152804350720965861044446065801183826957235730910435022576910089326512738763611664147166898432650165080551334388075740829214093558826843280437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24474544710441451869626754502006138460682462901971967954371531388487888865438278166191911283487800885600999693307172363084451712813894640463354574953906384757513466512939008523768390439417164544453593241267086223991684706775768299288243641885480534297960617681511616672743059827708347185680714556532479967596511648083457050419061055359314011447865696444158681021736528350820887863668205333765634162983563085418757504815710861520946387527769206619860985991168009771212409450002581059022674366831914516399505006968798595111028687692009344813409441320176461173827517191555038280846413094571516382302697362022678571140717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28612540279797302732319448410706981135981528057762709160360308519466810078228610762742613238355550630675990179797373034852479633510154725552897200454208860198668315515804401324947914706062146212694234115558689090548267585324808503458146937533012976453048700038642761916683616125914613399514903199666265138142150258106167479691076624613824183969992245638179107712278744616703592923695217063161115363508522699952577448582419098650812046535690228918903879245272417705591336808316772006974165802036380832453654133199770323735974622078448561573685031744753744554106727622311066463962445808522149136020275750232461462155403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19595596571076958803601478721960776795117683630693799860868073894559342328915313463645842249491952309371418701347733646896054284111735578951023949178813474005144011624760511388929839938175786845737839014631062675093328116816992967604913378869943554383820010162136817833914416433835018762156701280046469512442941265925715812111949607654174337290155753477067867153483730345855238549956064244587289747088471379796475073230460935991269059048136681747387343835878886502543271071908332375991825477754661189086120158076228141567278053956764140096005598882470390585667193241222034969922238680949860333973487556682810255501563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25745958235832358008975759527702777903962177235258789392537814162663255750910572027713952412592695517578838111853275674828055964854822780913175957958418183023290811573518632189298269082749645821319880529978393119335179790132370061260853642829730291790738103901793052539045182259062644388711414710181555208797138187868074471518782970997441950912873456207978899165368325823550793771306159441216748096441684898036879120464026691165013110510434176699666144644403123584965176886079826304967215291583804173253728277866255377670730549508099908045274618503159749711641426595820255711313109187979120226331354664744767221773451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21870256007845311601524666857756208404615127163795311010816573318915232701667742040361005306060748417410405345137568920075336363714185111448296753820688553867767801838123998778775698279389405824189804678693784194852940311202501042457150637161266044822320973550894944578442335726359052797945166871000799319706771366715190994026675617304547086420941277174542354204635487559681818402363397496724927495609799408993646021515290208818490685759562580001460680609023507972298643282095733425710865756883870656125500829042702019234593798296458169935740547128851982269100724899932343231323360980964444196817446409730884608580809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24856051667478398801824890261970841730493203399295647424295628341234523590724546822022219497514836074503189370860137663118351260162736365205899055732745721286696075649522327997534984628390017782123631692322107465119357227214477235874580910027636763433735899306361261066039103237501609058001367179860739910996178924928926369674706576394534774546209041823808210946785250279586468863194064933898596815001238917741268593448422305607520819735241144662903576262735531802148082046333694904797058607798951416760807360694551095321754347638323638378639265669385061056694898514108045622315362753903892914499759379707958193582121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24474544710441451869626754502006138460682462901971967954371531388487888865438278166191911283487800885600999693307172363084451712813894640463354574953906384757513466512939008523768390439417164544453593241267086223991684706775768299288243641885480534297960617681511616672743059827708347185680714556532479967596511648083457050419061055359314011447865696444158681021736528350820887863668205333765634162983563085418757504815710861520946387527769206619860985991168009771212409450002581059022674366831914516399505006968798595111028687692009344813409441320176461173827517191555038280846413094571516382302697362022678571140717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25881926596992116619141000442724430472010687234000330294398590474215335922912589749358417158878114186902806440296945981198439350926021850847361754048884012495830544710982274997321540148137843771977051578860108078867914364551573010851057829174943896945081572754656420488771382962198585669072372245510719096377494698197483346193955932987851446099987934128484388473709438420543216956022181301610124550849293955047019429703608931889846852345438019802704145899023885321685021191511445611969000210624455965205283180410794336199499351997430494827489987610661792886153975291953969848351352372333011664214087374598747575989259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24479696811488253038891508869711354160619802844232222545190853070725826877342373192363098035142401595456591888972706720393017415243065385376346043556704777655569038276106884097977789485410350703925923907351204112648792948872385606816029955332629322697067160404854716103474258636128326051641070199076141274338838471257050545238560705726178000425967217090401537441283189778288654036652709740186324158074995275770607341510319698389695193997234729182938643597574945245138453876673981998580827018132332634803605511733877354304308108726940064022480423776723413916929268754383980309079762120395907823646806289695072801292497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23869367190850696871429527866106326183877615083745177513682244988431328514147635325171187983174283462495841221169199529382268324688701709564787873643175633993367103074290345475803428027500548056888468273647093523954320089235699046004828926407526856176927865772232781431980055878750673230822981093325815874483927602398802725021526851813046283038754458380537168050663083206534545837280569692024409272942983525762375316605835551782917256129137636336487241644020741823235374627735475190364683100639399543007254588050434021821963972345608621775325324860269405794364730151817347639990816007607984811749882750438914281740579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25214629189732631536509719298468840625706605132424138234708700665929522480013472352230305354754026416829383515172014844267707811095144222525867888544855885012588702372800356371720752858082359808111683854178398760276191635797690786200472620169913052653211986081385066668077355251322283556128110263779460877598147440514456136328286154635723727946844060597433021368181014046695358295644549835298219161235589492667757653987223301378315114760426493487167337164764784430158176450116958226826629603433415041287749267679782910019062395317319063847362554479157372068303505650806361742151203070083304993809677556756396566569639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24867940561223718559963176340362834653492257104281000153228187003115465350400407314605434491321371620147161861242959538997939504460979539992228616440829418073783018739506720729766254695035812823571877338827466773817465509322628134606148372410282738584866323641345598236239754607623806893310447225181375633523031733327745365723993395288751637940547543599229596938484292374471512289621164099457393876297168244710241064723026933468388073532707323760588201456014038090872642220235608391103178256015832087394011499352318941792630168312757830438108253039847851795497305791697286230842067945411694303784993891483173923290679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23772089201260486426931759726995944560616036373260833651760445033063708528308824531913787586320300504028245510757117485954206666394128858960289612662599104969092115935559117441912023092768557421551033043542972315837572157613274547736457573377786251943784585090394557495615318616842785814823189195334254779330052739242366695567791375117277594839308304635224620072299849469538026989102328148902926666602285336128009925614025565903023273387528029042241792339190322945120524319078333782345091751480021405455860237269718941179014168864362370782097794091444027273362216376991387878648577106787536740511777595540364405454103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26348285004647677665983076192656046338972997963330368714657597174765610380327866861099520173594744220013269202008366157695968361873335199441424360831116744178350375678134231433537167399657593281205944778749928091053017665403133620378597223602125162398474664648111742045882101141166579576389761675828133566191553851283370588265700103355118906992318441876937038359633125276190417972128652276360632334736550197394518617290779918331416728823951340043391951341051997850284604328164246745752662841159485217515833653837761940354414422792811031808222130212950851811962563642086552347952293582552480014278881028807129677836833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24043420512286232846797946676732069781779195711468624921687065671418085847109022462237306063363067529996397290323061745081463176230488073276405242260975932826720896786035192900545497081005851420934904537039574210393867107837773310676218498055056731935226370731453678528226076998376917213282948881545834712316095335124880437920971099032117039921780912330721123266047807456529703967309605037740212742166773693724205356498010541888028165090997943362896596356723689041487592524109365897423971713348760744872714115038838356266868665802717737454764907187149082427695837814126796498154771081683964138175028063248176091140069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "20651400494704322339333285479075593892696531087437113637598975106905394408666614220347135373879043634041142083740547691260803107333802266520560051237353078596199804492896708980853257097705221932600044106231678318433534790506284848663239955747383149348274501747240880350402999771623035322630531132527171246011871775744397993692008323241712776798612642536966894967906818492149999617209728236378826641479364339532854422382674011824046726822893855539011720925509668510706830386559456632458032786698115373818042353061551962601716369522546355825542768745283682928826103087204159064679898179062041123279165354739646412010939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23291247442662725446692696683743059257566051444942090410571136056798303863999043818764798669224747693988866437786584433270227907552973034016026578091516682666589928523616814328088432738014063348115218342682694299064911240512389793085488620272291248243590653688574676462743143709333854291417341731909643527313102231317867263711116428958036759696707963850952968920051561566129906312430394068050808628376647111166014481857688144719368053234054285956935432990608436949142606083650610566469756407469824616386939565074438870340154462943197265113566857595537182560452681963966864214633620604350357528895685478234045123279763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "20459442830826851686496502143397257848546860084080070430821459280162202761932158686508934587074089621215589557118642902485233629597230505157082768037430572400472041739503176190064923604796834028432895007563502120273070268557523615283854720623211012181258922431348635047311795137844305529326730892095633301512533794610085926414494956036146676539505054239503703399624651244475285010852717487438156583419815204954725597054390148935897280563322563794875972290728336607492932983354479955476040505516556059957987298877368055708906806611360899726663714251620097804918819262814710891926088058790619567604736840168549812697797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "27313366131484555230497024104543118360244622501841818801780227472004573069332728407885888073593659065850517634664931642529598935173413726771629417133445426106065544715095874816967872518280124923236470871107112213805991905190256029521446464627397341850708307203198601722423576880523447638537013196826355203696122944643087956048797898812789475775182303805023248846768865049137735554466359839384393807396772479526758839214002598743043437467543342283078279616845780954283037084658686762398436661757002347307075262246584627696839501257212986447988430535121226023745177542061952972092494804386667923450527018959804172943097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23978844145084228087563638904733474030996084582894987698573173701310314883642112467516534770824116656385806308619198432416679353447717577416928820381855684649244733859906665574939380503039595455136250206967705676493644787397940968770928812701289750534348415735425196378403514806740260079284445014117626446882316712924709554693037144481110365862249704743123440504887923633250841916958897112007925795289454371578194884487412139547925265768606258099508015361804997358874767730646042709434045811047103956434456497734181987299099283671723058999700735942981723603021141897185775748920821936103636585618747333008113333195599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "27880342084664941602610826265639039098186531499370935129683198298573788976598686466461314622681024754608949261916765430352431917767829216859851741844115638356562246087730591598910544553752482227152647871291673986051653492824802097001032886906251673231782096995513989826799950238873649441815583295381680254516169777582927321257698968764091502778168485538910282496633833099149297262308212134502026598474724427258973246816829240239703453931670269115659885733682320622934819795370537692692219000789222817772545757590692383637926035880776303317449835046702612632599858236457054149807499824506711061325888851253567975954667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "22503366432439021677077278420069530051798312408322760723005139721919387990646504346231832794117957789510310326831901553828953547242468208021447741555934199696179533473315437734611755549598212351988293979241147800541093156911620386867562956109714297953517040007098425311263511561777477577488463300345647188132851468452386156164734648225884209386078038967446682018227941857365853182318385813565958650878055640047226437089995389002294361828332709603631958718407922240633334480897706856979433122288282144487156767746927869911294364996696066957233141223822187152511590509359633766229737824414504927263720913039705678453757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "28339154516262079122738171666139579539181321668359875669467512157815334658715888740014021799008451881872826483081242447461234113098969668787191950119889950018514217022085244064253307013217749277015050727944368267267341867539993187928640017135726951925903157599713768304848142863343898310707668181663483410029977852739960598723749801048884207233517674255467888708072413500348760037501785040628076576072041706409004349493182950311652176826797030491532570792860816944478186876888605121243147940509908576576911822301483775700872018318017807425606194475863025429831369439933651041403720293904945997842086395173659735528193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23916475696381255073361800489442246923853199870448247666990730149036578573630136924536594348204081095519101208329206273814366180960228097317242747175251787031012867826936690011781103569112196657518942034591331129652081238628524898994320848892941343170057480880343507094939742723572054115899303176490540025305289590167198444108823844273806224856139118642239905769462364271935159546668750794738436027293112088817628066439347284476245293226875759090489730594502633194890215630437329803396222512251583266622791897960457864038775177887976056730500629035689886050491052017444189031146021455167771969480605646792369069913153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "30104888771717896153995278349121402127548875765732959690972337209573084277183911648201069091105979252867452470137267267022478215525735345366450391214454610607111027511638711975295270094159549343925008048116112232339027041264686888112000773368188387902206171112303351416221930438398864306337902471916604508425946203657250576341283730545774139015686714160079452364109106655989710789916834322992743847538219807940064943911147008967955560387696403777755580759883295157367046591304810414258022390191368829284547742642603151822814692850992774313873981449053527156431970901494542499255787091648746444321252906125231538659513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "19409203336897521156264631193464359386118165784899014192997868036905203803408691827858799184134672710566857407273126887788865696075470520904566279853243272681244410867844750575738664132930019265979173657381270706187826697557419844143071420595132302363782900670285965114083378729552324709122787799124735436224376162323234515633425907055266326678948313013500470083813055701719017104125665439374675480204527009167334244618901209518774416557648687584790460184445185268901078375615410086968062679043942945676795167545250846949488996010422744245075657674612215415662545298981756070878586797437664613219158425421187591681041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "20933829495482979758401012143963025771646888064869355055083983279123979726216281037458520255836720953920535250983655749385147756498246081872829869127617645685446013161049467331457163702337793856885491544357595981695748683117202482170506874342932463767766518271040140576090176530032243401680621397668885356625631289616621497786909742935683633874541904428070382674522401705087577262065673008392026076552891644008284048419564306654369074791123546892672457103262931320038055312240244974082029264326611962342787129020307426477570037760399323167816987001834494757690466648514592776367182464821720742101008719504179285655443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23750718509075275281692269404882612848255864857365756781393627520104332302135276080742819263236841222168446282922494674092380087928192517929792585855511879892322421124395867167553058001521065801580400711602240428979547909882152065973613713658778073492430722147222389406228152475498869283565344235659263662171527038046006180654153824614440739930505658793452615554619296352242733078075286823178720433613693335855542762627575599528786863864310545546926906207966652177475090577448559194438656211960738644207071152921318127699869906977291938453747145548422033013768038311543252862135442475220138872072017973898695008922179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "30122289821195433580283365122444449834532276355648853081962377348274775013492041224876370814827534203741478849422812703505798639294776131980563443540716099607503343346835359739491804389715525885126478768636074316108492213128155102370910315123690444415785180571622820739175505520997792233679775967190837388286368808215738752981170391146518606070095326832880903995823048199423272282260407232368446105575113810325262451658029909884927725963047499439325572225612619017984292874473813072334249925735270661085332543998665233395426492962243320019854785712227460494265874986111496438166445490081735010100449715130932083330571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "22625111152602837236502607705801410645262016487933128179092610934564341876535422853424229613556341904060166288228170394634789105854752172059602210214253117039211109274454119901145827641012318661768625713133395840165310522906874707698456429777341553186286788737177540744898741027065120785633628511053874828586781123107584748710040071621912881367202093817466294271290650852565531601950871901467528205268983724456700632443609367833384151296454539818442467707233506782180179930435683517898847443081772656719993134504868289219332158625702851168848630247304085682843946746450456531074301049177419238079080823972640772924307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25018290905253355159016608603713370012827956750202225358814492745385640355470311121636105014284755727883018572733182747627950333941470640709188929408177069365933609863905685414668895713597631628468155855109444694712348346703378441644462219935426610901482565249664182210166597224787506360508298487899831143121118337799536884625907837469742280373813745503511244106717072787709937088850272783944335193821513646595928101204313287424055490768896369560263810194885811390399177172918572929033798396133510648947355877052338085426282274572530478775792830989145876426618047739413204636384977128749243521803216234925766927288837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "18024200171717690258755865350397721872431752073238835815121720412713493004249276296912964298834031092625362871215927598439319903320431442867754399195044924770697574724970256137613173297151356152997480090605706878869066992828091048959091809865996211659054725729537250185862277999741212282543330647008656576063071875305831130085382886027228567524864380115151937977087405608598747045348182099372270072204800083333671773346027564988815520834196758795104371228891803900437834902426248718649668244542562024148536305025211703285341455520328998549101299838489636271116069315379545261193444673659322469102486840376036467300647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "29823660687508970845957866602470894341057050896840479742770516454266379665563730582450238778165363502212937515498705632561270537105534787008779287574607171920459031703329171961491343143409590055857730940593590348627296040790082303490236885097721441256807636782762927620414358386726783669722686878504610286794960446372060324229684928300198474269315376610308520991451114944173825579590487361762907651406106953651822616154715702901679646202403011504131255183324851079158574334376817181725155209459119202221011865301039832703721345921760750840399111054067272850372611616634863784926591272187944515925633687205833860520959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "29431426447918785030458344461894353191699160612520947402723089060201081532672254907134878517534481580398564657215875193538782062652522074350840587012477044866586239076311405771915572708801580126725869443627485082518765870765665771041002150970612828556478186989677486630189763567864845315492177871426853580389957379620621736985206263858660233677089570537741775841913178945286379703415502990444266418696366059225068350530326613889108774334477085712964906688279483071921041802312439484832574278517666989732861546397598378632898579804197172507455180312892634307762939827275701414684940787265360132598549966571065849835539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "24629494610975112699581301071929224316032100470597424687047657470597929798304128357337832908094305190294152733454731734365350587244765611218672734508215588518440364414973205907152018421277929089834642908054368541120107823568045912278623204223631625976704004428490466543299067900685103827482519551807694385128615104783411374911618460838507348882943327897251655190241754594478736532188078260147403730444833709131830204813145153538874050989229907236398285565944924354259323261554148338497233539676984208557236025296296017439484352155883207658836074967153084806062768023460786956749929357772113326187854460839581566759897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22060239054573875700248495072910265733444444508362100142491173703806856531044659998561963299917347358572094015001571937574561265876503722489004901852166246768776521701926910675186620091849725540681836327630944352305637482372642246669825582544286085690728254949032220260728353682349911618487991050343486927901113109812207424867274743528671041252893221648557772635786855079304846333260638021934518202840521805763102427886563103645437521748725354965210655822162969320044289437764583602764464474185261031019586278531416707953155537498561926075793018029098988442159514182318765252284403298804305398096171150754769238374599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22090122111503660419095744189259556048782704600433579654338683317989611112784040807596698187945430269723363477011864136983232374241080984593636563463909425373219520459448740925289842641815372377766199032895713168216923851638855024962738144956453872678932506259493201485420910752601107393111994818649971073446177523364017225801645175419680168114586308760655443751306609921156282191035904214134401967942600940839330128556194071937667703286851459415297829022657467163645821919061995175560237855996159707764843136905390946091106731168955998520826047721699524292513332648423746800831093225499882915820200325831179957313019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26764247638761180008536665066724899282864213390079544026567851333404657158301733340428046097529100196080628119307589171903816863700563004178348182186401981539990400664663855932936003288865666899043790169586222894576946146527970302031541948329616847475078044148470163876528385744996398352778529186627908752419239524321278927097652733397282010307417119789883705037562439279614483848039036103277836011574459022618806324728023987511099731922916379578745541238001184687753082002740647133738547658092093994987813521134071726564731560159708890022953867486778908877650682433563094715115233025370347187143767125876300803283111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24847005060614624458579915041171543137570967295003156646128320459011376732205169056911006982270846979813251395750238251477517359113614027154419419394566475442734703148962451936463777924908589085894085437705847878670046556355007140737395328509548652045058134089707236358983764022618730935587793283479597503450844637849010796499934683967789786214139849654546042116723668712061004598218736093629073293684536585527912868098576260843769498746775873620150023671363584415051624045067311502784420647784786723545310375615642691672714203250918838860395539235567428630870499967726487127781087690420352544579665983435593547810861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25494953662145063954374108518248358615273282431579155608633725683351299577721922354326756533458181233862767907354423897130324235774789172765973462234850987257609095726232662405073562290524299036919524641333147597592355839947949643796974837115892110645795228252858595573793776229325061847989136339008514615102191317580269972571181342998104454663639119424669171703849129095728776012269856176490071964456216852301861102102864655585879536793763104027357533660094980876628471574917924363585245562645289023315452677443975733417081259412707235029714772005569629568891912161723108224541513401617308128758045515337286073595117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24693573125614467723594856659230440802276743134844958218232542153808525375960302719876954827212956690783026895769847678915637443975232293716536950098052809352732740772325194958803140930191815701363103437893872449267747241666468628225364302128016537327006063774549527567712569475180837703008080793416036078960229235806549594844594546388829417927571665462373377432651462156984752646072197625339248998897037776909119718371057023305532962795775389382233943181028838392716754885520175739468627759198983033605891296831236038476172511953985506307477565350345252413221024794868212149965242887604723500063448832038154398578993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27133375429156040864717030679365909435414700842279893944600213627708131082076161927489525843732847559509020082322802252292065124916851402894594940901659209194212664940008970887033158155365876387861802852085856201098474126446449638430680364622423784835720807738751154704716929891524319443332381561994213439209369639577823379641191732565770279536166642120262755844258386356746496005830049316956977663290325286619619962180039246818686266138032381572638580497883221024955717283064691312627365005599821072843364296263051103465418746039628137065713771096915000701801794129117739364852821928596816294474224073215871331064011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26016902817123185459745782495841444763146684652172001713789114801965006135620662539453386603990806924986384235096830691160665689531951247653281823403414323096076274845081149321269389771809635663717487624377438666131674963647906390104262660042923893457054438730647147755729045521941275952887024121252262609049632053190850970791305336458207743177886580693189806845257692065575127294406644979563352567606509658737358921294479606087143202806599935777082856803208014299969279311471482707081606963429578542601245373106969602757800533966831194263134111496188160386916716492973689291282013840737989583632555065025285722691339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24166006791390375277286978693611345325453282523383096487145858506054581676047834843663458470895410422312804408763789770248654539300512893504994487563129736833889349645471456934809349052420792746453283930270465177197460585547947718958710297271439071586928740638058378260441509603637337334011944763018364134996501790306729309299948967263126196124773763128345529182336453101161257914884535412562413991262449107081193015156930435785093673528218196327914355096716762954926516887048378784611885726485647457978451460626990965438633486576168512295776584382613197673395690153102987261584023859117215502747899529955146612854313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29588180430726226521186014280806824818495824743409697557828736406470158169255001900177854228168225703044580764959230313277889633997153439218511077682247682370347391850261460328885013611713939077172187055731360829547319910186744429880164808046535415596791589854817429670282642504276418740322924085031480157539245448059867217151151427560929519555631081226997596037571459682573137036078122358759731271784171752062250437587003534193877823592269119125865299484405639007752725151628392942298945646309296086537163733865719475611767362878012442139183292905545626893016242274463470365324992455341401613654984368844101252634147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27193952345097198060107457650125830707605527080002391366134841230877525883608063495629623842489929688377148245244067945489672501622678117104534815845187987666466369227716019387269005546322335672793803018145754388871304452041834516751686193475760602869505164476148777309785804081211246665613268363350254255843098283214930146431150650361877739332353953143521351580185323733129582047082205436229416194056968944985195686356731924731739453682120474968987772798109098014823669034457006189387821445577704570216943231494547640677874347453277566314571398927779096217044518891029067802803678229438872372273657508471708997666117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23213098074009850015019639323833465983799538104362230014711315856485313886724468488328894933615273757848185094052239934119602117342349702631852250451679968824522117247648271160019920056850983341705315372983241021227073310785210545212758079290927632986870454553638198101140154234425243039100764475533780234209822298342748024671275661153661942057872876431088985166346679445242920981780162950198769162316612543293288125525094674612441763708165551324715854405428446958270175101206178915230299489112640717553392654949455772385821628133204585260412864917801355579003811183901209545145189753944287421895624008217547343944193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28030599174802832924038313233996040063853220638038798307424602190236643975872065612405288085171756449539381002621330701734103748223022286306420082859183200344133036561655333018658964782232186374316735315912315294547761175820568635139627292819957168829438638296200229882616911715699916456841840660755494139356051733184700212640131740986672327324572935920257885182737798090965799149918956343592872122926206380938312981835351988775214530097049170708711361751949866151086647198224478575393194269542120696578791392660784793558388120930212413780365292452938908170586352436342959224501845102094671578181896141196213294441277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24131093163700500007519759620562833905804558898820357439835929331504587688716715042044652485985601581674292658573941451127165565759889939537148692455163299942803874929619670398072279611619385332151092870994056061497161901575270585915225596250922650856215298207119802402967741635076984280994051882210136401832432650636243477551329332499131451890484501092701420580561090888322828630847903661155080398978928857860134502303388784551196741451724743730480759417073164575162490984679016830015874116103205228758659974934156650359145404142216820784214055326820454925804241569579689842574304587169596470541126111862836009183789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27629246302007143592701227988154039750265608200434408237472901121475849576474395747892550299150835461052728297215141308181175810437848120125538937935099488316968158724857752160052840425455094108892540297799542825301061186974609851316176305172475006116580770307392161103010956785956517662361811748854402131917496698422827432761262089297635432908410225619115779118759334258088788676432704898267993743421224827033283536487498436328138081751325939701034192864884631836225923250350949434033364792864481306088632091127139926853308806267365696124819656344871228914891108239253968552986388332666288516831188056033343072384501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18868900550876922703429489202987974100150733301556552849827866027090970588720697418839739527090401946827186510251787782395276172911393730833340114960941820079667231307883719423453402793400776368490801028697653933012615710842649273396514288484547378013035259450939275092834435488052171057620210019836363914816119787808609237670263301193997895416953681404355550619809546445075627527062171158408982208410691089861491631123805917679794690810690337588301412104255505952459245647876917313828237600959467822496418489608920138061197053126878676285236603918562490207818821684346867147811942033797258346723761327301552223529229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18811910643790759820327743320923115903922686090077867287216420429657274078015586450127022990923002925077344553181169505735433022482852937892380068291543259659004063843940012300810514868145048197157501590696840117293618214741965290541218789477837989967413421184304579050969823974338662954813052326154755123650561282135185603261652421879589488412725057789943890001033495131795006420117311065249722451653221848096662177477775301114036591718033954798364956836465985936117375435632861678161224709992888031044468135256164439473203162094925002301029851393300343351956968682227287538667891808079950700883766124901631967955633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23577842802661437947410097950545601173683759896361616933467914713292741985176939319373090265258207626814355861378400813635904073703219918111115545503815993843935085216460824101321007115397811616873915104756087924415477818341278413559052895681537156567723569305327007595516034310379575361866925136554629562813878342752471201944002154183292766639423321054228307764248860283419261623173759434979638304523698369104998189957301676760575037933163053815848486247543258423535100866529989120820991447708361674437496346568463922688631252830144209392648652765523293559690726611812264475753434328768779973403876998846139226028707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23137522932166953516181650600735392709125650008448537851926439201161862235557642658672792655007141885734172131391871428368860809022418900492159807585664548510201391398035163964357698653936373440703274388586641825543386969029556644258115821531702745128204830134542920919945987663077198672388312902540055340391079703111195607841560271382621839337387351320348938384774581929363392897426383482199590207330459196969157784236916359617635897537531132336753262248682361629970998106013575822969817659948574124524396893603367139403662175941598362326775913947040288128141067856931613337688524875119703920963126458202324495057011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26942463173275660508663148206652195702777000772696752977774706720193985418609339627934113788482962408392767583560642766942045699477815413910151501639251016981193301410604314780562701167337575432361724570364592447954801319768764807128894528923328089443128192232335002068410289712672028553623725339724242935586249973005369488354894725122292447191830641947538270031444433325458924352971427409187815481849506418425585125636133638576884134179823545517880640793099099928579322273244416086111202137019106825431828177104018863124093843127136489246460000601524300815199548976340858807404861849059490196860108085718862419990631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26014081650112673346499963541839715712803512858523552052361583578159378068834292098684958862173236633269759213040132636202439588362944249205616598806002596709454348118073269578303715418034654882775224760669236682713204903923923139957401184191064354210595609431129855867577849202829862141235418906338746056607047878698345628551552773091400062342660364619537053007653061145404056853452696754739557643392289263514558841213943122297865040574640401776480385780068427831396622724607995559367308612030923334560472751891276335952309497768980550802372116399148517858130101402007817397422284780618220073456116691121552364424879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23830402331732619779355609637116031184019736174941769792906770294564210964275355028951061422090527511398806001643548248184570544360410296355197090803087661185136034435108438326175015255416387813919966960409163427468105888888477891877237406601471558342318421168166693543025265986769865282572145627797947337858464961584461475600944479255917462474369020464192932238858363719161872870677334088491183767602668786446756767969317807473482773833389991044527808024285140965339072578486560563608733569946269143561285365302459683186417723537411000260034652689113293268547223036185709874211770355990153107895666819385144649697041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23955324907678734549065488074279673452584137705814522799905540605783358045021307150918108576222356287739509694402893792299871727233152742202985763925916331208512444616389815911745847081834444664033128437425646413350348104969550266278666429213847994788550235385573051126303178177009583336863298372925896728907976998522743012986278122651907687207761834940621390923868558285928639338222348723183873271502003423588781702532977534226837914997877237791155549689982283506635154994945704043356264236974596827371692935066610315846798925843875416956980457000142500852451342778577094900995646942554810267249341574287973720035111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24053720464586318274835741590588540596289103842014298575778639827605525738270488062833813080039374535345052034613589208849172232195862707636532865546652597675418593716043470856712670028769419040967809341549387672556487494132907056316338050247875024182711914115922354012252421508283130192424971156038566274917559024293611587132873262993478065595202275190614413536614443979731334265656139198099891922487918985519655889298157411602956800803163273146589253464995710492783159853765642227363581771408816319099665257369564405408727242493236752368493005735946059264192367673232282655447096494150827170893047309664104931901941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31116686874844404390539727013880148456039518209307412064699460102528890386260800035132291769346981273222829303871460210430030356545045177853663225345133320632111484127514037783637343706159057712202717468924478655459761110921859557370963227794308395225721359385815246899810693335094068214557534968573537979195321345666435602052456374640561415212048450985726099459045123741189370105444188698645769981746237132216391214832827041813056705931029165555738365924474662880791142155919051293335172166237012351003277941191296612120221997614726567355331622190540436672826030285224291387298454347725651234018221461256775867557203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22396871795960928368605942420865254015888619066454020020238605857739415757936601362336593529919288633160215321545878551471482729658636924282391001835424100221883836850797570965143554387619812763574893020692403677407592777932213033502915725216845553884583808369655424300173193026381102825213502827550731099275674638839073959853578778126252854707534964922600442736419397028259149167113543572038811416849903202216624315669395630866599029275975113532752473043645372259940632338966072671410857406990884507886518263670690738441396615602417955754952664353478219103606068744190644511882742450681863744756073747074133100849359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29950296326639690788039527231929754877589049571109122764268877912060822405997598536804258878970822744453402604052456841154240103400961878516862312695192141534268321099570493124848802683038688905871259251805957919469143054754280847256325494186955231699801774139757102529798107237443037832604277825413386372710076013845130855563370726196429232976001463600188917567451385272824383144721816937746181384566513302296304204384696435478688589739198805669276885917059362483686671223925388131568136795472190103839075199205615081275125920454259495957459841245831316858620008124127954328849058525382940002302844844324562913116193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25465289403751812116222813012391653293760016196367361192084243427295425528036181673759639935752367965522409564702931063032760686118837700209786759257242704063885963199891062335475198178497737897960199523699788170024796471849330241694667453021863932209434439716473233289850332907150839453567560365636956959492147370292782892883191478654413897220462232066744139684838769068927530359889130693776594076656963676129134279170950558400569611296822512886307981219232406398691188203157630415384906479794227005090318518290119604597418876397314079758024312450042502954566918578699829767783418204718472227856024676786131510688449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29704645083458836876296434117576281894328478344426271047063413072105826806515726741378218341579584452323016139211373404631415666494266574125706136451464554754543728512444718484557570388278932030926901907599725319373983604742354892582531639720176060039045252409391565017927002553615983688865204272846511366070298465246933786708003169843045979360208783896946798539795389292760613130472501468245382247603566943226413973549251686785041122481090079311159817150982031232059986522376145170775856187004903984499597440861052309885175438675753039973556067534286616578954372201477051348187229623987150764335980953715377517533829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20244451403973412120622425064328377916642170594733508300660162320423687524073639613097339909681504631394582395752722020308623912608220242452928126059151136334617972583342094873136680963298401309086660692371004951754977920418443386793311247688809498316265542507531833470817131249932285234616532726500072901908582392902284741954451536197165003281892676727494263740063398344875415805970844674654496093416601074303576557720172214012844516523969713147641382996027236665508721606706225275979509500595061186751765709395885752537172699841620683161879889313658542573722491469032635147451844412961403094773028482960991791968359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27292925951171306983227319304426564992324898824656909069571035716077369181768643015196388148647345045803692907315786483525476125465819844054178773770023048437843621999632026963785189701836680650773008177937754393065896473463611072937898165087391775406478928688771493334448900193079349783710832833752932614951314479291944519826061441814646570010490744751330102715294543317210324315161437657608781677623730427209597885265882617549870262276097164570577761681563183326819095660485366075276005442980746516018894195180918551851269668979980697472124211033580466493123599042858040543786411678805084082508425331138665542196513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28161318609240706202184810389979851928162696423091569183036141065491618468932968580556480973739088246715189102378349779952211161486343157560038298912601101420936503315913404849747494806365732228844248793361303293713277171501472171347386677559051830903320224435139097986612233435741536052413379125644373562815100016681337096289776039498029770363849786553651968398730177166208816614409496922476067667822732055399035498803426452697376940984018098798306552762314074695976081415209884638378464621372733086224216104276817125390879541935074464170903812640700104474763425887406516915802034627663033573291015155129961766673293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23514264903741356669713187557066315777904849191084204955514500731153038474462427697122517817563793719140159470753651232149054388951850813070918502545687064518102498196086542187622222803767256984118557554380062544543442015806078308050769478687268352632096401855539408524249628814800367287952985321175660836020762963591935288721526847377102645088669474225646895473854758925532799248729811975565952125216785973897999107529429610147870359747215086681967453466142159632551161936343576180779964004183011183301604744489350144626327085108273404653092052916618679142193878894589853752532217662141584659760420648317136434433909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27862074519182327701128221608381421681693378993235135154649511730749812209685045274942488129932743585723559971090723164295681773324051944910043082178437903186415008132692564717730171179048636797809263252783949087449796477554550073844363657092187695149389232797013583672128859431031910552839745300888783547988346621548535288643265015721658969966761530403879676100749960002613373686120072643272528031509545373943387716722205442502226486992219519102922357439006411725442782727028959246262970225890671847359223750557203176651360959526371917901668218364350673850037626735799585480312607451469839464725360381995131676946583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "24819130409687338538139682748121435889693122341168990315864404667117071016253312833146059736203447852068662637340731855229874943479550366585512819660859326097004223399994205931074005357536038508354561472036743348198106872079910662251789104149224001240682725781816676765542650074283973234830362840977905104680758849635146926156461068987106294840478239214054147321076461709368817165537556527803064566721421997784859734246953494654402497975289801323831635804335662602103044655837853344544134947393804997437871708737696663756907884087985342372825105749523657494054876695086905712031345782465390103006289994064244003242661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "22582461249914169456470254356914141329976452095459140568524844112379240677471473493954087013789813527837632566416241008597644326688004481908308420459550870094272811077096109564838299526862954098857680587191380283645434927054685774985119720678237640123045227058974851064236744410139651993923580259728553674237284494984986137595063615303410973610395780759903416382338751997805515458719766179123202541872832119332837362035189504241652995016342853347853429569001844243352661807076311328357969229767771279337481422786949918199539752955976454558756856397939900659171546590287376761919698396367925288684368828251380964615713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "24804758201609762862314826142282727512151144867984370936848615186022382454149028107030838157333700583549972974730711146228368480417084466745994066607001514063593073033339651359931214598863103880558075125264381097696795525714012787554043176912259780033384218615962973084177149211857226662961192064370628209679511231330453311426939628907993397446327857536863231398790920783700564072242487503013383047137705890796509167566339800405318828000540331479601395541128209158912123341333635016607910016304691713810987550632485249221075402123790489077301834843933764514310857219833474954580201395526900354531076394935883195668449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "28517751598470236095456196512987648373469226242823784924602316876649303296257048374882128346256756764412927205512131554193106380432485488319932292511147202418912188413954974454268820538561465237196518024694429734685475564336411300544954948433807515603916884799796355187393999569057742680691399658920047166310291597185394181254884984088050655560429946701402401247841403140564380184131616927039124517440527303354303930263429343910435819202308431462865183579403214283182817888151305178472698116128465549330992960248123798997619115553784477237053617941278270239756897684178055479108797602903860041702984148809434773608547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "24305491178408470132440552998392672631568475103629350890165503474029463665946698018112809793271960315285375550275815628816723198079195547784827921975658553984685160532260202090823889435325414181756750801932846106686782847731777711477285568269090761543044369686825843951457251800299709954636416595981479294208579718754066809547523812152569793717996766128212177010482804893693150946247652263881064701702380144631811350336251729524744144065857192844854509070308115132391403217730749679914364991226052534572692379669116528825466479257350498844806154280830749923162545985775425907751754763354050542740828655276036900131349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "18164271570593965525483232563972350298353609216714620222227937178135295085417049613797773209191859704134667671490509288324667036695965232475844635610767633292307754785888212683007008651895910357094802341652357142115466515577002037988160720401249552274892561335074828953760811750679371242984448954322604731185309722345301873993337138825454321590804431859864545065795462119000792557786940176544416636400836543665691033412731474624446718336431035520437499047064780872532852314392959352307446389722434177665570244318326188945167807629506281496547026422658603168627974190713550893138953841046528957387338764550206687888681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "20498028793503870367546265471630690242164936036954533953383089618696213689077973112001357356214454979753069542194687835288110585537907211898232514310221947205155367126413571204095049448740203518910476832879159548592396955799734258903759126818003726517696791790996487001654807615333336014668743330727644241429977938879181647499865532964995008739544862328840917272725426706499484081038753164512128517774618272588881590865043327248439302496716182071221185806751606436976198072677269578072705023898696554470856966090851767704956510233091142679560385059515782229790143766654676326583339275450318081422222336812132797390301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "26865541354282861108148955887759332686203806501541809956838010049266872262291397947677567506923093053913980743519819827435111594396299756731483055652144701686142253240944673433640250253661743491390030562712163700336572361305249962082615559638398188855686539769886673960150949214178517435785522412316690355001552860026743197777028979963343135982103757853993297810485848875866450487034069214150638753450918747611760108829995539455370532799590460080799876325453897478112735141751239461113104220336601194634996909700988975222724652508653485845388220890984563769530516741935560546674179336168565332535564938118764417511017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "21512595295772021804587566823401164783473735840318850437849962648235216384990942888709046754793143696854266181598854719142436665225039488814676294642446284703061151257995907295919477113962808764322871672489077868831254267137785407386962076648179072429305663758775465403501154910588147974214945087856485375232479825802023439403859414886109756037852028796858786940167926815754884990562785860201283483795439518583262302457499675842957958818449156145012874773288765882296243193114848342694488127252411928059302065489486768482226342852656201465787037405671083182109948091776070056179820497534785498715140092992110944500413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "21477024340630644432538306960539498795058769530524998810457551923676043947182049060899843952466799186530977245036163278364065458597167395008006407987001436730385787861619330018726132764986777172262639261182426830650158499871434936501794721891679176825276863876515084107452408517376879699312571047986426010924489836641919613323587305038008772845634044909884075638083636811893875517887540701466686211991433907394780534515051063323698061168921112526254002627107164032907032948723995268511597121871016598878074579203166247815230515514606741438800628538452330719725766171279345649060293576743883388712166332663975832307459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "20961957053815400366235650808445479427727768640640348906316307894896561455958045660414857006705483168491403810305516968919400386198459554517513117194220845615134274353487994426915610994295827669754068952145445201404918071138743013525576714928825198210211847854156669562444558045681822383493952560466429182467388611476821730327242884043832251770114177849395684670810900531669462118360681857102985192488268197324459684861589993463197547522461540398391758616262168438366853667885688034346071955371520688335262704820342585638522021278772356823238626616338884922805028411039656921284316669701392996319569142951468513788771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "29591371672575056120035786407502045768264325335304514560445611275822256674183437563939057200071999188719531163026826411775908201165489037427298328652106238153010826981936106994071831132616256255417313694187010550546505554534650466068342976140555507910917075085377144985708741394737799614484337626618031077549279488721033819652483005129155921849777580098561115114975261615737318958747493895710912427370983102650033614296124223010859888906686221741824872651457016323594530296524254772806701216398034724280452455218683869965237510816926198564748804081755193606467876056509007077814524335229795637740303384001245932346111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "22956819163478990620850306324252843113224208799418737263952125171364519603095676330668588807346370483929852316298938870685200856357807940172559614582753135487228141919990013820123958304185436957917007030770320469558990510067187799067442254530281996556545290731612389098920769334640878732959471723773039831248496744102266997635312015490916712656597215207877393908705017670228868339936259486941065777541836799721190956743770273399454003610481083777460408192426579471758583904108532858247749054781186661636516371320278519406170941003772611774956034585733753865651830854748455602601479170499245713320557607043562131986009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "28330031938009224287064791273040710905828805664471857478049415390808503606008628338119008271778308049296648272973575246423024499782383787882189443518957854571694193540897851863123707361022799004100595820257488746974013473909383765400873211293715217651127650291095509271785259401463429765365336204057991964860916497536516400255748671427733809652101456005572166477237891590444069411076472632413318466704951843539939746363278498394330737996093942004787360750535989781598843722868540452187937168657164795066214691859786746729114599514799208612768314184224125901719852225988361415748472034313561141628494883030142500743271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "19981078344785440292630943929095829168188031827073524068328461037356068496796961592993541942895772648361723967114494799916432376748244582987148058168028766958059931525452401231847149265517175814955298929727801085121526176480741637294138019067055948012605145880999204942994330505480423720537396320395412678781784586892873217046207887996400213000569278511132306909659468605470406879754736210132323774577584417126046309012699146121816147522312778945971837052131859096397832361351498159512147983097064252221619583398048893633278385781072777865789923167026143089982421769475682789960093587539854907793500701112662537249169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "26579096452568708350940531733194748266912649481237233440139820395708278260218888705611384838018312610459797897664025965499502862933575724443288800832551012418484298800193405122689691865813648654464607420664004097037905498655024171386810325727988922108344326690776586196791476514029119104259495107885470457533279029032743866565000867154692496764278497303294474852757754731886655173829488126205465949161880610906074725933238949686554689358611385998755730574780081833492148162993522908310958859456844166646901831844898276509023581584424743387404324367403411530079188469362052964910548141359127954708003119856935390125501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "22411073706670107997825288019064127735600490087731808654434395379553704743075149525941013823107608802958897318458825725899909319761319519775746960521147624102254429561517882089933449999423993115319965655162433301342041266898365975091240621299114157352527318461768670730650918185901369210611055019343989657601865442409863329340250907177166641979399128100740107922858984813795863376732563253788307905064243530422286923418583672648185254117053674596980105627501223118343775656070636573897379043848043673646648483875180080061523680175119156125687986074519828758139446992676519538116719067855048245833292767582032784070773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "25824605910482646476715700046430732509896290038021296138303873159506299128988503277809789018814647702531313273224605563037084074325579773164537944994668414979220808835590815500644849765861718228678171749421961395202646220032819079399488865105551545648024215587933270157370292979619635398112750008218668442785191130775220699183163968988304115631202951227238337678416744886662881065800710078858132393148291191255849550974588577497335276016233057033594333176824097753039483007554675130266482215164696020728945107140378886592043082441327445181668961016310070077808112324110020261132903927705776377833876449568576672339653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "17422462626448199217839554928624563020663192187456422245754591141673814702025039861667202738948802513263874739150581563539956550703081410594553000604776459863016971971872609098114182618831253492981938935279438597987896284886446388281494259067043935693458057791924086690591259294716986850401697934824150655089189565604575060935843986764563587415327462568393925300715906856297597573196212525667695608502460468261302498777654467060785075097733891379257641026466795996103581560395798417480091788079820605675937492360230456990435789698266604631707813540783521250528894880290172791632301485234908238506355442002001074914749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "21404707261571476844757161156790216185916099774297269289143383294624835933267805807960677124500057248424512799663681557651463794520356780004538888352524058293003676415587402368452503504970582353003669738449497268704500642832317065702145789243232211715698841339599626402372983274804344744634695944013022212453919126696085646657539466248787553096769371319896784453496743923847862012583729311246426584644108261050992315046327964230249706343619244838557984079636949192741836673701959919125170113381060978434649653779139297638177276342695415983412343151816131986480222535922066414996577594441944673822479754777784211471317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25769859474522692585714690078016629805277042942181150837821906755237113074556104863850278088548207500268439164584909127149604974730690263881816602528568874663697120474788514131114362165740675948207574731248368333138552300337006632534907288472305150225139664161815931544174762786801545907473326329258297711661915420993688154939593463776845279532964782182992590219020710191073189959382640711890829052009218489837049379596876478463184622545449599795053744264064817181034967720069857950843685512359225436711752103274885563363876297651914876106185752718017995501156832845997334558009461058696602729568340232038910678833349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23171340481983005483184483386917677169736840029170372975474456326905204044742160288706849911957322622948543229039436316310142094004839870049172124166727930739471956479420584449704498679682036764056248585776374275654569112712965107845628358657282418031110475861611923601816098889140265315224261759321301047592097960199721774092319252416027133849406266117211377655867878278714375236959649039215453479932342453458561419232210951236502989002526344349061071836513489531271924336025581311466170969942245520703740811557285215580959326896537383308332427212343651366209436824628392727376551868559219720960309099708699242785387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23786369467787182681666724712805347280284335346482780162595881913252099701119884653249198232015185460378508552683524628726616910179154938039839312584487533701152960246193354942127558922873263943197295723921969154573013342125482190756212288581465927946938165854421557926159870007777569367435448466967563386477579531153092112157931202606599885653661819939799755871364955704961402429016611528279371391706507454810462298851011158315486959167377705918731864109146521183064588224502292738860336274002203074486935120024430479504780092824639507852203428979939971682076497291381571674221909522643588155282254590001010944475377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20307695573978496148197705384441883818707707757696636491024652972340514137177326775922216031407152340176126305154754131979494221032086510696775390134155881418588793912170658518637735483304432014216233199403193896281546385066388086406450760850417974532157324835511453604419051003706633211026381777130058365987957138635656613119250258621153685124270701617797226161642884302835536247253149201952534661599116211197929996007333997433588935139894517229016429440162111516558065577713925865837180606783851028608456419766060722214759601948610693202510200463722621784138012436042757075248329390590302114476948014240860150419607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26918976073728929031463033099263110274035174363397395264000235670834686966809434742106014675068920708179852477658217754192732519419949362015264627739308752405285331173906435246138893872265546741349193299344986978802370345576639213006783173314523965689606265210265967972124350939482285825736516557178010677593754905716533589645138094390646376942802018230041753787163947555338442394387623735989821044674645828833400414393750710146026663450321105188388877222877530387593618190170245881399903144188728327583574429599672562341659881985460190881880139200009947683933820190002083326507121893284231729152742947733751697385977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26561985274226716416948930687979778025886833546688933945414824680372045304005003889042993203422694953465784869623332740990158876164506527260744233674235123453374800237702680165121964065165792568040041203629149012626172292663417093185922612927465781041255090428282500667152277999016631085992575436283908542172588321579788689507809873488513803579131146128603589268421690222587143160441236446747577094953288330006720857727098120045248824772693195900540297585142279494875619586172109769481755403056197415159736728003541469370939630552450372213659221768860930441354673559544362959665670405257424218456469137474272601637507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "27124562839723938486698229895485024551025914913809029107862025932542237571490688955386888876264080002053986163646923994110781428377080530914757413205132885888473837364479670350823597194828254506578256770778157748114500678649608303406301889709011640363936373827215633920246623015295496380864893289874044223009235133708921844825050442818489526705535205853045110027808368936107920607428627959978496309359605365109452180568528039177482254565079544615685059962193211072711688952665272067028400716723664327077472761975161448841747542709639256667317479706217662653209536082641141276166212269307514249095223239223927305610673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25832978790363175309285906864379373192901908236068392504658289091704272601510172190417064015458802741729019924327719721608138425023094330148468381315102263155807548232058927348354331195536161203846167108395332642771776549377166830881008850966938793547812341292351712255203157960874955302596998495359866479206256944014661845870489069806935482301975511563859848566288755605202382368122379285910306578701468440669371472714437154972729460996182197778601224849358386009202169448635182480065232540273539809982034878190771828306498012334444130871766764529385848917918286973718959842634712765594110743388067915663755978620231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "25359499614093157651660142291289225119180147214671524092447343608277369788136437169744987302416472916903137890156983706241562693069867265314491098494195175439898538557035275613648957616812523326297789927042634278428590700226305050246354097503527640503549452205143606093240337570614806620208432905104200302924723087542507470870353409464212828854766388427615409474013103372558413166708254445340754418234023623982547658089954478743189474653642316288250720640602605365748442139396319001185029288629859291108813336526046225406295597606872816167969327740273053465700112316948251362411390677020152254614316161872033791167641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "24540841894876678210078946419513981195078006801840753278322855358251157482686317385282956161446329713222336299324122822743116939761881578524287466149062054319788864144670719105462387597397822236147638292989244925405150988782661155987875437898354929513032828810531138123864280570391178023681200015190502085149792756839860689083683536726162228496729944580017594422142833380979804049336791931801613529838533197325469784087680389163361067263322315773937385791865676872082379372379277584166553374919522321327616528162480015594059205766076657710585368369600951752283648642275112257259135384639589862274975543452709246042213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "29890566368314137797573406421663340009682830591437591387374922905599942874611380203369622366785305911957175238709459130669256861755422214223272145121678029818779507986708248832213647056652987373644568792852687133718571199869091535163226304162527505115666387197899003566043442187545123044634296635895630408986083533786746759022906598784023593747905325877350245850023128814108379437276138704244932500638040024704130173439866425388586496473530624383229983342838760920412683703256291025829931187318324794271411968511789520186294159498102518373157670903691900261624242896153278803133100020891699296401696491875537115724317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "23068158926711346773660246571196457312475996225920123305712802886708765665071158935123419463066813042647441232341577909895961601923835663662761595725097931716933448585394886002159708032490283289282892852927265390969838343051953777298766475855803220547096534848178199311741927844846815234929478163078572880043927490092387901561648402372298352321116910332648936764852875915827947946852905074363943718533156536543816646358297866603729053266405332820138332978045566125987907176766393635299827079328847832280344532286822392084851985080841675892019240279577896154882500409084772649921700624678453476165318096042100062180847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "28848198945034577954594598491638881812014171880212453583259938905313568396122963030943865748219054423993049530833562861001641362729700466066056745535748987000387194906336232915797858398235635502035269856369443855453030390355599613357059585457057199995239619491124331805384864508306769280801124560146600916771843657115101655735662706732903950493128087136382150394340227302106916201126011853941077628006655360754920687942839884390914464326709937539667272618467942588788254281240568754223795865778470541008478110478864614361308755908756582863111771651566305421123760467424915408455206936707034894222667370413882363404821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "24322696215743094463451695903297069920879572637867388160499799215728323328827581608401856573079105995697230975114053001088900772502759817654514524308759305726922964508945080566775638456917930423443047277230926839307364259720413667981743388269301070889919550191252720108459708444324939906018048290380555789069019248290989239592840791715991493833122907124829906357012339830762055127400771755554809962362648739753623937592408609943105640214727139547102926304292811890456208811057864789851880627769378276295422138558377509740673383547613266870214607902083885014993605096963063924124002464138840377183237039671924000122511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24499926652942169574997125078077846236443015939241336020863614442360461953691618857945502183475435451886602322553171088643372130041224267785698853602745340492731068272589822666135266805259178811650572193795350724680640505097511824965926030670256770195146485200935305279671404642910462754974041674511742031936642537797578501058807184796035913513773688978373712317634228921609691263910639984135958256946534926040483315426492690543454943066093058902640183614618607604741758349701828299656634080711097242219444112912119259140595235350107209175910707161824919219207500845417132354411804421601184978786772432364276932904263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26474460928310220019513058779679358484789101702291445052804797452158641086113913508436016982555891685782046593362345319648441283070709693773405872443141858762418446150849268622412648148114630138961797855320454478103996776187378506634088315717213939579322657178544370347148500581603600935462942940926588671417950167120398288751617208752405676455728762568141934055535405742910546560303058544699915389279801542077391103536766688770557125004277214607261444698670030555257199048572645852762224427437960559365384600699869870560848332682058410068646698836142342937373352643515474197104279385711879514304733695659085976928551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25698548602653799684479855525669937065266226263428107932381666670954147405697969809980719564592964533308689684322797224045087163566645168178194503604984978913755957197514134771732083943243699732047486608002407455096442322564127694092107289913073425183519429559633683624288885778878863650676430894326903617830768546180553130749051548073559579795019538414765001678195385963498557434524932697283857546995948822105418974334776616704499294067610944887869790771031024805702406898487824306491392842821771460208057601660966349444691245198614370829547789606255579007145711928580052315680416671791548272343422337089305496057549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22494460091651490937190164652115156542260942015606660551652414927968014909519904721796801738617868775725973458289974260405101418776839016106731009189064866248519036897740649121287337292052788933696819766521047340318713056367983322594210062135892018152927577383521319574884129800609247832253671286904219451476485126280670095124574443825506310459129136259552847671251888982140814956878395486963560579033853996200171976822037900353307027364968625184788923865102268764848064355617322065201570474568453794027943378299422247776525183542578896494357691667230891976234045110263119139352147484846540350518378401148509969758091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21492527313467593131854852162012039980483797625756207589101268316537489089143357052624802496531236380014092214193090262476532022002260965146033124797071688147293629523332306077726766570679595823353189532779793786648309452197053064786786134460389081463263798256961116825083372568936028838354542840501078269458809531509534941358767030377563806605315834300160146728413443514391511299287467093651328605032526825338233588964305523635407096076277610149623773277216582099796026686382274705986827998258985255480189967513818333740379575297998887201815856409793767876627526808199159922605684189555646665644553248205238099874649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29205158455142251129629592560783278843397779410791048972556262856727374523748320350943690505016519420823760206200569455005547318993859846515529046218249700215015618363989313557423584666864663495352687972938547575293098033824380160963857131917200653664488130248183172563393573945391553437012620880172646348277891404487308488724244857485112294059141087672256753199156744688410689317847614690267082413034673238252915690391893309076795312658501233628063166075886594140514036263618816802460953758999115896376834756698761403252401109097739834456671871780491023434296597504047939366985256916755240787931792861561858325479397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23248604864485646754089588213948143629977532869224676968507782385200901237304507447980010101621096584908675569264138420888815208863070008469596716371385196336914707270990405213799746322198511960399899602866135676813217656062068811039526082897047793396980310287751300206023095891231392938612812655815756059599256358033689517720468212762611268118183199557693346770964520839288484900712816171300175118433703575576637811516345931119011163906206522347409469835535909259386731703342504156584922853772528119786098339783175284561994589568496119533376958468357302652358151096208357271499213577150289491687133439053402670736649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24574380424333666905765194985012901638544484489500859141890412601979433208953044355189789288186009976269312183044381063333342020001263495773472380113977622315019276662171706543344476558324491173233111239667971403109906003637049736579937332449546534233278563713667003754148268590089980369411393566152412661692980890015244807140917480018427369005712026691112501457133218959248975065176827526661608011132976928858210008298923447908097176385272266264498366000996741977418247696884464499881180463503933113997257036743495154166905849558827501060349699557142944283309348705300557050022902494997409025249650987663873561182529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20753421008642706861924233133542422487564950487529964118325690005851391715213405281331795374510591657870456787922950467882643381790021160656005910204344635283824783674344343722989021689441907729725543348320042756375941452198299535942923157398971707676386698599712288840108178063224512300849533561322782903050567101507058506947518577044196267704911773971672155870045059300427893716287301642733686688460654782943565490323745726917653228043500420247855761555345762664350398163646598497502205889397591702471596477957760453661322532957191484872881458525677291561028103338150850462294235500782227432066041357626375677658273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23614847932136330197904630332710063952627640268610670380672215682288260912524590135838928516509471438951533017851309578233231276236489251418732918939076750764977806420280571371189953292879876981329099539777417582210773787537625115698800417775636271229072058383319599485103168779770974210269129860707373501078886137487750538625874253244784954845810667572190203483214404348288389947692743553246903019255271799077165620613877029513318592707204532733908855667175158874967619429562231864005835988235178818965303040168285661274942323142785725652768845974735521359939250821888032142268946703396044783048259584321153754053827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25889827207968309336309609720016727757133497944871659586601513315499783253487070993044045951754150874557704316358320546380514189270289392385368198868697000394601014897957849728004500533122067084423494151959457543377620596527006980182094676988556137051408903056431127992937676826431578591383360030994979886295051352376460506056418635996417054278965012880494253162719940852873461604329482372453497831778345180711145965057589029300147179637914109256139256160283070122429229036562368819746621843665317026507480820518718905251357662564093356959452458977128971340949242594814540871962343273072671605869899953257040183223711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28533955983641950447890540729697142090324744777295667357910750883112394551218724236874256623886294546285493601793738477089107106304945282872006869362937095678595948546121817164289096088414712431542790270000766299013155103877010272418818648604181460918967195908883578132901139052941179110816168579736916902141743900045998308474852806802603429231057161140041172988946500520685112417971633848706013840205769997022255972266702286583458053130726039333385007486849587959808080209871854873638836026948333863255766558191113765547251973708921607069476152902217578535257968038405899245776781810957917638271496257396484795912331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21018671270945800284057083846662125309054779100481318607301008381967881385302257316170731164924911740273910402456387894763796485454047645764663582613089022833930089597070994776128236467571475818574608842592340180580309962852555962747465521067997226206013256728175220261728681150246293074400078786466734807083304595899388785427585688335717928772892593246260099662263523185023115268710805210651311861976828510287557811914869070833639932777259675280511880398008784031003160965970773027897194302744017159561296882028364318305439512673930698028366173988392308819867665066196708375466822730393505148800838392262738878801283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22978394485948440678975647476115250663897861016299444054026768123128764830745308563349022225797145411209637021376127093911949583367742144101287093175364363227426504758477825195445161590228691579390618794065124165041974048798254631640545362624747859082011373306575241048583901493806784349766306539589230956539749240216380710506725300142109020252253512204115620769207178874221657427257162562825568820395945814589156397966301984469740507421016149062389367338869321155673700284759691260130330221788373622166656121059102035201758763036011387632781418839135841736484113305146692678002931284324609411964166016234684101289651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23765520353766661232891594315439628265022067589064291018821166266686014776205174206725242174104835067229088150813885856505939820362989670720215092224292275059465889727869784102884091111408927570878306868306549473792368155096329122569591993842538018387053815254269929583874985511135797023331719407694889220051329952876774864736752644870117088065956507316079232848145315568027531680850994770823790163379465149156713907878387250879210758798733819525431761851690375323209405993998626056779014793208319061459410079312618059883505911061820455321992036880724539546368851165109470467401219049609766922080487289818478085524143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29105339476521737840246245022484755954381347103527180690709448741254487044445921470970755005091334018041748840469584738023972445076077149102150061986308446255844563291870705597287534761987699748418242080865662895811842606150064283491024689783534178952515921581455212485522742346950062487086018013515809437119133598994055744963120233626976315324404673672376401599268542265544091482367016124366429922471110131213323813346051172290117402993033906458181675889857632915919934844438192830670467135580349821590535006676378916042342577009867900660330065891147086891110437115061417709514228486736408547281648487601366738214999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22878841799341192576382024474094320698339682385090481075773534390391293770969495715048546457522243902490691665250372873164675028979109353974116136321706415212202268563795346423033413624529833446804022746703726808677738218165868711523466931311578779980343075715640850542497549979301856826988405831446939442226514193480137989804181246100134035446138696733208596627207392838713656608809700262806404741234305331442096198458033916950411364201184616597868472176145325029533758216221270677067753394765712917661508086458267558516729223405440126695067220632058449549438733087999481021612998898562471878330828080701010521799393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21112838433387086643060043270979918022112166104941936255625804403263742022709280846507423836346076231698935097197695583875649119612673912936946863558899724982789395016891359168291006453870460447960840288603538057546277051708622303092683639469829735646158162590154869641249112626782998952275735648381492711623747469224090582470404417196221222900599794814985994997906413008661509032072483823376562417760846267023177009411591167583057818290165897787861112811559397832963947353386075914378169129513173976502828950567807285061155553734481945481425357981693905487362323192966251980343138678586603775920201100820731967413331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "30471063131937573726816871442182618459888475061504610429367082606274666293327521592498858160996507396021084692684458296037308954268641741756081809513392195101419876317317383914628830150207481329270387239676575061877974578742688795062443048485775201438674636993519498108586808828346198922528171609150048689180411939459777600580449591680955699756659490045790498700155643324820150831052840360891015802134459175741616597843117597194206672831190009600930988830692131504607224129472964857922426910587074898683253194477386060128082091831519398187110913576377847898270202804063689964316210967035185367572114611413057598699213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "19710062965099738350516346495947440605272982073532751047014864404823961225705122228352864580882026296925064996171602797131461367242296566962819290441544191492949676828769314185340489383552854991306828272705133017891087118710908403161010439774661666015269585507640764424780053941396013905650940746487395387931622740155161205523422768123566181850330555161145597283502742692267480863070072912134148690977159150009585274470650903368411472429046200635625881819425562558964550399169260551881433912413278624788314780106585794567503000115592624139408491782928292900585082768920976790536317704609756948420098126947986369345063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "27746383907070213453717567176151219726662129688310345596497577416656443106947777175203312075250966175780748046869003481598058241541103215165301182150042581418310566026123220144466232236620876170667848017669926286341825022739930178697325692682336687814610240751132834881304856631980814588830310489488298819573537173085494476191484770643313298880033856862499721178797773020124687581669443520610886721029782631180305925753439955321027959674933294537270432187323975110077918999730201563770776495772845954930111277386629322838777914518692507888533714911630621518906592277802689333790532273225192153273343203069345196515091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "26044158421991721556834907334173581745448784674302969546372600121986362951360076361086981577158619134645722535934515399124046068354463205602538655069640543703460370448195092493139538287537500087086012581742345936142624373453329786835593762455462853792347450168816194394526270501756296088856586378861757804429778702181976229072748287506526084878777782370600324438751325661740638669504856237593364645287583743731460938513338309250636082111440025025464682621488402067394651473097679892810135107221827757909147819233758668491697404097912738629445034857870611300281152264762053046193359451471578737927130491780022602740499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22188964410876926819048323629856462", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21343566268828643018710311624315225", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24036578282329037315861172400559059", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22603201371668414964760248063946001", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24753858230101229424364611454030824", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21926085827612369267520889927384412", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25197503527374263018715282813343003", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25538410596057315512804770840612155", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22286675827678836903510964036965324", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21948744010722327685512155113235053", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22688064036901342150199034512569071", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21973136686803105180417403601510326", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20964960635137379549758537911378954", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21553913387573517750456678102566539", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24187831171237943767019667602263272", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22664610655178256646232416762074512", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22490245038476263367671107124655657", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23027992085112209940367177232058555", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21998200228983054701766037514727515", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20974727610396515770630445008776406", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21099632770337269751187991764473962", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25848670433458525882350016580885951", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25825450093465742433055879120388305", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20799955905769754588014852598550680", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22742150049429197232487589333175161", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24624747702166042636027727682279346", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22643677287599598794314185422382819", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21391423318411005919442887615565062", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25549202522395199584052634692672129", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21758559973703287907335127234174022", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20977468134848895655728319328028719", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23779469413821914517687511098598222", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21975378028391507903305785860211478", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23960271796469892248944099472814190", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21300764770496853492550613157106680", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23198190117960989897022627929991968", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23252201812895452645312343094311208", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21316248549273284275783883824533389", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21529903104108378368376151162827896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23080179556788304451259561417153584", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23756665662767732359539301631510509", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24377180762160513268318799668730698", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25279714360733207099600209058200429", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20956790778093350039160552461358366", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24245493671935270525550802035877084", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24690633377688030064744832818105589", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25397586541560278002846017508158475", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21491666009075761019141692025197566", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25736940750793345541488516231870479", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24723287608109456144690662965849367", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23941196777434193513108513246228477", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25429751857877899020486934574808197", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23787423075120181064407980508183238", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21926620399895898289820699208122658", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21155318344049823998741762909921413711252531185251385411911825065729616308777938176543050121371163168905595110664066191565479845195239025074504213474841202927528403776488449044533770252238688055600893141375854528432854535934036970399008271207291203085183365059378645122010219240779869454835610873749790140624905215021532467681634817763952744692650680401247034109220467802978482693354045600777216322778868294102439852282392963793950280496777909610182793336179710201122576406434156500807452190513985380215650071349897227344206596527487663256484727689332529425929248327202120622391171658769780145737278608554462906638677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3180185831211161470901998329560381459405051934378210770835324630801884922917825380193883745918440436752087353439069471799245067825294987956435444699507015526753382274320288152416712425482165659906222851252004368775530173553427088329386378052188376897573488548763215279902893088642008065720482248087681480994148439542736226584603624451630029623094330995548841311750835814681248531283116891372169309028577597945349913001914554590679144981926441372719934868107976758764448715612193947296639420894081055522553355730034945210396780713159725958897118524043820555410798522551941896474625791339572755268645229405099954549069263557439668487132605916715089688218267714566184814191732051278483456512837060212884078049161663534018935652111133940087071521359050201932941573771563008983533032350347522247863312484106872603900337374307989546240808282894358147587909287471267179047374265843619475196534903947685661026616434295304636478009993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24030444444251523735072059802050619199356435559156905291631796217051325431536195925938338466642252103849853174158437221674621019075936850597029848472512960873244123322945095059378003369207427717490957984505981563259385822345030397996983980998583633204745689296286565429127728110111185787759404222796899417751224336833976541002526917018352389389013340321844474520724588883536885159383093781454479105547558582902884753159371807251684134351555495639000960237594339272597975976827940199499775877885054493436308278941964409207850734938416959338275810098186183344647801596718861834902320355038222944881197569187685138609069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29518633960683616425988517684716913608411425300116912446246146939158028737343283798272370186319648822258490895367122457703568265796432192485845507571414235914041983920200560988235408511518696615889653406419457878323089373367192022087208254950497868377433481509060569817031360635468224384583220906136473270833479613605760183306840196277279263227712359286779200075888567445759226326947039818899177190219606696377980932996634988220097103287949719051320430182226382442247870114168332750264164316934705730741184742221322226903396610870106467175325073284319410424605929885811376369982490769769176684545349738391133779679587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27495460029186086959540193181286937939287176992332825930033786477329948310182176445438512749078009102206152615120617055177774955786874585132194868978400970924561788828706467440865121408525916257819530580232734689020217265840432426774316419738594122951277571952213613713075688663725049405504524715326349323298562529671442212222639940509271765937971529160301817328592510414732920612253174529970322934124608638251181403341520682608441799703548476000297863575393984263925627635755399858784141087444665464196655123772253114485536824556813273121943577087327520713366506346303194114298758836739514733085592636673381853628593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28725046938283990441644099871748918686409610240335399661121561947304768809285935540944592339325265626509377952343186233340200542253841024761934413094482952420121608053785595396010431262799308484508647528928779851496235092683511197156640006631716644874984058672575550250926349983678857467738342625258773810446163981829928789226890341689430310037964820683386765316888942820475462381760155337696445387055486500481264534349906557709114496964936198805209514608007713370109145912486767588699535236926898055496673561355724097897631833687253839108990792186398648971281567830258135315727278907928797197989808406007216953582969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23999065447872077000457319008512718286070501241489267801248441272513452828586378430995010692475780270657151901468448917336638869535533581039163794767241144080419033817305206900864576814923006899662268784742026352918348046442909107134064670691669404785357642596140294453227018836214725447115664620520781589023244226926869101579884895137075598321671744948738195348885075852926210490024815445255879633554048762191805425162202951513378700659675348401185162744377884292607971115718213803523361404382924681593589052776148161976442163995750477308422874059696284136548018497351169629914827869593247239619021000264962188893197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27780906259798945089640340204994057169933300145381567041814277500956442503731517554062613049716496083273471798794228906151720099234129475511516970879691901588708733684459784505046680587884224612927075372676300341588129653496092372509845313214242021510592303127192123939697750069940359765970493162697928779755769226906504873377735024090015110134283260147203492805586384951278595050248393027506693788735787803482118104981349091748179896981457882976157356966642781984607198553545149620138596155644863155733708895873635270148909877211998254375078914674514173902682885546980224060059642753961374279108587040402021266882101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23098471467611692746661999724441132326895378517579134617768511899946847114195267739301962269628119198543964798730864505874973158886433074468537631211794633166217757996530628604832979212986209465261343471867265633001108804640245807461667099242443498014137432267898022603136509085079611346266966732936774964563708576687380925158944278956343445831079604406940026374905964197957247869538369407095077771237445848478125060228406820707057521470467933780175379774157880304758929639003118989242377581919890965264957898179873701998116954824604136823421936612398935671251705725356129493543922226519349978638421835187142246976127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21280247190131130116529063811557067847508421406134233286475282501934881093616266343386069685531957581877062960276575732997198955206398442497564899468041622757754451208815577605587721580661443396350210483829220165839378481233687924008500696690745334366900118443584213610488728303783259855685860565415803289727574820061749651150054348553051263530827837646990788379848257377432955199324749263850746945807408430397263647715384202889606265779566259719754369351551355764216070028277996001136056973258089673062589027513818449661512240034829395012875659569587189308277728754776299389245110252052747783062374397334289660510173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29223250991983112382457046528730241534229089395232254052752923152374844856899759259256309821875553783785142332129999788509537767011406353282523015032213642987743325314278847451038311132271270553293273427676530765086704418714555011184764026165114094379913078281387047989913898995174319953852228830594150913399566207582502217673228565003393503743762058701219494667650136442923142936800066251766687927282813352292762976056018203402173104837466924462618478071665461502792395544667465946029497698030936024412346356827220561693362703483847254212411041774108560803727846212018169891483988533944344144464964128477381781417617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23032623869433055249328288359268797725171823544893768598769939356766685118133545295963029966955832800488323834792748877961846297761769020363979173232848368747437136956841295622160385245441413658454491807014368804223825389547301040251726449738184643041914295288113739310098758207913644333715052668793715603585446522211364849625319730554452137087894437299402523473512614172655809495687276580394856180804725941341932291062408502010582842960296065188566200017047183464236753867269751796271547823507417223020543314765407133159093858205342121548169945021849946949654336261428732896947259273369983768236719362937568812201629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24614434855243513296140303662620579145003460256817158716646501836976427278646679988088518570720850767895222153180324782615092697691142202274137833391186094161865489883280343758707617567166662010265694752194821293142004421186464149696863823901807881463912347375632575767520867954333177663001395972168062348913332673799835583450234132337885321207089551360506351474261931458260882301092810355875206531567206273337289262707818319245978235526589985848156462207007894498584873799191495645097285532963234663286880001636560610615449048654258608620751623594883408260644985968096002753334766135049581966185042637463377617163049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26961851085877572883028069649969030042132056337764138427662009405328609713364384744479529664146593332726734529514746393846657427403247710001221118396016315320424856492592428363102463619260647926597889581055312553516956196400752648055036838706784999687458954201169323172539822269177958286679303340959803804742186819247725046829215730696852658361661609446600264146726948670204691867861315413321858300727651788472057617577392661560980962544247290023048825659295519688112579550664197616209597775449542341070880955781047423755989275760574817365180350698742830787787662845032884538848156517067361447894132899825617766475087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20504104846534409471123127358706628206826474267256134289332768948534938259064687064155941160417316055216002546097427059004950817096286907716710322663028933558929736821610480949682410662894929295589726071955463837656629746653275754238140791315597975895377795280269761141530553417277687671249006345045503440814043011793974481827686015915067060541804152296205008886965091033440148255823945671389384123108330414900535352672679842520516566602693423588271696619170444290688054678988997699469432637230622186096765545449349870515673870905951601318039676217413337590532169349092319308628889348467234250438271883408475782510367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25127698104846194572653676171794686116725252702264820356824467137252968584507866409903977452712456899625838145198095787963264291880316038307733913367826075352374493521452048193550369953115448820157693630951782237413674756958732977380210374283454182611397183004970440299927848636943643916801908434572532379675845416638932939456926765995461071074787856921288857653181449107057835171996880934424408000876372964070227404456847064917341333516471956090577998185627234697405044331234444315668610502661457579195641444289584056618955662031329415584078016371601122671607767082229419008817518691026035876219792611840970929059977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24266831919938962164316511622298370670393937669389075059597598143499513497398021564312555401868979542634726978752602477154316533343930429354185086463653368920291383439856110860050330219724057593211446537178114352233856445660155188954824309086354564601102768738777490798001745787384950007459181677248858584678347024256220021466555666480903442841874934145046493904984782467456947394882922328341413415917787176149003606526991326159990886767588160160269566838264404118516425385311422936122757652925382858381050699009077995247491389393600658311980560303240612987769053874249426398768036929701231676348850821446152472041317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21807835702499350263325148404486183579836739210508792002980180645808543348039032587080038061048294696799258349452535384146288307219752676277277082257581489586395752557925780047812140845514110494731745353741416480322224441967966059663617836205811253091293070730100057102988566192461598041153449941114920494238273854432549369328860785333127670874308976959219709424394777413811767275563141147407487949638708632668960009992316976764231081360458237242179694242067229829813244338046007680728753748041973319795088457899569057095980400663654296628346260558672716636437243781996823467012869780618282459852787875002159486964381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27956873088741220077410147156339683303008343630836409705686088820043597188014433227048273253525812116763200433884861535801373304252034141396653537954152804738541290451252587327803613474796813296693339557620906050706041954454191614373026633655004762562237020550991252499196491775457852557719632766774794076783901055601755246367537310693594663350139517420704369675614671179630235522279167897694245711060932818671372796903849364482510005040586704890883522627788698055425524923890455469804813724755372042534914833357782368171471264315942849891760252984710217245676242277992315140329495948029180264611576653906628678679573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24903607608250888622701346487485368655100217747599240698496053369968858610945644362277392769396754591546332214686800692334331924837879232243495831469225922666378889086462056435971172960777702748620938365686169367947290710500285895701681839019104662748795781774789825767592411437798505432058393321541972314003619860389378716992513268180942112054207827357760841067585284010588319231141257536642361700331739055886883609334125397833419307992521891894557193224364536080579996955210795788804422438000049856361629896467176250140638100731292546641519847483911258309150137454890087469852042492466024057961925344910153662686901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22470661668446367604553229605023469735828039825572567938676743818403163353850811594445094970131179406539650977218721300637154517313817004126327738608894762726063233263575245189250754710615017371148056156311531996334869432819698904719954171105951239589538212365229602283410857797574318154729423335596172092851410003279722680353853491016453433143531701792569061626351676499207155092816333370863105228639390184196967577208925210787240118372908266611649714578680695290350707366250308774326767611471216294040173196054310906961586659346747771075622683090129203592253992558680351182884783832185251954809508119121276819844793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22069059346689042657843048948841923765090545578969185592725506369202543184197143180759516929109404999298405095739590409724686422432421508985332388330427809355588668713270174991126916057664218278810808191884547552883087942073778987608880902182624302683567843165870663788716691137411013656514671234794384704919042680217439110686461005103621445990093880969554603269298928032645455576249962954718886224566526988705682604754065088533782702230841131684055555650476195384370944768220721279768416947834012349568963425525660711681163106877147163025473868781844104307944178189162677618668920469144185355933033573093617187152197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24792441430508175961147034619065646399040179725898201734635984220335009681295946873556991325760400731622196888798809027347963224700709025706830653571816603112143311152272208051462666975743100121009388368609340565062267382663174111404459067684232430574014398855885057001182493709326498908243041066510144113350896804388024154410337596902781919053236872257019074609701498122112319413380623200674877519106035704941801035036037589447456000237871227913336612491314950792841522241106920080694946027117433756378689032166224631637263020127053006709782108748791276178264846532570847465354855053045697316111207639425467077687231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19855141955151814003901543640447441594838509454109190682672692781619496232621910588865095211735878589422070631774376334974404779404751273332062694931771676735439554054748817237133271602151939391716481797594951434699362973722787916740071409498722761665170361454738251454947170144288547385560919220912062543882212491077673524581468466678465748659613028588833336559055251511053704533482273810892599803089048436303717983347408111793514940173434442956405636506681428515278129006332031777932037469977924951824675201421833266493587525269248287779685354581441027310745341469440815402831619111807623598968738654024035706941431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26544932180945918360962220657102312186150459745181470051450020037931234088521612063654072950583807598080371927611176689647053554925582127101194720785308286878238626064429213516911973535071981112785919384125488115128944884278084423710202847301733264610699175866174077250538277116485914384714821150972713868838347005077865727365122510408161462119816686750737144792315541186136679992976138832521063794408075528851666705030581483753436025301941346456048708518295073041297616090416658580956861129363178404152999014639385402872569102066383013743838293437367303566494242931021600268623867936219617837422590026926788198460009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22654058536847712982594267393189685952844647748745071583867310521364940686986822287674980200094172179095823331961195267422281498927183598856593450324478294742818478103738961449919218689278860096451218533789674620285407837595021333822068819490831139087088531614131980279555647810265984300471027462819111006458162591910366172075038167948878617395363667417927291757653476222797850848793243999445929243264814609954171590561414199826468068370490922032206462642373093171960789454387767854688765061412408873694194012455144049653202991040965883610505689510676541612640466892562371800794913027367682825746169513615468594908609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23452215143648812379205303932428842053626369930404959967521387082585548847749025555104733851464548355463056155337706867137602719562753374878779714641711441872117097424545116277664146079433348890801120418365054010021576735663640037219933858977301008358949420408284739964015486391418982158390677638525791455690589040370266447753136717586444937860023766211229925880087567392554378003764410531361164075302833162698172873799532240597175836881320874728241254540418677811418304309280798708173234004123020066614186020895399071035720988725005294369364277245836296465072017897065097922515114194159363067066412756373614307849663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29002940290038793797791370900012774183824952400829599784135031745519946723267876418542202136436097287143051025026634159371955608665193461950380188203225695780400041361214385319407188936912214262575483485756936910729803861173794557922556700547118013946334709597214347988820643233591981848267480181817711630417935573950185099594741990257114271325858919013077267684833385783295107531212318801511948366151490382093720687419120421193136818819727898931177098442347789723542995601798529543738239674666447670236751621055824470336954027708423460515431594700142955619982096283586148356773181306522914280780764235998340640754171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25899714864605906605627024551349403506250191007525235749642390486581976602190590001728705939503402008374738526487430922258240874060649663073631822468580036864510911020699456012394451242648977626525985644068747883465509154578874628547195056947037136938175519869152033474948114602094152742355811867786932594521314903829627272543406675443262679997758095171876611453489775591565966958528900571517159925587216628422142608345420478724281653207319776902440509645262358614404853814471215520526015303503638773924065030233240016268372886330980093211765820889662906100745250016618849667711243393599520358887943921616674834228283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25941155503625197769895825410328707671617556762186637881952791024146123543944619093459569217400480084273756043249161373968530399621099797789114043236912703836636423124967579620206463591176341394303875009490132254714035878343212969346840526016326815485039166524516922885478570621766622415685396862708626836126745950105746180999812448886354913789753656042523184356264292142354485422387368531273373944250905858841923986668204301161070755609667044769033291859391690646297215889526055038065379169362066979615845221771000656603732507459919306440468334186074404311326980034349285370540123633278247853537075994710607919839859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22104652777932638199629782994212732310195414199698886195765962489753867499542607214992503544217405249922216183303646656855616369628727274947437384372264597039352554364747017621300142458202925019763975455328772177736281048546965724219448234301046710286854446724052852051458407809126487708709213757135210869044996163293633319896258699640695776899268995361201163868397802073251122232967689982655412835257888909998442305305782485080195846619026192845517406109916897082314863189722405492035571943794025255261994213137854278350230403237847996683351696792912189553089075458185771135594991576642073433538326656974203397727333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "20876215506270356055714476748233007781396687005820597713798708285774140571939869322120030161146851559333003907284658698788020511185434275095512049535771376076681930075498652714049597305377768381503999193594758746798891883579033439936860637332250618904728659158106194395955538662917618964332821372771988628529208457367573060376313693768004731281949889017905602479272318790595211884679596277789974685178557235331460898014692865048554886861934010554289888141667245424936369227928393979682911470902008057063093558411858182200856165354728334419530900547014977747453730262518634974480971600361639701313984329831559258605177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24118587342871160966473207982067955012758744866215379422047779857774096458289539962673663043097844170822584237505984279644347901702170630539530333194493797000147405553663689486013808783662916440600864616272433543912990359789738552310808735405186456828832089024115752432918891143407844635542201989571701231979704239231463807162598099362230380085525992806546769200962861491271694534439191725106474292928046755116918849371092676966147252338528310560884578488093669170335805813413506950862811837686754237583585464773652349900688087594796273854216546394367229095148806969194782011576606434328849433301364282844982540434373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24598252325823006405490746799981178786829008929206356540637380975119769662390074557340856680103070404144043057081702898981622378589993474286317808181906617603024373886013333442743050745147989201527494595336873119368354272313137312005492576075685475890010315815021820356696874232870886632983245130254501750865537140777207904363440590199877821671156653048910782896245671107292267928557223238162153410704207434564102722468335090277049231019584329710650115372844142567641552864920240438606178693528762193533592259775420511672674500897387236584938874592963008580235527675872959856911337835216254863589537983818228723246589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27920484845102699694153523270192470674813804812306891461238880605655703748562452216067816366259338367705000566948719809152865598712599666594759598079108855137528832722109119285818292905447478695965322717791445160611559634380222806048632610557932730065327297857426522387539116626185428988416167377650603462503845756118681882945057510976352646758525852709411707804635008216553178492725981243881626715999600254667101947195328019972341798186046142729764172263048654698812691862560413944351688730938224358737145053489943147576079763869879301591395291413802119664098887574440627316591494152553933905464750232864126420887201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26244449899574516673238490008738752035270241986502390044506831756249567599072810650512931206285477066824527656583735650237910918817034134765796526300442998061492601513508739179034847126230079966292811188104892833358460672021668533324015781184302650566138356580297705158206775467021684016081857613703579666166324518425778836504623586148798735535157748957967615437321755374756615822019740587803280736820176593745528149274241486615716463182711081911949757436506554863694254330302960427988763958876816893795494698807319381469507084942454321576001599651250567885541911464976624805412079513466933433916107242322182107777447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29054933427707308734996743584016203966664879852794322729471890308051231636327990877651872531611401731855650713074454789268442947853604165792789724974289342994528420940654454429643968513916007876535411382992492421901404271950217275486595391465013746445891724399260126475999586677718110749272624795470793407850481987456672701829218444728509957836451698902572665322051056203534886231497015215529049435808991420413543358445124122384088664067465232260809451447996801573415439689732227632179677054802632340430675670987125046971213359164347856879023289192996160619649768829077258034247680072805135962463219454409195116803261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27614195781901709180100471254936960633567012307917026903907030801849419673756480764548966003691889949933400801813515087987081845126046889182061003048914102090957602973306738492811933614907781804066768638915275946495730176543100346647915343068834254831663217568574898135015479372481801752168512087477534041040338659628787017697469819512343057630260551283722863177884461124677110935400441979681400333436458723333099717582623549634527822312065339523991566918178190562787683580315820474851565659947157959335509704519580684060872942376047367081845811892193238434788477506106172956090426387724967164634178426443119915571461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27028264314766590061964552348800541867885597028883663983270376612722790307610973634172011155142982768398114270478905481008146375482633823383476614735107822809505748267376134851554437748123239510925934349232072720470874531575190947201900815304939792606188318884016822371923962256189771307692035898841410368630109207159895245867936166725803088574794245459247983011415077117694600934652251224556530057560271476751741708476710708805657133153066470799985072115683700616172450348989957777312749316490058280412750533502984165847517864951662722344251584923554944501631154584050831670963743806978997579407233621863168897663909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29251650781539452815248421467595863436444613998658991463252117212170414421018260458898084341755083195651088257578062743373323843178754315634218149713571480730750097182426073104853728398953038465851415403259693941061393486085425065077507020074724967726644017417378835553263339792264410482336289970990481990808870478532660092788685254896339644612989454757179217696464681222151916084657226792800679473224115073934601216672775271207823967894467937795540054349138274364576578406091228386349289311838018430037588205289228481955415383196442790536412046336010017082943906875828757753494648648930265167024368454189986039218819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27318197015591988784886807527011708376107298092627494652843292973866207071983566583110267846603926953862379800543709621734999183568065923845768032603832468249897681313685770131703870601854728811652876617830260422789856099804446162761314826040216768292202689214016353541585002735493266482594686133397222831336848867325307221099203117672014297349749864335369186044827239795842888634686730526877832983514570944492343337609684573393997018320501374561097243828950247924121039365249168564700270316607223813080862278390616701729510602343339549465256438905333594370998313775582000095292077311754864594375461423837787239267983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23207521071295159874573389375669482807281248748303951408328131968313845823296549831735428717696162148343282821292131343751465089125179230101810063947588943520122876443087236761427350800859652094859070933662899287580237384782434792567373655837207784082154118869796632814904219093984794872960417278332940366008966475028301370762181326797642989551706798489667398742977656876281863203634222393161767276268014321874208626357649634981771184107710640613331271240406060231928984496127775140099381575626074325669848482354700754407016352125489967090569481773270474384574732421145667969399123025935295633358434068580967670081973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26678746590575571538783371345064396077717419264496097985908847102993103030285849263351730367171052906555901453880675203365995226677434097788751906829193559074638946569678845278534141678607884608542004529507843504768228807119996288610386244828576831126565394359593744504634721267432417332282918301242604936056533736658353547812698026200883793746719723435271911912155351458498164700076072127463580808571347001393440895029041753267044092023803832252015616061610304382607079938244733215589834455778935845347795169847462258653943622921286162313706281185086170400627874510332949675896478081954833267397797227270237389377821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22953219511126998980702975134815765408979056729445484833874603869612453682386568231312058402313317992352581641342082377303634161147545327705526053990529147807315416594625306855573969316475877066458816315144737913769924650758644524340080996143748504083800012703403261462615105707732791585985630623389723026805745993105106967016721909397235244794185132966205590987350120537642318560335396061540223031478776064141263974982545045432297222905958648203798039090775910800073864506515111186098366941813757553227782700771920600656176677489740968723985097968820754552580848338530885550676120464324995763323553422621956438407179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26607434797807464233107867857788535660197202071490920989026986163425730048565341966995620989824530978509991464429251593802893653605532950548452444937468656860508418533594821432468158155308449299366165274347201185635183586861039801110148726486816357522466315764997513126899370884352313410299693131516831944334540340499240021259866823152214917233993767485806392338232247016669040224630968502968757161502666731644482938877656714454068086749708030910685148875506897538309247542026954911550838824280349990713485233657231114341567903581747746823676885511735961545305210756941350172743163908237110883209450982311112336742901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25715863802205312717568988033017384880282969143460380671469102306599667488343604082585296165491757035212365741851537722692592140254045186395155516759842483293532463584835149528033500486016964771732609293343552193103780165926274818689695418472402094061352557887282875059768642309529388962778508218059570118999295926109673714343517362544554844935360702423640327889847413370365766985321636783003608239822709895942012942608427217170157697390536281508585796080111212860489731745809353031801742277497034906852843224257314685432478593126673517227145194278320776552694261332618126253666881422056466475723381506134547569909627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31167227052918744872341973342204820193658427367038321145891946499711783224568549948047561681666558714645246020752897531446479757844416712307419433114989440219438725714512803933801744566121634870014204570618457053661683460562115154947406342744945187521424030959027513286738649657605141367476742557755726394040826804837525315464132620853266195810415635906677295943197984510604174576765866945835190526071062564558086577988338281769845719434106785905524932459375361136766497931115163442579808143851705006523924477616478443716462572701980684460169223290421992423293061538933392292069668885130651825191933160566147674480821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24077314059758292714571765876107875350932088929056508706046626898596575405124263997121662423843832078466972918157858834837278583494243384888924053792708167214596258791675915398863377804798580716231467875520246930015207204101295425994573473279032825037716684803589094058932296310135543330075532127741595730102057175719291384926407411631935742734426241204908434618663274041090541077820223631435016278330907045135010011551539560588859460177914341041167333921774086314260502462093357869418164296554897832861259939357213805332584971278420110941874702540003243992806116994610039331615915012022969158617408719323117075962411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26337699925590044952601250785842992906243550984321441756365780217531219622067523403924837246394479627126776147956095048435158951620725471353861983711869627638701231821914855091873148628465812023454328542268632347063163563561995715630078054859713671218812813038324047930417476550860631051033465363114620425431798668234787189588431996081805100912531600145841345039162966783872808354262923902776666491674471574975277897737091005426565981882612579927552283909567088936702915960055680543691206218897419063578066954940083672685877661781847187759623151666292822478022577268277046655086974124254724518028692003274588717926411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "771615863384977032393820924763867986954488825939216632668752270157684780266507672006922696711531294832308397745811193647420871633825091282760408669622288679875049222673626549089279479249636358219945168422670486244070617942472247940424269355394806828677979291190596134267914405235427486824524120032625579326397786833519133993486100701500717139511300898968181476768513845350132079242806947756456084307394794456585807465274551321404963768180893729306461541628708730780801106225048615792859984600550365424495985678367734600888898292321590654586991180281746846090549478781746328623877984471562860552092389067136095687441460977459128406610325425252876265015158914216691914395526486890153600539733544583510513193418407216293507849753404552460241977556228248743755318851482151600446017323860727160802763558820041685356670643127853995550923646264096140960873108811107730764504029917305637562098801727174327963818405205214312081658438030907636506159641399530864723091086235828763502684349435259592729497774908722109598328601547039434731293824355583276035247014864596497695236296043233902747462497851982306822971292683855172567693826766756442051483716367057699048709031751719833750355744522536323299922655807862810889556732425379865429093166573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "24250870666310602953903289336863100963637691480285784573650932206709853167687610320497115117785431239429698432347927208060906466424032542297056136665696395284002702268611672871808020376413292943544286872378753027284791644874421333919905095863873745156824898275289391821457691806585606868922150951592063816333006814031704350628647860879086760852167676823471332053827882716667721817621931110759068309507066242631175085557162341988498879593831113499872906066005589270719470730231676924931589194114748299739900297534161677614848950682776892956243334821863827685436311828678457745599433732567911297135992186201383047480803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24096434616127862898042514535859130031549185993338092681006415342959321673636529680231560751899492576215276696973664416659194799973219464207157682191951452282576922129215230784743151647280989947248517181925295572496529197786942534019604227485378862658373681765994560166443965594202264953538697425294670567374670710562069951334217213978701410740979747740799619825785156538636618853031966834591411104060882763942759597713992087970427922561396497173840343414416109995643605170851623577972719287328892410847683241440602503700737563565235880156358247669165748851079848147952449685295645121923768010628268800669489556183421", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23532892439357828400082668827831326285518788922772186569319052523356676795543015233438061753980214246355766250659620461719225352629131936657394395494200914906802210958750612005947577219594396166084599296067380237930837220393860521757234526738348546827732417504655746498900869381803819912920731231174084461900630463087053236583641213177284647299964652106812149884720433712318973471046378281970105249944705581520466837644774057598935839896707686683157974371721330938487050674478802010387081023187484100032981160799476705933237395177625291649796463820983906897478996420129024455548103696194847386946926520257179740016523", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30212459278006112635397562858019855339057233197564545958037385414440806508616258947702822757517307119779687779331212316004465293938703589093034861130227370898016417924397148511937080873240392888230333040372617007187949839336507181835366252015413423324403298932395979972731597608813998999767212978495055843530775467516369840412897744519333606541905107450801239864930839122184182572277429081828516639085466894556106621278586443307606299598391224465004694095494922826798553287407498692180886331201355851289516249794154389405239120421087634420457316525185519928635233191236081071874426824036038366995248126375443785347717", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24397046167741674300006453384550553849900478503213168893155300301309247520547792529869931726476771081007067032856830600292586037933761191921480448620865860718340479404658673121757924563198705957910356892634261942839939048880690820831532449694944377911841020693491054380033678411558048228530622878289909873017836790809267834737919740247814902183209055153383129069244257535993636389193868473465435511291449899770203749201158571289259740741713989654206572774320607559387916388856544030920815050375488265197649445838736225899632057316040820104838261835197275775047354086340849293878717217316456449535397163527688394966519", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27319023443042580000713378104111909055958925406050132436288517155129327090146373111716879149467818556508400909709435690429901264467590191085539753613191916874868317951128062099028887060810269725395737541396924609347674012951205565822588910770366133182503803571401976192469332649336812239064738875932502373605232902936767431212116904912895319231089749492097767145059560441817909103975459215192002905659369223614907915912198986283584662703886776309128958765474607043229117173167218109349860511688287492841003930939312854497231338098120326338606406105091843626186129311813061973236930935258313650474986123414950642050213", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29672146188087281365745764062332205105793783705614812895579157034138942569035522689067010726979737987122125883138700676197896107195440899478138487069832615748153078210219548927930562522847211730627916526648597653602649839501917639389659543776554242526667004719911667302876680817536477842627441682525902656704224507521436718348218835452563665963844808725924668475452868044551802685492256541126233300845649867114914464771217855245809816665346005842579903907465485995655162813207480069283337872473103553333084316886584179038985667269889834038851194924867967361520226298860708034255772437116641175778622184668283769232183", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24096434616127862898042514535859130031549185993338092681006415342959321673636529680231560751899492576215276696973664416659194799973219464207157682191951452282576922129215230784743151647280989947248517181925295572496529197786942534019604227485378862658373681765994560166443965594202264953538697425294670567374670710562069951334217213978701410740979747740799619825785156538636618853031966834591411104060882763942759597713992087970427922561396497173840343414416109995643605170851623577972719287328892410847683241440602503700737563565235880156358247669165748851079848147952449685295645121923768010628268800669489556183421", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23532892439357828400082668827831326285518788922772186569319052523356676795543015233438061753980214246355766250659620461719225352629131936657394395494200914906802210958750612005947577219594396166084599296067380237930837220393860521757234526738348546827732417504655746498900869381803819912920731231174084461900630463087053236583641213177284647299964652106812149884720433712318973471046378281970105249944705581520466837644774057598935839896707686683157974371721330938487050674478802010387081023187484100032981160799476705933237395177625291649796463820983906897478996420129024455548103696194847386946926520257179740016523", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24780284821401144542333934280428656010954010791934590182837989854229168595070077830503265978187353482112418840436696461028331078630204284622632067820671038532916610482870755343006097011916534876899918002396863947297344159671125071106845513259255495035629959303520951072460593668188637286548698532016047401545134061597114878799658098833966422106489634160891355613871289724802024084629767705563908521822312805733995980090835590769358101077858848283516340969077258124486694037170141470581016571503057693099955136194901696838707851579240263899137534354694165031313228367300491989459244375803505522164487262836799378862739", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29192668972453063021655752417794860295695413700215404642869508899878457566760560157510739495761310515983283802790017370116143045940748592957392401915795399970354730777096111109919233924978058861764347825740125286002490832732428934799434698735055516275714571994093715244885941117885315879302808572361113443786066594968071492966799862672427806362566369375313497848896311947326807084262780608632504372990011631587600955290619661342108736081336671977473390438118918693079834002420794903106537238902060990613460692282317808078542014595634510201086919491336269179035916789766561446782021271590952599149425410690338319184999", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20744624523211748339496017377486287247024155937252443828310249748748463115535718678370610674952883097471207308856200741394713832405397218093617902319959136917464365128079290253070569257751972006310313037936165216356447837729010931112206606392080034824772692181874520701941178850834142551367603870368559394860977921450384452501428951585378558522576722308395182102442912210959899215068963469695510106779624535594858904454910332956585156094941399565985748219144358948172053895177740981164222349467464735657919829169783531942146433052340119955947416581447115081549396813009153764614673954230088029161801799518101388830073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22391440433418435763994140865598181473481194470943596761017145529018472393146375146164328038627232061949230379527795468457372211963397450712904417753351856191633735244612515823233212113707133995482244140211135011557157143254656048159604876822757003034780126078937508151231335000072476579723556242113120379909272412202979837218475047818985530693414822777742557078676149960031471481581323562964022453815044821060343879020779638336087821767815066350874789095328367971845240030700040469568642429124528163338891746885364064747092808321109859785159399481756568335612245060466422898576134886798541528055870436592586454988313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21619244267326776384150838393235721387557970606992526925322982966435911107718387643338562167994758674653240170353309962221249866049160328876723156577653848509626906831573026265184998143969772789095132333293422234407272015529237873583347011412568415354057319658058732733879777091299501389992962926050482590202831793105413792351404997402782643416994311093472198436985156091502247440587904366540043600536116501261121552565459456757042887626753502743158219091964718974744092349333936605156183902763489640059442174952635307550800994836723132627861269524394213577846125266210338767908525249732708879238951621163526948303459", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26453087614739009772510127265170241939997931818908681031778894333094313546585516542004752966996575727676953556781303531182672815728409143642136272412926627043758025624873932778856645252836842458196368942066882798694060656534844269121587564013724665393121597498382492683378421866201817010965856394701413963752935852483799093738310091444292028105723395884817874521800554682939600513704673230161016593969022271011746129553939685453493451402173385192418800198242417264443381328822541364378702379790049918596359013720799140990734253430744281727469013323435643725482466408844388730984182372941419538896881471971489131536579", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22705943920387474119457888022255013883827838034534749632841120548976924317540550290150767777433406870259308659393527018354922454777691977321050503899110606148684406753159768013130699281134334325308797331256069468616022707127306889079751536601249311049598028004047384128314179141824729774070412920272436122633797379768750826112314731627356331274906462400057637371986735853587974885786400764107643408825334888525976854584674637634954064176214617380878459207306028477982095077170880694169105646773520728410449162856264629816715471315646076738615173099920321416450714607128070028615548454445798123941414394217480820869027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "28879855909922730905510752450026770070328396785174623342613748728484704213847013608020877334386472043432215263069985065047847311376661501894293191379743652823936772180046244074090516158655107501829279880877300187729649927689334187560005106024051626297127341749086321688952133819392544402707722074661138855773328675787989065073194843800860918109072707592143618941006516304026045391787980370098943836290944941415511370830001696756619540358486954212933979394642997787249208962424612042582367263226001357473493405741947150644969497962399755532457729775244116007249536553489753391898973551891246432929416729450311284349223", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "21014027906753109516658320462990363902279459562506461227674394028145424562692387835024946721156110985281671332442800943446875042373436226741031419997382069739267201044183739033807122571411438435224667897846355287890196180440905676192438517917677737941383978779397438422727942609386520417458450246363680289717022729337867855386597937962495711983230665715090547703274257408067666270048507974453291327317214130302990627365073994844199512441062488523456067158134814003227448272777429297089608171479058695614792468826020564322815854134771698940085178339290361879494282755554554533114110624186053819326973361916153122141029", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24373270964727099529510239163782499246278111166809303832434784614133167454198930138147283719940657224248070494469378313240132937099849490830645838971344476755321905577035670504326775553408086755993038558363934984210706866610212199919784989823308801635544194800294843939126929245767315799376428656226690118756737461644019244897351444008389722295373977125451319133963334064319012284611281922519876200465702255199715593912414141618616845766952415240026477272442417645209859776208800995628128434452546255888969946158501565423666646507644621936747019463851453553493659266018003801326277058906425380128459519942820084098179", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22613223665570301917683030289336931", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4392434497953638233775459499515025903973741083890487419964494222905018373502179807851965935420870264327246882720197181652330804197371891273875787101269848820616061065870670294696867592428103599356947206999093646764527905140222305606904286074102606968915369899461494959228337695214444996264720675004892037252699302462508169211774723805145951063650450815184397027752331705665058793442407135177379448422932414497137444741213230721773507664640443659279746393003767168419867800987095425052392029307531254805105488516682298520132932305687169385178522893329601755666647255145763375190972119369742458404601679866212100123569323363491501325677881796263860622824517593697738298359866450356096651797932066018552379545372751262250646060168016129970313609125788932390633155801622692111740793696214088677012670267146488604786138975956399569103364330163377334639538620861233058158454968402833359846851528084837162994135119311702825701704533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23071283073245132662284748677772343", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24863528573904379363956570649120466", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24840181231348550546821041270779819", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25018470825335209148320131238494927", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22641293672189805185468376024123454", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24822486626998798449289860573307283", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24958752627396719495271464363962947", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21234465924342106246054205556929809", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24419317208489868252366719141702215", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22756065570610955835391920109452457", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22260661809830173252711127954189776", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23927585496984322040007007487227607", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24854737523731843454276201159054138", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25213526897392817789316942679576267", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25345424983480069753729613179891818", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25359588207458082705552275134141248", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23637630921556157721013752620381673", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23716710153407236969817970506224903", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21027298147410901632088007893746066", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25959454870949440992041394239075204", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21245049140303589502205313821290025", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21129836015275959878220507942731387", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24869387580572195907580400984407059", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21064266898003087870750664275138695", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24462033287628033084546603702974893", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23730260365065917155277621676538575", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25694587622260355236585022605456667", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23675078595665280720245014749240072", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24738339527701366382323318876993200", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20780232786563282226758677667122584", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22496122465745603536538466591368898", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22379484734466609541664832117983775", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24320447589822339726895538803390062", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21090039339145087741252342807517801", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23066422003056785029770693333584149", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25824103502901873055549986530514189", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22772340848473333185176630366951547", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22982920107558050498197125869940613", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22573720098694126530800796523465650", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20986411004737629728163676244188132", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22008229689376393433368715500953147", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22051805722028387382096337114894134", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23909603641840226285224854183821054", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24591102415034792667458455447385674", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20971399072975910282090643108266759", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21512938783374099125866055944201109", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25893150505046351115645562254711047", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25868224254889414707596618645529072", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23773450678656059805487509958609303", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22641410067414069611402020120571578", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22073229355207297119431930143294150", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24663670902383376953223400462075750842804180542811446676935363879444693159806853460066288050589647346065413551287493266035333212044331772037956603409070616674823061801316143290159982723597332232958766922703798351450247503082191181884287047478255286030429825949045521043153792546923459409642539394097626957624073747885556331706640328111091033767567254480046175536818080879749822724764571228987240310827162756621830215419051659575501441863860188421833919420971040889079769276386992867022549980795861267682126952881007637913760643672129113911350811659921241765488415029565461910425588338976330951065435920282870901073039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21387349026356898646071031810135929396887568088785708817995402865492134397898454272942131432159715475690745970798682375603002205434444149593615638149284712254937092687181508964294916973511967440875513050464499620116202896760338976883112504017901962277881619750368761031806603784268677393983819842806927856177927794907942423053141847962996203786045071084198932648508023069164638950197089098915960079419405095645405628825522064875934383948674711688588866982945704850634693943290059566937691373178232005056892086495176467283019062630435258250794783790119075146274747300891825464769718973944120608132952187131924323056637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24075358934965431491076484224892813468082203182066943428029953180493135297981506408665392950420508289140502488560991805584265736711603271871576430105611111482754280797556349342373054808461323183341375544376035796270876683977912665359488313017290877904663622336747312478760422518508355097467700887679543388017113028066256665832737183860036745599883035426579678675857303026861156112430625992592067480368752367819890807942000586943502422693125906441489115684981678655566406412978107218828996289864224577975180489992755784144194891028327196524047856559554296581976174887639090272027131749893679151585917344954030037854423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28449734592035312455925215926053841955030537813221994656825510516247288123100233361799466944329524178556792240973659268847464016751167395490235454241689810142169538990795183114476431808848895537934444381495631764608212634690360278471689436973125015751507904323280251987372018913031153001017905827833969751279902457876089532976405233210964727103719360895038240959266779299236583993885779789019336640715793050921158108405423990952295809963737908025143899931979155237960358870207942303091101394613480947200848001345492040478314104693787342413677869347611592024127187895387230853546522498320876241527775852943109064083013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22471450761149379945772025049446169893391775966490185192156114584885424950427080771466612010877936409268894726897002569209858359558137209203746760460441122337936095291986794522722986393880368338483722774045701027614354445311749065557331264586747983132229527075805142794958509231258324377086265723336302533013520187837034352416794239250862197008554481865685541699412903678006581407876146658205273641416150431477321859352501104259227095446234241761885145318045085743119024521477795479520236018132677925594565444304383758455994645874124977793564203668143413205724406406034747515623271524698535008899710366866163616900669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22929651335402977453496349600522069085677170400174331561802050525414250709963440992089361340233937706930863614736340853725010100685618207162744692774805843787551102461510015192843172701669862522018601770711027633274159677302480156633703021955411932180312733837525627002327556755896147305377261534911272188897078061839641940684953583866130374423138879440243063094903288557744880278182965673697750327679367881355682029039008185177598793330989737571868737704316135098956178038319961706307758597406100788358763909990105836088295683121195379974189534210502474238913103532903723466957097038677644044304531576133302103204953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22658435862974206126793335781235360837119160359934668477442251375063847324106621797809510646144580187258295877877496438604999278890157776126145381767861615179907962848050623090893001600471948372130825805627640834560654586186315665294312828091961734251638343966693007103727125752293278201462922793328990289121329232816320853214730725374321812985776845705570489222844223657681606742668076479791369090619435137428767093235061434425045738372233832062540067390669364601460186338737640146178732339264450690296133470231160872507437987945010537350757008071911375931690846797005503813912522690266944190609233658377590216331303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20608629929898782244039243119826867152440203032887651624369368144989094306424291805665354510034420032268695036580220562337374768847102145112927408765361400357732547399453901025822987128074054168330523867884123933674605985904000008865477724643067381185044385370981627946865820684757267656748750395621023764795943276341851742012209531968228418359414527021252402050540310045199834740124787233631151207560037482751450989678876620592760801558187856148921486607777524749988062972222005881682901117549464335315191880406900678269540579595416564466996143990340943009316718082772625982659237647653858287337923969979942702660789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23226468106221501624574155395090960923388111562302490758366982966468238037435435307918422394576319375057515418307702098216224419568651981947639927772199162244774767516141895152871603781139986973132944660459220979434663408355969639186590140737762276308969887879756618231347047908162203582164532131119635761205250538825712089271578507188768924302298774086049029365480698108061438408346834846303706859713629723142523187404985903028988395731368980998149492556301150918276377134104503810446161778568780789281972327067183293681205684284182780010287095745770711630388177177084716304327613314890210546999787859270727399943629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19087698724468686334597985920454009084602394315128810624312376766261834248520477659147993146640091980588344070216687029706711899942920490492175695859569483388504995766519391604609848944445354339103125189647267106690016560558054893755432717200263742647596740464485369528150751339876342020160421696656788318087620529194287397563222697852388330615967623917953406038701286896139177419267308831591047890891917739947911753844880538438494919879496018390938130602771990633115722296816087429298731285426577380243101633959508186593109085765905672972279174074598925094190193096304554726036456097161435667192091308254385631680497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24283442453852039802863598589575435678944111129301544593828251942709518380023730826108711592124763348270509315255073957665222364674404713739764517334106173906447994973385005766046872777874829530070274666414258346222267372836040281224296900012318785296445501907950079090532274003930091886873541794980730206864907560246925841883379473349419721833711626860165541325534413446272182113852994770063107160649808952837282450973812468762795676140180257885326321904712996006271209256008854743573581242601880495864188848941658552347087866185821608771617880154255652223614764964632047039929930091291098470803664617663848323137917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19317037329683434971207947937094251929572086146761944232487410084736800500136209216380706403973506220569177158121326380599217089558461365127301399623535856105581473420661805657556879067651078968766019916356969886411356859884522047227363717576272248598755609342287044901625825094169635612860937892138900742213750102193102381642293713085513640594073159318544629084670802324452512905138375518116097235456366256523310834480599913775895932369901368606526234644865564278623524759501584080244677388737530112742019399195961026829544220082575010022109513448445839413316302960725763412588105189408125940243297654510363202098213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21543213177890154960056861465431753980289739608954792300291232342100571254428555386059479817565485736080951445533701798619600914465455470101695646483820940031044742953473436451486493692691607151107870351255903964269338635965027296395014132983962007833760204546486336165522712746040259205347665869227860904321510062798963194743685185397384262839781007769463230209833797856517552035955600586177284957028966596350888284794226931328307069509702187829291783795581493994192682223476397860025290032112614842297651199128759561636182986672459224564919492708040116086566411422455101906928761661080083948998931945190055509103189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20124078637695769343982576828361287759018575174772868468815549768072079835756564247530708879538049195385113167071398114801098219333762772266879062562162929395060029438161221501587436256132211542434347038382676225705484124864610015296435548494666676782602315242505861704602749372991744382802890735526948794667228088158648948015227240396761517699433978655819430884901191593285469583593185314973986331554209228990984548853250597348209988312701927202830371555801444417115161666023463704769652772022455994854373601812709367636213999542205347525432952586116713936371120767476640881865192113458565592776883751434246182373819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24826975326091933106811954386038152819465123986167492115412166692686669447693764130102453072059401128580101035908857482385958463529397155267987661557130049533014961943176132891810479514597909632863492209800622655888108491540336722364170941009467026900292286869798963275479741120970263555253832339930791817191132391357709246498268354655304237245006543599218829375394754481895004524891761945989884369141443839262934671280530255575197510276235865591116703315883764335501095058508238586700031848422520342865481090026985468261487327942451590610318280496492482376450937359796384118448223703782192469740318610569729410438011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22122532917936955058344804120576941726505995096806390456823401095105515721909350797386529164268412479980016124395084497378557653309852879832862112893841965789380353017106040041886615004388731491766919292869877465546989642152772875976184334839958809207749416592507901063333566942000834507815227196818366186784301830474751490236967980277731475017909576791214473069038374254878809226310540829333047895078529094745829195421070949856016923538612709959606013529603145031790165204328676052487197215751683545945555003713839135835951419612605078339176425998086490985180775095555112646550943286876467265818327250908879712249749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22856717894963762907290438118289864173366798022938275623764069897181721915050551478778540297293905368647540662053987947328907474529075356922059932756155502073246086203808050573496092752440026604056545131576612643898444688700413420481611960620246204356691586768086039634573259399759741424898709091817697301854835664378186221312536790658377223245634272929956655810064715651410325178896145556788297794696638703777063363660041233483828577460164050839878902578785954069080816091056296668076694418021943830618181777609975875838219648364153002395652413214793701301817401784936207871942684248385878775905473104797726178426743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24920575425765838487207817432847244858860482617338201106205148549381645783437895213602511965404179003385527615170691784234339858350374284358369651111881040857274893529592916738022279920428106245239527172330987599276350601665847696944292638920709356934129064503468421735958893101052114120283692555727528259995057439271914172118215461123283599310890938342873311128617296746935937330095155018200434219165262364630399909952477052640971043821943065285960662807107637773902930085264690015625191092193834345685809090393073506429209847308654484310325033523256045452707373666591831007584574984336192068755781587380459651906083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22620429993039155170284302206756067203256074129270497251975411738262451026898546384618323709124980287697725281410833255785412065873397275318936622804859891822371389911850922560984763650298164513730314112263934822800197702169881568961535326020793411681752602943344291998381501208885172327471320914049454450680578448954513592762058405633794539966306938601947243740667580145203619210670918845442936084799339716598906674666446869374363832014254327372328402818243803389279205361314870547278290493846197437689569622598672695900943362348791944219348389698624635095930286677122490366362167891742951621767836205272600944843107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19348651212978141977251604992765703877211673098978636766121485810801152615690326383334642511927501181492052524749381605196374734750270991063169037205039542457133706371239245265773379998254010323581100091174402938060704451833150164958118623261013091794604525086275757755952930916572657942260744141685694275826325422714969814347064809240828400079817787839394947898497856370109206626743562933304894004596245273843803675647441822800660457880384086303380992407234340173969040075424244363232717417896731839231458377894150188762798000345334478807868014510789648704680935734468712748672325844470381003417304967424347651402753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24668733119670180238027355957043819107394405026027247221897080724719969517702501340746596844932262693000814097763874420255701236907377982159836783294098747829795232429093901742747751455188363108169812248797346255682190709014649182625070741503869762511834813487512437128044688795715014329833604615698255643768726165186897227332927807341160008267012525735064895047791009529908014969772129633878270988319678899103072730320352148532624620995891741963482709806375787539297900583429978592983880543665481099206810612291792530110151555259976082717587599688608471895013227538680586977106024063273929248833763511618257433328361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22485112445492517014510534223389821492231074658214971029190938498360291986861191675658004892249001360213972377399433276536444544667202339613039652968386439379447618768742376282774866415202909562728152810827299682262292801177825368728376344528812927890950137073391338662493428643449534064055752786727963810517060668200469369964856909866937228805378485483917937706558024798717801330761267680035828266828486106073133566792696062594865760309786769273446694571777639430519823583619600090068790567975879257570875830140260333870113963814500542132020202894298743112086698507316536910325719274058136963867373287110503451969693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21950205148027934290037540961434851591583641775400916261481952204386724839457679040103649712051079486032576326132720871326683026885296637734156039356369253227524725573584204520747640463875914165066266201374678716915664341166642156388931398240328557999250313844610571871811850029539436272590906504813607683812591943630512381641952299234729413365173815347814837283623629281807673202975971298276177101206811674824400937370114599931422230011650526131112844808119892446059349981661320341663563453535777352642514223408150697397295917161242819573366280025697015646454661441252473761468054505074354581701958158999508813665939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26541954729956473347284429514660984888311111406017417933450072542887581973263111283366869666390456385221295901850954258737779100934835830704438953597165336307930289630677774755565901948888000809429638828540634538210840605150440579510361961592993312583061743225730061315009416161873236302621136975621030537123438169639535898914049157605772363588334204036615177054400159355816848212397223650199796432661303147104252751460889934248449055231710529189081642532495653167619683885127824554544728977067545721337250238386656506859773876549463084382342222899576304412329557882410556985912312352128329542958668044029303488812333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22955441695147745114624200221242641326671040719366531566814382364187003134267616400220849795627676675832151495661190193687308696245381159924909375457227383274669640295523157359178134495647780242932167879374013421762036621167232474381548173463977536540725194600388613211533476416917867800625741921175823688829954052180166316877993124677511010048296521173825848907194720355066245494387210732688805546793403403478495174116456313765012678837808637782615299640053965690041810392406282202437370753925237938226028303306657017175827154557551364739327719289881420149058165926842637254062905913162121191006710983617265466780859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27341722091624839817051693523322655211950886468290466605551798716375582235833278120275838865296353145344621153997807666580043873317184146748621427671030863079991559816458334371357281612330966905248248033852847743662379565814689584896612522943275991344149479128471056802208129579140588872252655725638784124116777309797542053491966463229320917160076761824092955129447658258553597633897459585763956238579028178702714978806513407186399966445959331070044236616377484619395864651815161364971752068696775146101063442937377756937334587172046328702153677783253745484397888909033675412221352502499036259592617483745999844139151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25263553073382169558681011090911784708671342349538291743987614636730707327415419141321747675359631611774955165134954844346712965523374983578359536217849587127960263240342425297851949257903507381359825263917923647655305413392498905629731525441973488870297794167578711898937191253211220122520291228831622815115857693539346514736991694820983661431156860258802668738039152749713363146449385626403889226556318106473040080506995375095562143059579173740433079126116514926718143177707231250195516978436153362487449696529497420880524425001979833017741068613449617060461026938235686121882670838996224241508297914275926458291727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26976160285714209152589417026906492813006321675164759603532552693740837921520730090603157970224702807994545375528753322794858562526382563783859556693301418294912355138654478629587400688914820727003415086195229933574595131313854525989242926336854639007600530099675962551310849931857925838449038704192976110494331938426234440103497603225205992581553854276841412085505624294921426503533163269602841042955197381303255486527301215432372608939487942493761230632719778922421066565359631191864279079288268477731086378527700512143135275671501567133021174658916105455024287867734009575989916249986363334501318600918302837804297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23769875412300478148381287834031975155932071263117601899200689938878348728605951130854120202847297942246502334994904846294808621518193547933915263981396771423844220933595085052164267398492254885737247962148756703216578378054475749099458713309836304357185337018179161047086353778030393396011426529571400066241040977794198229977234560931877779413114273636578180055433821137168572657276318417034766982148028994759044388432077539187546185660554520015761742054709419302104262405263049041848488579871127487001535816286068869331260091146346545075966618457762504192095741095391516809402382942466515273616182895259016035469867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21201504074157574946678353137323486649590884363142411382298888570756737939142832035412671084634062254674013466726558560123891769587515360308280499411742718040495733317558175809984210850597992875074410151750365881778584749804427315467397690149451724950109316818562585119216045554142532954999389848928328079268942733406072070600367110377882786351976479154918822997321293753965868850795870177094381530660008085977036587412903602836817319303799192626261696165671579360364210634730931320322716271553732507882248973146093209921381749617149912090617573393431012118679777622256155127704070810408844818275373863889033817726549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19856327362334292183504266995208341378274792025416523774468333090846072542841237067862560111122460290626963478081128388481919251024731967453112675434820740703839810215560241212654425353710626935668335324081148657604464408621387581410935537500534606122018733925200490498992915649712625926873850396787948149380536938285234158167541424271392198306690439996743103181947558572681757361619224114075466714832052261723830556898063702850756456624619498525009205098409203878900835287796710361806765590531012584672447480977049478573781136047054100992324642322467635170194950019192882860849078040042774477064845744368158289742477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22681327445977722479133686155990385793662127977420751590981003301333298090668814204932995184671318906002283018850625268189918489789412450431976429505936199515189955533331124264950868137038219393107614773925549124417216425907719208026295762309678391134275052767535268833955358818026097673728646718344732380256952636700548112445286552044591496550846886106865948118043377144868236618177375116855118514017202479566477225495921034567176461141902980192675312601154235476654586855964689743918660171210793240600032016205343741919585951963127787458811290291316603127375471065815121608249788545024926882698450682018496678501227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25578781422236488709907903002613379118619485149455460076730972156985848332564647051411635049700123018101656672903364854677986624359470453594723457391395167193228823577469140585731394170787383709416129477436315285294751519572137997934125287281441716636749240892548211931895279565856533341753866517150052195472984238288203493073151875886703331493976698231073660792464227262052451616842341218294520854203792405719923300435647441528676882844200468311650048659061439091051590663582340091140207149388182080851081978399099491356255570153192455913635453563081019361242579073907661705973751622039451691892369647389557784758953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30133753367400855205166241219919757703295841559095349270000588952192381800468560755259719064392134107792878238874460366660065796283139566295611075175278744671230219926337634911947243911209105763902038795391807327389586266443203271037766919745838521651651627684729802256622465982911721374421952572554885910015324391249202790246382367688077323083111777324229866878697363373939787720527194272903243057977309944481871330938848224972044422415652225470561285130321558586744439746548331771751000035709282287217631955596285924024734050599719893012948196508696452140814730876314859551901745350510421438948348200989543463698367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27783641738622978315663336155298927977359196149441546116793105672076314596999941428384131288414261224077991976114264575407570559952555686148004409558462429078759594511729311872075146320125038832067682823062676482556898423199438892936137937133239720239561970503159878483316128962216400319109785636441961842186342502699200108926400219670330165972748469358241720441647518547481112389060811484931988249096654011175263509096239003625289264770790012498359333756472923593728612870116793072546375153787567671238670625520854646770461816756728367769232104835679915581309669664034008148304628982546994270935292707491509799153201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "19974935560576222673502538521571752539941059117161851989324704661401243612484890959921120980937542677656988005000480879153543847125402356255286623722541957172774042391095062811686281390988548573240974537338581086569186993195013440067614589537874593922517318054932651664986524825005185789284420010682575258648965883836913561495220662751628375871119655197511964875634602513230842452812517044326951184935598509727762206450812503089016966757507219522568218210900586411223227306709004103322659259121374991751885509135899252080931499038650635220880578910648352208903207935902970346809688872468791797420977192885497978959571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30960128430400070764328802182944463884334424522034476924749238376877258083505596859882307076976128495572114935956789760287896547661246055722905500162243118955154794926834322695954689018795276983731759466455808179284334595164374478896478201085425597438387181467985474146473860719551577715064111516052289346299651216009702950470728105296762976363161216993674592851940103472129543258634009536532823916166918492050531988372378397024149411872133919161661900359468989600231445849742024849835364891158213907927678763001968987376715641334100301533530655583491335650541078473203948547509115617296603069667916229756172352577723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26078667885545974364840082357149508440441537988708839237613665338238468009954612994856443635604654951265522286307413817230263598155542153730789141375932218943947768636341989055411247226712544359284281805402435415952494484858852157382942548806500915575027705719799147076756436219764774748273244666050864723164862474368804816116178687022363848702473661413409240137954399305858100624048313199426613785833445568616806007066355607351784543424445404182058671373512007819739401317751352773566301253534939652917841976791191560012426316184058492721775133254060235879103584985040339591393460424694281121035036673324588074510997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26560857675328690449560078521423604240984465773473995002386609451584652184653365595762167524772498048679618568689307901522395288822316314151216118043495966747083619301189027129666565441748584227293456891092968671179662524502873074578034020452560329521304075565234394939443194283192098930136397769128951099585496584816749687222538072408298802043488139942683888157777981068523459947283980213733515998939674478939269193457137472333123010427798316943784428327194510645532670570317917510301525873828340626161000651659878443313251129965393729066686753931831405181750871293373723745982470753383639862487815734921598520513969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30065965669154098620654242435353793076528437274621878578033351095137206699538925263844084581694559957663554279451046389378280850212642795338783499996173346449050976500344902285311277048925073511106668787111361088704170897839107791908582763382538434157626977747952069611727056876239590781283299068510282597354527358472595677696232627706777716909340379137037435871337241579201835518997613862578763778046121297586972825319482669990873040950751549423533195906424808544302766386786385266918628900048112467155449135120860701146572796740314232500998897179007689549603360834559380898490080936241618530172822528912039670917117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29929559123420725021583669735525923945471480951514626317751293245556113335577216532480464909003272182543829954396320329644607155985092104487272301159499811655913505438009122830941436506930046066721628821988449365476194421036465442748091504392267719128858177701037014574942886267612287694484501288067769679400065439089807299465668346197886790682244996864994294269414900427097885422173923563890408375091801064697437918812406291884685450502164773989510956880933290019112454006966907417147722807045475481686126059146515369749545752516669504914220174885703904186040646514910669379811490093132696628763023257873354968126569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "22884523450350334078889342324255390513415986669202132629122080476526068228988683780849475758230850908180996852539702904791466378436517178088311908955657143557178847523395449465158330769894868173451622978088078315541167973784547047295678356511287852864430453271294993323632827620240663078456412898226871144167258258310069631110983159310180289339635250981927338794034152953878125716458795636982895430586596623902543840371839217948240154712845399408835189182155243451897644225623776858247316839966327868066408565511665322335725636485557198480095625716852289958336410009743975252277823121993375469925865289806766339284481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "567632410478497736269703261166973523081317566460281424690190458800876909289480418608136737501793082678055148828589606070968691787705123196569353449002323374481784880232518587349498912406152124580123524859982878111181612356104947788147280421113120939065306787679544152036569171790865789478744498656334969785110697280106980339849985059566423400928808426632989924921315487269163368040002541224220892164794094917825425422650100153903197083266328141537288321614747384561932558455223185133149542117975228992474930575722495294638451508152312281295471363266101023452082292144027907135288868696660670918364784337784800679541559565393243806267691649629442938838256560382148049598610178558711814691696672406429104423827629428067688789573320438474420580799994045318730775868380455624658119961538651258510709304191598510130683056194427519550023285740519999169903889857111031064098450091529807054284826484510886318295270802960940152213824911293159248349898118330563566180563566514136825171728279070564677186595388068812974179732452817585897627176957951657902020691080589192177960399953371360268787773989536841251550539372310077332705809810902789881049725513188418801412816124208430072776658421098644045070186703308739385394702519181163520335025093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "541774603600002182468655514156571856295857174034441653448719346843617076817279641433107282134606984944703972333907692050953136839974879161768030975773755093265193188729320254345271381455033380667473027170664978175886280430474268457504804270076483448141665570315698724345276744631369577343901996865343846723712761376714175227930037258170382989098190859640770021249508891986193192278088920726751964970807550763975577392335408799539121271093718993122544368215625681654627936392993491773100900434620139618273640829859715226760866526303187521899541438259610624211476800347749170228785921000289247588844707859516808992777280973876660141267936332141426148190948704421739952567715893375143193457568417015888540556718065240801697464545406699800241129382423896327599320448222910654278151804468526817043405028679223493899169942499702767605288208379463085754878759626347710364844400035339518047842746380344469591945169935479826596562134320851608096001100107307068905839529533476624462869905936268411200898334862537582740589699682307397887877757967523823981045718501493403862952534366906127701589979906391327354576871599092413114291845567075356285764543498141461999137316477055991151192479651190885333472882751207124929089628676550725632413932209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "23543064544005654173200039207832307274663156825243522897458707185654713100284873877314184660884268108565365666287775106599995682854090278842086834348548733903004086029042063672878066130741614694738144696212512900127035961852408776465439976408978421259282886550299922070740030914971250255404106163856047519251394832816643946305326063836135645584978650690462225034466181817879124061511919351956922198624714654276114344963769055062863882753692526892641584863784311078019666225820655277777581724714166454915351329642802243936294912275565118941146991922898097668022851775628014368399459184372954931855126454682016088058979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "880292511576644913804816636255295932293205695726653735550165937839392185908913427130473561453797578502464734550274804409654728945706057880920048377856974977946323422625086799662882226898111723945534475326935828595476434791894712665185399617001822874020312593411414522168496344073060001642623919069260654724157769343186789357534604989199562688815308666047900387265456822332164549786985666291555753745428603915045457548862109204396654630070403848602628620651377127128156620146752463750571391437053290575958330576239254605030326921821028686673242542880278557394628721421914370056052834358422195570426724400655594239096973442301990658265387902816304685970245807782609578221852649063508684879607164473251070302259294776871651877715925946748421368016382084984486143103326007521924727149999701230531021612685531235984449698668665304658128502465325035079918587346487998751914941899216964284628881528668536861795667383282674955390253245589807559488047048142318237312801110766087051158190965833882136258936025270226036769561828943797525457307740987786471089664991117516349667236025084864873940127038680700815939744673254551479739612609669189050251705839658778771145706040432810104520719829053249541145706149942409108573669995095667406479959693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "796530676286257312690132906914334475321831626321410968381259015294714159031398041582650624624565842549639819788770696280786616242983195916970291815094201975258549303336687149755467575313301085478458574701956279148471155235839075697884904127184881045739142808130002029988998565520850515197795851095493015736357514465538516917588971493053253920261369160403846342910814349743450189126961037456776034670364020311642458451672696025981798256526616280101669660529599521113748905985029914400556468475828297113231296281019431207455336091231686741744313453544990766960416133350906292499258091842023647712002162916564977728866365049196022373896908291806382327680949565386448951002214736008472593305864514848377316852504422285860374330179021399303044011409213564250574170132926478422181873635259213342567110915845633625518776813093021601115050352061426334783073790090675473884705025201811127763841825655088292787200338176494148649533532092156772453967974612936453248028925602183017244455056236520663153249345924274886899888298588624792315088099203683624078916963373356920464559397070018821091614108434636909073467268356538173576795566150543098954104024168243637030114299880202154305296466661631902503740489635574312573861587631329085117041584289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22239813555732692943982114949254689001615886068517032755585490677789369166728942143076475455080266828936512211522631820676293019041441395186233074033287119115209694191426262140124604249837403502028920227160269959676173087654368659577901081615373293418608258962606106757316659902160214751988689272656608467978302321046112675922292101416008342700883105909874134570332052827114186071855427132450547718930200471867733312415654309904310163558120234933603010942121275245884715272782838182875308683464385984312866686709788670990779907354526740984136419882465965167410417993872909901294150908797978123264663413725398430527549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25571511899411566534649103045886154", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23149711894945181905389501923535240", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23427797773233004952665113228824484", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22570884749818856731115107980349601", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20438109226940571896027415122454984876902572480380723965782168164251257960623366015887324397111225279595442751488311792413630559942294170089416339022543989678432332092233758710377104388301513655017697533932405288782428532787549057275138495408462765060984652008054143099652758508465188192201631433854682149368248169706563230919220409081205300314470464475793515849125904173813122757222791780796689269425181617495049049239603441642807336298458928901951800157181146455262939948135065071596099932206515330477331226273664493913168012164967134836925397954370090654845096601851779474736787412522965659810674849329019838903621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20739170787219159188037842326038404221599390318028181653257348700407178532279015630225728627694470683641001548073367933195759967800285112768874970641473573246947345765738206794689191751949708113617699091282376386198097562571078935529035138582574656201677879019207005880917314446454365963967380487482866419383823560802501360196858521331665071302913142933145383216419271064769501490535219116956181695255458761456754098042889396483916365723315589753659846171812262969520898507567810448409968559278233567175579214141035201419055275221389646674183207872896125890923377880712340009796972377955273928608345114713161806387181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21177061751449048652841371254515082926864011973802456412169527889340216088212597414827876710086935368825772050589264014658199737432398152245622585366855245353141267421411546155922329824548461676261869926483416401876144043565456027139595718054497705798482070732349337301678688483438468238725445733151932092086224221458902982094637775789142129088619959502728119067038813896451898504467460716507334821862776057543453403479542161856394599653967107721201891805677831912772353470352730413771663413166834461588249288011282633941657261704024777412146517312807673320535194331831380530791450450625454805953812208752796169209747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24113189967849541886728038380253944399109064425561817204283354975626818964122130414985405729097206638974221334563549987839601892640867432329847052015058219847490890372358159327029847382274557029383041905689396967649478359382220948540397040376846313691280927637290406602952878591701645047991273561576162832747159596152534496073758593804955315493123495185992811858127241921675509230203849625158490396156286533924557151630835597501229624674079054119406737949763664197876668174190754658054475981773632680629696309225901387542880716445560033420576197132536533568259980937349675770490126179726527340576712686666620966599931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "20653837396405293112235718974102737212413119252877643325569402787527678708048674305429237953519241118578224924880098054010887008178873200818662277680085091255154469846111395527795294167556096794187603447093073529325490230445766749991812001311021346388907322104615346275439974203092369837592809230187808974682641160320694041104223162064777529955041056183227699337252597674339534524099266988577977223527971408053338016662792950846867206423873932820139015993962224466121341489377855876204604066688675287142645323844236157933987397664649998530805899341920458509013953362553318929601375289784290673026387541990711685909399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "29429372212764096949821154895439263682900243511635465719299856128600689341135916368273582199809355070297422738340184923508922364372319924990222678897286518764801320396105547234150438330361186965858973026312650545466335404154134674025656061640088812836323299790815174864162044365373641405072538314488598448538633466066152356193725555998493209291668729686171227080630669192883474517750696336890506720001547896596656294888578017956873014070966142824428290809428958635393284705302591562265862391161810548522794566419787909057279152560214526634034555736785199135585865382244090528234936959095262154016139109196390604697411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31162179520501106189911398279505148454570161695652214597721039660083750504642637216370885722147198860206396687220628630198703588998816542195746363228361893853900225868855894845816430693243831672372295651728726575364570594275582832655051791682328531465812360062355917337704965860311216068673269977650987832079165747332989094396492527108624503041941247325300294420598770175990475580897229114507107647301682567664159105046330966584427524729830978362994619145209447742268480344468188565469729599538175353568837773601227575953149639836231458545324227438640836121069061193792779674915960556858606737027743996235052587914317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27989217625992311419332096344700149969138828778875352662297408472558484236850387640064244551032900411060170535941826154669219395509854306017812642358899815029886879271140642568091354018511801553093365829184683614719803213564126143076523663330755818655235942572006552483708401907526021935357226533006270972593183409616779438645567332254503117021125982991558285920038797017273922242781675573706785997720219037472881276660325472070605979305631318234503204175465075119006150034070683570064028170373959989480571723105089021101406188424387358079464339135510754587363598794258419913198794138362115545325440835647265875258709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20405573460105222648151935650402240443550939068196832380363614427162960660623496762909080967948483925515717263045822920612901414212731684370882879812351157610174232891575369480905923643086841692862454721323666538108876057595740138653606793772658955673363155061592012026186630204397918578921455710750114474834667024203988532065889672720307675994005553945415444156876854173361992231858142563980104787043996784285645010807241918581155904141405608275042993858572705697126984861349172503240401441573091795751711437049034855587303089115160706124807846143276713904242123214267052906605179182508626102544590346996378339869349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27305385008850113604859904917723972576403453380295331313372751777423683600460248720775854395282439945740904414212789152652137688654138217456154708023264811644926505410707637897341462639990343390372943584096496249631639190621829558541593890112854865036006950325458957488825779132840197209394704224768822627526663820760998007461864610355371383738511147802575654796550686943648912725293408060236297083606758230372866779609927685003738748479156326312204867719690471625009543552918418434597332868657173950114483859853174730661660094725935785164630994721105496253553637348312141311115892183363215727155748767837235065049873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24685942043328721327813913125322411236386902521957537019689530913065808448456768923448612012109432687083775935968826614315281313174739625303709899913698840918108843222765988124851914639599760034140534074830535678807159278145499368049853724662658465797469516489161742220182374904694352333242799483909289797449074387316165089187775408171743857123819625053996552906481547857627129398303323423430760308160823971695859998673283996279141479359382802968680803388113668600099007044053430486453818500413198177107922354792553746618623556680874509198859317229954324031209278047484217356351905413054202748192911101909746053542067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22193843652042831370393459810148484590433387634148997899106530815295865773158109380474985625687828743725946884691599450830787077658983911728851712749820901946242037995345270334289597698490066253631467315531791094944546548329064478119991532421081470326788232356876646142824642786121638919428687914305716548524877720958299986896324839782707133918262331100329152566308420225667803950604262237705739576848609064104619410606310227037973703240004103780314511402494010949079652935578480917431888848106005989348602326964473245341816351933393031997412086081334357187046778912489987283938887790275516457466856411214417173533841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28738676501061740465140642581156606108407363226758469016388665212818058271272163956463040760036148721305911505268112783962088779826150334694664459301305667849564957233286385833372608716105568324543823196963376189788677511493049231113524185652065660979840776322539320533140535066590341102628595305598962302332004455818145103968891390410502634852747494465812488173827364741289978031751756295652013186812639173298226691402796426845166557267463083566428847628964888140459157946689385645304609737644566226580836757617549935992220589174342468392750189819249869922198917029519271909597387264502203339393860705160050944561889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19013874911300551084946371095354155316581182984350371868016770315945844998000052008040813205329459876756977138562591694976751407751535475928430178703421205850874979400399104970278318339894013858130996315216592848481557137623558612491596223070703045127312788940582901845616937182045677944919563528956761926324647194311123548587131786144324021297374243634845668629171842877910582667225874326485575115131785089074932587798384837333447686564221745703338825015888111806849224120352723640046305629021894750396462079508516684817157296183426911745412474143315626702271072307481413277258706755838794651809880688380335416724207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26624692438370379938288014078046500077598612867077813104101083629931247953787110335740300700618965563601278952626697679602604166605535195384127376084423948867008114790847425351936056543092969128298032102767219347553902140262409395219531411697641493267725877238081186576153431933872451565932318030529446570720053939478189051777501749151712175715913896332565118358831062044269805651318563342940950633716493342473344190185867450200494228128094800376410558990195039850500346755839157754844427673839885557993782303580664967375968499384760025758431878950362670765925400842970548677347892879684613800359919069636415849451219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25382346853997940260086543609740805706123249426652982048049251816598820566580625314903768525680454417554690127249205984769986810227540596410378876705488097601960502174216781374073014052946098925931060687507875128933447735298933226137348606674631145585396837507249647714779782958457123226349696808752893503766594590605662375171811599301813353757337779603758362798476854377359666163985269271825420513028897481071011178070136310773877179445270969654486812241673185685999579168029951728543275450281141419276880779253229429688849699605546062215079053812017312555715314329529774227388920057083633359473630835693766542578659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25350211788960223995957688500942504142896290164083248265595528896180343564385222967103259287865793434899483282150710483839995446632716181384245802658975426500978060200183652510722116621331226305964509254464033526362150768908814244193173433775465525226715295912053415053143953000893806525229128792088045883656572863521973286418803940339593952574078112188523993488689612720152795653691942110837848949598208245615563569489418163329991351664595611236854354942254967438697050773330590670771756569560032098601455654889641932269555577217138714564257321380374140374877113210704840639503601965755572860622209915832180577782329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28968961355198475782922085151528078226003560172389610421419422446322217560392426476971233507611484574343212501985001181296039997546047761760885711042035620311366074913372317877947208919936317690026891669693754621699406036528781199115561727132684067426850130214434498783263872748645788712648813550104070017086880600126969267158832614917830758107159202420171143375669170235823445509599414657513879601193287248538022320226730902710281370850881749314729010209070971512010710841399831281176770403099428746373692149347536809505922815268555468059993932440083035585394126923808852576097180759596367106766886015999614005031459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22913378754900529633777056113782178157145754147824814400689802657909883785704406832706739845340803322537786666593335363451020758922397879649249677334379899854769671753550263942257131964021317619015105002216735826826103387241991369364491792324307827146475782012887521181589277487078515144799547156933746062727192831682541665465796478078585879366710733372315849443843196151030382964401074476892255846205140946368921538007652002536800757232709932286324716013207524319714077985314499384724390948894815740922882031522140085667332051613340937585369589724416219254884372981173916516467464490640655059689266363091494963588701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23656414453349817478381777629413839022258428314014733281894696946497758592263391393243336027451492962901928145223841026168666795473100720860823875193633474274989461017029739050228951934073731715703136076294475115844391852801278360509240697799629449151862248300261256502691579271400063638857645583748147731860384117673675466184323910607859999727977581217126402927045644157264565345988866099606713069861383752272386825868524890535198962707450027600280989985163106594403942246161048680506400295323145601541060035038614699825829397246085176408531687849762281573765999345944936138444864196355390443267333070293540006291943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24631654035836516076590075637049276208910955496389476585181726917068167766549435597567616407583711453854853373024208131256575898819930902745525233390133557086519802916269033501940886512905569200735857655586386657142598695775862625897728780205276679740034932519183413981711860041875464504022567117649422070148729868945806238897099648364054044256007448435857330802117009549327063458668609366422943671970041399028591114869115689111528211186537113468109685020392862492252092205047538895568101973057375929197928089375926761703869387781413201786324475389450827159124081690105856145714917813415288887833282773588148929770491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24328322558459608267039084044824014411723619615772410950668419805728152919994636534869617316536049442855183017094150612962585835719121752222944396734038000708463405823363599609841777079102020885699158154183126846775146018502519789984323876245962952502206559184261235908105308057818843177463138897262415009808323810858731412683473405960072596354659616586579159773475368055027435682888814967976212225012158770211950033156805664258921116099016323807575001960572699921394187533616923403802660575241447335360188395549594624044709046230681176394456418544782078774916657554084215944323971403961827517234074441796401617582669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23692457181211162317418437434243141902461525574438944118514739881600782828855676856847140712314838263581947120698408172958794872191288971303844551400739050115806024044521661647843848914371726946312128460252244396394307742921271424383579044274530629824157007879193403975999027006937697786122874031586473158954373484484452488889398495526381549256580956241508129382857126735573301551266907910375047081536270063127785678504963779022656976937872922121816099808630134905898764379920681321541711328344316458505122144714530765027261791519018470786715815502273917202338364551228038109818877268742581073577495609156370813149041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28255777540851498459994127399510769149820639654783730370305851792771589435857533617125590919113966867369125089473952560040094093366264098949603867836655564640608870940654005481151545199155125356062387611701719099643234003595263552921426189062694891155516944167974114151672458344738763906905158933713237674086839504025424500331843166761042378471805467942027894305073659830506429450854522568476602053390154005206166943654355193196980231319702089469709099013694700198424355455168406240397750679553285086617143534750187653428876763011605507176761430650042640416683285407481060373687808764643465762823859168417186061620213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23769439249949585238074895172510752842692375924615066253263940799306371629427142375209110628927426127812457995182388795930213572119747447662694949698924073135935332975929269069260481525684084560967855281249910785545193288384274907150316312699006136073481295898944111244251581259491584207631145059758492564135961918973289957747025846646070370621958679481698683949433874930560959410789166320097221883853462732127959147242773015289919869283739739737221427442949410416538837220438735927048207219356822598099130175967056384747938453032704673626149672929282058768592244610928193127131968597496146621026235907491916135496437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29774831608811015672423879490444573132269297293922909555873001726839646705407855535289749380423992552059468243424274236397381419025097182699168114637494749491889730908154897514192624232009881924761596880688685136725275897629238282633094989624053113242447775637326081341046728624997581226190370035734079845120483893416285193850260260448771628695501214391953229875353389941477257753310891163103584312196236792770784116925202690218395980017333287994821142918844638923974016985834101925464820776226351229565119514059113718841500853666697995217783972622884935565096454397507320328169058844942001501752449444712417235214031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28404502194813234551284899105198652553635842557951685735742917029397445678911315126529966845644551629435520454821779388765144707951695461519500582369110563313952924933442985262708269824787010411682110419497793414236484651870413780879444696771573313389748382360379575092442856049707220573071460054746971498281626559515935915855023575198184092339288439914579256103085108208910750125606651715232282266787066468669475500448548403470944646782668507173180760267663380617007346508281691068747614968760879360426963447663426049307973249681938799986867288517277383174049430443713954265028250017123965186312345509282140388246733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26295334083800121246997313800987899413911904412166108397283488413638384044776351660026102224340401479812005109298254553196385627917280087357279321898682546262261082603772784700633199229865131854817890497916945944461615997473545007182430838437234586528587502344757332513301769012712408537655309270767807871040570306526109410665632113694089673086026304956396494929048192967023993870072035998098492886751497606943234974065444538655569843583425595075679578327728167376375132008877828062089113484507442398525805974253904662684176267624581477318705109360793983953871888994633881425736925420524762016163351501291801822454059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23414533033569825888658091203975978731694844074776013354734701507705399211493652337799634123725667947837144120567844458104613647373891172771808118613375512947616249803470050003570228294267854377521518516342234793528024155271478669417486520160298133862568707882253229945043353783269711262078886798486795699536221497463726791112157696264434588958589329679744732608421462654749719142495773521028410695733787047607615885729610902959349122379313652507661397950554565638195586843219553603365762480407789870618726251172370480528277651546335957592124351714165812039122962808722283266070539746661040652126696130518695131489297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22377703641516171241334912911733753943303587984834514043174739631039600467468812770324753570587558015026572154850918029774372928894453899738079546371316993376782169489649989978017621303144370332127124426662235655820408593609050487675926590745124477600685250249485362403970921040964183732532631193020358694952339043157584223262727412433940010183347922797338450744983442203954799213951928135198548846321624948360383716115851160030397610498490813444504595402608657473076516751684644024347383757926847869110825421581073883133181983605492184651420160411991759246861001446315609099749585970381926881824205649346151873668157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25357611978103817699370046377360721641372397842607132179313439461908079154743432082260284721111749285935192953184010486279256420971307469194517223028722957365865712828944363265211466560331482529026723200242977089612528476419683975913236322382393888725673152460485933341841867560704008710276498568451949549406572745462256130430099001537194626051975211859827770349010577614112008134675088967312690198349591113581675906422915583339611675595062286724066743089197078966951721221949517893743897945893217622698637605228668759233163996112867142552358153823378451750317878217641818565087345158450653125853740195034683903776399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23285316906523228998197397701768620691475742957737662287026306201143234609114051022138064971806075812289399294953610271654486202556862861769495049321953462404278668705123889050939501660900264702786597078921917320055413666604055717913376958586990682941522778489373013496799819500507977824886314514044466592611095881134674041998208588173601753190743089859887332175919616290188902521558905299723313253569104939810062690029810858990526027715182064175565165516275379354366455081353663849296933908131239383867070214415311888514627400640186003780851021922856411576950329471348375820477979447932402468852366037970353947471303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23817627605770979929914727164361829303201037767312225595666891791206603584903680038545314733387141794550529702460900576400019326160848360765456322448890841464314831530985921871439094137202878336388264362423784160328531294070334433161846179924303934428649944405015454971872099212190773119193943590244506622775893862384140454644791936360887587808937849017181767995551830958618860753458404025686476578451379275868797382417883560931567215104685732663516999663485306567428980627004989945119412791831707255564421265502241225065423579330439202199902621660136903635027201430774040068252121751100428751413184743848998477552977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26399730578607745426518703000697098750781783026966508443608371209294348706784304967242840761098603493670820427415624611733800772987983160421871552898645583660861638619514254630307737144467257010363714061223046838216175815456164817865387266039850462084483230770866687527460555699858953777367877671312208223723338168811429523963133351581256386348959369812032650990891902273959015820452001734634422618415174199158136606651105424621951683422325633489398110203846841514717638901681042751712490963318803991090122128512538108713340142376479837622971041389982100156517781927754565055936092457224223446966810177477420945299479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24928093732917825135869056754796818122620534267732911146618820172077220240965135712944794685754170492569840534382270413945440087917326464351753222030822300035796098238788913736111405578753866460153557956347128105885198667470492107573932480541255486802300563551977088255808048342330728091421890394809124149231117757644309907806703018937912041527898000243828601032431840759294546372896336256232845617263843368596233871738227393370922061206498756846583158239959320692838863257346736627862538175135900291020687382905866304392192750537602223279548099931402424856494063506381465626047189249688569817800933499644930144377939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22235371293427262648156376336626597083155899182788867912696323962034036385703488514717649361692605604773626814791317614040189511007324129641686122336752222913057266199724780107240746334063144888902672334727715586723695306040021602364798434929481263610013992474211882586587294242509541604478809780749010303342290140157512789948006022277895142263462508555728718968483167277386713925145863976663851629175172547837295144753974967467570268419407230629515260901667371182872542345133884695972976747645817139286110653697468693564347934340891855302758496248238234469193147097095914791745596419401820037792581838192504200289691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24467575397917108159718841442895757184166778780160880246905514202134778774271860071008033493873761849102623745346807101576786341654337456946682133447810611109951165727287992633046892565270402748509616848287345156247426072996264724685531543982358691019906956195012022746220298477878726961555427060678537550838502168258854210351775647428559054593941681450918893971812066031812472354634337658791954719583189259914232665551671526799517681037083080964716649332537954899413306520118975395579846605339649894398544346275735752057755071149690410433566834566540496159046145677557957393781854470910798027909852664204945335312261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23921601942867608325419843193871638750641208323619805120013405431792799216001845791368282368351456035769511312778441762794684802942267904006102931958777027723035163568883351918640091113287227460708278525419462424590291709058634388131795807849772073831669525300590977330855953490336027623737121640942632091322533183651400397542314508173286445696721038444875409469974497233743736888236400673967951913698264022743807514241826177892692292427736124123996349229119764140918078668521380875685398968789817192560857950603847220249526075521616053366824535283609653698835592973507890156446768979969107100886036130448272928800141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22593656432879821406616488258339818116224675357635496262863099003726319862034213607070418953847866557799508706655688880328128483932917044067609636956692613179005837482767724920981236087791711319677808069086891592720294696744044118501606574002740955649115690077865804327085811999757234210898380881633737957118712366085390210172707223807764397165229379980783602609448375947975343365530042350076059531571352184206373467133286962377647045735350038128669267788657212267123554448919764110689248755896619137790725877795825081955337981424997451324254507894091164427134433787570805642399219880237784072013190451224979884165373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21765321573572623583488245871561753031936205855250708925423003728481746839241144402694982321320927032825496909474929592311525737716150469812458380724472717892381382553009946564156446723887795552310469441253713456880977705191305436843273701470020811138984915294973780395124694081014960381386583527171647752471222430939477215909576179315658794819465148730086947754976403681700182273435726417541371601086114556690544576729378721805327052977856385515835421755126750106555349673611996691926769416887148943879461558272288909100624239579208078309908254671666992163819869308356535726550018353746877100106509951726864331862293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25667044131423603949417289124570715288838611508425392337515017257723284929879038661580674809794043871285566022340557834687846472838834576269914200078141462718590200285559357822622565398856916211007323706993946508189081844366537438771170453329260718181335039067073230720766673095214203841321958495160122065664867613981836785670164445178203767827995463646454928305953507879081431378868809419168841329696475965946409701764627674715589666957931266656035568068905751110916682314917920105384084502332242106973538965110513994107374772780757877278472317203513765262843387085208371683921240420978520085421203563102509993492697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23703009404487164313590057647761254449368410249358781518173619019060320774033254210050551058063552524294047381566584489437575429737354115774575104992803099024019714051627320364257565991493183497335928595095145190512286265194682198409273440118008106190317614517354321412550938079562934873923951228764350629874375072709470460577512366758006659247374163622199862659962262107406490488752004013177078534933677170356941599635537032500730056980505656786503201013648482618787096192821363632602567444772415415048685816089826119481786608347606508333502190831959230233690564139272272802734711604828716764928734769500731351593533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "22844885965457615292637886075873805564461680134714519716434061819067803984039559410577941112590886777556240083717619486350708447665903820919665722820130994677710745171347844362244396870255115414046087441736286922033134168025508133768200319801783573419878885378428747267124403831219266596695631692530119107430789096354572101572393132079857855199906865290301921896780519157739365901662422701847521769922336363903099010394373568456318947030621803181684226115438294914380220102295084178889771371542249785431060659878113176230602261631882448308455803221608563960340711565065597523956693406567879355582217626913740314291791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "807775498141227117015329563489753342374508772646773572751536488048856563565489111320980814135862294317448184835538246208697722304063711250492488293679307511182111696230769232593597977129740906179952019041179507648077871679758373775769731827707812310899951353769409043206816159840412537903796573274313960602853167940046015598411596677410739056820222279459389624340272986814015150437052323429650790364350682586499655487377258527248273862714687777778701246906757748974207599513808623492343318604197858684184565244003147797969415989574074521378997061650878637313004749926730377466761771664056059151361878168935475362820386027834608119454411857432906251884965524466315551818645987538335657171104895823056859048788193457522772210677865910211431624783485498079902502106527509656448475910558490846689082870004785833184328829917678728658639545903002937332155120569917173857712081136292154815346862319874365625167497719927105485907904620437695374731551659357478261902263854748053425581911795477913235388760090090289988011535646003620412229562102407251089089752292694533147510302056721296181471858914718514747035130245583984726359755228496193525635296689391238608113612024547618976734230773899957925249453962768399831620974906887470757659940217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25039687004033771232571316935001075200208660048331754417591850087202839345620419811212764255779804967178712073374932460703706668534306472039265193547387708110324252402084515602677522761604703795756293055166529458800786073415865205484776304750698728350025734910656437485151147845121914749683594249013782773846165547371255581984097271049129672688637904925582464657679629881791874483410364697783093145366459883632202454608978572386134790506843652583988433100186640348266516591317629340657670173953813336661976378425496363044989495269496233229483048366572242341325499432592750613895637560901746469531441681632302975906233", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24623939748696966237005219511451130214589260700092875378788097917036073971541775808612430237418051411186359572841448972654469011583897806217921122502919074825040461633399996723193246922376809796143631673994335033460365884559822410701515176838225731299817057262054612229811157634647110101544424434762961359176389957941614156230605818472651614075382335584084125304271068945762921088521177951867299980499662071058890709681199071651113444194677458285459442882249408554755381050579176323839274225206755110079061421296294791114838571740564305192168575473197504233493762209464578831240378690833807126782461947575463034013157", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25225895086579142465607908776508100483211026984654150385823396151706376091140310195457834257385982009834464580528947035844170812450301204474728847306889177741369820704881705393817671492115995973663559813317238084874183984517617604437080532958748771336227566368542313924117998472232446895628594007282954981408595969347729860895871511537313568298605714797849583803925769558141380484190237903417732588607617861529717423936780255627056899383725430291227475662358819909645021071891206682759392351301619041990464668562968132868986960781387486687116329917364068142852722722780488680074606796113601681932559377305423695985173", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28177663562516791532659730917165272780186580016024302016961311377689280451410859291062774444776339520757793822744317517560316268783051786285021514696452768524566100881972046419538974328054329611011661167939229339703280820223169043575742661671360705019020740644580326370759238239967145386292170762911083480421451107971017989850361461452375449275675686268530483008055475830852495052170568014731004122456572192572130615807525601977469035108265016492762933083065959973486196293683390873712979036363848129526011067327309526905007058821955887287260262344964889974083440632545944029218555495545131374192292070255506892164023", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25039687004033771232571316935001075200208660048331754417591850087202839345620419811212764255779804967178712073374932460703706668534306472039265193547387708110324252402084515602677522761604703795756293055166529458800786073415865205484776304750698728350025734910656437485151147845121914749683594249013782773846165547371255581984097271049129672688637904925582464657679629881791874483410364697783093145366459883632202454608978572386134790506843652583988433100186640348266516591317629340657670173953813336661976378425496363044989495269496233229483048366572242341325499432592750613895637560901746469531441681632302975906233", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24623939748696966237005219511451130214589260700092875378788097917036073971541775808612430237418051411186359572841448972654469011583897806217921122502919074825040461633399996723193246922376809796143631673994335033460365884559822410701515176838225731299817057262054612229811157634647110101544424434762961359176389957941614156230605818472651614075382335584084125304271068945762921088521177951867299980499662071058890709681199071651113444194677458285459442882249408554755381050579176323839274225206755110079061421296294791114838571740564305192168575473197504233493762209464578831240378690833807126782461947575463034013157", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25794878333255938889257235553119223939472161520563880081091910035017209078426656285976769799811550853746591318845757442455679208396312893039105243305733921604064814169672313443470040136745941313615077631250520843723887791882086682670751100615162523066322357484691763082434684091137655662574120489989148488404659104610488816015224992722200694248520103725369558078090147149511219688093816803505096430561387566972161445146657816876200977122101254149372246262310549881612747081549411813275770278472940441284257251794123509328650157560583179026054437189285157028343737115860992528863674251937611638001773817732911501515191", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22806675049211215566581662909081841599680947968912784995307165495486626797394474315155432825653440812496847261729964502616882601434789102753799729032933458884987196527035701859598970398327255605579117243400741528064498936609866572361608619245868872181166033679149217480767933433018783448678461536712752721511133980456285839866316992355868567343919954927630618440227770225666011496654793192130437598861995770698522744847283022653640093581893803654108076393034542937754083796125705943535329170244945239959182739187508292334627803499555970165629921247165610759726574712669600006541214932906207242282521392579165420835283", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24196291362733712834557845388918332659344082044495187617711741282532861400225868113372728998450928007345330685160335444502427568671757784368964472645281985174320929298496902441930821478821359044668775246819160490826251375543601104998099551824045572299823147934525413975317842118584307780847134509268793455217670264538949401004004351160330000412002134731276835744735759694667465750590471425777033860508281275855924421665757014656454866495406630838061046091896320316324241252150388883510650426836333316594299410136592798869210136275619447371115858478895659539861839786479128576702380326439493807615952475515552003968801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21253145674737363034463999869742838886132462025598972930926722332549735948096080996351257785698155813104940433992245329733078938898198481701460247257759807778100540282760432023702457119200729738746482065072832733741838830426863196145977106589640172997020780587462087931659444802307110208339792380857874816810861307654199898324763684207399053484081750535013213900186790930100975295454503807696393028310130417465748397257715604427578286821712225304358361778664007836581792868256732751754791035870061231827418407563695246185920172989610629370440165017111811702566033166901534419414177762663019403490590652989576723694479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19668617453605523924801619273622179656440579686444450821890974808470279116146679675825763030460387814000984066963858114907076398792427509024285184620734316195251398942715195818052218695932692609023417471868731499850704655396848393330733887608764637148144114270308670913670247524935454289411131536688214470522187474571483295676587708857333350537989079690920687549955990732537761229532126407009591254413062350624315362719738731088816565743830746563637812835656239348121678039774826219845213966082395728922077667766073067386567313827458542097493532686445159811372024028124979725873153081766863819896019097288593237840181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "22169504351203614067484837446873337804857162136036882656006998576276288135693606120706896766400993466956016611480850157446358922745247171810942489422951537696215458349074023203009131688147224831405057210712843840291172072165887249551015934710342062815304530099796434153298168578447238163991684857846579940874230010866989632598139362384517010455432454413709071802423710665271499794123112005730008550222355197896673722318581903145579689176334460545428436524481028337922281136835314937980331893770046342830300384831519601804931549965658040378223384886520019434251754577350069495797040141460919624878910579134370992009369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 3, CN = CSCA SPAIN", + "modulus": "19566086825065093206961005495352144345373219666172768229083403283886350940289806619925969765480463307502075676215406468090816466198661255834012478261767332729218135407866165574317504231271374791114597459976073916995949892269314218588071603803676720577080377134716740700144753245782683829450119476095989377457438310613411654304250718848919194012259252340467587162675549782161466801196241038736373728977588693635278493768255746506540780232351063901015761954652264822029048421402922793565159913703047528038894768989510365333819608336001681995732467008086259099357932944504150807719460905696661494377050304366852239556091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20785175506058337206375653559526829959650270752402940135276842987494072585919915755331964278573930091182342759769849218829971148899336854451843983079050032241167555792938526988336448569309982031304094377085084310027839858948404436756550010788467983819557499979670492494556471823708117310143665472843925239754961432593193556263263395842167378380384175880095675546628423090422802845660813814234526144673776712602089713164350725618255036537395425861423835977905187233511816022131073294736793039151802783765540695205028642778499743496302882491982906311832994414083240270678163355638231891143144091341767606363940591757213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23359338300386585779253038721729780866911056259036701914690474009376226137510200025350254184832376678052945808658722858206919963730653116972753637211650934495271864925122596413830407833155017933544407200956011394396984759219978168894959626804761548607510342128198330564825802240570427167663070180799372006712685968983117039753248636941435311325495620341421232899869655246904317435442148332241196816537483156867338540458657939533448572627047329522998729559893523002937122513788246607369107454174549400133120656958571516107861835620619910681860864026156117803562985682397967302389627945056310321476811054859732761181617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26375624391619921626727094134969766562427525896954158472307563682804722519207783312419666088296888665356885493435601515586232893819984734782687438657953264451006556316052531130521896642801990103710336776587825974367715084032265709420220250087881935515914735027654664050176606686231406817746365159175611999421226654282251845163492139049796427665439912039998012082054554744867971752151864211358693503041022197420661438879457846980579659903299734343032255184901739697569529119566171835201971192126805509589573110253935045916965888514298711303617747922756213766721829406182406157574103844958110658570580171649161490526949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26278108592058029522128498128757480173119473238332718935989521786477642931594267476604131203310179368181020443776269450875902541918387739419139196089197018504765572225694669302710819887490622561100516190399232467643917283636148652417548741703529337777115313790013021995164405116650739951314875933651176122551853087649461671560551510261293922208391757055270060867314656286795849725430225483466053236117694101608029725391684001963709146291209109174132495883234448234978381946867916083560293152454847841382341055863018077669192469469285942981823819911250937122762366110425934790283591295912921423394815569353868418623653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29305061359137207910451842973081059330220132766465394503255360088078490278615571531498930564273634851717690147380670555698085973186345958584707198899930603123773057003157112530834779818073002304561339454827792026397071190240797828885383482870733910654913803297320870640152216380605239802328565159489401981901578164330212432131438223923668898603688981677003179835919740226882045352996686875824110261671452626183117277923930794085478161279762426971465111634707597305103577122640952616879179090151648891885503886574668369957367223353954854913283222989809803119791426123043366101528280951111483652434454255938436751586931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19404303410940864444793277767535541454136157896495149253754869697870169953208574906789821827172097791570430083620610278004441555396309466710069238230062235484032243960249703294566583687667393556617464420073717243911072911608374102170094473873972079300447773317691275007574347563439349739681602557832353368875854727744091553474148376399355208980937313001376007093512227659924985872630195708890008862826864468884507803658226453835989014388837667566323117561683655726780167842006663883127966842207198394133862934099803996576677968281121101743056005311686154888556471600178127407708002444237429147959260368159090100591749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22948896120916218341679446474061149756521621956676757409353232543131567284267975638077892262333595730318672281924171130992560932091545507833650864058736889082547026321071454175782048048364475649015992973579581653862095247288897082828251346638058834211958371758579875555572007690254789676524798823352822185585983492972154772361090916747912071505068924300109167817598548124697464411075137957860213869430636301225371779471071003416262825882460502617952372676512879359747488846333031588834231958527779973570915883615389956813696432702509161959596043280288832473396174284330658724421725201840741690224941121590607017147159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22897287103999792056228096179291989175008610020175984643954341604678862547446663150627958791253058305488297003634008754001448978546770770253076790995653766724551821944054272973031136391315430550843355623105291257669159753448245674712654176597353309028612186205501838547810109150245977239179141369887147553774511795356850134511309209371279699168541610350968374591775425424078348502396661143855077764496392941469555366755328975564523025706260765840952103282036360490317800672861855077016491069318153974475926373342613240386351613611605865719073462840654934630302843601393656580370862889882080925892232831330349900908737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22013422746219895108967183897315076322913807673474116945322575835279760644588654288770282984636456798991310063292466770187367876251144499436678908532299334653039927351204202749578960720597392525383294072917452696016907124963507621553120214758713560459114541736125307560990490924313980018256364072011135860073903590886977095614281246662043122922960399865436612357432790723820095155552740759457778367999515189421146824200428041218254390747836655360680188542379571123814385871372711911763927325322548664484804333817360522653386583042153135061368715758384269365477486247193408168163972545657999012611836992444637355201249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27383847906194043850891417211501693072538232958024640424194813653721388675901106910679068132015758021614578282425111329971537390269034996371991364098123116972517300180731214590758635680431729293036073097379594250465042535789683998596533562612150828100026479228609298316099505402556441080206827776615562219162092308581185547293775680542676128812785723711939846290801476335599972230247033961114397355509053816519340087456131566388468499725360722752026960539582081152750362864574318972713991483396609134089611074735811302867357390365825033412682025674598977440223741637868820541684870476915921729163524577224328842397159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23640178591519960079376839140069699030102001822688995929981552764978759939755427261487302274341252388476716309139549879254728167839996162939587284701365844635720469403567642919517415697193977473243196536627557541765578721099058880322602625077867965914665820194934239028165173599950163403139067468645924043105304641656980232658605699057778477783929848848655270116935921480438948144127910052644023554762862851810029224151511071459798340707434322734028618369462587711805228233963737098768445362685953257448075566044565800855657211566365778665816929879181256101144165828114284818434415117688724500872784150131533786548789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22512662644057466411957057966456477282444283585354065658994781095322108737520273288902946314092775942913451625020212599406977293053193107680728376776371375515755468733406506489368175318623137941144410706809012884702356253097309160651414279706145704716448131387141378338747703451838395691469104379539318115429497281094063071297361595541360468749662630301021938831571499693303455315266455831723134597701717649600220789742264655015395259116491147699248694506503330183521472366318371084115931039555795444870266453086031782339820968343143163127462779283713013400389790774931397901184763263011661200637600938119363495811519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19916875631275500365673674488110528854454739139088693116947325316268563500661293335711290685912920861977369493970227050123567590202123347687695641505984028845366384788029603273643021563117034376504708129977114429699258737409370847560053857028291034405873067361800196249853897785256740333349341221045101529376439713801941600097982302148785543609805733218158490318551577697821168222811271023983349014456388037755739996994662949178221067318351181957393788713055163859902634924160039359584780705649749670402333792436112055342392274991474704500176394334421621968946009689797355487106522995102585022624983400842768317838087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27490418303260027536193228160319792747807671500035677269651359374453058875456941259657714465768441672575235916590905947229527713075949212429262172734929121517879139431005878579981630723218148611366322582782044445610454316798824665828666792394865688760124625878529830470333498595722956474933588840997181654737778364107747703553903064172747043397286259691203715580357128846788670759796213928549225463467431769886362967667165315364187605160892723175922534423840994840476042771238394116966387608006583049629614728564843458946917560988331664280306662415264849218076650313321505932575164870284158673487709857716681642352623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26931436344427467322084674275135816182386950803080327606203553742680661855510884063905150672323025033428526208676601265065629829854585215665889495804058403747851401821176075728294609929149045101771037741014654081440280889095738527292584384459530761535505277857485010520755581730300768613393523176007734514652944362393163114323201473619045915811536928343047184723533525958256819880601809408625978158192201501950413761878548138547622956869262808833724327381155583062527913988380749930999061296053923792976369768438566831807107170978512989642459583178457771660958760402046045823418154622439926055973274126513749925187151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23409380209512292885181380314069409692140491449623619460919850564427575983074369327567187565972445577465061277024045823190917971240856017335431508574563736054773780325374542672766766309278403882538214787996103340924937271981253703459054874788011096606492160980937679366430453716255887547715891909455581604888575664081070779407216658175151294639868436257719630040373335463083775236798016492416319539603484365350464826973167371990894198502817085860469914379187394547303066048661314468154786655072398813235198753685651324484574762856162932203141439251766563297131960638641321859807969139832620952915842279812027557121401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21623529153613757369578326349864499528516849781746522083839605822059538618901472245413208962018814074982234847493180442222782590072586934344934395768966829144282759562136632076760383699633940160249655180295909302292276731286664733222165724260350189776565715422159349905032495721306786004242767136904017531416268085185574480343824370155821791974789146426252140687581364763485091725375065831994009792750509791075179648395316909351425849075718024827311978094749386608054487739208670400148072101765691911373190218880630034340025094785701874528509223378061797686723296860644776638090624296582863332571295721736744893269219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26084436870650734840955345940337393434743910222850065825583052690896030077868367024290961627935919257971426151321638843340505192972098824930232726047191914652308884669773679130101390142005034430450915764171166829888542725983933014728102421141359567660546455202578613468160512141600737166976684915869576209627843098285938632660998722755051420807060464055352303977497695832414626614078429143344346518430401524264277773182619444507941521457906043225961826208488934751394832779616871102450471184032635582156088417427976559555520046753577690442450607214818571096144457746312794490673553388545162370556101307584858473215923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19033614895464189202931005780622145757245389034773484293005602551569066075158366384716758342025991193990408651908296695969275371440116509639965987546700480841790858011453881452590640404630002742895852204717858680508014296034333654260271972866001890619698943944722541883768924614919660849879263064543174375702302322502172180159670145594981569803611415092502861762047071956703114353565031136217223175498575547387402822671257468379975234057439437484672091407544574100311182798264663359536303188773284494609610327497931372647462127528811553495347018580042202703857080798176930586051921373186836321465464174512139138783909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24310851685149887597340244806450481637547644901561936547477031901472656983352381167693560384667820016392369339068818336367598708602316711612524166832790061967098191344143431066407931716152585626526612067329405153940259066833149714637796047839281268590201969532538818866744274545797816301392334755107241801416492781203876474345699321786430595675789426442258282663653558943070786256737326468463752483184519370665059219910682062782458992620197539775781410803486435861634899721519918232632342291644733874902527136829289422001271914715195290057923400695598236956616313791483115604477146894073221304873449757554417533242179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31665937440625172980725269900286703012930387897100291790890062056192972481229618438860703066218524628895981794876054875485274329251869683103703738559527902903810559470979878877476762127521163453269081155225177499802557360413512184681174829180962978556281721959297181644646800476053749339335735756273023563855438147500696098196685113317595628920503753282764447234149527898322872707528175746404225131538464010007234047821522256240362677112954405717963498780944218571542417255540514684022568001595672773058777644908484166277322231196677856651882616920994552951126827561470377742036411212929037848452627194651928483935969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21767834949546828245373114201697132758600672686523538833007984826614034670573094680686664244195445706787063104962381067979822994406816369524525988318653266702483125837323230731743348670783412430633385518629101815065555994813182180993403488749984910468013345392788296782954978317642873388326131289369714268946465923102142403911565737971352851964707051102516123450566775459322843208781116261461168115261535696714965313840369922663032687991525147711542882132471197854750650314901176896341883670939921152823089991726781746331639757764120043911679601382513005385296724982821663579597235664855952777380365234387026054283579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21492304871231929849521506926451920476710448862923282125695149672327405128947834715139864699435178917093308584377870905302573751989435716613210051255344683409038336734901549778342215004046578871829354630876565274839097383071833266558885359392445235857537481591084294825658789993234074536093885159424871896308294863503906099522648903951872188773989007411139438820182681010188809700408383152927899640890983432295976190736324796015171003799831185643099354546498278230404714170598172465509497082068129896316717573081166175492935012733794825563502294703825291026854034956255683617292243406179530552666323752167188119611091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "19757695441854351238496031649004582888684024063262262526130793449264021133309911234284052870957159912629327330772009299122488091707699050017087102216673726071500379320563435902333380000425003433491047073417461069131577780408496543543796517461626557300488633040989223126303793215485522757257457331335576189174368975638424454987187321270459117464158172089131566021832792107267837298009800724920277578529774182498877728942379765538624334142981059135138724122349016398383992835044308789950590787097538048168718951041169555693038818533931329039444484192895081841887282154854125403571132722786485282870241157254717967356751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22971143836284654939801840960338877", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23494276781796270961273433635160530", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25837006110656746860785437213638661", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28804021037639779940692533873537183444889146479889968159562506756785950303258322547283649827374809077432448236477189722993503931562216151281510003580444411065194052178042643632334540587101186577413894414926953450919637347781940203415809652553444506212183275069703466812172625018308507352161934604479903271668129259943251229623637648782748515899478436654487072647396056318482809263308646446351928612266347109775296387021519912490148720898139989548986885417213079053479893113582529433562316069463362292910524668460665107382509099505642669844589162328700696350448699864258402087659595234987638183858376502629561534884517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31702148696290346898499187536253144982603999843352497590169696401557227177084073023875982340948725023658002460737120194885835638043705614925378169809462014761600721808078981334188930544205785535451327840263439943386627283676073673638570540449861762518877935289129851092492991248153486711446488315358847293399997251647414645515304881765632035026269272175020848923643811082015048073727309692798821267528188701476227562780016059411497608126034433475651658846136059689874191812130786263028212265372553943688801959910389572083058805602337163439975789563414198740569269204183364500750386294162066545973167353506523851578787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23750126035247265627315760848946065989526511226039028431071823667243701404067367717442687959004506636052582117705246351883319128033665239264282786288227643914114202260292810643727308961650331352068157223193226868763497458806709214939966054722512169479095700862893939027380328433059277489479990672856164816082990025842925493263173523998950253214211151852939658483348555190521650024386158315152953355475067738993683231175462991839719736106924316709080056113624883733750146485670635447540643896206112949694567544694227096489806158501149205188002093620830974860489445345701518099402129603330965842439185769235098296001853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24882949471744518241434130739948204654913276008703061589400023527027794604586221474165588672588682849902594830416347895375812753984178026155187162250343181007368338655857803271322898245234095397268980706836394992732737747328769446431532881092806976962645100397788403314797471729348859210428871679321848499668864514397560536833494640813347306500800196043923123285567103312098766161741309234568373329946274548186106107739582105166683793436520061479717360733470794647237751046633527332557384496291450848965255960842952058102312936933450016913745396950392348793035660715558103457229479188193645179770907785149453405924473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19396558895362611358522871858609638580464667526425196534271774443986044030363707872561424429382262983728786696643271858270180241892898921312059960453504727622343277624949265203008735867195724694815854968102976764540419545075681350605175536730185612000212973183083607301115210029233371341848173283016469135961880482985689605049993542186679346774789483813471472451377466059825907980157018447793966450582954231287591116688880003335471709055619204402213335953224702550532407795634359322362140269425179954370575585405872289008154427395814203594825785013237553203953059212751808148360461450863287288976588366739511636746891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22912842410547305366889856808468512169706852747498796763793836582657472565619721615820027128554526730553625698849382223155359797473548838853495559321521646341459373006290855840076425302883234763319053092638127301010345324523503851995552808034186575391132867786620569536110187600739290586676030698171456019457454842752929279348845225418562581236881327897635922590972940281503273280034297689993569202133499230942726994874066012132130101538372009597818175080134311344070783771516602628570356920544030887063133306128504262108380304612570662422187365744041826988978616132575265108445581539460275562969449660043505437154567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18903210283219291328478125094077550584405965536084707324998841424801259837171788427899450061920003987533944751398696408716830181266663395736620234149322271769022448169933309754665359002535190750059942931443188959989599205370641721609151673200701809261947226103962098729548049346287599059685382798357321545952089539826128343727557800091226893460686937145057577151203590388055833841446389524036704358913946532796184527946618267971117091549045404449069118848968561766212672554393692597290592255646307960786564225020689693270572287663280151751875461867548253852760779040111298563589250152745753529197347098742837611103423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21571995513289622206284283725942871419721240413178231532261425443883155919050483341653923136676560031072308609213541784373344689127110000252355783347426386267576379655447127666183020972069205947689284249916028211173839450244896097538110677989602383705525007390885499404949999152133558629229173743076348778107956962265504243549660564817454035061375442596813283369207752772018394913384875656170827940806375930111271881308721802817373554817381862606394684179174896405774274650446713484695362611390615616876025763702042531339238124615679752149438400318175402802931916526469312215463699854785613665089646065771551082970831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24822233094712733598315551676484771791914861912590482113451679889658130047071717277546369127574291021097062555809756709630600856873974659220648625210343327680576809214793481871063892665333759511923571958441509875512595711907768692331664265571172362257643930417620038606944894173886717599014622332838275527717327521445776267797694876104111065261604415610585094431689637038389656462154032813854522676579151610156767837501577370098154160440097540687835876424891676889209905139111737379816975426475880699941339608164642430652663035116598226835044097715931061273787486112822000899087110724735885756388837906271802812710581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24438878387900944265034053582764100651203467329505990597797264597721409162028212858461721692870726401615155875560651681411646196334362294957147557196258199235073098169681542153443952978367068537362164952990977206339332339862712155844370510710860026959729582443214828678960109359687290492399171958595087226418600237300005822495046510959619103387478733970090878751854173974082872057723740301201359796885834012217221370988781376379505690481323425750863371683196897027427093310478518993727260829406526998330973406992200655774774584122437250437132374696208528004804033277133037740004655990996550290859920013995858366609209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22955720604531995310005413629619640053800422229427114971181374931694056983459029433967218228905361600329827787072615407634447672126673267599224713600666808329414759841026399816041790218067035697386426450425551893322038741899391522516120100845126684423198677202121590710478577872446292003531115609742619608468120959324097174542505471714054199776913830771622356508049037944304676929173109601667425391327940187274560793632156379312825909836408162669514473340425943396287966278552494640122920880617728627278700295219514407162798692788778353602689598032097095824664077907789860793811993243603846049914892260498630241870757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27162327938513266394870305908252521151744717547891592612931493214521067726096248511052315913893563592293666343044687949172027151499178855225058237148716912303302506475472420405024517491206673334926737584621963639919407772777699140609653380751650493567401597332742873866990825780729254685755436377258057349129582635273441104745364021163020228698810323445624136094768645330216101296992451281643157485232423946938260745784825328560673724423975255336057120152181904543433215909661640230780514831278962999830858495461273795714561806867639899720884044856416184415754640358089823094660509758710220569083208225687682643389207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25315197478987754455313656925086313312842769008998000515047933080887363544169397719099301213157232423247405305985444878180063382531565563854136700680798827615991579236601326561689863832507898423316080679316041317467673047861525957364183371905323420683167734697502190184674601554701359644130248694384881198000452526023766278133829042701390497770132262573564663747848596243620030221732921663435656987139613360356874632986665773567195226004218770683752407798211623437129309700186046279407112577715050399692246565018359537099489091164060157386855334508938981956188840770168502240588750619203409937776898874814677570749039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23957212845927560303584497739034853589745650778434304856572505476728826847705837662056505114644728998996931178877867506407454878512061364886507541898409375235326756330841119815371905692860999786217891945695343170398071423176968053221325908471898018519231917540358271009736559586141961173668459748214198912906875785925366588805911017322224603944165029724028052823070505605133491515330028169145572641131578151496145773977637518308281729275320978663309596134963035185416782750686575893453671151058675154689783669034268685975211230747394086189103843383241956811140980584097240746876807045904841608623611141088739094405107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22401354362156115411633249897107846750804199504670697667603612473228951489117638592055407314665989857944531539960775576458888049833772772159200491469507271305517512159466311743026069614895839663056092926490044465162431616026297590466076247294308145842661493001208500922072137367717158435890427072254416134834923378924557795902068937995991686907280982003040485554164985932449106149716775763868642736487390485946355515187789917024992379249717310875384778713048807983297479536274660031757674293980843350538209374779489975911417426824674834483882081857916929658675734332735615781181136290677062466233499941368404310489581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25858166097303544863215573340659082897029468390042367582279844399450158413070736817166474227175448408964591515344563236808610984705827355479945033510549338571205532493057162728325618823787937224085366845150503531196431722882768861652873996687871905118009130963988529184916626897947597075162541944888920079193656669111383215679582967508553463270207355479480821403264337281925248564955693862661469212385231078099463606406811727107317270984105952110508145373476360421673525354922336395725683228057617367201769864835746541282002525010237474223359374693229256882272830616346574681356052072305718264052375018817648684819443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "526163582829562453391707194667814141007588068750163186622295733800057711827755320030985583111032715950814556694549424580335044231616065564629164611041482998393658258621660516869760326051145824932144784415538952767073899753960423765092276739917947841483796359115327743044104372843788639555362212559540178868316128544691601387009709607826178776784601626239108866337752111471139597998899839527183378865273950354027037533345573550019910298180485529332533328101894228265674670409947956084453827116396770992108836599925209806604143127433316932531360049831260683985518817988703021347373672388032499119431533442332511789470704705894043667566826998235839625387644521470304716257962864847567694501466981969230470306379489949886627361924680099195211719376936877856452991305780636822355969006976916899410171489778795383120726166506039938826491644146436457759181330581431961235309638388512256291563697934082748076584447046783346363955752041937129882227015113597367865577686981367557481919562369252363655253944116148683279025041403596549059104807842351379392326344804160701519232647103266516682084919858797721969114319089336210753747254358599161130243060343864661401517479831390562301328788320811669235290589477393958855870933738887849029526371491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "613276847665699005819025232052861812183615796801819147280771723300003058476844085248042717352363321438484720241839280430236283465983598357487552308672492365567120060125340985262648095346669394434487199903756749139718857816805020876342121534043435459497640296601065244812322849099479440384175198695505691361518431693123940037882221789166590622026134983236304921611556269297006616209460060813956934962224482363624207705522339188606227249036775128557660599250100522518250722668071430263808551488541131544216294730071262576778335562486026389211220428818153329195285165973594745868226105901407007934931712016562318199658567744193890609053079016546430782978029881601605374409893768604743485386829114946100125231813886931876903242255702170452169167252669595474561743910899190793843177763843068403829235123068972696596668202253827788933111331531529988599031009118115976503317556281819013807005609800468396896768911955717629892691646377278645369961620465152487037186034004914450776283338943699819079037513066918307532280997264724820334859036581282579046842227122297833482950499205327074361727150958715700412113061376005559610443400980445271862959216043272695187749495363855444802786744373583780711123412370519366197561871823603920220457397149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "27637125829952064248072040155880261574965846615125012279300735610257557466051272657654410872138802082255712771620722457410744000902116367093048270509941190637519472070419866084802922024040529825980708599494331105900979257261858774143112721881091712063890102536324264447245022047128572929273599031788616313431061378539870521549827539685683041516669784905423132209592966157077634603753891948562781252544207358460986948052288327497343545780664540090699799734226732032290354056064728658952467489840352022048857130087727774793522849688826170872765169704388109845619230710301268882435555488035495922938477538882390494379577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "26896523461315654456650404356689445559898852401038739194856433277285395342433198704029519680695337318786546659714824571443287489816965421288416245582448821210886947412276523587377043527634281855618571167557452669131732556417690656782504185884032002416779031462929423308349437806464467183130373398474835311673301785080586226621625598881371835349638908722492831032183903887736242913345160806397586817813804587011429832229429270150592398904311304829423319382179919186587755858505147573931576254732337550573427857332816830922843794004498130465373883436985996404586109727041096818239810151027409369615671441543521149298709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "25763043675354215986398103300520721109907049327316285514778172783578686835175177568442269737311375356842587621756462027504396332714821288698559945249079736889199618729259963489290167413280922624623899522744820152173115877047691187946648353779955682233122182637360163222124996426908052824115355518323089818623107256922644383637520056762759566578470153502553094328292686016766154403408821922627161795338810298438618959076660693839353753167479961220816397115902626634636021755148191872526458681982411397644228162561905909290285237428721811347461868847017522787886690781757051129317816304885865401018476003265231868896463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21466822952351124838022638198591185", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "741484460627344775172298822638596013806913401393029366762703253581668394313392400212268913499391201857502070004627782247043077846681380092816912474771638946943466994359427008123465567724099940774055899831169642118190276924968594023589790162847076143466065497518148423086422878262770106328392198352190470318363784197856030968739712384632935604806014763380124482441491851858017776295790573051349623394970462909289826356870707603941539644391792469740787402007164425094864570614826033011968158764851436879023214087954045064857434842748506743756830322308082294521262533607863826996523780768101604727616860160592784158480636867389067807804877279805442210817103547117945448666369361502116809394047890085883016473594674762482801446820115540854045334071635095600559107341824932361413375555576768780810725168817479922638046690941425333519564378876264324943743699290059739763024850177108135750779631190597217202426581348199655907323026656732409939417021145825536024447275747555832026182049360483305376346944134697570254853919346198661585104080031925907168005350632650463565997118117668697932006932205130708508141059379242842522156484696111589086747716487092680245006313933548401494946078730750243208281675407446782358557636447467314188536333767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "845710474043261072107933469266378806242704274491847085360733263364022673374193029563397767510084708105289577275772807266975319480154166243567270806268429232271584772873795975768351510796703597513796764022845913719313514249391061771268431508814561505514354955683832371619187995714318625047802781485235365677667631839089946528739812667737956198371796985978514223696461505593193780891523255594299491081975900082957518734694592484842681335230296557640139822276234409743096209735101062704904280977531135685217309034029223223310545473184095235495388016883811372145537875819356253561257760392571026149422187996424170128093821873111754977737872149552247057145986152575308961284719459172961199790921398697166214389047040545153753587264396973714632984245086144364770829059003734484804496852038717333889634048896152536276782722430373238104213881126922481702546767632605295138263794377349478673833559542207815495060799038735348605371433960497651127839361119251094916934943404449549974655403639283378535783930969058645477458232057838407981898875947689848571372361081808658381472532347469602186965643169219506540673541440592860804839636079897599599082277692422181477555296752960457928501938075059890939393239596086289769884120875611604443722461991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "23103588369389404607895083089186840972361701985332371773946034632663385009716057249182993947875483128558488834135070446890879107518724464617533883142721544683700893225876479821739535462408305354005437838256141829731283217585163163668972811393083271294307583042800224724884272650900357002185620491492597893004469732573130601232687386573631588971088011584046195729617994390514649715803401532392817040202679698646243264136065128484575698819528005080272979867865305669843512229908376924719702375330037546391671260460201824278888839284527567287401767515653101070476560977025190139045276781957455866086356557333259168697787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = SG, O = Ministry of Home Affairs, OU = ICA, CN = Singapore Passport CA 5", + "modulus": "27005683202552634377141849776929117936653875512968414634630338018822065391148649303974074530749128713484093517322679009171223930620711539334230426920196544879229178542932516614109184349198525003966923538249971380431856426676637713408157836895718042101225090307906868852397866625307290920969260392817941196032394108954715442237958633172368900313343924240683256550008011451573875198417316714836073632861212288433860947810174203877795493071572006909828802072349385011229635936185050011635448279781001636199208330607837374081275109668449711031483119387505764270205393039561203946227180188947183229135361523552224214332361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24166034076519914106916316341101320279514806229756734179240208467777859141633211829262627940690497173324697743942800437645646024994476633064292950145539355432717632372578767681894164692200984952064304237539980997288911155937692455639876494714059508833410487364494272137533998768504352816144378634090255450440593159251035652629349622254775233493030135289083607578680143710454567403927218860746078709495109253071723632589515951850066453157558797385336813937488166361600747179344660170228005731926683937497870480206325923214440196347480678192617188680489002373266565880041056189270794662794359855916486950768465357590353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "954959042535555841018831379404668887830727843345936045003241712017410772584989793723167102781566414061696716813375436655233514214013590568680894669961902965532839685219409724326788554851090213873517630587721489124241159778100925138352414446509576264381205670471705389709152210680019449044121814204334780066216812261727804886526209740425872967074772808732874755966835739406123369376586392396408677004907495064481913056227645029503959422892860600298783010110298518940557747299028967038605438090244812874915695112585009026191931515256596182885990181936710437906619684563270963717604039839526278015582537795686411931217028953675255033070522168389627686610221249079609476496574710661472902619719662480042612329661090376491396426207256046862483442065868611333901606914073542644927476503502485016387065834424126597410094369344935438181461234469625072667684333697257617768009557360797470686538189896687280553999863546633453257015125756035677923663259748835843714336245975901857126353511640008557473659982574657317351496797102499451104263613394262375672319779574534899241032271890926353143401771790292359496054954550413771165075048966727809197421686673163991435663708422730338002838044631558165851983308825916342436164729078391288558848979397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "2933678844761112214018357247746340361117380346169795251726021207477261047821593003909574324546946794588002206275643304039110057668370016044329104649663186422507184150233029360575595822723823804319904434403344674395815412952278514723110425388885269571462536179215068629309082579924927235488961570905590686648890435790007293488255898793915059170556633483681307168574945465923856637711648519284773563355588716189574309134762508758009160038441701700668358099811661144285020831779387971293445289834985151069989364687508259019607457835903231796954628971291309250697746600751869742284254864111214266971069971184097662992395021907542679566012912325871964902405517295026093236057958713702240449886516352518634841569950284177580456211796185627088492563662210327020181579017933831286928850391657004072989990471352315076802358752208387479587192127378907805984980937667716030950302006831817766383075624902211438113539495145883531338515613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "3504313638481665921197217362867671093799030052480541739006394593266118709686947113514633032895951997314933170350475110957789140731561794784207852344610504615623169806626403224191406672680277406839269028615305901790584415231467873733327913239665177958474371076770899510695209057416348266431144731138998177904183379817491850278403939849363481405081127274653801390479192731840202632121934753599367920320602638655231501736832988572897207634192955284852584759075727458088447012944332310668034704177261003107023928409518484220470696820602745922161682034561817019239607172351749020182051192618040021998177263575689367189543447400956748107873692320472432080233260362948248770631374969844796236908779041017923541114659088767820727424068356504222613415902495519888826371956628816145441144045981126782023690037165986008855439292485990134617619093787593114228110562742721299938723651228718288771674307660445211170647222898147642264245479", + "exponent": "34389" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MA, O = Gov, CN = CSCA-MAROC", + "modulus": "19492015495560418294637269027303645318225684782287551655821737672647052291796786268173889368551579448353334877093493972437562518690263107284767127121202292150728977567085045636090416214487069921723604988708363244820085925728385254712170166552650664235553662057262536458853323668088020204208846161567474590075512827477702939143064341583659125469361442634506304074427102974814873249761486890321538821094877591280454284059226611653961493484820065657097663199812724310778030774657920023737224495634053685397108557339404657612909414506321605122479836675442132294278457822894174058162731225206319683146983666183413617142101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22336732235094851733309203767454665", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22450865047639264512561298991412148", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23896261323359881639494127792622572", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24159057753096001248233865860148487", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23205176528566276095512865264016245", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22193278724643685058072823779655702", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21691678836388326749685275157873007", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21013761185718603302033883319659124", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25666757998250282495356371840976831", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22495691765016210923529944206692106", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25924846582136878063340416569460549", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24234860356065150421570160761878138", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21166646080136211629025445850285792", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23689066999263977718255380303985120", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24720551106524173757701088118698195", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23092095351437498683195616970884660", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25823605113616745071834812222191487", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24608042137342678809681592902515499", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21067267988232960846359847104618798", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22674208505662507282337788198075967", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24973539352463807182193951470758021", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24631384364584640540273673444626648", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22082639507167992323291048273562429", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25633732275101516534107382223150147", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23560109964265510547371776485210492", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24658016988945154898886789220031171", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22981923752605108400438054740279482", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22519018776150353510258262956522189", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24435385976220916394288728126295792", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20933016436363556960588204648512878", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22753444972940280220488505003429463", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23652929703584348491805078369867921", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23117791116177719655741510838527418", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22663767420720650426243972687157177", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22784897549550990049041068615851714", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22680265264506035220096570758473301", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22827065104330834756580404537574858", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23978155399903487482735604894326193", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22781333385157205638582232270864885", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20896822510034165627379564706127306", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22479075747185321877852562598658063", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24956001968531851251306217636291077", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25797080210917077875624911751681114", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21140256930311051520493300850076491", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23304554727296830437793256329506102", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24799944542812852927261208194194533", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22552613889481738684059113673030573", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23849599762208193801255814919730240", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24046517984381492099381386382295624", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21023894265452114762979468524094946", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "24679481921044208196076577029197121170675185007845144833920427947530669885287911090969288683228030473185066875880574829850794252336701965382623836521052352544010613838214024382804107333012477496083556622543314621655581162540528834719476309100637728259337671315268797665215371623633244021235657987534260621462066387289618415385813663004924858868234328133840430369671875374233918725762802481660736035452938228698400561235274466439034024165612199504992218780994942024638864213646742997395169400083541084255100456270306818871371832332356585344959477901565925293811156564398158326703870549602560579394786104467745328877599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "26390621556943000983289047197129426787514030701048203591307581207180670428701770929002807348332156633232730316502922378416168495173343855570481457785395231084943644026895630429745639567628697763091596519576985792310580974949504294814607122189218321711514637237674383915422014900454282689605444333230709997267136712036161091380426934046985342991237960216475187659892260148756397113462119490727787493708602077622635289034735850557107452717956014078135928553600621381243108013680994909729794777074325035966333609143384740714770055442811971615063893580867581274229837310235190900380209208306310688993778139176291703591159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26528506980120120139703267484937071247764947945145286538509940866180513669551686074873078367396786278123577958392467724490306445738019838729122386196525770925602906206601492117548051810624222446875609499938506750077011220742925927516951875430161241192115444199569986221889887264075541328645461780955980813170956292763788636533649262651295111324409659773670785792011076142565760873657326493203349515579015174009474494060255170568371880506017543687473529069324886916767047156321257393577818254596543384438732540315176206216816719262116461213417330747305896643206514435683372130118777266676887355350682738585813582195839", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23976096005035996746575051489197343248703484044200057826733656516494786144710525228360148598644772143185223833178002096651177402928682815196198327735607462993171480031107018917217794473731742457761461878515012376093698890151554439560739397233547948340919016173804239967696322629222332073775140515092879608643713367506843552011182332939181923936472525447030715925154331298220529426319904969658006815818322510829499991519360015195575205230711173571101069112677653198450368280000030127026329866463477089806705055873937942803950189835666372492552903639118398570036531383789699855233176017341871663972103951445294459516303", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "20728616863756655568561190665314441103205917035876334114848970052453822334994866841745894447533108392149590438464237195594578986941195167584287465860895582442986195829052368968595741312171331437813867130889603451727351543956923517836130610574202886415418311593934255406239055496839593028516090682611787716216088113430731216066645344306432264267737249142438084064309686735401636246423823412382251127033450671262161567164933187631148784449774653579726755357370170935176562735606782037736088026552410789801945155941448169825712501560724667196022108829365281208336409744962911297241978356067178589335262108205773992097371", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3462136969015728368974388428707458333719661539597836861053277835741931268061560982301874926492365430348517316023420284932937377325486634510621494094606941525418729357438901390514402277108848926754100396124450298733171487162255482857910135694465413425391360800766041917388334994529706698656213184608295106125280400127337434983098176231666471124336742944750210488004326155437712149937535791216577750628902859709639561510305702813313521281454000878072743488496886152782573650939887392649467966226519218714191553000227815955280572071318456894351020153136843179403985778775754331921163832749253265081178788103350724984914055754952524437307863292563660967046690018249616823693355633313607433523188132998455138561258751712859835126591562237552002334957243093912204070048794499230263329384347370586810474924124485661297016185157927249807346387534548630831700403057105960107729170276882320393274741543911401382770729449090845090950231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18760553786831138891380566892090860048771511650265625546256020606053373250919751151439881960800562306021713467185994638961767810691776045995017882228456111329033858672186081319416773880184591452991228681593290355766910553318507571816464277614248625359524251051861269032064193747455479482006339428878308337720496729306379473717212334632641386527334955790451829942944782303615364262319723279787650089797068256997120802936095085240618361889381170808561860281578262602879318454084391627655875985154646531738084130348024070287919339286210303810117614993737192190033174456366988997658694068398192582305587407324749539719953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27061720329269081552581703716028412975208689106162558697174454021948892710831595450050148869369828954895359479286784958766610515813358955199367964615533084748667827862838609506959713126993671132569463705335250707770897082457169567067383349681941473150351015116523011393353936805824478298069922027137957175797314945558545658554868725883914210157906771466158730415678059187721125928872862951288778741686746957476132245616492154624348734696951708046321922097500903041664243766379218562749041439007154538860921446713645736070794736198567141703066216543536057913365293987869587470032237865622806639298340618994355804175307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25487132634804225461475984831484557270578999406712209076866699813488184071561667528082040486849014263897589117554378115740074682056473729654698192792847854714646642293799677464495526208452807543005878209653591270339607795564997091278510088780502545836751735605169691391034308490229940055585270208774451388414701413720901706690037577290307662282697342383562743607875357884281318153490312016149347042047701358508870048590220590988202241710232508052167246450417045507214366750190168166856417356632581505412753816368315584024153963834005765393242944119656717179158809018370901914296264782838735785464076993531304978275911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26749769411750403416287338003587133124503830576152936515072668968442072433396780605167709079707140882863664882902103800812774789400594432160205004700295351230862517701658316127732779994073235939314440671499191543410140012641746547589650581706751181738563825365636812344545427807524575954890407797506533452238736966143855593687474073477935101453573290272195447901985599228425468373149852750461290454416179904693094952167289064088703256263055591658873031227952237448947703093953724922884970760094357622708061977965270861254570772153799986526279055129434252227608584347447352614556311923609187897118384463674232139518869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22671628366969943246294235631246171050157233717928946100039714301044816545113080250419055787177287636818277305508563091831013324006803716389857646291866382474403197000710634546391848762099976678678058728255639214581983139315028235899325044070408222433137230000827626799645103295975833787950139831231535276760978539538302549515267022862054016475968006028824704690232704370386934515406097280100937280573565143462235934499409967392952439814334685309924086835431986443330649248677421145761063337349063206178044886904046878161125582777152122517849921216959988135636619069211636221621957538480028619447219517323290055026967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29626827278151338138128615120714529130358481379649474435587152546228442984327445701445780284888958352725118553600794066224150131748429366895703844805071437786080690820424635812394321748453940485071655019924198333199674955531461892940413250285741744012753832305768913004880603007408984385492031057870658455315865172497279855953544418828511912079782370580985836020352764362506037115116118777294640261277171836222512057821469837752114262411542600420955934512243543675370607640370270733466770269442491736862595050720167529252647710049818196408562268041284352506663894797160503454652632044712400787456870258202150667351729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31749525210677751590396456501441490531054417023533724350014670646515073009067057678801291839264212111377439097708448275296782661534218753621731673927370840513011585920022934399055157111280569736328455553945540515763871499611038389899723712452004393017489396568685966872205220677750317818316784683774961990750662937415761801824157958749423410400916500530600968966813279592516295076359344060025155175661732437611417488476198608657255119478519533196529535709153132364761947533498665302055965893522533653793524188994295237850495438255465785922201288012822925324357381105701579063595551248497255790977005463236381384814061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21292561831109846699107382130850897831675169764983250421583852339764573385948541807254395028804219654980275330078588961048099172270297673097735870173004960798579368714289988078356660394441663426625203211843680698340291884387786893564215160624609556108156877692540182723065176851043438013639165536265390507686964675629190440507796574775222814448562078481225867090750453868260749065381104976066113496988478939281481598188716803556982917033248946552843319434868538755873719082005353761499411421310222466828905791773582866298638574865243179408983267529329758631954117412925371254656066043924683759157453513716434906292081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28483698256949522066655810113379017212717589714209344358761909529325921239628229685574532640003677979112655431144274486889472096106765284365009071513065736295868072080460957229939378227131484261731907522363896925741383482814125251306700049703861567720929824342594210392343735912231167916510487951369323291893943628786610053533378556288538945876092956725465726710265723876748881848713581395116694705633337837234901886093612561364922556872846802939054924043641655870590425493579646716802364612681991308730676465266315748029815439406744972260238783969205616250582297536638111953597157040485624316412010241950555692470849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20390176437787287475735973356341928820760571267377022812978719128961899076591546620291374106550440059930933356309740795887120087676888201047291323000579087524668132937411375082294166951297163954064584753627360244555268427778415658059530039615295242082380311282220305582294113296855009469132463252837140252877411413129135481828546094627617297045315202326321567212711544920230027899786613901348569206353816152667647042999077714724186251062089346815842328983898715827519582598571080842307734015584068602495006889293409177116562393749231185577073270765212765096063758727338907025735850962084967588053013120336865322689161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30669770303825368309369378723966216672319525944469743583399592781332812717048295697021098353926296503336190683469330561549021354393689550558884617087195511245876918318292800139210102090858727141273727883148657460127055264443302224909443307453936885515279634814777325234534015070425073279764321933626484826553663891796666074200184140113779051061813606433348753183758488736028772593959505417151002940634929393100641380094865695354515021629891407030161147001245681208804082785685223020031614914558777549480623796120132343179500966061499821880289149612399699667890892223888863374657338551753096225337024119255944949390671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22191070317856979207686578859053945407859520012519180488618373525943387222638909031735945975961505040042379266491618417992899984983882366031251705496087560815070812069680316461694817843339113320612913948271161250230116480927339579258610886288674079223141888041541081460009354629771649859918138593079672837632330145139353567381747704419364305755984565234745066827282652323493419496969028922240569320299458531255760801533691260458295034877161848925004495950367849370919927782868350021380762545597903263092333316346113578597882009118472377680281721095593280068554284249529251194846660933204809003476500170779671924964093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28375735937831845946675480736065404909247387230244396436072817257674200159134680625602044768960489148894156037040820442329441493942272087499916319580784580334272781943577298532857361410252818027537311296164668586487953712316983586056451623484063538165291992190720191725356061141670688636306253743711135226556067661942137635036531435808163416003821309874981694139023182386955532499724999295290277643761492155282932683885543097272255983667965776847076117875660151230293263171129733215439189829642749569157092734909367263094463153147753535026160031568711580787307594539917035979430961759603306646113117134182860860083659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24039572676844505947025365087880587229817289907513179780914094071263905776678324871580201332850091638150091330253320868075797479439784419835788737922878634436855992357178862595068909801540972192987870466650219881502072279770360609396302752322940738260424260763855592199519990825125388658887417027629178597936696247086841313782315468863539921331683962740855304390181784593712308148120540119758754477222130592753808201103460610937168542724891066091105468314627674688027638978347927550865533382876954547769151154848653164305329003470556945550199502521963658049610414457945959657817276932844386486786540629616879726472407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25269804291511696869022373084742920467114535651447772754880865675427828502635847552411359532402598289448256443770755518120898371428409872258783937781488488839607466753461179688882225804231099427087356271801673282749676347112242823066123384320747012976835857299516409897607986570404932117043198302167552098131853292077898701830215443992780881417809507707404749025730443592940810277161488970589500996026650158613172487574038666282191124034040258327839431835299391633931701342025805060404699576073311679137175249825704555629337507855579688673937422193191630455236693474983436061635850411001972109759424625152783743752697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24129883942653559093021139392096223802555514334508211977206399771470477527837745228686745056053520509336462891823936427515138274030335473927393984180775006744248455116986440634227617628127635202930406116404008686008788079465933734265836120392994511171599432280827488941372829718847709129856761209327753705148361951430770859535151265612559529772413066969233240505815120617515170172618717887355242254615101118828372239554661166991470358132090394278358861346322924265606198158828288194791798144040434536706649414910797675910247757839978712071611167536200520097481502274707490122545320901758466105547093269867326766193001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22258553221716713602410035415653584177122514880570625377839370326569184592254904803752945201070634745840600243439625707063453665015879240435008668026553881847859513905034348927774736240237866311822509955898225936215303725231259373318921342628732338265906591347050021054731242304187916278472857739984694788262210265091535002014887185043899751981710638861899666869721301803409863301465257476303634164471246508429613051563888758816245180658179813422118535829963712801903276685789042444555685603059849744480682297515074932610429436557489048416299246361388308233574144260478530606770157582405004488915169485600254260116507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21787747417948703246872589816276013053352213191735976463102808601531013511534376507629963580011736030180240285258399376863429195404770438537163451550104542675219147958874947311691875937809827008799503881502225605166180449343069661094205807039104676547801295362489201528671951039778339550545670369802037556949593575476178008423320900648825614213989320150510229103401801243696682059395914106350998980629968668860458139129951229996823849642847817810982254290108136975315117840250632625038389905328568877311887822380381913824853271912329664371993370145746926393800769589390919997222263010214686144543036347489576184573133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23705589212219650092776504772984948977125090782407703768385661924170349054876168018690294042465120397638625618111304772955789200304541447532405173529456119593930359152853671117048385753620035805482816184470385498304510572758173987216367013895291808474420897950369052216808226820189607334945290744180461566043724314895921602410799043613793128270759380949918589578601796047963113817151886380487038963514677996162804410115349396279742165237749946303698392379433806454628052771876864025662689022964479761637385662235898477072721296465019034390432815505907875520089872151855221923540296926954610451536071053862017502011757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24877289910301338358514419819625811125526015648343093886321342006207538849240067966841784421635483021636132777497646345388005179446841656215311673888284321241674446955117166961881700560441917837988803582547370819579775119029154639171302989606110649667286682745327409725002448598863100280592381361335807394530337612202702510605163763400138469827327408807619909237856604440970207031001401679800427225294513064367761218000377206320831231337119866009670019681763033164585836997619216042465342935177768062149392917963246780382419748084112906045897450784125246344437805024120929777976597843415530805899060966186704366176039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23162534455862515824792540870251111317432918767011348568209542814602932918140542095184661726106877450121857753229760060329626662261887565802233295465590828391500088294298977837214838702881103944864768087423683712946601679614526722178295610279598427558033816262858328647385753380814346501144114924079487201653887494937673563810889251346003629253232285218855800790776199940324857652491408715544757143385362776740765586769047507687768193189266856665187807316135265539824510371154974881647001696822867612993975373846611105060025887619236713227498956759797567044799809939993283750958467041262190141315664356383127409479097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29804250752203144562159392963744942727295228560713287534946729695863853142883723051450925250665732925445073395083667029666364032541623251988230276676108239283903812161465735695164498733895919252630150144654968245439451099038862805427664295217614626446321239662784951410075686614613446838933343042434825174106862361864179024848944717476263213238898044252148827830056587257771817199958365164902651742831186324760969743318920774109836167578900467052286510689556285821551703705300243922249440224100309900155823419200764198989516198386487413012839537327162046562535179404723186301425638591732583303064553040070639188313857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26805284922287346587272492888824429760834381852171821136317956401094170513711898488077871752876370554205272770750870141115234476415807235318961218359587314903112256328158714670715897736477110717618898995899509126926837679467568894951080961871721730268189412356532915031853752268614516233259825653980023235839430746349915885550957142191233144538087277823145770424625838471560138841927857177735116454987763964284514425384805233181919450924238941856624692849610805915898430054513952703666537503813999322849785259026334993760052210986958322095763000190974169715282544126070561081561120567995167766363429114483796344446423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22528780496415984944733521398963832029319596289658378248784675873144507532625527663989266247694601521181643826219693283188264729470855834412850021290779189133043212370904796334262040176868069929643820228555231666459000731934785676497137384867164108418536746412350937833348390598183868298402439827870300754384241138919096724924651900450516237267894447072388997964124134119130917098835907416645777691334337306495218311666028637336133672910734168324178047833978132709604557530229534856244076170255094938849879782049629604948621038442834931167844729009999469815659622922939270229131508468173973320180929967347725710130757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27777616864621578960916218244376453204822810555041642818358183776056487940223595480109679866998999756698888095544382429070815293506364839748217682627782806266599411858364166955919424324988784016217427892763146416102689521833167699974350724253633717136620357579362295277543025865006344651480822941824165916195581726591079285315024973857465879844372348636663393584222957214399476811199605346549133459891214376800586866158941467540398214876322783450913530069204384300850373156967439472498523733642317829568103499693458274036978174062920587068162827235197562820875236554024865071624805445352063071303489810211721859673831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26136301792991005356937220414172422849363092002507607612556063599286782736302644863826650387590269643158593966747300406897275206194794724853995895602620596996942962738986390396922966090313603872047576047834115727150199717789810867589475830214785923223478155247552239267433640486047430305496243206110154734685566475491945713895504301064950037061012259988006102994386829681307352670160601443980464675374638415572347446380147400408317598734066324360023609424515232164618002784218360449059743009445799126839109067205974545199352590664447094581964785854422847474462626849361030723234892171840500468179496045810455632828427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28151923314590368163743565768992999341653051768911070476329205026858329045996361523407870576064422870349794957595831231894764005295723260982581869182591737472323977441441568342101851330544910127134258016208258212317524028267136713417732560891110179013457353216049338380957824281344816735948395726226661229238804679033911590700767472880421635419421345480213375101891293383784415636396719007170949986142450935868898878369155362496827955542967428000184029648123267074038364443104737072182837003820713828772530524390672234801830505296824349335676605613817628455008513353675273131775248524114846085384754523049785009611927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26297278932384844861905071354918740798325526340883107927428540819053970634085357698003368350365917598365751810859039472150475575695435272518456380078757267928005437119151644208042183335839539027814394361425088383111771946996470502112073896062537690464702807501974658639936980729851337701381220312854979604368866054170078091553355410190845082998585863073550959067895561909635484330030544255502960906660957479982871314693667794564272200149323231462410547389135648393950552026140491972537804914926377181298823429213644754886238288888787815260568622279041465006565173638882119723529113159053340380280461725098079281722001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23412642174928887281155798374394812228610459835376112003195181045387344246864197800125360814272148622037036690195808900318893224542756019794824642056542236050302204227064805751279449434782771818124662967018768801258458188313771819412093772322442201734938032531257395411421237597320661770628940368319884569318390793072054847579617917021296294048278129528244544708290503880802818680352915673508186838315983994434258985359820491860796085012138159921382645921551088941817976805267081707410723813745492016423352624952332405456246912112499891256300442654853422773842083012694589383688436172353647862752007330865609737999287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21214168865513706292529256417554595222471078914355245436445899954551227980705818372641018141240030139133014048546503463813546030403046030067883271651947802901087931876877556826914014686071984184757609566363817174865313346726067636782049284658827715644773654045993221330569939856887279570305362611140507534307401546943376860046096336678857009989048453429504903861976364018993002930020720906431570934068957563771925593571429227783933027772764431880213898981397921761613364142534310840721352327213015069143770272933463492766466099981028043257298678734674705992215257964888643252884752438695251319762769537682221010750409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23761810096877244771711042423999001891967670945731286062228948366121147319692664110692270812625307592315773717458756923707035588382647171700431085678421738627628595246477588066805345995196118168152744625164190028726906626088693451450202824340072922950789177882019494762603412316013008809739705927241246999062018805973163066483762312551289257430837181730836071110983057615732970751122520019192833441541889668159356838460183617990608358547773085338944597129580832982014964900190301916501765829703319493753832450234760723125535176897954774812634514895083772710219398100637343920146446676080701573896235049910574269271951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22620969671818450472448421316337655576271283291408576641615145876470708858409490509905203964549471377366976174337734588138850572771351743919992456357263170939647802636641815534192117496221279359260972466017060356837195947658939502227021401200510424122120420754269879347466543332417655608329270914959383367341266729335708932966126503012131779398244874084913658206805694802061775486725946093768253263421216864763969129681986964343703436243589462145864257333754650038180455245807798304173161875378633869907234375124709572591622738823373171141290862043383401627387571530355135868090843831365997201397061440482937521926683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21179734160870678207153951787839644761164509667365648158795617259223395473819468133432176914095638191897371078194007353255238247403769616206239000570523189434181694958177825895034433971114671095606225934765561549610596546213298017266149205323577316434743089134265372224716775475168235539561285135430733821762352098738892626867926830959398132020507951741501443327144215124826881038506245302300023476071140414456126730454423453442051851212830223784646654656336307601149069947149916024922336380894238863817015922011144599423670438134577182174689555931367955798446254353841944692438705751671991399230418654866463808939187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22699688031944115863031387350656609340313644554632251425983191649784322350801271051166864378587688382989620881857705884579213310730264474118727831999216597704188598368655141585213136379697808711469901847230541990700611270702460974656837291348668065569356624266268984206257947313962491213714009515708118604315093933855278555977170194946517735382586839688715814456375304322955133376025886955413373519806413853952197255276697691467543081703516453575103912740057322319708217233998730577797238061059844763789081031093346117600804175824685497001992156718251217837819185491553710153268907456900591569099045707549772407170457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21292080177313185385250502969878634805751466542855218953134507595587944115073491880895757546119139090644040175250452380019965732336604476769621710654906908783745173198925819646191684466986442730301323183442081257131568103449955664333468241830753588097081346000157696809480970829362911575754576009837827793383448015789311758003896224064191131261543053060513175364331249150630978669820200729436831518614844250636625234382687243409166635642347366709451660558437145316202996610283639403322089279929599001307906743258977660573587435915347492384909325305751734977670734439851494625922550463542316287302165814797342131816877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23491181080859631906598009477888346969443696194636583469018796977192903876567276798003227185204276067025512003476557072425018339476378669001473833732017735968083898325302484547298059960562622919086236988363467679889768556638658192486839623923638200271011190458016340907984976378674356472318827870589299055610243316225179326294986725388321956277535985006408387382951545298989597483981641442721724081973301064345742791600668486403550746822335035046194524560862752680872894253737208111764652547072992107186791592293057590976969339825875232175736404172253339665281204279332864378403142866458003686576167051672226374665883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24709041430722877207572838383403510508991309022832814103591015045949398822166970086200585261577779671448459341010259731359190279146570780552454178171845156214600175438827248298572707286664982440784841866212345849824955421728484718203297763421155669429551215338344756067701798669360850633654587632650272645570358642226067184163066273928918688296444630071748964649438357203763165991482599569228447999800460974972938982224323207643512367970001304635917124155346632473766901194713985723415242252380717948860459445556631886898627009391434714565830528743129391935754590121246797110861585500274433631712866600353555193993099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29950034069911557211222266759986800291857009182904157204179070227190637978558920875916360008650262957458714831072568646911719042510996748826239489110960991878197036559338434673844391548493623490994765298677185728871788348209389306256975197142860053375654524098222029275190914618168122750768565488194650465670846885221783832523294569182702583991121043256109524071283627267741812406645862255605409666119587690287342006506087941419313460450448300911712448759664193190337297529078443575589752068651281815130569075708766510523620312106118232927598056764518987361329328065579805127498455487937783596815924985252056108931371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28087015942975685816690405398892828646886658600283208494250754810235721873378206361851249014775368928357266878082659855001474443130985274979626550193725140253173470055051856764162588579947793983469396953734005745429913705380585983722117970174529695666381905585146385798968960050765220428778132802162220589990104556565897252952968910289866828941047639955738467285056801977741697516820130176500619860253342207765651356755041974500681125771499095867388976834890942895492386781377815343915076258144760926274716668636944202497248734928666874528591392697470503527470365680463694282273921712208493726717055446142625882195727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26476308517214490298501508547335686129165499366392653239841114339163721085434880548160691958618206181358240796255143219826875926761730598441311392950605092112346742154786840110119183972429461073542094153180424384801887069852904724435075430637982743247734085699038668846468604973922450949607735316281024593952462148469862034649005833616408278989353410310383276194820709814328112120528399696901297077008625811885654151399424161804218445473459800211480935118348506102951234104835928311255927389889294770995590764301694146486444067616658833695806479479680387611400021975931681025573253106252149547653784831389671516228021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27771252562618764210208565558497216634808380818152607848787720230975025383899996525158514128562048425750800403975101799295771451699235765520206503209392145652871306200398235989524441295176736126570315003576168732161996512842554641741275133773556994798602322928907305207045668170410312608978252690970080301008441216968450266562328132605965267069503561927445952784532375335738842156226594675056560080655111559643776707314022891849608260971883446279632130870916075367032445888971349841330446664482201203520741449876030184899356043853613137228251136804246398862879151274546671797135724496373450462382105051510107005444149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25564373814792137587525989167365796866783537742840090357751191393607398407684850615968276743591799400667518604326346253267658561234894033934332572071044307110292377213263552489454463197976398727864041702009111213574122164999967605628886563697871512388995018888798896037503106364354113344041348207671343473708196716178435987747730967935631156405570641258083721216656526807061440277242627689691167462397601464818920275493972690829325014382444594536319068537469874797085067085763255703059087658459929457480035921905358122688064142779211587424642456437911869104817961252665471968549740040917485878940553591510063154205131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26140098757259037139918408308545646562403083214491004704989097986049146466271220948432431060805405510688077735566101960645141371588743263775195384765053667678205726808819168617804368812637184559659431404608371224849853389579732627239036526428813528965600732790431478706901602821020134731655118879559567713316184686080728151865509332103390517722753076617480540643675895855391617337235244036595179646210822444734679224454607103389961068579680995163337063383974240172647661278808816845893701457968552175819077511596646209456086970914954291808840326860793405505372504300975569755456951419698819821753772940151047027035687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4865315067696074484631180871541379692918750383200028666897569638260511565792017021241382380128166369988823136506111488655688507096426628238240007559591025510730352839213784586915469322157683722050964892068978628001305713668839585529967827675149964351210744131891706212571757306195531761689451156368273753145706840194741700589838092903130228475191760076705922619672253617117937034179243849430384651200230605720198821957877443914905598235972179701221772603354421281145699427455179360644689091412417263952188778585743261386172104043132951649697441578491458930732980735322229092070155434344657280159751577021954603898688989232121599987422359410010089007487668234349318856125324238385548818756578405626298767032574098366717917699059986411435707318423798442637849614487697429160684629594504010674039706155598543253049021249957305946993285797939374515526718921649764682811982611175465893893912133489824419547794472693957875143134473", + "exponent": "58333" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "26543294923969663123161799235740283859696888948946850720235850324148828656868878802915859236729980512618371796738633564424780209835517971422960220438757027557997375284729145859269549037273806836627723449031275244439218135711050349190481268001908237732848051847011247389654771840218961622367537513913388017661596873438698998622057302734043547979029256930389490682552402791336053045848602588142620657098528397560936407740345611696012152911932467163046954950768546510421830935758747822597673034142619506006658741269095464730302943408324955393557673952699365794962111063872760421371510604428666809232497970800930261565409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23714236097925516126781774507208059", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "26084675787757793386630546178060492562792478721037638122153560551504413078375056102768983378310700631581524649514959082190778695502230779270980364086657974709405219977028440398024427769544370456493007437768833449813365500484218990343733835015211428103794849698784488561373219377086095993224415281318110505355191031662062465252488874640329354968402263865569765022056100537908258313931623882055994731733282173893036475927690192573738273089649736000167310077133422869510882458651001099299202374821938515086975030212046815740194737371707881701494640723620252037029933416318101289269186511170875046346009770278656628834789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20571270675017360177943129269740069126496693685685414160068964974176032926627095042782325419990836658551051300443014254769014098681158865459072433970099832039764466813540330778966234920375794436923648772403374233823137578430978276830422306507702212824491278447381058836724255262842463750241452712351374141564554600503263672007626206261087300047137856519468427771422779919292125490919898154460540130985761971708541202058287519592134750173746837800095010734787624075999051644055164860190558971286904645724900743836589215168140382603534533758697346208484918930453917644956917425073450285185518556727968313626941196054231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22107793404815150169268950109065615259288042076554560538193073198035910493544808703137045528344859435152777317124662109930438341865849196096250252579443269112232811087105481766885228775362459978887690005044043503940258156574317431431005530868517501602817331217756302697570369300866407200760887865912471187649782590264391916620870935748826635142155695318301888022531445084568010817441925298346105413231038832837740710334225393050181372408862689193215226020205989464586454219999030013526439800997504176678407698160904015748586474811683357816669913672674980201263187946992448590603169695612740467467745990195717448830673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20715322608023690358133067531069860445900536027748539050581061725302344306244690028431481075638659258580868436262607318595576595804359097536052256153950100319248518524856647735393991492311565047054552999460890426985283066392274743037014284144298186091124403623521645724097111780603472535051654809022898261144960283714641886956278011196095743274190996669093363844143114090225903796906236786590474959154554857785215238714869341659733234747823063925054442244533729552576959557887580233162211127437858447593495738406172030940015328936358855585982864611142581451329594311975123890640754676200762755228022049483245288853671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19581933056399944314434078218103905130094056356064376560380121853653322627248258844811456990789646185325492473102856600319596205581137357066753855358519750579674516014165722521055094344348621265090496167008404040509495872839031007768207165679368536378475966061697983064722221341801154955608809183354426164559280187320596872631867592038116511961126710764108779121214719284069803348195536827632251708119665183671590924595291447190584078268009174470712778113344984911101996759655178383536183673711657770355859514348909762697327943193617345817517247090266817006359230143448236307176212321649391132728433695934903914746507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24994133001838035101259439003079609420732742201032276005370547982207578686577801943401451066048434039116809640232890742573937503290408710781181109045215077866553831007940682798738618268923236379892626549646819228993658327725944717259985977211046749101485867280372975327418534844978375622637568523225880721580707446608017450633033056237342265990196605105273960667975380464551129730485121998412559322982396867822286838205697215715686028413688470559098810927092901226607378199573246353733280798936981569363480020874018016953229692018242932795284997248092069006866321201233242960505783730715054704283469808080895296947569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26230644162829520515093847725039738762125203291226968227555664473960819429028878896105215743455232811117325058437900476931320351564361752454253845169398306518356899204456160769643805754890984851083364021651296977261530054018467955832178980198916382771835452667305257855789220230304774583661578273795630529147929699058423195345345301872621146945341052250618687747102199039331224210072278645656055095540730778256628415182729477624775919945009756526041890765924332735121156735908796080872686345539083067741641825773443118399711222714868184407798689200569519816294385756264611455065093557308189207875244418264184788382363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26460081715844987260794627685034269731964962000245692912373601244234846319918395989130363264298236087303625282038451482564105251225870569777141372358460237280399667724154217829921973167233123205918601517132259720152703408444578211437387098216537799377412708832494994182707172062757968973393023933030681673087887990855510074318840878598498210354065334653737369460769913485281392003468544310711839207191410132726006154960937901042708025533461131337127613602871237216349524151316089981294816192069656235302292995245318174434801325453073764306473135918802201965568613794143593524736146445536703460443883884424726869245003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18836881059718146262533240920535995928703144379990558894873778200558778733652210987982268580366969452513135045678842570055079936486060802433099139734584992327657161648833738325618576133071106535097473011095806847721056718186073248719161472837388680830182044393375309922888743952020101876631685079078186055244730599346404359521130424394235942252117696798111349238713124534484250939933051274914003061976843084216124180609891325777128918165498192058249133797923983377811469238061971619990096805339369952165862870215975594093608454222418143494404681134588472655145159726419302495079371646265359374523077657775473478619319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21540573307583946195665925796145154684551341755439713420009281832517995529375089968359221907516483960005019847193241482163386411407563773453162026033052367100897192047943206668455147708549547858386881717135379785944144132581649816033991618287969044021033831756473445928053196942171668054013697132706234391114206849874486868838724864369852604366698761099359445534219866507081587876816299455933513654155896202585050515723048436621016164155183746134709857519802814115010311688142679984623962166531271945607158554063298457572626099991015891493189449688405745624774109711662822845800489061781733397181097425081603395845593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24307157488421388376849537598632618384135613476814096314178030546147357883540529758179333881736249427137114103271340224997855628956773906096699578264737306408764416776017505515265278834394416934253610244302721889031706603627688897890372603593006708803324943975943512170362337586914761431108679636991126283786686224097307203444957733758023737080684484976601452882043314402505763264969449706955067259627833879146629586973078134244296934304549176159529981791991211386860859903479912432708105617748947480722189842839079040982180389635876702157975184856690850967081664704849668352454440967129039667119390245651399528334091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23585551635960781148411474208209619171022114922518334389434994226362955460112239212953299404736148071248774845491430035059141392892548575269334651367351653382479712166092787370211204082365553103967955216987199104305645993762061092332682939852165249793781912144902721745800552339098601217222973504630096082391211576808566056070420888912241248363118945215944618402979575737827748749573980278516044861975862844850949634105045348035154193546075522919017393073275767131306110107271133883747072825679797052118505560307776594471378962391533890612546469087017440821131290950367487643723441979153334007496489125634183377649877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24851059733962299607163021011451325728311394718367447755303268737240950098540697090661534492458327496402557529026776286969668778185560947164449311113303609212233241212039512212557976086911689807645980547487937076623447452765894693425117791258787412488758881341583092909510886420405074717569859537065803579466814134470387956478652369674966644737346767972356880555659114452763469641690671679378896052321170796382783553295168186736416145884123331255663594672344162300546763634297666176544396218412364769676407761560421386367362290658171714961830876249876902695096736096523864507381756320030888875616295862539958141512911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23518913232660033442235797974952464737018454751810826868621542745435827191497236609039417199320709941530242656316910034468835875199719712414305151901727390881061256413490733837764817012175788143273170015026539810804705956645428603650076158764249937999714523823809605082162582948000509624593446036834789719544532265729231423681649238253152044615312905946495586372320889853341217467239377280254324845541908366546599938206611243032874312734748295079119211123762827864187256856249974413504147416682022258080020785847168982005416780399605214288606941498906288273321136554446380697060993113501657935731986665326634768139817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24688659946369084691519077564427622408414400776208196632823626555462558978350109967342155574838425889690261836744293645522764105899881909079788238116726752323573587131725204233211963218662927344880513433952348080501438576285023509348077764007801140475929225361706662790756667891286007323860783610963535065843855101048155819124106423011191023570439238726085912669192763077321608343551213468092185319358603973319353104798628034520217281121825021526876910723853638496393073916091826842484635239365499129542905681163915622241638708209486601573850966603476885912328236326021224052831195985323309123632137817284683834598937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24564185764045252780149212908255441758567801830984468537076057751517721249857673416827699584059520641310037331740115319765262801084437613189356273709279080799754747757875386931135625318193040193473092062852671321948874810441068266792714071932769224752754822522173021486094367352646433531280902350566837394496892017435412305070105081111108524351742174673586395667732114382699382559280527768431579898916796667417404005234423728654671390775695468520861429319479840278203420721634411112675198133581701679312382501874861209463374310808412163552682879199101180091867003499328787277940956136930715356391737810119550023807931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23458963174619946550192846422737724632589854640742709450404323323785201305334846321240081025087020480519927442320906340307221639439824873616971547911043864485793591269385721562298091521187345340826117247276905924530939090976989602350064373012845287867224108298544137711728612333270269447969457825390290712626291476428533336854911590162452855758223930530325138757013108526681311474406634004032131977210271915158754194113956885644760777090698618125644234646787000114835744391104888350552348901130387349050514537752134664338392881220497594189057608383521858236280698652152335441470313603308573636389580637439664219916597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28387849363041366830036664651511483401539855906705923045933363634300166354516139852770374844894943665794166768303797116574205552014696448244686945329945700015693278312648472824951384134698153577925946092485162685096094665824772816822315206036035826735397405899563035018679077613705579770271551746651602375814394586894249044568019408389377360892603236398449229513389579372292155358626800221222937986268752617386360162670000499595276614500735356954918149511407353940583313793665603176818060607783470337956068092415499221335471117637051926187934769953571619645251448847950939075151459044301046744784737919836876056550333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22164152841110874954430848600418080985983326309048725725612500501061839297126477231024309367894807836732288785678600703094517719256810516970892277271714386398646045902610924303453660264048761046208825485855143260148176491386040785450215001814282810447996767971793329485048969583721673616126272703198622148668286337346855887602816645168146261744564526016525718777719046727757546221947367362682418295078169372002740940124276617297931703119745525400724786350352643747698326021516875541679580889834539044807127356779548967702374304692630618878715621226330052537159082827180612881758239938469249845894099150190542750085327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20755534646682154879338899845716761926565055003428036563801123136177362571236531880648566382000118363763846519573994772743521443877887730944738671850926221070969020972756317726598439352258775541386711492962139117912315092349742395121719740693438264544732015200861211066353872038579128076210258324664211272127983208351674552674205830204597534571245196687128559741740554057705914819148462964358795444328503949927307442554548268353175859284081120399776855259763560795650992197164047668461344475059728106414931501670505747827241691255606063965687075359152150334533619411483456690175829004149782402678635489466610197819329", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "30615794863136187170730071754277441176898295228912134029259331303404619036165582521077612972717498956573844638532888450457251580300136037743225904139769663050668427294440167972976997352707246228944833063806291987568083960122310939118501341169741421554155113146779977383074166300489779964465571962751499737925253789486051807162867760934921200562202751747913978627772770790100532351217458937202080416020957037316608866141396522887591006526219785625596608699753227486541921201766733486625746806507066611525707316837673882128993395863045685663146763323764778418107263078865472287925337616855645936745154860092535991547707", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22877391691608598793793989479705044535794027718931952072963495929481172446827696174472641835462758080338567044063481943516526122275541423567267342537365733432022848299760178063900806006437632213121367655589770171226597735762517940151552440255943150783269457233576942133378653567098639388191909841572273045828552434593439198834760214203879611632361494439953814013270061509126025124036119880945713384942334254310844816586985861289798129673346347292097468098635138503897537568726295963535071934611449936224718176466997017881893284481838217097843542789831000659353784970359511743858148355240699981886181896466908091236033", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25925040285819230251943413796487241312073427953124424437818319359458564401193524366164270123650635452271445147687406650684427968964558890703765619719201562298124005005399404911028781378318145598539741718681387567595107063772084329901891444875115181471094911667722161591666064879368951930838673556829045837776242437475733717052673785004017888740630578933186287277863773081721641904547257000380577762447308486020475127509507636259294219092888651505340716392801057623362702119871828224971736336354999640647050261171544133163072003481679879653496288203474538608579921482069087837884028627626567972285946538417413934978547", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23343899573982029697646560483009837947402967324157104638178893239994351339559400795886016748505411224671194338771473719509129867521262301157296404499483871379465767911310238154112653457759459480983886340069207391786461080090636787659152053288251347983689899077082338519662282571361830165744752141814918088631324827405267915043934403615377517280605015956787517927170467861813031415697812525060692306822899301557751702740564554822121298578309400694392775415910624866989038731163616609461965027309632340997939229460056934165292483998579388461770235670944020666616377389454829031747624990607430077907724381512197665784241", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26078240183378465793849404303215212902691798700896050248907837869256190887328503697941326879462859164024756219149995040137408059536564608074727909046172853300594233143966733273790094676982230862839667627716232961215665948122577642499693375226472733401856787588949326412717479625594802892958545680917269081029869946532175521401373639014807734476551354470286827294709324664881550394716940007412786593097613900440562864574873102986590467121712904515637091897613090854676586426468801244106570769141971344824366650773929873192460100787407209749633109924464937134349398861043857039862925889970184421248054921052210200183831", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "29813978664927083205063895565946017393854353175972472848531276984619323620177631571612650552570482194491812733647746340900504399696152324449971335269023887005102734622036285393522628259502525864256933144887884121627928054456900279905858253462988239522537985784529379276411769725138274149872215832902742993133198462634930364409588945675941356157687988397380264627971900959780081612215125606048837849566798672111176508165464124937750484383614218265349814914444088422491635918639481351726788593907247386577554176181655732846803700907173205126102883622976499607787420698735520889872762865420695673315275442850329474154121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24028525848030018425559181043140799006410160007969610067455261837534813851096645497245772526432372613643150525739601760893099439464181548088867994107135051041024418044845149418147951654847095491643081062938254288587130486025053625377795247840416632688399816270689621778455058527114918159890047663989978929793940856002025149768503291274425549840678337368320663487097772876159714433245587212098773993106333236377119058757681891261830170001129333413227088973556390866870568799243183562777721677106479133784424051587415370856531873055152719840361898823338497788242085663585606565464897803359316951844949181824667079269171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20051758083579747883199778596388548722842894186379627696467599288918298301238309143461708539748254682868405157848886103899715513182347619184956864729158508812446826194149595440488264811686875693235127436668736523147245108824950101373863671837899977674845348278330402008028612130552808673333205145165276503131285030369437213468847956756672689178970228608696937699041789686788219932485015435486534610347750736289616367921991761738510295058002152917091637875545209257070985076662373118012079311615826172925425719132836305221580968066034869102270378760115768440550416708450011725614609990769498515364001649057212647796567", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21348272835911682267108172642121178170244612113732464274884100231303865682048925214301993194058195799685102730340851146923265523873501359815705419526708331861344034490872713446303617612214588201363849038999309298457047726713999692842483807768269348462751020794976226042405186272182433025735793369236174657381215976580187947187620548530779987331990406518389045656454482394457268667923912211669350072954263051180601323111319652405641142166277437602961391320262166820373718859307538533981842551139402310744641780327010241903713592502062080128728972099152152445222842815121898856746892853556880591660750670580429596940711", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25663208161706177776827242234045347114298037444739599330236566776125815209361707336630222135310222828746794166139465916598055198536039862650063603489382785592964971667161928598922858739230463823833187284195003698807474390126973992917758404697063616296949974245142045486348645114677534891172579508641875921331003620444301883112236084990625732284291993197552271029880343079528294760800737089276691205154087354068111740043132318413788911035637032624285288898153650267162691465638883286830138529676706263371668954280152117693285482026100719047628908764217651023382881804958942175139750867993163952990698155429365012048107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27482342360425027776565987313014886950196407604094790165426262514997367798647374966175739690723734338965520148632300387430001399925876307344396074756591604587268385686404139288085951194678113292157505250641636186973449027482761435773377082010803625580593924266759909481143709118377555625876017721208628080713605980305976572328958649664900466681840425506951872986000467935756054323998765280217258679011985628737729772453742258208777378904132989990752950145791761670768377126429210738980583161851849240316806845529002638190136641359049690188160378629123136907043577483063135402635880073727829653669835931071065438572671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23609765481227397910128103527850709165934359510144362757410446135052273968946990731280085129229170145517221761279115080894543534178745136847041927576035109349703495095774218069897758163614895131356603260870851390252170907063805698172113705618131427252808548927345862457097593173511986604665849299746748600592186437830003657180072183466050877921071919133443738266017507947299958723555416837990288190565788715501161011863162249452840876359027399046401336209859529867756658233370734565305341326548224595208058087532067708333067471454835997078716111413621390784559961578170487248618511490483061964327956646728464335917281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23052649143704337628539964669705769649374696217928297698024455044538541276828305751193408818636680576214554619022917741278293135118140125814742195670922850152569789798151452509553871478545412981931021589653513512579549107391901930373152122293201651734719551331298197368645020493951070102496111108248245839729554930736870026937983965406410898649230033429363435756202286182049152246775748003673473512327412981303713897734522745826407954422802723402194315107159193167673434338384131794939942449175095937956491846049384773426382176825820601650305469246811763806746164993245745844740195468293949869519100243485700955603093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23333082545506369634703814385783945261141281407564979970439649847857267572752931560814260242920482755760270377389430990857962303489172712940203209767930392345182573112613942250413632882151000804745848692042950479365937293036346894525885121576368488104358523384745181759843553563321838832104123529450970179907108631843867457170052821183492430578040741548632407060429746394020068429428097171173102808530712069910455276007198836767223368549534750825811702492682918064973323094768278518980870912926407136081866532352307020517750463737141324068523417249959601603083996648742764398734127750651768404519436316890071000698493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20915961051039777442853649352478625649069843617829216041451669560524668673752706060419408232910235415721449698389855825647958104863925243043902522727862453444056090140274253735511802711508734207359267869312174482100790033571396892354768990630718328079693591991850455793504210281957294418546110180139443384879724317172303706534678381951254166155648774579028167073162072846827128086048145969521405637530009236689140333347734231809474709091662834245802206347619042504093597366327692799454235040099806881174585461033948138558155555613140574530719241423707477053983150178364239132201392132228382060630230385062165146823059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21662463298945605725325408849531081282238979983027663075248472929582951712408417866362083886197609101079110134121585531370892993806262309133715998073975164795144200136546577216522695441098186085071039534863217639227669836371694141258197870579545048464695514042704403254401070492906697819838713352173234527964520538080953443602955582205410068606664987934028160756688082101532824105983645174094429613367750091614153744320327891489341318736888210827121907887348719735706482925359258123297608080663259283599423405193512218898378788085672943674191058549795139732775141249032182111190502891848246978717165646754681915353291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26803678679272891178575444069356771524108871962888675482693506314516535443226044167119378588844403777048977462840173587053021802986145519909481026937865531507077653944194282145542195776345370772555058700960450060874096574333558016715657362819398773124197519640222704783135187788976023243865142059306295958664134447545072255173289141383873807382685876392530440749808158552875217121214966760414932888574390319651327450572119295137727125170492818303706695525289401305010129233838691437887580035460792790013233556936565069905601993206702626818409840765573570367343594037661099033891146531354402803971511209521005742378531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24057117897375575241406861592786038127756588071707306268903987060321433322027694086922242868961412241705226126324682103783536193601480154900303322223769158428446067388461068802261290739300054319374962893129832558988863854159425507798218366015965097251629673105023110209942206748547548189214101397103072348997242492566693061177156718505836038280224630004700558862951064173587009573923499339675264280357626299299535823183538678073207111451927384843826021522129317240481883094889024702399264777547329584875733751576349671521579542955698743629854710054177913554361730363768179187972394601669309617463021459035704095649371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19730927874777068655872374462654406340032579469488467693347149647351084884294120315338565805616334663171427552720466270987737091868085665237096873331299468703021616271273130452649650946456105451646296479960274546107536695572414684045732011477279080934684319968313870466745134419368930851805175031811152565991947254796966269726005083947398507141196734593214925785595217523693883021648700013346953066253063113381770397670931983240877675021484493430276421895383026008739221989800677443180131217545085722136282738852733660147656144847681308657738001346781093387835938296777958182131393965384565661076452127453238011170403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26682520039186635042875647077946178594239896863850046484267227666190910762442657421475427296035858009196698030883146226182439620396854164372271286250360108710762644459542142335671873972452453871727482765026094052940828961120903022846697460691636913124611208102440508723092712081431261300646602343282543778189442825706201784333697133069117779701272145745549043960815997488078242753246725230405397431537822494530559944145303204172800210135760717157525568665968586342913008237908857255727603860949935736278973975784756168436095962026016714549932144969350152164866659389825527558678386448279700809126042576839237742701603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "20886050478552579450092610597586357153049480276389806707106778927028524993007302093709199474548069617649837662797949044002495721414406738674614097947860283838102497185915995679699001093289873067201740933714640054689353680543425800799510760639732115758552084759177629893878341654550261607964284016969328751056640444725223166232949961199538744851774967805134819721333823022317179508522855823781047366144036622548970287524314699789393399947624702116461233412914220905786455253852605264438329542054278853635915100869433136495793477110297445007557382206708695268080947773237884581054468918041373402279763703651963074514861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30057744674592182459871587572120934678265167990133279312584083155682697363009864754063966618889540615091703494533466898813465404877277639972270768297694153032014536008859587785808707348141297221894706932596481577925766464665412563874975566816026635047721619942270198571531511057771822329885067451497167631586839403458010251388678137999323226049070471681322526611017620330110954014293765288834967651812531825851354863859257420864094882511315392300119860098391626134567251582681714774250478262400259638221543127506998184593743234521822663794191320010480625257959546245226655715112797509587498668499678432833035534095213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19169149714494374261189151914940919959099260631294300662449850692484897893697734041813653602515888161916765713755695894170480274928345687343540852901867694260068420931635822079785857434247169208710816086334659649623470647521585701770400112520374286825922001930111670850653500392864038602656055007147669284980701322684375747187707677003747411020964625211609340230260987825309443966608401559822466375203548609765137004426343748265286415571243275875678825117206749822582545882862126849859457556887793086890298230097967486252794320080110902754953486733340804800405327221292382508306704927269334293940059191028054397852803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21303855019486406948618035932729740605511262011626465586733970330025417354333213094949000368458158475789490729564241523936322931222894427256930395458033769182241105935867782533987251445334164173272746532995733744926448626114602651509525852920026913694206527822690092031214264473325639856488588442269313320865150283653081050434737924162053774385817981606785787653050267512002604091527474668890853747541505684484497904159455438383956456359387243029389287679699335263368662260052731785387845199278458496270645896687942332162912264464444882173148390450797949953045710848849060209900752969191231354957744958730308620396057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27584382520622710286874840230058270938053008806383183597695449999675845066622191272847823974185827061073877538125426295173423916112647353362254377852756156829001889721595827842784942782220792665021609049687017927996874072207834128637446296825687757173810186102454817976401434856097359726811613020396088390532826889289873652522559199775980901598984697461830024914633651140076685827430303193341645489617410001252550674488747729118066934169377614073161151711885789539716888625152383612931161966140879769991956923645501260168802541955374601875963607220499780852940185873032694555040110018181499934625305746481017440268797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26295234742964060717645484704769476050108213488199982497190956484806269184255026281387465610109993100035849926146860305874738587582733649957601620800934088591599804672212008893184820701812175769946475942761545292050345805259161365539373296324425202829941759096524923750070095071074389072353498833786028615232139121190973861763197032026660465653185504409076814310053515674817348888203711171345131235706674444562309571560549712100253610211079437276753754675903228265829765880396524153205077828364954459022482829983702869273345143201525852962465297605039301476807230008093048897707235591828042124516055417820634161960943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27034991425218831214821848953767642779645296637784322284218454318018393397938717223780621802006075294546341754966018762095586762275981159151405635677721132357471781785223963712447038162579308968975801549083923601834149709258603560079781954955958598928461927367514273448765371578973534336251753830066555037532756279495565047808759528994309426603711721889606151591204872122213186558737611184179052245523030210794777267946494216302582295270500083163651661914159262627507715590960821003141636385591776401249370435788639272685277004950534800143421586948465834914876888895223951539704567972685144521735444430055409686840071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "20503101030469892774432138212066339823804351739280279107154715440309542824224705075103278203226736444715465575766849621515643186946512888490086380538381170994988599369437885885276128137554409663255749245264148890498724766748731848519505174321164887880183423725020383230254372419859195755374387525147418362985568027478450463853763829721874123100295109583073862867527514270617934976148980228471319790228801307282501799567688444676956936110674766050306149792880929719660702471653185039337204534848866644920813491017098951570100591956602128434357587317756048340591098472806418050491830803874929463916165165843324351393727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "30329484537829945434203289338070959880454715459601646511741495121356899323919064507138424620617034148473818876404764469074124030795457930619219107750288815111132259764435149877700984065226887458132663251202398925784909955678609347196494981682902244761662373714865586122736218094699765027939157022179587728617889718307412819945144997382037219611747883580367669985117021853907293200667356239626889127772154694090653457049007730576039872655097239811726261914655717010667841055417573257601788893784169810686989648491567847702922471837335567478237596805323067408231044359804593980769096002624657808937471981043560038438051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23025497733519469377292229507921168", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23516290301056237411539306978901308", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22391931958643251119956826163656770", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21102793985964949201803530759779106678954807505929696408147342655258379789841910058192297577777026131576411400589531691729216397176043495675886735369914721171558674794590846376659293032209755563009758722251768543743393601748680477360123064099265242462628624517746321192238159263601513214053258104687367326883384268407565240769098402298033097439777810181352843598861834155374218371828434925897086299217095008302281588295437247567497286002340545156441884058207224927952154786032384459891086441381728405275039795676352170621320688911998322864641607225918859421368220318936078064656140555221646970220648023158997662743609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25852450213081564885056295512293060136407066185349931429507594936958674016706731622895309587645267198881442117861912443095705104266340252546411833244551599978277587863256069166156700341625686199408041300423865286286387472321542886183357180582458338052653527819779874613123885824606381326812097571248043811511532134950766733874509595661202888941973420457328625844000428484698363285846328526692613780508832580631885992184846279355672682229629550185109015985122168505138863191940362482616344323667382397756409684168389761646965682570073269496031480749213220039822468961985829103654944177651841421781598721652220122076347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23944086580317819725555486331209297488648282452403575215232351062457440586773487486100332080575078909817002336218129408663288696763068496841612572848234893779735597557930619656460246713923687382011771417086282487445805315498240969574593324962952039707827795915648206618787404636133310033944096577163012479738398763027203857845639049464690243369652836715613232398896837763350297942028727653921070821058282982077140828735090653968634761990958257646656481716650569248933896025604617390267379934812706773775290877541482572055207164760829584243486437820457525831462480094881588140077898449940417309338750856536930916825917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24313952801483059082630445307068321917095756249080369707495213419339908200011930998332531132868783039261301023311398608331965176541281078078923530079368164919342190336683830106111475719818720565372250583064191796247312580436948026648244683888350680706434215155927075818009150514152986570365222931938325728579267720472835050656643587460936733806336678240386800009849967629813876323517953995455382697882455490209463954027960634268635485650977538247194135573832740523064672253317038755462932654653335123762860587560151985196725651331821820254301297610765685161599656505838330669875625003164849630432936258995743245455521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25283019351309179099533232137551895318748071136744905776240121700160116568171259417529802998923714139028837486343054960769318021219095690754217125092768008165908636233043512802042724605758632105927609862503959927657519848685414061672675954138490688359883383260438944690580092978032761313200624349054385300064251559422409342417434536051824617521986637146341447929785580373252765894843554614726685101841825724700859014604802086411887146790697995233310302773396886463809228966783755344389486869918732176607334799194713149146136642187808715198380890613325752286279819076858979295493850556840310215527937186751837890126059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25431425866254391409028832033268304694326408160555061859043742602697666690680057398972478298212265726241823818739381896600780515343063947634182925013772390430561268019413897857367450472309402312185879443229517583636285797305324979964804499140565637384070670614887190273726043060887085432388805967161405310889123383309550242653118990402597337139402746531581312596123666750935293296584862028184570123336852464669781472209664076723635954512007966193072007890238796072865519184159901279968659694994041459438052652670167416439909042817197235239521052629381873128206243817231423889420899241696423327536353119741957380708321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27413789604623001713115839146077039848262380482282129626761457522376321872996092693282172148823381644444123657648339709212998172860790791620696953045809059111031544204346600844389420402010564863524577590293659384187465340813286572311505537863075741427115044522597914422469323477148069152774233176540189843738599570055349670355405068868762252406110884345763306467291197270460382706725847203191607128714218661733299645879548052563854162855656141284378423276204995634863154538093431696691529617730389378701380799410112577745174574454725264342864202181381460421392159966598264660964117472467519725683357571423462943790007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22445987699331922393028044674795827565520049011915589049401770766499669752151918776778149657603717189187148674310985883120740743386589581878857841887710124339666383523741072822589556764191588808500696757581385745840428221942416766235128860454515488452743366707568732333392493752041177167056944431154909387511468610580561492649265222546452275242641557455773380710107526327952553246696243837770472751000050019298545662472271194250014736238137898386495463302062816017337216502109364456370418954422138306542760123936912498661726820622967839387636128362928298454006584084103536298268084161580527193200870143271309436235613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24004085766770277215849894125268408912726559514867012876186703105418271913318162993462348956364024796186107475869137366569159067854952268020434531353695141417359335295711195163161407323028166078731961708424101814155696003112685539678486149875820010579172096750393081492644712579957954256874651988638085247833325568641410569924279040639726663891745756614559669508217633542478025702595704900846276838315468673856161524017828862042884692342119647819380407556618895015206754602952549894710521701294056105907699670266020572332129952296123898610706358458968680721076736462936944149896442101829958096044917935630577379620471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25429767838469142443784459379423500378077320247194335221079015704455928182042021575406283283783162660213439931030032069737587073084225950415469126274344972633739690620475431894752404843773150615837917171288768676096610308785966037728715684526439464684591625360052043283806955536118662591275075672577615965478579835194595322973605754113969366778460873207248044849282507293658876645861791928613041436657362341305207663643426163255269789795719188097786217745547672166219286457405782542531026165529276915927510200500387969524664081658370267589198561100627511309032251476742570532037232449798166851468458448956213378655101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19791893816408065793207760722938733077073669758349283521265742379313282606877514006547962367348829070668054868934865865660287715134243319988552949803851057922350534062380082110925481518415168579989225167268765693756391587807975285027708198551331975747309754693237901756624681342182966446455780625675131156450858506951543794185925057363539747498670007097436546141585346275340033220659534486615312425831039990742025301074145697396836610153604665675562558548731143267823368306323257624662913055804339534858739949595527013404920025413844765062050553301180634141620423416942138145541481188595212526510369826609419354205897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26289482680631039307076598329815805059072824783562526092669642505954514471439640067195183051955204857399217369364072749753559221088465709620471785224721425004156067667716231407328562148474922025133091272814572008413481511518156570390072818664112751769273054131612111593662515618583886406914242366118670011111201604460625808487823762569208385991767539209061224909796127672070508279309033031866240656389756621180964336471627123677930636296285811951547616345792503412400135136781772838743939300598465149615576927557903058797378759381053946097623317483365552172167269639729376865206655457592165967328526421468909983246649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24682077232319897269915127257968279775157339651690174077529190635818001534553435489678882797421965649232410289960947413870043209653039417500181098698692683766968535436070583655769252341434320035143159947584587901150262846281763624580939323680865953799375803045383557074899283993235355527623039207097341516784437921799566612410583464441763712872207608201638760034693746878160686914170106620824849524344790374907784869236095760155433578388300316579798447256305440016217218950033535046194308897045921012601964624285151268761135721698558752260080195692559055619984040432824533501624934066339264819002741004399473630193203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20431159421907108607507838658383630823654820331104795120378905229552428140638721234018795790884468530074034335226589208178865099627502108360936932108010798919884671038731878126488665043799661663347119984868144624865714374510043711870047569117056714329254708960997882276797244504217410310455705648500073996796800554546149715614875404375793920716001804535190666183897379158048631801148111411427005838461925965331846563516274529397706994995307162034301870838162639934773810558842267117549064355221948143099487763195841915995379561146304010014849448768673420923544000865273427637802339011126472432198245935313747583800627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22868436412503535210270055535649271490257104156290953908534282052931430540587002486369482281687308862835859964436885949133337074140889625088067534859530512439275947985962707218030443097392607641633703130843181689454769048577730209447864836084175252320295430740170940480511557913921255129867830960854695510168545852405240828957090168753635629452178265406823984354753922789678507878804589054897514567085449251328300513453996427725550964128195922420801292010251233343885515150911039767584733027353608905548603711179581898832580405170148497808995102920339737875040006107387261126207945107900900237643747781588460971460451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22833265549640754370399119988106216147079008209514432356602239028537012663928328329550769578391475414226537098213104212620807630290668420635794344975474494259655785817840181779097950885392866983197896822266309235947381297112086882008259840555257311929766518385176623168486288740754313859235386053610855737706374714011859936149969867799341319753093187215969447678269676585180766470468010073906698403902511966592177415853208558760080521181883522277737439999389158465192098517587182985092143484841182383881433911420469259810707127502762992765468210554977622210341466171026615971944413467298785190888195548247261760412961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25570108502612724553145764314594459239389645425084694122580152763886931757018662741587910921695640511310036392302682496655574052227108213890664887041994023410700346700918712139787834451668216214708814325148018417431962666656317210095274633130365508686323718685329659434277664979950618299878690949797543085976341628947779825614423001925215018342301194214064518937881864669953412957762096456999949386006209071907823461178607501260014322638193319257549462025519023901542089722632299470008097919397177762522699007533092333436775856852138628529141603766873008279918595977997893623896419361270805488535822980161833086120113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22425555843549528417931821950670383980493380350580407214345534990866468883494251266758322242433132901282801133014888564406705531357531286230854021546323142406618381089427094887427506655122407512675246479195567112027699098533414577434711143354525145264510205057205839082474485329072836298151912500859391747483763554232263844238066804462886987154861993097330841061280676020672055839910819436866125560188741847475146764958812616534272513076822765963267520110681543343264313918552210660678142298664080172927651747451114117778719447899453865050070357651351621277944982176681000494371411697742561317157146535789517173252051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28370713362401961371463071976663312580635052648865149361252926966029871631564436340613255673987839803556517831616701734185318775723623109126794661766171184156998316885093261338149330516556743470904251007506341654567693820322100174279750156711640882635703599290809073323369889757050677713259616721881213866909564730976839363454700673834175906745566621043208967713384318084215203361802345687198750335333509853810738717731599225510130858194672488743703603431460591504794642580517810835859278342736983330286980582233082714383988732009906172541557502254367542920085570247103092096915036946945832553810365671883527489313417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22305909222718281547185344624814070274984152451020030166905204969081607919761545811734677367664384567242703276318469311862168300807997090783427234672555559764335804886314994086436254345940393513923399883074418721881545006899397577913714882344767179201195529778667244011364590352663339386000393274509596760149870728102499898006560839888022274586434236673561670213125187004602889128214870405556522033569430281602414172640619208745038042662129845883790245019643155008470480292617979957809026078021523260009903365531164225679644226879149066449548694926062652661737092842424841434660167553092266700168206217409758683343779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28352230233670423255128211784030230135452709245836664947042308809093018074621305667505122063073171099086951217423333205329715843544729276845561560561871542361890034849157165884261722042712077489040995407501791171172929269430831274212747043471026893005278085643312332261928135388460375006603130667490978452425117819389193534363573568785733754694822105959878030273649690018971662547550574101906670728022911093360366668327258128229992821569899552758828752349318317345437955736505089134437029293482831895327598675080700274491563459900593594510824877683334767545488612473383906911440125949459829968781235903335055557112171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22172206368174824102276607636198433808111177204276197026595830612058986556010963065897173250767734548209365405038477799304073119601341044722564276688075333410548853580436253769471125792968691686868889710155460226194330028794241817879967360574416397280174133205552655291602720236563649498981466988572503461091318954665426008034404643841121448188523910906291482389272631150440177716373040017667566118353662538347180622200462744520286761587261097249225527184066277176284414233207791648528709527953197674041727064693004895537411230913102589146030428105577581358952510568840314139450065667491718857843791875027155396787137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23391324422946514721361755938446306046613657270013242552151415425319138367003602867326176135516743384541975955382938461974573251857470062399310466895065242177777408878431018190007816390965150147375974558382909582150892470654198563509773134282815981501827388622035341733211463104535308554679275087576841014190789785149925748678054803402249755497342977912668128145846048815704213051862070159283206803540878941016471796782543741910970258795765979669038021642391943061843826766863284641680845021651601757804140980179412510619455996971220084610679732068600135134149678465728544941900150772407238550914894849782466394780259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22927412144109643830251273402045516345926616178978192400717276453475663719675681261496774876591091175123443471167372506351873813103626421115301626575646131593619545264715479687860269616570546547657109084937354892533466098229879504881560705032909530514226739392842645186923577522346276095219831678166210519104313917708846184436636707778751955662840010522617774487724115410924902531632971616109908533126588730010405666814127719664289974674933080029191329110522430704384071285411284648735073550070953168312148419477551664252985527037998110162032791344437544820101989195105846802175886294838080652964207224211680892992821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23876542021432778253116019273496682362616244562333274623060759342508120594389117098308997934532283636147719131068298304316888442235439815585203052326095447458885601635956067207210623379108892189215470786319569678526715380640969872879776495033106852593264074865439112021053471730478363351133594446812785674523523674933126850798040579432443105663103209264027162969248442793629509171799771410566225487349980775889741375367438705725272051591373058031753797619068086195434910531650660349828095940212150794300091092925928020451818668540803771422780030716453123529212892000584550105918144510399902609403683309385237026373467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27155712905433814545549413119137430407488862747647254633033731440130857948318266559088642627324171140558755100576005971979532334514787122579036183873415658893859664318587517717360906158134215193890827203823501617620389984450115285288109872445705365856778202802930231285732010213915672945577429216127450846985094354134971359420076569571709101529833652096350662579481232646770648486931342491154590727496923823013633983355624625001420962471460017070185747980473770824643190305122118464341520865443068239301022061282947557960504605300433849073695349980145160894556901605845173041368450409449688373202591784998138947018191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24200732457276848269910885110824011768603179216113270161536382324154467079176873705802643987543125143801377911114498204861329907903538160499370242536334193611256558783329641300901629613964208715493173262473348473786749645297960269819532098015932150271573617447725972706861163389047388722652960972689595849564141816593811763805118065984224257887402544183469088905258395984003209944047371638175443658283053734663031614378678456278117986068685568124271142807382954102308318492646269337945109366342141112437713264585324987933906629071991532190863596553720369542843879681684743965286884091327255372839803268477863463441853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25707909381017354813474251221136951832455368425236061839724283664388898508324334494357690602045373334748874961221329628833470638625586518220216095180801181911678539868361981404796929492571034744704107280647859737223251049500255354991976368818901549413674211372707268430339275007950778981978771272951329892418368667175576544654393947178677939429935675588535410019387215078414552998272021148362637631806092215906177120428868540714601813219570644290814245097335259914301470245344094425747337798413475036596826465219779520634891849950374669629472146688109084057338313163085964535731088220692135845963597653220261086341077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19876040139467096493495374256135484549098116606275962738797713926623659385012915007381016073919449190889202383775033590231474995823435570167070129317109220826971347041017475566749133151624537331598090172772604188400233590215428388492491449132207347828677999910267069087282756255828415597020648402357705296331067521025107209072153525253425384699769217230503052970094834928802233423110611013659269687265795431840873199068226959930022172438637111439136963631301921451425332737074541469052332007262446028898279702390400903446854192260576868396011078135592141693117826127191673577061894002811768551619940508718880766876403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20587604860920265593792959667534749198827698470195198204150079567705138681370754345671791428630803502485613445104678722218635560474099148017902964266447839662000018226143821975268734342111282371065973461076267618448481587292008407570820205346348963717052186771670588787143888819903059771113854286212596378398397007501646217045217437537652171396149669922630182194122145858698817412556745280127498680786281781766612476515903064997589730463148313250574129481920177930632564232271126986677884776319520107512055305470274482331041294328570370259669049908968228524176124743341140472843922459149535687033001201821617217536319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30992301927021641822241287955408459978512202959758813272353393439534128818068047946116358968493350798853296290572593717196277565333464516430765133820960030019686782798367846427369703718419857592580378897395596027865127811886964839469381829856889439702409316433181563319700982219177075206200730369349038358664527080043376267656980425102206624636556275795446279649031744015623343309785079172940814422259681348906939677904494246102821155177288277943013692760337840568699199371874430770736480663259189302426032063991304233850419217464861885078065550845383757549645154103916809232919417145989907514749514597124839310305757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20853024317404209031980989151010037183396101217287638091134562726450948961066966462786967382798922786213500867930415907680997304089262987479506127251509106457033279789726690554633349461097639179602216713355929395922297129650142184087051595130973715065117815807546680633669399548682623029111101371703232855556505058158139305589844518647129644616665692199083926928550780825486987031435734837619804083381768364809907810343525375551842221513810164292007836262182408519165386515379075025199945293719432729369496511885906075080310668813185166938391332268363531356646407637405387059875185385320207064275037019657970497674961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22575121977986505808672916886144407821362711824243791848420260825460554636167865429035845487460868097223733973560781625688159702065050172029353089997268857139300714686588034398220543440638348003839692111966183317442083058617881420879506350501567591248852742662619909199008999973754743277115938249947698513079790043409849213074434619528220298510176766767462527961398877013078597952657019780295917615101118494491137793008554813385630804122991321470104704784192460640165182177344329867063366019808717393227946097405321419786229461870127184809724963000929952443357534386490594920185718873817095835848053142366166166540673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24491026264905780853841091575000207416508005613142542335414389085490825051579782765558689375586605602283805914266186021398147861816217135990420294736284440683582449666248758284215341490625593252720790590129786456566265165948195450992942123376240322811128297290689494440502588177425651233166206197965127600958397594245184040411804182115867949738115366239052957054681491381520858901076855837606135488228276805634373510004838466219714626409743495671900647178659862096472738995814176693130584000261068541443432280610224926375116611301432600857665637042326233522822033548127199947378656405573846539273502132539225149041167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26714594755921593759305976588986945627280530864574139254128086193782455265050411114371718361881930405205992584287444927047748849014377671400334918829311086885107623150384007174884600140238100585583351190936559472932650784504932867270413505527110285192806625865105192143455606275397484210159111106658863591990320904376706404162350272449032468910502466214885777031884764504731252527954495950166769806575426162821130791309659005109520168295276232187101840738543976517372760624725690547481551084159055894560710794998336576283127228422423508816580672000622394635075348944655807629877541898917505452101413886550986563897833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25535478705618611800680402283998622131413725587037496986368564146665164055397344139833939381607162204073781876078121195147178274240175979747572722484384311883675442352292696192121871039906554852865378940760721440418433437482998820244956653337158428265883357698144119793867389301356792712123008685593878940822605873715659812755506354511232562693527436851304471782738236060122237018532811455438492433076438157480668921636061824434761829061053701778248081674154067929227100184918499949981528974376183954881127734037778849126861523982795621305495705542215546666302936945191313800793411371712632036323510032112883296298251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23239668690666783936081853151704497750907489189255684269020698633680537822528412438764862435113084991765625042719656735277218326574455054206133906137918326358900682566150113079577069414208397927554231621159986442327053202079028630604920930841694450778729091379159118830145942985806551769569593627486871072373231775079985635816921979789262120802491404047571718450756159996591900786172832391455325699033276512365988325164447043861089357950521996262922143984323435504903795386219449235483584858798951896385457732367241742735368193035145534710554490109804388117999860025887409519561420621352088513681451883437023642349137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22282996366295992875732202224124152824354937352192262859707053415800824662290460380534657279624658624729150981662580437356177259434588929780325138099450873267549452979408088715199315671970519116948974274342539879096815538182366076888123500140277109639877638807107226968590838798721015563393023192496587870619108621184209054429555230516723988818181163284498390087953167409425241414096000852002934804538703795133364925131897834173192189688398845311597064560147225517697118951951283085413647062945711897995346840690818286384043585010065506973386225155917296324784887221511443242340309490341266655732613437378502773997989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27137117833704479624444793734077864264822739115261692755688397170559756807858725405595788861503288810686904056088060599136155949851549233125187405498599755205799779305827802345511987292850251747951889921760123811707921661256549254743378338536953004312147319186673479607997385436695440597208414211481920849912188038511936294924517637745640673402469198012071179526937714768177547447761439570859288803838828299288073393860231517991089296274479199056097058882966126541668836116809576532882737284437820038247796918777258835034928976207489469968599793197724172328109737425408856053933551833229437146445957714153611501167561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21630912919132795123180473677129977878829138201854663863723864624925207800367043458323433687572094518378929269137216126942076386445206715979638926826008297963718414684430297750251085395600389554571325634741419216278572832939948717694828559613153775362102592385389627127859054191591943504631927209748889435611145800871349736242650414508895955160839633238884771971567590853818038558755904207676798139365055864374244217325684761175985408804177050047492248088711315564176317672513022150110783019878945473426195282776118394845746945742086337025863620017812775722221481209374767442767053309031311873095847517357009313200081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24237366001390541970982173331158365959515418543071511915853808215496423071229884295773855044099341441431719569265375049302228092177299782875765906613165462384377014969947456523031493920623575262769804525949298396356102779734872041085709554797492692958896016452164124031003297320671014567828289644672126031901763735094136369194810478296934504318713231637465808747949842753762120453268965306024332743597140041865513276573037730078119055077117881731829235200087549817846703118149366028426654791382377706691645395202029062538579163324349616932201517217967965326648823025029399326201148894521039322635769396969649430407369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25547508260279750899770488494427846165013510293068688331501664582479922071928013764560556090755106454418188852417240229599563986881873018494805087157973483151265279940853606261176951896809044880802957102247155977678585388162006709657849921362571073680108453969801324175853905636921138385992008948223092645776680784300383593450924610822593779539652254705176395773717108923486554048568042463512567754278189718237256461259296223616238830380217937945399590673380415027160392527874842286221343246076321993849259421704935437219701467838841519894434000009189890161018379547345713809332815713948918818623611013643680791762833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28002737737115874347502378040586692911574736032782601080507303605395842609339244914755018399374600339126652054900407508513625083620539453328035110000017230871001074641339090725308399428251315147595859949732034242329456673358299432813290095424081467861226338313591152829421763693778043322772989905314837419750185370986038239086673865017708783962576498110845739613961378533124820984928812483170942661320791197679395891409002491292490606218379272736516623384452074388838226473257803954951052306482110560602919900600794556774835018493260211040951119933165891086985227889250003540407401351161866310459035363752727334738449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26016433165472010464828655650595633644550215249973075582902478907811723523896761081524312708112759456805356197561651910407421167850764193291679712320228828614172023366714319984142441398437114197730623381377408060194981898945542766816366232281863260780669235555845966472444155636321060162751351277203865487894468372298092780290555241901347156599877171584645493800901643185140219649455659493994789184552046552789312827484805820448608402763328107819166412890448324739168386560325106146314836256652848863021927125186701216161603159077221093902917318597955385570673715172388425408552835521642937516790958762629053788684809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18699489463678524412618573684786918505233859998681122913976986694421988182155587577861510406437449381077039764819376524798744018717020455090825926405798701565755796625333683208100377093170006812624459716966581174858606419041626698607845992055645403502426427949721113763028535809347776413646028934765972370943707068711777782579001316204296124254218796138635256948105555971551845207329620234037143171135033203410800333447295001721312375705388468141718043699621455086472194607536541376961186483100926510167654892589479653066242488770673689628166097011182523668136664722575316537420056334209944935506772477870242113593651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25729130560841801743397932871487864391016649781168491375831691328473318551212512412288211896400185975523466030875586109833249748123148324927643969621655864288283563987271892539643995728182890388347522104483357516073065351321428183629340058124226627296457661479964979503849446992150036218992665563289984320914061537220121790140706815268637112899048716984915853459483471239749817102461968596751738632934645969480618565224993107811138943067454833447473659912434972857983505555939609951469894269119736625027890056588482779462069951588389174177607924705236319345356696216392633747417771128060978130310939277753577336561123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26717132308762893395851427793700104882672611450813309594767063081299029591159916778666097605596255650117265991107373068601887387395287917074155629952530795012456549288157685100782088828402880756609092214540913424006113357184130300275026197724436045463625177896964081540007374859022244646252542668735613534800866579217211488402338665824322145123698849489193994024671570608963452317406908044016825745626954750712807832074210030219571962694136113981828142434693524050701522066304701206443077281406409809450034412729745196344383127517960161278644531347944452291454817078204694519413013636968453998580469844562244524496179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25898547260698737106602534141005710182233316721803905288190395309111504335933615590983484455952710997528563177190625623674081914618164737589558163093168235875626551721467159199836588636575232269678924307142950885405735743557721386750588403044439162648426522622815630433772826618785430503867845903864291355909128758403375707605327055415523261186720270664321546643939595978497476301042046095841762249107533225390392281446061605045331340832933878593968818992400205903675675625910729293194373288432106196940903113521069539912139726898756394210651798962884298388882386762716010420419065562263964979625829335063381115481037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25344455396859371580183321925450094883687950194606567812441500075970163747609761778799679195527840892042234649719460918740910878510242686228481260324267589457018360550588470085092114189896407543483331085518370524705999573406409718409044602225730836905328308666666845145162074638668655643662597214241306251571021304049099400623764971810983911635055637750391531117232467584492947438377524270800374118203243554867294856970530268499151324713116909724576619991742390049178447323982947530455938934759037352313832335799716767920115448646907358778615125184787500526421712163400351951695272890688162907550032152711677362362999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20787692757329817625122050990587213293764965944275596917231871370274416829094594541938921184963851115145867907079558488576191336431715730131108824916183962932588118546578947388368191792190102045460618453024002069333077397121272305506478586717463540377653892643892327125120360552183400566503489625334703127144097257018227494218498541992809401769932753630198746928808731816456932416151759004354556537199688479939542780690025286431250139150527680018298030055504670634958675135698393325962130527570150030360046265130920888933561180855677439569708035878699834809194424136669528092763187750366209036858605167542219288857011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21017334784911758210111931847728067238307522630180739517642517817369497180284843701411848027045616787988462981087674923949369042381068500054174324406905565907296750368185058197541702938510144169806782673629404642861266390794040761393296599174541649520555410593696444125942377128020697357450840255599326878642000375234902204406122179772031671010870738037891813558399120154780004440012952695189011531533888924956799459064361163305385171605483908530057375023533440146216701140301454941950495470169453946390503921890355634577890721627554298795296801597682487908053647340708141830722441619605042193734570408574739745049263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21933863237182714843895024060907005420230444671541481327256141715248243614282483416268805271658756750480794834284235866868447131302780657236669309482870692535874911726948901832544759296641794419176965371113449808327006301818663545599219879768243383313364825024908533156792032589756522375683433869510657569365196423421453067031963331582252386623497745142143459397936524867850066591265843335968394836540671316801149202297221779982508971548551255170459181475281673242306229592219703451140120905575191077766704632602042128706406082678830097574537432721796044127653952325025463143874336495853931975541041287556965288779691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23812147508258128489830673769791808931629008094064414975626947527810898155738038726850449647931517034539125126403622984483366304236315547618256090744701108227752201163080611283187709401104389584291390449772902534371495238422513485535639138596265735887617280659959143044001635000685129442502573466374911858051100036788225643722609048783179418663624479497763183069590174675130888977059834234266109116863065097647637155812007367254078741495082195130959209025325845221633766679362072308808770135127480133783921549180213016578464734472384118449510794145628499095962945105780747252180638547893541572933955761411393175479473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25653211464211064075644376536335498731250213327912884876684660271575918326363169432695617527722928126066033053634541461358093148120591376993965349919779186761228966769769681575463625832957525132576509292197479249882490021965374566300232638581033890505463123478994415908320368571329892769496327095334491019059646877533380495482509414939410707399670274528959059871329971886330602552344268954309930156115527793234627759684934050773443271199329162772537349230479673228630678077001389668321534348548708357118844868777969951828470537453945755658246555060713062226157799871246947234569948097084921094120736995834476247818989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20490600679976188277617650971504035798822971501284984530046789129344389590406243542102097489805886704354893496118380437324143538457098595420191668604231782637997119379606675608547793844077992225395682224630794044875949065912977983663989367904941225817062181241838520319391576360389988870197592607426099382859215331059598477918139238697086800580257049166809087792160187199354208192757450626135355087463680292146893362554190974696387932637479729677556646236112456276247344726099397088030851283713845631716167114782574310189676036165435057189959157663236427369103256723553035377209497865937361168825666011556103921406343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24715394283822466060436554288942262375695492477375504311919831742322915800789314401664375066674992717103933551248273963091747088618014738888529648368782263185546680182546963824904064392415907403001911628550006914110895717042196087926522580155846197711320145802546258830531375651179551787955351646830292266888512634835569128587597283057470202749926285526480169506517153545979096354277714086581098177680303121248477340669287102977893424526613880163917571441416048548084272922209265385729903863472656271393635537021292372845937242184592135878124480591171720700864383251578194996625931948672572461292356301829926375773809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21991662373285928567588811329316040792142329229397325235690792065132053378194149197129123172270794252849608932256643696482747323322884267873523189821585199003082725217824820823926581763774299821612715397017907010097178254078947276417095366204921701933823401791982656096535695655039049395666608239685051930579226397423882637854025672270937246483189376316980767251267784183855706757661102762922408243619121337389851302888240051696111350246637418933670286147414243257499276634096127400297160959455298071249582118077562979998015858172011758502777376905167832277807450186855304631963746724370404624186552492449551613482309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24785003649619331954838859427743749574777977471864006047603400531075183425813698098407238673793311830467238633534467775333654160762573620755546592401515939418746444061523376377392050927906821635883172765635666893036129415427971668374594608349117554089232884263344105477428186622697439153273420663801117901468334206209562970699877509694107841986287297360289092213017045932256807735025305001752195815081243702965969203870735006571117244735266626242975514761726204722398420546921364869095229750010696338876627290096513509438000100952391235193324663214435268918035986886108457678388880037194354795861103234301828316643213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24534332313630012415857071180257621002352999151818634700266924419217379260574539129966913025762953262697363846967722702679984901859568717301927532086984874092884629576873138016164089198309343837127335523650591028693215479597981953876565929799016296240660748089052101941911585295942089637069209113887764487994532363618096071593300210596594870370450780535089537680690249316779822707191825753433227272429311986390811125198162345768354479632475706944811944178430813801618300672628150601256918542062692103246360484242908433441044178841560289160893316391360709336378829533312410673480495014428850774032438861592583335415601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22328527430669808142290847925259942864075680782464301383182499355004907849029790672921664751653271184762787213901942770037432344434737837189994596394811301571241393376673038840217320688462514301446032823096720098505423833009345193740739030636552636763661001446587418658259623146029611973286955257378686636912407717828307029574921765272448966158837341825311057753218406079244207193044999231234895447294870187909497924737070442348195048016280058187117741120469709766225424223346438171505529033187682118973011284514012682183963789363044267371664778261772389015282844808776474154069408083523072916680426827522770595274211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30318024381099354827532475463343088582617699345362986525657435492123799129550947943129700210163984227443453836078309323398978217105366713362667925069772305986827965920086563274860112948628253432460049906563548198070377809103073502357596030882311779453148330537892747211304964520228641869811268664236666763509867608767663380147079819166855050976705127187820955757283985101757332736254828643327795626722749056735817445123773826707339015481733985756963571036240936053453742604963447211694062029741878016316759810864262886913484951330818830716898391664160680764798344662506288959651467739356566062238093635606483161361261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29513767609431149978018661374608580683825789692324022903377646209493627668656298768070898019306642854654957896757430478473080510721705256554861766867740064505447199536997821505885087281685613233730899042204251052037521909498094669491922030502692499755418794684911704069450104765655620657979943337984887486777616532836399227249783176828158258784959635033754186449312876091119799795148964699553263001015325616607254294397137212710239645642202785260733551853145185660813793611733350868083462109763384323584169092654391042240649873692828451450662861841530150688839638758566598782039588844012353690002108907228341480861677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29134730031951330866545228962545891782051271211614688476569631400796859468603965712968861327356545896396360291742239970462803676431364285057129599081841649730515262310859641162248500081656304516780135405195109083588096240045841613682700294363009780350405189293926310275619949394388000090980728100852250533236841837059697773314363304563183664811957289786118785274904972319746767041895735191642308425661680055632238516844714838353640960616536091824336476129601388915250137496174550181770079983659289571716555426977583098727165243656347077005186311292684599428765551878984915899995329424493822342770051627721877048937503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25618176781327940556624522988659575489223657597354936788379665260610365838992330776993994753266884846145357294244485660802680191759367583516006951534525912176731901455378184566855980292335206066318651826534220819202072083844293142353475022984702829781855392551505687715254222160297975312601215347546822805677544876544183240110872390740081293975070253539840458425970950298553810603530019354736515599041827263102905250298439474436381893805499315540132005318946186140147501600260960804317972200916943725369950702761723793035421369644709399443850191184404295362460424588158719518837742564667998985340816881013137210726683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24844994984761506710549302922848199943415138145300909914590106615015050410813018759094762503038354286913171924105461101201026562148499236787489914283246826569266283395646678514006314352344334507379465174726518389676124831797951675103419300119787352476656416211374135037223477423336157081183710113086931947262141570513530375775464863741671401135083845805068269897099243525355765531524095458303986749323992249872407416054370307910858777693944501483508502670287968677001168455208081578614718711338871236278746502075919760079121767871151538343901589804447737640248809023202523516505776635583184409478028778637179250380889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24002583375298376918947439072328496598957957444660658904908684145990348804791516983427259078660223857690558084204895457911296315699795198925179456854918859644844988213652870885795641353793315124814593532045944936809319987274480979189460793583301343989315685640918292124143438795362811336760661715942239069087194183923937620422118316043143029434555561643494389714629038136318829580493284445621770156431127253803415480931620680705508835349854447276672174979748618917031422629992977099759834609567053275626756673897308849547873945418485245547901895598881815683766295084835035538767153723260539909851373046889508104839889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24402879238275375388879143186150218220238995099860766070963934465505152186435139267895593864670047888432874722807386048291873238912373906805122981592218188844720143288970445702831257425427575069303859735012313258026045683827744503417628411674961657641872583708681501055064771106714184567114017813792662816219454838704157565860670668235143121905841917356271821804322330282847028776760608605200663086435700611302870222776634519466759239806321083053316448839901070626927938360440178960291342420256635266447525224188569743693280096793485788052119092180024446595339400096076390362530797420891595334159179731185183925593679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20942841733068238640877687565470144615726138790475671653057900823085332434325180268242167809513556619503149913083996796291416734916550600560695327621970046653517169101057064783453269669071708517863016409982008457775432454114864676960803782939305912397592206652716765421622291892557285733752801925791171655162031034402567813941680828681593400816032868634179327619869561497858169512868717060520537682486085704959034064915669678959261903433777101089362706872764725995239055252873038466136462965060098845092784558179729456156538406142586508745115670743403148890615260997142228650931558572757720407054338715359824794416559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24090632042333081454415815211194078086390831134105117080384178132579124398783827226116109909874449349208649083702780287866476401443436192491073871208965779807423415622091576652852702911952087478818666651092969087744993836297023127832107224026538805993113284523413793048534708516474656598134587845859634266184804648251943834380553105116096788491499738534621613991221748920541806957461152478123294959096901110343133819401846425890352236840534537918748703537204286014625891683790346403179608081649908063327041394351280340993415762438869719820961329915125276452697463349120335651677269495204232691035643743300029981455887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22774359651973573438814206926955853957097317490670310405511133192682746342719446326833478842075538777449362429416335920628006069917061135024899388862478527349658067941057603886427072100580785714419409521076837142857437791958420532345430683440882391654400827400498158899988837287293408309950825087287302459403593672000703675484797826283433037520616408975510633312122450221229977205699085232541689979756112105240945481101712863839939104701420456361907647481655439636645410292024486784147173375616511875806255007659983285462741581013380124563492154329072312647953691211606262656831950343054069546738969837127229128611151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25123850248840018798796322334381274809973607491200035601013072752879873068231122466623962268706808018501839215677763196196576001126805475385908030064604312830250126296513154626615333490456569072167874888913888500810196364266142575957447020381212338893238719283636279222350791098127706131802981965463966715198326201241347465030403223451056651367270799261621957740285197531457933119710425793452632921906280977283262313673150183177794838291833005242385599551798662333349405044867702270848602151170406989430767728429971162287748500978506882601597737778719425715328763557922397126507099369441406290117290196989025430193077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21984339101884793705076170084090277990280104870001991775724689590172868004782090875057441629242261926284882770797986057551291795296350926437679067048963460550154171280910613209832543969108624507322793202641606940931678407768203185620404670784542593907167396877864702788156848945759766622166643130483451186125951782218654740596619087683047371090177214648329228809898927851871197034562743775688950381310853299746678663251100410953376894219304393380305191996814245152606341195262386352277718673065811412658938321882073441902436089673750148821319806419555136839961037860878463738943985769110219945605288870066271521167543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19340267487097112347683849715849428718485688686700095729874094588875217804541849293232658874059074933356399230147499613437289484350304059371430532071260080399048038350520469078609155017266520455419285419099748444178422364886129053009911408315176945119238655287721102239484869795955647308809180280455987828683977091425450641415613381445370340290705463443148036090393230789247151551420809327943097372926201718352348395070533263343187702812606670942755162263406645886192542613715645522569086645597086374846673861926017136915390480397499717281418739378816807679232659863732412340397427912440129262723645236514695061254369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18528739712729533970340629295630867853816956873379371662420700808998868303164938166356268406903827147230393819552985405197191904695954372314794995098605925988334065138113214465717819996306622449767710850799038209790409474437453818649649949574090425243926162807775231515292840942537970612444941511914313335714706912897448668430073518877750377810818054540695514129077326433261528647196504978594980538072060471972275939897607034680925363518066940165864580841837748966122172159053354404881214194038549101783276095541854112121555239474392771421687734203289160808936825562827312034860769721006424544495733639529038439565577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23538045475224329525063968506291914838006595740526335205372011313757571589951429058544907401178161389645157557394018766023586765330727058316444156144976354397244342797315461846392000332165764442073564926016847930294470794554011559505333377877266031787648231547144756348016945438223271545009187882933302952313334540902018574538765419337888789451650982709694650504610618218008068936424605079268514716514430603201181667155995001503130175637358115571151507388821377024785974711951833053262188985515077311233645886068217129636874928792736807772937798323160475528792746909856495400107883820353948773505269310906671714286463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22229347719448054205392588909540165365401529272830804239379849492175254636200110650447307249250664320705653391805812740009549721996502844577772996106139970099320178146872868111267228366662571317201809680589652555834778936559896658259186198066080002847008025048075055635007876553503678830235042640348186447825381898449521805649114703406771970202076882919763340515168079247837007174920215606297278435253645657256516498831355748151590084890665805831477508981653227136844219986945075242517302536240759182785084479748011191716439037071521794632249932199578790001022139453098169631522878083162753656047982637861539308000449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28229137999716202205355672756240728583118347476553235214272862468507660891861929973845749861673046105103595220642359117121976678052468360923859396649173217548880992325458320762237519254894975275051457937552621746531661903733077364207348924595139170205047042735352255921514432814671617778491707701105467607270967434381254717306795573700256889695062130136616554577485201360342414628246680584158428533252776162286630689410079502392642262041098872374624734430879094528504859925067469753750839725473817925821255454789305993877298232253213860365782872405483212403177393271971558617793430075201362745024526020642702922026281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23080076924776403071965793505510426665724956109494619689320456977754002140790985209463637367376896558329986889065666361089677007138647469591948157185875918690933494847513634501089408645534115657145464696408119652686164897523284130933431804294710679230240813515233827601124142005709867631679705642218012953158190588619100772515851254251739990962868485403092562087639980891606990870753655048460419968942620785573526911627785054670590474122036874818125134709460854161607010810265045035573389056140316521742134249048607856465446756474466917540747815473280713159531339526660140614887686451068564117853954515454555173882029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28987676488108071068762818657000514802897897124757204103744394529023948888831597690808711906932314065586076950282959190621801407077051708149205303508614228044293474900698918300251949380507758210546390796278744566027772770163629890500482406670892124606958895632628412133895845846584088706794694789442660871153821958279186898294771053291721287279854134477604503902056375410957061353243112490683545275542974422629160631366310589090312723835856579588237165474458269378273884630649417855298334935141228967414006418459643874321329516232952874772258978440631791639354968689240115565039704589055395810434391191765439954175671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23318101226581187847566906710106317884546710412727745018720661181911974885594110713178190614887483933339359135002602260531302480427154323489947326228009070738489263235074979429629803959719369017827375961394839754037851041282838385339152689792520180895565486404363941119030399109472123855101965776754566063780479979828104002883551639816438921794489591467527507911353518227683281485041101453476829236661837876894837940447785107529082004352507069559463985430502921606434182015516636016339889619795182991319319190492065379126370592249252894146681742741148334831191656395875912058200336949105738428628582303038704124061743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24773313898804675921576781904711498707475130719980694532387884057616522111100589532410024786131521703403262207503040934089077870178091367435933804209901556997359924153688111234430920489812017791428076252421289533335761372431210601915571798186620539356825442412715093710253057942586311148659984021915741675298461330004186552386943876565078891675755564446865413494436695197633404842513281404469493713878608386532619179406061225883985479854063960566590907316253957347383332629410199588127522177939475199464714706616294632098292613233607403942172368097716524469254082957462131496587750659720778990037354316625999892941651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20717327941102414930887452817926871390415704107975554708257349964903838253663570816287121458563373960616030227084375744750074403065892182290750194144789904814544174637779985198913739283820440774872625749888954753959779335778050931265693787944903872574650674748280579950889065338786506445197062609491295624707232232613979339733625653374162976069335385708450366098092137155942802016620413952796391421283024552680636292175813405501553831638181755233388121795798527454221679274876628340676229761745622139356492616568942101808937552373433528076327596222001006286072651746123676708893203354719096900487188933145525334583083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25327638928452732576164416559241810136588304170436145945623033450147457745241630905655658358947514235186296794834058866680500334244453933332858568716200449797585524640749341358545511501951171429786412475473949885475128630232044029898731133259610940777991024376837555089845775965963910867678365133362164510338172107624747626134697596870581078894650093766272925223799578928129282585472807793904273584487383368650266488539076281819291101023690302077413681789705263108201238797539813675736153094992581524775077118642020427577280769402985168941840238197944598974602294277501349692258618267930164901952161864102936907742247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23783002463894922758600888217801890458694794844723638397511387419639337565125937963577720022520145342510187773862298650476237820105978113757839268051446312416805845173010570317975537591910606683761194457272889995774621569976903612755203164032137436567221493265522207498586574967377230062821779481796737734104298359247045338445736471815958379905283895768997983658041588291850637142461995681474856452087543021888133653354480443566528975443853776587282974522366091493001923499451827562746440227920156602859218342912198657561060395125059880214213186025768852511850032998240329394571380114390691961249301859628425454147791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20498828906307736427055884414758995429745919446671488762093895869103926343134798134033862673327097699116041874581471280325816798924202788156059822322286962709929902329334917097621220517914122589609728765718679315452628269151469273506850088934712162317690525089855129538819137486018028135779676116070395437040893753680938193195360638326233928700062463141239889172991857049937342863235660445683465806764230171181492014438991901176737772633566323934130553966889603574421949090646198034694807457201360801076590082290368781631602744526005842749235663274601573812720166455658491509559769485281638647416117967063571341244733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29984492101894247326361948553370561862760439070120504338686228977005232282358951798297288716394856771617488359079917375952274659603104877848834611480247382762224298891000609950951780258808544069067031329221252215985632225968497223617649608043475157827024748732111668062021904690301990748019411513173104913089635488962865599935063942896858090857468976763228833582389446876399781440651633848133942684403511892836020451397455116035186713906198274415568582798841968230510277335597949938962419916030458710572171620700998855202567219055728541409627382493624427211453799662892433331433655876913590655824555049212405550573537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28270486030249877279465387613874693176452471128952073724606774730381819843794770982633008704623947844266923667927451543797626035128139008175482064501609244609440059636322942491170260786837094251302914735676297006110777971033866905844331230932166214212198819168114106826023212574602406924062953946857845257879563802580958737607385543689281198000986105479189831933356906649434302949693434311302690738939860345747812228689217655357072891477479442968303647829594890347111681409865112266690671299023672417167086929410088091602593434224530912782161613980334562931591665996436903307185669775908512242549397966412798016201479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26376268906399919180236598742655266281368769527155520147135233278498531035309744918940837678536680986544986217358014324292690207412656714119236364575083344927327917503268714346094324316216542799878461603377912181295937354026111242178004880141079596536669810883914479875425792214601320766019769373883613853245699606086026638863741909789228414391298437541868410322093535503498551130573902234287108114677949650809558402383665336383364190604587029255234520824734779870218581810135922959628055679820815570240851455719063340430512244754065639430990244431318029072304879537753240778693111301748572788627273034173014477686101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26743321358904230343621093070323448435830267165349641908684725057297260716664677645687452783407971888662707820327238492246485449055140748121286577281160870745511198036987763301753578080984925076211749258204940752691895687789774047264372112928800125648611814799326450676132103236628529008665880568010640183992227581854074660053048110094117602720833983355147430392985287701942693993555501830845344539131947407686956578468965816965702998585405297209758913195684603852514461641386608866482735756262791450015090537229026848665832035769315132804243391000586440116064412607414159724397441755073401318289160928529452960061527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27404421845450483238862082827853191971143550296855489471492206127832109842555030908810817629596486739498460407266419726181136971102900251965055071603182932768437925822503886947659297513757060078422349784550980606746837300432279768576887704976167702352657476817545486536830162195077214411054844174043872215330229809180811765746220692814423677895291163522039662714382111626728135509653381535315520772698144281220321208758803631367463354335148476712603007139242012674116152511046802135664904155954055493461034865952970065645363557623441688009411204825774560590376099993324633394823528671650276009909913023754676666369433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26809154405643921868437696804837173205901500947280314354748955153393441519522039920268258249370872500008672140744648207580671248897369553566831442202925633291269718164712807461929821777681849632689058433932593474183990050996085586236496006373576585983205652185216210170456090999778613242012500149428133012891884284963775115666724017994015853441354076175707611330036943439854697012153962437446533571055268010127958225152830797628804696983896543133741820490561052128762618593929783605714108524456871988180002432274750444153266552528967361711607375523119950472850790690901444491565708923892062227592518453344477796233883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23157827367505939314321132856202937885266575156648591679693813993936999805625440691824321211898716318357514807517848828267437244709689166775045888140510596107150783548807310933541545062052321152803757987923899358258713199883490937518509824761717204344734802000195994107441215826487650973139124034105769790301178500056421934005521156363056130865874576647075967450961910937049702583221573476980167497318373114446532756467971576845735482719895742669755644889606258288066867772238048281090606120696812043970553174586901601331849495383009184229733259190884864488486764306846436102273718129718969274168565660892753621616027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23608655558495437147666751139366027215840726807683956873824387803733506830794177346529146368495502602088847364908673147894367974699723060605015981073919732850690133570335637855875067154859307211575479396091222946477299026652692967452674694537857888891333537530639484703518782882625464652967262411242322312281803258445884675021980182733276640622318462792893862401766247813682310499111484890924534113203694302552457459547282163913114580578570019369602965520369727767511783767569284359129438748777972881447432962921563346017458222666041020987475928083303563757974103663992845325480172776095890456604548935647434926539477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28181296442904042546217682432245906335308189792757032102566610025549796709962885352840737604622215659314418587345311363923136120696352808917107675589966016659133597409625554820492529312764077834329956818219415286929703738086379261083858643649037498137571672623573272651465504389378460049993186926076411851746981076239294502630793866814467988115627295602355859833025561973963638472626302908516746683251350839524705241996464239249917894704229823651229544130080788866752062143251059232132245509603040058244198182913159759363411547760125982084036243978881474422554773529931766998668981126798440705125816172824524767988571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30022339021387006312511101222515307505467747912745795913549912697881472457267646904415900933796623070345618806876175329777506663239940593870195413033558205660943310339428124266310758869092637297549283687665093870721652290816710982976151078646736925571364405514495315683543707826516531434321561932966884772105845588765953385323163812676221241070686374210206513171506691009036787506628512739781488129896704113601265777322395300101304265434455536084605645308542045499663471519264941665542597284073597401265099105806582016465021731165870319400087321065704172209026626677910277545357729016160039464134014603520319320826361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31710538048496449039033826833544913891925716462469037335662832031418700360303514056429529172759106230581650300264914825693774157686903719080982971197380670637126662434761941151462302317921372113158211015309335778518421838249780256684583097132058546133198462209851464504793706815400820392936070814351303821636639860410143929944938467539039281409298709756586825295359282498549171039278558074151992252066877806817494835047309068475299303437731831590691105957279164053247272844677110455615448170091691380225187710537464393395764461177990314436735499268276292077011284023052348046827383661383991484720383667316872207513991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21939674523851610012967003458566268377169214113489010501260417402883830346343279231082111144049607795224543435824771969928786585237312812161369500757645515582168497503112012077472650498217830313029562678450540345839324843777929106092453901875389072336243814616140646897938169813482735761568287677894382273571910068132710917864620253075262151762000732747928747099089440729200578437976252266984751048480327557292914675743284223115342491048018567013217550917942845850467617193271384614032219119582099258094055358775238887012763387845719134842554965175440093158032680178103325923102777160187546656406509779155359657482759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21401644066886412060432327703265266847048660730222825393486558570652710187272101503542262095117644165039373166043533771472856370011965994560660337324440746786171452907769264019692274752147963501211324165387094993865704710992786004880426827539506530143609656968453729202699860006966515230246803717930127022544232507930005112023784685327844004349483005320966409504436566179383400716093796979855661277733937190867459673668312732879434723519065325849573722074746038474700489227973652425363489403772543404169074285542094489186770806205177906669244847541145992281964604932956346172417202109487719029595172072280498677671527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25699756559246632450834921687254151327231290960749406815746552789469981228356157489146457242476751042040557086006939987784807734954647529489414758704922079254801431275412896016116484412037468130422352134286929584742410636992350530091979639855057081485765434531552509435788714986722083511378966235550820066747671196703422391635829515022538454339001584736854200805862135891839392412139416265153742083304963782011255118398400725628965038040266864115848775655688901696309994051177352618478665921943000124184803148519378742152928906104896113979793926490848496969301341084427611301173993509698009588034019009777784820807099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22464587137401778447695417566900076773613116055705994217078933944140367760540525171417009704180311669938661134602661464625020460412934729727895857317927505528850623432517713265517872997255880534193429090453011422005410685783972000063708707212405346135710629840838034010734234889412116398803908742204186136787734918054888495165247298844061914056084387879418861673416274754807125968699596126284110998921636164021083856409105852442303112778735995204666055490611280770818063691875579501546919222369011695227211092216785518201675507506446853723751406031974647051110323312892515875425263360056986019643054118391448069667937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20556082976323208428767731132525493012314723561280831980165122462476588345343215524441512511080872820720764415936883019817276856681172013825427199421681420471149903172818048122888703311062669468744326898429661008320186104892074293103682854711642104723217168181659002045148491915936010461033349028839814038255095978944519068023906242772109116322761895668074363388158272269680569386882840125267983538488300333506723384504146197579350619150703059124371928863647619063419749633933627031868168613535849032329248334520076887735121110809907707625299158019704132100494914032400492821771198309007309005146555294787350384461083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22462971306419359885123535261091553119670491112105186153392561076116277577975010179383398879239329135033337142096586842645675395988443759836021944480744723643192349816731051385224109687220171182416983695550625565693965934567450298523758783773507213096997578106483621859294412257231776817696790615352149394505591213028817367583801752012368028512832836324209859525064073632606750635231391645501832255567482064730212458974246580665622741474157013446229991484955220994223597544313619883024037974714588169837006868831930563661254407712341257287705252146528362449555491015421202573618335670763747424103059200559282944214557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27351762081168250745575357968098690173918199648706192518784853610470546980804232117062978425180790636474522298133068334089543825419493559655708712429133035038317385961116811087560208202699557227252247296116285281488477408181972285497750674388608078845578343386808437533551084717907714795850892852251921045737227880823331014714480243623339652164532021105347067295986021481658277135122959718533453540442684460710683507244590332875664432936911200961364879982563723411318381532674388405620848474129370092537851830697028836446587464186708325002976486432628324102012630603111483610824783482562703676970101313281450709945481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23787929709323963083361412497817749458561222497462260650877352258724897245409960883496111610569695610820919660955449147748389661103625574290486794188966551619626259476256794569915694791422485071762111479026746679627707496992853602309785491435491675792279976145264758757653725538462919864717744731132932359347166559828205738073033027891354839329537067086012668052098753684209309746652110452274431389201290351316839524640473436788856417649985202597392984272169976493945237996042787882089600213306111746088530362420027677352881194584565450811202880101989690668462820429105057447602767204194166335112337109359132784712979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25268998246215899066392060862145402731623350717703262641406665152343117559060597081873669340417882641770521444112720709566726229330470354382960807395298438508055181742699633448909124241749026385543298166916449998026535075558041448067875303675595937643123561971450615248617866514597128399615507073432831455009584679360295288107745287884315281732583453531297480310260582867816016952151794215311145304139490443340827111112983067647947019203851277043760179026100341071563267640231651541394235814813251398079774331197506663916950038760445642796604481930404553936778990759531846994254420041067988808278850880871192859890979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21269284986985946207794083926659293435421940919079674014076804826614981345086937094567294901329952853844660782812249141406661862334978043022813482428429251570364860688997439790126017490370712862643749244442145708102647827711374711499715655213936344987073940315781724611163243995696064103970394215677508955127983645522726860168977625281686287654775192943008111848340722879680427138506425593308267720593844243946949945527486602995410292311545931950853988741850272788656315357681617166146503669474094960097916183727694700449995475647010362532333628133215878451412026987632697608524970244847821206224911299291588106630557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21732259423873060547458606294349964286841706770177548695550306073976549615391862523871562972240495430136821390915292646850736618652077549950853759335282316858721669916045169470296661834333201433298237454335018049052732190875651623166276659464152866689634796706982241779808944232326005003596456636396884070260589738930990645173479037614370061131325871320169001742144339617296910200062301473665669832210806627233287563656842735167836293641162456338629209089637326395158132711719046309177635847300031736691114398819641198401549465405107630654017511022510145410238827759141396924617448655897124173492322127892664790650933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21419828133187859267138770203803605015593878851152839888734706332788500806745559693136960340297677844595993492463120722763221118120950204052495703938561803481029618259747343657700082536091916897791245733294081803242766675452951736667548529648406023585565012802650931600382163344259422477862234862683833110222602897707931657078564668942480752233894759554676316765118689421686066594368814814674842506122423654690993776255209535793555589459859088427037267777806084399132632914741036865093540546732268291534524576742688008977251275347539356794529758462507608411274453677717781518929299652867939840514718457338787785025531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30143298344035263177580053221998582701150102236359448143206806583802862187220009190623051465885512183011370360560303551619169341573634848648981933800678872045365138219460140774676823326185515640816321027715884423553193576803735271905420984604554452945682334596766804489134325423690568824926997682132108435848882402737435095588937789309770421040260150150029848449147074618263582163255188955631641336184020124229783771073183940308043439962520275729361463633244820633622402540645126276674138755428425071722745055021213125680980152036771068922800747325714317476290287614891664256278847522923783284754927519040864284525903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25469790955162831727603244211576598597309825838273867211031703848091259667907017487605176580975011090038530189883263670477851940046100737043531380953524232995507687251752608684235358243964616009343103925189087322239094470747800256140781978704251801313780719509451531431683501458661323527032467006092331000856522031055887875845879694507227693108459191601309564833120702759956285182240621377327133181432379985353080953906144249316070571967079239723720552966577925393024458150775675359929040319771227476243532701089562735263567685915897566829353593373052477113802022987143100423519141937916821099735285633556802951197101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30100856697629552377114258199133103175978808608995716722684754862701202342813706449422522579950409289958085135649165293371264180186589425448717960123149681853968501423838913808772273163714274896077999806194132530797050540627425420494841315876203437074334685714131082160740816551167331445904355097838582287562147552368551225753179919515363475096505207650320698979134860070611177066669229504671377887285652857625640490106770260831894326624801575712617693459116779106547388033025790470389797837539241548006470506009690530369303163479670125570277729473033315501881365241022849780801427876930773461235378664581163856212491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25175153290604298957724529181550322722660062065541840654352530310253256624590233992331867232958876732753509299775477664906838815787071048977694996340534763251701779580317904743325835339216755284608149299559094880406689396122662514898171577820357440055067791654819232349170976939174857069549337444490158180201929600067366130101808242254538134418611397666568105738840964472599959390922570909250359313342218822829488416539360018903036974790668741685026656612962340342766906419250703993157669811566620858212988711978947999818646729993862884282144588381357345313985568037603435185225638133935488190126809271157177859252049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23875777740981630574855804752143490497547751719793894382188409762177547129646541757479272553937004071079853535079481860863903006953956802629866225732336195645706240001833673517855554321334264436715001368648589862240647966839036090888672177811438161974129677213225532130602536617068966181959739918683956099567231291484047044198785012334251491933966845404734439171873728480768432150745998167026064369067653058484243342843676251314501114925709059335240399710138636871252989786202115706036296069787757675134804137296270725503452796782778007594694384447154632276534154070027747933972359089041779096307062393456361718789359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30207053365065822672771436306343125314746312272135164302712855781310367321356348590887306225926299112920427139605041408856555407329714596347983426774394113365645941867230929517634676619158932001158630209736415393885891626342619351093050406350649044284644573763131734893215019820486721663609283597591865328977441640981204996979833352310469546952544914232531525249771591933210276470056468636155793021415276267507649024977443369399141003232303873496128780552003549927734385875824384773557438160027718026616547240209960713175624356751845586690395825595156735101784003906324024858102418350963975901120810762299588645041671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21172956934996691257012887422506691892384233000661655429789074686694433366699671030478517376622919279937563048448647154523007333596909728123794362442966357621517717485053300618616741799377938861897714371369600056413587821385003857521422351433245406940253061039267301869841108829154344336278401980981172189545141551287431928096690233811618881635318439089999524841831108984216624591297328782932595394076339796232134479258588450474122282514024716601203148987059509498037186067173019496450977534007238092839980695458754010713744802036217409776406765616248407749159068178023903382256964921327589630248119043792445662733013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23496957077845176672181585040858232202785428301992180916480217751521757697372647286349721563252295497654960327566857509004318677482549472755443034392111513062195381700841437388573920456195188558900727480903122685576984735896481654069960470319298759727111666621085271530041033499139536011220042460626450949014672436224161143127731228862783475052298332368038049277722015975063353741642402658882348961982644859155548746975048351702267161450691344306913001444267682257252659462042837027310789912911767361299161722299504120600969895415001474726696213671173674820959335122811054875927049594589357550832096606938285363454989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26386601130758050474716133103562518724803344189958336168435403945734014823187604483245760824961407961775330408021441857877546293906749770552070433475966955879595453941393165005557171280070037836743038572451557927189734018815582507038287972941308228337600646526068180576543554896298458075672409204990827574499058095113742869296825692901918095255691383857123742604567234123370011209166608557021340391155463074608971248077971589909849825738332696370340724435129518817056904642925830619587759869166955114763480779948739468305447516265011808003218428788777470057612323956901893928522597831765062970524914592008531031829313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22199211604414068324617860561388972416655422773337130014669758303674608547463992383612779471141051459377739751030131902968763792673390712581570595866106764677880934769912168413379204537762238606312529343743518299578204715056836314403499445250567165987660087457031197579972109234851425270007994405362841948766120919910884172665876319261987400420261028465106532549238167902227088320493122802853879436594123535716145505132749238254717098058247086122612402663066612508235857606668891104355816768645766841751169769884946290151654635551747779060234300728766134957952330374301138452412022011557929518022839862059218394429277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24422247103715972203988979346230356363740191407296179418133116840525713082524615950546553575313530475067014440691639219945787538091366098136766594505226124846999942723550989733834596768299265197989211931699071864133600134000019913247752335603976358111992616309246995456703009718538644680081117982508549020410448299113059980317663480428192226099394890782623569318117099018700613182454685803564879451209811751768089103112607893459050587405065402755831610303452658179214906223801017834754586928764237786223038151107517216731864225317660178713524659006734144404322886938307815382047011593816047094188957955718342583732437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25620104739245281323079616503903397953485536507194121740540554012858610445377384642906081400543350068512746939189648922406218884901908969263603230277293438085910732930810475027300656851832692282480325151218070658788075993954091342255955853419001621259643896636434718570673383198975798428021133383142337929500976441968799935928143096048923720467754549308241356902845250766863164121164411327161514507949003297500955905847931352215031522911248633794138344451010983789740023670936512385817880646352801379457375294044083642331580527256224392420867988176898665093404373640238230505116862844137484567553615776594991283289393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26113406824743065695441792121360017001064411701521727989472776249094549351916803582144802948985784828096293280839847094900667712467906571578057650986499747413280532956814922800127900583323266660682081950406255070115024269963770666460813383322609499436107163868194865289201970466729172552268665858966979469842505269554617831083071892765848868637241448696791879376222696844504062207642273910492794830880958044131712709901570272822122185093900269044523289188837231966875916156304496529252665062690070559162819769467408185355082988182230122627860183486992908655873343026342411731297017177167322995278923100304771263256923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19600809401134755379749438383930176254720556902507281166055238193116526705423155857745291404860941257575053973129748799298016082671255299466959781407807091062472483623512544197367339567688300380619118430757775710434563599706661352894285310859118013687375465341422707537068215804184546717458405847744435601511341254384444851373928964386379503066676716794680097303848906577976688835528768726272053063216304732054943558176405803106341056983250687636203640147769076647684008551656594662735045529351005791691124221122361442902336035802915456713212625738477349647095523114303073546377937829791370073972261466042554626736367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21023673599036677020612210801522051680383137436351227933570771727347838827035808617213814220005307095413633372157872334398861471369659559514986355372579279349230107849945313844925820224277612803867846883123547931621761266491163884863852245017522196333789168389168684665166893958655375255311524437424937683073775141896855005359526901253926524847066435657664934428488653735938894567059537870123676238978822635899330013603809517615767294661817049777499259146682437866170769557152079471984895248125120186165695233305504870219737969127291789554681893257627409310806410096016046524887678411234119941882814229562913906674201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25156120647756595675872153625898052956904938874599928663461702663262396262326073884385522762867312913708537878870054358744631055285591817015310537131860234042997804753511865613899165379135063094646838451187443406608414588596086328497593940765979847965183234958539548261259270469876880764157661626702634961682848278944227975281400373690610217928098272998981410276105431442462893716286775043177927731027817728942105303535347736576138621828189779269065880085350190153023471738276778283117086914282610602359819673392602534641954879132170233994139971937912749047989874920111276837723113641562328879361109251867349620194131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30891898917065336380939824725256469177783443239947773673664074445377511731210829311429945188595832083983566768481233796418612416329152982132080744520899618793063899158859477234761377775894757069128412905615034959692149048928191444959698448114352422234699719845369881158374610309973723025190278091604995897751521255796907149776064539869894318433681081440122688966325984394065405709785628025272093874816741001333321688864114072564702518798258720808378040561469605740178320771264394725769514078378007195918561331759440344373733530467270355460509486012163351604182696054426469058409847169772862758238340673834500527570791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22130225047611838780102668761368185913603880518180669366608591746105055007656807895798324526665707754826866332220673776413468902248473672838223327137759911548864756574093569067841743614507654229640773400620391511373774781109963977842327487160600585321604655104709686272175916688085247362896936243445415358299140589810347881804476106185741122570564462169740163656734527597786026366117688207710832680118856352208687168280607884382918247504559405837530276030268686004258636678475030564957641162849344940900607763549357141807438728793498815310170023788427186922954438929492682624067181125529952526990523905949271396364633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29468326540875028538214797893649476422186480520587278985592549582718617657234760710814826505993595023979577109670797758412783310112927828096671876292304604411162464763470765621547739914916978057956632467848197614705804218143847620327674831546457509899624977766263059886051592328094787348589101277486948223411469780658258073458115729986362141528297861146752321729073189581888464802497126507822511001802787124287232480890965631735851538624058846822613712964856395344454565945487565291609315487044379786341210132851691482549131811954716456968550302611785148389914900082129222355812445059819899988494178187491194505354743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24613921872782571744054923491197649434788785456115866675757466581018252329953479343700348106603974699047795897055604120232541610805451871531882339003078454118260187283172458456433822666482922606808459104792394998459291927886366463034755834272547472460071625415003400623020972772407965999199671973667911595052219434109201542522483772120256259065921391261525605272714758406962625972158273415611382428483218128944483143449744559620843059439816951119116934276304259403392848377111622723248976461151097595866595336208375405233245539183299863133721016864275770847452862103406916512754791379131275158166372696339316396216801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22263767168233861721129730396265617129412094751457651295606501620114872161379269425332088384724083897945381238245191923036372869103075820076858724030233050285015672886414894223335670066338159922549367499793264693713661807011391466979173717424119733089148588862370457885070161982931918300108134823594809300575962193735795965940547711681276372990697369107531055435236590866802787698110001685511753643243280691426467856436863209358374628428989051083193001069616474738434209003551546191649888245999244575592587601231807897518855559696887522702157812459421846595246708021548629061416644455581794802154842683085065786431863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24050893928989687119361652690661565827413986164076239880803351055171036817858592530430114326603155082422689134575061824550437167674906584728294229530116408275918703617468684900210588231574989753377139787407621372032924008819340080177530049154038691779755989255029339961114335380940997907963965029832735519880659454472588151955296205081580328455218804049604808887195106445331314513131715082339714071657810702072219857105407902237180805386794280067862166722392243854905164482926072852165257040344589926164080955934324480464892935766621860958634387773023865914312278455207437162803489295089717297626728781846842121263777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27899064459717685357464004729825394812977073140492977962956378576713059358295465031818927446482793150675785716409997619753218338252101237597138317353896431494503968662290777400463453689348307933930607472309741203375355350099189191876099914878475242250357795073409395802852061214533594177711580301881399178835922135157722864239345035981513030956308096408459042974875271046038134724104744031876856383801845310930057314230555087730971929196018065149375924484000667382013575183683073448550473064388581862204612670167540194755973609721693837287080535729952878071601487976716207244250402984147130187583978370305833787674031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22301165473707597044489079116754412680371400570652765413299678291030209187045798750632184441133222001129041974248040546237796517874793441190845887509590374358757050307400834737821965009595849725703777346757323066182988796399395662226670774108147163481829549188541563082546712346596512730735998860138040013356156349695730628145031365725741783090286330077203445183455359376389428904084899878384892996991157317728839627889261439860117437159518777655922300122322077125992185178674202866748462523983912191779238916571579900188191861447385088404754253579314463366756766240743578958487749152306606343328253560542025034095441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23399420053617209230142982974038887387458976200483827314187604061487967693137870574415281808765379183430330557791806287256659079490540294809827925741839749866486478894150803189338619668665316129038917757888970073295730476691907191123216831073452256435853674455017082333898455671445923889347538526482484614409930546318946196413848913424099970930957895505180290697302472687265202918885527204337195252526850795627088523253094450978189249404753593942676657457716005341694796228096319516906261572930783589538954270443455706447018622201404540019989782397550847258471056282710609617836964625181379569965694683764224544615249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19050853010150599270397146293477429913548042919819252764914976015371026277807329157246067418308205782032191989804312290179639300803874661509867473013806467462665026405051648682056082155582008194727318016568288248277341860713568380598480535941817722279188542500964121884600883752613558146492168723079028883199962831259133235315945081845204839628396334233418716896650392706773664015056666421885119829505968580914203531687453613678877820151687586315161019589593236836238335861847885899695381016523945566452283332843955395343037633942607363143846454101464814299275570972453376803406894254515532654033073067852804092284463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28405971114116166415909170486765851175994038215758021740960212915623564747146967470162000571445028523022258219574701701309134130645866032610481294831112741500124641348708186325572695254429859211340700008050210160843559692724467968638984088470257454650740290131234441047228243149397967728943109765968436324176250344397109180807115600171982515416984649142461495684136954678302676670616087024194227002554636630936562451815659209821484507226222682519487696861532060270562682166833901241444008040249192401631339175771817761185161966771492038853921284510255171246742090989257045754244483159861314330239706821259498382694173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24800854923102064348903530589016488167029382541950268303837642402810906551142127207998410606463805698110439765258383018157204990606956305835948876739355275296813016282775179598264261122503690453886940312743261544016305514756116772414227003405597358791009529690561330746751929240153142005310221205846501997017885612404029962847489379082282566499774838081267896248684480062111368675838289588761406010674789736051389231272121906205532100965528620548046195703376030226509678699258421864722342573714204274017353707745936095204608016131810722801382511610848536007465099909907196772424444222476624562945426286152238495288779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21927343188901976230949407206576974742003456095460752001539752462095995234210593721856605356939439423632773219099551465477048167053470274905232987009342073467865663047273568343344034388592839134030349024833725742682102028761933863009716113800787183203983525760115699399572833150590121670155775804990051084519186610176636938675574463235488219343561226609503246233021406830761440883566987436618531396451902483466341968558796815513312011696563464334487639889618061507434180131738642073723150225421717006022220240187376934342316636791048347779173649646184335595643977686569825591643225245900456727643515379505822347724893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23274723020065303429094248546463240821549573235286223967890215487829708821131984075093690790729506317020813350887434882753794251786237632137513136355138459811039595031996950571329507975358540133089577121700094936723202875346685886333107367555294311493426533946623373796283762969838698538110499992781133059084221789824749243133425877928182117876302234130340371084474718643819373885120266306806257281711665480449102996391461885227451115050629745010540031722805650978355429030937804726732510409481306930943741832154881117517377594377879414624967331426400470463257012176828198992510009529368557859043248341399225067469569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24608577877985646745493127039764332891118867868486257800661722311397098808075072773725304396859664659689869359710833437120333377035316938378279089799398899769895583258982998601322798767623317108146615425885875736145559464491457508904502883805635957662060873714751625999996321338755578223895429688881779552066120154470873110821409078781259871295058515573428538685414665245006153090535393226833814409283339838722846504812282863764081325289669910804214695387033637496129522229854478113267829596581241428358626963894155654984228377350521640140049467362743119338735395981564352355975295530886749454314104725629263706049803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21326687850517349474446029726108799877510715833094226209534389720193502932778600569327285087545628263318242892791776159579058504874044155283335398541808601549577514381648801628453005268665433039392068394027739124286430185726054728669544355066019363514917672122731247311947402107223649447662827568324326978072505370892693145686212675629578745593783951624143907543487500182205086030817528482724700685449775042269919344735021151176090436062277719015367972187331788671315731311925777956470977793225820272966036572888326524951559826855933389541368665592550949442732446554740191296480202563947011006778817580515100957558541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25488533014105002498067594835966261002509853435503550689290505679592964586337941018869307785562993875275317444742303211180999625551649947102631562546881517153526207662788649202171194899942275747117288738909759477453103690412895566704994776071177595219769561719170255968071519191556066119716299363117476203076883298673045413613372864629301628875079097369271045281369892497581202563632965013508362420324891706285909884337311948908037552907237086575565475092926136544107207994679361849404558652586323930540269947476972954661844222506001740716265738369763283454387400130331280093306581068865080693850328467359773251496101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31172040719971873486829743603273747599059340983126377644117063394585406228145158486238121816818115907706432280958619242112727570190511148999824640436123161198288009472822691766669152967774361202587318101501529313554612335241008504406935142391626456555622297974346553076738901507724082443987306857574952122653914214414670041822726890818174631939631746364433549964456202518973793000217564394426663432457475823946902580660935146935472059991732698004152000540918655358512913200445112966241006618978417311461859641431916173500922430023279159026885340903612481558589235139367513895118983917522538620596730776744064138652269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25950384812302124967001946154520136820231331489103017445471798832249104424005718496268878135672848972634552889872215110032514540450486901082938635709134351156449264936909777338874160276105963827698222183802201812587164884664522346625707950153270699530116362688464859470381745817836739186442193569478451143565512871161728624971153872821176804582844757796676021902677514101007306029734339438272059665645884604628065632021955941064469683616197253886152388994460317852027090780987325082917631701262199233956326438250976288403171001031293414812071294280917540451762313049830368166995648479328544782106633853891504214604737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29361006378083188561860710474479748184395843992643524543398129127629256895099364057990311154344411051224796085637204209434869816550004781752425355054717413746747590576160322510047584924713367184461858500237563887814492591946412271384226351056744221777888617331137618267312322858536754577445719520000377849332367694346417522999006284454273237574775419395308771650410882000999115575416755816365872853687290420440086738316388226109303559547491806100430279410572033966307051061465263325634504772176242059620037104387268469488259687055921663489268330837209935762098323861665185202504452199915366177449789670054311237577341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23456992530905984310945593894230611241718477986454507234970830161291066615399374832642971674199559315690289964872978859616501555082094417862961093866016732444620403240561377630261544637483159873189302860535374901454423168830668275502189010875477668340108517058137002394561120086813110622042292829374348547367804704577166927441889003783986487212874156036150023782363723891718388065054452965600061414477625377733580843621100259499569634670641966190396957891895064788973312002901163637347006695965290069508404147853160779472676751399294367865472892032964661454644951369767544338165759398440214750570592583719911280573193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26825425432863113097481267473365577521571007127355134929856713273600481939566025262533963424573770313974682582905331289846400389832164303850392658684044332810127647265920525376838816952652206385245310116126207287887328694229147415785410950190985871616726641658992088983490202957842738995409222342818997102257422311627336087147378012256116065334038788669685202540892236442656668547537388698756329660084512460887991663640891074935359633002648178542038696081584853617438724199194554966196862125784194958745383547550603996860839792790122798199028717797442332515798488557800425902681684803544384818055906397320617956200827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28262577929062402198289402680677003460501371887130883169843845805051781171398926673532246251264990341195460101123766183900571085301160612180351231855235678019694327670356937414241198101193811529017431157256748908523004508344229431803097559547912652546475700898064471300282794165316880085295279600563417216099323187088445826529120499261779303125300236843590321937113167367717194386962870143262168389891508316876644163303100254209827723066383360334350664474454907114009829991767313980161721229276267508852868908570714172719977745408464919212255306772679485470870506174091282537039064140708985270735454346690135648024981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20716807662732822651762410012234450168994669567094280918827492727033416993196250499103306132060897674918012779331649045858587965496962457011911186114673867196793977710799633585135817497446116373674132911057847289622598880827066254328793865142384712086701630560551364788458507939313819949389831245542375613544632232866630558588658006339402957514293655376587424443230410648184644627577137586607553802189058838895329671048718807407528731702188283479611578584325624064309566495218443103886071231411716996405969221469477782712774689880765713291542215602782168738118242044093033495100493374457891498611566281245374277958669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21780174677489466387653681865132983911244102362115288237514799849462196770240756007963778599542903297716840507319943565244882479114784704221733488437304041003728226442641451074029996045679511805804692415121579998763059706820961877312182559617528984945215773925270704924873450069657740204556555956120556477779601913666872049156893340382803490552896884229963923192175250357198082619941975636584763465311721860297476048618020553287212506809791436558875558305893722400850602436200506186643770115409633630775230939485240955791144340056070519976221177497544429901175697111170790816668561007740539921962329216300857458207809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30015171486014456750024031864570630885327883489776550157287064778453029186695311095908994884659163679135341402639716220419459996074812430963489171039635209833114345640006810064629914739455356360882773285309050624561810876330876647966370044505682380507493042190139351729530012524219682458948719593961453241657392264897474067941847330067950351169130345801420165703200571286837831749492496167986601990360432452554814876641110826399161446196362060948675592496816114989154522193064168848823600724131027263446287748299154254598936905664148184355260669085355535642208290922177414339675005171619734810948741896968921499294459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25598899345322103755323221984106974266054648522099257136634689934123430866598044139593996969933825936729103235861679472524830360905581268649369709869170540936239973105469972745933101489700553080013983697978348879034403659719333160951463198418600117936552438838861043822196519109801698900445678636220959120369978740544828120077327860680871397164862510415309843056346816374992494606031852975330327220784817852537362490343806938179301726157543125822209542427027007277111396585659153383436917686652514004109349728087190039182083585277052736813671334108570560255783262485143390103414570114030573217519924569671893403262921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28870503826116587897832658026493102266380426186555951724667257776585797263075781708102783423816776739876917720659639092104815528091046157615836096284245897174653410320114946459335536911789911981575459710921063418593454700898198901462995346258770614269126448381520055936278908702767380322854423387035825447270794972961724397881856743041699576274542924247350763001651693033031623297157417793691254998745509641788111859239844040944958628535097008278124950951591030658149450489533342914741093748351125275530319063848833105509199510836336602922119322693695448217980255494409807526147836798395972628364317626917100523017639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25604200387519587667071554518697979151084239092546528285347151000067468267971343266045097359539016453342793506475761272477165081078923746235944423321570704514978089458535786881834810710527899401063502485500459234690247326043539844050475608321788319929011295889533284885309989701425447290725719153892490289278203439208201607287906735263924013940919251873523748780362296004907598702274901391987729527185026425910680246331626294852215583403155088121090038427520886618016378946259495271513872757298663156920498475808981438049742717408348420927968987354995011120125283663262117151256254741699232970318804787273540128628673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25861745205607307293812022411081325150169106787540941751221068005577436651775514082952149826484611420117218500516448946925311792100384995887193383961634795680803509213482304752531458699485473038066333676402181462672514906571395072076848750941153695266634104415664199732826260786067333310801913924798987012647188124282319735193440881206731125561127345066370566438631591929221184042900838869942612083546696526992288682392213512698018060405654184208082608873024011939162300021196447260884187502160496019087798854157113174823894598392234353934695979396031780313344608134083430532671735941680093793742432412524753469947729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25337744132756903011360929816154851735494791131608634492022607416515629890254652413958701978780165654598546363074269692886130137207415792160373687987578567398063784628015963913207156959216272529978378511586825043097369553709146062515378409934825806438058344605294826313659550002676176643117372545759778713934156410271968952632348396057809711839745669282449694295483527184254707654835289527546633235423437394710629108619944994192365546935626977615250755037420948117803233069882030712768733435895804268905444451673402139570193546507765422518922224684821667430350286092075847595278119859766918857661707660512836132603807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24389855981584961886717418913367034208414007194336658443708342586596289101879946855398586997144394950968563410314701074653369147058086126551657681676763551625337938777233683915223044405250608891837683181586217079825754716228024147518489043100703465634349298972342978517174611495210665441968832140193007796702777463501641690671697004997901419323644654899706547214433736517049791998444077675824870387889112668812465510427058804547500620841056708162693249614996834133620120410816871142847517942458102389687103118038351145244639814773388848223763778198966105482780533404880958917242329850781503863108533394592264181333521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22061378312034519681245606128976845697683859318464721415349861723635675969428582920016556924314781681945313240924319623132459042866258644341199585960913328899347912673096871301081578735587058868313121459164320836646927154725972406735063206771189359534022823752773027221302708042491808283231516181470263021752250338169292826736344134667993247882525046483255628961027473210826323300878594676106768123403633429779506678197244670376589570658516353628448820343450037823936153867431237530798675382403301687167380018217607248870023138471492949792447052303429352495943631953299704859997069764375921500485524570117267255553219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26567154786836376794124005123006991608077910760466388634411352125783599480700811187666468560744433217795402690911968374616757094669287967711974172045266352816972724263973201297614458588228078123241725998463846808073271098960171135948506504554400647250274353269766634429132387792225265425316655742440815116974493235241026293845514590501349155482580989124855315152452607338974838695152251843967943054942541096146433321754815751810021815022388353320516395915785146270613375494459001092100499509446742919657750962306214301795490915922203900079629477559708512497049028409839624925845448618448955481829278546872697259762627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29530204806369594466541086819504525885329755850017660065170780215293762599464749781946610320324865696576614860410930414551588597194398621359635544884839976954553409814918371740663271878257924100432782290515650290328767987095833104639553152763219564489672287657326535571929941437529433145156214784557946161732485082395981596594236093028321700943959282021708647178063657384714592883099686265184844674988036812126749962382468288216138216234703494933748636129597669311659473861659455746077607295849484845095743455378431943404114642676653404255131806927765666382973725039937431988162945619158128975090526577782759797023509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25706145001275269594451442821999282643596764230128414149868529658059744857287858776087610475186627165969113551865377141910520996041344549396138453694058378761520055955232249805456817863912111965065295213357379920502898795424012692623292357611314371217563265062251788234741749909742375259084198903431633271630162061556678969260851474635296696320923335594628221265298465144965248049924680133060217601672649408440811172048839493765723460763710658588682991553932247917856619121871302595557535785837505653343396215687007379695316065895426294977808315573651623984920683629185619093149679527541975440543327215366216957257509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22638556833262735095895945234281924702395219663086296421096544233683646970884003114546477530382157893083859972417279742957821406183456530767228758407553827804045525019640014317512495246555981431355545588983850671803213039583505031923194619257927043236814915724845612310487872098693152262156677573796844224644757093212073684926094766801915526543390029407425830365075183693147800788930712780532636608574787916673953803011798764806386156653538269371123336455990325783030097997597421310344909830435859562778248113127181521410081370568258092669567220541171522141671140365389096964385884783616117322593419983809372117108687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23228718089585678233504879521050502817498600611158014806867514808479586476751171006340228727955269453269854721565791604732698983271540605179521198342900871441909421333693177809471081374133933316141156494165930445996434167608476732093679454251027864587215648266671415069553125587982752959954448311990031814202554202979125169998911240951042130134760254707454100905631060281781730241593169123713158052898511171071424259859033192858721837350132595655758505220125077171900403336294487498036080258319851795573314563683240625594245813815649511635427548813384988768658769244694210538587980805987182483416078897433747064767633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20140199114689883719610512872079963818458043605197146883079271819792860384195662478585277947460499339348871811253552532866153185946404787964159820527163061201040438956305588697493242786619436793461998608075233553105122127703589836345106565574567400625284389373413888318040677303047737288092327703347850283181008070105226744847794762468704849652122040886756305426599574027544507121784384257755540872621611364987421740115282292544418692850107949167363706045432688560132997264049948681423621208129662560450883784875863553201960929745343591643029962720461047164522370311323579274315778850934746730281819126960424258262639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28846986707786088383370830438761659612575114390577165297410987781870480369288641063787113139619532897880598160365841828258478028278743598144678726241340437291824717508578102331357849863080397724754788267856829579281062225849798713522085190481481129768041963003316059809301961326050061809162810485922550037917283173094837123661036199545648204893693842791980614646430751454693060448533917561950045212723994717934994235093130041205845245345076368450848006134204994287705579096009233474763087722338064070414436112357456550473087828714040234769140537110946005614073158544110714725364103636951566451652828737502575113687659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24669986840973663938297077126837071678229436394109594884751391890946827682698247875327643225948642692315140898265700791684174712952048080589403130126616572872937661264281886664381672181840732562662391045391922257977841164856042008253080219921526541542715256765100276875898486821144838175493645023608071169864781530157894069689710276753028133263138180606238097262887891331295981425344222509994893953133526303950592166814882633267012004490840222425285582727882543488549737461768295788797606098861921258698161590008914189420370438973470576240092997039168203086752813200402682450623527047435983046463681021532320585472727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26089493603623983579453669391705006528073577810594149419000279479783477602096986438872681799015914500688370655684827441249076578919692359096702316898985621062995275664291680330674201385589008302048742914788279222299072632661852791079064587826814611997526537175195553646641090632866767057480927756890744577231607198849273113556279712456625580290711780093056965411995204118655570203736731408219897204457982366454105677920507779229321216411735467959973658313822362687356892368093093989647934418866020948926692657511740024757148294293611315703089811250362246289122305835820272090022238804775028611476405315330979933990559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23867163294552174822840162902400133426268683517333659249598703309561958794465224449481564310015325498377855235991209190036814574180153124543962699835015811788745733749977976102872402042745297019801229206386194515885169009453220601930083564744955517853259452781766346331548382182847008297214640135332810650549135127110398846547968683258304745879220595540902130106543514971927324260494289264235856376496832813290355588756921178264383556648473991041154585458065568469965331401938108061155507630160777989616698917370701944814857263934722885696573218690799129316813621355326279952085866270323734047068575638253300207631343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26008470434252061014670435903244064308851807641828341309161707343217799236392131944287954413031499718838807391868442344479205339974457343097419472092941661017420198146454234535626547082893128088175602772387569975635513121456815196385139895553324767721417992784114678566085983849594690992302054943165677007509028197960136331673088927787093310908041480156102414823523696225317316444305543776069719036016176917229876235118636667670779331897386169948765687801837187867959488255635594119240986660040412702893361901248748052573784874479065690285914669577892469591511753981166575935399239489154219883540852299698212942589769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21691480462577681253920086757200812740774024758707991978838576878147800117392734462630159091485155275200761988035988352927132229148829651807975123836212768992609073573496839183999834716496077338836286442176403292099862092199211777539208904265740813479602961022113462859286272315858371213315845230323844076293703447273638034665715081572583550651115923415445342016426839054711511729448185803432580572297134507568440526361991840621010692212555015079130859800642429142563095729202001474913596124083134089302783163153458820529941609516359011159552777095395358855376137308113572463994317241598178701229001317896326271385403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25248144351043073841799456440032816033517487115346144069687410072113361568015682546347657156879874747038925908382342826427897928328047205879738656094381175845547421486577919081843125381125489854569431288410227925002743614359457416922544351670482974189008452921233128468733851025835950917969329803502462136688458930527469198863345398064322779977147049372936081166612925578390509387238742932291149771435680221475338694913665219283446801319738793955521235829312150183617374141162559601909200845748876719790511827101390801556899469458614972067571489661794482169926739015539540798601726433789480314736300824213828271885921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18470793544913139772942890124597775406308320345739434686577437856259878565722952106300335881597755328038725631505357407953852793931657758077816718020394724508080703470649463835592023045887505416567807893233239083704055564915204654226464096937564816922410178514531408944325782587606038532431636330718073608326773327748067810862187281736916568382364909677476489378690568972081550730753762904944201539069977720566298178611782213527207904633930485664054042841009573427255314625925239395688324308157708122831670529084453013147414422640020817977830136743710333707973000015929202186322133801349468697693754455062614216001753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25056202769562279958037531951677806492758090171750484859399644950278674073402721722527158046093504650719157180440348520657157148322582499584845993887515355047925810015519978742138244389545447646374263101726770809774521116116884723925822665716650377253474590571398815916127185375624381009740457649721040837629278209323252748889870124489069982625118770581931372128050345131077332630000240117642675180921284544149082966656837578781381053525112655413552961257636059276463648328983347383038483803347320248293787869943913619950186193929574251633673650857761860268933497036273836692082717067588630847013660436705837472613951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21197568952119450415275639004524653765038276845388691379547499611518767310505022397672453021183237373870264182211648824300936368671947775627397613092691188993791177682631019482634757453524237746461958623719574548198355804283587764273650864954069391455540898932680785903463651650093732383574174346033983001541903748866568635820357891536820301109087248626663958777038807263352302861732373317191851506668827648727646643641301454808648510451140033710185923290460972847059448976634156609851282384924969460097809952182122628605881761742392687759222975636081421794096116737477844145760467690679613971948658650123723131718099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27578009108156412875217082249979885109100801210565655591483709227083462518020873838427015609163657756680682805871126607215176760346930192138350991112402222312097925787415088768817016151991175510385353808014891741171897174128123254823298761852845361568476424605957676848545257018159929295773709888625204519197481534010188337648126004885948088722192928276238920444779357545647743650139835488069949212256116563526637084596411005025096053001682105547489232984734114420996840745985820946156287989245796889281287276412395458728483972134538100321656056271047161932284116552449492222405714337955777962949733365291720869456531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25862858892195477911917689400704138724609868785998595193097816046946480037425269212840304234304593847453282009997975427611188306358831389722124287336199771945536501078740318944795350397610975389932926637901327874021203034597324371114528892342554645345554029970649347262606486865028211983319878219111156153040884416774915920519106714234268832232583674300563055385278222160227939020448321241663145749073521044498586359073589547581141787551947781656173918146561972378736951651574967202152289775045587926375248777274478362772153637763739726330788498643383839248250876566778557400715814088855604255297617571608021129919257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22252910700433559102813314789117712933789759760110355462828465120562363614070551019244853551077804817486552570491534357716706955628107674128464534094652556931829797395172666661502226299901822157749192207772221110853859551742394847394259090110097274759139336816452252581854165316673950182648169828276087745492857578662423181461941183966137157484496709694923999614165874629782257905747411119889922208035920419161587050927770562774733870971767139256901242276709439205064651255403472614223223514925433387832617988125153043293552711626818462856431430595356603646291386488308322208627723920245439608726072842991396622278401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21973823656975127746389521863567138170884902961193539010252769939442347090859883356915887661236187573234133954587104027695059440677536008462456670598087882706976059945998454717167592956399218335193666870546966158960386080053856439786319428392013729980493325568001335854196528660580170383264960450753138807135431916362061792268535996338353166408868132097744270165111785543225703424764330818235494840636402197302514780139255589858914278716249881017400654469305835982475908348135115707797717204966006943938952902097164925302579447036486287803178911142305028125531170813885307861013847647044019469733434942111079034093401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24575818481877368185167949211294958961487654164153085088668147683253222845778182867120975081141788488969025148906788796319371541760958062178736126396210208371999782347380778618105214724614096828302364246709591709962986306521372281523073657142867625116095050641620221226164668592081136896518056180078270539431635239053739647035434449465990943463783285345048863324837641920344980737711120194602208391534813050770545790263321211267155172634763107235879898862215574086312196203130440466055063001470058178172658429534624523425553617640611888991538193764143173325597458955999551688778247383632417418298664624322848398780221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22922789232950307308829060638573493955111233261558860135866666297769635575034927963214569063537188191838215233530966027632048684170678605063169045945665534304184140418994857224846109335031463259640113389806938834141160597127411450246623985466774486828380675360866535507596318011015482410304951109974225557755583538511738781401716805744413526429362991868188032155009538016774783546140569371404640140753269732966851437690061588128039439742725150121174632355502481533444932633960942189326805806546117770246710671757890484033041498886593649722778949798025907117998713493975297947258227329889939625168799067277060950966153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21029105571125633959307743222965496998372491966843124858396494187433209171122972402358389367899420309135906997938543838087706820667802081687880717809346570450528848908767966238134390766242184651304059740388614670014407628021541239656210885166915248522358915077646682532848730773920338104919881939393376274900862636976358011663961141785419847026769471071994301984330989581757207835600727824223768898331423558231584928719842856945825459208540613949108643113821410514442758632234726465817164081203665790460001885142936609211798452658668413883692049450933669019635205290755121187048122157261268000099525469504226214176461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19509727524065301369700756768903232692825394375104315600817993464802888422597116477065967532414505525932242196939987860169513275170570934164758506166773579906330304157200439055203042933860000965528560283087317583227067358834714927317138742715766679424168768699372172247180162028051050420142397132588693766258221123529781017342598746724940108172642390586754140853291883548826665235689576631530199775469448793029690906478419374902963200111951998411967261456961719283584057540817852611267531468456817111962786054115590246314151682040310718919505708805661662354206436708647636512008839392338117417420146944370503006656689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21983591972198464310470502905762944467111507614011169762544501108849975748402623259924473304756337420369597690458514164955351218965656464348729819629502184005241160658518459953272233855639768039209882215275450870624458707850900456787779392514532141154757065558076421306080056143378352414202168780843853481213879573613333465248235358269239060309654247175430504300355305076286976454031631279050219268668103524362967477550184391275327612730743205489398398790087244186512093917628786533690120635013224258862921786139487032654118383001276213907806161589253023628709491941630926062161160657946267165989477098136038470257607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30443491417507411444278621855717188939188258468773055545800401326345606163256823202924477694218230699998473722170942190247331237978636446195857748905582923956116548210644076816984977515932459720637278291268699919029120518224185388279151408415581732123511770989956315989480610330929814074670089427866781428996793715236080532548249618893619058986240956309202225465154992241281224056347086430135764423772937031921678629917914729745214757684079464753753027728491788359837281241076464404215992158632123220542955606853228096726642608638544777877847835026556351764536518416154914513072309499348285404937905231807084659794233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22868436412503535210270055535649271490257104156290953908534282052931430540587002486369482281687308862835859964436885949133337074140889625088067534859530512439275947985962707218030443097392607641633703130843181689454769048577730209447864836084175252320295430740170940480511557913921255129867830960854695510168545852405240828957090168753635629452178265406823984354753922789678507878804589054897514567085449251328300513453996427725550964128195922420801292010251233343885515150911039767584733027353608905548603711179581898832580405170148497808995102920339737875040006107387261126207945107900900237643747781588460971460451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22035004398508782074655696355743040573518354241991090721625610954846571041101304581022720583071660448412425330655542627046280618428181782127456561632998430716007420001565216124003124365360100508958337249584302616608221424418914621277918337659300466936923260044423003521513516311048709490576165283198938700069637332276239330700876805398180291141520601770319375064607815500271278600754108114500772583978558953694394392605692142301213209279500026884777685508823635522294550770332776619347874931948659703289915882498282843707155116854577346463411137893963098458819127294474275731641804559944978401911796065017749218478931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26546239227316061319972697727232787389281758414593420788966026314237513509823947057520210174713514023334672882486114258493395503198604728524887661581659451599640439356641529734212121499604729703082868992036072678655930425178376790583717242103028359221805735568052437376762074600412764792809951450159979686841650961071272753843810317543923172692395132747831076472336817047356650561034677202166343535963424072962467786286980452553310237944466875062443719508724350313998782985856538832400387212187603381198219282755545682168028995569608133450806730546969238446245054017523591402746380531274599548108592101088813152404657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21200799699989469372157740828283770932135435784285337521388979457501272792403867635949516453457128244869151804921852337372805481060190643738523501489851276629721922683372258428481239377288134585547644113852458166345073134278255575983294492756362697096032589255176695692501372761819415610566817399836544552891145707251501472238188137475093315971998536707120474215188865577835277759901084031632297724059180422789142590186653800734466492838607458382420996242426370666087931316522291273053469911607775169089616609060241956824637774636007008164698978321047089954480624057183465154557723117964313119728226999259074994107281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29163705841492035250345954633286375932707903395588923880923085990492104100819248261386060429897724242746695038937494142691728638502853589189353465999762349735076502482374670294895289433014272614144518461027461379300459376419803801684715219071561768741429284610534704598371260114154767585666641746441241218707155676580702471430966676758892430637223089921477302802392544605774088818981611351894252175987446988991399444334757255810135164991506838738227043769220353874370698211327148198542193832240570905685319472585859714862720569900754403442967066347771441217306343000077377322173893752688704540468078488766407254953991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29433241591044265524702861246906172636727734132842854239150400293760187448389305539045961856688227758243838251278546469339959858237302969862137864418204047253068432026572608451684254335815934061272820006153983568326001704146195007149052648919964083116046091008511177400939092880578819940418657897287698998771338575485076270063148483418604354539462170113212916897832503711990933076748620167855279762255350303338423728605691360265625741299030709040409453548533401943237138113096662863126908533190270847126285680548225567421042864838847505899402540518933709588466312586585375768489884456293651406187439863397539523102003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24671751558107488910184690190842240565557791607357139003236914054696054871370929264232773198664727708359829800229810902395762374774421014964654835015359986595180349854806494132969023450836339585951142868879122677383990373680923117484167885322434228056592689107496842897400985100199363942625624353421664282406855882962741931698228068775192998467330047302723592856660338822300842370587528224207986985492159060615364957046686749678967245076793467655543074400140179773993083449652926692449623178297249489112975130633943585933352605398990437862130979066891364133804913896444679243274021320652883658916975427793749291027589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27641092026185817058604025351719780470151040615831020466041025920751199630302307212505415460095706699854107009341426125512245244692301782142816721641769306770840171047168773778051553435191476834926398840822833336864982676418821314733327924853897306096989795067249082614755792927964681344616696427815375044362383920318693695902748377075215097678809123398428921626039564618338518946830627023258456276687977772570781260411943640353773104846293089659926795929624895759405390500676092248878972666119359013358226245569435997099449669567516152437059883065935543055413976260607276831273275598565677160872783363718383920123317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19748737566879047053803366035162029670106055993039533061093029637498932046214130630131463651733182373802263439918007830344267667246944663559411582442743993162991901036289123289226320771994427328957929403871553347678137775708164445457268408902711087561454664676886415612318245474584615997008492993058331332355703001220520923248004297966128860795671692754410469248334992532856356716831669369556839199489591534481170184287315413388960243779677848401490399762460193389270738280841662683601709165969694855113858843233428539509254220147789176216026411590794385343497022985462175514482102571432449770751373325578973250219901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23169091554445293223050940118344973804686959867112930216255574963231168782533423180930565818973897374525542043113190643640732275049387780739375730313496715171285890643089999783417761613237723669106352076789604377302809446021929532895763823819236529994125254670780403921266498513258326007607695211569585043358274355663338080523103188870154189692354205961110188147796392381984115137779116914020963580875100013027000454637968860492195461556321289779189487589444206030120336334018321592293322778107683633087275676260152617641722003657336205313320605357221418712228054379107765806733185578879496396626195465814453164086279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24317286232793208320238783865533182415549682027957810698045570067196916412979011812240160371072063234191900963989492248339377168082989287771253114294639031962238330818938683356648938543880596079293088220500894617561175122289002551129104769400688040567151472759599184025447771072526190479392195887381968493725026178734543555322210449497755087923650668817797211393279221463887191087146788724715042519472444851643063585793990307724084597825026000782298135293705900426239214591205517481943983198166734843931727271187382104368642397132349779575978712126843613767004858688045229686735262742702271422256014315463415659185943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21480395864631631666710861404339763988679769215829394778195891261897789250606918159748821239932847006951450592619706479272908347528025616853956905096416814749724624770569307590802412750124309841865023975923248123437431363698830521505657812725781559251941173442015395321711389786535611951148921227365820983608312503837202010265526505377463558759189279367854831536338877111543380291770717828224718219552297592314672839240827059320832890369699753671243737143791472341996064881539789639719323199067481789695307885644679761412148340351816496088123334646451325632089786545888981389325098736418518753675718095229672848986187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21018591351226040860874059960846057802907317179208461277599622244936687107391946591224243296853762148322368493287953067415704970079227068567457961937341375036815675260724695740977262361683459845968012044484347183283888105575968170035376857403880669747803427177467087485690621020000821677140625988469474393460133506815598931740905874995924018555200672911477891753351125554508802609664076903740444527176295965063852116139144395586518129222588839072304854166334222523387557366254187628178181490260596112885940841861436336557927340124750988171699407722100700043500353636121638172107893507478103326354063951409659673158469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20043039664968999493081988000062726245424504202597529936541678014712862092810636658083442123121022285947233377211723769652379162170394642336569752756476855039462422869558939952370800342589708976995132278519240337199127295590441429657320472302379279038107155959367765339946541342546366859985382082344003070430690484473710768733195218879162596492933432649472096304908797350875023114353656933023088412259596747001421894314325441772504593845793796531126771226910950773612042705196917107165967882289051012499011876527202232725719831281018883319131565103190952049507376323491185445818730776674109568595360498512763993358511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23857468697432264372293706678317851704486260634614467318462820179863071648299521592040444703795648907410540128631823942071293274266973257935869880812254554762568150800882377138310262004007248496882326803996134665564943924139169022277811947561751530522397973034104820413375309296840503528340806385742469329684514666500683783132315874348966478187322688170492668392290157091209562899034995437769597013164245040396573732774061004813244139396722134305972882527786808556805460237752103282248582537162761195640625778455121270374642843441040869574374226379816197224419882794675233909485811549141407403011552569722746216923341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26962641658913200590805119884411161472462698562358896771033545891367879088326797445594148244690130380515392634956985164192821945369823493333398546236700643440325549734602139650898071626653855799096691344362136366790966876351598020629984227257004855434764183500144068387848912084637486756515559996412762307963105588973323373266041174042042008288140304403809773634593600309313650653665551732320070407958630306381088946450607673863531411710021672720274205089940658305377802825983279242867789768904927168143547809147109218639928906355293351445095022880496044941334521997967949997169955241800018576063429024111275407525377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25574811248703748555214707955217108371943475605068204258461589913689470720930312221890228490872143528911599849871122004886707598457576560303393746330023228776441100802468284078219657201065399392807402755686938350331584926047928222383153503302530403216045132917696609608352728108817248308725423462332641675463913274492452706068101191777312814774468424343749202518763428120901856651950238866573778241104706547653490025978723995738799589991595466456967162927426758476041022908210185060771996205475803949209238167822180446648910020134897804311565077683163899395299385672982189519840086585305872375666937509241373238285029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23261027388638559917972067974155965274068226165001971292741469689681870836018447031468684021459159242724920067343149440859019655983504385295178067252744308712973754038678904176613748764014844352983001529739412056515867793560773580541724111863074164731568322954119326385566108032493231039686056862418042879916070694148192325170782173629090110395754478918496144322948778323364896485673725017963331884172267754354481134796197815507723126958853024198476891083522585703098824991741051391532537868725574639062488755122550801224963588270710359351662182832953537957137402329425365587903184200787476940451292846088331545623637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23549149237608672671750397833809165202745631550808232202972319687501527573945454459298860928050364028654932445351623880668851750262465963245087776771161859366530482481443176160285287354614457420890029367242488375330702839535224833078885514732164903800603859241319037237813703861200396590467937127524302342517175634392724265584258404097806194126153614229777581343350671662461043857751969110410439325585682988181051059658520171334320554438021184276850080078084398335186601131575518223841752782692784311281845641862204966923171237783545487018972687964167632194118783410109218082185363711243050086231139250587157407339783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22272862766602667776857496499818142003173862423322137356975562682415631186998847039490064441369001222576919910699709211087228814186130600326202469826692318848151429718961233268482281024937593330013587789843845202922835738869455061661251141909449278412020020815060997727622325263369394178840317037489404419490021824493758248814046377618524889054227636692839608938376861176761030031478384172906422230049585613986086646533840526597702173991542202782875685698608168041192577521017013709596597302882371939531527166953190647949812432287215185580375087046644141942684452055409536341065035940503957564860007261647908085686919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25578151167027299635627583954614394974176922825579529476585260219758277231186058833446166403882981293797572814585188752878778475260013012524097174594504061964285471861474570159602472937048214365603983711863865593140185643451455234503876919695320404879824841846923694783015693545904814226508136741104897917335768537635023163384326460169833697121866346457117576830569204853331907849951351184551775232694523431728207336065429894671422466048092177341534768973135487091360851399828139271234056057082253434803512299115425995615950906381993617724785302696935100350932416718976161611130212500723167102879554280437622836964033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27344347605020019130754993103712794547393400101328087512949506033570037583551603337030173366016834852167624729659563264626638123576444316980197809969702550241148080250256010323482604678351295851126536641982723191886356385595316122647999418188611571263182708962087744346477380359650207528145389805384311742034389675008280505138786199876857045169880574581569910473996577038800468782068966973254420956115433431483194662881605236659152946454460181511712222209225405700769274836215601052773219634829592585134937969502915187475798217148775754506038279116656080847254583466874866481486209954965630678310376164227962358033251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23131787359305334392614516537567310412372732084519045106015812263382940600066210264184988214006637581543974510151640301998882425744777130879735417583803930384246762658010174971270225599689221769363402857706487193740298223482701324554303596844127851700780576165728951965552712924305647520971946994761113564751432059826038620307008716187327536606582164778904750095822767100840480321275840638038649249359868072603481137657508330820388865474954354113906029543281450796038714267155176310055095379258795611360682612730107140331764033839107495823045860392115254796841249844012464888019302258053364516917176177563814517935563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23136810748115367609388059741064819310615947783508012217367076858914150935256892647796856242157087949251932059544664346852242284168047243989778705879227971486610528856877607853615552993761812874471986505381626493705439394539426746398626925182180540795150607773604537411585858691812908946139314230749897457964608439708594935757115021034862436411007315392074836140019250281416395492881893456052002748831673009820622833570567682657714046050561191239371399709073356864653451250003665620955539838129363820614341960154789920979093338226906553811360018293285759096973000437967624534837526293272651631962338184433570821442519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27366037299769448872433491567085820703153310565050002561503301286419296596721827618728066625576470453274427852657256130173829471257186717539319192694299772685998144820516032171115795355284039146254468903723060433670480809673801437861495649842264470146298704775756665260700611192926730739100382838655393322928353022434773886065532578123874429320150333872220609599036147246897001030178558560165504611035173330369948455428432769266892730952036997623686132009841224549407004718921167861096032831613388658291683794493111098591456367898067120611468425104330119604509410414833467880620152887509028718096244234393478975618729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19123368684602897544135218581739382569747216875120541060539188662287085055367145894416409361433808351897537088213915025902591052998660992473395383435782046463681522603007975836803576905674525288798753558332264341213487132155664279807615705162794404812651959278241275442010386956537341092271309950654787316326738342688685263226685532144624698284501650591151776434521173906390550112211077674630690881640094672135574597870934172348710817445949236231653952182326324031779313675970682242295641581250136708796542878455189159481123328259126633407278453295111203290894556512293245545815079147564659595693206530006501459964727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24272627348010321745992567197135941736061348196092500336462396469275278961389937430756346516342240865718094879033891174802116863827630989229099726330882470675125423186538800293585991670873560732000382582203513860641665948591946663124183394203507286633234613898923429087581164304035967837607497563474973171148127956100219934413289238004859536220665510617220099429114628188926396346564468083943950046087433351037142450810402130226681981416145445007057453911813347593270578169949267352688457932069659630571741362046495446869200722671480296817802645445181824903159177564904106307438126127923624897401960452823941564306361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26131241507166156544590435118198738760219816619352299292728336013866930992909611305149856972643424660501988539491349993919697022294571858934818572741201657615813729302163161235854544655434184157544293267937943601081745709827750772649622231494580416558225653705834598506096339379668540855774363600617386575459249327867790037694775588643945342379165184888767778667674604318946747483450958934454008414069833604173639051281306108172508568846038242096740913863823751420117877477797148727309281492400220997909925534019319727028076925970667968188730063092591398315186591034972768785531336512329472785076677672389778438699981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20319371771849098402985570291695639782154496754773852021566483854590237808092224129469920556814185621044957923184703366598840672125619586267024223475024290047314601286509208877587484474829899926495659875091593291644634027758857281744282141468559527050727991877593465605146062316680568744664049614552479141862882053546453705052093640141802614371341720917288392612571108039323571483023683541707076153043828439118795587394065522555143158616181830383936688949779067435165720647569072571735705383647573695844870619483884421612257131442171101325891846076048874033099367109527749355528323488625621825150419854838284885068733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27572061654414539223799279963005035306327315586464237039198745115876068030426114046016108935931204639236816898255306521097666888994380901030099565194688632846470208432128969001722520037475820878332802878671677849845103691360588840901909314920179879682201460774046575982334694656691143021121662746742977705385315897861822764960644985156961303156721587598357973401840740471330135686088822879607775656424018442655084420883727402970517258061603341144385217561038647839416019543991472596033865420492541284315847019622818119165579881553490336628420238834443400605394496366951432545862429294957804110531391884906339560519593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27348677944177116618198453431588241210199457768418967881358093160004516411419478780469875721175301704100261480836985582073327890069117626664950101855368304872471177825004769300127940859249252984797383071078067978215601144226749585281737515104899772673231656886594053539250113362115956771697081272511438073490972108246437301433287779054969455603320634623553865982208558930336919524133623626512793154273710776377049759823403086793949704955860207771757015948808694871885121733212285982558412604584264556503365052021573297459339614711363995999424087843676166692193233153892924297675393264749575493465619531846205418787751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30296103782363156811471641622709595076217424555452165265943190247514179634988269572388712406739648115063284495441122785676812147330280110568431264511664572127150134735593515649058982831418767887799436119587718803023919187766908508789428790463896469639970090233417860210169517887756904672714793345706565176508774928869029137375241868980926141857151457785657814802626449561763389101881480069942279327124030120561638435031243419732751730378138428264380453724700986853633114178748884307457614230737970263652334253823818310288644776749843741216175224986267428142145213473945899735907885705194856693843901662020754345628141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19149182143306986927545248919799823881021902129057494878019271279334465209423712100015575441618389346909621864783757237283178801415197302377555757302936143641989362042640501095460040506820732118911587483779054268403500993459880199387860052694423941212476806148291537083241136763908388789512798658039555272553459123125191492433273769532749938467749535558622710181707682577908807535187005733738881863813779581229237371100560170548113231610339790973984407567145091964310938637777310719435159777993417052515859304814481563755714767960154653723430727875912475085998236860436808100165077927220216997688008025472642754135701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22273489245928954849601619043020910898108763434398301707721434665530783801035350948555009801794245862392840553795816299468287720608177025690728863424478176320686563279846372510054540475050036731932931733417170788322599370971173472058075613679742333769462904594220472731421530710869310816682093634903987278710685126824771288131678138405717310816074932710224509971766354433218552048756575099100913348056745517576406268372302164589530959123802102376260807060721425075250260559184018367064136981983416415461177550394763328251390937268444343477856970931223366669313113976274645967548435641940451214923571699115741668654531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27783914193686613610167669964599682194851644660657869098964246986079939644697783371587039140115388146406038252489887448574987709817974571044988523932842179113468915475853928151835878970905219260483081586718254086163955539910357605275308906523991284493171273953794038080449474469803700380154196610873993624938752426861933755389828010840898727145603611987855829953921302025917066700111140434565364767112556042408523278498935241681544671360536730712718643684539779028957718184208216458571360566675031163827425119919763902287833140593863750428345413249802259577625968012000167905189016881638268610762333644289724008733481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28193125573685572891323101430016483868480445603902318427993343590889952128229194890572531532376017841207024838596492785774344569321522368810603722692848357464996797200548458845535557808720686442758547287166685399590805602962731350869220051199521048370699758186510978397233949716128715884406405021123962776050119200409882131556235785327320734839178023493350364861760268498609317500721581624831502320552374816447198312325447948141393889106713126337883089927622846596900394502513667550707113737312140505687752381009260960869660591149657720879344294450212660106538120005962827104327649349162322961086939479347813075893473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25289520742682289287410755609412821308604505074781197914529808847055881760833147269210393684068212171757646834953856924379204857962459392816382701027483784574539711471368714715258702612028321778467586983833589894783037242138685943714869247021378357678621034420877337717240794981941096065731820638810390590344466712824574201587802211025525323880508364757735227475541794848909060923582348419242370325290138843564097286722553098557260535784603266698241757472299897049892325005097719597866418544356493891686056177545234881370350111775971513903076526100520354008047969351851132105677834904448804188296674392885786107845241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23642525075162572435379616682672314416911063207150955727370904155555812303449511633796873468485788576198698289246225173594155218390021997569581775012310272901395753933725062585542759375885174144006722575924205563116459510007804265818545705516264187065338567667465471189891166442396243276885242417448622256973890693067316202155614599963297581529310620883354176210795829854542564337583000820154676772056390765629529175009353097078974185997290228357671982201668226451333114136323742074906970820357873728353485535917730996560534067328538146879948231404501714114133903449902223142825551219012323238072769571331180575556019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26910485749199531173344439982526719836831831159210398843739112806512254652017458979956890055874687142832286192604522361237802273794066685400364879173797393832504545014923434801819085069723600544919027055801521667077518753319338748283682744618151577797893156749089499416137449164357332658107464389683343467135064009115490927546220662001001355923286739080628309249825890277781408737821411565605555362730490868104551829453596502952331914396043045314582858172764899331124285917162131113804297098448872452842709308284628743781974414756727071110212426944094172129434008435957157399067841331555018260195416034028403240456033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29434650796755843690564538475693600655492413295531676996140106269658397154522071971867061725280783105310676941131107873989944116912164098834259366976260913404942773463018379382581140452146194305776012929660529744582366230959193275870317867611115356498704275536738903803307384579502480589403273766791258486784901294745578188888077637749363053019496559838290021200347596893451858267754468247810621038257727584933233671936104665073946475580535387198233535175764043330441934322849788464063947568321671681507345621507754333609552919433429554219461748712216085192075968258322524642451511641829327909580377439750275993974747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20761547477583009639276963191981543238980887776761197049566447738132728636513675828378999088890160384988612527649443001682979286513173370664025118140119938699503733238684093083847888381118123891260955577698464485460638496338561964215058255507910585345341147764525266061466529117068450175889487265473878205991382977908247473934570445021253672872156812967588560026975699403485909019535591247245589334489296389357978377204395106158931200793959245327937543971490826719960157091704745371251327029866434500766665721950952384390961794751615055449289538401700773431560030039282621301391855354842520229356327780756944591120037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21576013011078197823626060498259587548634483544106311010372194347965094977411266160703793017160128475697218561245205609087501665728437179925021537681419228242554485595306673749073375002127502700961259928204477788713077498962892009003236861035573144371128921072507651559865052853464703158166600504199292212502190602142426756427697733010398026747349689056801966334800825031686759955295066243864624411451274963922782865367883047509066318197999318614203020650901059412167072176629952260998022039265313886471293961694474025702400503198509768794051127384070525958399729564351792374085218899984670677248395732486958758530953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26600019814472105510270393105924895956453274271983202092740899218878233866976744678175449038010724008748924922261901539119502468669075446451318212566473320034985481393331965581245875509562566222226697140928280085704193952144002415521682245135275101380944724142769615882432217563200986752029577024800289301926690967425873963554702678022316382527972118256740794342721407590492770782209002921171061010400965104411392511794962255873977615635763123357290061568574509479509525532991899925367016200676327744640291173587692538474442438178566118369592956996888023524555670715040357646628539894438563072583774500883968780212737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23413644719442812923314236058517842821747813804567201213112728708475486957937284288085357490200013572222773419585328250905227020069266321789696729121446137253088746403158104322929601888427333595434498545926578685122731521184417572866242818268217535305590391920114219464005582252406195478873200688620958248045578055389934365050609289488086552951307695396046379255421035098450274891036647467125917524059385516271686622993475181037988492943729717887387252717861110434555638933706437527511104114256363699930510022055030479348916387427300025520901416765842130981168359385504703396936556882877908001896597376733421876759473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21373415283328583472164431612408270146686187855979480455901353962365633854682662813299488169261228844407365850138162923141569969626158067199323234884352939928251205086846653064307552993798114292641495916251178618766638501922505723908193342020797519188859981015963152709210941126316421144263218489083159743716766821030191612075850034732003680951361672760496273946207392980245803744844590225205816528224702588926963569016749563159449527996924736084601984191902957850352874315086918420486572406041041946352017017377840119180941436529430207499214687840907291955362973840232355066086497328784488758068747936838215986331801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26632064733472467400506180581970240398295297505422111083682242387551910453695994866035711564825305892317631372368732751735242988921977691026945133084780962785345809566782310217475155826997474908370725633400381034482836078539157052863707436716966516327183581311041989273689446544408720007344374935556319442185568611141138554777976884830605383346114418787462608094164989589960949291219919042511482487195032415830119065697442533680935259716665846927193275939076398432673757307967917888774239065371703977951448886554604271467150224961807895082065522326733350912089887061715354177465264132693753328931258974908990069211103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22380587568251939066948972499482481819722130264963761388547385972409104605013167187399641133983457700253499396606911813968935746443265206792090942975152479265137286797978058419267412920760730276082801434357937639999489231361932576529836599971715140279826888834892645081046464280878940637332084548050621666484529462333051688109312962820143179707135105866042626019865833508488096320271124281423493946702130003551382464058817658594128811243232730312469144830123451486566223544005078342165394444723485322597281688005829685137868989147819628323769822631287370082778298627178450751579993102391668304173190698837355326368641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26339250334167590523272856216585977822653679206642335849567742733230394688273435540409382035941165924804896158698859033761643871441466781708576875607391748903916259667238660382068333947510420462773826331320451618335213295979931518980456751801504851561987791918004534470100174450653189859402031030193868789754002693664390942579767129886766354179166913144204052468151192710585147275732346742187935949385015035413547748478233657892926365828960326886310296282318984976715310212147380083474779039705066094011078438153451107153846760826719253728673927677320445308577664123188925766874030698561554377285010221339788427339843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26904762278978719792570580218953839565410766594647837857769275533532539190115737677772648063252122980526141216364201374317347759948034617080311431144286508850329475437151923468531363486263745778421436113977941823466034709993443557597728293791663340032399904333143650181178403724565455705854569585928220401087045577151837611178777675988695740071757818561531824358910526132975468279085889910678057438971514659334412621949299189931430920374095540111760284055131804831176238739056033027472915048965911469898807254239077786979205103067866820456244495387962246550361707870118201258473436029357799411124462593919090248855729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19578217148545930053750233745177526703764085956803255921658293059444787165883301983734263841117123996311228736732583219582472886445486831078155423093030725434921764670033535577280150682036032698977696970386545413912947557848108329334510415247844868030128913018602144326593244440649127985225239378562514167504806413878820107232367501918984996583835949811872550433598404291014278216086494623497887295414444646985528423005249610113334576129477277505070865188944288697321283611000180434957680967895396607793424269619026548291872897501625807316871669511938712178502072552340546565015446789711867743236416533613913917207609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22821655074512080816385835773480829050507508770491997692634970684437967195280064158823202947707969499242827334803929617625175940121207818462373131341552674448520138353116895408016714743390745449715551320715456021435974444220934029636766341103583206094872720897633464675972580134929247631930430509047641830599200743881258398205084255005550655258066940939260024850413701779628271275759085473325455179118511601646977566698219813017341003629289568577604486383126445840977598368044359561153388002163232754426228401436972665120183606305652028931594310410507609199367564762469549978664463489076373638596767015993404812281449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22883564584872195861135448378558705104282771205709469699626657456475197463662081204497307557045167427270961298901485694916427650190229512974382380968957884575727963610207387699648983329744238766036898010295590676814570640647864068086947580553501262637654703467506980568408126022553698852345655865122557938734191145688989029547490623840224123432144134141666737386931439013038735635488514454410788041046032679717494079366598998555021586447792162640017337485479704485733367084391175201347562699320852234260159034668365727513060890296531727524724779515051684076241522395259630207887958316959511238098420005290273946846629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25381343726672025787923709533185824435623959014431468557157171196756143649384320232410206728272792311894349635084714089856008084266475017619351836965355309708996283569554313765396856907212050478475569216779508000379729444432779534078362950442953777577598204767839669800050118987743357257996079626366554518448525348848556159853331426586817284363153167931385193355442652449298828917576142411229555898030425963439080931306927710504138856485090261759051429515017538898904697629945252083296368940090003771317832495273658862269749613204639323500571062692622984961322926798511588963981190748201366702124963838409507993557521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21308145828310605427035792328981235895127334132524369123703102464487159294456366195839346674750230879683069939773436638234123334347215348910986948448070037090250757601623129210517817686379243289375723240593245919151875893533473984418151680109454753011672007649469077837858748250064470280724543192868295835514199138492886311754730184070727357902634394303196303334252091597648699428141992766635139656085256123416753099602200701344132310863717348212107528807844299317575251130790451419304844918873282658374785840217156798346398346485697926846092005401043666591909489612438081365009283303078690663678057633968011093785857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27269199644224662577817145814088985106107668196673180390268967314934761258220937216709216459171017210092161996964688051168248562170464567739452202119509697015652023145255828768499833103967280697086825634126728793243362119904546304503376902716535828057471409739388284651720822673185419941306299610718151233492863133853636941198784601623561309949673673054471153345774995854540836700825561004508006987623601941782058062632099027001765818268213016994313065373289937407065944929707705617398905591683276501936479070146415017889315596685985906068288147154158938192176909480577262164876132017712365366467550829973986306577939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24753788458493607592726247978922681548339589320921052592402927339235919496525797541524561654933820599287077780053050510262597864666978686616372688969776713876021087393465395235138503825581554580705756543953741984365669741020710751670739146518318060332474153515201705301893846448060321903493484747314099375157189395871328555956263493146272502962587416758814133372977570809214183984719905119687487979904656119935619897344079745438776024333362216164265817434192857597663171011451958926470449296496605907135758747009742663616937344319139751140945367790939809317503565406598532112112706047918911571069350053110214801343919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21253942969191515706313377552456136551986044231929005651511903688647959761450658815943398969218884685425628838218313704424383618536485850789885793071557842814488474722398533419239775138900082827636634384103924638031177368359927753053063595473236580605041323694247401547621958387004037825362796145794749582868066901443396065914480507264280027301304152825818620151726902441742224090911106932334413845760875524824450908941633509545310337590260629560027461476378764623537187976205946552611375792268144696236407165206819465917968248471116971825339751611321462626199782776271657410105050081607220361497926753242741984957583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20691391694242152524177611974318365133680639842097067383204531043549488507163549146099275425360976212443101381845439099784943211310827669740613495058474289716787693921387000252077821548692738679138518825116137897356400747035359877385899595298961178306093155208492507420431590549115506165214047187012667675957130222166483830435048680592152407325800419758846089029781305179138575499049328216830438242880037022850847070118891684360225188149371256919444328229265768727518334656314948533445047746388225577723779277164751799734031264727816883128450828653512609519991611875558458305158487042138248320385438036492568767702949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18813983847727865620552929156229544120505865610281493555549382718831561412468343471563234666231836942746565400770861033018241091612511672423063544821359800438063342406321224191169222067845101151938646968709854156990152911452690236200999788592073807272791977813039870262764463748635582022761476914376224141688765656723473782359150535626058767464321890998963125982478424005695322337128619917763196690059370438270951844841408681390426213658430906940306426623788481900835178442116279006238894946210139011746446407093987684059815534538942392383001418524661908344139555401770933307161697998319652414871712645661739091328413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27348573107805137139486894576515568614027100618212870385212852222659790060881523753809967867210343509074021760611592551524493346010037746327514474788826198808230331386212844943831228709647049648978245564307720362101194854278199341910013413334829129244480954459458689388099875940144367769511943230163840272244822643720952669333383894530197731718635090525795372929200561135715223545120017723079340583957715457828904964253211722505750362547412900222192461449555404419003275115026108091582537498599304332464660026084945369867404026450937915881065750075927408037793584029945918643513343239299255196353706487342878592645299", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20002032295557669449084874527459744026103155105610670780275596710873581949015301223702185764424009778182756759812457146576912628618484044376467391610393121504067802779795003494113578651129313243355796698864709936917540500772934724633963877651661624081988260377881570982266889731548339235053520833835373779083428666996168969043532030097396623907284861200105212076441982023237652051473965840872269919649535027026710253318016217349324508010091132717750585884877131708985755789108172255115584605295807936966165359986353883024611520900277280985948317050868966253813469538959360137355336591633632851249321882437266690693119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24507029438107427888914687602447931515542751944178533356073756610110994876562082168449790498911202086766340313110305370180932054757774252324092424368805462942651099536612428631047090977553050397149693439558494049676095074330427146879806958473221204060820928270766460605419447961747979912394689558889941981157395165908688902225010246914616065142856102768378140215530460438184083642818644759670304743217171355438029567149459126186883476402294017817923824995377963078249410132191060507009638482511930688150828529280265833502260834798248162252726918406983273033778499638890187859697092960366226066802616307411611854953717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25042335757088254673651381745403099439050139046390342532690935594986339470320940032327283330820375632679028983123581159153128457807351070493701752012776077910401759663401699909983558358694707293860850819798890398730024546153928970435318105173062753478468480252414159820051815177559994492195032768690076223842596477148953341966986623571289214354036137653946185451950744827019480474562560164247345555458035560983692604181792980965188758200343956283629369766434914187182058946731271964175274528134939058619568461087537260433093217253024051756087869844374481515699574781029396765278084860472693191816726200998757005633329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24479308107921065540729796488718334243000368289125309699966435771017321800108710722477403899996062158354238719195271882204683564913539958883125628720416717650228431964145159016046740519746185714238284827774738469645521269465340757310892492585817619918063652111006291821270891877969780122079819320923270564458169872491719274911088267614004655905692004238362071389202206042430439407744727018272836536433104898021365087861211750493241474486788849883420993753050037690875543247344621558177949290246954929917307094522163782295255057044854067698014567910375928846309552937777426087676537497809342781142350162939348378574957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29988596668714929064285676776029271147839730397619111122612877269870238526093316589212649567843289852468983830187498354937959995334351972131175500604140931826476701059218507938054401723842388495266562875101556649540043553700343389966957745618003576909974276445203983509471625076023977319884331675985207900699480016010438114291276919664375071731818452850036802907918444042570773518437476282399559021155530615257619525606990444351896411766084499523351332277156530847564009753325726261112759549230574180891351542892376231161411930265781022672567144226516446670563744365274020433385196353629817190029324884634594779569933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21662203291641401756242230992229469530220588697214868634689515499797107559972915715811741650345452959078061439452938747814315235315822220374311853042274343432315621240893607185976708428932538109756468572159354797447065754948706561363329417980100323858070420435876701122930633036491046407387373245935113375348073074181330572497328355679174595159581657099209440492727135398843684871042553159018630218688589697820902701922639968440856641857178689074290333038234721921367592595112540780911093281783590336485747432112330393939038199151092858626633112401116332242522325602919889700059615030874521709054976901692959580135449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27164497551603022980527944298356039351509627287495317398887633090744483666240687529189046851572378747158316509783430115095698173326968462544352288013588710481648074793552933107834391963858612678158959248697401288481232819837281623255517783796941431421027320432975696626510291427884081482207072366530550287686337980801219493915214449162318896203670083251506762520379166922825355664510987866886936444223006869395239194263718831729744410435173585939578511055827719462676926536685479921643209998087917871765740588214113889043103854444555846485727525186468174262531078920234911246632664480904437449149273818753464639620713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22055923606025593116651021819018588511462680821236516961825625838267977266209395716260952473979354652174481491201541453817010787442619037738749069697734525096888242871442908969217248457221767430430508104035695171780736273124861155511938586812855219946492976806835230717616235636960074185681489994188180726670895964964111626847011001508424504135324805501584464199980823288901466286880042726790278796347090835286219042705132394553669761600054563117910136722092757795202207061889589921655892381647008356553461560045294738437766888632154973869542433335957559431726912760226840365442181247618301054430230633534026215821473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23118507906539314725827974230754023210685895307582688778690433217047575231025487503250669989157743683641871864221990513231189596692230499072444851981222097682349309923224854831663662550080728677497482745697159469843547497989260443207790181212789032918312310480500333518704953657453239905413050815658929557491265887546070570242557663780222862229608284728020237163189469482038396557469657755207445405214641149398349792338110579479778592094099994373242808737380914404818986317331403340135708427866809686436816397349337122373093947898546731655758240592060355119719681031173395868060496070347239914728004650587710996944011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27479289302646423736382100696718239231388514783308076634404239411369392944427283491852530441680694419998315268265149771795615881439682419046562914324927642817463943302310285046952927524304414388300638748444444157494992046911091527355243227378609459785088536651756230988046190410478764803754790733650067658624647124809771454748716573643408238970262266482221682470069216315816966590521276030787538302470545381308974275693175102793528364033775521499735030705149811239601661409137541995626938308758380169269518554644381335380098331006072427143253932704564407249272144435690078554855682858166833394946274796990906622123653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27607227384468014113489869494184531767137733393246071098224215518993219725278844060696313298447564023559503281804549848038482554279297147467809350947877044045364817316600885730617772787935132164696495973177630398511996856742389726290907166179348860745407590584026184397477307680593651827838906170390534948138140088776292878460989415664252735629986919538324600151112020168614312576679899461411883263724361365918326295162165204127593693893098703233498412544258946936018779251743425261720029885802266679745077451337290465795189670804893713845186206705833372544412973488719634431811452915422311661201943864900669062228773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21257104015817948643041570425992191197340472898557808620851667294267649702117452750596342087963683497009001105805534515115946447014846711321362708608674441669504675021805489494029299553751674882296244016406998673548841829414746277833202855328844061169462179555626832501453712730415441781610311628838506814863882255000630165779800076883246024503119661269657904200840582743769517315699599260526332654873672929530415860801155311675854380734374317523595730080590815037021220865076501959942943589100656769715276731005499767975824933368336461826300978259300373113742284249825642538391678083351050998060921893211468815415973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25981329738872446262969129702409355048107587147203183289029894138588462564210183391015286415568116937149336939295292039990731522420689112967231084057710562540041449138610040736630306859015739047953359027127259171134863869630410691837332242180587382089577632314799750432247932527572182447277180602281647517881871010258664767808760015193917304463339819775039451369005301193379302416944610442520948590443279170494902155538296077147348305827306981471502274557999570118210775028624980832575924541873531059252674312213781693065467096426451516975287011254772411904043644598797183531649494755734283255489085967009369566599189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29406948757767995602777058426168208399965923811721991995797336099628959924956130976506099653495762502087591304608000480562391000973934838979605628294149891630237423943805361902245700977256855982438116621837173292813228707848649325248826194848306385267963037086855480479891964845384347812876533436655544983901969606526835172226988945200262802344211766644323664469519179089933197511851734253398838705108806363080569212473521149706029340111579081910074455925010606984134528093943373074045841038688057535837965623157076362916254502137813922596348602500393786774034163876623080897398304496991989596252634732517631560137319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19858173701746069141338793087349749725671191616479036457035645427373350082282277423280251110560028314036780525630258828808391967819363209066479973748057746917392082504127931444797146867416433754355012683569432560890641157074032520280262143913753235209991609134673424100889657371759455618901836082121436422342467610408133097957211743401584454381909804820633480035501194314913450128967121228504018803643355590686874042710528498348729880660398205684763827121131620142304767360355532562952160288356616117020635555439785279855133361519167167028105496257256373136342989100195661377819668204122658673029635209465185613251343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27571072414105845698812329590441037678673407420467810826517205341510419214734980399896088846503624396518911893275977969554402828659068072143352158468986536327095496206302796751485462749551854560466591054783286019599062429163521349229412777243173302589979582716664735119106670829450541755694417258164580583070537617677752691781657476626767837267682149330203493733704925850391808050254621379614331319209734038454922971126656466125096316217186571931200259057625018064941273507360713716075627641146364709033838757804009243958876262748611924502616974301825200604124553031325928479700622883455590428159134904028950284997733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26511448375013392757228317231526583058965222216416455118815502880666377410530044497086103658398806678474278656811140053856982807257248935660634488026134159681502721585975214837353285767731151688815995203633341445284925972407542552159376857427916253688295172358124941441559365936265603288515035485148888690177326818646417286357320570819201532824485325577760625071425579510310051011503884795173348019513597465897105808595631833282211830920606832867894009439008256940994522544014245669003010444065918123425208327492975090468163297955793932310270039293889946487894835467775051395756231465230614420210356072609708775840599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22663852485334976542389798256326106976431269872741254481979742410757391982747211456982652278462482718795449123490657292614119653370573665483616882835138183972893998813014442106430647236684207820715096019198507199721287411839237055060436597329503203547824539813710065356138546830140692975933625532833787315812847324490270737794987515344615248259816895824335656218080328271203628221109469820276735848810940266771754400066053541292993094252188900133427776736906321667205013275152090404840639045649348651925593009554452455905202076032727367102830210389972335701921001373578534174311575793127949359655862093054301932051539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23369496802328732451109241253177864336105375368431684730145583868868901279516197116768287094631958231402577805986433004832913762639932368785432463506324481056934445393872100556329932277337468433079773788757168172200278143598223839533143587403680852928851035421487769152841396045701082627491434672380987916717603532401406096472005971472395804213134767455638003756960123790031233634809555653241766251635416178952416884818745120096116291399636240466404138750016434484822360173103381310296430811576261914789647915467428754538658634023858187667137517089321638383461902236611103202310267256523861070875349045715100624146147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23208863401238969386141586347571779347983450763477260855505074633606126799176970227491018707200515462927960742125779086379713567810321420470305192997667815221251612563727548006761721470576979272625673421915989482641713670077512218480320133828542562243310698972634837094669806567862928344539511872219719275197336743934309939772979129754970112827608149493684012040468155871660451166396778533371937161541423747281339687004150169522950446661787720146811409592677735227734234940128242949779843118752164186889587173549925472642382434864154249105276512695601722525060436523486709502616690302234163278330574689923899359505829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22614500892434515194264200754717821431140285194617555230310726242882076853017987086958337403039350152184578632029026578162325583773195435586325817007349487569571816235006758392219050891303506903168552027658761367627021420211527019425340813793937393875869966386339760112058394840731773683809761632523953276882143262435404437140019229221450204908526421988942857529759527110695322144089390288433881130930203307993155599217425687564457436339269481204183965121202787227876696400001841871838878866040016584015457380800445717161706715560644882285753535071970858479866890542659342182184588538332877918928764909521653170196851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26188817637030219991607688221974446379095768964452455823208030885806408828563106365968061709091836634321139763161393376991964713642394291862979622977425799916619536811440785835582966035816406125832746327378760553430751023669228427542565725917859533641295578555788075367446187297224417319386191058754567100944592196964471574455694325969204428535445476380874562024628445523808335562035541976734110855286348321841925886110270852077916009298720217222602650337442207816630106863965221562472275457689762151116179654971187925232700464994430885108892486613440638565221110716481398451877018325342878478207178936730413332615193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21098938826580439940900404291625536449049558949814472422152390736045542939031591033352693721082907878594617509968966609781646410686706655012670727555987229998494916959710097504278546590672342148998850569703677327373102984929781885143759503609218598478996407680830779940068375756198037417804274971142902860688205786611636724934408883866467833688484064976138220613080044504882540174915996160342088853567176030114194391610613402919900403994928113484984478140666407931327398036651367037500138382821122518709838601120759628507497814671441703872675215245184661014236400811154428268594100287631129215808160578637438896051651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21067431117272863756005652532666139364677282612169193616900181804100501571208832444006036781592141032674904583580357849658947099932610481258334842300220501161557608380173620981860592439375184553671809281313868622715245033022175853879024089352581120519456744813388457754235023983053674052620221224552047072027366039745592885299236901355393074733765862564954082235018966867004216417071567194468848844518116810253755385300016847795970689075102012292994188125409176281501970097275491621467309688077889368138403578729623816775445999397885503448388310917759481257054353609739427787388861944826849440661801482071874984089657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22529471687764724467332523812949957197480993895170541212436720251504764111629057554342637402439900207167919894162382295878404172410577992121307859057953773867150596085690763845071177614042953368399914843476334638732467276168462617344605683192917097484254485864416537155378143105241667568342861682751293327362688446953798912322414826241600732077973129086145685573963528177984883957904305384222965908065059186305148138651338807914668462196152648123713420341510320731196059321278111492890676283305510633437704428233894394021546294628468350951868649492493756013055568550308688272402796271759962019233919996397825254256903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23561624774420378491941496813555205454677230916169020375244506489984801883977882225057351147149347295747757482431547549929299298865646076026441379795959252484540373890681566644589547635481878361786054868282001437190493376252288775387295289225232418473614189888249265587818987944434273271102801060437363780903811567508248731681570877158141367086353166175439582792033850534329347154689334027744821857623194750303025552279177720586938544761811305846484633188872074329808111763108180889447092252834654638059235715456460555834348879248450075076802591783336239901086494558626117793151556670074478107399013797318232363103913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25053456389524512287140974051108871975398487699521255088808959825110308099352791902543509699008750329258194798187851444578561805841721275710698028501871297978222628330118841265602476734230287694252916242355246982101878259361780617955328457338512165671632960731021205123400983168343067275934038066664990965758872640129458727482015940912630235753160296679722066399205567813391235116134967715558872468077725074086892577379835089398715694755576598565464072643662810930604248480398470077739151346779265450506596483887103014985849400405938713439802532404088117265642322118498897580718806994603403259305952502822164691552563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23387158543004243737289592687941822740351085502952758224341697624634786653231950407680557684164580597862845878939313221334613051302391160509018695516995290848994727063592341658476117120254549321470117882506221361278873866363382196140788614595161042701535336234956703169301920498288593137044170826168232645146436537505090143234799488083604537851213889347297029047740015685415873169270925076410220819647387610421781223465823086272803042136105170642155693269132665732295803438321245444843667506857744248104163350732776630138242732049923686766354669276614189907473124199836134776219822947944445825756876523621537846557027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21442550699066553292148602817098973543648317984565814376384912493021793243736727402412334887254968265847630666776679191259501744979607125516960658087722727515878132964577602859389832366334490717420879866456865469094603333674586329714744306642659103167902440048015646947376427470881013593390351011077587412194473654211619037861085000981827939469292429420006597832191634815400875568395750647649471198196784419351081809049202860510494485718108706717554746677456497662530220604730822723450523663973469300753144262894812555863923771694982087064141378429288643090405747213773379663900025042602434488347373992815101797650393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25243485741809560808729967114728714185469516487020255750085454555720719653964601508224143349601550214161777296380304612377478478119101833515234055383826084085932826073185327208537734012247691513017348108343208072885476074968097250632153361615757300164614786806057059353232990414912009003697185177084031050051679608187196684910456412290577974201982438054669443614323550787692801159653252720215867567280457514709993432091061985925448867855057840530866293606352883982317123572280499070323487703429430563765455575234058355879330928981619899175357565555892662473219626352265318784159745840685790617289261868808905486438097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29854935493513251494549030210252482224314346245281479984100562785262331410273950266024536310374546809998481836475007338779562882578641702394860126485752245853547112130025544135948863980153646648124118406275367356135351495788056775115252243370317372743616296305133573677509281924542523426703375024438504723649146850530212868580946101009841677885104603853282455246763349991719980699801328477426235432057729355009007938328186503467509615730886512250956642100087160250321684138344755791305082347983803110025635657821762249347232943959495858965262348198703791743779212748605477210635856683134808501757184474092446006021767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27460318785728547593796216000743393986722724455538758594058840254944374625476601030223923114433312746985798422759745654297179772718006732095921441857838900309907315119760715865260427090139658468709489669273323577391678845003602810802271242134198305483652533271887701245570920524505398562149037046059478007645915999238712360598859537000162341226164039744125388164492137483048449567993340850613971314064309070489117738042930159157567721507297718944965351360221501707805852570231333569667963889334045165249992699839868805174680195801611355444946069847766367142212871509725773254187506536284541025241711519637150827034753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24884795492014789742875036286735240274495320490276361651796930264219365817781957617793120720259895467374220879528582989866472339782911368941618321227002623122571096004370907907729479486473235535010635364257093222081432978463732587543286740572473091346316929602208498853352192845559498445600646953901891432612359171437425258928336414564609642564848468389868520705884329542878246264539109118866379324425797945448715122840525614695932108479225120819673029754795201912453096683281697397401513194438881569074914737780191563485234547831807687200742864397239496520028360568264683535974505414536512894125990139824797521510863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20941059868440259241744878467603731034669559773484466361727362673992905148831109358978677043910791169885781806484758458267302945343110588025426631737685439458796674179130984186086123875466052571988230783227934127644250488788274115428175087294667139166621403117018191116743818948815506828919955390084183410617653818252467336751775704725581318836086762986594010799496642474692017120635534790389213075291034869935564842056378167226738073541616987863429724582459772682415079486274000003193743589939652332713199456976122817479326915261595413289006381297944357222680881055553457093766875867944261071500259061215028160314507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315109137143138126539034044155476817356891264895721549525114539950844287500896277223062917260927807945880937543403425070010776130838092045097384656416094180366897278640945413003814206149753133327263381865763745420271756838045998235399495201052142482768176315326280152460642795547960013172866929219144982973511237379064952661516140084394535028436309918467260004359920413668684594025867961330552614548666236821231710808135808805966422881238381986389259040765818940626249251343516397108654062321913729119641438759528621106698552977090906418681845085863871302987536369330860891623138624885572094704710110589527335265409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29141747784694374690937196168063842380037683315885176646515418137032973952257546256471627333905378409788782819349118139779941774473954890223320003536818833036451459331727415250685908665938018844834428456824299363409299620658785386033266126087472929277851234096091682566040694324732315841455775038690548466681105191798843838377690698091055635533208180010160213983833675656519654374764849320335527825525886493731624693657632654472589918134327422767591893439553629790840329611483218990388037069226641764152800868252896255840664818529875183712116399364237283235895402586638631040522007116421078015086377325442052663511539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27854897621769737073824075545791827802154304988044426146102471721723497220741665582588637590387019231159648770959176553156230682407362841378309220553994137889268988467004028389510730990280711659072709941941597816561224129248076454257641078331113987410471104033055647193520042715475176891575261578040287952208428585072640363371244473122757308685393256049027500075481442410617199462968861598720135456005829483716505522971863193271567517939199531262277581185238966747309473031168816824908416947466583689735137152302354325367277617661571863238159296672194781725924123444066775119056948890714799678807105369604808931964961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26039645570229883374764041242742252272935641975878829456784415427846485814271284432135521760773633873250728350501653690303963137879856668398459788373870508407511706080092407441657606832907449229335770993260878940334128603397784995316569266338709327440057130253545044376234056530888209406347756627062265587569775859690641200521244901306827966162115123449467643661717332121100864151093962287910025976527829482211865748042842378429060142095064730751864890645251394256836753171373862375150582963217631285819801150657072392873908273492081482273208467788856227557461173322434984067753216565792327594889780146833335712200759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22086211334457547885516073780013442140576831882267106669924171784687678295650470004521374269605740051786975837522318132995165764858126182339883093580486012591167522061798601839481113443655318531727266737662740791405871696635253626242056525365842002188152897652949084127833663058490684765514358793668566000612682928832370926769078890281601299070491067201928895703286872336128294004040348960063400825285119319363847699151194933705135354090970145086509365484295997746966771455942352485280389452494068862890193884595904868186424368701756889101280803655438372393529593325793251757415867767075969623369216494898372765986837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22515293885773882194919693840515640485491447534304824897900011209681549472244415778541471878136453820959546532494286101050747791046774544016203829929015176937707982307333694534810401381584884129930075134650312747680063344613758005519913733152182593933964876913682279197720102242214428572261882883959154187253815673797994314184924708022788495504950885392150473353786487283502146184861294618529553383014573235122289512066560356427257322248379430449186800795320850753522103535785152462392070055709971465534106262136726729010558290162458468071780269186968246774460198455356706758432465022554852903335237432032403951206687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16231034326446936700754183318555645442785889168578657655609388866003723396447393105835286731969990797537789039779026219328112483085377196251989325068660910015693562480234375120854597193442569335686684801303622942927915919120146395418397610083927474578062717806206390310273107607204094667294443181379067981729607456690329705225260506938494202919948255740303904139343003226270338097969834294977396147990108608748361072583541057354463680686873246860814783216322300492015274221819218880965976331883342427740196765190820447314604425875982282582683034527119191157107481539251339071329753508445660612676624342338052473248873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23491835780070255705207405475392550823929515120248622492822892866265089003036018173225060375277441758854523678339045135559091935777077647306073472551534927266213647100922322746000979956412157556038922844470878449462629574348542428180918093427108253024173870903254115668911458308480364296234677761052025194918803372451694233194318924397613482453654412674765600188131411349156581109221875565808073681652924550571509066775922575014931809107292792384689718772960899391215755900601836157893438101330302700638619246240035326066701527702031421505643317405428646854303806615912206705780497276641525570179604840416725764168913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22347960773900542235575506190342554884410593931635476672512549864761213638823957913663540009747789404039394767418540850305499172782593281518215140456200206882636996725243609189630260712874581423479499891499411877748894208015287960341975210699034829865617106960587741445576144142308245914909083494192755695809707321197034216972208660796778503728661349208738846385865874298684081527782584670750270258276706230768507609411199710018843798304186010662365269193974735098780863209977430600854306509853427355956367297565102480282702103426334265124385333089681844198658936615412488527805141488216942200451817669635874675379323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16315036418289157907365904665253379755846639408777312025417908095499909878245730096679459379938403958912067132141082562439232612821849800958236935108258193254274821868344750145294406362288282264733656712957599487650452137349780322293391074073686121640511196473130147193901756911617649808893489209194553634704734404504486231201145239288690894073853721068487726796223870044199355292231556360814590265361299475710968409697236882223449875209005966804629391334212109427314981762798876986842669487806698457562436319240667366410212301313458094181246949600734145880257816407915807286281267597672711384706808986997022942554447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24073856017301349084565333665036397530290748724667202162111750773619671540697373613897134190132588988421885261477046090696332028144559350162806732842556851387128875559021935781069525601248084220257386824513710217727613573141341775707432802352533104294950097845045362049987872528526132977370618540014345492336895890326995664355658620997262711033205645658208003012902356939179125536968120759614004266368472358751289865226486863676285359624674069220442127378299287179064837032973189254917326025995630992289476372873397036309828772870665750045102471542545978844314253497320049003545475008490683685252316715777729805026111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21379988531489141116722095598178662600117282234179722026796479126567404508159883188967149907971615456776231096597775530993327297718611152274057161556749936967408770612700930842198745155442637386125227219375779810048488232631104295229264266026641277595374981995194310647068121230844888693553480238815787894352834392661265145069670782326489666419003904965948972364187417646578003583758735246005590395050964555729313369128943976760971731497272863800767511174350834108504600020377843890172662588502921683368406037050249999222202337370608125568548011023999506770288154965416998048706854716111672211145787133342778169589209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18929652257191193086876827425878817879106736574579063137787811393115577111810058820096890710235385901656317818998333891094172424122057516733757602076927179563517490683046729134171464975950414210252513562253274592570173341778439319556757969001519191288866132171359064019916720917596239134499739783416688942812743262230198121219071453029912702495963591905570225864066168726369770794944106928581081834108590026462129988334769605679052719020894671302456373163113993041339800623164107218283499418669832648558491074930897176151498652288627716961294604649428039881259983217056641526728421443983405843947398473003067049257461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26950251682033621609046118985282364862558405820143018325023272578570125837312585194908010279789780409350692946651614725253828832949608265751970335155818664209924030566808587126089028922500981623662459607046426192610517705152637867727358416440243304382292916507111994437933325642935031332802437253477328946474275404017560121465984613949533833138445388444645776648283030361423814759646330601652273216762796973067215406400223913195214745170605318119238607635600805477376177745967754299476963009725430174602806273211396456940683890654158273728805018776429341541552118685889458595211101654268709974007281238523602085408879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23910362718560455013627375515935791212250561602706834050996426216156288055362118662184665959089786477470878303977094686125909729385247793823638707272450900262052642265662547741950455239937300151473076113938494496037115982280720590302722306087035805661064584375314013569883331298009058028903343926612576149238965105164380724474855894623952696034597204128619824180195340136548721133679951709380756478489634240656304457032208612295779031530587521873428420320127923109252482683428938159935729990738981114560083972521855445352522709392271481623505225570438004338113690952881198259257548500339441446522229944785807397734777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28081966671944642008689038995150758496690487849576101123503640544929890685831402527310484623995638717004825253055612602169665534146023463840549595461544717536401605922231370074920586508330680612554221640232971987040659784342522079718446742517383729919729691485312319602516066422214593469281611844482861986225358107649027192180250590947018113426674368859914595939347610054818153347004741081699270948519990370221409599920758944354001550578887358878208186359235640286109183133706729402587091619358877290043763106502959419424911300647083367037715429180227047399481031726888605948885711516474841722577804951209761980946371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26735597483608159387642447212230173268971369469396405759278633022167326805220701947494060771661234277938231298188088435863918192280126761552895496057614826378303090690756654668937578107458953620206345893950815567428022827438530544155844515468040391751488751695491649114628697276224053389281378953827124323197414676755304921387499160420024276175142696068450556143946244498600835545818485196884594692458199650805353113207752749526934357854646238616152522293127757742471113702862613882028376750608935229436866162391190782607229598970022691778760707435422010534976653853415749608959546997271465720025785616261295067340661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22016203609880478913577418809769486999291123064100225401228731155730423672444767017976607468816165843015644903665110389581904420218100975400495782126144111916456762280872459371844006388790481354212017458044993861874617832286555366815545480338718159713848231967302322646768875917353239655144089613892547985280584222736841354082765316977264000246362721257330079150425619172602152145247032414407259459115695223141136303708572905841052651229700785679719137047928575054525737043829259866892874516021436800696342397447789013108718121457114134935292442868963799713984611977386128710776096414409797792654065461752720147459217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23830002681214486684002032019213705579332890595970712583954499961103730581412462629956917180040632594693333160497875121166139529589595805152407240427439592799041751010117174352300012709061228941689646308136823866932179753917360205976106632748331396691755461969206532857804476334872196280204847872174961170464444023222805567365952732006192559061061907923174213809415601698549019636069814503156277089748121745166549069692082934489664958308862820062423020146698524854608960070991697596840397910529451043689501067541657450491384152511501156445336782319337036699454669710377004187874042021069175682244763853470131942904617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18779646042848126446699593710806235139366445694106041811236932595221439766740404792275282191793915674829082046745716879160141867969522326202426190016864338821881858281809622929278590381675612449039874598728110496699863990097670589319733309032131247194205178407799435886357249034046527616928730714390089743292085597864381766988487761198847758964720268865578126864980606034885370029863538184259417301027138065324725711119355708930946135876924542476207564881098071785832873037423623063171731552128307664429934595322634507096621825295986787384965955886032001842302881931233459875955783632215827753472286722735138451182829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26031198946113607569915570346117613758474230200334684051138416696404440173452377698771209530836183359110650494000228014415462033751904605544149068618044939490151004979179484294365685258960937992751944326805379327972059177684686675959200229003152558463467604410481945230063466123379126772522972415074404085530820565246726984166534558137754506146604980095424730923867456488735800400621736161602944113010475338079526849603338057663784122099774340229963634868569376168677798966143850282564171793665008369616710121267096389441792775380743081955334897834686183622896526258775398624681810161039062648002868402184455674912471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27118284131176480547133025154413318863990281510546071101859797888636422808569107987292506281277500891231813566139898895765336657487648010990915389745828283331633005460829856165827017634584300129840231981490744865009841015659345345643279608377899202620229905571490945248917344157349208322168876048372697826694268197804909941476340519589251526641932433244850872464723590712238563971516760583096626724027316462279678584510907269694172360474098418062646305059359561172458157087580610220511396540382470808546978790305293969699588351052258795053179383046793097960783864876940957376748797865457106630380006103080820592475073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21670627301285497453323111377890625949846417770778671308393394557421510131724230844247948881160364941496503592544222268701780472655890510597415706453929122923995969481676371250645910347820044469770196150964388513326008209719552327515627007442739082401183508974521919453652125207823216429124106883482196862079387441393946099737555981817970033464510564248351899496559386492798822526833998554807338423802573968560539249792098935391174992321585956035319596714043812482112480167974721297164575639293474366649225208663971695405997604147363112077742809121310023342450316925733277184466919164806236559684482927486580918189129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24748829416387475473348928724018439966698737087449233813895136267049192929941691723003659069187212364005335517329032892097990673970515903050529454280980988490106247885749944671968184186256037027200259761113573995116213637917508443893941881509167073835363014422016685707508731605815657821893173456048286297328225968914841185798400361914343722951497906222410435719899871055430370570843480709956622099628988482715295687468804882387382267636112608024473046057408427749652433717275934917938991375691773928712028055667934317926747278726792830127815772904038726255415107356077767051948685487995418968052403893899191132877043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25519937819337962603216052602450780865678199880896396442598442682420279012778872053470763626715692065759052046100061201346340861364387122887714717800466858056333020318471483470430314271328017451276590409040868999559351634758022159353414441829560574234831176422585434156876595266618726609317113389473346444746570958607787124586798878009645005348722619162756226257665478917803662834865048659782698588667586870162133711308020713841154596399001779585798298758119457857344795148656146230343775104982446491624716695679015391599711090786774396737174746040726700908276346367505203873354098590217810934190243507254960745635181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25208445101545779717183102135897392396158420490591734555684902979538288370001535413732604940938396817592364429639316374771877325673153658529531593455628564393241101016212509448300037987567256152297489482091855858357585268742642609767879424991271708998005575385027875089288728686632716326183499021912414024137266031636395969137323814075747148534244376944820233277389627142989320673566837829679939989400391768085833305941287498131368938516891851443279659655585148855562288890567589446698407758613754623417417875246480364784450386087209956195478504548616813910939943217565011150314361180357949231189776982326339850246553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24332883822085450030778153350731361070246237323771246277926826593048971954880972273451938321105848296678829024286775107389500942453832451578771494577276790280487559645613800664211710801026906795287246706582575576457596073257172339390473185730995513396441009763936073535486627989845864337558611530481472550990334813995479019500152478327406049423617474869127480223793615476217904668705552006682432201760331164119116399421087693644480778670635258434428436432989277806693729113355489174616508338324819626013329609879869147798066587966143541702667577602434725217619788146991357560442926919633137094113394485609257540012237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24654032779222461933972987252246587145776063159749955298382003117702647266423472635795603475109207605236551500224595842503262198707310332865220221507153051197761808013612137329809121068359056172220635046159909524494831924635720328557345216499242159970101651259193104052733184084108890991225926996138633148287812585835708446892329097355898946994558188449100856115276406365473390318433223590706422714780469439936840619245844407676261355336823757461628874619514742094036476056171979283335761849046962371866754238886917078474063115699772508197710404501246450432129964090133619504372077610428644579866329958781995431111179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16222550805104266078704978098075646323730508669463910466687304640270773136002407073056027339247962229411560081889366541275915654580992069633999068880377855362608659525078010569267003089218776242917966174107337435496707976261576903809399225863419569315714707561163015429554045954905469585546548342178791875067807967295799691670970225292223036679316148466444226373680599000263170550848435869085326869508818782559351781382988731008524448412068823586046379829127514251671469112129518167553846852978842388982131251479673406846917390976322674517108926533109144225585960315241717222654147119116461421279731164525045062247011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20864530834247559814619415075434129401026313895469570391929558355039391716162543031777024776360393002993760207346846654434877456697453749015885257551150165121862071792236242123454142746844736234994229458182008549780398489490407485577737731397933564037864748430625624900729909228778965137226799821384972625487716955933572981222680746677563207097135901118163077261790030473269986783398089875480478803558805156714483771577373698562904288366146264000601095887571937601841761606315062598837788520663052665332788429313181718778433316032679152828707249626077327283819218570474651551547545810294691427802501787504673246799309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22662113698514771103431269830191115981309600134933817264859064894766540463706122379938605664912968048605555955657632557349674202327584267612302792991722807447691109092067727065841120721111570218142291216636611042593041711692979264206868065679888516511204930063228778110346280350886463983401765041689538522456618085614044881242424319328836779229853080162830736700832206652589321173067143563827631983164307024603098504912828895687432621168570892805750484081485372133595903215279615130965109863683091009516751373679238363190623441790379724648465863591156286384288414528223150975956360273021372791634778635189669673108527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26678875385436594700410833996832794101109515448662536409237020531833081883423142397054592746347569440431703602148497143208145586304732980691774398413309387670055049071163864205389137841327886328348460838650451718409208715779590518665960795969467962702242328230875240735571943496894182337854219004064424157366083164850621442657630603687385828760759672896346232689659013800198206803488081188246329419292138837007629232782404256448128722877845799860828240830826519880409389376402244314002539754550725327659441465534791104588203175416793726313917199698305830146718052384874972023302942302432173923255558210998144700603437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18975773496402485092092849717935987627378576286370208248328441146611722318509998336532160768542847550019637261330881001260876937055011621947745730786651562025837691518750075550362589823099446774763264945034455419986249960464570691986714698302012601944105386318353147894878966386610703232781196582581756941523074661259781391646022952252511227398171241315847080850321442016560293264240296218956226938038802456783636963237895386824896399070387205742748376922921670099751170507180332096716327708398766095886036098438896891048725809596912130774215664204279854765177069544062190265651366264290996907624107085050116136809499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22281925326355637275028039906083840624699778238323750829238619310308167151108595856630608049569128246407133157936241180469012828168539117668374561766014535466462576042243004928179035155354847591181564904714367972335133206767934575625899142901020563750873418385367178087192202911964366851175613038885570782802183501199175437856466889253631319053684974330616758885370775064396432611542091696937595007756581768859268768984062623452490550789231907565512394349686756911265395323915768123409413730963370170199689760884070303963148038767332942023121807736113205702938494778045357829056407158040637090006339575489159594655569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24288367887696964811547211970121639431281834386471096069089224312590755835025617774798342286012005793073904551046144927887375231282794062197376693450914189403141609196992373237309987266003826825860332462218244184606312862319578988780085560092942854162454112971983834058025205240345500923349161424704588533276654609703809241591086809314649268456705603142153545874696808560034131405501804479492831400365308587381544142373914703456162267976372998064529686262500855041192984865492357418955865379997284188148845076281880389815097752222508637215024147884898614094980135870433435353676584586995457197638720030428679926172077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328586266096228548185726361673646046135325626020965011588261617634906471685376109136951753681680798185379400476373873392441229110931322031299434436348328409524400817191036258751426560440679694602520448981240926069516676473548663825287115387224607298758174713370231456747292684171104232093529102285055417249697937842198034050042692591300671228961084013009706099516213608124731658940418349211836965045809252877181603501737556459751860047557053860921610465862408582495764501834857734622100885794874873564589502707600545203113729770124910487090855593200709960744290750009211422225583045665951079763714836630402813102847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22795795410944878965218287432619909632158767962801078865673473499253107884820754174358162225378659091061251404999866153822437592992939743178944898769189862837879897881667465213054444500860739972023120574529837780223143582727339859737239005652505633380621183627219922189897326145189047859335036489865538909524405237091659851312164810274243646748556256093743131688743643013051520987472771169463288700780031774271109280711406162467832057027202553427263642608303754688316114443022383656705201181623604858206694196685694957708701652018730143984965971085674147555110495161746295137915425699272005441142511463061317361473391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16522914914577286620577699292152074650651176151159990144224743259227979341814122744343156677484746968975267538316362878620451704853322108815170059488028667865431327096269798829803317990411732272261977853004040114337511477745941773228770126584268771642572360897178458334367476094031412365682730483259513386994539234814490873272864858511159957738917537881953838769384678182620891168619053806260760564705543750055795890234603385878118899407441492462195104361415026737232345239777949391008538030118537234109227015869157087917508000940042592331817266250572946559419266889989957944593354586911088302594100320072470736940107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16253972849328308915345800358738052403811726238970591628038328070634838271251282204741959921574520618778345082032888138225814676902282153151974049281912413191173546911982342826393138748765826345264948282444159196893017794967379952095925175033435100628747809400434194500285156703279575073532678786158041687323167036266602016625372431540794118829200640190423137330189079152112896505077676669885311802521302571320710631618640895931652580726045587509356344293602167672766796179740486933874027145614846392116068029319028914359339456047963402015233994946116753142403249891663287323118246332764741828346732225289761887159573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16257552079807502854669531063757288447865504821200464727311014635264051425428778006143575967390829506831441786645384500214816461932851104189593235523665416063634502314404285574908840690318072626513977226371339419220075215996261673291310287759819787659015846191808328955491593691866047489485036628437419899124651863259202265659914621917577427509146617445926039531986613824046541800488447741472603424063993614403645666870810936693216706162132002851804439775871624015217980271848824170843309180921092836928494652536366791994501145054624105475556943358124692538196662733173564625125354650321481303616777881686294173226823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26039433392928958381762717310229945640405945382844100346527468600301383949048220054071790133194741388781375421766936284023027189035413005408688830202149158682916352895327710555861315232190451566979883598545845429542724661608985976156029143537682569805927366553537004503871659417297426596319434686945254835591527161612634934953618414121663096309496447253203336146118740945528466056890316418673371479166834352664958550321575035314335906173671114771435298736697280550479589103974233219398082019035735467481941144752047156889895594092512926977335917647208689776186013563029037889380268263573349203794436675949284419570253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17427410506987443023649484357308847683874375656732679452261268375118439947317203320458708891404501304738834061916440208124160135767393454253844116717296934018346773592175937279388192534078526934713733650893641466448542471667972834652243694974224423295373892956930724777169820770983961466425048472778125780252976344817965955043517655816546978059535577019014417694369547503214968807163557098334821288746257689785165332807529958123616567679353092864121187953257374886216835603071642868938221062679434894769520145758037572870837764897212781299712103763293410503405960556169652661426059575962336247979747614952310830206307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22717467096452690082332953048386145717774457862018884782006976272602816409978834596531115830375897729613193136804001114243920305322225026430912476582596787011275224944318326369105719990392192919301623753265139556750548010906290851691451927622577027190663710357807501155595641280211208153864088241624090031712915009815046379299711261921870990813438767053481716067245201053206442950740836894810849443127376891368356494192030186923933606150793658201562646270221982577509981492003934674399796304235789212815214010572351871154346439994756924209574554128483886253186202511163854343209847582649658044642388798900855023928317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19718993073766888904888982783209562258223112709512294358697430860208917094424748286333209898332634150969189630408216053832977862724525713560791606232549684053935215791659744770810450712763885868737009722720674852517960535736370231448240934058195053835545056097470167152023265732787893819078416535607829412896567220291583699577497768247815223298635629500700346268976180662601141573983968805754663300511520961871271412534297439712074558129136055116198998746998773807575611794407700073673428720242118696342115002748942870252342835056682075260791410259932094690982016679633068996907700390615787169965882870532578926472203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17399286114876198020550889770843722805257447829748061616157498302604065849760184631014819102298847404770845574910787583308711310090745458758494450744240070777315098343652089033648430719164276711403131311417564255707661379747932418270967148108546723581592637525506909558934771874716354416666109351774333448018941188957346090057528170442684819673045940583889955121657818684614385495009084287905132862152450106631120457121584966875121992913926992262284613992623178557026643389392202876016076469783839902902031948632775059899247292289867685917782928834424602977976881952301746698504798549784391280780019709035914621670639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16298960549635838125742574606405611253522082146877089806005770614536986513673655812627536753351066266532963521977568974499396691050301422529696616474756644475229481339010107028553786069489941347427471804548793155005555745773064179671361126353759984891867212440424126483972922980824276154350333443880632100194813056323319812035514167744247496846267858521109019773738069210850030725182203020687669843640329366064714763253827798608249976663192512317257619746218735933940197933102622304418470824300564688082306748871978625379976922387770082198462359779203875129704181894238282596533535035600836917941175087692232893315879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319857363377986017028889102875051483238507092262381095945844111722654289709656675058722629220958147766185696542030422050442148528079522471433737023257515665503184361328911240807616495449650130440129464096491684386975310798524249790712964821477755644217971213657489382747180385282992204988136300240009320768754677670901060554251171785337094068329522887991089827204170072061399931095829395282159234722970239145201439998477988958005661292704120157198452033389463684749629689230903585339404705008249791035802126644449329010164479967507461598683595565328754817034114444862165197609770687522854816611075563041437313432881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20424511032837577345631903350000142842093780025654636092691583834966907318911812118172923730750230932166381801887907589861968598563117811638384233085514782672760382950531662870887606317717746795372743852102076376311597041495660945528100035784952100997364945120239373567811572757561918256857003886193392292900706228779890606100210716835800412581569866424496631011105380683616384584314389292010650875467004209050022133203686285219682300038815116362266607297011844472154257821342061474602298301940871741772643526799389108782004012276055476155763188825483443075446130096603513007785401588754967491396719968951803642356471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16357051530646714351236488444098523621745868467055898304371887773254329874502841310451994456924955779717091064640812845406076858025920406829696215892248947769789401578844064201509394354865260782082976540128575517943246455178556988896593521258842586953241018685571590588669245320389129772214719835950259219961861600712465457122269642555452958883707524219101403942226843826700172121606949118161838464764339746176341068620802150195209831510139912590574923843549711390247670802767358786061488525176749427821458688808683745987142830095684649068711059212155184902195564056560076750478185531483669530218528637852846295310079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16258279481851828152366960768671016283163852579722272996945111990221155834708764482358046940494405000218455308388835879412951638479803250084829876975860521616615511515748509659754442061059260875943902998840460165155145247979427927812233434259315308481205628528820830766496883872045615131109664766719429321545899514153489184730582551661474424501725724506255950366855666860463256449419195972415257759503169347108630423649802712357596421593599105760881982461974235141913548453680612977791050641767323234039947477212650103990653438460356918776700297817774449577593165094011482256819742927280725828441206137680783439249657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28317257083291322608127693224732039345824452365436287228566675019628093453681744270276954992636753652009424911292639483660978037474748964766585376719059780468350811856522818313400648756771168027090505952113170181364789895536022088295012218172402694995022204144480923872726734929709668742237075494564433667507529755930772311183424519124042917920656744435789345093412139125417458153707337149437136987409072548706573390210662794774084135620281163824483296688353715664484289888702210966522765973661410075507111481494889308834341152480892301003447847197024175219443953267259910076047604176319555579420487272834817554478533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22359491122600087799014520676915409544189451605119774212234099604381355267169956606969238422527047650661959739182051039643479272405859637360592302374419572411443349599505086728671013114469867926511857679510977279849163004782779339077078156698539400347721278089906942208647537518620379399693640953754348753635266781262322596239410436477383073638150223299330309204423088038176755819000332169348035183515943783884759269794074588991264523823532616254199763817573452075861425254622958767917963108176684265331591212542411773348930146112653299004417051772221735836750100036136113113480410595936701574566778034660145973605179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26132510793896379331267444493666199232181611029591322362470546676718040479962564434772124939006078399320436426699480640637517565553996929613557437306456409086089763556639880030783639404999380825541279873344594410427508398039753323160062832523560332575312378193478450697563830522792696450513347793446143765981643168036884459903477780381696034731115696528221930835040788806303506894506666820272562299797285491367847091841518003663638012799847625293142937052091996311494170158053650311084404290379092717655518428510662760734035239975991566391044874978207133609038195634393977641747572455082189634814303074124494182417319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26172096623638953826217724091596846643872895641870872010528009355507304606111333974933855844598009364245161893971852443877746518070259618696802446425896814246546322261163813703639217243253901130908027931537679773583057400169896159824178131261141763535332789076877390191106015497821417486396597369259516300171611141571711003259921708283631059791977550658576800406986924501812092438503752576380928727540448471439050023051789473033392513977429865748381896514262209746916163255801682185678629598441052336328516690611131872362465040264697134942814678119344896412593947932393522864881237811465776831068074660724101370713083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "22197569902237935853851796055346373431556427127325127608925991649534148609315200524324739502847774989982873558430602725325316214895459733629731321616543494980146209402840710646413263337725153211171945565882210722425788489434725547053167873376001225519598707783694681066401174523520808576868385616497068251849403869074124751247019271102538274086944024667510401174741755884230176230329656182878344474369748425905923734754277482374193398227691563455345648787905142512442288062332273688478120225215546311431232488221128371863948749678494901796138856697124615848615803319932858075712167691979094519231583993657913359188523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22684482050241738861529939136322790", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4921599998939427184048132178934511829461525469397033304323221799891440850269356231707468756002215395591749222816146472319726727302412126240206054510139771312173598752234493928160993194587903246046730963625600162387022133387389741912018561922779013480580398581848533058150101708390589584060247271908155980426376034577452585516919613576287592516118494438944557154993901875740714568647786565212163195101697833160849582343860993965066888186209466783119943410676569042517315740901459985767633404854931155170110462840687504609161033856733098967943700050775124591221695335153707361472831320469725911398161606085829940924372522813203618988967824164352241171672221117742849064582297511790781907562086357981655078278866018980577937538253523693187215723487103567115986899084469532968819244169126857806702726330269768424692153156859683377577016829297996122308914262221663851370413509614612078223588344644707255900781232766737609987633529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "22998552114976928956823719104283941351652456188083411385797528485406498458945643316830557414054358428717354673900259816190108447763467422009910426863666312555907739704319139122637078502263110729970947677180232578076588559774496003212790546193367357800687811141791009647301900925579653656631843393164657398754705523771199751729900645567694862814292489201601026108677085751388968137504175776371969344651389822021469673012800101016008471980039782278979852274585445329372381072861998416905081399715865097614276764811596204495227875326993891556255120164615285658358365773056193723386167973181442302321641301428759490200889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "18085521094002517451339613241186061093702678663322827386615757760282834861352783603942297135237013310136234380160328220135526188438648045945476224668153068154062533816668307488539329938670752675770937577030356239469905831609451409425706707871758816180908721735731411556451528772861615460500698398102249341453378063343419882192968763912836210536753640820268753436171314271444789327073983175968291096413766129209014546244825340449522326537543109247372118232469353181070337835667384495455049848831929208912383625962376707580488640306645933921814561026438426908318504837929377020755896337959431964087720224098865754419197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "20390360163338386264287594081376795141346837674112460611070392970023539735238820588592938661647608527465230848697168196880338721694689184099992250958550174563374521263632050306566355178112204908342373447262407325444596489857881315551545203154510315016480292148791952384352189675831226455913802317014048105608104540754830346616568803586028979620344224077614275212656165317483587416061655660465063119481362535856134683781572265212590584539001944639110033283700979427161933075601938914493345228002122204168300002623473951850580924565319414123849892611569925649788888422534335448347644056042071378394080606507149764284117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25038931683088353227608086452046747602448676667131859613034595422543946340686722386560664570809337389388147883079284578561009637269715855517337072588341021482787870647279246470185295927588422846631153037987274995359359079312754629553586824251974594487650360838332758752587751540962817175182513851707993828099441967300047513877413766565231649643332729027956671613002826248618755654273771449355292695379793801114232165534789624272377157701808502151038514641340670558371707584449707839988636350542998356923250861812131405412637329290694916949937857172970963915673948175335669277793326532118728214559161951014423881666729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23905198510916250303176255309911364255679258204005012236974614876608500888259603427644499059262774906177920495302725128316187061482112681339579651499007989505894137197733834208639543176839020976124239939480418900338207927806292487406933768228081410756876604084131816255603067199378188007581985255906610147601380412004427420383616355020198622762421553118483165022785372098850167293307444837505521150226633381033110342836930273975660580228863945020391276358769630425921624397453346557981486892779614856376146667085389668233510186629111563182422975519598538476858931115194862374731514676429429819215511806610197136305617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23696796940246999172430117510633597964806193200705987283415976224379591631648848949943028369327816245483075008314177269818478068234897233663321591533852629768607786517169766343396950646902587847258299935349750724190565120838855171605248706793503094569278452114156923798075384233328406582054055592364538882162234006881284319990266250336056776691648689133027474380684900022297234223109037449512684911714839353453465956419148893487851324655289971886719337208161892820723237482585402977533035657452650156321689470675256194484758956141531286021789634647745644071498226519680965350303952403215430418704683747601938447210487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26233744259105540820126093126792016167120345061728949401410301004118101366739028509572213647195581245186966573519943722936445735204527442075353856833337046242292402571398790043305853101303817745882535584708702898518387175309872331884210258719554363058390002342132541978545027110265405035572807888784757293449965898124954127308349362836549294067936898144164531135964533106846470332068178680126081926761997186273230359748182031827825110217877444877758907328234424238767196431346198679368639677224077089271030326106730467907829477796438680374081832897011603063819678600855719786418617381078590835026427843037886257963987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24367758756475233765736834846097347454796060910164799925340477439321962370630747085248809923793144398510485985412069884141668497188065882924347900258341176227575798826805387994322210285904434408469042748515562171410929115574699468488155567120058518690528900375412519018392753227494252569946982238340914475686772711872622086760557415482383203651987500444407195313548444904713105959025191804818604748580175821667894318279205666119652507916413516222079639882526325720982577966553170678584421129302180582159916013805887068405099090966791563233711173346408770230569018992235717763234431988380076477327488973178022030880479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26796455001252764377551764931442040461737964437130657901546965352904299039720244240414150474044618872738564561269830227538707485966624526691354724198975753693482147938976630318452556962893741477430666666912710473344052890037911099266892896661318854381685321436689953105461382364249859780969437779505260048036733167103269372009623961899561741540747541949752625370094947565395387256148501941147727038259745323661661137469796923165130996481457595946595667418285853727473018278473619747032558751345787308484503923541858091594137693131381092043839669915697299008224969276188749871032117470803434363442563012356899451400213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29091801671713317407781565704180040692346675392021049529064157706685969647635706266691447263984456030551179282545936136680984835430502179619060094493596482103594833524419776350376637543259665025523809649942290109689193486715962719606362532936543564870272496561621454929830686044025879356230413943599769344266402124750328768379503886138296020279110247096399801087506658836870257832742511866318866201769420090521957809467909444824637331345097597572133120949513302047699792545197791315791560041562779530979746662856352783158612800569204190814115790765405235517948360830537496920404077195919244528306002625701762137299463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22100607108050249574962483492730203471944254392655220672799923227861976196685292515513842241810038366334871721826963976756776347206980065701607116203180737797054897833912504057184041692299565804923496032963473276563305051793793326697350506059940729505991792646840267015540144533903973516849522325154065419420250188185055535562059587685294223917956561826083648024306459643533394438343495446502006522696555509505702324117086787314498329206076515291537744982957473830042901351660051758354247583929293941430160181513108641248913826126694173569445771440136323629465887657495678050094821745760297915714554330955109498742717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29395395010554112001809290930461804560080608528847940617619782661366877826049752980751108353843218708856710317201227222424895885355557542105739773695711057623911784895535461318045190573213916007020885169183154845490373173271161105271078951261728904109558427500327843225750150889567393841179784081922857182651226096175438670912336745731692021695697808179498513141241614802421452905579778603343987630276104519915533349446401218587674487639291202323457288067864863335473113254931686718467321585047563543636040314541147882458959613240172894547253253138856230610620185425666552171490875585208085898445633536410023559961251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25326291388499166518972499561367596608280587467007326316504563329412811243532455176528303998093896196284806250903589799631726879486499296773424224829448429182610832285358699630234571155985590390543720715647022920905668521355002529705218530981527470488753175819134172894436093252932969072546549556485677739787651442362891381546591434483731195935376081489419691119674952295158836663726673001349781583619522429427671099117027555800032789352975871353699138107874467058437742175475785793369781394593633553959924725257723248518796924753458756412438560402971042002164342744747850043025522677640166886415779278402604872268519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26823606036085104780929261794162924375610400780680745653866259059245009869429925473621117487399793314114762494893544664231537131262940597223269090360325397621568506386104182497811499174081755991314096336893827003010437587907560591678791500732155980412490468158388916261884697323480440829073980620343929828723991158652714668100601534848044399575930950296662554571739955743432045667091793671766279199497561930523798272797597075230978985578120524053524309885269775949815859038130875979966810773651605459162708356446194998327524927941491436046348097419632856210047782863261457275319427349875285632688931934342030903619121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29356217824620649965156354808065743579546109412991195921583235660369275401326743075557812282360419951686927172692440626714448187405716221536655818996650282815082822412550297374449119461249790156127926725167155503269658729974644609740977910815838613920372563052974418396586765934834859106048289197231102554380453266804352342914046038044934525864789713578785059378603357605049278386649905994260573638868291448864507121418019893429941729514415397816910556164180322688242861446708060808829631633003526391385239711702681146269665426209932978037837003366516281177268413735538464416135972425381767260163908622805937742199619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26540437268164717220219652843299447605967978574878936842413795614982043744712635977706010750607946131507421167828959375394735507246098401179098688793176189168933876201307821499712475083358697896285575220429763531971145727640684120290770157020128285990844366031705815040320381316809860817770988835584091488028098824807145815816989052477444177447732062445270271833752077509139458157721483314278928606857262801589484419575349157423781784759405260463835491884848357200728616010150219815388564589727036414015453439817086252725719966334689934972736539084544627634778925881868899458757236673489256837497811326117421511787653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25866940737273017850147953857203307175783559193064864742025453083454034584113715290440369613535719576226592274440054588293430971700602370009390427546342831317028264292407023415309841780510556676454872817298653469946992231060183494945575211816707361568497687640549433269137712319868702607237287753528997156108841125862930389208077748530863622937141296387321734646089940042758465795199504745669386246105033886999401760707618594053613360725314105655469898107614651471860419078673124487983591083142306477606651578498577775363437349008955263813037664881350284607548810393899236759278506583033204856098848431430616864649013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "27235787270601507023147336807525665304154652542982199634341486491137394525382256867906128339037025889839117316911520040301879622053228629328246720669502753240359098011012029481278571585300169497562097487998563204344165655951044244524560963095506968965579216970214272884318511411021120435677886514631596109495987273190489264755450591728532718399503856397765717343036851763944070627145683630261373430440753816812868715564733179955224963777564278810089620552628942384076835814984760814748098385333315163769994900292805805125606566503325495633024758958836504748584555591501173344190689298698501012518644236464670826002489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25214317707982510769261254090493588631077705762066306521273724698848491169375947731721567045556627605473250320018373685610790951218157260770479093656839252978789188201334926807167634874200596098235924431706791115003204499829863966308853283658942391323785966586929427635772062419919838362316438515103380633167620962894664387711254332062181993236628821879233592060935581633074259577076771054444113454968807347542434972219185835626299332560051210192529776019555526927677320522962975566355191967953803093908684364388613027872503003318473143891266852169497571584945932697756944269059797841347966803248842376944372124065639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29238909497679306255658375895270901473951552669528651023558334648582572244026796227840201483540828216215858149222034383440767986399948729716754971457313426761004939419639950755124598015326004031804183112148854875766165734230902862465511671756762504277421972299544146180317080162196089462261250415034330918280833714231540557076639608026903041745873829234750561557033656667568463244173720230924357028646522728689059576761840972276798864739200083984000476851372153799743503784532325639181308821818270938749852845199791134340423391836677714606598394504141306389639319405128257618544087143013827366962051581086736429580659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24280014600822911257254245653134326007066446320784390979221350583836890525563895164704382689963926385255162145212757461151565292106658167303183262816693103462812270284612751053652742827881738934085155700449621784684910302998855540406924138186809275092550154601877381781330791015210410199073984566734308022482051294046350360557010663862421313183521348711282809045910645301597172507104116144135354449979214414490612066838156015046747944379952822765301666140614762276521739321042383088705642959930853012772587312623223022708014058642826884112444212295597565595965416283584602667542531806403963901885183372815294616520859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25602313881310182771234935383129456776786982288496485383637141500229954265712946862164573849544465535236782959016434453551383294919530272023947277189819260300082618232566761818387020032401501087895082750397959383350207149335115560380692450167731688453853362253359881685960017607899124811613760963115968385220991137258828994252624870543584515502573970697568935087752823812318983947453117674496643797238623279502439543465533749189183138382980264737657194911683367384309582352083175166389646050404319397119112043716754584410796012683953739251308747255366101895868686559612419287113893465485613412220418067036531278219121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26363121279532005635065650701709458576989145390016849512133872853576403224056238487188331223313436728489018376910707533534826911160328125139724883604968778228283485913400908214939055505510501620725182288645414587926468391379243714861549580469577835323932178721367818590588792933262152685949840886396313858064676971083794751364261701938461916025145420440385327997676320783987271853927789285666243265323986870692544225320173466450309797666203486001728987128800996816909852893548297361531516069562079756081001782562388450210627966950985348932039578378941790808356141456615944977659848487011386331002343569285132034501453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28334519810878351248010789022022117463900470963557021366117153290590688312336703882002755749683104279035271529897339246808522049115902983339653483140058088995843781648823470022609297610947304210611245079156402039703721303048792759222155777021924865863280146124557535663198414324017155455982454342934349225258278422294310843931845804450838336838732017361343643165977443461435769883365022483434020902434425148778864177894823038731707100962061662378608033137838874967506426808627266477608427154488458501678287228645762330947050809673157135717584497640724946143769791647374659950086680935849732703118161099805650909959623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23574974549107000766895659445218963489959031244935785500070747790599903505352797153110809259099517636146264941833557597529413891505244756437342176988363693512823623031027895807970267331809926558383495678200462593059142901526780979325459093890148023705847458317741030714378571258566577026708617259756424537984782679438558777183254415694903287382248513359329186658659323618364974634197909464564490652795891081357479468925117719423726959542922053213127170102478423517194534079890259357381857207310504971464016411579734773827400694362631132048774085078189175971188963624816722916168729516297232469534111958735724695723397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30229071071977537203332647634648731959769553382502278448232542234406514987784412036048057115447580339347109365933519454903078274986943146646336321122086594688327876506070533350997375649619496387839029890897333491387833630554251737912479906208640354782411159321476044976344985172536372927174176279416979851910756675882130108217746082795736635845630544723679609141868670779981779516987107572546631287997488415456952911231636569372924545580799030412984446167689900767170022174650506909424812009213165173444863351516095184699161660344033992583185995517240470431097479969669657320518062337403396257765017338529828235990411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26020002932459043662480034490748765016768146019734877461729945484783501367396185785724089247290959874259877012236623952328665624373975575296309842898402039071406247044613343393261988124520099445488971996835848284692670954261579477862063926378300901107489090951813581316523537160626546298628908849696640838575937060843586010791034077346133984749644283309514451584895693915483012735839936488068046444509953317286752191026965024244156886595772631698799247215779788887325583340212631267538125017128414840578756840217793245497585555323750921144160440646384221916362585757391638634771522967926281938657964150073195723622347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "22404861806781055140076246567726322860084609654052341762383356274439129888630951282479946667712232070979207079895721344155697585876748735955078270844131769716225283759873360313506073585076362879941994545716453892788693014733394435593470342616802524180609241479886181212581673744383040108332822609114135226184187155638435965841977718989991890810896856284163013017159930949271051614539601703727545560120451322387315730045739135327813568743241454217480389470469524576132738187422871465056926263387383390331105427674175983709738349842200565216716280919904603172768716143985131129370781385050264721047515082274881090385391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25061055259848697164849280460138340835462179134133755419135589983775996995866083064049070084848052683651575542543788355651697574705128726374398255900060967952182694572338894636471758840057532918448460155939969593901026651321697798734400779836337321406231255778750121431231307701559967646061023060763365336068242225109972241652535467857567785821397346268884764588700129328537591844804720785748027823034406345463210826525120966286065725882642451762176970552114681945658127110300545945066348147647980089721629738538803407296019498488436587629018539931238208905016366476278705120929552304256298157503903224696469407823773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24848050346873480185757364083378466482611753712947325573727197933333771518110628446234519204351498725442601994340019415851249106700236377601232057892042608101982724300725149089736721115087067042162146197513453586198916557776815379170780404066178797636805038567132223635479617151165351096827833669158844911708091714949153217575133675367929158299757049868446215817586525577917545245443638592463276309098982353551400814851903656249488386363143505862623050519333735271445151633543799450647135259993592985352219716563925055783724714965938650859232709223387660194049662522475458409139971005483296036036634201597942971701629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31287594075723449576548398579031356381264841804927437134860154731918945547356564400842128714362498899995466369166427118011038912143270246307387162109238758802497313281451190469619865458516264753486823144362906797754425161386764207524690127077092093589295603888776536704782346909392978002087721663587355941895803399997715128727694763168826367839771658142605304254494284385144204464564645136911625048035581876131475758187477076243260134516047581634693200531546050673514168180455044267838956198767357414513038547148679689111853376224136428923395003860037127703908340803902651813014254922333161859691118145763307819433457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23271269236889381124783759242733406822149174226012831297283503116439512392686558419863625847966477668480647122455932449868180711927248258611247744747684961849470732258717627717263880192445443522032182758735038959046513683425991229189801709736658061098917430407187493221299808802866957010343842789136541025587925540990679146834374582478464342962285247113283252575134372571158252114558648788474170929739014240619130057953704276069748734892166368935812674422024120018734073794865236529687655864506890668253684807317184433118974310398131885457457348711874226998013733115783672170281049476871824338109923795002789231253593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25519851540431439411410538392966886160877123343133383245598651078840389400559121926336296971468440901493718786273002269327973767196930154405931633143433027993262814869360451869813844144171653403654017650323073410031563448452126236956469741314770917095626262350739677181731190612020963943102980456172891764879448677171490903992877384425582623972740579745681538508303090878101375283984482506527211852205013610339370766521378480496896956968534506142453874791145249762078607029318196962904583601629133443271021410011844046445955208147995883623415290225011750395640636985666754977943909631459893383435297196512985612717429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22325278902227512689474650415063646585655796052346325397032934584773231380575421074952543897700369683204253638192364098041075026906923265427268488435250242550484771103935321919868887922981949683079140436312794185775055834269744491653972307567144185589268723946258234991030508567136958801303452607734041324203508001922810934761635115790418087822112208277447689401192730195892626716755297085948739487455830421549522935196792983735673065310259146233715783437511695672905578186073027491656272544551732068229649737497317887803557994951868135715689274943255365112377518352238511007642519547451356991245153993296009213282233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25861828176163062326799521324928947913500623493753787647294416923037224068664101776676376151255455390041065787940976810974677588837188240180961472544626523043631737404072587388888781739110735874396524586327549321681116887839333779083561014929416257514581368242053129488620453065609904413294107723453332356510157266375173158814545297515456084955617456926213395647666055033009396168233820592424290999451239996407910371325593326694579913012250695410613149605132649118339224686787178150580083220464778833122198920114415219312279978818237806237855974405373840818924523847061398108316839745760696295608875703693656043971637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23788391728736390241553760335517760496573394400644754397547115395077542242894953554320285783556748693034367709300634252471326663833329697928008253703317744978020727964327597348249627943339868352690658773956247743303083851494388999867159939495083006601016394813417364512949260036114784696500480867018382733836438821096063934621803326673649903547501984319232735268945273725993506774086323642946022420325287862410351853885492865992964218807669726198727651425626746730562747538076277690864855259240267667528179183509083630475635583284094398394377635689964095207512229797998606728016785582975630259579952702554942333740081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23213656519096819672091368260263511602981168366777862154798803872147226802903698813975358654141715256177235443348289159132674267488209259859331762731914217232451253447885195433048548772745683692020513097759684323688443117334311341518010384759245644424041694134223642782237867284615159003409899361009144270271938983338611004345065332239525348036126505086557958472491068317656057231057723528267814124601901723404369903219094456618370770551087424556000150160057135717750951280334089851522036124143129656898904988680941090594589751771426758801705569076698891142205339639976697209314043358774629065309563013056383719843359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24139412344229583943968952628859388138761866518293299807503572705299539477011768533045869897706174655819814984783787474743091923792742033450217376374160463073835374907124335140636787602193151426972370643855092744251034490458604489601694942426921503828221715982068930513016219095821920482035655468831407793372351958187116627036102359021134042082571288552316626545689506289791527100638150288564154207023100844155215798046445388836653942571231265290762029696633953896232936608104728346536425984705329845275531934262871734687774454671438777776823256151279168074612120769604042041678709729768494563744262037915225700150169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24528047257955058402722690140098990802705964190071710280727069916393968402303894332469326956010242283092903277073968256478292173191456529637707661108626539386023899858012385340718385388950428357912169804303770492748077913492313144438467425507270010901879899452644932744644630915132759559529384874725612272032348336196588640023176610832011036307558742083666804254546498924390333172026572923339637153450137698679952149782191601086775014719560925771237166543277161679769258004506479686985375575007171715216212281832697932869824489448674632879669030984781091236193856822263006091066818821959325789898331054646673571478711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25662816052808737191642109104015978413559503545697969381448352094885055001141171101805266727907850294878437450490948182987514139591710151639682980635514232963685060722286831567883025100852786521287393691637978931580913270800828300897793618666157335547578920391900382098491422910288256660576548560565551442550511696745955591943715017337986625624504532082957512035020854432478027890402845022925841072882895096180678900677912910960026559253552530014517382893278794328960489683908396553816379213891768643984734987459753410307244994340742458599842494307930546689394901300355191741505809608756255894418470777313114557963171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28042465272561611035674818126666385654073328535068579273095971698812334933717902146937197637987023694161110635542954343614799844027313957786372680691051518075661976178158129655429201383013948604698523891074262468792518014378466200746322403035871076825203673624526872179758943477138889955173884355357491738371858865448180776624793432243485281389373803439621840517592537317382046559130985791544058678239391628340942870959176064245881150362335848669948783708958116258667621921671263282693643877607034553549572843303592524092419401571548114140461430243480911975661997423454430852926723377369599307792045110703837909606721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21844013684163803801983548196976116581118718444258035204207287170054581118588468649507225240055093231718965379602434378142725482569921810952710417824442889774442409643299355301116134351358247866838872998064667820574828105630708399148971228818310743411777840267760311188771878837496416949694769487698049185267347454879861569241013298793272698956365291024419952502165019421394899139999284389808727519911984310967055194439921936231289049562441143784481291681667305385984941348407301306255897631228769311739335089043879739935168710116036004770710277628234434569928830345523702105126549016182474582705163956683853594836097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22424761117730227816532098720470012128707579595851634988288906542696313504741923093843585782211493749939005594626750238499946913312830402183838301479558138272505186166003214042440460381668142264578716509468241213825644131703850559446237133385382727064599033088878514495980951779196207948394788840893908702958327980192845762913007896213587500731152025589764864414049879990070280037164609944892629796422507904561942141631035705866039618278541876265496804653302104838141468853935988286949316260588609239019666605745314481708046382542315288955870806154857996659846834972217313839441546525667363493513236423274374060100899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23820470920146569411723690195678837600059607433325007267802071499155120557594678695599353053532772481587089952549856147630617762258979557558105837530909306973612678854314894265183485679692851138899743023164054874346895676198149413648838158170918960387824906161530289680154448294440401887569000747170075454996673536697918547003737612121659727949863842226797051529559753443653910794869024834601224330463285995885595044455388651543963579820454346834027451603936574360262639776143114974581981899617245877487101204067124533976322501292336995487901508665951130381381893391385003563389102047905533167786006004668379950945699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22153723321395912905155843770751320160235916742319274330515668192015178980334877411069062446513358207369639447120906935028513836172323930832799257017441188039374981595153973175697878266969754894187971530989765581368326693755970870961887512667443360136106254202286030702564637121492717540814538745364803015363204344784369793410165388494838757159892017916635818623441180094260701064735138236549825074570169647603055930727270970960421713816748285927079307321901196785163230281812508495629394989111144880384392971031713859018693549201424693001433514208996204058391005670702596657652651188379170350808513522520975962267733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22533818222853579687048054017859078955092752042592714559212244683560180466068285436232822359375109878095284987138842311171198057109636968917636061152983653997219287521290767445454615809083100873581483166032412483500230851230173509663043465489400811465347007471054325144369344814609191238589049297407002488871567765406289416725159690987989803595950494985737414999034661530977570769178583363388488520686804177113229418844826562940713221386852549276143846861827808859306085223458388713531927864424256260267343460520299529540498191397190629583584591003349095685037337780756915019109017376540840463975834386820273180197129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26730317160080237784849146668946331431215773060416136300851908849388537180850911368988266744804361742701278952359566642520967783336398968700757963133316131843140614482849968841304670826381949407510949555094482093488589937822179404858504439257735443756452786707478085193999349547927792664727754458349107670428024623362388989746746082145327872791035315952481796630658191884005217306029530403741117160886342280918276696570726037095607718528932268416256081673062533063244682384902974442618310917502070640847899817624911940459935349305956902739589775689431875409516171959429415690268744039700939078652534851101711072512577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25380688617893735269197263215487096198679549292182607456739492299186640649743542992797431238317628029007234695968387311323696231952883767301337551331806413989926987846886271025597667070890842645396748986249380678343663346133508978714870664299508158951397025303839094853401401148691674539597920472728116569319562219186802515623325566671249804815041071841398724226973913446509474632474150294636455977985763530765977347275443700923415651388377873689291886770786210702124747256385274597705240339966794651119800495416918071863724431946450037456354612526144012347300849085897082467202590417737504787721433785629194037203469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19933831942260399103276659208191191974067711371615202837996473865921037004017576835608887099284886964764715950320477488621656881547649641728122840621108228598547266951950960685814359633414490013970312559997312896349432232812024512405480278912337306351587175874554240663012479556873013446333382721213057311746509796767218983093720811997238656512405298043751361748765197120663128691989152716850933450997553620811042911037464650713399105918018087894776704689760653006400127775994971149541548460194793916188009854208216046818125254096065678495122328613004443556070928535487376873093300073501205348285464772365084417149999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19344512838150437663073103260535019487266730871657958047662953746874716733922324514919137656458473415520032325639153768493094562347967484531148513617109347434050751194906482298326531403343077813511506184963113754130762150246768396633980317984495991495166019240129677920048293894798024784191583599005332803156387173402303341216133180701339526076109754990959360147473051011990711200121869606593562617674788550506618439775095610323747183745107349010349785094319033820601906126947437985788483217704840180747640929424869013691789672548483870327689805508922805556480396926148235520214701936658471775500937998484514468406831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31742276807185505086355864203671252149230353316407235499809698846473582977020167969787859623147149601152917268781656496399790474459077564492857104762967610687676019439658191303042134904360590034068427873078134214026533399536359040479145169398084555058016166127316639804267702286739958413315895999624200649633818832645554789902772737857425002882345820465477740564263865268641082409713950965020895778320288785486811694994077583684998824590227595081586994287409703619670564936180213261355161718502689488589615934485685445782265162429255916566711241206847889185557460340013600897188729186325002305275940590969950565193603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30726210755546765447700227484907212299898115253590584988419626144542691964953457260932633624334843743051387765548163186268495243965225785444683471378743078987371269894685009880799988700417144821116913576397880478783665112429904974940205927706648780817278435015346106193539450050304650607615296065047433406270320525718595806291354236598308914900533695026578353171680312142343279119137416082156589959687816206883179707201437028539523716312593545560993677959045834824541655904064849072650388145780887997925656281719482241607934602307721457438932182382363841358734795233714440433757463179526554199981322974658169313042829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29181744757340608439006686644519899168358235389351787277098538923998811904075048641652478557055700796031159281721139058113913251311699922506179908242591041680872679528502746921254219418089827549578267111642052945725854225854893648894919990574685305373044779907276056531434029592737470252868457598229601811639777657603032307860289642786424254027146539398874798500232984977170070912938943911748532967788739563542552627032264430281091473073065183824391683945756746218688620958591348319595577727898353703166621105458404338522708366474138824124762309926537662233281498255257019712573551776391281521166001408516575610609651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24620069518158010810978430261969844097655772833360088193411462405380910785173334642608183169770099278939488371920263073175969352187344102766148717139682283914330465656964164590853895240842918480386075173779309039079738291851336105185624635685053889589345759190008278529534646193172512630841531762335249140854769281906174919511662914574060906035620801930317208323267309168777072494294737839750399947864445638056881099001948350058884098011236017702713962914516930900891117615151364905733126876481109715964117677191661249849529904318846752421444925063505955214568859824534299928929724808789005542246850478228241372973383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25488913842135645564970108366279587415898020678342657121149670670839074202970832766485246357750620600713757470026755279631667019068213076527266420257897780219347164040222811611281081394502505921893100207321662995655532883227980643528934218305155359890488877292025277723009576928569126526725652791597572191023243294361430584564666507142035000776508664711120852013484815770330376416724214979482088775371749631429100351700778514892691128171346698483826400916508314810150478069236143443197472932036356612289921533172943496413280551715953009924868752459427553889228092093247645573820809135162389536410388215622546695731007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24593274603029559203217489181272851199720224867569607471557731647726971765327057866507125530839901901511191496216858370964647364026713630603947131255726528458253707372887012029754541077884704704381105635431950988020974545051690204548488401207001674192981654734857446440649433651898737280417214496664277499726792149587506624302244493775773915499000104595384064084953519717661846009236465956716913902314940644474491112194159229137656148867356009784505131387426256366577289063883337693445116638037451308092053590836586875794106496734795296708102318198771087679412027634293636609860472419410083067865026611382822346795439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22510851326293044894932933810869512773502450676087974613053488155006237481221158844385458486961989385272884494796738232676906829339157170699125794742639949264941208859945688962872339258097554254827645832104017492250193187518392042668762665062009229873615546940412753740047809662894277133308149168309557727462132825396424104714489394736194309020345813625979314107474078208311353415807765996272653276668197396898388528164614087979623168129583872401451294150039524351117610922896001473406234963808548150098474138126671837154755023602611204684455347607745329562476995465217235575323528532185564830636234053843642592386559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25481639151436895708239349245457986712634788507240382886388741987267326764780114113155085319138926048594957367786487097894812655168955065232315428146936545674443292168616292778459461590625239836177707828450532465115244144035933254649528064215524603631554638098469451698467522796509348251281382504248255886804789560338638613226613394771432909576221995967038196258557460760761796579412610577738172049561205093413967787879128375384357716534341919846899318724136080235174319693219697309125198464106677371504478085164095045995883712589500226723285524349708409346131257542692947559606464155183021519048395180682334917214483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28552973194362298530745589780691391555478528451075397861636995699520386823664800256530045801426273128229172335871571954453022171406173999105255575378777909946180978383075168424981284797267436573809091157915314801303899415826573863709955022163521795688550649505638009473689190682993145210066521135691602757555996456135421437062261377138129805726712683336956307751939106614968631438327992182741610734643542818810872724418608796983633479729093844337942292318390879014914849555382122277871780059848908214660512861361490622907591938040695418246821167707348647122865013116316081825504570414924338186668902798981722373375949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22041528342921077385685220667768630187938598880536292039984293328883295534716037314858208034742535879320205207486438662618586295372536144121570086974757365242098035536461573500285959804146767552442113399522579469666757850741574257388603427986206278267453438785214180042997350327951594068374002085509002163816939639948409496305482296303997697507024244721535186017386592985724041849827613462600073449881503022906165810825921588484387118343112642534090178383593902730456060790311686103300301993392336504486136547979504925549256539299247897954721168276702657058276193534979520484436784910281323486346066930557553308746581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26918252034579825731849414479778794969608443126247429490746004800545725367149937890155872966588317104909325297849608853930762948474722897734184031800149614524893916550891167314271283448774300000798177594080138831787554643952490774107275717148558528180510402655304520141201501492179590928592434274396987591425951405485619926901585110817534848336429029594328353409280856080713664272396540871976992612442589787448377248655787858899503745963357764418752779201899240872511869956489220283194765902058120644690323648400776378251617268257849818852242499670427840526730470684123373541477201831289939970378329250949681430551427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27937983671093753691991273288201377731629048918296497699750418914484831432618869458081367720963756372232231661778771808489063852932246151103381392345681974591777145065935997520216117415506238564723245008391180818201488412925858974428924408607914587079498866846559680086097666890202906556248662453277238226406889152869709394095094744836486890320818694121939238811356744298639148264970995088530691057269454923331112704302701650152233107248155516776583451579208834835008169669366167931153453368788361149825340345705951213282647401073076024656453998473680796573449937983844902186681640099096185670079047142557688301488013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26788449174745995065447524521015008693314126643100795273476077649830834221081082068102153622344275363162624805850310370493921085003123570659700090368296883017619276400617917556008197199649226472763234773116971494021036192316160427066136347830518376988447981658497544853531614813068224635605199975776481786237787897486305892724123515174875250746546189979004457852230259760483578518148733074724552941307041999831651082243583702676442776667315285785543110205209931734505194085854130472939444868585092295082404150772859122448357544700583319618829350677223763813253929597509120133394611499042400883570330542649105546478431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23763947660343713372392414708815746857222551397692986098117917715289552166162356146612341637037063623502022302560605693400889172920641241606957794926101393134080404839196522956168327757765174501649977065175653040585019590148197401303596547345754201961061386142505974093647511174163600565701437772608448962934615161060315615563934997487186840339392527977966327155438650762971864143383762026345800576525523366473343720292158874596686256958110717911659464132230692284870060602966602421960511563606200233459778319252117866374378922421766610170599627119584368040390649386859684935538437701041467156880735915790256412824199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29718161050081318268132985456142685181217453253667115359577007497279431412858207496383416611926031938681002195299442914879145187840073255946772477576744038086090160880717977130605986580643655796878816747134339829522396148908946964947488110818439551420320758030545543093973859529449293159006096866489983771123045233270395813153572632979434586816402019913447295627856506632318352192060662205464306426310525065191315015828972039290942179233423008394313969862037782944149476028819336274658484056605317659194788978683839422756122614925441537703429822601095639219540755760448195524403974994706029609092063993753573526957543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27198071189482358376393281898796516230960897015253460620056718224858223846866234026441353009846433309572282124875774263974290026004431828018478930636013591234789859245554820902624826696045758897176143685028428336079905715360044205879595802976846149538899969390829948287530661638447846103661614396646470688438116904335886739444933083423597623662019995054141333478952524438005412778932911461704037431853071749294739940820533527081260132912533225254939847134712989970858008401997959843225275087233707251345832635229220619930053153095053977760424780250119312121734904394668944436265102050717833749020263914580664548328287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27804297605105353519450506018091019195282131710483111141747262194409122374491566259850338068123337685147775463219386756513875563473885413990996102220012860407479092229516596643479545741914911620418373051719775565241996090315413795179304628078623201345703597858375832650508040346332779128340854589318580299881920652897149086139468081420500162374792083975113712447691310527540806665000677566284600041837551720851116158646664012599467663455069378738194937852388836396067824021559489942752997962178820053554799552764510516608422788305122097358146174243164858559793272028830608595038520419735059001415548685525823108823079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24225987311943814499892151085685603887620865710204661139463338577954246288465484598136361871567077318855782610476447105586719849447566283959968658732028334507355901954743438481705979699815340969104953730798963193709229127842143187231107721854820653196747613589303527857930704870846508327727763591027174698361265678972773616688264891801474115246210470994948176480394877567891374869817759266513205978945946636521014847767980009043360666805966742482681709820749983503775348670666878534418291693936338587764953484477212114895991399345779325535778287169837517803443106045854950329907957848794372955580032015009235951387669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27912106168888932283907912450219328513075040899313410966211580374166314308410747612643625651189047666665109291021948688102982135909549753281333443454119647910879733577676541947486429883584445425247420793125194195662596304364463243512373997373779423577186222834782725111457992641868666211720801391066828034729107100086004915643996566797359275416998445603521923486485730919995700946776840461270128439047232969745697385858279210370292412353155340947167023342339000627983388146092541897819404922277696375791433354142352061087981889401681527691151927827866059554772244826395326794893088262078479548999815518581937666994877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27640377451811822984940592751119185811184694984299003857634191006620644512717518377405054189425306752290810659791112255746375044878319281381010274658275594352211998851222660500374003837902255002500113922586269275976394270928628071515756374000601243382821612443051165264694467390987459922260443351656231298833142262120890726518517363851455091816426202760834061316305420615636892166262573155252475460899894544591565188074035338825993153280756185599903354244108347154515461630648400460431491757578607975913887579650307176331740522119227667809455278349851055445478591039585556884833331416172495691429276252597436620643197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23952952672945910362536962028201604636382000378715355449373872418182557846264926338965729236313464503402676148449360548891282988897932536442929551980066787895714044391642033754034317751606524510854623553720066284056328148518496513709447499939951219041543739764215529336135217132023686852705181770632197412454940604601905213735278887594884773354236795873303446456527046244448617080287534013151512350439082907649267833841174614818311790977479294353767048323125589476742077317433768743029560033982446724454719139706847820294091519175878014468836083400010888149645913002118357466542647619569729825062735322998458951416821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "724622845204446970056037187853759276313288634772529294460077369413720728492910988905706067539135635175316631333466731735233829174168472051009384568817973122516119960007685822252294670186463341334177181675930928540883437611694269227835648584698499620728932239867221931783556923146619142601603226421364461496496416608778449571206975456549123180668830422374753904425426239496801554808642014554899490511854589764002726509686197592798195146295757609616567796692616874162563655965505188603345428067910986310120030018997830880675855240709405551638782156053877183063563309313536776976247665260053131982741550458646058049074319405950018843854584305922340566933914601821500773513439375687704519695889031011845033890828034182648403396383962958433788501938361832756643233302022993240267915365737394102776636867905523512833715326010519874695667885773067392310702133445263103624647923440648557892686167652201832355733167631519833915086308716204879804489636764665230470876311369329866070994856995270047267108547057533188972467525046395727398278967207105497937187316263931130848972304651470804883894607858963187812345122151207315440214403752352373449261324923591375344463928579911183883116552051324368239286598311939502909919626485772626003507377043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "634985632841658532906968895723731989337328760882407188777398140137912504905406012263867336387986071294090650026473210864184308460626626828570283151474561462081880501520975324435454362618160392014682323217520907415934807986000352560224500500877074575756788670950723072193547567348612803813544868097266066271424198905492900224090486824363257544996030515555134073542552515372346926813707357906340897971354325673592581200069305635479141077860280579025717551691343756925354437510774583890014583785380508145380823102103888302699966527592916055081966142324014010125617343874953729331092164370464929428070537855776999801640430820152940000240959031889577667955696232869686264495003134091496122438532615255680075882224212534055692266652566453715999875778150078080209521450104290904226077630983118142416747313637951504590596846575184491439835170501861494441814855674322492863511682098287045319775149779751316320767275636662963728593630170005091675790654162119684934840202751001545226500871344282619705745731756826633532664781273353125536670691914554213378641979045897539663683071547649022784010355276037246000128318819258819245917494033742748552370006015625037335089669610289114893652522358934815658179945248589785599046108560739857657855973267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "712817150879270422046972163942954220848089935705523241993414035522340761437896260075761595675870642854877077017533847464842061168397214910919302435962424791886225237295445747435305962753243975763806813870783164000332362839919956296853234998382400538756845703302291326274937601750047067869271483677423232260420469572832212605354002532131365847545770196094622074372299986325226259757379343596197558517929250168815808152730942859582154001883605332667770303308711796889342898581776993225736622725463129035301742983889745571360614655125555449346527643895990491562901196910719395371184479919101864561125991921542905519915285462578729722605940050043580287992612023612029838464754558876458136689035073377553049569713807267267772448212473101452524712586652927135005200866689379675464079308764299903351289675585671944240992419981366565140781689407444731399575801272295355730804328409290288788745829452418936107075489916033216923217314123808283828393231312747622235084772435952247056420560484945512594144965880184743079208480066408334759179819353573489294362396232701988012660691284288350798579979273583648719182116809914397666371804402125553107888061488087883230094673626721716985896633445426231719672507832304027504246516754163792524744584813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "836476083668813260735152160901608168573724043862516453945603545010322239914535121136546002702533665736822307175998098202685338996340459749435851553003837007028697830687027211882538648892581644689081809637279025562190712047151990439789390893851046667531544305603800556447614215035278863090705100564976819810772066416491845780279098400300649607031637909494565147032537255487583561861405035472918215717500228412564078842665277382712307807777180765720491490950304673816233286230984934385628579422788583139059613633265683419554969218525080235558173522012573993622446502459664717379777769771916261082395738629972489919496078014560962055807358385751917457975502908854925821794802137790272233049508045701366474505049167886171704211543107790504725277700452345091102130067902357879530685881220430326740052052019264447630420391746846540859599558875551700210587697606508566150500090679316817550758661465465980965749139777669846607165492263914613675419144530924591840267335837871079143991052404369547015687392664253157677016212833390844546294930689529020209283965821177289647745093922492676982119012304808394434185665843765121114661721237275258497625447471457080987967627740851844692178874126969560562560636975574653598791282126841821942941091123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "26507442823454392197540521939264715700152266860581369614969851681704682131746060824105487937504973977455481062805195648156113574000328531732193343803354865367379403618814557961971812247236644955378377754433775070403665298449126039705501100010986416334961750607313961186679832853718583149276736082922084324331143885874561705396349244074571812815922127085708837440215750281555346483607934357275063503960599566717196779093382901772410765619623778198050348594634224452132420318976501566877021192811990180287839478256393467488501175295610160067849812337756586700062188666155553440930058126215545938300385762358728099613607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "20639059606812087320273129706192051268226878896714675404910774184750665270533340073939727556635617811473067607471421233878464988792624060180760381786361335644203889541883061606866179689633237005113584788709517275419789867930695582377215260880807939764397760021935213812824029931279254526063008513406157310303421335241062306624189083869570485930835270199677614592574242587410299396266594462296758313036272890042807217411786670038213547501284996471380590039233096823000244181700177275047788319624751269225200726126236882481487695142151897817530934491917276722378623018755014577208062829311701580681168334673075825343991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4356593907570586494684379189412338971520380271437042355388995965691897599540605098450528820273325132944735242224348927018750735469682244189089425963446582736778026070118180671695571843484813158446798187746766330735835445641283712908474346916185109800341158214479687518863056332822420821322793185937393924510157407518139759852373836284661924764175714294652982582890436335619595510917302376441731097289670553023990044429363823141192074792763370555147117388680038814664053942431076761463332146600321058865515716302643863991506836419909292240708359245246159294953293848704436052515014474237363030004491974198648010229345287821353861224020727313916093867427042229817567806310403701572490222752497867590526818872068674720226001306153315857367114267633887608312010861662726668147008875524312098442779387828327957074368755103854847235888760756971839612443146130951480172284742043856152203363866704166748999834170786077005944254548411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22925072703563505066133187281520344848315423514423612058585361681656625551695226783260149690490855113455944131570699797286544731021453889129268372003368517381134728239240589581996379945486167118214530159142715777221263933803590940330407576725864611143475469165158448248048845588927200520950198310861533108516594675403395160904306742761893614886270449119847060123864018702945477091103796284808856854595905538314496134339251612781461605455655120432128105206602463448711273892407600107470388416849535131923952520402848937908464804055395423813756543689213167317389737247094934682150780184303571783083537494482233748004143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20238840289910129646449429645817534967080561840979293171175201170778259838609813136469142357533310867831535561454176157175151851212760666311252868998139902552899178447525210075484202454077042887590783360218630762202868337895205632524910737370642935800411440295550609148185064164604408788626700746920564450263233960014711458866797272937207915081648698069066997592098845782547020442700485573258196776187152689496090624837711960896228850210513583732891575195862695910085138764341065004326398898215500561951040766786365000773857086210256431221659531786519759150886806255501364307561569199464292388677365850729610231609079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24455872328283272854227819519512013640282021625256155500939772740260300285350159257028053248272802228960586625460544101263864108938487776959113723469757403122589868590094459675253998928649237889199281949834795453903542408545514172875938479264168695559438119166295524873259011690292834563218211971544293766833281772608441970948998575160405047296811194737280492082125889679026272672836593839939149030483706603556300591743006042956731379214866113149481696286055556930918079566749306759291064839990945943396724084119250704689488839295514494631626333542161337509487823135840252850139270296622329927190011388442791319059787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24077894570721048002102017616105246", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21256540341955837911571807185849233", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24440058855274271481105856678078224", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "23463523802979660011727875648870546196054134176453130773011880455846448845924703940788677234123295712720913404137223473337617393558056439093858709090405500130902904007229379304748199078126363141423437672196760080221283980274216020720121067125215773991823092033890161369131309933856437068068980210445168605916051794912326302087874438850408083170341838077636359226199819465797616430378373463500677206474487080746791247240960505618966198125949006842187796392723631428727177688348307708774699873316973418177463799579789930451316106867962739594389215266486755266454782355966587872250580888387082658069574230494520390325821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "22338477309684049222965874133810764111275730587808867622694917608244329832328229903103825031817336890314690574917609609191094430734232411320227021907551886944635610623277808262959411485468334360294730655882247548495026431819450832875024757446311518338955352560029047901756346695916648531941703298591763096414131696137984848202968683518192302955902974447324947680292428346738527819390431709303848510419021649683754596610985018500796641515683941900901219982996330418032079639802267138288497366051277004545238728795710015742270228449143934278610899028347488603819365376678779540026760478715090287200067740529310837403813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "28129268021814709008430284214453828787038277859270432824678184767773593066243447664986606305478603379733725319839561223630446012112263726196288374351881215443201536178745936709215661894466158713281627780747160923742404914517668972139470565578779809629712248864060334356352070179120839860560035589441949654705032325938255783099879788088741849571990138161222419934161314283877196918413527466004390691856106716318822366618351916338812053386178755409300386562079105270056902959216225110718468150015264904752599012663800521561886805499629241442011666803655057651672679829729262515185632649720981900521136763990356551661073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = RO, O = DGP, CN = CSCA Romania", + "modulus": "24316344172056278124702309071096309583848922091944560490451748899816657351622165502012143083292873900079171137010895806722541938942174198691907165646439041988469691527679273182378895608371651255629942301053013775169778810127486002754594465896184170153985648622917526716300937148021398735210102582946814252277346715587531597992632372722822037412667418244844277139666235918076806942008521280700835078535856093582395183365191214550002856730856490091948411910530792969327930032809025451882019003943456685942070131895641710922548363164207727396853972691884828607580052902932390245523986516900078611700576221005008326292449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24521412339634224442876800034932827575814014216230734406431980937169499356201454628348279773053153815440230371509587361481441575683104223733126218090206809474453787239991483673539118687333964635863020198341713896162032817766285418899328178072690295788473053535478626630517377029253512871269607240939432080085318015864505141807254139525377125872405782797802736015814726020281267877067523464449901054647857841474384100469836568487966047309447000229461027101041489769487784931389625416940152888164163558520003750939466455846393373006076901389598656155128823480336725727817290535056004499822986843619397100150092215006519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26139004783593888525534602719200475619858410242207442237880900929109035877765577966639391100080401799758225829092283874559063984427720062638088214561495142536041973947077751341366605709500477745099933172194027939960526514933818279576931717193821184767368339022960008365373093743842059932951353777505038504218345992104244386181620363827045083429330892686989903999533971208232210154176355851948143859734202594965951364003024046174016284538702321307790654044421344795395839858111801253163345522213153833296958492647722089708746726526005082311651409029853931691027310055029733831691367971263106029816324808929798093623661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21367181830332598636507152447701242031751415304306055584980188834058687338203700709654104684925108880046091008007169324902976294543318864395736773217748446179984773188359838581724268702489510477765356685338487928352554521865619215100879092980873977354323551543715397310197634372791207936352130371225251228387101605950972322748768337132467052661043986939020051554492989388927949913288372732572097437612053344168061678065256734824202800483746972608617806375467191053914674460637481161949326081166912293097422963582379229669976895592005483655360294685347914446922346450176945291001164552585368444167659670711949016958029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24577970992380262254571783145213765627650915528600893388494310599005468666202525812097472404418147897244246575382333424626243831811490447270281971563889120351826925055941625381263073331115488063641617695917727975721641182045073909806872729504096454915574665454308308875773138567717381494681031429333204732092977084621608197431382453015099538482942921972838018296456203998573809851372252115843148608900855503432240110807696706608708446673981703315538002481213640283987116822623084658211790542316872440124649503280184468295127009754339090219570357635282032799585857136516332795126305847243725761175973756900846735302603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28919034159042301846242709035836419019008997746984248195602243280458447677375110394976463931857226013158648424314337125345896536369605351232767541154753159902242188525513230136593381749687113917075239205869025823895682679876250451360810618147283395610623792756461133694663758009852290940694510070324142336744392538722356069720080963494773359491544432569403021909271672667078639097039097586318131723094331643900791612830861566518969512570164627482250497473947184588313704184514758397872074895347181196419925194644473816801828376215976250483831991667249038193504604152414639491930486086202903777949456674139098167406989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25070971418373447515590377120072616351281227017669338157820738222008933553921847698920332175812031585504860026566075611066662681289532311242473816334981060331696753972106718210785499739381384755418984161352943378551990389157572030368665792715921969549892730630757088588851868351280624672091710768050340978643187311856110147984048642537549744796751251160980513314728392417787843158626801028616301061357688722619380082605356231603203285698852682042821804209403497195007715455703091328346604505706861978026323425226817161879485531893329879807994402396611301113021063406237359381416407663761603333727413239518413539632567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30142007540170093378789106188182777512028054101108972900169942827172169572577686900834826368132735197226811377349194614954149745015808645436885495677820116449221810741004256849546809952434409261312744639400157451561573040243193712301440456883293369061803517554263932918636841043208868511280518325551915635021780148253365783436507655185324162383494888548104438386608327195397623898772697241764801942677034341568400476040697542058940162240367088137307442527950941443384634191804476230856289615201527591157308243758768713896483753001257761031183320826063922911532784852451275043266598106923722383098312880935796561755389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22476862322317931869488852381423382046589023934340741019577897394649921049862195746185120671494186681089952634923132323758466466507953823574382962960229756092872493620563553302040602572493756363686147420184539761889954586363910576294451599356074127195613546641057917334039760773849607505597611244583209588335968027220147658012707685733590218911314671079007811167681452138258628467169798581242447497603067734352816716423076139886979135416499370460662228576469765394855650424042631691150601189493967979352567169776235458930266654766223495670011503982748702381232859769228827833504150003265529378937862881298793292060409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24086875817283482586770613488025016834650667315870304419337670836964075343663444569895324092068777248535393570479480360012976948905487019346304143442002736616720007211424728669671638010567937002075800303393367926954282011168225544756238628647798350320281203957457772817663087830504658695627866523646379573743729485380429257573728786447282631282697193920675137254336562038171943186364460211455860193466002989346131908328363002201080933272030477216264506645545892434951551343457326832872012368620622030262885742172379470050485060115847314854655160099534344977532229785711748466858820864585361048309349062257623179584181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24519223097872546073303585065207930974346207001450280341840838620452260784165361855666080244529964100153308900367004345004106810291904361065753566394816656408341870763823699759720794833752739439667677949866615798254890374740481166773213520604367613863279652960642506931895497763453754155002330854278298561320107654562266892192922653988448137490042539069344530552629585532895769996118029715237736809952951771754827581131789022950763393605241746444578954311273629995595904060177296913062108121733939788042691997679625697682108674969619095405874822795521541511229718368554759274033188005280101299934763256675922858204589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20216116686646060421522207994366080997025205900162684869106977898673272868497685908643465857837204740772555190927255169991833675985019330399976785411371893286667060314186227336720811299508504780695838744037292216685530997874461874507791558468345720087332761053682669974748358798080376071763974629584131637136076011861768137027964941426616909231345914002938533897038603064105415745135855799419871894284114849222813216312197837756420799528705252263400588310591528707081048449400457312350747506597040912307716949952569788567290530145511472863106999872883773581326849165810869188000878980699030128103270890578945206197963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26530318905584337283480395290206292830126874669573355302364720542990964063138139681636128736315858729902949848290728797627890275849961847910282228559266812028609113097930959596530168577958856496989741972155376498720804349292277528326636416697068277791699621098676250607402977917482339316219178799300331137725020805093949566682251722025006883594321227355005583322951461570767164701731449920546828691369824124722874172858906215287238682408366018317117098676425509470469476686394251571087032454159375947935454115367858932675271311522276011476322526030923189670901971185183974733758849049429623635132132290813252642141669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27295563989006337486774766266595107538073261091242442822313307651289052004298289722466542981787006401462278715209330238919995668024142260180018985985377068941571264288788460230946063717457431517988897404304686229757567582752606203080459656396836527294444413744632230684868292032772646002886758790236255749625384841331584563582451633457868608983058114666453602618494426364367444334901564224337795391258844544781080609141842436355412478740772283803397473873887781493379573201870430648966806047901109609357710336720874899867550524802415365541288058734926374780695646599165747281078601298212239944705878710318690853486557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27044496993603310476476003564542948707882561519979866305698035424237190728796679206289117344191029162081257447524818983677059895724420800243357662238488353289451986853517732995889152704365579070846818397040750439035871903602121690601700974090332969666423066857936730446467322216038710499594196097150852093840965261899519209384768974479149775690294466916558232717757378061430728897651444042126239095125165480695612155943469815218571884568782276393238060854871856172847751882342242901083350615616783232042236937168132901200600450545883711613673046296149508888086082571035443977452873133942558789961918893567807669581693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23457358925177661735293433916219438751940235349911435023520881173986914310170195287722064922237385073348457860515350555142967515920172956682243373474407164052444408803492952668444798639494948448948292747565093011331359706526123405743477235255600900959957108871412589740115365781421844620497360977486905460135499359624461902059840146746066044310091345991899071086996454635501997988562965599137312533114307965071918631854583082213718465671175219641063088772069674818018903439929561666158545096482404437422079168387244733737744257516325001421898651176206799055351608043355844520687833186798528808301202017106218192577417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27479179410445157275530391264160640651876786336574565827474909734920640333280212343881510940126443478688564779201848621825871943886667028449034684823955353484730655936683226508864802178764418195031195992449611147706653003245701684209196794781840859677947337138903817787252526057739098842761327835673497039879806085351640647429461141744849473222216642498516567612018326835984494814047922542962214308833702562719405585153442733116505314861998326566244109224029263149636540263310914701981541467258393589445906293458599068995651643410128513640789918613772079329676541891656260853118933902856298887170883347591329485502673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23155302632079075582100686065598627832515020522032683209064795814899868605321938739783771528040628960341657534937238554339155017377188273290798214101110110073697455672747989031599402787312552313954867990614051141699015465037695005551665054163371303597986450899138295285973118666343277984327612813979210256877424220980384666369105572705401662053018118101850682793893459314454690349856158845020541030331976303217237465934205757573267281229982456901914738974708949688126590728553890794323193165689937547760916013977770065392630429454068473304897245527678670458874274868385612679687672840185024796891150031110539814536929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24030328695650755711495915263864355568495528310998666864042128993117294435093571749556293383296118858347683742092083796286201885191221548500946511122471824784145792461946378262393640462251072418302237049116239170466503176277578727572297976526271168883438771667962498402185244113274331990930278868104826782486281514551544542106261204072420050791944356904599043752276970401955487930173502524946050018740236080621437963981283253332957698593264970941863193451102769477929877717981530695503778053416301529376319242043222218293187928112677663010651011164090520757272716644754523541404238083977743967447769530894662567328921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30674541265564246666036237188353853009817574621802966741602562795504307806962301015155312937871146337626349988603021579068393924480459071717935680026827310293360229828417946101587570096664101428000029009566658932380549053108974050471314738719435141618133593926069263185617482026063269389387792721779999023177593633538360616796600098600160957503156837730710422529806287856467733410158650104385919358174781679252211610591431735040258716770093902962001318825527594103532612556265185532521457899685541877534710856912074822977296508746669944598211841579126117848485755561205378484207287514234592051071425783253152560992219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28124502168520166985842764274980779010969567784847165480498525062206699321148350202983285034697072284752525606424553197206587121173002496339172770290576876111694955446582056226592840717832779342109760879620835101243108847324141801621402023206424502188801944269750036389375792074974897671679740657682481516574039495161888058487286902453981476166026016015432782132781135711886176926499422937209102633650596899681836567988213772769993690798043848825060568838372273227192126392638105927184755552682327524332534487501876947096865775572282243324224246006852993675344557048169726886636568748888584806291697983094604468931513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30472018618455477089522989506577227941807735119894487890955421795795921631629782373419530380122080962563915048079092799722780634246463974779486349808962013832486340081408346158397040075109917454892813885144218211268662978701790813003842437278311450588228689421301318872755944089105282463372287583354727463336472482328721348541308884123105284855139547267672510156285832053425818437583434920060125596557884234063375545894246535496768628055449138989100474520185686005701459935779210256277720247446187013216542538122404978270971989576824715317268310288858547591802320959954257867912448404747968191659548247385573717435183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21025120130449448170257022408537851583151452588604788774572063992766708558454312700328476571085657905873369690578207509607128940848626407466465777308670697762728879626638259714038793249348970935179782920205326738930957237887244385637569057089592332867604976095393935036647944456102985494342796596309192428816433550780548828126893658633482382075361839424090621512621030169790082566680340725542330576623151357751870198522242932926583081385535848451752966143349901019009695102194087151591017758211959702588118397340827393284858748387202034677020149657064348984607380891025435287290899812716134712380202941160778255827469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29190613881418726383652691318469546507284909112507228881189209318692845029274814345941069846968869310860742070092034959732849735757625826469004222701680576032850536595770918413868222437570336639930549633266194024745223677261014515368906845765850629165976456787635092408144901387191652881385882596915721701023925575182233899283033193820423037918592151997786484601137771314477823340838825057786206480265852603228317503815448118726612554669643865396821748757870367540990114051097378444461780977425013553710071487665952331410072156719946359353130172601979450151568453671190204644561098442207101360245300491480538564947933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25388202862579764209481881023970827812716756523902580972585858125811933385992924648318788472990503381408688417848216436230344513947643798249256625575931541388755843435584819601415882123925715725465028635688598010354497303885592213936809264064986712520330464711984703525252591968392909499420813600408557540741630563554365621510982022414569993147544790324963049102190371795789707618972112184033686408799960496846955911079475902766989655740519931660514651371260247080028814922034601512793301288794719851018002067408468407007969182895524770211950969854844315431253854069190974239072458910490605397963033359285973220998659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23902060887151197193156304490262754469152405973622654508234710632430622861693925790763052046497271638045894827744883853885442924159523482210335890488755266554503705109324271362839020204011772376269453707325128942318289646041298244308979812020813716257185908772320882015033367944745006657070207374213582065155988892287898970973226215806976246181188910665022055528109701764303060732441346509287988772700721555524970871799957271736651335883465745537654357590143594917439184281604726036672111644724025976430024661055906292213764508498935332340665204299165395521324226341240083946677028546188424222852049673743755686029869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21724548281463784774285941622108513144437060532453477839127126826502715919127326833206945872532409641092618793304308692329653444996819156836042701343205586788411563469437895636939679848559934307044939170998990129055869283035167203829732841946730183030616634901870407431411958043239382307721932064881632422714088368515282217589756690268804515002135246084045781360367649934971710227196100953603668482860205186871411209374187191019035353890559563908380952070405184906760998948539194642043157477124347475168260888755051989175785796746417499155427650538013516522298454372223124257861161744567842696626309399675125658912329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28351912366046670767476371786234061203597402936381158206237720287703219682864190303906878718476792611072288818000565262188379170759672243841125641530890447784201936869893187570430607115266319171645361064965168205296734257006820740471047459206570524240992400666812114307528489467356356895069383894621530006959717853030963617943689229843723384963687302786934557687716038493797751686541883399857317176287397982784241406387854133538216210441376127646629872220875438350838183948635900945908585073130046766987775235743390204836318508431790008507325110867901572884661449864776080939403469756716202095423360246233594735904997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25266066315676732593800147566022107519050386221698643387669578022128293671851512704407787936089039936400808876379008313838243321494381668529705328446060254422676214918221405897750702116778840058488366166468129764162269328893902088555411029774275730405709432158964929592940197055402961300014798894112743014083797407729834333877251421392061332616907457197319199136561278524485906213370674793473430961558520101466558942723823040204562211810884876123503239229465604679179745707843595423862749422955687517767173117809822288070153381796444034423423601853426049176773330018655896581533020070896628262722311127711050117331993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26428453085182520279215467492220041336734871713871167892957046783607688395380827777733085374553276429179294333245382521579066903769034696378657084130525116279416950537917893593600192977024929582021466468003587072317086616466213986417966980316216297725946373704730776480718592517398801201872440293361321196928433164923411908597009386142573453489761386956714927253471257410925839407232998248953842521555765872797996131413195767455117776019557348768805418015075908339642614470504490579857155238349553729229640938740997713123209841706487436293420480543812866967014387340824121497433104759536999338035882807021145005155557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24364839116447482540360808021088632660721598772927531438444750298127168897105989881269747615588214579150561657800785708729637952517185425258383470679857287194765998506180492748270423172883302850276650285270311894085362093649979343802147136818586393293468725548826275223810249660850420514194732583872293257378438503507041887308449729652008996555760372908660498687864072127132116084851670554184081356212080010983156311870525173315143412282287126580828658494878872825488703268354850334460856931307389457433063382618577893154724000317946477274674939056130747239104370832847089872411294182028530986174225385241245689264691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29797809642529518456701586423067042758757788787271527597722396610005036696797250363821474533997503333572383921874347701529071985314844853441564966995916623428853123952948722972208414887494582822694005889878408779837492060289852600354999914055164164790028426905400232936144341102809160909995691013726153995409711035792083206178066974930673125331443556919359117666001478598415122851125179554002429488027953975552509483502000987754477123758032887694731733077390857940516069182219725066805865751347539600540186303822145128723050541138420737256314549016898177948133350057066767908038134170220824332348241138191718119667469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21078351287668047925419840720109466195559671755887005017402214265285886144879793543847386755060159737828987714722880786603916140088927339633892568686103253910635828962533183892915725232921873037146515687499529292278297241767222314301677536118929368629663081737338251553993781287865494067269709790235293752714274519081432634063628097491372064380687710106062087384851245826204294656155182407695834576767608222161954357617236135646954794566814510199590620102619064475613563497653572048999087153686719257634150499504818203512671233689863418732149700801125832818942859773657076324444252499331072537490714915873620598346973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20853863845470679073504257583149501962529648428616227851370586317381059363520670141974089769806881014252057037932822395556141786782721139729063695128784378836447097155449756224944585003257256124552785078026333795993443954464095634588502971069847855928565682646922945987092971553904717623925041392372396177305081444467251983881259369059400198826752613666851894178398926699609693438325079290461218856610108755519855649457089788663526130623800367463423682033199362436511480583459197767138269088007957038468000805512026874009942237638306781859945625255345703723595932412565723948527820854139166546137507501257339054748033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22312050099196342139756347985600188958661583308926776340834893546968398316149568317407925374358394423009873356294832592184795789342908333232598720649413808458273708609102038689342558669426335177220289871669563122964592262937391388505257367413822413575681648245381932307704888222703657635183047324568040626496334369865009645660094738713987862208511241470289548474658962681648966548924225067100369508144206198948295425221284104821397163651036175563522194109473848621209280629695324853497692277531197357348135559743031323901092723096262561955482086168710195039744895104481752474775260758188670091891639040316872141654923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25785142128372621164677675523774853634694464181714417157181735128197379560708370220027811853071940827393049292016814635369075879762531735073937983237314344522385440536638713547777175690907849309798437136331273511973382886436047581606189774961585223166588057325416334391791168287365166311801319629763435288840658701659533668765237151421482787524265942318904714603382971290376546455955040209800792688288058445066343014343282252705694627069493222747137169716504690067120284899955949509488228144004181841077726441994625572762102823033819061906245598804716513761389967291877522551447827335329585078197417593974239011086383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29285453232984794247548255350181274318007764559713720882607940234979068209749040754419339346186067202504335706956297508163024662674033393385880065073081990292786289059479854745805467097053705521610040216084690869170477482178378421239161434977590461850793370746083200344327171919327488808799396613023247053183633748472002496918867684715721969538178043863028028485794023388460614676681939559951379712827020655678717590494575765631542113665314085273564782273049667399132875829378568142178420153439946701845863251588462879602390933150362498656081669045196281008447062646642317074885297864552310166771165359464330620397899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22945801570623375127386209314832007712049726415399295387277265814742354427473044642359961327631098898306011339010465002406112063751480178880615056027317737085151214755834857016914989142995329937835872371817489446011311419246249628539779379501055406797326990185700102452958600527101926974466807025370041213597097212123778752592243844022790644386518919698692296566458743385778122576248233627388654706193632183801415172257268076630948860722250726741173850008407838203176318579088952789739664483603997115272414964806965882278154101108137926537601277834581287785575676088452872750336548453389824685046831188371912377586163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21286688205842910122887942677792775367540272124839418345329096408802961350590043285309432977924327762467320206653117602303555074537127618497873658417805173568461242604412295923123817344815238327086979552323314774752137699778404190521148118594389402623095015204215338521809026695190211734094465598170707140378146070809059213516479387189582513959307771849527500150079437332993893843883404981308283547129285261644971436905310806037183275481603160043369619087547585353343857863254084407784255885045673900422508173873979902228043945260259712910279482929771348229757249628640504385673681884884969367183474728730598982609317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25348711140507901982980571173329376393112042325545380844529000774364392854815370856817818986499755145646710914246188681685744745899018778397032464497007540870180097749152000246307973809616743675679642486412374951595908567219179645580235915928139056844269159866360807476722243488705484859030262777158538408025756146299229312050267583402712729249306038221715182465093691982083104141071799073105526638999294683798072198271529720885887647424174700539053450191232688991752829595024647781334661463318524318581503727232959245642124065146065906452079207980945865901165062919444616504271705852665893032567290400125677147843959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "20581031943453127842164937921666522964063234393813324952364261135365049601062475575738175661167037663546172682631989434767505590782949066541040583970232404596856362692187704449821506912224581138690413134229839396584728674944520908018977110915761764850901001133601396273897586367972280826458684783277595711933153605479300286958051605876442813631552865963688717383953183093829855571805404050078205863367650034115958880413722287917959519391863161382050918225810170058483451889621851096542080827715254560321057493443646900192755105895713529213749989007779736244397737179054488887276913180784149083259322871023457989640937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "18475384972498631843182126165389857160741691253278473262271367853760892497228688678265171059863909346511896646951534688140821727996503619225865259915716897010190752576380199870797820962993417791742210680589791360184916435430648617726746855850055330506978684560055603162683403807105109971666625423247372347813023907999005512324713262086978164790599364313168085691101517555125601207296346072809517149513768646746420723048275294313432171967543984265217444860473313943325218019440478693156284628964936212472413515600022275740704102045723939940371871845894007371083707742533644635672235333512916910873837293600383645899357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23425338247006136427126781915924481924217353281206455796317291892395652021738673068087667942558999758631883071942017802401569904543784563849396855274063654147675709068179598745166320911362372811228306960099470942586513621454671539993288795546233163997711026179414111919014064186281556245373414996579602229406101339608858607811618188715200355941806002350895635123547657770084541282855969688698044576264964342985327673936956513069070125409790917547305472442069318369106091232038790121618312326788854135876677964417096393162659584574630922645793216413051470960056597093707323637962100745068865286259544230812295386821927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23597410883297624540905840495387955799550523530211349760664852774771513210184781115384841965592058763067699026589316941062809588518438925114942569091977504052410028955812887205507410679590257802344292937373165692032641155140292425994457509905964496745969608265789525194353967843970725012554927946801560550916620192593071275889222668911057625807121606906288231274259596800851477607127951271262687912166207528095286575197074319242488992428120929478273218303861474584742144091930356372722411920023873600486353372503133392992085920213510153853148526726525032497956355771668767375492721319434668407636366561085363908993573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25066554912610456356661886730048360357581384452055735074798458025710357372316563218704126730279523078148737449797809243871371695966796179020770710607661553688197201525044211276715236882345242655484342194094089302439260376386591227708937176404330312949202151276430837922593494656556273537346654871149478313943949539953790590422872601830109787414989985719962511390101136295506040586093429719201915039421524544858974212958267187793255498766917530339342907808201773324860863804922518853745417573065617768252242180133212540314962727770210215989829822254347436262537582885537108341206560051085063488665867090675831747221977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "19941170012642919533616923409733183489965169371250958025053463859443982527128976296070723648926498519531518353766652968400850602299322013344804430962318134058284468153475284260135898359432490061663970351853277024876915129511497008373183099412442635001313526752923658283246250195027788073556494681590641020644689569273896551262026274687051936363872137067200536454797468502964617563445407846645322237539104347613428854235743922112452562779098852084514627530954783035545772918507948013821706147575464000835144728142705960852872208388607399059461036766028327850539098944882932673137835271863096602533726474402888044032349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "24669380180127406936942377467560812843564872323997035102421964751596635912896530125762184955296754699944135109956575421341314646488078966851893213269995929761706403916882085848479767536662534070333593543875825084158656720180000521267696441951314274016794663575442268473114492385503520664513778038942041192852430350797330728544513059818738816943036085908098515890963742223059824852948753386970555272293857668085789979004927541984491488839487559961749548960903375106528074646519678744544428668363222390695888837732422041104332928159343474589558263459413883316611745682207229206870364425499949258418239351871048357736329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "19380000704247324683580803158576376179442635368590672538834035952742631737862671339339911074643378764221917222347170613109534199243281752229468419732915522759930015170673252800665531094745248456148332420520143791988465376930434626261903914155446163136916562024855033163887444691993167839411722200857593048298230414701217489610204945512052384166574483254486481672961675152120755405442465435974510399001618599252440059266438961826563167590270113923711288470693243519300931703512170903970150365747417632481149711113303586058747013023121651379197725696496509986800262990278856652505265605619785667273817561973146145517443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "27476279202378490169209586651761095206630678762576064166270181768526750864065964562484856068169942836793520230898891578393914300991194610077945592757635169301935683604532083462544207231822086681517644697886760368331578107897886240386467415767479383801659491209131475979212438724905602519533182658420787344341192663066434461960178669036750586787874961982543315375629799438384077397910087166438992503083865616968716643314228164479571805634111382427384610431201061829800590931428734173525234282419097608609607708265835984802819422963765668987757524461771225501464390312298160874119299790326120999887522250466955175430697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "30440172773572268165476205510564617718250605738448961332197104684306814339553651395470034520563514762181739608637337344337350998058517823535179348140595757708370482613535602296640520098148217269604281753531603459353197658342553378321260799138046924411053040999049540867396442906933202853935851513482542471080363799252296019003622064427231084064674823769071110622502903663248251931280007695175704307286031152517414714312922908141368714481605982031496393007107972670255219800375048621137605578881940899007322128105993431689353636487337940424758303438881593620548515175485644027407218058818756750080430082624592997664887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23381600700731096344362859753371386716845233041114288627428803148722711031632181124889824019348734035050715533209594194526782498407805993711147711501914060668066496494394989105125584223918101190069799875001363490412727615553542299825718378961947086790223832283090442056996643934262176406875324459746007106329334737587244957689446112912471445928117203002414476667072695788663899403804897365068274246428533051354797292439169390734737264794750405615020988825752314686904343578988761322897770514538585431971293343904267815826030828035008948834751678752734618048059551737437632217382763289046727838662595088373389272616883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23456471544330438570142067605242994034930846635067313398851120263508958407883786997019151344119425945489572562956290899340112753227297019246769402754457707225882908473196591729388080597064536930582449520797339207083594542451056102949221916363701450396446067845017854110294979795592431196462079972985732359350228677770052155383581621925045414130867715105411855203183464973550525049995520233658983894199406140706551913608649380687583964527914663035421067063960008111109254970450044406044857328314859263504159521248912441042657380292358159714487963743955509696145971202954431942778252427235944562304842558868403090306799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25501401779700924876391923408895131833282007405534173976198912618735418450836498823961292315904836822578745203571349035321496998542801681306224203699494655617788937110731773713301700680350530211329483110594765140634467639988963813671021371083807320673984272159421628320245443533574986658600180147396858080711561821030390662147863271414339907208745234531058210233782567435533519321238461695431755088322169509105280180783444745432013209836026939942572295182080394918931839264050227461495281981121030079042374840151109294340526105869634156227547080438294503700418758663910873967904045380654911275962058036560312492072051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "28172316275703331580919676330744847257482912732070760800100039791970733241963560607743844299614901086932487216779324623135918132198392307910561501603365790829041300998579446491547760625219000936184941369100193766495527072888647989162100533410067152634631893405633049488319420405995559721972257826663721648992523905643269426797385705570057426696664588759386576432948779432283724362155239796211678255894835993662769417576981227720024973889582146512554824627784515558198491929917818738088768859241662019724060358265952760567343646056951524662679859939980880610973848357727076400908468212941459237685281030228314571537393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23529525139327589576596856366897364545050506747407630485229025238041740070145636415189971293752606437957869192767337859696381197105372197936331199096118638152272388058656005701150773138234144551020174538886394880664663746183905032732473339178669492546876675882637206838575986590410944480463030546372632496126496849831453104381021778329925716899784629749925833325144975914867873999432700600318039326730329014727826812045363208783970777520457520471461356337189186194862887040798227385813828384193440148625882527405506069467866214584671419257314402651240009158996829159622117870703403730336031876789837392570690247035527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "28696052639290772002328505467030098021783529842463995056802539648674288228238227632620760359301294629256451306313706227310077974758095934346642172564677506412042560543245898493862094706084126963754199402720939066659751516481462031751975364132356357821773790526740234784194635624017754513657730244652941455067633065319165421826360831841760946674377794938839909149162841933007131100729188378716008727684023802314760315884369236465537688313711067943578967811208560457134611611996363360086404729784929850941701640046090658136216362927655052121148682395835582702970855280913341863549586268165011825811996658815487644411961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "28288442114099879717484769008088753933521165681297581265788745101199309512654283379737691328811892605294979889022013617102489440532078346157381929313555320523688156203836768517151277273840336321605277590926801891488221133807090172620958759177910606404093106654323105845105450394279153760959867801921898981117913986740911972716011103123392559447008662227857937242884762153726709701767864320382972269738400425796706421879480279839996936616047549859931845262175193428936338750553877535139303256349484838880562695791064054432206308983855469361813882535823977605732949931833057263589384330506497437343648221657834034711843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "18249409242828478689435773595630452258017830388240103055853389642568294147372986309604672970182987861502141962262873654964913738018986339984628990084120347419338241326276421495192765286826290690767484995898539277572984102451401725087993442432944277967437839784492194997747519295592914366108195346580216760710523882967213490103523714638948026893685374065553520963336519112017702842513246342791804829464682277173833595202455724395371316928279081895693021419783584796155344954889226480199921368874468604606437376817101156839195408747275846541691199305154852478599835620241361926543977354452807858857255887201042040102199", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "24470015717412695262983409189128712292487637068352652213480542517462168427476856890289700765000585064241402887684488766634257326025933590823614874010325378658659234665017411289135242732784845239322630545965013076096066088310075251205476493661239862674148559149766105133310917556121572027641543924779420760341446186332085857863990143871043616543090341157544766746648520459707781998263814785011943065858881542737009818354459162641191027531382834808346149831348678412700261245242320063947535881612611858393447577170469085939720702704092614026451004131803679158122729237241383107163441720731168434478837745047943400481843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "22936807306204140752673067056373361262639684488295132941852748200499461342340075128725120613486555092454158353938875078600751027003190115413679779293327561599860502574229618097631605711547856428336855573265521369861928038735029703969898529891473931784723243127687665005159225192787338337239353595726292833243183630724293144985818772293239352018763461066700316160666069424200676016918722707037066890133430787818234679614423530364605387594504418146645172101902352595243625643515196520280287003593556270295274117910252139728086198894562989032342137161389060738048714795617251069520228829332116245491570748493700689191757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "31054824916880168706137358178647333610269314296306935592544920277560682446140201110751571195366990515542634240575771724924445990793214582913176957256067212776222280660832420795480507931764352648653230420448685259513127144437353916980535005342752340029046484086878571280655929340640902697903180760308196686643849551617070689169084131852087857533988751963576554512379368503798390535010672010457818850548703295382282330148427497346126086350204858647640863683669495416664874173672857915821123021258684268898405543123938802279029242925840325070716358286333139102146730114258663114482556248316101594009187911711388989493923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23972301611853814354262731384231012545553228522107401181116154544855192634900820999113953234883103189484705001025145720790309216613625297993556588184422656625743090631381322555660333850903424394287749198795898780669778246217952097978262786895995584667612587464341823388331934008441747847603135265098548503835555351451885582564690238313917445745345035580432059101600835205540821370962087862686775320488024664518346992387694432109322108761403080438992779016707877683414619143950961554906344884017670159592752360466621063766665094113420712618025429909346904839604935019720588435855319748595078627630223614696699907961489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "24308324043994031623726176890377418574863920531858741564320506480367378953586282286798193710351596445575158248192533388220672315898546106074149522484967850513425691125632618768830487174478814781685318481731430547429639808596843122431380577920527689977189864382763632098972956985721889935003219371403574901298401071473086550438147619965791443797022237889073379184422975659282415809798247853522277581390463260751477655955395556866535367038410625838479716691672427322605216293741590875879455785964173928148066346220015292744931253842263353693977353565436727394903582679081302152527864409520952770857335377884037450103209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "22003844805403080074157806569821798007931136303942616403894080364471947932386678437752190918646269565147942810911907050117126677664083711342719153739938614515646152698831921205655821614451903111297034193295540156879742422419983833696649815823706498496973381952332931536044469564223601600604215197496626486924535270297346398017839268364299682557101453144787761830377163096715716236843029568317992412416421095726100953473319741936867492128804705032073910410689148870644501871239440510646231622044272616932456372877308750823694826981855475040213480107670968942957438713117736854076680876944604785740701972396488591820713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "24018066926223369447449569473327652979719976259717762759018734729555016167051992224742957342605711787052639486479244798126117583204878206540098208763679929860756192282492063145335017183283815439175152153548266468752712352353247221917447592766174445729682517873954878079321141902051492492419894208688304500680275330290514040885183349568735891967588403057397397824693245250769974772483050052698856782390485107243130185029333615807720728722039744594778886115832514952982955097761263788289992534534351927231098213990813354758444650807366901094003704665728178468718044816177507140604347746862738571719528429097072238899113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "30454887130218019685496655455438712739413367993897282693553907211150792114639605318104050235506720549546883941807214572413104616405736898232861686236270151265112527943065908565477055254500419203564674928473841654653288510880907106129284149103007567007694832690114935432565342920111455571994097442143086684274089732495398140314236260990345885527044582574725241166840549091826240222738502013184349043716971623412537275316525396695874553956140357293014320004161290115308858490461309319939536776520301947838140677566061255065646137389855475558125007554284983872630234093417499529943353949306650201179669139150764680320743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "28051738925162866173320944243583620394978293790169527812172165597453253090300841507059950480122168087722086654097713816450120820358793621120845096941594679913286933602045864244382490683190531318056025918929551242756777744143576140562738433049312883513301285510685784990219632659071044746521703829097932085102878792721982904678532966566902035167330027767309819079800567550569632635386936077035330624362251638627618989163836164720574421945714246453643667708760953831396982386660445189548334852912234384471450252557988339767666555730672556821091323050869779215260498243837745871969104857002588371219069256558162890743837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "28176642610507234718932293678267402345009568599965680161371180566596624239170233194292509068868181093852183837816589814518925139069733179289614595093544574597331689899195010645609406203373116746963701487333830794866225961301463583852827534660005965215637426328599879285526624234045924379634910213548253123736752324742239243215938706514572490942706275938742727212941428928703472066332832001144902084416768967983890263516327485916778226211773673703956715011512315750923467817053974828895060177618640566111141115991417851801532447867999412832541793676256513822248382888773889013364421776355294077796746184204086665224693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "19374410376821796064026950160102986225793385011990597758883629952649958340492780759072954489536958199976143392796780053043949191720530239359941505394805024659574515107872588575166239381163308589605599726229646562444197335977327954333465152970451822235111428585442136638562155402898597447743635004298980738467094416014956449049569943675578504182668565545178794283089865098459651991085190934733062084126443184543641047220457327902533895486141892967685128227007860987357564167085302023074448068221776968396852469356412291406692073926812285191781686654767422849843656837307630650460592908563062479565149423920974345902171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "27864151751215766347533570538533717463467089499844798345816064722751423386307712677794740891461441647475767071453235944030050919844845693163135957792765996610586393535977356796628567078389821539001338138228486172851002088099791762946257975868536951617143397519781099311375081696602307278000984992255875212871200001700394178787101359574182279809673283821937391593382656584068530637346585617288166537820511825161147374581111242182406072706312254402270762103414106646321262170918842406798394507931409452683614399642096155505063978396137113064659341999534148404096373742358148243851763596517486618982414670614934438545699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "20273492287162248385956744382510832998735539421111504250736328873333399699243883667844883654554855229572321349960069407012638888250757617793037822776950418129866997858981455197193135376333977089776152798054614381540093715180363325424743826795775064736373093104602557721487394535601759235997943730314194156066414680810816071107235112343310159159174784511831647132007950969369703367863124860597426313933204148799864023051800309776916869196294589939265409689136949242594998153741160244954605964227373207727536104268438950719529503829003091522183316441598344378435543227876910866193819186156339834259423588404995854671987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "26043408903936071060553358419245085738489092049681732846986059725059013423141105789009640243619512660915526740066499354537961852797072288045349493319034207391962460087730922266873315376535872133498948418553281761528294186384501730382278837000366410161312539319153709557972675894323249957636416777428024223230834413963263361385537157883920776440525723556871180065059950651564152809375964534827953539641705734031269850266156976085924611498157071808671401245788682256057829127718955198730059278098785715292329563336146530902891150596872936062260872773904856934785721071294905180632894417151763093245766247185735712440451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "23164426383623367461996664341303867268064979791043406419541035046954695620080015071373601401329862161625107383518853536382862547556394952944474321293257464130677766782722545364863260512879418091492597498150346531993696197964134147534383975387974913994319618087386639302403903695003199168339193083301746773675117389188562231078747826078309296086482817962500747410331546632323960926632677877131622567920620375382699678162980290918399232086022431559658887302306820181496303799193731700013737084721536471711117036530941361919960549826660668664600501694407277592998614803613916211792292115945070204919217956055321139889323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "29734466309443061721685964305504077573908744889545052190631824541930064423426592512107003196574670022686197804585988462161076056668099041330410866096637615925011663304915066486845331150999753753247488078122745844187273556984177734158136666173601611484547159535509279634088525660417595160149271460845248711391059182108030271194550459841669235241549893341073726307941607050108323262126228199996272377462059456906682641969704937902137626568740431401913770298657260661758968904978507535154633619145572877261235569757966180487429325581029136019145741077735002222490639473308246445026505010347561368374755579196076246715259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "24561019491908600622680146767774251140873479429655025787289255053070692098592496474439353082844669506137166502362611517415700207997824231073568977783977117133593053895707308969632512304908999110686216359233917386625549297861057413180039029112804058606742882879548664822339271352051658392035449992091171196873595546124444752227223727167324260356458211259003881895637432355222985265372435851496520893392347182636745940071872197033780127809861733418927054384662757790554349272250069990545898732236730764513086223932395792168917397792621943214279814865037355482248519719266386220644987345766877014527453186185133851317867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "20979490382203607202668660769186751425045717078696923433537859824663807527903911269407619696476286016974625224523085319417600408417831033848929743517476997465501332265168303496278492843001545215178384773454066688812280925637623351469653342781896942196857828309026960740845035363640605206821517227350621734254180079213630211182433260825167646023455263777253799928026024942798714635112073990212146425604720959970803732021251919376466988772241600593014849141793294251423560938613156089489070864060596619113798809531913490129189169554648081625707902191798140962878744110320921417086459502167740898817503554049447772883467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "26930028243058738079381315963528359882788861032329332138255350768038223406734433049410861391931331185900476112465976071853509163765728781614323137441369965224426049372861839882928768273901602772855711857639540616342848085363426810885896130211461072542533960499118178039682941348893473716397858112494100814759034187201838550609472841921988989051593488669051206881790835228475703762708252816241141258670818706388132295189735552721331232729802180815572830665716672566361421445121246347144241056158832937661332908019945694622438910957347361982687275938519255519133684394848536247130270451497602797962389296804747917170627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "20684183266828464232648422828076986273664158476213492804761873693155936901477672968503699626199154005165300678466318005428656126784554204001274536204425644739150914044038299960270102097701731498678790337948207198450804993179042877018431264105132484693686294835524424214686678519722545104870354815520446128177560549394375006060078656996258382230017502305937828953146711385719224062500330015495658157058014635835152558951817341315583843535214352333967910549727157227019312459498871406736050507021493495586729161200578527900820386808916354400824396971252231649949202725062463793707951407841152585068947053974449943465971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "17031035888369292131613218604807353433011826712034851552016756098165495165451717608684245298107506570866509707056948803171303625515362643272481895702199058760991008009586449243149747842312927513427290853653650019001880463836781031637604630450955675821207448517663330006967181672603722904295055486939302564424746889031896432005814852651348363130651380259337755938891672681752089346363270439208341402799254267446929416826899414116489008276083592485316690033014655589466652614935972646847505246347242194055003800411727945935667971981398729870078393158305071310777957600823191846429577631187802421362595317244393730386869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "26609446885450023175244281585669868095039632179446380861290195907337767957240698804450800408039770372225256540768835674954156659412864183374096753562684385759127035913116066271787518952569953965359148179473507394062377846565276791350411042325307745869243171751668164649828878706849288707189984853529331207625680307806219071846557140467592044257899672236012725525578322264132259299428482378215707143043160019082705259375401871155471534644784422286518385939356965625563881627290675963469270303865550889184063797088794134434941219350172550054648110428470108773182362885535081581711178021096444465860236648284024368956469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "22896185833364238511994247339707092568138324938887756681498655599129972711269362148395707743387172631008536447172472680466456231710061612041324202782174230464877810560966359105738864942724314630284824692384850932964924273674852370494935743717276531228605678516323321506895685020689256913034773803904427332351597705946514796920637170097954537935111327437890633122866622916197795583901934892655936463044401046509921368551426591240140577716779837197105779236755916688436435458099127187067248980702618713023023365131857805810023210374123461506536691618333500316392729639773741962699665855974804431717446379668944722627577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "23389467634653464940544497286230787979330675394693253418973642725358905170843047149019360710598258594774229962352018974263050479285205141436645188094126332033471697050966081309285842150034056465111945047285741957251554502748635966301924768600779523979485607183446619684348304223185592172914883419218513217184643464491416262891708661844177697578832747188661869368631750318161718461686228952650484268542497293093385457284274992876551276153255521733474101041026601108485841126416643994132915043350718135885854078783768733128636764660956466908430655781719432025085393088225417533601129801716617192692237628538291229441661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = CSCA01001, O = Immigration, C = TZ", + "modulus": "28038713275935870829776549285878219121731443538171115879614320147823184635023573905181096125600879982672423683566638745764055803332715255909976256455448962173372284991368174170244618070184855862617941162698027856616346973034225175553195761083215619262916986437789257423513256710727253802450645702990688011683720956869859326824562348349725377931198825760449192942973911023403384348512238544899046686269635731802582559263968077101234689599999922409879277749493413413052551108600087545924958763504827938797437879948040713170397067243591256201523711293611858224871131223396522388469243887838080783520626799411458025272941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29885826766376044632005697970580982965042055524672136437475934065240943703748908267466915539364852973143327683619836632405608922480835657533458718653835359493442327465542738803593841813103175243841893097792963988452452725140195083174444334730465718133985065848901799949136925175857630267831813018181808397859740590791131225554536301636210495512675021844316679453817278141604776356242940683103052798313904898786781440858133266148123803064042082934995021503284690317481763540282021921553154131960026478846836888582241982078925266193658297100303098601920903704162357985993738088574103345926189036903855116881650550378691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27862449620001224202662279279281602939441120888532899922135875188135774544674914000157699657667179261031059494142566133667629017381962518219589940197838343684071591359766046976518723124259318752668059312952239803786483985910807031381139940091749587851024122006784692067943043411798413266549832446538244360275835493161202878953148755244424535163836716202461364317943812016627659252594679443114330584748616215121756733616451256838413455468797480073240098791091975826126618679952504194424256186648399917765923505395553754518380001572073918441548887265670768665680272390054308040160614580976571355732971434449946422540771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27059859337191931107863841105094888993030936489531180124681303103866989276526473371116936205373328936300888984184413035986498203828715974514409278713276244517443230898568011769356975898735051418235126365969973970746170120859804116887579520015561879825455031807159078219059713101712952737006666443605475702471433517416277245926260026157414831595260797619305204928942877244158938089328697279489716223511947589819359243812544138959541668921741410015389345916824294949293319972796281101034411460850785889617488230637763891727430842413832931889974665480366214942841498317063382662333491284224382282164502859906527069286083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24037292443604440666757207714192019582495692215958118375508624206340936113562052755896152039291932854542849795827577531904369049598681020402273705969750260553914502708441828864300685082646758222114053191794730968293345440213574731652503062597349901600187514504691713358600399645035754442183019677973827324671070969851199115508824929295720448746713826130513507676846746131813070096784833068398077242758554824652119495584445089376372115081289850456541804387559905218324012232948463510406587619999426641454296324155115609003001208475842694491166531120423046555728627795850274758361138239327605574645179087958595205581251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21990061018399384719546639934327930996254707094360941580700157571704072462533276344273790082015779850862588483488069478231453165688222112510755902249278219359945224516038549953399137468298075302059883043550081330506424178298538402194869393486213296093757466660391679244285242824491884476488099034494831489214430133265350916116306346700465947373552686222320084148402753557942183373357738112638371846743402397733539987594887309646741241950386635093553893621548351351456137244064050400125957279615642415537631037773745501177050752902300974144246835322305493385222188494602466103897174024721897675654276068981273623047229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20751621332487332538300317946342788638075365428080049234297811400052471754326388503915675898888872666161887629056877865031505652109580879314909331897475506049118685929617194534248757499072456093042008973513264460561591743218560055347355429799390272501587329963195913504789306302975879867467772087414714126193085349111964580052522789208187963620733521015661272758624662735380508186465230894876309342401596116450825003174727858774297021684560274708335044387669996372191508708687150620535027642068698722069350984917748327185618579290197747494204275326036574934198957136422859255861824355328122163543334767077240728900679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24971930460302827368637839776680194495948216096534615396556901320816764411901192225210491754149396188837698536055605143782641712779135092328566111261159047142732282395593837288382039477510816290616658807658474315671995240208720223695629891416534911738450894295073929234234939305954129025745881855578665950989389903838176006861191502059623593658022852395922222898581006478149123662244307867029375784070236168052326573066588142665758901623804427102171018180724828404016165467047792259522278145436629437396833499252638202147697682072610339209747156898591768769531059213856510875943177181325607041705634656996716718267427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22869058629449540970179050973703410146983981135760480163999338978166295514830273082960419825941844669539446969995839762550124776429589170818760380573079660698757989644634940425234306613291456595620078706528581978083464727851936456822176499314054435209660133219632613818463380996781085407545547469147765956606000061259403444073006007195319727250700318990810799900375742342877474750001308133380007689540556695951967623535112181298079503062343039669176981392652601369260772586975555019677408412153767643365795516663079798437162169832665846066993126963006962825464997656172679617844132861949539958735750893864148448804963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25888592713202773793387118236182402833937883344384927419773730796381347337647927262443127846473591586788704861518414057353897141710745264769493680067453542348823447869391515226374529715416692937581609434267188395241175964865129150522849236800995879253984480927327125356119325418489361073803537048727307785923096660743269917002021180238097443316723830968853439103385337988891972922874958792476196590296860009644458059946388719336874450502053862364764497474345012936802073202459200384214396431595529743421114000745450704786605703546061488102206481289048192680261577077823977175077112911073231291243118088932953732421091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22226554134245603052820227620910591896671706432021290054187695414241221536604263102625255097199514645920074773427259126284467661512504349661810375444262474018394871454827673419718547735623846485030943373639059082689237119619624744495678860188210538298069186450430283306146895701975255373819655395503942389946260800559327903507957902892409037213913534563030179118183973421917045652239594559293374479424814304197093168582044486247290450326884773094524078753334589245321140000442469614764429503239899613095886407575345527017938551145872529729079257684330358795616880674978923998453962194112013687323442017019667597705617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28084736440974092364312037946609008612916784174647320364590262453201720393064240338278660808404225235443215850545673450283274476384898208787923498803615086914548137768061789541800514243965782207307715987874253487567856417884750662920548210437717319957139417782021516752253321941167633777028860767836030404019971762689801281742542775961576139794317497416236208654741679317993028689510859741967334683463686799343612766182720918029520160677144495240525736715509521067462274825998800061147070023660877335255127352045479090340903311566601056023477908584715042621911244250714980631120118662665086300499923603199155714550999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23013321009190619579937996222032397702644256680046902196717229624433525116184363435855778529864453429965185859368469932747102281944508873279292631225507142811434340056127325300751125462437901165485450249583636221343234904628378521465819796132058928073344482946423755217630917912251262647356544992114150450705021389338266729887020783265847751501576224534817005667791450103153108628301692567668196538511028944810160567665995905753942314018244979785580888719469710808375105858818782283399032470923320224203373750617529715071477800470693515093819026277276745140823513374043624301318232880553885671354274030117782625373201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21192940717267591579362087961470113070012502513214739708700210786052435849291231122462934023346060217179786260921343983414601471079374624980548027803162932017991585927758509222463635475761305139857806497409952174310451534432190668762659021602516070813398512839150778501957099422214649509342543893465264339244942148468459468685632135486242143892653190039066030602736087726953935684566042521482521954525428894835629473515606583440219995331627727445398316905312984617424761579460522047165971681949776774576780307569818053479596426155006618479024643825164409996053760899708020352927781841586291746197056709709006124479801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22377590911699221539204765635760386864155682432111750374588501998171492373044976741869820376238664616518240962546270880476964485128873586667086010132055730565259043132071122688722028013990881199567767382379484817117953776225953943955285190575561293268708783834932610917387889763056528228637357382625204814331023191577470334550260022236544291363567553859838870200903468380795979372042678333938864187954482022221785762742700392249099547010652733233307980849937953328275353648606284672334547325180960175879697305723162813367692213754614320729998514437027234499799678593623684754386858328088766269977782190232498734207483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25802800032328664851549829647643342107038616074167791788058645925158351672128432572849664071053251783345335936416329098317534456672825255025897097723885855029258656401337393807214397665709185942455001977425119293086374025930549165066212899064969535290292778508835938472450755137673221167749053524975209615990309703416240696684167593204008207867915938508884833940409236244381732861735304163163140120973375622290599070209956468435973138816278344273841033668660793908110188232870546862009671437127820825046159298231386765588868515023318880354212842461147045018208560224207011628010477423882429156929444610916638213239131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19253675398978493820928474275945011003329492404326841302683416041044850291034294785212538821605734748357691925619817908848888614887594865700466818874275948689548915797634688912893300375933180941304387130986788073510106735444320560676655708164286788331810636913629969695884482997542992170539723826350130364256733482284157247077942158276660137492161412770133384386031016788246123934492517164425959225600004174227216585673446537532349298301108350172505956541068936706648389443732297640424042855069209951917573295058691361515755103615829180876692575498933049334185455611149850281562599207877463761761691146016012396536121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27302174344028134188088403113061820096747721947490182656374677282753554905996978112828134737968063948607932628017977309501662375238084122047554944946314622216360234654041863631399141117433858667810657713824338500915302793497853407718880609774681753923158625037823448244404658375954411893332069621281086405978889541532340171995555178208998076858432000727050128278737677618418684296953598634121599257203873887782368994525036256869789967199320897305637607858266823259631568810006339352495653136226353618264035015130971592490493075486477071983418522564096907835103058503948081326707741646326897305835948119902245181884333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24878158989541189948830731188803060342340383302736916438991422104134109831148518575209507745033079888592161865474473334192901909799594470792026909400831017761971243780027900179400737303987829865225221287788832069238102060046718089756408352817248865453685945690984325754403171526792721122972029726953600322969913357558214629663504014910724808882705937504198395256647624460175413441642416209839153757717223332868010338279479731300594067604687756369873428714183013007199846100102220462189540286576215002573218745515761888113675744540175523775836665985853980512463802876634023045156121289249046325947995238805664043810461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18877200343444884828765730487798743230657974175797578247954199940688753480161411694129252993571119381216346973298292044553273429671253948064026844204977192638704854539130866143508444448221742960887118746795785507492425980719214063592086900920879577826861953332813874381177072649605430812597351033769064081731308911748373627294566801621098759246015057835389250191394288860880240100269101323646088895545115241945123033604997468654400478723838722887125711369944309998622928674472364861726986588728299087100212569962247287646365238571196478291949091893811327985028716665282272711081774844914718365717429934566611684875783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28094629597874191475909518758490332937749626657031561728916246774677288397962588802000532854636313085433436251352391150787289141379239157984241933659657440816964970944339811717352911184349621632955506624971380938891973900641825020608667190581161721758322618387842996083721503544183376021970239974046099556362991702905483083063215167831469258933822260503721366589246438720023466012576844169478646797289162987930169781984066145852968502682855159932250343638061353866062459404136149147850283764638618810209104635351167624514923249880877681071086130837366066005062200657652912938906302652379114664858160317623646697570149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26240358970696847015579781088173127051719837093648507849288081705230646264308548456427618711479050396342639905756837178991110252316215395793559145979712757581331707527617040627519289430057016247628815871580198628798915241896280930946308848418256267833828180388137429435449552380999954969668954871787612395772353099185966706624448437718343410102295661085953762122066048982631057561805047470109992542060695166951475417086431011474254724985734609759525729921291007836167248466004195093640957516595209421726410589080808601258479078559858660036753524028974554872539241341010946517176539536494008128232873408715786951131191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "21196657558615247243629695327233745976325113929705598103301712130076288226399047233185904949532056515148561371967433544210407373916481123336597010348174042282018396853286574484549154241636680426014842904819968465666538406975054183894263978736334275167095492489199880436130519013026874598065597291062004253105514065484155257939895331844113244994911160189697662147587433143837141195951537001756478740888649812441108892818649723325647078781582202654647934627690746028804480024769191385368007291028616167947686015994130559864394202185535125740847865189347664975563731662301643978438899963250307791373420375012010273800777", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23185166971915844441682416488200530097119432578137795949652217227241422402702948754958396383177569230935396421579217018882199584517167555506141291748718236786952930956869294000794278669468078322121070347811910558029217370967544792146345846190950607591256667078324044296140300438525436158124775547255939915417051799713296293944091968753898392018978913694935184183624208636494459854699632053698251550348945782632194738073979919789521770596328978071384204629101241797602543331835503851323430346595873384359959168848450279267467585581740416128492401492044666787947451295240804738614537725253574224434724198746660131384841", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23640896979710269520685221406439266106467712536812266574533200176590863805163161414561441960244508274627288889629503793492922589731622844966281126159711082730727891103700245359636524351523020086665292239024418788555688343628044483658688510388074444445512732858186862491082713398245077807282654594200845574021998925178659195591250610348177852755246338363696833383039316220993474932395523747571671086194027394259688843432224114956398391331983621724043538915477212852179627489550029994779195076844469448075457703915969306410079538759068884075599287033094758957561880643962520146237503309117256862396192731685418703130141", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22812112343310036895477676267430137", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25125802369165719571496907722247635", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21635064498870035036258612787456109", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23744726455997417385858155622554711", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21204182939212715980405140947949669", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20834324297979554991177726222079188", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23535907556847257870025768048819396", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24800427743016016641732510414857188", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25534707864908020253554530851542812", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22773280444444205846721341248173369", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23975845113131584126622062352821523", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23582636475094460417459941901795395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24985639643383505693120463273844261", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25196022276257393765668356337284858", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21133281962147112873726720387018569", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21386916862609348685273813953447017", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23690233934348330890233809305868224", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23829823209182424065931170394114691", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25618601137002311669851097723469241", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23231724597241653519332472607779270", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21097575989578672650164637393345196", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22914150545086953506205836963677998", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21447355005049811597741527007598421", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22250972101606919821226846243185931", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21112395365495312655342788780019518", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25247016813431987718270622782770748", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21686469449615956053537749582340955", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24963542171458096278101128575716394", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24317476219942243587209106052112238", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25821462815838357731967448957091995", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24798147285267759081045131402965972", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21358661961313740372382479314741875", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22056505102949589482358886098885405", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21651270112588239275869408678052543", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23043437260073691060169877858929742", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23085184532183192919038989476614639", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25252831393599264667339594443093435", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22659409950280700052507110129921383", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25338822034727325731988875500977349", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21010171904621005875609600467395581", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25701649323045035439083962581340539", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21043277637103453666317688545552810", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22497958738689364876115857219815011", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20941818932423310539704835449486732", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25863789849171157890279872893675099", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22476002687189200191807354033083830", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21876747791774044135882484509200938", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21782432435093599156688041278995560", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24055826838488259684041842090318796", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21424321494738706726342372070822807", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27213644854146530631589626324551405328244219818585917991303473399293794604188572316156288994692747302516843266846180215058099737891312407726489021149841888489238710622382694804085018425444267155207089645314398829619008935981669113960749124484677517972916188149844221246609891221294853572724931293767737788971723277686168197556504728962277439845226366657015691542366366181916255926102268551822973119209489890515442331460636115903722275423907125653592255445066021774440427985004950670802808957084623201475025464431622814117562681034777603505385645163600280128445167626614545938112765471390412338859700755845062052035001", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23618183267741841710052208291550358427218969739438631128953627993555011481809420704342705952591629211952263163436772818609436178668525470860337690783917710856737270272891300859597821631150397020900753414268282943709317721408273397015165900833112919925605335049350619703388867666084590021890130052016107625189181313064777480562037962708215618012439683094741339801882939507694742016197717164073196259735139382268828524481834863937512805631100973760597437375916249244387033458366220391540632659765022115735923012631742298991864264608217927732950865241837139953720846217118515958701820556334541506412008032389522493775101", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20929521673086070945928660907285927976646509617839640633565880370525836095566328351086936312698993716880305384648089339481408840247185803572496212677944132617198532564930218115919992620206933159030087121147872159697418647997003213864674355857401854773432015391274815939075130649567483779694500762655366608789294448199915566860620282297389955743973341722275343141450690774632491080181957814660258820811172945265899248085814058692337269839030697550000123434423759544475884007004351146052402727261825674868337993979116147723862372403719823092363267309035624750712048607839311641010019227702017676014606176902896778277861", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26944404599834217425355901931447199142940141282163525344233905216691780157956296316809871921965883717999745177330818801900212140693236900099640337533383642479939079814118808302626326893065176054745196889848470009272613503320623906430874999049357478797276203464370510421929522451667041260266057709965171330963325549591921888800454039263185600878813759221802307268580744588943808871758071428385170649477985190079612560288323052299175035339205758937723117185998240778803382328074162188699622689884978465718948807891195702846860476687171826506740393058328181270411000776710258718260957139080694153644370376271570844288687", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22856587642651678943300728046773606436426326806178478595943315434261656573214375060956148222285958568356935454008282211877286876122907998841121724075534334616430207282608497495052466201053753352536933865099677043463059518070003868564088101955842995011187597207298111437181543439818910380627553927629403648735431374184404584295651916173037004173634340533748275147005335330672554111740428542968584297421616192359103274616753876547507466903337848308024204956994912452109369883027286204094970533421873470659067367033042335872805188120554840823447771280694997456891885580109466256741099639991287635302786085726615009537499", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25976072859619541306089921024327934918377989655479550625909012336858932544241875445269267548733547294057989053468191226551406575510208478806702767149975808042969165101021619696434609655012003941412399612099820329230090406000777750829110375917140821965183245667382130380639124363351269655687047782893501114348416591595605951853991405138223485056828917517112251487428438772260802960226788217676799830400854174400276678869145430444253624989085861616323916875832527263352356466503927631534387883321163372193829875970734085996818579390533624241389360832006200036767937334637970037083329278679557612402982714310441914425567", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21584625190460939959288629235534166696346316395694202421592402564662012561037489166955654121298751122185420687305336977689840231218535763777189534073783727098565761123199244965797629615498149839855734725257480370310073741634090646109056181503241889247279194928900264195568982936331458531398360482760376645008828586008180125911073623151662181518830902763407673251870453541383610055600256163978966509159652731485156712410320453230437188777879020265871845188892090702299781883299041337035722313793458171653168792791666632086210665216446087558125281350069493164740876209819754125031008530020077583110361934071377306320131", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26896683724650316057216099630186842787091675742066149965895004499749003067777022792141046879220180650346439331137471578534484264903379680302284710800123067573890495747639122397213358778305448605002354353712459777957196790151689616058497759195624315290109099427884733454205344883439631069025358745419989163599826245145933836397346850292519524699990952311274323952578037174230909831140185331329639496762003907150948692347848802026893436185446041954424250488164238561077340749868407773930103280943041947174956991474709571611419428525671965890729714775331562210141503672436030201441977466115106855892494957298151872329629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20929521673086070945928660907285927976646509617839640633565880370525836095566328351086936312698993716880305384648089339481408840247185803572496212677944132617198532564930218115919992620206933159030087121147872159697418647997003213864674355857401854773432015391274815939075130649567483779694500762655366608789294448199915566860620282297389955743973341722275343141450690774632491080181957814660258820811172945265899248085814058692337269839030697550000123434423759544475884007004351146052402727261825674868337993979116147723862372403719823092363267309035624750712048607839311641010019227702017676014606176902896778277861", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23769694617776679815160623389199504253826143213954597817583651986426865836578941479616558167225365876236068727945482112595626311573559843756456513513991270296547506351596745380939054810763591170308273216265863449109415481539076583598196654357386164809557642938226548206374175568690208441446742390552770263336244901600066254461405086987787544347237291743389825706251746542973384897446727703427533385322899112820891506813068295412196939387050880893976667193756920744833645879563804793219513799575534184611459062226488477603634702080690115797323585214219188539415852409512494704736100693535127230026476010128534666316741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26057996331656851631953839115366912857234753889336119044555495655496957522596569203445517016660205195959036509185370643930251728841632385741988822789143581391510100497710744738811241505582490816311739770445193547161894764371676218182004242794929182666863621360284957587894330276581373042484171497883395855681976572465056330544605656189187241416768536352392219187622244944264433951271486620945903251016388523463471795136795414805350535378482525464247591919621214377480970478456641849561126166529109348502015476217340042057983287145592946121860675824017732869006482683024694983051640311048513206883946596848754414285049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "22520813136604925645390657552068252951231853024257499857236652197013668142092414269334964545432525245454198833228557047472455288001874836017777423568783794374446984061834828765396656001156491655997621280751852422992307668441120789886615441310342622403892529328062062312345943165738962538269510569714539121338800397994926725542632700954905955960902866474215231310663363571077431214989612056727202758585102795094714122462494534961891185406653092316161101654847396096454320663917838958435097465097101633000996653284491699155726598436934890013307301512336308989998556221786459774117010762842262927316837484776502961178011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "23931181964137235523244071616402124795591927940066315849691172774710341309893512791032445036620296166266268303123448707818850203703520507577683420319119420795377742701354177784989957068543153563787205126220508121171327899125618110097350729843115230646996851251540936905663578265788560255539854126048868470499695693370779283952696460655683284846723854908556646590074916235218482532089123801553522183861125583779215545456136978766486560904279954819647054298454151482988114090704885508910860865036311470821651810766949882750303533536876584133348264108689525630991170064821403519975086843591657999521728115762072899306711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22712194441601984140802526225680377", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21062834406594732810276309550671046", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23692501142218007450008310621668598", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22536677745416155782558064600421549", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = NP, O = Ministry of Foreign Affairs, OU = Department of Passports, CN = Nepal CSCA", + "modulus": "3634804952856138014704354676548719656432855364402018806752312228364173339947942653095872788200921262097150811936146640177602667073461174815114387601814796141079723632318079496781039991852563183318661187990262979395293051346160577653563344382269659584231029999679212483991207600750137067875220237504190345793271042060328174227233179642459302200649854301157543223472524002923590533745285291300090152638654441788294802877959445965493703979561979383482915638535973242109956959647788879147196867195990608477964284466385527008482204726143711311704426031574264352531133094982316078807571495103617833515736351593996827786635970645282542386084284981716571837657247378530939486477465236292134790074836817855713598145790876438589754992896440093222971369949688749367764486794196873582397612459109399555218284346565414469539704014043257310764874144442368404169254305975740210832505038484573285160506279619637368590970303689362504799111851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28663646809105780742205821152879848639848779333597469778489448108851563271396615945621880560405320927845782350240718513141120661389209080912634909440478154239547973160767197264690280437881857844809352006241406696383678405212079413435821994970196350141639563715882431210120260918402333285234497757583855288381011654746089349792084353969436133740721217573419570690445530877636317052052739753665323605923373983623055094065240832310042755695821685307290579732927657173073933823596657607478492254916867705799976634093994490146312646267850884286769442633720797217679145630609691956558066391831055815720414756747562434666781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25414526554854077607457873800450334764711980305930917455064607293981346735734624558110566862373171775225409283093434923356620032197157345725500687842404205100231097799885523959570580916880518202858795683169164906448541320511196505852958514162716174847724996222564803983030399340321517716190292515553488876845794476606778933209554465062043826265041436390455419780253655808551086173879544998368257423000772745745997118817097537891315890468192743694956817973124999429664286159960877623669529639175945949794113747690156655538193109965536481979101532408601243978529851127421562429626696540793791833798889915455710546930147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26582797205792975728984045229091130369151781343564046626534371770271111298067908861562285882522768229483168524373936844961221222874181769834087597969466325272749837833472877699885002894191134109967557543457155220183416880555791584712981621848878381481208630716794202715617909695647766945753464966739664196184477162112759743027571012579930488379284307664795592474553239893544512416802508398440033595465531520934881277732747589543794840675260843426528018420108224074051711633067122942880833179867347697982259295545940490118244368311967484726387830322535561240893143878064754902469845742991854434756370527017618108764897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28001203256641151045738839377324175892159969997896747991960195926958694265178811124669974485468679992319456624915689520059946586088048926530262332455149882952448310257912757526864707951608118223503620917129593490750620466147358253125989836169485919520080930876285483568151945271811595817440741832670425336666014154415509474776871047507347370218779739834128270643149218706550293999284502844561198226608962550422917764322879700461166848333359958535543804135339119672927817250270816050491760524805933104775103251533746330086558957585893692702192175968313466343083856701931274421491299723683844476080826909807205844762507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26418570458792029535238106961945825562337382013686489932628100642582565272423653129054600039189310236209929171905733317437773387132838486433259653299818676503391187000907548969495500162463794020405628948573021814932122473851648275184502137766436048709339392676389500580661283700310612526699051296540569227549352173455109621983316688643966124772794214133259623813743380786924464541833793406602199525607206833943553879161551744913573336721599376892676049678354563984625773713245109628153508555220034583725764567045181617582491984236429869038998241862997186758228344433019306781295823098258330696480640788591976316794739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24342703209600442553627882601772550957855145824755147546885270356897400198737781091248326733825884844506363727061837580137635566826331807841689723270744558904777914078905908914213487188609298430610089021987787472302220567036539871127645721228851602504692640435066865200663486545303852057322349223253283704951543091012200875966966943872205471726284998840866547366496134747989041108325791647358144177817270387413156897217150516659261878299603883744346101378341423902981118114158571684384973349171224078666148360209888261562446226146380402169873419978019238332157593073663728675836959160810681321219592467474698213384249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23678912805726543269373195788195768967496793330114981874528747585608705884385409554864537416128196242195612592177181437466849182075840572629670267919315897712540509040654392520223728523634569825712158345622427694317593115116722547181622559645568052737893035411747067557944815615443313684341232974316323884483722632258241315214106013904200489450003699039231671045842773258843263632201313762052425505666657638191331221669501175755621957093303556405850656069185338175755445717037791367599019207771454968144488072572452630737377698820996545085541823736873777521398880863030544324744564254336565200172111291266091045521023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "32086409890270584336185815639894572724673734303323567140103784726768496302788769728357970080547964658335382671619802527187502299948348609477372489972753674443699277460456704714819816046277532355126603066448353698998507001190059777527058343572963400237378709511067879239504871619226928929619158612154819476737338121185700682350388583706515338756211997042145349704860106814334748757750495447301563797429166617197232592227767236157702906844668923607566517732858531645888939963453965847818560088779747825226725475129577546456957711533975772699768091227248465139639370141281295846883406421802891140657995428864275243373183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27866588825485030570887525370090329097938250214572827212623891954148580929732077922634829131929283466872136961293345491428587265013414340988574202260670505935088619234603709388823594863053377176123023045885292253514610329156345084664672619713168071249356279585571157086548688234238136018021990052942646338316355298256162438209425991218304194690247181600553653494199499619160934425279728474717645088230350023430724433321737716928214108769972614718706596691961880603320315002958630531347562365961283116374158204495527604217856642461937447490837624910740541866000194854171942032704408762696471661144285306167074782412297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27225614141571492467526060257032338187360848773078744132700424602527223938271769557847912561963091830086139203017750722258824103831508694863333069276410052624602759237386470173055411071922615143599201084494159793286699901986336415107454719129921373876516238523471119971860179978914235024984517504421343693191662075956617210417176337206919736926189711717372894039486751372510594744078302914336173868856703237916405494927684038299676518462185517760338249781793708035161340178254827697055367237835903206784553175624387955788943701520632649131772732087363029961508372396731980046323174958663235441215267793814382860693793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28905152322149457204739888528795421669695048331700805894123098081435044206408669417884527877264786179084755495471551668287900077017196649112240273066868552226448272417984673974623212392327745827424888910490140266722155527920695400693701092905285195030948791456287422941370539692407466963086492822491184572809354471051572065674521592566890237162163965440746201403170139259378517858855809419602132199055330858183914565439700760393894596309143531488776109687368082156369485113612705895877377089600013510928774512736161068900970159206161377521878280891706179129692554914754904162480810482331547179352041639304401232511261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31391340900541627985949843713460607647399178123340920234380657585509240684413566021958567527300121558245856762983342562245217515911326666598260859174433557940069948436325006688266556926382741316524835625725015105654836897717944789772607723828211805408395641792727946997938949565746905034190990249327187056685993787661786095426853078166927425132273854648030014775473395731954275504106950419455380715032506609010388025958377298437701629799637848020213170020432725948947556386747565973748445449749886500069492084296474548373197525547856542148901091809427959268091345818544938646202182006462590905456210460485477636492423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25386178502298439540255218826532225253304754402093298123729008389725675490459583136080787814216762256954599728592258341569844869416399599180998006860248586998835858138112430098429565053477011829435738056112389336677522775966872638693539422602526962717771435629546071007670804761406371887108228633053465092623261175030404914503349262290168039252291326123177106981214640625352204104366421633402132408596590723987697698258867181432613924935655532527064441310466690165916465078027980871127924229886483693200933882794433531079949419363405088154416301964902298120133003048754848989035093664094298023293180375833959780383853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27511541709206029708983656192810771680903440768578366145770850957085413317461011012240956597292749144566317627874374490240518494863627496511149941830945163697627999717878507496504695537427367367485872850398601518138430514708794584471095927884650747749676294070639909219853306867797672965341936210035932949664553457496857617762233359450948163903064209616464037108845065349362597299511813226261111634600358169140587654697354819169592297029327275326649062716238063522537888305070326425407957400164173759228697497940542988927258318744695143378879879993793691162594798717064053721401603902328020678180169427135910657835489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26680373110754638141388150309291176038895514939541593604183254158655483476359198531047671197556338453165295236186576559895968048925449710550899400971720455790742346225849060367546964292548942199248361368829964862642843655437317095794969820605594743595305052750783091805222011270317371490060166367763997502238861576022494946288421266000743431038715446074144420469083811312548047165905816708030344537302688385922322464066173741529399300226810175315901897022899934162221752170087382182197252861983504125870292249482823106147484035735118698166262426625416877999317271676844145342006110277189327164182610870222159514315637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25206889692566238173624968387185533013663948122810829500968825121186460203998957785691025818761678648992557585980112169275261317187129466512990907153469820880451966363051984288083754959970003376862281534418089635192478105640483697496961762169110078751430505801822928044284841954065379372318178178403666852648102020278347399519896304015541247749984704092768077223888814354805371624855275686501654252359606747915681174922375320710117752133887666184835810995624561274276023935909632026496018782568055251895821144883362242327168934459301052288636948725538960430463016269762008035299408103429704610603970996111618713009901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24419586676512300510975771531359090827916458845853902582089693278266670721371784879799480897616076998667264638376462415093939576161527117958186391495977008326613756843766767523919786021898882762528736772874371071232065982217595642210867145547385571543303243334093118431213924971320657834243021813286246060975298245043671596763464127730035806251013430812427333976647471270091133893713849209453087204270756028742476177828107182713423672140554547798986243390964602182864849008958033630794168494656258895464322873705515913879337048672220463727559202504940614717584890323358486209220735674902121428844758227075196797520379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24292104135124010201292264714648799211142421409678310457537188338747684649923446032878455914404222542990401819090051944994600762661255834460041669612263434135172626083769039267096968725939420402893912615791925248122699238638775458198423478433085424733392044935855267272205361384887179267116444055171378687098077051629090104726645877041907322378101067350887420284921008823199344095250904930551929961019460869807266601201815564900994720953189241995431372932077770991387612320668845516860572024742921749479027092175131288599356649315161701319028784499845452216404048053785482115831059862442079679509434802876439442200017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25036450941605469674954599195493759388840525987980523586346553478270009330132961787815706990105792951303031283753043906616195081079799035825156504861570477918624667270736366932102455059647076971407392989718957918459814599070638818046441024077489236280700158806850317429673368788671039892402839505500663130933625670990654689879830267103868315324137876905799150411022184958911050537513027044723571553569387314288783844399214119835422278017137815587595162706592682682018245117458443774861467814923403030889794065916021685566672523161268224133616683966211633890055301670321820241564462168050370573189893106970076544622277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25067577600127464965809224928296720972732037475448721901229684373295543885520148175357116073179313651024980387128163071185617820935470288181622310602693643479332591451194423647345599805861267662296333320560332570135836465063235349195746044646122267604577770424729368976166873940119456220575806403173339698004348431578542841715422765085614977826228081546857906318974012912062168836888187301934705648488023066792289235499327337299093780498127036523119109634084403087777641506170679781662079142885827036159509035318286922569252040430407095376157438821521345921778176068503437197705259765807156494872822249821322239278571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27924297208415450685718826884730011709320555418465930053068623038258943218256901049761435211341529016583417357280681218990221246273237305843789853479376487398519067205814302638449323713303499401688511775768320421136529017273429145746521008067817074857856414329263738414180029454660045499544455045199859956829121634788229620126875153538224391262391064148654041233667193692108361127174576307072599512350514798322805484608963354054518160618150999796243558179076407381168229794975367148941210553966935145446865322285528615232436683547571659195248525339712534030717808601832324485311041569119665815274258650975669980629547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23943690596776351317153968740700363344046408301142461474822817762423035467732814711753301561091764494625322661065774941789313478880016014442136793626640084504380766178299263917177360676436604196474194191337734399455483765455379478939632623032943345173434401169187789749539641276575929808285773459908421414606738184719568344383716270720073545847927587639529852903260003623534825576291737414600084758101347947220371580943522883415826358184768209450038193737332552682148884895806649637952732518160363181733556485481033837623262192993152684934082898725941275572825364065396751328926705565352639134567974615561880653153603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25893834147004109506469348656343527959566798757631654012154374184805842323208173630313676266800516487997331972390864496437558491567009777891788622835231141489618287878854260916129795847535858529155871226798363825254041618135478847032169365776088119471686655726214385260488369964982959181293802354030498574487496783402922742962086819714370246351986140616624728030238698799069647978593617638551051088999290679802956923411430946228458984614942288670745307056265897192299329870407855168159030471309460489057643780753624305871460804912178102712447608663891572665459171406421592058941783688068877539250325602015949575347633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26712802368569603770030578694602184559370081820498299517359363381091203504243335933532133236667117653885161499342532740535337375039640747148796624969834893897288763624778339755808546314885137873174227673730121056946764712126468050875950486922263826925143576119429283990377373981692755046615101117287872576613535054641291926028034738815011605964146072600836037438969828608751238297949802717113262714916057635754525000579431442844971474466324799505056925114700856203476752973449093634780466169902755402702902789200532816383319371499618100608969355845677069660018108852393350437469481834843545262020134876611946664619447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22607240242291167578645965531455399327207022638413303130650819350225478408062653669865715363312479064017997744807589793216862104451159866691478708872394216230504722780383618372946027676281974537583356120213019013616949550110619785277090731975847485202468133332251087673816573716178791827096480653826435758611732040360515538067744253542072785086671583339422652607503910332502261833203895494468279636809298020269711668261981964234961601072900931530776052913286928621528669854589203728898200948024027355559332736068127660560340456317508308227453385334510716655231784385167751944273677379373490898594362184829982610296851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19500718808421892926673194115376010373277273635614234221827798433085122452102665593070638244400198977572042469678728089301730937675771981454611648191996837624984129164541934277209098616063353479104232405876271816005001033154539012826394018266487721675173904978849022382117986039749130622332194473256264273654288110593587431740977749919130658414423791008774685714789942050318574800303413037065796128271626074194815674225199163808869568467010192092609848488845759500817091266576401542277652305426515571777096198373081501621064669014950528701574382270586765346974230666001816768859375174962314675802266168660744367154951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29265540748655260940650380167956583829332873254522377579454845209088528858037025830337214870479616515491507650487383192664657767435186951742533870205092385561686149223326007026736313399182797929788412670535496396420928560707895738120668264138736390355984319262426445164932730625343229262367620556695675764919509212525678676393854512203919737544444279501652202106596969281646968613273970876107522181295207073265129461935938333221877180079621960957528089937249548382888140208629735120364262601098179567023430802881411147405309315127768359106081461629730719095895290825288270403121295861594063346725348149303875418468947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24216803088168508845225935509781570599420335608266767561230582435539419975371442189180897147089677119083669968328409232022301882864896435968222277929205574623904945766767935137369863535390462204235032886185980956359967999165018794525186125092024521408439430925335599790151696977379142224155868562417890030407617015176193007705598322415513478516494940041156803388982872436887221895078778727087953235862338662642987536386363601894969963657854892225176449399552625174897142265774266906570620870307746797399241026833652694723284276160798234318785865152893796391871777552903537635301138398579024636306512965084059394117791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25189655917626616722923802467570419366817161011341821483216049117263469013275287462551151732046066675506222531998160599841252923191763312471364209904140091044250209770541684849580187598949605333657430303967940370971835460603568362744098151679150147076380038928556003692457479947294033771693401870806710583016176394408403519481866143906061283511483211898263204429358431452350499971600268342385382482922203656996059706571423669379079120320264649575273459148800886472475068842692261311814744946225321758052203712851653068459016906544280036328436152628930450219530763315051293493288247085021136859659757107345428278517281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24191028570397095136615569602386039498842361143225668754950311321318441345314649498071768412952852652872632727016442287498379160924887361335239570251090711470865260044296352013024824382039713760787456528087172891806352529371920132303387741317235861144390301286035485288315767119411003500660979278115551811137122657981184564757163142112193561327331866668027635503531888918461953797187393115471882702789776497645793745897034959527767853495391655747885485887112840341903962243652956712911992623167880571410216465599722462091650663881621711077688079709173081220520349486347576216346096391579190222703590912549387568458099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19542156655198723936862488900730956833453972711461040345575702386463472770066271228255428993448305075906941882804574539127940194205076048465615043148179683435605357338073185168314821528982607497803085317084120704949998455191939391244347527560457698378184595807690461477413825380273847239763343183928025676089712719311473674611488644615291247950690385529629446763662730561854104822530177897977608843109128055528680055531463041527261354898574765292194996451840399372157963050516523396858334490149467165377059546443285835360792401084205724992972241804999716832926427985148077412752881841423837492826819820331060655614959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24215152045948751836539637002490108835346978459004637642127372958834497526627181511100206360498649567884749939778648423598524049637596283779953835213998346185862388663144453561501064600220617915167178146809772264831992595702684585410933370498164721094441954387910878701059771884416448031865301532392268101468984340523153847317870472877084573507325732004963235262831334143724008502966382626622524969224252092327882186928495170015956948772608473056124159691276292999992793656005186868780868581337749492591427476610276614610908156700342533963307979440271015494902094823481848226705699337199816530486789005751959928717417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25191058736428670724537091874460097499558600291183950999382300345106469643630476891409645992165390765395860981461115126490320793740186062649214463718676622421651656675136001014520365348247949974395728871163725877150861839585676803174404040386853597196991876878729751368727424951712100827637594774736181946704756782488681087806077594706024600656415578351649561715304629668656541564715123182731036302931931589758624010023762585736393713825702040425248769139576780468943005789100369223356518253555268792921228150799232826791328871321761807785480468589676672231446781843982297363018405863386977137295470786408075934692799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30694477986405229515210066353066307573113332336443728354473679492259571187472737833474955288699016709367636390017495541394525912646067751167657639244177448522888605782611754525444836931084691754415381601264348119338575599860114671179503231550617698168951157778345381200173660360084331080425091078745132546910879948990246981276126058607234369280041554845360165823126805242386522425490891441031127652132316033776671125206972015156044098799195899314178696407576251738307632804021031079591682847144546065116437209843203658625468559247116778283245339167277646975001481144979990330302191684218503557296845193764837851758359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25365914074374505797498253218031860171979557822349277999347543322286561794061819247409304507627622702200717767048442214035568350163369018041828383706101395591879715875832751267041086270194719809455514774409097904778619607520752333898870369844080148223426836030898413847741545023243249204208837027743636181067310098608985223232115725407315649621305872897028540822916975519445632293259622905328112560849956692193179839878729609482839269372441075742470284976998508004835343165336802463396106853126365426184703088821621577549697163168344280630615434846769218096295958230826429205507124192181930241708799080677946803753179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30622162976263222682050331239508625239325645470399103143488070736038181512727492589848810370992894208785269065795047892915876893860237247771589701508704771816877528222773070820513989327678287097754455807066265059653258962721786183109745533462663157264030611812402771503272509638871477577070542662020911542767053879489161036144345021088053314465915223853000480461348429220793670993016594067183731061240782698468880647367674053310824955280929298093897266247256324629564961991702961038265427745776188210709059736581282618491187261834083791079986549337175090957029835807770310480782167814799229540045025414032734023092923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29212800969898812829898834232534112969678670009460300591098155733965235115583839692403072016402877825762305506314618387463808001624926593193701234567491577486138251278274550013344981546678539361279109843273854619937600766975843763997389870010785593552953562470301632084562569528826838039943108571235933329822274199498665077506284985660776468300016719889356933529117358609798836939804550902090296739105606117341957520917320697674053454493918296332260877168996762036918730078527240963585914766749667578098517268595173466700863894624593244457627371204556106106918004439406321350052615637545092870118305667608531246082797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29092125254834956321405212586242288389950083327086715657286884445197905399316149560126581996424854404440275030830903916310174224750732365794912927888454867761408161401718753363027777597764930149973218781362390157101684168591162432873976789841243139161372480844238094903202800149978573593430703956326324337902778255075748118334810153736607792236811619999137352242587508880296526908939431299916331950740534749241900614360535793876925135912302618607326580290827302485684991076489029103221728999710958373139336845060033497496983289579825496565557159911600398393997884404022619743070658308908773750237164009035522070277839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23991858681309018396241086072626285565424096190523041769428700913803931700023973188109467350444622088526734931557851753441117135772261753457805923563185104582265197298957890328710516874267931286030801744415836580282044277636124658224407107224162124386445964889600575063971734217579101465072435666950689402251524687535555603188314810271859389626455823353041696011353658693170119125268688843911795026444385932313927922004706402523089816818238335393218523200318503053323877273595100929125143209396033197077098563680347638987831027138016651709553477857970141303535436512347990191601104800768881763838182972236504846247127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22746529536003856884697522196720819141896504833759865457069528686697903116051601365361551418218108723343208023542904193423746842392347459658372910092615416601879129674210974927593471125287275516095877536829613946238530976302088535033335618837075498431878880195882727697983063962673456818171316524220956659531130152293327322041959306071023591862057031295368860077347088925519855477417467090734213383794559375078415422617436600665676985282150440062733677142755250423806328894035553517823302094199308502727039491246320729705975076168479962399266926293942204743901983437354341928540440326127204509655894043012041661905639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20804147441914655354283011667780585295574054499700839262305923253757603213955308245563116928973315184629798226049363636975653979534615502412418442930654311929916585600487116728647286781027629666083159794975844707079879095791650228041179663121033572780697646006686965855663104791554591470002535682494103357267113817192206054907580800751139909091701709304184927157469125763830239420800417070156004275807127760468878496739368690781671109581422114383629093500400867454707574885229434773903510467358982836329097071056665276320133799756475435232224302089174133857426776917472739256356342171430964577715482182556061232195603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22970051439855327023332333849040829001729672658019483471535857791296036575345856092845981371890712665499118486708851607918177210497924397353686232762414597076168372903251612047238625960564274939736199998669818694174167955008323460771692790836362893813567877763740461394517238196341429391661543110717578871404091936183455158148669356263737845011671345845459412009354915582219363047078569347208154098003218628217528097474473473799707883145417926387317791517236281899151897470157223663491886604743434371406823790780882644288391388747625561411335337426158357756326572081468521497182680397994419646253734354967588778284081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25814380410286769791680182939317725867727473275836362666206645098026801388408770702955062428304874869672527506069567639335240185720434489170578739639549537920894417502644173260292724364599303864659233165918947160460024766875197249503973145167510503500581406134221358272072991245466693770863642529069062983203648014749592448204942317214869146600515140846539511660303451165243810168197504317185651195132888944715174398451294970272452981394469612561416109060513156114620059325599989046355689659118276991090995291949349430776837965392341287285511266347328586445269528545183124555587834905486813299695286215210633406281771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30550123231452185183184962358626972012714168819702093226735707302078296480820104303498342202536194623581176888855060201773298586121173853717208197287376648247626847631325074627276022783969873942925087295392712390647213740022600252226636476174496975968617948956013520310812418512313343896461110327602669648467845654232920651692918502787328246965907779439872490906801860845852265695478681298420604857753074577364637234441745130427572043682552676434508153192905137149853055250006274925401025971391123697880222557166307143597890894720547623252363143925067634157898881939236793864360447875120641123606189843580509010892313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26319577652222287844933860483643086799495161246733848116091989552329151717401704335505882627272317999242524669460524379443371317489081703927454629428393900004140790153521349953029904951813541312808230646566809576535656514170399091453438303925684054779843530803126682004880801504058222459576609160726681150748888619107444072884073219304362819563170657948915544964607641221769755944715897773092044496791182597843897942623115798880880671054411450481054568961310574890522552543252234261537632173551221919160665855427381913291652243969947661115545904088050728321281952512712561838432997845056174478473931070849652437024959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18348173456635703115451072821745822577670197871110064964534769883242253572599863667977169897135128750916119175497655926085327770015671589032201076588235051869854420098676238964529070012309481034377037539338074061675345643571997054481519910873445831451526664630213413779967636698815417023377336027978776632288266777125378756014103834799828701850088467494257118000764095975216284221955247010050497705794369744229888488839728004009210555689551480938217184545368754733673233797254073654252185610193216981146027082448064477739323797089572506305625428478035492444353044445292899846950366983066317301704121369603420283528129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23523247616832810186864779504151523603238366073906930635206704304011859434167128543842169290875534628921322151587362442991957400115090339055656702217006026267561675497376778809535884123881035597119567340050941685498301852145465168603049031833853968717016892513316059322900882283877136734476101594145826714119199119505016418436896147711091067988584661794773293855062440314964320506643738774385382909750022336746328803830321879462398453717354491737202080886120321967540313328845385845096944980875172964688491888198072365543222923779925952832574585840042326344737123796754242991259549158658144515683517280540844203874561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18860153530706125353001357747167099206199820903105621851648034495801214018851258042428792050321228691958221935971727350346373075871081230243472013426265751747012730383767793199742679625916972583763600927670083416185268840703147023147153793923190508993662868737341361013056080954757034696216758448912374600007173488178566908977852346277878100546683508406089362287746613548427282940894671006531395247678740553255255099156157374475086818300409056144843909379270372459231675494299739595449942505841754158338169944484776941430961120260261282268382699236518276003188593801029869077157975707314479436454407995890662927626151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30837057713537294424592854111942768730917801082543216487831058993611468020569743009790907369377575158786816445081453335104847422981978284522259157281792479699273199465642445672592797857901820983291030936992338438897038199907951693158115744774498039262518754857344592453785440135875851517171450475398420645085286390772041456077042448242402775242819363356412035813797025771136460286641159093360695909332595169814527613006309460807857037114981348695750387961900591730317274910584027402514470082552671213298731474263153078480865061503095813739881999800709444838037027672406957610138266339527663639324913016890916827796047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16236527544821843426065458045946251115253249090911497486389861453145796446123788520481240141963115219528444973994025897185529669028101951213523644086977008907679921134637660686121312334865200706651124263165486789411817379601917538860981568318750929565279685313169970805148651062924969702227133243355380004496281800169163562380204227273631129022292965282514472831522884581810967970570220676514986641964985359139365567131610592498447945098232728545127428265689913726381561491784172003773437178050753518878460552903975974801129945295498484296604200598311613544346742714167696288392275585822959012040262654863366189870947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24608737579174137681529269906253009769957884830899869555890600236448926857686800607662185693909311438851703983252350320879660246117280026085572625636833309752965728080931308137380328256074006406575742400154775459506583110905122348029609126899696608555333200476784521268784358028816557067872165625704841919370805696970408816649027480637185417161798396806356732679389129595097592041705520698242012975498346955284684960261165542766355272926679175892330470670209334591745976192315159080018976178328767418778525079581734092666686776228500679386382861635460386723724383965489397830502120937207545829731498060465779309590389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28352318742185197437574592782135695247818920276450104250607475074048262043729323598148837787617127384946301759363420902238440907604713128665455611494701025455583121517775436424086671611462392064850256716795530272554624463222522331119551561968061731026914930798596753739828686484577115258879683376228604537474270391102455200294561381428988240048040854033285067213763555832203534012027935282581074428000435935718733747916740776900756416718428359893090106370079610051481043876096352266317489804122188355230973517445475830016278190735094664978112710322815316757698160442618492947129501360707949435899761993943883230550241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16382207541344064067278052222458610271720377531025105736004633766821396398926761038087501013580953494277914433971954209727050220266545587741133722425776976582570587150140673922695234684008380298878115114911381564501338092176275665155968559504031616988698518173672551534973942149098162944602592007225824384076449437820285874952754934201170670365932133914211817780885019241110621997277673780336016304667443906449975682390948482558013071253537697007360448611508286725796769760060644400942854933211590119095709779803531247600529283921881390716748286934343371306266554573485593192437533764502376369874472296236010817481477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16347259750170344937754418617646831174012837536544453900577090940694885588338941270123479005694773490429565503964746843657715074091254408768967975499160544537183898450918714418728509719739015681401105689090448351924681183976265181102476307477081398805596567518387673004333540154919600719968254182836119657795691009712627060496631349692210246816003026569865281457209191303901002281213598745941037025145723452124008824288273269592169780823663925263407860222403729662048414781443435571611250932231716736324264435001111660794661205088436381800486321946925188304259630793090275902923508196074543760626868941474662952918717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23455350117830959287877486300961420781441652839040706591014780316725481137836622261015541206156827955107959946946178973767788632416126902156665448260885282505619497276587254243643748638455548374530200402239022653416750299512314499052000332789634971300799998638783623212514366173561689351100137861724777467504766134452715467487573937519689835575413254752389240212086427316426966743566121109149859510019145551511635240490314926174513508760680493545209822494339025119053633568303006202894237950617654394523997129353148328878981497785395882779907208228115253521821355513054439351912647182371598791348134159122401300842639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31686354738159929123211896154901421821736931263655403619143233429747051662325087012580092045436119515627983473955840449002653273195769490981212952054926705131082317109143227789529199147768882103786286248211459605742527029573775447592168279913235623581137049249499603262888348685218831613974421733038895651420570713727921410966838192772749323224374013767184147176964456310722665410424208301485366903178220062570710700785363428447678851188605140303938686356735310146099442896170055564693841496598935917161710782118757836963576384344265534170361636981899270409606832676490092724737341422193490006862294453761383904215823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28317669061833391212589072975326408260037651876374980384761953389470292458371428948571848160513197547479646259853326762792654058959335012473921697967262980780208989925900442780389245130003153396001818974029540455652373852954516007703662805390299411830249081037827629605627685648634711156101974588323043799875340637755022533271661313507554654429468666342652185504736698657376542035359367123526371522178069702800301678968863070915196231142215966180410100464687810204610753114332547724471601214298538790090261205765907812474684631428888462188970162965833869904555744976060074428624564272958162084255556928021755357666823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22844374015319160664059937998092991375600107451149340178198426717605359452088008052965301861252425793808815914168615142821272513252054285293198795830422170786020562892356137298170819433269213973323344021319693774044498343675068923455983968725483289341016549087747587817154490138521416459349267583346887541580778122509959720343592001955517376055336593357907093906564947324645504566495910277071177099600467178317347507532025429751196006534527177318634490116339691008061253282669679583010150877964933800708481173918790110207806356574971764910440390638854015704353911670712161578885938652180226116380852781453382033579069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25754869253712449065750153259640564918412017046171904533638157607135784667525589050691057952324295060344875606180038408164804806574167542041738807577871296747689961071199534061528486907446557429257140027748645651639370761615091626319797521354275001694841281990830007701925771972876509069476636395712460865968856552746766163913094511524550340203265217618527335926912895447604357763633369237465528594690288639758028923109594511408070417226203446472929533187927762546610489888877202889041915071040245767197101880057297110074018402400253025105830271041170474612889762255496762628947860087858953087956499155935404845588041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30565316416310174078653029876653523933948451228442388320069844439675321885350933058385324331824627683620414989736023955254955330893735160979486218007527154221997259397421832142478255006695911692351552923777874651781011459052463403630380743378509236517114616921528700119577058622460206367296653215230489203309805720072925442280382219253720248782493190319923515822877135581409329685342586004138044483643627273179413512009173765050535167092986069975670949478701856906834505118325202021802300619651668967864402896907146710978171030016342637982357232190169280701298074037243822979808071971977338735871518880814423046929781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27632227199199341732915585770336379332464793869084327356806383785314600695492031596915215548522681862059995647697244392342738899802702100457456012566741881822324270911277265326064362751034462559384503199933141958436518276702923270079670165512903076984512562361796449812959438065805569292205416386656183565010647232057480374269338156349353699944676828816554156310758038994078344832126042092947847342374243394263470179139638678922560413653277664328838996214842753236897968640057379600793020327517884098268477706242389407166549334997512768200569059128612220422412783692170353308986004373086021843374630381858420001704923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23025133147272097627585274909242615152543250907977020980190891135605677118148547763991548848570913655688139950894212068911025772359294568489074917061463375710338147650284162222561254330138916850729784628455947398124277205371807768776658368440421516369095350079225328146619694959505172651044968566418274921275292567911695936548195301291609750867504901752504943945868374990095221375680347799300150047525469022732502417379645728891227115769077651254891360247949919863165119581589097800288164254023769153839118999692716592083953095150734028975816849282713714159208394457567734326941880480763201499911805895744720510173499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25305680480773988700167494014846485500955501811112782069269044072703969642647332340497829415351804204079163077348868241328490579407539891697443039083853385324306663771969731601814719242665785621192079819872094238757315786908573732721860882120802073523398889331004609968660835696535029843241380008204512777693194505410336673639110219852893049804933739365614428906385795232327099337197367732462174465321622098779237111741744983261435888979438552876293689404201444621183667423878874378836903630450517783405362162738342983741206143037158922780368236828509828335407070677390575948390598294983126886694005270363216742272433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21081472801634359902499226420315303785987545198982945082061099812676710580232519369239292984636574597254285403718138608541503260865471604326192976635856905150968447595192093160138809596955405763338966881531689331866006325499090408234629113679693945909581372921267330433510342257596271797712117043264655904568906022782089946297452194484456939350003681655089567181233103885446526227529675304592076874713511456975952733833312604461289900001978585941650109940500224986535249625221241228015166208753997662788344027049773581078852362745685867460894500800464220048349421352857924319109093460300417171027628857861591228991833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22785376348899096649865928549047394013378316776918846839839944808629363868965596739222756210802078300873032062425725887003279431444183740274878551693303000386845371173808699422477553302871226450604743620367632734028218020560117831353643916312667105112289515846810750051811718462190331963341208988906692164546800799486000473725861032917711858670128719650096298270788760651270153103500580701329530383955821534890564747010833854021036341911485733881272119535075077286951399003607776352139836144109603969685500408110801198954170676546635523361902150439443785333214956766259270264804033941951337458567725036115050995230927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25610332127953623578600331442283824169738213379204321702482172470438194894046497581155437316505776883659878463442144720668126876945780359606965927217642144714629760439815712466549998506352997788559668295059515014705713785914945259318182253184382164049069305494970445862428381917046292887692951320105933936684615639571082118576114304850192146868300932011404928428918568276996168626353453200018132182166215587107876857438745278515801895932234231386056812157151099599357467632476610534289600937445985473843319908021518878306728596410330663082209542015753105348426855122079521014675589037837847715568474185246202909214969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20761856988058670566627685305554443971284614354886453365054878605835579663648469893860533401671114893207195352653889049384703097163855266225092448622589322731708033955466419823524372801881642198937520990316358006440241754356858816132039879833158750401418870441911230885149639462595591318991317030246525175023058243028959166787612939337099752029014226664190396404292809301861896569871115268221264838551149775304104514789676277734306009486776532624245088208312945093184295806057913140498502242641622697692274107800889141730979462355717501780481314106615351346502192350748906591981559740434631938979935694928942656844797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22781487023670072436093214161966196045517395860044971076614124020941597414037881334533855757131113873207569153367334640027063304389171894869793704015357360402112599345990768115532444746915974551789110307896624123250759270831964612615074181036866066084230955682502279889995160648543961734930192680132869359467703057282759083987170936742390611972301637167474965623396619681360602630538127062970373224116336187414859465812578140420714270249053931224945684929893519446018433629462424211418504597988902910508655578407996233737165754098710857653618792608388397100558993701849840856195590056692785397410386292155520954778077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30295228494747078491217962280347957826125470331126249016532558571395582109536637554814529288310879090759426404188043891739839535099723180194631396556013586077094033114938604680694308915768340204501247343305871248345523763590081163514148458740650130126768879562948896226332619397057932523060771490916792965443536940200506313233718909411866125867722875649931066063566100264412821751096303543819462439293848076882343490640884306459229108339969410564134592787914242155336085779255626462728928005353712067313301982686882005540975972010009989117653825960453415161230760211722257640626573218557495122406315097559516571896059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24048535493869922299458650100914754005871021400526357344175421779842821435515137786883894963559475967910944301204978627821169557001111145126565374575807334344460578710649239227866638203394665032747423952217820453531479693772519852214474787578858202016345836819671638330786578541471829383425366237969847738895259475085647374392933792228089895681554051347224591395793696851120676226631808259641835163148075773459315634074064738588805468526925739279939459220629412404959641660979730762069646536238426667298220489074684571665599814035845822547765141768296071020349062659020217082551448915793972563673050064907087499160573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26672503501663999846794939411331749970143603530048044435799557901277021071502524455335325517478479370475392698619414380612793161578810472848093371908645574326560233333783457430777731769423950070103215397175324254946484199189173858070734476165794060370740829094680620367969098857645687664222315454746828682561945767723458797433956919125328298604161371121145152690032567784464828566986054119620821356210676058287143085696738135898470306676220945419957874051438504331090253194591066230662072406834846480392977888627719742077541238826183247816078659093245318508397337575664692367072447437306383460942051348162450102959051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24687351222912531017766825305471104337230110762325664000346229211008700233835349106787346294541846840944942084394037857530571260954650224431007322672637796343346901279432648816733033115769792946780943011403394992717610472401089483620567796034759057576891734023594887494010696993275340544232232097661050723181023187313258417114630100592059913930030138927937087734172342187311569399315362582201878291079311567768038034105075027555479731094302837080877722444686695573209324242089363586852923029513663472726165447645100356605599475469533095930581331925494611121734758691880082772567286462315249065994512745542719238841719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27217670918534689391348273578778157878388860386411791177242436668075536585608009693930302347327898710701314644781236133212953908823468826411937837464296850928150623716896424919260528582698134000967790944066096760124208070244622950167335069694053649805109633214608483997492356940372815045316246145449413173677827317533004569511558704242162263254510380313003515229275594964844790980765660901306823821713368604281966402389100116355064375381924267895722946495014446523163654531780368630448657330191548993847523000945199223963373408920011584931254232269037748948528518320721892092611119702966357463952046388357818877023909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25933809639056927708096898609440657427859932649962605394375129370631102935606201326584898403065866304420872673240051156348524905052410478994555554081871022588065557667226282710233437492135938144225332779126795470987506306226145468456344443799834628796505479766205123720106705354790117750143009445556249870722359959006226553303336230714080230797613233484408538857290534623300200063634432679754913362598983675513068681591281436010802639361911368159998990790164096112548443972162138496080052029975232982651587810552330061502938406726708115985554890286117617575279301615291087741120506882214060823594623712515331106032759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21377078104730165855400384166636635939871606848877093457531837937473065433647997970896801705306423806177962582359390359641982348624242917360658766634464738677134951015864015607963580391117938909058934858035694484888620982501700705557838631084891357515101139423733927147822490514883402525720952743247996102972980581008146977483840180794309086579079522560638583124756127604676549943678151505161155841947833002564750604144589590433073092920311767747469189512703688993143780069641726777792251907626509234890963497248889821358822644660539232837958488137477204815462628603938160833386705844622399828198341013809690637749099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22688547742162942514592857937031739839438351873616365955398792569278286965104302329140877583363639302668297139983683385899104304682059373822080012159434844154758597989108594632976048521827624240166862953734649425274962843052620578734577127061269124151389586803663461086597329755980465112745648155383286231023948779020909692532820044674435638030840814784400002296491567567166700014010474208327598992368344110336993114002573319190379547689966949684731805676723951101581538012687189530269610529524332396121935615202760661660715033013408681068792093117559179324605677674805972437659683104475437009049774306648371967401353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28218650712332575658152247110235453636303710913184397710503132147019397741658190759420927758036194451591294617585603676676661397726623022071807405480999814992301456710422515550825639396639451253823166462820043051252555808559670784407106435320917394939964796850564236539822840829326848697647807190908045266250238471752434264795155522844131166039887749076395639316036018847039607849145456712922201475505620208790168967182831840320548851408082504677274923999679763489511549867131854325263053556401359507434278118997762967809447015855283223344606360378687279307558946327562689685096955277595529774433098160853922127119283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22030973189557893837911432450832574341693128185771140149153936580370054282734309387879198171776783151018602933832782305336706743261061039142698666969565293048623863700455426754688128836036891890628122481989627237398790762039395186882421803744384305166050828569290803780455272557717416772224214696029532179792773188643916087529951084543859540371932075101512773842038343547100116741097538330253090604844417977288552404033016219195376076141398472997469836593529654328545865121763509418753266220238489934802291243701797509367351420928910259420529193023958395650532254375045272464232922351526480714454740437475275814148041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25261866013610384529716074842648713834062184139321324689596577880101950301352278541127088381212065959229574359248662484728165577746964294701122953574616199383694527910538696916139452551508842457448806524952092861529774667090209477505465266883268775633215218746807295677939698981171970710455834227867262331391567608266992030675211086305982103823866772910411913898210220964573864560157449220069132367637799490420197411705569168537961024801796275560370562257650639358223253421674862946504763646190961912428069301379006350580642681578990575441155296311597433070698827072438710491212278039350028329421047899458857388213261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23294208527029453643843021741730804821316094944090734908459462792152651273271908643108571273152027250792231797661754071292535558914732101363247716980715172173148837702407163277894318119903871184704251291489010962160414940201653428149322341559738244556569840036872510845280236338606863795385456492737203812058655423893106984891192009705849188334772318601658795077129249911229888692519729532922329835874713758873714616019590972890715732398264556659684331104572057403704384885302157775236187837710830893777674262460782680072289130581557618676686416587302847475601264236568642064201558918019563077646590963109771163670889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24700951502108169463561279370103938053057289883279513760202561941431432136022649781293243996641364242245929674079237371652110794724198619884984126674536135981721100052047777422978566729540295325741147290857048112850073253029081767943930276290457126690569856150235631290542802654897455901782282366367668721588341109256514840314756862206151448275215472764646550835681251082149054360711122604253889105650364171746679997507538489039588204130734861057449566248865519639943175008483819111729845681877533863668897634434020127787749443946293568149548719220010170946472223370732030632355162662771051653637754854202364404744547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25171541605404126291669209741105433371463105360151068318663272462973241484674147702123520977497596700726015092310227716518062416484848542489771703351087848993394440074205629620444418888396589724935454722265341492861740042827099543210034191119633916397958003814395451465365138042561532665716431725565757712153755483045099065564565827002769085254316758909739209108598537874614813043133973850906569717398552991655968274109521129156490596833739638420938985870266827213076596465310608059881603300909331858856588740957516721453574722089136032297711233207422530039116874248568583110260777175018070036122331642092579256546323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25236585662386800057149323821361185683761216769903326214733693573710366317858527429050608333990576070178830021647898033990938184518835839862539622975463642973490798824316239095765441713849583320905164675360543658493129515344195342709786324007012138325604650753533889302349310896558290608332743096745981631633958055602577116089811828841529459545307023646279568386591641323092355126518465342160216790058251003653720749546408304925569184243818875057091360067552826833536872656729264436896867326407714328079106855387683695941288135130726164700888123219003888328720455039020092251662501067346927097055830224316369530541573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25768257131278369412789719877630065913723132141982812585559344899644370079080801643235877379910168935033375973087951209980821110936309018953570086569603655872019679410741097928584633330347605033759394340320185714446849620574799929599780253462857522483619779864525732759359188963716154159046128064107759396802130614783345761652424861612818673929396079728525698887817562365585775393702021232825161726901836205461254468208026095746514000325785198248630448908587134843395748811800230206251607751432056896908851630661704305535157629489265045272715493128763297757426455665370552583833297541499353371084685004662007236554179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25790220415085254888698243784685674576072425183991688252192247607606393129616249186423214876582295653764019053248713881868794324183417049001523903279071283833734959040996917491676842008866418611474145941838630166142255870508099238386615181124242126269422997909005693137675858882076992232581236247099948240823862106651074365401105527599642367400887262045092911097487439301221747648792004103760403545043213132212530492845102811139763090913638953983735594322151619673772335128656698111419228199454592420128110735829276456331041726680747632906818258945846243970343159550681754463983344596001975545047525385280206071826711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26529333301561228517504205757542645569157488458973178122076166810395334076763419611002593352123648701102170962834882302398500653558566697409974824106883074021276955651464668076587834555114974371197411377945297105074459855765870893105123843136831881582255968432561940193738516574279498181822345234909617823933457443225148939813311996492865946809152772601597384621287931786780138555953361367422665926013983372617187630706871427171145776467358907062294882092315046287665539643273379693840370924720979246360961412719545878134800462603129254643284276222352923221273315679349745378429271458264519270158543412644681719203413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26385005357173229535417428822694776160274572362628881225250497478834167268059901138408774716091442500779201104675088233269331332713698810341706453164387247731436648057822686730002507982883296658889272943998300025701228137145028037213354799537453634719702659423937723137562792246431153577508452593650620762481124380839665959194171280039096630177810620918689330810562000158090053843057700291275516580317896969873717890183475258864854190074036977434276041925068990233359217342931020756958618504426225602276588092113901758754598942413713782875137226275577763926950245586834711069928384380510537336344274703033491931011423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25840626656432673694447417259095003140771230321496651285109372611000386502662362769260076799303802238286181842902827847828185883480015239137738683613993548713044872936437693862936354458286478733921119568544560306746741795988386548065210819020451902431309152935815765666087634179612202903192914391209203326285203303021234895552044436920617773733573056661673615698166409635194719255455650149442049553334870357484208573721820654789522882967868364603497675730140273364089463729600881638843593813735171712381604720841601518200072611931425858518976097314059208266560313347127516256756620775056043195070032303352724858630771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17813379360451458842788605427163753762558247457563894281336971768382530334683239383283770370928293394242217890972398719853588024589549730296185441431289674637506113077662701208878403742316006997924069814420065263920430407630643162749984502596257936406448711334107197292636748136183936213767879002932421271434494130595607551999083025045518240783933026436145416977111721640892270118437666589639514071036601300549780325404858041794409882392588315957791997773982856781254210175168799467983574874056690069949362725474848054178511031037804849315960101882702724142593501655782144062677419020789808561815106175883249753750897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27431514909376835424862023087021381415987769737838323030671137665859070551155691003494530609049042782158752296207672381765615236884116293100956907101382037606349635705832874026939659441503056107159253303203205740117894786072618808342627709022061458040357652857473733638662388976219301391738092034396199306226676802176056249065897113230023137783235139448332007716506420735774974501061831807197082891941496228195215442140646392080459103689446376564651165617138524932212380577247329669459146783783582515641234926891959451008065222744531323531626342845986130380178952271446876667335150642722532035609553122560279294312397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22598395218461984456183737318609390176733292368656588208638818634920604887222181659139633933202120661743363145288250527477355887354480411733615324359269761685663681962605770953677596068912194108462266357279568911119521772037434908762818959871897874426973560459755529850257906578604170583420887895128105250245716229588887865782574752532944893361068895637907400274445908521183766772176803199958961277760908971582590772924109318654232794742724394451694916222707704712523060767937455361198065590343971690135606989975750857976104037640207958303488041551060078292121747636098589611357200196051489646440438601336245100767927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27934354115996031914705254404671180802041802951824380316088875653437484169804188712801763962652686766401999238560621848666393892458075766911464375992874395461719264005875359218301499076646339107437486521742176068233754212673090211130915167886576269068481372638162873858574075682503838908011274961562793273868869820221418800805428634299035265129990033824087456417685778971652867527571742378193713528201915318330103077214969831590843993450468925061537959058093802581801034766096128471873127852045134713344737920161569367289092184924103412538571472708692304262672417189192794572228600205444667181673450328250999540516389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18627723643087568640304525677159066933810495428562544852442163215040720496471777784310149771476999329666091704480534423354144677136564122536341592481126416495082330330114117256171328305923749550809443550973517178606034175472095554055484586404536324699182179536467032691554551763791364566264125071128326343347263180455434429137746026619415192757668114414979211938973795804666111427194286433019203352270839229571324078563773441009395388122576369666208141132422672227056225352086063164335825979048141829287284965113794737661956628035669538504507668411667823187856806885131548954352291424156431613502251198784658348685219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24989818679641774939595369271256917696282581656660620328764890163927147464486796945398700273735172948520071282571213929766375776528611249894353806005427831891802754843645750662843373557571988969737122908373684870736585029286884009433348194878063248288519784277470812242027077585210021215620909054366704585116086846081753325041704044739777144715003259478287168625717041179767619631921979958222424748318268262985932432554333273450295842807414140854184019511089151325137542222760947868746698493781328277487489491586425733348206812765800349727803497594559378605849029034490139028750404939737807902021279609460320162065141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29910638461071280893329587587018076666731613505958935727413368906076571730639206818563305224827467171207371361213396923106278827610386408977270804242077059650502814927035147018465638793447599095311409041385382597152255454985890307738387500283845155186931472791511942122499741489971713380760512829958579011976235032042424594252309478928246013038621298192251837463253226589308568627588311452399246300100779194164117081338429751085447351643503090966585967773475084217815622934857802613288574804225792763591326211196238172024199654594235507894624851039730652193286100179433229371203032134272714713064051471764358736158633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27277854763728805223347877168173644232749282079200178226869834080576954869129231767311868836206469419960786318788650129993082575039435288290848578373344951684663617084175557274377328566212102013993382018630372186893846864014802316527495038275295810763296907729744337729545765800096532425589458929585850290134626625718885336820809141296751078279723941922208296681733168924378473002712212469536661000221060439398612109775551953241790002944384879756613507906513352684352524749156502862648245390762781976680001247702262061121914133128543373750407188582685804140101625610081046724210142878624983019077976220683822729102021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27257211555787927211307179485555524482385498255599169294252382588570589653146593900240755528320470267293103640627922375566959262727387825176074547738104082627550847291377974426506940346040520519023888289486757575590540137213433939292645852482775789987565573887772510513434938855513373794003449613487231688121984410154815459258244434397711129490965946069518363518328780472764757001832243470696196200945146525666385845625125205507358280465385637330796728840220144627174393533481465229814234471155887474850211450084432274528691042538429742368407994151122173420435174543800963913164441063586035533133077402825648109101687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22225915844565949486442189540510026381403969941569328702065798677455407424616364411551452560964534090474213831575195506259808631192954205558884119388353353996474424466736043039271182717550579164373835068763599850983670903986119206335264799501363272527125257231642920548972685759713197794486177757717280149092198797333280235306497362870205886071960069749729084085935091805032984237540626827920501044652499408028781374209532191159619050110545616516034211364863116740456194892369425516382937944879154540955578744832253313919715715263587988400308920788931708501113573837010603679917538417482962175422985520604201710793699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22190559983063068849035865075105493949622679191160339979333088506772753158147235304041355900293194828212918484829970402335437335121360613673279008143128906393746501852847082795727382915507672933839922019698342664306142212517049522919992613527722701821911213103260721728762930004793208816911542506910663828540431233022143018971977434360066564785220156420803288100190068449855190819734394515458641222519693457012959548588908150889684372517524243495704290027740974694277076963036685168562540544547439859659579602149145763428031570870150289330973874908622159588353544748369864093726521743361911162205823542087993358472519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26120055432741781598350087530804177492087333899256329921895739486404159863453942900694891655924058127843980144090511640672071608310264153401780437241968930283636808478474822306131389709636690716255124302121661244405105913030696541892365489955971975143911791672544034361036029410849324144580598093358741016481695736647164772502105634670712022094437144917832318701066254638540172043337233245797431242415188979408632316866715065068149064296239807673840739537597497545790454537867325240098191667378340091976293575621565930606958632631164695364731954980513968846576199967471594610809151577199349736326764489430982820046559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21454310884606607988549147661742301251859578751964753703992500262523191165260936343086340748365355417706018435386447463729041247245383614960369783572006060426208474691634413714267763444881875229639732335646899334992444746140611729010049248792691743510083111497235678474078853432728763025919853755265095823538804731696200542828747570821624590720757487153494167446285105335837933850024621180460917630726339874810584123640403257974806058308049626051259306952694390620958099140591292858449890525974489129566027098716284371411392791830071767242865561902940284261229855956322098144401615377704753591506956261836241838846213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27085287394062951390010886931583326337860897269842616977136961467082299234788761644385248654927852329769192036813501923741275740285650085065125301556817993159100795666324576720947647900074108178119801377808960050905636027338233141820006115463068490609796828642853726382052990725641351882467618789257111639528604981965489273761088200717757877910489038965179881400005158406949473672995887238636552255865918191311939778276298537308522123352823625278510672269805193601447798485007213946535432582712698196762608024632985214628450396332465976808031759478380557942580268676140977709367256171625815002917465752820617587917197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24065563447643497527225768074468418586535945933917768583112981502374610630315904752974335818360700651410765394833097828335217172534087453142794895627557128774031777013920923591070392392250981955028266869417220985107986372610801358222404313470978902904335939990338316692733381701284461811429121090086839470464782622013881184945214529245959755915326834445588161112651921860015276350290838041648001234764530413881548777893035898540435533004350671052216016445042335248803518704927847791249117860715266456134976691631511580139748647113657752922452510125398889785072952766312085530051378319354181036327148699992754880878107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20262497138269468359827399137266453240666967768241376472767946120433435293984299957748394352082054964262603357903310831030292068445353554715222583056174541205840172497586216243068863955273398473682328998613569377870495471322231455538691036812369319964841228225499810965188442814205873092541999677797291930104861247488508839344587620343937919049280920053602226602181048195961443002701016671011485889953018013819150978393925633753234040497562930959641263332197771376592963849662584414574228974134091451286173864125481791316703726605160451040187927833169455860914175818276144068074290661201368448963282690766350936278947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24341053705513253019509275429862034267512172201983296356547551120062214464144924503802937814715682983965745207195345180712202956488347698938816875813651353986067657631106621621194956822582830915469428587209484231792506770937063146047205486982804843225340517074342444598838495513858533946349268575322306832881120345356090107379336749846601995677515993863003394069267486567128404916916978948024762719197799383632648289000272375660599639671579386821755703320302292074757684953946088274175080429209981787580919926905091396647306837195883608807950634042451436169851601521334980322147117368347071297206543825109649097489409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24151630038007056416279603823314581483336902191867570029715937084915554080708328315502637854126248562191476324913078095117831925491063100697368714658173214791560001536481185578966497095664086351844717942702394078803793160580103084681172822349480006876178092056860247976836821037689816010293879418166165930854683524830320985655466581297038047145503882975194633064777478733876187933681040389238282955492520245667989129355136061301850570235237105081187431386922217004194999673120717142131073227378559207028387582201813111815268827900653214048403648371750602474538964535595540922315735202880589361129829432742141697991053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24797804006944136974978384600793492775528845383181138107518003155998268691534909263808894053196876628799460868987821937473057986851754861589458403405014309962985799128559288957188142679386539391063332615791354283214341149067670335971044269113894578544245111679847524074558189164581922508942742354723820310957455804206066253655283866505344909920928176906989093525413741665041109083296949865525430343251951817077273401125310260022954006291790580055180888652327669958162964473895103238707998982715114845705720722206585748515112095670694755252628001613643889508791928799412259913838576071364952084831789799097649246741719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28523293139001485801718951851025805466541958698790640767546979641372840463560173206007086821080281905456385731244684586958594755001823914896399368241757973730647669023547493827688659722329555502506683051132496170185928096435720484703031173730370581645789977581900913729888909719698109451254349703780118763025603182616205952288428633463224754556204493002419084466800927519470480230839726063515718371200642255510681966397438553656519878981967817147430098911886241324160885759356450320791433663290510246408187257612531264224980365509278510828607808271526564314384899742290553316821400116950476116641107739678148677054607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21411188165783430002156404369288687581736980457599991059985018089918978406877151694957744682848530557387413324199863469322309952301204362961980757122230007763744578501711713794358944125419658271901360753426638686637761239058380270326289739241208942974632041678897540987123337017943733775012269930721511049327676096282830204633861401157745596118150167658821933707330092336803969776732990389056419417061132182663843170658488829519739001279922431743208222399482812861978242517676396812756939585002753435456034061118355092755730345124000862050890653298877293587279771609229516979277113014956745324184667524948990729961803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23290586231755223233881046680405245296147113603350939630802594221706389014935324958268819111233699388418009137069862565421212582305076159879245639835690738202676447702490467640285038886879195719757864144319564011411026914814565638819041270027931689915736148728936005186276222273770379110097617023019109488223981603688504187633563823965306384642786594920584139720504592077803528192851244743265111746104737681411390161937839726013626151559604916091856490817382956792081047447581140099112822714610632590027132008389153615517376758471171740776496383511703587408319412619794546382198412495272668599244413711310850594807869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26690547830330589649045206737771722490849581715795244722534608225048633489126078925826762819226463982657754911318600883215617474628355655605118309283924414442070721934358814599303470015990093143684046353830876622893847545233702088976280986485333202251238137736630741094276011657137041692873039042794160263875823920177203665705832610107171400054236834700137945233227331527392248886912475658491533133044885145314002012541237012588629932282451031182526587773283536977043147600800987779543123375608893376706901780080597312230239325977031908566171127961776748370723870632233901602310828102050996121048972331558133898336159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28927306999855709645665815948175647461036819842353714138713047831323017588266150974807031845134669635817696679417237217242598835934270527577413571040972538867005608887205403036306311262306810444420862673092123278189750685194494571517168831961395652813632347019315242295671742785879355795258940880328350677782450176056291203804291012188386669884279799495160865428180402410603059798896213329479209281978629531406261582532437627000449798221207626683951567755665089524004976252279097422545328505723613275036210569966226643275610904865884057136054562194174769376234540376987566566599673269150046961733740590596013227523773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23782957406302690271444551675149330219952860309497797645934776628204401658856384684085902346780342938739014348083979194572537673948351458922575289944088325309894631356658516008114982056806696563907259063619410785856054390366848874502683772346440252456362959499701583015258559191710004123051953762152404197537081629388122407902561997397914916445560637739206067168805984110272713623121346806003765574777398380173021815233067363016402798441956092254447298635371730298547055071667101078750868788582077552506549150510013061382981665861646583074575482685116483752872425927939092240657424288499683278244433468679676802397743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26103533352919815869574040354776174469311367650541831426496335118082721008801585817307059756279288540065710111498815149307364206413460373628389432479503745464560338113355459823712587870175821588993323676146814406246968919214144839669010034068869799112285847715537415173033088185695855927614413474696054319907934600105687817672042394974134765062996002183501244728671916322767018989471528355792744012657771544068024705544841430483689957609199517619943563484648250740659760106973422197903254646132943214038830839641775146956051289113619077521587350328365052921398773978508303579197942486038689147890423565304319331469637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25155197951948252760177078248161967998192061259101222246044017002453967707863942658880804986166632979697460911525875306609227388863809294986789112580504153371476166066840210930626200009235355259091751269242491840196419212394636076585041635102849871322417839310233173113547602682304421172598529034544218837229223505027214027096302476602754194018626185042453980361832010549323429489620266663704908451703484604978016694363812016770651975636618907143092402085051640725681545086035019664814765233443028616637227978102970303325590518822946237796298438256084013383397863896237253964549983583571998896724738313380571404586687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24241574341542699574557162832648763597083427659620691200670962187235796813682044404696479059373384431737792158550668866417885082128967800220831527582121684939908660939320972736300561659800886090785848522748476221063202224794439539935984348414765749261606216906071447832508531972966660347185740718477454444193542167608122802989716526079388334625542798865374192891767260845259465647403414732470115599350503110152436290334580622215020728436337860748817969196554557042114348863590166976297705153457527502848442963107909979676906121898274884926089984383250080976945629940374456388258228398048157419080013607375132726084957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "30637636333059122951875158463830316764487228251508620250326898495766952381810086643426318435770408782999974805819303819225670738137960522990693702036747932722402842747877726790212065941860054965188946792006230786919382843852389679366447040604726380887212296973732920567800083262726272741239222654272611202121817014187017649268746087271090945248648522045909938471405773598040520546713191468699016855830311344009161711292603172867879702948141030773886290695366903654844185347083192663334534585865345294057928461174642866309591119674945611403228955369933907093508936110782756159717964191148949363063034833872975151684437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26356726859002277956825446447503369926136134128481038282777980410741514971627435159897781037621659692645933628724072786319302438327621183689528716013585958996345858049923653029918636461572356326324937248074692059746349278089855365163285915000091859176735519508141317018881617924165969853675019465552532790673184178858681791610164836360484036404302061134816232706561497816656743797905636360241697504648660192102459632505067490423135069436204319916938449153330925455494925845055515486687376985514242547230245875776682969947336445708443739018303582878373352330372041944952450065305346531483290001506418757584002730075969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29066646476700624670839173199621724859003005356448452173992916255654496266566513810377130131687968063524422762004997146774405648499241020751701648073744056859684639786347735478204273114168098453693650128953879505786787044686865325169018179525631363010687902254293489248750965287830687516669252941836592869654313768466015034570019583194868482961871552274176424356483832386288675440071419193743770785012711449225557270556574821699452331648300438643463437914534216663442562627156378975725142752596362143039237749928623598837215790376346125315521305641115092756756748337300654600246497441017607203782942447724013587643779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25163126733785331135712618808916573528779218370948738256238920830802563310381612014714370747166186468448680102964089547230135618629539944343949880173870130686608650091174751727274250865522998003104612904213815086371022908456783842646371888300430103982874497702932958007272714234697039540323129625227939755308657629593628870783610063523636874655921482896089841607439729888255232489669487830400752496565670529074765338582100832119501071069730805338463241715712631930780579857355252490003677701805552552660556093065624365806261632866332853456102858457444605027684553633987487654837173113570763935414147664117309081022483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26317466198821143296013061632047443061368481138193410242746769648905980988037136580703874199357107728733067299424443352818713538273173758077522819406603694133871466528917799979951105239292965637724334417779685295094589760921741363339598288699442451361065317816836103044675438898333033713717548254998930411090629412121264396750451506245951111274667603461789621026667830809993682922344613611034061996297773390130600496832182004370137729692568206231434415131305848735027272669456943716098741943670798541300246290637753761562993905845448245097792738973383544272751030670716341921359872872598644777182373995581985996629921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29913232023066652376404539493578687714326803105831995035435874244985185286686380868860569792492339130568465841272371384266950746215627968593322765291279861302482186687929455143032280888081374024796811316888548664617383132859366328020725576717369221505697942616047184379828474209562306824880999284965120541682937845232121416645998722331616248157869862746261947170691182544659293094520888247675966556033033718937291742797432806261867980600262020068777147389111464025444148095216637196103304006469438225630768396035009619493972483092060722959494284925541801701349543511226803029311295138937966677973633437301476010408293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24095414195151082469325735499738568041276296012301136791250911078268657012415255517757297882890381890128111492079936725383604141721895069864122694524749827859853466356341036623251171127979135202280174830173520987043279747261697245581244291724053079600890253539835857415185077583443856690915775431688142805294631828437876517295767550498179112582836165598747765101050416596398139824745275622641715097201316784579399265453629957367111604256283515784067813846395530091335662293836502177293449383665235979850872365066308343002954205742239693317259388558563711098075738005805592073720129798757364518458022953637383229540437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "28186899950362010026272925828517323456981882150180760695724592314212172677809568527256856756897111053795896496166197475983244150839375954418525579137962595320106713807102723355519749432116188591020051773333946998129049978675712729818626320706328929301130417206697654601220573241186593495440807470959373066237140358145497642390615891381492710369182692510922026144987764236851605346266933121532394477502846626722403909662543576348951511006203163703786067888134789916103082065021255898697486305004357137050211259466611070716179661843110155469525764422871349187007230832872624012107826951514357467669250861659058090558559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26866089505988626176285699946688306553086998169323219128843859972605926994250295077387393605686351593858556642875210612736201988940011814847973354139377759523941963516565751483220277286336456432508241613189266280584734116555419463184667565839737185660415160181342080681024299173519384714989951189552310592460810825650493473409463282389623009217615190796256368183328765833205333653539573635950125153560741092521569211057568221604894059135820127133724707235876923792234069560634250338938743817895558000048435160351463240191838901970067399066358806147743345051983340709509037836350664349893617094239310368177454529619537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24386123927213107537004163145892428089398124329980488300187454393953278172321316692057539220573010920025149864879488037642475781606986373874240235890589627230390356802976750410484032322806569845905438071402794693789109814115079301584302912747482875408944537025407881710390117114471119720046133282912146464595887185979262986088700514083799910543476837302241171633898612830193462432385637472469198090425139130397175077533543388424597568161632013609120602609978771133761212263593871790741975204720303588123341775467049556835935879406672382025680093959101540484150367746439410886075873921989828537671215326846215896321281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26508762746029097711532310076381137113669290496200133902004620872068661333667244069414302273275590917134090962366950651222464310287807152309400257181718015876774450441531300274278002821826754850195910520087130217973905841027760161709956974526939460580628677340229600514351961166859435733046633722906808961650915090333194914218948049834342617714109741621598869487193264543993177216501706773081610735790326024649407328109505201541393591040162278727072344094118637993819781534465569472337742681055163707727618933128339056533776206283072348170286370303288161372639495249845536173847601372171111507740291225738546980337103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23511554708051297738485695444503387728783242813141332788666718781417479383561013134373943121935604087181910719346790332492239088910049490910453184631792822263567935975256116492654006221723405441857038927775414105372760564375311943914676910379639091586618275958861293262051402389946365064623290042800108671958465285176707473418584802417818210602750804626694670496615223227605854277710098558617666066352735534483599190187521644021534097971562340582810737720486778874967811077255724761636001193086863379651742913520011775030395282244715940993479138913902191757357762077108386341546860048151770071513676195562861831183351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23864427409581485995797508245000144567382412776107241124696715117527868024744647864295524361173076809792891179390315150109743911804548674437403418048990425328557632626914608798102441487557028260526440899489337253123606363234567413269559270638813243181296243829934355345832633177639484270908392990889655800239776393137888768272984935899544805242683598108204318068622938002116997925012743543926775429335832473115876161894848040793039487171118525430250088214100995789152443228262039969910301701000418793102777511681097135417124582414262807335370849744431183548869123296565908484228239059432618767141797542870771421931777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23796878689737195694306552797987238137607402998501011402107337095628109100332361814861823860066892527887117256976539283948093223612289868601058367143265384385607860495144780016274113235938442756883542591072422166553611625411598087074820644490336163135400242261712650277178343881943345440218992808980924908030441607237269903774665402736314381194989758636713747070318568695114608412437713995183438388663502265403196344512528540259288846617692773710686249349899187881610177943667154676910003072925330363144067339838271974536302891332369811959853266157277481482669369289658261652091386641554905610697703501854238018972449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "24922474956753104444876637146120056521387156691255692419297482015036869151211494436345101247872592795924179304604493611441953327858811348502484033506333495656056533430495882144328272671429686329829480989680848934191818662266190023352186923953294854762253320076620517682326015207694076884815260839989218929688878114548467041038727943242635376019243225776309165894924328539002187130831250533751862312889587259862654270401281945716379364461535669260453398152867480110267173446322899844945474051942972796408048428081586607919314096562329473346501514727445185334210188440875783900372765755445813965636760534896575227167611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23832071200094157685940118598825831590452872766195576750096220900520099949743055560415423504781958708759490531556688025651722903029643759356284101581720760134134949933254097384374126706918043483178883843237505972448991554590190984181038173014605158841555970709390836966346225134251752439368162252110933429794848453694198241419418703989748803862170561011649502786524973784744911526314251017840600981522395146340661060449607408748604125741502010833879883086535745948904395204305211640674265880739410005329600955423466081504956215870086050382096740913958258960768062169982310716760081714440371787007499768457510008779909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "31556086135573939671255474537008418945094067880841208757884275770035610168105159661917886295210853215831675489845335644334936520316145331201069683589566389582671642193643824417669465866111037299967645875907115769878524749187814497593071137659291600975166344173660028246137959200386498129993542375405092811659230050274100349966486318744766912685362232472692953986151062591698476254238920462317943502416421162294209820832507712660184733915511395676070874497910735561937318208271227978158732027256331316564636385109938393372351903591909988310787933527200464829160160302350776919182062071989960250143740332211655028331881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "26643462322817100366908498140799883871454074256034862262485026460842645630909480038807465248133517010993410166411170258417409781401788545807900676040819531647471651546753504005111647080762907111912008254826971170022298204291690506946417197557730112250122020876462695540644984046640368040388296675323121537858769133040974177161048725875067196910354889252413208290896124351769422748161018567087144966356505765512335388933155555328936155964185524661303407808130972592934583574280263688488723807238300532691644647526870263703879771086689117197176712771917522438474527879797347603115760018178277480394569319378477503664111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "29804363846403524623958720921402548787381126218374985198835876310126173749680632756394163267778841227482031222095985488885703422579382133672489125832155391281864637577368721893853185915364592806038372472585622552980854354958001653447143649688392224000408783425829476029501005618498279060163727781662471604234599995434606745730839912871188793972054332953054944355182685352347790904031597327201274765149016325430294356011358107733650203346059257344003451391686777239277028949306128105997893301842217035246927070011185189666273475287156696086721493529626735524232037634076707999259298821323050696132599323959747338149201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "21276612160846655234463170033759951240401301514250651299395047010256156543530668752270819587269913700977350828052688677333389914012434120326382932091008288211261806814213291507521546064140914076655453708163257827702176584714787945638085295296012697099521833672801050002378451218164397742111291036317146651810489475557543658316883609391030326249066887020238858805117078651017429230452263235918864632376446239891510287140693871009849154030835004332123316345584551998328244767786002114623537876406080472052666826978890632294231600806948927165318140237611257291501732056299665521394223990305604793633150389495660980521733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "25611168437936121293441946985941161899640999703204997563832917929316760485086880219579555147208219384149000708228157026602018531125676706880904874206799183683130961327397869295017644503253709465379262174058383415359820989742535910106623456319461066062548200780488463715290837781291351692284605553707956252014809773278939071724413730556774683254123047511839090262090276005877260481143633204803598967955527271765530916827856224103680084062427281925394311124265420229789582727283943179730552251701576421303935099249203791093353939336815413080326658761347001593813952446711819294930547509359100631203922317874948620925013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "23972851641024566574136709578915444517899005534711533751825757711019526746998089172415491482083201880202310535248095515420293090800794329164016541723128976755938327452581697815537888423453454230043597553034518224734206894667648349287715956255394784300507989297709559807430659019778948428802309152806121531049524530604981272660597335950965083755193129896623421866423590440195655347558401949028851940193857672615734913105644985518526684345093584239571888798218560514105354913021636721317499473616679984903292642898998693097358592487060254451549853395728332516360132677765887685813995516590919774833349435911029563315359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25789820604653920810867444199024563", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "18004529588325056559013100337111970254743309597382944590690485520507855229665717332225411921941330469189725866330735861442924476143116301376441797480500469190353216588941827438291225325176634594792023051590226978815824154582659144536698904601278856415120320339159995233607047926079760491696717691561026517592097331483795936262907010595006734750700248343487155793722002506953770888866506535733003077207729923313705592031010534769695138970276005270592246523285208312397671679253755912317165189445042126701968270811338980336207456889208420439017744850038351038266209856270263312596239723568724892805865388561147618572049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24706554611329949654256210428769791092590648676106524377189464297101465202735597842850040357942189518948954824670154834755679605805842787262831452897366698331159206275614388878836288561836953420314637844011427385740374463201108352891005513508519360561105316883172325694563253199756137718184643063259444962018790972732880819881395558925207129248416997056101290620072543367913221273083764683856267307693661404710968433428187594443748786859031101437523287370920916717157454001401063889487392772901470049951995999930659039870906145446415160072955361642166190391617159360689358893200514916939318610593189912631768808861783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27154167763872458976932945801394882967522540833159206754026239301604527413380013913227727914479401923519778091849084493215178814405168294132114766815033074990706812316794131908389857561653610761299628601161325422095598191973374953467981938980792497983928176062253761553684721429922519478577452652238413133958406962947050394803142322941207694210440413740150730690447177959707809535809419619744436543976560920421045792074523595963530068546219685464847082159061254402094221797548329813008117968707326936671639762006600431930796112724512369367491509292438759033157732119396466396034496719884736645003582418602223811543951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24867478242325953273755461450258357157135993375577097134518931702484244522327987495728767552279310380874997619049568971496358152029344730268724945340478992779628232000838513467241664517287536579636078977937143931957644114524464352546629526699432222919141592522222248276404797243581510363916169692079925427461471777380836969063186022609863749106691855917108078219582170992324367347803456602906128566083681830397066560277204194183703657967211501845978901438016878487571599065555570283238867469773205194586675406070199357139810844783378847607925270423501196258158190655487156427667256344674336214843087663130866532778157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20422049989984476897390599755877028796048767645289009112471714616982075407116150753543023642847342438867750320841268983640241924438393032771848234423603269039793249412684545140214546351153228720202124953459920259764221743594165396152826408562155330272638377789901689443654712119969674500301056879948151891137952394570763260496416883003507752152406181830081169683355282171977251657329066699407576168376214529326333524356874720944991948744597098743759268504724850799833140032915443168285302646690816066870088215855054240113982367115935786364713905334526072730876750263470524332800094618542685359739771447821571679042589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21616735230534614343126941024530160176995458783797574225813808046190191205035185684767734737010252896537369755817247076236044126134918410127999227600161835933991185769842499100167373291355377503687605047741666352963616052796198887282996018511237189643112845986968202320259005446622683680535133049523586109604082011712455702011914329665969090686409416089290704119408631243694984611825360525650172571114738641099007102619917835404212603651095805410973890006484744746913396304718732319370214682111121020583758427445046824417479168101406701923630073207330505270668080190082571392127323545038294909983247061320402438067463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27819725937563894106986631964227065157180299950249515687661286578630656611639105931587612113174102180959724433438305799061178906294613640154610313927746517306976539614567522916795295645831596371847545416489550382203006563946377625612445267995679289198598032528344492587942042520030775832204825754760916626576511071209563868524561754609119451325793221086862638631263989722870462293600276748289866593021912738771279966843868254032946324590241436784375575417448345591735788651924434437371998891862932346296516500546865996179936080338568051621098094051555670648479591636414018284029254828050397048172615564183156848507483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22625832393394004926998489707588014163041429383932934139753316873062769727291728116586628451392414818907723741229064937485213944022289518289665062936808023092522141861318059841415232060573862368622459950400611590501196606365727977086901505872778732270124179778843958602802607332993678426555267310582430558744584519891635711964771569118794657105823460099844916681029290013381998175772449968190236207097286904472423525742903333726074707835204726533405602924880091637221759827131432854238106377091173707867740372604056295227021157969818184290295952077761287144399362022343147046590999217836963105850777908576225770114083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24807954979468745254320520967736960927995959631627138959171731731222595145312216181399651578085602082125800057485961759940248275415813997596683550368984703910335000249414717984102995323280781099318267842339997767173779252614300329175318611497063380518788386636450088809886534212820577765333469293007217731258931098549367887340319820092922864134486901314583397943387646883332886015992818096150483781926475146309217577223617670179061599540993967784472861753836037689264102260562111943011740182333416633941586185431722044142195586644138294851107723619715854078700142408733218817841097533081144311609680624760836333120809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27106125540793773383895505381443073578740373023030131645563844555683854893814870189689344081603373661412952831313168572539690056149174288111449689708330649419671622444861848307316874101628041710784016372107586038420887331027105467231369633289608858764664586475303848452259954982034952815695794671135739224275490005085102897897375784068129239600388452215199344636558467377351697479303886163017985325086045920243459624875041770366666692591655961161293968975878452546241857091230660297766240452058854903071675505094966453450834523436191508099744608925197840831706537642149192627316331320652934616462786655025641870222237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21186349807185412200842813259810825587886292208962859411674736212665450927826064361994727560317358458818107954925275316330999986410224676527315989651060869439033730963031053423978781508925965790515855696299207782293552036750466262244222362882083974463451975984457899346446586468655134258780598495548626328792699204087369306494057024924596498980131361953266207536398386921172661862330703123132268438172566693011877645256423717823034019357815249289230107708655277141250717404142831253882808895505627390068244918442489537263394584247001942143962413943602180644267977151508518632688782356469455755750754195585393790856167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19429266692245763277073042502339379835662241612534264729945009538841888296345314370052233877503509772550214316737745876587542643702962937891484714697059388050807196384653440894457890620397503890470671423409011113536225580173894409169129491535707897148959916547338086924511219312950791642352873936631851898398777577244265102168267376802695153202215856869888021420207328354602478153641270313385857912862462467157757585065770985460137162807168807876449749655131164448833958741110790938996048917102177222449391944817264981073689780847849136704155259759086485265304200398117202856860791958861381734514656506860448536246937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25689602320171133954827032946030728672783410732735894737366826757169395938113949629048465330754552285176630230354178467061786568971610576473546319535753692378455451626703138349298162664769183852723400995460188413433987836456097357956024925408256149616437421164963521265698424892599925453489667434917673081048568753160700996587727724478580682126282000153695164569278199772217140116998757322712715541140394155090882022449048868500303649312658482929490170582372032244796751652295168562748753574369601888161496970618090823683902803581557937968057075926593504311049563929191341787377917091896345605307865474962880746461383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22795117630415338135706371324285258498219182814426412853507231190491038915841612267545784832900149703682294331512756629809697182635439985500858344958763428672196037273858670704337830086381217641727997258256252392197164422371973296189691755666698674505475984457831444775858824883671585209064196529616930384825662401578502001551275482253747533122413380444103336784923650976946933631087567082501345605424347481398074856710161746252104009284694666256678235328062074171361356458040619812591055265793787102084526697869674886688487298207493646908776204419676021384253378264790397589445557313138404778306083071279984882294127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23788882370314652181905040838914834927184545980239806317539347535194929229196824432014398486084783153593173876756007521379252112607499146972138255414224129541541165074477225302170982420384547315017597893143964532957355755220538163936889844784627660419133386427187429715087128315743656998257200137952947789192672380173555064511862818212183336679132991867670844578248830785384015920836307597195046770806528081279985580079504987725473588089398880693725289025589157354474839815733109920339381300696348944262949612347889771975264401548673211868946393475758332703490462841299143818042140541753565463391801491062244760078839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27181359330173177113850319377034744612607731874076542948653758879549327492396055140889107231424444100726984972341016499411325814017890930140007934085023761281293957121301698923981656451338232852116133812971814994152119922710644038025221192605682618769292289045543033365491132923787748976829545201189157989764648169395438240042482579697993109554096080860569959730338878587146278893092072659647374745954456648524134893737140707158775463642916649227271586144911881837671608375570547275186582687671581944141349741372684626864621896709222213772390681004052171799393934802281746833089136572198562295695330764193545296410147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26215482054435801009081624463926396120022681478777235889949622449857327566642030316038674309670700443655297929338812437111233610615305404052724986499738383862772600463326513891940061925322225504837178799794727993365890711976162495345238863697861613896008973119436723380410150153032736054280629422742397184577622542372377643745903471126803702675084708905002183475162181352138275001534669263557361783964970294989644636519206839691898220524706556782685383166987626587768083626646190168085363488120093595146441093554151745932822542082090057150940236439436690407465628669197202713569101696165796065300817077164993796176983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27355149688980543590649600259259407184211028225501215539718342060749735106880410923473336003010444854306852878225493660721592250867492707949824468620878469627933100772057156964506220895199120181815620930047134305317513975748809151737531785281941823675523665901529137908585310328619120067407151074690791806196703122220316246903422431880010272389320032933097960590014066375577451676203032353912588114417999596732806845833113583277579382669740560839259491982228895324291482397522901506329303156768338682395775275905898516146864108334903088102444487621473453333940678405370915598451802421796387473506380607486577354171717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30696649149398206877409595474621416720559076257885674291058664063874418717933852345979719076761342367088898776966416523302324082102994305214143766761682831276511816923934583639975861963773752691418913880815451181266781104390802223559814213469433617451045109495297460350432406020289780444759914090671051620532766531175140713565118524924813260164206945810726724889519727638883123069330935170890601030024515701607980760915730135153542185471494505618172795028558658562281822741854711147487032231204888864620227172155443626087624156428787750023898945437696262329007520286459144696968435687963531762049621878677337225702843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28686681728616673127921483140344372710796853726287368150356345230655438598303035155281165857236575520100661609058895032693848872749446316086235452467676651797219524620580701894989904523385230368678622579116288311618645416413778022091700405993817447678715443465960106178824719642677649431834105450701941572102414611066046299306612671758271423676804974800507452881534303845204985460340890367961223841776615568249463982486768441665660564480337103728653242196997699650514183352250646520830371954413247639139148326591153311836276836813893794905920494867079572446992313447644142184282042574343056091886471386567778750197701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26364039836091179437027558852338875139091528571113522915903463375535352269339638787670218145792955049717124507754165862049569644597205895926346268880540128589325380332554631222666145405338198593953951839455348931793228183964521229401720245689385433475840356735239106817681757673302997626941183100658326235211776858257053966734832550729264901652797884822154978559834535823666164149331311709304602446337698423037953485833890922782939244799056681416381402829668188454518521032419558038590227332869976547600604926130654257058553393725968091150959014554419443923056211443128105367477872743458105277827159033754566401727343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26247581277361138224807541352498466286475993209077960287897176789400899545130995992753425928457000206544244917404258016919386972075414865000840665869500100894285875415467056909143920379225602767060486382059654398303496897004704931358185837249040457263654347237080903671948229169873937448800107482955101977346469295712911646057178619905423000125165616562206036128518400698109458008485359506793268737775015130680255279900092716010777721592107328802420074011436154007840467599055623881647721990341169331367783013748520446624197261242318524629657441114270216959375983826334217537019500379589477775699142862734740902310057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24919824086619475961166287799175971582365365741919348513772358091702245983843640786597246661809874405460380397650869482306922831574367220539469988862721336408283866611415582273634540895020666102480353496478648125747455667632544578876709232248266674521223663642241795346085976987495612620754479098800651985548614587946399399301550898577335701225703300417353611198650477203070333805874308183491790624311683766870686935571228234734868300634067966634722779428663418842522669668803373575197604343853907807754931833446456156502780688428054896007023862650024125432164115047694192520318883262056563255135584771287338199343443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25610560124261248145604008661964683554700380676154446300861177683084561276492587544147043240159874761380481531481421573715128453370259964498057421692930536422377649914312603074591554237362523059065897347179575790541973397298368035200585653427160282555277360821346796947878913406108325373842644967996079861193079849120687069758198585384360708368128726757400973118283655592153384522819593795190209344274530820552479991061053831256713195037387737765955746643911838783687663426376453576836607996501250545461870561835702828865262090877282128725484704239913159099062084918691866345530469877221205006326328362162128985519077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27245537727259645431995131100170271354422674344680862225075024277814207650220018562523857378233334610587777042792523788808985524091222059016718838661542548079952356495874710354075923529402579327382905452759067770805017493223505639311043929617266132446718899392493817724228503470610815664280317350049682319973361726174672197169843854301384664661421386205607112434403359620591122590763121155696256114598683344182553525264453363501376883640770268833642331612193705241633860079635329069453974652498157249668496830848871193614770183543512938667184029036539961756291792589959811085746657282566650733130492580595644081733631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25644212764525133299687239894496151495682914639316037853080412564463581334172714150156268579482887360837236507234825150554969918293711438377927375137886424616382294794963127816527582888439104892046081360357063663417447391906199588734850306801603357326825435099824854427901578965246539701502007324277877347422671000652239899399360709476738533595731104331878013044283348805621761014323342040557283369377124983251492324809540833303807439830697105147963050212015790684228448041659973229375099844469097343541427741459436765089817468103484044368769584073201183166518506939280078417550149645774465087521882716847687494535117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26548262589774136512611169082523189541165554795025476532743970808310053897359480123201214702011020244597122181578037371751277863131249318168021834069095476331791662120018174913126529111011978376016200320564209067895539459124309936385329349823509710544790791719750736930084613125750468523773218472309906139070314982601155444658112270089826180598226403315736628493303282515071453777837156571052520793748044093359863496146653605834681465433543474500816503640841243045675327638139395277094180113873614275201872829015856129504848013027923893430046130777525322267641474414575384754285857536628848560365424759034473950275461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24203194410627095497110206848645538116655305295263505380582819115467858451946658029229430612445980471551871712189085547942203615538675775912258496430794200442623690462175489804744437209610049331182317163368514438081086790681165094529239753646784226875257423672572347601473249864979190026803129131785641255518988242796970888719126199139340771215305516531450968237816880488997774175362817196281464587469901425036773667412196770434386235805654156979771962007542613329440564901075640832079847005607669602493495209709179159244026580921303995158153024513156165195205137233157833159957799321631871134635537428415418142802497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20196918785500476294495349209405378884419229522071822248632896785273789741661254780675950825260917957103091938340205236843661139178480581176854995230593567281603372951612416792618573310241972324612738423590876263915649690293870149644964575678007884417395099300755067443469350234818051535499281517301938725995057713679536985033285318256439832436448126950343147654540071560667335040053784254252977666754480825832196718308783860367615539941171653835011248785460370714146205172144980289399088555698491773312653058044634335379566791527833787910777206265312208836243208995596055562802117579362667064485257673469316082708291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21419817697290815961700328762711047416205526930982929439997164641201297938944236888630955237356591600225400360112327649303982256180038399801185760697537197505034780319977329954591259035058357640775686153176263069297722225460006370793181884876583626841861138303756042871072631880038416235165759345273053068387096245434266713872865064015305829736212520704812075108241738336253069174451593869411336786022222145519951302056198610627063266838076593175089603646662934256605797475789178737756605960777760014921266587411296109698757336996972642351524423741747799966821540300697539516437001718810023328580407192181745483114609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24922303121197892259968218245213981910980483582194597532777655222281678913686924226993643730125489691751789204205216440315503149411971584429057016740557171364727501889259429452522655903882361796713556408945918968659549712952413761371956234629081325777331557244617989612809907696077219698254937105607226196228575785868847580308286672431079827719190594590560413050143210452136988681558423114920799142819876475945863127880113338808356271370420004079827882955124407219405840511171628882710504120804941950024507482153799926426854212066769310880827801458527644835658142699593450341856713262749642329905770349769350048933959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21011056510699742937959392774529534681496780205158884338731143251070250819971152802276696610194212042775653158546459983135465886103151028468260562132527483913608698994393331757340861632402314588677086960510538935008136164522020214268565612525258407135495674337509559314150802937969788204742996049013469690564504868029044903285133831957262867588947522481483896796962789776908749863280933610590263389614989743007091531699928904064433963159564331793428689707815550565749630135479215121452131779401757770032095086425529812916188562115091316845960005134501123113596541752080372761809925182479515580454872884565150520510337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22142751068242551659076119442381374180305699145402570910851133012008630554894279305020758315040434063812398241406772088612653960341328219951419824975830463779936912200212071837491483404978741082345544144559192906982858403544202822996404920634889137703882723485027268736721595304961727253011575886853421282470659763933759863596485399564536295222713567041494676789574648974098783172039182825355364609327138478539294553395752317395257410124868975423857212782997392651987801257501728706145269154107545457182109033889364590461941098147131406347618695377902978788680981749390109799281789675306128851306371837796315739522503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22557410537872828243507696457352162161536632571652734575750511733470887929845069023883427593496783842282324074477656243316655269779092374211535379870029769182414944220801241223125854374521625683076064468694560188972390655650993654238118769368284226866487150845113082868613633266196719993494910004450585258927847813263221589782518132400299207199620654915929138681772875762385289868296885479285389742657827095855116576616475709170804788736717547625725583237694465072712394484550027249863275396917463478100671354212955406186693665570524442257398971895742631972519932206779820100397858131811307620956992395221269086433993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24394601410332336411160979245375390728136035937441367931805110031269405022438939110787416295072797838270739065970608601264605100021062733517772640289656156542516684719517844242114449596961454025757466405950804789385846312205446287893775518920887146928423615877675985883568952542509987207536588156839880428791326895590188026435476226066186126474942364807574461099877161355426478449968817945483558218017639966823531671617411148511204507081930756623517870184452021385007360791144528860986790334133109682270343054377369907898703626813586933098151112554295405143950261787216751292097915613275758061262134526293826876229693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27638827421006670690325074443984426750696556039647826677789310838235113009753809603970830357038764122055959177371214898525243077246880684344527319778539396226066919537524926981202709754405892816607993502789997171778141627464627038886374700934020566639708805678307423905460387926392405428987748830444278935535207967712237290019187882952633090551499207800319591566979167469973389575440794680554332394490449892087975660443368645899125372877885242788176487743874108484230869003747634202543457440909468919519710855092642486195670744371402618526401534210904421345539956705919610013039846852303729606589098684920639890906281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22037345020815494830553486080538828542544205160631165153761947055901806297238935050588114113221723633916303000014930564059790055355772494079537385409277907669851785320832557053957207993043675117733345246464002382556449509453958863900315884401786356380779912563374306955450398694559281359123461993153539331480966991959911134495946008658317752924984744271196921709506164278404401277655956494558307910082663966987956544210774083031951947120669632217688866329593220448480707967337109619677117589127970387176893155130251449180307814363053263625412033612764238695692131968943081014978138005310165451685959339914363612469539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23576074543377933632842703980467284302672647876362221981618766896426425954355813756496294786674979185407963319192569344463431739806062954491118521109848741107138498337382266412697862401009235409829037244584685185129255400734987978043543351996020975294575061029755234972972415938914353855827733766266751350990072151913843647331746165948432682982172309069521875227235497567856216823859677182711388019741420474458421612682060475039086363937282757893227327134580445154731987579509612736671638409417575418024990310966285883176137609985641732137191753852003827484545834452753715842555924963400853110778453368094406342133823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27403590080532748154519994295348269447231759730195979280806682080068984828636069569862484816179362030666785467171276016538060569465597867345592720920462947320319402377499113125710889466524413818211330388635684197329543316019710368687942687067957380109343837381044633839894268050134551117070049326475681929592593169179349412955275495245290697237253699366510802116518270472361518766656956731351612069889187050172177059383049521557384249461002659359364703617120494866135443302308958928559002307788713237134365434107023777092476029035152517264896278733180835546691015921201731103690664903060316259452861073648635323773809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23439485047689887474752148776296460046017146123233574959461173772482613967734070663129483389593258110799170354887208895885086369615054937979702435380378557435376032589407583656245798952825920808487628912176792078289981065392279162780158477889043912064473652088990923345510438882544737276499342744366949842570555827941436242136585739549763174393633154036128986563597553166539890017061364290740372021057351517280231448878928051460111614334576400249396420674208928799896685337791977918089444394585856570377363509638991403655707436198166830425010545521478592914224612796526053552871680388142016129148919337380307472874579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24055669916470940062621314740674140902496006268269286161754828280260229040174067358441044153146362162278011124040605205879720671236310984667099766340991233084931656909852976514737547856493702611048541465747968323029831993772427563965888633701094927999449112807243618201653358203015142288929480370474321347129351653894287481726740864201253777169863903616527337093327225855664319046863539527361008923328452834157785584676107832188068957657044761573306358197847267811014548091755796971271174376118545303158391730947348930132667082408859379111589812492963893586085220390326591432296512638560786338679705853391678376322377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "30447553060242250378675050565213437309584473119375072934248949165034347614269382492001107208883729784436675158587280180648804325355847118964737792115589986310865408524455553210308087935082167833954294882776286103682406895415287229882825132444849403605082242806787252358510525511594647958936509364325602696985496993660813197276355052639416833410159099877326355006836147805380908228116656228526267030759264815730859365139391935027599545434012489993863168134171075537933654437207062293193401128698252957610618995283210281397511845600218913032188496587188974158240705318849296603271981536354685137177371316618781016314741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21574967032400501014827841963162708", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "26794606785650033189650170577703761445328572121778170193034904029803365913514214001170676117784274877659553668894705658606878974550862282677765119279321707999027671713171018623148491207121126405679740914061164081411230523992989129236289355977314192124690868473694586299499731508064798010102754305657131544539702791740009744194514046770957467675336086996941542000825989182759337486069880782678666197916493051371340723526114385643868122883097928158752142396603096066496231143864277661408192069292500930386281499481450290561484725816306865583782200898091259936191031143391946653342570508172923828261987619263775790616431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27729562573663670887158418102279476654319620351145977673499081248971750077273293054338105620261907298864542151933790273096697762739442826075841303156962557780128685983508869657638260466553301178132886931099797420113200363715237536889348584935194358708764476639884645072611387251904954045616242794595687902148388125433118996427798484014753540317745831228569209149819639904321295826382445002302863691813803034186286747522070282741218998258790423736433983022262700278230948226458291258830409066900619266599456154624785662243777947540476938837139699329410245010034162963136098602307646649663561923514893734301412181112903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24052207547777946414220632571379222226554750182675085758080931553226511495819075402959574656655453555310032539967459558647861938088623691359557067110698086180193989370750194617291163163934075194397179355411643157436899158427938919091681125471907178881072452586433976295702339141200177236407118444734802480306405527889636253379663050371070480863918821682904651384023849983560568683173661614256839588256029059045369328218915143904556989484494292585843151994969871470185226846858043964613164002374938718388346301634811322934131566062325560948516159511290600653806162384717325477370073154952739808888319323202984785896961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25345726329479548249044687614757523015761971005290936035470331759855821656106666802098511941688359878483237941972518528740369942593174683905201012806860752644882741529634403820759808152926378486144321393932777530640797882213693991586697452930966413011161130664292639183205052324371121385208499796021386531710055032184561076338273007394042468006741031067011053721149494164130731632706841403805313503350062865175860926084646616041234805229988597835226532104268290336454313383789995838457804037855518535044292424505182315179559410923215074654945999820728550779544995169426499521431453582322317308188172148949094366119109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23698600716599399371155243916058084577543112864190443653813397616343968734525695839054755332712737004025790283834777719973067559809197516580192807336456930526257423076504707824135799876136311065191291217952108890392277203103954540348309248321949302041129046987881070087877455131605840505647177493432594189733428869526721527101361454689633533073143645156933566462844603556567510084059898731479787325080006291276227241486985373181227785295158153798814342832074821116470863677463253263875745354133600658562399182090864173319734254312124805441035211311189382125373112521171278938406206055296117447835353604630649428649207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22656445854053657155141731622130118533265221001166611721530533025705191221468570838320812332342267802407653896212483395169017731797907970852043810082840212295313306305121457619995780466367173205763539862407741571623633228185941286800776825691477038911948207170036499568552659951996696287046436533268918287536288634230572121177702156892831034120620699632240374534378946561204592284279980815164731349955772810733512094777776489094994143985347581780611554041954057841853611110845813874218617583832430550991752215939128307373571336565124683916747151481596929780321097386596847240530896914085497318496797252705842465152781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28417829681468752897363136727102189174517433160545655844622084402083322204424633476458778740401697681296492524082946073170003973094330987214809322649089343133509709396042534846674698819643902682086327001742180441837773371723785614022844082905260332038819394257222937130021077703810930862923057867131186752437801742326925586863796139050747271961665987540832737517898379461084766693811488468376153165677808387679357912130125552934087683579207080320889018247430166229089564057001262886531224052973429876150701877865663438092813902947734465593838076480385140208193142293594944232774338710432656187390611784540843495875227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21477576328172414048626344508776032844586880870700451691211880566753084249736586598882575508251064344696213723715876647327645257003425923099196369117993434949301695986469413286087581645889188593782862598889046714248424562714786697471351750230473670915115004714563908888407697735577212521872952985320245891999785184253086553637380109286893730183761910503038737890272065255110711745064982371047210324980406591674823346451384134308899012291104816277847571911460756895701989736956253591528678371064022142524833323817366562088030197537959904774562040278706190075941729366001477002761913208430733343817184836407192003699621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "22642320523177834519063262579306868291964605125386782078088006975489760801012165726771706213477660567106852799636835752987786175923874701805946771594105487197879641699923217975139633865023480310679460510241830682925594887876044690595217623484670822189380917903079091212803173478765649323178014580609622706476315966193953962467607679643429711429586404794405156897370085776297004694320905757458637302747457915501465393159814107463705591188364219514027688438327602959460873937160664796061802989265039458193747637468383642230899729829722999415573267309358995285019955469199295744924465580846717151769707622202062450723203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4893977362659315264622440074231024028264373680059704683558083264812754832909425207731120505986209049244604643785477631328735664411395798794773794261637502125267083567193295397860917440936341208774518828885045787131012341694200900046468716009066116936094508229207694985004041155578850227076506570999103517704753005709960263981877769621916973168276600524837907454689637066681364503583839102307163522427739023954231175442622603128463015892247874287079260097998206017724144891433089427482321309713611541616201543876474225816593488715067758495287571976506090874037439437587682663045099360029714722451759589279689304408926967621927182061451746586689699596966053912993199360974528875208316758493408449866365447172736280671777905669001606923052289418796820005976428025250398401475923916962294622619023886043491601499013896172272935685122666334773518719677187781419087809574913890530380200422310102038590172552895013144524894330432947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4244966255300153233062891938334926524611120578694315029527441597851967227391710955041782004349576915431505669335610866745340810266384506574993213357423668114293564923785972804300510459945768012437366013296471349641533328793860110710395148581823523587059462117883638300414276071750428613943346609400625025103549411056631611270282038679187652276032237156315927770287277142195694387644154067402095541354244166372280926278151891052875514994185624352398595544451260748616575378701363882471193623699142423157315261945480832741869928972464503401632527849752014391302810329245711424557545491930876820066033335282204740277523025242546938778248218841034151437434979832204667909934708580715297208618923766761360358593184343599866886774049794409724664044746712579986756460646809956876235218823763357225912315405103384885146673350532373767527310609769663365758065748787442895809796891156437232727164552978920130565789488604552778696214363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4101054552192159655023774334977669619675038889103338637770921835445098998184458916796276364560339926400948741298296099376250417015035727418305825264057854651201856053725631280183650923589619917838452342007286595669320770890430364849650079097943353102285059297784809740869909920901695723463044025163753080009427000108754914182787109949271232908808410541291257692001896477049095769928435106583380292559696898100602867380182389212266703450580158544043180895236905535581666476465633255742813068064562388866712830990201408969297254294478768771266441697937225678088386091440614474074966444233900796752739872147792862345158638126523205329384562189445056338580896601197400915095734588887183069178476835564492436585396146109926881106440679157403321703257905086546016706660895143302297673359266867355826130694706100880524956601599170909295896907719257188960203237820837462966992063205391903086228941987842600969944538274596891968152607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5735394042019814947570583327640847149112395775694306842794903031473900524778531749063519456680473341334279659831875364508548161197239768620297759248871876354722541126778392467901539355927467272913377382718787178197925178888638167321653740370461349244272203141304450341586185510651012952665544479525815964469541063778647194911283169071512072224686656210804496418143933812276883195335953865088652002638376684247581259899866511653258989583259572501121792080003471822300358980051312897196375022020672721432248734510049484752205977905539063868260127984078172978174084474193545061751667257839115610267515832038065842342892462147029237775530212812576254178472561159736680140245672319448205584844617945762329539351263566874219071811212024150895478628047742877062937937771209901076660273926029752257680796855546688376469488106192153367827939949896753874545136267003844781926896516899162277983324810406122793436063004776937738374843089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4313921828667871840677262374278852382029771760902818387933634429114694746388037092498927075541516905744351512442866740936805174377683683407713226497067903439636354428124266923765266932727626551009904056485971472480862420639771848250588885094224388051235448692997372487463780568722593548025698778866040245471504777832768546811948285380779849073194506527403232451954251589762973404847264117834224321579076484078431330048405147891411334659916948427339739839438239312918004640837193964689441793115998948090902470160499836393572180095956719797713570231582946736675007838656891308150499709928786306229725277534777484437531427499072562292432579918150999135576779095771714266513750236790775503701880797141088341985423387873062477452381661226856728482575663605276315478807376294477085873524322214131419839359176389450362496366874546023068859392500380586598260899762702352520590955657199612797870084328213436772303555435516768608332401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5336982253395390282510775206703802204357980558407860330423849096848492198189107267161735948624111454590431161974746867198619863833454600443124379074354973151913071875256820283832251145965607727325244132520478460865548466339819372079959166635884381689568611698125357532985622612234437535465771531955280008088976223440515229683871701518252358294493556028283154740557407699254499382229829972977055379090242239850776391450939908539787749298638318253891532913890266725737374948659830941113644516731258105080568995190736993613808934073043412777210923066350686383947425309344056178741555400775477334743767458225513948381989176247002525486457621796755525762353639893883344656571711249599590495000022586040919839703887520042795324117634294653268689723241620145767202863828713162683748504192500313571065931389178395999975814201838903313904344402614552978699877203848972603851852484484989011805666960324385078819272870079847042871968759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4206523810919319429014151367470293781123651801513069604610895624639744289806516716466467801645996940095269311238972443516674150499257068992161561089156619239584459082731244069785558362932742535958963352250372619513668709084498386135225711858710600005520256743826838081749821702236227271351915067257290450154918857242869834464240275089187402886582530255271543587142985349899224546029744490218956943561862913210919955561330037399706404554407893738684590703311847691821421142076077477507091476610166723206013421879208902020037267427444234200958834453381417218949100290697973016804318269723985652312899658578782950462069483676131727697873321943781530676586795309297747113949755989715962117305579293872190109879773099213856039609996890066481454336894792396176253433849835087534644402344960925936511102154146432877163365459064993036054302684668038539891443732829250828857554247018584680449730305085440795142104081872033988259798349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4537823482943952496352228531765103519468120047346176553160936121145144110929123596257042270090478893009269033826186193828327963755189652417843241149953636563805625447381114023873284969090487925732454300790000055907054406871559259233900484916049905380668110531318020679735809450246444709054281176497187668768503873641136081778845626638092780815838101209770517587928455771594730617336074132062526750695817802250874966937065702407377756422034008718369584341201141123092705655783433165553111494360811007386527788175586557558300966703424583852869048447207916488313891242611331587522468746714958370378950842913946365205983503515019706304627576948211556397592869488408429069601785332220694627281572976705035131517473775837907536223644243890446550704325092684744844514907865563550510775399434389651152950387267887712034564859082374515773088151762856515652700847136243187657188509156403057544692154184388716639855882992340229614651261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3651143282171847286536123565609135984742743034781043974246512023451425021237516674266900624496413422183251327436462667065275095859716252557757261880799671206352403793173997128606501321996835137381393186890240957943013458030256947622514369906269898686255316963293311088730379288657640372213905862065010470906145045067079789552912396878153337611148735805698086308689768412822957056528135871032373022355774704840303625245070247231259032735020159480553207728418598087477851068018879188086001865254474791937080920741237833185435001703650014098771125795751647297522993589534949128090370766743758626431691068061959797149511427211938264991092116882807743413325649592233649904680236333377502852241677314211982606902930903629235669000570721038352417259334041776201417469220572139453087896138229627715798736716700707603952868163295016814466069030054315086303914451221105247189725172103068063854728552920503819027950559330087215143341271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4326171844198144287415156930256829964177126752718721407754815807636185247978944878116016640744034984968748283800039943145717885259884066345261073013861385278314485822455489651037713474028872208002115851642108223141878400109197974624474316331478601749767611105417494489011993303069617830382833076660953872844634992771323108648603820662612595921622472712012765502900258551300395120167521798615987174328325703220549638987950300246239333585568904544058417892727083949118942523671869273327651666820624816045956645356660898736419700186884097448623507724855587574967935999162111836488669189362913804499045809688874135527064386041238467042906542601921794156445828887608890433080349451049852227964549303791461522973397981963194590186798297075169742998215867234629346391178167820003090583081554932924933430031473015314054264219768971371884072922150696119351967989801418969969603940059803242873771225785551135944259727158031170194880033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3734098875955049492472027292234199581005633228143274581033631110491747499712880347791659394420781361440005323418873698113274910360334951710264723476849242865051138104219305684721470060158382402337004926825766015641626638590678568963120908690168620923845890334044981533066880346277515393231413259261719946319682938923807250979633086992609280739116093552403162756901284603378816594216877318412378392538705724275263719584849006848942594936245969184935681837403854982220781367528788154799164670931335657855368488144879221442932628391531606389918941468147261322866556197344847010211569591992125585773117702421676465241311644731704626514198601694057303649767486069257057531236917570554776038843778707111542301576037939222229047794234446096722590214754050729454586441975683550562187618407131321572592653995283846804000376239154350794653699751271510789255454812964964213115659206361231770303138786426028683544583733810810530316225007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4417528630467591679179095116006855455884850523264175245017909204783555962895854629512489201803222878293597593186549429153980781969292165132169138584764498953997046930824965087681358359677495229006745241263032388453535636625057529197057165913879178121075398226859442157511133114288184287025319768017068424676928609327573194338364399777104466522323103126144347675416310642120320110967281764567552385138780684622057143033657754036546319597867285369952705575066475178595523948036980703518601033404306602529326671106491673767424101686973647033785480502806244042589710369448368906992454419869894350130945155092465989702967173195479894762177748632469147928076272145818402418169724583964723597651253055429935826871942863769043786826917331365237382023697329560277711160398818699421783256637587378934791656723297730592899809948106419127305242774298346835255454337528107964843324571999884531242364208964523509952680943900691657693537693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21322723885878695411526459335579040", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "28648329402769733568153108053441034129875239794147023078842745544937002923390821736255317048988219823959970255529050731500939841153877078287881612316437903897689110811309607215470033372663200877105484440052214209933988677500703321734866763754629457273310548507369018261292601515652471859290216138445293920282635804408669802081253778098684574111362271785944737842544419480808944360776222214864724366405172446412482288259690438898350353402072555507047830423374235908522607851667574306902219494599554474183403509183268990675900196837329008186080479170115678779968416955767340025783780032413416354494771801583629577206343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25837861526756246062411518660940439388882805862600530548439066296490885821857649218223545948365412688324579993159392085304843030784206454980954810011168594323373389041142397377074799922410425275223109945818917900918170142179892278256959244527417303471424381974050394592957342970941547685242907378024460020954405562870233708391252244356877426323001178724046462044297235713560370346753356226212571184021863038234853719337918245542405112185054824262108048432778121109120363778542333038735573941359361021350402454501902442213631921226083676482402130119293935746042725898875674251497056293138754688196119522707243026419737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26114200978587809520099903339425959494370658912969183188479366046157055208122916620141444150656675222860657095097337427195126076270238472994222610046757908751260676947790874237638791805225060490097572891716351663671633814285327541880824631112294258866280463375849672801777284814617051667612459247318659127563886401725841572037240036167135443914690051031301878575383213195252346911960536830224112145047357083948078205548007375378534400763558807665148717523482712110573880164107013225898138565296774521601346350354618101839496018800979900331082849953608798387142950399100560633912685255396977497758699960322675346626991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26545007193762940044674924022980878837819244470137256250272688019286931393231231764892850784606189291123593043326675866415897504056083243391511306649627261135982306308637540358969962421225467168096905613204471218321132270783580465115009657442371663901756107085722755589747962157160754930717703972998482746677209210719602534603752114025878520729660356275302783516233851741604153050753900141621010939367711871121019055382290502876244428999252750215668721763136685854090056859402061348342203491423330285088979913056200396078118396368867804603341484684535720155280433951386932696542440861081874704599756827545786119317121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25161267136992550573731303824029215764835250281878392602021028368466903918428850423725363963620274997349223003805745444835050610138612473816839016579062929567322141190962192938095257124906950184080730311632106035482883641316820126553253687989026458482958692943289727018033140043936352389531146331033507916379003806247996292568841475615511462106590017984747863462512916572420147824271500726649653316239773312131090464208447950798591662742351534364900817899295380431769446882480231159825141646732494644341377574362362652134003346940362436651245668389455535689770162754655860450545933540352970104162363708650968819529529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30464217851051255882713368388935282528527937675260387220240867265492200248539816895869198302773018307167937811260429932010276466811819834931240305233637790242021512742312766537651621382265968974161756022178553177407085589412143473636704800346735865498861982628532406508247680547298126518499315608183818269649172334280062877685715241182807724900285297232187452392485135012130572883361997155667998124836895331040890636805765140260530736422649449174968299136546073769469085740856488855701632375457908009362171602455051605256869844361982316673924534086620930460802960237610350682291005163985925545782055389978920865165913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23438696504078707962712163525244865758320868714221186961565369082249926401543237973961689570564080341559728213624118939342431587058783819659462508582362033167760168950905277387804199444832376637430493314269193699289842282252306003999447541420527034122125992899162095386552628130356842094335987201851225859584499893497590067269674449146844338048007665799794992677266694493378049130063860244567414954892929053469846252549779375390451745308801567577138122370893971162308362518826313606705871965317248522457554925754236824453755793597287968172775457163890973189344207405249698824456881196187966166253202630321109061363087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25508510710873227247868942630183328949578403604829729342682600073106761640520421478126773766030224859320986810160252392552895271334435102911817673505895781519750056459936571382398749091520683773894509833048644795767572604469191743692092722674267185463213764867091551909665876888354546628193087910609462509762385030060848581571120801636373048732842333069384638383504162538967216667859602831658535960624607805540463589362288690724063631847740371122108512082166629627817960150036052929960480854621998154135611282179116019235933355178026319827457232890360457013339757038937868841479861582282158908045672338317992887503933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28259335498575175658232901519333954447917441551378866977570905946231418389553288018062020966652964985553603428466614650619090376389765499448498463251847225751532616128061097625594675604767613468440793144750880094958598736656057943818922061845007010020841469989568740048604866996926054568313030798187049500000079512584916508657480647045313776562588082630788117847302230446743863310037221644005463930865699981692399062327655428754106498388741349231089530463785993906859866797038018459919311770665807934086742249760688527315585332471916583624198705949206750393505832093136988103549017334234787391223861989727994149994197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28032044037758648194298938029186629205012083548254771291511150294878910164769636179994117802560174518867016646950861038691040034099722184956073157555464763784193005238458227758816268753439541117249529939443164041053004244407343533789433440342483322279833229026675589987806586882418898776057119519121688961029716832702328630336013449064494369919225232531423072272556201110736075680486663718135242157980755097272843949177020610078199049056273430616998723865226569357875246282856178501351571014091410611002990149010675266318978206084373348108044316628665210832627592055487015796517170547029870462936730064745409599215683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23540440940388311131361667588005775617325131550655821005252759355431854346036718043640176432116402292091956273503172283047634615188792793961939590012100634991241710091581128902910063570607273041462279274136738056431902394943932583781126947344391926919111225902715259434104669570912072929642071919881939672051844847649136718336966020731392762656221632083959910399292409564755431663491530771677196468892686913313778799684063994763739216622578359742556241864061806498187252766932825891027962139382242532081017829869762253381981687824801456280976880913406959026778803186966781329891343496733581427014563106061308828852811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23472383677580033244073666552463799920209152347202745128373895308037298665197197536228813486961981422598079975632874868054239486263749200117307648024918348505749681937824137224659540264937247791384325251243957791684995877685749455196186857495705488713422839935279387995406674630013939458011290754110342507833688464193663324166584674547335295000738051482575200967837289253122541832312968663775165468530706268725369579600336478009581305704201168051121806921475623479357558000809271123560993746835653924656376917596505640193579762148362314953486782694217603697750795521898969956770615841148946741333587394250884156733573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30031619306090295795911131534143302992529018229555206724982457672678800986134921133529835308307429567350980280219883439408349869356879566874584902232575631583759120326065306683233694798611831466351586007966566615986139817323673883898428288347475651264189005713802243097100306809467358308495478188247890540727749973953696614561319158794433539443626144799215064349981880711396581951503046885357155669032214703692694352565398607794924071783924714899843525979171151995967594639737059579079012300914512777756583793146235031558030165613422506117678800335520627058286198224938684171385423029049858252262572248316782969100063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19452784453487935379639513970445986252318722779044401548947744530263957921676536620739988884425190122797218628384085419018514799388348993790752455458540429485359987700640584861983280294793564027529277851678443338327512743368185180366225944276579877032013879771773905933431663696052604856107427201977793391821539739599190164500648101925534731662179834468581609189008290179873022764733325557099261821752125677418600196790079153316293345432781567649570795082216534723128738671975917332745474816701107123438451151362865043278726966367605361404537963302134321380583519142403566085486859863352865064994732531780156161420917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22033913526834553136180433859470487448219465999510563573612333179469668640953912453692381786694291008736611758264040610320929093698090705087886405892919533964395772383071054517284449054120788975947429540841768242528031798739538393967960905062229363482173203416764578445306013845185521751193906412196265692296121272577803765430621175475271104535945336593562840036161520794925283066408156147123144954422047980992356778936504076992533681252326636354784291911283411899061351327429503962463969033564197111557105717059948286122034360635291438247105340525713749441681740032666977660927032188720868656550513968692210603828983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22327519731637162655831063246977540759941548476946336706293452963127838094691565153936978096665311088960522135134952127379316027756574127487537538742900305027795601040466723906957576694203177126868617350794670626449317094746091916277731339475143816200868725379426059794087026976612690881290326161884467061691523361544161172226735564992604006841745537393458406988778291929101403167199564429071160905038061120297004145836571096324485334942011287641684368673422966945346960798879590466646436355499088738461317482949423512756376412847584884114237509327711373033931329626805511681584566782022840602206274702576879794565183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21215578765787823633427087272023587778400158753443784210814144858070518868578499761905630537513481381429880323944911067435009123437929997426428810117033956754785913974153680354744765611185774720978188413005378632119880473752029715043885057493690976180305554469679090324724572241257945149762403195886617638990102069474786549233754766065557160773835606161109700870634418209524087630891932966574004430310111737373062781478990857803104919867646746461784126078729831321404159465037872942533231481983767325206701098605596601132005923159852658267246210350005176702147848442686500866031533836712446477303071631188178506189649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23872235723281287045898832575650516674482465057991050559303453775917780550721788252965296524700378100291352537746609883985181521204319360307390700067578731922338382635204020049191592247284583097622537666240170644057485978239599002809392002328045036719148597215268393351557391878163019874924787985532200877424843655076317815035415262371022178555114078144609968270851758204082070479706801063297966878268316196504348206783100234865063705383586907794238615586201276541245676192565025606836985621090086153087815733903166357392740377526035004542811992150550852822319065151174938846166019736065960385039869837040973050684041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22660290723471693419135235949358302214018273829418785635313507039502168969401076118363554314566821697886225242460076837637343676979506784503220026562031334710180338382312286703910400240596405864633838586851666175717396705641483254233883904051514038360217583341723756431579576823546527772829070211705713199157064237922319839023315283920691503694249723239208033536218254086794386930745232041323359413025241172597530641598762285921580318400900655814842745215855947777457625491953097196016637333201997363512876095298299945137572912740640928911279743704980196241644428723260516023565036977566794617656525386474951584978587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23063836326334353878860082118383908848802425982251479114665916554081922870677827346327171365539148936626526663329910630623637701910325724274322696757538460115633212752769520829101518720663733983362255175706782069598016313082346670709108214795914132072509453766687903853110992927511006382485859151918317932884601522233686236865912463861183289651649000816958981487379010135872762128456051654564860310046630676461928477184868175166455631548300687122910975668304515759654824962776714408411633186950722607559732474304396638380703391780810304116837912718670431635153027432867035971909808570394076729164706177053165826184019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26346886378930992436606904994290768195669837944316516830063178705948288399789751894065039581867719251420919932457635274534157455674185041569769319833275769287346681426875760943182981690595291050890972332883889527647639028040725241858494970567947064958735680915803168908164935432364082492798301366235771293961518197830083125192739239778543936741686409394551398177790447719224612030109939938418567623976785222806132367189450644356771369249264911247657343844817984413710102145961448940472361946685082250902498741857001251240661359058507302060295280174053375917305859646900563851348589649355576540643143158864004189663431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23597861568181447730072414869381606195893014420726262635842240500860979461584285860003155614027056072559614357177833465241232075189982348309947808617013461115262154824375832399691184264811613547469052798688583883400179397691355317075183648570424346769098859272228476288476233252016118118219479464180528233289763422054805686624377276101972477954963099262665598281975033607861394366374246943259091122939940244994856595427821335177917676913205635807782881520395445515569161966340738907753442408698269913417332688175634109425760894984454163363473307000955909554619891323651101229106085641741206120193117276483043701754529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26314992867273017597687861288671075978315477207701199977463602311351656376855493254277653876767147103579383152984734128325177831078679401284532389838930098899179847852104877177889345367559654517234279879832625527228255399375296182390859478892782371427998376078553825625450108143074308253016860654470841536005937921129037239380507735936161812583957423082390125307100712274302464365422810425433025404821054917112777236713656070692695293718797026051145616740599946259151202303205200793547328942761683622433404704410963754047083640642060912804862808233299430316119120622057804529236967339655034442488153615109619505120369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27054434510749339030456973915106189025387537004784665003188937344581712844599530771029191674526782256572103856680652890550172726617032746665644115442495420281881170736455042756274324354093812745785194922034988359601175019216531591674186383961593924265215680756461055293500087178898141872178497282950028327706337725246555441953125335153804081344311095813089119924851718352211467014533787288546676372048839303152339917879025244474835737659906742615002614027423596590722664913171387202440147700098928124192102041948943084558395614104016849977097602406725985037221748158680237372496931874738699022634344775760613484874501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25100863511974822924719450501827569847868101508276591706717380577866730962840550935550123298865760531807054257847325785710736178579658817354335495103337450891761057799788956281447755161641496701902061205596969962689120495146352304804892255483146133961854782065898172435572505239569164503280513953883989877162823845273677072437469848429937491525884561732220602243159997725408617689891561632348793461084801529974610132013254875395182675428040515846447864671353609206298055680063463694416623484344236876421687602630024801379868445308649003984864123380581458634925650998227641138124714931983462587815781495608844386128187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29535081169972211662924975741261544392348999057186284112612183010981166808888220782043782441196161815090256025408158726092592576205893030152721327926636650735599489387796960486608427515233442291535345102668033136327598196807143242484833794535487706964908590998251118798036533425492148156499417239948185452827483788499025865923219083631498998520931709398373556654792143748226711387727168972368859462350220586136249858778216404178117882969770527852346555250832902758167420248919688774359887541181812418607951850132698449481580606234941865298886065439762973105905598199014334188114510427912889479421557763046920301368957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27741051317461940559316399986072904556928969596839846091523356492496275796225577775371585092386126714456861276757549073982426623624787442177554195167078396949473367140555098533830475096827741196989875822650770179415184247189097465389344997861473398276054645162877674071856912667927493834647873214383639414649448648071740040565340886612773721535817382558156852627030090795761162291786845315615303011751614326671360230366362046304060240911356204608085908985908007298556868891293906083254172322941795570097733743324546125117975805529975544438406295921915972877096779289433196259984493883746336224354419167341469493886827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22040985352762272598237572218206648273312103198243974009402011381242490385335457397331550818261600589104727845802064970623680460486900397938506498163494761673449229376265049866654740153404523491395259779531774982094962843697398168829940024443648738271565926748627102881229225213505981994200268986938053695779806296800535431443101257604677845390017443413618096797447804938430769812691371361453052536877601439933460198132226380927806346959154320372243762308951803762287719126248659445392602967172142338271046668158338109966180109885221922083140423087780460314743504675022493920841563759035842284613344203661787376818253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24523026451322382149395967121600074006815774954263494681055328364235086423857690522004081039965771952238691476378196207514371441483400087600645060635418808251118683461372320912475688943855297376451902898569454844984448198600175397199930602797261812732070040917625095525173443394912538127910926782521400182635191394013858345623086180249102915418575959409920459815974789345339608329670399402435956902339765710443680441543142059109499501185588221893447312158786316265959906226003186718306951553949547336466194070997028908553309329175511977984906114806022634524981471901034307346510040955573935245742235634212777960749963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24864551039892756089371071792832137872694763428959686542733135002763244554348498277568611938931347775543353300995089530181075604145698968769592451285667401312849900158080236754127620816522310568900378718263258223409773480896388749269750969697507352562692552981438716865231480018519803662403843760901748683399734117568668703748014293581384535743945889975866470413252488492113520605809923382849427675640415728712448517391858529796811120173816999908416250203145482087015509098047512779307892995437980295636751152024264526717394886587889711498299940068399199000517657115024036204669179676589854279649502396891877728451883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28018346104770935286214780826131136832410692050274109722253222687195449133868566946965829440639960640226387171004280572647311416788112293537571614293491898724764852435453253833823053284613593747105081295381589975599982098578581308307870458462377163322318897889450659914392490910022367696509598112243146830775214538417124158923035076148312331464078612707243023433681402383032815450577756163166090447306623259143371130419944757946396845493469296148037538048885795952637046946545429358713389359068000602693791563031262928341008149252393144848136854927618867344518093666112235384856098795100502808464557674111986148572667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28641880384306484443837161198101519897108587026779341957317254101297695524510449526171941550427551060010767123126354955797273859410977623668794001500200608266938855922511088062544471397976438211985651532494188659415237813400714934244155813030167681943251501975833183467779844754648583224092920640454769982470968405285149364053780343790527675691991416400991628202858271755726893469010522633515744281045790057129700814478192343169604961704301070715203807903191253313533303407557567791086204008589225381515988619863813340909384705728460946375283356555940392007874097490953650189210054173240872792317962341177987229449089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26422082688123067964740175460073667447307674130668623951600740338279859459831293476656193003035119941668196147884887216276299901399053811408635259829378783445706825043667437018232353150493426804007593970775560651787998232008144231673074148596822170281653113753832034250475738690422925958810343276729428336980879667076771035212846819400491734209668511970065694680410833855001608627454088833865119614192582952661803957593715241038770283591198744576559958494934097218518488807102230796410578972961137547475487956187209063562759945787219047736778729693066017218259878709553920938910314601862317989353846262710107710122261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26273010998389839392154400948239439369468060320070562899785271819341766833824077261879572634375292409105264003763027974820220233284373292860684048482594487096168576811360899395115057501098518222277775379289749765854748984633598706498913864788067726773882470789540367182921056130722912641497463843690162919601958671352787828794001615858389318465354277147155611006418520742616947659977700817656331311250047948813538914667388181321269623456536175437865829107468054117948381014257545518633402636350116524232500990492074975936444196834376469310060343773420321118052684161182958628824895821894598962257193208611741832882639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25168531907881748202414278260165826456972935709236036491179741290155014159370264090955231672347875065427764457879427032551754556171966103378800696925220106345983469768725801329841498063846094719469253840162698853502427407147107656793605159585607247807082356591026700001614329301742447317154729756559825732286890690177100640342759602605422262964431083025850460246701440874480371277122937254904883125069920328568630963399454633976921615809798947254187284366933026665122524211175685931380682997477639038807870202781061800573751299970364425264420006662759014755326950216617638976884969317251253941263521581752304554442419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24241116211848781788296291596327189", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21168385330401850767132211006927117", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "757720361432224256697803302333996939400074715311799642426161925440309248683732194170728339718210158333004761940484011526230967614110317298684210919817845000257441864399705917660795026586009016384828822788011767172117403552756036562759531130522399971891008549213785888822983504655574682826132036504972619838022998944905681899269580068485307674676300286799940387936969530016762852084432474278449649738872955475041824146847806658378667146323269624448918401328882288584183421127681132265476511387826390676600850908974318883335636443579064498758395414569348027910455411757114195335190117606511775031455334314039591671121180652741814443151977076918370642617720351852651762734842650955215466145964680512312251804074237648929922687832477582721594293938408988745137334147201444148401696297190236802723421622172750473399127944944708625311277830705035691541665029843247181398300249885534999177111971916794976430339959789586613158755290783359231275109887781305514792423370435823750401726362730702955516144923609817125468992388610783836505413234098803194403468705805183830183051384893089394959155382986565098784761610265044275316016062272922731804987331493714950399416707274307005559877008838618292816575381012224503053051132133626368439263739993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "720697709879825744537339608032188087726960594734740967053138981493068616045563423599701302551445185025612231766190285558661704044043179622752895656325605476741806592354905609214666895584288079082452261383727611150233779535242094129509390923796574778300214168550925619830680449327657902558360097743444144796160780779767311965976633306925468605487263685163152607875217748797208774852671986795316571111536252694127644721877643643963668523778997778088083537490023375293497292160540259928313225561814153721404634431208160233294434826167216783192537726301361875355451836197043064506935055353131750600002550354801843820327823198070338656121185017007528737834387020271116719564350098408737765615814197879414179503615214169359667233418916144442219046384000725955901401979715834536211411214401173179130346419043844784753435065048337927890589356113050353896593565761016956404675393830521422572328832257281162247038053494430437359790779676410844852148368864911170708148589084899602539771799540489083817360441582564061463417846353174047265357349824407898759648071850527758506012105804758261901262699759664893918922432150415795465972814271147965703509627645408718066076408149101123404213926752413488228392068094533129394370065317799345872298939537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4177099614702708938278078701444885617098349717389847932176923563438690135704940555542398731357708256626254987994852244077637331934660925570561413356127396960015282456643623970359320713354694645523246901474440935556420260354080607562927886361318277226804381614033573604348395209673626285678872579815782222026394641090450879744726763937129772025328798149838087428610319460725396454045575197820362903893780791718856524061766087685019682992086321166429091046713557798541805631812215732586660274966563777346106234806476425310048344457401244813947904343435536572755533897791840518150934230365670106203633079169787597461517130229932887006162092030697980518786188834945325184635230146938321870454359197400966929990244313404430483003172480303484756948249303259612522900826714103734148050800992779586959683311411522050736654617929125814496556866531727988145753643691446063420836277213630416580780367393220866156338835014316895828450061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21855537515319381150539530128990341528269666935214787671103309258428904268387356966782492097990403408506191762278343591529982898362211795425450983847785747848677396849404781115828230400000685987671936004875038918291859303346572697583161883647919262005301638329825569286898374517365470394808157376884822054494344843349446472195137034280225843877645195257626576752717769661253819237685780660533146149653177139779523785928710170653746996720116816426092829740325584826607150542261471317234215053561492235223274029597914921346088869618629512071573759061971203112938217966985991212917200267876946379204277313073084727122951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25426043045619702322725888743268805057789415685645266851798007669787350288452534895867033759351677406225141172294333818786279832472885438976951598208237874405287140299642716998578595754014823301058293346773073523178474187949474034137122355524649042421244290218056584440329009210487678953920637948195227305622539910015418751977003414021460496433395935116812386825884705360232561567747673728160541708108406567408903631257166713461892483287821742880481948650374914501698677965698601431493884908499558040387665403391687616815401877152068670292824806144902964309531209491260378976533721596711272521498843349243663638653399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23954419727170308190668128678686836519800874561219624202710301909266001944302202585920325262370638021797491647187630651524075794270544521050667247507903232870079769575644367038411142602993064581472571867419741198838528532421953745995948951964298114560284039035885767378200447353596710507174974689285378310321247732523460311405761435332813261195530668582671676116679855247784976468133727571564820118885825660609264932342560115856755265566354656894325650310551064786209739960707731950182715009378551722974288130555441421965848701590866741554166457496214170671143105882225964745684758667308992620344527752509675759823191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "23528554779420599466227230873042046548661975465444305153668478322453899130832149058779101093903410225647275596256020949377350709682565417113347907485457725574231169182515260789458997649914676817916741051075238178246490768099412047654695229410305847972308599331866092164046588661883306764465061844978996478597860110879798585675823549776176446468904945030036469791092273094230069316120956765506450743242539222060791789052866392255381957695325977657929390227953371490932049806507197595396880734673894488172894942997271333597075999369561480984544452990842470079232687073059796973084084883730278289188625946551177564843791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "20310947328825911503391599166692909963662537252503115262828838251299121278089217845412310858531305119204477443846660855641187305878913580119674604425435922813101974911459803680254353072195216445982403920330675041458028980781754203882615897362862673560557063915822346761004024815895322213226540578833121784454713820345200325536566033188294863441142637746330402183702617214004775371619600674988079351154369303179457955394459379324036058314898898363343928616584847582172837332608886487470753196374022945847885931733521692228295735140369494973502023403603113455092603640099982175757137541144806295361382223477196825086369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "23086846587817681617310548656267677816368126261747615508707485247676455205676811799020405922529454950724719928653547779438412849905284726070074115180826714552977159767315098831455976003604255286102690184104355125973256461934434312865475965896672320632630045357355844599623867681603203768346003203913544569213233740604883992526326927655457616238530694976875514259436529727353581620704489310181230734773951359998830754533079678280554524732241714459035184045334179738238986453648171672474689847503982296735283559023633256564373184688268997564453761630216901853504237913927611366442893243401954248848864977866702191076013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24653409140182490264652488032387530468864297330280086919129481416440593414253889678028252663148962826237094543385241425026929513568776735206589245455267328027781426799756960946357092912827777378600210261367134064314048969100140796514202279049796600749768706431179724679018021824245650405944984786553283398085271528012869155951908518567878756704624319677884477097189536460842662748600337138172236055419801561882715176886778667519911592040398469235484943418753566464222849746991525066049101002101887461537662081544908934518535575145952548537342959654590960785456715943803199461539972001450706428016927756235279416945491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28363702546505292306196926303119378958058429914357978286245837576096447208639688797145837874191287550587933087636502710938200403462019346880892799363685257199619952712539590029412475465104265871567993883739708634209426176940870820795939814602479582965854722226033821049807044668036376267064048114533445614296251710456591777047008862138033372190178858778720799783451255007133065315993964676207214586963799073227682735338198187838318181411138435177139760322530723947105012442399536602337254439198860380587254548285269574876204228082173931683057294733547448859616958054525690605072417623949308952871274754979127197726569", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21889135593956630551958777953265731447678136690644255968842383866723424746648844147735902955851670746692839790465007885460598689393881674367933520317280581597964793699331274176038993801991855237139522654402929808672518683963574252782575429089246334342052308164126973079920642483400191891366408863768440273241330452439954234021819186336810366311506163219267000303410564969078872645594556851179404952743371983560101924838413749262136909811345100660609199977812681477280749164104610079892711655718665937067855913456291545185454189106289119504252187500915905580834591571469118777609766800403728168254970308116903272073947", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25684519908367466328806219023085267172034071976502724888469483930881967861752431444498939710694524879203459872347793677383838278787868435812899270740608090195371515757706203495963361647321306781885430368084690268172355621144229490718224829343062469649396086736807016305806149112089737702434250187092546351556309784880928735600215085694994359134631998862193341608973524442802159967280797492627437336967143296442535052133734445170813433418712406769323933033313255764468704002848832238678869826181270533554590562216307574739907780986369382812870781929194746555968471768442615566038399596793900470993948628488261801899321", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22189615702592904459034468102356083649525415717580073239057968046598838169682150466180661059329093225003054786254029639694046407811812909604864221194694873873099317841237431627212475287161513857368503860850506689927001364431973801949463523522291419508363699400376688379191442653564528272805868932189420786329762475241542847247054166915435156048055934264376898803160729889425849298247762248252046356442861158012279883074766085263417099578597915825099697206327026636094764858669381213231654884416642393826828229148161047396225740056508942965853581678111095235416459333003677906528147454490852424009265514026398478302957", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25248413868741966743333927910461091686839557704409224692135013770203964319246781318418837097466396630367331234218106417488819183268137525866636952545384445362208191798144713271679883349458605697525608585258885672048200594932758517727143540644550983089388637620466148764748322563953401072903790426855099673646821286589349348922406134222915837140679194459479149751983559964957833910341119036616094107269631462507357078511037873306277643314062582038304024922828631246643904145196590141948822770600709752723788631964517556113222897853737692145934342178241422172035668218691824647925847597970727254987472516659674121876361", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22257175139081212016947012800241903335534577655541546555640828961896196210849103633964143404064921597106803052195410436975252917125633813050532689480000753156628383978396527955241025143259168559691022076128084849930106153822975050563149597517799519180563949278012210318464003378354336787975139214421259405175313533325381022422745262810127093434054719012276814692676685998953249455125588779694867796632423959390918012942035823548895053154806964216375517539760691399007932947818463154935382916732629546867076084863677417000395905945716036319451611103764224947998512243793470827001581048288553307842434690759332272960253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19961842660627590342975649027149782671905323011384837342111654911568884673405108038386609017332681944340965060517484017146011029520943237066441617628698083703976452471795519743513322785273227560534416098622844118122741760757893804004386835009346800491744642831170019888838219369766812721672222568929666908408302388384710531378492502365303200787405329375235936314386589545590372931720794005577262829826972757128311259518164513299182010191718573198397316675983548203922330603514587340511413785539101161783461151062575176070758723304884791447522907399379781141691551410610515286998312535205170193191155142421189566829873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20805603676999751461963584704311290364316334729722912454334287787782807311774043203757326488811122344485523533562811574071116570611593346422803182015504675662744437609778535807949396146684919811006209785474286087142444088528870122018997923496000584355763085421858662156023518171596562397569652119551253175376770538960459279614714596102161616005503467888445328059968763508592263011044234303396306982689897323024548970122104028060867991146354520042319764314293941986982718418307646243376025055605756067751886551438949558995633617470927156926360671204594378408866482645549777500105450017410255385506887051193976435219219", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20038389391728137334177836704930248261564100902594238820919103152328296115105794008377715438394812007453792393149806596147597930700123737061624286429554312518774331006930460088217986582320971300262733165463637792495667390129625218445202884727601011629270754283953499471125001940814914780456988686042295298922282280173073537987317559512658274264680224933495663185279948573507156125630267897806274090576304693343824452915184300683279494136230975568886006202669429448376953807903972914363800892671422366208274229785293772710083508910130377502474961228613719498000303613710436670381020558958523846888484882637579230927903", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22151733051992983328077562536364927713450163682677210442074983386275842134695611648173693763023383783024448889522288846008184843624708331584978327443433621701926030136816766843055880119568959807213020123064742190995555201468811183637771506170823101331509570176924248223197583053626476330749855128523031223432974337544738407342805642569396910596541309334246920602413881590084540385392822314031837778842204861560420263629247011729263933892920685312921059493458443182712805070940745690191812824621307805184219029920148670968775580502409554559899548822423505084545978517016212350082965795434731965898934564550320968066843", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "30830925469940715839415121871655664682257288574681552843722410910869407923534161016775058973746430806012746328582589299798182590970207348429562154685914780988354754278034408638594913143811276304801805791695168686879329535592039702649513167382011868211551384467762890775359960046764491635719755665670339031650274386360310111911251075493315582875206004729949789141743264019695934358115212449238261450022046750221296710082931577831189523260450365338165776889426036051738434163360278094431861761271289785772719650537180960961619244370069079648283868831067118970700070852840086640293221680318739727900815066961057922515329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "23917876046595541807829623811865678499368237749808394350238855056700134098964162698986850425501754060601910191869357997442418868499657658180991438653984508497294926904744958998223946411538751859078643563353487629568568936759465166769941754752772792535951861472224132378088160129118526259502540630129410971887579529392577906600524714700430087716091435358875469463216374505793098022893937088035217991004865862309410178884124959389433005300940934596295709375631242600797724502547597819728675963979272869725837984593925848862461272596322944428172435763120097145591993468918414263490646989751844065934142782796582037200227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21593918742087297362487332798898454439253159249903791083227195812123181915652723527450291357042172696809003881539633925841410128723416074012389885006263069172303001208033780620079826679551128667857246179095904841095221570101244361558363213917466192193089235635336042316179850496486036423768454005839773293857852490376942873359651756756363258606775937949352523190811393850227487398822833564694020155887217618167057662644850317053597655195031002163684651032615052161338290992434995946574838093983256417473562348172882334152932783842051559359179000935703431061724641235256890872937424238817964743683674322774492005296739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3743251904606774076378835110944826645955139977404112693359785200442437709836639362426118802314706405638827146043331470021940756432953865369803769103536286217169660677914715643964715263051667760114611118477424954496083350896955204099156640642366154758669858889708400236698567566838065472869020633750123575149103729323740517293009193103593431204455798997797908223516233011236022427157941714632227245502456722944838928933490313723236512831123853063899703927674811707953694234755444486638983020929516622228736642961005404973794477909968012006748227701726294546871222410683792548123062249869548991408426788104172815254654783921144045497367667729216299983620997530413856698442944379974212124874997250546239118473576330501052243439610501344716026090309205696834377648529026771339282291941831509377775960192171283893137656592438880454390113564300268008263525737321335790288482623716868736699539402454341975360904657071110042949837007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "25164848313148409126582271514130031162796717094426295413841381765896388930573730595722656772110913120085918654220042594355848754505337050989868935095023559335175238717080125392040185550132980010572676220589958492791152297359881777644765130462045929450414141915709310825827989088060695903565368839374039070202201127021342461501703706063263743460524837954618980912237796682971130386623969778658457737730618288719715751712810236539295027444757363202522649001921492410519899248618540054379518959280529716150542715487841590121660660705620067268962511444918022183455463110832945213048229614534775744187606932944371006512857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24652031671997455487067204013081906898485533744572482600100632540006556798573812307231840863263968193950134689006814553651341660633303876759159816293912936734018675116229024687766679597295091409381085248080545571807883465176986041707461145633041993921583595086295507511948273292030394727569582768029862353542919728747323163075004808093880618801742052814280149744107484453886091137790207025019951027382960382676551311768730723786625474616315188798311295311890919458080417382348369143242887521717515831145395732810203819953514350216800468498283700957839579001881752664088043223876665621231774466781515830722624117544929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21898682364761595686276691670824590934211257672171606268945536815241232593109702719854773316299747597127943650148425274689668255622040193164420600648473159044223819462830601582864829879131744559531953624733424210985520923782747647906685995494762109293142041946156752723273810698150016705802037799999631692103692046175727527012604193211877638422872534353600861099494789966403681729834754609159232658099601597224977786751670967825412499887595137256058372293504577288035605107951999053322450605260930665058329253246358338502334480373997067413858166112432562921105172966944071779171600145045945056709946567858599632119681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21292106178413804031445474355199413", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "30899592340176091617425884806863835440583130144271229480453820425422161076407389713494034047608648003522454742544425885032028849419536603579081956926494480804022349290929859436609044581794346232658853006147302084173188849834201069388153655488146222905044764086535682211940572269443962813915801720028648236513684106101866509546373446986628293264952479780904025257400827896886088348547100358174537765387404435429097036683846396772340305735550310317642948290330037788456844767405484065702303049397245106219328180535471755703664924505022991415955063307005947371563814524597636083792445738794172094404903508615811612506209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19320589954526119233340604142712509913423636114840196534916232501736716938082774858136070849934424436550830798337769273924057981244124377597127832640936649054361237910769467862638420685574071638574979827215669979788258096801106386307788499179205510442046074884187081098920909427642087243071646248776143183376918020000714695246262636875071827106691044993289478080282790795981378253064243612427742172271344498578737726167444246312530991724391889558530172057312773441893506835777775434618573061871006395959224129285623911011694203010318148825719750140347196478480450435279414636151709911896243718760364388098590173447899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24484960719792913155860596652641917135250940555279998679368316029468492052621378267331359756299791591355036081990780093025573099909679307234908973545242234175915904980730052408331767594170135098938109299591267241938876846264482422957942989786740758351729640456204662788676317577082853115623909857512873613349180433157574860602738620554344461288643498297340575560713343162480341501242241402226145607052831691108043042455025943757395254706931729902098099039591354145354891575382417661230705904762542020606989206015193455183188317228814905029673422259439938790920393679230099200158138789383204171387341690399883924814331", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21455832132246332743853454509005485118379899863688739408753824051284228926598500707138845125386876785700839413405533697973826324625581104592543421021782992660698127462677210785843741459868508776461068425867477931695533972023742280877415186084880693997259455054403553306473164772845144593391654729457761398201234794631002479423836554483974963815255331030210357362585329321287934929497660010212963759222894011372036431372702452723091203020719429012994253688878973393144333407236769748394221607196803680229703814370481075774256485213437370136433389497880552601773114586576150511896496575689703052206831507589561231628409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22864707023317209375281387189597351554190843420964354881429240820222025066627005321895962667569584020738595373541825935337835611059102912089653046759967004445704470838106883608953017400201885852211044342351481455589834258610919374730902866476925358317621507420006849291484321198948215190739305679958334900198552601300312650251666424130310436620594789135200962052644158349015998232983110562011596071410883488920174472271565306306650794409603096824478694703447473433159482912456603881149618565184678805801829446607729332972172081156767434714351777348477235053718869301942113937966407555519462136861532996537898234942931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28797591646059439850255035855593484510904346142478568300290758716056540555700310317369450597994574465662427488170321532158440890252805936453773279262061317849749374662113278375908815514151039790475965700886566921741505517898385746869107827858754558479607377510549183881410530879967798484149742429594971230294793737007121684939461167689486120791135345808878418042153206449529939846455922038819489121261467293533506153649719623911703370183810552920023971636246423579286920035067099581870364434372018810680272659358192306936437361738066465388906777210746511023861643936742201675031232973712426268011556298141253398427513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26889588334253596872502462559399893659409101172072112644661358773680760452007548600591001621904595117813696974022009408470628819524518421507267366028449510503228770862871241151208961653633620539302867994541537718454381659451370690914564319705125201473380201639425348686105584659259390823520703556740978903332888018991456737441975677652700003975721646810485524629773734557548351161896363015569928908018295857328262609827733025619139979965021159810275266569661882573902372033220432716961875884873836688946667996625856622312279824497045849088088837125634422451476591509917176260979049616509642979311110269194792944018681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28225957866869133779592857131727912644136919742510153966551648622933689107097827229779820208343416711788283554583329865610120792123730011172462454758724567007217802056709146452349597355382207202110312610626716100189320349150321718303782172725856470759785893524865824786074448305945121773812806919473867254053850189512975962639701660046823766797760000692624852727606847311004183681317897590227350452607270460698107338700188950874052110939940199033001178532572093774603963771725225216005798328111757557803699953282230468188287004505428523144320737066183332483076771792077247362519662656944605970522355324268094462298113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25449892908196608342455135805478817899135221052403679889122456496530831966265382919416850039696466215503338944143229088417036123899852774232797557680062696530337280120369408137164374490312166895042427995688271992897875095469250612454277546442223635272289840171947374747957548530437879706083548887498777112889912437875979811306899682244516331552101755583633560182823801220471283734983769877200010292572071590703518456815131346098942850705429373490266115427245208308371397834744714453536113730361925147965102241617993631525584264922773864432118586173226196519431278753541361413437409583107903770149427155202382254571679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23916497340519333534381908113213376261627111951775358843291840019233555084986236320166647922629157232597103359505339669595688151319257839168363759200333720391980013411026559203519994036294940990154121217651748588185047631021711408369988562577999715811058066617364802932628045810191711587023967992549500027906737668831568330975971965367136136683162719790345247210077244487322473138255334358012513313803823734551628575520836455313226282768478648671840887949338188067034448971269662017924190661828342399356974739661106220250642091987442307059012532798126527138203706194877059900299610968160257824146523945044992203801621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23653808352421000956644017649919836099935501346361252551723270786434905912826095464931827657975381683681767056719728378722459440357859951868980791217885191865682044224674092263498205502990790142604209588803493332754416181343920456449952428186091809354706559750629641604514402730998267359061966342515111568346607152174265224995593447064697512678125300777666687961331683949765572996402281685247856958551126724996004721055358312022449712055540649427382719417504133295162196218588173712143430559885074817179544392589319923581168991994952623533573561168044459306919226270359703283264580824237621182818674009344433352865931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27684596476128202277781614772243675535445438628610521923912214760829268700059847079046775385188543662049775445237027631019340785744290091807976885841572076348288256948806127067116330431916095940331316852701673998832319782648073931792200305137904223080123494402398262697753241631806714536381623264608878047556828524803435378032053809900005220199686464409468850364208108594580798752115002457885165160084976296273726718309649359404739996870843203912245207314302017078083499278299217597526875613306030867327703539733766435973099559550312617409816445799961454459013633954212921078993163545356931432126813196466794526515933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29999014463944330063545434693507384615043538796027708499294265482757531446209247157255510851302820285633202695717942538096515931706813982115163977194688769997926338547591960595167116909787989399161936352432054353134714681104985368374506363745678524781566729770402300911369316250315741635379944866508204005940758632847198514166860764902230404464175078759895249683951797748051748897890485677606390881060125170209899132542342539755135664654256610372264000772826387349988879524556828188638298323661496391330208626076860678759251378600647526851827232207510846844457411889138185979433243162372875082221000600412870979033427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25301364733495706628894347051850526619054585730525248704687074930909758629214493729033921116338742307226028412083149618714087056754579416841585914891347963448027898920165958761656083844751895194153360517548447650372456623687483199573094723854467157293526022538366130983589117166656591910740822273568109940463143728052725414241785054683256388322572819221177348041539358906155649755839682371006610557599462885936373226414552596157929503442493359397243454017558356491647163001412625261183167491870535282099842894770301293048008336293212019463128525611568747614673621796571628769092070834200975830307854554999101888613777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25239488486903201348132439064096370961603821096934923961426036656170327936840089569043168774489768478633748721592555523857485660484774356349792731786780561788376512211593998452307464698194633330458226501763174427775625210532809237595411362994201184925476881587998154634685222520308116286145413927671758561542798945469967125284437385027239596205987504564605715089030756702629199594440104434669130084091511591859558655302905821795960713755748209793595860289536387707438779423800418902847202467737573893547677994167795401945084587448655531842888262966840370855989392165301686862951179730274970483993010269064247300289111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23065398699836130919130203404598351748163776372134924668285727270291087506079244269076598027773404348764490051303497022141974393275081962991475793637295031654638085421335920313043017606376450917763307498640450701720084932440662701277793495347795610065285183340007221067216772279158087975332900809346043630933059881115079020534676526266925459229886535718550314699453873701123863398169392840493792436110187057769771799274822216241438240118638897753689417598891805876030299513655157076532200959774732146714630004972510327114723095902160809367576405844123486143585075874474096263867313528233767699491797046444614452022027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22407350725192982074621204305666712685480945568843920232968506655964320439079951022199737373737738911859616500994896350928007210411350322223010233855335401734879711926605083422416419196399072985189254897644830560579213709469044541998583607665378319287379271176359407427915443082190210704821113825591441652924802775239522380207066797355488819789758636299625224315684819619838963086443420635149816465682047788325435644280524423234356245740231652123415436103840856835594100604694394232307093130389580912896986666068218275267732935752129863985390671223442804850850843890577944969068000913694159939901154792737418668979533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21180618367179559027292407712729691011684775148217435826147052667372812097678229134620133453679504954708003299618929630256621093652027515995007814362550404520655605748091954647657711135803358666330064031702399445491038360698064835815126591872348430666584802301751189458312132155833524796070889443924215271963541509899811234083038325137493042730945457794740150393532589483820090667604688254496676410651812451787416433982910819735107448547508273670574639091033961040093548812312187621621370740041520183626077177001809128190938558108686244322160727031224125492037624417041564324181809046014312940763989957506565206000179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29104450720958836499175687200858374349118731958486519138090386355399742212883879429242681659134675553182893474332413894093471571587092249595195723227377027626974260100087972544660986991286488276394296352234495529649908031239222417996197999923255509203087371047245791756164991774138275947898011529593163349941348889548799320064662860163333136385775801284265907978278683193433384325760900554362718097838817355896643929216270839674348423720776676447657518029488280775946421574661438104309222157134082122382390395449476769646957211005827983574249994428824364234090907198277730767763862930574970516608912459343333322849747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26944372261677554366440908097662509466219768173156866797978404784638872149769702659745695973624481470088805648226043245133013636467729654783238201923604709112396883369634825781286289496433441698252669327611191898170378246224751703840198763911247930702896645751522352349562047423551937440374201306822108252161339125941564476784217874400832905793866478132202222283656470329468911027634742228506174787870088297231109617363771420264726207914944993486706086531210357808913625941463767095050491689914131034113139768288031028408032423557806352632921083192561470897314753419612500187573350573448319479985086149497203679258997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21343151195657082284794918152630643992879180645101715834238992675534630923436699293462369107905723326217298339259705748080829113149217747391316467278650622916817699474749733818571451434891143120806775498447577955777471237983184350797745574636891823958356824146377978102004391036530625076712394820156830817606938861228872188056406996053098335309379656762898366861861469826609420739733828547055366066625621232930873127416918374960364731611368373337369926238488068328149256076418067711559192613111058442516135304658825136003231790068804713002608788857259915229773622807078328028459271140048041865940110380257896154205259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24732874263177374159566502919833829173642823147971274726610576372766480509963380391698698167280435750900285161224240063450545803375238485999639163780620727709584264780573541353199818290562623892290971664063852150470799826768217565870782294277600096077864873597092936493218162466772158644993216888429472080356121878387199280838523262354370012955116826123420166704564058071163592890128834317966520664457275064192805475718518181939788781294034345705292843558396861708322658450939990200939302464951959691745286736822698133884894755201905532787162337693269215018644557342371611661072836884066323335385730278949487514312407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24518619548355484358262911984011227590839896575990247863152177712283785464739625841937526901032611557163795226087165576874309679408433324421893506303144318492823866264572805536903748902708591371717516404424383052667875033731394411416497582299913501290782955567894113425880785614340907574667369139503595756586909679957093095907105569535638941292155341570267380572542928424556300103426737836083853695157063142525203515712383827764725488964146562809782251822884146410133898093194843230203790196156477837552432688474185623177796708084380415160876943264832157329385670331214937385172634521594462111666367222547419118347489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24986374141368319991574113396173346337581595278878318577520511212717810784991617085494909138390720677299290329557013175373337037372991686215717016557887731786663062289930028028839574096691623778781185526173416455898221389240454757336076517641341010080748560057045044054241326228466695000753878126630222180441413955401346184736951918009433511369275586225321628861589307440893035214298224934984774210453863242219547545233510228477157036388687788050162450223878557887182383910310513383223454500604005836160252588961458606178230286134862368244451794946915183527583952945387953487163967922501622997414917216498472483496551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22880532243693905519989294945660654952675425362116655446488328122564481376946880855953556541555411446716039410069265399601045688486884203399751207726666642962437639672565744790331296497533614059987346540866710770106648513612554012527537029359535961056138956313231920786077471990829240435094869820831962888892504719788541760600031766205424802660545547655031695064262536408161081110521005962346961220547724867480429625663504846328020683475778944740771690461532787429017548513627262199914285900499049701948194580356071849810316953009699587722737140232643304773350409176297370366101189983473018675459310352574714380623867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22173117472908710071583447302014332524309046003836634811842395802585314237075686641054750228380633832652574363637726644371898047550581593802093406896280448869884340003216690452872063352486697472682913899721995862182693780901221680932431412686976158268359091577003320958217993187041624351316975877477527511015036282248506444790308624798303530509259150618271916118052297989311118088403392075035915116572374433524303035346206606310595182902682246191680306259010785364011165781076878684548306461161219984729188281138429197463899701662125491131886633749412165542938309254838272859360589516183521589263571245597537033378897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21722471545807699488441975792660425188282536706009993318884260287302468428965505650977311510635482024936518718280752103894113167541501096368383169908254122977131953048140903973927622370396042184232579642510707792861191474341775767567275287340306273086088918730380834594867278187095491941209193194007959182335121936240682685173403490579838248997041428229928610258811804490976336304897980983532357360772940718340511289611144124959089623558308905128365009986392222429174136993008975983345220836058662694337195183304094511916825578338724921535335060030172944618329489569347929610524817561034097028509376911480705844543973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21961958077951784543275604828056673838980021264518429861383277502965922563123607909820534353564773965086195243887746346676095401945417357310598025120347314220421525765523704757749295131871622122554287122833986510715240369561546520581965984224471211131514307034424761509527853863677701747456552177416952509157845095904687396796003176690584919303418252348794549144762692666391554670353724903274329388729570928150403018625022270595707263334693015866936174779810957304113572804249403177382285481986986292978185600048319378405599249525796068603724556448952206309450625223782741062959416658453600588640428954661829932372257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21388180952487625945803077887050840492604487103914519709287392933383470973647922071005813971754025712365171803088872721047258347015158165757274599980858885772227818862556213804988976813039940781524224153881200252084301035678948622761696637678704022626661222530091738479241397721655765848890572799502525509303679882928942525821143606548258156343553144705585967815090807218852522650649916516479009125775195617978858074208747079222451389678685704481833355859057230250418324339275776893202680522342556583225598314043410936247195707455418004214348843441026313526038620895771369882129988704291140593662260909971062513001747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25968491683428604712055160705805439918935317875656826315117942353191206939848129261524656666309445476044291583094301154068532855191593398595314580171442340376993439696447085922371460899001175476925227272938695418139668540708829605838323794939236894851745446645607529438190686188584097740386545873385115031807540333670970272931330975494512679572154754974591402980746862001514926486577966682348594607703086659482980312196249692544616294384897481028105861464597861951289769385373829141228934292944636252307599568162685458194972321875503878699143702009536082622537466458147421216809909821592199364887705945973254094838727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27881606269200616471460855750808382232105515727210820738860258595320280549795430579784238461703767932110736394530081355746342894007775766298840792837910903489814776995242267489960323106949654878954939714890732589290680520183369992595142302484337988761537476481858843651580145097930152121188979681170177497375311206325567647708169569994920791089255848243885712346963536978606737844418519626275920723804528955194574046314037435576981760123428128215588263658934759033857669548834727344145813664385996759214913679345456135920290982585960937950694114570793126659960718034349058814517857185218149263070459323669006319424023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25891948348246874524484384474703191", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23944815141723088317149522959333252", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21890719886809525394201696330220679", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21605658196948151048355114681034518", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "22373247981218759683702646453318007927306910623351595473493138099025387965063294713910065062362786628820871995343333584442575715212568105475992363681035185726603028524095410816436104576209873328673712222776784694128211297156575487261296378062313354881698736337367723443214047878787350610309243441120086983323085338975711179050546546435199228729489014743393126023349747562355883588425921304003751671421695640198756697718399855607312290163728571170406506361344098157060138574216583572072533975351291662233200769752187026078233032381030097016297497362137210019847436735320065599300031750459913073567523289118846742595273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "23989826174550095924627343717624000096771309744132638468973808909963794004895852739456251159619962261830273313773990328081987745924804954058180400317669126612310619201480165836107938242536187193011964345660406535182692015385868682859119968265817902133734515418122864705964458027838426047368797013218264848208297273119776455750944479386742281542314251181519297939145922515401250826581978801945334818736354183981186756529217769168157082347623451538860028880739291100359807709209704913921152460614306648801659436798128863792386090262176758128169903558240084433211183941273795557179562772661786518834529748493157346706967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26211964856117854390120372536677661726176453295392073963310091543819846153167235516236418393297675286555301371506498954719470714210748288639663536765016863483813259573522897365943987251384021364429088084791328013760173632509712648799021127441442875241365425560890211410929136114611396309206244674533827720351779756941931188682823688227025584195279010084197265103185663423017139337516228003586237701613534255142761500537220235804953458498384081088835455020797631745151835373087593813750665248599178992102060521728089258728947407409585129292561520192852635539740459917252760737007895859695153345971921067751159569126449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20692442943866688942664874067051022573452958615985953507778068787254219745195184141518675322985649234442083653785421748312756076796798947127067419449495645756261786061013518085998818918825937163845715882999559436088775497840539140876397267700623652118025919900531924859749737223359506224875820169885639561424672215981108127840816075288862389369185560497369730261477665116452416179181381808094172658219623906679012722666054645338388434063432562881639088766568197161683601529675333490822873533117595308420117725611084420045043262161693480945389467386105523853365232788447330675749522328617020457767610787744799718176031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21617714496689425204384174266077097230834992287507969411306789134633580750516594559246440482935191604243741505142703433538168699487516749621539078538287867975756449921508922788247377871365063973617327126929857023715644858164590225002144831002463246287871440154047675566737656734402188378842780416484094572942283350977552765684786569748264749300476347809443477981101170175119649895174167894959906751786840348209854572751407397985946939629045644096216789610661862356324071982739019084582423206855456549656791752672235427429061142085432723686354876143275207566624791753730397711780639069799448580791840587000823294225209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31279165600988571833503526940970058329245196750686658682766858547786322615967753288714964406414702250823913882140322058591753253934720413020219388446313083317446661486491681303041748727506751927278517792440544620744498449168374135282060225580761958865353602048636687848474788301465251978233889653536324132060826228690788895013054261899335555387968898916942439017886365631827753134477244347069300659798090995755078954268435495873894787980494105378096290927952946406933747704612827595106381572994262272854846059755585765067670766120637930505624383760393593938116144621002678064772070590421631550119216794412756448749219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21931469352824047196162879342362615394619441970239358919598107558389099650995023328880166008675692991735385134108807999690058533416359622245401583140512872646378277240510841671047069383911298461886830861009586238994198965992828529739864617385503513740943795126837236353322739651082782217273590947947621556513324801400530059898818593978632738988205054236648429544678461212965230128318940971188041059576116848088022413866308734666245831468839560634448783823349047116009122296450497376813889788159440744075287120392511740664983722343733137753019567412081748644798470918107916092129456691604931580831905782790620502134413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24327431189915667131037809528426759186963006396483692527425015612133655546426668391739352847057910735911466764525277375139928782309890108993396175437706373767651023554932366247191285699161991059768582475878500993172784047809289359466064006577992262558803032791677451611661761194783307778946600926542658281653065303758548559469535854359891049031546393999633550085681601377806472886508936604542905450347615540041870994613984663287940983552061547419062308420667537273823070516315288140550358051614105732770577274868417106125453555428454737037995500235837733785448492862555141037772133552788733880983576456928896387903323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23317648243536041571448051869889739900401982183382312559415166743985862696854147892646853973172767046257825397764748199928231149642646749263742869523057305968304409073980910759650788122667980153549942629969461994271147757292376480540470782213441982098421078122824687426316077877539433988257836892401751598600314776166813338829567048107705470261989902731153952238270894149121912976865806435300607107141395179238132018892555635564338045310738466402063389183496506725900163175646280040809739820883149003458662009999926112045254442228008071726021780101977381226407423582698957929561427501957595013523823043095178624595313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24434758215854134733630638887176399534109841028466041599643410365954675497939746515967576573161867434871390566727831031952705464859917795641008242749795321502436088474505170385070872795634002548681385928092105066682654902873675782257909077541133325325585294435342643227921794617335699971107016849524083314463901332628787665677263283355325259611540842506557820473939580202877899329904038258944080997255797303185286410167311383961653038598672657381036349979063630663893984792387693786610273850561960476549980199857497404923963675952120652520739225482055524548733283676267300678674310410429950789635964938176799913334727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "29887851573058855248134243267116521694676566383934530171599657425546660730967891162172846614963963772385342105285631299720840717474458551691646256818359412633150591376738131528966504345678786207139538778100487057347410459450566384363888363472326362734211374762652144542966885524260854268760342332909066037046320890893948711872713464681067893583934991051097522259609655915332586043067169868166076779594306214336258240466914305487240602143751187799183158754624149752256260624905551081594309489729648820550626454313514180826546568786681975608315897846038703638130697564499207269069779420145028240712868691476447563897907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23114301714657990376361679269206438940848954983396353671837037954834491585746386023839679616984887842942299544802072519252868314496166635240306567217310529966194768908501916838552855587168916329944917124780047600570884881098908997765492374882411193936964335032886677455982028597926793447953804637659585553329621144953415723689436253383996959078198789731906684961850366024181430617883696525307511259258398198011267933237787394564932306685789636611871133044778678161945941264128153514077546933207574440109475131459652500969852106280169897017087867295277512026170568573984596368475137186692143915293520492837830461732273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26235241333778991927777735415117938149108635963119434037988712358630616565872110945798197083484967566747794967907199766503910903270831982102179730732010649555786502753429669978518050401300238621933434652751914858922722321550695388752903780090714544997838962792977773406831313525478360293147876502961343871758704863341016195245661141428386085958911862793499185311580600925114646040290737677555577706846623408727852530612923213480262019596585245299673771664443740363406999790958865590832053268875226112573170863069780077117077054089495270119441291812647948132253857963762117616473124003878911806381037905885058380545907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21381600770048790932079545796311174664438105867458465294840431189379574059304289748161934733196425330689086385346023072754015806725962601367424824294865464423395273686628896359455663229594949609132180953458848749800124538344752061860389737511463232712941512804938204865826203709889848769311562392517552211177670474091793659709701975878724661708884698008715164049528267137684045063900692640257596295975021108462837940581011521897458944340366381626604235656196025360375694118985371615099057108314481719324323147447394231979096792351755554153295093043397618718638230300369494895211442221980803299651855284795050282800071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24776610350214139381256350329599937217344212491624693198655072977287377175737392145898472127609261099853855145475690572515577036549076698521199567502011798575054278137997951781072715922930629973689104079987155066335213413211554988833928056538819913113535960743955843963651429630002299719993045002455853670385919715150040902602296603358631650484264284355691639730634515050950914331548121071368411815128573863084352904029040537952638058070017730678019215763912277639233310619950865653848069717616238937139018065384531135750048168820834610257976156827191377862319335213617900677628662345391547632709421978566177949685753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27922554888493957052877674235241687626116405092054333769307071942798669088564195710415567735408612495121541017594544316474336879331400080465082780675433422164781133846624002067813794486146594792566074593721712328652349965035710420855822231753861101736177910598743773393604417564718696570221739389134781667231909036071511895689199941315014600541341713204119356830914150807077372737069609969197921819488155075408922154996527305833064519376806178641877619290113906961666430160702314309436503229516077594463453509418870466554890265778930733931012369337059686278752720009848846284264470196634646966033143520095498054524409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21398763123796790225204822344428534352133227559593186458248946064116799502833991322655405315913728778151580879722029205198847565761017164230694946854970951362252621715698647197543934718023070423358459405206588560305675984364289735686561135233625474138495688173206334394106134733684738373527218316536505019064082448279600992437022255822749751401252423200195677262043757161875476570205577386008840713163283295255119098929620966326047633019108678337152616753289056941904515003782707579890152113049265006316175228978194359394348490165119021308290676635525384518201841077653575944832416118067636052745664642386120445953537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21913893836555457056645902082553017554481124191829291219721070032986842617818765308127903870920441311774188941749437143177739978540166268543073337887812913908676238195729031352208708941000437219047677440185042556678343249055358642832505633531911935447018238337933862668865523155331241181160137475996764869455781964897090222323264797091193760254377429699537784402486307900233295140620722894455784740921242754477150216340760406021835449867769367641675337012629119932711796735991589078514823368376337323055463706330201217861670890856131645197532341608134739328269251428548371017762518771278270130012908522604242914518909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26418655375813376494414866709979254050972678788037445597672228467371583336234726530996969437868627632299022739580856302895040673838526529437767563932022600304246350690582196134022021479415843534037062749760017660412684638077965921523493529246677687728016157757532197007278594115437470735921405151753735934855147064313471814798637909157883177684920846668674715974036344638397795618037946781804734000167270267276304383522934038013459471276199237747531169826453843160234244589196558305548003206872179964045296043827694376696909503277681865209588928474749378916164666844628222443275166218175596447386262675909846470645633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20394455088223255756253170095217055575303576184918758194298192603698000412737634282404279664892069538773424068569268985554266608261552427168539342782715811674291087786303247540066320399917998879464633224899300317916042373257456223595093581025746092329307236054299894162988828418428116573138401212305987813966168264273900817364227342876947101588515795484287337259827879782205568034986808491825750383008006032939402020409049502664430243985166932401798249972355855701247537013430282522588573870244561559855513112397360742398478447438588798410956131454168194571634743686405822533634460504209727695830877648137013879767417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23202383931720552824157185590874294349840542100962615728205326965357297173497081980164037839472154808423845641370680784252344453957004979579051381261249977866842093458240665407673274889752834701928708874459646895707925410540832638353617648995835276177848394240388810639231225258879591100528033464489177614254016211744341220103344593891234562392208441149498673907550152480536075220635958671943746402417666094701345156371407682097609308898949744531253788011065863943677137093114326451978407816518769384613656451653262659222740573446308043899441071159968224065525720402676526081697138126715269454136252152955428142685911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "25593981053021592478439113488058777249686606193497649383867248253851908321216035997444608766541768288389869831668712530181293181035442998314601257341347778466519792548492365447665689036660501598347686621477236171843975354027181546043172076642121951012150524000112533504231480200031519062864266999943170906019321141955773921571358786851477647571670963640283380738936090710712991937150950570320768106571511748592903378047531071493589534835141954519159480451703803906524604503475905020428982380110414277844224030827274440021009339319529008731675660644282815731023469831305080176766128404130270165692469114201808065015973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24588424973654841899098243426401224", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24711925392512443936324183311415606", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21074723769706779307627160682007094", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23766038758627497242756930790505158", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23420145735437299362873923743940468", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24988540312950084869337759710278243", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22358729318739324935987388118930813", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22239695121653706284427803763030075", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24340263429057749587834563339824763", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22738114868139182129098062931830872", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25228903232968168636131320485048644", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23902611672120959303381996160453101", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23770898132899858222822787953973163", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25180038954696536180451240093761395", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21194101799627781923416249224585316", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22578065354975807094279311023253040", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21517006871273160877340541177124905", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22869296033448906079439440783294752", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21350273662204428299531151300539315", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24471531722977273768125379365424919", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22749988233116506973013509731065376", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24992311480559514673991067811565723", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25247152733482913632140878791906217", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21482457023206635361307090861814316", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21584326735894639347796769612315106", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24320382140317982301674148655482331", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25547995056325157436005641788754302", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21557180055435758924242396340174582", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22351097839065505804750332016075753", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22579346930669698789966003161633504", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20941334765403925182437628491334828", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23377068053915647200890510104600672", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24711853484765271084708167039033601", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24690326327644811454374157613665404", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21432525860933569669695514799259328", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22714375156681586640202422126016785", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21173622441054593398189477843696354", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22987941926317994324496237057917737", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21497987125654475521158340125620747", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24699782590258409266790233250146404", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24847738142379464989124048967805492", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25162234642662811569434785224059853", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21263953402298786755066030365056119", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25365296286918820631772787275698918", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24046232422673317510261715452799369", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24983368104163959592405992572451306", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22228465180893052742174069096794017", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24674715627215046851055163227288292", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22897350526290959911563678957699862", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25473584458619074076020240624925409", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "24817310549098019023453148686300577215130426217965355689324215044141716897338571369746248525133774135098132457342538960354826563762051406469729050211425610306488827059158705960963581067478509919372611679280366792062872753683190400027708108714277428149666419259214677566462121587465242127781143124685511595524376474202490554421953743007395409017730146664458743546711547919460993417485215105315886898498748431531409990185647143726129961376344174152122349912254040095797047160266942387149078422106170936351500322346384407622221127026615022739984324238907478409276362833561658004265379711610118345455279586634500754357823", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "21803827765344999301262381184931309991149492394033223836752715394177465432439116389248387539651247975079571917429347747338221329611334122857453003281531821340253609750150219915173973052235478827860464791949574454694348019753890930323960330157983540179169252483922162297455451793129149052979128075841476502124974302224693108632053992055961108874309118572613726948167969671508844566531294319815976351045759408822844255164258887451717575975500507566548386239950856544694134480344602235429043625797118025092494681285477276647567830600048356718452299682919292049517218754923910838785619100155877673253749617564995007547443", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "20680719211996434519419822574791865826817869958066640955911384859063947506916831033473691897325222681818553125932330215022619064772496829193378662311324083656014380289748636035308421972570264114553621236190836664585469466780205285532309478837786257017570115398934208670771880906863287460964441560360540170784130379629125311624783091020722029339125838990752118241323916152213749934700962985208718764929943534307042743083056375017691210834058769422231529676297200187108180066883796909719960956921809842467057951717177804133955565798253799587914362052309165827096103101709632822020662937319490961920736124812270538479689", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4581066840699735791510606811114176794776051225573227364828363433443597668066709332613872718970009018760463209768876204671199845844818081955351532983155718889615196974475536694796984053851259887874850434470421325518456268637153311569170796068354668706278091231307228222174485849562937441117212233702783746146340485981068886893880999842122563089961942439363688103059207185213537626778282686618030416975353337623554265367593209694592066788804489936889744785227117321508353724729811126783444850303062616571357213606840881891053155185479640508223329964967881595186794037289116354097024052154904535115271183973698032743297089258029604497063689030513016220335586964127051336024370957953344154311188442647442295520192827888132515901702236104978282377919727021108835286661133831421616765399318320454508801281831770802197379971859427143389608720387733033150705425143723031038370661666493813003090305770353572588163193980632619502349033", + "exponent": "45347" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23848358199970448345650662674967885", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21141340142939691803636254721762420", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23034612159071475980959048111757184", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "31647614808925616856672556426644258211945612126948546658778624807413244101065659377174354737146627738343543774805316598003846517707035680551546126129686544409393460146483347841956773860557121659650039564740464788507074570711411462056583418237238613745399904808685066454458450695454557788792912171346137526377660791747417712394159719589247045986999346576526685106450986044704764645369246696110333635205718960166107396212064745006170698823561376873905334661401167644551834944831812772223663219311462118495245129707705550944590993915015846234155243415763686906427970733239769709836632168347576121481135422465652164462617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20855825673503768218943645610780897", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23391461629500251366081467161766044", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = BJ, O = GOUV, OU = ANIP, OU = Certification Authorities, CN = CSCA-Benin", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23388685787703451282661766987824531", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26937085793371307434097963625862122423331092767612976765235587102848085339779707577438120011525493429959773997122625032308626412888429285637713494437159925034599365314607795555397390912042196983279247472953493992893024783719187446010335985588186644891110267445578938822789213058736873039698549964557771405036778044324760088022600539233630403759417136401182963705078231369007219285146387483967959179232313954428444706903869785121278245413088218790179645374422451152974225394498239329039908390964518158731075669562268964476949605181566680539625236630951005684872105666251260614833908142417191114009810809866788950915223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25539051499239155502555138239227453770511433397843598386618556076995571921419482460978307921817190882854459952007429279595742795801257387930266626366812950780015310676133037345364959273037593560817244694020799587518276362656619211500029371257546306238598677272680419958584382922250747811515739422995189116183321095619508022044004530333927202726561907973191232372956174301172730360216816933738157602139214377334333628702060383964926782539312688980920857227873136952520834494539076814616961764460210981323290227059525529354865358864548720324611621357680215713501681129911581728478863940834601649294702287883131469763291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29534515165665886244626543826851855080104775558019300039371843378155757735580393531626917574828496222495809683751130289386634194502387998989594955071705946687966849804683032970137978531988090617507110527345957568440899978118797354391953368467261357811246271172257939052257935513429228437267776665036396306192677699797132563048003868826228056267699327218259129934112674794886165074468900241244924778983423892023663148725677413817489209054506061330187003314811730257915099435195323929831408613926626954667849766159245436901830233073810368751839865673204980376770331719973708284432270821373538902822695164775342143006869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22759657020951600719789847300564200811578557767201751071971428369847686566029639912817061710555787546152089742827762381869175493002146842890037135438823059347471555634995182001229013250217554988825147089434240148866149635307618040569004252265690493896108863258370494368526171708901561615559606814973764897530095491111250758954736315364961245032592128141108295624199917019814609455865348274576514464557475305326554446726601529780468074160089352651402953286402086740325531358647315678101174454754968098956425576478423285711134303307969233474357479815941529361255722330288486817413629572178576745673281210299708290941321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19110029457266999880623452820968468054765435362187504517460172442069753844901128526957842043324436898030577015031238507385174242246736279038969517015551303489584821136409615194408815693438493487849807969804586373402912641684661922481695375220821072576956601235279802824430173804272700916542710832675548853848333677949349150041358895966009982601272225438185007100343215569876624009586697883408761954541169670128857748894007383520980771210122932870627592530492758476114568377460020118446692286905279955717222541950895948734842594269913320871168461285320981797654439524907897938000320529049326750824463974443441675226261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22054027825948438992165012402385769999573467004536703648318979117980891208696113750790524837106944643095441162541044327345321757872496007106096821131321901093617035264493808796357351707918672641667758207240072458051131219041055096478228670841667379603119614239348508954248633794927717118397364059327277671709082335324946083996765292002707313804001054671142520988148958820616440463322838334761090277414433037452740943768739513306164663756148402989860055391460204945992948204731865507025070352019259060593162768822334355981085961968563389886478014036246792031860336839436799305106480179101952198544216572070201787281917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22603918825278046135548936467048510371544785845285585144110957778132067007659641754045463510054664579033418653439121780593616053990842278723087050077499545773611742048590286454732729819347586669223851013293916598255929639391856740336517632777750503995911795284957333919208398221379256799748461383030741011774896943400930018745599929794963703415490410833621859528766477286546583337946413220814832113790411195516716359518210197972832110094046047863765779304032692620023120061653631708193371464966417797002914636515417482264204200783588994327257428764467637412002063256981682057189810120507507379781911661065324309459817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19384912332400569578592188210538740238381026040316170744903574580183298209390958627405009717243431057410743389753487986401650236700469087929223551182001266846947421737537196387959215660353399073547035285051304197969463316973867867551790877901007390645411730913549097615971005928040770205513099255634248321293199120869279656895498108334132137381169417930849052316471160251021502776340115346234993545617858714065658327362681334744346319078447629635510706258584659792172224609603413967354185711241058390047880748921629444930132484813226996749205936280557614524966351058489535185708439436822033630451963903108308952495679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22044849101002971250357619543777297219690027632991018377638923573518013798300764283695158343604308649137141850296309315402192438508001802332007617840275397943157808034891077131539367964426554446344414109014137068524001431328280138420619517537617362542970849305568854805907228057428514402437153834189339199726562617042245770122084974317035083951115329637957500136720190375438030634731621534385989108522792587528612472577041247094564478401745932423433743182460666559466955981405848885759162372677705247690550509524550868532921172765181876240170042970554664463175433607382816083031404775815512122058443482966619036614229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28320343801250343131222686016617239226889949254483756119933547121985121163637537095923337084382244117895070582278852486264089857243716316817381632022665013761206262397503308002900645556347034393278180526902255144346444821829429491524984228613958337241564717496379403689875930784969713056016914761809669291873525418967136679565419289906899420902131506217794854579096754396444611749857089960182346603003621095667114331162785922698980607145876624086601341984508187788345067308214848533281229318635242402310373671132079727469768637269118865710586634568200434438453590746902731001802185935489215058103926541525438226844239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29418596429472955516742679245984651890707903035775028397324377341404616427150293511696786049905683174908749437329099624742524514343557615661515083855499350072091370653034664738644962940647493338153144306026581370702064960384286797273584905311276469302976639827015744239276623880753371525297608705205099584842924865869658982557317666565002779425795077510542109902367367510441510234934970944230258855977011079980831517195484453740624133566215177371500305810431083399492372332918842662068210329155682893865410038840533061473522016519051805254913352282231601202922054130548952523857482045957025817329834439097141874710157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29686773621943716177622594846278556390464880913091399996319418845041240943565777671915905809628077510766578512613277737841419578170158094362637864904965782139137193780524806085701043513860650718731251459307546397539996795961064080421635490733135017334630057040370505780079003100095315022769834885879897410483500374807864128370273053912376508057311201036428859793955527589377005521454111497528440934107972517303700463063135675100074615944807974497128587263545687842969871518802985190256621429005271851012267821744167988997869367626046234350703194303829296003624566607364437286222352093940829051439612554123138642677621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27376041245244949062866858638955668009956443529708807492561891413386989613791567908171810569619849163867712927285585718848031939698030337891306969543959992129257491928161163893453974520370938088731543848614097202156748425097159804264734547718343022283283299757063484585897264900591701696198156460535823131609092638926201679541755624125985834522164767881805470268403480448394912614931143054156157819899856528715530706437203719649440109491838476035995583769369587340479977317410758609038155112461574989755810030615652741817604508367886947327797358492698229447249945422967158021382953463150841820832541234745247599405513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27464589409951934713249885461324607229439371532080253445665698642698871275317809890849225189335443538287034061265998447950201923402188775536226797273292166253190886317851831872947968644322331359143250555724122431673240761345988551866244580916825971381184363223343048707578498442316024372696494532898279065578800729298758596023464213560978093281346513123851170144303989084873262392700599531852420208672191699260147288396240531002969529586597069646515984292378988370066468728089360501789960372611524663006969512152373149204180418513861298247379780548950842933134200319469389402235881695313530430688220542285406334309367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19645340585210245151150500848461752106244582884940435870807568508517613675894208166611401082829147725556203290045975379084716326354619255570223105452759950662665456902458112624895996514861006096130098648505022845641060429591428349548199063488928939076707988520859405682843290075552818098016332518304861706084674225974221606362701807729514729915446949707249039430278404009990949618982830681715568739705260033737601547768702968985943625577522417674419084735540236107621051425895136242296570001160219021901193729646119504176933998105853825220087896943719478847558169246303172336256296335512161786661509529528830967239913", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23735769943688958167537606780885921514104783753304316257312514191850961145594165035594199855543892513652834718043702241218871692710886038678846838032646547213745816918053233271796527908188166722081930807683147297117981453088965211532923225577363923311190854676776612421707046785552263876166076419830568352542414364754958324823461269928418807894113918755244928864417716891619680618362056977760068740809290465396554466971847841265266676475736637987949286046068021572400828041882200634110594792035612546872050486268334327174057145329586825145862982940919033430407899186588852767199841735043229831269898824847264088086141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28512450560929494207674620123025135420232736319850485208498730580127932452197855301709157816453380819880570073359942857456171032214371816620509779052114024163984098981750671796868509353431303869689459046954858191442565492744053079646001708795502377967332363458247551509462064538835190256515695222795628711426118616715366123560958805960257452441556964928081174320744865502878362711558657981737414872665600695475551458372572319240500396057053022693099440605804168763776667163417824165405493198899689734700874477840634128194839582997453741339432054167931574471139550311301309384034884878428313004194023179107064376565719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23689327537081396875879114010601427577981913689179496801765152901536757446514383654732299089688584503475321676336994542314034357623457832883075745814230709066673122982527127623122894794595904084757544290663771130776377027259484710885585104591726560581915303484984622310424876026067797481807789165286522116858780423566101937338633782923493545516550855782182733062453035050053136730438971823515544726354424021240017074537883659494091252020168500301590920763418496144733835754405310950488363756499731531303840610979628858091172138121908079623175487201889875096589710564014943079914793340160917820705021172221069646543267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20787943947315192981504312617688521249806036607098067264276870909195508413764551737367236838640885878705287993708487787643293407341204085259774159477930321117016457467777947845950741449622779694978650593671785073040766350961130428502892293525457079466638838471874844516070564887366957772238194177132826500078502074468327515484012156805174864210515170588176049524990314957302347528654019855303484597541094575363807665176005197608048952231866320460351219535108500354093422205153008020063837127007900025006151317933481980893340764056685192356796186994843158242522229257407322137849486486969533457355460243113390056709701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28454237518428275058422630846818790549105959432303467168424404855430339407525368436397649690989554372354680407419699750277349854895064604033543427147709145775288736199228687486389832599839040774030987285906275793244012844295415703301369290324771253477836929097644263234849445807796475387761809612443795994789571179519968573415147008163501822205090806252025023395433026025527569226264932086536265692518367134906685155361047806059182353365795673727772189033002076205811369471775775785663608381208935344853177021040720162873471058395905552635868513351055055675926076813303768538473607508091805469831051379918400891138143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20541816725539335709070564185604058336592681303410980819600822544354307075126846786760265420321642710709225189077138398360260007257675003056056958117223180017726104075365345070518230504495898561738484749949475958531943899350804637543383563896859303441434756471576454128923811441527862778066754291646270513858814239118962234395738340153800696894203942202948114122944582338784876722610154494167833949278241829507116442218609911839788602052051817065022621143905134540146850488205400992891946664783466598575556024191364211554247055477030368189468988488102846118702401954130999150465799344634585185524514544115992828684021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26851321555601208723213533143845529655942196647654455229406611028543335752064657994876861715030098955098465796045590783097405457475148556824712067581183272425301721988989326991642981456224371207865670859161382152592992637824030603608994576825081847243424497402843092815906425088646095140754731971455984831853710342502293537572866155419555077945054879931287933667870959553448997321266139070685020045668280399017913333774327933189301199979498516272866164145187245926164506951892175398942471963261969115823032191486305226088987261019836329026391435209557012508861589824190406958272682598025712340700651742907008744771871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30457130298825082768216976754223808505547906035960413279779091938786241772422928337703266325723586476560998104982296264885130682336589845543115559707865866009877559099967849544579171205445237093405952260787631629461746699822808288486905807162805522150275789669238146974689960082638650375952993735751595730901836178228883404783471436384470343611821527379609649469138072806340512397638852259346233011920812606070614435451465677709704829831318374037106032714620689753840525411010458520165568531432167171653042834648052896887065039502274928110827427601001611032144727152529565745717854128128291441981806697458457876689317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23079334210677622414182932308606214928356859375988643982756026210289619505646836838144437645393425092954597564165084697622609840963232522814522737648411124670803447251444901384416579016118019564101839704588831554348745339777946106477919182778938391626590255342265952545771599877989937300887791118175649857448618979585431608621069883921639381543866434969697098113009866798796401433879659970145835568461548251721374251776891712815147605943689260442213559209607329751368055843149401706218914613230949609817840444043383165701812413822347110982304594655353025246280318970641777913558771081005432427003951464278798089270737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27024599903537063440629250277856130929967365525156656568455793080713921428960942218396967474329811830614925437161276907992356787828420862644383466108623897217213402596569395655334700198966602005745164401017423639019627094941921636381131473866838330631300006176413262513303091824749373761275778090887106755469786861872619116547379794170454616741527215189037920989233543794799838560918604078034021430116990495373400253607292960588703848555648439880200321221069812137361206536754344480004804914493163139110046108037370601953747946926085159520343960986396151633971044842881090280730549536145707122459294187681824359919447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26974140103905109633995627601978555916893558130249217146755607295949307082516841586805925430735776839165622398286977312127561342746832552732620412921584225036029208451073177002734011476596872018249817794173554185879365320528965674628781704870126829814430561435683766990914743277738423886877615734458405470165354478927915194678998711738403046944384356776621045050505743609582737426582635727036552150984193265640611431852793618928218824045411956693746222935149683598413146326686635993492555039656958653815388850942956555816414168903156083701059852463229748904496444492882566574850919189357402211947429930931215146035993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "799126761148932265547511379773103555197683035655502407233792619653005344831285099672075643935523329197952449936214262800875589265341658328243696547450945804904233151027746307059491531560559641943022046480057548636190370827467810629590554936831148775852335312185428974915916926794662919060093232765571427321460021181025136618455290506333294596910151321883062339513695145614139723389534562969576767023181790395167265502784526700825380364574052672746033127030200147534171065886226523767244188940359354663997861945933200234575993967882768388856619633804469145181900379721032937695150546635733332261208381386424282745416341352723152828007463196908988666747037194618823978065207392973268002073805401001025198476231579631116601555928862779777671001543812900243194985966942603016254685543055112660922269080073958969593614407357372853492701687516275831073793510903272514744404523425978455919206822553840300107334143215230678747080170765012866213328287777057113885463818320874575446160925703533034617125368188185951692166372387321779081938686238745014874024334351022258062632351077955547764019554359134581692527790246329579497676929446192166654581448302746350405618066689910712720688808826922384045039390983130200699015945935038511373660310877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "957903396962910699213626115884476612363408372061355798493559495726771021617491199261993961011007728568996420038159044333283081359400555426438530073320787323476216586643716305992431619497577425697520754222096016253462512504934745037602816004394377377670826002084084600456463426945664417551095430830788674192009601719398107842532406240574878068290720010794681720199371077659677152044428785310443399565719727093816601150495673617495647868025668178960294199409990104260761583987124152145602367814203289867405473953078100885699488416816095619720794373153104091942929102126438329742770586447623788578531745730267329898903600359764466315689012128343189714986539183332063122964329903020137888868796545760558996227651122640594027452432204064879979090233642217480833478266471423675427241108036234675681051738364301891401257297093051934664710778369922872474833021744145473294496837599682667091535865736459126239736381501361968392236907408366892509350664256279004210009597274970237851774778535779190988238755701918732169566673289198476505946484566912621314854477818437013490402671945217693339524053993053321751667866574767066213599202509738297569772100057088621798812619068750639132334423516151524026582666794298219796093349284367567314920272371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "865408196486130759726023090027379080971762376817774619398824582044788297069290958362313602644865981434684141489539112204527126201354785414011986816290783335071728778794121017273507170393239315491073226199059460326154292398673315638916133339863909914088208169888139406812668419153086822392590255059356085861577702147562113423780460543617644507911032285836412876818912709104828905852400001352182215506392421714633478239462166741541689668673064020551840462184998395700040062063485856190268282509131268246252419935662912399509199102055727474975593218806909063221686358662289887627860408706992309508612601671491736430691316453729343479855033989180735211706701558975873357614579922412974282657103523531532584679366691509108891801732533491982964167945523262415027713441187518916130561351056406642352004347655822640556021184261755262381909417785472492789005167450342908011383601627872253717454734093815632413214030867835698545668964766786333246013247322478558527480646835847334423436729695057130879739323760462036859296855780502419239817979023821652657607126157189679243442986693234585803943504223226936673235859923473811870326707691794172653320577212295538268199444926649024129853044213393015075838608460430312445418434392685445113195899649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22244015262396749771783752966480081", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "25390960921851626689970316136784310", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21429176709265234047467807851990168", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22543484710255288429746177156062161", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21112268418393814064675581757983261", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "25690416240531259727972730183704079688752871688532828774717800387239980975734172668790116920837797008389666967456543990420861360092101682350247591740877305688530719082913369462471756163622524260595234623652035171683584518443923547406388503798753673448602005672415600693252450675892161467850675129139102168334490252038444449916920857004914006177434826612301586075475639377832492154167264339077120352629239921535951871762207846035328079470349947043592109204784890639780822849738603380413467772973593076691488928188825775249196348045102325750074066730827470933716970286584772776379422428903003828684750964895606206542279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4787296786495174758272481242961855545554185620078261687003104931101378430040330881912344708907634805564948554778730672368535681351614514945386214929084772194326286388887210558828047132890969055409232637245298466931916941473782580622053663115464799296669782014330388091787647234325184739769757972852526914962949286421418100875167200835518997878385133036333326524405608649218581590680131785715472656665044242737639941071415217790018807258806935415361789368858333345209917034182991667876303667681425208378173241774669622822638499694340715249798319947545972918844926919522447742168715660600033148633400545227011955514508584836367036259823979072588902875959426999281878118374267735476226654445267948149009859924637117728923225244393777704062973163560109606357655003040129848364483414427940932902192035455117938083650427636169794483420546563825164828138806486027909835116934853571976528214108367276341196198516568278115941640084289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4035235545487866783499609232480008135543272778897837100267762446719730043325383510709822427301292008198048519458421312240146387177719231983638083669379535946754034829823676940692277213555213130515705749916777212180466213659713100440166641201946594775871698715055855609415952923907456625543154326081868510815898896506290177272993519468748573614802571384606403446648672077229222997014353469029821378725283932203845364625208575301514998190724784121198796666389660188213487979342971852311096997830496692344019937843960376824175180451729575528588353067939067952267076351919652506617276778106636618540621806946472659682396606372461998705581520652403072105176464456238585252069719522512035963684166708233350388263602504733397727055083119076345565416386593310044896510358006991105355442759374679137387298274277708219308908362488263795747227306475090438457798344325829343684392306015499047539589760188801003095333810771137725172468041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5603138882168535919286291074378702768913425053078241813031933686323724671577723008170861038724589371435684601910442206504058136378373138271893454890107152557425562941906583665877591309771179501989633355023280726536170377448532917449062218187979517894604198371233483855719275605616396703434269484549760475466316679074747006951936660405808475243974514358348488726937033061632134092148995021079211029838075618189733098820217504558265503286335156216576339473055511402588084684295901127882768204695336979103758686341408054021843978165819576105185456634020246566792126377814059136244283849378921162150733821456538923195175772283807807767151484689398352918120282353294579255288316185313291846466659096240914872778940335116220027608314873161120951313365332214533057422776352045956282162494558319611219150954434991028165610421625239676597907601381633338543720900502441471023709710779689799526200021634737292226685779944413984387280551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4478821738500439221271648092830294853312816784601509587070634385987836655834326201917952598110272054181449565890421840303503295904375419606191086138717241955873599443153135494552082441830085033109983977352004228096325740755939621013714005961077830890012138343327361458069742400369335768774381409116703262552669328027778287426160675127722157906209725063732268255964166094058823404005434707492326004296624650871188111909631349900771323195232949159074520380392395857421176750182199045530572527971398793304756903193928355260534937482992778797931838884885179840999073505863252384619817048664425100582149435077540297466594016501715036541603072630477893398412641605092402592393436653643548860766183173580414832701638777917797985514438072848102237476773224422458449594644850299997073440460867480296224928454324276665529889812877208602156093488899526467036708331419684509757073866351573991023689384748524327813622441854878820851503039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3511228908609364993690002281317186144005565541321486501195921252211710154658965373137366592509550193538939330303860879284637535399393205781500213169795896721962043801944649362486148341138804196874695863591981805675786572263464684457740106852072396378020285482992303674834360052364687899905737479903987837737014729182147193869216868862625181293004233109535356612025574344185255121536626493341005447945209502469873001991324609321521518964555556039552848358297873387984671303112669116225559235707231690335437202744563906960998237815806616424676751740266342964277779155547250559419348341014201087164930273315418421952129592468973222904966609875489116274532578889389702881711210755609005138000203216566385406787114076836518013267185083024988591932699101219495067923705672217889528507095521605706368803918981409965911299925929030224756326339549850841263866842870819859913770694059614899381778114046576665069268471156791973479888383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4800366113082487798952491992528841891099142051773811264215314109052154109719185395463595254903550162635616610717001025165127338653438998877522461655965467687134641696795453311260087848338737609963633370246666857402536004772230982376503195070302709356127898218402621628456348427972444300275801134072187494269695475328287547144931065499600789912366269804202999435964581114142137177019204465197641863411066537851389468848937578827469672315128014733660463430631854871414653916119687103943359821689744924603381890347905657737207662817284104827564470037526682660060633935255399832832783404880265875512715107290370143002161914376642446242570935200177218798189980766794553170613176032562022442759402521265362306862137393589032021443535744086683513939260281838593504832008857202875557815642397702208017031619788617881793728016920861086406556779642231958801126978885027430071466933194714712587984283733546828966802245907420711386829759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4251264803213119548692495172635996196185918539211171791814029259363970774665200808389827489325304901033839664078603883530911564463411656356997039991031957085093593013038389976354668926715369986062306373992607616310611819462407119651983163580916385231380780976210418758292250238425642419085110552662408599190973145369503333932121937441431118265573808390439136938044247803129979153132257848731307529960518249721492733204597603823453891262095591996728642492951082838038645759640141402223278564476131132973967248003342005686820359944105353515097771555641768772791598246127989593661988309899677569390502151221070761120487140068540643094803808364969535276534744364175926657055886007418938707952720100664174029815008484523483145195994912040797888801576925857227112495432866873410574876630113255126429248827758877192391001032494152398080299167015719213753974320028084196451333420916469648068123542540444336498409646510849818964091659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4334086274020208802443689704977847896517234039679249809225712417383616330049989693248230443817373294376762579696742722529867478763271969143206295017328926018549103970655822574379973406877407197633204911942565849278221174865435432463970880895272417757257661988437870654694943566762689728096218152584838804340634231918656431427512791392125084471285468741928277127464240338153393702808295338589566035662228506023196016414816786464423242285855294683634073630390788837128072193665614264139145856442295374271779461340707341981621578651154844561546805373286183632601409644375831166020009499770227784455980620403718596167627996130009014188532663139222976964196728754598015257871153046828595766350703398297249245489619464338885102131896595467269708315690039796131153624926624840000502551843498406917224861100851951815109768755919545373831148200806106057483838346964655293641191528646954275355960107159206821121678404466511643066209949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3622886721884679847320169786914872202795460162081078142176027097229845442331741147224695865147864885862902885988601450073076694001796839334539040834521274721373228995144146958579610942192328543376770145453905953010308000486168958335233755315342088257011823175520548935165558120266431153849434789961806885359398026777862362459975720606401692121410482559395253852451314049378722566859369467582284882248970964084921149884847339187063810127232167849759447976834265872594421227408829638842834970956707786671209385955548220077713556867539694076959325020678003151218920041917437180905586412191491610946734705775568459486686215965897827979306722691848223174331579358932451184981898458082425161679256139881636274774837123639383049753948569182952535859644570600083704602439933697414456342898161055794123691770675373406840153185319194000026955505389964769213291794105540776088150468533174513996573045260581953886473641037650611982733173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4336017566055714747974888934473786219491290672879661466343786181923360968855944900505072546711525672280459798750846502682973803269071044570494615011828594182643457791421161166756407234698841379352552079974623300110818704903435796643175540870207088938225336762991102720604970454788000132630713684163248280206758313347617569272992364989075248080374507948752009441805192555599605011400701747876762274887471308993036836509707495505966158335153476157739581623365058922584221661416092556663475221848638195528008522990189011177076946169492056167571041356995669046914402387099547039304250088434454751777191092788103949339489137956565518426456083190067707119952709419846207052178958965746946550751141391164248415236656394919220434878579935355570404875868275395544689094540374891437009609749664112823205134572260268738562180856256407156221185831407617289393565104316284875600338781809840706500275328706153326858214846849019980842491941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5575904041528363497126657588758230953948959589224072900115240730005278023008945833517246512261344965429757304725415410482748530825039017359787011323830610227281195900336823904198961749959457159326480812529358411450792877293368867584368301187141765233058359634034265537597010555584124310648529818333044718852311290455209331445282148957668263485277500022750602921275498360396717300731717425982127305376612680756926471305676763159238712895671910836714400180243258478224500170178602790484862332401298767747771526430003539951127430224648828243667132255665128904579574948549712753872825508649990774624974414417788772205962697479063168718429367212793264735357867531211048644917121039011028020412607202480040546330548625938233619261965414576827564663818093510895253428715123811285138379187169008346861070940921750885029982254183308560391774809987814266736836400194760339293653307100845593485133109011430381084637386319920839709007793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5641775221845625401546651496926368296738400908647254366586041611011686371018698762499286044493577162373088221763952056371594120883292842457726371416539344212890034133464981006043511325240974166808632260960361798407366922627269130591671207152100246414879572862946182642692958905943047460045578122628729570548068659746115561588557869052003866092178983334215337719351082622179374351206865452429137851530687050159603486286472460885893327598431111332202734685439357973145707190434040333577404446624414079064299538825278820354556003167391882297356615362000133417943401255917846271146617611594616947773092922920748785410029653330660499421636926320426870785345237466082551944281298758335665578211417907624140863319280263929657233646043766676690032358679092380588169387455124999105271687674780522390262688636466274637158728168905365385505880505788633750848818219028861069709438074686741754807666691109297049640819567004659584087466139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5414697770717125644724572118745709672049993875774910122321400048219835797064107967152062888636171998722050286856397410814596022999773883783009656600427577820038026814728014310130184701601416664242578236598016322790399140066319831064070171288116884801109009469294431841666257653527734538284997389682912975494586162966378737839439772450508474139739467823618694593743293357035465444383248913039755778817421311332482354126717749630677718417431415204424848313676151454354536280315989430692285613447767547509029272660845771384646454490483654684795120813681886376851961590190973393799536554076734628464844678778273677143537049417700645066995382574499759454574449641607001197507146333253742435842975868939537826420696920125995587381306961810540305087114743775655955223995905795623486129359674240947382054017820366164319981044534014666334780312879454458266170940869663068337086855269917698303358854973654614505202567027796943675909483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "3906279009939189752746951011023689966919845625349126376322902897844744160654397315294507729235122771084228194882366749436190396604377738396592445246066939656693716159729008234193563539397199605641472709434347397458749663405886063254493172360251939937561008959115182179784599674250338148336892008064703375181047272882455186183405279229732116916107322033422916670295811713247942712238303420149805591105475347636389247385639433134299330184295059478728912891391800713638098434178171619335575438555522419137486775967516861652158175956934636687723411402107120180505860341408540609831446327622021726467269845828888090739845270362736209056557370909329878129095155677197414541707164219964000042183621260632119599202379784008323422730144752736400673848034493784023790213975415909507364057616816966787453697575384302595652744637892857478532961389889050045821490546899701642149459055183195635297099434706281487612157004511422577834762407", + "exponent": "63289" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23416504593211408285557593446368006", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24069633580457681434014975448356416", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23495038024720888261742773841482024", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "25104485078366979481281668648734871337766717147211442725641280220070962361015527864381305564235827610390275389454284337342572432778442759978743680641857817767127222244798849360395281558208780739234148945846630907747782941522250811789478121506968071153889189350272939611134622823219193690281071153839875743562373596383747107390780119300034540895377524082641451502194607442005406436460869624050643431795260235411151287270237212194802311335752207252132833299702544362301758453589588240766797768625234279515546164670115310664178533126011103109207633812247138511422632590478997096722245286713709131913638516295588154104461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "19256292423697653238294406744635360437404050394763702225599031684239121295957059893154765500017347955587201155787062721124910885995876180655204624107864794700694647627327963752383960004906603723598872602377501109549377781468779032909442219800114627884935017155566122529403293780358165137996965724376586095730542456157880097095540845501543455669900500350949557384071109409633265738891634086570681170797977619776535114097462415081917807857619504550348193017755886612780945772031755424152527804458879709982519438286688265779756920690373605296166906143649748616623996136980443329390407354681124895047809197751392071875183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22924670467392585891967904414733552", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22416537115547914653151794206121742", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23745876772327775335154028448002448", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23846424020843754952265164116547246", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "4708291898046017813757988035016541582042477935713576265631651147988521726135630362956194835633248642941514413257328846505086069419968037727952910932944758896430172003045470135004759953988692555550473976665721839459947269094015167183247369827929105361560120595597305623437598857691836582520789558389045578798329035191868195392287229916542652466711226401437496185488090858825451342905352319732070469799539831955214400360040615803840949951617263268197106594270466713419041610166476090025389912914448611347013305614956701626526149115912822983946136408228510383776406022050822105647941417889817676567287654452335259833627035785672805606812506635953720459952888161379853608841341635990186913019639146285398296556509375887009042999500662299311807008968897649951249318575795590260215619164290355391416328351597516722962071820999096002925464298275110560305861690059546169548979765124772506651816028035138864530775257945072261583849457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "24144497055026115504963308376483024", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22681963818801158541297985447915259", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22527731066562407201987394832579397", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22813756239841104485418218700691740", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "4485917448711235046551436398172249562781040230727326798769811552892587481953473364559554270554973849683124988545578550396090773167791689530758623361462770351277644897740544829853825814367199924069644659017079565945081762122671161271524004829051280600519958529603345382788928342381801175987559114670273546105052908016973330347061631938365835378323774795303131521427219713388618386075616306082235905169891872781541248106705130187805981852055716835476107270773920039621844960218147940950191389511113002011309972631651415513812574543618823686186658631841319086090361385209516355069306285828276209055356981844349329193177813174226957338554665990098366888653786645481121442199040817624562248085792186399895322724634307647611844083575571087286223892273185244145338089128190497982942241600850321404347334926448717600477423713557621090102647632133570490736761540819249946758220102475523788940251878618164934821206660828378413298291849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22536516743301413270603672196952357", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "5105903382031845728087103938608656550905648350259642640123889887122628773689142977289445847044976098478820635061374610663744605682302662527469129504437299064272658850228675200954458377366318595167919716611265247517501482548612346611818340587980508163344157473962375979691129682980194709129660631928619889894420505899855701501636758331047303998619902962878764310516924958791499495897447378013690931995398714601418035253572428774015671862938269870178324606818635025079790383608017069281178026024321090703234244239201195469900792655806815264339122404110895280511064722171513201943687137747642734142608655838743525019595173624500077597426822622764429277951531006183850616240981090510942100746533369820051469934814836005016301671142491265277976870893355461304117247131137034276200582940617043194578258705159441480245577681423945597714282954425923621216646336737595062209827132325358521270843691378861094011018030791835462080907667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23884750261669554193795701827853531", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23889923874451356486405548835803724", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "5202499709740369159726035224325356434704438237095239617365915791856776766321075145089157913056920347003904732496460636015886395739979750785633313503260121697725363019215924637774955424145646181222151032675980427209078539189310888550121814739247171880793592581309227851563937289207046095268849624653272434111462007346178440417713807498520013358757315524873205092791507943213402165733663550218664831431078802388528794066053981965552286904145510313709362337862614188792980716341638125398023309050580948959222839579336879381297283431399144997732309235108049726634909802054067861958093957977817349095283645917007757392241755759735218497462712039635162913307437712470473877504485741911611132057609851627468652593950560795871577479352017181119473165594628946084866395799337070603964902808509450475053820568923503651470163929410099810229167604585714936242289301150720238386519725629349218804523539515155318770983297924120779771211347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23608018539666372371295119725590970", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "22973067341907961621132827637724621", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23555354951637787000081912651246161", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "4726131785353198952676827525981777071733494237375354369490614674655001784169274222705844139478646410290073284912360708081381308385683171107964708619380544792954065516804991773866402088515595594809118666899243386042935797652052410371736637384785337968072690330419471644689908311330836554764044038383698536998964540725081231070937909714355873774670724586464685041018153057195109796663126573797771700948039859435399595124474717028672083503423521932539451444817880467131046492198507498131667711451318491805496719266586381096789313301237485866311318916217246125100099130008057061508538706489522379016381422330341770430735007631266509123107177638013100468095910026737975890453150521151275431307810727912166262741316525866084882944896903715587448334502919364894851383700253759716073442466684487318334698024059035289744904001134654682398631352837889617207771991634082819065624127993516616303906445842914318049873741816208780633307661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "23387478501268174431220773614384030", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "512", + "pub": "21430427460124625942889839683758251", + "fieldType": "prime-field", + "prime": "3465567869163839664548027327984585", + "a": "624062108208905036339193622848873292", + "b": "321782176536615536645269707576700253", + "generator": "23399474765377972542664777178979404", + "order": "3465567869163839664548027327984585", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "3969700667545096065844146950530048253950662631217314897429877523494407310671789913229504486458809990537168217964021052311547824941733565078254164726053186364172441371397208096514386646739191259030232496594752712963917735723667251582459808928661643437696867834951188223635923253449357089490387922357635046138755442907522238902943307905646482819510655436802192986724887438547755803965286117607222161255392473652571226904315820695147251329744328893576760986498977050579519172754924703103717122941494358246900229196081038223195708352804636901682201235575588672477703867396081690338633664288181778077815898643845082918012282695061719678549255532043570478044453257383798124723021633011574876283358541788626927819895445205318680725206879867081946492420901116084953304044719718421090361365498421014099850769445963787125543101814957487304663071074203481784085690963100360970774363762680142891116702103073422766049990384801957708340983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "4969764333124457420530227543521220360570079797979588780598244046114079623377715600482764644302061326650391562708506589504633271984997164013020731266769878943142696800041849104509315145702094819254644723351186853430438031360637330608209535265488454656973464451876534195229580790012666938411286768886703416299762088169285107644206937183247290994370599773676711044753296023196724672269095870904276666712551534555169767684641834366928898320373646124124868970109398998375728406992070721800110670798255863362650080486639438279142339152710105918200773730398184563405192463006433179745287004826657223677864544221367351873532383467164067241693127405738579975613972118868892146611528253646681887641916532080121110557210618455655112958995142975644422007579415435742213690163361355465879041368749649262875666142144904993979686408371930375958069613134577471125151331239512326805673340484123601257072652389680550994905881968810543515111271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FI, O = Finland, OU = VRK, CN = CSCA Finland", + "modulus": "4402354666458424288968477513011967761529461440109512341558758421515402196385946570173597090084978652966536310270164848260615630051929931410253331994636516794834137780173923188476165711575921134029576915709628392335591036751169086346074802025376135656731025211259573429141735052652092905086935694465239848402202242634656498067683447703669539715461634486969927862963908372796254820099623922171521701016338909413931434287927218017309614977844581302778518042060211158726770888647140739331377674043355409744717582872470634780239101286095789194405149605429125141904773537500791126348328381442702211885303289148096016887475243166674998153839052755433298607726332978165473746108737658761475944964289240945205257717001273398080032362956465701315999605146292344238004235416353421807210141002599511648159236676357410671132954972737064432165583566325257688574390053048511731568792825418955149578234081505237949964509504242487843617725693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24196978467528546520246984889345693", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "809969786490975571228702538132765526975638639983048696818062426160431025185905035266965965661021815598281348123658486313105688963002682503358406109327419629150455792445287499446374276970271868284198238133991851547070403013714711985529573631037401968968212001078376272294866352965747242467965577691519026679610777474936318991610767202324856888834586378162838055447406817099028177285447930817698393820009089336480410357775922058790914335028708979653061482518274779791093145365107650740245484928529266982416096266111490821753708821853461424494354531068662830064006417855280284266581712419755405128138795652749303334964890273120467969917874019731779746929050138727799712383796775642362350447746304151634292062872407747730843521826742050457758665754176786081976384708908555364059899258305512868759208528162251117688107011824431310727994367989739505094800059632391248415477152598255889106451101999196978008374242599777509883123799633013738937967215821711064067212902017040576816150518184716094579640417275719173705126250273008505290268312512902235792433154749890986576172755737304776151430110841601596560062359551671900615287974762439842171533363704195301541165450179136401279030611876803580766902068237117230194796050169129159221792178821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "958932227580071810599527591659325880883608699539042946177855889930509830055627466574777887260912337725937903448633064465446728849998908636114072195607807123589249063711184098268515954468319196045104601393535758221035164306181817796195619356893178974165133381395612097157659077853709852946614213541681310572425572697070304249012602073018262474608851323473176659633634159554073581790013975801085096780111366112694606754382287464674425198239912404689027692196812350946302035341007199361495215912280593156629391177764090255053999100052188483923339959255781182193995876850201973538755719783469953942195051124096617477002614318663941690297394291710884588632054992424444544283745408916083388417304122650124492442170477376071135369383516714329373506555158208549707533157456007957531186300406411232227545999664506329045494664544797993431727318841485544474174897274513351278831890229084055255844488799089053436216467789325684766305476689190952147650338528596826059169000248631462183093779803079654648040217931404537173318987094199997864966095529850046117220621094063536774899258274963324430329821335606209675389315695959295318072417660592273721668291730287210392419297432287534748111293591270965557759169479903271215291994738235550267756757771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23902633653472376602981031421849452831257841692807973504595441158904184029957421137367970654828726560229620887249831767825983230853153963160733228253448584217532926294431318684621836116661574210571646303541684593844491241790525353985137553084641188797964654053463853903544823760785504779120043536474931351339207893427789346087664306254043977431166105518659580118559934081382628730983306102311258658070839036691389234512583095366843746810108816002439686269636724231104399700597903101509047773966744692484270019279043554226466221279268015375423888617478270985646185727009683734832715194069897097122532018854127800075713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22728064316076278327807573184690447912939002786468022384256285799314739881433855686339497286052238107901450819606693136629239256031143501667648008423319223643434875888029494516170917763511392646227080655870145186153636863625366863960691699157727938632779488079248552848830879315092024344756229622597659952767993430465710592256196518161378808014872680729614326655247323704644437703617635585603031246085080615674824593478939632713624286484271405696832092697977073311189867447580415851563398391946230311138032782555802942940626207084359389584395843393699687954134165671562489292455136224906449133169071240967957516831061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26961276816310237010174747622517832907741559454122921764433816769135154954069229729748894751814595855735728601490076792123593554611582422873661496759306829485715322493573286359306399996883606872335276419967712321820916663756498121053628543936155414812129362627099399296037897206553434989116712857360008313243940840030438189881059782903491178818942102415127378776473533159683989518788491071155925939372388773064333677070339211095172278874300452501184901480945990341214093936387077812906393061633028997334378863571549102926853447361540454587859887443707183698933624336814137681834625160873620092480548425754297427537061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20430045356285397787427715934580060264823082698835906894485757774347132410175846762114365508357898684618939842780973311124529401818947265685296996670970455047510384497407356716481268698994554594997842694814648794894267860288184354502744019978541997734592367300184107848995364397372582937736627287856593574077582327836035562937324965183740644832761820821960696657006211078058900573734541453594704068294764861874960832759431352696054055657969958688391010147969548826804277720290612254352833453502549036899332409945659886938944779470767816208621297226942978226111468921477780571104990955773154678037730167948128306486003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22427955956132702458028839000510990634917232499180239676465781243233983375409442234273824419213735909073838552292294401279475592385215864862162413215558444018974334545524938009953088261121776268281886103247952107762390227136451750143806897788312600257030603798147764562846422665194663262358646282687111706581074603353377449108810398509021146311424543155164725052738731866919469986995288840523465836532451204298542437571753438170714962484715248598398374556948121609670543362097703899069785678818354597016552167031236666820246854640663666423894357884469391265979104167315163454638458463259508219229542799954719660364729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19565364559044574050644230833043532442090546741876612017061695458852159395912263836719990468675341315638837427326924291036006655376214284245479634561590770425672229953176090076109256711516451536851918935219574205933362582406312864010437650388753080113146599705928588147264335745264400288965743559928978546107557908693980664978518290050271432953639811498932479766804060306290338907491216843023292048773258005629622135623342290871752765710604607190635085750753518669818065325882019557061675245245036717402481607377013561232271532801292020505494986000644174642817720293563490248741238681860714269021454266587132697694361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26836623786217667768978127221260394667160018353236358939000000262484525774796366283299687584560618728132505363096194264244894163386057239888445918485095725275265596036697628595256555976897325604448670510368922927882988484074967741489135627641180206184716612204415551286115492246098979873649127833689164704318654880042206710619778628100699488039327743938260661055677360663285838406762011221532634470889262605602497823200688993563844724566916457807628258468318718553563395633408298067450474943933254052094653120422076519161022331509689334355894058424424789043859310692492056964924527405007902224792124286216987595500247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27238911172334787683245242074075909927182136164581709572101518301115006591784893646921431209356185914303484501833092679103849517064362635222815364669458051941461543548917000683898752679772296813779215167325270952447785776816700300929633630127821014368346045344559925649292657289276978387314460414130362382614050504974205413628380369755569265685897132082557623742605448633377724486641502177906315632245481382254006260132926870116044407821775026791441637963384531167192846035973049456676739102758180408999789734091706156366396424685758229906086567416254748920014919095190431055013967132886335000948807442621144858036867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27483246624647221741491035144786424312465238872586933286186355336639532490545472746668766197546469793723015406211491791599376917403575351184567551859731846963069346987550422822666146500310894253082410117637570887581256702309140649190436856594616096759519874590846701284107115223686102954222984718835810213303462640923255229321844218727986638405007937969243452119518803263319410296019248699350842167725321501858582397670692502032375688158037421530533835022779259713755469614657820172781971764602027208637075065232193388507459776436026014340962335607626943831494576635236823705236680807425084233004013899391785460116981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27047094999648815901142458093142364787021150679575854285819312928560721516878028028764286440619882599564232593857354456424721530212630816248711929634464520384557469771503451798697218348545337276532710271484250912333542354699502274843059088320587721316494066352903080719370719529645279877122346492154645349722973036272577490869628867255348284218710599192073054266247512290112711423997553321790805255676338335472885392366975182727855782522486031070739053440319361010753945708196902344808087359130660948903725238805301618272543829688712108195583681464152658598271176643863842710110636527270659782285711363225387519381107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25875665930587226147347231320394474614598124425953919378943266493061101059081102431151001064802200026660168183276116222024130908086632746220618033202619532074383010273748593391407826677404614268394677371835208426863486590635640833457305250863784253972364972418539650543589708408187718102218945592082152015029150716392840919484936941217869337865722339402240159147558241719030349837330644284703001098259079897640345643573981720529247715676552384906815214858942070538094496462136055760772928878309888844952022325907835215237112885572936617024754958480699925819862622230623257903467099328785296476134914542734655614339627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23958953845169344129357301465421165269588066550174428778652877114310923063279502859814015014709769736108035788958992028854275449295143975364039633375481440972351559632551028756776517702280639254606773160441464463333523233984024599456489042836985658820479174505832974290160839472535555432699489284860386669706122937761192329946821654186053016503362834902826783342102340150855936397816801105622009546646319380670807107753353415497754563385949484736162069217359213480372519921201596962559206081299705712321942347436532602705116616848546311258615514416536458898296762202596161511377702344807851076623872821476590974605657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25291966925684569734283398977364126986001824877480482821011185171804250195983793700209300355480365175764332972809670154551648418020808343582886108105384388710378923151763987191857506052866847062213455603355831130191820093748069669404573826463423339015051321252670232761848692284127584746202949517069695636708840889118024605339707549812932728312724474025171140783365123731743320955928536021446084874536281728649837415589424022693877657155181679144755763149136013890465551614078671814395429282687568182965041338847657439183118498580150381437200684756148593838277099885798512613349307625792587512396526174739892883287811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27672646974658308887056998561735440876704790061449768419579893261627004895171087158853051413661654928399970834228267935659675747620337984080049560116706209460730169598134414592250698599127510401143740187432502416710902529987409099915068033274675814529601125739528253675068459553203543795458662055202279093748257470172335129906636325696268634271318204862753209642976305416496437792357433576945266629768147807258649308008715818257051264566895055532328281328509706888319216891330941463794640048569662525236196586774756039233990687573408814936501625042983870423188604646844324623616977579581480540963000114178195947313257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22137877658304282289544598509560664960631650778091816226951554846058202507798020726430375575949376960145246624750987239298788829290652624084903185476968434007706639763734586475931911394391041203050840556703719574484971957830675022376763485208902517239832861055585949231951338063658035868085632955986667651174775156970820593888233338489766358205997144013860752272721147322014490927295839005034374361450413092508360153768052217016626556787295831009513863187187314185141745460253761521314968188855186950537364390104453574076494138750464220944722703312882947627164957327914707325143943368848072109283381389265433530072697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23544995114000576134570708551126685123985598180889349446347296617525096628508632649006345506163141016288482344790947971514405592842978756064686394842811369201884857022193012955971696404307782702559157556726486572856875598007204156328063670853936992700411504506928704158501724724865311476712641133008412514278148159928256463056889330768847968758684182191539938492275301583354622999828000601260873901689040977889190690752631837914609692244055590406630221535539324973230460247260949988185437340578319955557922310426005287762515701338349904093299360925740469631359471603778840613820012793227953613370999862705647111360829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19750182566493207642373742288917824148420804888158863188765728659208503164260547182825706759461013250678932418559998828955150926483645640788744136427265327464861128275707508790377215424828699678841792677992133812974804035350441306094145856985670571338730090649403950266092614655865240667663943879040394349531851503257866396952462868229876469042197493736527987813416576266081874647734949684971472167776617253203606040137453582557909703050067529865086911561098804148548139553597263166972598897105220240605986051537248237663727430481385752662070388932141667047845458945784369150985183188275216383325852465272588033148717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26474455706789298033515498767895236031354086822826860862177725277840173700276891875404148259939022408864632639442916156219828368951239029803730431123705989982388011060800680825213873907061336796929042345894316229203263047486033129899819346335876980245490380428271593714204476861957658557755320049468929711905869383660421647624502493465110462513318664567394701220026733988675450854914068879416152968352467241106983702775411145265659019914895009410232977090335825546969040810393646230354155988714221730674344560417997506007171878236712976160466150897923920274544227154432323222026697721959117665723082523304300306203041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28050700196448457559363639520829172336818646453006625056069935603560417051325174329105018657465898040120389382877433725096762630956563586252985928375386474234936098420068408742381659546892482760020297987716251943745685465830648505873787255553861878248198093799148053576444510486655571065789319373373118304859775910476698183149433249117363607786519946225277233431519590743425300943493895930370958646400864953574050241319198054967461114062322678019278187802796960370600253887269308635995463171541621759453803093045184362064707751410206687709822196555203637777803596398755580464399202192367822876690796311839626772226597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24953826320717727668744032970889429603775017201754750103748826445395113002623523441213909655055402461743373026011537669499613433020575673451547517870189590532358722489143830549164893837800790200229480253280311952446296387790739387645709566174481300325506954291958070206656181627877077905805920092844011543707345361238895663799187391757613039588126783462034021410545757262717840006861488323069661865211016198628497684686461907698992304868791368041410566126523664538937333080335492631911751842993572868854913764649399576148874317693891321237927296245587590832057456029194200286920242072626302914860103252544846486837101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25188091092215625993851231311543711815324842328900476250616783667746123400629027370357641059461686170847764636524417896218630537558508908168029472771517851718477387163181169283536162565395060570514588979999183386513775482379644699593702509046805383046352987644959836985013434352998289967486336436749609345028953889621070072201514743791519551839962156933745915799755823214089591326559330637146001305252278964273972013010831462225064186275186413749418690519471550152000935837933939963323826990996112122005908774801949676049571988675822156507092309548976181948705783409582863486371400178378519957625148237489856989828137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21877181417318054168537557778359225912315709254181308879826455073555196798391540865535110493450168232608679751870950466484337860056703264857008491096774381797708788878396250642748847643725342822611049588978674998826675221663444282339644375221641999236220341789618859788601213226827750912898095366817261073484805277504699084850551339060650732139973458441091712426593831883890463627511975195409033221390686413022872277595017347548117590055466485871581703781814654591308496842418097514719953959185856057496192935495425338283092470475288746370157036700216814041896478642186850646232883124150214830291547999859670767200681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24158109010932889178913059710402071377037632138782102216018608445185204382359732593642475451247449013327957765860773629191580447098981416873100823411327063460793768232059853902369246729139316202818303671068723936993798848631125193974477047329170320300676653176539281303169451419414975425552039111200999660136030923078410356492804198160112509394402268612916520468921613801219489859303416786804989221744912456496071123268141393675157732657626941352013018108839477908052906087354257216877587432895681709658719261843655501203954161683635131110772042130241046709345872282044604349320932260138465541509435979590139247348591", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28056126825187140893311513979173674969398935524335590996002428136395066926861787194860800539277963976860746844641790899255512108052696529307074404612297188697257429748571239586350164558340444808643058486341923318841358878111549065787009124877676734861010889188781166979880067098771300608154763050314778780387624435773756190396914420020862275988955758573025269297514654774115948876463225253163326924861145411285733905313803455849650585996416332293992926175669406731825492247007597650818484640348191826263377594901773603500929239557236592514346600504895013463926282870227716147272082075096900810104171400684166437362797", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27698187340907561083065471431128961513419450240925751793106458313940974152789375522330873122037155415774572364975387890979352879166182901672167449826994216866458377757639807527379573380042081220275071109969417965166257896493245431892415396758496193793049396515604301894993933873650210332726152619336848638648731317206462556142444589413016323814803906045760653175375572933204546753847619391856449427265406573754220505080165339632764627035575239756654952921066934276852824907487453324424005343605188051150254212143044311841635579494115585308104665384911537714486024464573756300260783000606982207146670938388730453915523", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22328250551299853326148989673364633839994790055741404992829162408111102622433322281974296938824545222532763992437067343183401669174527082024729905933012903655044508529548781704286375505939331703238639734827648566447160360182009922618707816934901290978418897589414859976367345309188337756263697695116683191495189001596075069711604100839849876844908526473087395950815219998124748974743965716885564032268976262323785505674136816469284933388499644122093484968616657939021192893253898908718856972188516579408138643021834344785425290726369994758998018259772084844553317633610435713116428485398944424971479286761059256681823", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22204241791977288172979058753753648790809869828333596373057219662669378429184801913995110990369507632452717471721070230145274995067342132573222915880935729199536547710027583594009358733349530061543859108487110517658465030788307204641810929543063885502670419122631970393898858868087362685649847073482502049691892730866230262274947027717937328471299858428110228939499848966203918091988716942938298304183644638149001234524379846791864343163242692682949642017606629490438716765215099347662435694662926735873561636873046566284840406329757798628639383124670764993001152678123459510026428024002522877494779146422678302618681", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20319870923178726181130453886444099365120279019226524233223546761261341850315631340706578023096322986146422332480566843817589691142736946547147822907295361745391540651806528780240253602736741714713476944600832831755059473043169070953298131068548061546543046125235339670431483029397709008639000592231709481543828980294178734743742721091098400610105219293987886426105764084268207628645068913432782391939311865844069588987896739768375419985662629705694830922777606723835150931904287715527124145027910605302889231786491154393396854425364799048560921660031323115687293559133666243644944656790062089990255837303840890598137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24572925687932858199294747278062839297432710944790758149013961556185692386241681561845183419127669659525989029649694677234198364640707475085119934089562599081875613531518620360636506852980967884217878438676349705755679845562813970737203319549461648882040892613707431266256390475797874876476212200545982425801334947093944205973401814498335007090907726817319074868285419048058843953130663834195418813855205213970994011463096358375398043527453326694255865628214943708857020792893734698178385460125212532961210793385848982298486948577642593795419786528112535331285164734266909487924378926122179608927043335743203829917773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22271655212824481094116137363060715159446139745504930048431875684018902653855009439500604005904431774943688250087739754548447227276583863071360291122727894274527279728583854271415477634874873794235996830813166855460430565690621366733566914119422901684357115638765724081266637281911870504545956206239328322207522303329272986729692485631384537982953608260432671276663425751628175439427455126845598745232710012513253221969125572762845472174247231676471202551304731750605025824591238347717322423371460416859709531772823806232676928417519356418008765150609883845558425389750609269582153121560629423214686737810130992928731", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22625058492214423807731397404580977", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "524350641714008640441907979694769246492217859925820206752396301916067855435549593017878024886992972196727757794611055099042839957383686948169184804967803673600480264463547409925216502715320345372528460186063093683422227257975249594964176256867440445795278684853716749680368083102503725475160817363613301162767032049391395138510824451982399865591987016058561837676398392409264578274047066903018499684974051601792970615125524770192343117635873985329950076687095507309355158477787486073183513910298028332273522625735886904695093470765175828114107783833813489004470584384876135922148014949912300544135759360189712059967193697641241946547919909783641908564447133983041618929281123097252560231556130764006124298966748402680015115365552082179407281201588368777127900633237201187766902529877498590035564904126441284390628225883141559068183414223268033739541445995133034142888514036061725396705799492231621509392269872534900686999485838116744065781464515873840524066552240509282317679280562083048094163636239424341713716620924850111343772625887314255709041307764657687707837013488156034199196770728799913426284972729624894678559363838499860605842736099162825700307993725307088932376044258598939725958441702824098475767206763556736761304543693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "692209353028888834113367435540539481414259656440052115096767345310161112548997656484905010913224489899844249611673295352141519869245710384822894659156596736297150435774198366323067729864691308303854368979057769184448646020467849355756717443605052792611010102756769971520337294631039575700672219997881641482713065699585593833209010813516606451839343077106041248846114349334945211321641380740546076619335407859648218163235636668987988324187889810629577325442763967501639756143608892903205267460992365726435008023231067682658239363327882643888515334345390400242678598483093653280872977778157850232814344471637881485750967207549877218717741245804484464455702107832674514368868791552370426953575153772440674389566935839828950811743255837088022278686918791724669770462670299892508389433206954823785648756194233832263028025408073197533890741191220246957071504256584058453987272541931436207917548107278660011675828172850704480549158781520551599968270898046865697209314144052531032253062295612100059902250624287036828781993347870538684418953039681028184802132606174933696352686823595220868083528137057335225461179017995883767066690051054535300434075978366738122653825318172483291763657581748195935339955295925647637479532549815472822811205821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28149910391484886933940428660494376719842797829729039000557225235607604892088049355526189675266881832783698704385803633019994902018270319238071633726897107696347227495192641481629560197082221837830617808583730646704514609253338721962601640941241246662800981301672995657030820429193857016263130921272448695345606524009751363166284818430104505663785134290784285700767952018614198025723687332874400930544991634194991200737560520645725561233485037711597006988243397596628852431907622752592102083572575464871853831805435622739339588502547884314853017970441866444963084581338051375405631923849537714659516633954693873277437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27295524815739538722744856267759442477996168371795504981749535242417168626131176972705796014982549681660356629335932644359331926087830054753462049602429761202055740574926031846892211487156906322781206870227954717777744434984728612463156340149934009293616708074195705865179777160169922051189054363063175801927666280645918699372321549443392517379065779341377828243252212841540767274722193495407951598171246465255848777380694843574518193729475114043885978588920391217306480442126647943141801017309231876527994600866669834004389602641390491179046161366615724005427503170503304079728933035606130079231401867558042874752547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21664895904348899737242562096097822507412357035466653528631801614992913254864218233094025632171817928462538018878359811689274180818937127367407410243591829187469696717729426076897123685576344739006707738787381283823247061017481826534962406709326540124230614099971939644005230915956488007506136364983226790274667345159654078610673126732542273022969080806818688024617205598544562948319043183435779294580037410849357278655201616788497623361890809547939398295641555956650357868521513814239945131490885080385968432813776215555234701467733605803710328831858026307364858210984364145125485954324773712956936978542227842238627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28993015823475975509445193137742099220387586040264695409536512449706880612184177655959851565515832821751632467389837796395823249446151577989535708189964839440633438982862611237862312363268582277131798782422595077900170246758773538208959570489957091079301229104735030537529993804130362979275774053326311616979404793750555319102160533098018812995108584405755271975809828349779004829554010919472324401094823671393274435775302756457756335592602034464181564136825487104573370070074145464636249746834726507716266988834103978622960429891312046306384138687848378924304212822375618356292766224207112349923393741126162959698153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23750594349012229745251828850512056634145643343568449258542913760675351673397238933081408604105681490989597996201449015611060583114635878963972618967345322637382019268855629855040203402534872851057543865782869971110894263286134655706493692787750280821332751143839323715072962382725196701945356813189954451636774597794451054990321361347442003670531379774200370497435208959289542613575127245218744124121843139018381538150200019437338112180593601781101771868195187451911049934605121395829025511439512944371242634901555712808059615815322129179008262282732713956615760794558158680652083618075503815687269009061523790215071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26075294245506411850216183625736442921380976293115518365676594639039405386026875680999663421401782856248188155756015366277208622085227294260944078293671367655001984569985102764870468389493145425150725349520709048064601176471320327501162433321143750786866051469170129891690493573089558798247046248764791298884135976703894347172644110066627343629987640092918570263962816823994650600990173956446192419127570604521657813578330272474532969025786418599488517944964236380217560524055652940743804618641085368561217474422826230028200801263297002958424714025985337048829537979880046637523222359800464823281193620868629835668037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26264005513477385275740606473573322681320419798042141087144131499945502383794861762148016429247444132296178720737906135807059049714219948297012729438042765722241575985183209847595708649663782344765103411224213211556460429214585662266223863702055941493639863429033068523201309765815027051774980681245636506385517136546663800000371203652723972738707186647413224584256569678410244241844220947394186184677859853910584578169028162024837558001856431119530067169666532385250911238556028296343318808406152246696905588773110284699205874478632103872208355666091760502450081463298413160997809229859954518959988745659637202563049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28744009891494251743399926261085455503581418094828070822607072505263438595337409625438232428492891645637214839412782397422951536579747608234809845159498755837522594565104311032315220412277149879527431424204819930372019800644168299399833417002436826615365193904816520055775294056158148731075282736743128103390758771366770493140206088702995639203229636328296176445355154155908916378329070578569889910085197158043278866405765569702566291777119425812209789863371218814725029944748565258611789117599420758641269760726164002016254278950490084192167601117990581170380585312111192011020043657842071847196928816791442741632961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24702614700973828395138126538170048906017236651681477327055838834908191846251061312029775743534104133689745885783448541784012159632130766129716223392590943879320452607240900385088515029773353012976269246323710359631882304121528249922715836611381915044037011866892296929737954719532509234697531291465693693835481788450080071535356020327865835041176147428495616391872439830410035107844157526288617506243006198943106325150226468873760350203640277444055053848824126757943125662362124643557075702171573459807818243122051844927548855433615456606063636753745858413582792040370091357723891878856784437344822276331477328860397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24184722836683548533639806178763434632237568007424633974427276649320961447584556625303514376595079902880192181143551413011028453035484195013399462347374053929013782243866249533317699130698848643729103027727618266103678510562224436017221124429658313685047495585999209716243421920567891617334735503723442615620654984145596507683940461330810729172814374227362739913656234772042668626172069952377886471291906161915949388823900471049006766542235532002208681715520869882979429900162548124467896470002794402772292701498945909490469495555139576195334188798173101191279549178137553476679410319131065056243532936610253847739709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22503097007515911311855931639387316509014314712281661088275150480990834523593261275498093594896215378501883536780079834529105114465321677485342630109290668908423350181956113803076620677194836421025481381931389496006931363987776243535058316967716686881801366153241728207859730813057467012142578800043847463130975676028464387723712666242363253948830693466866218663799960243148746378376820085208367796133825349338948120850902628211093646336720313344323781628099411266921041035903189539658429598482445013613655051595676480950995994861932839041446421760423721166979941645441614455547173902291279759595195272921191212114809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25828280709892397402069682100598292365992404745255282693942721744006593615775761722785064328513906306257360574093723823593191947671223234925786238014101124651960564379726702352795184873394158802299443668329448351077905905601969506501612227592803647903598060455485312789614297362355405645525797858680423275981521994545761438144940768424825225156918777946599745157369228370347047854994033088305180866953893962694813052186528480478505616053243878368580523915489560129873664264860873866862705961903433215890238228608494308100109285136878618473945426940105812628871953927458238629500854441882944887317136207380124101333817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24975485169223095964294057024122401951859690882697040209947260345967708862967864903013342421449244245050471052139618695651948126655250016086917939346516806323314462269493980190418826839463897899919925387570007411557418857642884969943878825350236210127070287534218502953606315831574283212385305688627840272348047514856234718154123787456260557652820456074741410423702417416049593665976665152463792504038510425826374751481409448057445012038217604272084449891350910779484289886896940564138386124315240001085540128767226866767330409420667122496662431730617380106197248318247916736953426073104231308182689064460680274767859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30504195024941919801307130056668167928602188383948174241128283701924355637486374368466525824726676260130189365922671025837069828221498724398283257537827323390276741566919539857127571641893994469191597057773945825129487038948820307712318696838843853992302498645979288050662387670098902838355857939579751058338609354652116735318732558204513338052597126505880459840335756560941849018727227138869738671344733663806283564443415167172570507523886143081704623618983051638038759175129194621277775900456724316696076965413784699953993908036286219716203990285243591478820727188972213030838762955527478489906059011222242570078649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25363555931533956064052128288127895263273247136387456596313254879816384785321160171481560076676518001567008952906442631538617320418428207193713617637375569592055243274255918032029333911161986458853844675608751254085111291782667210874262333970113958049128762756603138740066711496409594538177458683425758374758365489551197520600006027231240095254641794974109172463428591429760436565621597889353503586836590965045381887100452101887931301510849657341160973737740726755661167339454283503594995058975325353098729864166025883936108638534724138540353924897314010925774991497083025777927011044436385674436735212252096094467457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21457459879150260959978303043782079895392989717691621369239444047314256856687263793604169029138743316064495928530687034938520621658781005510280640527953151725771140715194722283632198018928442942631520259331353654617660256797748509721071636621529520643536474192803104858185668748591090392794708496143446548733603773756767141323743467028527581840073169076184297590560906961742197935692665938626392505979886036855982108091776329978976415186554725883804185198460045265680864869612739404553135903939837344262441276872623389557742687298280858934475289229489620932256383837461599822674988524393775039512506649219043086829721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28625837225834159153713948596098249050130678818533561662657833472970262854450423454355382312467585180083883766215245014921327708484714351384296990426446142763483634473668920758151345965061725295321777308119787150805018037512497223185973301808931754632742462921818378963017334423816682617837400983623599297572375676290255621382905996265723802188330223330875431203332606776588015607959190039272466415564887503188704175290289548085390799680522200314359813720816959515367505348465607688550420882877005128704723870763365935187739247485052192077817014717083954868297681676355477374802626260314134402215924397932447779908837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23820575107463413093411535923517860616951978697849357727550228728857263480189533904068723753709173492237194401231087472521154131811017026044734503513180353690041504536346780299615034517723774717735457256943109497935604703930812325564418208601698413813662394468497257047144611979947766589606167756585179952406948892589402126274360300890985296224645924235154273954817030334377517968705896068559952466597184094483623934650593859752242759624628516110509646964088225231559769056209553088709312824869166438426865038691115946322155790116051542464354387930216853562102412311089972285401493676207966421902949556141618139520403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23977983649033455552922429283558828822518182496612201809876427805991012558362968792197954446862874073625767144935683453350258382728876005478709054191205814289963879977666223116141230098888255952058628313088366655618962639909861209739264913477592436739077567117431824751450970229066839352841088484739682839149943154603966062102191978258775610039877108064676527080416344530320781294873129209145279194444675285250202613938823351493282982084381536217675063272423984740916194866848235810961954458276533529491801440559680167881734707505085924014730661947890625609343818694853163230129578620986272729168914993394480844318799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25763189856751724255497768273457597939518023262764597671373407743406820800811802336861482679558248430038229277869397473097512514290665062473523422131849569680234167753298393540425339513252749485666899882923531859554563584878356024072191691657420473249702540177593891841325143362938946551925616542155463374624053646960781658772981054594966340126689711903731800743903995218490179745815442059414421118415069704016789479470909716836172098136412377964269101709820882539954551350830334251908306091502463822680856556738179195166339948861098925565796863723139175523598705249548614573297255513262398876005166159037603054851879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21302247367189517357330663452655571889861778045816436886022874387851228651598878059329303124601423134180787353336278855875521632655795935900197248335217397083693085742160500217003668627840044658159756956086269710306973364750726030314111439756398112800397328738882355957294358970191118491350361974795669142753126849306042025441527363555508769353500406994506762343369161709391474158854408175034043251802914035924451525698237638366020702699514679234082946255770071634231753028245920595115418628968179229384715456195154966196667274834650957608377305047388272414335648166497586304052570322024305777666162964092034668190907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29147310582879588258598684610243786052822048018812393801327385886965760390436594895431365578340487531445121170214113646692931331777188152619296424143195425386756957913288007195602932646296693416625770763095604246378774852176700654503832873048931596766834223881036067467383056339521753681540302329572631694346113100080725243772180347204412464396360722127183968709086361982257096077709285380808113339189358911642850193986362345839823419716712820424493136787559637154683968188450156234574332618877723179296741099911032239673107097018722606846026480925940102119904198996237511024970571987490682080773334221265966476005213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30057021160370296866041824996450777271743670569145434809020795798131750162002849524792046256760243662833217292557565250021306059861445620659540680255845287983605116209267818420554176751546321409078349491819855278365323461533485421951692122690399923303229306389450201950331086024945690786393152581024653323799103097753850216018885187975616645553431952988511048367858516714543220960901736848759907049290066139883894342756804675732243176914841416755595681198556292739984287104286356317118363016778291624359564412241194728305087606789744693536442737217083901398542659097694496680751484253192737977994171512757014632232413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22627659154067780290264329541974541635334400481592339922047010465197128293145184175732212541804556545826086192471693684640337288143657905946375822444307925330322109531439432728449442273902070518560605007204859783925338661096862144666033732701652005134878187203970012007638186045855123391171972047799441778348873609766106680477066659122339457357671709318906843084652336562564890643996788777987164292286095528322521412616339023480012376532521762832268628605145630318019246631112620067861879303215076660357417726454069849623616246433265324274607898047923648680234804923298853908797527276169601296701081306023229716536021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22803002433089933710691799795149497863059787363439728204103169696823723534271453929898152268929728504374646302205898053956309350573457482366455234000122114476317430213443177716434430010657608825670651884066170293172517578986527006138150100953912162967677519451970961218157567405233759822428620621480492417248971028260462377807878609504827359051607550971070054986844625421615669911036862074805801011046513874220465758761305966466250950670326425502742372078667560237087864814112648060046967725950372021283142315260138695332698877738521021328906886682943642965281604009237179769377066805584247962178007425588540036527201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23890982817845268514820812357638230252842164464600781466588109520623352832141278770231771526830037989206405089709248735314572206661875907806723454167206756122828147321406349370137246575253058651414030524292946016055517804825266096031195920135722134690094427449402527641058090447012313112583454799653605999455518888307173446815353937679522007193989281736005052475323045475745606073094367388469187817082614347574049422050344151484394426354188961509907203129231257743423401860412124753902415781631733025883579743714270971226937681663118995741641952053603266212856860521796291117700086875196587968471288314031176164585561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "20972779822616117938712830006633205216475536943538939935176849268774241097566565402478122518581025508099785083201488338864729585416960747236060193793088580278451945278049199121336207565907248274162951505430780188214154212727244294653717222192021771860709511603422186788777734170662441901761575356169345829966362509183282081409865755732760907472683905677340316689660290306471683169183683262172797488799687512417923133845756659217755314527163997253218860634723817348810906498765632084274606595989127119165832905017598426558508041786793175973193159485641384303229420286864350614966857631908645671250172235536639657994571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "17856928974179499828790972824709900926959480988094064998114990511120226934087719128050511292947734822291552472037185942807094409765611350296891249288236893683620654985261657178116221207151393877185601833233209708452043548950086078924148973844632085220261298366939444173788771840120165434576053543985407324978346047457597267742952525963056198817342303875102600723025176336588411165576850205065269731614230188383296816645850087262956600523408185758127953425667713768984723669571491977943173000210153440131221767342267545990096878767568966127389503278900554822488472195896016749879031978864206426784392220080280309530273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "17396358169441592800397980373492794746268871464303612283296452137093630302777093234860983271079698977624262401883708131727664473634966987800418697560581179374178846162254957275548941059446024774311374485614905537070421450598503548363678361478628184772050709840349782873701065677238448473626043438037635002731455050698188349408402214674629197418939977052336519003672786715091627207239412148143066383402350655641628402053484739606255660932117478914691476267375448489667533745477371114894246112750699421844428840820127458119940873231480503457342424488738741663483005874829168132825061466131455681148528725026037069441297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24078614675942102278832119662884370", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23317648243536041571448051869889739900401982183382312559415166743985862696854147892646853973172767046257825397764748199928231149642646749263742869523057305968304409073980910759650788122667980153549942629969461994271147757292376480540470782213441982098421078122824687426316077877539433988257836892401751598600314776166813338829567048107705470261989902731153952238270894149121912976865806435300607107141395179238132018892555635564338045310738466402063389183496506725900163175646280040809739820883149003458662009999926112045254442228008071726021780101977381226407423582698957929561427501957595013523823043095178624595313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21381600770048790932079545796311174664438105867458465294840431189379574059304289748161934733196425330689086385346023072754015806725962601367424824294865464423395273686628896359455663229594949609132180953458848749800124538344752061860389737511463232712941512804938204865826203709889848769311562392517552211177670474091793659709701975878724661708884698008715164049528267137684045063900692640257596295975021108462837940581011521897458944340366381626604235656196025360375694118985371615099057108314481719324323147447394231979096792351755554153295093043397618718638230300369494895211442221980803299651855284795050282800071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27528610520158404298106125319931490379650285595721142776226237047529915090879233555210130877445103673518362984830080219776427202579139080333235559766486364481896209717265515694791279122388510380797200384307927954936424763036687463878104779862683526640511866840834458919899509497509108649522539003926823553130773118423883764057931999317219613436611190708120879923042178844646783334626109172342432068276153837505043861809141199501138892344448462595992099779161135210233561305498832621566303057402263302683833959103045254043107027895611505525193302234010666359528336566415101494452493192070896948837524265662507924272089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28098631921867013662889752193754446026622331821949559287079404383968787020473606020857904879866089689315728567168140376674514745154657841838422624463079271487067590746537841579141256007431944569113334694575757242371558560750697303176384203720473191619290918365494298969993490487107352218568798198481620335122617043835817098123962992106123838853333954179845433829421602638226161795527481699585861325132286511057328832322488996060658717257069122523462045672973380323661908553188752299820258442772550088712139979784645351226331442263710683685744411872391512071402891342957122857914866476997344134558910787254988973614351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23959171259011868585677889852643210120861589952922497486178960147718881537453342496888342928145293362493721059993498458149956538611348263348842819492724592695976920477176837880782632215386353186709118534527274784120432655516110887092072274619328964619685566349061712364189714125897950754984815235972153209138240666351283620635024422397765427715709450431155650699722107664160679791475482551709459142824132061150651531259307821387766675545080522542117625210530383645181836708621004996485345771822568418335272121219479680017916110465066165730336659220486274940717190811854337331329413779791486868746627690333916518757887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24766752436377907510543167461263758644443920257952099882546192849249633261233813501463844701397358527815451600681052252095287705511501026750180234569382157806130571175914138480016580461513383680380075091540121174798016234397073896009280483534620607285351278720156217448250247028318307448631033614253216786068356909835982606128127821847405959186036177307269916842900767863807531953683610014499818317260693782214267619005078572364344405730373106832943098696704731920393448186793674858253666866587777504712007226638894197583197035088295582035985395678668542450530730483640863358566200631989825761124204442618897709135459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22672221635423118388078400422950819277416907731141732578585710659236245123660663979682273835574324842400160316508451098491766150326220584229239637076595251635052329802186259130188493276722738527063206290430045400313892124440548258914560344186559017949194925161531853942026572396406824759565446966589355379086153214156385822054521553967556524215300045826514954230082418447759001670671131567330672526903316713896146723337107352709878135458330938717122768100463216636497441255499665945277912341346393640889206757734004933237376910567419431301558664951494143338452303919914670998592679091429951575420397359623530308443073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27657633416477913444922765747106355641889839180688132709421772520188056702721108646703465205899741078866946697375426443677767250452305358195477536278087260972223216022581695172366182130739305661268595435339533193208077529383228442630527885266128610223736785214081092985874263405912022830562175052151361072379391189525976433468055415781115789097890538811229683326318849179845252889266254125849066601380315861213864208777652042445131256841195311608795331800057881645808399696778267373899386790398136208739975097515224916798447906197768841859858434711214060253942985424564086496221495264338643827136556777135522288113477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28897454470034567257504071588461835020315481668322409649091353502603541686358351192640254717255686865105050179162697207557146849823314057392989054424198826649847853253017083360005602335861777785419706823014612069987543848500353148069806556340396133216849898011790217895026624569966756152456204369183582947914536567017986289161336983640011733357684479554193849402937232142887670949567357914671331082933038281778802711090775580174494440989612401863027755148823361268508845064131182063741524226101760214866840429451028189193003892628827557008237524046355774497393035680301131245964859117629022157685958386596995109505599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24255325547042838948104497635263967337361669692474113846304754462423359598463291777046295687792311623552764100500399797322619630845274586017336439323010636976954167434780136846452851979625094829896692449254560560070936633567755566501156580404442957051883263259348834128922014262352076433594479379797250218406779236388267014761697640544573024887128868031135804694849262833801887481539620770274116545982577771857459419900009156591728840512655201110358631356755950516288619028651603079691603730825793339783522845795419623733330619568932946811595595850161912315542532954403592789017247568581170062620155964921923156300669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25333113215189217108931838968860705691793359890882930717076409238562390915980937855191582185779918324882293481019234779163677017968972518243423153234625358848210320040194922324670962676888897140882187936385090821815799073380531474796480046840697599600366694008799197968505019783583582294735271381742748405716131103230542806820833016077788854262974798883855815504345108305597212569955343400724542733198337458552069211317422757832963517907017568552827688356531798708399857402278985384294225840602818697587538902211426937211034321302356538041774185475322100730101577908295838392731279120495370195806457931586414750422559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26669823947391118820394966857661063868429624028398528270887555524640659300091354599883306119402042816548330372190975246445779584575959112571829725841844332167401186325656085100658491075119138234808656855717984882254044286393805588845121217806525658120040555759929536548834240048854522805604254125695911627897584430567917220975294616741275922628679759176714839283580622789498870061738326837899081330175479148242199757626849566881869140811541414540529424692694351587029848764985487510475404227598419936683096974099398248898469199765912521778133743766847098764396670837383134085105208385268283203445079490128608171005847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "31112727961599530032727493699176193320403523323502968218270865224118703200627511063050172931258007796244390196013461731641794458373944754903176399370227102918110075080339226420744409797203794336788528753768370013999459636226415998652669204260656644325446233547288606086406373397896261144820549287129993071539843623023892813999761088924402695822516331782771995165418029204686708793313224664988070887240694645159202554227385197147377091343961415692991405593818160367118394348279850732428352518941920364761760232473320272251624084830429080856513862969396450796949581429134037437506485164612927153571555982569434428805303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23964673385106971375431812321133789179020502111099188828450518653614543081247456298629621608009556017002896107572391212433042744253986754501670082492936430383122761476825818041990164423658184663276964202058493773456238553527171855892214218215620843024931445219447652525886115014574618888192871771241479967285394639771195011860056145767464948687511090476605422813676814115082724299722406913381752972703886202349707893560346069847090722613825816015154073108976221088069466013948837448140201693923685889128683838388022239906317448761205374872501973819262836866867596485882038119301576482682646496500069394025759755860049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30015974050796230372723975848045229408311100961469010071567847693947383370858124133350866718853679229846015650314155910570167238145411954449137820872786367324074834955782384074167142027201889284101181134074170309964573023114506095600904663363064127403109534503570071308334297771720454968364726432206389905423570871911459230270053302502553890564389972644227968714091493464943712245874171922251132390463727376103730144952005263152925148700240474888802582205512951207035670590238351586699319903793457086984055850656563452112137678622894116250788751117251136508325863497776668144736642391261368148577590742147254756998033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30048975863302693207792270517099460539117029359455764757746029894221149799617217103760349768799286173932395532443321293993089294429138501173361319367005373180307647585347062684758932070721213103805269430344686468534310356506992200737780082896901376159803440293835966368197171604581798957492469876566560314548457134677025031655645884532699491533411051672638336527942308959553573078642000347365981486529886682873410292152637015695640014390195261206987822830748606330878168245401107600093217681102070192420544235406894877959552997638031802382374239546226488359773620758850321693576226062076492578655430248036711076632177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24733485902312583729209755249107790027460091944306301087714162888729741385053795162087051450900947760259015793808129075933454306930754286113368690217227263377492137846971250742787222966614644873950223047737797308064369519739574589396479529510720571341829229967833495423283441473271054273414702423058482337878071438053214225819074419760511121306424806704532309471865566493398586965864271354757068939743917304109854968669223255042327914497677464329073112114269094185568662112198094759311606948787400797958747422913466482735323388491795371211379448592519261813988832374388924243258866147437817556540977850687020958588147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30652095750191066193925014629265977205798868254795640755161694660949226645737742937102522713780761360265938748519739844292196516537655109417467261283838649903915221569152253378116964427594502318964899907795081649409341206774083573197532127296130201771373935238162314792930218141827999034496374578148726717955431000563147035340271473873557621147527162809681791729909543204990245761535251740146258933026025085741696784557715117837622933092251928957846360995417226935061242183490759408664248131877954800491796032140984970309401909691086989071088855853804966204122067502197913202444719015888132069608386495696927417153687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25733106915901121515923477480834532237431705522383564074234518204811713864224753083344768677831865358469330459118471845018407419778922851267130877935080929733422743783396457861956552349617566421839326261485879340207092419159654258366037449593451798296245712066726383280202556100604329231820756981583085981164511214450053022621430999579385079688140555988199743242531674350425028635835109590254661646994752478271174440916144294218152243603849331536022086692490929951643589539872446693646548766084961328681576925474522777623699656411775025079671043620506656547423440323059667469625499876763199759095532053483745127431351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25106169363874404388437717800999394547762174695018845656477867193762846818148006804650125740436936552830100397773254597098156900746551940051706008231072162215859078901890521018305923983697933779012743004069949420686471308444595646161022357428289889256691020350418014436305760272409633294016659643093953896823151776400380244527807499538765641645818591451281904771752300853155782479750863077306440053967565581019498376701017121324900243870074771161179473063983886707362233836709830918940817011752753676695809473879352242392532825045146228496097535262058521889853865565633254161333182476228100656976325097273387435453749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3698776121449542405895082590174761482772950394419951156419042775118631282297804103283966164616541514535915460846125793004508194385419221549964107371175575568842403484748291294328291883054863341162818014047000288638938328742687590232051380061203047298748524888960168628581607489456521183002232297846366384190638931566915277198543664651214720103739623890094711177349126087146372632697334128531655375185107036355029064435241730430339393328861211164905000864816864602777941450909208753087314995042752619525556803988571566560171465801623020363073160287812816221522878404119307141938119000582046518680676201077820473200490960050353740625611111192950668888637233342782512796575033781744651870788853109256055280445044483498250267652399609424815740087049169794787607189048632495025896940887032319862039550449351301004408161075975689946184153843552726471748532708174747850533527586559163924847038420589916614486617961955041926525503789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19983282948600379036115574562012578960117103496920309921633247015562311893460873180339360551571888045136012251717538164049584143540852164683713626037103824718826565339305612756371401392644064388087493751846057578710516195459084780064368622991992127415881092640009981663128839754509171594247042497921797456663287384751601692513158873802759569848931194120744450315621885442139438756095477691887009735700211852197574767172018851531138594232833056562477197148512345751973583299279409739267538813331282947451916185944547980452018001478114110102399533666295343394050747128261159514767155912732836901211084935304652844681157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21702874863757538665556986494382965656002735861145745197572438510549569588240878034585339723080182790537380163730380428544560765151290728332619002106540311293742264282452185122653642462456415135561718349807807985733591128900345071835179219925429605717302741873862123192063780648265733415138178077652457597672883761519196856048058952963392620034183802363770612909917981909076261385515470913564121223010430916818073149103061123052831653424181642930700944365128121824125700574619445880035675415509445166412727619636385310983753207123192858237545986695519838589932004070944459893692582381781675035292226903886556989005047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27509835849148472093335647185779946779972058765025776133838761535266164880202555787197404425582243426981728699705948639831242293335201675068510949265453234435685078181568493802272385447076573212770475465435739777908288677937495345124352976238968001029260182366481905819263388685274765266512950915060187635174601719711768311827890638185080001917467028192817465974708662952750346177268660533305830255459407389957157390462439856186591190069940546022623048705075152930340750596758189881441834082224782118997269969640182661923709673642481185728573397334883671332416788853010465524382999402376466935500226829701551362654141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19477868682386203057096924902919776932636001281725631835260798392371467038436329109144059401436800178819575329669126191896197530954130168235065094426814922482946629487522806654691855964623109782490981957659088518296319582963134883410553263673762844490910935185928091321393914214736183993992681143290798772981213877128170544683616230612975135774781235312331863809132815632360244660384351169207931785076702425432478352371183691012321523611394434520781514129188700773619769693919990434048142767826940677856474978495535070234011986407445081766862142655594927353615822281893324470243358552467691248284340556626497345874763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27292504529928060845602024455362056756732691446019705433639660598115900221545250098468419051980750282533745217127456721662484672686339239903358498075463139032397638296841044512183109523066989547635483902846381466758866010225510336223318745356463463551117598733044987200700847121119144469434685339266456991304693628327350255631061123988260342066522154126013191810769755049238839391371951255138502616044937070132872187625663525511170215820139915568695305544034350401238498154894027635900897470504606534001901551000038385905645693633685048916510219516522322782381790032952644463960130222145005241467556682581884972035537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24069363362984364774634302541960595036727297368736640754438098324046959763658295253713989057240218688508293502625062671052185086214224084503757979151970814046885159403851033771580666966269765423906410793739198950306253627921007074203235846232804576274446594672283407980192181941400957127987230221584999695212144183543855130642110498574501415293064954101446461184463241540226216790460608267022875316259819312783701452968851589930866006914002190245444490017086496399325724056400130145024373727760794546323314272758659299713062804812133977437960320184009099802420658438141490687956366767106566730400120802893099742088463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25662971036202005491355735114626953801860893156127728574638089613727345879748842324846347192097187903430187127761528316354679260697775622792872071880998992867383901936334621056500852232274490351442372967237761714737377857334399631287864956221346303336059831760285604979615240993353851178424391192317365476532492583698742401368610958858698173763884157751865176448591366245964131237470919263352406300218629433894158587868974770982604568039428761219523250791631712027531147196421082273910014847205672437045243723843596779897260730471778808291307326668821491360853340078872457582632365173901885426707231290362845264002617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25615014219044271478150487017533483812328736268873889539005751136008007172603233488378767441852349100448728942484954136884734874347722366191935770911488591636705130342486341158941879630509544380820297303466918159407169691722298791918408341129270355212170651933717026770708053197596285934227159372793376822067075805045619024220014364870309408807735014287472553897885839152589218894245347957878516908111240016377113141101506817864699650613274301692992561839189005702680443924420131423560526909887805320068355995274199715713127937102265635168346476614145468976771327978701399168361371653192267824236615732674613874444757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24401613302561383822611239051407111594162782972836808626587040934346948516383799725724795075977450126890152598263298854492033755519796928890440386300172075193425056695480746370387959898492314780209775643016688558890936027400044310194127881293828006341215149541873264181874491706706561879349898918231039987125345413416913904549464019385533573087881789202278769917448886834263534689823702989148728251018114797460160376743199479746648970631726414157520065379740579577450685692137574798809382196781017117838325434164740030934752966823685570789208228004086433262140160577067140570358496933630636370105142545546226498271211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20217710205382400485916453677472982464459924514871690342386227287351745504387030747664794906317641888987921258580203643581501937143930595826015527510113682356206634331899498657451000941635420264467078653808179767743223612902305929898893324847346064738743800040515708270343579615498780153977378660046932562059603324245721651468774633433522760126085572549418108710169439798587523829658366881483754111379959577076493512954119283341764763168034122794167948813248286922788574393155867829621380819225462261571349961571047784218400296480602134162493805616171125173547804820655964819020853549787187447442076571746254344991323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23659379505286906425630512249567186064832569093611687357799488525251329638174196726168815651078918703468669248237080158169713962997794165390553490669500980141165135045464122427746889907073904414780505718595518726616917276335760213846498405507890555223953120923183212094902482342434345751410896895789552344715077043932117211749039754370409881125694579885007665664068800639150747667383244829766909981384573600691066406768718355830438170701002044433699033303271924842710630956137754980088925289738824479505264831928343154087055988622126886012855505900260770444758806467277343654269785720573841338348672135744861509159849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27620373246361417004471056725170735480142816138267191825727446493446635370314192559268109583832607552784825551165757757858913646115272637636867727432595355996983813366552304466270839639366561802326418545912605328938987273080359076604281287553680428743560421022110660355169582233555742372545863791206450403146590786147655016276004568236284801751582887874116934688651966084560877078239840119597715468488753529652572438107523070305424276538318922208042973288708568444107585236002351820271522164070825462533513686561916866552078440191445068522630087263935546241642241313581938839770707413532473828772395916461910546798229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20847457611531851113793969078046433622852264206975170999769919182518141266615275170617823135800479628203413292257348746562198638744223363978532279802066407783978625359499789523366398148530144521743066555673043340010875379533763847498683302281462226433786699257026093957784118170866213140251504582315081147720401062076614536783954656358708360100159573533735043766690774092399147544562225121234980321636556905081934199613912453879817379816178743982201397972568508682119194051023325481509531283679444937741440115993498478883936243362990212020244413050214169170977912997778681790591699398880623188279801145623463182607537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21917684541702078149760963372770833436560114147093006311922545372352325068865846811870115437691749903914551080295234840077401200568522595405387271129699846537451285275910903127807362544110211424498579390656255282639671392232355686350150685879655903315278604358896166232549402975665071910451918600534986297223634693498805057195084061391980560887831587339050797846417214021317036486651985572597032613115382358091445071568412806257009086081772314442565737405806929694816727435601612271754205866541503999337952725029261078047214985089191657869132581475087489354510839731301729810000233571217974088319088444411373255176741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24294351279418509824781293539037476559635680596265369976956629315161665563626798601087438883547805229783852867809906163726861010293515493830518756830627484471706309204787216209774631762648762268628017469660558383599850081866740828922572692127653318449017220683386149133180696547050512686702670956470805668996510142790267133826716601676955654895579586235072929458081674936435043143182162485656955827411996666164039663698109390772154741429406195419847334300994924284064745513503525143573251517548861976446060599923531787433061426035479011117280779614169194293699693334819125133641263503341650201230348599043931812204553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24976880807558337497165897798685790756884536538274194185540306178417836458890596962604497543585699063821403802926222896177506463474000381167216513945809197725232129889552154891810141651985742954035306691586490118323402200188058914165944032361898245223443257340800237708279330591577466750685434748963920900274058620907675505044461915659369008919190831237595923595496463204925981073789868095823226631158860203940516248311086333527576191717280624311319982132664177067419809354418471805200511775636922669300179691690811583970605145532657998005242180162411400323630503362825629473954631240018090769884956992092853163465989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19302281708640787282825019953273321186132291769592461183502899375176548264088410599275171573926312835988789873828947767758089016824412226586955756552888160994078391976997398302401383282247990315400275222914021280021251803958631738826426054683965908128859452463441701390911716294729239163077450633870710186869109150887471786786298556159419922569245898472315897756996891858669197654942255644378006100723240708202640247436513683809409094039321114803631687870171636860049705095791471810330852634940836469970239763525372728085000345189053015037322156512229969663656243660288606397930680512205001304545392259315446221840787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29316931247654430482361556872068795625677269415392477261822236454359730743053467863981243189891728221128207382060487400266279307009041642581132151168719128937977778133449192376878330425205754357470756467755640290814965236464175550378500344584392688027344654878172850071271063327236611334036919787788853969954853430623160637481419417123298824953790897322378511308038512286564726370425168213205042337555087540597864349551355623371390061365884793367762962558203788920232835059104637266952871732691956594004175078168135999003414326606875872063548941615977425270034524418564361777804261750587649973946447736450637642184329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25754226535426269798137983156591343995894463222819757315412342775365099956408822492218088342984579490804416449486740134443274846976805317659245872778005093469994153790474902566582768319953877485813258061618092366277377020027697119479324829610792967251487214267239312044459643875888861384893711932326222437407440608263906909573564573624840124967524791267770290081233997480346977222215089048723684384242130514588605017666119948635024671702235653397437829424282046379555669030229868854519746948652729320494053614148002225415821629702509580859475895014025722583382961787599887990359518017953991550468319369682353158056519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26298880412054638497971525931172297427180874755872748843970657725927516158457985133009685145308717065989540208309813655713485223702623781094567824929639721449147632716922252964783062920373914167383168414920818885104919412313523116373728721531400935633347207193507040609199482638896069579881231404154813792237269972187269734985365347229925326854279044054332381643783810643830105568841023303083399548119081411424432796820455917543598290054271582044663879650067681744857121176076470543612400959721187273364176288979027004132993792485752065192906645160976149126273382483274449211113577586912998605637482252546685093137031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21197718656119679383133509769063087876125615650051094487607067924065243620060405561680551074313646157255590329611564320442681278923464419783967503231488867234611402237111358420019931123042349965259548716434914824127240030291829169706130063237455384314260806489180235869654251282427522665468368400548501628309826667820791616336424301537754447018707019957510717580510640434529227047695960982616931897272118577320316570551295188849360866686977083737200274846142803791961014702045548546501661462730718383526727563416739627958613149274628390090237279087179626121235218479610444084699046793350040634240550917419131038743271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21407369904504425831818713338996463304877708765781931550005026289925952537435687773800902425143434732243665464421929236080883139881446977970380502813116571404032831777949804746646408083571365203197634632806711536732699400420815505366047665098330502172914821515585443923327169952710685795272229455883676933412582330397316398046458600410455160705248636191817400074345231239819452524452670016553632552214130404623889130771483289792872384404729603883875292243649743692900863569404134391083902209505656746664699804376887736966456369420528077534622071450007921748277953230091135169209020831796246596991326599638222642963763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20190713564412234771996554809372387325183711609529767672939243360384319106388916793149148221466260416994319968704590762223750085567092545825390015295920773713562178945989097680218438835519227132650339292167888654291249659678435223659089734191537665049711046966102879799458245776606909297041629662756925300639295861341650508070570328313609468280443486070581945913269068018505583318512446048482057839111587653201467466700249597027819938981716181813858752190251598611505113989282412107364660992884111420855202744432709549271129423835050409838252400149419125847883574217524306833035759668134129435541370792620212611623667", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23182460780392986400798301175907079124146608739899194793205245338871504399316404674018683936201022530666086828579332150828204076830307658473579198417300148563694456901022282172279258861028903168810131145768599213068660444927862103801236312892949572719392291614375414981010647482211663330900380416981143898547557623279130480711198139588006126910645626985698954796329514551911869966654498786708657999793737021960586863449491521251869056279922626672959354681951951689776526891664080042273180730422157975600519813941193014140898889742501863081237925083278884450873120759159186137713029893484801257574581067741467353297253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21172670091226031252548016905937069344914165316453914408456098845242880713091891432293838756032661392952432131944719904302234155645896043555681792585516316624412318676397411427907210284131788933606476847137767260281061121760671205577299814074217057700976294043663796387798201822400611285081751556367738303229327367842647546619662615267924313360141467359529301286333084613548204487196736311317821301570676959474057903965020867488766608987876448550154442130551911791267012045471905043640829687633765801470179312876964924479647887253297247863689257543082605118524325896197263952474930329190100892406474166059157396238717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25236450425836176736006071156283629871431207646995467695359400016291524006889832844271174580809139554046615436158019247387302652988047414449031222254725190408982620882767960843916387133642105659077638792331845583890233520029161589543007546590933088347321906354153966322611402196100519168918062741062113434445073585276661843594361076264209716412858555378971425272923808766461136999048189371968481491678891661747666714959810789375228078348562342665748301301441407491277730460692877851895745147204704375509506354080790448518118606371484429040968684413834386392163518533410079983288003093339181828031387328837841985536799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27750631485450216573569947432361775015942441770006586488226225257157097473490550548573764872978704637452543838143507845017694152031347006422824865381290254916968116895171771271355175591648914584153074304492233332618205157413604549347952196181412898014829800930665031676917288055802576085829403899343535191982496391712485811002554650136992226529022746735474207248942619502569314800512938645833451765448589504143466907587157764382492796081484492768175990535283372127788569873049302220066832151638495702508730188348154093493603327927587870075227979202768773379467007153226201445850425174646065773024258980525908674087513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26050756522783646901348370270429225068906680674681571814841525793384846781803351167635315584661330498166626541824295154132785734654127971201834753119044214371709326647722677776784152449428029656477355389441426365409790606284823745197025885337671630349975999386476597016910974135746829790342162457616616399063047412142241883441692783138659975555798158224131228461995981644942267622009546538408945309236411491190657421405410169636713963738050288895219665372094122054859073495291502973646079597028511342067799727809240458946450835242887163491981704814331537784864594421976465742478801729542711069970670250700571064938261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26251872128078359902949222219965214143924330971816252378522541388176856073864589396355130715510491750051508643071001757259184726766705002811745014959008579182510924779141740616470043981719452681635533820657022607409283113733027672471650728440360917296334426981538413262924859011723721888543219120594142289712778560780872831281102077559088989115878364761058167355235765363094294354389846801994360650616849044409801892404068052000485729456782372188828473510386978576900950090965735081991478158017020196361811897217112262848260523762113623236912374316914092843425792361908040961386340414029744213782848318124365705999793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26312109026441495860168493236032155000790640280530714937804911710937804058373791901736012399332286407086133970488989562094378293769260248323301352135086109278005958463157242083464672442824044315847427829523734086577121657901735030039975226306318290495224041191015860516129551515393663357799828507154575247889890264593365215629718900754260960024822075413133137844545803980282422942287569458111030146641405969192106578873709401415042856682204728690979232504603870456547363859691172980459290431286197842902025046981168650457622584506601636192776494835736188664293865246215464496495529374547340573412410780361634119091011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20459007300367281106633028267848314637126631940132434928628231975119955454082745335104858562322922944448497386588177739791936067266602740964032555636673386535853397717204821905622314223305447034894123265256504399380227609235258136825719807563134283971797200824591341683765677428622477752560029620803754356169678630508223394200990009787549164714285614196011237316125025089716114492309436026966613593932974772978285656451571952347747857593900622410696524762774520050951346617406711169155775871357859106446276473898423915165470071340989598994347016092398784901979213645260960599437791187661336632392705027357212276212881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22488578699186174286365859014029368967650761860464459343037917057136030916789477655855133142449685351241297673451648814131177049447383824068614242497683425859210544210278415932573504425965172187035633451489150315765768521920815087794630303762097519909654995097529578526024678798851955139128897381173043742069649302759043832268131045757722636726007587040350918124441020210941978018639546496204733117519699537441627405793217277336503311875479462488243794266359949322048450381636468815485334875054638366155466914730883154267748413124985495106297642097969557715535237147105761898841548248224044822581144318491113797413709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21374523729498121071015486096629478261978420362884703971272019519859201648951608549515611592702143297418231874625927605505594658986406190668878710973639258173865553649279521202721017945435137440452776781267252865394088510520215180530162348962098694655620654223348167556585228194132650963315967127277198841775945294269637886161348521487518120370445483461617872418216587454611249618323240294566164140696135351892538590339145072071454971463825817929656800142597275785466801096602551010434972268021751402214573848740646032383358940472931872163833524296323623660025576213777054603825429157407923990916275187892891975694089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27521586396403079239752551219737831424385244088933154711069427085003239208186509895138072775041071856595213574526540769644243894799411669098771083918826292670420691303530001172653485276146292181146044622736293067078258342836064321252975334392095273564130731883912373973290658489644672084300488833216671950102382892536674235304687581322126475224365634989222340075755076837810258659278870187361319937570641732535073178781754744471472614382458701416265314263076256784499919230842670236723188726839008920589565770261404729279379828848136139692751710287984750762998721539861679232246139133271858405824277879666198510592123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22145792840467047508552394154861973975054103526493399516118142244780245948937332566775263581247530943345783461999905320150634665956799236729218972468807055099084240873799944263476783970668059845621413412664689318248061653295899321402133541578196480002912573913131479298026638500365151496782264881982834506221340642218479461243247198934914044981190911749882728196997501988447719092505183008249620457211710803416019974509571648442660180582843852742692565271266344383338177349315655282221143254278895581762691945491384689000405154152725448152995932498934545179247564455095274631334123419415329266374543226243753970428839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26661039526502906805505141418157954098957926384074683879837674388965211028761264984657409056938173897766175830998874506256770498080972296234677003789814326528994332296237226413037877942446714046485685005973744672596555411475435002601658731807675756275518303324395125157134743706652524286004515224226965184250831069455828989135259509752128862943955053598779767437701461186927911200893695934750487224111611728627184014202964879462907128288173922900730654463370262307292583301790870427233517586324211936372151846132167138356981035223279734172743399873729978447137416582043252291979070302918789802298116986160949869096531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23103111690377388424125280669022396080822388578796694466124736848624635845760048350661186224905531024265069277627679122256989752216635483356401662382707605549133460326672446073547664632842418526713078038467907364280111785548492817416611059779741646293902367406419686528366084678587152039295553880189837900364827793560784353841372213577102386155641768717859851117285262444108231338795896047380027737461107561148835661033192168366885800471059257438996726039768592401179040445437953528302138334342459836236295377528534757592207398210982835990688445632052780017091930761021414419705423398930290286872291550449217075413207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30433413518123393123859008904123670558280049908412173307605163976340541430321150851600549204823240048553275049324800728963504323060637418235608954583157052477121009179089807987487587406917090776104713055860296447417799576559600946440814734346918898860274279582827978006186358973815897259245601459572171071075517557381552788909313755229142834545743625592526855659676287259460095307792671849809284297072319330785906647403416391146535232449658226215120706313136424256390947579265284396380772503537638410587386209638834543938775174221218159156413633036953105486057852494420251384939941402159722544616328001173354747765849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21161771788722093722807617473046758968780747799861370716915726130861387681170208461607828796980960222685994256454066271957401449452067385228983291010685724343882332093957953158577827534337551595464487581665088712986951527096675051931218069927274251902006933761929650324327590165419872149682944081041578425367053723368975688870552061299978686587227863967153414102787134930874116711507629770974894502430740764109612781862645869676788733060963047641720433436561827023831847895638808943905636494547106179413548620434445178563905269045212209645572055627499654348375036269825928274824915175694282093074614615541147792569917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18828442944927640287122340041103764382428708937589743901143838344009888845576600629860572714870984248737422296533661492247379503406084459380014922787237107980185921890353362799597994238827714683566784583378907887574711879417196671375281845257198634929606470405388235611267465122527894968729327394088034085955040228384695997644086449608842762386398670298081250763635844312012068425693794573117796505288968483312400783463089483491761649743583517003423482059783208018037701492709499723289401845392088832746250522838579644518948755722030566703647863672587796366548830253073673890761126970637008070641868016017119457569759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26900836364180675267294400633434523728430329255487418831796543072622836076683864677908497970413182274616022733855371882536668916791364299805747605248149128310373462913273538779448451220524709423263429691806320861536282837934195765682023059461293488627953678140083538469392720022204283310296445276610350069742211926044307482956440501488397099852935903489646753886648370941792142018154442397638395460446034668140157601528853196404591504261581979544266879876712468522255350597977079096583388590116965336154252384395914293700879765044231715711661965318901641189675102693211023461098174781722478056628963554596760462965609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19504770469013051769810413397398353221143667675193367775504771199939594510138534107096929993730245061303186383564176524425393507889925511380951123307104000350114578751110164972616593709296307808370406909794081398241943058468686778035942730077251350846525679284715353314697909420100719227340163831543171292040029089988764314086110032219770731280148029743259815857737106930105901280534771971441249321860962011482364200559320248882667507788358537071197243905965376491452265354034941591705618256655002590675221932825543434820244505383092437139888159663533761404480753676562383022179498354462190675155647444916735116513581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20499709913119215287835750259917334060649180545005630253105807207871885767939819157631125393952468784101049306221159519872155978469715697859198687965185546759040043888710359719463952938074517646283745643604312170163262439305876576724141140448380991669774219775283379878038043544003790549012170119404274146590638220070378953839975895157687588828868353749324460819904795966564570687368729974760613711821140798116550389407171017175640470363584197914065304574664811283848900355946709386724429846863567778116450607845974620745442765967298750853561081780205491930610260044135980025236028918282900165455632663600031316891503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21027730347499638687150214191146245572805951982716037653936261044197853345480725112368487414309821646319551154769812342779291291927747709979457575493801558931960001670340759817490351039124692496238577355718955867992647985457496966019920746808923686385109452802846735641505500649803649319506374046352587236128032496638242493005272724003979435842291201590401734561017300582569843674872179260072731493653096735822525900604666916187735137791939151719623375762168470346552423670892485732910161905468432403992320100659264977927359862122524014850078121197871784009690923790942552565326566538200198802746406915858160731541649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27076621421091176218291210448022198174472733858802858709927015635675189310596941419870695274539478198130777508290506383110536956643703579287064996378058442001418878691218497988350799554963476745661920838787904980682142801202700581430305724383133334218157967999197282520134609840675951891866376435886348025840084236876040849949716107526734971407524185842854678129965148905951168349694516698394398097676149721135883434756447981444011272685631924295928527643040399884211882229658783478158772188949389374313020409505390701532555908117397726332494219438673106810314158898407195432351795021107697281885150319539063611029889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26263416770878985908346863114004758867491534962340259572713882152355924203910962611972388046715016972965687227064338490991127006356103126324640468823976075803197281657575994154243850162450608001685070664819208467101827968357268941536753726230852679151277398297294231302935012793067568233162256019727602630502329135188915533227103837633342555836919501605910303319432030776022413256727883215518035365011809211573527205036504993208937467825126156706856723492221426311233856014484680748166666233017209029428668257387913874509389195234071522122934173765709461803701041729901815818183134734380815988075335187654656848873309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24747302023383595745903260671446006350470302944825850827243538146936420832950155945049989710707065850193826957940451586412470347645469537778616850665051039276101695980724985502428695949095574697445542544909536492287867967871705324544387417800768028047989173439791716607729185829304667446282466827673233913049430576500809418763748268605562840134615673037095621433849807381893920041929270221667161720896727026177600850529830004681671999938418094079987741035595867886131695666341385701030863677461042749403128273662192206251862725441737921586836950698080278757574087249204543034268666899737184249307036784508819334803589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21873800991494069696026139673115456313596790209572211907276128354137952909175965365220142115977289563152405696627240757018545745338805751746197812985592972472322836721141602428119441079830737161244443936052624270648160470433123841757841008743869732154633300429098483875084863167870499924593602569141896943267182620058564275734396298238702672887893750989286117199142355831199476940771198354111898041540585930846616922819809609005116226445051823692278836709181580530470156326949855816615400869023647889031041969453245594416676380544220106927296991844750856447332755227368626346077501453690806607537432112759846768638209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26234212981837133733773315392999855347355571903084074181935134243046594064442735898101900294413591894825424166577646181381790030690078333210466271445533778249364369882597531487555226514175325182682051175936243586359194382731698947313056911789156868816016370145400353960386793118127045802085384094539416921375563863125751699672742559719258771850305565124023243104785980038145298280117242947805263813970102664014180242822853165844039401628226679773915573170349238758526042362131873019001300946989708423828192348946675398549661045884437592066306263170191636695312070496649850266166713753878819199451979221128399685948879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20957431563658651212292721721650735668675472910609434542172649511710451670888517028735207882089869865994288474999195802896014283626985513819532477441570621530461808642684385311860454491741057741238154691168341222232892061702263863209898694473935428692628449838666201733494819037804457032095437139557237403476023077751660403329175830665573709054498339753718886848109469462870587858910494735830371742041654748668458257874922508454022989387417806385460257948973299315432731497474079536556961325761753069314775573646418497785149008454104626419753209304348973897874922730630901108290539803913242831543467362220877551558097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24269618638809699843459700569641307403116906110074469762397342285702593095494413915806974308450332071716779152865491334574877398701848741991126461355315269334997368509808162463627735181675883274847427828866692719797023449159821147277527149570391142940002484537935144385660918305444675939417139753443371772847249866265557079856658341956610808876169302837079521619172923747859371320682939671974110180094455655897348789267293155573139862956308512922687997176573446207200403727332828196945383080229190201004011071499659224561141516383385213629147329669322408562134615725260948710779628002399186733296618604545904794854371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28346775192781798236100317647938159189820548117671626578886221106922300143953751611231103454313285731996427110157922125324124710189487576573474804255060773512236277775994195939854813890783343988721626490182970485921557597884842750878870694609034426360822233114008670761844593245616169020737971420814716190489604788382169205281735153906742569260290874678898680334154139974797016143124483356240105248983773110442181849069182570062688507143302689071900162368789940833412240487118487534208164624447042579229593263704237914742298508255912051199778563176073775412653133480546351679318136782521958026210391342800333636129409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29934344708644661086641159839269522013585226684771593227096453326132756337511481169825969374928070590829265701483512146339933469317558465638977696273151943167082801358809103300661968880821303191611332624947211501929883658022578630762928219052122164705526025301004657770579395531520830268983831282137739347091939858316301273265639039068030131054753551190089552875497868178727448203141713865246863119034969592489458577556843997033082898105228383040362003872607081930695214229517914706602635112900666835277335129853775564623110115879769896690113903829708601815657952049747133395901189075608232899754912108407122108955507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24639393771879193274808050007838979381594545943263591674926401042613603684373152013861915137663233360101962576840722710752513727298152275457077889482817901574428990271324353908729392766022420294764219620146767377604210037719692144425769710573687145999104757303272752515761236303024141322019975104708624134307760769947491354361947025076995005372578171555905451451402117464668073206280666374441152514117939804373786284759825064775553950861473077280244035845707506080846616211567542941197870683348145087295164387478080652522385916043252492580554430681216747951550918139214634975772457972780441717321262429536052373923217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26376151021758678495549997872669597250111124576287514384229251456947468183360351522442282850995640369991990913425344853855984862341596462624585548968513239647255196350218066815735754348541369200922742166980847055783573398993261549660210385680153810027392599859499552901207255861490563410713289704195531381297308018151600776487280038904598752412809835582661040830560751891253547523889485800743451856531972838667586954059962142569128289651169384610434955288461555402369285456098476923353524554631934806466836810497850049968329287712069888881953079059713566699175816635379040200385857893954896094062834335242759433894797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31033588350057058116217885855073271473008031686116842305431966733200375821921525686003499815177982832880368457136980037931414643162069180279328280668584757488674186474464628500288266544731446865428039330886584016622250909526399178204472874854166717218526471288021518438916266797685510305482546606213510551203850015920387874106802899602365100141605086243701411885503138678587700213291100586378094780091735162808884522157702650844922077011401941616071363888103131091477899264366818078876841163869489414649633486471394930868311327601350432629986304287733261108411437851608521519724687637825091020336192382322607569902423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28530896432785781350320155026001236086000884574593213854581298657634455461446317796496582396036913968065962855081796509693310790016342969992382479134146116745785817753867550553655793113141700664880816714656470868996668940622817235178107249162545103686344607664097466440949097312247363908318982578139260460500495686608291357825807853451980307824361583072941623212936988497518502640250991995433473826651831544690391438123232784628281545254475076802398326042999500550245527311524659804957422575579786206630505599410735496134552690846156914738556112299533931525513202651953119384241219590171942594492316658003153962928771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24480447709618016926355073672444683108737744786764972386990179192710687571379793491258016271068729406104161987744074369713678574515078916990257133940827887570986129599066609703289833896183535063296657238567033802942583640584236328561232800661843654302373355709607358276897065244339613361641707141326669102430632477986691296752053169783759128465372596398286028676742245959219952310974126873825546706354166788425856706823619593778807093170174255706659782514009746767128343178878160878680886514637838949132861586165906627503852697468083806763455505979480650160810231278975264046556979218919150663704253845737268632920999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20231326840067438064822991442254873649879592983410002744456250557540240187576987754820406949978735195109798952419860479327707144566213161609573209886808678474079541132177887054221122700432964555263405509237119895915296825289937966762771583647776491400631764992011088999058232868548276968156313934311892851145810464546082453883454166272285614909231941906221816909929036181119240860614142404264761341472607084290646104273011155763884594497460643095851413615418164238832710666126737393287808213039704182363463335906068465727602388217928471738091256032525830102264000708244969242725647885688312454890004653606355879614377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29992295738961113232939794175165175330439011477436262072204724122958138396059434180714718835705062306085209719385385082974223508272088282560773552601482856966110488123565366844046527486208002489564177264709804487394020044643644042359752465134421344848215673946454830022163594660623920775834015853494512878652302675964058840934756953637560595663053210347494995680079052992951563667459875778305564606412526710975340536338054936905105455203656148872365619942486132412818149894061986654754293249811606619526579430122716062015945484930571389618921373498058387785169416806181184035035368604348007247176694373497933106469367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25265080738509265665559823757619559174834610389405551587645861649416879226396409875484233159658792657050666724969725132767973267172479196683165965886199492480269041896649924349171577933328303309588192758902114323384114694945234989358934952426685504846129471581000029247749929428656029254418095178061029409442741015392473207128800924172811791967233116404753907386033775205364428574023633880496535248921306746708762415904226774581960525353428986037663473107880327500692568325497956005431242703279010051407331224680758705380101258471399654098475355307021848478967098392053771054345188431553181650877350483070303692633469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24747076786351431327416818228293602828046339521542543730424474497456865566359298022610424202991234519062237266273101543098039524289089209587962392431673779257977850996959956090028565256752082945005984515710460851149004296569059274440437559957029032905957323281442983444238999086020565625013086598296715458001362664052020882257131926303227679818996830712064037179506222275825605338745775923144017318248776593706649090912761928011807295229716086855397222181162008224097379429650173076901364276123866873273647470401677900811624509988344803481813242624494581029486964103137127295580202773731452459209995814359684883798601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21796011253014985535158795476015690802825337573322179792774565140208786905759597542314708669523730284517999890636707049722517189054996995801943216993241668862306883706879240910695187815900164441633217043239331348868806192991494490710563609373904624978903003498772615468646909822541977926186867613374092136408727179786156504071941409935134449651610282957195269557364136482195086235282213401870092870557091723295413709775865585728856661339820063476133588452241326326809260552402509890119890840362401709553230326221373817114524313394593143065481923731759052681874374252891781891586357415981978089229115335262070190730011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23475887883173209346905990854949944373139688026351986902211849489180648929598331627571020219587293171013318455665913042955299427565028588978919518226578570654007042647737503921671748963043410553532822114013281051484700255673247495220339126071447292534268805072141689680278791087131366913050647891563045324104298982234123129903764900497192216880822730522331784028647166054606290730427294475319927737520290502412799270720996556311088923919750505024964668326980117349943822938623624932501302781806645269919533607757624036776802042416219142434458572266443190263090474035379450944203451783402954733562273035026578086001729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21393314341405149917441643839015468854991225033312403190822913203325196062076925900796375179254049404469954419817245618975520255696794240110821943822187050891047125229698536370768390187340737073395794536585827920168922900146229530483448518565889949135650672937653813358946386405618808776774864531948665637429641459528701816070494086800563822829697959289508529794405387623160006627642894496282496085116599344998861082529772314150976206836486398000085262937826326277738105001561533550527456861510923018705373209156848246668026630258124722373167592255391913233374094879091521872979234805400279009045849859743128579349709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22760605631487278403351436004828066427955144964783557736204763877524295795831189826241290136304613585014682558991964400653332642862489040688938680712290283676264895714309666273591601400377133095663805639337895154291975576022680451107859203397107894450993885612215383820288304935226197026813906746162854258503893656389858521769369884973261131583633892094277590697079449457201239425871970291196919986906295856078643304715644866812376141226639817749862106199873515487802918636011484630050623373449067057800496615124279950119673470941698133596486483232848279746603056571036536115284517667210155412666609306203211271958707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22237570370974011774001827969632930062198196671578328566171488707015097902130356285117517698357445560262257501651387693610302083840857568115384848304521047033961166009638512259475311015791965391502311699220960973309722616183799661696017224830907229053050369242994691893484744695495721399222602728943489842244466036275331041104225419398910662253390875068464715569347004706662642240326005515869159218150877148623735818795597401192022264060123960844375342666784147042343548261454989528408108142012174510286827209586672645326087961674060261812662496599408710890381755195271620864424339296700670010238505475064425417288123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23541390491110775300586508125777764149200410894194119905944048950477378290145274977471761249698974934855233802778006093271099305097453077744016944413807430512634342333825762645853077033169365022091158872760161382224393187660478103670649390819718893780686413554677268196231229251478369801211199302284312691309746855567107018175362100553009355319933843787359487207964382182267232057207280828121958053034714294613817833838253249046304889784519869668657511025254186220891571762009159741081004066844412466946556108536160511150620503178251075119392394660971041372421991910443611759234098082156197663174776600183607026866549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25566609513877408836643269473500504694599908388252430857544371883485263173251159309495884614518359070684022010747606937154719993501236370991966287772893883590289154233863436429553790261718625202190984746561188165935855576285713181115802233075975908965769343682908984721621323885611364147889202988080154538278107043906911725104919216523074468651718026378773066442830804877529995607295174800371873416545637557046989698111424417163404567609942175734696789091176812614783994165826798814060055112996970826833330316938965246939176432097616827774472107371689710687667497474958940383330274279190037895977380770393247717652947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25617722385688839102329818177503473161614859152716519652368361980378699198680609174008899130193804434596061590459036864153095883578829189955009956948036690745042230442438302585854119733729022077754642697794094740718495897745118365773082047569698354941331582629900807205820658024385827402944294352577272277088874084680319428154101812119302927963330037205998496839447418330695747794065367056865853823490947915203498714461873190099601044000613381493448781414403850234377047388614453498433995364758182648510459524580982851591338039435380040266133390295193455089675766086498060599163500166660619723085909800130709563016863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21170447791322524386505805141293828815978345050555275987233732234426088200987924951824872008976530683160791009526350610747409616949203563437998387976170027921482892150712808679877562469967041317520137072873951148297934133755312639939293807947127164107618500914372909670328866782061709750862524161317921255433058972604369734796007230696388666995990718488991087561799996178788284282165445990350275598784051088089348767649313233515272485301041835696406238627247185030936293243110925230987387200469834080707508129696572926402631205020487934620815909497922467984929835850492247295694149551396233806280121767560050294741157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20035559099866036380219669167993312005563028981512281702695235761492822915628602806866136645067231097132406267300311076288160524558345041472704951064973354044570393591780496651066654027294709333988333602042937882081779222964026749592011975674507995411457406108967897704255528493182733096120635253365571084870593408370436416045227526804615479628986181955588040512288521615996552849086305875953613203177066424554697111316390770584154319137164279325467663688833622823168993061819776105743837318919219068419458030436806504464380645289600522869887743049661942227065390493017732046967914339711548745415568322881429006177873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23114173991729166218144737014203053707506417821577828314482394682945460573441826778104550540402818608065452507746250267944967339439685357774757699264038135538683479849882897610515953125088665452811254914070197890125708147022301812446229317985596745633780547854217066964799161751727531830853946426750126380687998237096934867205673172119660722358345222919068124700087561682336493996135442484673291732802093374850044176132464348440012865949184262530017585051634325917187205633183901061857686909091155554601010610372419204441039940773792770891511840448617656159873194066157334634034605056320962409159809973663918492986369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24306346500294779943404093614545716061759529534630581039754624441667175406167534386382448358674566725376405236348961984468793502599286004012629010969466838002145951590966537544119485483411699477691413012829894443032760940012784022010161015913006698620122633788018567960873066215593404227608876805938181169850133872295110648686649434031946113520053780447549263021591704656699399918553449621263049390403823419862118398186948059473461702902076152258319842402225688248436234270787278109016642378839967288559466023833938553015001409935580199939298998523076534613655087523482496692524798693446464003455890682135587301603219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26969998150071781851433870927766281704410040040709857366296172161039494980809775871159837885003567561786962892719007788381397001646021784849195862301132027966395087063691526396443619873193954920673514042648797161622400452344432866399335054169798775331282201621747984482929944190228289375607906855399876461313770004293008950727767282446543255324208836122889713400251672303977880729807620148525007324863117496491095084000010560859820280139878293335869375413685968181636415063619833084653590570312109467052027060512627003525852790427552457230641507427339227788828262383753237607284055867696507398950059763027476600467857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24656527269125039226914232866849993562205647412085611133384268683222477955303822293619991508724104118144870457071733301145103592218419580900202003728669106119964955879963231361872637115294584474790277857215186513479180353296573923821444497247145417062512810699735871133675426541059828929966170916079376877454756010230519114297117337891386731922615115899583748254108567028998658784052739073866994318901055273874885068226054204267247126722169766299802447182479648484775453111006414122075614849521546767663341416290425864354754787163968630705894343284977716802855717345536583503983424901145668582346118927367760817404579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23451864873634537789367893422969603393899048378761827649992374513080359706510951534990470152265730975084655444071898516038488411215940807591507307423577480119606192029412663972550363663886673180385064520024916531619647275332513437363564526922544481274870338304555402540439053363799862073944046298218352995216383477365223207946692111643210339512174483777880696659515346200167532814719084645596563405930967564352882578385750705405537697062121299522945226021055617412790550589604885194579634219677860685848936166010635641540465322793506237691438046354725840919531130383131120170147921459432416984437188910609542500606607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23637069128440646314844633468656031237621200070093568076585883471240615652340203490196938663990871016253663429963380964351110985965311707060582305645267259810114996427334747082674326300483722010764216210808767998609477126936859953947255922651905101334712741165205977157797270477519715303343551998847836137711834494122178653960739747712198166530802850404833279834300043093310805062012335906855828035533610058686688184383906302782470187391767356711187159058973422201850649347875221293928590641715641310687469221767000338277989863285983964794171977890471151167039552816375988592625263630639386598972397052241054251188947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28351991436164478735883827274853423839692308607502493547330991955789759278861269162544648356411517420304253290538660036182028984731151536412142144339696651530304309995491768431756722698616999228535093717123639273947490385690516430456795208148530352476563929188795705578778023881919094075686723608694636545219503141063726538206970095120611982375174354625570925123227338169587669220929863200425602761540305025655691278849432033132451387104108247312679172514877010259092329931533994144472409176303882034864872089879583472562275681435992287356103303213533212714799387879516249593664704597138432523944599161666541306699611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26050044699897681214586403888464633186454373509267149052974924182115815590391562669230209865247020820779627954824626428343626126053636573961757726414275733595501156250061362159244192260811053115031025528760822702769228816979255202956950196077614394141656015165884766818907880041400026725792748924334707037607059048186348479167431159140800700536678975773793198898011773077365196716419912476649025949678188051261749944072060504113828557291529678504308993065774218013886783823769944208472146450187873116446604316393143629284637734952532476968489979757762104725240370307780178766751007480502838458984611369008426368310429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23545272388418115666952186482557800124925287710060331503433824750736031139995158654236172127243455902481577658890999588736982527318886333841504887027929423360997650897355632033284526475914487738723920127208723740183328971865675571670721941956925071580070896035525936471057102213728015182310963958418634765639813544606274258503929277295775106708156043281845573354505883592612965781842325772711151316131711120212599144087595900168556159422375497630693000675356641133862583600422828961577793531155254600284827241792920752846391233566313621326945128182388212335097130808930231573653905921319336638595390059774281370285889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24596364133833498074797076789501594553142246283806483754397044186575794917171696626950595568563479282567639464449267331314932052286840515910435597887443668932753286224926517992518024947608609646840762294897486906065171698291189179431487197215142304416840812691196990724753559821095298146674801285967841552812632406407584793860345704257158435076970051603309523438809363542278786261460944345186747955575214889149695610964475232425151442568763728934857991889213941566695498324776025573735584301003109453342803083282939845410145843518212021047343477654519890336757345012680610431450038774997967700326893055969514869776183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22352920433829600589351484083911837799570123889721595937382489046746172822595849968042363241960581362600914564331295549663371496288679037958195752795819123177123838314494741415414074627228622238055841520826226693080900982387893368753831133893388794569295227427237034266770494515577470081054871279649033997609247633013608699556103143186063802891914818772381422091426564938307776440727382144138072420216425378013796203756258674680966553238507454307959530762501257385449109502889540803634036411721658253205553140391463560616949725004984409853587962910491919761950415728628159589606240804512559677314722637639484731925893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23595179464827964343600620408612781643715611301349184056389123216781303661967601477862457293241308714052080618473666258444543374964189230013246476072899616272809219325745643359964161222843914782158435821367636014039990797608969051987955699185775459686221297144109956645207295677847906815409320898933205195318259176875741326835204439710082456368534113815633797634194618045369925512198708455886877385152306094811546484877768295869380180475197746418974843775827052090283237839823216764627616029903291448155545009453447559390252472507533732057691184656269620893292146963001804996385355547448853664688514131016418878156379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23922886243377323289368034290859257415866768956801840627776449536693399769588549232261768200583642626988409154871971546624181390029298631550808825403261053437768047267384932764309880403213428179080072199016714749960689959381194284422565021308889222934999304185941974528818194152721417362919599087836536016918765352415844614368396291495203263327335906208354558731469540793775538270953074278694521419510818012775263933433878690814382879213136097877236233331633919509580014558354671326997767749679830212793253200085475524538452355180263424573112725747851525662839009502613022648923863339953697425992853747270545942876711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25631493661213261152024835404963424766231663237499228519458812397756056219301438583282160802975581335288648782382646800467876807142724483924013206260351924113707001207328965563547655190748910714856656849706917973139348965944483136480383765675522658213951919076041428361037251536118337755910955655175684901538940507498542468030968380711062501076130468030250942643068681402270574062045007102041469201790471616282805397824743637594848436627564903183929077048134734918486651915697941680545308479847986933142987968543505685897241195320068101010236806149814640538915597306535612444283796183921976583562496098258407926071693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27276655877409554117988122663533825928266324702537618588722292400520162589258384692109883695093927022645456355453761339390718905530467361067621139829284494756993952858521758487037842993506657756763248769757450681754401249721097058858306537879404317875211777076726104136891958233670773463229362707073469488763233691001832416599237315077432149225820861794861295821583247802855684227899007073532289249111329068436231735890911197865365395792946993798008139621053033597949518052617459989677811135299864300272661903167318542662703809851906402158622323663979270695867906031858851990800169436410659079972264259965717869509681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29256287359219355435082319525242168739068539545515085015519083222997351832226507989800242885979112443913935844944223004739623035261194525047290362290191741853414552927406285855371537367555822246437591399375139487723907894342125328805860461590400903615883855493101008455257903743098584666481146736218033826592139414760268265639673808455844429620044476533157992304941507441731444559329747219338349230755957324929778295278007067168107198449002651550303485151920311014431930213998274279104990366143877888479781185895425213020346303750303827155962221839095724994013158637133361577457316914390731450406727254474170752047467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22683777750520424899391476809632913003526333591368886850309205543966231016883763552657159473521680326428564295187525221941210927699008357758200509547872332610397506874508212712170398346753715844018119001439767163144571203012534937900934232087143699860777596513101113789188908563314262725076908975981678810685209970037653220634384927568519262412930526481024512590999443328762122242381659084952463039589692546377695916071506714077545323747706453624973464879818332577049243970437346322383200113367557512974415102278609578953870397998421796435481698020039246273481324576171584675226014706948231944511470058993951382698883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19275413559294965935970654186793416582001710767253314470834514801278960952282139849603020828663426000316020283539597430223692734632799919528269575560369588757809933432404539051288505333982859471488754535848451406522986736902557178249381737940203647514309485013123666837180285215781477735761504131053940858989337483253528363872610636894187240443788328771922627688141033539639525888574778442898995170706236719286965227341596672732957554206045737529372128442425846519146106861584849148577188745443507230570402876145990020498763464391197285906558454199874428853808096559707267750864568132893054123477055692126410266000677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20368015120561346696576671321416396837824935991881461863524405221537043002495717115161907014469797632137449811871782493113399305136973714195805178029356662149822223127969975645683037923006205365514223792037239869294096665097518320156325454083753164345064880520007964817941680818476497397271951322820089154203200876478771658110360334457958298092900334698982123450645078937297840825958666938332507330130380721191957766155209607033676795406866216456846898521486876858469858126116006203363833958516140133149602020011093477905678978680160304904397889743552029171211937246431521706790702145681310705406186223242615126065361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25349907664606787771658693803976759592542842569177525917766004630423300064051445295387637564841122154866184856433577165389514473043333645283931435300439452253464210325594767404949805959881412310144745374173193308861305393805597695761154760510369597555433850722391468721730795543764470995419897716428989097614831854609985568530430663850712146504063632003616654108752316833733648348654048362551018849705128598296450708900732128304334214041696917879498910382607761279287317514352208130086005644556347048176598090971609118274455240870486522625100307943556143476248964310076955579712307834951649502658424752261070317978503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28407069735795331635855753395873273011424045869496821742011146329906215028567416861884594270178978925661054083789723643828168136793367360814921999092348064897010745267807804411435378414727220392348273724231261872798076443028697420206487796408178144319067584868687551625351322043286172139169702833380575696151039081502598307303744321424269891616670101581689031163498627755757204366405735980431046504532726448582594249568420551967249375351689730918580251039289237996643764278843073315488012578174543363183944662071518018873313870716244093130431228634944967281929115984116497597877335251671787804846538579555039215027039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27920886164369207737679317900914306381132155994603463780642822770243748938505008197186908023952161360147401351109835451979173467606284080369818268807989375783640428801115084072601585914252930883789160017718638440405423302743150294264099360803351846246138735059813778833485491631331244214493153620699896766795053040875078049960238068150276000754624554963818977177938699437595097164428934587612442566866787694350769853883256204822963199140857415803653142278975639107632215488878085702997127173663115898499718317699020965790177537122422613027359571432804841336783795571965928451005460954414378771610996659077330710888433", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19026841446602987543327374513272809026043502075959220610222665548010778530521393306522301748077771355578407092083908906886596553235193189691694903641151564472550703680253544301233253392837548521323006227850574900402042549436323017089895725687608057146096876072314095243615846905089255847638371828493793166208621202335156618263984192088188738034570347087541160846880974692226567322788219937007081898293688306269325697483608579558386808813942061897572548106329383286189509459101907242549423240563069919312388328007104273468623777458825950256575550323969904822642472417483893359076787839920444572096528636227452668117373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22256773595090626514321818573491254245324673577381629843712595842950121658312057775127845903517830180221407360137113274305319291028538068889215326444923780570709586781470697072625463718239513874285897650409848336903908334472383770785670725077428147154017114764689142711082705200497467839504706845063527423361049316169301754663510012655043961579695262311561996232149335515050563225122421964911469636343939586357317757249058246273155958135739092698342775364545455371900053749837040139468716431284507414824435469792929251677473928433952588864068787270571139803408057936213827016283025429370036153125563770642309327059267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19442548138799942863430842904201726200322750189291021497330791036807056024903858820233797953336083599570009123363518795698072822175766336993382942851226803703999961028994454309889308052606479952627455500915004223137109827222099802587020719378392202325627141906388833213667119334947324347598023840141018443188382892714086988827150101963700602305016730262978068533128636113584148138541954445243470785804964121583464790547773417493550875626202281119542044199593205510809873097767941116511355122561531783772358231225275096434344667710856447836143984782182725036424686610267136484325703505226086678961824013322235140338093", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27681194615514796504341023638700728865206544099678709576632747455744542840584434802261062354639911920198541001961715455060072787747177013577913741848473673264209969906477414571281719579450255117697559792180131956590671795801305677929993483048947173191684516459912427786603717365283793255434391417264864571889937466172566460059255859118586503317807922876195728194491701232492224317579336023660936914495552514080946415747872644404598171788757066196653351596000406095659986716274505797106432523096557107334171440015899393114557145454104917312967000737426967489704932777324251201659712960664501801112198574892439369212233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22384925687809481554248528911919750441523579432202296467947437557525027113745899289107382438121490718925309485734775786876160288869150010669101470268118162942307348758564609875002618656084095746639562169665514874420934021290389098377007197989730182025194668629182595606095389658925564252256631254627892950124854017032998381237708333605854028523740629156485828403923142761435145819683417620928731852115723271264800103964634997699555844408075716269861897756082073717461502834814834458173062577300488462062842233033761627596079376736868948148081833121856783864564753840227635329040771605800814216015984389244360575821953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22639822863329201593749253346042681207091179901046977812431680549111222004870939299221256190234084242880441530068699724370347279604976374713258277491496610448634552802867811390069885151349317396372341096473557945248928188036773488238241169070361177052289296213738512054163652799406851080452379974428683719263447537006157701772189206960662604157381667939263055017965872946986182025022024251639149661108063933318104229114640345939732368250073408926374847663352244647307165376383554759924266506535779029059599091040835923770510417946966896513742643522524873520854808565012174021680129524978526943050378148423193333306859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26888728995492185567063636746848574305553527459926519284621147519037716706220539045712361663551215456776625964161082454205580589559964857103003973010273722584091956585233824514420478657033227536471474710519987297582931455847994102970822436549957012499977107936110592087951081037218497097734229521849340510131271168644740019420865943564914153323340042440974723084914929771148812527256807357925186445034196777213255950142836683139879011190983328268479365745655267670934235729412838983148144206408563980738021439121726980092411886636608770461026469842388385011138825464504853299556482294914269670462073146787221796916821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21792807191526278094530492792342697889919194096513289341078555882020935977336520584391805307686924868746599951444335767023291616348144563008291914976094662718817602565249913768849397902191260723842974941194214156415816048685425113400026816247263169551348883136469485868184218898373590907224029390919228498666620296785411565567383881666713927009140014199510399782974341172420686654128954001803698352072477603812099554753557892824137374342646644192341893002572471842028430385895214192497627668043820868622023676300369527277164174937594891426284177848591021582253899064282397503708199855910534497837710904941209698372627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19979421289379354951874208496683645944972021517577075292907197294687416681383966160932314447934084974881295474545604947005848951565780978622745248985436966284331901889077354340564201287968184948280514981615987101729928458465481662531778591509078704944901317226491873619212910201972372868042130593245534817813323569320264705542877858247255928189503975585104415123828588548001193846410691286178819310751438549559087627033616463950078870678115431742113776937167339468401185597140363947182175149947912808088370001317119886566697632746128225366690699878556229387563204223045984285663817735078701827572188761620775168997573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27897331982909996752192604057345649442737408340490719505098782320521654082364532947321370605896632715304823324772521495467274556483339313206237126559814859617850676801492677377330819345624328096199436395800221775856775735669166628012087841755078095310200098363015642895811653562636525419975112859351498119306052726679421979361531056424263411292330380486394510831134726860120334349480994630799406900135612622106535942550704493929029793265166556507017344200324925847470248363706118801340739964510405263142597765160646875130035959305738228667377871539846310766272964578039760187254695884727082941292716662208024115756083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26510464439111159985777366117889017843601155739906816081409864803686374197958945765095437327540734539940544731557325823584045080404379078491339145781246461447366874734141520771731644382231438520753035053381559516596993709419509661009802395695866337121700968178660697796427056900219023290527018177266640968065365200231457616935463037487497686513415460652941102783645889768861006810208230273228565787330530577470584094645375072438453130767946350851618677924324907172917583410084869486812818617130301865319421030919452157807308562875795740776274091196936768452186669186767278324633196514987878721575300570668556758287861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25755847921783146416962194155953252481935056677067425352408715287189452083213657408103641461565992553304132859104664501607990450126718341747265576956710780748021436849137145416068467285381643227378711111788048654369905067293641440801866139287919682773493194444093600389834712358517569062951130752696417338852587407811069247786996762670690475086065387416020298611448452867755365984593467867289642605202111398712129223375317371012486781031476721623358468829726860241438458428448423114449967668043049361409253817872608707062491215460728726545051695873194869450169043094079998123444049971347660526813491540075958821664769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23084926663492445135986613512629179380406546884213115396684409229413114926964234475138068146195054022971042243820333627296344786303456576801857973315409547426778526114133898691079011701789183507273402491855116831898047679726736632780373289277515750509496214393659345694311314503818532586326489936395690803391475965151306684524568142358812519504673666370620190209579901070913235444340443630151872635192227247892733173841540194333319269031392643819833088073722557519363921928373360186892771554126892510081960117293598219975808066174531380229633837281794987770991041682958282403560961824060448582214058147354681376840657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23681626111849050126861971185793911666826007738035111998109087671047338680047358716478130541021716483119001530577552358477879844994693773372105052670074544500035645102642020685642265482004332697627232077655707418262414514188139457072310523213278499594078136919000954724403009610224629876082921503390936428926022731823598312120190093340379495581377588259476848286245232155202564183287597101942622114871034022922675307262785981846732388645981638616719508679390749625378199796700489777004287841644653690839608980126760993902125562415911306047851630818118256567653324322673759581058172221082885258022234178981095700990653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22971501423827976812783844884666075737206151131279235239883465979591543310929198826262629185448982844978427604156034994857853581194575069972457176964487302887654089256653209112353892414224662363856288380343151717419678415556409018830997391088792730035264132275913265065170638541638588433345812420353444025029113613555779197791256117580833096994168630281181864472078585179751131085143794720925243617127492662770469305838187461463765557592648735726008219195102338421961628295050234155499201175782134459963294689008572644466027162995085128825713728458152888951006628496195909493819858594989451484635738768171581326902281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22367234303995244100777328098775528511120213280355863919421448054662625038681356683878132738162699883869831680825366408434082142397087820731843510055189090102293466873158653279856655572087794663121358962510181839798243819316745781897245330701845551749277330693068049961037426006011683949125807948455895971421238697688880178893644220001944359424164978485655472267385164941393676184275713821564921756187944672816324505234702835370798302403722078919368246164857731326842888192897851473225381966482704756511951476758124079995649438167250499256197957268300764488278269414800952926582491922508899142555604583720299169199239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24661383691888724782855698320586172560420226667940250846471038545936377993516081538223342836052326335323743310029148306269452109114632534016929484681922563621587147517355810085089655141947748344374135707501895838243551270273099693935575440377373965356037765473703858350686337067737422638172581085032676885342728410418073571193471484597586594662052875030282526256496583571337426319313515592088976418158990732420167882482046639161555325704369509897344470331637928509327273440284284811724164067954797006048597391644399223997374623827880517210031952719571409751389149734485612664212505354353057949636112273073025581747161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27550138615253817031448632899537288636037106718357037963168662138672728333594182672174759846922141910365776650063059904710230495309100864985661874891545456037662995602403931967736789813840019763670834793507143440751146572449351210958632394161075729546706019901169282515240916983406029482265693594281217142388848363255142985613048692607714871030894137084821661067283444142455639906422888853692627846400057295760297744204664545869202801159595121423993433210763930121440580845653843156262300227809989363618495738562692415145575681127189757938969301436500699608437723555372317702176588841996457020920132352476165430960089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19618792501766971205201540490411516480384486986718363938853842121911556792744536499766218639376646023764525364856851311795600283296908634182094406936012686238213097802084735704971286940359551500984430343100918657842427527467353284395782773195061729381831188987784923451616116983641465659234695979807088855747797501398617414809343004167066196932536473604195775626925210049408251401953143070359653789200335848800450965473739426657678945522010671282309311696976504371302322676363515221920903579335994081769029462879219680707090426753300457859765786821184186522374158445406084221596021902067102885844142297065171303810349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27947310750847457917979824710244957848698433155270262827904334301049340395700496287221939195384581197075570658454160483082437526699199852168751065902465682798319215667440646951641673178618990619071937525396051196185143955360398841095182283726844113464623748976026781753671289092655388990764474958055185540364155664972613984181395830235739608473322374135251412228138539638981499920668905584436997653182470543898205266002553694330646346030734985011645710262131366416387943234518753084425966101640599797970085542325432257645579365504029133214828695164762698051115458586873024861449967385388421924820901218424580120820371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24712022115773541287692809322152663035439478117138122282862934791724037905615626215867900554214924011893624422264130252849232650628537390675262395206761831423878167924782025741645416009983719568309127143701505555377111422538577261452278471673116836196973817060977806985092988978767794189656283719492355489283638189751507780052596409721062259017894217001988062845995011742265908392441354617549382784311849406802490930680193358037749296008102502603804985060143836520009018564912049938505438377786151865308494017990184473384000993163266093729426213751789502448982269354273888041422524690641458841884050565243835235148109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23397134216819649544855190489730605946719313383752783934909693972528957399882301007849593159169031623497539509176737051476775649184885018379792147121434342921729900472033197230327481690975696710776418945635511963097527621673826915775166549280869037539910599848406453118417425212836033598872435731172846775877902515331963536454894159623187655581734706310302851329927514005661469138464610104652877045865565677856148158630041519507109257383125090594147010225148172338007247778119255394733269500219908322067407949834796982751255854012616045428058310977275718094160994890832175375670406436999472898206655688398724378809611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25665832882762847484998980429515375725480108627906049465800470458515537799714000134230349044021145813674102397686869841828922858143401988454627430743708063126142863808758823590260459934226604679089831424802399096252472769719984942188617836969402302963855177027414889969951150756881789846874074870301006868024376007701163480476702059521328654737568500331692859839421972363432808282922813758401603685927768164701981461550099431421481023706165983081988151196330243110791950679460882874521375710552036586307832783569240331265860460949924082908486314542064099913400978958093287118057843922148094750471290239940351199017551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28478021442215903043815564575846911050097984453624519837945352623284448723465768676518780920846055623475278132162162707645239357290842775978959874201069546649982243529625942921180193825701413438114597555499340689314491650844889586295243174062137363035047390834258588478120618943600572908576038956120555698499257435731817863375469854723617388432125096036685803559797192045180012057345776619330655030830627290377898965004977484321754269375844194445397527626097153098151627300700453502655561279915596073495447414045915687527727556559139287899251181218641905095600928997719099711671250360983382389487688321369801776060593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16246998537857967761572490746468715342299449196400319182611916827939313760334966753810708484578365548140628247346385867452270000817706212476680520297389521476720512945796073320602313304946998151467303733491923959182243912617300136168971857920489574399214708656149697690389751554742763198665986240168204618317604850057963884616076652019298963225718830101804544536079706086974873351316728198742863178714656690943058832681333691020121041760270087250261885769341169496133565282418488336492536458148308083948876958742961023488389425354082160874342621505997719795728454986356627659971238337740177588814320600846792960287917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28775046242196290515744294926373649028157311783581635531802240139158778939144643094000036130953049908747345481985634886976116193223093783018246303931369215641378753019464628286268173317794459148138292798849541842251646130085388699331383260999846769583432148037028729130171194735281930827731056999755087866550978236487233700692824745598766115891952050476050530055056571118433833500865162030001762099728092218537093301708199628944342339115071131239800304413800628000311269935639787262713057097141812649817655226929723860293865526473469457540612403656013286079618279741574137414537620220020143347658681884069377838711323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23958314285857501620295267123272121809988577473675163510991384231338156858954701955289131979753772070472654599096566923252190825388556223511852593806844059360303233328728545897029922156026052864590862502595199875164847780458415641451818378208352193863760551522516510614044994307962386590703816597614294452798687631880239134236899448298566099469321454652999231002554666327243633054259894813092191770313200864436598003974122419834594894986169050848071629973451587962166851574891368590830262542215035060494614096674246613847558562297562880003474891803965745085332357029131572011045882916670213372669570197656167680383343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18566312287453229589962096616709047314224906617321774433083036324951122015034523833765182858473728313142282891455734848861403306136437162597515602872730846118842289466984434335863062660493349862427287864697030160868970351397817462150545572315305772056054594220085373603656766427728396655158649370305609800838797407410651178518361028357984951091925671203975051762547425352241967408812744100155774509154693798650414402677831032853353374607457447097662679570164566727498634656294143816046565830929596685833907283469216708815633675626157749227004271165608113376672328286736913654091349903864421243628604699371621338794151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25537820341059205963876271321597746217141009163716138257853337762185833990648926838737178304122230135750465075326276778214167539976414376929418071026483144917694163418598829871981403660266088344004512247751981639176578574322298281688170713702012410090420198655697787966562662729343153111948963533888496721971332854149544135299331760805778853302146030697210577644287665645423926078423350226683384961263665017420146889745390303368580398091216904518854670310421151449064841011539363285896905974061592303458832165601875787069199985776262791544376290067035277161928724584047628580168534111284016596141008349822351718992727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29897636408756631364046007553572497990307018648071127242724505194624507012679375530997593300540038977286566219477151382394915256708612888260218045367393301762155659710986115292915190683052706401919006233488262673624230731117402859604888422991334421452781613284600279071259907099984354558664015149026107791223290129631292847190155569444783275477290678883658853631341742269800844818699694592439490066155937779799899961297849219506631998685067459508363433671469304286545319102729436251054257016065274964681353109020544410613396718858516850122273752921386255085250695545214175251316982116712532253351564014599278078081683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21251986777472854486991222677777129948134774914525433188768791201088204278201756825807633239912069222921854414714086392759409513017543869216936185726851003270852739193740551808173063638454844130092571329997984835620738898601761440525251260690858316926808943538570345247715493759799794794795442766216575145937532945722077805399756749685051712123683473299079012204472313543665176863051790177146260735811749223748275434049552003556059914435298106443976267465347209087888158986434760830089952445152851185169553117565591996845034057964133334927132227940673863690900139585228405583901722629288210685219866788621921578599591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24148355872318548819959488985007384661518731944130089252216777868744204826233450792208108687569502068566988741584810791429870880386823727818611731225480535883067279409412026294922192858048864473311885663749946666384887053572119415451690131876879562513834987005849178274940175914457963459259571451293441928544213285457058989300604136330516921567261028571034023764157283678224299554440175290685642597583636383100233426082330801451318250384462509371338740929386523998770655911115736642495085312349938451788078381934492697181216357912573599138010532068674299599164471568183548149026592542948059325336990037346654616100013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16290966640752349255499982763673398813006957073861779805943817908673898388595615870372388421773427464179217849371987183111616691200722138893059491196177588684756433178642743583813661571400757808121709366335492478850082094051445333622918747001411151247901114876326572016971681296177093713894872773833023450753982044277864647142351892649594580287686267135083969660820111600149545987208496937050075475403234346118186625430956601879339642319076740621816369232459613855263519855149493150247102109608262900015294872921357278649963260248219718641865847068190258749550065406035583240737905383087454993711765693129654373567397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22123312577692952454504458164740783359002383841665983314768278561707228252708279595883319999987073065989897992698516352571902378104848700312861119885050010621160152347859776140070146189933195723208756861241417074217537165078051349192918078884655493937173029512815975753040215837081829859331622780766162034096025523976535371233273932129230256228995408715613872522623953067100146935829640123160827067174668402203972335146851060563087244540877970423723027769716333513885504278921644410797460362205203112359574772443888463156990147966383427951822011664972738047595087065829509315928625703617880224540530163344600353824771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17814551562804878288289852895889284702915597166834932396952589405997275755509569042481475930834398343906108243260749160718183276784985151742194419928673561883412605816412734019181657575306798299611037567417918093270960628791853385554500726097768863223854016655501392119997857419462434833957214419247221257557837567669426039233929237491660443041675188173034683201079416180117213561697742667014002480461641946792146022938896870707009628044917291345954932252092029048996504601583087377075897921004472994934843365316849493613441669365544350660943740612809226493442275209883203978039338191854103804448782440988876052945111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27938967361723307358966745342162958361775793100214398302997472106368041632899859592373724934029710145295567940581508875778482861824991204610788405860281928902642530917530097425861366773366788859875296065159166257088226460354084517232668871636474335443896415087509722661470013455337377782017645729364446140390222715086488331774321350390048920616398623931311887953587614393998976770633203377168157374301535674797149100170913991504588271909063104154044560981584516076936545503911899861534993504314692626279942781347247568330692832627148142457007601510834969823104129069096743949617401735760281061088463883110063552429693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21648446660153708901530838673163298975267449960204090705486078083277966222298304101628220314530662303090286718456837650150668224351431911722086093983618539949018656480048558009898466562466543730506461090478194519398957031998794708342753058269969345174598209084545476375861170552772520476859599333739452764320849750107398364265857321483712918062603953249488920954096180606643239753576903241825905127256982348062300269613143265072781217415204774258485772919722300013443424281863161205366640393697136444459140424155133185724951284937848679297244075843891649914182843190928500505924776290874014560413210916657605682712699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26595569530179466686278698290286969124494544565356246089831440223172036636727899749095537621679552117670877797788133159229710686542485020606885354055680857017102055197022486964548723633052650775927065125556500961266751706687226051726878395197151409429515189519235045870650280022520604585223724269312213216371901931811481006075796444245150616539232649521363678823039083218337749075344044152697622852344666346078684748012429420457520099671443684835526552667696132187920086672527426289501414491869676527004141850439894758276637512230909472004891546568366604407003796876701021678334050667152767377968251191201635308297213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28312416820326920920991494701532143761217969566145433143688090703792286062528191733694126190190969731941398960952081794758164246982786443801053634232756888790865805613309525721200223542032102316577566801790875384857729362821225268472033159331028366658166709666258039857189817637592187944079574070741312423828767302581771606535897159089667436032002518410798601345042601263996469907455550572416317260138902271712699071163785716349632643528329611847651326262575429960080611642716216340136232921456583369564295583606459128824964639045522403021980978451603136410781823672268838676025803212466238365774478655626228693956371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23727231181970790641945062650617454470719026027712191770930610556679636151988567471117847374042243603221406301347784409909599891646958963927995014491292737815847901785372390051757164438510169823860140916125917241670053236618308266584211536999707252422443014101727371848958517484406808105908904244058468088337254777170976506534479174863541348326617288094178546562352829746473401524964271260616654424698223077491328306325561667603682883296744764769309465838206320084207121674907954706486481456771304940218949012102024608403690815506330441130751644623724110947338499603038079541883727822946852855352102715041130160412499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23177098186994587799624842428099943512568148607749497085816813329843441507035998500317872998634971918061387210944969334442977174127103671096763525972013602003554120740388211962886456324501506330167782602395948759909405066323824066292769723399848892802503847578967094373192231897915252423648821059922991239679487033412143057541530503761790772614109799408704808230584799299918361628570549596359765605102343101639929898577336133210766616445037196555382577897255101301810043409018168478260052622142927359918380693175859171107062640977794615316127573773158839421306178459857563806556024930115969086421776093287839598261603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25795272773250608290941557576861075963322482054796600076155099582434862774387337578222720726390090174530225423393014316677946685305744424327320244759871537253703361435368721887457594984038860979211863258220224400697428416916585822021426724774172434699520274909137546414322386438570235893259246683799467424916018195472632707473983592424069677150491634821734804798095563365194769601459642683182503813726634769586062226817401632304894512339855081350263123718332999716295969170744159490795114205841796840074300084779746785432100203726278272334921688824112284073268036662232157114742959023864495244721879348803990604364591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28605587091092693849718680555840946293188215170776091565304500335568686636332489767439187494096120278485804193619547886510403605192943047907638738780283846401161686895155806902416233496670569177488591693782953088867186343954496133045269341515774427636792818020303243852144045387634649359905978088665616677402225609900980232281400113157709139014521418612147157842729359595940711398661494854755310384996798054755571595082460212101556831919975775488740203816423338124410699097569604075381344723686479617368521621797645930213364667931085102064026478294611521024082144518170579400073026349345388193979597296433169365731681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19998346929814332947159492950104932165954895498471110773814138260693067858141586878428122399405824351060577483430592131440415467904822602388160789437334675607206704234943794649270424019028362230934867807900070378514118343643852103804850489161855717491587848849489696284703435838390771207791272232776018478251954636422967466290962572121025416641574126541916544898969652919276578165836646609656370072679899967266453450657602811171440604287403775390204697982401576656760744962981445113321283035898894484675526685824700272236858077505914074457479558747944451617910814738700778764461539041651797342034067453707372318477699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18919619576191276784167182583249652018054474271121643165505142265024548112995610287956162558697651743269620727956153806724379142550989443449489154485523878496671341763183716924963779763950256873130427130180692554217101706358051428775803842012572004158547999359659054153286675359195868721162164402738583759559322988618299125972570833796046956168210713954440440675586357832231470634862238056833922689054384363893936284166285900563910572193650777023775417998326038672599730262740322575469549439318170381044717451907225491083315638135693103971954036963077840430562061479710765117050900123759320824856434057941317808499109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22789239066754095199724474511865014207312652525949170546611543362963974914754684601362387320379689591848479014262291052819848548886529795286314307850682532917744600750780940339089197612537698090246363429690959147149668366632419042913264105632822887076165097450310601686542908517728064218558025995323423546825957437236757058434486095936465347290774934264799254530290709746509558654206717646947408399772041557775925352255005725856816394484074272627648434703088395747435081049695558633739223551536909977556131110158721350624771013918112391822574476801719763748583937754993657936158076548622895448922698731515608101623021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18914565084544172762820161148612660907461941956462876080300725342628309617045771178289061917196559061956612164044657905239160777158934791576765257587791328015545096001934183781614306405663456915399425367013775446588157055837300313882831942636898087644052230775788453559156731788488183475189205867864638070755965980352310828939335616964187613434080306202663427618045240170684678191630817639001791041487915220246644039424877974693771654348924534944032523592377902810785095784025710416915763192202036426196510873476922376782600313672584251721251262990247684383753030043416970900950320390122909394448153281307690782137397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22555294052083867200174923832776427485065178013251010617436621619922146817198916527783884799598990375639885932997007435436543879734694244198784990901311326398842519590256677768185189186220972892160430106848593838458046224971770530348067247782621503122769551616090183948363466131124025119622340554202716191396560912157652355768701489892333624738693119527393288392519253147037775725073434692606754592482269114388639805549182620541548767862264805577540461952609232287031612033120987975043213325468892026245612353434824942755906423367062865156567542099590868745572588597739049104524763307427213117914772399291488650226807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26023265420671744688926491611542631190835539212732405653651922086177096751450686030268286402871363019014959973610167048521217220871621793004936677523183769389030547888067785994220580799169374118933216351977394759704237123369289280079333453790436901149836506687806563243922838927915798803214746475904569462058176223995692641901372388360526075290448982743058428885102412850213332183419016623108720009364457039272922501181800293115095260520972048068253590983355042168282499602983432323484224346832222637655481034054731926021348736957314902090624579270177572275804939244670388239808474894689231294848825977026879711531077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25717404593188664663418219873308028437441245511223650891522634421065402814569642427534197778122376449638805467989164909344069215968868012283254855047916281282783294206908837364893516337665598493525196162500635088280589900583158750206998949625676463070640355199494921349759129751637672050569320449785941311915224048448567004323130467255029656235886271581247961129388690309441878373576437619169157972711649845413387362384927675040774615108671868408163463781717047197148085419132794019043085094564270720150087589840149970455342154862696883602100991717906116484251792999731471814511331893899325923590579195349975239790443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22843342639455713726248590252896046585809505797434742810046602197747530814653762995274599729245744402231186749274348436827167668532620682293970883737064482602256170906410378310410668225283097847296511061664203676623229895118182964756883362461769918794437313736996185462425415456132084360440913632889469896588666224665304863018737244907241275156449074665929713792025996669239876757159106800577981599282452353485894850751741349757941679171247751443289875136595896275412981111497770879683954061052105065945576110797216537218166144556059198930075060575340603108339840552149879031167329611272532697745841243881137769532487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19740639984779861439988540571287303664698938320843180826215709196891616277726863086989082413447939771386885908477614727797000226208386780739226544796247711505237787517889167343692358097363611109061860973922124048538717638442037562693326773161971438927108951166232304013898456828105514966171730263533098216306404427849028910870314124921747662259494062837519159770511459203463094847824198157390524272208145687260800281263266261387867236811824710568034148818236792087887397248065149478879377201192571160441530880356531226268314190190389069813446839096159003823584660390916281271815398026878745575749850781690689148919081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24466333151498574752910688989196162441877442707923053710501152651462482681757160410712475596475864466811867490752782977056285764483787922319929439404439960727136695536992608898031709934240721210223221140804611936928587314799832439199126655059329376224031623096636789264919234463995060071909693802109424652896847935656925663355611991263160642525888230699551643945906963077681452700001807242608422939257103999682448085200559044176894365384730274531039427244673130655791162514008486417658734259473327021417200783038902823636065694204854044480001961676843071674434489170156817539047833677278922595353068009747124265626561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26337926636616078675505543925835044207028070404341137463769324519240996775998742208261061109076559699991572761362659195142487880391374256186306145751911019831833974085171485171713269918592336335846390105334658907373720830252271036361554594193294014629493124998695282952215974692226546236820461716162359512861873222240702877058852783202227086968050200825871528210992271419139240481340048107805930399340110305379770572677387011930253616759916622893955172100192169605375461501854226229914501816628462878029470984137138459486939410616633400125176963286686424976575766907905448874711624010007862197209287125348428953566873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24625470473098900197258324069353000541362332555191744701231229083750879201329013289159838482608167869485325723488383424498243247530170642217164950076873793219327351785904677776909522307642091917099677036558658036242043736828478415225309251503602709498590075073376146803003966840683222319479778912223054263780025625373253777307143723793840346644782307433948748551483765238297525917772294523127230684653658294209687447178106047751160167764468398958155666877410535155303386574900697181198569684050087622907420752765850808332181144527164530996635150709509525744460052981720434267231951755324884181969355151210036637120423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28044857546857629677725606695263752181916990095960573894006934310065014177888100723450601050496850323010679901451718548958265149244219675182766510924580509715158209881574839716893688581090720476524459734457846498812118922887776152978810792107152473533371237079616436240001290097067305339504763179711397026913544667355118845414432484472427523748512498666377124440540256205898778955832597049307501842827209115686033863180885063696441521631008658687627104242044129542480867133490077136381803748350356096319703044466785373742334169693863096344679648199856254163224466128277796316279471409497666556889711027058844782176727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19811043926679041818928235680851110097608226685974974529505051883140486692188457509759809119647412380094685034363049575328943767713177780422769779129638359547706958747705984368292081670285552527335750441020893955718266049645770161915717481998288914658163691019336948118170586741401104146384635592643307260555557966583255589880769067328880014440645185430463054442188467293554578655600180162807628762557013179566961187134842215225365637555153886845644157775203605353555006604584303793291280137907939162951883525007778822186347634166270135602297353589581174203020737950682364591310549237133891206655892848445902736489453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22915324996910679986047085252746662584815107129179823850345180910421376744336283737958298633185659185377077534926653773803229516469544609652750222427866262434023609561013703673725557050924954449384246178108633645145128094563597680893112237536502414870966121323639038759325289417430202440591967940716682689205916097953910460118042685790960189732005206903097814145664142800235925539809009577246725799609827585173618566022867457188528297490716092061191418847081395413534478836412657373418713625432563518002145103852998394055997454238110056743033796861840309551619241988923736647179248565554038118935413227684580493520521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23490260923714510464362141919887002628225335881547868231015256233887297177476089745710594201350075603417682589182883544198228453853064020004131751439352811668676266615179374539959625426268590683113918074653117256454227852106303878050461541238239108029282986513120706365109990041962623589501969154822450576188366916637764765943754512160331921489596100118256811026589358737794248225675733226087761628081220121486219472184774427861145736576981615510658335705499745898696022061286799395395365322973407428875627254839970019280112515677744958007976127647480563031985896778474432647795533956903203118544012372772704025683593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21544981593225399371951284570082266072852108529504928633486660220641699830852739011080062217616531046316992310011926226207270826421629866202200909472879908063999563850696724140997621649113575500295968827742764594559784787452563024675609806239282254640543433701177986085192157485625361678233618554044891283547491857213659714957062744512923573012311525998004869179467146654540467927465993653747311717789743359618472892237157782348557793887962730961307302513531033834044213771881689573537467817074459176178739423635687281933003272752061938555878263589500561974898178023139510388782046175799264199043330005831407602997953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24787694433823769646750040312870377991152213122781238661954196341519990250501763526329985181779251435644487132192166452168360425145388256423267186783887683823360597266605803469404822496664651914631180756707510345264561356531553836118064770579248900343846480559835110549696415865967124251772326986017918019348104356990833760056084535084839976204945414843289414801401778637625985730907149074718260818543040025636193410828980427344603994002221580437094800453594847306876013342295621024305790991876501307522824214564580252113427996690211007409858961675645441484511265316048517801520083622633581626457295563800686122945067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21842269389669090992034142135926094130756775889886252835443369736383002233169972794839801628874742893315669628021118130090034806131345209957652453965443231110666739541150901648150868112618194355312530217431621730643462891710934145758740724041559737913310706292334372520745902490337029351613460443949568217485131312929335053696312264577043114953771158606807046639983214140166026446747448226566673441873644846069313083395135947382750652808316750883549231946913921978813211201027760387832876208232156034069242740410259353233865586877165929166929681658307163554297395784896607061832606036476913676338003512528028719956339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28760974281814928245941287927728170940394751688241495093879912326740437474593010485966041140751987345152878474419128224618862354459246501028394243711675316948105233925487766721941270945177817900887138793704607020073509044467130110457952815570189708065567566775539214607945784355624713314681673709583171994336080764185844175287528511841069808022776691036112617942416280352104336667808751554089575241942073671712204441482727143294742123239967770031442591628520086012990519758156457003487608432882351950310067766615977948032512358281517036468876957900312319762273612571133491230486277020746205753900551080275871978519791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24371283865694262647330944631774091044562696397384485860270769564354723062510635359185642592649127882807126890882795226614018486442916193073844669839053403940819005135608202727204678955851125453782046913750979693485180601208733281385770090134573550776533427399682756552920799364582165746682341789579229743724239038816669245788067879803231146742359621505820653240001705513357751069122633995600579865335990723749710090735235104433456080972254051264695785381236283521740616812965214905321936927069448894517259046465010021561332320521096436088492809081893140451575902527106851572393257876176183924454484071347110861089529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22481001302509375059560466845963756610855756165986043866759748467240333164510843842350609264418532989581887149561309286579893334377578906328606210154609214660452578669035114868032114407174186306475807235123476354537429707315844283932769012743770227674912322248481466754279244019776669885424077718810905943925680191472830311585632653585521189365257674613457057539622432431336020776328021137319930512311944717872750843647025680167184969291014591328148576133467283567730607256485340531517713952947128117511688086969188049893913963701175365294452340213032806637782142492903726101065572768424268524010637545874132845138743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25401037931997238187014036792612674457783583200461693115281560842762052784835798570198847959523778418815381131065610306438851668023775762302728204604882984900901796648116801313062623894869858610548410769442470566648915850094617235171417748516809322749401157792766231491738327755422919139587615192304662026675874405239395886967185298591641840056523248434520686696618459865705072756522667372241867247922926382667492164595407393544361681629493792209211396845213484271907783275223447994965774567499296084419653832620734551004546160148701329138978601011036979063107652498529979113926952083641600379165472152578008863934193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27681210281654397939138489493910229617388717669467690863391951116091773565017160999783723715287382519959556927318266852669073415748899688332290884431502558897357447718375119942080162003891125940479726095953205548286878995354907078466187028600336857719235731250011077086707606678618912582178813391555311668865161548165729793179557355150573947005942077706497274547848352540737108213596915474219589019155749751497528104536689684557030412539016818976948731543593207892031114154104445826680320663381762479824616014289097396836035212254811305407893199264941385806001763741953058467106563391409455934225282537499869068873607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27614521280607201665880000179913391395782245099130489337566477539630369850420940950958792016910264855264982819219859240387705112169457164656709454866450740348848255314872218199298495937049959027608183726473978898008807258758187407905835469368920389745881019825631058131562103326359821602143011103006276132913333398089061051024198303691572479870826042032093171675567696678355853464231554828612057275350576823162001602333827228741414114040800413936955123884468479386258936492011367474946947046155951913782872087141583732609420350751670804222029083422334542860942795645445245539915591438708150875352507556716215740445617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24471455631316267443908826527484493696052585309752797787284992130799922069632291141548301666655881049759381307085944893932280188343810123997481420367074846865872358344666508897735773124557236789154072958298799169412227278111653212597008519315732761594147991699621354832671239287854224713017520414481772437487936215241744910467942645581201476728711809232391013441322882620267266565302308215999978692154449001309320185395402917271571092397036811179078658822893035543888634904274903042226888483930123968803140444844497418173265635041147782461638118874192045238719684582099923923161862199718530484866520698414057107855307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24691087573943728944031079846736307466599359749620468675165213125722022549194474771472000274319287845035861409293547444479145547290681722896918663970313907376132296987656953264235818819188596306836180001596286558652197229060305176329960593919308181135006378671821080978318448364001561914855833391030865643204895321307785323379707010527522410189974746465474417942204408832236499983977710101486998999962857928012734843643715885159644784968092384555797120202704868287292704547427008512845931722875738155865637802698043606526146246059405468837764078197411834250587963271398233367229557461649611018462165488510089855338139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23722376359545588312280225999229083900048475475745883214394394450859122288412060040783952466303932365526916474246100813360004927661632101927987015992902003660665121554788268181658518046332103022843919020413466505359744262088433128506037964063359915946781957166981532741699164474303144642719279068435241347440924717790163320809501523775277510394246414008837858729076640646075913086222772384101372956253063938795444862515432671260250404787032160542114479116705072056598206391128721439138273416032543831047668540924971273369150804433613970699530760549930180240429028711490509002250252947221640607746474101356761700357447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27808439382207912205082054894124518233260092940297830342035731702663564248064466860872182914971725559304320851124534236773310771313059320254333003551284661085012154062425941193825719032482730071900074191464472496950545601029487541285315335221396989711082614398974951661402472530293454519226354201086908813926282608339793505069619207820205334716007422735182126106555395845334044078716120641998435884994871846909659279544861255226095844915490002904287736079919989846410093107075113517150541599718286325452728951105923567148862338202005757913962973216831532171208857544086421949994533347569848920742492202894928009494587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16237085714641245895398928197843356333838413202847704100779435634437513751458820939988470318694832636658014758715042129553624415097184742360103517486601950229839978708161297794091670555552011048193100776949797391287395642501594919384621139306633274347326139829213421239522122721374043243701413320214560616570758337131152871838642220298347883097653245139327765800644058293050480347670661659848673491661517563349689122537394433790158380053052245125256172354968140655305557676993878195309690063355907198760815393122576418666267149448417819944628309612257185451995195952392274895266174944632860165863364300063191234014947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16295106550698501119369148676070708002899053834156323783013674308648565700358741657119471694713011810869825079477258859884459783646974312004195538256617949250125756798831108901055675483569769353378663451602561000363458539599387307146425295255310810431568884892395002168452621490986148461315879147109083361068086104413655519115290919096335834808763948271032212638814256190867018731547312919657225823286209083334742463816345853699238774510336036512686968133702582344893244488567439203244094739863577594444655454993502619439587359063607980331631859842708244182214071407443215191854361637339403258347315910983688412865599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16328237822080710487236939031380324321166340506878995239156164632397602820302799532054165868185519960828132038568282727971475037889739889629461555618723204825988962110695730126250222005724951674699489464839317107137931807287611850977523003063546839451895187658722516326141094723142164563158710707854160632864858445518998513411046500522956518935152825961372424253999216117838597366176617254579575773397145644847623837619233109946077086004567205783667450717593131777141827397672917165685025970141144651254820108911781100818298984898264529201942774369964884967641298203221519712646567247018366358036888563495670705152423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16235694561125095177519696708909740235254020230760879688861160588379600354634075270831293567172652765359665941469487339163668744564793946074740790223070754618065840893679687895512143945042510602226968269773945520584267502243651835299269113348742910422804341962901028202301004131566383364623610927968667167042303174737121427568905557190820053184508535395318696906925875329588027682296314328800068986100864264350115851113783871827438257095910770925856418036601228672174411834524573136520727825546347381591358596716602802945236073004969328113156984191423955668697616051577081170437235974674513801370174387584779032898129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23640816506930685891308885654136531726569574140682662721461360347633479324297631030475812806453847750320261840869715838672504652713179704551536721939944504425653345969156498133576421366961957701892385117302414348920786573461529420370686978300465532311690999439570343368870047170337857512144983591538893598759735865905054471525002553966506805730726755669370659129726540276290726584762364654613704914592789876908846821994315312590278956153663440876353124982705135309595362812432572379678944184234372605155663513664480040225405200417680394766272980400149485086830270198358668727199753458116115696022072484514170187516007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16836411236399826737070889633955548472426669965354417038509927773969618440668673794064054888885856520823602727980037011319031237791935520672896208491668141221382158900638601511464039814958524723633225926398998358088163661353476293705725742002044980516907384162909923234612317180266471761300835281531182373321233520703990691706966921171884294593621602013388666863152654469253536792860424445338152543863915653595011340197177631019577943251007902530705054251878719574785200153108999159699924418635141559856649456479838792071166260691542366604880753910030294726871090526893936383641032974619926908768004614352996776499899", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17858165520834244976872598305355376564252678255110329329088771522128759600937446787403433321582987830467534884976102597116251821409850624978156342166455974629359814382867957639436735935221449073505318859959782939198998081746911795504162255214112024051662266346949601113791005606619419208476249867383448249535131495776968558726844637275645018228675169080981743392256189879421164505197204267006673491158293143423931869309114547980403352125784841117184893012677231693157989884177262398339481289648711620156948803278521827187285317490849600397838482560108877004146954398985728912200378592494008445365119121375337059795657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23073676059644843242438735162697555052368449646494601203646022149187039315675646642653706480640647437028492718326075253097560859618271945594856132020998224387965295154154538371116320118133037061428021455916224877629045070663726883484595620325029203809224492867259106552614850019154762768586834760785020386008405707152054152359171675899534112935793144555945329047756785371184490578363719760415163927223818085956085090407123684636591812348703564682302912254283817486276701779186468304438244950952119163198533966357229248768841638058727982376753060707462318949918212190868803461124794233664980132995485112200071085460473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4373578553147266845065199454142809970611237192400524196326392106023792238255501035323745326933922591476690193595429834330869439999091313485448657516562863798895848421500193222548214721232107195149544474409626867664364298562961391509470876946232540278558135722105273366497934722025883024036869254120304862621184114071812484715558325900622097442422505084190704735145911184082131707101955309438659924782767564869397352233370685495075541853297658397085901344447113231801652745937233913327532208751422206135299217542436587780915012915267488609196429996286154536931244468147135233854289950293243026414289189981829752801018348449182441120550637197499457896830523122124684791113961577011741708564419981644237206273677475593591540557232559819390197062335666869399139224372141078911867402836181770640186559142991449883448443036008296933044191067424336836577403139077332616432014779278408093132262860748521061203766659332670335328259577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4089383159172108673389086586470523406416641558460356487059977118209049320739972920045924248311039186146777567609896376809894581161286353702288522161311585063960706942899472607053685499790333100415506473920663527655976445526357449284147724488021225421458085332832907248422700037517311102711847938064814929101412098516923152086434121921635070971205755484694184085148485347043361945918045968086074978800912344146021747597254390737194534346483148192804933798067184963269054101160643504681734431990326997555753062542428201896594255544564120743407913562246240520284326970628721740526495973153954756187270053940224269935130612798196604888398934369727824835482746596934740654446209775732199163701056615263776824355312967743565276519896972393758213412961022175367926605801323913458481170097304406032580008605539511603896254958314379747736110424176514910642095628347241218675393771544102200000876735804435681591142105430574104300872249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4271823361226452938336165285772921904745401495988141890351951305912278793659697518417191980608412125898486765102063542236391307931285950843939803726626674615021446894675246345197860281727688115415280708682903885704518337663744217792866396393484132521270352153773174694812964620877290745401265577799847573687783046490682264850885795631397530892616120495822984616874122930972198414654597736885018864565425151757924985002985465590583182477330163631469635624485351836495152009777187828092758897136707124557743306539231402070992437719412467672058850774882091356257163463341368833358504175324021192690897419300098933115770779347741827986972451920097645575736906820047001466890064086680589751713560089554541725140458904707797109364622041506366031300107996284383865777387343260363484302904191630217624432843254373396574988175365275850832167231960264052050342175542006951432489861633206428283047629658951191195690771797167017153848531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4213071620650464540949781582117276779689779885232424972254938686979976193546151305480533716574347727348745601910572814561174489195995704318642702009262016351329769205589434583469737829860369022362329872887430711814790874704357610717978960077010888663324809036377748265321151558346966193874323387066153799473266659944335678257211618283832568338260838383515694190427099740580556113861453943914809416344301204873307014663165899558502640492418930596864727551495100002655323827964354550661907133876801134046598016545282383186450188477513802698133129484146087570280148682425069615649108179368421417026102548374124766200305997106891074008989646145708007328559300352571204419017398069214668356093799584061379464916294566409099349897226110599512121684741190127896483082978175115433194659884951215411371103959069630033258159824461167974901290574421899926941536369799580077569418421051773937548523869194656234751830932446282736606948521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3810431758141184222196983801048094894965709640319736767932110084817052691272973614998019602671704267400637636965320508012569914504018972691374979015550598196164944461041872938200899777387344781887174325236577106033609232274667037483279258200309933060851640218844993980118533706250620826632396619490352626642630497451042205877272279741831697753726441714930847149500172903751345044965744428958869842477289230014255126910774582472249778793319063462817720607228282781059027426341375411988347473097435999001892144457873620691107084466919203084700052035337231479384981818213451725188512900896395515475353009890133081807582340655895186398633606439669622357182284627597599603061213713201747486010211876733788048723219156029713238871821460318866421490560200536384999253490699870587374793742296516765055577598922248324773418460514401466663504131970125183647689164260490557349733978283769514012445072905245889591671715805883893472338117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3992158148069515677456317953716277992680145702014800444997961172539900131366515481280592579378871475771283660379590981547560843082589429337326360012665918470891072782663842432077515321058376426574977271774357727291363301362100569912176883890378310934873586616654951523159944181449806140194399427075905917900894488048682131570446670568444968457424726804957368583619050659613790034822685073602165246762166404778534140119077849452842010920300100445628453676234377975981982166574957175111054235560941548909983914925502290536246736201032102972501630581370065379289238702804673468328867983290294413294850993452372567510970336727713103018486472218497020868967902187309435358093913150455881880876134691017429020622266892711158960667417612192012327701808255165418967238579112964530048254580939804429774518346483268060533593432067901864901303267148880294977455637822284829233077178880690994793410596603026160157265148479473826140284993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4665345514482599508372842022853015945943482154762695656061623721514900178791279170138198716386445257736605600288926035889423272649268265820413682511103029267265511106527955249117535338137395143243913018491798747881758406476010748781544742384489538815688163497761055351911123579312038964353869377164651022340020648013456257663224984132907527653114321815106837992376985296309217454908044695833923011185894899221642018580717863637926339397825330571082960283757733089643402686889964966344180453389119255415151227519736075454421102679191100769154317321677024921962511048893612585199118938678000980351000388075263709430959314709748100783059659775104260099923738074980954659391277606414421887644653144812073552547145200476862888116165908307252366623279278628181026842723548856519352973990875645468250744958661397388584895554962115379849912350847136066455806553992789597688764969894194857660530575397748068582819031503173141159856013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4483063008947897546518388278999357342967280410330331868272191728021884557623468351876478539775100654368953126630746481013661834013825751587504696913560880171360022358682061725195734467141628192047873684336364538131842392318713694231184094865880856359449450298082654243368654541110404587670488321933617141573478329599060654469661639933938707166033344926693257004441056202640565175939404450995013827943827561312824389816950037255828475993501041601063756676188988453921761195857143624737427005402266899712748251341569132821509813035808541083230131745572517749977374403583602211309691939164509648621793236860642142405329776004043992104357405306409975102770533104086289974544459500693132714012872382358807135021875958371403715931209545168100886790499546655932813352936550332541733182952701290332714856029969640119808362276492305549268985424469531661401759488189181563523619568984684258138073273614241345411937216347767276594755877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4789703258330839022746333980413889588337584170474074730815930020587455261596430312891691144358561676912357999795296811719341718214316366456699505372258835097667109453660454398375163551988248323235752742277894384086051935638174703353394005717535991413910010639669613403112894692194132555307970175774994902595529511772363188950828933307971329928601947971747329944297138601339090251332519943357355492105135549418058426449491650134848337642065392635679701281213370867837129439208465210117722923932934067672094751841538862085232800429280707921430514507576978485138504983190050573812836438974717950385234046144836805026229893249301701995472468957522045850061776008815969290651915419368608437443067887306465217255510288266840376755719374048715784800961687323981357092943981685868298980436643735423078679121167021327723627923273262511062428413158587926409446425391661613538047377040855907632858865663438163988840761211612480892700481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4643597309981019738946461990631214653731135145840861650070884637284009347706806787931218011892051660345472855249492255956112953450999852177618279265139205606451136295907934375852327739782066423425447135101125966169480271187994009170656541544134734051760553052703242730282097653225458109156090397161680619199615240931315556216091195144742883719487459928449765537743878719527428964123467178531859102278395380675932869638624320793774038246911026042165324120807298703355075688741646626663457826485128226927013415767064031360517620705494633712947383684026936028762453811091141237030933972842809733655002784508863308403900691000373545355734371263842525060216773565880557361990243302839820250864782937498598919059353896696648977207727329212958288807232792515540217749816314650989926487819850582290866966917328745468978483526167969701263152504772871415195583584348393597770376404809572498041767978142801896019769640642800827859719487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4024024650910491837657247125280519866335284021070539129125837416300225157979058156381206199430559492947538598953685094484930371662343700655579792218336330718386947648388535726572727511727728983102207877027918370431416530604151527504518972502504463045826131850435384489326643314800168011172318515414476668057803007705057937928861314298598674212810160838309727996254325822626925138259148043888384989198985532676349328767841475660649000184615858609869032139287071040301112367562413394729251756712584848761998384529289819384937950845334455355054059167312312064748865077529362432508420195944176612643238328362531919711157196356538043866756471767161739431079567706946096887012873280438294215392320597680030456843382981819409618198332442060316007503145542257258071487849565421741932301698874627422694613430530027745647907698892174799353516527104025456877347446144934389336036876033877864450110768821283789674929838705551505145962447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5016718487287480989120208848405075791949127767680107150276479561305655906503805987567528601788076458655177546639361268576224130886188838026442135424516126334962807979735065054789659598017397402763792010963034407120600970699090836879328504961776210154027570438025941030092105392221120799867430895770518332732796298310119879940616862075374705927192037497178368965886256400151790187204891912702293174031305960025192126298654577280428043221843389639622144266565521205417611976344274277062429766963147661907642143258558031758363312790412558465544923391260403426692240342924109828304288192859041995922331363972523079078626020101383905138283522153654950709080017610088189946966427522449039367465510878416544584456210558338964993037916053654488087099751750525159416701056176753803585107956248734775788194214467499958201191617319171656981711498533877071047838793317428499487894330682423244814765873475858207823485282452490744260745101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4627924786094683770079988321436083117603948710261588089838858100578093112915253167618870552406888305668074451534399765116761455499018040477815240663509262096834546329986919827467394254944714183777185298943204163732593525104729466904123454513485408193684445289732514577874825096625524998902447799607719504480417964401760517374446902789672512078783502758473332435241409963907217774102990610375631677356536932718593467509999255275977971737905785621009717188117279436674456214177664052090725765706370077672749350237036020165133157591170737830801381209715364847545268350864916252948758309460780629923025466138385719856099648237024034782706995059963931722454043360913740262994276326912989133254688414369593146155669467850542108216937947532428764298055080188894265934999560628238928755450326266405155872486710760605639858368334570501253546442670570577417200386501678389943771303087781782930472296372205938805079949339296738940396573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4581856921704562337900289098213336396910266154378926455486975535976588063993671232217904632600341417986367580573166849725896516806244312756767888116852905260601670629549604710158400673162569520603126944502028776172842665064275643301919391253939259052304400762424694723653496771106414600737669574265173334708290265693336569604535473168232236810527403277208710461625242506571621204708851239205527398066216754665637014373721008238480251988857382686231320960608321301716419539161230878869370506650253446834226433010702684882442864670438131908712014302852329847656727717790164053373762340458772490071268712828449999189402874561907906850143462249739397085798524273541419080780138116108887521369572978276909762350600784430153102070299746080171609221607418038865884288430646369962640464802916661052540895074733135188238470919830740680030206010954348615703954970544327734286358399580539113957225308915580421479730675733507153596754359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4400963451864113402497888344528558047430510239806264201096173177121925882432314740952357498203076814527146079376604544670029127277934085478276517511452231061955431765266313948522048974707072925035901059273326426882485595508870458322895602932086773931034046022921719474350776448022657709899064232174309784223869024626355593091989187352616142361841236601304710456703078843304069320003773254608832743969865045201426719051963726638621713689105111289673522694382779298117013115707716322170541434245816981859949930968671005709366667818586570472410262429102311520994853567497302642524831670707611366944311345194927447722071723542643353513715884653447940834244632554618078754590657002237282381236117849625159404584503850095653695872005700462036762685234691116799598986690393914056723662565753388097776733333698742160992490278785810033325713602675900453013042150295330186015190571114887689832735202160121547163587965953825919769068067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4558694234526062580331027656901069103716460414701433031797120158465770378780850731950546897900328998772728077486683077817301616177847133917243568943498873428940672944929148083038926051646665661151602191502142141715574293032348251157096914461282532305190083025843646224141738638644762828800487170414222762663728614656534751982269159347834478070686459926610137825644590066102373955255635533983866570699570623860142885259522396346928953426525902365139077557387143073142701847827599409776866796634035396928726179710989078510404221823974718792993597750338068692828437995354963784785588992712337914092538413503944180708891625758821147879150493278863112612087260465046252442585101907248594234264774934203239256370334057796434805718188927342909996824397614596410203609326448267308968622372089532719779664009669379445926713287469707461902614384193312178391294392983021937570676790450416311075519816427836331255719923518311101752548437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4685529799351289752978318694531326348651728673598741209786472457687414274544421626180644648466492536877555018366506856350711736699125846564757373153246362668352398297631580720711146682298571279055910033111595494441887626842579004195669500443512139146034593730367831517839270436071237760160958292526007103308407351250980821643217533957792112178907762780957922734470307837702524584100037286961883549484662690472761015403121115096810655980677710392802930124671193240471673118519799625653714404648259147578296502807459043256353749481560845491740793761017990191922366101965416766015969173673164035423061156614052240509584572298115476349908673138847592219527046527784905801685390128082312301056108585491591067582598107109913939020112166717094182859228530128785019715769358818341400537738008561351238809618169953576930418018547531840436891898377488506622786401574262312870368650466502296236533517384227703793980860382272827534008467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5109812966656388660719471892218838489831196739719787411097245936503886614199158772485382256016434973589030317933745414996838363042432385274608422851748629003437594084530708667016279660072844285614712019585140399683980341868516961942037325292198599412126795767547076358870318653035101606225778545680025330363739371858477723749814219295595389320081310130458419448596851920827011038261969781283322761954859019454540779159346003422337645249349017026124783138166927991687488067819379672189884215123928331502849989154629323263817463979523924236161981928192076315950981903302574745656223142506279074088527243622412140263774992028954051635142157548064522990747317480471041534001147461742501877374374658666424552010579629864444871116096643124022243983085466817134596658641528124874684513333655426122782663424749986578613074914091998507536426131906107216662455183240727668360134192108530632864687279531925462765123134369999880992308779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4621695433409936723788317339556547084159977335375348962736641978662696538932953932091477776731187701849856844458251001606611515454827789989896962378258963731183649070432348048655878212897688380190136396380385107922359391154777350139285781308841827019084629090049822705938634140561541150739533530658629639481621490489451998996804914774394605850256987410408986355423651705885600823432461574309923456931175770984517556715876440442436849150417122913418230332944355768013658298217023661589924514199890798552444717769945726381605490817340263073828415614241936048929820451585754078157766729783752252877970695808046721905457391942197430962286957780054789500512859179357224154820560403599721723328849032170380701029538027190162668868883150723051839646702209018190788325369378028015961613813175170427933366148115027757507573347183398295184325511379484846613785056611630827476115190287846705895754190793511403713111033663242184634001883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4788501978992608214341259270644016805058412283822477626313810468173846354652467831766365070179091591932078160100473791541550548491471005019757506964352537266211592658293839932906037776883589062418618529621330558247765134398622246148954720757164370049318429131231787639709057562367912272140952405863875147943452406709766803087099458613611878687361367045348617321479369691980921350127307426153878528894326867846354814058718700072215929537186744910672575993678045738516465892341830412977337905048342723178071580181910961996512311823253818906444957254977594659944125899851519334699124968532136757601835165798760386745006169094393513460425610223480088539083351842731738024943920187323971500508446115161659841141959114939005976210876914299781074174005053347023682763003627826110072905281336181687555223877809726177257696480686765689633856037043386059946540165837362708155443338432118923059603062539808667216886423470357432282530951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4540666240761763601883137077862185884275722873465709290800678094173069224679755128198333874170913363371336525561383613213199403099434702593151606343771405622675174492672089771914640240713233125523863407039358323676370570023664840997765601971329044350644226890379640227022809183100242778811889465021326532859615428020750538303897168621903905441927973551987794653602261955925939357545741736058244429499451049695191918255703404864458853674921291465569490215560799853608741613459863066423665461596685101888618048094876758582255672138790108613942118346261620057976131534920765758345512267843069732881552457360706652749090625259780259727732099469864050672566589555554141996956244132716115600183740824304993813407058867696504800196727983533291909896822949540241306664059752266683029911896989090838114737194167011416617772290377710911266626772810717742358806063571487433949186818290828821616157985570473955606490587173341303060127519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4026782687391890938769587344966009333988821945877654020039253123198342174595310074866363416999650834713839839085336015413809239440771584901199380521099448753618916803663208470196706082143685653966518875279917026144048399814409001389623898962710931728083554628276345400290590321198991863928286140021903417349008607660631636761444395684958932067205798788480685467119144421106172997260895138813927734199992038390761291747564540051602620004056983591053206842826471913131603632573186135738167813699594069500797837541582440291131889398627261986653904010447631686367236614713872464447100683198395398406837130892915194441130700969093131091764739364210766164826432162278874127876692407690712713840832980821721658255384332436444651762358323402810917163171438599880761722956340116221880607986180306921989236654426417384911267987001514179711878222311764863134921463624300368589517530222342310366072587788760118357293348412375880332683761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4171177988619924197438909191248846429085276625655393361753893096475656485134866487018236924257098696371682349988566961768399704582627040948436711062247515932310552385316678547750171051596493533393579278134894181775832255552283254037884744445933656756715071753365832079205418510982473424036610232367329510802441312433069583976115309740997901214715556018413286751747699861328877484269307244967995527160076608164971416331702294307296182049266651249116944451857855483495262545652405661532075862262303026375762403902456797113758619768486128743666029411220049638760425769372253004159790632860700821990468699680517937188412954102580327961487570553474601786538038925789911055063522116820567426292749473409898853777144051865514557404723880173957184272329203220288721355133082020867306534712895422696269352458209941151480259203198476066056655887512522059591630004833347593200022654470065985098513511988558541599404942708113375383956597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4056843084770902560506997956700346705078933600297253757642970373780962197390327817431550369787684148327850096008053413650858681800917609272725041029040780008879587567478333449780007440592458317519447405715083869928682493649654894927073588718836795276173154785029652443180466387726036673071915974716562857633868411874444677967586010245928567352838068792749029987094907026558945440241909698608144669120666867815301004356496796026721421008705737581760869084462998362349188602651837487553858791506020995687924484973247362890786874157381526835098645441562451449026481799996234054003386189747271168372677566047042034256823285748468985453371955795440491622783239794730878383942669777825544563984439701887626350311055312462787144994665896734452369418762022328082405744699489376957980610284114446448657389808906546458256172915540882168605884248648484310717153153939908699199115147193634252605400467768778976736281026392031688319424831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3927248122159718242453455554463288946111673032848673530787797809206829910913828307477877443155105787143557048394594026959522473027285071530483805796721058818563668855052364994751519011263116969121852171586361634509568032922654146499104691158895949526986100665493607483268217002888499133076501165775618604425649055039780716988921814215663539040335197557891649469091947772792697001863061270288113111960343613446693629863977177146591902021562992310981301474969274874244357121015789982286944980396244513322537366291620200181329001749300261196448379535764121290750612260869447707225465716433006336809175656581765027143765827064567412737648684274270111233062866758032806064050222201886073192389826990015681864148069781359264343812496644498601848725738197020626167929382668729024286374652425848946628518352061200110149259704064738492653236609270032171798274962392590027365554322354859509174702234251080148627357446044756023691497193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4558905069304367070306329617165236738851633741600624762099002221168944829160469499462549501462589060055642221141670293348518475546903679445044815735907700120485151842404981213183483204448674906842315078914128306509382988206979851145361767438713614153795387436649115560759603838039558063976785279806011279765445269343730780051322646649943000530496961390914632187848749563071478554421479387805603262195440852231362729880643923867013149562852953923158433105870612650570006754178602053484959841747970772680635734590155397394626080782733305855990876498421510880230898667817286556785000983096256791836881876370282270763745686350915463701832336290562451357098105208474152259009179351162830504020502287745565725489545181583315183620679195488106317470945837871605434688866444099072762796341954101840187290516340617667735504862390172559085138900634150874842511372625014428012693517558837883372462002268459837618982053536175501172149027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4193079355263804491441453346851026346753263810094213541469934186179687423721819948759365640326027337251447081858299312283538341536212333703041163485926386723033135830612517741866457308327824974842499522721356073955169989341273475427360575304805749951460396268461179872129952508118801889302448607990970105270860441893746310062298350746549768900183400159302212930801409058653240591905346921695758386771005922224191707691587824105964226991089658425690628693232236394890169856723333008125521878852814939211695967509067275694014722090088830244982365816276989116354104490732827385608880055393383910421720924374870316643398010307851873113958163256437675677914556111938088914370759372226767421987891937825344485314317622068816541483038000861634646370638063518886933604163786623853764771383031987285616949074851186570303380130706830211880771911295088038538726241601038141319137230170134594643591754308287698526102299982114170273167799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24405165457191218096317999364719510069875973662430307452392778192477576083852049890763908186563412935564777030753822572843944393666381719120848250567471994599178676115091686858740282930311307316557459595243568378763932715325504395394381988384490144537125878821187636359964007014196056528106479199993221527130982541967882995415674824588000185529121479377936538962006524261825559299610349725177935663672327261898128472937103996819218314794175302662559617344690267649689204381576390864298336744917854598167882401378718919013747230198906817617027867869455446602655687398053324312645272547099508521217677202590011005061659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23280049668654147029029229801207189720950114099586407467542222417593152362757373886430439681341046218716498255825837156388436769588591035078637105853703884696094756588490631115158946125393158580330450036373964692263796883966534628577173404476903458951217979991899899340692655838930773524386826290465378530004272108734943464264036932247256621240313492417051178251826830876208513143920912833800115236610232428162020573225616110126026950426949591527583616379322375865539337704473345679505944765828784982157845086887497555665045788974031512022419525221844109431993726291047370526012539136449093076443697687608633715596409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "28613999631198713228697356671040853007616365722427048179065173677304916455492432515543467062966728095866699844066878173544495927368728411051590356148965755259603123804733609766777417703345447919538122927530753241669381440728649833713856771056431640381097203474164081299130760542190687993589841646334711932346829755732072936044104818496517489517325892667724805261212424954575955282245974438999465976823807495635331658777795322939397530062845014448428824835006069230101507592510483703304320171841618203278995114131123912693028250758053282891164496104104730161117588762845601530210826462429382336912413391896032738030089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21544138172647387547830330888783256050933306214287739032947187778886683605097325756230663098790241559583988302120707256707365532407816576230871086390768336272277346627501724333256453499401429212969678050102356901763397877824751010706239490475732197380019667631139137985524072576339149116780567981977375357865837828380769831450744037954345899009404513144593452698612813790981221718394284226157190284959233495258190058948207245799439023923644475826565994134653845173308768807898827356206206941808750869361112096547197136353946394188948860323929936911050334923022224676748408384420074024615712354152700306397833905482711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22544291274206536935050319186365402828001728235262575102753962993350984547798468524864042874125853386474529523257472179287217941050818068325019239135566243330769522056072903126716872563339725823701356480885584140507931652483107053745623691204007828222948790686128885550115884972212154737996870761256906021769831780747625463227175830081114287231435660821248580244739338923627322346718676215864781664397949048841611440397409020925186836567599483572571653099433307667074359104669912711338680766534327516099709140540980797632503948955918329190529938408705743008250859833577647960884358975699573235101877486309291254058579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25582553698632484407785284566694962795828077940641557016695306749158877863979236035915385299689516664376328058549763453281768048256133027733489134722269232083938179516106905565258458118009793815973508648974337767808453826530630525802162096952530559707162815566349470983492105158613439152821289348187498522830602459580494379525217368419939560919427983301681140931954431550696857354791543890178115519941878328686353815178443399337805711741487848835999143262548386421130592400683322712309628740103288295735347040916336218833461794624836519768491179588666382211436411531103626083447136571738187944824219446205719839946167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22926719324641631795603980992859264724684911553205328321045915028951378383339425000519857083397103189170937342772424704142061911719904248022935216058197883966618860173353762794011599972291314762945452729255804510904069784994334589769877592436181178101634835462970158290575122070858568485620386779831353483695148234968833687944331347509212321331600070983060647804836422394691667152656523370663844428289454233014369529424314484499643473768264590918213541145348419134883001967733562357461180461351516688203345532751503084623852089592511747650848436542568069124253715098142849379300933640837216242099734448956283486074901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21544138172647387547830330888783256050933306214287739032947187778886683605097325756230663098790241559583988302120707256707365532407816576230871086390768336272277346627501724333256453499401429212969678050102356901763397877824751010706239490475732197380019667631139137985524072576339149116780567981977375357865837828380769831450744037954345899009404513144593452698612813790981221718394284226157190284959233495258190058948207245799439023923644475826565994134653845173308768807898827356206206941808750869361112096547197136353946394188948860323929936911050334923022224676748408384420074024615712354152700306397833905482711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23895282215522015844802988808632367248298464483981109575429031234606123454424456275925210293654628299065524636534416573811322090544590341961007823264291379944763131643722874254094669202582493694526297693402035738295379338046917486742735429236336317207021584312880309919279887070445122210521824644803558618321293819632812810359526636847043840965705241182743620048605923414359258571773956211890835967485634132280855475674989507884863217184978666219087306568846568237436190198163989664182021664956815783503882401239441909965565580047037500701074898082776274695729839796849139809642183016479860283086477193595080530069267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22926719324641631795603980992859264724684911553205328321045915028951378383339425000519857083397103189170937342772424704142061911719904248022935216058197883966618860173353762794011599972291314762945452729255804510904069784994334589769877592436181178101634835462970158290575122070858568485620386779831353483695148234968833687944331347509212321331600070983060647804836422394691667152656523370663844428289454233014369529424314484499643473768264590918213541145348419134883001967733562357461180461351516688203345532751503084623852089592511747650848436542568069124253715098142849379300933640837216242099734448956283486074901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25582553698632484407785284566694962795828077940641557016695306749158877863979236035915385299689516664376328058549763453281768048256133027733489134722269232083938179516106905565258458118009793815973508648974337767808453826530630525802162096952530559707162815566349470983492105158613439152821289348187498522830602459580494379525217368419939560919427983301681140931954431550696857354791543890178115519941878328686353815178443399337805711741487848835999143262548386421130592400683322712309628740103288295735347040916336218833461794624836519768491179588666382211436411531103626083447136571738187944824219446205719839946167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22544291274206536935050319186365402828001728235262575102753962993350984547798468524864042874125853386474529523257472179287217941050818068325019239135566243330769522056072903126716872563339725823701356480885584140507931652483107053745623691204007828222948790686128885550115884972212154737996870761256906021769831780747625463227175830081114287231435660821248580244739338923627322346718676215864781664397949048841611440397409020925186836567599483572571653099433307667074359104669912711338680766534327516099709140540980797632503948955918329190529938408705743008250859833577647960884358975699573235101877486309291254058579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23895282215522015844802988808632367248298464483981109575429031234606123454424456275925210293654628299065524636534416573811322090544590341961007823264291379944763131643722874254094669202582493694526297693402035738295379338046917486742735429236336317207021584312880309919279887070445122210521824644803558618321293819632812810359526636847043840965705241182743620048605923414359258571773956211890835967485634132280855475674989507884863217184978666219087306568846568237436190198163989664182021664956815783503882401239441909965565580047037500701074898082776274695729839796849139809642183016479860283086477193595080530069267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "16189997999329372546822751207647032262461864117849001552660019877696406103035173708771219888185910901216349710122543636694952795923824110403760489315338052308264185136678531148544879102520234703284040006846710540001811886929654985738502214430654337636560320477286606431172345311367881532994652696655417280408621513927504409951925278773973130744848121193081146906047691769753695605887788891607920644368810238061659913142394012554890055493316749609358386663519713912450742199395127368327019195815022585065134732186122816557084237847634890293634499116840572960591155550794627345843225620298979292798998871333388998612269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27422042943382387551185434348336561039564358227979435698414838845533964384475059339446262114696790079730533580647795231720091048030187884954430477538556018235064859174807089218669601924501119651131007707868366554421520376188199939326757054917073194005920029861049869267567638391050284920737150045363775389663060910238924644145906241392583986296738786066913234695515427442429863107714830231940950761775231037685081986651420601187716140027919985078950849314329129158396076020157853573410513968681876257892512758383831346873226475732375510141380252203339988205786361458225690570242627778693794665408889291957967363646453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23559546030932237325295183623242443849684061884606824678313669022900398753348103739056540686674503840850553730000241876080150248978964154758076894168507411513309336204522419866925912119916515108264366136406108123916254762500284510180874161733953921065111451832383923207146343205133684155546343507512879149658065948079783492900022243360211678224280839612709829478439204616840320929556716434301946895707781130392874772319595517976498670793922833030591249159995001388663926787303780975116863079877224887691487860560184695538461014758087261575545074370069227307349329476044897359445615405613269633018303702992984230247643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24565363304903813707399625147344076250518240952319786597754712230956973799381949847798571328338999919727074565451635197198543051060412032209099783928929623655727627971795060342933001065993589701164071486714300964141755029025202857003294519093439762396031334664509913980130524658663663839498460463854048946972071867974634891674678917610005861913042264185518906304485702169571919313238527645897438017878879882343053875443656538603864391020626244427252573134550833522037341378239896528334242671201755377169572443298446549102114845977927636036477225361790155227552459910951540282088059640315257725111225363799964641245383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21425845411997669045001706784211176375003091910506367140998080664138328520866466190333059526789819602606495751608608286346803664144277094260388293467038676187457592916735136184861258876559184775958806100175766283924818835873365648963609811025705934680874702809391361030751984398897517562875288170145633473252952909716784939220019791058078540289294240391713169994687057358256310329881981353927094867880113139535788120371067955348066039924554682562719654229189839195465891823709196971633449076176285852344158008633283207283121383885475116285314073121463552040625360362059166456979599138875443198616094680745856025338081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24069321687809117550017179261835560651985123773665963895808357429763889641140799491717913495263853084159834863996454240451107967511689892318353098118843785592357170683515527090869988683707816550206331092393188963566333770336788666312814470110847784468004191685560285539377499807128952158623540216633102622526257653267368902055835142889579750168345755212151008771741420189984698201274620678751952141753665755583039585853245729474053323055850459574002937480325292275372867141499882071935807897182336187243500861185063298910754064707126596521388181521180753562612370623936236864820331259136684559744131522581744899818961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24365159523979716040187466786020170946294603210773121513516292397865748258191143415672859505640792533282665354377455649576187899330673195911547692686630897103952880716195608181153000114547154773496968097852628593392206100761865492447282299115177310269965152028062560963363040261454605026502547790565959675168301455779563186272253611360593303807182637135581248195261358281272641523727704287703262708824729197639844080498169396605585628702249062299236593507045198587560730350895855487544061468654972662182447671959760207547155513622417195829409236230975689708770644435854626165707471105195983590493531565113761774872561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23227925552132018057491376792898910145486545153843809292502913393716747286181628828752718791438263118532205645918756005084640599888773704220656132411463195730298973139217292817168740533059489590372909193845709613939995527420129660400666584979143639474658991484040028053639155602556170890207695488854418591442103883724335734866012557185018846125122841182870676558522170892752341075772625108244211287923715652442456202364956808926046918534382148244962640662649049901932581126101871095619375465364408071759226148627195002443642096944111273049380135392253286322797615957799586711414558168810203289000327821479929259596497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26722344811965009673676242847910259511210215162658320525286648172273174405908698272197983522936432478761517791997647492062352275820428430816823655456868185386775390339610448074081365529975936866794997734148430793561857633826266085915019462809297592728271431072682812204104972098077153289582156332607544203391857610347531753966172697529206631469358673139651335703257050670643821860532171598449379852041200928868800588898896164502329369970771130668825776000166521005963563080903224322172281680562323694434685971761038514876725521970176797563165198207466327719890691151936708129655089530633951244491168334795973123270703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21949111487888252436284513936363515408328047242209693845677165737224050730192898040849876369480135327553167519198826222910908078798725033528960106928040737901927440318863225785353244154098219832766903528149475669449505372679554567654485078315582389931134853160244326938927050076787722078784875293044958649069077455640952448252973831899789916635934407128209436095516988563135517832905505796165100940409516060336982743259516704983541305791522956188064162685564984901935941304447410016547587231460188419343068724273238789643515898470084137024466797814449405972753445875375628083727144089889417559959307777169054012952903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22473939688917373771923476380709729709892652852429457418679225693789130300935333890029686684360238695162941568655251053888868758132146832642667226155611025983512182101596464037007082117836485107388562116738214252995886398179895762210617094195842705038390763788783131262214103141701282360709344340024950500191613708950927865575244460576071297914198453760577769447018852708946185005729375818289852917656504200852049816555256607310681081814721306650779052354324705753681445964744783807015922807937950933963976533706769414387198436105472383475111932675348708951133559915402213819896055296247308056105361315680600835185469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22710007863690425846584790851980336413524837440503736190789263421320013980279132470602369625271834589036557248790048879684814379654635128516419858062299575450297858415786858469186710791773832002055494091072091515726597285638124387076711344959596368565899443050928304054449907219412003402954379172348597321831523023467479274387918994747943050797933648722048001678863807555236672409736948588761493444835841928100952979044781583260800652985631558541788007982747160934194626544249497917690780350612912645899800860262761255659945253515698182098778269076402533353235934778158440991111890777699332133977664676806155811827927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25238413334251927082756458720559488246254026442448156416735664727487102729383601514543362991129046806638376771550742213171923797664511798220926734706070885196187958205830874379357497781406758284780269961882892468088285336805432817026773173635919055619074482890592469565701328670568117660733812502603571167147819310426748082173998229801461094951854327645162778712908657341626725876499510949783312991275861652810536604026611230623089122552004662057148501609401480314547095387968940311416337383242030868790660109377117764119808575440358649782271359671234357508938377292080697942145182575351633308481348936387817817306637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20332770795273587820423987293284740267343301222422481482973825088479319416873246864365768774514305672111183559223029942312918248872964372894363599571622156358190326952231077102906133232054658434507865951959306667124528240636030302981447656796524281256805091560388318744433616153500829832275241215121122130440033642104077367735224886780244981591669036831151873266586306552151776589452793014929347124239704143224829155649467041849192092655950248723940390720467559163155141621463587102404645420464585025169348195436424099691166855792525325198082857013909976232268440446890224107286182463357897553417887941543399617181333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25667778840760768721937938016646454673758039541441478066424479053209392205119736697997160497048466939531802359740740153064124782412052712759463312278015001613144280994631377756874070893471820670676243083629103807560089923173314102447923023713261535696352495042816967924418676148852623628749049040812419949531485666892768281005641039457276650456336064320137304886401010160011140178396518639720943959949887249399179810116766452431716543104447881529699628374962083024940636353995362995291735130857489778119838609494248033810102455911301857200936388912214368055696235081653610631831180965350895688794373127354520446069031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23627558793404310112683939694691724216605212128230207983184923157841310553980748437785632582781789768839082966915942107272606966163591993364614001829386429562199455881503083524834080274637572400898724745084806410665823905749877479729990925013504005990395312946320315079111401001522439372182697783110946085752741607834613468491951484226124418570135805122215052755881497812067633412909146133603597414695460038178192182141795653021702440072969506527919191804272421442415031112086029903422397381355563530161498286387751725429727813460187128139194532244078602236798960016192823715231006689219257587668265210037320195433817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26630559085622767163420678263985403337806800189903779403050965101052844564624254246967558828554858073203140934892853909908177007133795731480311227223019446597710575111295218531647687751546861839127965451863537626776906221065949509942986230047390981126683869620470031453869720550470155800198789224661739533941485056695422568815221316672926551495150449109964180796918218505644827307942791492051913405714566851554190903220754379414116325898511189619278089524643635506827718296650210961263196917968880671504936567079921763313073875451339644061683580293730510638029120902309144566411638739687020025781063453556303209354451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26948104783977048131866636652861745359634680556398185254740598898981279644859754453248224915567258653470397619315354034227643258547775163953367617064730910751064020220848970278643170276370456777950555788287243382464776815027786308784833641366828660635347913569896077378749537247068450658666905510520106778068108407369901264424028758456510840331296953768422765244751859182674395656106396694501265369426860171128070411097376888046677015898190960483637937807808622301969155008029140198303709085882815352499942473060075121891766554870333880807628396741102894521422429721269764740083869454465494517232961561808819826239571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26299011418062111950697933550141753258162522568206420546905478796017923596815659972045936160638906892179719693764250350651421289117968895175066240350563865294841135259259279707272217345439978202905696813761945470584530845687740080243758349370311452521800807597609093370715701121802574601772885610263396491402650523476272885362494970146654021510690275766942468139015831589000348478767450935096346310494857157702026507299808876880854304610991453143370543664318912746482754755529536972661275582693501814655856717110260573141667869160430131556242472809533451261858331369394979049719658329503847965690170078147981925373861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22145790267483533936747601333885464800695219542105923447828347028744775059769084891482074223682903067786296765388637667175524689257798191249986019650042528098638845592877102816256398367538433100182039768040483119732636720923832581899921790649214058545094398203875376951827690808626880340216981454989118289221836358127520493171395344315554058812786206145412556094730276301363064929964103555533407513837484011219156988764743551624957201682003604429743994015230298541478094235803736462735518584895289317992013808934330352095711629182283830918895011431038956808929834659589543910750678792919396332940775799474086800267313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26682370820514064971264109652971500079356925561660682817093290461103983663859799031242545407079554779164101273862456195321228621740038514040108724678735519938686273537830305225492035517299619025217447153575495036820195563883632377642013321312829898781042423225893450619644907275472693521893764993724307252235836958371488058488263163779637514348747931360254319757305711127899458977136368408678118828699587393549238969652742595481463191591612685641552063574546168241815793645164947055277796006839769371189382702653338095886410746174856353995255764487125724829167799671077809861469508135120039367153176813317843868985737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23243429440902897189217627999976630333652485994288812639325380035655313146943265083585433422684797650414462936894484646953885078131829229690146397212364800585506580637484927123653936768103204670001466133842558028524720807799645611663068436787631444716861936377099165444584353174648236149914895612129251598432653507701722361177800424411822188966503109522226655052853245738336394009340283172609989366454469664489984271269885342301590953319899594765554500524909436360863321789319043885611228090466672395843116026253761450845224445879377639938520544949528608166859443356074209906011699443290362857449078914575296409033573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24341464928961922337903320203994042035605646151545756597544424884625917166622741455723848404092670721801781332704146917183866170077762521892894570244229245228749134009667430456468183872399283520820649716493678955152653449871110839438136023799202237219641278757874066032484861478607886828635923207747094403621136005046869478598098026629386426482149769195097877995695203755902689802316030759373104140843972917682141390912118770082534551792621555307102388229465004300823432025854679487772244668658152103478508727348567981511765725031894190671987915227400246000656352903618380832200951512656214557433821874983890024283959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24577175931860637418425412134088721155426627907907191501646165425470084004115411273434378186723335867887650287240637101527537313684878458973675842583106186263048997703749898721998722644281100172309858292441922632943486671416235746344408325990717109696507644262203003698411056017870130937279648450804176048557711599966705787315448314732125681972866818404786630391868456336081383615613525636094953123310722014791660490305591417728705948487768929251903934967166864562012446031275070135886916749827969330443063101046271639367784054742430466711932869536918088007985264768525055393165823756661183715016851720920419140739847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27475245763060878323350321943468863647772724336044488468461628526788785614514179760525161610621736553210128504100709640604309877835673346168437629581437055362523586070437734688011442759573782185366474936972151868674785298874420921025371156132514407262106683452609877533342934972856407173369988303447297887631524592194113112219485147254394466580647750637361854126966582157150663883238057242263665442186239728052271397578582519936913605555106316380089487113645739610310293512462819878550143098125919126535513969748028058367130141488539733265935913872411068342614304537993944006696807832724097120150842713045205337413499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24606849077929018558281661450673380443166907348794542617388152178844184320183409348999000075933242399467921264846781458727159159127492433225330245145247338895133284429130858255572531975710327647622107410358534160264631828358674786779204486097923959565070297374160077558877908106815732398643915922046141969174631508329004686341773606613447635977829159646301913487847346143269964820792059519325859138670581351744387191405848950118816447912867811763604854534363974455605688422322579061695739278350299029509266890308463281469719174427252714063881613329371301449512878419206708606292505607685327770045596151131984660443043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23413820468275816297327086209934695315383405512327660481428984226669815121722663138007761064753945740160001034444936889621736067480409882301520610167759770674855473153768722818170959898786819744853111006149121596768524118544459844433666545719774042595078408528896818660272805161018423098749442228123506604538837399227287556221672060893118795884502339662424818935145668601700628454589052754525155772893981195752595095632819520686771345936166451575929583954004185592780757012939960951769247040976205979645972445714271002380398607174985384336903859743691892256582482173783582306904328327366593807823465012372307585493177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26056319592896409298890330527313745318065689655900212198915024141437244992748323398298604100589188510365340826787328104683918361631394862340346035734113335856607644136497025793845535866579865488671109824829588744777525242725822941548162486483376176680341647890943236404806955636125040850678871146160061649824775159236614875131610640851383275859621530321999677468791520174800588272019644322617102360497244006771955956053831038603369288469676235328482546662116071212883379602728626178717619052905325700075890394671766747606441773807242738497896574159996211775429570925550589036715523624842102148240746684479839587615079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27742457949095256257182229956505578552572949819037751294265831653449659151888010024075100539226706897564872710953199856877021320673354936222831753837063322874172665489608228803035871750245645493929150292759109859082027349758431360459750004182126225548099782027163874311428156612493587484925769384270354450328321629944288738809045625802087396525616653189817029496652770004584832765915006104195734948961387943492547677316852697281994685121170488993119389010428877280192952340603231230907736968046774934460671177439483724443754303770259124809959891391478029216399804579877385296638755593513381590029972926759654601353991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28071910774012489878084115568336808540943191929557859538275469760335863814005700812806246829101910867817947039861276080172754058692809764052641838389488495613555774643227958595654930559732497268721677942535789444415787929332978928476438549447515103984365000776354055438467990407219157577386337526937170902052025092810046139811083028018667176684614230601171134079376024327385512908606510461958972465082587299918632773140215458281377519668651649093580748152067793198571385821149591125745591906267452195739956087654240294973555817155464168208099534468028082501396694262921987850798226560703073031637929286801709888424193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24695844924338114192185180267088722810319927773061621448018807619944663846485645411245166422548795856799967195390043417106331723744764796451049301700833739198508179961690193098238355651411003990859742752551938049668475811420210667396065885226447127987104203106954106341073342780880759908458635902718994177404471673888117778637177219749049600634141772197174152306077054407132610592468160983817603925258023763358118596642641141909908020466054695936415269547712585450297430409011071564456542404028777582001268158285618271741647610460157740890108645603024957937187644402825703510270588394349136985895557239434209163808849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26530457619177732624754046117158591494416424479091371215659440058447899002563339402790502029560544610672548923449144527671017162249324467567092509500202815006323473892455853340538539655854483107185056942897595751905078257200946644752390574580244265952360577941352541248151329932033547883195045107164358451127235390312286225457608826313373862284978324279410858190614197494705403275115033782581058336929557686535199215028584654297558151621603726433756653738452051945887327668945996645332420433548172921526642982281267042573420773236519567620633712453226713831861654941223870713148823099290583861146260565478419081405289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "20345372780295199751527063526851298523205059512066063779702789093132414653864878930525054250686566208790114672924330611946186813360742344051690932759029506008723791781642724679260435164917904551980087280905844719448096615978395698996226836002445776728540431870169817325190840378092396466083949696890753497383894219077156024200238983959723658069747239928105447782803775595211580001745545117672883413129866377293754295570928562652586319480931939082398596927591586011970416646311226030403662423320221568330058799270348696072250708641878589478194995165249043156818013875378036569581600964286509699804213676884739399996311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26412378636726753754385320817482267298586316602642387200431430048015683314286029017878055894145126440388287698873176887702336900214047588997420653590072120162274169491031045866905496066896603004705432615652812239497719830941885238698512547097250821570895304295117468947937360773762868954557981185057833722660597688474628826046945422103868231295398745895488371359551746435482094312391945742481307705393266378521303660271988881247254264791362305543910080755277367281957155277384150792458889879562413603926932944214501113922223331494937777788331266254018352597877896028996304641840973758917619729717422563497002693788649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "18796284891902849274277120546154081872784317820742433022795143776186478372933724662745499640381804736182725667056488603846252819108126360746334666476959121194870754467211788097528570728127333458526705715128774039191736235771731551590817396451657134860248877662961366472376894464772138437082600525107600521930687402533814928947795127893186322903397539327554926164284733258911877387171699766163384900503182683417060658718922397817466981652153269011956966359784638174906714688247012939905938735558896725376632850833467076382411362025294844522737581407201956781606972836987268470166920389677422206563417988210015826778833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4154762129169495257279185334556257869818873707907530038253845331666861430145234377163567832539034789971010780701853168973370704054837791600828090973955875090946193509105469607673235011130055639382374238305571660005454248990438224792982060739056376555214546574738037070181044324273051884860955793599887935576779971105178288967186324607113232162362996027898682937407718586803524234423115238371017374833769378837597572970631348992199735607263889444280030354574381190994418695982029174662939061488335076560719098613899590433359779861184422569004143389545195017287812846152306797870421341037966824005758840486565722962706920630236053409229493456217975521813067256220535876137914443415645900489652132038777808420951557395566341246721354671542809264161005915140756963753575638852523654803224902391348706377180675507406404126385752176271572813487747731738521854650496188229279489321524514005170853267560793857819961717472574741276799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4012802444386645090079667974680307345513234503946845661753116914981988265130852573324486294819293156807570672559055405448180573907146448029292750062118077548819638478794216260618560851166698566894345685237956818112955663434319274875377514803344544876086697245827319277379697091208436791211108366392256278763399260105092748947085294237012271304017595595402465515123262184183717034005954455698436275753969022401412587241685722432732769594700020710532474478123918366240271225470267916810831870059549677779674580092179294787822213508293005794926237237351731730247170496889817177877445625640480577246611751360839629498827177802555102638552068422774995887055657830304757332008632121399243759103503294521111394594310103603070896867235735085569858283917317692519345131508775597670259797117278441380153741849910368295625114063887989099635111797678694315937289092236535987584000055130451562765653487148934176486282498134756131088422257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4318436601790322377402915406700132252404712195531604262440147141693803059483483289364052128687847045918861510906238898119125507696593321419343988987196663182297968328486092975488371529352863666700716601557272225667247503350608566968901021501581049285137016814580715246527937061639323747987090794596637225193071298035612616473791495876822371757066767104441406594336990095457195477327597366178599493099521518004807120487492448440107715037438705944989457929628760042635000410597318202925157152793883055894159183641050439419286925281386220631974797301815362590026031148033508816834476426058665172641890555780205416033724290910413797582023599557959575106472548189274148248791733047870850770679470800995995816969583377004710075089894990720051020975076760144421793352861154570565554553563725102687229809707198234363164484274976261046233968610318147734713056480623887746276590601897888440191754293949338986269495786491017417328105673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4743753909160369458151653489337773598740469248380546274190298267246599100868012940052768795491195776555142688163707987262389080014752617949808020553898958640021869635073433256709993520117343976774769040336003325012543387088382631260842869728257634142185040911089933291444706571366608905816570362903592474536246152700579216070985241489067551274264483906301059278135858639473876026035419961815398676465731958504128922753655452959560677874098045908889677556805544685965158522106969253601471746156516289107626992943365566069109859270074642389407061236730916271228090448559870772055012282284955824998838997799157238501121092540091559306011501233158997602029622028342850260111091534816308626273187817877420059798847786338951634397068692045846072299688244728712845412647536173686298742565117469856058829212366158527584675047961759288337227071573291352689401194181165532305173877078068949948826243492708243679073038597604181852408807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4412116855854613647988755707043797681400813088375758624857941864087269506478612993574880362852159423997317150755827740434547185719979921158056742602475667982007317098450615661774058893560548672735289438687687652844618115769710572769543680508954541452672791001504934974046917813476004514696980518213215739050023927797088981757099491146854375046336606731144164637014433796548111221932238542900705402464373048611447021409626742545430080674865076190922995027094637795420661306262010437523258364281194211356629909638376065736235471123988508766717498450942464943780823799579712845814580089420760535937010919339473616616571590246075465391494040119442299879295225221378269638747257600450641419001960155152206594718740101822237657802552599180913609112532337152859539683666801416514058901280860100497771338732114671115455061171141923637441597632262519051935795279101245835604398304217772900555985610702772058847600160782696321567500117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5026541226914239774901595468613089777877664237292090387188798085737642511512647304120528719309827208745282752140551855004907120602132516538719246422726078315692203618020395094083194402017352583292785717424905040778089198309563165000328221620672229989060629989207734903071895297244407179536733865571632711662494789814468967255999292743973175075265591821743515654997747374899476158846686471331278814658773968705860940385156873971515194961937019427990153920354239695056348499740708166688673322760540832026392072485842717107249171193951660010502843454310130935298214010400003175751575849096367515960521288580798307323039140288601836157251429678196188006570097806896939013706095056749193943077074145731299158626276240017441853636484995227026293011670790727569083501406661775805195863549883243219698575927738704514398041479656917648200831429986500073866780945632977316817596933418423203604152880371031960429093150765324821193152567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5616089519095753522345838642169833379480629861700830852950556634097160701040321439896132077515248865574115559139569966048952924704371105807005259642676997881898851393495502661617736020639375282644444867214831980045678829647571936262614997052310501895798038747300704087234483469773683264895765473858722707272590907941281191828174058422144232653947902761371585963792311963139840644074250502754270711844822622906374764131194192337222454461603063352594006893017949056484320767548263017758266064950525386831560038089929051345448562640452732706771121941415626707320694510816900517205415202479355661260868076305575428952351854065140839987058740039587194732034708305603909373177230916637173874799421432762512022232622529333924350173041169348312223547015470272788910688641063109603267400936158695132273186927080733550745795459902848050918036377520865631923944249830530388350250163460684221908270338087511037101227860932070446590603113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4897547753896357711305840328077815816759820016024285104176911706887495535589250802050192668324849411716183458038381745082156970262216577456756516199000652232436799976542417879556470656968767148399705984403234167446882355500252474052599961741879237538137602378184909258958194449649792858048629007031955324823935302219758176126798460349714572327279754009693404585105966581076192035304789184619960820552083132581936691054407381959658241157941445680612428573292935243794580527771897762440814757573978449298994311852597304824039144800630621383008926993029357761422945565358486873809765404995368554126444823908726406596747231131161742646807222629364052914785708989375945334868699887771512946378501313219349152513938505024982962989249188374793976836759620380109485485272978293390315302223799218371247341800403374973208592731105833560077957189279310720260450649453179552811674634441009292738061087696916845478355246984837296380712581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4307461499590080548093669116914429069606229504145529106758558224147306010264518952363033580913541471933227545599180567974146565630049580248794342334490043625481380164769262241374606261450473692241592328677195288887176683183249306882648674869495622317918662038711594458253100043204833627754246989743100178354267810051332254811589283133623479697186565210068948832759995809549090715459381806911287834942144375742907264758330722953775565944483168559971344342781201243523185373213590307008859672120834490911386858223594448152860386678393644908055070576635509901084334623880853960544310479514246660239832647499587291576413935454178301697379692440153470228963931069072013733261590564355174414901002600715973723283062458783551767748457116294056007626368211861453575264947955309581767509406604180530230347958365643976907606106107571194566685722424210834196411100486237476046477626474645599115692113798473112920574862880489420375162317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3918679750263487239270634179737312471787544539194059368006235275923750223200720557459944717808462567028963942860436996334722684074111744598607035948473701487517329112404239014781039357008563245463761199877136541035723853356601620835551012463660469332430241645640107353506172943941118448194522517728287723448151447797473612473784876280445439045258234646576387502626034292921792172518121341545494105415436264198485436647017787634191458606886538562817785456048074875086306782103091978868054545826517701341565058942997959405375394913826120642110574048081461520746051623122399037462741315404282059631206229901476985969984372230310415249550777634028371803866074493036837802399659232475588870314487809314618920249597229735613954029565865417969419478810976224064219250758825837739204338397164706161048314446279742622224525277995263508574778991340695241972562626488544881504121625412863479921308683848495796449621356089274398105212057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3960267725808741835582535785572287172252001945448095439581957244945192437753697941097007047553668917198513939589341288990551976577040007517728560151505407704908377617172183323070228570326542468615589628729230535172441403626928447450875152606458054603035738337468959639769441625228271795082035524800478409792307945865670582356023737467353384754189944476611447266053640776180859868620896781170365454255207367217849654722620229830207334785764387901184744791766149596341827812605362717339120103918776358248952130271962443251706119350436154533905852487024444662527174315334448314805222913466495944144846676557514712289443500612224728978886940644287625805812832465017779392231228156065740134670440514965729211977158410081769858292450563545151258767785189970633372327010106034413243194059351937334104068764354331058197074746618540213989322279980041270449253793459750901004142112265483988963989543654452398397353872531242991086323957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3697773469070196251453020441092983261320706838761658234415257685784160116152536667037871221220904076615970369701877138628171040535737342814666626543246004379035298823739590765473076155339195658750071906910421145798978716833720098602379017230286258961225982585805541231648778861209029455315896152607754643491244828005022720158282358965932645713269133554091012103613746191294303537140546883341078961545848561844167797961717882191395590783892315668349208256598936001802986672598148059805637215330900707082765686346986448746390603623074677378272176496806606057914316045661872675002331952907614072355090862387187608761653342873698703648954563702806657401037985309685089282326891969877021470220861092047436528913061535175630923248201553183148944047053562164962195067378351697696167372235853016460462919984266508647123468364232871447404243404777232069168224457045908215275556848137520157212732106535981893696723579204017043185815003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18706987185354099129908568526919589265795831723112553311227490201564218395397662866726665672240516568634268036666606073700418321290852996393286924636790535357908956649830897535546557186338610195928036853776810695853074948533721349084524761645183937182160205807413298668469780496186583250313846265755581776044111495935259734351244024236765557622217309705810881556880711067491878937970389173200903495526889729960290364619298734574565702072980784302418024118697374775372215245318767319817130696391743732275098960186511814416256921440096822246240759286011301423177792116401747927361514955670630564980114093988895403410317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19546832880617131089518506040557164823263851387965578876918386311528081622247289966985560181336350167017606194961805422283872514138706285903380669455339811098091470812195467114397410833820668006574843036935356737949119680149782969448218608837318187314826466573983335557762596624231468630859877328132006630953670287379976463580959699806309107398218460009848247267063413048862134206981948521068381970745118498616444064880097002495747193780920545867534338707477396398860976024241151546176616124454843648356599484982797259363263107704198985284208619522373462390235783774530636327796281284889124316843936331914781557807169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19183886099921585993849194433967217968027778073012869040646958245831802816282696066038409855181877725741064029215187491898446176811666874382035321272431775138862410248239407065546509304116093419326087753231195666231248858592061530377668445669765244433512094886230750270688409199209439453742310567546478481246688429055803243592495435138999153526944818438245741115533564333440587917879087385263898510591654223773621870984032411388918501468366579762460148337871682345533580459250392243120007534627978325916071008128616226969326331223602838446109541625078861891684175663851694519098776375008004229461180369436239625301509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18250009763319268959479246872145985659529502695342774234478334892215595555107885398109546799630067102956648856777106032812383290248490670399662465737332198982590420990095674007004357719336297431912355157843590605401609679805040972276774826774531610535532672422096586074408086336819887601911735652615999457988334484805178971496544198471861211648835344520221494453550647040817897142574727078565191620107501541178990129322186969042910792560181740840775071335749290449798355923159018244125555954345462381575634266488540370016667717067741797647799086153326073958700630358989268295820314224275827187386170161456445040687021", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17433403572792114380980624587628865174300915921717655835416628855017436574862032220543047841377465771769888244365751611765268863886592176946387183751333342113846271926422448120420991209885526441637051626074195794965430445974660192215112116982729198708664026268781866258493602023697044323541167310117454439481492078090763711744024767425424030619610800110526063797486835024381991147568935830452883589896083208084201028266091799153789545173775581009262667523163717497245062933184107817332037081168795405516228917777340215015104213357077034708564723549492805026021106129143087993538997804219634056931502567232613578153301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18994248455188086674206124910138544167614061384880558179659037173262992221255915527159609151055962558721705554623310398478838259612660993986157947680847296662055916327183312183741969161113929402588517458722994367326158019361584490646696437987004542052164529674601719197853293075643380166810844019109413699116205226968656229165637501153157399108916038553584558943625056343256502985050531643678783484151649666408132594016711991329914702362551976613466453547652719041219542053047566404263549878096053173796613864304864471499676546308383574351912437516218857225544963867160714879266865225281281624731744746618054029860789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19201758696331908957276272900520502496615198473546217204060626945126232134177180577369633910199886814330603459905574374962460608234758112248903713255955585160945783119200516145838007866456089220261671448804603451117613366988714519248271865037637657661061782399550351683046671611044458148526580575460939098409443459467971280616955933353231590183725658904623094219433481854251041981325952168261832409808582581547763142090270316818352227684430477229561994104125153586951592031798256043098689607111459487368726672551145579569213515644872118679476668724526328026692977358747219578328892813832460052129301720212040445216973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19215428033870265503621930865890969745125681799821716907525241067020457954580512733484790765432358932464012571434532767012198373254714677782371645338482760988834249929874425895601164867299367227374946404076246211821649713427420996093802801942862981459621753530388103554938632766044092379839769767855418012871469958526022279490170757895281036490139876872878296466277162587287675048161912757533573773992868058594611524304327796769414300300475024348651036537039156215322248898709937270214158172369383697204188807853427594875359123831362373982889339800800495500408461545635381179475718807396279303396079364306780538663537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3348721159025907060916861810175480984377632629223753144337923906198695435629773156347759870058910492994383738194942981791856065530121777737676540542991211677521448558496233932394299275951325951948681608376952727676265625144642448148748981976788417470065500354388345235575574767328999297471480542274676936083415282847001001906802338829763701550164482600402404952069974436800154321483361648322319847835309706433668068184104530748125054478853347533662700624250821933458149974048536978177028399262252499938798969389649458949213030731336430505446503356424398718902582049789166586429172643138031750222885318795325768779660777426961059861433402718356427498323037445127369755785763880947080088253496496036187917210095916560112050187964172966243717827259562060982728360163154546780648177448747651452961161227162337181859628450672288299258547022475152348911007873785511647358448302574059657119030278214281630125617596743940009067985097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21835829757268186300624452955690690", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24631952210206152215987418434783997", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23221402811933646010814350779627834", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25116417277308350156736869559366398", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23543982439738179707955722343987754", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22727451016672223121508810669298626", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24122770459537942464181968346425606", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23861181586862339936048303732581147", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "4254000973264259107762796745566759429420820233644714512756435989069461694934149518605479006479771579975540492559559783554240666519318152797493961540691167399544981256168072338803029606814307637076451430289701865244391412013057327677746194182218610261969019622578274796593282360288103986324671547001147020319945621837802102632817066729860098048624304875121407605423561101040975188638806613502784354263605465793932380110581274315477504037011424399942171675972234372106135593942386442540922992567030350103443270489947435993703634606195625501994754000500269642306802309704980127789266761651452230899323914729961331457852667749323334467281448396062965755708594222769355731431291611074340548954106206413342297713779611122991986518890862615169925357957032297422966803242821097186431557955083175410205010462540436895689365361186571621211852213512727984577772038719025256145774701982326283321533226357339516179655804048613234424966367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3961765574085831692178831591373964201577110375054069105140548678348451652516465185537953171531764538595434989376035386984131010172677689343493357143811595137280259491867185658857117605479821887412823466378945015535207222125751134164547153835284955978062910592013072098757774655874659150837502751172354919940003399952848907094917427090679400446627198130266043178337953248283005576661466077699191330991998079914071730059240744256991758075050771772655988292353480818767342947217658494713952790250499754333469487336790901222196846378927571343979459661086877233394366777054700983231266407298002636447128532888321546911113699542709194929555018420535685730128654711876050345982192363032804209505410887897078630796857648646526949845104454420771704505029605125179442511808649099354694606421325767481193695369700833101291330120404889269087060300312784575727258084132669883558349974563719309352673682157367959855354900963686989087373903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "4375077492482870202547681146271704449556101967155584594122390545935118653786684911951179243787793481767102653517635060978420522784185833762585533681993656393689826407264220629880794518163347708477695704235675660805759566917544458138267095097079778407825602391408172112072887580396018039349497930260621521607427931608654496622257747591798875130322654910691286992258840085241741347792845539073932938838627031360178043836585838982192298028683493547476293479554500654583457315815911791293335139161755631681564811930732958823441578297846425177784930120640797290106681338726686975722849451738805841453504007643542956223784690143357737771350027475157734703256785605413501816760245063641259298892505024934062811562970483709210674554353795000640935471582922528794978788011812703466057976111957114848657795201179240303594181670357626031999658637671825815628908023122234882162958704105899705519396207249564031821526251144808560085454123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3959989867624882244120549402230051966413325905470547401761852765762824219991310238867341368929415004167328469943782341673531020836727853325772101928505991652160098025448168386500327605851101232513010996423387194123451402955734739694921645176037650521556720572052955279741140347947232722355043411206880456195807039766610302987801722996755659294799230061191626576880985737172402139155376003948516985811334965621927512849648668227670177189547607700786699590467383080177285188271748864932602731654672723442178204850331071131668861403411493557374838442859667838699110796465902473530569046506078373051059390861942859693589375084526740588049421775584696639161621897977933597635576079090302620986441273576678842934891313274296863094494969832051923978187733557679389225324009775972596598944544774952692092906505393573235824319181566400202111051661887066492395175242047090553369973287014558973165990587025374876864306477826300397449771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23636053022988568179751903728031666803990429572804095306300165541247481678079647893801379543919184694153335173009324233241357283350010492707269904216871782506313457405886877410513975017964777032794925617675162532885938924150194202455398879432875020154427301741409652248119595416439862033631312898520059533901064415062282944497239059795649211648212607444940890885319703941923394518779148966705538768306077472175439116859385391410679747058648894494410610413762365536002644732017560451680976428934749114080270485604760103028109687628448267057732302723164959385121093911473544951611072010138563206206349401964432397811341", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26760983607657145917623799955497350845267013748534871105482383209031143425669394726948427331901944693014606860652651414585566671144595284896338598434079270849224786362908906990637578161274381243948578285907948776698237279008525299483812070687945721190199782997288288672100713686665764157876544032469876401734750242715215468632287183239910095119821302501291095854084260063191436719737786624815776377777823527104689735165517475494839708911123694875950210375411311134729029176613267108011385695705821684700580708266627321764153824568567241458939920845314113989630869624831965811777474591488630531866846093327153051507089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "742030955933965594202259223320979575418486416303696728319945603736527140767123972057761422052949468905080842044699356036152733642003469988852703819431466462079331528421327316465733842005645457720567291989319505013019199929295331445354024528666658555017951036383602479263187608526548498008516268062633802512633148803856976730785324274699385304689630440928207509268738022076019799059934729913921825817714859149642924261037863366493639857810620841416855798399703999129585015823987360339989857329270837996921725159570362231152192075536631186275737960533896869154409024109747526465783419035830591782950667527022754304386219066643096453706543053558278898044933089345717466759303118678740767963413339502007325973584041164330061757830118004989010082372244840163501562311822460677260705770544447017205427764289298858632625611667881807420400775525196947746615243161833097541366263842642634318335417263388098713307327377540162586437283828149220792072572320021779815385793571536943473941742935032939794988971624461026093174426910202174023703057097505746055121394698760637737580391747969749639496241077023203536638512756667405011380897243793912186409459955021223490417254455176868193182735654474154094573150448690264421514714823178018144540855441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25470149369011258560444848764670025182139895367466102783109974143367075971681274340815359418367817147913812940043102071462651217467394820168755622313410714952393201297400420864511128819385392147706339350954107483810135670880986319686636007124953644245082946498013426781216109537233109497678881897931894116941772021339649201682724922122314149693984803552023258485735338975334793725753447386179120546423999561244199465930931926392217661064300791904735968576041179319845622398937289250137936412959012853536219414337222580669858979688781104348252090260245239669976359903829135871619480448423154562637827784571761301958691", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = AE, O = MOI, OU = EPASS, CN = UAE CSCA 02", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23861181586862339936048303732581147", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "24651095971267329587340890129802029540350635719694334593730587686384943463429724778695121359474442097812186962525755002921088051907400502157639657886931070710902987503618265301688185741766482385133576571985012013775261663346104494714837617689259798479802356359999591720982240798556268805361553335540073323844563627094874807778242654934910111339370099580264830225571888948107176995593783685748557510252099131604495873135552331349276836031901739301863069845028892884001074684713852681747977340319152732735952697297074332906125241429056598587402941794256841270926689849474967407767324665101815044601464756207227603000147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24439183784540406581522860875689070479600460410043562761567515566046430229231987995803933947906854933126089577949642215814264194621876122153565289758890101542425355793731732669494823980737265874445267485642127389278226491828824542872642492383409580227054263634043843978790166179619880217059671681783044613348104403969141009566106490642502114630008168924830747834585971252860425300626779874990852570416306013634802831620832988404268780466810045290653321519253246202002861773318388157233883368903509114883534402793799785538506502510037225789199051967862523364834925112508644384856520560909781201726021717796951128697279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24110019363224780774213669987878581814731820465750356804782263774938776346732356540341965545270174013765634140252462635956609301951383777145856867312729135188301992552885434057942523994457499319178290870934330927524107562334461187585489001856234499685328654844266831179725920859906204253137870190133067642490134234044269333268557669533402567426926959198192384784459109359054487386313000406399260558658548031192748218266449935450402351197143253825477341065281883014739153332811609315408354216857081964730206896514094545919218011183278012621804540546543472638307234127051473759509720498233997608595021402667926888567643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24717399789308424437639087648909617", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21851161552715466548184543481923667", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22319004804835116638633583993893662", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21031135241525913444978140029052492250806573602041469064676276780082226331591534500119489291650157866848465772640719538900222033804087370567525391451935032341084055380817075558051824181499701561000432236438862008776997365731077004949531834746854788713741223886977046045084767274405114622232169716238883647473067166655345107119453811999136980347097101329818318400914164541082676959438152427982892694505387379408925020170867518308959248642579474450282086234859345808738548418359245978288544476164926942921366336216245793991526967588653586221931728789248939350664533357768895902424889995474846858298486545305813787190189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24585586152690198849185631301733933732401336677646437641364856540387537422608154104382432916083029320757496023762781089728017440302814118386811061351502783644988190481646279063700414153578190057819835357962240165176934087104521079838486262550705368499035330493471650920543270141222458682578127437343023770474560310672951928126756361964143433978021707418429504711431117649134329900227935315044672290199171303124718246632186110454141160168051623142527015091071401202636887714139385280306553635389222208178306548875869716411153309662083711008186487670495298935080953300888685786663931353928443845271443233958989412443817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23046242297566382329726777430507046515134154919218448563999508694668105125559898342383172495758203656102080931356763453935787835409866255879980373478951654283385288047566765236574838583443118586816854042492306728843794202354757042736643397310837790496570300619761568247133784919339607657715357106133388656754045888596524705170814339679105677457766401485842848879772806210635463046390926061409033861964035784338901431087708012756344276185160912114186989816249506684544983183951019900189858360348239968123527878010363100920095128551102123470742157845052570191881970483302211727596189469784077534336605204906966389500787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20654795095832420093676223691484126773860526171514906589080790102180469223324824223751473891731700855873855235929959681198994985424651793123353020034561591032156189668267168912428423698286616220528761983494151514933178410588221329285918148402667525863122660791682136990823412895382411660992306508145759905619921627801253056135772154609302203741087207038356518391728425878098792849033472527950644718036067494430044482148959798890112099064803316977244873555741225386689112780554042825487989785179549347314684752822048130776032698571131728885640845072441040150142769137659197651874258483756279274439338898017241169655897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24119945032426978397344947661242806916137603074246406459440940384877001540408820964002284946494903746002666207778865692140507105633240768815623389869309784664066257040515513096834870297734677284071438587990697681442048113007087153273716315934600052103936259149699207224559215449655264618062788466328786570073735320895899847031287009539228409784286449413034178025635945335243093892725161306409420344488006634282241061065322633554154972972569451782066025555406151654593487408042317671595248647781491777408498065813005127502866645248390288789248508879232834945630817819875451997273544272778359947968478447546128281219289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25375036487791029378271135728271263102738333020503776935764511760497442072967340664735706886600362378045703556455451414278496996439607237470954415219062916172762267810932920387915338463609563010117522370499003508804301862920973234024064552413048735385073208909272839499121336712923476339740241522078269036950244763069032914573013362882493368318525330889999762040450625106356762042002132099068028095345249298619582872664228209725390384726368046685301558546734960623516730995940554440698044412708845142161023577711804911060376620436296560823228397580765374852868901953420499050979184073296010780780602979260186634132051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25133969099925238291537190412456799067428622201372612372970594615036204553679462475103557179188493160722806755952823558449831207923449595070178156970170209861077692508422940530877546295109348236781804674091598678637021949313125129711629381371973184848393436962885469653999615804197034396557815757201635509869137161650908206718049935608064222747913078615238352684660615237083499478195809361579014062784083247414033817139855073075939172860772641502252587139814156555051639680353945539670419241980546015399370928706957888406785911839680828173294008483205064430709239263010449652595833354681738040400871534781294234911567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22850808759165729598477096632803844668047736502847594846782588120407503152687836527913744483723438837793619554829058024485072381759773883598191144117856871483150183499330418947707129613754449214388227799917387481079293319518161010184631938103789285745280111673430541019514349046120529514516429694502251577158066351662146121607346121102219053219157798108070028001086968602892669908131586897260375950903419383704900165436389417122832764956659261560884238932705764461205650251800333152574253984271135412922845354100140329569094030053570271438242159717449797733351236512152403413849821161441664086590739016613747695160207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28859353162773664384176632121832040058736864665160509667412483700592962837746140999536147071857762763086740241988713087796237240460640622290166789205672635560777906187818787940123777690555540965087624051218774006316501674813414966141163309834664877841425454848928358602466106645102271924276196197587999311350486529681773954558227214890453748641611702629621611870634299011617989682567643467153900294524208747366671567585261985045174386300354096122837465001675474529307179800861959646751905124042839724605737495078169895644536617601022854156482664382188706449233783762519634739394917959784306656872621435123503754838229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21479581710747245259975654696896680666939222808309811805101400534309626173283736963941397523172481071606854183750453178134195439109048623821713985856254094114103748763133558020287708954323904486414888694717069894054979066537812065244948309233374340697819275922721831161748309404351847248424576569840629682627788518382685542302793132884226279024690589582048676221915319680599541806983656465739135848710059200356126842586063858730095814686303226648695479891531422881339313333647036603530141311487952867250259831120977459919708973466825651288742115325835901403589470516776876579364039890325592971128577174728033283227909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24660813277861496490609601657957403797030234562944321042138249619671027301830340051812326916913872808929471889830519594675638893904680425628915375492736752920583858036243585443095434625092566095060389021829565871491200399310336732670130934991129611468389419505041838416384711237433226947229309188375267047202990403246154120386207375687131866319072242189567934301206064770247091431401684752669144445007106741208076401498957948362592179196219755783541195361672762550526045817044884649668501882651773242143959521518269182029292564000939917819110353985728547100128773335055946376726346778202507721780285249206253482543327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19276537384659304933875856900060013218859774477320425295718415691591399046689308002755874364541948312139706104858916500292467951874150775228641120323165869342310733482519859690648140973269133781919294054647686885738494740835047178630751119293786237026774442293274309712728112175992545466390562212177706758268109872661788300877739843761917837800154088090032099162467977591941698037875286913448830976789464483445199939315784160715651988762603736476789521530875724285568940680404737965119375369953486885438752628747743633580333007208232257116176507180852142486412095365573269906468124915871462163242702695158520666941091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31291953815023574396376759889751235918532995433169749074009423881416378974420134595727437566505388564434051264631611524538607653856155380503494506130316118102152876825831541680848187363928578809770628739214969550599334727072433484200948729596309494964445737992737594163808812376417889697371076227874431228525521405294707424667013124504856346655088749046094283962922578138635653103453313962725743997245856998757117447527469066325394293664827940029954403038619943591846951569094094154761323633312221985047991640179199042763205810189258289573599149976395472475529824264185715745939637897039487456271692856799620696174773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30967895044795899579642086959822885963302063431217107581095509528188837793122842860797220547459343448486075632285168296405129868021055279485769198425666770696074114316110766594722260494150243037504740300643738535170790654317120945929090561822493617768118573980970007457208093739128311883869800689857272775501677614029705966527768239058297283854102945094962294009638227031905271603621241630502654591588284250029351329423053013799643886361413235361869592683947465925152769130781308209708996975329463927916199307364497008961920886598911488277493237428268924072868815484325557707590031178246638766378565318897822322936527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25755307333498160520512121476601474289631176526713642152165236298228062488442979165991167230716969095172499923693996540456510479499930418137875122076733767920809156483413988170643801030526229315396959920686428553196261188293030688213195149856237803848439523466869293542260755361386595674880064365709851455857437574464602780473436573667021350027590218377482016827968308281015037857554167122045262268587159669828322638850011230046034382643360531653870699303413082980693644792462632997556901799852502815828989106973509593585974232104259704956293038798300417509455359808644835928332151907863445748170545900265772637681723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23385039739997846330577924445415791393130700699181505059426237738678814554608977184158450550747859877433596857884815367664494037623845027980142367118240254482237635897560100935129595152669753188124943101728871947432050942677644500972553747547588156515808099489314034611711436918685133856170402646742888572762758623808193755410579808579590977835212131888316815160851630813052818702352386252012998117316754744990404576107029700054817925772617682060024885821239651616354132729743304868407155509829980087283782545440934867009546368531175102779135867340696028444758500849545927658536386390317387944785311144784275816931499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21932632329318532911625533315418156902062045601531103145284564186390287128013733494704915194774795458509683803324862530169631862049210875679614087827312400537760743724219848103866579646781076510243482423889514611066526759783740022531996641666837403044861578147335613650301012486518238662914338096655868928168175326038187937122149433475584830753857966204455290164460058247189392021854779095900734142016168653384093380766696084423373483306379411980810508804216177527254030947416448147886098336784424518097647384923347764982223268228566947566735193324618306155901938404141724615051660229926567411868570003569634619021727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21230943874925163038212249254064702611492951380933675400609262952636540723471862511019903443793464714677428340540414466615160844154053958779021028627033035240336205680162506504395990777717584121153966937192549043050852913552570990320516021234823225035590973778969254171748714546831027499009176355308531085306763199924092655741952234149402619770956611372722693906339890072452376567378594116057803012555039087241252546558998297213904110293428397808890154527684554086536676991265098859573666925760356456872333696096668248576665747791139626528299349430615634953937422985562419733381547155245312496748403494764160023632749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28832051788192951455396854137821330877917292989088522560025694046607071954252948724892405937978797473731269978112598556717340417145995696921632547875284752816472291688658158082925697049860988754535399470561132362837066519116405497274564789753166948433041753870062275273426730554780219851853133432912640218974634915103193100915196645396527448664445811800515231023537001909795723911072101780670964221021231928167614623212397414442595226639971994084940308211009287772618340460650078063857290665692787903929964734243936742288787770852286311143577112244365816387434443283868923181235948846984390667882653454157087844076263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22961283805519583265874707258147735078544559367283480858597227633266275991243249134176823952949422565484769888423183618232570164517404144174676068149639417868612288065519457569640632460851602751356766552218655745908324402268551338566840499677825901129512600530384207488315942968897257668477244561168924375599940373784689362402083983290147116640181855471497962005770729716659452619207183662995124429727998827704263808497622506620326324249314646738154465815470622381691385231318908203463524235345599801103735270481845126136347524137437663253207171313966658820986039143706103296340920763359668405253853843745317376573009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25406339891135196842858125589167696907813250252774691723228333829605012678737429326702011961882031472478849600540073203532197732812876785254623334729134122135560330657189391996117993672462167061682028964044451931481627257569661502154315594608440170956692495025887317302942820237897682308385754138621998772045810828594199498283532055384127754776178166648089019944944168549895311601571119434345781514163723883515813359566884502966604412985336438876108289908567334250708794469966108637694101255874547027029255897911687185723718595970813857060803415110143025838902239238546407114680098551008944677330175324059959989307833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23450847172126494793855972116875173608437220429897702926144029877237448862546824332216297825564321040739686136840162806956233855839229221878323788616763176616271808262170169263472078830449022622334221330338880317788096296128407085948011551935169817141131364366662974260849413809253096092883936163682776425147456685058868485442769381633052747139611315394732166038318012733393183929148210724633103449255231628813349169806491292717392565680240224177697896110876194312932569123338570838691324016925246430271290085339491127767901789715948426004185698363599441854955705405345228148052265241953766161670974697854345829458577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27809209674709975583960520479151683048785636162586064852310021766664725281897095419904971364344549372442081943199039191412233038304141826523071066762416612380076377596346992086020582073819192621097667322579624081662608384812566377057520571205302194767436651774843520137962144020592218600259221899121199440209213987232000640801369128212294552549538639651371335728601127000553829407472801600428399810047720525522760187632315026421587380803417101413298041866498144174001079260916377912710298140531757208989703192808755163831168123169443198082128681110505580708495841134943028170808328599932407595335003122177582075388497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25585071852412333502304112934900285161964909279335022098519708920613642116496625039903713871718637363861774987788652274070574925981306403335571411264646141149896316582068899285298201007857201713454219815293885225264806799185690057284106763853468045740485548098803590510137873271052541971575185338032875961575234804704473259460678909555117422585762723434923147508460849528850708481155094590551539814347313614503859187250863188084631146607522464322717403020007891132483741208136732014958854730876673887143810077675715731868586864938155675798943323349521429995031526359379563140724110215948114193080430003340153512261813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20565486994383426106198779659210364317701857882464636603107198465092842842081398482511328601165996636771624221196466823304792595411635610068184118942314328611414159885156060591218585593957182067438120241793498194449051354070163443736232071240133785135944586634931056002488170413893200710122091307247520664031373745942064690037143343917134462285393423216854112379839707526505489489796426540482474427960849469468238336644439415264592582898549926425296668272496866490963967167601424157988368340196280643185203256666041855066136018789468694451171450640391380901327073271778540351276111697337008780897581007924320229654557", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20328177694715798111146994963178442506792127909920008532132752875781292558969034784679081227393855642915711280138088195886094651103660045048485488783628879362648329091027528459911172803124586218097135641432335351199439166574626168921832885374538412782008019708214618179334491692768078570496957229849958343081667366312361181631824572674231875360509129646944151766798188900570965421721137635132097528894039846243238973042839937097140655326950177459020335363795176663505992468700982946442121487511073176819055912088757903510001995605493807223508969412464216502921778583676997180603782578897442626328339999976315122318801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24816218388578581051713514133262454071836608160250864109573281017326997203320725156959311392867667982148071497225167001347032716894231978813638841566785909143177718567889617779196666485051497599250037918381064622662343209217412851678189935100762042117225004212591364146406342567529699165518772528497657800690345324059844587472962153094171220949835768499004634646760364700283574898395503409370141851045042268038716115554578973068418621156023182495628469312259054003262009300062925576707833914274520726718014994127495344140907954633127430919320916006851280820858558354580464429814368009431779966805769036995439760660107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19551026543863616891581431714557865261752572117464136208027570202937254754010115131273688118890814955051676800544055583408446150193940006033732683511140407763875543073655703426814765837234276621632208605981533001536400297954232806979272006068832432167015768579705498116964257045486158051126786312298981501583553683158676402021612566696530111867338950109801155505023607017969745034275274834750384829700344936424013143435121158703566359583223711419637612161031802777314193466223499010989498724944213109812364704399581021063124970982337885814317625868997676051575510720780946084204765857843158274314783686649323818608267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24769971204569033959284831783817613050017000191848117517028494810356725996609400550919428399375910061523470949011893167770188977482733866872026188477240626945329944325266282533747307424423583007776987528277060280386399243674167499286016516787709636628637905097157657237887924107328201684713483477866449702467985743448310699846127313813087595659419884362151258070178784123944944879746316206104842215346385077993883581660298713925192531200391175543381653219570885519193786085676674888059077126664126367370624721604293074225956404430356368402181804176308165434198202241523068799058523936424274286871586067399252527706251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24585585584818252532091332459487484150703119148480966924063191432681178467973431499625338628731839317513798319651956921441259725011723402029996145600973589434825288886733746073187763866698004042645963122434961902646693155101053177616339333418933474792597526263722234754898980667954567497312385285233837378870409133151682913977835290482983922733474686297154900383318937626220143316231187030381601987251012256922450241889598101910455651733604086122009152782235139944817393102701656334629590423100938050350559835359731285545574584917525974975559515675097077517863093602047609909313659732022049978994297887766758109936259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "21548887068398883654114123573969866862064964317978122123013164925115793497722677873057246743904201613980664901111846086635304225993751776259258305828678951251448055187242565862968267258997615747813090586467219120614715625686826761464375383603228982807090284045305300834783474776384471150958775074340337103348679295952243536105368811231477713083932888710366857106001592088556504871251154254373011541349206906505668518369970806424566331922630695173999265259986091982229628654816092310474844898279925210030407772216243925192297148798885447917196398505638353567427672012084945730806222105460500938923581791436204397913047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IR, O = Ministry of Interior, OU = Police CA Center, serialNumber = 02, CN = CSCA-Islamic Republic of IRAN", + "modulus": "4581641533764541344559694518768188519446841124877213867325080471795907267639762665144397606547474020827604804823469789051731584892097985686066146933643994413388561528275943065357981499342851863457294440936302054565011965732530849657042776621736557936345624380710022469639645120042971386653359355918554578595002292015116087097839241563760683429896435365629864011280220944021050512440531662991122726385258162630903556279641765011132187974935072192231824400027662077630416927742898489064999366783981479003923967944790074504724972490597499800139288266835948082926449842233858037249981168588876388211446513257349175334647868344177168771871714913785535625777387845754513848782462735163795888147878174768006035684573022186726448336298358672461457156689270551514560029727427236411400651542404537482842132675732275512711603174431680094795357156392754867645694608789369866192580702141397191044623869282079127904633837939714752008815473", + "exponent": "60353" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "25888454752331500536217781353285541399558394101099430399769892637414716190148580770451739479448967115388118260555558714035391718980263516670243884111110087679325691864220715413552342526677695566318997305995069182202584990018344444170731679380839913840258934988167923514898343144011986856140887742728710889911905201462888707395854709383004961462639274992119721261453551959274381020822336348927903108554112906854335425137277974521010903335151435322619138108599092165945761076638199366059978115779338091070639509517838140119731263856585962651838704540170376760573465172997873637128007023522951499591214851280509167091497", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "30513714043176158961304335985357976929645144000033561940699440995908003879614679694463541488339451481356851300302883082658901960155883836304040252502870424289088809354960123811240108623188069962265493459444215881085027847498208960015915248173607267774629486857385768822384577021880687592439537589885674273893363598380444226029531035307095026703871298207353587451742309353019508779560607750745585686725056193013595973385636687039251033124058951314585527228878480300039710396864991796019293101480582352426921849860924371793698441981770275558393752449999785820649394695240018352642118666958044942965785783405070152242519", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "20052190422325949444954772542421040124416863856694083329409884026290411017160747762595479674159201307433268200919128624398155426551215739071434691049479917274474549754259586957228896585609359639828512543153387977877348036119187015596012095764667755014897913466578370111201042542316321206108588889501224273499941554124962168633269031120423970748647071296129249266311557816784266599853046313855586320822709600807198801774300870858890419303373735168649698265738130165080251237924998968265782096305382318445069858448756021623887419855955721886732832671364181328131994303932225141301169437172830271694194630488913042519467", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19108425849819241310191872462088110645119991074810915481973028434954616184417983167439664084099881810777601947632406352697017046850779639951589502034541809042121976801897738327078599479145285483548124005105294983190556604713295600826779989466610453386637451376712962411718421646468948514722250932957489556522931493686348748707523415776372584245084094950571587966523641723222549892401344674915997364817905761973469567860843075719312119690924879688812046274427000786700484330329224117838949299322593355703236545820438716844216417324494163534148328840971753373844841691364876441668996637905382591117370477933959232787953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18832415778053090080647015055720410264541950640744872370833684316788526088548098562675310327992459640503201098769804812319997721157007756961893687720162558339799623235259335904095280436990126034169786008907448369120830759977280555744454707140392125546350845606482667642863666163082405902028567952449228823764817186910821380378751519541083049166496377964929144808966645137919417780705615366343688269561762118927162634987172035835445782624656970047520857184252095732715711232019020019243776659663348319848384041624257464772311987307954552850739402048399744832436898542922421806751816691651394728982270155930564269514949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21280433042548705302646258559017110", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24653419945983745533411908498270723844898801276779947333971617965008590668146292650679978365548997024934628662795871339252910338046612989320841750628375066358703106211386015737879444688312584144685127930792854640893126543392140116958423780039785114410964274263028747484401207678235739281129532185475339672562889632740069167788612315084530583284868472381031677943816341306572253672078758438593527011564864363239704698816632562529275581881021547315651025533796621513206946072608339051467171128029163160698251224686769535045442989988454842416158757574749946750025777800030715853520580072591669191790209233914439219389103", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27924132814194047717763324712751837724849452428709714009675225271991696106442974946347745247112962128225985899135475122826693000955461637238146279357323849940533352630335192317470689064522667942410360346189043343774965722545894888050475738957358950379976727968121105721727152930814174493426940887563455727025077955034141976287418383302093826320082376528067488867198333130075359990546534039276095170604632322269053026215542594801966863833042258756946067712953640656850785451883939122412611267533561029717093783300116281709225330960700733218907517092391866815648160311019554704442133239620855457277853453756480944121647", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27794119159494546614892962841802935481413818864584657937615942803029417907890425194380327940943211456082310904542654615086402078649431827704328244815028030008952369740957451823976464291970107821553262614492096719101359813095930053962281312457232253124907692631722856392466451680881262009147743449044293976062085372011025568044884813938846908652954950853486859542281969653909862687159413306176136009392531666378835660611433217335599987644690411730850542823307080986763261382314117597073578828267441373005662506036574675337834471602274800474530972983974217019140208783558134802844157334576147029577945759545236489867153", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28906124246721020695276790094738413235083167207717652475251288689560026369954918310870538947639431738718012570498943864280403525702071971866521014526595858321550752479915787373133390100869775359938985882116635464510529211766949867328211464230698032563270374550534370732873540799486506906916818839945759526986340097966475474924171344948238091053142208996187206108100688650922074316326384569730498655248260188877301071832351726847462650469255569697297267391785558745389252876378297272140737933338707704022530189894289907958087743570331173199397205850878478319693783223430160178272246582316142482807073691208836201414851", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25038096480616903354160476158787325550652132107249359395480448915062983318874989413687067120273524302510371403496248387271465747931811055573479078059664858772012506675750008436332966246943171100870200387666708243389856271424266456867836756980005050556038012094615510496179149520022988537838335642605040251850842003342922543561438395404897246694577691241857959074052623108950743430451212963956684730523910935229799033088187078973091993031301362550093953725266959221792206152717679270808044256622658722806556527650434435080372840142743769407530406179274622516056635327687113531259672690782878944664860919003691921545421", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23506222550991567118771148217409289780043489927060709622808772893982717964118576797861896970695871117670242942724209633057298746022966830681760672985263504645030529987222505739653748574472266308449402181756879577133330983666940139485723601956106450215500844709992880238063979449362099534039951726333077260960450927886863299016264869996703056318742498173455287675335875511871402942836920583813124223936685031126974451071115928544045939630036641526510737078345852513300777828269570927305724324374677123393138343498645493669585054212134829278619495254100244142101532680123651404557881228162075294414566789380970677413933", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23490455938132625553725540831027149015960090669354975799015686310337432999864883539891982808796804368164211632893629683000730447283119147811832081309074758562060978991588043229285708782621953092727013243160474675129218369471239548883489872298804677735087659602759587840905514693868019038182515581612848560999466573518087595601676419157376060156290361119667680966796102630971538549446630807844656253570855628708271323791767061621799099114152751419670845864280474287155331446469494696030205523987313251547028843144138432044233174103742888278006861264982355560279012728016258589255290043198705374678017543107213656887323", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26074937775791264881791826112408730896524329209220479305971795493190432305258114661510007498293827284109397698808493949644852849149920835911554388616425377304089467089775549965636240339167627626103456173045241460014644046681233602270296605017588487214754483969012424699762322435007330036401721047111891542209874828840101189333605020848800663446482769000793713367223230511800983142048883354224225778014710781090742515729586618009804326935491300776110889900617990248279571650997823725163810108449268127532564363449008498520885223795093008907706753030332726639320097609789022772244531671870849899235929399063299455578721", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22305340388269298298037682227223768253485638610453835933245874839461876034055389104425214903083777330007300520757069640652636413480262999117456088341703641120534056749759512564422163708441156840286327562880097236889686443516651613111275592080225157795740555287430348874242685598556491297269885399083932248546824780726453246543160202043891993027187615691793548619853894655659743441322875609591067852446196298016257079974592167607951761659891238104489886075209332457637460279306088932037020336125371167456762379955984892503663009794000382263978302010039680549542113341730277835465927078257639037104900513817821390805631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24815960690507721318771469746666543129640151554113930073272097334644138581082455963911164572752435358827805241949762775761125128514723492693890259225168057920534678469603382330030046679710133696618168363172137140962242976502151362677948075740032085369261706265560156173147548704812681781448257878450967407883131311463336858532005466875749076815272850640309901756360655924183721951450964246723496914028949877297096697187151445956541167068177317216413586164500231649071817660085565005648011677629490716506347156075587665283310704023651235330197904985483601863176001269724658597910791051592240459921693346651085897254303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24783478065099024809369735520183076794875501784842545776297868015423584894512758083067337952292635380824891232664820124235725203964783598650114157114366338469027983998554839753296585303032639225768766144800205857994456123346696857353237022297847841554393808941277765701904635406592338148954236408880394624347186269332132355808177940220155560625760868603665821690353468595348348980017321324522440275511255462143405856245420127268950086913255754219696415621197236278704982164301652175763445336409826612549424403799983517207197967322628930668941979767157723787496667421342977050886914892576688696362875948519660666873729", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26074937775791264881791826112408730896524329209220479305971795493190432305258114661510007498293827284109397698808493949644852849149920835911554388616425377304089467089775549965636240339167627626103456173045241460014644046681233602270296605017588487214754483969012424699762322435007330036401721047111891542209874828840101189333605020848800663446482769000793713367223230511800983142048883354224225778014710781090742515729586618009804326935491300776110889900617990248279571650997823725163810108449268127532564363449008498520885223795093008907706753030332726639320097609789022772244531671870849899235929399063299455578721", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "19979891679854541129524084195466390624680062667063506745268503393938672422480430157979743938752171664473443676749964457841314474982874150791256784065490817600505223367411511718632878818030196914012346831387871683317384153172441147640416958563497146311336624833521356784563989795174124822974052198777995700729896218627631515589649571828610244781543571115770950240496169736301490108594068298783967783652444394578649567386416280319500527592223707356599957146180587730397275877556770280182229178075949214207529236388362997143871499939703467648571254740257763224642538567338904597546028432312755000354869067255047948673679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29433874645761611830084491024579154910894098389452372272109581876085187184938301862272346298287124366064268577474873835459962179487132856843138446136509188412890301848619738952006165657406030245876915094169584461158468097132698797297103085343157230857436019919503767919831698109304228645115226149490190536569207758734277258306741538960798410933460157858478108511335545638188841152638791951860625369177520870861797665847361374147565748547074593590155630498862064503786397542305830086840664620391474496885025357453937477837185020334166451891535614319742824709987252730156087588447661059093595578025771628793464159632273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22382651994152463820939102407141903", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25683637489331783391949727826821595", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21259398359133173085102403182203752", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22117402532960825875175618507222028", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23196297672027637791980600277111532", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25542687800647288056869111282031675", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22192799964670004404455541755719069", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25441734569069332122789671778804174", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21663255035069406269328085458936652", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24088849245373770557193116184446319", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24309744565980459529943915172270245", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25656757996863305238218240401263843", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25330206555914293547165563839938822", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23080328204451348379283263926552316", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24967863333613120568517093798115812", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21863413112488014239969003275723148", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24181746878431623626530459416416578", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25460639813370434521752642346085679", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24106055074272896909816649487843363", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22322185350188340901426187138351255", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21470196327847742024663042571582457", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22990437166396626528423457655196415", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23100355318919822242747022431449359", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21376742153665975043001719079991216", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21260553161069727085461407266659039", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24966222363320872182883227966752936", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25310954694692858788486320004847927", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23017788254219960618085397628353249", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22172999774938396792758227325837432", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24675154918808627827402564274929668", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21719500385980224091470422315820646", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22113372129052596599860428911523073", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21915819746177085221129709646506929", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21133219961680390338044807855058116", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23956375558319039588365156842987947", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24006361790382825279573826715271951", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24549810074881111113212062085761648", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23515229509359070575135362354096338", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21391899206831057779114980736488885", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23225829338375182181841214363937703", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22416806821195959253855533712262128", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21443322224613193466744665581982350", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23728686284797198165369329332621411", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25450520931764442452151781207937359", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24406126653534008584222116036837014", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24529717761463896035516362251531792", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25157906917840919734354023844559026", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25935527252230580790035972458472907", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24704064629045281030455131906470847", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21822651265170503971141294729787675", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "28218699620858187496957771752926464743037729095377333980307571561590619709632951562220622159252816030643068734810044471600342017468881045355021393806575757879512325964207043123673433260077006983043895166417801073969197454971806250042111924179522120097046953133690817786047864775971055564067784093074082336348766472935627603045543772446262225165087312201053057411583623043855882008316084168120367813199095932562324090704618956188836512690498193750073737857410054749901959294318724817561273990504647453844607026177121405419853807712879051861032906628149506283466215418968847990602526127193548885765925776182668612655043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "536884336506383580753990385782454794606571136206842424669735625731098152443471990146387325437513939572002813125363644031320287794971998806623856200365452084230500433471974674299535173048556795331660557887613634843033990947191433063437368709365286800561024463959632024805674943903460184960256865320846418936046988979182790513922578244755116794343102296811861405327145307147008123447563903107348699716781723706775599502632717835161534896633321057942198746016630492447341315441042323477759539468748963471386503412035875171039013357020945782591124236685875082384173116577669860972952138728082197339849515154832301144243979162676672840656601586173210427615155634943097411565118926934999247540863189521604159855605513752248948820385684368536281578338931302188165882019282720271371054760179963435792196533753554309608122952467848727119198674120723414180293440740257290628863352022915454960959785075702763671620872291441950782723280403193301029188253474970296149279798655923990112551580828138818433533594535507798103719470376430574663310222957881934840272830389599446912926099528709273542547259936631469790531495825379282305027334285731293062467438606389316835782892577288343080469397986707906470835656658805993742006399040147485089746489551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "535781802220307437278234137548714993226953857107553009652042209932618782958473158231096379091071522784833010363212062539148328520590428249230049861232445676923650491061209754904555984974572003353279651601193561877642457450082392082993371558931392335219853335598815601681854930503872547036855788850215533059578071317616828872028933026370159810683640184327470847657232308268131041942477203074303116312050932542941063911140386115630609231137331258072790785250308408966710216442597870618619871246494982864176416104030875218858827666754898140770247292861377339167777465051244310392289465610287247045992758597693429043905769739878266215397011012501632712537637107829655205846786620611198860117560971693710952418140530333869502853715201727384339540947880896809041657530660293543788827405820993252272573015034641966155367219488708294610856433785560224219166421118150453103912931976367633537557861126250266479896431362628551840046076772052413431855263068531598473151373387463372588339335458886814457824907877302189963180945042343919920696937257605972035795406493260088273142806428630266722296202490726257722720799659226579409569968368270051027794098709549653003705269589117348352542437851344714781059681304307301666042422743112554887067397423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3368558921391923006936934596469203670434229290733644119803903407122583426996254971071189054998589180095539161706762490443683168942938777095714481868508867710383259063324552787155206411934041325597043094300948141738736816341147103850692404043880666192076417878728429047786603728765997419219824778920756967177284605163264166287071674660633543371972793855746981388300479881961967898230977626490717686049271848321721364671214976901565891138956670032715566463123984843009145908367758509930713690299674488610601668730586891480177778033921343002226285370379375358455989603526887168000607552422647445951864668654995333052279073050520225240900504510571334488979146925410637937550703240130162259836640893319100988109944276401923019480162002025600548468183675914976640570965781686521097919871762061525946654993962103678133414802997917350636065472978579065098684805248497388144088548695162813084534150651787522812532194296587036869836577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3665657054127309170022565372719719018916439567619137230946302467627701209810778001697455659053435136274938341945869246945189929509504232488761911515341351971560137950492396461511728482631634469546030430271241553522525117853259315240273261739552582500805435697498956554396648413789335091246724300357981061356753366597570829941832102855843531660037014318657900250260584009519133972957142347832279795381401354978117305117988994200436317638417537494671060598652116331728072560771504821617758265225793347443181906501178962652901998775884112431182514883016168215025847566132668854490493361379379535387438440783923298445087960545364062400925279099511026172040924709186049791444749913651361088069358903667063890455940898323702095029364816537564382416158847767281532472394162060073174937431566543707956491443572054694846514586983284772191319755289981594514188724079512362806704247088701244970217359537163493228236644152523904335749011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22192321882205440327799684641693848882550134658989262871313606558351424275659274460370234855096545841417556509203305192834596808452283254003693396731566669339490690334245888463744853823035000414134499502552384510413211259825253836519027860098098525719568956984690085974033860516270352305487606731858877719069490485809050025232156120232153159030098836411761205985483187728580935232679611123181891248722138123608894796264320473950759524618587799886146619218531767119561115452892030084591665939619922132363245700347792672850702157526361523763331495716501296389267996328029701085428420166888821866407009524251813433819747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25135905035797063196097817979928605991686762475517542288434886144658030143256684229504252069000375954054882683843029237528577587926026944581554666001137801719510175315782897231945371049060039681237669848105057541834110321981828408701710781626722566061347689560559888978366178574430790139724629206946551081328437230864417239891316002262053472801343111926408690797841989958445124423761085854539474707976636078530090713634265273823676092852005513956302502454417496904778491066514139301831086917111215654949694410077592797917237191468100234941479870860402813016360579007219626402719290678995882018155160998265093417517589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21599915033367603037246847586845295588044411522496103372121126160213223889525168461902371380639648972965046409867808931603235002318397423277568184924523050670699048577890099866875455019731282987539671918450877022980088080729071724459659398836890921390799315086958668852041937022482625984534217123872955643610911759758585237595617462243867453529404155145878247465022347235018200627859556448314311805773907336012375773920778059437494985055952271052040968834864994711429442436668193781222099901402714342419469424964470104064169820192150165670507027949788758518409062164236509530444630211475236073271818803088859260586281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22287497166716486563970210970352740323040184990813917745149280924902911364607940217856120762682508489170158141769418902655872540114180538740328109518579900326950539792844750488798626983025370588867908955407598912844612999907725995861531778677206063258742344762222870344215142677108737221586765045425308536442015010449479334091728193590268755064314217537767389030872579879686430343189702342606437361122003060061789257881014020099976852411752626512035578898175887443561353075571832416794948341570902235763988788862109383509878852877536770495323875730630360944140794818458905106356940060213893744867285271000691276802059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21970064254986361735349726099141892584920117730116778314569275278606683307393162402296348274149518825561713750923565107135124399077551971810404074059847579054677416180762552772850307470356274310106310422315446004516752210932257800207100973685192485141132436837532078825951490704476535515045185619910544655484024007487983747696858892320369930538483146709248387540537011470082268770193030344651232091604880680046899115460394356008774183036656971149365858671197258195927114237706294161958714714124403321452788664597007684368495871117145180369110784942123708877755862492630881258600345582499523984079314391138217351636301", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24995200767725241499235355399173536762743724548334847812825943952800896842117940781915851651993768227948885723832702760057997718502073803219949973191403452606904298945516002786272500535904730943746484681674622536407146482298773778753155578033836635004013773907214072810701205192504897178650035877127441104975777062444270702008897818351567882865651748246015421852735029489712116808283706620605038428873419029022085427865260296615599583006115114340536932881016214581125310331257784701958320619135175614681415985191107495963041858971668331072375410708475736966595513999309932005988875159440730378500993366405112214161261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24235606544848135105750181336505679985548526699653630666823748751490123778871500601292823952445327036138794256955170268609688969225733073047743404635017778325821922728337163424239030987121936834627418148102604429597063252908152148129283187020350354337470858723725001631589466970158912530167135944447058287257275546078368657664040931248811521395144806752663440025999808814005743433228023138317094981301350771424111572793857388769495543241397420573951722689667292033738534579120500921100802408933831770766593324827476043489925678610775957441088892958170090778146384552909935206838776308825184150922514559133289953077827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30255870003943418517015253583037226317238832131348987619072578702316416444696686051928805054043171806743643994975518062568580830191986510579678442322396688277555354439754589045197549167187535994734708949289526066917798162749050642967572932539380567649571737694139558945110333939184734963797165937544722803184167367277585238031488416052822796754160990209135839150093425033771491445924221995114296095086686238399934173847427719983753237594079268318944249794652084682823323610051336902435531204274197388038397875868260768019959114743495034894669097903772347282068792691055581673849888758381771965122661772948675896579747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28189199224672416190696463429842372010404893372451162373039567584436151209050504808371456154997593201164920215062526809993162246775492725045179072115371159820995205881213179277673521506855866415188617620786643254325982978541839223303295452310977191325575865518378446660297199513660629101721718302241498696150813029660285094515923068214037673398124338624698021233983730810592169390321988062797196777086490983293237881644063437292992067159048421396940416454644487380846398418675789706864662088152491960461037257019851550849596261679004730578289110666804347615908233447796941071750402888891765020395546928229159915894609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27530317927170722479842576536362459719919080917388217636760626338978402396941284440028340136660288526350062403793488286394181521606549741890400879326451417303933343980225850785688636015437288662147455217030382891102573070156676622099503296021326695718503769756511687974250236431447725563260668135974891118359140834416113367372469769093525417663225915824877997691029930160082607527924146013360213508474643352735507706401954508701298444647466571438363146555870113921770869194436175237156896983344273038836067758371565229959154225223349290447532428052040961503338454148701626108354528749033192033186520648901232631153051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20312328800154084826386715983563421461166954753039066560306290901361578502581531734622417216903714379956786159197459673600978286195658244724079157970965474121717195136039102147620446489892947890594350042085460450659702566178545323586292090056172029397231335311249448504148080714764088442537423718255990955973106905083044809708847061566747520551865960299333741313052518610321714234689981618429775804693550225281414839772553754079021196796382558735964873314241755020059353887316263875750974845291217239771812347227957776845260696742961310040602252584886654507740044167587919988261225899412269636518135682990518146476907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22938576630924417448555300826780174459195427468775637000826961122164443977735122325940766459038240586892027039356810767694563796813982184039378253851093956385225765935745717349242188619735568793178456332778012846094243575683509139106920512016092662132596732262026275492183723000103852442212641299330120352600805737406235156356733498162388750559670764548029207794206752641992364770615897208860889006591719091708034736973109236740778733851289803980675816776215580455868626395185772791572092326961656103290460897204680552503333668970900758797280191925727471369562950238182713788094841881195574530896255494408481243541713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29518980746716830512268245778461038768894855042162008256297725877014904238988185842401078405469762565579209082600401678094308886405894714834264531909521834138760568648719234162278614403204114927317748625181656681182058818388157212130123350730927349911492573380303527397386734666586771853703399941991201331611151489096038999689039757719645865772879957070330224698229265516749001225883213372666190335687520131410790174170670530210827722961939998062120635312740735757337204930648505833962467420958374477635212115958385095212058829070884216176642889099220494748947763898917028474226664789739347974537099120409201372084531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21500684603539679516010866844968753439513520281685169138223785715533093030740154438569527881191360620342338269584085487734332958033915658977988278852756565802315959737344588076951173654515409298882367549530789810892706377294158924889895683002964225253344714139295913428928333336317728531051854390354439024625436102689787668956792248724959593580661459200027780498708843282381538765017042832777154617430255056303289149768667855067768796259770163738100696382918701209192499959457190745084251821734749779624143209145897848048463147073535520755170583243884811948247544863586786875991137748312866941143219247793896010182779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26210177284111841664604001420877940762993499486486025725334873854458442037706326762082721481046205021541985789076747749576928240388876404402179818313804591750511749869622882984482921656052891572386957431064559761693517050826433591032338735233312559602925557127213129650603500744773052593953381759048035754612389587543359943740888623931004601102017157830290932751437678594264377954889878410983918579885095971708252265476118677666835023200302219836457711395236285423225167314388697256521830006271878430044344908674364221662269077106302550698073200570638993586843576156930104134338915703939897826382784051742299212630231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19263050884855339658988814114932112533808612527548608378671131188343567005524199316710811813713839066425224123207905142576702304992991605643214409181349793554539901355067329794953116641626262032356425101970325504502138250931464015491589774856286280446801685765017519818830314713793330542829271304448723438879636780119741616246751377036122630351734853740609253134883117239041826377727717237905582620261929931130630897843486808571718396838738988555805488085201562833401217192805199703794140977156410429611573549480308078088339839114624235774913973486891701399388188925982531173766016784220468813978704647751025593935697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28061863743499900965426863974992968310531748448580413494642737272339064931494472811590939135929592573184203831717676389225318074360002846033029911289137027479650096997643284493657912863457415026959062871875210438246014096138072857832640816564430593033322198277660317804830252570505518468799755816148516836274727807517590304405768129082045621534625728237382250978796749561897687849639247874918985523157281550278900526849279281580953361238569692138005284037570086477841180199518882367614809221093469205709839572782582547487894768284633921679114987505188546496176176425316983479522301205333905529375355261555208800341613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25631348515253591884831151724069664284934733521468094763216592992213414428343629501671172665790060128870805281522091096830889517945290106114431360435897858215714024956944697384402433687758340672450084019573215581953932238858600094716325713934130609048055862604772076849630783334520416209819629020964952093409831382080943368062924467223759318378319869359737978944292162493832594961480311763824383089017073399408003147518475873284615800640212305022633948550898902820960392038940913281170075867281930782282705216138634019874699970727200035421603946976630082245196682081439693730502929238802591287031729301671023487002201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28093127342074741141680637470634584925963260028739269805373787860420080816807991285559258227803912202107187221007997028410115501460477517294088335590420523391173575404378452696795797520985023821924388108555808113008983059328461559823536659794902481650906388496547313573741884232552104716341994406845732709081497884344330315506929630062910374675478414281915561309069801385665478394073711825118679653670076090902870571685969636424999500620562829401776233639128477981290265915505917069936134041708994907421028505965703722798552020635629367635561564196475291936644478131774406942816864188489301054107946864522984471103891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22505272695882864565230887560261797950168723394986361363913536222100387015928850432619373430118662695120530231151013306995725318828835405123346341459325743412059459162859639091610720840909041499682756308160507828211046107259936742879877970474527982492573452080729395659789273942986217179368490162710403465193998223366916315033121114758401913304678556033705088053655215851376436164118960017094489313869034278087504203600106883012199885008133397214129133588443449754864195914847832023949262208574189451351754302174793159242746766123667338142609250750831160543717787306236042343299494334329207956437538870624756532814839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24611341987949999429222727410359613036763904236728042945010753890932892311521200142170275615343790407199836923514983192627052831136616606800521945915854798619512208790662743533152848938374064258885755004174715430246457889682095388880775605174534176077721354953757249119233429805939029777730592666256958142231831483197893588464681581234348425555181063393575980539329913209878659771865705648277157167260563165452929410173230346021853682674886455956451466638098346156874418036545754346450237163831712842362428810603586293540533499508379941661695035351663756804995425714905436311866565481550289311000952078032664610876753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26603522215026505110332945142527694035574231916066036282914341255706927410941402365549693289496633852996490200120755721044778141030579240508769881941365335320930684356140033320355455283155466031944707463490197271120770054592896084602336171812578336084657095171281133374448035407530260134918161069387406935727370514560088066664039367502754807122835331656047825768823567937206114924448971539553550330862943158672535299671327869778330422014334432353680140489089351139609298729110437837434380085206880118014289583931502909369240035350094045251842225508090071600381520508525452771811909000078350994357256811377700425354753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31288937648145284354034390794399686700628087609028598307727519386157881561055871098766792663919000825963727701928836341067544880130856919025303378513450140094714088364038698834781954662757811091755481626270399631730956407284153311886039868814907613626057165604423245156147560158955388993738148593517522271648017881856750283915088860144817228536459650895578828147390736520929741244465002149514960467161496803617073951252806414032162838569473333203026603116085932123147563619117925292111389688770187591970051261657576592292228473608642721515953866532301471624431769081579778715020243793693280147791556652682319495118423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31025997554891037873175839115950189037160711769742324198215319385180477582768310371673230476520686170622066212359057535185624312930912562233853474780606051272767086180366343613922647977706746579596380751920333280006833033081966766462543773340915421317096738607203366080150491466631404489181962756182709814308870914489269280759353470890896695543855640647697481096804614005483458767802938004751692124441017003079583335351215176467722516568309189686375084865463715366637541792311856876580266032110137173544112096014456672227011913860366232473578135611553267873003926088270407026615875769477199224511419250398031321823589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25365103210194207940794667017396873304651505972270669173393492532089070780109298550946690845631130821956754408852409084478061041099304237333922809100878491698387324222139795117372640547895195427847583114175289318913937138519370017023944090599133287184816240833898770735610522359034938821347792333009927450896563452425057218725098399721764877311695412439274556869083596840386362911107707610658359545024874567813965746422920206614865322276704018657533701795767305039235727093224884904906598364161696238596053894554222538792624461274259805336541624438362334182966982993026791648934212681849744905507134574678508181876663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29244367435041538568704459351384350333946507739776253416359905322403619961646357831565807446791874098843100756153665235402003588561765696549963235034092248797384101612200917996799843256777703547029717853811036907623549824346147036254192059181052659915544349262930675543577557573306055896371591693976111531507734712086870093883609415547342318420518413363237356629352025889410446325828862810759117272396874093258067923929636156185264243995185427668264925827276576403751542303080349745759422134696278364764337168826026336181300923516932585954016415827016453660615404405373487104998609830557049389547579673075944708799379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18694142700981597806331672347319658630775565250347563143899609496837251123757401853072318022642123529125444244437176205257141955812757029371815168484084694096594730329362164955745961572219314476680809114591963518305178558741727328381770295737663715116857893896133878282144865936761186325844867750155695120707097831511939001802620366092548588453076177941600734130408411776020531800235903306469859553275505499975628185424974425437262250760797942425143507509915104420457205604026445939928002732039209505074883806883778479265336306341825256258241121826750988945138901993344661591061432744801354110973667134509765797822403", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "756761875146507793697980869210769393186030083530185442825374669037720976295498949145387902104485689668651504195272007490068171271358345467610443969023092097509601055312441998823583719459970806038156592518150169165401728923843156200014726206772021543130679141484794210582891889448437647614965371279842040662659153064371688039605066626582881845046485156105773614028440770238934819317813650927590285936876326735858844336545416136201388661823931249526100622385472787541733632137121896868904653614634225368658903178542370243512909430023243091484412542206661337750144810646570968633174074775494203697703113537676935442197624804370760752729102689416161653049924339002710450037862132022487529605171475117625058634549749179576581999905425455155640466270671490522304792059984477775191651752157255724480026675976614411605406499203030167429577675147456623666315367799608917319098074676036924432638595379940372958896022701290784483913645519809019164729183823273235751002430402042104408398581456389015864047919826121697868483726282492489605961386034201285667495190450783483917546956132926457121062412502364018918104545247469106923042344173489152611506419409249814066343017583608817995856791611028962729851034351501451530561229693398177395090039329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "807497741315795171539964463786920377308379310860164448963307435616835040894050393682264526033262410116291649485651138563310402289588651951210370796640932070042175571381078782611120751039894027109259224481386246621245759613814212716216602648159477418475710638229483320712696130402679237855626820420988324613305080767254352271690385153612239421027433014108077303066351530568833566042761441976114647392860119385303350835121524196922545969152058596038308003130675250801445123507121464793896123038943722787692102753101911242590925176693888666728740184937417325522936628145848152514322502453482270757772435479184136611229934697348852945899997700189693561827314548860119072706099535370469931257671753991993713616970624640372738841580553835770645107353293023126077463576145052804213217138624743529077764667993871343099016448938772146109439725336056042016020642202728127619505596913601589785112248221362846880369290341785427125580309002637287577592821132422560839766707553362778962532054608639443485970133212497424270489639838377815644239764674289249043387348858009288821967141439743398444250638276653256258255077223978160522749201031462233958490121428232898311380537988236640936984498338357331966223979160951521264020249398051745842083419143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24104626985631105605002792314930716", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21218112985397651055958064647431399", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23539286344588612223922970410500053", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "22310792937279644064306677867896382062562430514741597950036184583463630629875218678799054106836058215449508443186602246510914626618207009895641731725767396812744769364280706777298660078256904145789156368287351471368997177434586590543215036092045340045443555064479753422060205208267961253803679605051568386850321065787128956708439585596388034412313204457944303548243447171872707033823582024548180590456989713901182078462398071174889234540119596788122728755546807401623857240837971869975911821735266085531229042020293347947556593939395594013508594025840210071390869174454453735230393055121133722547221116213280573409213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = IQ, CN = Iraqi Ministry of Interior CSCA, OU = \"General Directorate of Civil Status, Passports, and Residency\", O = Iraqi Ministry of Interior", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "23817147237015234785222588204300338", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17230313777085713994188322533403333734849941379339701688031263557995620047110693750469558424482400217729217808722987757593310294252192589503019505553973430620187363320966877123763243270686552956599517280084710287423379573468717267430205046959846777223994270735696067280754453658524493840868081879454099268668529421755042384738427309459234208161350773151765410520265740068138415902953393683938911452139663980103361472235358602034130933458586205917229043629705683254947681256520645860486684934131926374698381548949733127810945360722661861909623381679453974614333444515049028648757620579198317125226741029075521779234933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18288772546042464348241864735106428496135682398478241296657389217621751909040665385984116675226173956895944070917019937471585081364040996192560539915652970062396997867401540179572839458493481513962624575082260440456359001919741466046794901719882941278623035922233839142219121641143348245014633744774071535475334528126034120990221600560949888853017154610842931720472386230097736674672855057258086283078927159129917387575651862519134509350986181562200745156991208288748192688522580781289788819756952723577013336854967643755670540098366131671766421187097642962120225496538278531243544287834917942646197889090768614207817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19730817256634292970221261131076065511345706435714295075130211113570838184360938693160934174274227376158912673252625752389363098561805176449373370032438290569646041759615034135464225837496014131303513485115724786238103541207926167305375060462381560364037864423414462291060725207479400647963840865440054763491580836149076436387459309978389577918711485712642860227534176653201251264561151075350534987542108363741460577722844492877297375548611327879550067302535551406990275898429121869400370246284758457748818080078461821149342898479214274556361504637884070138735068812878476163298391233958097091824431693630554289564721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19124229222161956661125509537188585119830486821504832262210026385328650645099633016829996603342837150401662676049568686056602166562528595102294282180549395038945749826649535370725518243520051530674922649660900370672991245023445024560939659329682070850587663127389340087898869684037569504276471823952277952802151330898385148200858648671326131774159802588818971014553548919132973672589651129121877472072438629987755215701883496171835193180826551401892369043862420258568203340548166824772858491386166019186555235141998203015660945410791635770044634142838364300735816036441054351577650948511277946786741956270658677356357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19522796149734947795638161325141515847078796120992214858372575491668489055958256406116926435321363448370285653617811094168399929408604270730783217968503264497555109857820171684511887778041904317343897468722915661660439827754727001968904283871534855906040542900011476426356575897461228208152618944848698001084942862392699189921860596582864922222898907176032562875746375780691001519471104108175063233868310730913899747863975447768061928869807731341657973283752951123613935080335447658100654321395489547150487935147369645473376683640602873352091719856384059935280395675882651286883394738600104481683394818711523855772679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21409194905145332450783205960602518267075475755941560545600194944360983718581598684108222774197660328376728263382671674073270607050466718757602069572453801256521713080715258514164867666874133497071250890141893365201213407900648564093451108542748970935073055722625695876702577414779396105992487071913661295043895193470993733861223697745958899897986970750335203268241939406768881274008568814924674411985462106739799205238866059438111196525241945978035261115676304789878719945857067394855571777191639642671066339969355803203139166832758806682538756050146480747059770370088682571039380777624445618186547300385574535631169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "18803112117154904763287507564337010664012096958471253964452820595193926748424265288809530970573877030669420259854069436452472313741163120896710404542689436456637975813559519767429114201090665076840730316563633727905063441764752713108500708944123076283072584859421870928791456402990535934340503837735830559689014826491826757668625071751137315105740527408903140331806073775597499134403259753153147447396830312366794673338335266314463359614794243822541186587736119214934443912322261975733128298013186381108476158183720602419235043721692629225246305607991953615893878548873027920550472820716592657027078100716138128155859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27736156673506748267777019527755949172626433042653050879424542310161479679305126868795441543321780987211252936507231188243992759353099255360273086183473364837432922500734863461440730810606084462982745521476711177139327345841856267253421138279409571958727970359188729317889414954889992328318748482657636020751015901621846054709943658063247842373874562614161721888061633393922400153170453334900916643394956794287784540121407611969962268161935852360009751507570019329921896666408070415077190471931225949279788817988564745380905542214115462645870285604864519907056873557578226245622531390469541890581588577116144863842491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24108080290754769358173000278648817057184700375613663800894045298254440109095577096089317281439356628392583287897631982334153711065541848258595990306588223487168585032466998352765626914460301453294513359045345536642256877857552748643717758790483159388839280947526423873164429277076124912201111316434821567830389602150928812668817021195911518233970677661442147725634756408714495172519634004045602451496315129383181053797573063964608821767602483878430322337188285948232997159145619287337536933130543262974336751574960851854198549594728596573961461655303448392341770135345227531889521956217940080870308757881997265645831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26245516201080906366365789078970692942819307374777737373253595790738789554822665709572359685823911149143675748256828157564620136462095574578140247928601823481402804111184365627683235828376141550202167993172217834634245803933337704947058247006627096669018440691927729149822860302102101635668254773870903784285226826879776252650015847332695003537286625782790339603036246335559901389282153249927697195679666197473077282198015735828909174996767271975246075398314682728387090533438085829246884771724378833596226100183900703170603672453325765430246692166387457239008101608471519674452302220780387505628459560611120422379763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25549285479374374822793699474377798848721157033879015972604355400818954984750169670393041978248108574117043860418186559585236927361975669334264339308245282866326216072458507820699586120934606546805353608960456811880474921148108840158605200186299990461045986799089755586950074974694266359622548860554988171623766186165628149601489529885922970874103055107977293258961511433699872534235711248816925871256095723043791105520149584085101661246208427201991310218068906285429821928470325839581343611860944570063778111000525264008963065144655552731716974778940954804411152305944002981416637839559583939687049705477591782723771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24555821065633131594491453082167215499015787240465301772812901859199996466032321902351958838730006846458096854511418820527773498379579253779685486300627651093245424672444346482966916409576631035420202470022334272833206214915571647266312420647726905184351748759445746769053792112942227078046450455020156473378687846774648634316318339086451577441639394240485237575040417458535749168895445411606880024139103129848109069633143950616436052742590909376953962768224625571676489660322214342092030423006306846544540816864605812821616833038755089155203383925267278677657446348519166773600710129527597663278383375494917937870039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24316650793716863805794613056903329788198507681147461433947802399327132169493875167484319247507622144535680796896665370692460294449794353161514531620632165904431982724882372206577916829279779301911746092758990082461673575284938247485586622463212081699111727600681969746985800236650893130577068609394884721973496494373500325622179138622932553714684798606049545286412562500125569706083466000583794107125931777012108651982063548410912640532662668727057266099336397029300939640752394981796387725911265958437753384610511433272559578466455955015442267579593742580063550241291139660054371631050773079071269694417946925527777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25102833145905468051588072952203544317318376192328833246470036029885438102620847522072971555116535198861031567739677501606952804928955595974950914633782992932453954411802875595526771497182008325356672785962023115552061244355560248926016333422941749024698711488692296390778057930428993192395633493040131378342831962534802313775477292970937605405101181603499281535575456100810426526369977483381525252951606144070303609559853898819762763045765054009535683369537655692306812938146500602712947925509703336260768686088544566592508384031241711743594213475553276486679665664977091131907364386508746976787530493782496577700443", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28423690582044884661175843857456599657612775823444720229942139653068668197486248653843435284190872666428633292312821565345227034410219686484795162569166518021076769005102206255935264334001105648203104986860320225125131568487777289400944634026357143528641729896906912917046987140230365979726721798002501486972865069767312074264640455865431714536861760323317672389808549965375504618940318212827107464818468571802205039040228072924395243492072290728773282065560058294375298366331727680467203594492245955704338858132550412111401551181031990912515292621647686986848191234306429707432948980627568636735072843113021561928571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22917134488976553893105393783839284340111428366241838911285886660831091192119961560483584529420288927912157639842272316344791027360850164831300863664570928950174772686485498929933318802911063229899526010887893633789437951408823209353648569710723234932731675845688387576018834396421450898470109944393864225361869715679782794082827381822171057234607132364445779459715285773371337311882134381972516113202723327370732176881378098725577017360526521433906834457459125385764659119709509131164595098205630083015703785186360412813585827567195971086616636023526876470384783522075004997797834291918085345537715490504369192394153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "22235787416419825574405873443965391709302358513467975732687296756101717779276840352295728768471184986510050044329899311314982350851562646874142095859313912340016172011948961498196021186618486105342536575614024831214090297444830976757928331815188836150054249968713351392619021373773812312111940581300823558735476299781914714595660866074154546738027917714831578352233140184112803170597833516995869270331817109175607706449834411635161296208922347018345395521093790467296360340213540246180008436919009231692238807684474863153851519633072477030293080226924631038785526911779371232261240215663572079443332542851168511191533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "17753857643262308763383551042481972950684642987325205998226144196564642861939000793437911680156681678061002007378113137130421370675227227608100768250604808819457171661082939876047862629085372202711897270578344785179017227322609968952275907516803109877836118511661295524236914846627028098169719799580009255923714871619500455820735019269517716684614380047095211206731336154383121848689986329658389648622522285128590725260563157979829734095370789353269289944548745281128891302447838835015410253422010908026789386975710973500901266208668353396876091450046492844556270586147116205710675238084704385316823565168564503090207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24907011930983533545107031929969091862808506080085647562818103777292754517322732821127541994825979249473712790268922075483160595502602429383078486039953846443090806000788902368710161421717844231515729816642821023120737085360194624836662448777321121006220071717352681901764685166724630676315327183005405756063918904676829967827596413457859998326954951100836874352651857715549876691998643367059608494184878783238928035298612179308001348329315069603463166398820652045022762098459819626378077265819952666058109964756900168112026825588865979807530102227103630127245290080753776591688346560540727527228737818476194485936881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "21097289410489038447275930101439895215036860210969094190847985436654145592019537186430123639089566435714404698698408558643957943351534003438506533700991112194498020546051816960013317777121117987432053001612697470896482924629389852319160419102304916906821689564676174202657402314331840442670907737037438404989536197075889870967161902198204703280284815537148784952511458642606357354599635564770621426279544424964137634703170703272629569249682144705373741728856854064905820974814434807775736828926813062902590630921582573573017546700761551061986019675469102017499752381853367978113526037345216824213478548547199531044307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22139756790726718431274009942580974", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4499769123624173157861363179997574647883217558597524207870383328165520011031292226985067444505304163339489082753039685647838234276792652232535897797900051982051808757113785826292633464554648725271173298156291554102639766677159745337448257335458040649061488947499605073108856226991673110585611540838442590747578814539562195331382918577049891250883789679300804225406687601338090648546319267816157479916492366218910556645761391922178513007893547639488417117359862354242287175533212860521663311766379513615402355787978799552793026342205027926221435499204712697201066656311966426437368049107231045483921882983809377336929924795470974694563296928786250304076896848139834104118100606905827526944666018494380613230338480606474717583541296763264371226985308026529021318843580621621719520410300497886113177521575315757665081399940057751373800510975391455585488684386187784626231712811288862495769156807898840998375249718809659438413009", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5530010060177165307817681286207515748069492075132412336678879492774789641246409043101606875572165499613573627569328742161922277047827101000019628468181774190836060277782940444993571514735059899665629880961503001478859165946183701658568629709016808508284656862772278627106609876236861015938945259747410722744520077393488831961126294280102691325365997083875599413810355533558356666340555237433549076052196093240608910534318266976297539739806738197507580453736508699728059978401725160369639036241013885913445640935477287799731401298546693927557679291227134444596548598247289178760869391316764050557364700874319187146800586629941299120665124483932759116100248402907449359628289859143754125758487858014475975291606678113366546210299710279425200984008265207723895637459013440640076068950858974451746765247223745096177736395500872962401772688405946050243330226108736815958442203685434927650141888647900425498804021780695321258474281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4580039309212295690462272505969558698125172169735403116777280658639230096564601391963400299302196637299704749235494775590589168573373104871386527860716834395500994153134754605807100826312617271784345658956655603488197465973594196570689372169136730817422166590157143304892223218382624563740301076757360163410474006106569441557707370053610340117456811838849526642029634308473237721301392646502363717062850731751559490898958614692144149754170417180582483355338830107459266275022488629381441311359064914438363791080916585366503339265639527751248864737602705768214265594162841311235960158214245161462524533434873409135548528762018671177712707439565267618359977725190631045119915522222485596350359879544785805455579444660667387663116451226957484100500310797441617666575037874437518013427205661876460987769640170217525532882022919626847617538035997096273433848477051139528849259206806263064739273567823897630032747747226953466950609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3984206739186895107521900467118816522491691782949051139403721555874272014697751393058347267958128404255455723733616168459000675163657347669277734206999246675648975604463052931468820324732728699623029957198743344856429813574035405005601960189427233224095056510905383030430811852264042934262040675144804572366949985979408054479968974812712809131791873175004953152465590638576853417192136731849219537369221376597938702429915259834120734979955790172410100026568973581172255365942508407307914748605109978559903653102642188681365640087638356956706875018476674230120471079770782502139621411709690159505854050420325477323717749052769694128351736983896080470339487094826072379963812989631682694074889332266969583772117867747116970725672377490357866765818494821956456852324147989388417857658942704385040624209854638881844028564535178249415484427418184008950314679193587896997170380867740000762630818308266526922950477632043763465938519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4751766963123174456230529034244560296091482374677211131223983388044948837035728852864621050198795279820738951332573991450115224903449633420756574170106234184029955785818970413473523720254602396122254803859738534537883840355465011304070722476151722203810239827751214258450162727205534549148717408995787217547885048483293690475664690001178467865392466935803646761106341358357288801493504238585427090263825761009903325298941616245898991760039151960763476052160582078358046542367593987038258418872412728735096466257129125586495804366305720214317894432734816853029687759748576302926592718277003305923452760951132016034653529352895360112957486253909525425192318058625942192765110061577288620901954953406638582218007197438916259290098119359454922035265647875839492357521525869893425437354741005528548236837787149301805663380879022956786037355391052607102046785066750283192315635571991964191957121575860325530256371820561729292379571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3336208142586469210357571044648536066560233370586725096798351630532231928600676265145563651853755821099047226584416966893772011511035723832098322038795675008357212141904450879804015562288665851527456840925730440857941022825587060686926365992205292387301164969899445680426250962542871099037538601888856574284074049670633044140207144983269175453741883841607283579028647449354496849145743140698982435580390824494943625315269739725847157018155671842698754627539645887892215308931189014538566476379340293569507853029407265161719479970225761919199311230672744332464773052127346400099411810678826778105788971108111190250229240967182024150831840398414649591832564486372723118314308858040265548948780403812108801510316236712142529633339695676100164902799449333019890606424915696293210879498409518278531374372634878139210698131405515458205420570643044464176351461649219750355960434188187899581619716435669531340024443954393826415848933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3827887075872655396235348839512476800388835736336257996026823926921987379679804476955513545291382727159094885007347295290875804441481674544966476753651317454053899582352029122101508132196269255271169430220653982074231745521014813931041515417363919284938375775958113992148564224719032433160253595953708533193527944887478158475220926944250938912973729006003391180974969681592431869167350217583481034762873817123037942860952110056832273641475904796134955072469954347300192537309332665364160854439749603818245430986967251778307175681243292946651758442252084183065917281604283508940723568967873338719020685769940262179183349174286974608007713753069947425456302442774211626069955094264454564785528203821541581592576040597430243988643367910183334369826086888696556844344797583317003136335199769709374662565487973509698046028347108661230125355372016579372035255091967801331592681616315195398885301939924291195398351553550436139231029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4899460467413481423879146966668972649737736236011155444970490415905732201851200105802859879518555862149649126254626224769768117023426887592680201346421184735343362788559788918985109954647075772362729420438784905543513058978557800080323413923767975601558671829141722522633670343875008836137015193299406548869467557769382281855819750450582174845098263329454275114971031169840104983361959783108125923832046776581715580591628248187229066720864224263752468260298292113310881296629759287775657533697871765892907554251733802530323087430683467178637185435621519903447914547483953930592253729370522153018670241557374496725436003310342293555483475644433888339115526841401076598778599310300752885088844714261120268873670944260128007149201704491263919826965212673148782993842826411281459621146477548394398379431148015398894891615236675546084293471206822368911198560154052105035175306373746912602772059074837916543711143833031647363516043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4561721733803874119771988453560333130288038032921328881271180277751850395768604073114827694552133211572683471540928840333569899971936301677630603235922924392003578524232448379252901288267109583434086480934510682899146589841604245199059208719336433185290801522540524177979847030541358782525343168102887237350007344651875796321873565963793574300319290521714041962841360069624503779216686424107417671386827327536788177517541256856035251523849113930893638620766151843944063496380986938399275614838229451875636562895257275714540346074909005220250683929518438630720211604851799533719920331292815098118014624536973606115113538054637927497004967832157965323379417811488829165137313113196702706965383877926197046884776322883328513278580708647595589220227933926095511723092324583865008309907100056275497602137716384339611208065351725774927149382442186330943179567379514593260289163360631520531538116303998867402736003091677096875655451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4893384612641220067979825710313476290433896511909115014159183454071903812003142883792669535461352350857876230483245509299247960348949517027892561584011195217517352139219433850326615864840042036204874333183869417432929579236652186085794893018715509433576261186430953882896603997235765857976425122576469199872855388473484230369947194887625584859755359742602731267037706429548514871692360307925674369829113915576142531818764499146453557261852056822146087545754328612251710491936180199215903972691161117835092047020863151046437415885051927597095502525593579445798967103130707403854411135217791836236159323119571728516600039481361317932168528918905209649221513554255591470610157261649174566658181855169999131443376213481031427596743219302027015270934396369093225955339586930807109544143153027500437178419804591937344722954743792845455515001569903952731926738058687077911287834635125875239292936126429273928291118339341285985115019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3909560008589832286011417568931396210404218220542236469853474655348056023991177266893682848422903680073100328938585361138999221319615657580297885068071902944584381808820711298564504365711777100049531128519739189005196424398784669016212299245445715849381452485912136929693778956010449223317269142127605086431096687221598664016071595121426555303019127572230635110370660528642847926980509215317750694767678602607891482569182104240711275259771970103532132102947348716425937770703558465744757536278009677042638302864972917423696787951486795067054075913467080194925339235946831716326572554173497100897700372073524056222004188637610503119832422694851444234706787323100626574905037085237595539468033987479665775244980206296788414731547082323505799079924586027089433764405246518682871758634289480566522039761238287304874111343210691046578692390935506361304562279087341717466823395053426780536865954982017225303079564764108595513825461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3962870321270436693642594697666729873276719921769182734449145602647927623644152562483333803708389681043177119374688245586499512216422289643818029602659678684836146221414350366660346596581917548291530663861680818864466495780343286047025629593234085247036546115504780245235184644059892744870498750039730065281131450442626942871528284329566541941087394498642187463712015359931676741750772712018021565715720633945314408444583335678193743484603292777613802530130494948787437186296737604876448545571605090652317605741911745104137604895535702948646892157019606942374591656796451124251029596522284411049644562993120414239596247399572613324176622111861398529014835389601575276016130198350075666377670526453815753401340943505293395343804620399536792355325350606355748975374923105161247875284493063637897656023791144150303749868525286146449950502844462027684494464127699461197866565707870234305832025292147048265451949791237992412558719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4756376722676920193800699155467034370223886134570281366506547843858395275598721676465313857290385522965199447962325969072044411086186542178142170194784173311977040780630763495983473693546347008936511905288602808411991314751918850685568688451696314689496456099914166878741637964421888931211403995200822847646468051206819676252393502222599675075938922770542927359370092815321039258962390655919862215962385872358840917872452988160762649327586491680902948694153887047382535599609090922639343489512633708613915295282206726650031579521535756689641865310599287282763917811024367887951749115359424092422575793781384172578609653459939768971338733653259913635354996702794289825055865837476047255705571455120977362340956150892738400763138075498286231344966182156054999275189673220792378554390394789386613460055225985257904453882866423526785196767638688960460093064168063776147098340789691880110939960484851261940964173037641678928065121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "22539429318026455578008846206777178106391199621119677863727930335468095037943997747166120039005820983768131042101678903826250716501305831358845319909273516496892772874013167018137674941078666971280701808986923021729022525659923328479510830886640883162483701037111052048678394505926378664089214552462519990788705112487737192171243935758329121655709793107883179543931723876511967764186953354546102120942822213699420415745943993739579475536095922981501334238383249787393543162595457780919822199487929789296481498399682059044192823213098029458351020692113876520007957451188532307391461174713796738558594943963379445719381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "28932083899357307383753436333598222362185195213012502012126852131456596016166789678793584286787264405445268722981436819153713991346131565510238854335922092327665331317789878982529488097382948918122704835724274826757213900861932764293751345760902434346101954594125143487927467654192462440360913567404324520870015845497779964706992260084388001959421417251365259900994912233844462464211940974072593609665312730409372490469847946788615884490883353406696394972480944517166860170605430440057002497022208612226321452939807044455549453259990198283781698843539673117402652252865632537465414983311119689074724769701656967982663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24893700703071471589907228622036334406939069329112769917653914854117801833251538573306571524761833383070114973012584215709647341212998683930216448849313898524793119440643287245121658670870678706010476440523891151910415366316570073877926578854864898541753439050441856531802695590842867845807635430921532040177564252195087507574203071573800944851462740832242749324158162352373574537018009617895703385752628875453782861788776100500956806111598132834695935790069301919386130179866393131587538723465512500467028407358447364349918277537595229900437307488567425113268878356326867758262147189937638325189982205118627065551451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27016247826336433789260921198267892400365668694525613283179752507932840547733195321901639182236813499298380486150991341835469281399142516950072340353845563446139030478246136219056237968717261965350853935562996387809732669197252309363303459652708110197872975612242443650940932146234141724999430689350321723223030860622782922583274553982830162985624167604130399307191446255810367186349990051837740273947752233713653521722202105323121860299108094649719848736516282617471585734760876675462910831483490197983309228807504314421462742123980542287444718014403575645306203783895387579112802731965608107162852404311217900244999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24780379801579755850589312218635620151933696622476994195407358244964851828808231216882536890040804413355144953308232684410794537345835530678245540198899223099175858047134575676109516682747409318380592695422009062138432260095273166760414066582561567974313291171245518086890714137235456281874008079677553761044118856891432129296314882865788543477629558313981311393972107184008888511389990525017741068961875897014304068888766533575441031095424074919851238301776410253022041866439727932598528319009498979779791960488860414510336772460201162903995170223064750390493588263062254247639914059906751201471163716006232711243969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26567217523782527591611704548728940126794257417799935777050383283156975824489426647014557343749910482508351238549458987608370577356064037616535808149904827090156563664743802938893179271667599550698846284547488046840088437228391652348833888630009454459376899968595549560625849378607552093387799386576411129672327262964122778275053745323772063303511324018330319997544691502941297220861663862185854293680983794717123229088042291324415090741935805360058899683957199059578565248624521430596407070611800538323731554418399934104663578681197267717027465582916256459865305977826950331872465091019894913130596880343486530440057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19515891611204684512988657113223665279386573727317763325875843461651046334059949975851633418587342116961789840379851988148587944457465125448586095974674030250409705731329150983445339501027834433442373617527011933173136154765787819380288233484287429308844510765206694380265579031587050152787051379791835018983998095516490062132303246056908245067805779524630396133975014804563835769043772417005186444987309415957718457615269996776849406024890942122421412130255077205418611916535680308136934880605518405153155665977664619977980230916897810569218102003973438768367613782172238389199728615949587316015174200741541130917827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24358099039771967732954855043528304737013344930436504467301001554404111197547171628442852421385846516349044959213651598972208021411980730150326601261480153613035360132412134224217393257329960955429167819648891078139188814201344465188163628777857630067123334702729014853132468324139678398987678581379508200656718004105015451302650494366021018286207720984803773173201012669273508175753015615467470883169871792641854496201078176479540917090860457940105651256157981773936326078556839097138403916103515811152830712560970469134295535288258291088731064990655405990785790977348637425941376777458627709022230626437413395425047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26490651485886479135682760844589236330844669213501547309199407464030327865603781040821516834564602641059304118126369807572119627971542668161894071865341592843627226174753132608162414106810768325716648023586469307666783316811512512234269858904301697397201125817450107913949626835646224263070111681151319629924607536105038347503694363152981803387580658852378699172528472728220418479791488759626704483677574603019335717853750684909983876432088362893911875260907219028816220634440184072850235709257623828670076359367739970626461745809372541003007839076943556658719594823078433459848289387472605518366210990329797083759511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30018200431517423866273881888819095168200018130303498797271728779214244965996153099429256703199623190937983019948326374098762529897705690524939058396560489514167934913316473069650095745050364915104508882891220684271911076833955880210941332980636698621118682082691756823380495574388013877880411937881494025460953680164836724598393883904645647614574073307220594345745712978413521677776373411074565790564969397215353704815878330104950579193738485500701148670487057289507306085418669795386391580267469712760838372647945172530069810893791998154136742795473529687618882897956896296254097800999500129231268071675233385234141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21908420490983871458852207502033588113471324904574206805094662171287540179084904968676365586127933231636885414439658095874515491767881051937732291331157147517116607563992219354504231256403011520687435016309993569290052208580157358976283969027556646129930115030141948146413763657152874719753439082812091394378423845700526378161417160784371927344057834749304200943385066821362278969642515455376146796125656780945615926380113061643545934290251208684488591637641017066022349358159118891221619279142860194148061142260770648544610160379331063039609652913149286787392016013869752504841935650005365297410253416963374081872121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26779897607539607620908876858753722516763521209325297090010443927550001705236644131027112905924187131034779399386172313783802352492613608753251237124941814065099230774026684094927466994942750334326555072268878407071774907437145206908154092926254106325205524805074370490035803508663834103718017525108646389160203447489190662432162949687231567306290686805575192266368478780966544452108123873006266205669955893721586172282614961493339467343562449830694065444909153348189373118842929410430242916917584831786728999606270515268893010008207074981178343055879417665629483619558439460630566701338729505608719515663742968034459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23683252943520962911586777815896240971534522439158100677219756795773167415368498604813993390462355483960808002706342906128218270197322602489708671327112227719626341335227123728050356461899289779454978845771930915083123886176178231837161442030869661736092715433416824394510729693665465650147302990214466849772645418086526137428497768134215163309294945282349459014840171449347195766559587713991145289935254429981684639106798950070594113872808663309155882906268209125013183266402854654040079855940576595608322938595252313519156473956656882472950540327729239180424782463050256692116293635161371769597787027863633468023973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28948410395311620965986780267285971668627986072080449408254734830894312821646984187334000157761223565540138470950881671580812034533189490292927998560120400115550191883433301723906819967208082002338158231517649325940443631763700441363601553200268487204273280987836392898586293549608094325012436933741759622088158151624359873180200452933031039663873618952871650908442759992562291331644005909401859316279526656961638259411253053166045208935090027123332100339256428457962770093155185250530541505905800861170398772307677297512790133394974069737965090323853245173129830784987208646637648750401962751117607033282468549327369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "688524433328400504820934359806431661682090247644853402210073349745545505911808004448664547091342001945258612416801989576632003308658336153032846702894936421967176330497164959974365288595239678197204038977837377770469608841935206183770618763672143557861518545104434581621913692985796217694664415679352920563275470831130473962662798374635826313038471301656709122695422969845603848572547980214608712862249362320943477719579408150798493882072520413276320796358012964385419707321109734912221228398154640940835551031489413180073598229319405286689824880032631727140784915335557959830080492059314454487728149667085275720020845709547430209822322998607660649914574512391636920607457266743404513033737094637114009295007061604928956772424970152833336974062052141463312760026409570328422621694797891663182637697773185830044508838721374805780918940884889626759745654451213263946614047781833157493226838402439377853734455482835479892169278343125532724264144410215579665696677598158978132881889970185668766709328799439338875392646032330042476596325222077596815690940433528481600799931969989017245985784784796065115093158249341258309525241744384977108959736205630612689298039625496272799516824851949718379619049302855321507940823567893939928433557829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "784702369478819987393362964768427795829337622677782620893137678632401497450545790459425518815850322473963545971225380977975817666958048081500649610385410852494617931929975795528429474039462189809892277717162135673934183238085464453470121793677420902096520339870204005849159727027232397672520563236088207450272931214236057666320057146001946320888539621102109726049935727368596154309562683798816251455606731969687088097166531171974576582582459070849951214917150403484970414956379664188866752185293622288221941488565505680604733373956237659017434898501224982592114995289773030180500621213226294637485108498046265534277476004366880751042096114213843434584686874231079799048900267706854719138540165360274110549929777525929978577136967531732594784837001593762443756650471074808854011165965983043182453421361302632687963590243352905547014852581633908628962784519788309105090878616075594736510197028584756628754456612520529365753816541802973697055433858808333045054020011229902790099383544466839710907985148191289663615339904198850374611559239585065076772810831828932649177663269301423111013342243694175901640961616584590851542892781878979904921919436874639760285436228000154028366950512321239755464478334977934524682924384764092326167742979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "726938865835969374294125400993906497179224687322954331351213964347078017709318193021571844330031394933492723940687187356799078727934965287300872405777451729663689206146799696755141175813663178740051647711524192009478351066466586091763638722413365167901129574327368624658832770352258694904967777147150464894489628047074303006870279173648025797762361941089563251019557521253692716860918914032378828655002681952583793201584365007733601154058678102346298075130733111185910285590465443006087675384389656596841896050955012174006268923778730795320355634218784447350843311658333478629007788843233543800877267841670281614355201426702087673747448317602288600650596745337045283568201856866073230671493579078863035347512117764888695692032764765520121942175599864340849469652394589651476226977304248360322220145830224400651019611633265329359762120197669381899769652992241938163397548961490683282678542519506381680846580898673132888026482475394154597568961129782902283321071048124552153431079751668791036040113083505022855319566209239741796249082703955437136584382881579073293591859047753375653488621725450696512121157721516747474887719610069432589302142805420175963916458102993093695679345151158100800258452686515018383366975660683162126744165337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "764908735162301225323247672027488394622182547126002974881607449598815073662604694789303344391113154305498159963951151552166782296252067622786622156772431115344796288159231652099295358297618033128590547288919081165813278591218696716223679382752770476402565605767971058910123533938341626709966781133459758308259817829739897604966877460152559565806209777303819515975101690842678025532728040808385461918980045061063354510243609533947567162933659949410060818566499113640954880344680797108663797328148055549612191725422600358418589585684999640551756181081553686714809196557634917044978502501299412350626637096257107058119312560198433390686336687429839916610960958927924080527717594477534818374409487477717637523565041493415972299481506423925624234410546797730382550427079748873661438440669239678375363063267805104347745798050694072885667419780875265029476113684426074500914728591742850757280528066364950751845803848600890836471682448544561503451009227513988711237732032304874047236589301161215062209275398443750688463701863108175621182911328128669738786422409294048206163884918640828048567799619370754088210991261218349753851980091945889884490999291954508423365958030706335907531351162286583261008467402421502143311693169399199881453027153", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "752525008383148253698222072481582229519388330414697449721986507905261407181855645342603680043058961616739124890028495406811944181926296003655782040317882497717475099685794246222987584139784876582884676573435051520263317729626833089325924536296323285408200617297366938981090140738426670138174757747540709713842142812671797940694440699157320274254676231697749644944823547433442431477011991788467068997088411113658086754888448355163007312793369383110908430594023339457521835823869935799282114270524224056274868367432935907596146600184627268433282585179789605855918929826806840154270273220959953865758858619188278887874500255314272231573294513562358435708222663001813967854753741920403486012488289570731082925763181177573602668182609189826538806732694148986237968345003635868734252045542266890753816580892930816024511230034611930841216164369440797483448924133208152382601972473841257949571773513336067577945767336511819037154367123128601144175330267306674192646636752229046626805661606410270231229443186769919006098938506316803776990962207444911183057020560476817959008944362585972393727220829433880950734267990904385280713082790758565651513540308637848463089526929460608889467849823577506766310510504303985836820065719613364160009625139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "21246313442920283017209515387271657758908463461841192162737975711813618044354412606181847137151560004449036205366875410208898609004416023021767245219768744081390743937313372603561306576089308858112848424634729653836858265265068703064914056728524819861163145158534344181909611715618683722807199767529949884353553687611743863103047357994151008577076389252356668469073388635540429173380400574974841687641147301351823358495398928240599272103503837678563533235353581695339063918196182849908859594637549699711810810716503142969636574591878401129557968938369748463372758594652528652554373651904056168122016391142315274391621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23845495034152486809280877481659695", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24929135624205249070882501977164488", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25501408860476566436196822164582012085118891505045495717863988049776479854075881116610126558265287513203228590748217022064247512887543619695510457431668876006671261937048409394720544598198611189525141899219016135990014135085899863117800225570999046598267019498763601603291158736978478044561372323294019530202649916368551246717006901416109241242278717287522325311987975407712633842529673850856072741539347743583259365778611939263286938101173985036970781324137074303484299933469280532682020738723101948999618176210032098949656525971057709218547755778096918688432656533844214122235355366395623657304674800931635345095023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22293831322502521548177985364113191363652447658563293548765501929496936669169981744232892746238836693292311954517015720590483872964090350970246352047937131120801548347178299152841626270878756910306442124422509216211878563606945685488758223600535777870457383585336901155715442986784546283261183725788386681911758637431958026593297475809524059330873094737733036650603130054082738177650426582309026914898406663382059843713256733024414557530688765662514585738232558840784402679084454076681714830385322401034606452637983417552924037198534900479693488536477686541314558341752315870786724395854793783873774379012494311714143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26159150501275801059353195433134382033381879868185618705643752429998096793835002364581909872808223742923293770309694169366799963497832617229323826497756631087008818210392914810813193591752136083251465253293726526795317698621745383153124292033032163407867349684600580420512469465885101976178434864565903365636136217605869165657007150026552305921164477140369999720715159882187815363368027562168731865188882088750717177620765012682570751221987528175770693264368460800895079480991344935960424557558365512244316799056100511413865708475888758330749378867446213169829681413652536700643804493981109372027725415692228038978851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23393672018384725232785726387188080120893601539053001518455415714283056748336807363378316247692922265518632219552909492172599818364520345165197676409795395330529522719819744322269481413271041448034478780132909393740391349804272972931229415959590037563067130954711945201731495242176407907681240605654180526873259001958390222155028431223433310832597659503007690258713063420612067320595237499751247250294376994256348201520850707789117687467436633340531344465714805705878435000841538967332052919964480430792027517738963007638260593800871584616346660019440140800506903512568684744275702497116569000994529831704976847913351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23577229989270100935000854310637175980538038334670613881995661775730029243800685599303748405823144289785286528127662504327661539739856831897614763401140213460174401805902286097700592987505768905722439771631582989396918046901212147406548668145933630506810673768556685270789574557971825674695990541928918472145269507105422868230162569484828993748809067782151853406266837766044341569984243181281408415443303620957899386010500389855643932615126029581237121799768887661098355218774773897756910780905824757084763353483957023520435483375439622838443865144994331950986627803971936057321009260393330948932093509166317739695259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26004482510310342882084147861664760184704027372165179302786198802620900131777573257033296333937597542007316903785039442842090985303737566215465239637345305545013971778072514686741062481258733314337862459326670027793760893253378387023044131020371373987694061925236307331254117177372189678129339427760886920438515049835760860646688106348972345497959567142861942272305481609641586278619309801905736534055334525186773714479049822171510912040962537472543752284915193413648169109796922438824034710135798511088806117592505354215357903340728800752230904036012985045783747827004104285866069874122785607699698449786864498569229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22428286016328069832386253801809423571682443446866680186213236403131566775827177097915862616230468658848789772856050228899194531163286809007428265488513073484034568943399571591023668044428127175574810018039200056038364390113042175916695985347272998655297591019543650304323262822108086820507447110775680923255004800431274871200022196304998592459581967747426544225397281159144411504307908519433090529185338463916938672216791282131545600997476849467278823737409813887142677900733493960246079795126072733474307939249807736367445388856945170184099866695654853134084874904491548164462089919668213992932932951523991682712121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24805998296654216190244310016155454364267626567082813602085215523451661595699293667225752802721602166222780690778018462257494676192459846475381913680952822295230517139119953654466279867577967635719646820420313917867558793369456491510604257949897375258771634850276231391720517610148120256295112552611503094818584952623951161109812933114485125908706003206178725589121700292421540728787628188262992639093302371001389094443228961041173019948147085476434624535524787298878438917640155599897710593696228282876110954959210535981033523625888617520220145145454363545374551909542319976308292871002469701123145636768339608400391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26894862648458333807152747363363740104904429793360675671632799843248262529743005112717345677788917588287364732340618723909675743537392021357959067671513610842594711335036557128732827201582122309457621076207393266979153544234233604234176840635034564878003916370720178970853389054751716131049896615742770610615617987931605135551804424565633457697389304280316556334563204671819418469056782923842463195212381862834276847261869842131528795374242745008995499235377240251270160564164331195905942439725487781507515189811495365514906104080476283669842881248622888105394291439386906442665050164266664647242002011299602029809917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27433554865859178006802755799849462019953773915386517529673028718618598185330462622304431856956086023488945151016929472780785103785828210709399216498356627020547843223729786285584406209665347044301845412210676333927994762489671810430439725186138651139420417969045385166611333416088028631272990899261385921006043243345621812511590715880010542870674511071953312498189985495295597209950400983342641087926289088328387290153905449227447443698941701129362325564834672471527532456438320492027910270892092070652853322024789328803538357178991082795866259615342162085686287023188255945375357644862680514034828506651611580289327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23312152140265231841546441822725484662922344427172228990058859440140825066976794332656992706050377159772306591706547860001300974622305509037241117678494686581406934576608869888002197470537508871819074989285143247165969594636251282946791456570302430125557580520843502547953414475862685226513165046175007138917536943614929429902328446703965529087905576758187236915191110609756766840421084332285145362256646049099060736259982653591940572392070198665419883615279865744991151101639512453849330730367564308516072175823791054626061622674100956850523602470580970257761183494710685320019184706331541481195962405047148840404823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23243585406444298915066420815973255682559951624419009128923953474620215203819120994317880163855503452777820123748013732444526192702390659193901240784380357490089394856089686771818755270851529361893545316132082670253916059865608770005496068272210135400653669723675160576623236406509903069258024863760414631962836850899845938144906939040504007891700832533966884726238114710878582636857224191019074877976115687216682523956449991958749113976925135036839618321816373585722150437708577130965872258276078012817439707763232017998266994927510735390558893239438166370800866424386248313837547548319471252625266765665287715225463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24020169504550660615092952824138054317483210992717574924941862934290286580494798114004989664756178521926937756539218409055762016704176563814996190557882906540083593510317064875387412335229994356358555539919222293458801539325573529609963606604410292531137383868530442861149208349921944275203591122417758272924575396791652814255672108717052742669055633463224866812874633776866078679015496922320145488412307505024037337478584364906512687124457091717669262703938972204399630366411850684050516262527659798152989714645573553564695973699545924703476531467080358839312921609916033789654560975691707978634498249978783018278399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25506740651856295844235702894774055849471827708368674503069849075609958631157993792681430104806323283473613931668878124169984742052048122761515044529508190921320578819577373042326526927739515960849390849757764649629179709405518623944299192304910859639068701457585344288184843165587721657316106823575756322459070189613107324514905655863724870900662021131848766827916986996222317468904076505255186652928406144294056169448150606392889118941876007988397138459247979968987183694275686772202533852905807474124816422650184351864812407852572418083868961071426602774898162862551682282095607985182317320079345929972988267382551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22546927281624105567603654691876692909766695153281432166716640165066198657290960367296500757164453705817917796836650876003934245920765631369640535629940670900020558929410287634791024522255820844882402274424520217116337668529483991837001155989329957956990559104333576195423412227496398898467334720080928620808591275454251025701251331424128311546394824716325355781667643573932639262299538457622222060143865949195086112110349842286701078677290708660036508710333151306308886090613900336643787862061611041072907605766702782291669820298383695215739966569792203209938059028916316530813550547356719131441548675809845523376879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26089217474404835834397702108346343496098313029431268443387090199948792674818523348983506071982388121272922966317442293752639053526732837580374762983978311792737575009741473645841370151548858192431665047650813986288911349388082251153984479648993453070865083024936105222075131051990955753764602865914584358740269064924708894678587941098915210016152329882859413696909532367744596548563023580213781094238311238688975774509816732794760688991520191696515687119524228368467614026714132880899094957662417502930013414153662808433283832756014043659218114760157635779416996399725689542704554298589796758064715211850116484837637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21315981100628806016527328006471081131593437382896769328143902613797696527212343946788144362241990024186897074374245132551897047187654154646009643509468485199099983782051460384054945187272780839485910745341894495344828714332021869000484823772543345351931968096186695761909516790506714592799991422208186089778003342206697108169320951777483168431723112073500722065801216377914125214972782903061428321333040172343350020025662358549328118993063135659093632526804013374592354414356705469613469968509647673808203393940978327175592160932388011039960698358600087052879209351954337395259177889923021800917765942204943106769089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29392313723992148870730929364985292651317713179715987606855527640096501591409302849169587367605315742650465940602427346320817387704278977414541092120857911420350385320727120903327418209376445213095473621424216978149846106943351240358977758897747782144528648769821787995464646188447398203907951585080012510849914358492604629639756241890445059424315928385480527466872310713403657319461260025056902733897100104988761905786716918669198000077246599929203236904670310757061223377817392013839580564651575360724437854806624949615339115561751202898883049948828757078452922919142800454108326079085861954974449977130504854206389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23101343483012972598394824272998647747002704488425719516038647199671233157687509110549691925012491480082447184096334191203713626286954911773712207680953266621572682169706729159021839651286654427976100565584171462510839368611312373706880892667981558561311722574902021716238625896928980300918320320889860479951963349562656073518630552018066497769754338976272601782716223751846991781532260415241075552107445836507520261089376889084504142846865442047175431542033124878918374168407741083692587148408786355740818892679819841186322471731964855831830009513133632753147415552908353137787983869675748498727975761701543102567929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24753649059821475126818129181712593362451697032585612527926312734621023819143861721995308893102527497146152678174137380929593203947997059696915658469039009130664206574255275816331904852263959035779586984572413705425347371664011777090783236601207123801140297736360511385999241297854718245559570969886503703020066758344598719135805752807762276111157074251557163743042435668550927758301339133089008360643745814316247261655370706525635231863669573421790222534111527889446346974381401701955730925805340149431680999451021936529815888826081194544016267263040746862440516964834474089371217621991600961153616780563187168379559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25790443022096953192548180827481346352553727613219723277180706216835489516056574541987018021341587674086453818027882224247103076265991246171503746551874813282935463609139037777533832948014248916010839820002642597526015879590875850771684017030178623023119913651559249284718972932175093708238041826636352938377947353614666664995423886361758948059624357338764995200828523857270087141116456001750938380510813958946569044719038853716177481707180954252788670230545691076691877679536892516729254960478802361621329118325831881528927995101612996287197085806858755840801261473822731120828213760600483524215215875339627129144753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22632638327479302993416054030371149260672793641618845849196312997990574976854186587961250167197785968045427162590297399311015166362826192242577094401063316432530027366598325438386631369559068443111323735870426828335974504585125312626343274686801961222278591718504032356441575420184480280395264895476108600896244583236164454463731730079970067321273110533873454859546325670467867225522578560907883145036756125373127526825349098206629538191242563230990243778468918776533251900967357280338203101501374821935222153833827127504027228858880439467150204341331552324302201028641968399534524508979498116315643196388495245769903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24962789114017994790428464966686214400660044105039287729575907865654168509582157496671332702658600726550012338583301271731490246022651989157733109348745751833539159749556372290581351879979904920614461555919541709331540048349492052225038776179981062949926251978503375449424328876778325615371827242686202851442053025562066001998071817782432717841615864157106650079639312427569000553873314953488241367173288981041181432806869179886349339958066554684462544711852086618887836840820253950658365053350584406942767830918556846125198683529634261165383946609769091036087946836920315339547618198524679270959074560421223634367493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22950667641800745397115358657748697680465565834994769690716466144936666734066409262299707272860380473705994984414807962605223232917764637439780226614245381765194068094900569415056777895347902709115313379429576373039162094269406986901549638806032853898764278428381058188819887148767252011345172986449883313622559620146757207068333638134995039466983706578077009106817346370457544715840537014836535198270571201719939328024717250840473251110879051983060518538865065094887100449067006475240994661718796732249312913339408670190177342619067936969022740505877933218624458558334485102858149877607372575995065537696772929279473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22094269338050716624347147357786435690515114564596777302552684971083581286386855025301727351193218253458928143807708177304327867019714223572039416447598577507490754099941902148740694362543696540242785146431529759216113000096073181619153249517780823668429212338033515237367613453785766606013014658571640862247282975868074973189980595750783385270634938603920280492930543660995111934979310127929505907885146886147876757476436164097851519285796994862859702489208949344404358074662794493727348947865534212451558017591229570631070246925480941789449158860749455706956805018370935028997694892173380883197471939296459744665919", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26453605718835480233972770561306621070786259480240562475298761733728803311932429835796993252303900770112428262662521875327752785643850077023573607891384999889031428047965736649330893441646880246549308716172327252865560388462495395236972400512626942271103513450348756856237122993866286043678028070440497872503255819381051621114719411632868835278632410731298027781875116228559376789014298186727295825212824157237911933593985454775279044428798090902620077316710037901843767665950248891440825810163845223046243711188307271292160918222656506866306725334674302976813468127238731247708384057642331667870535602063651119053673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19287591032050706132496969050367967772134927410377960630121360574795228979311278127147532705656432691808337662871392657703570552713228380652816155064347567588331818613491569413159994909223217656504412323915202245069283174325783974550814522252264399067599501187370158405877816818496498722187753545051648262818481567894210344249626008419459915133506614787717022268084017309302592522353108176858224629135023389786321643946487456817297504848689610216924154454404063482515285316392198311473678242003815929357914677300355369238659072904268719581136596886489662912807530729603094998932506878584357290995669018530377989337359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30174891687501785224737499894495117352719633271701008328168807276362404354236258293948851219329174408050727383972423108200926868946368296685746499300303589534817650495215863508211575556868130517484256489904912777487484053174547143756733395065817273148498446555983080937367682604169600796748836702979041508670649376826934992017263972488081402510165793452110865904296286296308189189045658055275166085380078616541663469680927533441573060693505568957685568921160239756188158946455921192456035152862971089413531387388623805198716661035877856507856139538300228519453254479962540384437774064760415901982949102425985473722757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24298121921329073679681671856609137332467110588559163055453142989386862751387101467213257993906053869223314771062329140368844167281544371608862547367314099827228544559435300378831490498005786293817819126914408146328401810428947098796766521362685662057193240652129105565469659309426032869036389095608767316183788374759812503020816457993994165388994804982727946745392467889613445116383341015845031613149823659514806793524968619282014061108257670948755391917781517613268831573798702030491318351352857166881432726892277726547297642421307189236833392983475207897865984044802806269052225447404452039977666993289308132140621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24015551902175041013797151857454284362644944457036287461865511720828164849154141085511542428167431257953277799934012021134741262712823603519274955781414694632969550790209064481238477744610160841451438930220856867632887555818314296518803907634720914192722721655724103195423220611801105865904028940271672927747748732933470398851981435989753835278999607312185808076564697428882661638120088438480180464114024304760445353401100262029701388422141821051857627009395887926134119795802198096113034365006400109223027335148062151726064152092396677630395951935608271906503164397376238975050862104064592977749158152242548781842523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20448871101934361287906199111005376602520157295943007513979387249757973001534126160734971662675544027971904082371367587742492207543209132840130852719251997250665829007571147609062699933219043457899148888615864277247072461992988877358309633453167838365146234881855878941565006344358253495323343597476098041902726447183205821888964358243231073619629776299953048215840777452857894992985989959570028624334951569393946940546977907380369067205704592988323626499865945914039090965543606410407482687808234468158486205014937881657837333749834169941855180287035107455817982250478350007163753665144828081431404960564037724984091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23891482099077568140502709258493747152364794780019089892399575422099874982140678299438645660627264363801782854324801300988643019199941952677192638751573236760284494733337022620072649087468594954524993771148122880929824543716836531415695263810620466646696718653445151422653654700115422204602938242620365906549373155982612199492529239288461829321550978959588580519065292926559496793878361380951457079562492132906891780644538860702077888868364653836071958742050745330930048865920728218612574246763833699797558247750818142672412947050328901319851673023727952624934861250209043246704063473835872733968503697795424741162829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30323297197321712760825636352819934718402108279625448027039893771740333375634213969167426638140925046090304630463439262038965624271642722240293604165479621488105650298765107713427030985795378078618663445997380621597784956175216919927447305812181709822056710329383416641583795254490636714267996169647564535780966538250812546665507868067532467795606558680009071394724911297551252610627528177560512746132588441041942897755597397934207235078550389669613622396575230833169287320099119420087531062193127023202540843879922998378034823119492348245177219672691577045407500285893977007798777125658311419046900343089901595929591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29523343159241032872908655208930780111221583910871643524997378267272114499800154564964247899264723837151791410585908861887307396029285735245664015460923750461223395628385515140800297651045089169024669824466264108854709065235503932324737595454437369091912871163925862999366928075106770721532119652352867766511582317699292108946179686627473167462664508000319586485264896492061892182277586328562265675622541495389231816628955624010853556972130586803728292254985802554552034371128924592650987829179037158509168256783459022713079699197511481670697379540358060695016182053860633063956185910577882356111461465490622013382129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28043551011266637525254014793634291944638895198080665043739915047481312976896280572826284704171016877320374876353789253601118096778074343890742551749155828435433548437632969633405235175294702840067489498805529239659557658518148750887695658646796769292137446635071843753144274623353009566539342251809708339961616272555708128978753451919198273480957945030060248715703838122430089089084359541539253679819689339828229928426666364592073145607408425371465038819402061471322107421044676494917666131765865219192494655008385284217816133918270547405110729657362324244973491125305183040906321037876631678012886439954941175064909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "29364438145427077050208962258265349084335329498871412141608742137883136635806744003759612999740935227929864207037133125728544402413277650639216044431125238798980850385304331034886513196475475159029028536293259282994293994777526478583409419291300404755426306099615163962377894971606447480183469370797074978780680293671764273357572575620047646269383477939412852146960033848057428087393731857863886878183331411679935995049430528081161800293664421893297661783943162868272275284498724621561790526445766316075886454393394257967845242055575813175797329393629687454085175155942310695517664730195417249878735207295002445846967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "27681246140296040164643955852005080363736845409272766824445457814154014991536243289012053405161147782049002554152528015396588887588365947426144091008977260779739015640590008158307321337784100299521613538488684054370950793835735589096906876186509914414198669050111144700977724291261057160021325834502759196136979825739002333024778232535476944429304130989587691137211737816046022487191133159182217771724751559665799760855888934180018845300950700461288655614438370950082717883048333264821320037266357930123772290182706583063680952976726070199269658031360831647295272780766113478856179082314802369542843178695512437035121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19406662634916229558844912219713298155744280821483831271168330524214514179304131718793996944020246028382863131700913630935344418800688800949604459276425724560404264514375522450290256646453182622563096320427971455279075599578390629288349496828337320496760470725551683134403830568944276084286829701088686579069727436440285366744921392871725041163394935976986216582426309426666820128882392041139438624871690824528109887172235592723105676471589862450045056250482891506822783769601677757907017492435832439006254413482572872602974570595759062759164081572055070770616930856435715451016315808893701250298624086975577604620757", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23298739278781197302330438270462370205378018121308846220138595905660354133860599351505655357756350664071566562659029371380439364650771086692071164219660848166084995061760229318377324123588702926957901947076433889050768506626631203954697253685997718627621398310649134145995256829505570160344469861261618589771129219375753952226218367438969818543931727808257063505934348921813360501352847594358876417118859314813319450261047716424315827962284561424177409541258906086135133469396309478004559209382236092923521165229687812257844073058432204553648425469373928696297912693812735311354035412468471792427508593884230933396207", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25976987808353262147248913608295167860542698576792985680713104495351225636487782536146843257030950784688065659628448048995155579684131183927707131849099167330737573157344615705411635156724063247437018936152756274453028559109872045079615557555138364655161369214337542492223991672931453073734118543392819008873410351715360862339470901031089457108033536578129378115764485686499359639524596813421286282875025314418989455384117732669486844692499460005050550506895671741736617129448159359569707349840630514731103951209366788879162995269438530310981940292196709827613361659622269392841837778737871049726234527739200406751713", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23158119639940186741245428460783401596617147874039189004683588729095716251095737282186160823166049007017618316725111299721841319095317464578262647882052854285647245268726437341018938562495888959105167244928740693197669259536287741041400923969178221283990919819426533902773516355024644476227171287122192662290337889206897931136264616042322906493127791963864833342942056515269444859403867815634168666046932425214075725635907075841050972136461631267260680494077678367572067601257459370801132312566808760907094185443917098683862423555643800056898478976711325133999876697248625451206831110373844780797382401089588806282511", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27907787293524639699735964852592570360776516850570924388339587384414778822767053188987094597920414258468187213437523563111542993756410905984800172532669915407843396969857241779681787040969840966834167683056966413588218771063056021536956621613811305341770976735792646278119923097965736711438340761607908036638938918605221659007812124451229685717267964808800032990699980787750930936952406656669900371214822148560738694041211983840953024022395085995786190371894933763036683525963851665743767720888853956126296238061574725700378876321709224664150486396602806929178807260954957171780320001208130496832818970399807344566387", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27368799802265865680869500088722917708047143530398599153881577116616891904642440882280781634366970591147963900190050664882817293601267335085663185576649498267627808013415025879044222078624032308858600895082475859756840398254028372760775716866522060537565326531686631115168712839238976230052397285719452384446894604914521852080316988539088451552157034775061518648326044324185565102719631854043541979442299745214567690015742246098701984426678530523240970295690777553437354118073491717575513499797510561395331451347169211612392546470082902939049565258536247537080016408772958300183831998071847745428538760894381859047761", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27909654346941812239475334857919291513738930324374640980582255243764612009570682814124402902445683789689440635364983727572926557554950112921849985777363346005546961176016856327842651068728344674135309280633482023983045750813049142232555154164527960046872489712771239751592386981616790625228717940731655914487726391735653461921673931773615383442758967355019685494409026045092547045080519309979991647315665246316718278323973555638569245140287116540653551991874538905049059826768716765915899739668102962728464758821348983659876111458635207450842848096494658436880004264003444276541030530396653826864717178568801176798983", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27205253295408388492291091123359096380776958393911371756993098611901274814851785364434487121335488762942393765417134715340745730841470437546973255590193780317958497956670888375762151239847739259333335059996961974746101178350342751721515560704474504403880056263611681686197501717629633345955464076011483602132033633381178716882051060058942416385963099662328986333712763262805940985865304894800016835992646968434814105171218277043370039215569447462407186442935363320223022118485138340108358863081191296802916326610281125811272761630970499656231802281408130171126160168007213768843277513378018170184283743764306104250903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22272769067763756905342503731844069102625568768952128917382981692228258403524723512669998752017674879040802048735221250463151155331484959157777422880733489774528807158813636560755233704614735328699249268591720304582026215432666472736533700557521918223161778474297791553149401329166102825837113860728899052765184657712987175561823463914276103943812599895799979743037004749548109673809932700038508148319490393398127367510200119715780543385525388542888909504952009393030239668113162535175545219185754441853132384837377972447107237960249039916059483991538939001169502488954302410622106477887849946148324574000527739672019", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25689155218080558739065479888414715098373268174841184668566160120168327973091022271764712790741334933226299426908052404750967211960744973840579596204164471115892910070192985562415861379588644644506517267618464367872048380058106722288204056634360641345968103902025791374623799740981155924817439382261878935167800096868810655405854495024759120807803812851455478137314908686612975394928914893935343799847258196609798801916270041875486994253508376961687932562715607108859218401606580093082797054925670618075193384931384942857897851439278025586887626659152171431903127106743396623677924175432424207346732824476964721806267", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MN, O = General Authority for State Registration, CN = Mongolia CSCA", + "modulus": "21965232084395278564567341220465004058187623666223567101566425581764042211385379395140414328549976163742238953116995089311331454865750823617160068354049881694055365335355643067513454816793795186442147236708576019853118125828929241098332929348225741937413374138036826400511546638910106743161959305759023661092524280809191414988285276454010432635847669289551518456159364202612834926968957360446859109697202793393555268181656573704791788410323715113053956492977873026641000862685514550401830682804266988207711260552961334463805229205639542989798411407658996729531965416911565576626077586741335770008249677365535891558159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23868424452258516899091145490876429", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18650033626174623447770568551166932524728217978075419239666968256541070498796150376244320499949591183505668897356222497337566027808025574737251555391583084399653997093482858099031540131155464795198312604967382097658920137704697254760158703888948261166144166689244344809255285412301303193946308215642062234541642337337509970441727095280044856573159132524632052674676808491878424346516383133843460525731669341748120910169604243371252649672980944323013603688492833219993198422958487924070490571642923920110443413921087389091262861881291939222940958230209792194415136372142873278291350731258369039338276724074295599143497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19121994227441819449737272058465656384211564100391966086987950108736342467093943907742854268966402187558088337040732532387184110777002091031778874378912601924742635886752862261930661274964005126229766437396985595448085494548400251950426258461206971459135093727010078340809380160613470950158734369718847091614207450805502476890240362990128103838720282267028914194873324861265407607640560152610338872408349469851458696165306111959336747716269114838916959488802950765882615905157169038276318670391266516131657699788444897653802209074427822409837049808095123575713580876270184992354549918361119471537041167824987003658181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3868189717953039652939976612385378114622881828993513203521014736218905290968362012946324657879288051992382029676286406217945637858037045405007919466501779393717108563866979834983943677991082657590380145829315665835131607731298860951359789437731430630881308039563432098289700894807200336207467339081747915065083371658890420394536257802487454652726794265291073742331578794643783329153409824548764253446896805129694318953035674332793055036830825924124026904816741121751933885789729805962989118842368578467819779509566771281501783824340630232795520522472485302157326343694468864364896712357432527752478879379052956926033562390778264375594855167806699061357565301035828323787055345075379007778460622323505339580195238201396775838037924688670722296409799952415995452622306206501594540071353511177811925616232739352673735851461625086820892338214206928055791804645540354936301234020601730035815700669622922155763820459994739142416819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25190135418487838363886448169090485075152821746623935806010118489609366106795843387638203747696992505095313293597119849644486394180797201165299028057790654328103757671067486684628929519168217194532627432468830084914991581129547998081761742333879130541149184471365423631931346898815992052301215914192257059380260419668079022880935628821029655115175349135309886905172993793725526440933468395148383325713214705629400515962109583836180745190447263664740242967861980750322700916890957443534729607935744048276714830003761003134251173808756338125701420533231180887169403802426447281049456812631929564021504971846807661622173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20935325299479957242102187695518626609555883370655994194988365370498287888744685432118575551217424158967011699618324067560004225755175737536826604963474169334727624379197487194999978865254286471215273133920304657750374007758080383526407896384344001739912487523726546244742148070817798164149408225460107455320484237037875929093974955560266228989990357731691471055193368548063296394621207481268243924967207853658316137736485087077250995623569995582138097785661756540218968685679867565554876452089087755713205483819301698653145359529119096472751663505958979797307565422049896920190481964348534000634923811788332654094743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23657378935721081298948438841739673103459886124262051984497915351218931842753946956655464536567771372583872275884610419272271185807294027395385346394543644538130962489434621090086426230192807549846956551307167813887903783165494738845668268387326181244872637270388335391121298401459437378778925669014831761969015321988886415671293945498921478960379706454697289211981010626705329972584020580814675273083109591987347153577013293062852980849116625676179252913089433517007941848436064244548313842535701268174954176345445164686075033925956308725387064045123595450474917824142407006003124021052703497327165307780934309065359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27975493330451658152783756719311628125068028523678990882547669933364478291291031020653110101856996435947083566721506173276714165127392075962625201118632571862624158823043579425002697958231643418505622627395145246531024660268778267972327821702873802692536285798878325497393133902391948016285035689567109142204345116517284413527983487195710537636397393295760926417349162138863805387926562605059613579675292519570982930308216569747895164899531861909567756196536803864627571366448997790716692454863695455732617350590171130809369614432792825493557962700793789495612178586779298974287503449845315192257059530207773354294957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20401910363027238262346213879716444442244757136836332334036367986012782143189234099646910370045696560305852321202984918282833916815495889481284051873831025109190630813920558762243464815580442582118521210906803137440077106782088325884877105661658956745877321713017389893970263382869130892893067316951177508048244341277155768726477978199814505112110608334851384094055572305051142505927737686362077725603359931245957902512688204301642130406704911141391595694495621625487927783801727107583054996779393283273236542669982772094376047102688613538919768799422769067025597126199339341217806882359791954739232986033722777718097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23606589882935809233351797778975317738410415419615579109717531968201407263636055623138109598472102361325811557006406095925443483328795595251272736355325009859765458580908499296468754977263007844911974036069247262926325872440192035965661624277795900059825535422707364888557464019964823519329788077776192009691142535711724725667284374199269100575958478550270352993135650208089012953673061880179679830829490465323963269568115221029062507392494113046584589645263387190672063790270029698084439282542565385704486457545632008417349793714090989495226966384565569601792867372645598956986638447201660171482242795297015581225673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29449548220869415851972249442180055992438754927593707896785557739586693245492665996390760749621249976220564327486663151092354983525571861606877552201868562083191046834707703039776170578396871113770930121256252804124950978897500511538044151477319086266611177295846900139045770661932893496747129159471048747030316109413406451207190606383939210708572787650947034804412333363365235169031345399634761423239681012613909060548180133648452203102875827469748847310166751657802673406223649460260109749290231185782744032883696638791171472971123799845236660810509571130879388582260348901221780978003711251977755796925559632413007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24180877801244143810012836197971475086927275732080761245110872355921446348315213328444232085891052965855794574006809367475197813929233496448914519812153481157437674042964382656091314505431402359430358525022680899617691288515647748514007903499757419431220804502396387327560968949240000530532844378170755582314467849754104365272407389103728507193307434556851014473721529355129011505460977778146415904180832141893616535276802392611492707849961313387978039572034674870765670708406690929851453909529891499168600287739214735736795040762286309613763597138550970185775843684161282166129663124777320452973817600755085597665553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24159123515352481052712813332740542123481724925895485865903021184803458249266214200437577031762060889969882151493270761857456592128890507686183381438552406622877302378016559839958881312571018520992199051996211767940292461792678441124064662643259158844663500883356685250124481363055312260354392743918753245690042521694030556411060805921851980944994109206182938437264842087171897145765159032942329974102514591063819025847170044868967184549659833694033889401673018162511715110897551320060156764617165122893672096438725962276097895749224686014866662417894230944499890937312146697234237271219027328287126553754653480310041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26076434086117502058385817602462381368215408039469577702737343342281640453923664481621161092970772786558820634522756116186504997683508408207336133906438626714542455090409742049894866221159290708538218411969519456584233377788998604332894183801987842534224617930717467599535384287660099764614902073270665636720665060403640325837421599496871181856444709272186027875646274092936079759343871401720261886311052930397504076913443886856252488329639681103717774504913105333945623759537611055401123802171347253227658911586213061584378021621287961463632275765900229419908464939346726280192912334291521938867900366273752174900127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29148144938022041665150552857960437171402578894909756762572754811473585696981725217303964363801169330325093615493620323729599241548953126715037011018356900216817031377748162468566195073887441507184364753659879404533677749173335623740411286845564362281703992192952738686249368313225987416426044099559023700434521092003285840685932211205234953959919325259506366464343036461856844709942003642606997408804649703092460296252122629280219986935171149044502377518780795394461118769466204530814836177264663735593823724446330894619140208398961199620921647539555395498030303031475451882602937555098306015521421338671351589250809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21735906124978186582309428868956112648417368942362284590334549290251763352100270215228381486418676770353224790757354425743936313589737432574192581683209217541734413124028652329852003438415378134619658612350177411610592509693711778845214866344025448593914518566481242102999795133394022135088239737196890940021193504702464633839112063447028097284412692306284303057831208797926741443538084486948184379844543003071718903565895011127691002979695267667211079740698773901722229959998070559432012226991325676047612213217887989743533483780991503343442916244309084430748101706456955305201425397385074744451014561466752005792733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26798302383126775957706276443578081032817905298252370624186268820600224983755108411792215984253135683218657523309724777459934804233263720509381540831298288536803648967869220892259835993447484812963065282787375510045828215368256142316040840204840273134445577905841209193980263360569723030816709400550596321652001878165981522577937784289217793877025218374075230454156569943769154588543541356046621677028067599032571093942907925997116779912252013605240197355754460686605099863748937143821150051660662805035635537811524740109929315082417914980347015862509759827958380661431629590727743072014636785941687895124826441843597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26714211654170156408787768854974430900245969337518876995707351871053815073292730064381308001554948200732113467219369382257561639494360545614434614352105402038855849230205534389132326188289988783606513833440655749835158829033924775935495082384367593163063737841752405886719483211921848825300609961320686559750629679783394226782996742445071836206380380581998630319586075549360524209010351702073350441314751716783044265135462672094050034028204483485966704466328126789831534197261718906008953882772197583487096548350223737258073766647433526017742003646940832946595219728090136869743356556858020649613729203227115148273801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20629370879432125923647193852072813705141664270310817107906780447136261926592970151134117518396067832640146554904250712960211622730564261233474775443929897819429595916045567938329767956417979412074914959306958726678792935106947502362171195276810705342441533276850998498457303540405037135330712039427816986468242680272246028451580089721932437759343566215076856935470859308240520741094993585299851166557351583268986546927232379089805346806407569358077067476258487996060842703067047756429971592619531934295678710948217924245970214676679693221050177785226002609425671140143734182538952930027021364871669801767794075256989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21930806237990946470067366254167269064524322071596571403127586339563944374624970401062449761577076271077380949498889656903978923992621071646932030984270102810431475709419146798624516791696511905248503221196726169062808674165003339068803234146553533032098680595384166850382063992849417769515039422290071502647855730789095171953988941553550939156796604967320014614550229923346930181807595602351049232686135066720302051291733992219662807905060387304425442150093455803538458806574989939141639348544607521768316344718525931234813768697898235186022893488221395459406064764387567645048779477139113788163168922975885180313511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27323813589143650736352318429486624043081101694497791341461219525830069473181714259881523909915173451383657587401609778785266549874564774578610343132513710863095854800356675957635410360648984047791040537331550645151659977959571841265312680856820348461587873145040470736787844638552832103944742265966709292879310365290075076174490708401343360173647278465885912761198864675172261663960971231480721075806976209134214610490968707122658260303819403876384630837836982395085265113901778035675147897130273604357818591257629483629072904067827004352021088440555218406643387341275340086830798848412150681994376988284269953529131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21977283759532250920205347136174781242858763137595180387171412203405388016216663734565701007637521295820269260562308038508448509972921682321384347284254224837344039529919188450521529004021609404036690908870959748639908586821684150765159460811680249528744392091826732835989106538000115708081503465956433568917341590605706273869652109253570058626519085107690210836822335449241839413587305747824616207736129149169534216880348405518192585757579170645928064452180813999647273989958159471084407018860094844114592495137127064652507321663831583666328258054565403692989174939189077983733113730654182031474470401892158793409877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20412778579697873791451602655090714784763831995644464369391683828796127492164876181071891304957160868588867078654349912451878228483379136920532327012459378961138034973229111030171651165900372212309477507699616415633810428782920666360199274298514178138925338798648751509996930939343508139927196764460926081244494624916244534570066159040127740980048414578798046683598177205529125833550370570896364902527054693308599467433205916586879192320183680947564815010196841482456177776767180266807748456514851707613565584320506802085124893463407655753134724616135664544803612403997876594613951716951145509488644480032226253442819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21551625139848505948173258822889907564629386159662194635183253807923673444298416542330471984130455693664198175906482159466774811127197028744277548068463770655483768910352811803320946955363004069612772469244594068253682592372306173339352390575286229783019577499756189813021272704420676546684261500445255756683389583737540620406218654006505384883118721978692466816161940728578546216005330209538419824097401488042094845599584369197142324280442013809378407649547284187385332766246496900483580520217504758476681682427248559922324637588224939271865400382679515061188220906165318464632006247273235227965215245606078829726399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24736766916905120110604538012887880390763505486327134412152008044066317584663785293806610649129184230959279758681521402122575415064268104566010528885724563266053999514692068037533669142959883001380677906169214756063165927526400169628448301877731686426437719434281435822523543361405691185786159200417154992080776652064651320766698376982514615576064692824510335249921892105911912647785015811150257519188658430504688709804978450789809770576901168642705097006306357009992966348485910297975167951314838302929108335027760663798749860712233795972186424076553926011761972334856049832089993062830106576074397633739015678662337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26224119057603228093871954677977024217279933348697830901992066992151057723647986582096891418584807878632114283983358814172928538617588150917274487515819575049750309873744220259949210379153823918257869333246437086054940023617622067691191521550451234505210529371510900777433669167530060402301839320298663590094777489411783293762246507770091427640846789945854781330371144815709066250751285140121495729145661990565868437204300310816260879364228547241622670326487191981931002876252251206486362738226054615328381644982324541829206318258025257376630417832143520672060246644715244308471418790867450772924858095116566060214517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28961118917294991320803122261171019370674236241145300691758033311384543600356492936424699604756155362760690276945474792499973281413228021234096903207869114150519637366626182885743239313280837737565903914888569417676472755241741747570137823969135501336167091185186412380489438099496593884513524609988948965706584387653019921552578071021878474592784852996093315110823321706291319927786027865635002739310547174025592992760991013054992848404873279918584825022059966132087131402023259780261060642918907877697172688889913262864312484154228300221974305778910164061256447102359189697118342647569068238409725576975439823514843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23401786028075835884294798288997644", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21630234744361332564416360028569298", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22453520477663491709104293589238617", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3864802887877126804231928490184209310208510298266400104139622655110625135961511169833385075403919271259410824637744987896919670548239275558149428305280012603204845875922146043545099256359729171926017103460245360521614606973022503129645092909568289902255066284600631181002077260984189381006350244448154291558479158262707660623186067963213680477422259370180593347712078767380063599102167194980269458108098601532542800161659284593459997401533842854650044378994370662759321047572644389863246447595189643955558718725365143845571939886101779559284042925314541557267050020121643515290323673322804216073030278257106232716524587126830843398665974583094737842019913033673276999506364626742645677951107124624454515180300220674044057314941227193956947089335139956054147696445311286527643675903069855929332852680439047498880286400489747655222940678832778317821075523566250296376991160823854546249805249057064160438757983671677507536536871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3942932818776481218515265529212117763687867091011068202994576482008471852409219923587499435533835340362700776847057872992880583833012275057558495916533768627619436003439750285910254587377921300247106707017659761833044484122390258905035547493901304646363072619716278799045361543156467221481326313775119889750433482482522155275968298907615429940447633647461998225597381218933636904872163628028667266022264076641443474822145956825988702037226796991158185114804593026560083253216772650718960348272264098670929992856067935952621205147064185732674562219304333984535150303203465301561448091140065519788044093230090181111857011216928408070166881609380763172258537412451770975660816450662073725941269973856446150626123088288328964975365452793952986486491289496645482479710836534521570741535172737734831544173330216705899106029417455288897575481496809616299319182042979182668677606583647782779999255104972680094529433133161512414328239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21154608426409160105454387868555938", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24180556377302669756399002545314566", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22978953207618224554429002426609959", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = VN, O = Vietnam Government Information Security Commission, CN = CSCA ePassport Vietnam", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22710122735378585455280850741751188", + "fieldType": "prime-field", + "prime": "2854203997057810571990798350307558", + "a": "642617944486060667599556214526969263", + "b": "24192467090157326275294960358453316", + "generator": "21359626940333736834057592729876417", + "order": "2854203997057810571990798350307558", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20354394343725254594048948977493090824029217572135297987946626293200061864082384682147937843365109434309557582012728036244304698555107958123620351481473119890392009439798404021075551837012003841265691417585230598185244058028365640134179029302101518722947938707948321880125179287520979305220230062800590203599613982245148784797707224588448117553681062169435469480260029570115839345511703348422233657794466455835219581263881731159837589663360883493664788278398715079075843113876628201974705667121624291476322076003891178201033543643011166864234028758255443056154575552508322132381367014535387713847427381353053107575163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24259455238525760869569221105930077505638807591332614305506652437847008092069368752178073999350163858781597843633802144782761807165355297593608093591100629399479184619744158140268742889244815353918588150747429590878382575119997645553554101177233293604735977726070308028713575899009853711752257443163646533218994979882260485414914902026978180392023457437388664780211258419129332897619811017454798167772112039430377656825125491449971788971709201945585616176500302806721881115647656145750953956561599010670293228618586410062987005867261222532246403149330859828205015622543948053327984447490883131159059499473545710486927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28165174152928407767213118638138895128909508813244526072597049635454853384530790242972959898166900695729047582233291779947585231590707587383125160281540999364872357748799049449893320313351215325988036964699615375466191693126364049367068070023080401723966386716943877576103029270092759750133485839491906447508640149406011795042704701097927183742976596840595938818460076127990538627574992445197143787939975082718785323292580769432606919478996220726927235117108939074397155336915594367685094370459990389903347804339540416437586531744857871419398524788145994135505069862938918442304456581948468250605983136156684546593441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25699155977124232359067969138372991201187734721820497718328055718536997685519317425213766863857169694328759350145351326957143233791220767788619494918656345815958553412118948675106733373864120198770393366521418312105052970581535936842187391523543556478833177862923761782507367753533899338123477314124697638410581863447635484278936023097165885270813373763246885593380527917104469523090706571379989383038072220618816839833573656953222551720439241965693123034450310594217655257847210273344422026349893053461293166832118527208516662489443677711100747288792043218335340012121623176072582822473683664863819271625540027959043", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21987825805882169344731756197520807061222583850032637306873654455318714413393363464753745044703133218016023137987932139689505356069247963216339552612278973383266258563021220827995246567621626789944620163848886297470597940224043090567100307557638795681716797819933122633438692758492861358738127630310249314102644415784424717061902978919702917638697223053877431672715928867128963348461637964167179228661578290401714183023671151001777308458620750923830559318646770587616975882864547363678080741860585882092880779087228489762873601723042506084322455015280513217624905460352862950290915976602624735889573727542805654174877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29075390535898315339264173421541612029980816312468560851881154779595337122005260661744249327466595700896459058326211173207163734022133248323996805383846870353389497199954390107924273008888817171095395867303804157746683371257562111099636156965358862180497457182674716726015326802673829428385472920552453535839440995085207009429801386592722485091743044543366796551278720708680656040672371204678764087020183487720160447438388941835621164254668099654954338275923543851110014218436411139111069969563072487024977049425323795339309522854731526871252091609977833119632069394374853035033109595128264282522251531344056750977677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26655972511222611267255881412514803054835221198144776175931864557085910215885937979549942832334293751712301880466479486930353603719121587025559499803104724949647468017877750492749593801814413396928771563445554573279573246598831866144521706312167396882528703307012741040774364517440536580584321474423350411108167379877295601126696233220470337900389419426842299076746820610785898431558586151773005767232108858974546892205072445669885574358300362467802590227766731125677765828134034115589056393449461821624640965364679193922713671078955301400378899510855283032203990597820943559565049682534331380095484832875633277806057", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27313410073117265477169715515738190361308039991015995904237977434786262078708392145402918357201656767548330916101165489690044238174868461478738305798515491497914301853693879898992292397031104584273685445175960636447479395549265498443885683192405813029966461315789799231647285817298305996557041490693257289454815389214310778939400101837934392115765045531923510027920673106896728912613912329483475918016539020476544585748267896038934540485472144342568032656750479728796707900913504214308850746433977921686239324719289062400426438654338087202920429601360607333250555519260761497907838426721167882982047221208820134843201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28347327749652942634999848980731448271305481129456596174545605133058599962805728338496812447449968068972359148033893277771644759746249082978602714351619899094366890097667590548690782359806535493445023166840376098448655519511914430923976620925211988911906271716755074158061840551969872343123163628456412895725391063773584488514831970885975997140133883436778858376451120748186045449465843591228161934781415549404385570537988821053216863306047343574251735359164659886376001922384928367549548129926570760166569485475437283843964215812668367291936981882795369772492713927623197183413687854944650035669021765935645930080479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30240269348710711438231031339053976979505428587241838882120174734396226736580819529464672471473603771368896275933089897174528514388136602761911446154759688874518340612887797252181735684634498984625051409044237616380309654646429880238512651834205212041600005631706047442172812401527349632479942242794315743728692847263036212466336202970254460257140533519867984999514865038674125613840130649636429791015497360284541584379668181185832886916695055304044513832857112603960243486367214866549946142403441389596567130341663336132501588622581035335538441171859939627662022380732210753585559115286074678827929655467780155835661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26626511703922695758203879003180479261792302347966659359396806554170172294398171461282880494620860349564484493227785276300887458444679247887984974180431034665542029325271302550739389518356669547797599942489989279715645015739817039861998090378241259431914242857538433573866761580653488995218468979197456233184906905802242605138349502346871095655071488743204518512608621445832889070891551479400662932635367272643449318415392657867634003198467557252917690596104507033123602970991185831755586782769978226217831093026728955701079652161622278050358037240178907916666916985794943917517860904485822838045101390315106761610861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23064802020697959420184777091223047361889919508609331755419216825471505629380480838748268671007078682760577962763059545663459544200706674016328970308932958599167236809769439434778893884335309021652616758523221370418364722578270650972427409361168657204501246110909925035559518620090917907955780214791241644807888452897344975124732292505326797326298862477988614305792688783721159863325514143238079492463779706529175018770405428378277260892465506051559400845289881206325514284795761968505530047931077885546591801282170450141723648955782176454979846250214668316615585534423849733009523590834250324486827656660464813048639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26859792737661049757166171925780942014749045747224843283306607821565112603823573952177132523120608213469459138474676373208803245599645601193852899819482178178963118958601486208285040838669446165609406373434651133751539967087349926554844880158486387867566602193223505855116964154934895036078620778352856056183365529731569405263957434723228159456925603419945200023293344008432551926553550725653312837211259433783633476708453746871280217552800759526550718747045934842460919332601091641595281835352786767574866496095282423521175975721968723528745176546691604313822028789107095182952871916137144980753665475994432912154481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20980766653348018034261477484149746911342914067701407502270505473887781404873733119485770659657155482649006171542766314157232831019088688301562130135372138818477918874543790526590786057114747519011112945250967366782925094367329885422666788346221263048870715827128390545749896822326583997536201824837689610448769666770898863963617132109659128125352597146810654765671848984510885193979516708590416324103675236891160618617451667470823577472865704427349105929378938117027096896870854199046138319734984424836421540948222541390848882674313707140421083146473480236056964639007662913182674577258766167468794174102478961894707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22347562347276651792336412939630580606709504301002716057649938270037148555620998512397201576665340008590801203959517189583403602176256970647254211573395581078345084228030362399282579460052555740972621334567593475004389548324201505123737826344606444637104048157612087863537953238712175239443890741482702842140780025521095954250856981196604707642478521066913891728001252108795541964578976003703900102311419681750543410957292105634412785148062443996657685039750022807061782334977388360698244752252065275786077063225150361139011660974866560787421415447915249173098896851464214429397461697780803168787590789126171259921801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "29430358327174277913486229971445023828408120326006080177044513194412245818165911973835305555953387292086998312912206419932083518143902374197706534376737693892842686117958910902884828988162492295039628249207495446161183236621897383879920646937533807119806685581282380869111918514404088761173523816250615545963397755886317525687758555008242842784493966033749307461156738297610390678728988582930657425492217539097488377802821360626937811386887063557239935435588890963686115139680512612433325720845449881982678203009694822109095645697062609825099927268137060048464249911520628633785778921397678223780990531241588492517809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30163854554575693824586866320267171159668029658338720287293235250574692890930626226983640056058356690521321810367931866657065457788815183278592684049395860042962218972378643076937547579897506616786998290541626830784694999988593538596084022609243867463866910624095387033126978750394529783003552563527705859147962687876787935109380990091008906443622130596405869582038997555238674520462519849424677035341299530990002622913329980706333403029704456975151441707148463490013518964503117665412698590037262176417475153467813262789484212329468342085004709532317084034088597890821925358568269148480622736768253394621706854235833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24213038462071059435810390720794717709460155741886763798914370749717467672209313705028443101486499982558899599846159960659132806918609576338738318164437552088192119420900800583472554099865753325343125153399041318045912489581092940964516751062749920517486340077707982944894163517385611438565807424629035225696943006529204912418800425082979540630233431165153081986732789484539540044927985950222667999155911698497252389047924495659828658712373345962688792260010704710309995883966662960546817027003419885785009375008251610957927040797509363873561537688894337137115981297306215477225214669249558615560870562351373455468083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24208728216552579196462542816026282928966030045711656147324487912629342830269584980409463339532709145775691829962504507375697512836002754515188424682470600974822654194287234239468266066273670443484254412367983504622064112998976994888477919918675847067592346118892412171561108468821991611490297162929668523050706673010319296333284763082581875774298436425212924199227736949132348936493104515733425161782759645777363712112403387464992963976221737739184879448452378981901548374775029062203925106314287435086658476830083758790401468483305954787606201987517897672087041724009427396590673990992015358800914935961773266286949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22166273495707746186263458802169291897369891214959850774738433010646739907239667174157483716382335054671190805596962832610833444057405417361288971265873814253566475008385376253725164275410491926423780016427824976096789083798322252758620782508590817885985127238005422688150798074695072607995906468604726920032780600447189249491148838027564674963654871523887087389840693137412704516406438852663798304174889933486510648276951038830144321628211964764046897594812891020905070690548542574172087653776791751984467423218077764523895187354758773418500761837355201191569130974264382980426238723330209366804700434422555322925699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23425601843196159013114957846180248306634525793234262398670358519597850075034607135124651444597428793462170576047558317636624375425598044820959286602482835687419649420997162279853117776864366451801050675600617071197049860766289756883975554248959916850513825050419545752534247097666935118819154270008892851526771941954937651418299361050923864633817756290424249913542236016223562961595259952900888029602935038900048655732405636622739854391283146569855595622830443147228665494971129844726787773515494247417630139812508269677755897105325916407091498790818872888361620179103542024586891914895034784683393055773025762877013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23301326621862500485306014664731061614119250299276841659939830090632456993216672236574778270127285306417685564882864868886371489930710061977691201193739474796978653161056328493939502154407172863035761118366213091288066389406136223358468667015285439323009547516175984013231600504222107134682837106667787556364199766422318305646730786354332828439226995306716104696182031730788523695346247829680087616177677586469298458230962810942239745543898541010238794225563401786517880112649167645128919107418759868463367973569815310420687081151361161162833425412403404053342928110017657286235093775581594299460611100102291725458159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "18305926562264735885667932571833750326283486135315263109412005330221144889886537846203932843669449165747696857426061301451817747441419774594571677522370601786089363360987474913911021779413263874738142726867439577103716622778687306958770482843197987368216606140512646663789391797897565668658708848159312802855514092547201616156010916091864951798002030772828902332041113195335641139046778900937411032753370056773772198742924981254421950953591330122781795474977182591627977512010361652025599074409572353393081882662901236171081279692722606370678565286762403194758941064047133274467051660114712596670150712249916282714239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26669932292279410097455053190722998635365616101858283839776823602823904345825546373917094112814003006050663888439381423449043589347533067938342740391155718554142582088168155050681072728894542016060780008050433802923166309767209733654947351698466055214208898408188076660628261146987671687495521306752408861240093940061982643350079287226080148933309428779972545663801028111898332100401070372749741518373106220472552868756229628180899515060605437211839818729700817010119775493843649568012413551983349544078735774464570407326895975504578376511217649537594899689916345017691216122315736649975197171151478780579013968219441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25864633819926224333060145823916435850927378900531767048893233569961571480075819045572109090416880550023510455138487337875054011457660603959856959144152492286827486321562409909332287863744939293488338054548471515686945051344048921586735655067095886296613346281830484697313332467358888369051202078006107968585644275552575542659637304421151041873847062989594420505868425724711736264461494028851810251315632121606565318846694033155358220109229130125538937684527696011308339376590305796808418997052441258771296764191241726611891601096564950417493258495195192487059525398875725534359274947748609124702118269957536788807969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23006361339914946631718512667738741402390945147867940577996304652986963244974843614010496828223885070326964619120536240525353954581548005741643338076529176446296657112805660218709303343256951415673353891675053690043921943303664389321472681306019267477890923020939592202092856111476961999623680776919922234390937374179667997557854411721197783669719975980021422009145705717936777889629530304037106526791532598043374631854894164431133505426176112704302561527394865945340527913515202623039273727932654975355663367992700649919341226375778319328363980118201620596827828637406123569669138285374828264432394458266272475695213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30024158692278886786293621826529912730577406303584963408957631204113173927183231646063697947128255916596825387163083619714163385851513731673661290235729357138438056532239632059641603363433432028985220206911225767421696688693671322860448400574685575732925896103056439769245390124699162652941094181951273475235303272656851818009760729534278319861145675347065264555575864290187653579001371914790989315600963986704739669978328041104691380609065113049511963159203875354344109986384008395980075160515115586038802543358156477105835694708436757743713348611032719399142241817327236663068046633015191132124962815066125477351659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20996971889740851240750201891229823827499812882794004666638572432408754563689041169993572528186461485554494389505912789157922893254426660750592065878186051761653764096696498429204601333519312041757051014252367963153026299973405128278513970157735623200931856818248774240420540110551908186991325608562196773123288164663290353745112037766977859049795672360151129161866378620027882229151182658535875561324138205160496923161916033121575196202749746075856209004521792779950047692535546441685071100768009205720146560573211109320810551623514075278975515462578497816156633540845538922931567900282736944011159462821123419739147", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24257964814936427537383530574363087466230569442667467307787550716249119172450061798310465722225365324674108504286863276504397417796260182444710852366656650528704057040301430137277924288942143359664733917923111020284116888901222724667909741031436462910613977015748501080957644198640678851563921347433253458849711482538442232495875578497496609545411006121375792621487614973144831855908720948583860748163699888888109505966348075647950843697782423082574433872767570730039015150688174022123363634437744761460789326974208839386464838661565601977735315081654389406064509193401756820729543537641787444812161921391386579115803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20262506708389238518539471733310500441427358017675345143626693248716842815603169439480815120308901133659487499635190649426371866634616619176504617596852739871459898525882293717817749051393349400400416221016723065919306632007377261771319124365382884980774656268053138103875367031036900508635762049959408900007305711177530614886175982236981479410662804131369046248653321808636473252493383710019556054121020564210668089222000012374467269604511013611683645957893254069463625073523279244990456093999119889803401154032601113471867899212412216587230727157765879209361177866727675462607675524495793579791290149026264381669101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24734055909384885954704898105549026865219072545832549703168774199308344508444543367423169629592469738512996812364992540448792288969596050555602123139763005720623069205816222931892730743973195844828241690232911825974855282844773636935911819664899362892698954661943766187171105216105765308751480221517828919632022607707886424539131371347611201932115781064716884438978985583993064092902063133526745844321688919036150098895344076676748480865124554577105075648020588648539157950777661165148279415719849822608067690544945657633350716119656839528352263551396197712571342936125868421281708331686485857564268360535722780958723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20808877234492140244016674604273589344790551718292526856172238767048499736444649224915323884704199832417653685063104392888268890075420761660478956111763285098452789835508142015156200246175207958475085963958979283003077568804392943544626625499461247687200828931216166413978780611610025750784502153835633129313914438279042643339615893867803012891783710953886954044536655787500034051034532215830969004516284054683756256934100264350605910509209064714773740461815133465310620612753635621686394183264498980553252456793815681183991085706352304168317168324465700731303487444356860512025340899378690378330422436553430994996421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28979187490944483235236418024565707349107830053649784732125687328899116715543845720946027098796071959148441144850429116379320607222633718544515219843737922782814985950236443964786436295680107918702453070437122141967969548066117603127440261979568045713618511779661107407341961984411175277831680296291660032829364110491029746052540184793671419543342755807929958089634701522652408988747076199190688216428101392526599644333022478723542558544609505484100012246207355800620744582200327393455292245411813473927154480663629307779476335927994876677785691801974757948485271970578472419699915246135532800327734215955480159470889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24494965177104727776527271335090021940383467023049179085811654503931741271847542243543928077489007843260527166527154520264740492277384564053501188469588833996558065343621824437443239946111058224900167496056039625313481421315008322863121409292081187803613575076979336833871730567760851311070990971870563976259862796854860006183969858671782120386686347068641750440712423081894544610598668395197557367576949294016838251637707716431139101775179434153950372292527637674078048034908965411488789753419513251795651843339561668819271334593382202243747526355674050324920241653899482060215171896666755709395279301777438159258683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "30003363441876736701957577901550755383837695924787000885829819458743574456901784080752533623973476747094642200011597438902569449762641578833397919521054043772410485455921372944315621055779738196256469899788579944351243110641396089658533160348915711612697751898110251764354776480558360994143681308733329799781671253995570235202874181599715691119777908047065989695280101707469399295365408416073611387108851146738102481852743594240947899816513827620852643482115818623419770459530125660983267202969915458978154063707934182991797269350007052671914261308526125770101765572944155715774200569033536586965982352719079307736937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19920255433214660390613269393135650577465661983002751779808309864390169513691287645366909405362012186616606320146369078132977884697041272867976665472685703511650440234296354521653811793278341484058642297628106434794797581938688614815525396706806485742077822737625018727532022769697066782346339040561325291773311208792952792692313086996690820437258058076901550526525693040638232481822960123141627274170290512503536090978852086020229592248039379674593096263675644896923118362511301974241901753515931221925698969605623656240599809194143837878401132254734331605059709093101067496254620706464805771573504046950453692089499", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21822798747723404527397839081308965059890565020517663248455061579602554136851357408705320211095174135176134260573142767915435569081760032422701015430545747714715599040699963699841278291312425881905519291891763404374039834623066840061465508077293195435080557035935813426900052149520242290652875742099612230253867922693770848009542803739175731998625494245027416845724467653135830572331241921314178257915798030345194010533206694847842747383419585840005410509228215479199829142584980056551195963782552673705877248191392159783414336141469713953452600218471937687128934637530396002153654756593115874562687363691867816824471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23958133459341161684138787515955590401730792253777337505785145948469781288822390897939826041339470766174737460368441792317115531252927307964052255772222296860363047026616535000323656196811598580018352755425934724486218466057885076556603237606966123207558964181817473875239461157619210193941920752393410813707129442274031921592706018720746553630484881754880335637853354495413371835756527181523327923369058559581059044293245654557618422395500262339237070106997879453823614036275074083242960777971046631354857318595811468609647620948698657265320215487215489612102482552635104206379125595980414636162764545953476215200697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24245392223791140230041148066915676824927154214597197980301535156243139697654210170187589551254709536417642042454248790690621606568909721144930313962134400148391775213201790182862898931287662997087286448425598485137741483750694976363506808019634321005997964211357310191580544214652724984239967160914696520639430996043878065380561047596369847254045665797579550053237978752024987549382016642810724143578072717697668502159297503270298392449078228197163148534222741078896360192647509503657508425454505083708906047045557814793120176463449602537923812715801159286094405211637375609385598600962062517677011995186719176318813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "26105383305682181949633037701029153122328310848383210380428919828001290076518625550926977702937077644796979908839730674609702646706744072066455226809436315184237008647411617419939975968693329969247497421314449138288836634414391752658641338568206596542107666351215847474886822221050032495464847306772256926927464726128984676515271828372096124352370683827254534542535573372105832574926542290319209083611924828357843842600708784903114995800624961875015299045793167743197596044330866865908958587753112332487457153395232542205671459897171897284895321134799668303333920124923658375923525604771028139028020001129572426472519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23188148530243935066178320155654683471771130804512705733497051228017095937186473477308263478833761527729933452025208270515416990305627229942705581133749264569278820051407260312367843834123343076011946351485843010559644091228117329966701335608540503003319819555708456423201384728653068049634223085485131857018238244273160091658447356645592708737294029529451278113783141287457647234879461057221541733389181229141789690065858661661326943667231671468105350831083692801295166466470273245173185750563810638127455708912564996401234072544088552558161209917081443068169941903385580838530895543720625403692382049451820384959307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = RW, O = Republic of Rwanda, OU = ePassport, OU = Certification Authorities, CN = Republic of Rwanda CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24791944406720392010622266810418165", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "651236710786778764923155030974445797889346048154029445773489499435703186233877780658904442997409895097578557958343932954460376165927785008146355614319095097969446939943296010164461528967824618633986113564845540480323738104290163499704644293637412803995098910441076877686029472720229054636522433443936379889695991671886852835937037496089031487149429803134289436054606948276879203307776472226097414293173406281255278569836253183221403039527364488594043586633165210684083293841316744347523551898834364879060175590303484525126396739467474464575794096077651586434729945140664681175646931224153188310069246458028474815571153483282359838752892499842040594528922340454990262439959908694127477922036193770023311578208641621700517323035276033610154874591171122701804502653958069444695340229925989912806271990924929445445976707452992186432305699735106043666145594985069778040618913424360712955687819648053109614116796312464943220818813268662370055651458548340398653225243851748128711450175865558028541284324781846639670665624030924615079555620934665391700416171700451139322104962687952270619229083262800783782499383792802216407219321395554139194707359046223508228322705293339695909423246461133862444925802167773768144115982574909159532127880507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IS, O = Thjodskra Islands, OU = Country Signing CA, SN = 6503760649, CN = Ferdaskilriki - Island - G3", + "modulus": "715957388108159566780773841981634055153488247619744881101548836685894240439069106746945658719556969013094769841915090817572947700381057071943633884384506065312764552272376073835193723761645638816014883354184455811920699521895858526611582861533141910652888341722353993140652744666464146991259782121514322928073624898583215381239486666090037646973677389020881096895798578316332724688688468850829062924142134378313692208249670997074567022521172369417926243362668479186273053546783676446255445495061415403226966821577560361633039798561899435932776548816826905334949336935430397796435800986735348855951871400621041261528395695897691910697891603144097420228903309879562299951246919079113068739759017088040754082345269822601499338376048182080646363406111264223514290967448818886563959517134465743241256268423920929018881076304947450311262779573057140457993104830466487005153506016374440996779545054554243950113067407920088740861244932673422852833912361630612763699457983366709320797025555670727447832786763268421654970336366428829104561031634336395794634321827020039779968280805402074847991124855885967261564145363686597986301840009541000795954128425157191582788447363231842232224069971100978226342638084611155072380550909739192670924950579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "28527072404869081717916894843011127445344670309138873899213544956431268176032938025506768380834794270342614362084032775689138588805267336662235187318191968606705173167504721614647446306736683647188918539365564696915490904976369738701058520334987419523341192828907699008015459559801342750119745827929655013890688248571463463078373963155110418617445158852495739774663843734463547668765118746228416068072833660520504859629302945749462360378022258580710186269114580688134610990695546481033646396305659926176399506786425260677238486090324475582354261001516429706925429308996882764363536198285689522349840026078875535195461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "20236697365241991917209932464783331976103161579454055692299031533277592975354727045884746242869798847838774959027668820359380620252179469649474118138725385884811621274495832822525772543400357603038535320470733888781072391082807812966859839693769419704064002198228500271489581896242365334922549143447390416783863375436899796137527232249194126043347862426860074262244144789035275886916921513766786425155029322018123518288204517879454053060342347011962020605384140057449533681321356181099425105328225004565229939047002996207391147422382936388969032020282196560917642573366104567444498513904653964931395550002886719594759", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "19870216736237626322155511077122537642579499163997952694416598650982965070011790773269932979236580946752885660450707611242265732945882893111841925037505568812506660900653992160963118880030375422025758539959816328770550658859538920269111562918058841322524185241442169627093828176180803516248107160094260130324472057748225268978532822576743662211502363699758414450118001271746825780365430853164470265995292081234282571397225561343286695727252310385725519513121317737183673911500355725870857897266875435868855837930003612843793572225274145274634836893257032527300828362086519828776924149274883577183570122049901960463409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25586743377002027879189426454124164880880133455895534199352918099135034436942718006242844434239251785881197323582601578435382255571797216098921003985299165041315986711573931132433115231996682240658127813715014613950067472268383264011466794793276213872130682415748946095854609984426473789723111149010718099409388755596521003252939252976880921887230042389681827922751295088710391715063174581374184672606316207298646656424424287975741893470210276503352913260251128984350666750462851965970116107928200787546944530058797925010822354044268643551199797837270564412680251130666413351053297207582025708289573121429547104244641", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23249514649983346510664986977935924896152993450765944969649711319896319692187052166920344923531790870119203687822646098255896728446243887564771311104630113985462244586318878094927928877993925877175445123294380448411325726014291533105950194825648456399772260769141173271928891821453876805418946462372577684014895540839866332013211855330519465048586785334181739237682220254354771801100218817730143005123664384296071970663525914337555657454255403714771420857528393928763827939524457108853326895720511532831766040081442304084257653976437845176556755887234501811673698398311880804836497442544973794247465077461302700301637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23097370078393459650485162243923656330799571210747375119656014206919865399974622376739148122239696488494257958490971027874510783684606176278079817654773974954846328873296392387515505334371381714830627914949744279393090558584805213609338654391884601514988973213369836278864967628427990062836600643355002158420461287550235145816311092327090215945052850524555563083069125420943729277406642501213441213616684680325361806969291968628334796293132857068405659887700422297735758032119144743154777061163085988078229335775959802791532277769730990051619664984943763683777143509879532387980779108439356358692777352133446709317549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26905388616015459477653608414954424645099596517154009377554959185286050665353529666155211491092489212742267047558967256252803108768740363805188270846778483084590521052248803787302183740575796413357115988622354565787072985351403119868177477505933725422947130299224569688419671018358596517758292043784688039120865537236113654723736508511606335836457607954371218522144799365151282418357363454974127718655622244028517057046133080413092285950360360607472255459669835920341513605698170514354628099208345996828980608070510707649332061829358756532981965763994881007783406020043703436946348189677583217645399222060716880762177", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "20268507750868218986800516287126881460359480022001990427118950689908473131381399650140599501468211335567273292506695140752652970409395145475083091114365728164165265604779379266731657083666654766023855573375699305493114191304483220889312456312027327147208734246921240455328869205074799389758605773037802198810867834484372053392321113551494716602774937279930532232964505032782114780294456851552853478598064243485110666497950966873104628697202814613524888345272260522078911416840714921156663008186738460363092216236131771568475045428907754263762712015727255649366889105309687595734426120419195088462607366060467718600361", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "23366246986915536216581862497468572001849313402864615793692938154969308609105063822819165431328138567663409470536407097767834737804689707322198666461539137860737812737278673754098853795510669751600827016279751958758209703753551854573985786144677259402586862617432523520011866523440593394662167393907876904476048211628119918954838719796948260460738020417852360629374349390147617635856616894713017635297832910661937711070049043561521517601435483199302293895199836104993495703043908702566830803410137617809203278714821623184116054321630550822097579351320210958520787016791569484903316690079206951996181332234164563633299", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = IQ, CN = Iraqi Ministry of Interior CSCA, OU = \"General Directorate of Civil Status, Passports, and Residency\", O = Iraqi Ministry of Interior", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24661225475526658579874224095310237", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24329207171539743515181142353075517830628458575000066276053707298564053830407226813425399028846234948663364965782205662995116643014816901823771364734725798867829420566328801744713200947822455325628609387908520921464720477219485505672585054967121641373587722400030877731370641838637343289694575656710393228782631002788700892279802844332317133239008831886471105479946392775582818938103324344570875772752113317407131364783103267309903485427401066490784294871888194098959831584970380033472101941599494018975950336545316244579350567296337409679175871230100578109843583613089455849010197622481370715828241535781171774203971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21952904586807573806982501601962625354846112927891377425206650577008140460347804314698811546149458763301057671478870606977672235274798940637050136103895298504189186075988363470180222686461764518576214825051638775632630253455519223371424330971857276253946095132022820104082284722496801437284476062576824543943124905644065830336720446442356785775707572208168733002947647358378932354231591767847727350003588294008219825743738198808003444476807436396059210355993653985404087096364108475441074677103173972010344311228808932649903004322696651470276772171723243210858245371784054087461587005066511372277432650097543342452469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25582040071472055240870227252525635770915912355149373623989868542075662949862877788484331058526978296185205043282440549204813914295943423538781459966006291885896102545785352571504594081934372180340349425164500243016405458515498867585400111681695221744829313191723540870813268739410299363007470198745514617554287905344553974293644038877763717018327724193373064510014272383534167965085788329183316506967335076778240079697411963080286713067869651149382375349214610161747850989746732154998208093053861701640679669971987313045181032564792621786518796243042803494954348855512769548789398867762815618312056564407591395077563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21394996696440737021686495179654331281389767010359562425423851361172571967128200375287478137752328938684537173362135914207002793265223612388061849197017969681447597792366472499776909023273649395622219852136137895435427333596486853717771137843949506639555455305244005735603893087280620051450365076858254842929322965611403884740471442845073817308507349918879041703084427349138886119177888007207546461867673379160124421660965758121422279816045529281259501631021715120171687241917552880699497897238361853576683797692069526358112794061902212447630042021729276103126751785061808298012866021443464275966993186216099327867271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22787695229314962842816178255015183154838866045895558496768204058032153697883880191849021320107341294698192254832495946693043093751987792911936640663273429884600385081034229032522140850868582590956368829778692503526247046976182808099777590989768983387903333990721750654277251655759189465335191367477736428753871389163384795248098674973784601196768059166309949238792525941456024658592918154778587356147188125696279722255047651716268732524881148682730510116466552174060373535124592661728508288001539545477887909787147027799540721574402003659056326794006520242495828291589417896346295472254753268066875296561210472735011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23765365907773186253371487433850515699023419041548378197842301070465402152665547559797983104393461058373486872325499459963449916032072334433981656901765632455055180013421327028685780824504888075832080330497038381589357931013958125884479003708637419007438355154672113445644729349058578478474457856281664741675898675182750574731672352712692582878601985717632866423110295767555995888199654656097497568364675472469626056576753064519137924897740510317622451001333119798427705682287125281594148329429090410214171382287956320638617872716392689068997197208891551361575393660970288624867434154724320086588684828015523119814809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20649923570448859909719102108311567016901542394958723887990225130451492541862608401017692142227196213770855076142501507047392991778454826282910228681705641702589441797459706846627307275799905818945306752034159718668635757912027748176232088811368064931158983397307940679760164223800195269878474038859104288917902223087614522187663343762372492184114361180142001206137993610436500354080699630563892034142876305815096100186798963031020335045378811562869260258942500153346130699337090595845607790039869789920118002993076679297178468140570031675369117758469053198428647569790745572008098905472656535679161476183256061422259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20343053223349626405688847668476548768569077605854660270688442892395349755782861532204480266087639538936302827640516182205794419349243239008616305208056197225951039878353249166630888860146192412274784005923879141759559405699930751783327202622920264086794484084264134764913450067743507519654450108314550163920317875376162607158740851075914529396581845907411985200848501631562085892936399762850455125055295617321291551763814248327772232716539745807832955599490467446860217407156128396856109920074756961846729651280534469658910710405588664811755267353038066996276707552449787975606346454497263425206330953160074565783279", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23213494086717057793447233097783404032380335357526209162585710615567433112232195146361054173744588172806919927815298988610692850589766080999303021686645519750433826622305247030598024591460611306747427799272700275620634791589414791416528762892492647584902806021721244959833914461046961876318772117625545244290009419259988388276843312373041349137646622387936786683039224472363564331652376450618957971033128360059298805314518543586038965767482255014045660424015001049004724094484179132538822177551973951049210574943957688559750354598121705520165829990752264854575851562477279839239699221835536997787896667902337291093151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24248648002853661363712853916719718785284382200644930113699692902373227625276071306451632596313748180796237618051351033668925604962807569448343198230870680502464424456150834179468037232134019346120287841415336251797815558824061123787032083874331683613843812403322674547111111569177417935715201124337706220114421411417722262992121907120864857075594917931649581831638247825371180776429699771345067455312150592408537352974444632752226970282857088264877364061518437058581616241476537147231333945630141467658716697046099022568714226791048621678768485160983481418220828550459004718998355342373349765099840446188263876054321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24466151048724212135192928722168774072160903987130290719503381861610578005718037536920601066501863238437196501745910892939972512740239375719364550668080125250948289042428114488135611515608983041890951284031103965130554865805010310925913923034028516739913525249227241534474343931218711279764030269051251193511456157360716733010195043859699794366293831690955856419287350983160085794927521292998063651146688478581337735927157882440347519808934173542657592091004165415622973032947778233059967271354926494320531870540552943491952857767289058404880900940233958547436617732491697758234320800534798972725501923740874429949611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25728096623359297125483277451780786825521193692879096191765165733721041273046368861977210447848876724670688805402258950726695665701578364993090408136137991030626505905342390218210537358869225246314931917376343802206854046181425615071670514860547135681873355440873413996272174799039543119093319922225507456294581826707814824914460890859030721311180911153368482285855344706661011781909626895300065040032604666040152920891909498907440780387306721182438538230398094927061697564839362906010522864387961998270634605009163728253899451949804311274865202296023307182281991675259990673934518587979614866977705439628461940050329", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26166368846996851874450522101263196615954422239057413655238257609110146608199669396811088830188138073417841978588018175511890896515917910179908759326018019222465848344417092575372595582804787307860554692083234450785727449058132668094532373666814573962177060680844571639345448654336050633823054466389070994015695971043901545789984619822178450406925326636748145912979223425605608852126585886882540769812589994813685614320860786889864310577900409059968365008554588374942102168926245000426084685733327862280073563767884521227015094697208086482143589751967706593039898144701203507048020451948696985248165685788777917648561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22062448318217238049593943170014285829317205484404125582163827352411030269854565244317028434737571017734186022182736756972331429343573452748190571821143810844152253749839424786867516141947932994450077206287145269251151716474655137149911840589620518645816136146162008835568452926563273821186261230666683201633442378106082190362291674471064794969552329319980785378155672403353873132225720073383745355532513928205560324816237470246173934283390639717432837528581543493707815867871108100869198549265597917409555872226278337792292652355315829837428482036107598563162265952052475043559739934546278664646510155886730739935229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23933589245085000794379528407333587037176271118246927715524478038279486835610138245373878818927214757448732904906217240973374835392432371042467755601500138235510144622524456469357341129567964221460817520047124941575160237454309532913480142907972339950888021339762429011148279713797366160303672618088013543279709339444373418142257730048217060341585634538412889230756808435655653891566697125818035226485460717371443408408993721155875036670439038737894968897392233082613129166145709216387614729780342474943574260849101488165987019511702317466075098241827568457087437420551006698849808780001569394598580957608738879144151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22193669568378996672005558348345803438180910594468338872645497554913111447476103696438898013675376478539754314064583862635603817980030832897694683090197902779150942639876026554925491904177567423452354975807880458378653536699262612990197173725524631448087056926138671129964288739197201373482512476041992043601229299360015995704891675930768186033636986388832041049868287906974260326061788221458118629881824761328232083225119495050295117607727221467339006221696894836560166609111516140161662918105038824699537093501456637340800560696877732806755774198073268463465603066899222404609864011101689031536112540331023681810909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27762912059777364007234655691227001390333180351232971596331376665553270534964215566968544316815180634815519591603054866347463986086284437752918986830342585086941317177005877517601893603737212568556209993802248962243589707057720954045630964272104876744460020870540316745512885578641607900121068725249524815793917889000729706270782019641651210018386560598865385954583707587134210487202827484547004525109292365789088392685094183281601099643239331149127449107036314506087861650613082957894117644709866520573721032401560730170615262277033215063965424465261865782334381589333797530340596203067603033210838003855590515191679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23954561048520181337516630308056239764616416465302647356837608891550917314179486837678303903337439566548517720902067397428215159171190664044514711307156647183931970001689166636041716710915137964099844335370972899707475406856548060329163078368203273201871622742834075315951199815786585260343330852982382194429697512003420961634852303685077105626510330684958164685016460877007718040378946162037789522949978510686290780195482379307814513554750257821152722803430713270727196007143468341928411125049643773055778470211057237302021839050079259946808495567887309200269807381612934560902601202904859955773716520134149318063207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22603272296375909585791547750381410459380519498880535476486561599795893992503602510411733069110392348543730434640336024699402041031667362856968836391078728271636285823059865857013989036271699481310581441417234882071822301518412867914852170936011608067832725901944289472195354412727617332693445778708202888114539507929224946321992947007060980262290495124581940715254771569849094073815050288732285154683903099885119875280699153043282647608538701444181493180232041903976870298045308375036485747979915032821549090406281335445940045781608214028704968479798424416909121399468434219741417555758585600104273015601699082633271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19552717385224368989665218898694509431688137599646722442658735265083943228540077065178740559629376067008955548551181594803915408450305386005536020261186288392347688366868251812610253087949305185875300462568912104041135625789385211679549987262014691293681411153491296918397339513234316294114479315452814835349983456601272570378833288158163806880560605010974592644266802458830986626021803279988404234267663089722974684762354163650487341515193171356355859398449260627757058053988881777912745914476860562561010539577980474352486132916903082744172899475093159693521346478087947562378534433898112077298467710020439707037951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21373134808597543537213467517719211815328266096912520478484434574807711731043969533981067374704395324297438311892243580433105102366829198142761638342216709224220575561875205801984848750280947274554212455881801558091637229924091809917137633141402858380983726389397880234765682531361836177291478145980837592669772970692148844177820792365574518896198586325773035645874616359630661266718512500984599015706091680965880189771189761919562053635261137175168792785595362257378349582424669686977837442924443834675721109241315236293011854375760304073847992778443360052621495433292261811052765651314493687971261003526403739587567", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24239664208052722043802045090892097111977452858732911136321690845965520270970888552451324839175643402439691546513154154662527688571924678304549954311109702298858415699471211858857741618751331064759152695611205725708947565787901257764845697075912940792666867773315389773765205347185133436584285810920444971698458559951158645992173310209830036379220226589118704579145033557584432091167166488198839581306690067819383209663772742206232697735494064123865408500872207248170533678005075977607674475046968686734568438194072822278637533644596153549504247904766102789366713882137420403672028426972449144404562825702966867801949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19837421401115116240180266828552933838847092487372691234906034883114822415974671718528675488562166524752186584457314045740141194423720575320894892287313536792859732559879146766897527256336283415512603743083818068543672822813424708276524047608957614677430031592303432705687951733416246358390294860113622867541759093379908329346775752172172441815513386231002441720326951489952509962926295094594615867353201152853620824919486168902929780122990897054687460694277599655500300344733841009849957744643946747574369143696438029945149675529168375912530579547568911153388032046300509552562381215273825998885299652798009084103409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30878722419116135843743356383701702077623622190396830370596874568841066960397497331801456058763785209204764350565928149056658195839949671390439306809264413030180186942909120318874578918141077718036401811422840315238191077848005459586992813377026310592313074067846682985901474238692547657438119024064944445639593727357176669852560209400684716254242211002517364624984538334792661588944863768783193094465967234047389325401244419290196885788241004089258715080964117242315062767533246013263541959964035989070294812447574679910579616395777755344120023497140849655536189132410123836610710155070761518130988764759592159270471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19235745728077039361964912582539693830346258874076675807254728766323696013474026990968782921585151008325358688123013050337830192845187435608274407865193130558137148935708381297112987025763327357484264552944517632271028791273865906043806023008893947000780457789721415874556213310082838833334177085598003590663916825671178403085994689874497870643860485875943033528723494386626299937188376558694231069446382680694862202520076150139623944046556483797552565250068027461928763469286967650441316613931567324834531717210662209802180892711793003433438658626982879502506908242682584677507320050814098472673959722627896605531727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22984412891934343303856510878513745090995436350604095842681059456346010730633132919197223202171264197044026113012269318271693177512076904573009407795127649055637132605327186742500292109826937577314019569718066240425444558472244147518653859172940917210934260877989635963716411058203226852571206756678959349568818010930902319983117925891269043663491185590300407338355225784294785727046703793840854194994205520010286435895462858413356609227121697893861697051823009671971231042683521948056922199574850685391893130348383819996602873051531846182953304607781887358545263951324780679169667185851616299431489512268169584069609", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23342227910647328651878310871587298247872754734796760483785924973657857402220047084228054225166194583086007800450337557614094323467253006129042048751873310648862731512349237151629374911012975595744912346567898940766605815994299621214347610422577915674679625198434784725493473879521098701101484198600963308445321129803059330435422314182445940866231409015729491956527502322235617119348976295775902381430408369051245151285621774997745972665855234558162822213843207696473440133210490738430608158867690786733136105418958777198943271160756407637501432988674901002421363840149810053095111226656146131852824899523268721741221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26216944802060104407136198481164947349704611834026451414329462138449143870642192400474218637143022936793435896324251226629079622063086078292137366176942724765287471733346789060493789605911602905934323313858921210668786053984541342270493691712985273174817457712028050443413111639640459865278843181721273154786913291912956133392141896403379021603575651266462090567474541172848426520074098845137615020234643440183068641007595909039991248550187082324201067127228795708744508782503557579611888341544294300157361420791922840763083380763918619791514103556071841550458714172254061293197198582329377364482629765627526479712723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22055635853407752422802175739108441809357050052073179907094234268008538463120295862845699960166375254906382276774944908727519708400774127139937568539960381950270078704581141406616881727304825221408910282052907948758765295346341993773080877306365950690588274609488642878550457904151246416507665337594992268889262905536103738242754781377737419888501974061549664663547389239835978888549183518147461136378451812815263519081415723037673538791458900756114241889824217476176016111275182048759097298783148502215138516939459482156238141721598998569285715315724641096025051760664498877489089947970028770747152077199383102893207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23840455930020611061497647688111401244995005944428393400318896351818406337685703389954707247590475031254616100490006314996016758810733396267559665943947931021442922161919103832380486287663467692004520764369707611132086190437679291159605862292873541319117749667816516401717576361740215875676879823130339556296490999804741668538597687115440516737569058706423129325651516347272417167415632811451307940125667002708772813984313616296622800808020526015047550645317872373199884199814999955349637670543833566758367146100413475744902795126652932930316840331529681508702006553022478921311341681632752229065266756555943749817483", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22613876291500218921367219746278042718487177303789429164058502039863723468588915450395683283353578520323629023699904040012805709306410001436637978469773751842984376279083007354543245225798767602248361837373722600221335733866643931889205941316196406757185033022910036893622660056501998311467999101314262951892478012324939783486339090734493145459437508147243824137296799934724619656896866041451654026871302312510760568785162019286067502200159544890105555285462189596030275428963989984566204199016087293839569528940766827091694662911112865535636188882025462539539801645487687489337537083801584051597693970854825825661977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23471530842946560666868890218394266130449702352774904810685261188818512547782291068132208285241424783980635789722922575302816248467034236885150227003183966302935222227926981135336301101972981254663888015827606277875221169854303527177063932672117100654520997486432943930683811637437599892409705524598217856469301583200219197675522999294643573084808566873021034338529712525432318093610370476517765085752230671246684714668489664072957757670955454548609231288069866898230182291304013944076934652537568695095848999730954413784238176938269926608250751943288311148741683294159896348709016764912588968255673312311229918252123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21709066972989231963659169620881062990423056991577161687702990240967695058414411883488864883812119042274276437810368316701047088138145473935324738644151193478921554899554071215328391941457657748093064996491802701423682856452107981466673129097541283846272331476760175581242624951724142848228367926588026344572201816833421618716560514350102473096198500546432298119820176748458895213111036898376424194227015054927249284063676946011040299514711203071704729950473158362230897407682748365799743502041014151616275622925782129839385553239322721556829751361409196137491052992731368865980366205871933493292891900028502272370437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18629650530536663867546130856054285371152977855493544716894482434900138431398682083652275859847277660693700546941960591336083905721789988543557382156723610471602761324708769376355062718513683883192509190872167067255487377788977208504402866630603295897698319713891327072528630653898928853344750923914017930980658475255062476032106202216983573988012292045453779954039609527402742156076661427176372264595942830657957855266647407632384801783983540307906783678701113464170273698766268131739787947872692554190491756133597913214710151648049758307829877726234333667586353284353961059959946249333972885243513793392329051557737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19090951729501671107027584400579842080173282431329246003596351095326535127954607344968681919640552886270583452959112169809795735212414447796202296801476045976044390892997915717242516067170802083450103424559415652203418311100297067616252098026020380641572209345156807513282408171431704324934970990478245740996749761907069232414500372982103713877178301073928905807212656863297174094967771229543501748906542912541498993154502625848049303567895017968063630373803712685491798271361046628925467336592031532631067028375805697157658400472430361641075518724683059093174765001247287953780886316211323707651090726717059268809353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19285612191730936514429924559233400867348400858748162043736245222836188731913137382473172727085999158963901082945519520078589775804193459082373326010169509028206964103623359167812752214834530469578217267490641534946873924590394571258469910831237942228352805813635294852443648224338848023789647083450101105591495084868658511054835679216092491482072199671461103213462779587135593789029792869123304753339841042619681631801622535187783230944458668676679109755565214687164312949157627941338618151432014443688426803209487023161016964225509810352224331575155994278161503135731621880553840937981118909926781750167952571755929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23331312303148497016563281456558301527615240274911175492212203737866664472554931558278450097921853118704071845536933884070705361060303746016753387395827135479092426241966639339883700602081928238356289770938527001064119272460788255005935466454649477458464598427570453880143443774713172773193122369669971669215843601546053608344607384726435241888745881205658516749951355657633217439095555477945920291774793159675977358723311123012298919037762231218583937194131692262368524613244874972964954498504042151744431912673977060040212267464499789671671652903529247446915587511311785082349141914579942222281000998579063027957943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23797626904348089484471067360725497898596321395165074789682028828567882334043362732254239953202746784868182028115141261241599505501845048527993024740318180538068207645583401871637305168562301110084909064798260966043568852944605402228313547512142101660531475820232982799414113059055536504650973974357708714784874634462034483782377297950712349347741637727832906956742602626266624050300014008481691701931522362528406605113577288554793863698482861663506762782741918052621108333321423113099575017056493315217802699668358970834559352576875780660856064613691633571641961772447906393489341597281573419664631263890425168121577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25863451858458288339061707367609186090862416959923493036667229522458919741006092201783128865576527894298865436471369271496968766566937231809994456411459693906463274910641556065993930069234090775911219955315375670948725967213204243185068964338816140010255191189755429391426549929108193926360069810844675531579375868329579632766737288475511113264242332143715965005781498586065706717554965056210878836528292724210557177830252627721231370317380850018447119818027818762365950846718455522315730903019783988267900060360930493506804270775475869052242359378262617429305026244492931119758068462797318658385725231739044698506887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25852924254693885706869317729181436419507070785460076229191575764652790068652259490584882390556227284721703689329326562946544636255082915458456140444502590662411570353691706894311688858541870254486495398299228986657322487826873427724716572966091971890283811194876238173142572320503331333869340029924822186004381978581469261679721111209739057580643192945077733845892743282045333739312107155607911713191777275916859253469210037438999484755348145297555633438311885501043234425327897759209235192413234961613062948731001306809458459609568835418609239392866807870963822832617220635344816708298307541464406140163956792433287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23163263564705829628861666945425352", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25004396387364298378742862587739199", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22442666968426361999296073235219289", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21463022584172521807427182682603413", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21048410624362180332717139329024475", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24338098220027027719632178732406268", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24910164932414533600984007702035233", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25419335368425989116690234820668215", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23694089052554254669592952411346896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22826363553374746245707315800655745", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22456540394404496120497665894949943", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23228399565415802975887709402966486", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21770165553096985061571859552382968", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23506539945886995011901001134656982", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22085770612533169124444303241630511", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25957525062250543921220014633859424", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25716317872405346782227499588322914", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21640504617655395287243394789978257", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21691531856091230822409221360508569", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22189208166957759624498484733108315", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24114094057685940981771047389793321", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24562869122789651599608558416406128", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21397041591809469349832877926600282", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23904731888823528511298855326177281", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25075213299849278547741961438613212", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21369973508803781051554767137916557", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23883395950826609216954474615469873", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25325141396305600979013690618930048", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24336122132004074618763352095148145", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22978265904628418686095396808728836", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24686983711756227921853569763694558", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23317570580650123920315017177170314", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22494024846496135637559435502338741", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24887957757815823339448866524509577", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24927828655239918515655996575558705", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24120473915282052453197099612545061", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23287356977396696604560499035685451", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21266615067352954452740332510359807", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23160572807681704289068986809128423", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21821052008416281869355477298829646", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23747818134168775047820350892724772", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21610321284327495937692572148866790", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25393777174283718882695887978237465", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24353677810430141338743224214453593", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23472004352634680023686336874290100", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20863244575615674105252294579714228", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23997950439908845124918211913242904", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24658920864696924894514918753072022", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21992233087916206244385152067588674", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25303050845975695304982646439076991", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "832711843355458794970869937405312793871609452041621534417600839004080806118322425805066283938825148123791804703259021090728207136732765723900342241442226212803389353174648325561973732469043821407195345065693039162473034620401492959479589640209373755082041904192952797899635744357383855386368942955035832770174439176221445845920044481858731850355052098625721365022934461410091108262087600449531854484445415264109730574760222361108729939095611464911509370749631798580528469180264407870835333556228602559635685496465846439238502744119752236677686466289457355106947124191483350053177220300316069766959118683100802291162502161650712636344554700234695805079847538822215940528586616556984077400515083876225823729288341872726844406131317482437642361777600241823272331739616250991694086618049198237218413191765831395075643917710187706090019268804349426997917884562303504923195252464153726466100212139869898679170029372941741511606210706241199584466846300311602219581953175927630858117239927404445752498264119378085487630569466227342442811888580370061866549800882469393703265315726193270203158886770587386857313054222603129174733784469422271355612894508752804045775017800320926447520212254018858860966923130742876683171683265240316703302588391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "907332975155902837584261545726215700413533380512826812420231557786287509748881841037634462750805216387867686456243663849156457695697612683058315992354394019036574419772245950259226848898568437776255123158465839007550385598457065488657325699256388970285460728666702491371654951100695899367041265216463874856914914827733768804501245164200093310012239267568946230242660331734904251990311442396979829679272799356136097642247002563387480337023573410811995078660758589436437316453695118570030056866277572480209520112277641598990286170866158355242339376747685333183496555944303088517639958527342038353987079642537053289579543197448149558384738043929044688218551162643399343729641105719489826644330788210286018444508076226159513668317768599941353881797146391417918823517011588062977728453697399535097068066838891381748010665982286517351968245500627645434411891472459134796245577179966642298193632756450420736276299983581026518140413513871653283221073256623426328597547461367510479556655166781180631501154715235865696972486519809791275905420401645627967796757468433795709258926222520912497298157838353137778964498906902569248520255002382890266828140753970187675454900754434536073110644060227163683648005212050237496449076922955119818526814863", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23421198927945452727596612129937657110944421417717891571924954744851031762283378885074235832926870338229637672119275314746851007583216039660877824037306515844900890915832079518284709967820447316217547618691474388891014997402753485952609616735915934451813289747062715868074388753321252217018747102741248634504065296295560285054601391195951571512214542099722881925475458605332123587305090522672954754073792332879940852812862152071036654442573342271907998845144410765055661044503161511660776201236496113745733831581582453007155953146267428565262993840556692564943802366941343705513554776694970987536684978604533222941763", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "28282469995071329778120333069026150141970459718373329290495392372656244407518162107640813208526351488256116819567483207916097572686424705289672974042650862100496062382305641936418925918129443377026899419641482470891754392295212950696058896122744309323964873624727057153228601856294997487562964906137186004795317093231675180025123919014286491610987530438650098709369761108140829909247028536706386036707678545605198116775307415777381981880683097046252512810371355039278471390527072720261610886491993927893628672905206146758675124460937015372325937146134240630986952954761124520173623488361281386271961241514110698346111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "20619106772772728234713752614835729063840945818438380945519800885867321552765729754667328609990458951288751584526601974839795251114817206862565753450650120238477032955496711928011840042397863786300080147500957316159018392522264074780931140051442308375841529507403773638299857332329847930683063081907229075294771665566353040149508085691250800639932410201986104473244709563522408294237196263531776197149574959533206775395251437838285999020755222022380779793400589335157257802545934276446778961974203476114816969688377930878661489596496326792800036592565019050181772505014315352786109985582968476336668766046063912578289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "3941234007350000125357485651118881545602038002655277306610191789352094217682751893485986218312629628559983007612222534427320592778917286370897642555456856027892743601005587189333852102563632820627108682866475408809088185830948819686718233239310033147892696689168329192570084357868265658337275788298113477312298906588005262410178916576444058528189295660648379931685472760400548536926547576086959974813732782597891001680472470156109769451836323057929702019424102652892458987267525431742601226200628850766148454816057150900329432432776109946059029492431291680382053471353809281478040595412680310879930688656498492645224818682347278684872662379281508315692169017627303850473728801915409336954122140434658884794573379589294649055706771319505676469038612567669595299090566754099891306244141523177049110754214621115316235989447780976660055098584951001788598133525757457086454693630675258673372741484914293971627491529182037007021383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5014156544886837694926689495612295821433855933191374152807786974439233654452901041243137249121002266531437028965986927523263513339182891462085953166412543397530355696118087222932746964049278792269550479970782969151924375102501598278481991181069000991243016034652838123308289091163800536894584894403436818348768307374965701510131080092738714508966650244271657228364670946442383451515411847458230579164294178052367041586665817498910215345708053154496648720678262244003235172299762931400131564890692769260275956610502696694041813216808914305309486817316622306140827868554160510055991871198728054417899903835456182970932857047199767434755501957805610354926523228317121650260157818186699942545440059058503873811101414377894272343278483066583332111362083164221940520875074703167023615264490103786433222032309339125445493105032788655401388056566267237199115646463723769248140747155409577764130323757180499405790050242551274827741237", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4622302979982800978636013997379488745154155584743837437773476145825717103068467076589827452378788282655990507041653383254463072708521818656372025674117150120149229769361022883386671835311606189201391200911261426908883567393679046930668775227504286050746193447415941990719269349236153669974944666491446675153571048150813001746054272314128532620798816593994825963245985871833743320583853153287840840038730725413810239844609557866249075438368479267897173155425723585379901067428938058729458907897604792794478195671639525410456556205200559766355868530171489192550238723473905996785199413678367293077509342112646401410015621691694679738679472672080554618802398145073959391006665883390704885985865560841361532427782524289765229238810476297860394604924606790996480080599618446741232828233997410332468596830141156708013208186205353685571372274879789767377819368841928891485419963058039842226515923452542924176341319710391535891312023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4469129124716279740065729561240509033125133225092264108767802905592486240508837748953168959810070206248311975236634822928170241521462152199619186163720683438658377585331935215051632895059478281951524268113857956396198792771591105416731348625214010812801952012367619606386334324988557395082247194580501086956062041830814400561363052662855791030782359202037971818450098571658620954086336187384817293746816895664639792484260736430116117026378669577629740690090125656926975332536558150775588222131015100479890647753181085362200484596848943817036274058039005367013538015856136300142662545095050238556810551596422852831065536179081979121148197993124824135814150595646048482005885561444472702931196327550275234285522839758155755034313896766755265086853494212440241774722455527227534268700866820815340048978790305189012013438838480261595067743170008733240266155809542599752707756437920124866539116598932842706923796936233413680504597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3861028517331848376455137669324242254378667249950106627468702297305271510137813819715006297452018020417263024919191182248010129932274324427527205858350878649760606029804764973616789825957154583991366846793534141402067416397471728794115734706505376165740397477721294373484661302322495472698281464829190405909523551266112507368272498925193277438446451564273505579062023589490157616111841094617430691614839055674598105613834191176202997063906854499967376299119667761585348215761730372392102300304199024876398912240348918650646987147794559797834390403115372965292966895463443510273147074176786615183058562775979715163869868169463121384598018337733771490411997549238728199206173461039788505412195417823568047494585725254210489075210926622416403506012751004851635898281294523091438193469893820256403103837131644122524664293545527684888824449340334794528843287490001074607505860936911509221495890762852854708452314793917052296661823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4646122561018371612026622550922105362292549924461089822320278249993730737983618546531265220978486099671612446945101567592758576511543108202954594917717587257739945132385935817593156602755274448484736046420122266865777250602621729459294894247336349324472236727141077952118411389837703403801197742525352727417432368051581183046732480679581357716665980304840171243762951924300988586943344433442283938663580975912415062959426966540856605397978179706887120688289873317353317421652613832166765595308741702701422575540320070726325335915905257915304006223206814648004990314490352970699329833492677830141507028203477217936808416320433796415768175694488477715721404280054522921308253051536472324056075143997338709140572743246223036042274375019794017487673433006077185270314424765232515147141363583540985268490652046697300265307613713614252339282191746538041119283244802579268454242207448857307406081233946693106896181877343426248168807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5075752102058884161856951736864240823790844386864344425056554147382708118090089177423563080395030364080036132674037425372849960272279889637663865148925016274844167237002305887205465983892266827970532859072240846030749381078779695735582409223433168466177337390646436754171243769311448375307861788940319424675626494241470176250886441003871185441078352677454617195740776533532235503807787126583009655042490055099090210583536810443551420416265566189807475320175058271588228294039359993423417749289520497591466846641157219368545704971926270537313490617217755210597487965783576559710595829209987168921475370455909234982311852500545802388316940355902175589866709689333021024129957864793720691527835646881791343152265120860409641251422137922709089610751476232009105497847003886428304955686916780652252228304518117453730422135034557956631643189420624121862606973665529394807010862925892481458364618738163359716020973822109567430382509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4630328095228365862579711948735420556678685854313161145418184800645295581919857558610044938192948065247813336438578974528703171504827118824749805715043761969891512809919574835472523628290088298805934945621190355682027060390592988652524276812176131148864392426488907379209291409720198429968009234404825676976135275923200122994494663921956935240768505674496999830159934959948018721025013776689569753818971154363166947148790310017431009683140333111396328196382164185959731537111652150900682054023904734577950467186720637753767256015764509403665579768225635131626694091217125126853394841044862135717476596814395170762502989761614813416588685137198906498688359771917399835591139758617616477182263402822716620234704946417508290615920930691290913032334773966568659161777854128359007367795004464125690580021388029904294196548856839190027760649274307305776417296827430481113902613832979644813915448002209180387263863795654019253708049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4028310651007619641320089264954479344166177250027239737968559266905803911599984155969686138037959695185501331273206672795422439458342951132945441127335170527657387663838405115926252780487771576644578960593986057900265819563648099489784064334176414256559188027498662057648532002245130902134923061591333853601987534027079741131714874728235243506892350514706129320341004727326825955770723517058471240122344742716123855953001578350947779300470104203207114385261980826243453756396620611913218863173958524249363307372446987929461396758445101823605413448564988234564905223438727415528815816432506243154939180554136808519716169633934122974106270036665937586066141967468053907979060553395241814796676248103763062837664194922013021082280819599636923369762694159263346632567132486476523289536434309363029065528545427326727539295180921428869244169893947423256117051509834478402450992508606691386512746315299137859981661912247426580999387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3394357795043944890745321328694879946639263244138890606829003296658035530029223768813636148821099724029281931484244694671791615605022580563925002899221577765814578984835632311199509050598514818573982290871971017502574710018073155973405233627374676636533721088914479332568179224854938704584845998211630283209612821157474102708174234395119473083588277370682832673847523936683784432628964976570776272377296705878592489152347416001224987954347375151129976258673626076799400474494091073389140963150454440028737823668705686061167485165742718163534730512050096174274115997760183282199219856490896607543621103517913465800242460523587754532981036644372519363101444856823892957132053577774343204533350534172040129727855764893651581519497691081979418036592785275407205321127278575047248522884176978213242300161795009789548505418882158853584197356550886457940814704514635506491427931154508191149054559498666390765292934930284945093087531", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4789095571977886793650109151511423714932286670693037559427050812497428702682747136844408419429459664280065894812090680987823438757695313260138245723225000328401081936474014166190288512151316770643251436654013297448139144404359688816023847771936842834251453088819318685893703472033031651787943227238181986258005543683959438447413072964428463696212531395225926362688277007416769114082238024835416582228514279817594258228075373852159587495623335170197239462913100035820958210536803741811677651335905107542594810415997903101261994356821432244863150451616934605819854493134189260706006655947997609992829205251824748316207354048963898635792786898737981556196859222890177361108338292233319066770623622495273437860031793760863961016687670314438996073511819661704111050525169919670681185153977174270392890644435409463807217388040072678708305155750701394129378056350318500470807655607914511742596592678314550622620824107411311965656623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3944278411794351159139415827722716630037033408815226848325375833990852793842008144825354347969662228320745502100977774051614952610772937837012719385584781282093056096625338082276176413362879402660193924196879768937743935222077802985383644267409915856469734367870121866989783597448013917802373241690386744668440067913166890573253958436834035506109113631969137428862694733065235571602858618127673414881908940049772164617929019572026397619970461558922942880901851234428579150884162854778499886275398556543984405654142535255799264760098533979535854442709362146679278250420249764155605112707018313557910797945684968130297159603339792228278241781265583861797497808800293852999079052130501060850366255888125963309451860809649154851646196030781563776771647698668958857743986528075050446312644331730016013847046241498248742173329291028457248676068986037289159264479395335552910369156278568892200746053294149842099449753434461319644927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4470255274590880314886582937454906427076025359510317183641974343678226337652109401408002760828275541245066636934168412193724625354493598355972465585212903576459296312329991243860806633169928205324789920699517374772928564513381052474392740561696153330005672033374018798572788559526965989358397387455638965430724090981019139896386789402407504511020342402977100737240042573663458182329577414731904271576600184467024911653705216958040458931974244776091078697534336237938519307185400023456101973872970034605222061198690309525186547402112474024058153398789338529152184494560476173830962141954291220734339535603500800659454021351039244566421208151595875418132176647716039510139565495194272467846940952657608306955567026063447178245679152133027489155926105360973397617637842997155888306058773140845576886491995808819778618637659725015779855924712428835292358861093744305677113961634576805847800790871620659872391192862799918879738297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21682229105284152910892097874657988", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23207112862447786070297230254020423", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "27779432730290239059454428325575837352551663342578164455382747276277907449319747075198225902787418595681410782844973496300168419243387755082745946174278050098637478759868789979528638728112326934662105302879219746530032738358119665099698622033106455735222261731908191075824791943284497272641755085780704638539695514199131293046647175207739032987288182552396299143747731280639448352851220353562974964152419465732684694724186717052251790919114133573942634533619941626004363963438004747427409098792045996974093145373950764024531274531694044553405768637652056170268057971386567354006797424369248927051481884478375541301789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "31105607548699799755531887573323502199167357943579107328118395272432171349153883563490118064549358510527996088693355697173705021990191029614282093550694810018768071402063200543825607501253165489134679314404758790697435842270330381887729774706413246163952340554873235642167438289169565143857257295789708149409302499423418744164437884461939933523535541848555794981351856948593269807270584477198278209129025355226348073052762999720663193736278045767524104089573351057259454051778807267315768051321047765613995550971547141118134017646930360938150548520299083736012018194546490753240000485670529351934858421205370837399063", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "27114813470274267121884525846678823257007585966276375395357141867716063357274161250055425504901207862702473113883016116425485781035999623407569540055328777386651575862277939527603264516491417781238465553857084072949144850743189814814961523475031784079057021785031809716627742268270930056891945437561027507375168732175304119152200763157182329191610927606387301096397350284204862830669939175127862184683779490736122815822561621905324631591654957081984153623047414928010024578827609341073236444534594349215002087356755171049911545693522860480353906381688897832751149241441401274613885554849995592399881170215619795796917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "25123677816807044727203717140737903893121635763175497806766601264397304427274661111337194468946473337722998833652529773263985792506238164957057952568326242977240814043057072002709963753223766225038593214656345469261623176470610677154182003851533381553938439524678179156067554252681748660688525971017426440588533857309100840053546407515040860396633232679707782267066891913652873752556675741555886597429633776939503908026121611475726086617739238531733378407398175172732755546114370236401494838225085979231234079771287835641783149536675229562790689340901181031255392959806664862714298524045429766004481204401565667212729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "25204127269223283348291254056716964918038107125528200628762145461369842963323023023656148664924259927357839021325845424924805777135212549377401686688146409092745455984041508494742493340016804902838318375895665795068051028329424759534994943120945912092093296087928461130090825805941818845077323977838400300755875008309058198396400348967575114497113790325057402414078535664256518731316307127320692584374879269970552712116386511517664196248373899227076482626895493725372023542735704852027157159812794476014404391141806644771016924929636349734547919295453639602638517106596860096264659941776374291902924899721986611979573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22442262452736100535172532494746524698903076307609630549904829979881834821106083723872168431682555896377255230355696177112728380575252283822624537031854357741253304949529723870718906736411959888464819209070321435213072677626601058620548783740274343232487533304492230987915241769720040963748841246718447307300520652342207761635338417205017720393167624388996305150981915809009573754154727314270433321563296314151562995018196025665731510571238160949694722884881668771057232932572377282292542017613569813684101018634334364155348706944466718977132329920614580562996488229923359634545229026948452941205825008935924432036197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "26109792297393368909623360432675626984324310426622301228421929403829827886915282005619284066666379385937194460798327473354322903552822043025653628752132298768549145389276603818025737225766950769948131280695838172672992071078806992947288650592000785197228489292232492563243940876858288188381062438880789955699261486742837630549930728265253167695553700755966603193844174305811431245243153849067122922642505537327965281250700484309006914020469320669351806575637148202906601913654629235418684627309448371790339545082960632035669315688588845642132417369054512500058690674524947350887752577392616204130268675127960237208771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "27636957274089423441574381462984147369507929119594966454717570233984900402100436491699700610599019643044381579166446633124927697172725326478319271375604743691065847489972410048837956507387403390230873799756003864794763395624438944028530402745176115644144333675445920772459958957738115256769541980422347359087056628099483163332812802487816001091625750559422617168235538376781606473379988058699709059782757131830619541090434949950533865184872067138503200023976083567036202449202787016418452244628818340949254039623067439486512633897804174200489169634032334412587973942554611769281180759143230353942264192706334625718923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "24013202984379761856874601615301133012060567097121633829136700484496400690038912680410965225926497600052427022799170184034114038893727598251412063219696283559333741410462384326537423486353417112992753082221796793907381257348533054084864415694704121342515829047857576183219413214112138173804265890498866391750114405637384929429377999434459031152966828142721206018468836972577947134879652971538590596718526468962541310395588959194319794158653243632514567054144928142048266083713681021202655075607923361713406013356279666430000026813231531889052712189600643037294087899033000818132657193056124442430371993141947877708547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23140210947897449496068020791339586225738172070199949255534778760188899816212631382991501078698813033945000949353676564257446401234622608904074896111424713000508192933189381471564124474874099140747428104523896250387656342217125328704408138907776705795743418845813696766746746885217606895478903539017014181788218626959437702244857561972134729174130896102039891449015347510891153737306574843631817929155657818567096521980909580891249597785134087793292030040543618741620544373999417762413727601373483601461126843795729301441886890384636066470753334821643979704813116287690597327595397260663145894661712706668558677665431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23670232696373426904993039166917314455509093806480874624610860247923493931984110764660535362967119455731165690274931082441774232073513771367112944627786516184334184215940019055076546540051081045788392366259551138704334397033126917714583337250418497300887438823469064766877352531146786347751202095927190793947421303100635929299601558645806024009434504954191328749389189984934183295771585674047700391610101452327835539513204256616495419379432512384980011845106911673203145274521102832138219877308107728844315361397205075422647459853782052040118794579191440868297813264013123750595322743547819773391821334454537271727669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "19605546537300995204768069261587341537631299117255413405974690437046851885345494810150408571336393747295842904904324551941479477913237314735842618775441952369317750048621750992336820215047738669553899303362842559134410795206892111834002871869674461301147980883226796733389242180294840959161701431241230877833084906196691637309873009384743866944011140110660499291854001197094838597314364978022486598679607490737549262015990850504825997808013578532279538979311663280224313322090458836189906093236505782862888881369992505243299893748032429374400858811183934038697315352029527989464796137191273516146607700423849291571537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "23824085778288446953600280023632686796167112818039278844482158159265890086825216973668506312828093442249011826905729374545836715115763129926767722697006598710415952442907797902381549429355910869745340793004175773378060379459619789213269977946562748095194826249156519287585988396362451972570370890135689331789061688114041072352580193348360567009275757177526231081497155435677701819011199561523570189385058520888060115286370259268259009892201273596081206327760003847631610102998855814311114719773817350686206515132371644298352473638009770349061207321546320908314613990878286543426268016804932548403462793495446600554513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "21502527880021992162922889587089893950460177693969624099174155466550297361233302982378535179873021410072650429231702382755605641720716990994589004493663224636784670522044388482642573311016104879343640076675399347669569735196176717307331420961994898535773244196268076332846458187040856977628090205812421012671656647415198724614187583055709176207848601298613633292636335017012340176455386299553241551661949330803611429755180648467656207259719545635811184912283321247044953420638143813670427066869400307009906833247284292813954364400350630049055299100163195525039094927770795693199407367287864251435620228647885242466377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "21735752533530893448488466823945876113689174606285502157955880119653254549781630061241700469899649554649342941451845148538217436837746245046189248348372893629186081008295989406272980861716940217134155651736397009730843929833796827126372386512331220739592362580549155828917047538839678026137206616775591763686255975457910276106147712423508969485763172327248542290646075225200197784570296547860906464984786300640918722232583780953892471580898197636932952417550573451474455340296318590788972880392770388328025854315076786309357939966962336702060805445579627393002730492394580875916088480887902560636624994064255144664439", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "27848548480745985800298317037030984813110967124650630138884795945306896404872720266185359027032116185502947757596007063072943291375677879307414810172824602858006805127248474429669582495778011024722708212653398288291003279959076043920769393141374700192039476679528978730835120573709778329296910838639040336201157627290348037819847471104206820293187064899410656900992091225035910091376845265046251820574016755874309249015017553776908937292258018620624181686281129629164777292868735961689426898649195497617977739352863145624422353272941961835382070590300457647695333258433515952184045280937291147449346127063211081481903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "25145684530878721281679988944530660472904940176737466556738290740794070641558486567759563660260452881902866854458485499768977785032367374480101341639171352313011603139225917275485915483390868538002664748680046846897679366102160234622689026292597294767516207576916592697877805177956399173597002885522233895230868740446224252799343795237933215315471413125790114803470616593410970111702029848795282664107410051748721504492353027292480517271624918093561572697264442938420227251513276386003735463178982782300467823550792728041426070872146349310980788804182057954842220978211477707448349733624499194703420681206495777464003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22631085240179686171901026142556307391490721388373426556306482949269434837642362049961854597787155518403850021064375170113299513158366953996406011408631198511485464763562936854958836962055482789880279284282073515880562468919943724494990746363025935201584230724728964209291637295757840002291528746841399597566829246695702160041642831538961079168997250289377308772216961039284568535973967506466935530813426189279537419752602160916330797802119721316965853592561410811971255297134216838845700042487358194495856481794667107768886774987381058441632554508799321057389510129355484647383604192511269442898281967739279293763551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MN, O = General Authority for State Registration, CN = Mongolia CSCA", + "modulus": "22803475771348334440579564254519566653738810549413610406280337347210749425581430046728513856777965204031520413699169042452387189185651157105241014780265976587476005333647085525812995380774840269800825731292541474642746088107255709861255189263813482668946846752712100577214222542788003109382441168250326258817709036051820358963799312213453262734264741378669154818078781971115443761772559745600310033558605700992931510362533500882601185693808856940160424317572627186933000260239193899455378222388855442501120590983948276556389523040918636749870751267402932961848016232949264904174307010919048056036578016149793816415789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20274650143184329248566920543887445611557262645456824904826043733143449936004855623602081349555908987009635514568720280926799413530942097153576365022641050838236836271217543032021499543445010186158302420401967248584800322277487060756602900328915632668332115212182413627407161740982653662676844081442412158662770197328414002883467516512006081608904202073087231464960624987468131307248245218450524977779002275850413048235590366644612988008367620289868454643483706779575361177391222689067887063391603354550466462643477273360252923530063917064100667791729150355876837000583235503986177223731471738122670258364012654124181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24550888284071859451443213019235261960952833518336045758609593101303482199710506302678060262396044919700395561179337395432726481050920950190994611023044968219745334462340660142011780614677029769026482071177105864267729554054025366129952817133468823041606392681566798560877874226883544061885240469496662848103754250131231996823917451046526187195185383861987130221525484491096391344766403939227741734961667682585839375504328155982690531189752863911579947025428952816297803706452012627165773162804386207612084663044040767610268945799792192974147851214926721467699243153630956306239118194037972142594358016464121858013039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22966413607796320926249566429887440868508630179959281755318816995237379039305058894013267906382097242706641428929610016201214253571835655466863459523301570535614560466081230129774000160501440718680237995156163441515698900544588272205996141348033872018442332630213945926364400045106183793015715228969709452808822636798227800001337705892494005678025547448087614381936473330481928555544109222751139213955634940295363524225917221385043895787520497671812326117769923965809307656097105185694944165284995472875514608070473424495287932620518658792392809334083275695506738631268332570425953675165635506596439837802020870483877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19607331310141290715585748262134053243374327044087441640936108194295324621530090160175341369098460795430486090483837477778040364326672242714924440913116689035565935160042362598488801016648254554648010561899058321240338450290343191992835933831670215573744169816250592537425359603103105708379563369505729574429855241146737597886484816219534323514669952967394403826354644084016095412729747495083515296294507756692251473639240223604475681774966271869106110498039794165621331199414678865833456464003896690287176853338994226002953173434685125765779488585212547141678270500691057587743567377880197771412378536255242278154657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25697188641213416432895074602918969513422275475430449591989170017092267151973073019401394738024245150706955560752609781220202721783623562487616040818572795635563352144862424936900697680262400073516297547137357275304030604828355382608654535967883531874557687783491073249464257121179401694878133276729600075507532205497213367020024677170121850131205335739584463501636539190874858684095595822164432311119841083100361207160659536971056524223825202844668577721414182224571043411532256123935365950766694514324898794878365580865607693121043223233358806503930222785059052906573836282042673532326789298324179566106762931841317", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19563209888425775876744775599839016088045477988623462303776229485054962619914294725620371249375875505195870092761963963940363165172980968448349876670459226826924784055333004656979887037591009970692390986474846426149889480436532578006969396556184028682400026606439103987978886484822216204835757989993308042231656143011371846029893961435770677898747644103050347516624028788102602650064659062326553675801022019690006253477016640538649237944771915090049896720566635106978719694304697836856809023759108426405815628186142311042460024155342535376059172032437053586330264405368980736337282462722217418789337175528186055310473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28340274269776895285846227291458295527539447807711709119707558728734561534977835260409451123054158142672713319638890592274758457477994253617115460609941756617308199085538986049656948561157179227516796533002915087441635132482393395457694629386971143703070469614274024847707555690419733586136630798595762544976907966632669087154697495412876509712171561262603164581047268127975644540688591963534388040917967619227634402399433411390156649431465336821883629817456896188254594709159018035845536206933880553393901409155593590531954407221131851311837683820871857444938071416581285763381921278644441715813409711978226176599987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26585873956142103873558503852173391272475544627919325636518926889133070629228910985671031181755374029169772196394021747402121042454555612615682170069206146215027909819381901807881442745265891195526379895006397904894739945498548442162826195315118926091814501727215418858684814483188615789310880512356667992627975701487089092225478178065962642230845506375778668193681534119721018935813380195827464590865262425183082520028196398358075474023708541791811044182420845401427488584551843384821770371228366865585991233952492261715190839029200860597481806151810012512542988429172178574888049807630734002803553855306196678856967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25054228183310152589360785438461601560338280363647619352543379731548551073798240460397179311663743434502741017832214230189913785324570834551003360805382987996420350015974814941268280719019001153365816663891538726498298402636534479698440255446213890508115122293591937423943733383874030718504086999635585837622685925758139531041542280177991750391119962008575772138395684788301327481235263633049897527373765014492555844581018954174741612754816896493322562485011880893627814558499813357564234317289132428696104141561586036767071890923763389432251584939062781485093480126505248853541372106354166426932534335087391262293051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19365932780091311991513641023719251168789462336290816457803485684222765023880333515214208835447759167658924371734718592486568834539710362050074867987174294378491175425043998415309068239671255882499054407309810833380010613253844177436485950775416980246946201044208149210896741793554863406353900763461769438676499360641143687669083657230069424777847699503463709233812766931573471593938029524262886695596324007893314692324747087581691669241600731280339588573100929351477500715408520467481060644614213413370327124986002556858762640456916437451551090286141514620245889541054241903731848958601941285600886934839462341109989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24065026695248840562769686158981669200640743975297344598342847339677643803425811323886817272914328274912794595282113330156744980537322478124428368160095546483912971422172759200704466399620865947036725876476844208969727626567090519770220204483244886939458196055258831062829394967689577225529565092220563171753196479024491396232718655634259474734321434379163738630589772149941823730899009438124186768339999838584648179028164615098980861030671909832181928992385293592442645876320738320936377089742677516645972601200949898351754986990245523671559258714395222664519683288805706373235412197479879128996481323433867380847937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22242134739198560450978885316795455519852775151764620053036155195776404536294350884514337788125669755631711658162387256759232077505112237339607726102292423847863089758622962839226683947899950895388364616613965684884011285248445858345272523089949934797997438096088022160868183770788212119473917626419065824971068739167423271783218612573257276455613887007010779119409669975493736974836705558532816187540232135076125551049808290729945750103929922791471591308617272619182201515270029995924913105684594436374000885918226263331104358469036704220059873926519084233167014503465319455765746544948006183933463817987872132282821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30361233171490795620373140433200637311192781713503530278299244267432412914213959141489911728233161670050980356143972705209286346287578579321376670145498131284380327929495720670064919093396677348806654660600236611496280962473132551212860731992721924374357398220758164382377997922562068274562968031719701851119133240309227402199759122986230826267464832443467559071212294554884242221718364145809521783400335875437990888568512961781775799357690615368813141853210187737054851707514046014893850001308401803576937693910259026982717934644108888234296470852840953686263364218016825854824089290198957955075309374521769898811367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21709279189860175284926884679054860112870799809924466852840423820870430769853483686816216177853973869181356842706129479111394961726238532463285845355176861030386361984361643605217195195597967527407279357602874380193530557016269670663694825386690386161107022336062705400323783325222723918518991288476276202269332530179703762747772481972888056937269832463583179841315500333737149149107807990263155095297284826977133385127526018878863108858883720724979927999192014608699797611437625250533504172740944493667645382179547604419544743269209864730456861633477817524923734743330607578280352384996295534135447842404251114010533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21222388170024963591289215327504089090774568419006477440546402201790096707959827281944508576753229227826007783488101962087820750933069409607665941873148192261627740003600034598866876502958644070777052069766157198240411652692476173506091733453923930846503518841366212773760923534461421892427489045775449648668525884875544409096696095214104185073268615812841334733739286772006664107698567765049291073526068209921725246665815450225310787285546302535014321223079229493429749970539793652682430117111825901139789263773916370762896924237019422040004372307717889207757361839700534267385905466420010955299307513714255714085277", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25539594907467054748886703316258966409487135117383971432041724107483661482823247178067021440880716900298345503536960490583811877729184220191665797504959212494133828306885798451109464582051047511614091928643332640770429072043261948523895236978185906579223134370459227630967706700407880254326019868339592626170970625732108991514827479084947499626612490121977449102930570505831034392340579212878254567966662755643413626020103124118892384855157876315086808401402673869232108577952234928770053779480068894630026519607754730246371485758474102091967396574863181761034697171810030832984035477115976607296044774852138592835503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23716059026444078521917180619654854389600311888915222957525835486668984428206797023360239364927931316652831205127447005807124086235568003989401544412562201929009026181627114291234920666473950252540682083772241247576666714744150479189876288910837971470151316713543253457045395132659275181948868624300583368195700625819614077906189692545881897656712710248792751863579025489113548293709674027124590216742521058732501575696744724732479010283042704929978648748152661772858720987177565548933998059912155542172698366533320557645994843715367731011365921875525812182380437736412450786018725955078621049205732869702061614956271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23103588753587455126505736401690143143241597771387114096860172395807503444128687891772855198469475440483866050649536296117933521127803195819179191662717747603224811138726999172628963919975403863838991466356277344564948167371994507515916305943824877289910977182354949375742260884701997222972801993465534357650813104512331662034424314365570709070148085691128989686384245437438319563536539542652330685186605191348810654847676360583648274636047902060357268253593064040861597577317631915271300847581831391873577926346377996663041163209421909270154756897941413821892968751353525726180679545784833236261959894513542086889721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23770508741069755837169795963744776592708646163015056973173697416870628353419117876486136473026039458602224610579115474450067028111251146431339069039458574491175383011653718196118523914323033151084337494943748802960760429563771209927036334825869063713413178607730961493415447722417212966880741732305916334797379142696143423131916430126355235455065500140060731116979114449345064997953539057820789848239382470841663606137213019178652341304298194757624935724841390258137350955031157437435968044740471676041085116252631070347692740533360735257577253902154757343226641326608019102160688451427156817346507307976869188323369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24441125597245234764376996732555726489399245331522798336700224688071940144207167101454668602246567135404004052532513447542322187399700037571899127067678735177092878439591780749724881625845844876948557827854525829075295653125514109532096303684830132343939611088161008877372098242176098346929784939584003477204308787413091899248454474427136544858785017679819955494909321188327629027160271907018035577461751902075726799755780676161868687887290703524257909793164858354888277532255121328056412740535593951014133761274956969654275987610867669251770527603049008838779561516762948427476916211954704705412790444862080354938053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30792270690218922690094892445958501851739845988075178672187792019731718091134438255827658559309373603252097852145622553776545386058857235963860077318513294963233223704713571908704891219253709436372461754912567736030431726837435024072066243096871044180790741430799683308706228197241332715215750579678149198198682618724316882836258624216989869955157837262242794276321998314585978771394032966382079744943313419249537387900681388263072557767856422129370665404973162981328481237202004941147828005883315664928646029098028262435305080266764795350967389347256758183818234647530699443255896832947063204180682587505366211906229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31608204664702343404841458682469977469964476929173648567915419665412077890705731783020282997764268431792358877727193018160616097157561190217119908587775313680723442897774937692818051181576277814467577618148031721219021438983785909576588302289018810476913611476787452018156693113273990415331444628269155955879052822200111091268999858304208383336831863259147539888692460648317584639114312208857955989680544774193980503377614943237558448543158054575577980021813603529336538859646659861723123090513878693190668782888507990706819639280946685395852095346941536378927444041915072196537283350283294246937939950569345238455167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22417601620952282256098600232149782471950749856071574311888186254319529120092364053227831300366931742022313239846836257439529484723051229839776181300483033569305512128812614111808080562177343537175336456058056048391578203478715507323607584932869756681803343651129096711049069315905745799776872150787832280740327066105544438045894196215291995435370002000056670739163753419408381726060599945210594395260968168428124305856997677134475992977350513818165263065042754362047966836240494665339058409799760708224652345850871545923040685773918299077825864612613375440733050704565514181875813672980677761501699617307383173724411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24905361065917843489231025606049859874765822938196241775418662853312617868336666421247457270689203162443016920611089958451821284714744010691687733599228620650528705549756829339734650915205484545544689672819971752276165281596646391120371780543517647352570893240605727233222090332051812677166790025811341006721327462349106506863057924733244800512750543489319008883351137100086000402423454539810642299219930973782774996431013563285317017691182212176487098556372151548167281420011167212742798878090067406296480255546350976030609655653105400062055220476953580022803634843486318674882594731438708488161870607044660602576503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21351484176272323125300807104385522337380560779954836013268127864127353925800197696051294062531775696281692305021290171139591845340877034535570535969689332480751675447389651389051756073890087959922091201366645906743071597622055310812028022899538443158599723747686379399000986360298387877819272651240929298296275247757199633138634866217385735779515590727947718628203745804175353439417657989541445948830738281380285231496617564600781214423518035143147631849905284986379158414946210664647742774491712626307460013748073754198329537539026762576424970368963904127661683795232464346195791299345949521917723040488236905903597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24141108146875621964207834579274836059799888453701675321842244922313903129826213952110268046013529288750491701709326145737217557858314337819261422864997689563906162379638274692656135596907171005600770098014358125482520081836034930345494105347057659893048058127426477179709032728028752109317620780113460436182205365174823534041105688459354924618368961149194819745643070579613018881927532031712909250976792234646340740024939455383094414145249938630143180221190224992794494983791542785956914339247525741074207395578049711157148314204704579473539503402908100877203678190753095437045811115038525206397985891783753816212229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25269600490457580411734228536684394957484004780305552149659056518507037575777169746780628271408448060954855586020407026091114528666318591807078686743993473181496779089158424855927326071470062129704422724976127297556321625642607245326396474458892800798476902300023158420659782023572765185683868611193903973563795315300356698951981747062508966385781314098273935791743505016566345288036034894969969285597002218649929258492927404085219988111296326677429943680273173032887807545947311134906886203547014891381272870256615634126206545299246470504291236173796015769552293807926480653775131687138642541229066785519492350711363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28188694650980475086348316157351582377535613256280839502758414321022176782914281191540119077579467806610892743439058316109965425029464134353057511838084007040800427562807971372863326979578913726304877581032728590813997422520203163390586937137090849027097982979288974910618989639386896656619732424884431717633681111587788655574130669305640124467471690907808582678449301878886022995612054410951748887467160642390998342260410715505900454005849876852549956625135961885483314097945276657499445492880976111818642030115651274050576544188739364401619943308383134547551519142376752564443969688319988779216750702541951546107163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26258614795441119355857937183034815880902634607028200346029769957892900465276779576786724275652136928823121298860526971471738201230407808723067857544357836282055190181900332871031080067781393038853461084367743088031299452165817857799944539404107213267456956395289749666137183388603345053058597185539940719294974211052946844282159528346028355875840094922552891070260833226072237502388719607057843659145842428525805902155505474927763205307538907980484113154836448532354908779587164184119702075280014370597111020722245271394208007517821483652076229166281615171329217173067042215063514925346788139367429153473484077259741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20427176189396206416683122431659098661054924815510370480641907857450788359865267095108733815386052052223321571443669881983999237361019139127960726948372536468766047557046297539511790927254032113597310272668653643206027747336134032114616557426596324796934383669114876345043832917385162910928647719014235101008273033731604104427542236987185379184372905158970051829322627296341223789023780612784394793244760493839217146671615534938574376350429783347557666436402616002411069255891263986822713737667631188177817507351363264142068410535491928512193062691132669469138842379402254217028234070481592902969307063380619312158569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19641191344707251606502275218377551951569556896629647594966334122564450230082039640415200199181824862104500845508498706009387033742431009795255250006801446224410160275469161075462291778012240834356282566732241094368494981859700413552201861393583558554408382671536055083032038425607706420349562627253164666174289957372463710033747486067416686654090168697670152233452937989607522248671833954475012708081376873636398255616266361788494879973724588694529176100428814737803819325014497358841959932170487035979140142812970564426653575687375544192419888999276328607110044270497015251267609515645550903004684236780533035200831", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23066787728338500348043124937127884588301443807943542741698337058223566221204633130449204282460726868950969477617196177637536004084949835521947715764034044492608708276068998184260562162833736418858003954855640881813356298002165976213779644581768450353917664397744123569380777518273622482315179461843031048670157689482514470723244133990217999581762121562020351583524012405524423136248090759159131696800477525718660060466768991683847095562321482261043057221669459468034897299397052012544903640066115038445887348712912087502744555279979888101917820132753697644594546391187295236499945555779540963797396699245766094667131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24978007658942983107307577526377537642935378468358965046246452417131426137874342182878332095941539978285116759741154834837229504772812288211881633925133418109171092940024278984741485401799328159147413668581187425719282803539867879357252280710958905836550646974362105192888056755915447835900395806660434568673850419127768499056857305964161686470796274883799468415858574538338962288679076361988180670005403749190043170556857158439281464911252207606063941352488774034620382161567225052950290646833304420811699514974931030057857248046160328470727358639526816677857660177518373344660619712991434280870235756854910430771921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24545594801609505589445234444320154155072283717019202598350489639787831505461495589636945779993865177954535243526720429223537133009982731139311665562376490768710531817591623580102077166871914992438285648417890801245837383029809242577839638721890633743331535083070424526448284708572396507974103411607098685683386479705117214327051648257017894759571804719956928051464593615909702879711960231955749721073659397467775455402250526043804178303839423793399113955937292995958059507653375809092568133195488308234922369074337881702482779090979122720303276179402317284199214104899111981587195484995835387453721865141319330931229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22242650037536089979875357870039725375829760815580547589028196214211603783749021330468124687934256006446928032327758668833244394973229741876438011981168273554727000689397450134467744889979589446182796486821006690284480889681828568564712028668304317830354599881890470292313832635118894245773717558833306325561837894611122316848919560228098060891102213797061717610172791425117556797829857804568495900738120470319356123208730625892436432727853605674391513837476812764724570484877401884910392912899289273132022034115565731094014458016295039442324855727105519773670894246574658901413596658072384939915484011246084112847357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "19958680488541232525538170158975145346295336838512759642191284015116243081925612057415699185447985003845929702742792459853447778126290003375274344248855713477010833567828916223141956153546582477164784127564748399688652836304003251151220690351603871410841901131325255862077420389960220699597023008772589976797439849621356261924049973899258355626783393736993485589577726936912940066038246452239020469000914299540456457625049296875780139256523604822412061951601105539576579767629257521437227670400504391508773475519824155100806106029232246956364059372036695339336350798693822709147288940872617562391604461482551739290593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "24589835322854513468274923534628257537098036921079035994842322309370447089680835073995306505688535369996052008141520332621779289604830651463822899275281599691538589114415152688709514309686835439718021331630874228062729733584557743124111710007252906860106662171449834852889638944079677793075238511227732768562968190384824954731493698658784631542605666691522380821337797200074494653817849132220380392477065825474404966286570690230226220752822968696972134214419053596420377007018015440389319145542128332996644658738545338378937051790422443232189359520840845909891819853070611172561873776487151280328042611103004125901583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "29032832241645631029349729978294077514709096823815693693627762851659173228669542254670957730234451130503105265118192203029029409416347120951877678951610759382387595330066666686595145437524376685832904311317331225641615798023687469767618554996768060434049213287811954148728362914410002536810175969891956947796646065986476453183785783855120987383399547833359714045517701703627932085084161836489034429045099737631784351654100916703929312027241455628364872982374782444597270630656545081968498277346957366286084692316641830555311626713738331696245859119961486795996747972394975396790299524584123586771810716994862956452253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "893206952980789980929894131453769737954427933714044856905203488820662096260988619859659516697095588181684230941617890645408675758795594189407089561148374119785198614011763518008293535106157003926466825694119280210758196076261959025938450869347206523490711237144905700547182247949402346593016236454275534588587134392164178930393051200149884821748199237552177773900970583400195039695130512330482024991414593852104542323942562066911579951366998242833254811474785653236492509982176607990760757755885405354085059727958454597017630813380219043263978799597243847034453905743373546692779838330511911723438222228646074412717294537567187141422181977049323263552270404393278457684481847810703080709764503324225171418493423452337430522586841682300086110758107310712946429723399889095447421929501703382783586759312737121086301282819721921519530150369362679599839243812937588956407625831784404414349960511011222492747751360940058388020351057931701419927751110400923613461020650715534792234726932820235274238318467406642069404826894293787079015670476136329396930571511595776854424206693542758375669231247102070222424593083526707668941433613484804076683007319146611511552364525730453164846850823907278929092167021171441009906879063970369478297214099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "939500987372377389431136069075834187855430900027091481680974973895569399894690736888075319194892359591963004169781072113092505038086179861524982116283581087100321649741195830998162522185813612700070094101841076576341465011165190389599303207910653004347633692047012411784112997751377693605269205392349307890562531301226559978938701817019629425143921500309294826380616295492746211861085146737711121001573158155982105482180073155120941819522913405391471735391892593370066322067043978702718910641003977034627276452177640873133247266112863994963548690825942310419376180432265008491123572669312576645019208378199332074552407401443654398553050432589135992560326416842695469226719650925341542835867625694505294361983222433518443904975678262804078858430063695869632066696715228265318548759708451904679575686145513369316506877523750666099378660814490009839021254991167075318201313503297236309126958001271010842020372339276410997956132403663649430403241744549757102465621853410652926972628043193401763881868160211198210812030249393386990413846507530939781315762726327452002435035810590885336542459620043321797105231443554523017405978731617833238910337383156199254899077279826913836608312532289375604117360581581930416672626585170304938466991217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "29007990052720817916848403510657068118779212159250599838690826640143946870095128934818088689559980896009399907489046269604373461441825290531895174925778353430512505042981145946415065130252843657182225208715594567369768052964917407786235114626637129048482739794920513887740465887286531912852829659877834800763519297335618859094328695041149127673021020872513378366406380802046751119560323022503520492947547198415192373745101526857705792369865140669688679490203961669754708919282300427795094568248565372727112662348779495923073359497416327679673361183416875556621210232690159399632984945704992099071724321227540039330627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "20180024521769014408636595533454816960073578220933134893849316688111645213776766454825368503517999373323556337806855660178576048175630779468722954242661210702880301918085338196189512282675421271838706219124454660325265275606784782501615372049676007889884186013103502134242031554422819384520529875136211269914900891351531916762231278159685395579467056156033308934815824545991637869809024552575691396953918472714256192416429033092665080931865085725266389572869471284631611977724907698845138446650397496359230343518273932888633062110863717535166060226994744766817649608018312695158256027025330365742280771222532923101149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22355412239322243847152027826267714009756253477389941336612653732133849322033356593366686691907364908142417339541180160701221839069359681344305111646353525176221889015981321697934913519003322514778874859441784629282974291177082308344422563326352520186597201408331102487693218738875157850325735738771615999903491769327578438147735541793740168232295551780743710555185089003199901443405441970074937692139133763864696991875607627149836203386988013950195076585484724566513890763073530445415648745184129999751948758967415685324035688548308703647463737321900655312791369026227234850736698252179450562233350531292040400622707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22217962714319651894294650579091105358529902161428086220135318262041168370178212370178044794237163057140773497989225136161239597959612942366685077882823476414655574024746050308147446082054999800436648060207166621585343849604565427716204674736380569512132550794203124299296130615888668998882953487457342533795807978544205111758200957419497746830903881143757237202372679269042213964055192917493172138704677481138377540501483272603785192470911829394839064538063884658714948475709326618525273538286231008867516242315669486310665854975829842286914819132609557131197145028220989045981591084579042386683417628410306308414927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "26963259326387057850181591078145160677058176346862392451016777704229804975017178466004947641901682526722640449579730324803111665754167229955835757172359434895448489939465023836597870568280941660741952556458452481001454083080457983229083531734819474356819331870233946831371100587898120137241999222695669797197676231947371223899605243412274464370570695217859568522842601150277835411808137051206887087362002963079987236474644897966103707319701716212726636500455648528121121386179193729691290467023743206389260595464372490219319530047425886576460371117368995679780982048374953414350374236168867344923911487866035292464361", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "19574811200803677435572209448658699429241799229392061648736550495042138227025222639333032356636045209713471464117874905124546671300822923033383250561496080868329340264472028191269454570967130872415147784238197376041964396139462407555706418338759722659741274467422506058772773011255218503017851942837551315690558046030704416930187077398825177485125022412269227006132680277729946217914241701532945372791716048950959581342691540200934748962692354600800943263805787002951836589523407516379283514933821614724157009997213324842842459235864413038985439801928635032631780384784312121365920303650234553328479955220994734558501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "21332456873518428297994833307342289857119273274404211294971723634578620243837330132028675097040933011523626686236972815745454411199447825563025844066274646401316167859165446038977613142916555541682198596119020006866760781728388657987496569150884768353360573980837180062620379417075923197702879058645113757990777659766028710663569495539893051656624645214639445873940424199213999134135115987730436741381475506570951253768631220602009396960374425717653602347203058148428879645642972597520117007053590020969855407088037232896247337941901324098471867119991005900528075134275100430752191089435522350549356599600604307736843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22685947509825544479340847066408966718185035673329881890288751017364606484583638934852091528036769843137238056943555798222244279666069015279193883632548264447431913728117461006660997936157113268300371799600886110013004887800425970305684624236054805719469787067573804809451762199418604994633551834087424335920247480857269489410920416178523896267235643266154948350194362976062428477273679719754687844463332889655225803249729915589256271421874382723996966707669621361444067947183393836312859697719098123062569481929380405624843333112630817328618087604224783718880408053317826704522029276911112818965252033716645889675789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "21991028161881681090677879329103728513954627773825999219490353189996442737033850052600576116141005085660793535936139306894434918512327533363378555736912292712301245584602418422142245542419157728229272891558991604788344104581892846999501914648282819123965160303702679255604380227127382014740231223638754078942152708959541517703844382157300071686647149309634826525377264158137551554408783619249208796705254183801427811602129671561254824247475888039989184423967969200812062094330500665989710272828139521554677441293859274041582410879886860994504527407066718698748513034998144925968562502223737128195133642353501921281901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "20156706107175861128001891255112031302996052654998020609308478784719856373534943618557073372059507494922918666583122505544443693493232376406709910456580866770131632246695915175439367582595679888294575565509450159901539075049959797276383903043058721548026496429926037218343480131893480121326482103718711214267002170371434032852978916116328170785198621249831721497544631731513260380533050937909166420273176658590197554454922976326283828757006559719612085047261207585472092856412831234276308759657126887433064376957853289567241561384221407861712624279612074478877419289107279258382730795064435433689117658202540512598517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "24466528573386041166719229050595756642426265286755314415460027730825180823276168663916739869629736161852874066372879825537532319368923476796850448917314879716769277846321120279990863052253766786253689217782648493894367948192401811141998729965763851949327074936416900250077023697660378369592596361691281123093185760002598686675119501689232281172350091945987600660305371753689527724136498423142615402262328309162102860375094093521040449883633325821649715012892477432761035272583269758009669417940369249664579768844867029070985860404879961487773408479241705794648305581117622486750504001896306376130637387435140732575059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "30459972089852480359939661291899121049686272113285874828236056682189521370852898948213305723136083122350430330016462711269202152899746302063599466106388648593459934952626499221824799823490101104400070333978893626038824845174631006566521972352678436032071613822291513857735018576080895675690111901083095368640681487842177390070131429135331307037882951484882436661595161879217098456298922492141648849261046834833537503703854077958985976083505193424941972779080448207445754891370190539384080598268075748338074093818776935859670008914944004485607638278805493404966642793040293233866516731040016777342992051355993559478217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "22104096740610090652628210344693273263157606149993216591961245050285696100273545274969474838668564488417057012099726430057929149124540484262856154505033422743619803871327943455294100491123280665106064890515805635639598030728377359334053084540834558922069005382235085980079970876231790601182847163573713553671405836342981153062201176045827294138857798471314037857569246073520397782611144917408463626377210799711549816207646906089669503238469064409543991891226496089597787838634366080906910455594888663855703277585654855604805492925582768761874168354522854283013077494037462580174747970973945486593455511760018510607283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "20312025002610052618932262064186378803006331955845282506444699150496575793405421529182642396133366183122796569252284896650349770694481308996383745644721890924217332832086505574763645144797184779956197603267434494545844355900645952317775559211859449095851428673909356372084350164020285428564377927950225927774598580328205792008044759069039005433343446312503033669144936895610081156080642407246235687601726044439703257818072397893957760088356996354901466863197117243891920784234091595471903728941251442898246676145998695198297540808863661283732236044657566325956471269319733243411671551177463916511108254747458293866313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "27379578615698698415209507998013318174251072320668424675810058635430541297958606929379209231132802875515237506433465661393909742956794760500857863931277366499276716073217260417620089878002298593235096123665283434307104099429528761208690174149685828113434711255430734267083396081348961272281907712512659923938131165357202340306893107719833274869881707378828615864306202188465661069387932603003173999426709534259002250206592498288240107590743109788047086949638725821972632019634014926811414174183306822144511813709763670607613840958420025012569804921409215735943020729977834039316317857491610094005401476342066419904589", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "25655707323584765438997325855409152803322782689011958418891612035995169477495189250513041769421765017739554657490836780102408417164029952398191770959985659695024394561882500934509748497529308608631416507270055515014771330786074208300893464822107695120870666079898764537627104515727524046264618346787612145131573557183995185209454721525078251319169976042413930056748155861300321322859140130043495411268653561813980741047614920477810783163333105158381689313171452552634168657541495111113444625777669658164310947824047185086327943275587115026035071853852377680509393623239272365242583907484070644807059454945109480451839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ES, O = DIRECCION GENERAL DE LA POLICIA, serialNumber = 4, CN = CSCA SPAIN", + "modulus": "18390766452740141397478264033789869274178166832477979988016605864616155867398928167264128696571639604054563888462256697849342019581291773750470063348984841483312828741325218342208621867786304168863476767270945820579915047540632501493112455918675257927793594231073263644756083415238792930238744182730093452243732443257844177690925661617582399316076191942218907130960309661467611056790751648924589715965880108355761650975923785250991042982237525086709894680344717673349887696767784227197233560040128997587512796234275736392632296010577502366482289465681284992475256122953073928976961771773299492070795112050839477577939", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "21808716595023387402000862726605851867774931302469451208184340269258124162197938089167804546247252304517810345219419366357106071995656937023077732420600717418523787777867190848105749087822038777395853337349701984611523897207174520891546249477821453226066316796017746045876996764081001363500188014928371828182061930457601815365546407736813615718410738624462263256115531351292646147110517909583757036114270111066362788014633862259943044502033451019228452447689503816386644074557416258889554020073023954996647796950968225214727914034901915039018705462356991828808386556675303483811102823963899542896172281200440945856457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24965153023497092981562683559322361555646158153511199477945295100361989098495740014669293716966009836357844711906647998218621918827849072237930347590156129704719199639073128953678581935834523025708032195127662127853527728904688392218661975456984585160638023871598558421760900019388458984931327464528185148038386072260256166585798281053194433146034032248546323511499276110337350619651464816981077338240018891709712040743377009832174608909261477121704972383854884589972997431261487124961373254231498304627737673624553211499340105843018428628207490336465772207942124676999116051597069801185928102521381360751536728049897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24976088346418986094795874166088844598264041445680285903401988477915093091310258185769358598900974506027795828500625754945402180798512663947677181748646962327817612552171126085354367736724812341334325954811680928933512572883666634524143793518474905108540840821935991525156984906941994098866884271055679208825824430022437725089856489898016693790914357182912708413665641264603665802529887048158979206588956207507470496736331569502297721820426928056948055196029590423263693254577884191883411316187121247942995230716095528398454807963723272001104721087741197463536718391332841229155215026252817467920083071589462384981997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "19196766528763491129895089244967248765517810360676766634051575092990980452204539152593758382987420683961291014506073794253885793877583106865946234264801456442817826556173257392693939302603913559976375754552484308189652996953596948934420374941420446989431369856410106141479127686509081796573659927273993715292102862364066211649948073185207836222252270888062826513272810691813639141620720099023056681139674310052461008592411240580690176087004288654926372608757100721834849460893651434535911005167224265300115739504706538960252153767971399929220699090460773123532653822275767851637908479207452887839565442979105896482249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "26743850229227829086220106864557710871945252547861903350568967077418653355898228756738844927895955594871421189445946130131425728702103319654592932960865690649488672686073379188466582212989749238589142166635978375107952209759831030548533657336127777392431932279529891568105014443648772040732184742174879086174444144878727171003924955478984757857905933389262377507159325017968601167959659297946570272586758398323696903874633911627327802786179722249349307008351574425225724132993450080951536081250287339278436303318185934963068387510089364930774597226444699447919713708763137586366645486915696461819907508643628342627297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22665266951872539844397246052611004845813454177280573846605032633574675545712012657386521739093147467680275311930333111084279417392938572210381226388068833279193818710880778295849935494325390142899357955755490901234032172891453567897647641554971959227635505716029556612601597931185006302988849333982034676204786165668261477815905177777171971655600042337059015168586166299662933571745299224129545409248998647139080488473560840846234736080921428518270898217350155296661516113719113517041969649312775284242867719157385874097854096370421512539117221660039730544805318228327745548552778643968987789464289156847145892995217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25895332838341708440644879978793132057760368443996075036695348256415461503682712328680693909497171788016844533390180828704092123825805664514130481645576371160628807765405627577684159803869940784534131226753451846378015919665413425881599545718342317587179737095310955273606853036854855218655918075244029811126675685701814856269055759236851237606764663777021539374006438584656171055763896036247322813240420473920082658327198974862555501956572334649810965190018732220139646521667584517598447041672685256041288691355566910933659508505311820839574995792921804160078387245343250273315801634058014616433277799485158604782363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25520424804948074574774113387951645885722329084600005677970904707706466882446963884255131366430172320075266722216917240322312372450848091409531043328608606714617051842351622689300454913572315899321165584778382753145150200357368182415085957760256618941690935096459548637479512774107311483826462549771601306923443275350463257894064222331179461950642532660745945760448352434945479313234379036992041419574741375478591918094305170619965860260483061618462111880166706590752591143471871318177186645458645625217049178248484379028894125872333229714894002396922795950414056559039664752716571317952552821899552081752595121624809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24949758448450872892191582946842915404655295452827367739165286481863749000769530973690200463531739066235819288156046345149162179328767951600222047251003680342371438403952135946879484408721682161927588339191161590201841335799986179106161011427180969279512742943469825845782491091868183682004405994088287049516130843678930259620868295078232050023465797333275729558919666214234145892965295215240555159643365066264770616461046935747525695030258952652557939241620792056906631438712999250471064882732578956525767484133328775996730280500552581914940814302898974595846164474660162022811012633507494665305609334911728012855947", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "21251825591634462072509773436492788890450666516650002653020962836530650197640517962393558879686491536111132402474886284477935003093961330589484377596404325020778930983408622854809410685702399759394943220120805814005045219927240300417461981261843396318214336261676524099437657140171679345971655326891226553472281557302321137877106570467906353416196914996519896892713009195061146244244336876917149000993204224657961331304745571530463320018751151989899565199532433680308098686298621747424193161296030819153960249451006666991994533806849175169987635506689670841935789055393726460494253101121361388743371771575696253114897", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "20873182645541737991011366163881066525179633494502900947231942484722640790057885221987797623735738898907361895603235441736797896558457472212058611184495245977601519883874155878126668584750452485256444882345220198816259016178776986568163550252161666242536138158316875754941243778284203274310285037722130542497385645034377644499407913439961457304441052541112328562964532736134460572071202597425671495358543023565113557842899113009510190663692492242979438718799841043647935583532846155082523865764432835605982541445084697960651297330648472401587265272866716292442041177052621099910673969589607033790088356219021998155127", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "30219781719864329347193870840685458094572573657082585670534332018422604111485253286034087675514368867192986881550493093692310572411895957294001990454677780255953677593617203521086314676280773128933983213151295179503058751207221487440953226840357246320202948567541986367993341829204555000250193764529914992581347442568153409315117278709920047998620847555947976678025284412837413116603908998275497543884805011858607588709449230305193114598713637982902179938221079084179809648515376228386165424296449957456106560402207719539797710622695629548951478984606122502625815796600729055246763848355289558380722941844797575657017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "28765255928096229353194136012586200136699798196099357719813982066280443189198779267505313716529877035005197927056911295939942423235691107310459333489629639333932624465603833425638139728996140999040239025521729152095243828803052541450913564227351012184183646364773705615141533141631940842545601760352203213554804202873855766271796575378264098219357746552579377403878713644714173804562557879300232279860543760822517534029233961175510841143630404714547434088060583696497145432236242147831921010499285452772854830865322524910216894506066514251842373409730076906632353100291456069643434230644644888456554534146661552605109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "23443652643593768375754690387776750948599839255875821247030627196950919065900041540888793287396987623371042831115589798421519604568843492781050288650037807097665827428401380954116878953482561076356571973398443951743372543991560527068784462610795203942819167820684981632021734125768314769536938340245653625046588711794158861345300804612244801495697798370854055842423908433395476407894374471606253302070788074604663638327443496044055586672640719443660362638825307165367332978341960628040437867403222221748599465499422462337884448968432730702160238600306324933993837307328583358842267970794294947562874452402522278620637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25895695235082819678112846324475953239758894680158943915283796943890276088486233568327048728127981695967419665147149000356229923841930263917220647210311428390155800198159633599416749869260877520582975973897947516675470265730225774733808591503885462100711795872505928863943084713029991754322724541196071317458643202382156302606450122902139431922697510797784113973317364146051408578511411600553279589512545492430544640348742415894965782221108412629582703410602111411152299231975589149246789345029617441346899815289493715521592225137009211634258534484414932246253548306339607686925137040980123251948653945173807000795853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "19826908407122555580858651873675963179049719156066196115532007774166738857408259927744310381826010910721973746314563227827150959807404680658242924701498206402319260146016218518997360011649565014398008449562450545934821579476172719605647024827786341281754664398403487319515039654152597914695814984253039668507210220385250858519141312796836320690973777759303849849348051334961975468471818271561317089404722423552389754808090524552052996759152318996530116879109866955401320576393904687363923867794186295969965537842460269739069949034599895048862671898283576811705655570425554750446411510262117834732600464648401506321517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "23440228825510476780222654548910341909365427829847055763076152826412913004995195496942644078706159808248339043192283434687103677036565822462320306366759455373810254774931926864119555051568488874596201190024399831441602884350886520784951930578918463424708815515560537783751610971754076556324333146851922897708851474002180163541923221534954959509762104171198972756697992453456988044559335499307758829919002676298530377876244762507042227212128687827956317025576454849578259502298103128728040101669901647950012330370294656846996570579112231926739912071371324449791601890178349314940394389360775457184967752210339184151529", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24260584724394866365406261455179059065404489766707812094402136315825061016622483852076173930227637612670811359383634541374290261219321250085963387125200860090583832397960724555813016514521114496320844915619504219537699745851074840616931033572146733826977445931262568701856220911786804740828247589757351796230722074222002496123613395548232166398657744682920301633628606885867902822535304860105583929569599793273167160982817160752158660721367022799423483702231065993462537752905394636954636627389080939539920542872684246871331588532303901882557280783875977786425034857053276491367938974180451927016530193443570784914111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "27037751685572599901478967134609979285844525443102998920635176129334399296551600591378686465679800388772082001023513809683673440112809238943788765145499694307874400971160796438018018226303900607608913676489098534865053548470240317426493068262935222345372735075491102129651922074471471912474556427260282878820291011252669621543809889281890254429147242315498627752345917230890759601569194961841424927860717189706279615205176002251923953893699298015918443395615693728312984526131302798500903879891430678503415170990868725868240627412994031892656302551949367511691701632955650506073422441874303716469997254618530894993869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22600317236473311060902013567572175988530576420228767627626662154062876015005160403174632416718126251762718271935737906148142269490852010012254197881077211529411942213196798793096319865215501272559634541540853663345107563540505585284623918879784699374103909973507574368891974231119437425954558545498105361925668264906042914004260643229003732457568024540643185928238943750143799651876933598181857074220220908859634692846439527173943414377733615702758041066541872571769223321822957280958830775174658145646841158756479759486074002173535325273237664960575776538731562856600799619904461857996107859641351188182978607189487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25712025442572972051600137079535056767466183677034629866083246353113861738410608043240229135914133881023080363952943269035159876162942185563906075240909933597835620370202633280950606707352743236531159106450258835505530927650945351905203665658647980953251649021000855667898140587420819501041667096311374549481797097391337687316542112515666266373114514807259401382377460612181092852088989085553388137556394981399037997474101587212576213271663117974110815792397945339228335022335168008253197333673075850473126608313770754353288132649002616135104571643835434414321910376333210240832405110164682697514118186421476935957271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "26876340446510182759029747267604125291523946484536843678218134563101891118408870301741819460667014686309003276913123229856183012539774487167453914852751543904816661791158724832460153353147110030024464182617288279661201322208330514877981345854948058197550401699410807334641181528825989791988348745371749686688222975548059921557111588890013659386490388995468230387686616325144903969256406665215480101396776224164705175307963334461250379699876799908943119191577201570839445891170680214960698056749989328237400864229375104151851555163307514255522952685364261667268580141123805120438709872956181868755173130735097445936987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "27378003584878383507481057244052098463502575823650900468139452058003799600268977249276412000583644214232648327287263521852839425345825490647267502144884161499457467520931760856685918100251849093207267609231344499392513190446261529333610941667483556522968511124602817361772396187534826424470955334832341050367238896772751928727950723539844281461575913791865665847793684748029750556066526732925409624273397951283362522794985136820950037724823760123704308385682729361154780886647170324325275978394078724221149373623853676590360447048343108494889472035415470287315360403178956016477858897777392875660672238198109706522517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "20446538810015940906551930646315675166273707865132484399396622221241792775825658789064117715562944512976665841721257838783037098987803957686785644039665722749531443219522492895886008992199905180892633240973196503833643762521999431729296298039618306799085442444820388395142446553960184845025805870320919005316522453895649348088440387185063994549075644304052939720824739579268934090832016064004169881477296138397813977802667418711663506063481426361992290804851554593162917379003530166249900944814829882368602357352909866720544345820911276685372752465748657194374421323647235564094545122960540461033059952763679916940227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "26962642021617156865088012217481546849397855435964678639560055984686514964822917422438965497830430642586422031467710803058190056844311279179027929412455251407951172633214980315959590342778159280482728028016972276672488767068973401661217501037690071361698116054792934655324737973825011789147925054273673375493579701084662905842417431994842158181544798690278825218808130012373943412250952718545470166842711449054434589637999912372430980553094632101864967363490412364399444199475569335782205248042917841172169340125262065224347689786153129204359232303048360147907390998700971061913463156163671804203164700349210877005949", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "21393639849432891111331754417016330087518914731420082449527755950747075638604241413714601058526425903011249920839119097603075941369705338119344042363491773535097219766124494121073949243543615906399612939347536156109850865442310311444780498499011492855260732489977216439271828567411864756351978138663557876024773435476850621072499759295663242141717980385457210911507081480820279807672333443495710193166259893211253049112737968502514617395430661633478686935058366013221058011162367991009465378919486730655031782164869331826247836293580465832244934781836797592543688793071108569303602505105302705653822154073355340310579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22947297924630439423536897392164236259517435203700862747211395174680375937616468576266745197706284998303283826200529050820128914811345833641876125420436133047559480455229126105536059649420396177898266151029953716733849069057032873489407360057744328523818930293998228576377128978660947911222171597346320721162772777466671070158523316767502960046959259576673346396406574237990451914063063261561213645218922072087337876623840138166088967150933104383857833958982356344909991539396306039790665349607261715735584277896711759689295089662920080693299274482744059994202179733922809047843082811298991496494161077955807766489287", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24585726162951037490377357363647237671482820881701295234169498564084676777095134176740537166465789193540948707707117195467257470365159494131334410324092115237786634791204937242279449254668109773142223846316754088168223154736492659830375523960985558324695140703721552471754739177865035256969332274359581447114482888236253859075296798171650579427423028054364724261062966808160303666993630136182008016360297029986446610118065705504468116519165024942136908443172420226940584028916167415465793035126804049784232310966761541327680824891311781234948137662694423562009420900805501235892967341061943887352605710203483257156659", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "23897782541959123456288276613780508027621117192899382120333232804984387197294722156687842810575897138506630563771066689038663709029061229864812502366563687106745725322425247756918506920961447561361011300927512257841277886800025302636115182675766479483116974798743219200131467860772810496984049424015672433102692309661129224703654325984307326761658171799179977112321590486685303585654861697638013081252967502754238911428437811458511872917782569886546100458898284487528400419615572560796845224293238662945326264679596806469864014356045960988762047394970050026401896403370635818489060081294104427066945591344850917318457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "27985322335100279475432940135376625195814655244849911304040199236184395834412341728347551267231911083309977683360740493630059956517335286493331644027367297448940115463744978660608226568512888245114837386210299777319893341277445646642396208074899305595799876549204083181482355529309722963928008187150819292254238570564114669540030279564045608987538448969614128701333271059454362226572691131626718340267170345094188522392329667708601755848039263551566315698984257789018791352508203568590814268735322774958729783255969029061563265558016667212368430651159907405650798456360480043988276192130781239710680114622607116277497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "24203662206380425304887878357933964896734655319885672524387813771797925170428430600436981800108189176642047039338388765099571266140502492132206652585489693277496130701744997784170749219886920162926073055429600556916207115922591885560459377595987561883247856411701837255298669919022342899882735861256106561336656283138775372447243957395656438427167959508605410088436022866513322229163152467978739585479761216897588994361238897086773174160289240362415862430082287040013463936139876301116401853712305161119774138451258094893004467437454282048629956388881396044573947490002281467660518114272931116929754051262630368381449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "21800994953199647571188835784914777801452894591945452460076181419285172537575816053531128359500705284289630057942776412233009737301729227574479372232339584941640757570477702913613795852592951858227368018431231110204249334947197246630993707433777880785319885108087882405595303671181893446670758025904516475967252414531148864153914832313826218711651909849968806627900754695355851210203005703674916458455992804692045555023682725292669736663864454596952867373215083442909353012136602852908649542788308577311422276391963335053970715817042093187089737196079945047959266706794819487663483817111460949273043807975961955724917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "20277989842486295592903302641696572116798366493568566627671640391524561062298941593744706704076407298769511301714394834206348350044345091765920460336068307119845202831798456272601925046951214868174984808348806142298498150316174185014665144872768501400111686491032267197376283620857183875850217515839777770870446446513230420521738750504592831738773283150195779862169721840931510900709648509753964588492457847600530878876006760986418002800542371579741305223975679339830414831621442695975376032593558319813617263624579209142127911217274027488361677783612516593026105796981061340529588141316644829576921419064206056838839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "23341530013554293919431224273426704251239945264856672278065602175929175371518699866486154579388340729276456219045327602039124392082655088050607607056812965369456713218997581841692410060126043302147947643406210508540685939894549112277468410293509603449333510952769134511227582008398276426685605360777372738529582540607669753321119641366859282337421133145733980724491405996810144581092564974293509393263027454958317771367567879883402753326920082585904467210206413490557216092018505849164257474141656948149464473278535220094876416649987811671490792438993110301788662979948823802288432343520405990794506403758037802019787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "25690003760544978414264688741477346695205295124147890003653977971018121832777197035705357042478869137093968524893626018230147475110365196748247550835015554495710646102839928192313991561473985045068626071215274056672919696483406255563796361232174912399406087754895890469867529764834037909177659930286809602496150317760973120626204401825613356983682095090476787670592542467119669186085341189284809271421781689044895644534443920464905979347071733679122533256272021051632273872119398730379820761577041417275102975411802664609719901682150426490760080532321195554431182509076779276097756698545702416647852279600633900913019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22001828040663263868296822138972589836383284137299583149388557928767290660381714650947272665590736723834553222569210647883093509005365177313716013598177584822355586872963565145924660597872758715932731423870110705401896708831723200103294996489592912515687458117024982291123259779411365878989862809189413450168856795766047827612797944218036215198293765511607122060819056769588804872923469529038529035042226589244069247382408920664197417227208245547281267150971936659129376044524942346415413467454665242151524530591788763023371877435189579862179672843502544144121640988849624260845514510553234191908089643409591221842389", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "26934857381024916482929401423032877427394072779084827704132423193856031249354683773613673305219206615077026650087466556319135723901831751185554136446607026341700679588088129039794709471349237675674896740269384227488556578801010249379784869519064930824260705291196288710809452365917317442261244232216480600252816302090923292623875191075875813965836043435074512577611535325940456663145301454960374248846583178030733590864190626710563367118975677178191940014448811450490433066824312961511511498532775283878119780524822211185037887345046498042210222558207372057703474155121672688642377779892901450844698391257449872956651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22289542931873785975151386381488602790337551451175351326063585834757773278729030727814321330132174056908418234097050090435784401113057846334527477015436279188369001687875485176177112051502795824571091501332969929933906464251688781650352880277346358792727188129751578420343518219703366037375488275904168349776344256694380392888911063388113152864177592790395560141457571953000526985996137453062813336133715710535464324993901634596177016254230335742149054790376091154437922799459679948877562438598101584977257924509249760558784304732977913104359588742387361768380158963043550855927491657067508134163580840436137628432833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "28642849757806405873963757548474594404847052152166739660538596600802787252849551975719658653217875860172767775829995527601050356345048190128930786016943759531940295909115922218420447822947955994473239901223321906300568906378276394511144817247781639393598638767294465808868151140749620348189468490194666082259832915210109804855426779748539630901597494084619713964525357682150582551756483577380300058969559060102991187913477753998404525330264385504301497754115696952107530829164514941892042846980473809144354297052412335613273171985714068492722932179177592597655667373273160814817724445997573669973314012315687709580677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "20205610513182948045418841130485460312085971256686521752144571080190866904295235861335048064083619825243112295607634828342385046077126789680545876522473538406448376656288343468655563478856816783923303569847250491906033891537371537760762702190222411577007318827615657853601622061455858640204165826701409898357843069281447787641966535164609029345936423321796396141032322322797982301911765879989906659725425950367434205986085119914631293451386492188432497091253383500623462407896227608248476598933787202048399604466646605426809653912415859763289657015885694152540474132741093356306257616361787582310331144690610020650373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = SK, O = NSA of the Slovak Republic, OU = Department of CAs Operation, CN = CSCA Slovakia, serialNumber = 3", + "modulus": "22500074227709572322559681315844436041191064450813210617494644586777356921421038674400263692477205341130122125113137688672588893162062439533916241668243630632975737949943815538620579879384867595367006977970671639227009258454760500412491616427355416659638343373801332411428245442564768171326311478967427098047549126079783376678257010802667031714161698633274632516540372347336640563714337395614063347533357283075583773046618770679314346947615349879380819778713655985099569784597267365016073378469893709164556301141228717504001102126237551625676503148133357426137031361027198408192475081882962476228577785159153469711493", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "24732075376857290109950517848596065707208722903471821974188212024920369963488635257943327622323693104490297166752473175142539678970360883971173298749775420032738877446403855281073282118940208439190831126371232999585900074782656736601418234235227807243728291861705790433384822160914907673497612546851617822462291710781173591256473032838470895491064442610384394693798365194523203825162247683958613283034692597150347763754753375648607620845464245851428363494661814638927969440287106958571072016736731847973892523157430740304000284921297850233148088546346239526679595576763332067845202268221306886428196243825140189613981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "23761158434066355689345596822316381879187718283651416373627582504924590218409460590882614435989434811411401319266562390140167803721557502380103356629772456006133394076221844218958389619686589861752658550534585122314311824981648870311143249274450952170423766055999244391290018122417452533063045591708689963988570458824819710704606060694718481473868579523728244976488871398290041184118442096765123865409498075272975649399772407723427404233226186086628143980077406474054531556357920354288493587050405873491217878529887222143354478646416735912980752256629963551983732137269478389028116546986060847649420474843438934126231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "27201936462087431493060960981739909132754560247294871475377286511525387726170413199981244953808600138949176045510834412669033178310581920625255477530283886783892185292404985405433205708884476132195173393417502131092744135313046020408281792527052709531351821298907090296141150783841922885036557510889803548984232831812949400656100135379152341179176247224922036177177520447497638733405552185263457143011122071721104216839300824490727683704147986291460123957001940382593610545157593289780225412037044646126115115689842805543904149800976491810465053230401766426993443826470310260020739147254000968848073520359447875752767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24400163807122029187292643501267441", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23989239525151634452941900558188235", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28969057498566377574514075878655701722003431554850751721597700683745911604628214840151606297904098140191779650240842082793227870406403234934806199034244949930795651900256722558130164062840961405684708607179203591713581801648053553396040569532981990290181731994894695125361686937519518527484865790694877609259402540732677616378469154182914031518916982765276833650535290685787985888067348333309742813316485475415516168740869506786083981290436767555591584643587860676699034957209787554790140023346169888560776228718838455191214281505231372993930146459058850482776751773101991411948898468310375053652896187303908587392511", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23699151389403073708397673407179227033980273520957202708264372797833444208444666206670032419953582465963515310034583334862093172679698882736217912486968639958926109123472360149008991702747282609194301820806522177621495547512665513047228769417867651129403448839614987931017557939431651250694592953768739948941990638903715021532023569624359623505870235090674836032264309910313652902555541589443941559390830035759637728268108052233522556772531585702228155861916990249890630494539486894692870628548062790700522048092122020445390431526289840107420788655795991826311838313664108518571075338430192330110346138931231251353049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22462928805470721581715154549334724986723724739892640493808639715952225342627898275505148353507527297464161717716701894805314989940503589187086132694643766895630373815150339599638250479555919828194049582995752020024850620253703111380059239271506995240372914524669698897639255618803052866889452717110282461684625978905248190020820924382217094505400282549130687569354961356728830986292789208293412740234246755202898193060639650428820853880270209340849597615364548173817299555258644034287885601297710022643851937507078226318549051067393993383117469448762911070944034732086302642062797124680267900347694231785616646524067", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24390515499241729867219885646749105920501011822844100634954732983094786101558307384674104421375349223645603280400167841975534265064455867096299321659104773780524756350868087099240846979470643106351328011814078124313878861902830276555808834439991573232252820315252484318525715950596708940458458261410519828071615147888047247695870865768625775170336815185741886884771743064790035838276662074962270532863279602723777935369663328062843330357484706332256933784668965430575390286928548397925591910892310981121247344587541133483206917510332558828063961942885909842729316615472300475995646618012694598655054566151728149146653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "32179587699317447687919079735869541396406919362642535591271400596066840955320015684362258248499097517206382534519049860103270792803178976314562943209930380534435370100893653863121478708605559858720077484168838332648450672880862995090309932767116928747995195476934012474392828053483822960790628852872826030758498885247065373661308499145495436931138766967279897275599663332805609421732965223729736653490482540806624837054773222296491379790293816618596185647216029873906567805525749952767886964686564521381971923916578510559012445461404915306838256696583886392219084392737810862234202844273571619128680112347849630487727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25894738478877803684620771091127723095374682295059418063991700696925065414363078043669972848093546512759307087670992240828232412352445013571255500908073107642595359160667885642111845496170227713218744749886604772330290671134591691001095609904221668492671309641476925438926069893663999712995178409548527587894669194734630941402991066326975190454812629164445615535471693645808052704777025641696257175740124560259923758404191510641221538532577623415030019958731419273641173674507774438102581699436784304745381353820050270391096382886260202023953881697712023430178733093114445908590567221997994946265371449005438986674169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22777779373708386246986099633658175513332958412019119608087798731676499375566957608066347923383683705142488255436903080310794078969562811501719252687803730046495323635191494346905923378097359618434369053454891597862669249668039113387432228515736027628120010349368730015890523306827330902867264927969391564280355278466777250710015795342526219431547677392260585616726895237800981608763040045958124451077676554119218606734711525631512297082148944767127270022469086999551197710822600647830809441415956068309731836630346906805296824608455033711375253185449416743562600555641807387950124711256155608130424361085502163649119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4735858547128659325795382927256473863413295029446449228360866892747172412767865966943373149066866913686694632783953757990560077225201358653120981399913594142778511138967855943448836244613375221557235290588251440314050339281987414865388498657457311854107804890597993266349703916796146427118864491129814540931534985731282788315422589371472924271400779401583675135791663148879140232817687612966276749216250192381555314832207985365143452361550756596620491183628441359788175650019751091079879260218337651441286812795148585576238878998744472157689977496771912301805420033589810278149068693367289582909130441343256742894631011491801657362818794929005494261467100662982489913061471003445762965942607803972293846008312487602723617353829014489875072518644106760783276654306820622162448153243295971037029814139305736551947511661387284216137377295812501947858786548913499671732169969448971621012576856046788770539594451065867184207245807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4422593399551865888578580892129116644003627563658506395133781329007220984739571446248860417741781414420132460526986837908643081806578763401695197166326733765099132242056138738019501960222145805476379508270607005768333144052412789271771570471051832150397845299548251281731634099640219998601128930661382190912423795567443901825130417485690858194318024319799087993445873514101855190903062215021712616341383819406957447961397763490367335813077524916342708127152396795299254183812419988085363567771563317040027688868952808937527269058695197308230210988968111940716889865990468029456477202146553517035563088277528184357560480604538058568407417327612896954275524075319402292679721609394217544204132095023976535413277833800826746423339888264875232428669978670000221723443933136927105361220361861628979596075664442846034089675345746862183487714896436259969219378751540581065052888723921951665288448854496455499295511500717433141562213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3916089154498344907767866811516012855707719269977319991158036224733584800524199229738197584477811681059677864306489555078240143043767774961802706501411403908594945092184393678149350842274089312999536922619795382510124005551897274096513094257215186564247827958640112223968740741518402127971001085340871603989368543056369226223542564035119282096603927206955941465639666284041224353376237191540117489179193386343440738257745250803934718287931732454559660601600169686086231799118641779425782643505537675416829980101981592936978362209601242952943812181127160026285350853468506960106323649629363227643385894830635361102689020343033955433494958401343839869132165449160651964934032942428570355001840816962675243503546856572715267510815981196226097999812208013164029544561495741929968051507628983031307621247255082762743267031525822583851453715178571103457437964653927027032216512460720290888607287247556863513549564027090326059308841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4198013322115237626042651487776025038434206405066467541720488923768045541053310323253698904687413100970861300757320520335744975328424859798257564038509897858318180717406831936254001570537836449058473604335135665724936511065626172901941017174222618711410277723587291199404893126949944215648263234291459335095679853954239150710563696098495422927657799688112947729604461197511461345399764409141650855329772835854105647377420521952447469339816768454159956407432941377806910682491070167400948151769316117141283972987792974791617461045523384591495556791086500626495267138240989273973226258097362564153733964896649354739548483999658854324489402700181851144357252614629094628403891936968829091951048001165854513017098120858537976737657001180572037574785573201171338645021888715670834755292612131167871646606868079474813022319787176947499520793159044039967219653958818037140693578116350601293090346925692391011834993681915609560147611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5181624699985246402706270837638983906949549923124486075451506382657320779373090153291562698378602261503260052485126091995153619525311975117075025695365438250862394216131512211934870476261732756167180998212500672986472626734708448248128440664197266907285425119052437869155825468174714261304666132591156180046429886681686478315071472917280204461969062327643318472272082767261830520231407704321581050800580630143767319007672624166194288165592272945356130768551505576947982511964695046490040369940321910441977703565055797557401477955441170542726510615125487043308791349995605679042241261044461074753595328501383062122734783333583716110013862439308564573613064721888649112894215391067362223536456090131818854346958718303881423968905157968671436936077919202815190306703698942289230517522878232883841155584548031090416358528790471239874150852604253627884103401308242939557263884077562611774390764922776412525810568866373131893468743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4222399840906085889407525161597781234215532153486137627940421196867019657472165209354507782871934317003143687611235375206681468393695645330585018286713320903065172232403720829645476521442663214816656262332250911855834386061093047534194222180278741331029285520838138900047741278164858999212581199425914619014881995721885566569034045835181044202639661065979989708447271359763935729608296847333993560936620750408160719455546660404579195827332862007681782285638513542852104599441799899737489654519471481465260362881219627582714044544298073154911960332225698103741239785171136543020674511529986632834569684102525220942451900094806868587787502120023940663673612140984824566316759879985641249910749130238955685899248121318372678046915881999431313750972688375809734156660598371963919905939933835343445709102920086904215988009290848633109475846993634389401038442232411130907709480485367438640472466016249500241629975702026817156284813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5262359134379557901415230974326649534745275595041394193825276692535779198355292422985624822696252630621171819120577936708851036576602546250288901575143231808740229632147457668708909350936883629974909623522164855971711331816293970633458228000711564514355557494599536044894749057610250043074163795211291884671706328658279057869065185190235160702110629254350592399759670586299571005549031347229007808278607537692763469702013042088180043319548763316942401882179825360218468784961761600724640158977553887794998413372602357900924142955031862994607796746319627627241918840541548173011759425510529939753498636876943406585053428055437443323039301921853581355780143122829169801782435841881853682381591866337880371124747596120870882213977540931576624819157501005193813311928993930313576289227553554683432618805440769921973247838817557109256948730681068150149526575985066021753822184661206442440335229736311218120847813518772394104011159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4252647007424846618322689472143974409494141188449770186628078896228819775571665552738706906150474411587238259032712109369919563383817317593169313793731712832821285016751938522416327934145509068550863126814273747121922464379447739829115907334155679729747870061617738110615110741125974722990675329863579775225590928101137660333264544179146193873572655150052096201871334740471901883460448848472686520865523738128617104122953875445492561312234687498841671080429327517435943673645708036126717981786393747162105233281792676304505469505240436952644189515827946674970158025339699260575916293490708735736921781905807251248906791725661893196598469402330797592360364540804680319118616844738798676524794520457717091561939203524692127943574881215913370895713733457571909778819729075531397737236643252161177285905369512499734893730469648421657843300700870830799814321110092240902386266038491299246072002824634316576918586122004340794748149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4412754931493016753029450924418287685919289387765644226767803027738545050504418152840834918475926833998236870766544847879520054157537579787994313309563961786164222514276223935454706304733288185143842053259155745357041459007544699013368049813985763387151721155017433561676185435280421300740076792067664509612476923111718796687980351633257792718183426931943670718661889137169505616766092487026863329091872979387426448397398178020887612314253366837650796254526824128712206506847807319094064386736843858108731123920230342440956848560311794390597241425234732881783662019609318279105889639983400139927224146322060125401673309601456597762086626676035255212321051725470738409318116149631532950103717653409686098520772539185005987761967155079544264764098421153008913817608537037022545901803708319789376899826563098489479552645981417177937799942017100983065182565157796387478925001767082511688196423406359444923773864298184817211093903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4186364535115026706617067734563499615018362539166517570638353669282856713114960013387564277093712414970155067688409693457509438758479769875730423005970506072416178929285779171679902998403737430707860940685896831471554839544632239803780570664633528407063834778023283031538954979892484368791124854857668738266864863116006356151593094578868121867524349497317951327305729083308726849963230814285065504028624423385288544863513427441248153196078092803892026813821607995966877433608021821222910138708330238447599001696771370180257977739937328878143520274785192744340497154265766481723171716083975158655888666531215118679018391508254140124432259197569985450361439700373185197059237834359439247205400915225499040078343824562544995582476379543258858420988535097806735660445506732223860102369016446779120708028366760095941385897752965623578862000744206121746657619753635697854183518258091791505639658651967988268933440549284001724489083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3744389085149790159571976867509626653077030693386733928369074447554513212644820815954478882035485426280332874479972662966037741791007948751195636771137643425395144884787340456400559279988784138457135714436947431501880357830100765924077055936391636030188612904107101892045078401483910562628577092750664469345636618303545608594308541065777644630097668888745047764940486729536387145368866373114838664532928735903192176029465326868435740820246231108152324226195444758433997194622961508717550782794245688980069002110211760465086150227435130028090703969752664652023610134759430710815080631113553741836537887544642077599538517105648649975738891196183858349687433844443256619253126545371108267378558469786428528250983611436923660584363250468328624530488219961648958304030995135048141723185548465119790165488042636736333501741097637876811494761746324958569282212478059350856287797319773113507913151357331388388187392680409781931070891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4763796432487803536730178011532793173574237872804452664204065729967488669909050677681499570573339353035473027521172920287872288883819466258158721352783158985504625145264927612405413343673099585162956941191950828291363540079122749206674421044527687758059257771388704909003320557316209605458068379128346932154789387515601411451784993185453352539928940335292614336828567635732987090480082333654604881014152259218609905029812227718078532327854836221033197772554937007406400219669042355589688676744701569645923141267359348608277821110486021288766363672942740560059983909852086171169932503760503702797261581941290451082862875132524338894109676982222712234242414088838198649924737266074106231759015692005658626735719952118121129917536180417928910364824620646884962805144680773058258304031809268092079986420816757717124698650676361673786980962936900583435824170881030106378796051221125135107113984711084839881563108494180528907937239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21504593032761283664022038227013408", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24908167914944131764559472505355282892148592208942892752666762552509797164321811900635657435394378379242092088502964024313339342608861075211234276986281748128227609643176374366181229796055776549725071818226995983291612942478815658944909674848392754237274014934641475777225904023936771645610309861692710958934994508336141305609259882218379278284438256904467760373004457145030562568703658672075007186456193112299247653413678341341187747954846900192241176164559967708475653522249252388611723063569642227972605314686525043238069537875473360044128068478842929929461071014794297971377398792715226787357228398757901570462653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26878884802172387431493705364157461152713732961977796151804742058799568177970498484207063175442038547976284479576524101728306876130099093862188715934541524239743282861189827568066633912235818058783904775981672737922163298516288040664945770309573235795901281534924312901235283453543379710301531156511433182772954321103196590034929384782787452325824049223491831046008860233174199801953006371561350280433597029491727672385046773130110667154279853154548462497455103867770861128755506397707945601349690141963570175923213708515935299676848025882933879225567910963375142011477717635628792589831314895001786074398598982905653", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26433095086059824813575264797145567012190079867678963648107953691032690644544525280648542973582131292513440410425412794156051394630039478296586381267554746837463247425618615409740516892264541170299554906816183744764526628564199187801970166458769577778162767755918066947513223535867755908206703583769733298544976569091293852890033150130481243905600816470471983272364242158309365933750931591656926225336614207051428837558000265251395144412127767689670661305244404534218637363660556152071510239067824227598560536229601061481694292233987647050224141629334509267437649271214311105768839912649999551103904503031112447879163", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "19748809949617489244185033480021938454433441672884722839277584819264957499823071590556298932943250836616422149159756559192634768861275873233097567895785404269205695061814938609573578818637460222441034949050888981707544469757599032849916236610013334318039071752567314443831112872098741559075041686801596448912568519711243972313682939203910640492000842064228232013338372094653968486071366553125539241485752865996960071759980158205676210115690161473335126201451617788623830457002404729154353623333911605606062160883505652185562296654072800404352755315807827927633069311500133281129793467197155190426499742025312818989017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23661492067780256460815789469361287372379871993578338460956376230428522431434752998083080328261747153578185983628043172114236024858644495912033384824425638952484102644754631913017079508412523160479211103236708912221604731814868498440610386108864318028933082747246014332759355148624337245633961020210931524124185563376803551666572040095190961385864240701294969951836357274631156954421809711126303020558781629748742608559609912971035878996538988819749544065339377832939727502319805213216598402516349098912008671690764668518182150404939467935487327963073726775088852010280768456343846665201656911083349114663614666536227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "20515549192801830888619354728378681074818090691293387625867831516639635107997615206478811469620636480319337821385223259770819937490529728692340951572229806474003159511356262243929963076269742229374075754760191874691719095464524339442569232903250147561631675003466013869580923063431842528527827841665919060776375232624962979407905327383310147054989238012910833010569740555069642065114753636946406275642644266355509736315886019796984279626477260412857175977406976313668386133495693287857915727287501237629237875714694192562779956904009957005107429983807116713566521471153198579428887880240166886851634922253708810628499", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25372210294165843205935005583479275000087944718441156358716154737160975225718261585526876139719642634411014544226022863915897659036087925759627299936797204852302067230981648229615529417435810175841849732757655143813273712497969989998958071721062580395212457767060941146350462867068319110043595122860388738424602332990203738603926678411010179779211469850604215355508451699935276758557190254609685188743446755929779356637972259390535707374652222474261719043848397211226078609629560783545508908793444185929803076691107281683343264999726709566055501069589580410675394753910370410136829672162125491279659369242954642594727", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23688309948188957844689331670777390365211486138228073663579110599493523323608836669853904007966642127496641131703121482189718057349052604442596956472398318444368369046127161689009850852422641638307377232804213033281308934525789637552891225524484148144544325472847561386777848486518814119254651475204934109017476171020057631500441353899230600117976302950058069623365694062703122343223457499588005554947768180324449632777605547965639491408857189375668631211230110322764207006520290999223182653954937540610470272482285322888024267286199034595364035362223543084619577768691061360399773202494250082571391225040117960265903", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26615579002892241337222439015961496848753951220946506846866652455045644968298491553054074183874445131261443641775295592949620154664863659070293080380202461707390538175839438112041075518732815481631184804107540154743705960867420422559979666468332347603270614071698328466517419719144597379300458649588485800388723267654967889442323171435224415743151960561486603212107947744941926899926527156334143577868885993873364946311913905474330209401050876049323228067881135522854901080474707691731857337609204053007793015952261083052759725565709026060137794302277131142827509187665300067588876364559567234092237899357752827068279", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25579139793163969205312305472965406823768703220150902793406917184874028044641121448122423585508740303819401600066809199844430432702584948917420547883566732112001354395823265378442652724046646318678292613183651046824373476556721183661351133062350787075541151889554472594213407528610640629243449875017708907615848081901809527192072025680528797844973980789182799851874243285926459443935620709536531861758506696564785315160837426067298270817339341635553846031712323967360568966145675491485763511688428896310134175645044243469469379179503365306908367691096494354299147291734060582501310430882972487701889767013173323884891", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26258157766823206500548196556183579130820113884047815875403941526762549642334750514764727216687587129535289637326308717364150463214529093250179892889521751412985771638104033036051860849875127194106312117800702313353632049313650626337597726084780950734917772875241579818736172789803875794134038520110762100399619525237609844523324056969018100580120621174297305909953408517316015748541773913418748129675472650059365152656009613119210203633727922456588722906790739337269642002879362211601690830630173439284093902841440358676370334159339300931360266709290768591658176683518956596029233180539477605899243191211783128903091", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23738223961282258839084922074657068369771308690075629981612975791282849557315480260489856846855122987553152856107587543601798091480326597203102778430922327322314906356707596312345674441612160586647226783087946963296483058173939496126482574314579646466920074971341632881565996563304380314641804887331061205323666626472401195445402269057806554539625775606894900541992080884049520633615978994409855750272929055902610300946384250331119191439035060260217293792782456830236567992356888781353958857757954382501434823607786868297321428277485671775395302012535814250110808384322680761026495210098386574733033208248224446016743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24286391018681117563850695333214745794829868027545301939751317451486479271620529073073457812637919152552275818480550966600194856773034254225074563293619059509589393902999712758150260082164499386217133350501091841013621744562061135606696262239305996733077916348557460685857594666751469565319562185578623126286146024520321742596578439232109523861054038072185735659911090601618961313944312488204790577903442733423921707490328967076770524042719196188155470288565918423642059129444659410377031469963647991011704048278024917562149086599953766411175626453392075590105923350039093624477195409739724852045970809403381855543977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27892150410998291747994210872017927787652850770160770878639835589086549705432381816347263208522848525411913151843449279784260881293116902904761190003993282599132834046297554321208813322206140907595384593038710983122401611182962326337856376940150118978201920439451564902998862546913530234924554737743006224133654927364912076198620157202762019969349101433478249676922815454063580308271964834353738415366941073271900315625957293664496837423428326257069817962595239900891145085879254289155568302279750702668089216879666416338783439216580826313838434403355181573018649600675335101910450567853927549691349531938650148741353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "24345960581833849231835926554502387786394864687746162365805318556857456995874375754318118503957481039884194322582666142969952065581500741006292303086698179181269474890248321370415180296262153298382471308733101075615849806915917506182934940168272438664294717718269911015536637803679646972809333570564582419452379577376730302835178468692351750472907214998110179771864208495203682480283705192746729696106394912403396615206482011352926549305339031904686529436499904471953744804902524738047602099845099210039150064539112829929338850667970014879384396990456445845310799062542541769769728532493639622246026392997263526514419", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24094474480636374511995138993747389487981850113094503774921235703586438650738891481176558163323002635232181177828576802825447917719826482702674792245185663679559104387366118575824716697081712148887854995150452408254561192048121662991696910489340139982524000161362427547030690831194837746703392798451843443969506066598720257885712475670699328001409401078671216090446805739694139348534938277555912740005012238075383767623720720794648745589083078003402338107511254627728016482223962391495214409478697535321509123170696971385404572808917567757743438783844597262070925222200640940629876694073659430324263012849264736295797", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24528708499235525109192044027492941626862656772312937524146997713200073743037132352352444888861400409063197923449355264994007126552630175407584092788729911242627284935404423232657259832133776244353802478944878681184289338744134458802921751899308127122540667900297007621390116644114042071953414582028030804766144505404879632406822135998415407786054180427273212148508452530256126609952965011263369512851658653065282453035865994635158544389767307940096181539127470984930601484481697591593601723725781412736112132021917297542868310939654783833882657388031984582922805156811980497392571426215148308542692120407772724550679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29956274064866639023441130741223747041827533212640130762819403083659452582684927202638897047681390968947490181451184164434692140892840790276248074717946691694695753627658146366438633418364938119860331727934786103289431634469741501048956480179682933815024262289133512859747343956578875570840897722691249008461477966519726009270317305658702786439539243435625416638713203610395594768778683100234539550406498711643502595787269027751613615400953416061499910703328141942299352743756106239758814070145642336551784214891261209493162264566505467576680050516157127355120947627162844304851891087498805565351853647540337470167901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22468545343985277905995751925925846384846397156208028181660344019551720773110915333420916984363941257678742392209728524851961259969526630417757264746855556850311407070081121557820457453490203928171594701294839303284714706767257586369746190634799397235592415519414815578427169173531547842270246573441600311973568452968207825425003733928169889514243658336856430206599210043788395808810285907738657626657735030009266332052514440848361865724979790917075265610602433831470384746095079099410909363143635293262096212853340733689973716595580291554427332483447940708867587040820699166324322675283236856943349006637465130781151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23321528162392566205849460041223985168095322082174091925719026486999519641185857396826157310732047071770214493544033050336626129301017332771604665055380027837569260281713552243442900001262689719652747635879444434615965582950376196578162063031800467984747183542376035606523069428026020712788204159632550514356883221485412967672923388858501188773675469218107894104747875082600415237094918222944455663630484931317282809716776968972132673393343073355687757501769689814182615233742419086771193336793025931259129805755925406593950715025386284555051028777581930826300215980453846714655506651819412503051346060080866327299223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21289872984942658397221274110157988699920258876996663395242761811894361730273082699845438944456226793603838380670994917090465773639256914731724102116120236496333786779110087453409204175806572675747236690614581562347928234377586456347256713675607482552479627989102114633440166139968953450204048494752439184227413360345645536462834561588388871521693972885846818019275386442702607134663375440369561415412803620252870344905351868634168895053523707731778900828868879639417934355415933890624906002140196753976044132042926433054302262146495099349883117727305434036917736987490821557543840102013627348083222507560142894248441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21339517475614799502790368148575076446627646243415375124675092936297746528621781557402274054066687756614242015091436518213293338066732701928226073392646093579782411607619197494639357026339214998689271236003684962045881938139163295789712403202543197116631205681490105534505500968241291905653304132562198755145327594338702249385768523492684809972529622436548915326473987096024481582408172021661683781766806326949204049685275074830402813934147808555352828271693039143934418280421831769523033435002022998507017851256302968170259854093660987694602643420393036195511042411587513491771591018445880088485992731542213385882587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21021099634118760328620863545115192719901525404218557020242136937507084835570813296045505918979684294158304053105232704417312162648200120747057348652052612739558276792385796358839426785965840305910426372925346622814574177526103710992434376924747778791719734419901383795620549695359977190530156998549195892427111967066584377769244186023260122833729609626959596411715510400645996244406594359125704811189706664843161625769557685522684507984255591821373351113654753388922234184731557814043797180652153227076656327504816296638386912885266005560091451425659664914704208858537339912907864348132488786636826008319701382868211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21016499684996844774297173441100364767626638952329935651282348852650437260430818035449751916682862868225224670465059421453258681060454423587341613347837154446185233581961853304397125750389831298778734703718459840387414820082683857475313556860522849196165669966801582687967457856317486081124107218607037827679988197136792373376214189255502517189780588359693415740425262275562784022902208701601358312641351449788872842577794255236785511928139751429375143491745387777100265252222133170046113274183817189077193769279108992846119140833385234165702658537483347326506142846510493286858381568216289840867372959179705792459077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20109769896275563726415463662717984695742285812451534490220403559780420339106808029481376054530608306906725172657131370461246932116710947435384972517596435047147390573761451184147894705115132039852909227269761688977402714541150929289833591646513015405297240890705002663350066256486620669018918199676031874296632060523235135414912264356953478540308874804007609583119780229602464956267911757503325606111948653080139855832911106773814356511306759745894949766533323248606155414866641755566317063825622277590560724680382256549548823730049713690011737411332916212867430464948400553108421140984446230823876468306102094262163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22472060773996846735016027628654392662725546425563665894566831057821941617136492997515164589418389533334112028251721508058394075661905115209899372578169973805099774751075647847734098126252943924574294528410222725534117996367142450835431294513809720892069171017416584339768904383370413766124441236787973543721458109988427899051635392342643127083139923637322819536442316388075584560809922459899904861661691117914167529724904012359076137490502625625144209220632286006914894499599164443044967124202862727332810885040207591133855028814836557077665774649185850540726378811257162835359423490383259689934690577797740366366261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28946472970897203922105545473813222206164374837163576402666718449520889669027628747111362693419945693833997367288712970472143516450351162174020750614367587321121898889222322443881117630022738113052061637905323765247137867420902512044159945762165672862016322726904428194249682038377945964572053470497173053861063101734468805301195103658330321311598114953516096558860078055631340872655670726263302908247795087258150719669994275069414675567630342337561136047925072661680748230516723150769102771820305252575818296057116533168856907436215440113107974617196274509514574768844089289145550093852431889465743177014625678430637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22236286110557580107832420340570840930140948500695641519881287660103307111473245577187485281143367036812312614561874043959311091721197345429392402419040374159912873402401661494684050189434015489297259235192757215283860508557602199171194838635352634268997713933305120332812480089905737452864476787227630911693954951843045285972160706121134119459880384677173547832677444018599591038115117878280959233351031537532716080891194018806077349036537474566059303851005511597457484953845851475811937939951028177113362625859030600333990546833371862057506100733664338547619554983644415886732107944072556198779030586538839162070203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19718205271026176977043469202029875211607290888453240589091691343548947975872163974828774090653777479471147437881327472776631010729622868267879417008830650037389693399484143084748825115292261169882609606541394751187469645947924508616353604377908203713123947618404989405042217761682282158529077572095222023981662266813345086727203079910535538853525202491664700552181520387354915085320650913736719823932987063855351696914356769307320488000839887851360915772790292750195182827091524163638079107782812334697084236969589828622685988910671499611879954766455882520195156803256895001513307794060256025112681949801219700902921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27665351917021533094369035800087937833786808558699238194520557356733116713068325177330728150824751583952361612126776340395432390516161772836148989638073067977399328495347158364516322132215968523885401016839431216675871510148951831038667163446854269021669320025896678266519140899302758403638476354814036478893274646076261536032127492953789678097977264415048828639851282439733144810168445742550785025880523822619069846188749561603631693057090164520793205945523743049446707168323698656970008553669563199651629582879819276764914401262003145703549445457755846108935255377001337716425937074009122357830777630705341371770713", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26173521836092442295283791960595620867757139754681337667675514630829967316998850829119505953610564116480101384632308780777680471900487018968392189199689174352565759304813013066209656784322131518198044514996624906274703081314229795184274290107536664036904951380454900399639458429807109701818906434403399472114542010260766462162588952978484537156161863812225888489168315402685480876474510343653826405781642010432547638965798553945763376362550731916505021463378755063631296418328782709082874791593120952979199566913561201571548921029347403839629405860942794567299519148402066864966536186660722328024213207777763988381811", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24008400680459175830157956272517000364695294890983487262323882478584863423936352596851450178161026964045383167816823705290214677375477988966724657788181019363794875747412400193421852541192827707824554294302046841095614932806078705892995872444099513797651979334420518822043458374847199091218995389689128566380125455465935773663120944530481845037894147668062545200210699136712586507953384911546664105810763500716601945534278619958716950795855946394222980378112688591517855225310848415314943134447146618981366896724663009762380241634825973639994133188564933754986041733808194209107077649838282781750745673441228295824653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24634265059184889932927901222765835804561632622371283810004822838898175125413929258776137146496750933671423182328747951856243044977444708785588801136214410057525580371567309372244579119584679059816312494571422216043348197039770801338074150882959345843578170721963582394288729947415154890835525251833915026719652470546853474506579381135247044223444016147674406647888008921068333136327631823288667371393360681333669195577606073500825166558622875191986778424503879252883026279731487602035803471831217487437200667646443931324414551765146673360406153515798363203098833389093226710890738466231674665284093212744494399069921", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24880706090980672168038205614019644643437243705533051164962661397991267852136522552804998565954932093074746649156348762675587612933789074135551122329676714361171210262401885270434539473407274734114192489693662938570750201721503657220280238882283116247818431348607385480138619969356764357624906386993864725432105957272829461246486387973899241695660978611279040986562550572029122063608544514540530745503450986878554785505344893007642901588692508748566206851871966581856076596668722454594349259614079121611811948816679772274273016387047027444235081306155799571078089532630908177373115805567055946543232672822835186784163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25465606681274720857593567576801409042495793716415149082327893293665419488542028951503572553417814305838399482407454655544735958495689219387270210292428024225736910934809885725777803155244058811798859508947829359431067320365644142626061283631332996542697862981975450994026145860234922195094405518069827569552415071369473393769205636443714747106730232004991907828327138518549156723810101031762390105350080923221093738556653562709173409337125021644212815780406940706181410418965099015858929616875889390244711280135901143762690256884152502194475467530396707520708572720695065473089130508576140883393268720746832039737079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25735938711439461186345199536595771829379598618341489208476699900736940624137612414083996500625203828407152163407848187823744603381480841584756670788205803002492434384660618769774180484739101424475928421467984448194899198534783761294092372618789883065713199927657056052761426617613513058826666906614593464541930783805521183324433977054826039285438110522115859279626452026569663505093958091207971119765528235354734136327201604905244067360001593185188546829825740088902548883138027529014460178693180090954842255789916677154690939788192380035011849420400259162083042551624187657089904502183509498929646082133971234952859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23301911748510074898481914387941975958130139541633545352458187923794597080860481597968425192834209518728244540867936713916770384094089441431039290672717837079275850402843678095351744939963058523983724593416338251891135744909651583347408838258983114618314450265890321512783965195477472556923661805970627426509009409537088930397052206703022738281528860288938612767503338179032587098847764463531088075320995689797474647199106568300379072495448897652621466742743474193067976737582504294303027186163220867808070547354633521482184973641851128881579991812605910151567545982629351229272615157635442879456738564458418355262381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29935175968883962139279152661649449013753745784618094989012612465871242783310661984684449488503160747521772896228050449861935481510173973663845954727790182580123995809388782276928934077446502733660539158040413990552752552774143263396179134362248835099538540548087133932205474646138916421811639914906621948922515571567825738440724141651928671026325515052324865876179135143998602996010114024041352274425449103224880250708096401347555484472636803998679228348500669243028436461131355617419219757705280623869100269277311957639721742972410891337955820642979814315213503251416285825851937638958891201002639637020206574207789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24546665795039669519052045656968376417835299496040852047077403526685908948312950662913950523514161588581947408787503226113551360204685562990845770966463718316922410845129994726715045855589419200132283472379299512142150810738524954315370104155291833419045192937386597728819234605146416508966045022992377580985088250483834173937304079380088409856222249944829525731090052236713716533872927415093776345000778381919154049299723755367180824045494320019183762606381598611625799934363458437307707824311703362811133651704724992527686832862140552380117184809967038187979129777226713791208006922037296419945208164941991958205313", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23932373639878059275099365670215765110574298420568521338010969542592996966569086054548151720735394730555082138514214618754951752891998714168699468035021892169762022551639640250349938417816152578194049443797874447819057990550213648827479266577330003862311237367478209302038184069677421479956285710008134715689097927600537226488014506117265072468964457026865519781848192406712636697874964959300296602342571740456834753455166626468643140486191403578120421883984361884377276333504614768121241812479943425247042160800120302095496418255846033805354050143683737768330513024163177866314438833348238973874022894180637066462399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27882255204386457351687313658043527078788289252707002497504360821574840059694248144301329314626197595998010361416083267371818760648497902122016862407833927171254333100211386215254134107180470802443291590929755906127537594046914354922317493095621610126974855277163324307505622538838178232329155757817951703301826944845688938636385322475471500457807573784183940905197849196268528504057538899128637843631270020980282823719278198984139976846918024318160823247063407011387335661226933825187316619289055428704320172655802020916920042029806431782271268693941496355730162757721318471504453396137944321633096190979574139557243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19704518488428275559097599381996417598091229803775122160348165833508059877556851017737150917898541668080833819225146051015454765048607078591740897542747324585773537505337153931777041360854121781197660370362304109358710975184037770348833488347550466158709336065475351087556956880233149352607661751825516944535932412220750583412371455692757727376148353616193375949861387702792867675419890165922551490837224002615475539749726283971704325288051778021758243690908992222339419886574978786543340023244540526845545257757685484221769468016281858748078226943546155170910985840208469621144223881249303859917667803150721582290953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22318200676955674853556551707746551206473053198036426251561506407056765017127544919393413963741074087327414961967125947711138603070148296271497262257739557118545632551293774139316132480552093117739677709200102400277071850252434857534716377462221675588951374640441529259805677872951861029689623055367718348409318009639064686937008985236991337333125798934676038987375171301061824236744422953823292633882550458112742014991083527998446552829209259834571018516987456134056137801130928770831073127846618596222232240616841022149915308649190857740040977630297969706799194382665198034231843199142042536531540134214753805539029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25645093479093671831278216138103375114336499329625016451356744792819950307403957361712902087740141131241984354675300451374165430362161321766665556485667615325963731750354959484507047045020357263457008470625429483057999121493029768205531561096886200501007735126646434287500397095213152172828577019902826786074565313530667044475828862450382050944775298945514953621923685189282127376020308809186025179421057000140552977729725874496324625243738179800990332036015729228954153106437078186938698692827607308227250686944692881843730710279698354186164472625463125971674788857070930326113512077639428705931618356448145254038319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23875167469466412411502342931291140977701303247674905731601389056038144215686621031723370971001450411879346097644801245162207662946093195919714128036827387783833589843194507941787669973645484871716110854670086433290447146523103210377271690645265180945186154683278425115035283203677302502793219505414393688324724356179350518130666202143470252941487706283859621139951093034837576067408127850969269650875446357775651326712330171217964452583869072266585780491147378898179924317927312501481354550801108488561211311992485878028061011937895658964231186962064883860852714650958442244681680114581983405772413526078911656704801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23599940170425654465901538986391047863676076919681493816928699051046055714563493772148532976302508461221969087748866329916313674583841804867391872046563473102090707711518017317365492654995260121962911731032146169976402317043298087676352048536776706264572414898201807897390789095499019149679449520344373207435779066238005117540754738440955798525713435838840899114845547224246739041746664867314632708794368805186500259780467277465953089341815962276132335828017304293605347719517760807575028977514974032924567554931409958960139707073105294361375248947768944143715797471352715390195189862295582245725629210178790094656669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24080521685467042116870191592679430524175520847761571693504912560832573792272068075235108132566966186160155541119034514058989947064648299519753783006251110692294259977511571657372836626411128140108466028248389725371169678769022337342640656663661233290804969923646806324553769622609429084546989247353844953054938877466254617168198704458214083151733596894549763806459913156104262538721559666272576165003171429407172461331793977740799288996885609129745639275227992381869897791141413509666932116730060525964778297446573015549548481965495795100598937145367177723982243133320810773561312141798377612243894216650389796196801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22799276485040191999150519768652328198930892109850963139026219471173572070984926982048967265484370523647039586620058619972148121368206748810316784415645016171603089257523435797416107041420972030563159539100663269852698034727761518339509409059999489747515958620798551097425530349389555816854216911088905458805231675295209508246015754508593776512684998942857082638978116773822682579564864386348080325795108903222462878149617646281544571657350621221000811396370553895817634104611349547381864508205217389218771651312343843897494837510816253844805368119086821638198574510709334657341043448104934584525085750120714207331087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21020984224187548833830775676345865595145731886265924994028811667207060537036010331906956538789494263390895735112680278452290365770601538827208452957976597535584459012454905074289762787784118960061128812114720908129827028682521233630827854348662219574476401360775212251271234229800684612026908956360632220372254486190232164599689477158828157928309393909412563191157454353392218010565214950860361672496697465672083161712471469068624424829342465043616303027398226348055371804562613649845133283250960640431968151613733727176543111710425699416270025858571188515213224207218688704642318357845478097855079227146633270883427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "27991907194162485864813438617646524483718714417667839409692952473074761550189018524624047629817275199403676874264202707093193374715172583535033905144877490155400948546468082040971854891361095368717762827599893867728722768755448499975197552613776939982510752823002420779903014782583939225828139225389727522771375925585709104190296260334091991322169181965880869660344115392451690813921778094945989412695039896267697236946910664291680114867899658032868505831373053005620547730963722874008391025059474421256051208547676320891608668272363472826334727134785074004371025388413339878843138645584319969213351709452755335686753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "29155928099409564352298637430002092861597131466993422833946185051004001249155769907343313924657829835164838194796570984632255523091084584428226561021373851255514720526435013105549597225438488242678264265636111241209904656695810157792796059017950499130828959182440258949588741189282363122641952645592508998509891064167296286468994234607924013938918401043175993903499781071747354751949671068961601373420159911565599488507726409611875999393404582299754691435272497904264359909985285509952760749392310178523102488704707200764819229256394136491321441929063649508436401495861761569645312313857567353997472353130180160747573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "20960174084848525315430842496946904108432408633396387643563741693508999184550292837343745946664909899403021241096151821194944562219353585291507390869433916242419122795057423633955721444055824692796697013334955936064766063820454953886043720844191522382048463615274291361190255402528114372426566997690332043163688337842584301615199177648470704871179587243179677231372098153579238514276725757742019010242682811160562165413015447955099931355547728776790609345670762504035175023189335175824862909949628290678948423185634640487085819453158413318609130249618650951076503710406054903872092631208807667343930977658184647510827", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "18691775576746799880833059348641133034240471998134189576537748675623830240434142696898054842785095835315874627809876607822895038308633302117505433260647420361178224343734081477747771103178658366812739516714270122557956549910018442080962686802387879548546818517902371177906534670008732345933294639458085168832340542863681340773970876972674721330158211919343231915017160463850864478851951720559682953385604249582440852916394213860882149179630672079608882478054573140410756948101753024606122409565347421794013121844535370489570991893486300025571645640966239854033842045315962660204703356539732859714241138288664296287451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "20921603542328968560097228480250377508617319135949465618363388510367062222306800194904792342205795392534591866464803771776760240739872323855826971134339633563901674539574097429431422206390472021863885028658522756385839291543308501020718059039542625007271718214816878641315584898952579643263168954430904128211117667978815398645470073083800693632950044762857677694996720768361155180278336107041634251235188884348147970385742015504802748068307988008867454215040920681206449288624241452077765871341559242545224780638281553984247085567009547731930393429677269325073299651301479821058347444553294494700897856797769106549967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "26555688780350439773123710112300673427273711536327793900278890003511472812716275828215950879266855336293111435191118958815606179478997184919648925538007055439275926002444035458075173296956642190132277678936078800929854483339177949060616652649194665067595691255680652942580318895850090253785319573834011904658545950752603826733610524797263848173297944644933411694983637978927384398369580331935383930927904583488060345261248117319094498202619822436326292030994244379419587608914902785170328761327250292639271628397300262948126122556621972066788935072124049344426046599341292637761745787081355630770421169124648478711677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "22759556527893272604278228221566875424045157153884273275741723868017214110253740574255699325920772531315635683612674490185941513533604520446230311744465055352501888431769132744607048614329662302284789326352815814470557995334075487100949529027737958204565490567605503689486302420701232504142809371226668519393673267174917173578524672886035620172960440844594173509615207650456684566818722471684799430810132229527185302066940053723590339469219953120747149285029315831904543236981714010313740229995724038813419533883218709852497697274176363955482606141495010070211456582338727156681616413396310550243766282065280721599747", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "25559265061241215044189326192325346649183950702227644128401123052800467391933876337192529956502167380200817822354907881029526022172903986499262590924259598403885742676906972047502152576688171800213677370606396495499187174835776433902540238253863789429382845955581272582536874965322264467683943574965709302581059520116826057416745290318927130671419643654604732487165902191743549433442203159453807697956723305881785190144350875338894919205452785671628941912923001550648302444748249712606133711850170436586669720303391083146827397502139255510833836923797745768353827449826718818707106304324608881582825705657709963290693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21911348220931866837829239024065021643495567138343114530174111529718697578825142461481987376971557071471703248434303629473493994524953553428910349219441931285003787709408516408507517573501239339506012301658088815391664734880608115253806274257465666772195122802527263656982731046569833829913285979496490146141725372057351023701820533000284414036134984095291344079360540344200860822336126419027360449236982947109743248954534160469200033101633862925189608754949105466690259359680138598606645081894531256934406060994074680256480371174572793172739871452706098279360618591166548983851557006895893167773660734905581720742283", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22761605723872242058214515555118756910701541826757865221404339794531431746904708863030740986639244324051430555633553988087856469393005181423472207081080910052297042134174616491131679702585470128405904088048716132084655792544668896459761842960327220767936779640563191453995131990689657356137928153279667565157934300061174397627491737018140571852399350434906832948307301329828417237397855822755071298522975039194456962564763634080800698448548575838082337030475359040314221801463803906083862411234874101463100103182686945065715682970614824302207621662833297910446364669099950924180510626558149083324844773856638468157417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23908704234882697859250443195918910292024458962887937957461202862423206736182183622827044417869072555131525944008398036002080174795379707991983873592010893085864164329120095625855914763366248456979714886245398405078117042067714417423616365318557855194895757858305235912996876571450148012560178085718009493726930004358131721154825371687992695748748592974783566958663229682205935269332502325546472061850282407392827802489276976330613934185346265041520424852814216482544298242906045460272569804662039170282436720427867782216510749858761511269217325647580666076358295435797855972380094293329092668313444119831686472523703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23477765196323198444632056438597330823540776970980735712807498555845878524285280613890017199954301615780942571925619328491804922806717167036679444118452766022424253272963122884852399746664649508295699491049808943083592130560618495281483808846709519648710490896003664345384592969188136142744165462603489676247524159822569189192726489033914950285298911258052051804090658850452222569298428227092396291749319961640494298876913979264362549391993255244282250753412180666706296328779923505727268243901639554250876010857672631653112547420531205098122540302977191693855646204511851699511699711130265618842035047747916714213853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27214262610337534199772262904597297938321053829692909691466941192720233653519647061030808157416660388752579879301192434233671923191085574523204217788134427287889337434637333430159091835075544383636078847812694349381180552887694066438090696558810470850741121049195515030735909300381354129327477381844027288253300070213097205950845662770809929743716614630959317318937471533358236961381897267353183854742201338110603333105506427646864615908347919309546303128871896050979231141979291847793609290162785911104724124250189728664514915447646223501777726113995296183487170438460160927472388872051800376164639469210674269566393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19889085733011689399953404079154461785604093415950391600124857013345647990937534274332847303426346599714609069080685923538201376064662700506401123523869577529109063417196427190145031739169407165089959753658284126882335434309954586411768623937010431855952284310181850351697107736173341137020848308332810410609129577273140283781192000517026501387260787994499631871226499941192873075811188311467296358395179068012224746479874208834288958817402322687309696308432628926497900792526806754313363044159932842876811850844846959557859077135717983069029785133207661555930697273984310952675172707940706671967080347723945653452731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25177522128512426864721652486324204162376290625437470028785532152323353323459918932762428256272981278532195816962616630105400486850530818668913901178493521460207707310998274835675309828945563656010970047568644008509366086841274393490077014159569428127980627133457513167019606012066159999324063512318804295834386096950876797993983461412348615271012396941215178825394916607939954407502217113708848474851118169243545387041950148554345792077493780705958819668921990412409469658306364113214509116818361830377009320423073723591210491871140674202803557416337928058582328803430957792205441861924438555545436418493913712340821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21585119214579286024272441974553528307235734405336296077518795836708942345072440632544709960336348597185620251296235666981744047196836794051297663862973288393249368151444698324583902536301422152097911847219618511071819697301606931712115689951892381712987318886536973405901165195202749912318075255573294513970948534823975036027505284596830211641997153707119981326309299987919168193160663791339441790255023098205167902793403001789452893689118152968706660058670344444741482136274215254844905447781483072457413374702930781799552030976136034898394170942268453182519320212083503797516399284301202529718033237486913639316829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25051434040926500301074753938462386417451874982585176363353418524303607491091205051096360151667608502322942246375815968951715088767023115959960461003668154965420608811535804514920667856279306525277927861604248921331027831443186310491678571396104780669216315328633414025421676616163025135422505900264644460925790878857933354415930275812532859655455777023014311004048356677826643027562935267404655270826011926619454363959965330404241429949193805918081762085280775158032180630851796573387861213657056340972697931366461077350400127711100702711039971250226837113479603301061084823421183269080006479020538851120073270790253", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27247531264018399525166044203918082389766194935534596520047786269346308991201121457768893295309287660352245730084911014718265724542809512113640839295521808359247453160332481796261070340759474188633146471330221772921238552020304548640586889401059616283251043006330006199373631789208104473563628677517164136378502348036926219226400809353269033295761579070350906168352131913087518063734025777278766843522455795004734613792851200156817882383578763015882615869925110496731877939967194535268625074880272058116973273256532558429438610032877866992822028988255584400107221227725205388182740520823393260140661561705741205161293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26508390279065866750458319490484382644422782780975725422291507428214442195920658973582433566263628037880938241404885804189903851119129166688703107262164188956890906558306543406346597595950448423621940861038541239058496405108112211073978992667353976434069429240318863252538227595555837239371072573980449187277378006718059186324429318839350526513769129358922133994402925607638390689728555499313775736445171372744184293167014409439813246166908259321100970764877816887323150216381770643687528975144977587616422824476338988620618689564717173364901186014248957298313586192685785720261252999327479701680688249738174405863343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28127677875650653969963976286602724373561365302752251302688576761122163505970336306835632829116538772885624303118179840853648137423154309986161989205831165119800273379230703710874188171038166431973932998654723161759111025466723340460198283239019015342439721095647972317984172681407825373011115403032960672551559487106796273560094279903224457367982056918530031002389179737578066834274858103783199911231647963075063736509433270497326359497654386430707578619242779351263274776715548969645100879781221336199395434134344079072534230920190668812953797350531030246671564063466986970461589396446278871821856452626096784016843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27519747531798506574695394337151600748169153397127648104671638876931271262984865746608401652762529532604235566465511162770114310510698235986717985599624226125178770699708346464863905479872583990480761096910637909453788442696439672556755765183648779589935436702429886778057720248809062830679597303418059821829752186524802644755063005503964493702535955262625545547890114626221195430585647647089681974845809033690015548178695563000479186066448208056238552908164739433933558966766886689985358422825562278910315678195146094580026852309313029269511864293572055837431362334683007910982526493045836555173672027917071176269583", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23260265536720229704912042699453039343332949367488559071532030495699576332638451815581644393897894533513041422325188497970898307884449441243753823668032647053225959735076148902348325521937333371377285420944570216439794494829041189582627716474131798092106777801619426156128969038684652765456905327275034562757294212144898923102601315057313742099837976570336331419218588469298257189741036802264690370500042304370056745631606736555132653797587949195741990834913165634279051363429077227466881198664184542442135197421526660856591623890048102706194972870205395110081517173580415157338599876090880928238544029782773779453037", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22875282333056522440700606862813394527956234788869165951280190285219271369732581770755093784509612901919564345075041152779247310621584042812184821964267140285010110596791797808322335837458834074483824143209015139981979072860528404709768268170228518049872478987473250924251480052399033517607410350409069287411207390252791934549647976944527452894479746308828025471317987186863623513155566827935252554158716845063048323519037404205926446473556321459084018494332552345635197907985033568425746655512257687286324008002153532512768200100814583243305386611253374523517243952807773033803569907142081066167733342869019848157133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24178932748981681130028924622065318798842086597512938243368569982088519092642484274250898975000129627978770204270317343554436534466112425909773793421410978659966928459537621600709885921712294736290621973225203666825438183265696976273730313912114294321914955416018117516447402612272690011456205878636866617830996776672851599929845933650293778747720155314083464126684525982901599323988152226099281254730345247193742138834650163870661586862043328475450928300713084869103716201753638265742867581089316416195116686258875971024093855989024590141621839001636023383931308733895322763521782837929697643421665392488629698170109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22159919493371350921106844768049828186738657525983736780057763356475540860881657072013124084999860275416026252329724640700046732980032478323110258404561146660085671222166440581422217094925430899391140715272976344514909566345089430925832867245628455737380396026325406161435698635511038376553057062201101698630915109550753099958007724011917577818269330639293339231480664436751508186891444369412541506532025741495082011531221336514559927038912832092760780463713751158150730972037883881054583940480823984491180371947538322114329735823675761008534695849977087733556547911991378213864203451983590906867948166690454509019929", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26008330625485562090115658308882994912507755430160636203279795693163695244880964617699236134673336896813111206156557319866892043757680901482591388234270453007670427141974883981044142579153366964270774195599302703855602520133207414538647957341083365250402116013886731344875146947291023381656888635727527886971070934973264924233665296713751989972152042366144261435602288996951448515749780649173010774324446652163301048165191053040118027891594011299368441056029076877833355158618156379939355718344160973268415760383888716827938329686381403312511010240022568822306863876271704421777853367150937995738376476963790527175201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31024710456601684941033834711570089633951334588657140476262924864147791122819110774884258988745770887406176208478455811744140727159750165063368713310822584492559156813294730560961833630752392858106388700476125582009060031516226549498026820572334963538180113236204067119825864041263485414600314074760836056203198282118246851522268950532640171009855870101763098660453852864732389661086546181190915494199237755055787703704536956139087353295273059953639544338657286372149415293237371370330655740968116586644830104692452067562808703635402574229854634646822445850298037178945314905733556730273412838650986492397001882092291", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21769044702350996621558061067174801810081437630825593745405869937408708734738987725506083835872240961782513204857167601188214187417571624107105066819427066667395259878461826179169692943099550525494081628865627018230160804743972151775393573297190935793488544789379805168038158319824496341575724269456838787782537224508793057675092327494838350520398246761491275304807359623619076287173139069318393808774505621532036388150971999771880394225025212731763414830233214042391428274611127463821236457240667090250792922728962537077894311161109573830373363284883358864803223626070370755547661178678687862852165126315740450040571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21449797724771417081521392704293979297694156209008399561427805081854118207704229181199007959270483669150044974158625014051079465397666770937009821041310590092012613848010937132040303130449451091680693199447695152149677010112391089776105134056082794406375182441379565038854897797072647173980786450090486655584003318327594513564048061851772564075787650852302256682800667499667560333067335541098948533987490978048085219484893594029706282401703109356236748254724305325355907332681073689504195535386409245261016278964238048674306999118482554871959206823676060646717231181269074028529441357236919953055987636829817362954161", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26931195723664750594079868863735303851136832280767997880954465635800547875636654707958930613032790853922117881415415501577718848387915732559616450665388952002404388251884733422903274929448291360872675187978766321046056309593036490845678843761635183371679041866823029655525305773312625669201158290794381881378126953852829408881695201187563540622391614421860500109987465082704389619018523171098593017708726380853967941790535551786894807051821855069142095542907145415197898755194523043024996488345930796083461382254394889812802880491480341153593452311862963767805349978210744609760201626649585718674336193270571537131007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25997793685652644750738737156427078875338954027863821387912482456473322414657719643233545219084433345011455924859598909226972263274127803955589100449304810235489878096006177657158464103107282055376426241518436852907458698659940665901001031341983514974952152301685737378113866983466312569271708164699682124806917647156419201760584780230312845702751395804655801060187310274126574952858398868654000860510737887225220510393665702932109885462672874467368554863596953156900335393804695008507558106363933350110214234028764417480890075704370875559353950943697250180729556123830588824529769894546052880297267889801930946158889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25996894107058357243283379181217302365519117702888937335225026782018582400812189414687273396506341073747794069902805103564870328395339943180786595455129001828784595856056542581659069159600996215112755526911537851836999498832429049617490644489000852710852581707299539883814062613025214904820999417064267170664908559536106042056770942091700438918138623690070797413416477284735109240209935565905359534744448263721054900895615030969626462835685575930558414272379696155580689832464641643430744582437665451392244118774587033585254290276342302156244033556697487881465650651325895059551154886875061803843610438414442711432553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27219308357718592901582242118276295911523387751801381557332084547444909177710372067759371794033758997136914827513015379903979292008566566541163370768779948270641493322304473705827031282738126181510500637764009087658886827629117958299631990000143831898441504697929109044681228334527389370777610207710855405394351279155875995982334939233906434660046021255022786313448669323263553617964589129550911670765885819250626737263758204855185824689100657939383075184036433239984825961257035487465880087957679492912271464884410288299566964676092392927479004275636940575951495328788335886069096230533474980296111819971263658448111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25201616441389547743756455460492772248190865412601569045262484155871138202461495590776600244989442410400065237762237004020487636789897741000820049885739773982385577462891506318252879374756872855562300024765232162103433311519322117720179780079313379279246866456709656301904989424169615070937003534238566684063848579651144873397817414851488985943357908888247378947842041439553020523413739441319949421922489171278066460818942863945485945205055215314014568803225436095853395340094557754892451816761188809956096355438654283227600889804421946203248869966468860719278445061577158095764318855383912379956562906306171630326177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23513207540519811328507835592557311762595559496269190215319692492043289348319024488186679354695990570259825161431910803364797536573607489602112037943170854003455552715966158104504505109004991355279805187170508628158756751597222080494831018545602766168904304492879034845936047855277800528486943017748363794151089855294281603470187614695253071574756389272771630272807156383141965325721722176986867255086884879882789083506179696623621811076387918616992658193463279020096005008928310606097969367428713360064065976957644817747561723416127913431309965502305970353161752671876697682532917987082930142037586671586377965859517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21637000476163635826917081622921983097167614424466862462137260873921978223161549855136553279176912708216742316179074889695256949481931523759951824125806722589149569981811833676859892987215749091743060631245444189079474555069966316120007739690144811577808239473526631980280709602258547125715244494079573218903029366781459484500411361506564646211238183349620277776137440179479813184779174589890145694065641762304039727905250997361149507004510284272897320868582492716512743902582492325649107969132223271819670243076589738115249603827027000016853332711151630443467672437169046941519858536373736557313213123119218779628821", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23840478734809450716478348447304982909446325504056820029829801394380108257304876322593006611872268869035286158512794013342506808598336146572444445693341621287154811310495599776863132066336673620755805986810302688865409625869203147291093508414153203527119568999707330870257997982062147744906645410558480291484165918423925853373188043714357160589237774598056207169064458203617745491389018134628363758674044036368436348055635573527273214809059545940649670337940739593672385699478856268919939782632409163762978082322289131855221804725819859997651369295952479189081365228968276361735229652740380743015765153305442161804219", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24842708272691787114411588113073379160520147451349411901664618069222463905224880907269464621583391752106116645485612321821185631241544003258002883945214163635904063530723908982425470337326921709536079899619154004525967577953603097566037171639027544606811534197575954276408814224650874875480882742405790040391261708917294874058040403826359235741491205930354255175097781177023386707139774541147429985743255856570794673111249770888616083101492398183142436812059986596736152903287042717741819539780972342201309653483422615902049185763460806136403820073959928260255023479718028270397116009464380808803465831692500407547491", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19453244854591999034948328649292169112453610648586728698528346736914479617748557864169243352658605527150072595145713061705288290629516076519842256196999577947199703595544416727732382662259755185163376556466703154708865500466935126418961479271722749100032308951543845019241287415518871387886079883230919807814794637117656371513614461055044257026135426756205562484452429372893922507316879988771612055695872449759201092727577500925009627371680897165907658459927577384932364343194030853655124205104955732923593324440646521892451511582061832508446287180587946592128434481935728804750411845353103375039566571231364672868109", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27930183049187970205538410310320373039119266003090349332885137535425693589749015785910558604880297896990030657132247931953442339519930554131333595187492522887467241850351042359925577312034704388364582968549380374973505683885244230685869363421763123158951698649475822501518473829543569266725866538253822894761479519368289014451038306090754486383696991769794360879724925676513751319694904282005096447524238164167935625286174487735343694004229210466331916953873098569855890813049742950093914977628748149111627937076008909095913537744715020570721870067935534756077951473798283588804576762514197802925528811941473514320723", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31305419480399823944276558047937070282386220680425788232245872288703045145322595534934786890179229587655210461866436431270784992805182000475381473949331560688643653131500100672644447079883100665483491127281287040927470286286461040425134491931022505695087565341292369826863492063803263615238889277690442380810576917814933819177482032743258491457812346328576235264759300963637798214019530842226027780406036160714067968224982522533429222668100015024756410205168460643793066671533950846488792927797193652920299282339111583505798765297411671122875392433295112560674131025911806970357249786820306896287762600485903226715413", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27453518789064038963500505076146963335323161844874371111055239847581676847458857749820552197444279617560138378917317216584304580627850392178100314295447553830365748014435664694108234468924367957671828982538073133021036982548237954080709444480263274620493092263394543503237904064651093903580649999184694130107419526359115583048554335092564725796160741324974299300622634947778757199100139202435326032116493669254044604568955078544066253839361668437002747994019374875496222414004184824112325238186339491161047062330632382769385346104809038728167324314802626303699244047795994137346207942466587568488794184086743172139783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24344029947516429895103721639017593210553276516401616496775807841739487609202285204390895665696386429901412707490418649967488980853909824839346226615221833942116240608636777626403653045361714227018420465853093385162985021892057482934094723548256500402487269952668649236820328580654178559607826243899865120598487617111903394637015648877507401397051273293323479725984780599519672000326618978810484283197226082534347738529528208908956416994485848683669134907096054690057666128746496141981336127936895021929540647551979367178332490683970648962851852616732693758413340076642290870424561119699461801473634776522482600284719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27522581005297172514714326057122041884997902837666295735798099749200526957830053681966025400803086076018278330244227330841331806998721073069693774974293244033318975614591729914627615492433748034257142209784976145699865330457499709562387276539128681393678089225217698570834984392138819738904974477429298901851357771980640414646701893848026663314494795811179931777811013033286683224946162659467033226989239436912441532021490653808056815217223498486766275231973535079315318711277027529631384236235979513762827957823362282530548345050149696359970819411509880153514232587750880000548460917742263832001749234245663836651011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19352016744978530555649115563801393420790862101706953774672332735807201249412543061296606749990271948629004674206935416348105584219442621550855173453686003028267875751038978650883223136336053086323358666924939371510962016289603779734080227902913075282830313079192164111297704683833279159005975815773431326205793237861027180505496339380632756788246654850219345989495147399443595173859045816792896108054972701545324540806032645947800643886058240747267817298893905208913807041136010612190011944301705390665709977872568228070077281930380411526394543571473345790714830771430575155129025741231131651427949157457086385135379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21600843749251309453378672195418536623165193312280684136262432484316637670878067151788533891146183080069485170257905926771861917562190013917102974261938830329826635853833554211604565891745697773366998796650683881380410267142314898567726461624735085705522775240044331574742115499574283932398729532507257033588099955295697538936568778270796396124024078876087414120290620049926193363269273818749323639018478900384598628487100586333696073164353912647229489927528513343813590199136558837758282898881265272159959344896770283364247771150832705102376463616624296102414444224149741966510332693623430234636920622459978801565813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19306321450159899491254866767504749663713721741608021761421456264497557705288602471109050616263852092404197285364072308620677527481155893548527730721927431614079873887378937451399427397412040796322416232797642339000158037433539434941318471194593189573222229294125290156542642790714857734323696556437331569861587260955354606932750180899674715609683833562894519729118542363867842618787579036851101239600222110748474112476737685149951539289954907307807385766049075787656187541758483110331885091198250448972744349074125901210792403626867839217455972042051547801362885505894135370536315944769003969053396045359847673313943", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23597092558202373098129330687287934641943696671650359843475225051711093548662799366535299503697273216927921152830606655867937535159750774601225560268271474362837527691191025254158930690186833040434933732726723187787369661863713715476831533570325719930088795642395684380024673009512661284157156209978187467988054475553749592538910481459738047391423655006150038725915094351955440194580135472421375697960329051919581838841717757696796651096236660151172075733011191131593597959054273267694971346412112870644166331235577194700865913857690722035127189534637073975603100851060382071422857932353668040729569716289536216903263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27655874170732750926464644339849739603804760483422969860152218499072413001496691567711837251307396902593404788411888351175949594473720629974577408597406267252483187607060723164577503701968347774109296715283861480528832571621929996168857151147469301182221847447257951364366560940074876570692857066057120577950459844710597719143884096883970781998158871855033661625239897526779596877402342304126501348539809238275092208997604963621858249909704524938724309802078267179663693625826746319426950567387391280304698864100890089758809896335123375872421322118253516414053365896191075245846959051426313328303430078891236693994597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23138569021527055719844910603352993790016805626525949279737636943357400387789153956448226819211028910232381808362952451198070088249290635218173574648443687334694422722551191388558795282043554842733332206377437003153772173669583944930845668610682450791002222373267998091831976681647258217411830291465801529085295241978840495178242206196489618003460409808478447219002032700945475244941029525823937914723247831461238972274610028615891305538474759336344839379458192207673942890727008786443977834972763422229368039345633594454306648187755973820273282009342711039723227140784162942334092381111506326556094186664563618793417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24543711228391077352704847232459222521321270433172054774605106850777948899445230700004164309264935488278313477896643732920318992139677403440601049449553325164223743961538211188050457185867091904191372055520468677476757202800202911660784742009763891638344412889186925204440335008291230547074988701002627575318228220876605055890459253199947915280634476327078901103012002764363477625960841796265105984266107748557592733077053674887915646507781665016049584680370966566181809254097003293891646875541641080719996731253327258597321771110583520263269072453684853455549794295104641859126565248151007452718441084533524580261887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27438869287889501187751365739761813388803955255277662080865314077498990034624589084352836013114927434196413808674929857661327201441879731735634448936446706444733716530322712374217827528208160018731337071175690839505063705866226419503293176140214760045106017381638272270301621868325274360740681283166625088754455383488079810220905900750932093867657013980803593687285607635648313789074391152177536043175363790381358224778228834783593535698566144451514683635398023705523819960535032524975491462335095638598937669208208576490791871914840146062790773684540642284998703843644821821333594940143629431101799995007356234910229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25959334223120819590447508416097494750356817959893866461207688448491250316551317170352271892874331289167349751170694436345509043267942312777294047042921748234920596076886575576522008470202945577053615813972646503072791995425110589740655871147432139606951657037829261638115851121400118394614190591825526371444306649855367159282146421736029115263847329500108466138055524968442359868394999268496155826376773139940792174844598631418026032498865361680984873650065218752889978889977978672324969397372928030587541563492089136115422186862076452881374759820435980908823861799788497729310833650721415335659960029078872597099039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28036995172585014222846658019659266537565623068052856252168779789115746319623550432907650861203840978076755557678056817767203767549882861806030893331795859929477942187762945828181128672025637377912568866405921267386761644464462135379021814693301320816709528075932437798570391945480651473922299732746228348612963754402806482186077590051521896285494232096379663793579302762706442966608178512763621417637269678439027259443856026658728356970910045416172014959534878869610108634502930708387418863285209560200260190802718769500203836363373244321154672463752205874126158563023886121660054998447366361749965067024203852570503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23301334111146624773450451205057140323620703324665433978351547305112950302459248299778400447939385856511084416139997365974178102880396231010577574916635615247609064741032859314051602421813556829869321185026847296372572286347581074931344209436847539156918465764032386233799833908983868413179250935138828340442369792876191723555391344149770423356820678888427053431641615827195678035910505799078226652753526029900182779276771403365203537255787555698094700337597792775165331508201288495522212104203412969789994473273720932373004495822189271283151811639894190043740479062336764144162196138987718074646649041248187319232887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24732765604125535223929452595964777542249830286224782858842096232180364310785278496792796440602406289542324608435640932566950862145361161077693929229995352823716959583030893768684582670069226382773438277062410919158750743365871457715684948803001052281151027128238315003404976031604614603703401019282270380822112583970901906158725225243126913447043576450380280125926862522048871675114338077120117258010190224013432005023902840464080029273709088506816419094040300992772734713443993475151595062704174042311220932023292916635936207240973206713918603503155621689669561170603280095190972935899105567364167757511083969310793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28418691835916283861047473470597365968478319822174296288891798246368718579377689174682592209170838535300785590557849796834765884850879830250308263376112084844356599296931243864829095875589979358470138786940441351354751253759274856738280834034601064476408971403130458830374835690686929214748674138337130656372566497184739236655819931844011618441593080950907704066953008969290775630043212383234314504606934255543010850531029410337342445952827249364722385916935449841380870224471568146043516926047583265681985316115753260148744955154424294746979061791352830939769357968142306974713781186925522740832428393725701833091059", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26233511237529616752155377589478199199947620575751133550167696773482542211762650379669153764955062718013511321352109993388784941612737073517322533878502479520896181601136346064931841577316772925088861950828629241924771549809402274879067744212881148549867498270423568406873926969565830877964960663719936635628726300402672650536897544122171597265699079424722153408192108001114412577278338871173054028569221833641777025470252073661426250891829249124093669601402071967844574360238839913560114173014109727402154465322023184909549169488634768532127867378974440262927175483510343710293910323841515158949676718633500185481937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28467942604935061122595110548650209722196605235697147800319659016923510877467579150277916558796928297535740530089322776017907501123754918201069219427076004666511969463402852220054921151367635338066864104247844258464913430103492058094718060652934329935664176350222921321609898284876172569821386058496378563739625715142008467955123521075511357165260899273796794414953914267747424132725479612488722979184443691904543575115895158347899892573429856002494276107691651986345400522564428800571152622479334649801034430162467136918561450825034426944932489496153595221408615978606305020523392512366511900459706113788987370828081", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20576091616758740823534261843742673367767893024634161683278175448330115665797430293019523572326959325212175693453315774731427102881485385490198480420290107254778680567973425202839050919514382808802213901650829908890752353678166791654404309841804349633370186359756894239482973359710260751691269743121823861394593509467777962566974791669700935875045090490812029315290181199471832268985332539055573694044940267247270339506668520835982320940876632941052500263261887628584395797942016258789149566186147106630660926260070136100556082659961436659580681064936221149766034174064002502531329038100122979452309148996371159759503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24049619256482809223399083253828465101175945307858892233074566211220808377969212889590055765762471539101316854158428855745571374962299405556938635582797208031845420290285085651967006383054694146837023133582677229294284417762402599763304602113807196986593169681522631209733330499303654253303866689082986030648287638373723170349215099916510478782582145484636404734110982960681242255726330848017986436793244524162902152669041215455455013835103840201865069797437151818758329833213786332436788354922023444645855142454430568331365203867825208842683406375767861278506889867036825511622083409520935875158455138860904429352709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19646521191340001339331951550045689740958662539493589204879318209473498653792676525677328371516878879020949454587217590859441764426785408822047988197177405421040437539291464438700161104805869187979506893710858801494056221302401023402024907966265992393423256826198176410088114598947161704193804697698273999398867498319864399316293823955866305731978431179416409317658049770921702534336922483209250513266925586614724189611857429629746932874790298557327855518322188639750654764374160985127968219455502700836977725904372504237484165628840240465735679317300740750087876993850178899835948977364946166298384221781296908995819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27213262899139506725756693803043565409696395788772499510816576551397666380574140655506669372639116856929526092677164744803837818538813618636446390766246409910121458556937050685943947234564749687004240844524341840765712625714639530263741260812275693704505378039453887345275235599886762970214527610255766426542992749196959669262990576027371524774466114890476464352666942824432281716237002103795779722062557554545493205464723150295186302906339897941608442376887959310732424113611086926100955976152607407846375331551431211694091857912825890706559361895072087948684478857448039358464564642579336595531372696095383334824561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28600724244265945794543159876820480048376191931109076861676934896716754912554728429763153865662041619084057657943123147711894174602071179359428171825393435623100658907242104073072773762968276991565024451821287335400319690582954882999499021465476842340315868080724070755949635977464526111210828122828940212505466097474323932561612391844115018409673569499650730224025858372109116851161972290483636118834516680796910765891991400686609692448805703410889912427702887323493748402999331054025504035861715931762306455054323955858662776251289443087987298298174513205588795198672288653977717055263339980419007081310764220059399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27565488495045799226289806455678879236259376231682873748525598448615128274948865774059409824655580709928596891510754052048092042466886301678430034176870695423744041180632428146566420583209958390606456313900598315587886702724066195497060405193839184865111237062171356512948544843797402565121771379597697918283703781557707499622446213489016100888169476092218123628766028369352578045538372148971370478186368538010121120469220878962448602560101527936466318271762444398855077568226572886878837480952527431905483308770277537489374704941605129637853386066305185545041967394273330544821183037712529369342015972445641546436011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25184295939473506082468423468306637018627780851014558064523448421942846479588751486123792176582017840422622545358431671675159025470602779884304621813530844638260897359298157898025113027738111875756994778014338384562615664040006608098367577430155106982473168468858980550984345465993576417303702021034306185848598845442927198203867479544187263478598975429558955762371065039560210598281692295155679060267531103542635521823343844975698367020439649544483208761242332472723204695006527241143913024989989253926978239596612323527681735487384800727016326497543966240920004427787447606686944750371422072482770514394779094950467", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25180003943893858421301093337103344714419719896671992663565888917321882677307415873110207125070950498941797234331322951455390086615086306455007858339276356548288350745625645655921095911955996106909632419428898212520943912678057358644614459747571198891454458588714468937612128987300033163783327665323267856332084230124407105829444058522257194039982319917152682432708469110313254900345905153950338272005678301234232883849904057386110698345137844035977402766406471244771418045221968085068123931227797511476044030505031644065037295707788351495584641466657672023608828991602039498600638179511544584794786531818347041860927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24424133898315279537267224307391262263736168500575546394421695373901309493331441690446212828900112297187618346177690632189048012805345018818866999445595481076820604008428132932017627675966473112927144965769439319120360573586765914277941255213089475050675790017397266456016496277287420209307064601414342328756517574779159361192368072144415734714563283438407776640973126728627659150987825328484023948057543872802450586251476162132184367863195129961369864247547544807420626895640835246794642796996168377430988157114533729170325319247682110726479696706996785913321941491194484701562922134330022575944158763547065935872987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24387579247287793386284894565913221089587672960051982431303794488808061973845240937609397515638052040226071152620573298187849132685120648614648442355666925398873943957249893712386981152309270380368619221851826778603333923800451656320642071362548211751028966880217521400883613368469838993680157019519492518711833171483566980695232059377578733712173835260453772481739155858515274717270727568182842350133604417915696595423585609519879993599208584834424765893837998875747111140211080060464096137786030218943116773348200400652184305748355785059356699608368976701140133655925396035227504957571324176027611578600781674485451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25166236280964890664152024699885188182951542662931953207486161655094516473494433469137860063326536713342391539000126864685817233017008862904355457234633041682040873135060321546139151196485350743991826728037297059865082264258998416964448833302068108111811736528196559385688242986731639035588015734881086023837695267673235061478524591692679359747272206712082360983744424950130120515412677744018838437040575602114742429517057746986556047440299250427203241948845467755709101520482004687783243483966633162358744362391935897821849941929956205602822522142270934462617014105802301457702354127871669298343903888953422051807463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21200839963574568229244076103876748187727515007511442791769955598576280822872226988612227364847837740369900050506589745719860349247573335483195216504299159423969423303756737432184086694876348055513110627317298808954656892449206812675660750746422989982997807611654241300025327211629938959149930051446083901040561858788613061486934492308919849358506204526297308150044535285001207732263474371914834924576409464462470439465745478157434119709001806800738461067918867351343058078029396830949151525697232884936699481562346883674738433919323437381748528327703261053707403244869235296913162765699730066552285063460646261259699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24329270631705779650730044501276773989392161803992038085441054922180942752814686582070629705796659834818492045454409707862968137989479423570881796724532880624485335507869505836891927587565969810652391359995878854559130187907863059098326443814839268961791799776916340682291328833856327780409985307172983605644285178901083161944589085362510062359387682272603089697002788547766736512857789308179415322008425212675442549629826264721216548373319159586904205451458379197000309266291821822920427902715958338758669671300876452216019339017415437527791946845050817659921242838633063766869960714809816685133917669841307186290029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23323454905052240616147087581898361587759766140234425012240599769577669099515214854657405227245343047756917400300216105495575682417216207115568780673755933663514759366333507706985881616364463212109350387312712298201004256004527070826803353364650185029241665630978216677693989706699050726016130455044570669431623839577232479557760809550998378117683337950530360689808463017568634962482475913915414999750020068929850738728366746621525308690122039823741143223383676117951174426256861832854006448671818503860658012785449365534045432453423800513297136733724891032232800190534565539767088782604128104168021254252258948807629", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22361684109873301565863657133017276325984015800112662633021622818391399306786567460535425709566878947896533374110288721808952524891025679362556824126184597470014394511955307943690695859350526808030002982820441996975411832257286211990649087648317449809148119653852849250543997741121869553612431810172069085005171752728126584317271206383215618573883021367722496204688274772435446874857498257472646976144553300533338029474937101597913753990554348937343258322736051765617673408919364116913993602040903376497949442494619231165054251036617174696481139689314418067531305434210056211253374368593197835044622956304335527745773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24280186810997972946530562577528656881907666362057875791443235526080956395076476970279108414497314131113064631527177687377675061680190038356580002173564844306463079745168367412388843932255625050730066257473028628576610339869590500438811872403839961764228551681367795035975175020408321591425455090975004561284603915935650993614396301567659824406572463134354617307379972649778903229366563758281620304838695939293190984828831039765617737249824633319457110806291817150579485308118005024016501808060053255588987454447900257134577373066804777156444867314701294418044539120161502619837654437506253063989030280166976623796981", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21968017296602604458791400463872540286331719379832908022592886589306708742482969390920019685861801721289856825193864197210931085252764294676652871674715047606058260703152533735472320842617579362192076819669740325172258783879534514336563684458667029452488035394496015405265966373848934036765904353900682126847528964303590205326218737391267781205716414189184017741694695074394221360536130108502127802516906390164077540610657857343868224598364773905700788366230791847162238920978282358643142289721857306799806748698773837870453807644239502189356330809256353737739359087877734944168704132285361551239276451823342224492523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29553723891705775298144239742493164531438460119474676990799387701117137007040018855640614443403184427926326750077852500915441215736069062382015906164517701108977625823471842752655343280063959402456902718735050931994922084751496283863804105590701404700056277255798073709139806989995037575069919035693293082967969691996160609027958709626457183114683748928630665869684055500401272456546127842561040186117877050096538966148304112167137889133161505223234714620608366129077575600938952294915433669266011817465704919596096914431486444993376797135557594070643428930665676540990932922913582274847864959971603576461258880862547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19608333826007836874393114588888641112760800507803589135084418384032233401571783761048783457608514792795694584148663810624278142434584590325552156593837144233559038127957142594935058904226538911027176265913526850734200741760849970772091967310216026252581633479560437377834909553501657206331434660254017894696346736274040351338466942663304244596291117820568522041421045521874902127891809873130421314931355311666180531171827396107221217566199174259326954857275343214506143276606690627810270278140149243002427752258408325272072687030851993120832543944540400349688069739096776705288944636571428224836452337991979474006123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20285767741227291522138711073507902587917502997942860181315170746196932575940185438985201699035930579342399616639243481652526785997003532271398373431289103577760380932797268949363363538067896290476140950434507878452175156194797340018238944152484810736268484908270950344364354020087979472951475775374231673759089330701171306008649067113500024079978118949186171141554984334640926502973041108211485610278789315203218994010518848320092321070489718478321496481828468213607928639226702833518114972260539880271829170917914805661635617263050951114369223120438119906075617931187484218170350014671973925807758354134961125235889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23234337831814785615746864293273382755529612202071670924576650318233965080615405649136160739587920190914783718708866831705656926331625865002705965495487363320668723609968473258049163243914396137286569609463525961414212987149598173337289929600919992897554053828418822724210747574406709238643181779612256612224925029628575405904407636072769909601317411089937505878132373207056076141120056784899953932415877456570958905974065762118628471400200501348715161781354080409654160256513889963331757480201477683273715224061487047194321790329499695810915020788888439791505429204168309723255622443851219683994461967137794550979523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23766148574295316170613412266051458736793109935525918147017136101499520235715103884373813419101139111076779703590914333961931235347149470276223835703494949680873413904751067511745490338224554050967287097985649142541098143005414718114293378479053416887287078820984554808953750697822761650369047906812589499124718643264810649599886308427521718331683344914254161048648611046518678671203765296535002304350506998725617260708718560512626041785503000348986829781901946252654386623615425424340474143818771684196852542679637690367967558463305783645615089702745324038776831484027248394941558630737853650700378275233755098479069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24972865849526116018177609863339749845558960193387360761027886401870955495188082745386437599522397100318995185199730675867923693939705073999061033869689095286640621917309581731622010684429723361364243160531266220460844573381907611915642518114783570080727345865311606120108740777966760961016917274672713992384445614026843657694388581560568547965771954835851581596510159303737914477431739356468917493802278626105484162050420231438966099604862719182263223886477390912795325941906580174879702032771412215012753197626226560731756946772407012657961271520754710689305811577836110748573217052322050795411190090965282270393339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26757035051279758815240169262078858976955037596552100282558394601642794382500206419739125451028214012791158282349433274725029535138285535378534080678764723126992032337572918394727064856917522868097775834706273329556175099667246325730505129009753863437583414277456165004477770176998403316648634202445132270647862380666724498494876796976170221625900773554147859315275112593127838036834070366926744450756599921945382124992762294649704330557938761258529160309214076475246633414780087002841046958336474537304267303034939340113399349973490445226844632935678737428151941060920755541308077717985617156177806827565230317649879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30716648125191196363247979981713305486160888171115141891889602511896523916619232462840160875197782429220565880784618384464143489929595865231990347167062833609491909575596273634150956508765206872190635078198859814596814314641344968160353510827997625187269397700765769802590186905619840399356688272170338553302146920635877211978685164668702242363254836901312515861666377384952528635994772918531557841946421845206263312133270596264108632399154098355434326660911832213485705113522993099983693961576529618719652332752365934146230736516957131250316823609543529601641256564398767852667534630223940658042112939829919847232437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22231211055512195980533820776363460818763071654589370782601947945206610290829213384814657279620065064625173169166672879534717821290126438747048046129647294337768845372233110382991598231393985234936477884281863606698802205059082288398674425887691000666821437455527046925539221692233127919059742294001919560089085401200871674049040580249591278567430052549121181964874153737528613877642968945872659461317373058499351521162211854157374238165671125036703559270627427497605425880052295550619784435062841811046976410670953501255417316557701500527944677458491801872291140455308850839391835344185382071206556226543120989497119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26858803716036198078170440426074932543508511230019262227371256690625658682803901029490380899835515840210547229977674522137637772493939730327913404624326674441446762100144318671051656381214854715548973345828444085672459782553507233727538680716102560223840170300421473744982812711937818803474822226414875994375124779724575484362037159100673795501929526841777711640267922884790883453012656915316050467716780114119737629766816428169238981737794231384239877782478291815565496435133057166657041507759274222386848322361664823016774075419121384129681616240493630874480150660012416346234528730409328553771558467586059576373593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23615505468949421786843356756824816939595842533547763602347661286036346780474129045635969751288424771268967722898098697573364277047455497831495958400808912722233013329684837274942463192787585705945924757171089202280830626617913998478882700345166068884931872546913562641362453192259896232583923381059576053530723480421634228123494524304509187983883209018891922270445512429667202946741475942468832134043591452241882572592206157273768560699902128641632001305335001666862652824499265413429094860503247173832527861118330447214609012769232900793593022813592563752722726962895672560146608605608838700853723138964270396480801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23461018251388187967784910784613122653568299527144856446111014639875562526731725155850987656881637513987591179464175155240425423098377933199516762320656274318102760330947582478352826598980961368285751661528823848561035119621310912777017465667837255141261529112225161611365317982597875097631884152267336487696736696993669746241578765578513746323310772454161117796816671742326414494350543043645242958986698828856561089716197142450419130379379201499035203861941068236260725903829511602385139369222634381641471425849923109543758198672705631675129595143734625416135160526669800165982166212613770041970694637092224642668249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24031439460932317745288256238177534971685222668117751166711424617871953957146507141104137714345482072701906670574570432068316616802388725739149420941236539979673447065334948106960838717767643414722625676111260647077040244186877199013717619703715606473999312961962958204992409563989883270634030124772164229713947873125759389741283727533898902944053273265012549762211983858341977053554974998447939368423349909063274986493353575616525860197825518753537773779203528196341748292234532965262916023375454459490143624042454418018979044053500587427687594694557325513545370403616617047858486344307393550897356455302280345231387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22596877911748574815820083066496613554677918484409497631736332537610886992998103942168748988385044634964294611907398637898580224367516021381423154805986733841203702481539003252416473004651706074497748841223875014783113881636508020968609067916595978872922475607880851509966360665164097456432320278632889471878180331019908656033358399973262803242469571281859652841479348006991600516727456044838141427310446182362952616439148603082298490418505640640816174681546187878442304844028924618343171569761166919338883149512646380021882441564824776730671898112658692729174886995942109743293401033791535898585662935334588158227087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20858742387886584939386235762455790079093613923304189876659858857620249801582624982708555970987005740589154402850781114222482640793620755535641094770840072322938994664114156632089362995926948644678484920574933461066564478981297461120243984121481826179929713839528284007151869526016931580562982815040361314607687334588901523328176244225381988917118338415341027667633241772613272907558161032350606934251726904738890038896752502192903200344097814131167434236468812626685653406502658775379431242774008538165257025422987285297015447931606917114107840593306300737160842951315465682437574436956915616243890254397061794514537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22956882612750145425869597234454590765957149148575185289058123790983457897854466636467605592222939319189957215767601690901307256787281523588408038171272542640014327880542861178352402042950654645351230615400793041263467440337980001083933875566374609792370336482980881163444001284176777753712085413706459964662627174558231502251079905126700914437488403032740632427673234652947791825990586025955158548808987812062111027192585878877108337187182461053342827319507360609923731774224117434711074533893377939753717041788226011022446151355806570775692550941062113360036762544325910570133135964151854402064524101708263183320449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27049455582993127301379977983169356619271083707935227040912299740914656668125117172205429766584867064348937813387798872319309706687331137612989926618853493381317370935934932091774517450868452437333951345344284313277754575351784787992046084447421641349210826200248722585528113338144880950902039762129766980665357517280750553532665781454310087809546619063713691295013216608304731123742832595849335514464977402004895844888346041052221679067695584223131628158014247628764010710057768987173657731351817264052264405864765772031728466603685994808268903215400029596434092714851057715265754454843648105474338906951781687926503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23497121353463542834889537764259793901810174352197183269887383093721721799209049099425231737557647258171561631413838035466646454517861897326599681612513071625904415805979503032943740472681554862659594921391507195148371160493995408803303703109467502245668786299504958880284913232826561333889162485141926046741671531171356675658943673770856523871993823665387843063247430576323013734994202663848531256186267113895180021037511019879638625154941220769398160784326592935159491691367203259396824430239229404528112338191922796756561198254554960675207665582183131064850060242229116455042846703049600106174395396096629681499041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19196202513158921799829834253894563489713389179768194813218355776796512952961777074059056709492143435518637270748517865211204877438632333051987315878183388039370681500983758102925820719018790987709671923896260406212274496329230851819403633797019125982234436398255296462822256547485681381926265895168307458950579983332610469640543282167905091864754183551672837482253381238486966005061658611104636729771293641182377158440043367798396460437144515295143923849427864732255075537221423532215179155167404699441041377107663971608159338038475722672231171164724739889317853640757153319781471858500971713018947710851767451417647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28424261472228824374934302361050786734993412193576745433882460769467648914708229997683499808784820599886045703419245302524389707600069810383317410602142732084010900522803161668126003387472386011812078781368632522816834089614810590880284907869772455782596594029913048927732818050808825707142796099389346770237412341679254380945634984423606730153249386142235657472482294416126070912762394334892777482880286975674287675922031720474477899415251494177752366531818670595931292058984139208497653727149787863840537268225919399313603265771741408745619329803372605535919943637349423348855853739626602274533722925519455170249769", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28302914390677049634084585669356556102991205943336663440314717138698646058293701604836218527225882011929210935257036775712042558477901014531692587141776034169865087094752196587839013773539584347427889772318236413274534096584115576866791739234209870788522038595393051329285090515205376093844527555286639062586783077316585839166581347292676646245062092172670407408930789922844395852161940242911568293724333364368184567175523255433008302168634017611517700969345795075952110942221715634126592647594476479061818096811730649175009235885674844629437391334474233268782874075248424554125335408598420443569820467474058500345113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25483851482378610613897524828183570149146124949714401052807255055576273665355322659847383642295039228355712685613582266884029614854273686253175838501157216531320283236679412966443892146147824669837626605644419956725240116309404100727767326188020250797601025071509175293281059128070008535287047262497201840448348551387837121128564093928366382871649034420394784708082978083063430971330820428934264741003317270533650378065648124627485184891163527323043693360244955898293711630595831837673762853789884723015035213603135921130665712138045999180847831410980921184240601699318556404087737011038037708327062036472454194994793", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19598340899239997835532919634077520623484332874836296652733555786722801187038609084851015589218093373472155990826437886888325870969273444357474490046265327525495331742835138083130659349658442930905415835301064486386248014280565425184324256452643178533882978427955795999376482867937453494471991897773123690943849014217101305551380664591437574845959603835942351284968196845805567718372045677196433407270569537705362777342324007205359243265225649537935907674907668735292130029823484749888022317473324507639038022997283212252503399257101144271098036468676039801565130967477078046373065354884693777628050550460489201340909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20827628665134831202084641051647788183401090672816674287776653218314035776768497215177223452053256386544954115899049722695421203773483201963640666190588086544579202790557538694093463551122288557905976977057924801855097249168181780532929828297678750200670890765615477673562723996091761228665444305023929685459801784819669438396755514650840548789715739680093388978425549121196202944737910160658088438530382065247797920649117782556900260426901112898153495567840217605990978574148417517356897474593669576552189022436877722952147112611771337530664409499356557926089889005000529397867768190424622422282759483302437644559097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24456837637191963845707589507210938624128978801543576589483502688658914804556908758663896061369512899316781217017975599708163359391707377973844656058554100462711477367121535360587051037642182737494529729375722167117874527030067940260293773279605796113805527074235878309361542969755784433504430106469992213194302586948367092202224191065810363883920136936194677339318563920245834536994395185892813135188601013620538472868512105909495120000864364180798880264653751846819729565900908248324621881996051417200677130199927002702664726450643111599233481651055540858376522901569274307205584626718000708593410189083500390105079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22903953328703512715567581798693358010452317326805254715885487771036632836373540645628990477687139527349254829574646755263256708013709927419375625360508262866447682866009242816905498000656046735803849470797538507629008810737704107807438860329417903335162115661657556148017350278947610566578871196215896694890221528235316103895485010382940679933460475948249367075238984877429951151273070087003546274548391446392010862698463244839230206244710855389261048010408831420139810845667749209263111689444638185274901120408326303678121687921395655343095526899656575285587179616891879604193154115261163891038686010285168611174473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27890994210122322872380617672899282088248466960877119737149244890436574103049918726271246417087988770930064570452692551153473826952435063168966502588404838285729575308071772518288977065291426285085273296647484177262165118372551839235534672954398383958501072557604005128270026410683112425701789035158170630058473934409647454642653112079890014232795126750330379301275959519138730634529987695978844475448472931938588379597184223084116683384714576682359613683400736680874296372168045841672940878479979938368033484382888901737071606685668731867697186629587767837555258860721822702499867089436498984807340657541117729610833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20626988828547670583299178860999371830539099291772637572541831019716964513642393425438361774215175869751933737016264325233667101698169032275914864319480282727816385022530971489692461870300519635097198719193127415990639452566983092277977997129540940901961161160516082620695259737303297096620988554579942956037217855292847176761913318619740980520391921430869823774752436425050945216618871484120674235902541055333281082062039937410094453531593403315884590104658126800480083477297054725029602820493931878997592030967827379940784798726097115446192754352130195112329738334012150031484048001653644337799131484281513152928417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23751835050307777661968001640943782372523153853254850049513874981769236287662957650335929932484053991914535604755438130444594723780030295669085553160900844839141658107860700365976612387467347899784593230545261738675519051783055145361635773270641026718973334298127250798446018054448421810780616198064294838509238447986214073268148325310770337593680868574663760676840751000015517889537380543219778893799544013145221731064093602100582094382092481143080380252167522833531593987739832191941135058929738074893351582165393011612183749034202923646363176469672018977921312611393883105988079501212560237681554209783040296626951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25462974256111314633238087606923792344143885068164455343124524346125702010248610026223166025470990225358476285596524221008345375662459432337278203181963286577177680098142847402494869914932430789173709849388314040383555795015235463822726840930531969208267716343796401023585753303594278973818703061370468867852659514280314368700593318386699149365991784765364586391375292724028534065943331163528138960779449733870670775119346531736322427663728118162638605326117666721383862552444870439322579787396628607052876342483908547913332313742677421483378395660001621006150333118124951726960460946616496188363853678354695186638927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24975016047938048314299334277099420780201749619170409224360757183246631702673271386888920830648141833622233806743343413609350097854163088856000594327898244471635860132005448933560119287263037971620598302716133517397941403623542271974319588357855370941982675476269299651036229573438702695780592159717916688288756740132011484631955091871869933617111357910742735342610790666012421276680877432176764243108357326899998912153492025943892100894277091149454613700902794102418832817417922668456003591402087719682516142235210192017348544784197366626675006667733461098038681182884825116899354425184402846922637276489244676763121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26936372708128593960027356691477372465288066454112058460510385588677409297689592699372674823702793630763183279831365269766734398034000494680982648677578000269679634393197575702054434004773048790837344159942707037388681070870092901753787255199141662452794202792173252892418176673245458626406631026290042410888162932502062941378231670409599297051256808521113024549058674427259376110545182507933383884308988494545046675000539327408137645499691464148332399987244492220679170541744726740033465617648320503321444337189227080198701882509472663341802279675041933095899790558817115650582122434093537021042248766386073704135489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18888392853900994805334443855313769342105826260347529013011577597149404722285465010257270375227707954963005270703745751703138110957714919254134599010187751334421898619795273842549481092952376723429738245261918859036510996016881622886601887879680334951597738323374821843354240881852161238240572353724127873304054336814177277395500625829929422445998882997585626112108690773184181457481384134612243057980677818021530633738316428338739634361393880662611815449030110812404520821848978398115241182578241737608153979691192348417775261746382595695537477742202539258744228287722503801034887671105642681856528212618140070949047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26702673600978072183694250190932893145799067381884035256867497664843757267319840980889090334748933251560317309400779806350166711797371056461263262691339347187443848445674613231409147522715544109405192218254953498174857787556566267519032526116115202888240977581239981533561207139015622221124175887872322886993219082140990175596277296367155213502158794039810885631677554680144991464022963696409476363441584435218947457460083082537605020273801504242410486673257792950473789390566734452282387142418970976213096568351643118872266032214497337377388866445639903965589657096050703278239701067582727963990179189880629073820111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26517948377410880596085775771541606743728564706171611117673505196552025607764695376003194132905757617130169622927283780288627959713874176639659799798212876590527366732310486873903226207314084639989222079415311690440252461620157488260734877450210227908205752772481109609295894473752674580433177148812767029856614110471773470912323349758831827461980237528785931947945789238187387806742162578468994577413085303624800802628340630331651425597703609474934171129874671592920910970396378646135461138888131951820001265672473788999392406483400997171099527146635967815409682065377340793207769626105554541830508889514212226211571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28477508286950310608733906230600106178407944041496245511996679122377919372422588846868742547640560641672200300044919339054931786208872860987341277431982961545885439144874680026575379540180416620862872636674182782592757985441049625426673409758709138197191507271113872997013597945163868329291858209741051405439223320007467190352051543914039805017116913671691607031279809833515365465659151366403309904280900042584923478920274171301112297599618391490391299672642813725193670555499224595291562229292209190478319607158538322317502872164956881259517198066974462701918794053141107540771083787123049422094054369632847628598417", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23040865789838704053564184686229612059422693297179638272109006803586379068311182732126480376242078690389853583848997789323350092637940746843414604595203571523745430366963019121775496646652935435825664362768556684503512775974504871008684710813657484532478681081050262377805523876960316427146242749681700171010020505505578636011018536447858075166941327730336223004010101982079696448183837279540250297015146737394179748628171245589456602209952543664599181792953558089966666845643212078186274707971190496490681845091441341511065656487181518380062350654785484963428207886229305484014681376804889118561153364405962490720257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25141266372382529658681614859908310473338725307436059097381633258261694291747967862309113038750510386140371857648549181634324767869891705473806298644872029467479664690078812208424919485529892923043994476817666282517775354482401205580338994339375363354610066394887336035620684666843379946343179866138500993923324280002005654977186679210642609416843552141029530572979169451912124655453595308519394422022785518274785903176718209672885382592065421283580671962681354181356600657023156023759120476442380497149364977800223467948054338316470888197678152207487170480554534139775700194860839974265394701459224512573688091447653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23660427179300700358877777281799912911295211324246417518066192366168343747335059335345341413095100697489884623623526176046004802007194146546998042280885079886863669959196474262639154608105860116717259568590872036964430809523325512166364199882292106387546531417652290002291639748372961183150641587460596656142460114862257932535349853383567921348856627845285900602200685938994175843553923881451463578314085257363739230725174162883965859716522182254106544181449458487025479196989003610506798733667972947549071092814860539708566344781545552969545445057084316067948380661375323605169278537406652371551042854388608138730211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23379876869277662999254995569565321339702074684214860530703698791045499665647493353159985651388637031434440510835190918855993697873483741229426485454031237569399686962556430642130334426636974680937731264278375428588163481534815176080067067163392160403121980957266832450594139697981164117783733955676521319876819442212548615028667124731723946931921566147872549627638764137727576845991140144157072233973794492905984570213744476028248404136845241710705683300420696665549274808329659577305706870143007164888741468226697446368069349124365965459599785289269250872228810519449725602097827703848963695502115836635664700171489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24276862993554787808515376366473603721316323879287597422500147012543936396026742806867676066754877628385605456398422649829734508504276037055794952455361575485963977776041683766610355331669716099371692132728346687732437974949790672169683306118179263019233025600943962798662880450848306395368057326540030219511331545279270380097582107479837990081823712795646007928500679807414097960184816661934078036589853985857582573577135609266663636035017278644794063807667374003902278054167577550431430250065699754169528043428549500582451243595284281917326626357526265467462867953121329289778998849651930881417701213912220690063559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29859043103600240301015275909378785843980358721562074918278405145010217369007539055965300888233921456342274085008616769526281574419486224297753447958545345330358861016754167504709154425967643722305140974923745455304118868398506425510070164265582867108338378997068811889420512847590414332184866394001726711702554884791526660204891099426282828035438261534635121193510256772023150729775556957073913421916710531130441857823779664421162779767183516322658573096187773001590096477642944730854749542061434593169935870353659586511516861239448175453223723763432835652230932502077796498661310864721668634156873396982061495473233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26978280293890434327410913588417982186973199951626649396104717553313841564082695128203061809039624156832877835903590288684386866357335226698196643710120678532816385887258681839222955090325501005153139089817823531208066331883797090801072357819740904227053052336035358969627554018739301244280486677568367440676891555346009727790753139406863032853549237047234737875657978583037929045431733544556057466134048159425367782264323664423809885061993530703752307585187743755415168310610323037772633915265853044195827973443328343568218157825372290758190248048195910584399347684381733615617570053545529683725767331038483231317937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27358504881935373166822835386676385545757527368735957984882839881417473572229487911367604596264240360648286285097518746865708477737086131474862597294112492283405349043289581611786883841943510527078790553881591831103018760325145114419351416131325559817173203012263500285232452665172582587029973885447521513424401771137430735202944688812208997929980118025063165698453141435847129847722943009201318128920402293503369440627700942374741552485724350739221408975138988782286292955611416857154863959701295248316855748121118266931421651114999445920172384467654335172950434548539619868946002684267163392842754259091101599112373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26278797411272534335588394912883658100312909815208662929222408859458155880214327335936784727035337885296307397565513841104071892942427773804057057846018938825767683905399428141205703595494102468510427366445952891471585466677641106053077781684287723957384427261447769965285087551709984260087369072197705017991913647646084063371132862042020234945470335100646557462504758087427924075996785886142952225240699963649118297455774083353256778421211102555171481924972473541444757107570310791388258717044982986193590630883968724999502555071489307585833773341437249351408916005089040413682229315982177991324774961360832596305217", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20282251024880678465115985182274777248641988040179574523507582453598050777759004217431082432761358388670853632350121265240980143567117357250088393561986727515149193005397121370403450182371175753593006380508759554592021356608288208414875187831480361087719479517349870385098105473829000055242428899391643006167831688968699028479201311390012766719183381938060095409092004172838212850426566061762331076485102188157264521739212158513739857193050213857966546819556041191710460592970425271726861147974313536921893620764966583055780887017592510797625215138461545959598376731249821993126019864326216269187759056754463036373473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24729840862393098868132808435641200582757573254418522559554011073581385487973014146016952757464843588179447817287572822661376933492741586996267567656344704023413446106688161004405635619395330435475358907076901373150730597456026943925785046470912647634501880412701754401609836799463289856133799654672917271657313546910893963425137318331008665545117807574743556913426317214043662563065189708955027927428420612246640892383566090839190469729021292088480619918071438006017165343604785965241439832872629133114861533101646180884799064220898215238212352648011030777295514373167592844541062000528228394012566699799293315603781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25799423728080299528512684101498708608801266618165177529640274587967769641183517323679305294628978383771331363064082065326646419452094782274882843715449196338722408265641401685809797486487772776541874771428488467223282613047902889453666518561181152487079104165563821942212078018398423060173276050523473071333363388965563451000585307072797145359432078180235700643109652611454950534775242713006380682601903714006081157303745990225293675751259588823435896253876560948134453519065617980575265122847728463231497517991962765992236408718114751347375543608485372068652329346312689008545018889830404319236680986070889747729777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30264426984038825628688389531693352182421224442870960622308890622424660486990424590135861144864380484020170066631365482043295296567821496001364774639001048120216077960218074235413773081309682444331217940003638580870022776732983442080092414338556160100990471862310858449853318241747338634315607487921679619038632937614300613487831062380244973027820857435084026448696905785122147789809702093984941260569948074232392837126013915498835853738030099956644318440194223593297338413357999500858035247086138152911176033164053038541060220872673682777029396820233670766048888784014423015253950947045226524776845544023261614386353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24653030253019321034180041303399897939503201488807378558179788139825067902675283341179541550161698106588501249190078811341594479645989847452953064008957167858323090248072554881812983300270653628258265282226725533573580313662401767317956259881831518011457689006554356907057634937318575309660400099319645602017919230293296678216889174225406610213339467161426122217629079914632072037104305340441140935186633769701315706189855490418159607935390465721323360436195595042212218038336401078491074728253499201401165420490891968697328802435677596947615823688891375121106134048878434043166192605530786730189568896297994564082179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28753462163475774987872026458193224148687388889719497575626062980709676505947938511508610473536991198753080629919147002530377812226230629084471252141934749731089544730095557927709085481481720288645856767048325176431528935421477315753036780615502304380250842678724769925423085657860290428619820251794934802281226867314739324268632752664945187598968364106240819016711027621319838928052329010612334180799607900027030122796315616061491134306869490412580300797341926434825582230736242400413500559209543728531161968326292256034262341294183616726882657147810434618836615956752407987357731264646900538266145622343931797218289", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20395458658499549263087219972714388381345736397072656162306477927587224899762094088617214800397352586778099114147192790207731419260463351311811392496384255000565468177215177075657071786968789783422158623707867731758125281383849047276162093798347812603113061635916161978341503660175594840645797838613756807334281858237430861095349402862106231537980818402165029876047481890645414658381759345167817040578867014097109114432933100868687880439188037874444044880931921224324213464252788906812157855272195338546187482857557565319724134152331250611855282890657593620295947891013127594622990770891525078431156478292726948407357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16322289048948576765103581203776693284552998534132828913309298910760984095821870182990345499692327911195296061402710041571047189153708923623325606825762901692365171662557529552924265627082241019706355995784797627485108932624169523984711414723843149377401071863555476325265819209597454441272980340442846009195129744287915876228168762964240952857272365018505638867764790830261566959808669486695830859184272873263434312560113863937825888286039837023626317693649501774902179112787781168544796598746139479923774871672154032230978739183197070033243194659467886276955562352368274323109734998798203749807963364922451948745391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21669317103165640678609429316885537918620013220640838567763214328990876436807047500250044356876236267955137700252985042171271694606289794935550394821958801675033404219429861867876477661346149688313315696892103224638176697004943695460832724690596120503186741194473638439464126754814883433634731434007244156469353880743045582269567441419194053678536631378739188420952339103527965914530571433884676039237263417120388149438392546764371018725114411234328496189401349070062506491780059990681809763040506534664948183872314722216809603042037170730387457865217777092884249551335085683560223753091670837868925974038003198363411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22511569537793830194523150774615358591194802189733150082226691370925148860778428077650683367313609989067689670775813521784453916156648007394338276213426403653280593581765946592810664218344349344497612971294005919399728986743020231114965042078781838905596710803501490789783796805985984158276038408121831521968452873912846747080272227769092974592676775427178046165516596054298280900633324799647466315756515130201049789571765937975566507141462269544672241816483691159897770574660756173705264477849894752717823830784319642618913777226693767626209918391311599357842038522949134610515739476358297723985049158345607191630307", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21648563285380705096414620035537988467709905864404467738225479767600757851249949785147291583010409732018951760860595214549458934324444571014888376825749828087375877972877882348766085723643812652278982486338130899641926211706039016473396418237465706762050000996152352413856122443454624758422334286308589747155854535380404656792801254369748672616327429152512547971298980342673105341497523702875113829127919595841262259327750860503588786077339612279070917093523076234822974465727740136910814970558731913436821583613050570578260173964748603560409645713677464773704428920503852451471074573851960268063483350229739270882477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26498767956297616741103237295267329415709758771864647744042921489704480338312576839005087021485417555112238685864461322385783004376424197341890763270208004803279392628835144030478598577240036605706637648622115581485648747873978691579523949955087814912504942149936162269375528072762482804799181817607764610535594579878672710433536810709710306012866543294829639279222416585402928815078491066869014269951346074503584594803354445722508714833067084957940598943759086886667489986613709734034217708786713731752326037055429721089747986142751178811907619746545364030863709056965773207239730995662305340531357999026222858363473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16346665492480835934542582650529816093575102235872950535233102935497295972271671721788249652456702751953313197192542872425239528808819472561339095680204449545442205858585837566864097467657235823968984978980846144095941721446522847063789961700864226995833552914705271214114910001230861773704758481142860444648860724954689626151094088242966740674004632115294632246224339758966796002808642737459302337976551537513351836921753284219772932796858206585682003139977991840617539123963560389750540042818459387077493413028092626720208578850618381413549758302310530991809423368846670664832057225839279310894109488161861004894761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20516468295682539203793202577190850516589507727792003425978516863703033180569100635630589319577792597642244979060162822164303262921166388470009863411126893056406524962396064132024369144413130223533240459877699785553181110863571707115477874005349365751354999407454913030937948292139403742226781531446497228361595951583950446946641011216420024780807795814926731711531286405196402825527453429716359577835522346805253229908339201905455004219875883994512031828942672842040088063732915459073875316887204305982580586212822388317100632720988431057499573666215916534391131974382341512740906454615494109539634070792348052769141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21588505662245663686276615503901746595368579650698441214343255754525954071648060672821023755549324991493319409773376795089468565055731604046754545319034566929283248118549024358437035753186906543391015096934589827967033644417326409941028798125886689044315726096966725960736084097334899655395494756522317231618918922674132980132493036272924055192632100706513024676907805837763141739912657398865834586523766450386665276103395115815404119351114779100022936084272100301462582703535353715958176261088032401271620905844205275017647895750105107717711178670285983793356578794031735328793429391282888458709323610526062376202673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21530849940536396024569650647880794125800690250970263936142142422936693278729384590878212513356335232906675348261368744462212715512016429909688987511713550872328285490646096949290252570037886946453647642985979063302164075311611556789096788061405116683445924465496068267966743533395093888498209245646140025804293112742543960160818716645945416772424968043169798685751311714427933326924199556131245762850610642493707511616368005613358518757134897689770457012020870878439981372068491210065393805648617019117433665367734345376927089386903311413878957032740739737368283329472111948283004973040248938382435125896267771470387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19166746157234339226004488783974776640494623991570051073696383165534734722400201611631122042430146370970826216822473484724525332830480608024010325406467574306782057782546022856525527293018778014061021535136450741465099446057317652469096572631469133945349660725239449086880720143220298652752341675754874768184027676826904308746987634713401761450188001967482026944294768387039064906605960724750110322469456682995957394740268159784034333540952649903335314919230894329902032147004170111300586927450851807949117785293284911889955215366088321048813062594728405104977621060904243567251592809549993596166110176233858094048651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21872196364525893082486717307878278422108105058919156145685866302043763802764347944273779608752703713368880174914995941878072745853730153119221974478808642199857921479123448306172002987762901624466886654788637372802259883194912282935343412597661306490635891304801792541402976291253662247901189657098992256140919517654221231708230346793115936007088109121823107039439761566237924989208555960774819225775194298514014253892579918961231923379490609800966899177207182375396759693274200038442102361758186111790002332098988038626526859918140094091399599365891965210346541734076564358678321722922528137723980143307981206726837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18930912849804750477950482825464446080115877284985779379578558019102546141903348879488357433064565639462505967849542020517619725501476493749282517115708196297053637701516636955483128623299819471505118086899900513998611435317498249800747749033194415969477736843324376072489318103240446583456690531031994555945408215844973895030433631468662361609669529554222922234122640348513068343676541671712682300878379026413098515357931083474319650020316105165275257691107854843399506647809356542822189086576304070955761320172890544419604473740303174234675437756774145840323963895874548033529396075967510531459895859890431943080501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24394624316250576997753919076212902414210022034581037514720298038189588073587907691320003291800573654856875729926122622306527576808502312248075938689445887084180432244226248049593597624540900148469441054431919336306217797859633796243902082425676427467486748808758486656480034331147374520989998370184369966961815139312977801427514224234171670855096597675002675600909030087622862070358153435924453797321036347071467298590182031819222114024709937092823864002172626080983701093832348337972276276065295308525681765165128457310436569090815579119191258259964470414116568389183706570129136278366174371736305018426825424008427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19757431845876625875281938386739841770334718728447143468556526582252160434798903803357360146300779004863064038197536326307385313458714792768318376763777357394291051763703224415158218839857325951993463549816166031456562042130496475613027170037165450433745522855013351924970732058147711964790350660599139660204082666432578641118016142150640487258754516609919774869227583638720681020648076014045589287119918730942873320367557408986276614482188489622186655954120454283145507088407932682319235315291538254601120058438356377362750679205805148746854449726348789747585601582494034098637857897172769637797031910996133544002813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29260881877021348732804283256859227525078793437008238260074642630316174209635059011733893958790162233824567384110728731377072475414586871352820745693723253112646573233229721389805156507595921103304746352641592660909590662156280428070853016965872442313423254559406621840187390164879446898721401998865308941185945011281692778333736085902503401352717434651749105132011019240701953287469109306178699652598376655367934759457058130110635541076487563807153952029989660876215553686918432479493665228457334798274222951054469387959643749450799873708967619836351564374490044180071991094951419472775268191674639973386162705224859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20183045311849473381543196679462220499317388210157572908087650593505646793611478316132518884347098894456736986068967948378919962011743476875341240070778001293345786495639072261641838499533233364787732939174521684405254018696955371729261510225904299023778475021230099205440853599128949533587516476177722315501076328134081709282684055885181922143780221546175601135466889429062010815249906662071633582752182279584788282051298042611367410955427226226229904718839038609491485592481515468737503396444563548998486457775705395597469291584989676833526709745409166517614672286912404242550595104532368893777834386714830934640339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21688899730604031231018622382584433002675937523966198595872784826275152389360181831262820142630677728301931778916691535022874407064094844587615134310006030717214597298737732867473879826466810569547911390201800788675151366206659967467486891221222118416661064315501961867496384161470607487143528760960065931951402991904670435023238131563436452907365868110202454098716605163301500118886617658824873723818576421065950666699505514226537311592165371027339368640743306007111567435300854630282055629593822670939710555098073959121538835931724917424127591030318310322910813610289305626569631329298249154723934753460919318002933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19400925877105408384480943253803266271859101722230942038048371965565296342369243316746378894990477431704453461658643800840632897244629693902773321469151281285706970937192142947573667685735817371142173530291745849441350553707592665582937313293638938503446374985732171832837123340387353539513336890071041093649633793019281929670947928725019845541728272840916558669974365753182622013617810565730554832559893650573608983587836613191626781882448104026188136012963344790786445303611867058391325119557259536870905577284337539074460564823150152293736973212718853454928813802999289439270215390995050426242348289516245299289561", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22532759771976220994764662078192028439448752455409136545063167972037023707102475619764367304751201233258808739518370806875838478416821824912578591236592637994149860965469042920963536341064715242070692315774064921500516852534069760797846870959190204300447777003041610560661247859468414707384131507660066307018690069223932995781483781448645592838558715068810192993202316892538958468817873171580865800463985077984375482365786115989476797404810628558634125872974416297162149523248276733303176112508592360546546912912212196471454220009609308322637801165986231824521939839786355593755142846840020797920239443958259422981173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27061488058316493254439153519260982490990787000084986945268649037715587811660664154377376511103777065788836717584307507642554492073449394915053673288322282697626326519265027640125277835032030177771608195197805746220095586394328836536865070360517272053204121057085146055366866039944570226820336167239571866032867074903570684266341536307674103576623446607602540374663119682637838692467020304528430485033672009562002088140935956522399737261139143170978060421205784625129472629181559050132017833385853374168287159928693221701053203083069278677498217171066733378562284820351854469538785917619765948279581317993931933052869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27794626938161245304714938518095278848502639794184709710844220931390735501269340252005223407136935988148867237773707952322136597321161041877187820767166764791090160187647002711397978799792325190121342624985696053529405837911484746211779050212252979444780309660441257437562751898660210483257412298481583466553668123581184422530491460403896251374408335982381135733028734480160046591773777331024783924767469534566034670372531761037732021744437443125048371457307939844418375246277007325737617684281813724161783999430085582269847607087609379608582443186712938629232159098199542692294521206932140226101168075010796798579163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26627552480880263637560131048606938303783232141408646219130043973400530635719746481916474047326230899516904637832889135754690735735178623439789770289157580042412454742253922284608207868940430561007710362817728300950946324059173694702529768811630083005679644926701352879751458494487816350117485308235670770373443012228739931509531941756870719791088737481386529804367211458380173513128888043448560565184157290190563550379575053138295683277293565568250106855928731792626152715892709738582155101068105216348202905023021739368862982596109612239856699147215569696515503766032665687740847929162869820814539056710651029958391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23359267404784638794848979367440258333119775352787791444282880500836383857407687662072310660097707461020462667481186234775804421547626096650165351407183920535659989517738306973694706109932862392028810126211617731448364083096668854795877899731648061033625467300335507453211457510291217132166621700425893989272749397591789774895018584576413503690388330805205970231965187952118425841387258694112732219821184051237591560305840411059094274631865579953444015994502958144810897529733899742547693708415096828520258570555632050199933751161951288854870021814310179983765337878600754147494050402553681134864921006627760444973709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23711769652165307306549140980330683036108347265301975910561774194399917977216362661732163611429190918994088881838915882753265186773634025734663127327776202347360937425917567242674315038705843949480988070575902723374557095619301652381026413930541002590983708132852670528634304121908072562003067618332774365944331293961535743620365367114577876983489356881544626190718931222501945161365855896476638306396555125736395888853595014212833035352582908878261612830631286115091094659194462708621516097590160950432793770531479019471695042628365978634804022680825121310294718914560078909316166154883073206800377561520173599918011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25431855159118176054518891666844148264861770653727349563430168867144584613917588197254276418633439702261695203677936527727588805048096780097331962691293268794590741793463519416837495078505795025444304388866602965535891572481062266009241122132048475897761361663922498271090318392887965239851233298317635564053805303059460169058121985218432308144319523323798560607448466084633460130901672589073326106767288144093425941358180928084307777813148634495783060768438153658375734947093787765172715146653840066275779097873638875485005818640289198671241412316235985111965563233861355944190593186463771892780905742331166588658227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27658263092058609161100828673740080622050129480221529313171976647409652461571496604297918479780495989271053645683175024571443614500047347974774936412329431890893476211725197943748016546239828371548065720921996188519688384206375746888596321786734363776417676762495653705832606276204063577402187472761685999502236418305237597204308658381519139613140337519898366641242505357482970212826006657363046568789009886403495519928899177775584941289904075579991778739297411648885148930067571536689132746479448665975354666702325403161338228627840887808327680275433582357014830711535485204943278152906455752212403227757238005391743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25005881430502924138853265057072174761980631812095598168224067992173076589429944731244015523346029533725291811989026955293769759186706711060975255753594795073298569309900145319706782408779141287641802246034772517726322569241163119549529213381646938857074143521718710166517120156994383225939984285931438393352728154059377486941954535015037432520891231559507698393859450151889428807268872122474650208338314820016887982865519759506057681027831881258517051316088378977874622692547753186200329636269192205799486339746967229675512624104697917966111163728323300746170882728703328593209540913346930003040267617134633947808819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25608802828426178823835205031820399651937644491671444753078236952071095352498415522826892738341618561989285311613638373633439724292365496526392353742424953569810237980001711651137118614150170021878539202285560814716911633671770013344701568989243326841951697240179158673310378004109650342422805864587319212999089849398200774223700839574302817888208031960793206421746204505357759671394642369018459867415097435896177344929638602221526890257101241133779824874333994011447467511692008118252297775744108066383368237299777393873099639426853575998653080500225918885365002685811198398496397974682853668527883770762977677222191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22873152449469415919061380159703229467521983596509474451702393498784682101168503404123923925291799655342384290653683546824606697597797954524767748010625516675163780442701593902175486420697838570604698442480202424856470867794512131564535614254005524666961000374240615789361808105826033070025411310606519415626240249810376737278950836335017763417956244497607244352300335102729596991262237188026682485154431504812166952852816084111929787575961710007261718990392602355950921067328753061387676874942236467544896513162933201629401182253213148157297943060884174024896526504136412619427380017915727074162899460176028923872623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24163677318284695309468960733574644990983593652923528054501309597130868505061445378686886347147572590350605747165758813766139647877253712967237403951592621073255753735463913367477736342000287400299043979009989432507409336664122701881566926186607333386733787768448265288275301759292883048889468562795388555163300456001443309927234341413021819861662123688252221378484332840356560100984963727081232210504468661870224118036070165058482397048221378228687218521041669313061709837436094404220403605998175762224035615742432791689552175789148639879179209242061940053772471693744572882633445778019050450005076419589741595781319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23014016443217042361788262442801865733437745389215743876447374736001159019930746506376262727154593202704138528095621873990984267292808091863726016140785423265286938616812554187252616311290554729319026546610122348127619263826325780345162707725200777458728815014198256579468488499235537462250322585562481849791169421644939390632960277677606597849577144185364509195569386914533788296980790405424570699976711182302500682319947963259487176890566761772065333434534442418259376181249223468160587654652275366609776250817840934918648906143845221012197599347907855570624912499867735904893815235738320801099656912916778560881089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24506252278515781258952674538742752635139848292976089730329110424458721325032849783172325627842996874198403593814087337680903162367552794358459777214019105673317688892034164515475054064963495327400784799954047662706372433048634497505829057538777680984059572447908781537361422824624164173497751564423388648386297042143889824137771613869184743330562151411790920518223602966559162775808464095181835041641836065851495883740265991257067054874840344155741319949214813333787423697088797631503018617020852433967098778496928661311816830877958784301502253650953238143190684922150582884095181062559293016117327939149011903385681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28880313532826810021612647598522514336951941214127726130988402483840279379729888586541548314230876107523455773600508698893737923936622173675250034041364827661011660267057464974097764499310837786002982392472787945768134895990536283287793013392204388213924923079648866046072256479990313108021655735525190956746572442695456026457244169914787052654765110027398989713465845393708160870271039321238008524020638479855118790050132501621124089932852173833745870339337251062059105280919710102115150012092012703065575460666857574854499015798877438854400058855002394121222427291027703678430216134852407154520130903307605300158889", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26185396880365031060073344934390004792168525619678406849886512793369402729077627477374979045975583793622391842158570530878944659173628211283562224628367837261687430406130037283301674928761795685919708577164909144617622421484912882781462968873433696921578572975569094910887857560808211005095369975134852433780602819065098275300585193400024255795417721827109226259779117478485854869822945044219157980206697147973103850164011980074636317498354940064841659781039399990663166239737582442939825551491876198930629539462179632858606620853159418551564206867203848972309353477211223860548871801905200979404684028271858625481143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28307107877695746183245287744779581983845843702823321671319624003778397320558016973152298992994373953767286699559650876774015094310433079996805405793427675190565873200926308970265592254365796191375138743274424084642919486744879822953836168082192777839418045460236843015838556645935572479314064121470828318643698505355619138254228641800417985677640053204041889033672195165530556641968481799255074904754599931017407459994772561478986107415679552463591488589451727734092435654960077531807300237556204557191609167720444350388164194546166373398616398366633587690325660679572714535989237026897390532389626343513341484545107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25866411640661622681948696029091611751562825016970111084876103043716262361539776670321418627176919033943660709801419329811538294909990194108067195397988737870896652818255522424112318033388014371588196693555611127742126992624016020969263354367147420047153142921696214945034552271080839944353975932272351169010830899414244855438050826901904350150533737276428717627856693043749954498197386457337155560693759455245309651150780451090444917732381434930133600561661030396201408793507667925577754272314053301405947423014421407609986227962340635611908679327399026818102619627674439921969964593450585187787868762549048139218683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22829455223710303716054682168662561086659317002884909513023389484549473614307558233687764544619626215153101228311373602598080614565543503426228082053741673714075529950617843476985486596249984137825437186476351583811898418089589550684042398634342005184711681302147966269193311799568433780001874850245526576583008879360129897030743189515787541599238976117421055188544019433594043457887302240803072908481515469050876689220960548405817946226929244961005591922647585236198908482368765135950289233000287150570804858229047612099337330896542766218911919028299728424418472149441217339907371717612953873153185792650105269673159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19065196033077889740041750401295706690854483563926465414973572612129095550995150726319995154741302787797903613566283647589792034199975030693263478059851609674151057828210382311485778423740214394540050397112512378687310915176932249952630111224346546507533030373692634026208356271110101830685201675192896394622303027609219506389609165131255812220260841687991719344816960888888605214279991321834850639374805505824912391118392906396192303846561450155030387838333563044087175098260257211955652144499494758288901136614690522774569799604533292428490413291400873930742390334336932040446433271831915354309228203129082763603989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23814606057553496131041296977930786714049839058455155567202016563018047753334819540266619604526319579705259398152758809546726947092498574737559891913955157346453751922109311823939526430819533299948536393746667442979569141954585053762110240501444259398730772393835395999588724574755395701009369050620094042542856780964306384216371917578786182310568714810082820901832172592266831370808377012724718491118662667522707267065451352986642111818663147158033322124517606517252232968999307829635214667918811426848698626648678398827189602963645278921349894689667983044878169087255825408124714900547741275315561446281662387339591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27778641374600293451176044392976277374947289460178131202499412985214154635080676892701925215494992610416687918191677148888734747224133445833343276300595817381331970545463452257171449545143445898935725880830868464420068059370013451465383325028401630355743580591993776609503293760252828363221349035308466996442786994538983775683818406944570940611430640760039458303825449520348784339565306415486777142511857686040545655617667936995372836514893449417078712520197352828859314906337422936797513212958650422265108317556347631336398103651564045597567014598028031774971084044285295863370647861441703168251762872781449411056143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21121620285455663560889578324495472585100978919221641342381344954075164350377128449478075738311019745819523757284551721736546588749280818353797113293280355298922052098700494673786809989182868140995553429061465413023975120188437448002741431859865116798393302176082893054154336754700248285592390534429653764144490042226656333229732128876191399225684338215685212029824392030424321683566707864267834959900539794739231749585258762226370903970854243216630570969887057253415413463496801689754405811493127274575311851188834860671050690870115267845826604867868696234833571318724690309367383763566291851132190191150892519054151", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27631578119295173381885413424252081475594410835590150844748767054624561030607143815147054003817083361935452661952266695407562294471086410818759086700749066138295762194873630038285025565209895799156024816989476590297267841643337109769139988149045175140844206753966716187111571140871117048475041066826600591887921507629478227004525154202478296961626818077535639288180641462391220758300256084279170197620861947397417698568893597747595722921046713667118759051156772531455359023002977780104246408443208638714522276393360566579769220256916379473718050944640903622406775380080004597587074522615373212243551539231359121937671", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28390448488517520751622683415663958018278634346130746332238559570092553971676450532849161941497895490629015804206092879563665673986079633129718152936704231224730199084081745825552304260633195251927778110177238854921292479689343974856405589270239945872485787767271480504050532784317295821476852432649607612477110692072506294557579562171831557222930682728959331067705554200843806724246638898677257046913192204517941641061653786126495146252751223246297423942233017966566883283799763779585013945763496163685593078772449194551768227795200232837531536457439668770920061745567564837776545037770776934266327979707440352460997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27480635141139646766822298754200506127372622989085225995415887408526911200226998953491665093766227210220070281740148542899315273474987280765020908992000981382736691401643544574274761544731670301278258581783117925632969854834663928405535388762827988972486922940373514156832209016962878482764367697560586912441343421791595116366507610127463431266621217440763897864240386414823862501667364736432692623381766314315086268264247193013456169493379365520531738781742382303077061992812792487814219459481383080641035350862980547943942701281381131377130009096170734532668487430532797175296143412821390242758552894534483141971053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27088029144424096014233004430480732654063301210535013507200395420435573229184004417444310566793133729536568394628108010641961792540112364492485189399672857514309916342279951342249313170896776585325893301066844209675844442829744252398135072183234589565957169099925797166277288069459450849949696786471895690486738376018630401781509897109853276419651727628567322868177360311736703881461231898923893413329257586925510662898124141010678407659680179063191189064090223813153373664526680769873261679478744623166553495187994624161991998994641364670647062787588555397052310525203589391500986367019352574227107883466720248996369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21497972213271093867481761570040409280827197076030180703136853561563245358376166045011029394772361358568575305203189413021893131748808622493845578302602476419501275523683605199397842335870304423272386611035548741394175382022647732156495742785792929444093988864908287633614075475273303918772706638183600256322576549919007614386789468959478647239355458500799849294385080461268062295509955367890599151606561106082877911660012896244503777699126266371651128660482312008341224968747554566579403524902178933858889097298758239341002721169047555600171481906085679659902078942406446336759214741397264777037923579843206441179231", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29471816608864696719605508910211564640462670158676438580586580312695670177240358412299079743695666675346701628431465597476051001775745906704546876447162477400580187665589292158615365305003647101425163173758805471929740995500070099909226273303421420095492521894423251502155247859263542224492832851734535007561263369848010400884125349713713805832216871560231365834270658407036599815409644567622756968347295360138326876024553086423888368673032642411169961713058629946393102708284573807093726397619700824159810853935151785114954208421853475688422025308899613510247437125064713971253290914457226389303085848900094618265091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23056484071258013084282609686634035512319811020969768950856521417075191134919579887829732318196079218298569672172538893696509240159744086637482560771362216090568077652332974303535058205850229979596226658615884171946394224911247704616013985220899367169855167804543272938114429718885333968925821491139489813245207499636583113838044246428065630811487967527167465521952216893069933853457584631297309307853218799464487832246530943673119697283841413448205513837434464529640154385320727787595756438248427301392641080386380361946389506164543231015321139306472217097757688735146082331316214986396393296816910784343215441557731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23456039738058718335366462844253632632291343735889368263967069532974745053911386957801574314151685422740769732735710315102164239010002112489571017010906016409062882260527956265928984507750911997444958838123292318097439764682072002078898690952881561878296912296600975877607071596055636313449744272831635994256523801486194361462042011883860344015326929087344952827936107305121569045888687257601783251164522347850282205136278398073383101302823321620195794803882377026800035340996470575687955538558350741620763243070823202773431455041225783254717307911652961264533043035346779280464888980086436528443930736274099742717969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24151928581474950276749751157348623188572309212673699564896382147426738089707711613024208678091300264128694917167335867305270134631752097064640676678885397106509952319713771406286362469082430966860740084591944818432455026332357194398855868867409731503407720543412497446830479890254851236472425020757046541451166670023859365199512115384896346926799762025027115313850117459779406424103903264803302089323221631520216350085098825216557838948489236586268569556622472204096515673501806584876563804238028393004177119026886711751409332068669376971434720207117901777076878967264730543602874645569056898355563845835634354657669", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28733121617951586573493912266173469623287178671830721734352760772246893592805097572370044785376752213230338633895981028367486427342128737704522929216264219310768888171424554225802533374698543533541622616156106279804625461674622380510608457313562130792445990487334269494099981199048985124725204342740646716197622503738155769794175827140954124136321131045597463452695074570442402745592870458204526783500963135060691880780850275666573855133237745715178910375901400310895671213452347890011529182455268522380523459825208851557245131324717533945716698511034496731702552715407813941615437476542847492537269640962916417257787", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23526511972147686505444457488532223374071379121025462071635149190264738592371831874566212214088368281389535858750122360930837144357685233603611327893882658943486862597410528206279401451832562532680633549642892390380190418496966666340071828277973447203824691352659225128894387763364728187470117834961168117612003063210782671670102237641366495501102766349589703151926839629934906827283921540308277366119254620447013392340581897001934164834557595268588851605410342112609459074459207426773075403490557732711665523714159155470081138379020829990022432445786831323528452795207047894943544663664373799471009437625792694795603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20905153349708914685273964661609081474772789277433992818364379256629588213714995595474829636437554622388603691163338995688400496589541045967479535685958187720313939103330793165200017704219327412927288013431093097867849629282668283022520794440359960697719557665277831130497705480788941126270025725560861795371491947282616524005515007571299034293442657883735841791288076324764467706922896317205959559344060196704515366510124279118781959659222780065305592519119123966028751348135436327899768034284993152208352773977831983317230017459206126643589254168813359244296515011600457190078081856437868679991065814956821065211429", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21754679210826186635604434947344277279436005188886545428256094022499906634362519620224159504280299240125281623542869395335345170521363759111764168560201351815820523039706734131726834714672080594360384523965344016306185680820674394182735266299912798496205367340360536282390020159608726981998608622573478415058848504862896712608039935915589651812087073057138196301545480411508983389177594983299696121009537754562665593901412486593273798368861045650807302518927472990205644719871376959452616433461783168646464941558912478455627454811944681543617449857136551370664088702126880614448610395277971254307340740624596156374651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19774253888976319284027629592577274172177512768211506785265035362129713516363121419526950456753960313656064197317299890520553756389528669585024600510041511317662023437239729758557543674725701040859861704931908149181832869489560603642262862100826207373962833940199922707562334076004223851534496055422761055098124358200519453867816558406238203822569698792362968624717390283065478716931899663383774653662879616866868477795901496986975479114235249234858509363907924525599710855388028268285012158560197271269419372327317372697724357585478453434277348672290984315703419371204641801425498888672874599478782767851748181409073", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28121108652674382897350058369698840106932825063104577523520816286057598877515664773416077975840035597480676001522397900465868765757170521242240117229505700782616076718306178561286626609998919233439382001873887981440873696836536029886157243313823616202305985969428572536417043718244219460862575501593182586621569011582101625569966081132303029681605773256806612087087096748928170553729113733797562581603880574283213967498050283212911554191624220505506964368899603045489277090813419020874171884944392518544235409908628134408948650306961827255737705474515510436869569010728876379079447628080836732717704711458424897090337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26450078935198177652939270449629076056602282001467859592925532874935556118986008920897558226812320690570455141652654231316933692909775198338043377828338035846801822666744546771416067919468381241705436708638787158678401532181173649295542948089082457614363530135466868262680866857833720711862563213759472495277879107984547039579144818162682439276812598622966017665016411578025538515628038303951532573923305245737593406784968828029010003504332820550593487944222969706269365265174043569579572810461225557416244820522810591665191483662469935978603277964775972842159683265145607207384124441638993536829343530408929978516813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22064516316846383145823429511303433358718747599108786076259373541535901448615221549549158219724488298509386566330746054319327752927132350364567355216766679669140972883981213477606703292759577344880450992559122028996882709734310930545355773005057535475144220142223403452798460203857039183667537602450278605847518816624141917128582410632820968337791720174062908149942897491838530946216162955771936577921408051770715362597769954462677359369302030509524266628179993078832638030825227601264430137791519598399798287835296240108455175047637120939459721217581289602250868686940654152211166378346321065432535573399110796835891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23622484025082743466080552404096807296497446515470033046424835373035371627577447453913626816813345557244174934324460604927445598982172031991320739987546567936744848495375784802819203927005851003790399258170428945878887206041827557827856657750218306772329637815254280018486638134231672039238229347893525358896151861534855347065158139787493883460754467383685950830874090705223487444748061040394731976900400610403810719175995421825165440050745918014060620438214018135608286150820564940508732581423597638315029528152488541700588316321799737524878421940020157369948984447637903360871723960340785563554593833181660143725869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22675957966344854376758028494313395526629820268908641822845964338704257041947026672872554396825565580255995284990294321203842216593144424306446356165609024239278663925035127479067932082208000793285413335805786773005844673187048995583179113680534601525216943579314684767066983117338416582815773082621263385730360194770727367650218792344509692246957588094689823886351177065126007635567641797737185409429785380260198571988628381903408103986643045980676938073237281178109261177107436286332846558907869261536599220468634041220679838531699779332092860862391404526524086264347004536063744449999878413009742248921040192324029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23664317450475117680276929775260323811387515662226232767296528230109737137789540068882114158496632336574175026960354292017430039181518963515502661611177414173092643710030208389926959249005403675713409390397405533676554789129820606146202315112479124973389025848305378108255171073301049727162916754024822311847315539542591965234435755632877771520379139251910015464070792913048900201567142366972043599692792116913946692647802698068625483338357514304732663138139214851932388634816306869504090883260733168348494743418915402313969837792542517119339005367836006804019855120629662580090721720574765791930746393486967957750591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29941920921411334510644931009391193521597215645095843885189427968960065782464903276987795733877869451387614432298364267017132830421353521532519687875287470221593938274410277771232667986735313349714572549820262954756049901125110525634014458553814637172504364831184379781242932452551567609263265528644456103581612470259759167834462887565204332062939049046851082337660318604837698627230373089294182154142785388322255442780670622815400029984179984648556260663708138904439267775122552598180707159981359729007175781933621719829075511798438306271120023080218638496783027335976909236958462397312112027423350058026566273239521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25796241256385949392404611550941719384117174209005089010625127758856286830399987231516952808751008823709638503722195556497591103175747574017247097096857363741232851763939094711376762559088795738761194291552336435405824695683152572156732903854008896111684472868358060771813909605922798968745353651860894016907931300478331141239395015422626065164743495834595817679670799921265555570667331115430931789870286093500994537409772419325310981336982232541867916860220722944592237933790892461009296782736060192172272660887910574506530634153321617332528623985024470883900196278146409824883550505953540625526670600879758527331259", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24865683016245694389872494726419811058827116969808572641465179797865976821606095996279542979025768622723178790972637279882050102898340959236839155054573228332358045674427304646642076345503400445509385361527142959370398046402680269489316715903082037474295499352807757548272635023530802981626206970785223528047413367423031701889196839394515564464285021037149240390895468546991271922670827287045850450278506760482670807954956784934106235162896555420390534166489355828482531929101449256193678833788615546778535731002269194465858726855070968237832012695117865062794572357858514400612501662079045035342945152783638269292861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24855913264654594503647222740763291844615193962648133673330776278653504172651020765333542922327921575406978947522496965555500535536932327259147699517511694575626847451065972226057784767379571724509361618338367418716526081316807795117412372089651664824145738679748470539811066105662523805151287587751045174610329718980679058858150886350766002262049823689422458954092922450011146700143660889268640643227311343490735337348138052037238550021334573902946459689741311194064434350348061008760690067753825070182913469935719069134658962340390274422973726287478910103799647461309202399346344360824978909655361138397904461636157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29123913114185548672972420451197020781688760175978723716661630007063910031680949900760340365570770176239955705517509183778725252899106379684614643903432583863864953891523485567683355911135014511281239449861246730385562812343125590578681807119944457322775032149537565420069767402327060896186880512669453619559254678443624840629583106850061694390906734004697942260841971980517166290711905235774489456138250594158918546748688811683621321066721058435170296227545622467092705918546524046555157702538935739717124982795807806996433898219983936494638532879897089734726481206618146721028281381345556455585334494916574201704159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28979200268480146899607871010884708959898584721778826921512716471996694972704039790670219157469731372242446740739107139194299959714154867075157232789391595931881803807252847002234202899238890469798873148064815229070407504974646576778753794543194058990472946719170177480119631025748446146052036546461083667340175179097123292966390525075198111957790338447371519518547265957447899896120639497855611224511807836157418883251908761547915703250509608488138778516738317604979482304157609839159197540195054983165649506579022821855539942364582805790900887294868083680135764303162753970881951659916690245480352417608160224730619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22232416107128024188666541933420092868213866642102729933634495382793616512261495114512772702434317489884389874169789771942948761970771312681256862691643393391714313296103458658131500174028072809825371792774423465123233763822393485912257515265894226989122789022648650237021703045107248410779640395186267121617878323937370492479859666402934321045479201789293464549020090107704684066259009287507436819463490235740001783376495337645726744544765508698670098982682142137450812559636214799656559440572916254349153365007736531136566199468758562883633203420674813707398631594927371972899848126313021569748555718066578311315931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21643456369240054403845551400507496643651916026619629455876134416947480927113248422195002966773718582826754797772388311753140266144036323314371505460203638577400620971461381891345840721217523492882175714250475506763652768659617910647101527209488088728789791199803750330855018268962892017932343348237084383032258271041308006165518560994670797449697612712506128536498738847179593361384357951115694458224469837787142681057113443502645868349220570875088447583239062229794958219793836647861264067305522050694721165586966156178886723469501186596610125155189953059304508647678536921423697622078848343230984779816574252440203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24180608770217156994781930004692979970593766577218036410603593229210194245484320826957417381743823576540041537336536933788778282855552023930351427234774636144887088339859006255036159669471507734119633378485062277560668779019248109260920292810183574968354299436545795337604554263836330276147108315574921852568298776854943314185420234445490286056755638869324511648838746898295871961135279454083736062318148267991102649397090461859367266817653196501529244563881454493366002086224281463015831292011937564946277944773542234046549692410830258584144866318514088256215537024927583820336673883921722585053204342008935010849917", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26666942623944980226881392547613023699565154959975662156269558744509649688203425996918066858945685153424274489919060825813250022549528376677987283122607719510345960335217139470724576575731599225160763060685827557902552170598137727276809289057914144486964131578691423795757929496870854649505960315748504521108926646371491250773282224242788531619207151430697519451743767579455403152902776384600553058264355611801552291174201029027638731790913630031469139225915497506920401708185667261943618601900050345711257765301662904309512740679673116516642559097680196872215787464449934002664130295623717499147256011069583646879489", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28587858055238869683825037276237370617101494985862423489674648707921690267176285605393786515568693375794574841524215355265177074248473556128080373888656763975205658412461098320661071868894185060468415075797756300787630239115612088840949311160670255570199928800147948317086951829264171935528599825282279072117123468610321647071921491952526850277170737814760316007183331405637439282770323056834005255539193456986443485240385505476148678194141164902123941255336111821452343525925500241288635290655231641610718552896300422102889939174770598277669388648269441932827466723034871023552662775233790841683795555885895782439159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24803397343116346139273597555748072980109159504180259898414766738263852057223583083122194095074694467299438947798667642461720669637714434782292576404951599077041421854472379972379549432196973150477824326450441698910549272340751165820084085638053309460031283537106635057358015096473691891585496437143841633178931176319848562641829831370951943668441102912964674466061781078662484503106141597294438825359851315128043788306734216312079888786981615956423704740149732763728979945043226297468104494134033347759057971745559470840584451032786758255688015153782576592091801318646622085118183934994270865527534334205775284866193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28664934992706091513737581737866987976058675527508983474159324329178797889399787003694705016080823806000092326329865739410412068276364486201494428613276046277569423901343811647263280833187181526311321401889253276982963650021483855595546247951479324871283472810532069219590912446922732343318347610694569121787428962533584592620757497301580904824044317114299258257215804606409462516552639924441619963814118122661390687527443761953075988001149944593691286014944847036557475503323517787655451143445817136692088688847664395491276201861483229392746154365201677076988066365663378323986427685242842468620410343075747937611909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23911630357143465915231094253892589314640491006159397207474161904803209207604893515840054016385044521877142462985974600240468845903134147214670643768249167754262704681521610721956510897245717501724945679983610940363206415955988900955038689324937642667771058121518924973342769087913925388517553912327634393356376115367024748741703406762883414051430436940925926585217836441750092345654572780020121265178725139851005517555037345164914775025446246384285448483705551645515904130542369890233547295356445636764294664868963974751922408878958945991826144033603712380528649842098911760829875340783694182566746919655991877026223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24563892358686403499208755382880817713230686920017547204466062155155615192186156291229934976501420125614622947529966976178285331437573282000907401476742530859511322503833015307609909552676283129812050542220452763226769016926730568232255966393707783911552470486746243696011024255526017617615039226014118456360576156079660846445203200337942351242050159301647847609331862578935591634361434055501791793028905852360531731406041783535437444038897356480431271308948494655997805975668274271208626726529576523938097693420934022013788104442701384563263210047891249962567609858409383411336197554954379065369415052463835729098143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20156826997085483687400363957947940813412502629688294064012684235194646869191678918766879410882463358430686648378919254910112837234001317944927603693768843906425967881919582310451551345480692118138452393036893624521432515568453868006191578631050394398087617615343126084828016643615216753883889282555607922736025209473907444713111051258055351744199933486643019300699197306368937200016351393513942661483166810777536066657687809277656444117382197288387609139908952010517967597613623307385357519920117453752753605147126358623118837018249713137095590588813861878084972946380020386565027217825807250024527263365859887941607", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28035153147243009872285427051876417312129504535196103961154519061962251708429586043013756408616423643171694476995977167215442847498281614640103605279703717517321506613362016963440862684150065474003509468570724492067668024897460668101230429598642807270444361585794093831406185519730800102763088705850415112408597707395154971315307341448274985885082379565054329253308968092330268223226428142110395386173844138899555127510785655976875628274006631008566336520529485120979333122479220890114760636784007455918167611896510178057168133978636015343951419227930331118574529206011295326518549561667882427010098063954843998547543", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26708227880823770236117720294561711933229600464775832745027541463427174946466629584176994277871597018936149659051496150869404291302551927143338732634912243704206332510614375928039681419447970682177738201263340367270115692505737518229940114246396188881011083951821098652005625291658047817562182713197059524102431036602080943911808285428493712668040618861812359939620296046113360237246577469813315913763117563171855576932303336955530501576966412435908154432866584186627485557803066540708686640851456145914781457109709744295054748570568156730854033819792612433136179824822180672001012169968792093098179052749792892473879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21049441692752935148247044326832331243715474620269069159657962001309269011866813054006966339258211353162595291950737975755409784826059810401105130685164373703722086754691421487677555348728742423506239710232243840389543980538872156706102946945382547397808214028221319277917897602632306696618608849271581723363645927446239945578034929724897957574602909894883768590289888053962886574578784282846003964218940453990571007571954771909224510702478905911265764356727895355850308507453605742303649365551525627519095743808776021521620663594256447250653447003431471372827957864863886876080794324162985407417350579690684737608091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25626677817889579145464515110715178380033642454107499553244954853897948035280497330103564880104708438497950726780580681539802240403438644677224688382730877096821903057766775820617044630470845758824915611730484810814336962872135811825486833983241888814044690184005527997621311959452801696686551930930831477350760633109806377256742966708508846398186228306630996897501300003761278650021667805619113057451809734133556634941557785233085999428176388232549133480797901104720220224027126854396365938287827675164768522051657037112462198112732819549153218986961310015804684177264003653689755052613185974978806526073141882823187", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26588911070752458439735883143501054577289834698403075236138039434677173426439592797064892854195088294250143025392779148475039592029140453126919163013549350086111192102327766049784944744205200685330578774236659897049108279443103611863900131009141832483023451293130559436926215884087913995482112225748546323611764455914377550108802824588477696246691452333236736778548165348638973967318975438436429681151828935303564266150857293250617662760172899370420557604167999373499624765009214569016248391726394804132109222198164243208928774328104188820820821789236639595354808779358049779145601315983409088678267862691794653748271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24386206597094529062956425955704521268875215190973537289832329883676494547378936709946083933143231471324438955845616743929054896582561520961492450775549700702030633179833076824867108252073164116780776968635755870201184932470069540973312978118714166966937122015502375543521374515174387397851370129775284196667956021275520474049071266554110438896533184417146131086969671420158955381795715917387158248916339302733219289584829839547465997614569119184615752526608296367930695600177304333380428808112314883314153273005545109502778298536659444526709132427970813364846758284243887510096187151688191502046477037509386006722203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28241341595779314505732521431231994320756369117499413001393595643042504127576467238427047071154900539321002701421620980782332159878090699308473161397942748959586923626196883544634793430864097367291426348499897433071964106108392071585484559383113758022011999719353642435352656869754100516448296815904652524384203460628049385788979042620672664512748213370454517860722085476755013784895196413650908549335710123492859895916805447713915292447118546406070421922565243205783667158521730549986387779028947271013383475470378053630407732957502211193901988484993471689613198570478287619212057150775617430556538212139893595723571", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27901782637794488717657467300901591618050087782267652762921949052183942141746827874719261201260654672918229128921965587321345611968777205825519300508701835476758497154914475023577834255630025332465903373393699267922955105482480896560289785594114513695528443362613558693927375629673604830820925223660730317677291877346254428786242340567022855709207557339539259797401025687781190084515611043347329766187051523091675054066388029630201504780298623483135051026776428980011983343518957203051139412235202107007395794134788522547611187995136369300418085072662681963989334772832610754082276101451782248825184200789180221766649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27039522923945822799597633979042796352405366740780812196886421381647156845024090322119291825730978887585465994519593457857444606420038539511992899220931380965508384337502398817786592575031400711206779448750894180804614670249018571880116849025068255436491340751969847350841230367115841676135614827712336847291766336027462196450392589551352885462957636876325082888154000309865890273742340075480144718040188991026891374395788602986666833204926088617825676017717112472508280494901377983928145131066301002207033364866051436747992986689525399064137213153086257609970840187751168746672016414704341132901351246711672917772649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21677679350638573885099977769822123646383019951256334554550189540050226795118139532040689015329565227820197312768561822990275395040537327795384168061826315027956049894708015196432097220373231341268530394033575337333285500683576338045974621410819938060415410205843422243788466392096021547401373501951899467220491205346222923686393481022214628023496436278769477592274667134534565365784680550152117463822203666254095415713394835187897646612605715535783495057178309763394797047444641869710055034530897981542090304909903089053424586667939002345731825635223412166125625700346719454220558416108995782479539451635555722144229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21543349959001302943853838279356438441925820640938591128180992028619679685374472021229888869654911264282816576175819937382150916469124659481075021003045602230843462217813621917580442706313981338295767382089658723776470670269893207971653722149408751074384845123562959486221178092000777943060227892959336867575759622480396390723865428929369638050995610274523111565660911576016910242125533639756954673473171628333509719073871153905710253128140936312113109454641993832075185145893664977193116137406434013251759062179615349670850414911334252222454371565854901847214411857988954880470706972375805420749047961813385617171877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22053018290489044437751154130370791866294741721694478917919325804083736520619109967287421657780555407335650326688408890475336891835922088988185255109374173714824574747481192559087592601002431765342647662114531315805210526176794531712568817167073099203963213080783602248981913876593226752649433922346958403667610759354348945753587699386228718835179694826088467304163359935897652759034975491308949521153751244060945343385725769872448830270399467053211955688262046974746949412802561057250055870829869945440588890589542330911368227630065576990770045159196931021415021209891761636942275218222056443283958244142834016549857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18713608256870174917700297718431235521267860071776560128832332602577669720405661874527085289861517974484391656297299789440402127270786435801759671787046403159927368956897587753744731913410122942886163946836792932778272999656806076625910996213754150457115308927380897009633027628003934934956324574406071484948494303024076471619602256102104069326126017105160780436466970393439318883850873072749685242715426347926604576997016546549575415376925619963007515854097033016240485847783268798366088068407935245973943775948832693377751477592032147500256052767391701066608204090233679137491032490777969087854243422842201911089227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26339157674316066416710266686178749329473249878784808591641905160146501121879702882002231431753453420052792358766654364730556915513331939531112475630915453722898465221430084234724181359352415173444612216688684272561146164414910928406969646540070113507500417885636410333525053860345282484096285602554857587574479871710853033195188748006661010556643745819291890439768476332992901971913106036928899042961220467026262232909098407050443247781743267976447382368486821192453042025858259102691267499498989048960189755277822046415311049832201414831016455148352784063463625776925918205671911581384490323496010727421004189786171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22440684151363406693624155296127752535402519863058095196489981682451564142818076405453022283827005306903095669684776437127074674734762597851840684271987917057716139201537204332990874939577918951403839110717453027445507259245635113726334783819897198761132655899920294996198416470799120266142670594719209780219965602848863703414340703266468123471515728159441687350969717318007999477482376290548771092761672447386493833713265782300043927129224717470452912709080987093553216339618518512418859194179239355487386769820203766510779573886672378763243682344058845048332265751573804566851632163875882310826876485718347036125953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23605120138439746268484782465644909812108996409758445317433455373819348938575239466539453929467614121970296106700692416612941472347817449836023230010713020163365792369000833775161979562188422540119228555293221944086554691843147582982490679514022447548873811034721996347038967705565897541912059307134179177902875744774074347703111487346521628327677103853147083072113830296226437172449267730607932205579102963703696604120625533372472383855500424007919110532161612067385889060975820972312050731895831111726363706223648449427079870754035154058253237610461638525723525163983172750315795619398686824312187577578405505130293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26407152794485522945199634860964753862597593426227151596267696340585844273764431424273102512422461051133412612550354519536585348073325641401878928862856112096858267609940001635865585818516958105363756548796287591413254966603846014135001662071186254320281598779468251660777729350101049624565753630283948869771820894986388999379204156926388588563672171170950314491687395384430821315658195097942411816860426292695188891744790125719929183188504581091936394195663943274306856309517212913983442313424106786865089411320357484975854219909067026505083031841519372597140284842665720079868188805138302913345199083557919263218801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22609561997099220535051929905943616093132594371627647358960958911786332383839975032871559949978716939080734022093580270720151718324957918353515916453161568218468676425823003674943898910079776971679586379574542180488843707157184569769834662682554868544419385624975588803432673652914723785579206560716067719731407938640118484612526436456433208346167964039861680809363119084235225078796921544889891260638938466256717206624691342436332283684555755865955308562205098475713164003416614049029906555159310505706219199647995277331403743482051135328729289969055413791889134373948265441986302120371180551219880480899521410891907", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24723244330801416147774591924018983613750369158662587683627984781308272377021382518628623070863281209563210066595363972871503011201172107433768844015418877033124866079014494104322448198471330942865344852912552600130207064353731184501322986945159632624687709003343974509481596123159741186030329774948182821375330328264564381574869783394195370249007569102314702086352850340149205214234267595369558913008102719280563356453078238725893002007982877846644112034479934623310932950638785525917424997504697102755806359548255364623828998693827587520821314491658533953367926438746319401782400716151810247915698766716857926438391", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23264812310225467194081703083741423469309347684492108290394908909598273849736314027273616207597597242777487330904789405779022661559671776643587414832971930509951389928259489162781281612164442372331385629929583109447677231225889004856370991293372042367729787573166480328027202715001778375630653858298149708014302913188621603636099925565645157791923138247598699294213426854894740233951208464973993327556469869591325485601748927731135818751660708577075822785194402270275497795768407857521612744502192311831395189072293715786113915611170992254531157310568438778540221306172513358178824649475166249199544302777289922795377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21976299158858451232450630669396377964560834869986936235454646105755953532083254202766849574345247960386903976497627482127342450822615900084675611239365074704547387748305807833265397022129108300815294192496058198211954195409235014260149583449323176949970338190069614973420487023783080584821058751075892883079312836985445383829753633182108506839441431389821547330038820191903168223082880554251585846471269260301517245660998669942654283510055096918141746342776213982896725637186973694844465727603378255702917934952203849110477757170941021840358051656818818067671660112617810314403726588590863009835481758025174168135167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22113849211567612266251086603572301911143247241501049011409861833561425679077538956001349385864473957580175053560486261265661329561625377484222001504007578046363970155048395796327406945157676865886888022502601466777427955540606147392813697184048255649604577066307777038275230034545437643175169256473719592111391163682338733668198578582853447198249374973830322514356486799921877812761089793249586886054769581712003914456163270846226051851585358993410005534372012265825937457384766554349617206273446892165353650035360978222553643011489202813012763833692253746015557217286337438193993343052858235333898373210094783096447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27780095381279031662289204373840578048365407946280995886025344133507559693791415983817742619598241908381489524368218982568771251579801335902046806632325351954709627912401523398666261015886205905613946588417247138205337533667928488479088775939623040899415474280736782918500437046443273357302058290234154733196367373597566002979601083746706548893586603996360083782422458899213283061033754581866307422784998916118348718140013598202949851272741505873214600252592673962512523177675075634248788004882827651533700873731340541589242230352713502048234013444926780060420610269774660104553212490904414746687986777476727339935351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23966394850949656058053161451068426037572946674705809565654423944383714150290352952858649740839894789960234027477460553870284110615394279962806644401447576439020729387346958879352459868500404241785304114222985760145014504619954243071403232471118525162365501644588405122075355726888484074479606311077671320281870775950485179219496611021173699530504646638298833257263724722977256481357928050683826670881240996083929608693107032412367270971080406109893171879643575938778950768098891344398239683043744755204347963871957166517621708145843754844187562711950060320445231490199939372561058526870802084256634973926449286802319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23346816395237959721738368963195770895099961521779243364562697449720797046904695224624626003913946116260795526568809563237752632791344513181688446609379543658505939755086925500305338389610118910434989587215660031808793978975393774561784330148811540119587858782841282160255238529269157927755831863437986661545604939969622934111526197315118184023692320290172071242530417740844437195584593411873165091819669344178531516309514214929556581901464767287414132086067046149066618693327899556363893579435911574704760601217971189418219165375264950791905323891243464886625190358375162594884474531095427604470760920430956767958987", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20471953337123449737381873533934412693518723678613932993318774336264450054055092587953883557131480740652932756215728681440810690095184495530447738022960616726093377386689071174819467048601358247202483668588076722867323858431836441270684041082619415074438670850502106298891038500041849769924174606296099224411628237645150348472996569373695565856386320046132656111998637864504685629612442253748540456860442655464940453532066532019520259740273771242599775456781821220376162982271326916234163861846635469350913789479139639648750011115417518712766539668453687336995665407486921759823590384620887274542422201786865253157661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27362763516615949547073878029846205582041677696137141827365354145665873241746686729928724042309830455178638614013983118767755475631842842581058020907543636387870429078297427681145452425646585058378483409321032661212466754527876700336248892350532091970814805209508593368683036487226062418937109770570059362780019829527288571798716644738221809780053936063929566645460307092379217835915329825238723067612841930107230025883024008858707582848656448136764679992503070040992063428053947648426906292894643774778376895498673902302691795017976638701494522060255314207469436779072642500135617085604243962482657274116297824941783", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27510252683418161949984410448698886397095170750943619017699723999575094132198704588908865176202777476919759122262841815927813655031844193053941280213163145879365764865039511932496826489017909185362640601676983134241248036061400472952517562181732714629924906503602758003111280043319919817499261250535837623512056727818642185658963160731617918646939276419820507017011891197164071772880283887669933499209696969042571570313166691481177822644970570317806189599892806628502302120746381920960385088593459028847130127310511165306148821555074546931121892716838069850518476564361587567940962736858984705823264317269792770969991", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25335553172926388793837225174490791526208314615723758947311401083812298658464407801761176143405480344928223128817386580456111529220113743272459928229311899270563652775020118666099227857991661107955255289967737115984272225959996279448380466332824989372889956525684886373872156628339905419084156787745360387049666598049626464385263711464140552297480844167150558690345815686429663423132456592770122973075000439497286581447321579087769925842790877751649477587132065858604653355079624880583501000320247879531255354787132032527102030789657457915998304179535500691622856095345670713527021153213285200237569191005078228056859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25522535468520370560320947532243655600041520466151482702097248236785068558591810521347656479727875093596754780051525064456193751718716600017297468287429232953563011929505064878321561446771021313644299587201140504082437713254135390771210378106903721951306567034169208444020888561945840119456656133048428797412321957951888190448284549045314573193146791253313645672755019084905264229055023541944065763007486898074574286301988232876983505453961067356268754692212628087024142392687144077690184052015966460287809214558753948345365521183790021472982273250791912428537852133588680395307691704120906063935072288085247149510339", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28917284957153103509446289312376057489812863802229711071092779620161376508566034925020951898830788486741673191891029735235713403232982269537511986205800573017285412727487587738736489290054916469660957206390310736557107003182318568443899904652038618996314069538421555707434236464054220365147849985814308632929303491990764654826522227662600746434609453459368368176448878864046800299133407175212654207291786126891912448960382361409132757464565129268107929826889407469199824816496869629199296612191198461712656447921303352506563323259433422865479728429697510486197325953970648487681872281896124875082067727705652516594837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20942811498271478390786322257198947321931036405831840611763436743957617902291517599501888863992639577717404054729728928016180962209761842856896779711077795427020341901975951073573272347172282016210135602452616783476348896071025610479245391409759256886031296493924465197465225391594717811027306541758324914990109464452777834332953542652334150780948667964520695339058689299705768666574434093223526695968720770847952060429804952136523504897623262448678035351866047184144754035547030540936332309619662323180005329685702888165643405242528169414777534878787242911768717881191413973457864678631767637055886166341257715544551", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23948478983915728705675547080713567224752285373401004814884254132573539744127450521237559453225839074952673612400048937620997124917288626233733483089151658565517025973554114382296497528264672719098217874457084106005188364626334202593974086235078680940707917384436860211404014244432804969652398398284998890178514221553949298176322377122438287085546797770791112215414184338359630937019572655105569013835620307166267886747646384060124871852294501962179689627898542867949426063757228823397541874982015430288375377007341392397703011375231766261544353608615829421822148110997876657797474438596555373403359588542468825410139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23334493483822908435383751316626619979866680207349095893002528938898907197630438262365300592800544323644878762455732166477289806040111503361092502065741681886503735032464163276797791291486909560982876083453487959361992739411065230478938190525909515532707973032968557415123767607365741236828197018583658548328816523040890640398877326331532528915775232764808817040727149645482806322579233711628295448963604096434393863337518877201777889426047481251972703369693190815730816097883809252777172079610153802505562011784809669171976247124635201428167113723510203987326979281025665905969388529505702975738363778175469819659349", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26630637733809511145094958310839971783723908996815757503501359237818628285085633301396002446122647014440345572660967523123787406858779103497454844540053988386379673962410736238594128939201028553811973171990868505275552670914722767856288491164279946874709225543436221493903601952250723937066020626221604728129885571234793487473528410147786038159301509353570930691453174852399401645098186210218335101143429651820567162850389564037393073067149856344888841620298457949041480256915668923619091326622061563455129035214958899795397227387542707458249918765868687168147930942919651012602907368822839294288093213166611212056727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16285084703608998514096188489404554946083817251074325836727869614395560977274692145953698622822237504615035169353529346990187861752886714663627413717318786337426661104399567294706308911061599815856764058524867406772258567802084399305377998034726645264700523845307570769422487958616463231357529893296040970090209611586102827032677685542465388839964661379632808635945468809824223153553231170868654988026852843515239770308561877026940330290624093742554261867945007384009205095420567556985939623495553414117960409442908161247546343856596185379210987427412397325607531102952192850156780754127168132538036789394833980952303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19256857281724044441521749022655992483187136188874728177470046249604733717528308472554956374056619539412740724003282960323045184351717863783178371836448556721556932575329730914617830256922721785501622312374864086650893753945311448439406984787276666890680063063334376114683711745824039511768636727903182441272099315211509628931608533663613538281396955968202326798717543532272113590028924634222514477538513553470708746212030480164034127600925635645054637584876751310055074398046591409737851910052124904294811828574505278105677733186581949067588109462297634491135580142304270203255762117109592575059241990427515040618343", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24039495462584054939602935748970021054885520567423465142960686235303697547227953625186511502007219091701569894511379215413123968013990988665922877718817732049763849457136490738110047170136373389436362003593795252875386449868702800141913228282661566675671698945890037106258416548328860288210153934212165734729047086393114424582406341053317949893328410438455924473506462344074435708427520713211192170933100677423808855771774256819318668040921238853509394621543979586981438648739162651726483377988476703771522866185532839551721972758782137495677782512970393324770733559041446107923593617305063372258034731882911384004107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27917788113584841860528625449836592629959258184641021525989410085722614751925053349632169741065842236988154471942040078442332476796148079894140275938768073436255842307646641628291735122977195473506725680726308777996455432902473392580004613335488058320530169559039796327632015483787200574619876636588090825778968865307560135811462468828411898913603175787393581080728802068687045561327626759920906303372442067967556262554564136525299758538272092942920083685388004267075531993449895371438905935617765456466386230732471996803723040001282634576554311518465750225082493793531229452247083245791841069017863124947532655955871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21383529657037946329882701165827173496648005766013088378904130253187369975892674252097260527645816489325871614086939255796288932928275850600408051929238752182137485530515312424181892014608616440735571495261735038083212522471634672538281065381677096115493396419896684817840206828979424936522970405809219632584758218538669752209509861191293366670602933290901312630762539412782159484555972532669396658759900947040058615997132246045485497284278486695709718456822873813145240126422002378294515875944849652551930059733932698548189668225248914059620106474476397874894095842639509525475736371011760618171001571176616510305407", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25717441889779773257194997165540261193915122678280678859768379471149382380649286277630485214322052327791427628514495612638555989303493033132209832262796344200565278193843632956164295555946247520263780572683163500515500964631267579862444243519050644374825300346764853037722373185462178121871987505636333240516451328445906668433377819012337214930794639361091818886530786300991726878065329095387774110441706312330717122735734180449627219275559274241363307271007155004454464657985503865373241889792907038943851518540308456963653333484502047525451868640147059305960462185032059805459556588098624781806782741002808554235517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24723464021468566418713936318751021745500891701870954306685138150471501924306171592745964130683375495878162421174748184669148755361307985852664246655662469675692123069582965346457311930902876438153712877769751842635071916036697712308544152035377282473774145250709252128317807470398239057405481336803082924743171418723995986809706240088136128285383227135977871175560989611879024483661126056770922079418246570150774920493684123187236942079711208982293233921483067195942845842217967962372308415096157523723058003679982496194627283732495512135112515146763019829125254754142788385873966908179218474768432924950810256970697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23066103184700338412958907005624573563043908539567320842030242887774729895798556052075019991223626048792042201736565845236633856050830113903837842332169486396551215259864410618060624496107706863120302577460249992059646132368964982637695545425761927892404345084254499072514926650791620272868320683489467630324217989465277361522357574310973555077512608309395129987840257115003691650381753334236750342248050171972754988482382234181540048932536794499292747824147797887738668401300884559991105777660370947354698530745053237649803230019836430874316220111067234448738616212344572963374451881572675869514699454181620891296509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21301491862179459515463147238757407294748290202197087862455391458409205529610056596752652893971577809736638026610463863645017244339046928542510020357577693653328456517827705428931886797460756468939400260208362257208826616877145724842865014797813297042009596133091292687238533401778342686333624752325357292656341205159332057287131846004568562536784371401902516218016844022787393860949573271940969714668915865749004089809723601093312079861602150185073370290289585355265791716826332140325418024647356572623906533958844859664316027001470915690099694234607391059780556572610590446815731070328712573789611047444842801781079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23464917138432490803673766540032231719075952438125582722876380369447743693348325118761876299411048397671194656114899242860122685368007944968425299937318713604604896903204863320585999918349145544630808839645550299694216836287276930539962514115870433969588501847426946711120732211467620126042688883472653829766055071646588983948718851241979793953245742565600754190842498185172970968891399675572119917985225308124745633007235774098104244669914747104726956208491534060823663179775214671218317973739909335599195828772986032264204272157692873829520333976346958920227090563673316487016152059775486320552330576845985471376807", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27065960650366667275238968783574091653708026371840521487830948705142173157945357918653319814071650241942549826946151235430034865629829424695332679507773570949404482616978325860471571130659679128192818844425689891223049053833415378375202806498949360132974073139348368633093035203756816154790272361626535121025417102487996432679258638644153879530760480120333381959708836365480686399971842492445084384952801766391038391100930621284260697130611177891047864259814519810366018689964241841545978937913316136788648877202899876726559670684458564136237672503668771580764811768373313484105513021181841008571874530833750992656741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24341067809179988818943557332804943872369512274815903065080307551914436363836625243272162795103970240369916737175082632874994360961844508993080889498931081640705184920477123278150382370385455349609605257228064672358778554407856342877503953818094109264765148792005283037876514651977491974543036958771985779584364203722664858149386536058536500537347428918492956415424838940473742603556881006359813657106592031533216161643100751041135025298591689973582487909487259888878224837835065756578267208736064027855532646249612921869010154838760506126551554591274815572583030926010302208767534641067441466150741994109968281732647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24032357569106301012850964292589950849115530629593054084437051206696709368058246545212673786861253497242532084887283421013958529310875758210442333010148769690856119651661024744525358916477966062296550549087309779597236745215860262514143546984384393956492563564848761614885020456891150642352162215828423370230728297476560468346683708614390878654665354058929217209549216307082982010433874389297660727883521949015605209766754058283418508419211129121255132478953757912838867311259277371212822400719513289329138425376055749993894064972684154503670402693038166733462432831585428610608530131576180073995762576941732857637749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20834350637407244953059765786296448517321238348511738737818305179085099336144383828623299872822429215636560747245493313264705845539274219966525566065047188470201370143919878213061712137009462835330370228843277043452766643647618388544460973694476269971237468008981134468912456280800397928674464815516534820418256762574162620587154271746494532033434779042613210103100472742056881589970082956944596772150981050865664182856573422102647010997282350843951011428512833265569853463539058874476827337107502093355686548725692472245830873273238274014543160539822776537515378954594565206264347027514359062019558429511826498681963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29636872765108124518657735617488864963285557514819044353591143968060792280491368573407557585626747534107175354336527739973124341327343970593024149613816721076549657208060334639884672278765759396105824788136041134888554224845544408439360674598610991147531015797032239450901234530736261760717654065802509933949918385200133715737711735142761094950498026410747141685618987333357280936198875979223342646694619537876395624256821077054318294687077910700960130309375773493523931653716662169305429986688660312759859446648975544021703736695358266115208502411436949105851455290052323171226931457048605479116957319394413617085553", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25238131010837850343637398252707832239389577386807884540456179526656821540754902174918472890288116020375752247082725388597973939029077209331107693042225363516658224236720295398701799474960927609205734394909663679799531815371264990888624685329931031912919545933204283608407542321529405855897907893855451938827248552418275241333120524648186055558421304968235756822446008001891598945501078626132503964338574648460542011904464474668096675252042023388421810281903927089201550145815924029857576993374019240920167522144557419766856072510506562570093060541694904720949869629223083814235692065926801749714910908717989631015001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23702743937446251741748273307726024383013169339330937125699672253205055358312459447287322358551662633879477702436083796402666403909079073289470142994637427902892973861173156678727285847658038732803186868385303491270312895289178984027983066729546398690707529976686338807849814732924283221477217101746156268614459787058897735832468921662865019910199833654488354599302045561943463334377348399209609330359063480005093661759447449428231124737216462737831441116582250261091422195700408848235743605941825738186314913556385843576638204956071090855207684378672501584985807356776615517105166882768433861315444450214032781079937", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25538198728574529397858323429198995866675155279803635073909472838623377955659334211992044677793232658750913964984802554375456382962621239782695184150251905013757761928990361597122208698254206886717464394233998374689289272931064955047493663785826994396054799044025450848219773226538712704271541998329098367652287447176276779373972469156963903625754642679651138217218312556418748482930243947385272603467838706573821652576221822970872121000173420808332546974446618447499862893807177756777203936337417943588643851731293693364650858374911912068323293999792212894097503461416444048991017740241242671225748579868822310521639", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22576105069893987662576417606278506669954554727134381397654646910538920222588520581623899932664790237917733050178169764455280291475077289161983446496895976530270443896593823811469927569336674834104388290396702659354605551280616952320946208842446622358783591319649149952536624324705102345930608498769961461044077030626721112088405805350385783168825483331690353315521772884890336588178135474932637700481632163595009442098839658032550034717803460585412697919704360097156095794293778648293566941125687193485410264720167026933614935172498446727494329325294615212619349202518069376171092871772679730030897220925132427218143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21566440075932375649910691119271080121265333350453510283269800370482549642472704759535640439653793193145806084878644100031099464935150026412623762980230388432615882106921858597948423410130123032224875840498235317369279354157303936381868678404027981551916371874401975901974990333161797063394104138166841182792459753360489999853604056069942908839750237009495228033233055793776360989550105578454108049360840127828904000179024965105891664154547131953517938965325990732122181767735827199128358290979330039157452976676374462708219062187722792071450233575063332595701308112110718758142121764733734631210455865713454560090427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29779808676892500878621790127827681739411449231996354789617124372578647935471284378708166222377796613541737188915099167802704719429382249724047098396798750995419556583101191345244457014569317298691909122276329102414921400003046148919763917585217086753783322485062848817404119481181549402665995829871528300427572784633332390347075474957278145290120047204214745210220435233323604005171208196108248827524135792784581519551684976149453267932275223325505180319631810670698082211784991469056354183721654590177014407998443094020998203943161301294643327759786456950213210254919511304986985126781146076870583827519789643135989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21362513521926468116769268591299563236781226742400210310722800400809380805006376922405352309657039302810614627115362149103165317175961983968126430638847803577914074907872497168119030300738431593041852437372688648467755263086891262341836733656369845426998730879214686527734932657761317300934222910801065580880576313567433966537613051401927449869257677063761245620395099289188212990651388524004504669466526485121339890369848821231704921401949669010303965612047431207120364755454860571698149586203673923092583493058867197448993613245855513873335392012494266913534662209390016262779079360362265413275950313494252535076823", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16221402584659454121751250587769982561104651090626129370165172575393208584129461854114635644660945718413312269053532172870226252857131608942594142493181107366983575183933866887244195279699853557207850849286175834559636724812431115872059893907472685510649851944693030814876388087647870727469083064496638951964301218450700168056820441788343172818682813046622566556173063181186934590963779976301765850570823776933850711350823685051229838746527451015987443915198056545872729256879575608530134307537512098868300964788855598040291431698677391458361104820570204255332748569305105662419564732626237012052620501974545681702001", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23403365029803437053600712422920626363221570767723034051923801877538666509206697422669768006030523934814964665877159685416242381767067613975244107975216592156963905563816726416153456023425121655800085596415578411065517796658947936583384709309397786359817647381461561702266847884272558971742340280350363096828875657067181473256824860817633842489602415342572479815442869620176070341128400221941207463173974602451452849235980503617482552783448853198207660304867091239519602611784267214105609949574300865530489045208659816580465824607816514068691465135829251316163349343143379208465536561184282677331974625818231437452999", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23860514511597139274533050346897394354362607288774475987856676618898674853890017141029789231257919563291690729316351040905318880817495352221834731115858047554167836540753169717246470387391375650308642122814108982386077627821539443893019146620531138961197606445195671886302649415044920111694036172542573797459910316594554501665567488102849210853229061448663966763199564392929591964124407854865026008009056153371801652008464109136696690609827493861610225688640231326963847292971441712521996031196170057616653143397682410129952878953748127101037503721265929408999346255202793794527389317480769759715447034127451880777269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22939632725658190435480856364084982837008957225273759830476071480843790863392444348430247549495235803313239152349595634118878963042682431739237521278658923284507315826981539856642519517823940634606985024043213032352091081150475049634913085942258586213538850735741351202475506217667299523794675402477337766496604092870132552113842231260493123257721416228270874124873820809074338116387443118522299794596610965983769480240925872443680792380257431941629980992107758737962443251616432431622874488309086132473585809907612785083753219040645941013745674659575319093723307487325827578421163168016602419557133296525800292478167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22081337102929729893858888953615934106394281372832332110489495886525421278906851600617360014187149150304010594818457618473954029897925988699358836352015643197502214275196524973340531832982191626495090873414939085356709619517998734514552003752421220433522472295058550361897537112583418622092454639945620742689260277666207939532910834962611320385623742708788615858095225376432165583521030283886390689866562566036131203674924433943826752645931124769896545358001091665304103185308146721440522425957479735137844851729702801763451006701892698593338256530705616124061061175469840429454945482225488847386775953716169960106049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25913474527310085811976962739824364439395199539196352311092721056482496556447216138353472700056507768459187338887296496151908667266847428228931590777938079717778845045208129246465879165085366697347977209636376640522783794431156073142938805520969271754492097637124531900812249800465708836939633492558011581725017564439478772416464425668172312153410214036003215052523256992600472867964417734616529394365547512806059448597748346284166880824291186130388191967916726754641271076361547530243445544566765154629329018644928673396520656121874865395436559204535282220994672908424608007730773379257609360221658308082783900578697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22598211748278194295452299173987306251907284422123574164780667909309955376268003417115911630046350939687182857586554172071923510995785712111781258047813261316478501389993217117191708348396962947566209258179019286277292568481071459756651986906671359964693338600936712362970420547121571351439156146101138343185198521122357993426707245130707669939578625380034324841971885491771503414107644139694284953301373977057121582718842289393612346989255735815769913350194520051004016265718086015452756590179497747660791034991630339890973622068020646141367978972482665014714112864436132304513300842406534331468608246831594557106111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16319248494032322553309976573265381395043899443811153192623508324215179510035078221673528093594709429028843641943902617581435916376207743145683514868224677698728369302174492744711575404157537108176861847503083894750737468454232657357600481560268670662166024175191572266362415642368638171262519653506633237690872739841637578969155739257966859786128549218212752723067623449465166806059553953384602632332748378059503026834306836537090693645214204900028420709622674955390813986658656753080653839538845576769227387227147325889213175891328553735705660818835233441472113536698888231361745767279213512819029469089981848822739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16254884929414858801425323642383406010743771194634071752654572313760458395501111819074066874648592979493668043786873029376720356224217767397192274351002116587008447778445553018009093598741895981705994991833348262897504203324430411601759745882381086832233881826497065101608329518793320040072288540855447872549394985504081986142801285996125542026723736940810910372402471573833221635264857560628066619200069182405130800237668850751874293260544035877834749030231883885228916909329717940412149542134170101889313343465495582661263241039196836544614092712230390046196970885300838464739278195093212074387032128309892645784239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20126660085576256426077923982501272281359895314169886466422552081999701688107877237583569361945959778242652458750101073157223589619429907308520587504862580778840007525001215669727695118132540915268816982990483669643741560821957098596993071191912825525905995424110977391683516969479153434135646452125464848322262431382502624448302592917578173910164191130924349492042106074253032340972429649928983946379065350526606294773669190625400217511805770092034207200536087228205533539013436269877470446316558095963238940539540214443184224581611735049580692765259984769111308992874947663258394856245961918032266753582611180654849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16494024993804186967693708426213773626084502238589891352739117984205441020594160400997771122336396542277509737541368823100041438525731354640614039000438858298340168325441908775470376421758437951721032885583658816107795306177478551067666400045308641445994173924956543372389686712513015373008270344528424077928930332997694539799174111066935185924975282460067924012612326421770821569214703619992655177054928979896864491271701087522757248205830920322410261811711479254858395181240935178647248438079086843414885466966433678116780598561620291143198165128004828617332617065855078781503485721991223814809458315338264232833497", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30513788710056299283566131913929818378629646987105663536473181016946442108030686622038851120994334770236724872441681794239317361132038578075343730727663542044387007809105001660823909717847879498726079925234842159194590121984269590917233407211731481949650796179876725339783054089070627220270993755184805497385409045021169066411482973599682122023507247417278237069784685505602615000435534698680648365504633707388552562368225273727837566336189494253042369309333099214271772644472453776139221134334403903462747139531490712446532638586948607446986924608765111440555398021231375133487554845957307735109609160140939552655619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26847366003310408506664627106864383419801698568616282053253973193434527375128344439086024010386269834905222437053163379539976493908639637077576455049430165346251297511225612030257881460818400715233654237547051309142003126879494073410743360233105032742333507198820804160222414358238595124586979693894860339268699662126865292843867243469065437508777050858887493344150552051373805002249194311059498997238113529596069600497078689770075346438932936441480337286062564100074321989541713922734966327683793642155110089914627701078993167320036169320036704620677356662382370591785891603922603486308463734071271407735401465829421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22850603178554742492190280389892991223876592979450263292478659833185235697841746700814100083034001558632123734760322068303965922707616929616383224793573501943803239703033113695928920108484284412716743749299388219339557585473208000021581912514091751498981037922231877396560985161536941116310982045956331395431022495429773410058848461686903978052517486940131226179054744804327877592141534167451948381600505139798174963074026278219595717154888244499390559891951113854901602895910672587194030231952680885679732366188520007553209038827056511925840539463454772071255539171996951946416324758514009975618849487436883008632923", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18869652049195429092123106928548092789938246152371795756586838967952689969632161385499489127910236853343036358990232763225940704734575432869248295318598276416173444898520807991506745816876986051493776365210825306370298955892374125778204215909207486950975120254083672984921001689198677643252888333608811793745957003367134910411551691436214419679056217086482104531420148839438790616671551283459830994235980647277598606686725464198937263097893413572942704707166104851283546871262287123108024898300034038722194754314133148176929676168233947076398565361425117409727362459598591937766488186707550189551697224613689817037427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24930260871960833662058254594369348255927376030109951563194353023078106941680233479476824754503196076653036524510808179611716782589351491413994134893320171869962090786554357774282885781884544717122388276233744109322417297610773299619857510604060460856140034404940441018936702820938734871591372821507101838649622725658176648201914550810155436449882975678365232675550956347166484797074906207232512416407024023689054100274539342203342783711140850417267095976465677059685163037302077859446645163842687905342794541531975606385000371441752703668391736373462025312214069824822491808329605883892517499543989522061100648047451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4567826223881365645610627882000612678475637013212546907512985176886927592506871777778794718141373792887398195363567979281980495833282028729399506492581878492829397762836833905382973015417827803080904365341576003660227805221337609461050712332597737694850622553444200397573227058513501177098676176800505871793017289593534282632523676204709204390821939821333397095630958638228785085896109224116703253257924569992785749378348729440518150319898760662813304520609011219486274031810379363375998573800717998416123637549091386870363182604697778368690011043820335881821604460713136520596217829303214448570876132514936269053980165280819883793190347574740619352749258300017775049456318496388348636407628843757794771013922882807410149351187538887669141914542298508882244268321757396670279694509001558588094080214959541581755969171872331089978269422233973845386504863013699367362642964390384481394333572625045483546156254378489206175979731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = RW, O = Republic of Rwanda, OU = ePassport, OU = Certification Authorities, CN = Republic of Rwanda CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25025857269939827457979345811991139", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "26338731499811467652303928481978570957701370353490401777009131054320712604558275922450525379286940452128443186157327134451453235664220980053803512374488152049130167123894308155109628906443312131789808362024192526609108014417660048730105579144597164951930267508612730489546338452141253636817432614472408113052893757191069115836189729867200835818363847778582301251955143501160670455415756935110164348506179528425993680651257807323650858534274901008384870704306608719195391987774548084332855701418060776471659405050059613082340746974549927314607161871366496097675837638940579940347171890589040658159552934981759541843197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UN, O = United Nations, OU = Certification Authorities, CN = United Nations CSCA", + "modulus": "18872691275276829386435670885071219654943725685178438923816694992577133011004037473935836144558755363998471212909157289794108880207620800000478659210361069482453861934005622417618732841668261573974258696979635410535181361675717747995360795222178674412181130774646122025820264164402511512189773167107879120323160785625368461424609388291313766544738588790354369322544748455919735911308925769872340063897235698817422736007054030306045446917973633926028476406624377201447983402225727516452605104312064193929723607989079054380460067411652661429405419160952415342458770202766054458317743488053203358478584456235799141970423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17963751838792145310278863639395087642262679863879514012908122990289558007253607978337751031880624883782474501533393644605704208457240952811886860728799259308603086560783092443096698694817379450008136348297058201030672707879595373534092521520612956343829786711149399016325157241464410806336324005215912265526528470971274680525423355027432756812253045385149980508968356517266481817670213518972150230687925607008905939352753811051821836549907921382143770731704564600355624240385197290824092164777859614616564520264298134814070648547933276474333600914181038075467012736067483242112809333997305027119177785256483614624281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18751730249026595214206750562596649647327059352681769404657059165013985937629194539077885280395736900583426669271882832751337616021019416392179950960284501776812221434417932842119737169464402267272854502240810125991677062228961286083113050075635257915075696599258455989589052373996673801134877278557479127398629772461728049989866372842140600682512952236121207020900732071927888937314043621217678993750688378040382878252618649223635753326371680731614441062172831298228903227650815252838646991090622645080272939238320725854573911434798166619581911589361011958039419796964181236576047512952112336564709692431357769215893", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18870577927425670775292713546830054644532548915022769464321085882767571875351428624677441376635856615275421038082294679273072426535211102592259148245969413087449388116831171495186251333189950057637709321545375862755851396771526837568694990895078093654999399828928473970233846146047904729705156297142708787273481816311039781841568985676324671902782491993941573553150559602663667218484198195321338851415655419974464820925028812910788322174672491495474274868732886003460261186422079702222928706164166826708587916668666165995913188717389883107985600955846668198782446458222576733563870802519170467006675937787644077214469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18482837089859029626058632392130554522878237187551223414757505716277235442119077617259827784462672687985681546027548499210060622236625750648332301795574987884362259520248113941516255370592437307321284234922650623064369638780816872634621870411872014523005064293183666823508594239075863245908311825040181473531404359360305107045097245532288314378351077763803541125597026294032791614852678089904074103649555508405966699403342232146776973064739167500565894734615304302987285962479686016431497473501963155897534576993972467515585870515320122542334729245974543841776758107719715936580850799857075550839426012487397087472953", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18661661165986378026085068522009726613929489853475280848804641510173600136013115081667858681004959294976253554033742699347428157128828802962345119581595536199441474498844209947749593794702713333454576346413042824273253658256844993869214754578687844795907955505068913462544843276139726483259420211158853398070911943490546955625102292360298538642282825411251484899765655717728186256861071726408575626016769198286448543072297594952371189788127123564848294292779601842811166123085044630994916182278405598176328904739593563083805735380593825996545274893224911550457470419777131641090501819445969403776031347730646758013581", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17934285706721440112768295785100007963579114391329108508146751687536528225906897695573516225139772080393384460522703074551437104224195674210901744803498639947419136531015030667558921746035304841561963939753962899759196602241154522984984442831960736033513084384432181226693270058041989433578551876103005119682363651658657939121036182093697684742436633320128672269084045793542016329759390785021817655089185918049850665391638808154903735905998711899828537463774161948436794546994194536102087942024227004176085356606270072129657707694904249884146660704755513970629570180765038846106465782285770729983347107225943906058637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "3997007776680405718753064329807213480790201503790780502372607841440024778915277729304822005395542669710834486166701130941407683124243639287628825924231421719443626947891119950130544380702987872613894249729968311222423171469820833256605892032112038995596985817741504190511259684956457384320247081615026152601477913959140169412243157286175313300900761092967155593505492870719003390618341223504781385937610986820432062192956065179661623889695323598762782415691054758073028407892350820287463411402484616704609330623956255934017398297249926836066034750192565567451211428261800038375642044849095728505348733130504512152459968563431929761208545950147830706563149781397888223647830439889435153193491495969829132191513981299399745821337752408934236863870130492080737050044679714018556870621613255542246333028279864057649227763817333485167602726015874105807263566811705620541416722276697844478016967672311683260623591547291966165186689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "4031331787099853232915240703231771654912579191283347975904377811080745524905639110055335298500789814985128221417924412214040798420959561779460311940995330905220021040015457378547262794203529177069259749410133412222671412667119621726642146702160839839917872073880178871717277061830903377162607102423818643389498282304572296181944945244079288772288333426193542494898679191130580744730258247565549366897500640173556502396003163604399517947399088919104201810544553954376157001853478463158085807224266463236669942638588594050253812443973244245882046611630620828119220967601584881078850607817893681569267580271190440691301205339773645588375376224489831372966793576481502393144805871360839069013958476426889401286802573417660891098352548781158467814102017834344557667726183283388583031814646370022248451397304307116720914377532730973145137803035767196138736966010067059317855726799260053561107443391780573666210764435228205454657167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "28171572142744076371344216025865310858889946764308235743457803553726820306961597249691996491107740361968062892899827869502895728493372834033043645921234140692961375749333990565787897634333021759113512354788410556543970214417360449700251595315840434897130051237438874020113819331476925233210992486612987575719851034556747921760930052277651181875171856493654605516562716022501588683139015701069127232460292707476930150275079218160622458649671004161198098535390839355320695817703685593703660128660803344975135396406465882949350660122485636738777725334736358648829035925655975845049238244573442241472864777002786180421739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25950141526312202967414509324485212724232837944916006116575099487918400697812949860538781383091422135537475842413708143793099428800426917990680144846975985666408022741348880686558237853551353979640134869900349667193801960464217175004660029033994678912312251758511316828090494621938949508755210925863372498813614413429789169290572246247218563527189598875310335432264767411294992215611605008652351245763204497825204472453876668522375387808871960123977017223654264388871114135543911120727883091861669691416845930828130644494906754016405003193964161514484358281549749074378528919769518823147730197769725794618953130270801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19771271219978872192002102607303730610376913714921873764386277565565852105231026258561991987536960562711650760143128782223811981709282158331927650397887201822580769081407469416864339742406075863254037569855527142507289749272936834247348996326288746145137213460800823572203927081327175163362029537201888627312106124865986961331036551426576685012438437486624131755499697357818505321494541363768196998116496366986408689199047218777456274124206616510088115440150334775235270699567460611623868895452825895294333881502293181781420594200481692303992400201033006509225152479547746260649799124525102058079153669544291591064297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22383959039020584741833297644869595554152975258972911962023947931664186103965292855380574963059931756554067825791662575239181104484008697652749547857134017893720444147598419257153295569499937635695884904215723145394384890896673460885888731109976054070743996409389898284321417636764202684650938337624120627994435980498943734119370596118149216534012639978621809407722466224862281818068862008964306855357374110590811409337752294196574433940087318200095860030606219276549052713123810450499498866609257177554443284323261431945297855695281560285199542016907908978494164700191885913335536700411765200156448540094449482365959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24894522885910135161047638183298322953777711148084090489338703093491569464668327144724118266864456022997370819356862084835736057526562577933363862757972465545372639992817994805610574384403656173035067754965742187878820501641494427504858520347599387252632734082474334637814806898900527740840811613153700235096942650061628656614167490756101162634275696758648089711600939691603027754115579740926511650005000034738909211401362599736085809091154245051629115862552846290312684765344219576556023293293317632112629790985854356145555181184725059153177641956637792355192984295165654084916105410588988903863026759359550748396733", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25718226346191436439885045896362024015182954708681767380126977410820556338540762905011410170435874937719635284248447547813440112102431169546461741474459888672196538606493615137432693304532137165030914310820937675738216832862753257148485568527439263874032109191121484491626938155681929744751296625188395430135932663331550052759018248594110491645653823195701935240990953692555547615714003194722772315245816065652870708292712123550313624277667297973917053960143482899679561159418311830962146214629695730985588166012917547581107134682858647712515283696306283910469333288365225533214660908014079411772072473178986344930117", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28555847276351896437505450944899524894361199934546403633791756630906779475033597035681776106382464233983471398606538016089853858220343509779400424547763282856334841173923557566944784207878378023589092579796746810009120151339690283594306718774469879860169675534205460655660451085133130058840268664385842283758507610266626416032707605312717365347460721599896585393987442235015705630154876697900295215110046815889097657835926976102018841663116602800001431971613381771662967774757431237045897197613580898919353141702702237378779504284737445463463544168440816055296435966730851165631227680940317892790613740406345181680587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25957460669122935449208654317891589946314987034069619007572504395646703117170754523156306613956947158077397941037721749920720365848153031751338981854739943352645364760524242418680831027951428067099305108411443245791606964893606889208198171021980554992864220961462927633000553357131689300340874239926933632764415341730129512708347125080231593066470736646442912119201288218012124342208890875070018336896251412233229409369915864474240300455241929710981219336343792395333370312935682557533199250141332792868326952622645562659586376176433643250733569911653340611147439510545227776345178921420517014440479621303380833561627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19721725778361094513353054386280328379062977177908899221037652345332028282269163837777183106070495048575666791375603987165991247898243868214018460610591979828591890448961415685847026285332958972897564222934978690003115085394255780179918005403189705001510348767682758343721622365201875518976213081294037141560995327955669141118931506177796036657320433882566521042948530983773763983920884084621583928473898144172252781767008449103281295853783742386978279180127318221484792929588141302836337006572161462595726897367954855804611460811695829356467016021726633557201330932105876081484691614481845664869298030359183782173053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25281933960520141731035957607786816750121698880233781301210240201162673965078020424144900434814899368102895832043507744049192889458627586247001806157475191603724883379943389964404793044420366983884067704004387330663144842709593823577352324956727852471292826527380403014860513089213111771676731643250730234134890713667715711846227740970596906508081723312406889288165738264479065721976113322384913300471426255790041006791548226817284493718246216952075907860934068395780703787807048553203066934013184716635362941683048374511725144745650154742098602280353714478146223366394642876679667361130608298388055390744063287577881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18860999192826223663312218296347804114470864439044310702255971596468298038264787565562604714062149805852485895311099498687260532144960801264597190407897840711603125718325466858337248337900081811206555544021211563059980202736083437106766361285717528814207730518498400366056227649740671592345354932150440891815974111130196692723832887903028228489779169788786169503023791816088221577277422235045883300135800987865424729111743351397126742305259559670560402320232206930725508669715562459543872721624235268073155507999836738083867812196194650135324610581772325099877189113292182503300871658045288639019092475650640715553359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25284393942611438125036257753207823512154409048931594987218517484640918029604671969883151441317318141904473266492625798427472799312312505686766291455099424406575828605429460912679038750322989625631062738901269430680531734052599076825421632282996386288402151208257693911282262700226505099036057931066105815721988514924713514289678297198008567158605355558478811587545781235409958868475313063695558726311464070046298488890789938462455923919081876691864262015919912573087254319336655157664221868884486649052663010620365815070955213945847820536431936798108901407713753577514553001912644712527148269100805166795892720324841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24352115686529699435592544282030712550097848911673638695692028921579132862503664117725136881174224420760629235056088833374578738466805345925260284236423341092319798770287082353570438011412106582076201856082038461868069969294955968027809281438137335195412074657897424758212941226401999059334339395597625876950399909910950169718700120641968182399914348269049406181485846605182337921360082212914324395540470263999103472022534234362798941442642681666801515161743216404463045485562055129528522913785104513874440484283214475617576928000410906096002230285074475392547425028675948956321442757325232619359983378052594210768517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20361952143505799867368950331051147786618090201410028001711517615902987821968868303755330097048155933149199726199661208204550106181953484894916945189432949759319588637941880490840089096933088376055386559007381270372643052539939861525154934826364503740533884755204364992877088131896923869279227926046427546456547293257426148840136414249451969023988021938087551044734651533980594933704113827321785694711754933154463227056981919207546695820237710225891299594528958110882092593773982129584145566812117199432412595512360331525017343940780343923814246593400913997956629619268576978352060017642090238730306784324203442971951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23929625322755649642770269520778778133640634225202530810420114860746492096820049988579214022662556970210882565524717692927142929455836081566203583259868479206706312308398880093793763461400130801161518938279090805498377222513437437319875574933775873422584187633969959859214963834939042815938558906752111787409948372402984900401059077991293260117058422344056031306220636612118762784799579340731547783656231479331938159752132348002001015517548095838396006765116178206960612397805234643551520695353307346726431276467156763501660425766378569856065547468612438788342017563303549476888089458825257813953207884290557644712959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28713902611148316830735645096152936545894238718914549901394761362844560292862558327859268363309215284899323281001888230794773608416203273573270912513715994069553324832314239642230796865288969122160962214044869870035714889765066581385592592244270788617134573278085321307126031884886188263506980668254037053214610500616392607574539040586700149064575292714678461405049056670753830065085672120659904331533316382126264358719005738805288316148134010058405114687908473507790566346823314005115032819173783272139581297227265813324678641628289915019979997291566537208491230133503124716397840606032504222946373943410109018703799", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25643057598501873777506051507283145403675117156470902642843110316156301569944666403708116785271925628033167277466519826339369539388629085735373271185755099040257440658703120058279563775253555733711867720211099685733649926427452959753314429823455965394211154153520696980215002474403834402762590884182835965791395012492939390004421769537029487282457598037899247006530869947318058736296252217438862111536867161222480121706099883454771969922347456475628928616933262512334137162269402314428425247451844977789513815438735045523133360549680928137647805354514576547390945847199507191148952563746201651170335687770048963754173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31336139691329203564654499113601834494156819478687724527609774909644821935536895048861125674061777201884851328110100330568965623284653844617305902797103629409758110651335958798346748538904286124226498923693127075074086775137642924221940255235021446416154355765612059684782923039797792716313497551913612329002993976959027460624367398181177598029565629580663302628148218964361603717240891611547842353188562680822888191977394850989043595537286409276030578059701818118436753864157847974167299477423728218352047814761330980510042467877347435785924707253351856226667466345146348304011780448065162992060770629906911179016757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23760739504925788972532859445353707733822845367415957056218892686069948001473649423448963160080238505073326954866868151635844699183756125623426554134936559479228909272856300589088463743926699109460536424908039529638802306793825664683591366189813828096976665450825940020100367171751172383565750063321400675867021314506738532910082254097936071023298306757828949235193099547855599981136744433196863255016308113322645040908644952763320326830290062077230410966747745095652841242158926121410964118525080981033554373053499236188943263816107550389344871920835777979055402205376683898150232276739167364913303039554032584947753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23340143309802533595739422695440886125116895008859747060610357070514361236096544246116939468152965214904495960181309438801332424259705989000105848989187425694306627861494163143412021136768371272141875640320434059570756130193813269079640371471745954651080178188132690992967135305280758086020386544923641859705007278345514534323452621007116688751033566142221045098199842463495298643261511175644833069910089027737044329539407099781385106491898516968438922590802060554549074689145736125795174350073910447096460858556913264139774124156392136363141541625972781497853280846147766954352703487122394921668136280147982131287711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18996541657132139430476639353210577515034797276053917663320514445293999136186668498968543359914895126895037545028695182354974208095688589408889494083721723335606611726772448676439806436938989063608903018321661745532520931597523707541971333217608167407815500240938099949364103380474325387373640005446758409387076520667657011505985325886340747739692661071097718584370189481654602576632181670862009676810368133239393442472533120254376216255854503438583149073923448635882711946359067600407585060427905239399105525208732471999093969744134004978274270197910354992117256126971422472785710577142182760638857119319491909345319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20258776264992462504510951678707336895531755727073188706529764216020687827783734306351368079173480267148283697918778380383829970472509591604006972022486771385079733043597002010002559733734537273743436774895526984294689901605680416062409371885058064048459517420456892179316374048700932596446364807570556006048252116958027984350819652778569864623327379705797860188369280176250898976694142927106803405635177487064169246968583406969887835903520039971530248705672076006986613365135751783637699228895556668296277928084991442808418696424244613869122085017881912075296628376037411947261752600522275321844246809426689177038379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24449706807668207721824957935462950935897380203411213638702115745369298787746235820914218344215431017050215690342632999806882285933097933998676441841373979846298866461553039033681391775822035040740487904108700708438243111333281342577990457163779085500608878539811848699470571664452315132696159610335748100113412373051228243869103045602532074461471356676941516757483963088654150492387298472811007293055798355885848803293712435214426709194048458623145916129802576713911224129012990317586485475856711916220232721866521582111207333531927062093974821577914324490778748633763849443446489495511552597992296594278045880203399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25036135446823253043747867510938429941605983826396626743585830458098173944072950102060905488584806694790451004189195595576077328972167029764155158386937441923654562488015835323248600707875487141153129554375324348494565479531322056794042697427331655013170983646917751792857760261001265290373322653697739220205997228733653584580280645173595669326876943591957137631204569318109584385543926911335206065512363507482523038252558243863885215183661049071089310235706584300511329580168199027205037170693466901861435485010842798806387190339253230863018311662390163229996768424847771324913674606018668556054770354430298202682319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20871154047479732268470992992171954209941448975761613845689400444120562116292103537097712324431918238556961533444276409182534398055838108181081025821398350607833420036234574664204898037198223727969954907101148934025485263830848981809094213478641948730921396184550877496144871740831745733087603318222375688250041666480927566304187261412962280826512251669165698110023128074878571570412499017350839259201589457796396356874578256179723042654082650686457132517774553424466948135042045102575493467382307631648003350814568223491275225442580419597437496280198218690310368144545194061228868634202635304158391391958416423607721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27877004252975088665009758134511582137630790188371224694679582428456077850347776275018207107365968135245400366019578520485731625866744919035846993469377240338428364160881439329641317766717969874572472884253402626427736948298211273879771810516282190698325649566721903222962624502309943232628517806788701775607744011857095339970071438783640674681297379989097358673000842888194575743756105742424756124608425268920122749992550331761146525151186244705746796277475200695067668827625287270680310511724239255469578313837300255662506117618245951221590687855775761986192661932925972361770245498838612361507766699656049538621653", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28155822964434755309123965257740815639160740709683799300281537898764622070861581706554022720224703496838588394233114974831371042459619669227071690041036782493736122424693432554251131026067588437141219270965955112744084095768543875631476500392873628776005782947723656247989678200776693594448383205726240132092977718627927925842648130792143664957644090543833830616744146265803819867803743490039073780800718579007791100197223269054888750310035125791092691742626268518585272509224949298780702003330602813361841535622814055523343832947961809948054782884521525535180848578545497714805819015714446975444664515052146691986613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23993234629554779591395614935638826482099712775512814980974149100736788009625116105837917006053224147704392053487849652201673696412287764118692025267828901727093163912321836075499502520134186476071568123665506413006266006863261402140561855483256675527488043143802686530054311902405203944307248404417570574997620182260480479407108647967852230663696308759903087315189555713738359400050456650616081150309164695226366760486393876599442017325482958986087346229478501253630987240861206088277920887078145821110602917817070472070487206172934170746656250355834279110347027691408342334767293870738052091838986019912918216927519", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28582407065299628531713102758378613352060409558942852350717499271182458811877653729872833848186163671949389654028138790935240613787976494918989164353834020818872773207956019282911191350187397412651061541607511979807096164275638865632678203812630645633912459457564973899269291958659481269178735020293564036242963101224170386943078886436274588926596527978890877789976240057194798621500473454006393298994807989465517513959230553561277006247661085762639811625657698049976103599626488605708831246868017164414805359845958331808206547758098655215042265424967900679834701380091006938334547168683190598916119442161779766462591", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20877458750164051450026098846704668121689146525641344127573646148787456207112907520414959189792503310990453415542490252931437224780808708397428227307584813888282730190743168462354591611488603918617114550293502760665229887370389214842240210195854874655209922850232295043700425810314498581293298146266895985165355839564952185318053876320421031590349201219597167887257993578071212933471877342647351562029527150955751640077939872415379136099787033462417002181580872566490873733847350142828715055344303707496945334521671806540800412073247867981306128897880353252701499398121619763633323345145510930775061841309521092172547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22566130340408322860436522950835452162203696306955146851648596141594390256050573070307274333648639209966194645369215358534630523872219035876090958555748367540974769010515730118532490011276053944446125719627492092616316064605681344096027504691370222347465941522309850445701969778426367360092278780247097682930720351666700500110841276151210179323665274599757343392106989932605494216016269538255933520037599433512599679489961290538133161011658959178151411134100470972346063910924140351788512552896411107720167669358999817197638306444543465057251422808914247652658113329464554622297724352982968709465762713219235290517241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28784075068752440607385452787674029711786970213958256088403841706382479560701129157034252600977792570868072048806357752562457887783818834753004054774543753044242851306961776356242950747888915311505169854762499922101004886566386182686321674973859301327138464559472248962903480442047238699209802639008043039155214166945703632271347665601891490944762851917418992362053140389460955409362868341148431675321681254405403590339544503348912550998350393808778008596215354108007638391261776709964335485382148518845819727753224648318614801452364300799495599059933263217743555691394441528350651319557120060311040731934231068446347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22314741838076716057475254097460657307869536846189072134423837039941098399601754646610964315691275566770803903733744409418932756221781784079661355105243008902725864596844592671530887105957583019741325222810896739172091791704673598552687409252067366993350080662550701967621571771141723581276823065802881823968441907793240750158992468728115004146671589435669015679551499740974366913184371231165327072445736350505293355374244065996447624443860526419100459201960517616016687297529284270656822402663967924872846723001775440697486597957178481768886413844646276496730307697321851568959823830954479592028808627975117839460527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23202583728628009717114702961121910225562241783482367568565229036285999000923298769852891621250982360934455206299156289171225160886994958153952456405509423196300399817175611482489461452108976725998712961083356669323154423004742611347565494949429070153801434008523335472219965979110563976647575301813554877685231200746075847677583153730354191985953707054916323517570609074927668745286965351443382945291918584304560016309020230520743734016173418613289526502160420657776203871668450401286694629081942996770093477292739331597253038872589352491768460671419532163831315994742476467364921560589048231800535931265199926417503", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25574380723121897396643987545854202970928436439130429126433222293984648732633664305676595267925500852423472140535234687600276412657099075589863574777605596279565859161525009124695682185015636087282788361570507043157986024535855066590755535892489705555277861600175556532084839467818895681030865753464988459179320776875944460887697644080325038147039169866667701998275626573908050764656525999705023880842137222800380568230555879996009052560761666086699897861430273438218269945934511190275641056111719418447636237928714007417715124223433087783072439424815284032148450959765705204948532823336676875843615073863834326987627", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23766461137626488492113735822822039", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23003991827978189641896024773550687", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23271268705149877325616492072388980", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "21553262922326848383109045231614220193062031836899514625610826176143469928990461173170899454394092002102621346990831239563105830631254354047552730449571769191047148314524556620868686748550258013006409214343010982179462360609845684478929853240020172223330152840849951638665753343993703546825247326003348870510371474615583005327812885136883607212158977660583830731895258051433845623655909637639050117857258034170036158488238463838197294056877752575405248846211475356786858194349431677905425152362966635039480202780801079680030587609776817045350220811371216260379629545779664366492466748298622731689625438110818493472829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "serialNumber = 5, CN = Panama ID CSCA, OU = Autoridad de Pasaportes de Panam\\C3\\A1, O = Rep\\C3\\BAblica de Panam\\C3\\A1, C = PA", + "modulus": "26191271141595029841002357887650275171908514545282208305332731960528992335606900802590389881245313104999986278779391989135414599894212278414606858509811377888020077241605609924180186074868455924712176809106271449675793580245297881824141952653378239651474089638979596475859072290438786668026494415557644930164397080421218778285288512102147648848635429457100665997559872112038688010717330288504913170551192819518483924291892149716397057148219688425509907251293428349206647119665835473058558223387689491129570294476694042966313237467275991342008085859860840331562665338453117274342051072558440564919761517857431721988843", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MN, O = General Authority for State Registration, CN = Mongolia CSCA", + "modulus": "24108494893349795340108963479097312161038128341108091212304362163089257527076967300432507222166367259296160650277681184493151567920600580909447383058923573752277204702458010695988514407868242628946452613782708290097367732603070512431404233941871921290325052104468700971227431007997332426466795849199161558451024575617301232479923093038047167386102342489927305961076385931032967036806141107288933858727923093576052514827232975330475911054747922653702491980165751037111134947664865532318855472583140952827465548984020364648048474208993451148655326462893913044787354821768618620388230167968670414737669745973402351546079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "24204041393221867899759099365381600403083605781305060737427278495118088077451134345480332887189610175201837294581479919940934661183871183500597376410043785668745487807317973951219305743170673627473352992123501687761508979012880982717723115734641688751068368432834220336683636621158921796607671949856987619765594687578045922181512283288713810445356301585072710983876712358561518827306094679122923522447185146311645465799893563720990745358803706650067121967255638509543112104853634993220729389869491383226957613602714315650620000937394245516941854786937149827318934336189807106458118826756757026504354567881194329899661", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24271491357418371167263846693066761719756982622248318357749283191070203153334571987284017927642942702236389389651276870496454139007411684409658926811293516070158834539097099865653425335673668060125391757730307881508287233108506097095266043514853332038381286251063638429654334968144370136514054768397662001216120311803288349518277914633361972093474575528557780925076798491398157290586250000111078279203019791883222887741341723798146659945664775671565349651032056628189651351062554511509972296951074357713195777362403595476616983497276995552022360282442545100706174643817600509054856518169072751248496711162075181519333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28555161172821774210369317413194241473976260112424471868356820454291234700955901495201426555895312600306840635164884135773357160608220202250021822506620082637838682951729771930873755566663832815233324974067666287709118835028876074270372225620096108920688254445090894142715650316209501021667202672363117199999186586719753410952968778144420130106879538791908508466282471437695908840567144705494480489189105639980042562738996087872854479771810232708861936800454346203756753635865730384195752702184492818398153350233303079059294585048728640137815632119049653973230601807169608039527448777660271162086167026817031132873261", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21198599654331871924156684425171951374532291356890881760246265215768226563931968763408184082570157012079638855097410056333033839883422424723465601571062811656718646655995719468086763262324888199660895947456289504012875968686766584980316777113837113180520828219394360675835153611603748085763179037876141413885020879766782977562255411100043710940531769205834094440826896853188963034942937903100430925995685230670723259096294811278702148709532854260293986361636882305201980192774298640174368706265936965922688480209143420193805809308644720203979465120056001802192480789351805991336161055112753568171394391756060388023633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25644918138465125495639231249454485535969700928340301051626194248074670755202495879350066513940015392300351057836323095084901041545335204817994279739669744813851568173232832126918498106447962250406505794715162662242764452986084856178731835363975605787804862281264329869556966321477827795184092229062014284145888727063349429412974561755999002244648868394590811096950311132300507351801111272313257326453597280449659630683684657450225235522351257160852993740633004040961576875219250850974973793092440375060057905324021931278791476964213233051434174689085639626401104431837707496963650803376401460746679911646650015036859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23489328053562501834800035097439080949179799388571144359185449836147868660468186082002619017058381734591781134146243774915373431004446086576262681659010582020149378132709463751126788541089814011004122937865503911820515658069713720259073257994226262106685962225085427659153056757590782773138285362994928632542417300008028143080925219507398162178407786268457557594409765182897036939023738811818027123797645399601570798244374211986053950352639343738862852521136302213606471120522189226119682180614170251504625260897386413721660276124067046081034579433111592363108361760123555047155906788209763429131197871714553441199753", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25520164481333650389310566486271182361836292928434743063493319406384865842506098821875422858707233088498109926924168453600100166836641953059119155066906622036416473048465866320410901065923749869928164983111521618883040629903443934261817785090216766122395584848566634570705070786510300113843050940037926884357587685291938985594379743462016051101933603955547567842600011603909979153414518509264658104238515625995361823486299973287553708389126722206565937409568116939919265433888841816709675202960741097821426290726544476954871648395307600675510718189890645499598384002659784833097639239690806884501493712081880281329189", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "19912100863611498412690185524807436832148882826600953285894101515263523574846505357919842299088320053183644617505260740032092083716521543392427344872782615671431166745651392072890537935280302803218444363631189904075841769736495137253035956397010536465990201919934592869156157347968259760102706733779676437489221199413923432119538445400341611677847484434176436522887211605977157134938963530381927520792848102759631691048499937669067020718371134972602336290002390194366853365283122004057878440289896374534352921576723297902283638515064080799197162721059350369127477663902535878866080017287490576939676189486499105829869", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "27794164488913187968444818934483183166078613454700203860132101782199187483420688043507364946404870733971895691669336356532226390788887119575188166625755619131844997734841109568330715589849525712724430108556753226034324362416052782578887901025193134751966924248032943365610422684569873018386172820568053568022077916228558072040925922585181935793269519411438718681906177046191950439111080171574131024466108717849496139072646938225109535081339155768156957438086729445203187824424889773363632716897302349384331629024636132953968769427466808521343789054052057979729473964717014157579767893466610289471053034978475608088367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "30492843644753373680177623980721987055389287037935568570038021473362051666866500582611131336153801868988425977917627000537918601708133660905999693140182699953984196863156155238865317426136982398973787373765733669680889181250770742609074735655476205695003899732265638006351123833473959282399847383693671400872994119334608469835858725663399412197766047241824266526937899917832771403868091652582522233204332506802992646823289647921838745758483972138654101993086222129186974561239827885499588355112765570956691757458266425717210937459823962726594177043427290178192693423657040962257396833279442902826588363820328378318041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23601061742034481847026330478469046350198211885784265991226953109721348987378660286742419947363539144283224347486309720076580858541282327989690968701987814562193580752507417176877222116812669513172496884391758022936211594278542944373698038260736845400242232789922193539477515227217543838431768475227180974523610366174940897981636000040107254435374344564699569161380315152133944415832161925344557691964741705321294076606623182481352254362554674765493516846398215657420313798749234592542472894711751169287624619914713504943101550468278254806478115793956083062768492656756609965061236841551446592960287107010413166922839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4951454736127937192221733535260430422297107190655133288699236330731188435906534241283071920640565665545333705728101048891375734701328509213928797561030393155114575337272573812081574226909913223089358305550194799992960323288538399559099847543092739727138738331932534565039329285627360950888125179248702136621069670736845293183364920848235739109288898865806611578751947273819187348889182563867738588102087985642730561960206708626034112879266993949520876536883121871623447107880282724403649249722987719139300436947806425884878124805677504135579320183257607162992121208232558842007820770841093938532006483605234037434859723567319260626723055000185398783036647893045909965895325563582213805488986512303264756615515974450516353969865015147080331512048042614916162254934766202634943215456736811285073232200497903775579320174698988697501212123559579917559175725265380412554929130096671478270586124042189929651668501317935637800964689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3718575872732751897764770573558163335810585927821559578879421256786291374087103036139611392849242050441461165367043129731400718973303009798386014713673394044956487887935490144097183228893572084613426871523263749019363138641155281855654802926675527366201464852465918260126343240571365461831258925459268003593495449363650270795260194199538182103099336689528461369725021585748409588151755805121358001471073972080250994967792443143378357145327971322617422300716703243927885493865241283290887474932889950940765790968913794459196988575350056567284264516313150625776132280413051495106130760279049093124494063491607213948532824399330040154123105271644354328978483861362905099421176146993695199753926008693087913346729285159974739920741717285222448721459634457210013528281925683052530487578369510852559977593161511588435763931790799194768075881176224268492009323474853590224203489521791705293366847457652106651332939573837611471663191", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5482193620748955740392285437183654827199888168369179828163959596400737739369475602154522971454392129521959634016664255276702278769832511566023713319742715043114605368978001711741031266001936659501792802824085102777333690743182049132165878285899936981878076251457588666302622578568614613622617558260385493511298878453272053654007534384966885701194533883437933755406298208221099645544714087876825685223394255847349202391239732637614055723632944381154917099170955559495803480376334689528101381703706740217153725807507371300824382893141555812845079348394779304094002288644701437050830019234120309636917901415931632906647994193401176666853219536401680469802882591643066717982759008154534910000528860651790404062527064644113127341395622658918944472144102081292451760198295708791255836672276167202934304619720876450838486681573673492640910137573803432556222427978806922673367661010223395511769645042856411083754787920532839578182857", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4601270500702337495204490365292257939665821165168465674245921735979289260034405005127729421527478224972027905706046710002597796111729740213593257035401477320022031483865644129710888175127955432567141134741732060237115765309287801375765050369520098945971549142212253286650518457521768551987375696366698409683618221700380053366594835230854751461428666338623945885198676807478606907465024973268383985310360026871255382688153567000710414024468591386172704527862851056841887136078212679334084641253315628775863643323302736032674395073013313844098675302810538309677648722099488134756965542996800528858337505694760607108922982994157547154139728975779361490103435577868733152225843725279398974020154692821876560170719278865915324418438753901765493934945720501329075654395877724946155615050371668029262482583696709479809057131182818743587905779977015362976809479593818793972981372683005485345212750187949412618266070127174718585072777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5147134857907366499375174752743530339816004782807923888658067877938860024882533196983948411966878538781605698996891289668513390054803763450614796532443219193467986555009092195300333261363386911191302416191669354733946859980766797001776011189862549407652534929336900060358587600959715432792599211933399239931762067482347452164004911714650073977428034061645739893726720651365881788710521871043867190631059910273313781428532950528463038345965509559444334606011005160077387199258693352510425066443151009459791911179986075356780491021549530695808990563493233855820789493760467240891392125762459606955658615732254523424597855623480592848177359287472529497241380067676767047096116958020894089428346371867928409041984099577852360243589930635491227976366220378349900971261804987985165609012264319181616625170038862301089677004808481698957665068111033566838455401157894935234956825618671700619040698808538234838230330615727457661361103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4220545596383485127723058750387764651220387278888023382565717238228274614372572976705290379215103603893662857836302216888203080459807651129366927105888483180816370309507898173485916939028325667876269607370965937168232962511897582379431356474986108106938672950719571341022815878214815182629373337790608856371190149566228721750052266247770588717038123622073869143557524661092366935867988361550450884667315964150907029962578959566328538236464159554328813672142235195482661901082354191391613486618819569428370283669431721988212195337344992255910795066171207057372017647043532680771290878289085553913201624477703135593946527557152456320042250377524685592749344667887587150471092127873163302716850439062680448940758970978493519691717082893838003245145127823790995072218235673203650786643669034143638567806506764367331390951694965329468097065070774051549603312117035733109834129376076441744063804271218977462940139026544407109709457", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3881599369994985287702955659641890303315693836296013263099478425937694800729396567802873092166215234118433812150406973775596260062232322784348009480913593135026725426062222433659442308539289630523595827051607394030967961026463111795539698367354631900405875329527612116552210310997755825401757688799622024918212178981683055172768516138232187229380669715991584973609677151367259909464616764134105629531538015445427272858887931099404347989271891852069034309728602838402906165731186575732969115764882772700765150839320461969726546688789835213290777706762927124941588608915884163135848915655240465468623497968531897613839285280605215832901487514861369164691962627227792396977838536904554086359412153389586940900972083963368448496120334938459569475584078994268495599510790137119723401623012606833152261909771497129209625366365785439587347280546105217896952053879236751424674293411928232517463778728391972185452811941594681477016327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4890662172212460720953944476322237730309043254309948147101031599365158393876828381148598112537203122743053089369250382659366822403796526995188326812182544200327405812214837188700994896152112819291673936323045544960410051106041782546547412788839582130213227968447718103853717032809145150619758769212009450221513179887967752666728377456078151996097057576123616257474032625376875614646377538937142357528459459951422385978833574190478185626833313847510858786242287779535981596017287446568828288621155770641458739584624564496720823800769745871160629808638260450489676226702218860853830227398626934782159911094737238845346448070090812969167615767408192159668655645553482459165051579448083647311590276092588780337752706840047483879698242783401944693916114312496107345574813312325897615052746829548717842353608344294950786465551140775216024491205414810567113763653649742182976316556218300084519993585131413855430478688923928455782617", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4290164965069219427419946163431819475946048432793322478263716767270566385991526178933545226242275129149582590115532893535548621586308972000404810165054882195959024975821528676142779804274095634462742464886774738668553672020775440894215491622902533646058429190935578986169084360074349450990536598179932828244784803169882749827679586095526737805055094196048916796236490995102690226012373311025719262492016907534472505694840307506915547549811255411274295181032870836699578105058463975762677703675082649119162321611333163156362975324441524668395596351376549959119893107587138346533171775076964832313016061209658552890479942805498276782279783577104585726185084036160608773128805628163147727172121026286645349154614818770356811271202876066970293849012082173702357451521222253042024355439264622170887881547517633534812596088259934800348819549554993593550482093760833413603274299676607002314312803876032268911667473488744003916828757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4235857478109691551527874310738197878516120426196773701506443265269628487017240499305038314763506371388597904038800654530255124881898307059365325635055890219790249561873372111838858045220572724216867460890043237688115603876923064231870337078800813289463425107456821056454737367925088981238884891737768285212594192282901387562256066163087963252105867343983026664472348328886529995610991567351871568244272804273592747693376911580797401632267118572345557230781693563618516004353989769359096875874190288105250628945790260083233757596137421785922797517229321259948918953162034591275346337320178197686734178311013088691864043819737671828363489605083830517339479254199074095585756989778421528062851979776751031495119987040516149620961927208843609258965887236906142929245825810027633806800835167729479498743864472633884935111251018950577408938574766683204278798943336612624620860273233643373554902856127674879391374031278939398707201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4373261878077196396373919726454143602437022726226934009888030335412290912000253763434668207585880763194969005509967511663407616321544998275493862915032323039548862083376945885078137126385168801215983116318037144194439159786639976511974603633880721798214466788491520387854339218705011538035111353516510559052405425361926938079493174430229793974843385143804233576864403606801092362118378251867483802369100995773327671024934470374760501582734056130424414228269566954703268580311479467508001713120012204153332141884434354660478957545730202404638464899039322026847315037937104198315999867466374583323878204802580382769841716702525074211809267958322545645046826742553894469018970711421737428864341014341233647186149216666940466424342616789577487834298281198313277948881905830475808074414989422779449788651331863441988428760183783271135006594266569289269477506177053385853975261627293957695327529787541522542854117444875489576417041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4519200889340975595983432543375863124935503781705773699164199747915839454540160841981690844651567312164939494212037809524406124909084983188128918291296358125974061216126899269651372048201312719701223428433160977000587712828553675196037235351092934427032385991734720091588811985920013607089583292984175640464287008943169162858298325080415148677643517950599296302311861962180144891811070225154083200668998860075329284134092841063266572586077667793414217882411315457624354179186536693350582018614004445084109391095320225043627689485712991131958521855300284898703976773423895790870843800568736224225851766408149643297518893209618741750020795423116726522036501161237598109537342457944718101475910720644437112500605273488533192308247381433645195220887028861602285820085606553010219339927567580170067750582382831288788844174156803527653512691721483500040142206454755531649418321317351367071232367663484892894911693506277273801983263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "19595915398982980965460091160454053723199284077413987925819155440078455599586961536723183394250278422699702601980795853089143715880523524861281199371726303002694354204038041760708901431607869866052710134538733750648508042843921278355524671942386698910785689972872421126846199263159848039672515324420815488577812141845940660316256094776543836606868380029176765626569444004080464854002026700736154846270685095610606589396722474539089014258187849991640131468633121169312431703063640622446216658266233079068677462153840406217062053709450806248459343272041743672324134192875351559129761091666231493858319759512482768760239", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "20994266802667474439018992095476731947923768479181739593833697617822285132615263656307114019148124548299765195209206535020995781849508064494452393369993140914372203557741407786680013813856536061106388686675574257185489646839576572930120464646511109502704719186403873055285337019512472656733277208540471314227544010632954329451122399333408749509580650010981796366290011137213283394688210201888465539270480602881465306807819222896890263191807105960151232963191085191540888863371297460347153996091487416421751583829463867488261665593385795999714708775913915895784183244704974180043190328059998983692807194352661526776363", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "27748190640069335974863849848773630954318964100426851289344384109477828197537861995266319523097550524488483228776394158144899662998285675002828094604141141820141498486972841088370856491540956677906683716045673647641869363329505405271018832254484490011210265703676148490935457179991125320860200114910222073860303810446944127208171461235282391973542535325705705845391406342216543117395080392504879197808903744541908685318416243044053665010921921549184843383582325270420154136522911871852971697220364288344613802027252700056730600571437312087429126791809631993766417060771532511415185321020655748074082387164546674828437", + "exponent": "3" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22371284323298112682705231967736193", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22911088823554524890897545985377833", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "754414530715460494309970642535510990762969996947790334358868500444684892517601776607848673531762848330519160276733186744365497931352741692345146073161372551039840017957379345040360386308720330743093842578231567204609965566285349057364969156835398300273702084296665140914068788056858546145504834188417800188667198682682629123050419231594766949761547606411311388900252975038403212304551955717539731821027298189797268739493378829001872423755742162718010232218865085355461835961757796941802585753642165410983148839160912033996630422454678601367355965944841459916191562797509521650629405749023400822292575796787162879409961965539583563435683814581594829562424134728148969891622371832229478609510321358003349750142760849875722889328307625594591380452033754513097769237939329621886439424032744769828591825444178637218542232122621101588933081197194616602921034424347485949289091532489972928837124565811982892606684309440880473230335133139129720675075423702140838609922961072302903995214868058623678320559006721787121070271459460813969390696870643146960540917283160718998939477245031319246872478711336451698762763360539577290843455645596962699898650108172567347435992163457219024530046660611580835102807727367440170386682732008284821198872251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "971320684802879904366738903601982747346360661891683251889722126694027271273378845077538123559459584930485853606128777128278272797368158644632297759540488464965894079837598656003149245358458204695399909570009016437220304397167843745152536382262475146843045665230076957533964648065264302128584393589307524199386533267089415145400902922930131061362840951291489037183762740555564018466752189677136185646651962928760114523582585973019369303640180155038775962268322046677257372354799980506232124810345995135031542117694036616946508919221935076560721734715440260585515987407187762481928529139434477830647952991424901006008168681237379916327485048433769208013833968857223099713096899907700939572728152105997777890437089846247619497391617517649955960132482463200749169631483672894111756717789107832048307595263603333750528202757402108940794968474314724095738251775546848241157824112990658984438173849269998467322612645243370260728325122904009708309218721034226033879208155277933809132585720693309619940585271670933953964308791001563843817461023168903352678254612776027894335221271033976662677292836432414979193425386698409467838728465682815386820893607143218787415202362867083020747579281260944439006563400446400979906373068469006428304569297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA512", + "issuer": "C = IQ, CN = Iraqi Ministry of Interior CSCA, OU = \"General Directorate of Civil Status, Passports, and Residency\", O = Iraqi Ministry of Interior", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22371116066634642404360460709145872", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "23337826837401083362127329280018077807971485370755254384470718489838304254291397307907935119356554869784897340144007332442106831331089509207552836976160426357529114645031886149995626861470428306183334917791448367993778563372262314896312358980054345767416674554273720901145157346707937090847993704479888114732963759777256205125416266357260069030065389309580138899246295488991617466128670957432427446003466683894642736120397126988474820755635702991781282828950115651075597670074838966761097167585127154155921414084984308851424154154731290974116424831533451936861349944942007279371791209058723199575120370221888565248353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19529647959097020585124096195249445372270912402659441057555086231769730474264096106022365090313069538773285723606735734915021653561087760116089492958924193835483843708043635748209439824584879172789320862689005953074154001421912677318461305860389444014879078090109870992340956071790497889410957676336720283565898690567313256316366363685802445183757602082523832482604957185703941070977068858520052388481008911117498702433180448653446209611952622747633639973230953305950520262907618915495900508810876912265922705835415961406198900993599483192800554557667777063166194323921866861179894089843125740797927460234043109132559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25697118281207371625981275836177288323451225207625468070660911982418912840319611796853805629948396664829820404699078622777566437111179209958012174521150501782921376312659935916260185509784854407393810705546525191473755283415855498547097079691187812667112652926201716842672107901572360821638916262641238497222148212912709762286703048912350065728794217848094343527138855446742411967318198818823113714450774765169545608715474420878471977881967597686488916452979646802659312288979481166151003007026916462112391098521989884331244515318120148359320610371139231694876339884352548768592807410516005436220482620305161671129523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26637600416769368660745782169693315146708091667509689789529239895337842410821949939230171348131733153703409770189648495065485239190887506973473001993423485958010049593192956375039350425577007345220930920238986776692121257900874654188010927300074472801034903856935659476056227106921382778911513004601435164872496547917101772932095068009754139051731672651178134664895120555582348330551622496010351274384585832189825227828869450045561035856303155833421368142672066161618546648529997961212567245469087649083501783261185650462272306571136901927710693395779817599166816188467918393934401067137536894534853029429809953451697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23039447148124949305718707717794149554322763302322683641091963426757970778831831075038954947537021197871891664458924895655543061251551593579725220877425656434403714747209233363481947299536977155953268570331705035215791883649476065969207868271178252293492328734409574798383307620805712834418016312356361449803148614061801765125912402029880891790884326492092681163512070581552471451734494677664473988309685430978307448389134180295697344129940005921054532197281486234258646031089587149270944437019094466390367717124235381603474087604868673187230838331833214550066513762665153412084164366230100413344381414663156657647539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31369979874425394008547365186691977718201033923450084765170755988755331893633533718080278546358593720025274080454482105097298503147564454944463373171642391446439850422733063222212540523766463976966421588582002034626619033901047956426947354112332489291864220751626569900624043658049697665809850043581262081735590603352104757089639868098215785979948984473094027269662968513537189069961805485897672323559915846190991452041830095255930832625611898935994935931002520867688096370413042910016471044448987707120873261252991374901139022538756114859350996097223727316885463479486261457120172606253442393764045555546892160355853", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18410529301783778327556230616059883769782007207314346585265053384760502066948100487126038258678344125157585612480059935665533154337349285535706591555631517429972224210554298962237271824857120616607734733579269276944129009652192615905535029772661560744037331411883172917980822771346552690995886036077921483343979628576367548727594152415629072057574986549346900262231074637752844767792381049193510835692759762597181565997410778341341615107930630859937180963198911530030313638952349634777862158236314677024679368031702726624040314921980324734468102636787580400146966097175005456535674536919029928781582068892090126662767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24446410223845007541240445219858139558748157675164876785475040501153022440511821491506967509976044206311458193923243963852190771417695130454732067460640932588550480106815637022151895731468926773030974090449158401461185794390132038502229917459672231788482636566797551871867973480499626296235006083067375346270168770386044482145054835429440922554060954560647119548688108001618147318642200720109534597768611700189346665928542634254141592458691977252433013919652292747651752955235635456772817692629101521534664248883498939500672912285326981711583184055538268995717018780979190785192219553859983633132699548465217418853373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24118358590857023640858996753273405487849784534162450276064180940698637304486399031717969386140231645479434895513269512418555566585350448818424366775817113463791882891031677061762464366453031251417841552786213523436293388310425765502672830644815089250900253010558378221221352130951010291335359191540670589189449009767547763886539911685034205821974202675364065473046674216951078620885631013137021843867661984292765657585203288442682351239985672309145194006745097328016961345554789033088355608441384465158712040529249438485238722665402310136129083812639493245988545525168768717643867760258793655177542027146484101783409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25795430860996039148933157226482330258257183706849678140602666007824350664100659598487920234592587725357372056274526605859016351231116739782997379760838474245169256709438293014981502151310792499304026603491163924470854214065569796146415844839686708906064108431257231503691257871594472438846435067872203597615449455177201090473813412263585915445380661800181425716160933539319925663215448478967644844064232504294677149855411092063242001293125509176674839865902748988485372079961898093365476974135380375198541268997023406826620866250821597800992470408026993430332939154579819212632181194482599953185608258379406744746559", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30129409402144226996539586424463284639694855903029737835095648588043601607159474258515202345500491736894332781820778155341286268948147122285911828333793196336726747740859887675902399710082252471303445399458805417991857561719576507952899100958785861796229857191236030427607162820469578091399827785520237198912716377338349177515978516184044026354588975759880168247772643428802644875036982237597221451713893517955306401810918229877193256847635037267549612582603626570852660838177853707942498605597993446155709325253213944135227047798280043697302794334740054699151847409275830367441970941427491741432068484435412301558689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24704918817145662296232295294450813795289428427731056074296687062510804499833240585148169184714102831649804774915906355191049028664083272285790970077111995241737320591904209575084435224420879667726488040003986127030322494958509981170419710086963565108069703361144443924708355451585546545378961597298870255665109941836221051549830504429121353106423185139388813482812064149683055245025711957343311210533921267413641257789339587403407865499710459413998278940715647136255956100261274947178902214600345637851856499851712568146839615429585516470429361692556091021264694152490803788625631968606604987401907591984087815690211", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22686573063824496917531749204625058883758686689600277997925927447039054064807887227122975359156688455259513874530213111054681884988131847066885020786526384940954602839330911743858284199022069250433189616728067017800340709461229021650021945555702391829816395970557015673706516026044294959325504781436457721533078589365570548089501861912349537090372849053554037519939692144083008020493625001664885538329427648785619073104032576314262162916596124774029379205767605828849171366450184248575980271432628056830155853277335927535082846172401633744480695379379958602677908655362844096027024750431691583079099166248711044299229", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21614911386650769288494879905934240794583815845923363606774295896710370119390648084527050225229875797348503362068307728770879891065171746589270014719508888939606090036824496743095664211372788696538666854130923433653448205526538131250566667840782701722772286705707615368400353004816994895811827268173492526975441172636159236929144525721037442263950799073243148559514554666051322579772998186645677977727437877552876958422802746614992681065530247610881984609427995362969201239358006132398564196417076839223769293685989049050209267425905801794738808332046763655111702855602753869101687425686351941382821168170492180915631", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27279883561713057004982301658482845679703571749784775516343200390418582006700556841723225401407433331926390438155313814778883134759355162367358188719967759963046298915603869579113192480117769023938140436988140087856079115776601473845905734330405851171722632621864244906204130774211922936401254926895032706301989242993503844144405766279134851717141767687692960835003732194905996134602118190293486714109244928955312497587434213978091422400992238475061595809925763494180464261669767696810503198791404780812536881474607374529669355272160444720353713325467524363024494728274335581683279995618704913725655429367504815667297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23551286366373909459274407146275772129154218271495191961904237220067262778480805202417389097358971702865847769329592483104510902176695265444376961715342236467063566092194297140840833906004077509956047365603241715201643670912982966979290918356295007708181708297792425639364711419909656438578947600417148585272975362016946754935132157566197313093481724957154893594686895842859436816904983324828492906128878068706575747536563723573876526910882722191804602461701695777698245635286724533036772226131801200971830002823005705538132531847996295816129000694031870804412498137014398099676314033590536096286561821193965756810687", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22469152094618577850257436302061950368675616370202659796105993124873435106506746524239354655869676999088962222026072123182614116336056092351013356357273092364201805695423592304821208360611185458717098922721976359318586848020066091876168084595472584259381238075086239543871339032586718879927060968520357858585374877047444501397772380972941328056664507621506269627914756015486163589923165921773913990142435496859563945912357109402557236521342533196205456974183446604099847371772981558230301836633901202460894652628503948864515152498967801216765645581081838568182642685895153244060834435565799267943253804300987314714873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25124668381301964280377356451390825870536458763637323542756560157655077329481765982469050722955872711984542082531805092457842707582098971345327158254254674585408198154670815175788684228783242341200364493399476187795575462369634386314818723529083717899438068258758024557466440742878718555783783756017073844543771771158292800652183301137513694788760154374992229093574181379846889622539408121087355123996632166280840381162896410144331721218509136997594634955665365400287834186958690190941552163976603669315830262679348778499012979010784203905621851516007707926931840866726960076423257560609521828953644335152122559749709", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31202320765882991673154167623075634201685702074605742363064059165455248762289180234779277236974881584916422120144470786388435948282446447306284198840413851582253648645890758458966048999280106119217117566116134266685889967021995182208374072604031452491638215057740613806920910987528261833366817786679820994169472941401787797502442304603990865459867416081124109845133034417883549508338429335591083212819400490534407469820926539332901238091938413028707877679782353453417051586044263447728109973748622618718954025445838135193857920740721569245562003056647975853260435615663558870730497935973967869600958411873798081270071", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20650954346532160726509911456498101733010179364472540268575581320375108300337796048952230664392642906097084026031214098620427044414719245909849463387771633011327669366166175856817003347349329069553776582885859502917841060635568612610223702736921736078411764877143073094119942303486539694205351577459479438808671925451043522968772052773269614534267896880954309404475816948174397104028828955563607378942262241381280404138329647484670480234914003619807040706226943308275027118112062273899217194161122606709082124748353157504820050238793581939176018409282574550988762740668105367980908743142540304433399597746295683501143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21269934535583533167464167199384113281254070886092406675317180981526298408813190503874309573857784143657730379861777774459613239824554561505273740333284441974643817684916256646584727257954039487516491351649326432717619213358421689601851284753849226048418384518929128663455141662758243085765341851139960732421410462072948547157127250459747139280886490134955535675204854087381463256386799248274048843779084525162178136239627830057713302750978834089841792439253782218606126078516572636865612539376260932015777563372578769926014310050583624121143756268550557246594661047255343424546719112557530696420264650916589791214163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23261342740414068654208410629650412885726474937726442467855571095180323535518108479875408627311777144269199855193639382532714788461180904218677252510186843539404410594013923914550758825966839623570391738907472237134158767056613744803692853124949455142232279482168009515131347261693541882691515096179337222042262938286572029003395869093554885824089615059866341345284980988896309605683580010780452044916666628997375781836361863157789554249005327753473369264058282327210173600510828824539414636690934609235809573919501958857185181367401721995913286398394032549489592019942193207650770659716044658958585023881866848429643", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29056217431741583513261250022050862292811626253687116796512705122446206012078906519645376591977974436129696047711518628952777786988284445544777772826462109587770692078462790180449148885792921556657226344365732832991847044172455227126896130802670719414071665201436933634165603176338605437959868362154748404268659097052859105784316235712282169181261250628762322404891873345668732577641346952319644639168557746192505230900491243602101579430984894876236797986276855481936562871561980505245803615064810905255552439948177925375892255514991925330850889718807464601393813213978937278927086424881361865199321578054449239967677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20774038406414287833854967260083752683881194805349791771637713622555237738303136934978691566619808018033238605934884538034468640563998125966713123820047813961921887751749335419563468224257546351317470741814553787556173299788109655520885798518464646482616313938163042229522031724742689368203366806196901195688979822939235842521005852898352336493437841755403523436412325454754206742938060814433772848579814827183017507616065947159256739299076422283410778750764468312928457957990521622732293849257506075182261474576177281458690222201205050123348791531562402145567216984741928807853069204262546617153276800494727425325959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22694066807109972871371599390345542159005515434954377370759996341919311675751090585681960556259672768498293492951222238161860399391140057803656375195456296764290147613730785853488250353952210974663989384721725468000138845187765131622241265909080173417200611972576635923509933809045850836901102365707308083702922954361681324861126977402638734053249747319491219886781887121848303899678547398488039129910003761210073644312205160252050419301618466408002974312714306704965319088262657666555695180589176079952985391239625056913101972004544962899796323846948494112878041659894689440674580627598408109615091965105306470986977", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26482195746420799755360114430223103247412886227021660261265120820138908362670368597835797636099912493467464943855212301819171434693526661953525750749653311593128686933721412845526502491014739952459207778450881725793349491739126827720971513177237745143601900336377289002685601043207390221390367659865833422679782725462301241593819678052444410196534736389919118144356048157508445595899142863882814684527670083716159842488066983099791858882095597235030036571182740053142641663916889553864141802146186152069289040535150448592639209048270270056875557779102915241489824608637230492909432601086341388239352881630549918099131", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29395776067641192333912200600805170792605405823073031132385328473631663677679490450762320831094045755267559582987824844423029371318903369861713940408004655190224377616401564781436488262709406882764624970339340903128566315480657656426175899226812964050547007516673752237500235933728394809533576835005125496658309122745061648781492021081879062061911823342530632475345134831787746742704427271818314943075556139844849910523583237672915951568393795228714080393765402829951806236644713140141214761484579369475514891097510509774621165262785689612335732894337056945563485180148679954609866515984158073868629950979896196945989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25076034752260571791955359173203675473597426487960938002497826077316849543437754643637468706001153778593770479917691020011794631701525607502488897770840065727877307190234312569286926418979795594855994910962544082550934867070508087541217471896518493263095534089778445044565814353204547442771109373924653323440447857825006314239909631516013386895300588198853730357605427977541364883224760035024014768218986041273995863833991113080326433679658222914835206520384312143613042657670774829668624461035760091812010875253731509268655513105905561766564768783595316170902232818092156513751830406049907719863706300916826160927041", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23633592536013962824365935024794345259735461827945821300068715487353876891288582719661710189809669786640031355602803476706344498569700574201076980277428119581651770776392412163538258497634908861244595968485001185563168586549809105591504966797459264935358494969047978710818067766408483849112069148773586934763628234600531257199917474492366983265822633656255601324352742518643974120073092920911648954531551994823390077131782510510654459800755995402414473546380797295197084257646158792335711417198147640507516235733869586846792160264360135787396764065053336072615173564779273586609079864783044488508107113761553990128637", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21426713086458555493147408794113369037545070268596255225072466142187523253905354838858662298919631198901196103116732760899593732881099547776661837459594914472471133877111744409367456283642788190856028629270808463033002725096996621057765939122405219015375821506526228139421526019695114727179139277941537944938971600550367989402186565091670529472347868332553536063269958290426776012823221574616023136093713622484384297689439640689246281009222925688776125249835586978963676463963144505818937276222801873795432575395433355231105662575346132570592139912098742156715137701196221540461637817880731038823615363218281792832423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20350169305400759215810089835026827827563007898843354528738103170576315484098772509125691380322415118104345556837599140402526630438858626663828838121493338124132223247835064502211936854680263537470236926079255901639597587604005966566806715773997289868167355169325189565168694912439283231067656636317003882048938048959096403785049122931422196103165616268773897653903622002651110229250977419583182865095427437136595904834765744648829357879596222131468390574723197211858284431371852377345459643957671135005125438335848549077612844480677510507526219214053543669796719451680305828833564077266330235924101773358622728558029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27040732486382348931961913797639509933333332224138156987627250773894820443283643374154432077813989747412604819194160289669418120313672197219567105638140251813238084152610681342773658869328815636202742655851249768720122550951615943764141968452697724823155759232061052092304727692531719046631119479033043809841544942834345363507903396313943840452949425049114561362648586416339624332087386967641867867209787946187425375646478175352401944322274087144551138478736020260381985332882940763347621117721956476647111475412981064653926838110401358844216320497839659753094557774143701092349751593407344090882673415588912698324563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25210731870094917535818094576130795293772410409469850715487592203386827515193109460364760812389481515086974950893005724223058556421685721234145053284071116820586805605260779118146981813231687816427841124419089154960650812688989320114020132532624939217242138838492963631920515953115678406343157352453069948543723801261477321089029628175713641623911631623452555538055293943703657354832392238387794994154406238541550758113531678101244228569128319779912536574537115406798849077723545566367583299114352872094490876141541156061006187143332213754649424735117722667332576376007222335978720199805708393410176051418562487311501", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "1017229569706603281392153487418514217562941615564992792204147186890205639996244990206203008470450613928326949621252231885318027182762795002388536098252158195104042516028522590783844212503339787932639777759792574973457595524881891547966042181647148701478062544619954914256816051490305837144679875478494665264844603448931409273783439383614029456273807839772208491418024871307473788651463229177204595650160605652725724144594610677285499838345342900723916281137340253792266068984992629053338718119605010627267229241045138320407145664862867050152765318084459513159495966730122041605608137373349135543874326637246895283446246875497607817762682994378322022657522105705909352722165516256212859956962953188382866274591031748555343933276677958819512026888744676195851681702543937546807659352983354612532636302722090440273254965086505838917317846900693324549302340127127544733061277977568293034567665388307806661902842047795875866345798734793909486474415499081413362720954637367919810174473332942928458284248897922584085072301030515499667811340453140444203955478220516753997832796569806359914766666102740897466117785055802344808000118041828462574913375452324933303316193770085588898168291639556826132382880679328303087137995891149394891600473411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20181600977983488469267088227230848269433808431596774481993944614947347193975050195075619619032119978802169337035017219607543204708630943977013573358960900487394013240445308823152738132633195431384843371903302842173071446985387505402913541151426441589681897372132899507974865276783282952098324843945634227852572672625874377184998245423573568904416446948562069170980046395565644065281224148744013328962668702049576254857892877052713435189742974458053542770179185872468707835390926637182558605749405096624303119899917373973166008189878706948657052491486825244360891133421086538387163852373522124020744700612132240668097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21442038545302315407246363889990607164280269536883977657727452409205081910258680131708388454718377089684561239575452210220640590139320186595231171336997428442952347075233881654219875283111016645399063877153442973709308584067663744377619527756479067697652986920637881746408498166307541962784695979524237754423830895045933907378071974049555799820641754806482720595834978043031773710549458019829058439088606728035937562099805307130620678809418404007862922200665555677919778606019803468258492631634427620071578466279573044344181660605206149721671527832538339146963204704105941299417891119556741987660038547922861435454203", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25319024531569633244265526616230981096217308128055960284991107830584120257990851238005984674609188224677541335151795255204742253980675602619028868045016952643147888690351912145933777501291863662752736630599435864266728400687892013113235264702820634408898004132769913055478599665739060807704874907883709769357251798715066625476912243506186740562763763921427903700176100990541090165247164043802015941362252105516978385651500543891719867342369494429826681654264313326996044880757522090390128025553470895077019208039800795684530493382344017694837160562792535341902432682029919929696081949633666846022425669565607124439051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23483360182347613277525851328033518246181121187332929010804762591104714960707399949272148544596277449737245716313419305310262859970513264112673643371902668962873071677854076066746098862349916954576228252803460190514312375174348948589765490242393210255064522289154996881511789947254512558234987858203605060368304386776318274617924775004967828807283471960402489753708665875268100348808208322584958398660529756809808513810811804657591572868245348950521234522677823514795633140559239390846177511814730200560743031541290548958297322665748610264688033355075915474279600112481545612966174042812196620067356034862441640103523", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24390512598350278700662785151796438887061743881966484823559729776811879938304746815522557613214550623752508956807511860874784321397640311054901198094218102948903269191571434580915667869062390357118454171749826880296461698124930292787163596563914875607215954290116130918789962227401876561321912744700527366427845194561011368590298009473787098397511579250054418761445628237705950955484810657336633081334424810787943043840531849257564948507545990710646307874124778004677665410753436567563567538868226673695026538346809179510061336877467115164861814480380658604376567133337832341610301714827545852834250984472605400740121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20641325070089006507315950762320889152586191202676455978342409737470218586699603574479891902800166109713148036508432566757535577488683708137542085902732975674761604683256834211457269646638723754515150911715728895468144596288831741379307972166902353941264910392816349411458837294088170389218130607421133683414564496790836324760982576427467023598124091278064555642611323117281066792088176631709304855184507746393386766637486261261432492878959456001171106910134138620023000135124557454164164913733789811447387402705522066858228748873776059870034526659994265581593918916884053783517239875646893595259568339188331056574223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25037210120993779123256146706555175328899080547471875420997620885047499063267134176821317717914238305340737043113036755009144664896236418579909716362662564823439578781990970007074373018250588195564917085012208519796384154202803725881110196515673639491880097399797724092976016422627758909686302730856009743135788224143368931673519389249548361595944264641990249662935772313894539242898717984140413729202528288882616672356883131759913441335368593406793236955771694674185440891214496465254428175729863607005308289609969836061504590239215872497937516900903579216163066166350967603727314338993852167399920175851181486441309", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21267980825149897481034321956946171217147672113461733983885829205819125995991594252802946220164254670031268178080663823815703067436441796975361618904500906444191738389899153589302698770269461123852476509189917990976224464507638743251141757759444108447297412788927802864594611769933086956666602245820974938570173998279026947698499386353048083001473176091249973332517511006630336555246603399349819324211064598917195866815156030537012446247179199012448674212456868183458919428332101496500462907889733995487778206292022492987771557580321971956472445983369245373962600517477904159344065681987796207977009827963688260668091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24356244098889247471113440388454375161971606294714959428876473761170490115190950151286713240132671809580386994890616736448903822583662017954071332704197202626077335825319944422974041359499373583197650986574588487296012250983521272632937327596795971572848691069749338404886955901395689040870981071190225974705301483139829558626536627615392902728380238825984659235849894827005504033750916731906053213311547217933009035709727130463998102115900301892992568560903325309076337213096392596856498459144716113615565804973101439783058776302167428904293648324677391891912693994987943426963839801380320134157169644510491009330563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25321971656150724224285199936935611972527616785053943007865851158321309265122533269115430600219329955684953300944427671938217389129394103763981595670909393960367169543136250754797415225131183997169513623466216784305549476372770849397815396417813039348241385006850207140282377821609617383495586832386462916454112377575929726920565681812929450069755356416796255064739159099701862465906380676502511108476835785508811243814346869682297784660368105379679339558492904428139869632040416515664136865084786569454682418823525815013767874170272914391133106690016058778025653784616264830523439396458927665650912534586843685242233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24177315410058396434536917327119465194774617600952486019423484048012909202133253988653554725920288507359954674692607306892805244275998925622779033554261178499757665516858091602111806488293675189186110075206474533889347666747253230749279869040601568859358975411421048440208244451942658262220036172145783577010643272379422369270121842828890032045699197060398722639152956557385200236958362775097363337054520203805887864062909320636046581260997234586398434435191919358998453867487595846424081331261304281926138538659976071309129562058378708441026306654933873763225012618492925978994311106183996904456619569782974116547809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25696108024573092732847454459793719584729624176791346023592638989590432864298780210037702349533064957675391865477096424558747655039710564012132984559122217526175657095756416545578463132676973885918241965019041780177662996542518872788275430609547275209478848975816388224441387896420250451561618851560464939832139978769576873303131325115414533081262758377615693367800538791894130163924038667732013398864312617215273026763360093691419872421325605616968465636274007037947707181406855749647616630689510988735569821533876422770978083937945080600624137942790615620493236877167272943680300553167160070150942831027190275856141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25562479835514402360488487251313222083266448068610256269142945264598633810084167334604163223959295611708972718641134777630979672898572644151539590628656960952344992076730990910515791432486406752363156208250357026929779866566260505695335719445766858394023405784169538176623274529834180397275789034230179414225531910622852308437685300956411671140031156885488721982038197766058194033422339285888076969789811439170805695898610326011380791849443000205691540609549301914899210311835730302769932840074442588649045557377152484811988868397323031245716270710326423459707019228323908505193854884096827777042517566571973060353347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "21407883115814447942116236895286580715717197917873473221833907232725345097140984637484686720223798579415497928720572843962088325911938388355887236118844715053070232522453973508666509974017951218382530308689416651291611845691329081393944666867449245996369195173548010484834393385183293505281021553832635160264726019670606887731572460152073119644301374669463999124656669388694347121104181458705249381569071357277218255028397322367300797023548853276252765702743620936860247161747435083022133835555377273729731928117013683226411785792397274231579130480243440256054721716581861589174364183425499388585426171323260504426781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "20996026958562225853819906919074222149931011328402364936023342537924280443338915779877185449107874240632075209929459354222417372778274572224002615088877911721623962791240515855481615545567820477172667931215370032744020904081050578367372056448785533667362240780436013289964771066144890149532067121065431593738051256717964738510569022795751752655354781070124260228284314399161154744838075702328307735785928975663125464461022816974555962727016147838295519588205568842184503285654832254284592204349397998115302662761764729665364710561512462495313485357188278698063177496603707287492611308367740853130977513926926601019931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27109095673172608712476064377870879039032497221274801600645785758125699166783808353673961316880809594912979150146829387719432873408382956528023810955531421695566428304524914111025657114714655582370921378918350284660517362698085668354059151811006679781575997807088202882029985408006814266290163763940499879424008453926186770263341603181394954195813166703453350198354093653353984113000131359777577398223564879042507920460133502577988270903507234457966477096700085656356737844322065511039755758686488457367338020364033258586925351634486455069773755974709223123871523584747931355165558127836638556707286330017471529791221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19291922613476545328433930488467601644321289937611235742621920622781073015786653715673287211233979124091037123617109471753797327650732596752234801551863730653874441114924820406756194396352496131098909959310563530535832795963413567477882780037835189180036026964476259190155138659072160510044099354662479564854168897241083752709291633476386847816066308525687844139901717546323407562353553245748163725601274450995758096659315405071795907848625314816349203959083592569311211107536062249921523341038817089437460014516385373029889694405150742762069509466819192667853531429095133671795670612142853736355450519787905101617183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "24938053547895283742854027343146306185504993456919858335883432528009890611295970659128595676012825669769858934000442623528571989199007081114621496159167452413531999641180980790471568480932122117910427492673265581299261101932481592610627632349939700060310700805399077771113048489871564576590679813951548715321583077457912060408781704592424574438694187912674397633379444103700765972494890769679198896244685527094571770172586887339574676852208009916758259373052831389462754797447596390613599061100139701512267797960726568578063404532382850263774663369363703001433594931704732255004962578588468164854850733083888238059103", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "22400777933431254608788660436098411200533242432655419738057817606917618579291151220588199923358027509798576735581655982196285656571136005614987456599857013630044846679016313898538400839231012008107005200661700736815541653178568781031710289472495661750336468337547587991608800011087061958685547702219074102569889508255177804622339993776556349507800858610973182341001155777555107896866268866259253185425059963598613412588622205301839945029217171353930892009557868411604378495960940016300021723993917212506865570791505233562246946595320944323459777312100435325769140810336855434528496766458854754109600551016891810966993", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "25103335637392210959839989491771840990720514988543360635383273152177093897498262978767134899534377761942236143253943587828972898465006422447520251261143541214575645778166056477793686237991817389235153248131504092685661720862981520804842562132767901765135428634106778605234798133615406242741061284046280673985403690098650979020464133084710074029479684124321449270627292311368822760023626389235016058886135402962580820173666831074698920104245177952918635142611478611914841353086627354593142256771392164578440299140486436225428094912760462380982709644268377890646024059991622786104670695611817878976541534067766973031603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "27343437493913271115721337641315937455440502619859256131950756153753722321537033061949836197849544668825833029579717118217213453904743522633125109999616162767170800187353218958500885373668449751662490188693479584403216233781470777924605149519100981406120716779751280940696459747568108877165256736127738597041354867394137455446108619642427986639793850463533101111803500924372553596469568915860530934268202812949188560774162185356154303702625118259747874240695024934159992807945299786407519421846429220271204473328071106473944279260615863945991273975672726813722182792944895551431323634478492319272754169996207526299867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "23714872716197276454196503482775109888281557425229930824371951419986115201546296058465304334375431705179413658721114360330159387961048402420095928988236775067807234060932390552957995726912038935843619943287297814777370983254631457080241685685375271268621770340031505575747998141180089612497821979256500475838811622140070149646132498044951365542617261866325445419112682386725234440918152948221627703611355409566071557956869253512642217126173587834128829310110662027804832811156982267338676167472135472516847268116408462585216919916736435214653660948550384953162745258217749536004419169443922890728304429310127584628703", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "19771507599149902823065402957433639110550685101235876214020896210567975703605937346279567687425962279954726430911814269173781800543066937445613635016001057971300411438407285050393756220313702430966805512460740660693549323367062604191712426909641984082764237034394538674848510146928740860492274135220377102051708511043480168077546697539174307683721777435240906301602174011325575886970797130001490411092242108529718227864348286114908093344998370082980594495565429458233999106148789343167905182850280420896791691270154520843307949224971034227718077281171779816080392047024187707478414498166816847770049985607940307108089", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = AU, O = GOV, OU = DFAT, OU = APO, CN = Passport Country Signing Authority", + "modulus": "28157546729832749487947348041014413700475546387210608257512709509618150969972081342889634646505420686846737547515786684449134210540614797222429798021465366339785419019656618841333487146792552768145928138457368610535328551495428171071526808101948504601320907549759370884944629923757652894582952877992680483895615043516740334949403195877162508544266742058256856694019767870974921908063428054881978361310219013153932114344054608484243860365867385222981658087407418352851680060861716204976375725930579362060742162009941087533728448330295649707029385290582487122247784268262593492741626860559044350543723512724894557956377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "4122135810151612347605140971494407709111826000523561583977455325260617201393999578366062149942930258219757715535048547354857020150165444515090111646336879683197622156347246397289381132405989168964948138324625699252568805014903811215233513477380253335692291140177364979257775231410499368176617083389062680074276625683981696930255634938268324550987349357250026195348219089743067058100849700701304974889514904345987005377374329640362114972192321593005366048165415479101259936350986659063990301726428515837128501761458623216279929489399105682053686455243516510483493675231341486834249520775963898099650419437061286619064094216266830563595614532100497598083532571080997873568954902033359801673462928179265777200240015413515873549174705838018919952174551419706974093937670208898977456747764035423312788067150418815540090138958114472589773467099291711601632249245532263892404138114024115229127180209198874396225189810026422514514353", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = UA, serialNumber = UA-16286441-0001, O = Polygraph combine UKRAINA for securities production, OU = SCPD PCU, CN = CSCA-UKRAINE", + "modulus": "811621176114100325230364549143959844491844005934036389510358441183464160223088451567953931291687187379451366417986372522450705240546706987599005684531104427735596901097177852467366218000158321658538346071233154749008165688505017571015475820745387381384813354212281237808871221378484882030779740199654144346598078078888670762558514011644571406375079695279757065560743226754371886103359834664487344179994585229280589931076968001647233915755648925631381392252924007464486301448127136447172373783391579164498869125771688301872504387135374742413935058584917316626525666175664523160118415501087399236515584164387891786088725331475863124887126974403605705557657662569275348509759916081499406396155549362876078060347734000857923718933990961069030633326702490837694722929977740820414207684289734011063445835009868229753677126143425829269517555680490290608177423788623098932477826731723264953667201893918724758079639206106846811482096436658770964979609591103938345755975177355189503147628203498011323275535343229451277549932397608572385897714373738654397499316190932347314092047858192206082625700705593989273985280182998676969592021335706689803035824950687209564437460879754060497589123441091605898774816096021812775708950827956887785663918539", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "21289355547932579422182631050921668194665202014222274623178287953495889708432883225913853479690687402768844022246162276646754688064913273591505693670350060530443525407757487544181195760900721564811173159476934607393612972865118112470500263866283743673390916069328023828395507870120799997798161002190690302550434524845777132459095946779029848563003917149508142590593893783092469505048859248829929876277695162263438940138347319952822144314962911250280480774890497982764272042371406799460008449427648643325662282464131300157972689418668693946598689103666789755829570346107989583350677517416004712221137037084451254365737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "23982185175305138049305026470662299420653798130443991844753484709602401093030254396984374386388283503947699561642759445800776287298563586273678206523817181234651642414422998118897510047164469519218917547875755150261281259216619251767541510407744676325043502731504463356120415819271059498608802191806360281847190672474333145767617596864752122280136581186855700791312118311774174849349083826431184125744457508158487171807511586100024913346339395538876602384288476951993994407574235186735990247233756530692836698284234195695426826864993508601094852978004206250130809518123320110229596015362525146816151609228362098687761", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "26276809946591359013861251215564777381989940038598864953454992092840886411340563270736204433579454460509332835869470763569988040764166813488486269336035849993419867363221051571799614414278045946751426350499517476082818459522999029395913103696571040172256615879112527606515820344997878512790710331598503529030075608736079549558670712700651762133026986247783613763614396093069340419048768480241553320284754518639227018312341467345089135738773550645614890725138207465202257136177776307275775778800649799044828626174302476862620754727515600802811001429362619411858711190187581815490257122020858387736965824476637315731371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = ID, O = Direktorat Jenderal Imigrasi, OU = Direktorat Sistem dan Teknologi Informasi Keimigrasian, CN = CSCAProd", + "modulus": "21100866678387701453632142590478729271085847826101587324002497812982221952344509425305762575403732262082109298947366590772548732409972134587571699572681515113406915167095197333550573980912257770022485577861812324006463825232317344100570289359583148347186044415477132238639036714778832860270068827534893392279676026731299738606301655713507829915986104428895708069827353738465267612122166024926415900857510926470725928439524425630631110956467082687486431428854515580180865401677823629046495664709671883220193511809254459670210688930491975114642759250929017704372471431320775125084707773162493457253120531464224748389681", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "22583505113954533330724034166367552", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "21296597624658088530314681562614632", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = JP, O = Japanese Government, OU = The Ministry of Foreign Affairs, CN = e-passportCSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "384", + "pub": "24798448259366663084264375435549887", + "fieldType": "prime-field", + "prime": "5192296858534827628530496329220095", + "a": "5192296858534827628530496329220095", + "b": "3634448247771336670199306880017400", + "generator": "24227955426674796055466887142634272", + "order": "5192296858534827628530496329220095", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24889756123343786943795904360245701", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25594757822665334355752255738682772", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20857733303901406050746867175198287", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22725357297187637050478082863365603", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24813006264601660634187758338363497", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21672977458749928000992275344389871", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24034003383179905478061614967407583", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21879262984918821925199446630836613", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21055214036378778877684726867741290", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23589031376574011400724748859432743", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24293455059850238353559123997994806", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21371317393614101542316281011495535", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23405639131940364776912677919668588", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22416196669834517723036674585042016", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21410533050432689824528028564078044", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25077268029695717522681967063295289", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24574190265503548917203045300723911", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22841256699859179107432531599969747", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25053292352568318313090841864099400", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24378269335446322985804819761620338", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24202405958780000036418966692561364", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21972788674794438946842178567839371", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23992427542910611977328662764035086", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22525521288625104327885566315888646", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23161774299070237320141357862974115", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22332732928886337405182475121675440", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24091253606168895787043721767740933", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21504460857946070689013370292688371", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22985119504438697006509313806443377", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23512401975198075903434218220707595", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24674035743902707633886250854674507", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24618925221820591091113801770416983", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25165264054078965315609747143048521", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25619252005491341324009502763892126", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21845080729782258911167650124567432", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25421428408769688138025782706901370", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25422908086597739252327924623031107", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21295979518118059209169107408624541", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25560032927509517826956476551781609", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21540266599686774292069291106214898", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24799940893973073874721789833159836", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25922042215580695329993862475992522", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24532054734171015357316254185545896", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25158870715193089157429408085637384", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21070912067685242507917800163963500", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21781118583316851966151869156900221", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21095742426175167932313482989835851", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "24657936287700656355901965786427810", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21950050698837771756513726864167654", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = GB, O = UKKPA, CN = Country Signing Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "25133855761729559229144099405102990", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23216428411924107736452934290103593", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21091415026478451161637625876802477753650201173770329341770241990864785804775727060032677123656332575578781153114573901633732403549457735438652194450750727140248668826530876668600220906944854324835677491661621130944458312752302481731066263698638001829747614643168024019267659130893115575201067728726925941369241733831355589583370387731791545401235735278657113720100895392569839768236750088367665670849278657754700064838778361595502390512936119419992525872831461445996927103014582240091095228377210454747480181603638212913809609640237844931013524607828694826961919672120546232060926313163510827088364235736062953085269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20883312582756605065485626162425385744601125229616486198388799327384472933259213979639073698115497193706119689213620984560900050571403331684925868037033701927503973442139035984697486981220080758609200844995541363276805527893041633856771735550955337733983242955796612955474885407580012541741487612071674072083729004740178268767922527331223098452356773631794491565143168052306803262509493643056877692562352865225555115639414027635337175409669101270367523465519447261578823448961788022000338828604253162083820375233235010410235676192968252606933930559735472470347637491151743351706678356301884461841469542954969624110091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22213356275042036245981220990606235795349845397603504114106772878360249603263267522668821699579452196204595401722706528904770210993107187604800253214148794343090629254655915192449814059668435871665483696674213740822965878136281816697478907071604730683635612817755110203615272714913914366265620546093576981803520137021557901408404343308141051714058890533369710273742282344398056503075526739720239493444175151752246240130397883284408125655685387102195757413545925212779085416478501880620573754990759486977840782470846782286474441386546539908297804776254996216736182178506045020358072691846810537256696863022796173696711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24731987882039442210789633748475145179417803546694495167165120580435913643590592990038531650287559968374280723464508114255907900131918206604198658916386592755572821402653203656778373557975840637597382378995398615090362429737556327828776259754725508421708882416580251855467656150264684854288102859791589861880942508523998090832667885362706594106857101021294990653277010393839834381446393486626595733408992387111907234812712334218769215112801988362433540227882541676250681389451019693065587175501145546111470080176199166268141594434137940251040664464405743231495856083264802426840911797793608412378673375452691856653119", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "28554602921987912326227452023760725280398859422903060694718545807977303675991418096809046452820582896761736797082243443555471215722756187734622343624097824098736240253740335599925798873580266413127913595471300468279671990279478894298133462233314897338766905313759401670618033645518386621452375444046052449527192608770209337147034507660791720125827962081241031785387547381969094832197008684465231674214680691935674250185301311931970559926337701109420614309311710746058721884723432442514280806833828120400319241575762930827054389243066250521519155651942272446948681130233861872239650058499431949494462919099243714661243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "24424283811498058256235465962701227198122118234717566210185518718965386028625226346690578930415819490958799207632840552736209074295750418522643508340063599340143360613871496937006485875944219674983212659909883461675656447815383580351381952978281930243073361947262407994173379863429827364158984850349088590385193128250933612531672508243678036263143181749071862150518654396628919013378821641157260534051846050042276168262804965713257231839760807493223753083908536139887109778826630482171004222404763699122909828539933471940425238302787480972741087226957714654451807080958982844139361594179915463932281982060177991734193", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28809045068243263803386016025017747503095206875311085689780258155983437542352895239251561910145022938282856725709995741191841460074192497949799906619701782429427117513359189866233635437856848580791300116800870291605375381040855759143504504667060222464998458934364815917578804056636504944759540452905919066768733023723490687490247811240446280220397638255957467031133079063317428204839469813893080375361931618918207014981812742817584137604130976569514124646527846046750266260879749445910018712147646407182002627315495271066452912881196055528800926074410402232081090921312825605012772726069450814601545736554058654894021", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24448378533544045147032034925347913240732881632032201106379128678415286195333249982976665601497930561183027732052230160909256150024212119168849672218510897110644950487772464890401517348975429835353892919653835857877155318495178782946863795721462375277205533288704004550417025728166149011313981478068866774134780450394168873855351249390942684103846984748910438563562533204300385275864478773371747485319402346480776650397692388908318814381267295662791740091955924181965967903094668254033674698217529845589080343584094230284310980028080193294375820842141523174267223628899453040119177118096693589251329550417289517914247", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25476614553482366964582280812890459575147400306817725708382173592223274250592350129395079969143069792708134856625923719555098874101406432376853557989392205349386486999229397427883867159393211051702654775756889466364913708393044308427239871677747307399644838019047262426738093149646930567878095867471729549184518843923488939491554586217643069341507960577382222762655092226554740459540288243154390323574766355760846818633211372100677943548379732611265099454262982909091773787552264835401644920898762929193652570557709574823696862234386355174321198520328084166231759768064111698897155753934665237476879389667197356578721", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "27892621213083631487555891838542957547654036114433749382105913276188519492714001419513997169092715243724106714294113150131467247487109660837443333903816605097316612562065732752027141498914893663002263313447083758105334065739697009085412668976780194667198156240743437525394377769910251444065777858514685870166171050623779077896482124388402123167033552207671224348804877452662974444095710547399232598184767362340750890885244644398690863851407778504332031219741487608334434466607915051706157009441285905684575277651137593453392890914637063403029454628162431840435638228371572597442748955021602300397420655040622321443839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "25083636927227847388876768164052250416508722165736476517387783913054418916085775102599059457729646370457951760342762927934132156106796327505050301009148909620147989422797260450552357123190059473226655588061159954787317148214331929904459882854955527986721953726923675396474926141747942482316693790616104761251345221098638446151449619451258649119888960799542397253533137109573248520790834726992304896437843382169333356637269894912832006180218125731456122751441468134234870708378566462235620978221698591031916084714409446715741148454577811264090811468028530289710057449320658008546117497430929879903531042780402911636273", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22466177448321152420566251350463722220026826286459229132473025825873004628062502412032329865979439559030830142777284569098663164662724262953997694458421019330608911355860873676369810316443741232224824225357787891566762493011134394950240395908115144886819381872792120755475529670032967085813324601756214012155330192261963270072150430665325917644850990876329867265669749313916310575524166214652108841813320805293707497023779609158123668129981540936674803335871046823288617428084705693433475632292828099784961801219833473011258334396179737895369471173117224891706452176676833656651593390492655937936466360526938758029771", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "31216723103670018453777859049285257894364150019146055243369687272148536871501319509374931084173826949198483159578405599959022670299618452988616746030129362872594546439546531641165393997175802202523723010827172008306912475990630682268278262595719589668358828439069047141150776062286153174756070694731519297930998626293842035251697063084040469162463322279049643892578807203701576711545733820732565752397073397784266279112526973239132302354406311611091216044512139842435182749392024686345575308273915885732734089299033131444606135985928219723699858136210683381604253989368706474400346700707021780182705515199492253572251", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24272119754277687425420672401849207858154224275214112051968045643776214950268392466440036507561367887726204847676533547820656855171372780823232511403423845145280254107877027193100782394615085519965697374248463792765117942933574188579578440942131922164617704485822009428310476395344160225160228241643041786033438985369156930549804936790587016808613093696889665603076635471365907982714240982769646585136084596012485844439849982282890928153547512672255061590457014355729450526909635498426820019702844140355412662991211235970891336103690996441289209439063365817557618067562586655491871019343206149824264529477859901955863", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22831354526070193798999680985372587394600900820496360696223081187831054710766700818365827803754244951282505258075058539451061865526492954625730837316886101823834372579240443630472755714615751253271840924669119934820455325194865968400392454348062617458505640530042981428152356140242240682884839839263815569146962478848267632779037417279415692301307175799956132957631959213223766403410713886105858922217029464931312203049480948380395726809481248413326217259669748282766583895364903922034985487253146659729144163096300915892495881144822437358452945391693324133421582526907368920620084763881596499860757286122150728996927", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26162766928264647007885398687033758797755586455322115267212501616027068937090573530105641554807346260759082721232252649336784881187576828432193815558162846205520346317732324765935980559786101560952601179888330685971075869811936384122422696488632781552780024070803082757244481944592140679935110601671047043485750804682150690790553979203084419513639415889460064902552373948183218842325320670152976825201310168156666699053573455832768479844925866000037651553845321927201390580296461436096866431523121640163853128417505202965294264603974854295179353235148572021083802055125986991762709736892644232172606791446031834047707", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29298392728739117433714953460120619851645110612667874320829887506591054424341619751810180674689134014887081524046507603177819829864577694277384597603440234523208750874140437092145524219245238156387272535099909177644868641806377962581961904873698855661701496949772351998424071910367231511817104257203607655651967635876638182519089585278174477942472368932960696538942127906694315724115435413848468161537525748307782809711455503007738176527907842450431559454870334572341759993965004308481259669094076986066018404900327818492869883346151878758353568102953857780514841134950544157798506923557560957646035188354497133243957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "23663840097910117745575116042242185111578075674602053030356340176789043901118114450207104959763725255651673616996452997192080687252633791193591540144760201796452614953850632685949646853031777261954906971033404662190004527030416004957405013412683920905502492725951297599298327926923441520253557043706171816993622905106701027148556248216298830527970812283928537720235667914312046129699123567100891494101803484566394333494535274182692447386894066441797549116406127888995470624866212229476407699231212280307511171746421821900307494916433694573813110241354614678120504891776198718410243069814548005658163002700811050622773", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Italian Country Signer CA, OU = National Electronic Center of Italian National Police, O = Ministry of Interior, C = IT", + "modulus": "29126045873984006697017546143245341423295440040349310468853024527544290039897621467348897022845989604173535722842816556140075644646631392718291173148628576167351756670326917678805859677164252678583339946519295445786617219973044440873535609291314542986781659429631161009085558300803309106730722634065818633792605221994643722056537151829914674609194532095771426197510304080477266561209787745160620518920425280915607699246686686211090202956741814784822550944029071195090246670081274429415470766556611576573698625781555217178472828734122153156909435335881235165153001806785820610706229296034456040506295379631239774063599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "29459971416602763612145352520246398094785563459966792685232297035157642882775612027628532824896820230807596938180752172268088422569875629334152537763786535891279105532308270044752977223502046563879355472247395538547874708724162197416532163890886010376934934784035290695642718064978141480984706791708635806477852977845876673611373609748298891814236109013048419042163671873939248077499457751451778449224300030745472754866051905154511233409792198819153822919931362272076384361968739175956275223503561523630122863019879847606951188060025654465895994743751881805593247239471917625085845989136712746877768915378406057932601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22090658955226219863324875720821207", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23029239703692807846777155682526598", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha512WithRSAEncryption", + "issuer": "C = MX, O = SECRETARIA DE RELACIONES EXTERIORES, CN = CSCA MEXICO", + "modulus": "23728777453395940141718441170747842481991651613772579797332850172431220620292349058782270791490312375407559548498957435528078557962662021198987085016632722549665408135732075372335107684253053221912939346109522065407725457962916902335223308646842029340406276100421184502783928033504096198281921838165760203196955992297627624167591858478822875249302333621191527527212755069932705624382144138151179834126712694033943667748368688934890754333975835259974043602655677397839311204225785268780207965819400801003899919461897956872821543369341669917341656400388388848285051151904559556768404116599993526476855311648708276611377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26172984990213232651898123136746557284254546222371736762720658190045564484018971190749373624450122763187575390240525887468662054120550018442896925703524085292373572929759022814790806230773347339108887634194969978755532056818002617080200357854422178361516892542097603880030239821874184107601897207848952521984305623298731358640820633437227658691457781339114717789499759181041709430809355400294614211933057750205992607814601999217784471637484014921062115091194811113052687769004392757564769051940892054962882977441819458188282080201052373948514963256424857584357453112142896922558341788551789993795676093085127513672337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23174033823143125508284488246885406894367830181919193247700000205291197606994167121232647520326938095422376471970653728039000013335792794810778326610646224716295780507792608129111287132364181914623812409998084240390325382351461000373351772461914084350587678542357210389091105765494687958835141433257597355016377697849625188595614389586410495980587581406072944159067425608077591094863715394052204835731870897314901195856217636711143350410753370000318468287481947354050529137642495275070114775630620973632863120714769716046922483630822194865289795492579870789237546917862378325024585820169994602573716199223710701552849", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20437245275707707439470281088762549856367716114610257110825796440340728683796288300614302181943074993919921066499249499415797716465234015038394557374187434165801574434857741440399046065089169911509294001593250956874642112240918549910632163842787972484595178762285770937960672945194702026220852701924152337235726684068109862246268315903608191761432514188799916231934854832504692285537954529053780659929565367061059792102745241666649914629444955286301454513592845837470652377983492363474199282687833879994695298460729108273482724318094720888748079504368597412720240717127502492646760070029572481193570277717580866710077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "22468280278927327183969889372187326256854730770319744286624996210242375339724644261767525845770448559012644020563524087389662081953327451189435351943540343688353215970691160199789440388302535074399869328172527308365443472142362475500750989456211544898065040584452549619873958207247985650716819569710745992255048001059832943305888431908991284570304476038414265407546428127143368346102473035973468736693911832576151657477360807275719966287591957272037446589872855005224397244720449003752927481929112914801068420824434868173668570534439749371051670089099855007521745102690897413114764172061796782975531673181309676480241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26996820813162008454914732571171308818324246075068051559901113646167614036234199152146692477394798195922278618051212804340705046904560633603159439494202640235296078889821404872027056267965860228858779268451866805477658466074191874736593163169258304549927509550807756449147180601208321887135776965387874772935429482351195179254461652977800610033927524182574655936992308994106283341783085262204053943828210003817095467251417551967741749797393704523121205701008976104031293957279794492083575937277905110613796924710839020737445305026444666615880221727953147356203946943096447258946538323382297563466293719959543953027233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21006533184168735744360336926343514868039479478104335084300643843726318646898853317542454873332459352944459881417196487138676596804226000021555303999248791190819861987964966308603264170004294769667649814003158722718227836814561451163507185524681149558580854433483691816376036515460721882377478681554522383196823253820883394882254152681055359969824452459612055543722454332532657326035129764236131319794913269744059644464817507465280073942914850905325796112810172164912533926824159778954622231236910448351446270472250588959905125941704382614278944111463613827196509213311895754966589799127880474595008062490184413044507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23812019125912170192097700238294217471583467255092938485285994532394948539747650733719421764661207459453971617526072414169715905726791689766409217762310546938771842270663600898838122911832876444899579398878737573234559123697754425405805879943356148639011403460678606562762547422028680872460516951722869316610350808220240239915011626699634091529142600571657578829028845010243772637301612299569826133164673891279755435867487287558130741717967823847331481509420609497189585014336807061065894276743263973204441249610577901769975363848625539341742920664604785767327724059548737306136671400786973541438598575830597774799951", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22631294105914921646258842391162710436726357925309556832101152664498735982480786304827558917354679332395155492831755063775896784578684798446818359469785225042063015272505836581269084529174340569262270542043462582340587336456752759824095165159984868713137401853058181647718014708285155985489145488966412598114575508913927028541793716002336352732228090968771841715779303946650147077273972572649521959188469196387910739886185423993404838884358998310433472385060344836980066827496084932454610327139981783426312991712990062989589374127213530683693588685498972086388495879362788084586247832036208689176877109764921442507533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30759846658054439837584963333047812513186855175068692974171806426818510297495752643655417331539551921520712258494494541522111993254012947211078100010663491449198101357486560002872646019354646357866740799739942490926044601466883774680739498515778777952450455195054419271108272389414404706013268759139482714803321707145640794116078091451394166017915970650872871125930372487129957176021533916360485664424480111257334634705442896257063138799523542891192112661480841277748626241881160234944337565422816125338245663304629903031231690399261581835675295661556587655645119237651827844743363032346771996901775270910674537886867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "31766347078743478443507770228226284639563764760187454426607733616564251324439042020060026074938153684834367565064682302900645985476352569052638690312042691531247589237682105675517985909753779666569727744667969562387646764200282689781696455587771217846912862458669205251235661677483709876637817786499165807210574259216134096595378113563452315023852476341314912649582940848984443711912480206279728015430052167519284319492852225542708020094990390071846400188614235707633371941862229438941269612308529759573260682515131752195961697416149572434243256158571407860577851724369285016593095378533441309318274969029020930206379", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28691663997494100143292015072033190842431475958854181213635423751056170907222634924757003558151182495001736608670017229395564118090643668062622915959903408822546753284291237996260246408021834002385505656146085655367419335154720743055074144795507682107580031784513670473270662791696084767652653748750207243610691662293639357009092294842523085533648637558294088604809176668714906936775568708002349698373511616664750002512900370843365738154826225362912731241436684242510052038817231314341323521013065845228161281298893831271225083188374242160327808639335915017072769959167617040037920076592172001846391679896814862408771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24769701982493005272064421213569728555410303635637206301723421884518098122688292292116408833225331792354262011703400716621109408253414916216810625041512542227756613750227462798622212635828170018883100463955323854701939896271833935644413506576006973314142057839072920657201838599444708174444676629131231183297349249632214205385647929951247842617196222282981034542480575140853511496345085351845952197382944593168586931507633953005882972978157474077595048156019247270142470247126560639119843175178553783506924679080965895723908783725655810445611294426244994465301539644006007914912355389918547867504924711690243386562209", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25705797784867933098110547675417846712887502003903861460380949146899953950009812717459316398935364568830282946845833489855876057126092613890159824243091593035636666008339641002993685002500832137483034961034273769680866615824441167491719577273813214643782337596496683025679250102141400989954794252950313673541294152844364895172977629025556286254483901322848218786240214017873062101783402362173337974246151903673814583980385867928804263371760946635395094877939302251274081456046405809939341778746630451061848549106255367460561158165839236830045658901037672634294972782198443268274837372382690674090071983965522491449143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25135294409280962311203682107305136682872118842665889351862796419227844497298661396559551122142498451566469760720471667544089160106946509143587727907176525987336685466416815343900196113916369151645133669152154248376344332259186728965611807399108812226432612034489553723058381335352209591720367573015886485084891139906082867472650414897024780033162007108904160605398143456653043192846141046248872631240845094067776627221165342798357901117990562677034067290186975079775774723332674509382482890180435510194921787485365308725945521649193699090124865823219179730581965484069568973550303595311943242750661920922427050771157", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30526012796265493638004383208855046481332777028818598557145936378388621923051420547842198911697458889669732345721765561311626458196727893815739173726153476895305427071206181312283753356914611179341245596852236003824218628131711726329823307806981948779408499935936413340349102088369042775144479221050629967073950109562433710210973152560300359404373872478853819693118901343238033508087236784832082008231778064093102012447192230173268690739455923737261025962160324842658422331101409021886837514897496646845959893190018732443718479762168904096852088611035286958016197760810963297577443134774160478134215530474947508859881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25505178478372628191458707135219183488507971941807205244706747922931789539077712377639344710136321703407125429759706509979671191368143348610283362077454021935534816151617389986229377949156050098360494011389037764626398394122874224415507834328530721889090969454273544390921723256100142714636813695679461805470833163861967227376063851998214557366921127564103608407927033143003669157664062129959883278585488579223429853092015039948413027756353638291775414276449006626943759474004807487638916938568730768240664711292125872246116319171563001305188688199465600375883639964800745012316915925418907159643334479092597458340257", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27700666494040296036955278897319988713069240738650208950957742516384313567266473565651710304713224588931807267434854718050484763066293580809186780790839146849626598330337954140046376745495274843800233671651756755439288424340010060012279385845553309401129067184240957299969300570352959434443159637424555915676222822935632250638791220389424286122443924479534934240755426760067588748891961035445799165264785103979230824921142327487409211290827438202092920889118604575626031039314348024233602435375085580369748824978183407865023148793623880913386204092061362019699697098521295353804921790703416327849217606800830185348459", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21948503346840402394127918752618275539428061316195589872821786817861284561681858596579433351348694754442197083798543900013825763774413941832190885791983676947461201016486061541519942758798355070100163020048181324771322922283460728415377177437311465169806037931408321092262461247179005345489431247228297641812647859795727189801181377173409567637971923956973519069993186217101600818017662935637332298481899211567077514905342686916210651992603130080404271959701224486923938311524393837361826273775564566624779738889208122841146543456197955878604022268873306636186576576851950031983377054227266710685926022506497154949997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30068247822752261422931756957024657868470275670487944879785178429548980546912183384200131031734470531389555331649785793991512827753665455950756837549784589586861251438448744083331589441889954878846696322590887859062900242973348511116750899692933896350994699985168791177407426218179049572962651525684567645660891596165760658624727497098650087227908118656840863914507888393386048910749311707862286968714186425957601614794788225336130898705855936937682784980687640425407059426764464903198085772154547293196123458004003520531917673170273484839026274783368292522014351674103809965704857057636596399342811909892857881878381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24608245826465916913683172515817089089713573251289719732974884314218817821875616046396863241858543199048274556382137733829234230287950764566844230269597006213457728308437751899926805720377897307956698842263121874879611455567234309785856392200675439889055695375343555457789783070394033121302517804481063273208903378276937322781015888207979575296940397310265368743165922919930303765961036750407111119462361297366628771167873353803908883456018349386870654647015124369702616536544681522451032268249958591887622274406608413677867634033974900318600430471211064118032220805967477475521153087926628737479021034262432580581083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25315797750844567750182028046413713686208209762502817582018842460389355007660462977979658720371435688499884992002260976853615345576942616863026781214722277399999480011503542221931454197345937177750619249460386311728185250272131151951698021171778695935693988012664475093795259000838699233058448689444275277266034160411993846340225168069040389031605667889172482938476806094018250398521004257815579505062277046846884966350068090173766439487808732581321403360117388817145816913061361334646259834875619071927245569755571543785596249653092637304130052425700557414188440843585558753173805466520059077180015079960036191089247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26847051026865151041206526806770987066309088405636886591827263552229010700199936871964595774251967462569246307957950846546252391059936655837617506019878733716770934365070262781578370029853988496208594489019896157889923638215591510188003143635935966060750171299670204273404126918805098633685148347144882382848762952831594815850830921716659405390983029966457030844692731613281292207529665909992032386509946603740895994309721001344150728274476090816711846891525516354361748404268654068612353812757209165220307269405613777924962387790820484146881781026159040848036597909305248860060732171563557833752881157409499346402121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26627362918270518269203979689305100494553026421427180247625921412387856233738435241447531950883837197737711574921526860153682067000003363306755388101390544855266601290225108509020200231052853304875573598459124464932606441378563351293891496367975281971440906645167029685232313079789876222627839854366224762463447186912292801061085259317485004596924746127103101952593242175647255582580238082191271535198436714536684025310986877654184455589241775000997958566988572045603897705405613938996442716776518181576399695267672711458585702051131031380161175514839406845427499887538801031431781946463929020031575183372176718928969", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25571393853135129359255982302810774155459305727744686650900618321511155051482388711848309501783843593287851561496251336509888601374740642581682148530431467597080050626872754962770423662901631383063856915240340980312604914438527119544637922465432502357629428576292455279833697434139869659353460236031227314145495456980164610902383128697003962996700960531353564720057306160311161856648699218500580317317385512810202892827172020811562009436243568374442223129530717600662490977815324771453490977915814493038755310058453362047570561512125826008949012859907346048435003312806296178105712425879063504184486401961317028512311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22519474038596121732793462023980460990508761894065497256097911014742486577931236512512646269513108473204879480470860980016581407484000960936171402851828449173944681943413273451141792882394730673323478407120571343603223740737036623815069698224827643619168298987986143630631961767192304406157605403471794387717145044714185211050421602844613015390609340958949543259689051981634787870305810827428514291570291503631440827042102309820799583209541617563454764684302218033599125777557924599021639477992632806158108904948799157110475358394882663076420943406549910604898173014038944210991504705988208584926144127056749591203369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19337824686394550539055904113104446013909426249427540950982837566483920252748917536484503949206060915628582443147034765686987076229088468151999878874876594666584071878023688398200779808791686370378487592186215464784712613883251721034755066987656877604282982024975846117127609110471648526797997689864306464382492230867816274931942254690445849672369769814883648185856859090303550482648612258967593017957245574170475829469496995933406250094283248941723025802734706913167322078493210070673034275586056008881159250529471785592863437017844544164193275240981500696157084435596712179932268910305513052613346522026423330752791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25259807453756731650899605756000235150353380163107039407963628037996512446488516464319145357280250529379595461999911558492104525029092070640604485528412790709454343743860800855661472121280320273786087165705667270047518722730728907262252121054379432204474861118054813490823167791368440984093943926967222731618159441663535525080444865428170083518690815955740088048007871616270587729090824814921196456008067042380578984200342693912518781423786905964624557555415435135378842223105345201242574910766535215842294813830789466549696708058452078197724576076654896701094051360382450574901077638900781541573984363933241569639809", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20767294461370614577348198709368686473946321590471493946708643550468465393551155899975355462415232658785655748662986224457154884002166288741982030409536444096081159529604645077751570754646473295807256148600651699968403377152426235659665141997339262253791849181155680907482274263476355542522838614506789004033429311763094792216633249434551809721577159136353661119503856570630103649957329989729491829400313723663953722649550137258613485374932957223051577418475804623614289035407923333440524086888456194759168624883906441745551613556055016907926667731018368776801213232727747061613897379175256858521493936846443486598133", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21234003627362513795613507385690228568923895656254295814906449143594575354252957062722410102652214798514230253757112533081879587997378655671314420953728238482255353542625750046046399269741613285173036287533891234906101025990953217868792873521026091558325290788118893013475214034075842035124657511413101824703007989444505449753202505153381362196339676457861131732285922983188690825006104398464204955772838104851587599568863830656913938941318756710061060673343180664855613682136007883788607314521546481472305185624959176925745816697975761691471613126582315148065124248860018491638996965201393937030432187891158519064281", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26117063076849353845791339515768761470870352430542885377994787258377842547712305723230631322168051132078774966644333831926358007793324608777645513803171349927830891410705180478246823287753480396265367618556714399089274817807691409186141412630907530888099667266995562627595438951096984164586430772616449179877718957439042556090513548273592772542448087571632081172531508405411002307133053323019809804547552709895622214926529508889297986564697375569952394017774386145549710499999283601877030343123237687051232457067609217968838066516636514771983102230099130340419143235790779728722741430609067249842654708564336921140431", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21136113667106515334263819819263292958719110654174752554193371258267184227307623931209313331474012591393761454648154525011493376489864657156457770156875638378039113045673855459496888203029170023747923875310885467939078508486552475080066846499266751019689136882171555772096770816474972585035602632802258124905835223344533644070189563328466398073285383467468695374166614254659858140480703586699861950858957424904908155126359822826321197206691369111114658261657094067295760159848235763613920077603496749852398480534790618128931668745010390616825093433381436363142109514629668698510482423690754137928395127333293220504861", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23928030497464580155961365164338498503819794901500448555281133984839555287331736957160123947623187277383617786845395886194866961243686271825226268912040195855878487616515588728270486415733839697800786521916642359765335587416629696145637737322611891681389544382696793127642625092062156364394266417060148255657024755071348011834874474517605653725695297549097837540749785699266713868333426041413205266660149140133317124859454415257713016214654517609976341816776881813374753520661272063787002099783905503374154114131515896394594535477068020432073683808956567571039734054789468618549751412500252263892341986930518711928833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23770581278422639636904414793631298130974985099682080039250654349416924266736416487647267078101454183335979776146907582862205295868107090238711165117253942821238336434811783448735386933244980183249218834148942836638417432460832138159015396182214744244542132359810452563080701994357975376756628913236359373629576096310409903192610628840061787092568488930240928176112800234246782399285675025618540860438291883335062048015309931448634831859108904062612447694453390046989354921104684172822135275384026463286767340539121083486436406734223386635167770690781243451279449444604399461902918464003640579456922165235468438532143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23021680751046923993194578999247622231080791406207156476457559509201704964318068269818897411608939933486831024367833500263870120746012062747499436184178889725108222623970829226467854182497661437671691342829382457009081244195344270009711206056337760317023438976860087347457948149448542433505951750375603028063216400939052118247894961468809326849397127308511515867719497655972881615063804270169502519013511293325550135189510213889015770370507874784025689500409264736147943839335187076130738934811967542056135436526035117154434988897026029884423269120892272876096978380965582958222097203016240923264013471836498581238077", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25355848785657221301365946404293703339091703111316329768109786584455047381026306151168796813175985321707265860905119298592546930701734293819023730060524226389031284207367159447258209981916378436619284115253440494250823087766819749855869717937932497286463599608621523501516157431224330995771683401965122510087351316517014436232986615910004086246007538471012798095100402863334858673519835177687558548428116233401075069663708631887568159317424162688813340710306964215004226908173193471273689393205243869635642870649666901121803352127389132642289491044082655978511671944257358960511526673497578339233850957139250556123517", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27326103957400253338283685725680952165647575564329210722448445505935652925506091905840064899713825789885361806747949087568309700181771512314319935668948401011388356785847478361387949192928114837677654960795564642193202960628408596715371558166415483051772588145078368143633884715575318464820312560860890253341536908473604688972069543199132329047098079444430691899340945089698141953973129774038176129143113072794774655350375373037223345781711123951039464837099845015604901248212750846305492473417829918753800649794396029940555775103136230774451857801829326440578890682417302224235744032041546504775325163033576725003737", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "4892972614053621825444975101523469529800129502806408813165377291613647017253378630011940621422583225109612372599002389427761768699567465319280773812474127874991990156115263645003726877381245065314673336562200912729667631977210915879976387054658982421014850397429912438842247116856787016666326590818667703145871953220012010499175429271050160466314960675199103060047929192538854876462417629711219845715691507655832643368812823842780250035829074704907774715867298024016549506467155203144682769507398151573550130270362543488306246298534196743514016510026236468749643977827313530341198811242574658292330045321776417353580570474997329030391154556839653623094537450764921962331602952502442864183220704715439651163467425116052496744524225707189433316730903704176337573307719820823637122804614006980096868186134558752910456940935665896872639207944481626121704103849729806762581513114855386217317775599255894858328124460182506589965719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = BZ, O = gov, OU = moi, CN = csca-belize", + "modulus": "4798238314833559985365769123362127768099983402798104941050611328431059238760573656191324262611434340241836409423679109012821203716697408330634956126800709741154491779541947532175399379152877858342728129693371148487608528566309024248725447412149351280462925835445574321195874002673971167537154154962331580964182811380522590122442371912334710057414877824866432049703248373536947134289168927737050763270839776486222727874925825194140506236960170398540229668502229769181381418000305035304903287685198277519390663877643179148604742675290730361375324357279962263083348042015461634514193492293858876554703817840987489566507292996027926712537391717325176058989397904155262185174568089811719505240378749667369026326661835153634950106017297026848719363921863783777709471859368599630512896503829142063972046969947735639629493487191462355227108453057555299195462983180479493124679631090286157917109764826745079927612559045164921596759351", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "22429463598958900870879170469146024893074329595615983646564874218533652942489652971171783601370789488914643009030797295006676699169861397088735843474485789693972802462403548449553309154888309910958441615824807365299268957106369020219865584811614190703024909597269267995202699729286424080781850684419243550200195189526666124147998367807297548020816034849282498035190998386159671182763203085798102556556579528729204670405572070973116810894680777753042837281704583820644991190992123720373206148770705898003800566257608503041441693511872692847099211897905914928305687716209200040773400349169376785798050356135968686294803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "16986400456549900284913674066210224287229170423104282510100147267620625590605875293612306125188689784670690304951954902527804493293827295571087562789786383364688141090472170804167215000340238843244010761560074376434107868590098955643158074902410800069998527011702277018645500421897502047694356430003132225577748005839684822444396343995927750998839727383315825094427049891249477813445019412207857988665555218324341531285520207647053734369852097666404148099074380795599734991279204513371556172371865744378456309960390533711577378500798605816798253473060499708044996816517920078599617150611064410540467361213422000179397", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CN, O = Macao SAR, OU = Identification Services Bureau, CN = China Passport Country Signing Certificate (Macao)", + "modulus": "20206604084343807652179067066653923513366927225865607313585514428659355494839813689612170343763177215142795930570244438427750025424039079509512432546671874101283015499319118109980950290384655511359211312098563930745320030919090049639723991698057841316959655091068704086943255837442077330473476508453071751207676489043934796936275432351412548135144408620529124460573269919081117445781588903477897433637052172167573735263436320565165116072882119632671523940409278906506375765827697980122310188954992474444357150992109181668279704743822854173575861412875655982985939684871827354513353562339553585936969389112615212911513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19290182095388677004083718826269203271708399906077820387388021358881517042959147797126368244640176250688333202293512988943923637786618757101802470413225298176858328752945691058322227733000667736572174124563383363482526608168605855655997995195785521750035909409893139450059845918092024546401525011905286190690657027534438932241782436510331368686541383953476168132197604919024833840938436751240479048137266840714434087463260843556100234893884214330678144723617310320076132036431017605724165447548146294127929103613857456183660009148398215506569339401308744853701863035484467145085591667333167313508333007466102277638677", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18175355083897344510770788739064917238709267421901442207027394136794282813224755079785838516905696782559646237137262985091766231963366795038632139833178606048126532074267833407385978666169877689826234787203669389941974092760679495007267201538320624561017120339580054932463974419779837275670263150717456262636682269079275255607075724110250907607869247605555844869525265488922750534457750790705639395429624715396953598496122380123599052978332007874355467998271301649855035665147821820635440547389182678135366513096119821182306616774886405013050109614979796866491337100774157193851633084513230360990637789566139016850933", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17929705209131729846504210111703086107786420715534350378727744253678706487655456259584234365496702807494284387035033721416610428649178351264829193021753770689258474406500588150488866117908120123058875830979392861420914679271404397687681743558844853853169093002325507555434601388801150729319707065249022332647540188356937131774831830823730234865703829182153941040823252459081819637145004205602892235718430694516062966201979038901113862890401490960206814555200559166123496173315906962787419284046607365542059965279581425135160393839373017930339776377616213386924368811947710317699786778282498008047697755187557953979837", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "19182959745147269881737331045874921158649112459124592419773073454247889376723918999202060049547297188863349942707350413694766235960189628644616857050144184193727007351977593273162221221269466622991761645538171203006934833223647222952368946967307068169383460374664592643675584308105715941140018971305178248488338466349718045838115121008584913068351376353778312147378485365274206426174771115672564214922967992977692510032240833378031310827943246038301518380851113174317510553654047819387769036909544805246221436694444474282009997856252282590954287626059488738453695198848797169272263532227741152496143036042740874197381", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = MD, O = Public Service Agency, OU = MRTD Department, CN = ePassport CSCA 07", + "modulus": "24886285942559192812240629232841037981095132978759908525931513658169050831869127072751097190519037465281146397335271945664630878882549829288056775533181325331873960023107234647012326651355318717426661344423779135747721581112554006749767499106207625352779519188362247715540574660272585653321126844096379402724289496701181074577750398761771851366715167207193375247236017214980888891965266279855025296558784881626619995791509824648822544362846713976244494712330831808650957931125276822909162334205714186843641838453861741977015542929252959325453815341061340267684842428507938246606547955243898764289480849743445926563701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "26838932097263164202286873051269524665351608404700671920764366306509836928592227283285390025844131963142785367929470887152235128068671352274084199350899695991554752176935714981334891161869626918774419989204110043382756859522832910509729794994110636959417640608438259290434330459849599100603099257890417364326022603556203156873444603398762106944908838473530163538465523282116703632856285128674840484640833028035320107221552211984742561615686157601187015229177495905044722121775435481900969451773151843820111348056855713570827962672422207506241942490204452596491541074173975825008636095091512172417863727920075129448903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23068358528776001875217874381301069950658311189106146059221868825242131127707117773277187212045518685074084337539672305772148059360122240827237429777015269115704372263988060731681547250710419631076719144454645679573618242250006713357605469540753693920020247073097832139754061836076774435732209633777299473366762940148730359380427067171516392521957548604150367163863184177147240049641878688748774835210740026270859742610725905339878151658456548689865604339482134773179674030465356666473590227918690816802837168593847000001517630354695036043782074129838402096857763171041166418485557142919212378842128812815232593407477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "25137538020352263877696761188015774452552297926658273508901824895943654319035878671346449705330616167481651746033832971310485928055337794806217047392947805726694399849187368538486279488618955046845122659783698385719862408853243812111923113100259469689425059218596790055449216284711127707194270393637801759011899784338736876120710665413023304597387209964699684506621109028685700739771313697441768925355692613836264091580321200705112173434033857237355950845469276712942723451540201895203800210052175843169763256063609710851219007794301208344272567720349203685324500492700307732660601671256038576710785659059096201789213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = TZ, O = Immigration, CN = csca-tanzania", + "modulus": "23880013793919024520108609014272741876226251978797698435700842209583721417880727975597044831862007588357159011167515188611629930690764121999066073617744661372380139320165125501658371584686699375990022323105982129604271607451537544126767415481710213168603981279319426876252410435256049073743429421928411738804509704362297286367130612867767374985012830825347520686833172313529883575780146688218084462494936534108947477979191401316556357502233385165107736382199586140507150882176275650614558482450965605773543209656914653036359812041417498478021315935792594339896017048771719392815146623252291653266695024582806595271791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = AT, O = GV, OU = BMI, CN = CSCA-AUSTRIA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20910639246909273024635402493849006", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4601226551860004223982876015174958879417568859336535085944570408491854705184590071536843829517887815233987783457382234931105544608540948717133665651397877492066867695127984712394386393790674832028588125120396035383694747371648375358461835922202677896166796611018244183367845253546925181039612136414927984390578532624842645092186456471040189086217519988407334178643584432241578033441394970128666497659348589895709138524681033101433461943422085988300418438516455986773685796962291636441921728641230197991610869905133727186398040772011908400649794087330208985426378802320340584630107199952410078360123531114503208131035385976278192595199286236051760901534597038655933873551962737634311592228001757999438134306709769938812555879917879823174412866804918312862305538430098611248900763340005208730284067051733397802785677984742302859081846700247534389527024161357448699537201757383610554129967828920358050609374267884741305047097989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4514987201527383954630067828552469222910585982438707882384659922048440683095613427120008406616973301717784474079909718002701657396087017044933196873999447294778930236290268238633336493394346422753357925479664692026055819683023278868582061906404503921528871602943323285548934613171407455477951691566997324865546901819219223151480273766836904987891661042305103516231084366360176799450341801815438615223957149342607754802288270172091093370889269761176392427954266700546541543783870187457494413930431111840110366692354807190532463241658607591210704090285769660335704766472722426391445669173749611195725393216849690344246615912006518437161869755938073878878407965851850110929831074902084841661171035015548267886878611204068609882277845441644723986428435596098787872051215095371690828792072604845254448550337619977934184830224717837246744837377396005466884829055765817603122027705090379597720641668409814293303615921355576216655311", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5196645830268895693977257823006479085437567067156201281501235828318315172614879675567302934243581027611482646356527218947797620375432188517382463112067616642040457618802094947685626276998555821653517016629322501049927607723050735625654825199275016996555491903910405607887446439405330236906395039094960285459442834385153056418880155968038456499349443905964315529915364767310177886559239289143791475023475392690554899560704837236111932454124467523743612677032738152936942025169255745214456424866083435901815346616342670526225457761901164391867286645729930165508275419337330216978499770678932584874553619227400285496921799538262123294885637913652806294353461969517880383640624822378369591382508612289224579970196660802413475349137589104526925682387948223467629236879451253069982005014929163291279312538759648331479511659059232670968157053958980416557838729875831499378570758068682475433347493766997797057089727438233943692893699", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4515291132859937473409215506585255819157004283694839085427083239229822127122824979261366374123024563517496324977275359656831078778620963223919708639273547960338746773049317270374087554176541738783822164403776693559163506463760068022923869297784345131946499333348655752839480949577939940547508908736336995101927073562548637336424827491661036565337002899215845492384019615670996506246191196669866168780023051604272981486280220189205941105081244672752843362835611904319997099076587811542897515940510956613298006984473522787433620470368409852624456791817572382305900422626169042810884362466634784227008782602714595973236443025700866484920250024148592009090072964285419227592978810905190932205793430298430636681971949326671257785567121418124511811277361480157743639166414296865372802363745013990835566782692635856946717969554558441897318840063009499543101350363156570969931943980760514035369280232205419265305576801578681143946611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3624931298391025574546891011287203973658002262463668338012962408804633346380470258604201751391381499602664245685485305004002700519315131042429326243387212386698778950347851583240482922628021009930608529815948530294955386529538261895564400326079650916676515686061815819597559436702565196601267899978061570518519350998203551114880483666939814336524195650374027994660050424037578768740159604455568126165017808317368266175892948732225187505297869528701670259908033884429928554285749204705018828638828669265933933972192336637785300146890275570664688713916842008569927256077611710503358006143916893802528776359714904010168208676659555691515534457379046695417868350225578202522629203318466545313118492614162313316715411123353067477702126307814176043833923579871357062682218633283616230851911296809521579622511586916096642881549638855583475159283859615780172260613494873820832842569503392481456788731314802633959537541496835455972139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5361559312003369148358370915477531335260334224863800842660518303319052580079300028986839894569243691320016378958764370181546632427565537955971436037520638272042628638693806773610564761806353072042700966461244273477009981158203250792505426082782625083429308160256756301050157148626255372293920477231419639583334794974515803574303458756792399319666518051387085052438963984789682590644616416089114474412044465569986617454463274872570503875757803208862741029294495045665697716789863887383791907942798712624031350904361353737650012312065856345641777601726090884435049772382623505177095903941668674287404379794030912560088659905544117656347465516244330356323329462829003520503498407861067004446856953593840587601148051224760694686235624961703808423986343055851473666097216690197993064637702596261689091587629968823705073195149916531251305966345549506902661197584394321376973207168799109609700999073612095613122734365986905183405613", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5075982999095445798711923219090199725151846707308065688585536651313427646884515771866877196770660293291329570950655597638611853331212813187729320770210018005555991915031043835647528337810809031679439775962058962871223773524017029921392638253973061570400212396496084276431102408556915205383750453772340819639732157141140162488095480381773412751441493364808413543487287263565239463944678577221466639229172142185291077355189551342253889272702879641887759394119551754876633965741818008635939859406486587280063825950605946127956119691633329704925973480312683566556023371738877011814136011316116283292503972726487780638198855325844518386593211710099598576683962489550397247037396465540721587120451061344980643538072588278080978132276608397988042905076141023055691686786400433935479625745386655038896976051994452632352874870238751462430241135664381080058508969613996682919940949872494567838373084223032198939332549173372603745238657", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4589911999521378823637173914976476557371493570906292163841489549833708924982002267682658316818793066552889026000872430689685534399391902448647924664710156802022912195636391920643453731296423428740221739398454923434517480371658353622706032113956040888145530983894636777561331823627222278647812450422636895312475290393851222642368137680543621395339055685224888883482748965334426079048401669458744133046668825765339882074569018944206545552003539367702780174320456400765548554522702305007929873603919102480195655417416282604132786807567181336049351584640139938432198545073856524882098287519617197216999014109173009563996356351117696227306690768231949585738619843255009409257548155942099156797281445221876486523346778824900269973852653008350090722756715001286129742622176529529852426405720722006408556928008473975764381663908540836082267032437440462914158788810040679724789477033292689586485036564973586994123930332581187494443241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4690460899829884415281106198822676098987834775481587459135916783902635927542832485513228931605568919989412837349716697119737706413325104111790662918516539318637950585785239091500298858131860684689779614291239947005804124555030770458526056727005169147640287909879259233443758905661702506874537688832779346297358641815756908168249396522055937865601763397034125285554461424982063895836009662518338552539894199598083469671844869173352513874203685418599635514318654809748224036492200665262589902567432909497963243330716154013280638411752520521814926368885350299489675206710190025642714890742149952396231892933280489582949869932787281302856720870685221553861748269332751416147073890850000414152226102218850904755971007522984940143229634782143469211411974309373507368314994344318576256897683213360950960943913705667681048156989541050463342172540675858701847832259278115063525907038410167923977857499480208249003039954580576766199781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3661542843737500721721122642774926174898183730850285128385467940904190084524682051736516161521849171031318336667810564097115399553026027288683664941761886195539749969619729044660791171273379140200040390393816744653687724569143831223315929447489467491341458749100783956243943903018259444627609048993069799391177284321532835365466885127072919675278145634494116134763071506952430910685366704119111551928415239371904403682531589117661373066714318400759403318149963162530544775045252107018523314942751039398961859782969059154545946893327162806055631525020988878785325012756912189651024763483713987815644345038040735967015847386604625815272199683791724768259020452348299676677202712124474237978710978582738145407677334218702846707378785656467595835405216400416113877395284008412237693038679344533504972112213510633689642609968449947322603646213950960812968075701346145509488043295984334618139209530720775493937923175531766424008107", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3892789815394730370139857430505867302167288092155020476186858798374914352556601159115561120726546799357089486352238254509366380134361499200999156122963044524660506909905739466773041410850045282150422985045537146675352014193581666489557925158117174730977738070707205306336788181898101012763285412401789125765114488879987498775343134011302635412294787819311804105996922683982378055092951927096037647462979007878383211431538498347997706236762020572854832812529714954190859599682166867439185199156481460563849241353479587810259850805477999565146056602136711910670821897306609574689532857874401910103256592708549293740755395245784578332140470495230081361066877893799684099541735698086966041018010542144354443492355203671576344876981135544601254210646202911170524215905626693106313434617376474971687504891003739260887478401717313903283065975541407149324285960528595382391446208055341650915614342861912359125498622914871490879877973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5024511829968125934713524419366448296189234807186587757272721752274167193659922671673937355527143655921274112744077943883973966925458038093384681847029857810096519731935831368358494141440048402821439708650990881954894436530273404262412379760195543185154686400151650161243572819116590521006927563927067967515283620757886296295566079477019503936284398413118429223636747588099779671908341016721350623702190501220921229522093705546923074064312928643776176365317722154536852718460574057151840181770799760432199467586026913091199146789327078827517290248369139626860508349998268525723032121850993954926622708228620391610684516574232735802474914752772963678553303719051971615436084989916206729926970927259550192029442978272488907345078303835400662688370841897263159619262224220695480858451365844474018834709719394035844089283378355675825276193514581798699640460819180629021521672330965502566957866067327053661200545118012349538504817", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = CN, O = Hong Kong China, OU = Immigration Department, CN = Hong Kong China Country Signing Certificate Authority", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20856086608370544363529867258627746", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "17149204459699304334244905449038986951489522020671297119280398723630271983120014685856637536234744267777884800713154397711319165248317899846683608633782761649970664118984214966365927613467118347868723616274338348561315821700101421006060881029691650809005949815176616729192199116725388140974742320708239305875068949816287610689684925191913916377318842161296616544377586377197778351900042869797276063558178218331668713304041472816434449549071029788898195443553366472104633362162370939358934132351584097431774260324799767232774763278456033508470791277229883080957045104107926282606541716445004589889397053327411194855757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18111175279467767824991375739559569946382325271009995611616421786397156681961258012171915405355501743886501589928441369075219546599533253192713867188455361261557315689818380730071748486865083323559391643599367460879497923626828815484813275007015770886274738863705215833578734536197308009567846110889326267204069195160264071553957654039923320276730879233800076254799933337537390895497489752893009488484470445134443314304022535696396765774942086175416364240873684380592448334363387091097140533842810599214182917519941681972371318304600395819373232442977242960735812249132811287239221757900084359291342354721911220391449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = TM, OU = SMST, O = GOV, CN = CSCA-Turkmenistan", + "modulus": "18792834047013860497194867543999076812058560012461570258779014584233862378780273558224475635294302443799835073436912978614194342538843453147562369780898677680653470398475636881187516453450134689271662614215398552243993543194705648540885508815441760836164466155961863890578839683863770404240927261882411746109007751587777922909090293776915033330245819983789055923639993896160948823234174046395869395593830329231361593561658235408418215946984845541391102888196390183915361262956727344904155484972779086808472778616520323687967826416418574622409251757734445356814164377064075890332247671903815998242340897063242451498249", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = EU Laissez Passer CSCA, O = European Union, OU = European Commission, C = EU", + "modulus": "23987181872126192080019439265891964008357197895145516697275472458915045905359502427610261394060892874535988804734993583357611725244540228023357089691055990055096348968629461709665826133445422124745300601391549368164456275585009638591487531979518206520130361896801316975978538833512568031179841450090034821159919380110251270783790169558187247046987290364605031296839465222944535586976785109219579268578320865719378546051573010301798253603135478481716481832055746209052845399970391131672136528787321397847185999882106298655243018837630546343870158816449113776104406449871327922257607282596301579862239167439070883193879", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20732271209730206119292198846996050312551696413023280855475819408584889840118889711138480717757854852472314737409909470131311532059997426252734983459690036749572156064979094090784535741971152189143316474590608339603088032135767414156250641741670861843365439103674049368325928786255572974959529137292758525901065041194793295736999782708118173672426446891557390653726512740453902969968343664942055226394612216071486373526244718059680498885212774611915129703670506826204589983349738111370777763364946071534326397292742334053149434847773492211871744000648016338827081830417997654224148054664335365144397421334247907859023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "31955165615192000998432687656284856954082519510999747425567083308237127946595534685853142429014232548234791106586777171266817862415694857782592682531296151525025635802705557194693661262350013315241508133063696244914789098350855093985636450360871076672846430559321679353705444302524209637533411179914338635396629500593890069537212990522952318469358096290160968024725319950016457753985821101799799336060674513914736933457081577121125222161988000575251689545536146126897197142632432700175342432632564465645593103749673860741509042340028620120886661272169552934501970807054523168351004408607647188658951996733847142848621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23378395318376683648731048390040627293490822218135353043243578595513376690242925722264387339007363744891276894904104741749934450269830061421243570773790196951982998683291386259806221328573042238673043600843631100593336647800336247806261806090200478632545205053968305718625562919448603284673651967891245467137837005418350660134844079525110500903130469038604304680599102636101183541582188537782756725944169858436786258207872483610203828266025127534122139871214760727276734632307730320484522557624258969070926492964958776664981757714686214387470502574260276275691323699918159307117828585250066327182665844423246384253451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "20757249205227078900723901116856604831160536817922172420166101592247757566390274879289434694497149987613666981850170759314699880907047536066456690984455604699440245980105739620939171117940457722074616729099938001793929737119368880049551894532216043301131128096586289180212347292191013439860662653901499952014670687765228356941896684790613280992193483036553052151990797855111374991748187042852382552137719771670820732349945184498031198587765134301342954850492827606900313945624685660949800077288632200513395552657261417292538960750542597837715539354180740960565459518623303578793501330398096317054435292267905156265961", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23884811060456539423177328831641780176371954590621950888198148877870828427810326190475732815692347235915646622215880748989942808733396343674074804250715408806601697651793435526192361903939287453376745979639003332557851652946451057363403826406538680321763813784620817868640604006912941666970470606494317900489170735190840855228106841207921313723226623534100395552707645980159105431060520433645640312032402243726923855414462285290731828450666612587564616277662598962477548508897938564803622477196712712328376971576443305722493164539481968471479003199385212763729754229229440870848261208901803568640138491959276872556207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "27787391280908685895252260969914146587749762944228838412919799968479153860323795533213963031126084572935777460280977313345951383319613702419573326462779920732860289714852333259452863558468472296086408376754600928001739827706361115355940668023643634549012214143413181401046403290053745596114424329315120285040359879837888555364664510293874776823638050828683486487424974311988744996304604076251353964790077240290802771093743172658106192456869315148496808845339709872847328802425851140551357577382118479973913734043404455526157617752619143381672480987283307235812466015983632261871071830027300945049491551622040946396101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30190073495428015304578506196811417583493634383162460078730389397367411833405174779564138948733604221102869923455754624634858812264186159787906427362161900666600475496690072489131306257609225093676139933615752512693363700922594199569960999399000838861263781205474850742398648152426785193734433699015360543740055119603681447736652056507153361305991950763214106537742451615672514074080699935078117771244335995727299702402772861398470176584983125031493062824772010783538651803189566901076053990289695831977670818413289261504695307624479058146997217609705806547625359453370502367807918455092887931208684586120638307961579", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28541503039204222027967217290392219772849539351803875759311790406408084720149815193148634261892437741497861299438144536939621814720653888226943607411182609073875483197602244417045759333556226906997078300668861864624898977500653923333351180646762941668013581514236269984698689235488309018402094864388044319658023444247763833048544289540917120622921641901740674704208359758062740866674476809149511001944939040465820007037696571312801823128585609429740982834817396272099221931640396349556359150519295447818297990146900013809735983466194920883420400279676408600570594413068937449106459318361457284055394919417054171884711", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22719746471395998877523644978120707960174112080779114932423466404965094899642150825670333518602543563530690018126009113893369351912010283896525422108452451703489946714258321297926133220994987532498990079849733738651717080768682858717881668913407210539472832984656756434076489907195584369714987870820985971289674984900651014722099611329794278097972516216122781049400598876215788107467981715974597002068534324838406473734451759841956161206168809443403342790741761736268408468123156313907446634617823453234092933200014108603299443131543741910214091191359704722075498000320850516479596122518135115164669601912605142358399", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25478854793169040968131169105130258856417728876909537540821246990165883646558135988576710866343130372578900184181698520694215788814577708304651525528682502832580809257240380137402991005743045881460805761617888837172151124986472709355101695291664698569037497841619498415551802387075487559349058927197791433176383486519701314432808537547654867620738537940678581438139783264555627615372728995868206836282139539832048715420407115308352903456272104253762989504093773430706334706864778703882021419554040156931914553291717773218443326550733196980911731007954014106735891285743253836608412083308473321352963300483387259246781", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23164117559557688982211410995993325151905156103004646753538028153770131890842863973376221516622260743222783403991563861237104757802971925537772194275497495015226056003125568992338902839386932683402961325481148340277851538505115348480064503411188429444987102131175528104979598557319261565150265372662010051183444592374544492024619030347395674885087123347733946027393898728556020600465980720905311526306908173750961405285911173541748532314254006459546851166477254642629257660438864703388997365791540785281682646888272495423494488389620538619941043781531390870802631451136968531579404912843241475853790855796605149747619", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21780214673796412922208474175315376321718668050813865016713285527366625744318772599508964071836417452190708250599627932607890075872025626645370649638391555548677983147101984548421227069290174633973168554958522361073530763926929493730030002767259369218030012458058750256616258180536581911187927630963547127192806748355708076157215197411447283539247728140774356995782248494832774843406118012357879372390233914549415436751176926209839211252290869100672378621152363600990128056398601198653826289007238800713877615710910353161201962545231968066083019688619125033422982139083151485867805212576549138532142451668139730998477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26399515020458707854966008026985088281753929993383926073689174319164178923727994980238949006843052777811266840025403431123597013495634414801418017858618706234757253875776256888720566724116126798517199763468216707917765252534288807281010363117583204148117999723513760665412857873936250179797401121868835041900125364472552999214177372752349694746781254883222211690052354212857734067915982688187533309483190231374049473880082761600805858195789480098330274731602627982049554032373608053496754184023240407305460045791155911870411446618756102290270256544072240570205453231328633330443516857810579932159887714568992515071611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21574262783547911621258222351442290770435857855703009426166116721567397252655786054792880844904077815991148016933783204856699729773979097837611438626576613799252845532763230840262051341494913624010033048412497802173139911656460203912315730812920406689063970162599592306749075254618249102692990963111792758756119203600317857840653407614751290381108893686590670311069922641043721213348707765201193121844285139523579101895180671912509011975080119612280055765514569881137064414572510575540242066612082087733180677592008196829469204166951409815149366610766579270177570132573712422660027048397097927531939340252147338273623", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24901970577204327497537972842760668359195362242347709674383061801146943212519420339890455934075429602736597655206281949378799386266900521933878121992328089400566970220383447381356399986741831263043256084795809294456241278219930263707271042684344443913584608299273896629373043312954083271892514451209466219198378952586265775823904777976316020507056830492031900396949874164896058590696023290571145735950346058931383197265106896699792596096987870472732547490274143114118874600988937082787784398070667095351193471788152684373440567554413792818345894093634585885328696884939571284221015260443494187034810316379241241793663", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25159075371550269032871081278900623708501683590289623990120709943706195229593091749340069459589650487980180769323551670931502180698640116134591990390966320859072943466407315958565633932852125357885260082686099376265458197638482369472328821519493730616504807115883509650022807472737271557149087435821236708109060355126654752400558783699501641413304075348287363008614669420049886558270999696616382733692189651469674809912333889300644760267018044926592812150257293015474555060758001302560677677291345814261698816446693119188705424273252476301394675867146208149546696831211553751975234467984807523854887089695130928744851", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22214502946846800411159671560831688943604483071833215605785923118332142358563258307169731610348147195715510519838563201484447001035201438339489330475351463709120564654445307447671329496277960479122825135713439709930789802485774675785693390091971442772052346823069145677111863390757893150539713911560983911445715424759499741227097509398915008952429993485603962534457136047091619184701363372794001042016033401260957385065414724912197478409323216763957122799076508440312151053428205178727191747156136197324251984705599044480921461340447186612200291491738919062269029236768932673095807097570375665132197293398885396687169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25992691381314647723704135900071270215713995303135869139769657275727962060491666087477911269272834285917685066995565236542142692032326355315165712404649871152419625385728149103072220455706507138179981948582984423378971190582694330819864950067865841652104090714515551094517062237521701140009998189632306735520108622422990364326395031087619698804431050730765809906697524341259246053215928750552798826100275774110651962206667772730611772938017188200561476537293615404229030329757682178654050335200321185479467819922988842099760455600080739260130076856189102139266886540188466152848295419473404197207516808312114498608241", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24934999863160273379160417515879243237565318631107053627648926255212262813707141631453072741895001811842184331375888394987271977732119419200008838139943398058662107796265036750186037893104511078817157858210258812177010330580755446895405732077696710943834383482817029266742215751726379585503214242525549546741890479894274659974883288725587432052978350325145116804026810407304226523993184019089889070386193638975163333862149955008961475242000913091624871366980892477489358772266124306088828376249424943551625679456059025811827842295987484816900684434526005693745453122969859612498481823542157104268075807440993778137271", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24969681025483250850132106748432051780874286724099694402429607571309721231287186223094500605567935390155318573326776014067470711951409489399182321958599999694118657842186399078471032845067460630690567343794679710333309488721249298517836914651046993656055662081323714654198861471243869468993930852890221891118685064081642439852970989906219995430126061607802851300567679955854214632179296543186021932457281648227571505741365370371236069965998933332718134659117361134629686741835460880694094469888354358168795972050733894765487713591201147376457896912020432432653081875654061067318287494342970782636557010502200891180767", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25749472501855949413261516894909692606627822618119814262429833954014950289011532823101571327462385900370270997520643143209368483260907757916952970721043518743564974371848212709219966772611696038576600125471487324286179470760957640934611788580201982097051906449968307339453706579305166510596361279337294258239374908342669996909581844373166792479803690186721307271657375106018765969125831381109855261968576926144839102496478868131717101336710210813807734138034845867068815494488142398769653279736209804030554012204181321902079790086754957103165155307441289783630299558932395918866744411105410207060046760704741486822451", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27872815348334840125074100480520144437645546802894839993530741021383487795043611549852270307520236845660038092567060157708185841953715666649937346082034450284764218140494710776731819695361219637414776987741566545563000288884016502216349814262095960942569600781882641006777238831365377865465801244541679627060689854978047148330538634599010124675215641263258247775370320937299428041848177004307403730758532175184614584783950677153614555817469336709062443655444790857483050148293961538153118399922590903631214807774153942547990355208219997258871924147630012681878830843626810413723646775282406548469143631642795208895129", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "20660953748717913337558811408580223580208397227318769728879193508615371707379740116903736284208403845634509650736482153365900194314652293644147227480831581233297826148553776048790444941397647813440754078069049246691432941946020922506272217059708031140874922094625867950242157205970271719697572504942841668905435706586347328703860014297277229556375748438039814063614418792541545040323479506825110654303625020436357335603849737988588700468029559273894505383439731876264232837700582102024376288914726483763784821228608930308743927581638908176922326267308355844606128556420429539771765077550766232298500763443418640635751", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19019349993426664017830520761137268952809292188844162152266568649441823551034896873995796071526363800015391049450890317730428222597884669848812611139214711487593877163210903119578817936200065275251027964473647866196642443440623511373764705496665104587114056136992835878844583455603167382589430649911033354426973918978303751213784939563849928034588138075308445687195383214882798801796985461434786612131003995537534489851481386229255187474658184269075083614389487993027467325378429363013902775727834144123559870194454506184130651377416866741402764316827438378894994817121638155118209621385363185814800690142506693331169", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23729778655865076448675299114745037789266618071237829871095750945696153688987319587674866822891418035671175198741121223112870857284541421241756386893317748876572534305754996010170835136991361719631738692377948658037923631810950411143285207689518709881447107067551155399173509664002848131772271519732026198565534485617668953104090006559633007284047557053834286694205365710389195895675660378589616550897379368222826266637489299637669981682134771546293711325066887563585497471944042978342157827285444043300454018559422057110725738519199430924525713186936882709157949775589952197284641444713502288310673488999345349258437", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26853135402246787729622322851992978344425353246082873458336042354886555322284796230826319424102614222226191457331327274281601987507714770007654683866734080536428030410446444711620646150342969028426913623412315732704597253936120804235686291760346328042199241444581628329414788778339154189552998549214882571449071101610094987334462219122210879901116420360103152632068432351873869504356103104703085168042392914720709860021885763917572812318259871947166364492660772995313446116404679346922067425786397597007521774571173597647764069444631782787978940700369895356306514145342247012396790537992556322482917210952670361866461", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26239300994679299644198016725443573138541694656620451272471082233229515955416955394162679656774208700310706792166116307173852848402180684410205181129865209817023236564260530633675234995328626309893153518929228960758604410753844154698466896078746913571555383398526466696458494762163813572611025664152329757359425535760481634913880665560972043158135761787646764299105806492217276467223276967024419888257207527275223073524000825559721613530207912157148041435989764302745932384564615400179922532311984618893563941067228943320376869573783927376213507255169914677819072822438109435574304335929813877067041319161212935195621", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26513633127712608556614051921930459566544400222451137771321289758593258930058485005631086757644980023216703985455284872456440241190272322152962782847920713902824536704816695022577032955548736220014899704343297453041211663829474898753514703265949712994299554885655582915202084239978294464625137180780802347023949656916074861529742778156490619255458413562258025262534444918568755249135392538763051248365925253083733666058210460850932621062134297265204143489604877011844045869864143818103531211684242688315276813239702827127390534248306101019126041886598390336007185161154310290037890966289764271343615831583975031847707", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22037575290438617149187494522342185451733675368621801924914847198678193921288501935745490538601115359352846358025348371683580658437915119813465850662698547317518132495911833810034793325371843213494452776895896500808646362801042044079109374249870990912082498481156982585646321670129678726204569809550520888235937046394349184901636190196357066219212613463969138288206146138697068361462839753029616871732035902974304939407510269475098636642711990207332975466575907388109546360889887167145428801270761366708993090371772118392577108625194054752701872643440119211877744522269407629671499653989687708482516019741567438239973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26473038403929724182217250642938181460908124442614781347994224847514627015052230792050759112161653992562922715865339748136758733056265003005842851590494435281396639426193188574451858008581856129208138494100667089450875601188508507999306296644209024478354634020746469902854766727152471644952987971901450018342551978697675650231101921253799502060784064649137454622977193695807531515431491085282776882117351413080944633152003774367884505278476296551815855308573265994701664465894538268124142584412565599725946835300121560569872763732582409290546007458144803978193943897661032149498964598868800258264067322305039133243569", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26056315363716158464357393383133193037881272694013059331428060498606506546953289252033781526014546537074043329214907022494113185171040445880401983184743846875218100951847260958127579476327852835638288172356634593281896239397400115479105014147690102912676616117892630721924191851903281483513981961367341147026013443733838157015708034822943576276113050036704100593742457465113030693943421384553072026063015523035763342053756871057621656899183869153151060688215478594942573230331146047004262707075393876637968613837464893826035857147735689749545535780434063995678743845984084443030545651528746185343031815419285901015577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26890458754942541427451404113809046073546330857854477157831260573857303082457798936946152564777408515072637537732484745135589130924464455999668206628526560399629029244242192744352066241587586359606381157377046047847220325799585603523497526621268081321153431390910464706744383620308334924070739845179752761467963452862940112483181977615006177184871899565836153822049251045663305626877854600746272906473085261439327237065671896126110531805458320477967106770240863367893045534622724802289626904557601353129447770507316297495286470030445918187616354306643862248023088406620076922758693826724459157159770239097146721957423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "28361144338116279836446021230133980205465724316647243594823565411190052616283851552884212076514232443761579454122144928736680851140723582937891619870568453832175142565147960259155728839638650206183652822665683703533241959206356810251791193085071393125889172192339942798448296489348439120742224833478575864488677926361816620742130199930329723479491088590793486974277843365222010518723439772293691708521601469693750670966930257528526177897726032609842487311238251289748856657229908496977811068023195838628105892573658281958693852707142335372197749673144777835544230442463653900465902301451410218241304135171084740242473", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30191771153688091045987401139788992750529967212967608952038896371287601726803758708241435778271376925481493658673693209361473596277806987316763182608690337914291212868857981393174021154471243879072815697629989209501368203062365824642172082695248813394715439221952278678314808313315530049281696556897033871452736684742977405729031418501297520643822650966784682818812949065239428989362620383906799977168557046685767590789917791941205118045321136667322952183685389124892558329553370473253177757837220653541250366322167590079249864765610015902423442897150934255029525137677037730141332067579777336641204800982389522155587", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22237632791550131810087087440974567633739180161787606852918337525594149181078904738969559383970440364270036944142790689820921282898418769718646482487470724002959978581850301845034523821543791533837752370584733499640220458974602176330687082839784285665346702371523467515864974278154037248182732179164998563115834767059852290471346719982423372511040824758656800896988179827395560288854506751868626076988267953904827874190726621292793266852822929468869806472373706676017911462786180364373510047877433980009586316271100649463157587626450242628013045955048539882631662433677857217243621659718991280604174460442434313867891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22077520149654170784717781792753056804886113287777759017151554946262392633209881974962538118001444072652536839394489402465029325160009229795651414505411089317674689545757670461563199403197227122766967140963607406139357722259896138386143384953871026529579506056939785481119322241770437850266781236602719815467914850833893291858135275247005417853283794629607572499317753562433165860911106565544158074232347372259596556187475454689254012187008512842685615646576858025612472269770255581088658797585914737586624125681063487775067661899446481330579032910072253276523484576012848308761986465511438141907933919363843077160141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25575906277750351404918803669073141555473198409095229240093901285178470879930104004949416754621135787595798780797941723620690321623137747968348482282650464448505662224242613422042268221446901383124621511206745931313817135477711514361528527529207603774204114051947558747318527503146064795901656602274656967876598111513012507796702060473972717626591500021459627264653887589726847605729551584886006897787064540320458629738119435748017357454975108174462488487535133232540664581109372042909715060164283106983716659348109809683663588655312306816296364397672362190546678819021619760057848869619498497013303183472492016378347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22523314071664653179928790558115323532509075858576565165048903094546523652843745015895862651686279422177361479604674192265268032940785165353167821999694774964604065569487362704249244951064258351529502655763120977502290012109460782615707231295798888960959841168551695143272791859591214814920758645529701599794158172897510425072969517808422645182622998452910798242586742760825115833432403837767859082678963296714536303063035410357542010764650806160817390573227274925585561811290516531055741023985262834268621934850199557959067593205696126226120415003744750986862466314305280575388849978182858256455077558208551511328633", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "CN = Swedish Country Signing CA v2, O = Polismyndigheten, C = SE", + "modulus": "5187060871391608891340876326700028815189374315028069748300728349484764579766122226651879068588172490681944005768784385488939129267810054901519096460813053018919536277056398726022430156708403890838025280038862505014652066426532030565610109113065797357197404724424057771590255367755566595818162537329101985178849804721989417848623529153156088371246983816077761697050781510693688628447757400662262473534632228499551757429702413220079986433851410431827904081717497183080036162365714632084194291082031265171779041504624386515158851593428388871744113840974015101197314796424815463230805067134042284843364609566229748571704228874458488368754658524491963330198112106006080668320797755985534739682861652210360309486876854164612901947432837003256525527077171333118907001293025440041294461236362792786593119745052220922781547007650986846993578651900468685154017312580054952418718687881106028546513333704192339816833154035208595804964337", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, serialNumber = 2, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24113817427607349672410396561085084436364229543695208461359893008140325001244727298845990063257383842634422733511315254764966230818905372814478547195872624230123849946570894787542626273704773400884374615193249159912546109660392130452074165010404208398332485674275219364547284403847691861137552756962513877762212272463434003636436969027024997433580909278070569216863055103649657928004213374296072518452437932465237056726169100173625084891335673617530826495715695940460973385703464453962555581815042843574138754911222160217425693937825398658608559140755762503577318549386154825802391418315729752039563220579292767733521", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = LU, O = INCERT public agency, serialNumber = 2, CN = Grand Duchy of Luxembourg CSCA", + "modulus": "24064701162906661455657683712365203461150694098841612624309901673984305235416157899725402769344413106942694990395287345214604493295725383104085844491897051138187147256788174641852093167383750518731189271003465663009281125789364101333333224829404018019836128109229097125370085403335859044605751618176186737971251959110206857220099374240075877407363224280437971769107910572937112993508049172962604219599217842551528059664441267991990340828734461968403019611792701920441679021660743016567070380108587015389478163434846355984003823060820130100791153681321227987379198229734241980286164257480722574867142803997976696815679", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CZ, O = Czech Republic, OU = Ministry of Interior, CN = CSCA_CZ", + "modulus": "31626535087690524224783547076151055191801262195527075379911562992547010442784955430139327367798780245794926038059903782971337660950585031242992050667759658859293493802517633715125327773133338367429936668816835539793095313557257301835041390949425368706885398464857126581521713255846383263814743881920178114690051560423588448861849439456785434353471324901622097737485510104997043326422639908300126789062497325670234472762456138692341108988852386888424344928253878432339392682875519589480808096196194830885466735156987957936997049516506176728694848382768793279866974970897443299888088373751076387605818099686982112694303", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = RW, O = Republic of Rwanda, OU = ePassport, OU = Certification Authorities, CN = Republic of Rwanda CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23121520866489881710936409781676579", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21977148270965331351960811822420535096130736499567090528439296526828037074512030980323944423999106531296970355551861371709046859872506172067151395795106236551543329691066499637923884341827872249301728857277177512973647351018653818196872881739804374311670385213755983405923357819834545889414302968430548731251539470140982181537958379274466834163343916614850851855731373212043676699060899601288806732649104047751646943411907454189985874083202383854419532002784208695089850922670105164020127098042469119593554458117026041950305740744476149898970034000603457125087326755013785128785061570874545805091793801663715838653479", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23972682667507615025768240943106208693658962712668606011090797872686735101790727729931801605980735407935588181952595621228138529452006856680452095890644159921207408725936062232727633259089687009006007824271585777425621869901925622623655507832936247888992733244165784151887161055073635959670243680649123523249987623212407011801093934746522028501195955985901911884467388859898066665095498119550574264718738618382359002551709877418528911045596263066039544289358993193929452539357618870757960796845293253722700157615312108452390470293390837480740051563408790341835514800253725237681737512790952340464590154807981601994003", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23725086054622901307052094404309344146512205774630893566033720419639932124057898214227833518906257619028462075388431483903340103891650242538194498855266933741383208938776580091882460492898679868996141479278823940073908892776516012362608849790284569193225309612376639430709226418331205431857641244805207160047560144142409771724368551591535592839614240193700295253256091448764532231128965770219599310582562521159469158511226972831328159740914391785728259957838737580549817653562997925572764850455131427394610107224525961036087261429234446251842647674869222383028556938304492554499926624569093344769378778347277012507927", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "813258844924032259856942671025573453879547686724933665409993820717239480733452698108357061696050635268850121861054727040655731979805791345892501092813265555862226726573204011697734689343896613604614787427318061024684416353882210339719393380777863558463812338685021495311225105846019550879735354362644847293189764446328373454974962617363929821525383206249716853559501493498650838582298279884729664353547907835708019562813142631343911014453398124350441951741424803590258748946683401721745803200114708067154882154653520458315655680334587177374653495975342825896255709660514549359369947766198890526487282010723377872462927273642665717969235761267639828853558336767450846504951017814974787385323193957018981701630296709084649512184684185076356284347616411623792169682584587869703284098794264994721437763854810080569441890502236632815157573703692322432898690531667639749702465693333843682149499689077565813312182692840077267235835661040692180726850954609031347401406917881661227095141323748947968234173375891383545199616952303814325297579681499118792568343194162835782912286455855881973004969855799375247254840054750748567111260241850573883774340943960240892939451868986847529829096453561357312834411010072122312688955883123880314565576243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "CN = CSCA, OU = Electronic Passports, O = Ministry of Interior, C = BG", + "modulus": "609497860870155219890865132765170604100590637402897947696482514178065703612211369883202072181000704278197539606388959568208515728922719290958732786012489242274902191999795469725007076100731916091508118209162063877423936733858287999660974634241466072925586468003026219090163804956041397252370640255049332472033176429058374399321899289110654914127109289781698580048544987417113442198494175304437988071023352663214666248315309276528825155628541519135012670256493651147768159013102054890415787026614127716489482355952821799229797120417726277568046302230050713970227526923828442487874627391706338777265743839070741669725040343152815288827445125334216235229688561869466462206612226927624576363795195373470153236160328694483117180261984637872044077472726273496048202958533279115564206946968970443868052751107518541416885291121377899669416620687327083598934910810886136498761584447098889721595183121037707142247169174243855657693655549847515235811711786150030814632803636713625121417355591281229321796084483376377123511597249027313943173911978362721702346755772458546908409908043520686432290491491482258645412445759863692077459051199141664738953081117477806806951280532170923792984673857063727470329642314278871639477240845152485847260349541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26145878896149569006260149661015974270829327988743473970516661792517356828135755052006076131633268749599482906630528380472001303168287041947647689605611349958480616332547400632522610471416150419889107119723375488965716802942385510180118742678046956498538689254889713725656267561750741357495718420406974070777905280967613992188130605639825660552319435661353303237550766212163916915375468771089793517979471892745892277209524471153653234750546945454889170625137869763930260837701172038462956278007453629738786521731944912555273059797338980053726909032282696890133927461118708217259408952347561554689654108317352141790577", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20582312354418821416084582466275431769163426848112998807303926752008150446771925004166832122771906860856630471488766145786631055913306810785665147015170386655494280126993436399974547823545213971698806377563119692742750261564995332417833456402769255596323064675267221137600110207573749499104310773331401889912660742854226675055370741756307676571732830893166479694296078485608931262906378948225921765888005161527773088955389962981348674485132896518522306987315901593229067674431411208106783272235636103956160591170915495407307555348992796045941772272315222996499165151080121948393451240391455570266595262093774280979743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19234066265490875864268199387527845905767797040444046868035247557301739176253889852329243830143059567301629182670145736867559503016817411209698192953766915277603251502750422349859644253138649116644037169052047251011053006393248684534675264791566423894946404389525864914292809448260049775929979120018137875441150498927785026582757164071353003838648285214313022814734094797518730630364936001130773588792265634830287047164666712657260717841356455163430929376329956907868003042131065928127030296363722015128182200515054037871584265330571274426380248802843103246364054544096535690624595900205378426477931743435747449903601", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26980236223807378489720933503289066791165744812205310946816972916015992064387194400397638562023131077771136661312626610456090143710486649093071051408799976393465659142627332760762481556160061897146427269869904661678639043907222386186893421066888332750184665565495311711374106591910652616665358071834498373103547672064398319956098046321566588462633554428793615786945965041741143535357453940136169473953443120784920974720862303552201264416255868712426858680738346868135832326050629423851460730722866780968808539250897701273293874170328965423145619400891406004271114518600828254535558329218998833103449096311276184723941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23900551876290475510725112725188793833083156505054239804120673229329539125268896295305203376884409503312183547093712830673367311606253074821353603387805404355032524199365539321274201823027806618732808375225960487094702637924179842720877483861967155053074394000199513076429326899771270495453121027490647257031631081329494099823268516622792572163867852103054728701397352163674277535385386039948279353519589110290592850893604161825546077783418652062943221819374372103068918604041596270277919150071976368912342872618945596502192492379716486561406623240262075078160849294934279336882408758641960969784176897527464911833061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25132782755813662970775748902946011730964221250128318121438324660079294973326667639186040754452898239172314907205391727647115270856479315180115341796067991132459945272328048206211022563448338054748063452374365027409227247863474463168585959444585517911934486401214494182384778342766306403700687528804492559831914264384347674101875372154495601355530905874295944124854585204734896670591755064563990584691864240428392143086978926458079979932060541994715378473983681188121496643374836631051328659336063659431623494217466760042643013160130903819062356565561135657739119195497468090724509472213852951964914017517582098912031", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23563066679330623353622266609031959556795044100047706055443774467484907070581113252357505783527961004794791440471457460763208159519314896424775336274514031353195242614994777239521910446936544696107298758091400167219230043040207419111957023596027949003361186041310173999903952809644619153049890962018366110569783416102786979040358799360036976806948608078013456362224596293875647787548988167218675366407169644674535741869834598966162230080196780677230253784781728111346343504356346025602560190038765933864805062581379530119335754673478842289146108654967745870299773390521332183169323697888000448453209530418330439300023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23582913814282704634299217317746820696926523690983261501320695428539199566996912407566484902155680871937739442805244339845159115887972207198482620429864930449976447114615563530673685780955251409482342940670199691079054214020637786034748855541389550775390399138072430362391976377750841512416732277436709353702072351440110765467749247451622354566820888223521869130377481694942131105878432851608595190484411383081271227772294645038062480913900108441909509068381685587544697787013566571399256503159680323799205131084195202388763799432396057511738538343923653724505792342785625032536207316701484038033279612893520063452323", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26045237743238905022480924102262095705371300787302719732101116590839456576532937317743874553582600122081251555284438210486624117764092437478219036687985407492038071123980936750800211832082879428864934184671147731819078681227387729460476212003965187153602442660809561190781175445121096613133793121290931300789321480550192048669051914331597390394271290322642164318806583657691422215995354973820310277580963428370222663983158387739895396260667570882618223451150239390075031020829169759214549668937926763977372066738393026602592700729860144114821431330821157244516798768829219907976589782835693393863004001985070521219683", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24550681219825358129412790224835088885556154597367550671373207778208607067055373381325000867468075871149521244772889818621929290056993468351569982706391005236053716546796037662983514910552236055698429803303740573316799740875405350461738493458211771248962476599455020424739114882764911976339714697699724907456072914928810610332289287791626212455474275064648609949874453087636071820730989479208033203554855941958656586245355196342710120466976552957198305427523905368620125951902061488389706741077936369483258000802796634421941002986111455633305467889129774066788852349494140773594274119075068981801723965968348362377487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27045564432741379042728144391750673155635938013897786521330173236281561197562598760187674428312722772287640616090585731427974007978209674589690255956520639169279299539665311688264042456399409971010197853247306297356949181213568855207694796539461586573494161474737534493123720742411144652931901978129539913816290290274099854984980382270888006134794694505935363925098463098439781696404130583236855836790015534383646405702963757555585043625238777773288916390906525125293549487371657165053463618339900199875566939351190871325231084994711619268265308955404563335422733093838798963916020609480570608945856869649346396091143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20860980623152415021523290535475848608462916805692427030564575936043724022836813414296448346702153529377176922376017908135696186955643476667493688348319239334806016776985749232964777293517538811637834449212584753023508800928387002337372442769074958855642060785993529112892784633730741863710655343565996363318219009925231440581077050133580440551869352159167770297155038129090762027377753969888545983656108118949377944694962873313417400399913751019979353790687401417282574952093037342304252286418178124771002305265054099107412664311495487563052964315974777395994707758891314998659103591158860421776971831824020416698757", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24771519944420780811878069646589553710033317724859955521498832410595204032408028601788996869061796986320501211921966809920343614439120033640656664750832463612184779318656904378261329341550010124708645096305793876722330842391544773211079556653395764160744286509896503528377776244177100796534270715577232325596973634903922040507447862050193043353905763164714703313588810869296181554923620815770913637282104056515239275540352946072258872575285277212979829725852134468287208429931387518813955938048135997269587216789865731348692213373372530964379362263835260332445965798131494683219671892197226121791743548568957401053689", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25882299613476531357472053304939000924711961679869711947788346637493278437200849311613962329966500709936956861345991774880747326005032139806240705364991062729451302162434389763654644777148444335791867982198658848919876345990641936556505249486111134909553606716120651154979825187912618977580622488837016655486299397335116091534510467846777968712662727443384037409244210267764062266068772312776515772419938910396975667821009601174915164925882128933631139002456948352849463014036085344656374622847363719486668312242809204180826745946027100359226290069459663822160165050242050326656076547218366141744211142674604588765027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20533919134950631247391332886310382653348855686820810935409902629027321094309235938442219860104207426992721836096076159209553956425452458756576575341435462410702466015795314825837444803941488096301101833084110492085794078050474720790115457392619478934260742362945515316201896175575149957665618944675104445843352320317268779682582343799413150713920072462651737099720555890335372844223592809590906866885419086474816086949473775016487878816461870525676556797440554643293244789477574740636415676757909694001427188244301848187618108638375803567800600002043048441973599738726122542701825689998338029251423316687043874925541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "31271505022007592039324798939825763470697604607747600618776451545674365781635028843333664769537558288896233320455610398361115716062498090613493446167731135761442066669491361198106724578402550755159940590398824590312480743475733836833198684898266299484898232517411710216243130706616021332105349235811853353654317071800685455997614008908295729433461600037432811295047905194779165279076626560861234465432592792253586937110766851033063543207614367528926662973707926691147937030129404891757070759365302017840094312298261776922833206631394726623917879996004472639764250458493621999556698143217658718255207411490718179685701", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25567725932588098883892102302579033761141898628847394875988194077490722735270076535746160260696396390092257235228954849880868519155938699891278987873933547959623629016477688454035686815456451043378607002670510657215373543285068510277164432982087644108266381540107195642486805115943925759959191462235279174430322556672950318668741495726900238569412252853096505636579309857868383150573917524560595438111804678505079218778220540851384030334197865230331544923224770230097161665611768130667460520886990690104245729636738627503418483893803241059284888787592936412196079695530318778512821376168269289785504537707981194954051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21835215991135307038556899175362673143935333402787834559880418718694335069967307810398673994206306623006512727668433110009560236621932598351703950446230944649909976979883851875784035194730640480875401351657843708452072326266167763046033634109744478435886423552800618154845929939549034513681987957492301615888554383804442996125424346658457681426729332003963787455722819281307311495132007676390449883885657585111069685804791261234501687282761581714772114248422815426922723346195148580975181550305174595877896689509692830847444935368129696142163962189350938054633128416670819126220897656191401058209484499694453852422533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25157866890475704664191871711546665402374094992236843773999575832574772774776733088780030973845739531956806471169010034108838270407371541063495448302248257256274309280431121875017315066592985360061579799372522369235528024830399472579137663061471133016527702247643509299472458944584958733966250759673931818061006470044917727130315489445403349326748944708479454182728812481662983773701612592425419591331697093811874596426089756729969775255472794951482676068538216822445301035712347409704580128173087914040989622844093230214485170984520241411684589832123360701895442348016621923268754952078493602202658918272337778581573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29488804028990169313282303619464736011915825393963734248793273495967424925227160007816335465497436950004009246704234115754847318372859729387263953129756762931900056819239666450363008266569779218389194413073707756609221518305091406892088677833514788227286845263845974644453266745509944331582084509396668085932716453185558595954427870546556809562324742873146207157922465812485661262911066573751986611937108596661151411323073078671863871275083413901666943796486630172763831052971559005002984576305157939647316431938055029134205694941775580989767479199265422315884750557892054537322355250303574515517391387068093188522183", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25882299613476531357472053304939000924711961679869711947788346637493278437200849311613962329966500709936956861345991774880747326005032139806240705364991062729451302162434389763654644777148444335791867982198658848919876345990641936556505249486111134909553606716120651154979825187912618977580622488837016655486299397335116091534510467846777968712662727443384037409244210267764062266068772312776515772419938910396975667821009601174915164925882128933631139002456948352849463014036085344656374622847363719486668312242809204180826745946027100359226290069459663822160165050242050326656076547218366141744211142674604588765027", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26663011075031766581768242595227979714344509266299095607302599642717781312819061278566924839663009206977683878427309979307363363299997166277931574367734722605735677234449524527460982937545170216755748338066814634526160872843544218731624210998250666375712286423955536150062658300334464396240892841579962849458510689599562053288699397230289169187096525023808236655382924289927160284845004794183184222887705671925511114341763372289551610691467553585728053280677061165433134145741671337980150787768489063930520615265233466890706500268098656176952984831305749604249226603297609807185748041342110706939973522398724586056363", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27065567526244193971194175887900096440479079968937377453182358064343937938924630311788687621150297955028046656728857768133045881217278001214434693491665295240029585286777341770634158243946171129436116030903630688145385455299718435996783459028203460471833772369003200919670500928095409808339839614004180568890037295668510156293724536825214553387046987692781573815589264079760954975570535473251418022074058804636239605265533202566230052871259690183261846210722628616774221309088854175690041563242563298307345453863086492610413166905894131964815858527472798798652093652823583032955935177668567364819897825666667390926347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23556947234658714287876659499857147535333259582110621190126153328715996755052251737085914302554444285185738777419419663339805985570415964799736784051770988986126907595470559566710908923610481764069572938845036247220734603013892707044390145092360533960876963069153956378130133654781280451236768177405706729265402670756850169785077038408157371288486916832856199055294863169736979181042817210496815170799674257421622082438258733827482059154855005853709074708936372638984755662922804354025438847032098261230971960262984139228646871019811699438846020037441517641294181558954517204024822184706736252749233484270776231411051", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20533919134950631247391332886310382653348855686820810935409902629027321094309235938442219860104207426992721836096076159209553956425452458756576575341435462410702466015795314825837444803941488096301101833084110492085794078050474720790115457392619478934260742362945515316201896175575149957665618944675104445843352320317268779682582343799413150713920072462651737099720555890335372844223592809590906866885419086474816086949473775016487878816461870525676556797440554643293244789477574740636415676757909694001427188244301848187618108638375803567800600002043048441973599738726122542701825689998338029251423316687043874925541", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25609478662538973952765994572800258180128065777023098109425791119880619319086752232990739232790967064747106750548924018789844686892586361988404549618576819342360492262743019215801825594803854086499742115133285646138683800573249172099909107786836308108033248796327713359424663945790549094251599975307575420052506938233471795258517191644771573662289203967638446983921330381911302713117080278222624141264740065628626830111616529619105372539656397082952711661791444873118652393795850126555723502000921902713310580173870534348410866199973224827628683248625130467548254378954796149379465502907454556591430353815191420501083", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24854865605032208124770989030895369524248201443433493245019846475783646471996210042703672661799715773193095383668099743175008130627906291626791202150554532517739950201837032210269297433061251034457927207262674643701608609359193680214066110418956113499156533229205840669289273300617793697357482652498659036876268169438466606746786883366525868017308148899887583627418598646281708761945544197415342119409986526989227687111604723237635508255480991097370612594530158576322044876461078997892675081812825649865479254107815151880275607874906275651208500196922669144296859768665117287289378859164400789047531491037342287837113", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21427923675960424146817300660889679916989035448756774516057985894246176522192107571606726100447109891287766539675428822080620751918650794774434462690472303537768802179344918553383546636265445215591599967709760647508118400826697644134917206774279394474651765958331493308879373706742957916789784566475492167478548988591674601393699821219414032425531790732289257827623498214548400778393909567187256568623475726915428225142490426831208395150387644314904794725608380279729446913892976783063722239056979466542329715930393219554607604880359529446986970283360836307453428036567357166486139801318421701101294886191935032978537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25694526699472054857932507901637949129884976496321965985654695961338270854675251068400846508692667707123476663177174341226768570314109308582434041790269000402005928015879751677711877752711479603635849437087327092337280773810408997610696144697572281474872386079042148959309842042032029627688795447133882792134817210389281348001380967840881527345060197455325939782678099911689015619029415846932829710904495889097040083477796221439823652511181038512518623116616056027648017637574765168887187060119226022363076906297858422623719860316904660074237699916332192649794480337628525762041912071898976089854302024865416032074883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24745271389443518579801170613469238188733571418901867389374109141876957520149893367945412790324007537241369697374634852389334834609580256210998902117967312705923785577982756878807757362909326487718009110741728341952017562747848986518221754339333002170803429263663546172431787573611984398685627022867568029765494081046077490277514072830437704435711970320222284639624338478749094412507378311481105364198988437248760345925934022897739808328725899340649192393202871143169824017080403336349432279753366162607331043625558959339462639330034837803947943325568949106931106135807654173198225056239868795430267822537692291527111", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24407875992263890406759339060349273361266755221710841919306428606117406951267897384520195422653702704230111547162624546876683833525158829201243450992025364132667438862833920491590166524562376865188859622032761459918281358284867981886412113220796267923355087134203617746793322236198323786538193145946076929999160602445411089281182353796143948613188985003473645195735746873182759968926844303755652020876253323436343699541378593322917991540943566633436877931598556270279392054769162128917006010182004487743900170755490948561344751933604483379168620570575847553590211465045091889523632879211394604481916436993885394201263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23888479910566112369830495743174516520232877240910483039730463784203767800285681569770049047140012174443518983414162144574211847195760975315738164617121212489958903925348720408130811668584016345173390432362239626564159362580124275984225330115118534095225536632488058185225181009785377316368230907468647743479920808425514548343078212968357914401931624398294264771844045258465433604202043211689608482500405642467632427343591992931140140350711749847693021196084737731475238638978247698227099150003888454955110855309435140176709396460822002641589598470444503225696469872232332093335726918898199674743218686366596764199079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20206630188328827669139463218575007159542694745759524423357921863841040029952427302251941930178295524917673842700945053119225150001399761059589160775667920236401236939228574797498475744115115861135958621822574709711600078964021019011271689654049479074451739955112499508962208093557433688086480653279846306115597407964939733535724853416891096260856811945962403274507878001064439794022003148792241362868553777713123905612993244719754183890766018367942074061626792662550192696393377494154145015762772510125949405277005355049056260109806365900793554174689673585443020109544320051724941242686190875036681211645215981069847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27131222611590112750184484246735836954089255644086360642728604891684473179915084181618486797339170525298242930337023211962030262336769269089413753638385272952284978042632543357264375261104073567300223958548299774760900965064558304158539115830684578726225703547903885228132705993552311292031158881987736244689940497238970795121155025671897425188450058027439939643014659321689562128743090843980038437188428418090702706068709408820232103904382573861487926464811775043537641838071810859759919968355528004184123314736825960692938860480140412625602174906563890474155250220952825785499160159711033566886601012120712187228463", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28318546709862771830492924048869992465059036299484966537878042853828067459781519576196214386833914829926279387161772748620474082662288503847897050320955304884880730363771805226742434522013363664521660798080104831064208056435109212682352079649419125353394715198490419704439926406197914235960369720934826284995771164323123748757005210427072337484898931667423993130319009121775555519158695872415079152283152249248555241937280978837514423350274716425255366121824023933154443837397736909176336174148931548088874409191705494847314652345525713947272379624623549485118091304191943366336426494599006093674743242312641679443101", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19384812691880310151550266261002289115472646600744417143018510503922056187410631603217618295136582386799392538002185511428038495049296698700283774317357338777064922135619847673233447343775538737916777727176291658430909965880529528251559767475647644152625754836038845360022725966701171971454660598158885407585451609200819865600166506594277729843885265158024205750296085003796158180490172948076737826800633538677617198399272807687488867926968173112024191711643846884959137768227111492243216440642397458735987458505721120789885844087727277777435607176189513233432131918109564629920398533405750745750995919745729828779507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19950862654294194202202579526848777132874196570529023709569693492805295429232945582004697173210974337545721126614026682219626840639507779522577771899790776343007434911732670236525469641743909291225520770225474090087430768146107222196636501623260692956772097403961590408636267370879515959847209218152192875349412831131437941077152637172087504169279691070568143083124123177894928055827030362765056701965225019979033161419116674548410914190766526627482990360700236885751018203056849441118861603247111932188157738402030557079516597436292943093407156642539713277799676080952757327879232311801752380133032363621773667675989", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26446626040442615551677367573695280740593587510406861546965214697783615531198707098328912498571146257894889296985956847030117948912638672634460142084226368631273844650264949379361525125722466286251822194164124202903383363322971042185738435818195739626686280562116378417222385790159597310781242619870299282434225229273384446587376416280883691701288074327062530516357838064308116983240916381875985292797015843247004611127607002903947087456970015741387025197849585039875963979784945802476277084352327416798762724171777587942328990272063254172937671622649649229259467231006284636796865670317480791563700570649669155127247", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26949701742038472364075651868277452177709579315207466648512313610298718670160550893722215065040284396540438064599888655292494143064457005095683909551501176627811397852324866695323495850698825587209837301984572836335455224920736002526526200582905213009436862947885783635610777649978241006782970232391656426405373066219515011207011066189733430134705344840734422054549258631016002668369088714956589701866632868196720189269016458551379259743006589009760847773936931048708615046421676171624523354912191538162074076246883365882726736807981048253870173582026543061059433764058780123223251323057021965141741749834598293076973", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22920722869342026738313957225087622970734835270888543070079186759653162255972930921654267789910657209612231899544772488025482479622615992059918029973492819192925744991130018386905694600533762699439748372806978280745265743513511823416236505250748421042089830750543327372134647676699426805861678432747018618979000629696025832093074469985765739777593408760409182880856096930371479387092276652783585175994785887798967736358357800250986036349659194969730403515270623362322341643190683522722697719539798860581180078296346462893875430751251829891507028393074247613579574793392040393846676570059958184508400196892354439933729", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24101396111390487400562922439454582882530180423146210600996737146329268428493531468080183928576577601576610709057901335195072545802063781009477856893997123012145617647448085804600156499864615519329346059081446241523707316148544454346753392440977628534516469435289513875478430574420415134846792700000452371873234900760915401797888414924178141719190019607156691663339080028746216885404380856165223494909202734237468213210346506053729372617857741879374010826216360755570071826870696105825406601590375991194645109164482027400013557652455698771928833419045361482491242528718984154309865791198780121228307841249080133410801", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28570327674510581361137217674114077251481107387132785264058139451118161537618281988436673993360607919949542658148365106305536952372908070493549045913406494873389707383509924971970312889915181681992470755595512574832158975767345215763839169677913500341184086178868902259277669679795437905392024304170532472692973947265300601273785914157478230641125723516041295810941086967075265822446623585240797466840383107192555450325428638751859740525470472601134057991788275369606333368682300735617948001111397770003413895187726197370943926571001501121913724605915802888977390503151893762828070409876749718492052635089549000121273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26225445844558944137930409142303003990315047741300250154317761407856105195690647389450791380246681952761820454152886352062594465414669551598295222263418044153207840581978973530630875516650754860662468729224011325801142388372974188862068071242491399663300014108294235974293472001822936397891406151011487428507199729353015946589570627805313664198818197423953487341228569297488279868880121189792020741288748863291167491239910466318112883616028878079443119675069762710096760432333743871090776585951208658341008093873470088052828235674315300875404754233067971257909434230730525020861773042902686976396168755632357916093971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27076557696776278705610860011186779491925401853427655496702676035196079221397506893338815192294604257581331457999172147986646797490250690999237028925234455220729609396169673050306712359527180679335325062905980362643942030583965823882890671199031978921481580229890659021923740609482113659998824242268317723127094261353425778520843706362394823407399427149069426925685657828565693385521396016733127065766991199860054031704555002617821465369649465533120006480646425895549389984664905924280695862517453269272253041621082409050952779949538314824272414484672884476004108386545165961630137421324011185122550942820453548395181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30790569890307840323889990387144449581835250217932099355980601879427305394148414320046465874109748885000678970270342748899964217688609030434735459490725663360647792018260625474792550968212369788244084113559809905803523578675105315130265959911323054425556997399910692437016872004820506862871895245344375982146005885038928202486133012182050856068581044342934734890724409746421010084087724370765766742125743729766056253708874059674548809020804709687080785150625979096259415295098765686884734737684067669093703912602261794367262622667064011997315400135322036093871942658333988064669847030007713460033274904274203103405137", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26936431856166218382559774727076173608163622598783045858838095548127693986616034553588500429092777273187672891584060592817084383080716410294560670960717335901670347932733193297318288056901664608056496962226642745324600353272942542969355945376187020982793528712834437169498288269769170430952762058740194910316202410326068045358151526035897539932546937054092228427405455893647026024731583751377786010488724890082973367085174034947301081415180565528504702596802358962582857526116294536338907895878518438677667513232243414852900600568259676951889106148386159392374900924724234724604367562691486357128240800502462548970901", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23842703044424365757577986532942480757197217465874438356113133828583614933506518376055914621995835735863875006438257660142817700448934020469196259582872902187720444211037261990383732844715803096929247988620754560957839519171327645974915230056013172435798800325731824701558499869563436507096508274438934375972626478826229902449593721211428888200165794907062057031338676671628011254924193136084819706964936927474104433806629056212392364467727783336826079188529593794174842175286762322704449601667101149524328071958038025750317730984775010532414624166161509441555503122971507958017175664605695692862507520992805719333611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27506019533852858357093375917082095339271124718385087467421494227687510907970258680944944582789593994675040947421308872506682892498859805080532035591199881389353487447475682885857403361525244939007968268199628970767121806214703846187876375391887963057821540473113837380878431051469658787810999859094454243706916762114303242891305326559041232409119336252278390405739347649718541391249112081756868921045764159725448050914643636822112135127377800049743025892882431031091424923053367719006089548162065325609640614426943483825797173857727839656152375676824896653648470459012399010806846882467963723552477300627778791726087", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20170391434591226642165467844886279036879906259625555788146436014472074067190686238687578595652181197350868212897200818562827667183520244113134760441448983133564445842203500409747988901624620836653555106821605990760202655984610725868183149914778677871054495001770758911378928570303807842629690061773271743753485177482831005683074907675886289347020422845754977470130685261653664787314612696829219302199144861899100712205485641603324043814194502255964649018926860122980281710751330842856968399297269149745400822624476491325212340445890854042572148735460081533514555822162080068178079711472701224812879995487623762755033", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24193652246088935271578086842274863038317371497027327568356329271123115380916442769635018266040412988014671111033720969138429294663018484222908113163315539076044584457265195592723565361829070392100181256755803009253914364759360790423621218739035933221435983363824338163733783559867510651921389945604462416013540325025752103937000859445008882965752727049560081509510215196999294650262600792841491578369508150682465675441184676386943834331808279698554129430032622440846631390079888512857329034003571865741793473574667028201430075048585114217089896268295575899959599785259486788095521861859261048546573995707215401456297", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23802013180579788366700458619582830881816466645364963070995289117896389287403873618203005017998284080232203446186011540134629801778487553806378649725863001981719280814778968439217858247899950825868397737426448698629243762022727409209635230163588674848069285930126479253753234101343021264899595981960881156237528846086572848416424137227756135678511345491440976993243684432437977181586439078465948090112138971969707022901594978715569215594265923447641375518670672557531972180616055359469991666013253401966445159057963551208059913571749850834439258824204290333277362931583076397660618366304747042137421011422752089401859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23212870291403599038402969139613500472347205987628014640283841230990537964104065676354153602578500910461486945186224209982531190630408870926656089033081811627202089475407826099288272906301127970846066936561460417361941224998149145793063107995846111677816115607929475461049666024969791539855114953127595506084959509802722088638110116578715400272031807860279822655632735111167819471860367507463583020088880892822083223485200781985265653056705711523045997704719657414932251254564852334367083376612447303411641242466645300198853517234420722843057162115758844912920196222624069666337505443918717478584141390481556936836971", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25900150053640706431894524691666209786908428735277023448077614434268292283733359334481560691079105797219449458433390822054301755793585645072734810927455773420115775440657734107720526116169590438865196790078373021080067592421909750545336540939783707804285586781888230639202727008957049684247759316993658336505224209162095667021460746534691941905591808517532447560503729144692851891782318833634626880923701692324986346599207877749691130464275475023752376087987115668880385416506491693955085066088729955040018782332557720783257248443183570729951872855906794683048593308781176876312983614318394092028353832846377209111549", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28565457635478676728725889572183112996080337591403533077861781597125558705121037882065576039695273966457671042798646219924755080309933044018190749163616277331832797381032230655898626745034177316720281124641980205037657161514890780624117402008641352791456144315540382254013616661890390146140864738077572164212539879320635707985989856441482019561366908036920441938348635242271567794579625420721745805288977660402431831633366198598597433886393142031326543268844942431110878779974570245957880285650594527462761426705533146372726380552643054978661173094729958382553040496248707271834510394435466304532651147922285543258267", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20616281521555435074861293716227805950333526132272964928929241285638496289647470664221078805923993502502539658742441817926462597112342377430588429456458069086063728434169567904365724421401818923650447915841000520673436582141078444162896786651008909647913727240337763150052060091471080690269721245027688233174348857434598458619137434896778683987193793333480525444390205039070884520866815113315441497225475057753127130887514335327529610049362190281346657508665225781481744677862474413449967557205166177850378192250351057714177882071183198476043846569031280816719391954449695757479336587961560563858519069313129900474357", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29312411488818797252249625809089824191392290662037133108784560435108514593494042012635404924709718636873241593405252572417527294916174296225323451531987588725949246487795084748240696943628182256802543566233155864079397276984840354886265757419226153586651325996881768725065697227906617367169497609573595357549173993554150076762905478214661963189196131818990017850031325055080860493994473017953467062286569893123309951125618711284560352185121611255174166259453081870595387350985507491448857943968984782285037096704049508724271677026927321051769725248283301593019355454182344252007558469297564317180108020894854588943719", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22586100348752252721030652859282987078192013624088379783207109803703921361196651281986724487239557349043717060747697510150616586870270988822995034038484282834615065619392898797251561565492035633069415682294554201179541665266235150742087245965672733894120811965771535123575321053456544405776088007805165463125442246035289666470701709336686938838463786475563347284723408171197917235335160047624026043017540413904171902091249523451926172252756646854668216850956122182426261909333388017479529103811893466373650289456066577799182988217393241878541041794139038159327942536174759098656675906897496518967797240760713972010367", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26024524765171623022942531826303323846673694074633337472192525542652667456258681688169875516812425269632460823773644890450219420026257800596935454409915166073945753447809800706951798003789867875651307048984172569423394946778843390924507478026604328080048325392908394001769687719415806542541379816474396630720574120576470838343028464902157234631913894610187973966284239054621386526249029003235586571275189892172579149087110906956526666858067226233557305184605788911395371466871953297487087713637339429144346155153679207530884052372754132875608505090666694569003378181136232468956902650711463921709616909003667046715731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28627460764846020167212101017777023506851550989988020882771528928764797660676838246674550806663884011416933930816912348346180663931823622188134881409438317438687280177204333843130673594329820067921212178043277137355755335479543257744832778723598098924630135728701335483381181376215556145964302345262157668457546267112229950135800052899994136492325725599824193745681382810176074002630145806227814296903975889108939509561687051347673061476070476545728764616924469762209968668053608680939373372901812043949230088367948916375080018739975718649195783071770430199561788944648665514345328662416932471993429070506566519053197", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27688279180347689050857915931710664354195540464168548697554972026996368754853205265847837531964063020414604533926348574752440104575987052645515877767238023177430853242069812969948476894856997809839266662052951023542705333283945922818973278923791124936913171758025984486779898256065354853546769147363928217589864517710115587053702897479181342442701717590104837364111856826999006108820429840101215317243816866147348129143796713501578955717714248211531667566962150215398011129600127550598391534797624555249795218717013643893929341777860856714958214842596528222747741169390252640948262577774088110169376999099134854945533", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24415991438513609335168894711311258192943915672483174983574292001456639619540344612412502014990098913317783053472286274129434578978086484840230512095843774680773651140602244760730896642197186660905611799588153478899110621549586128326074839438228390431334735255535390948414388756983343481200856903957810937148449562762191738085108076037757236222758921155514627632260443063765127802060518930064889438251376758969972157232515371526924086699260198860345389738323000215581000285870351051155431381621406237920785371747417243175669059757795465870430115550313760743846919917045386157521882302285373051394307663229524635223179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26577812305178315894013938963575647263940743153651656557087040318148877172483633852338680119641130800066249025515294982035596044995637774868517770509765216741405663509629906492326169143888978265468418271475119384393354103771721023022502047283653074978916933798789792188414673489714270416870711049576703109048873831798160202629723143131833426345532805879188391373043990254055844149408242958862519373726338222840404307339245527266578842545783627970077901435070096444529505946733265941287930620595123216807387075542699751502891941822109705376267603919205350107339494458249446133220354679454522197216413238967607057112227", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25818039747542089141337323572359422734844776646842626456796456875115258515272697749967199509722221477977451967365703505815603521295007016720048856547079292770141574253209444493792583738326908634767700740795638041389484907664219422676555264398553200702419331300789137598727572837019545687755430256830601717642869966622388188001195625643054440981786247809915715302031552343812567519693032404100720258195104826782297478620487501202559883319696524598340028560963657820883572018423285436242153112725061860736045008950088408445357444110029701045026667262014543510529020286198402907628983575771090328990314841761851807484263", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23992871915416658582917727084325122561482263611334193675036594295375607610901812654103705288262233785422479089546079132388663471603303140859485374427204867040128353985793218926959557082125682074768557318211362312172237079553020782812433663386754311349657321796160507290300137442246820918763111725820803052128481425648939105239443972454982092892337255547660490590954665329142796112979974410148301522500380282975312553220578611672138485924385656647320825985593076277621162125158440812674794870581957584948074159158769577338658979542379443618829400956326834466708947577736234496374774974825278303049707553665547932130891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27610042851424932922398618662303810380001952112106936680783728751001658498752427196967570782725352964594432947106656595950569871935465804224080823355649198412111256938364689337380378904862075951194680034376198972704667757245439163529707374355967789481518619814741001266913768489458840740669551912382849585378760939322214199055491300386899232756868533562874735927590689269191955730379994012469485682890616429939835679834525435510844201264886339714379533409849869395798895417741661205290146315988739689426730669493154894910191695785473444311780713014883166561233246024953899035596638865935678407747490124946111419942069", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19899430430857937645696818532746844638627987924295266516205155598262618861908068199521108398822615148429433525739373852396512774620733327750556975847746061061576470805644404844174664679600182533581272414117961643427513547104334328573546353639164272123868305739824944944850584406105207341017782185081571093632521922762030580358234203183231912879978336352463580524319388220645857641398675043217104214152379546915503250908744917682611216376036560345806399766819515852946823166883114156998161169789253633245084628093785811860917000115186761096581365824125577770247405057167781247111686125064245501186605020713199104320507", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26281614968439718886565896009359695891995320430829545075266788425836881517948913666767347388394086023955577074247952804815976104118936778463589962143737333250999080860708799476319174885944287345645477578528823494972710311902114844576089422458272862348286753301075259393414615911454088045989401387124010811618238964532822487395063502591799484972897181673722596496314241410743280613230546161866380685758141660786283601431403534329383273408873728800317449047792366711118875908403485162739786768991855177689806841749164517017499632358288121651237405044407976590254839242884563706521405994458386960460780035375224023703091", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25725213670210925136398325955663524822958467205020901251986862003988319964211974621578392381922281554760131619969123067098143543704391078879942251792690373761437888180929511535777979135537590681992148046287918329362694137133932702862578548102413091235054573088813932377608275781358022640852942780905349532290817483240741971410219984997986370069603291547890332719270157072752624220513832106312018266305082509663396425512676367291197313382117290161690273403055758825529482448828928986757818874825140134303581660800575430445368195236485567505372272337364790074651018767679602543922216041694722840864127842220744076101931", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23617358747241128085481473206866341352547958569620870997494337534401526193732564286937657231276860790590770071905241613740615189397767075876416939579144390573881002027790480840974242510056574967252594079958860352076218073058613833411413214863732269622325751640179389285836817330635879304181747477653936927521449050594220320109410616378304667840373121812154279113830630378455217412168407124787583012613608583216308915711356562447235303217006903222480198050533283400493383887393024337780603779187605023331147350992376543038919923020811772375990709208229293137199511361402060279651311221217707360207330628323069018403061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26529108482883053758583683789010233778292334217154568233964596537250024344359444963439746337646300957492015393755745089584502893134168490442265948249718872586214975356786341567617577820353324189779841453774841844445659098817543673539172842805045230837828210626730209030716248054228526084623813824808421979023071000509604372748660866906817213664457814593775986468360293684226335858750896257720756943223221079189869332720129594231556946994236161746258574566081220683302264123232517236989477124945461984593307495484430752175894767637331440498803016252400719046225289408677039274121611956124958325636331900997118855154803", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26767018574820680340267473361069742510933169446831940725105890979580181899354006025786960987026735514372373553114886619431090477083692110438142979842174734538516663507580868225171486056227550823182262023468444475583390915102458602338953070002332065154647227107775048549510696470663613954694530439355903498288181163450178199015324467534038705719014184081063649923868502219959360520386068131539158245022921484939186399422847771804481115660544277644388623248356935051463645540254463806809940010994278773093170355544043281952518924005847742680874851352464831854132508206334464428796829397541438033873649846850624856363061", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26710246071871618919458955036039416633539329960020045874647709852444719407363565205420245925965763258098272088390211126560433777996413277570433495529278614607409200965658805352214108019306557470980121658475965362736979720491406435222557365892439985183732503316018946739947650455381589644163374518590652381311657914138926827132728165623754175706648565282029694446175499924024937375019758888217062871526391584884364975201926976355936286207796909201629396353261592347063642092090603965718577628266971897026372364273807110118087736986052264166564408987757724665860704791646938026921590288570600711364344822136592680006321", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24019380430193370207575173278119119018199545684187541800402299773457845163137355261449108012925296683106349131679017021659976946132666557116469280782762895903849821867622124002942629778092092476638079311992641846598875528814179752586542061370259696121120979052957914796901054672238225350910647719297094261406695078879070263740472739097414817183683438180688759414868003712261805749572809831437431209396991576583615453746038219422604384079397865533267216832546347807373679304159791033995711211897102023086506011380983335887594226812256016184458289501372033863623642427134768040160033002547698827204249071320768359057487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25677373706258317402834634482755592217186552594216894930434815116441996375104999676107584039613122042643079432258167838776497006293254877170184070379127383986054235732815675991106281864500767583347056851682838804640833848256488968145101400069865883816041492047890975319443365467864493800232106713200898747358410793355232985608570898483855738956441215800001448112570185937782345731943219987926748923097990183425911995322722952489030265099130782802596824802561480120396739865459910415224696533658257986193952144477756114523118026353538582190388089089179590865592517032043265411617531952515052470648293228641446249090251", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27365337299083985959297575402334352509025110342374031413353727975240487971186722873553523720564773780775884353152625803446441465119863668066206553105037238590578384021952609394816689738160140658542673638126432338778405661031125021107466524741408227913551229315009076659583315123997294231630147223881566478876461291493348536414686596737939257757660271235632376909751452007133419981643426131687156946944748647630812674245607067742035192555185800748689846899733511226655623321843554646671387585315705450123960957739198478435982843850126109573650100359415787225152146585826907928678890629844026327861242871694617284323049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28015624916604039465435038729120046029271497043090763103853333916847560386158224305842562682013109202257367810867072459734567852408840954868330558236961819202477983866292954082600922894075172347174812094782847179255289229449744056826768293368292429723562725657141762875605499170050217734242624877993152997615915821009719375652046929201675689441558015877875889409176413353600983616883765949318857611079288822077758971768633214550462111454208541330920817381430247540124501479931287687770744242482157078458222479860539577359042682506749512709638687826785935756541223415764712488464164551106815915176797988992277471905979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23714249612131957865064968461723210154097320090904440404712685816059949564677138782153899134338468535176099957870693819420506431990552851144108712190296157446916447262650375548085466076923982884128414856092615352695795694184028123214090760494600816075529033468726924150910518880523913705036251791751135935992680077550391510327749944562935169605507737235615895744832793940671534336410927801107228421999639695242190254392157950945534236707415589175308457300709216842558555753228291559316720929315754431611659380586908228988081362396670139890755930783580099510401260780949894110909393545174644862642810892961965639277997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29347820392371456880332015001229446576176086920056252021467529768869486858154650763815476490277418683801566250744293601024778985319290297770814995866509307288484727356540717251986702047471415188894329760360864181513269359563650673442537998650785265426506006403992677311811542929223395062528872149220187205094101974046569743667550620300977290562332436544569391197914768619406642573159539600624533991636799342846129924016516276584024666320634319601964237208990864766510584929704219258869407078586482427475639895809703616948716396176248806964227976254906477366976893503705033553986179012835659591503924417018159918842739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24046229373837868650259308683876161582624233424366702476542681038916866523489550018784434519810560881807176503964819846904320719547907744894889054080005897644740859719097111556299251983687777335287973357632400206225674138135706756232317156696451968361704199793038913908190765608035792926883987334072732182967112338810070139618635633663916855789941261778035205379808665715484571829412539983155298835073482342506510746794229113869211770867406053979802874885507332169599230495948917842181020382709770259086063010880716286815833214703029954477174742318182391972833684641647260107183329473068235860224620996538574029889387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "19488800525211397324118466133252067013978310101537855180566954398171645461989755154430518084284465866157514610112199896906669100533910476857593280805651108116154628118518242942039406465747611863317780198673558583447389523971111478068668813319309374751709532688551645008998885526720250860685618169361920176269439382309186986875390726875152095334806104626442088191990643707773591047218479697427313109363265683633654685436251050169071314155939138792577727730777659887934935197686505627948480796466779759894208563041786750998617848160576873951735815346111955067975276422760455177073788659237075952140334380240112939617171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22720997014034574335134702454398404849299998446516967600503729609251407759904038243135883172787046973184696000573975842639072488817216684480801519023781938850386609227665161873913241989303695274119397034016474988572084652998385020898072140490829877587621339561635910554725112520026412904222622733812302052606985302980077113465195187835825854816876905441768483462813505939608210756351493042297474811960241811743468276525129713498894154735506468094020428666555592787665652570384680466261658053282804519651476421322216013612630893063008435471937989670476862669282262480396774892332258030142310287258208724641959251757871", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25497796666703280236812030873692150000819733626333852726169143239599534312904220581560620488272835488930046066635261079704178279535449493362759934510115988020617090509369627895928024909477268152820760041934964797665138240650810234847892140171372943548998503100569303511174584634797401059439667441091643636927089586882843914218936956070867566865737252903811926306731016877154920262990240857333821197409833810833535614198167561684872856567183057163533335199324918317779382523052057698626950784727731231987131424440554952791717434093071607775431455778406827461013615120077588332022649872496655297183786535558645429994789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28442266042493771635799717472398661529868929807413826395646115741209265153367668823857839313042480686318824835282119208844893377061889171391151728309449255121374230824527282678784148251342598352154373190937508820564268261587729845189230397618736935793312630698726418229288475783225998637535671978613450399714952597093600448873612890947071293844797096934475360605938753970061644162004276483173227775370634237932050970522119262624392652726379857238259386052767589347508317289466033333619913290220386500627125386656618026070987401296248816925751195346339130027264311652845272164848869204032588999064321530105725176842377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24780166317762254347151207378057490063902793560355621371708346804291111837834789956985512278336360729577905816071521338269819398268601027663463975991532722928186310335339843537465681661390369900030836927136490754503005097076949105188378801387409321218581605101859866625281897572963377256051699368446391603028179913090224372987378621274332682485328756662067250597612152092395393814359706538141169194340190781670212579126755490580399793951563043454393032543056275598481944922637517643900684850849953653064433916488373449106149399459209750773087756331650785578458195892867958921679416277838094310141037863174181321488139", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24878511604444486527301194643737697216182303400368500999156905174689347691581919674063683549030504854564697215851991453910710709594371378122776660061389094379034047768621815443991117698653009178242700362099835763986812691424557627833257725775695985301334874711961185117924979556748337202669278412399719742202090179793647448741113318120867086581131897388116241532170193789228633429541172873100805902291156413974945761231495309993264683235950549874087352170168633140262134038993887365862872989336071512403746410853011611402410974291738032349777580559974955473450746590137547156658464382930430531119017646876192587769243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23805328240172446769900599275473935403779372972357304563336742883648124464570900590138820050285402535666345137298770970027939264329645952109320895465653906412689410021833595937029876366286220831297929360459259534785836933190944595563312387687504456391032736428570130323156991971591670991132027699985730964735204535737755996148149996169873740482919833415910321998034411677301199928821056312282892023925272178657336936758582635063416641143458429435918361379194190225338801667037004781836014478886781465191609995051922064099804087348828673476555666107177082352510828312551823277986608649810517688199397815277430095568527", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23870117887967029655105018400261318159490254497540265317063277902558010696268807092197858301475050878761856714885767700472063338614633715372491654697743863058223591132528060129519658775522514794264380853403091221803779737465772958392150854657015033603372142198504183944281696660011123788865756351178452950934976219693327330182191989107412550584874403460738708708920181207725386771682464232961891393937885304125154009347825175370222760898890395847002141361834670152893250781764856883503558657577791376083988365733780583910940301734222263954103778179205284819558497687088632734226915526134963153488391751517208070152017", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27862735382517884051808656914548776843377365353330917431751809927265510771216744958751693673799699544272581063042469641613221685175545914480546634823592902969076727237496869379409302445109953108946312904603404526897250242254091423714306660755803608319653265206110996574006377529009602964497068082826103977620513772690235809397964166269938559610452088713062126149905601531422724361945467963252129918450170089231341240753285794062964904697696765088778554035911143684418958119683824982381106039727946915306520779908377051821501094210922195114040170232269021649608800108976841103445968447215198500031761651575081628106963", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22394583747782438373922271212346012955422544819437275995765778339551340877593473495870564750208612630146832400683294492087293353735991095953526564426666445650463913811143400507484414630539260406589138585923382204344095606279778445465406573412974661967391894107457975534110296296369496321637913590370250494300654212898313871063322847226403571041275089299255212180002917463738731406180514729554072950103786193899699177477524547600062116427383293140883993720779829678915455270132824715204877632831191019823295036513525248698287174831433136573156169423132672569739773756618247115284185166780731772884623897611549962659121", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27583836075068328758569899185247451705683649843772373865274627118414579678382408128354650076966574219709238711287950900026310773285540055188945730697206877015341581854407056827311506978320777847457144601738883510246618154401156169051361090029111271263299671297600185443582709630005540852100273679299181100649862168547004809032807736069515416690712067687100868799461671632862036822187291852992923651767698060545779304460956214579187660739346102817982518934736932378713030153025065095740165964196326603866380186674439225853755544550177543253267435129702873095834375379100958697579996074158773564308300227507227245530239", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "30652615687322491011908952421179762089798589606914130287198761323204702830670342845565752962905045256394189751260532031462661301479824999794068693274710387050532220939125555486605241411677204441509127618578301357736245298476950664611350565799725923188534120019592672944035334320964482836338288657445948872013679124421329097390409457172037455906692401804004638856892376000128816644511057954070152179546629191453772688106246301725050420528058587586774877315195293234156618761132115886904930595504075225125632576015867807257787303746031324452030307568619591806750831446681815851580615963649309052614535601227640508035599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26811773139171710328574227380041469585621724574364496731115992442627959699739325702682075842571479243598659516350781919192286710290698323542938370189861281523962013342286499833762537668093440534325104097344975877447178298329479917630969018880872259976126473471187202448459015250305923528656092434618668487740833859240189504224496121763145073331863387509336379718782374585271457370884727472942367211950072506274741957608999304252077013054503747407282852738413477048254059498320549744679561146293050285160178087372720907405074441155624934985035201207780201424926637064887373134979998550879681889491887043200026136090369", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23572024669238165110779462867090052582249615929947366137065571369510202716927642918679074073812279341053549559391290449178728578130799055975608255862037377000611488913110170763042616908849008448808402123089445268244889967509600375609299964437750385832083862353261523001187246705521216725465064286263104095868766393905678328264728172171776366467613037231833069273741016216237728584373679208693961804209179061054238729099743904842849598850832583509452548572864192635606731592246365272868547168245627310155286007401882478317640889604874250024378574023459491248513728715754111643737704625931125300849332563585364186556911", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25927121385009634149278528615266986343587350276688077029525223469661722216940329911059295792620314221380891309040735535364124407652093151735713763494803990724642233527735394524708052057311866220425605694322080418439396420947668696143319281092851185509227359173725710499383608119727980603346357198835647413755771784179011607435358125347119221213775525074909168565760907887059641317967156881884792345575061799952516565503676869982774774389348453900523661050102079691772445127381046248589934740961867785700127444575168773285777506434015054883961910152760100586019023514655126403116689167275426358417295911573754571701593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20089725885856320881714275330538370446852343500597854152639960221473461582079377799618290055892850522763176971268450238153623431881948566116675644231371866497526004242179725660345806818992305357614834098123630063125445683799797906076097630002155822715258863073204066304100239451742530451615505417332013518580472397017943509662600224678967715035965740827014502665985064425603031329796704922381670804316200248946539634998735610969403020281084465031439270432239539430273015515119403714263136673143404236402634133526699834478015516189600330923351746884102623146337552883666428587147628923588615985478974413705228617310207", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25111118506896870891541150904847125147678749670769571199533671948930052560842195492910760568882513865763957959326088908173751631739131625902892146291831176838368229783057550260772728905669583037555291896966759224872710766824230155875881236042147233017930788882631813268038281046239655501235069219698636153458460917356499201971022769965193265269087838231854927992541807618741099145187655792292189885091863927812738379229455649017985829162215805810821724666240223348604499042095259708356901957542562626014602736167092172763960567820142615406395892098486935225163389286523235580368165539362198482794181015440065358017881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24783984511892907108227298306846272013990497733247377755412055038299855423197324341793403888364300428373920498608642750499310055975157445925094883550911230784448879016634434962668429464993223241645030342717282519689997904609463820942043233158374719655732573626499334775022126451085304288861121973228258297938505684793267952441498517932007345634121296232113732079718627327023482633745904417338926498438593332770799920643046961249483477932734805188403268223667284365213238176503507132463239639917980629570998469636707766565054429846403526000559601457573524143528836802325515611606009695052295418261975951480832856796421", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23743313689267945880313447691643158579786183702380750980093464324153063149103600901409036345333440481755061590255482541785481816701137914840168068240394953541067450418962010714891055361801531579754268973351678920698354426471492287385884910422310396700953760280713178667712402694266330695978154945814731901251901962183224707238313514935756283950806831727350361177939029050209329969808980826248398654376861199740077619898419860469426719340169900129880057553280506723945466552212699155786489898207618617115129294810839661107828456562216026853759675225119471793148844563352589689132703672666985247227262962627771356116611", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24980748571078026282604716855729712575555887241741565372185011429081034755083140880562390861581110878086257036528276897154880445063918319860882576499152527795175026932107133565811306531999012792998320195003388265891644493319822568440992254471002091884055432228174044677847287662484631871131997311547534198860443043317300546358932161780039294762587315322795036413114764657052541740894606705270694411807302889707358570196934274876409651027703042898396094779406798631682145313652348852731152432568434528456270949305817504889350600103354823594823082541648077185740924832432181899359577923903203829189329039768007731132839", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23723968558653881232210947247231682741826597177628491629814120335657212229127800177523252829316732059808331708565874880899250950338670140483542571547948159093095557414337536074591944295937116764662572704409558959461484317361226925251519495980282432978316675807806631107889965903361980922222736513895740459492081158124693569247903292580475412906045781093747570277103850303809180942442635079824263039716315738254790380662871774618206412807458384960633817594639255317417069605315684367291353782552021014812854597154118109315300064474517392156610952906052149320078020862202282068801437916601655375646078703011994341280377", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23492111917554781668436673693578580062091439646669064372136592768606825912271250010305918099456941885690368828888021946448435895022600469926695641277085970037423727585869472434287337193718165987616475044897255519808831463197555323774824368911578324504898966595929201177486070539181255864256027192361333223810448624848315204245200543293071092943693890616746668519344581286380994980584421278194318195192257207370490857256236712510726642868749250352148296283781819167655251029327940352267571885005890310540891487153934037553359507423462243438890175903224469268757806106078156662566762519603836104364937376825125130605469", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29569517932541153740915538308254001149256681288650236398055149638347577557966250927239109110335826214116276888292071253754100856394639247190941679205087968309352652977992236174747363844258564809870652695692515271605904511289886077636007096931677982133904705562811151903420501425183276623454162201434472409711183015430756625649645059439874750697560219260366165322701628122698353271584176520760195263471685139557428873941445134259253582816381739673838690937213211226245964242593609544803204368021862624276175830830144237492458645635113544391784131788715151368430477429920017620619371854894299007177677473019358417204293", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20865966064928632670949623832679539041414183783395327250655166391315751067171403848197838670880294362363676271844505782820202432361199712154766817686905284297821655157114720008399458076331104111082745637596611794400926674675328191628985532708681586903580381539615529011597246735223057422847121694226371641575563861200903485848655706533222317477965218515992843347844376624462924386899011712143419300492435199828949311048873252055974131343629131584447801365500445051598136546459600755104971274674150203576560022010389229772368778201519172726637003425995140474871098771678816439539766982971878509895966922647208307149373", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27222565169810005569097008886381576314911155550402004811788732043953015205093505955632565125074241347088455997080948174284998106157648025962685941838653127101636379981933428903605670137335651098418201090572951843662802475698061043609586230207752885392509831294700765285750079610462118148767605519003556452171148555362670875521342073611060560788425987893965381441181029543928187012030879607999263004941790217639043178626801409788446515661952885971125008759671564023391038422010951466432924555121794992023177298324378361181346871474788451494527994270464199512885951454519534010905176182049468352734679537510127442009447", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26846891681058875805939814487711500792551437266244660186222140517459968389993595136746581700498479119123155199572194475564224788056415575288529096332484099298453830706008612265412577318156737107845900159261612993119306681819293913715240995095714999889769955887979347368799210730596808377957078610157192029178262199268761969429269309058681080468858053558326875981978038289660323171587192540001597991412467092477596124397913303965072064985036240632092278142784151021627080428000886724816802178351344007111342895679122478303140720140994350147753148754723368764864122565280275631632686991837460152054147659900551043876047", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20087105363301687721525423289022916531796017730732909561340448487251528200825096803612457383281630726747449619375512362803806711223743647526473320887284059751754945640203540204781781424966133739602535666687622134833395873695974628394664499496697730336320143106426599577054748886166912429002764729317314766243598392511423149010268076581525079503317860779825933147339456710673338390408962074894783908461108717763458754795725164420230433625085549573759114638436405631285475356244039287709155942188834611815409641932522795469328756668598482928763835757287009211703083165064077393574868029811833560322652094614530374151039", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23867765476788812176003497957725917710400573782331066990020439450158564759997269085068249609033595108808621890528172517808450194473707782288442324759556574652782709629311354978807464563420865056974979847100701790737660118531930795785463732542113527130078936082028415498874470966281679730109191211304849105834135954593184058672772301268786723409945499477062301088163246863586457443574839368759618765978317868269087513859821875271217253889911595541663740427379642534225294641457569325102585404243850439692220144476922949267728939685817951134397694709058558236837029032366811139591196588661519651862712909565832924672693", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21693401330628603029704139698215498819542419387296913348576688157130175087408730006131682867331824763835933881235027707163320387624521773923021288980341411095591360627929623515991635926941314339426368303069405088687277801339681329545493446880461842365650824040373052958100944001523319258646575803774757783016178620152312542572199410049814612311557716666593758941541838070172017320217071225912194507465745376105958126986843668054416496648889732931141918576414449685774859450950972435771162015891745925472826028611522152236854075090345743033326275065242000459644329572184615737738372744887160203387563451243617046364959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22840778043611928876651968377970106117372952580645498523587271982807477428979819227729249616625521687218003619457563501254461794709885649805803563484050531026819516008402142519417529542246827478622155777774977770035092738416028001630302773419010389783605330974919378216554436107536899709314323412486927010364947558831728961093211758482965257448610724937884369372492659040218751778094171029745664739028415583932047594769051249282146358586051065331140763390037560921152026307600888381521161262493283520468339813287099895176700133802372481907484851112967149385242299183024763556741369107805534668412787213528581626125649", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28426705904243292148211703823227410050395424245433338127183170608010943363683394635589293584714138151003006163224427228408192648703696687495135704642133227538902670639643003222326706789543284972474553650378690806586483986662097143951123705825805740623194050894001641239092355681675580986525469319083278031950775064517662136340903748473075991932921216984044516131661385963611731001354248286757750684462883839052957807771217768851427100092495427840623250198673110834299532185495386279174709302884941091211278730853129453871732689577790758016264187178777523444489728837754642240872522715890449381306283992388196689132319", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22863388820696682574710069605215621430838435226375394764703671936472246339268754069932863872911458896470419072906528091524632000604749964585135868009209049560516744612239294184251878979617855626356116386874047140562802153841564145769376646143706668854069568946316850038165573019799706797777253344909512053658609509154672881342144443818016303834121023798276715040403978067288900563627567482480123598856133978928801732912943382675079953328793400496209574321117258922217616034790772948323490983809016323798112043207559618221922886462068753824312946884748498745667800704863243969266556757909602152614063958411923737753173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25004042297116070338535531407322118534079889174194063471626896798841331998431637586590966084084229421514694328069428843342231911729810612183475552564366345176841661517119864491331084422574231975160918786004519708888863554128697781873232328204500276306014815540301776029906469546240762502752892060871802955507813472313521676068881356285703036859674073930555163475606728661635707158133299019456144306284685632636608720962494082320752488926764127940703025789351070275470638855076551132160938461268527462828514605023769327107522731084033575474259754169579214289551072659863712198353023563041943305817094013961295123079453", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21524601051172671425527555913703597959714883846497106878001418575827807531914109471703431111472418816797374302611030578995002431889707652711262850046608440896759908156802036835959504576878036589107873452307952523389683295779200531352019302374260798496678959881102883970277153611270605274012281351303477584999836345890492264989239278796290293898185207883277678898574476996423085154995225174827116802754388477639475628962596402828472602351328521486509438927948142747935255682361942457065794426383532868918211202136026712748815120078928659803570585770654399367444135706527757015219617945541087650199439117694872835526441", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21295858838861390089090116125517328171052829223472814357140838578767740566311930747843340099182676312140195736651316681593970860838362712829943710256098494928084664831490873569950779554529645996266080376017439909499388551146298138933094621403158836303168310616197805569683968655704085313980954148240205768270081071256105244751282598154738735404439855208147993533594445078541943027141763610365077486190515629885548215935684425623470660061410750010441348297754989735977013582591722779319469742135036129728878848172796598332088117325491024152778743984978079267434418860492343950682988736478245867137242076826161299217647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24325790163101984121464547734091313764023080894571866953813110878672524939830305806174275329912461689759756914024964310773214483702544069987122953194691727593408670019703578971385183518824162081936350820536714691658621640259754998784083786909525796134318239925293365024704821805992916392158035033862191324395923946432424839681643357889046150050300658753843906486185925325571673119172371007542177347875064341932532318380849101477649556372522867390176078737261591885109876450556561723089260152709252443401600813850293655398039181048382145361285848122416564176467653821746091360602413247526161402098331100634457671378547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26465551498428167246794928670646486686815963389385629268094030071909576285736440985739121082261132390052560443672708061287161758390152662967892653600668591299818471239805588938633388385670708341132767500177909518188960620843969469284622601230302990890339055565756954710742835189376985769945438414854144882466802614851526193223672872773796138893766141174674120404059715569552637316181050563070215871825498260043147009136182490748216443933526384351320094864174902289470975353370219184470920487028270908638560756461556624221290571282462561432915999401409060048787113535025489716766962307364579293121408931617551678134959", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26815779914672563392936034848948674976432241913142149409086738270901457610655160000584607389804863164003239456855388616262141118887493317772952985600684647184077571245585583855492546361239253987924481295515258358033736897295580590439031990635344387597048465750421172094506551934550337386423064782475933700027488860703178198806690522607185682130967514488141817469760595613733418443448795602481206311578936127778355028749632025329253592390183276854668996756626319220580574535898152282594440144430678957129976448525485646436087416629204309930818710644350061604072107937162209075839005482784144023045507574980219188234007", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22845679611923092362163382256473524489007904913382050776074416966172982569059720330613429588611203807713914712773660613144631694359514643658957472898653781138335073709756788507327416513695294943040156541840145528674748654479459553763545512849413189285034954041752769585808383375485429657795506277262845970865418054808940195157691749320362741700448344488983654960127422235264068496713779398960908276250194234752889055414050830424519980362966134001552373673114028204117148554780752585013604082803152875563252922379124457179886630341025039727041318245947573482842224457884528056105909274508138796482009747101593606589881", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25334874027783462975116249148113629088405822012462703063251237308728958458183719959417306200232550846601026483276139790655614727956164852927232475521954939676534976697888023982044978415937806518887624094164646529895051485162060746250502511553905339716451053283169201118240204280590732582394223694503085150166829896902568331255601069089645051649324316643528274097412259749470382320046347748892352227730810738088481036620064680960230567772603663251326395699742699160020882558316045121500075132946655408583420294403787719779567487005421291584405683346375574501036349875515004763184383141554897381245791260845371165230573", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22543741064956328900857760277324812598819504166833798743014870040539584120108107058595687938670177302079407759156010372533832358861675145836612608523987254959685062296071611461219534222473657819986098099082657128464110105554664446069700452125106569169503099613871578883256983200126841353304046069828840127920973012066284026624470066523550551663851790677219454623855296376622901450847162023618934010341235241285300671847198029727114996741447903373098174227477516004450867491081091321850513399888889200059362982526230654215218298774370360802766349390672421352351368396256363347854283978109269732869654507732678825675477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23984917772482305705858267306234877017507439854061230824269222167863919795069085757277027131572656212876966705932326793804980534849373484150526527582223740757453336021155565445444268062181555259764083054222804762509395761433839746511672565315264281683858493783729720291913819977807019179669418995625274046425465345179048066323699763480852125881264342199357668703212729360235618793888879322542710484917017853465137677010384504458005520312617841984065840770927079288611710816079367453972846152450209994212227772447572706406411449557490058052965050145997803550242590312870747354034885286265323553374780255043967756346867", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28124036058062811244903356713281464396845746560059311827046085965088533445671109531362979425379487778773874487794478379118978126379414779897231862804811160720967171328135728119691905918459423583157145949359841455053603967877914027503909980415162124411549803552133232833842126306285411681062207113998531902951764297841667957274326970567358361994938880664523833760680041382623721628437474259196110232941359810971678378308410202124431787270373100119052076039308574656589522939853913814867091660158911071192054062905899754374138908167454805501079582717948780823812568444724200396700089324704027895228221399013436254495123", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27878075313913818840227151691602616663975103380208661294759327236013933976640645525213254626852145726257218493594501384841661066395840830486300776342950088609714741820876207502735704461964322611458574962210054088484082932897135257871449483241778588593106475523190172089483814089936627528922377387667657870848586207137554599117878641478322828607500910283415118432421788933095123046026349051598366124615304369318929898147207255623957146817718263254140491511737753675045492674025059047494583038734517818115350839011231024022959140845662525689678236800566943034091292598939822139168724949632390830885505344553849934102537", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20539779788580724061109795708265085544302937952240593247997591163096479001725822278983718586614807534201492037639024444651039863968371637985038323757681508451359155564786202903121993024672197312004498986264312092195320839949779976005225169718052572039002488220294873975920736437351421252571421149224618198897468108318001596583604539469407523704673100436365577335942369461240246695123053611165139974075914811946406380586615437282869842964246259020944421242939524773658357571479947089902180332444436477189234693977322873625789830805992150111766261263429606752150733681718919644690300515996533141111911995574042779320819", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24510176969645865244046662843100331605888450987599831515160296909936226971376356140778996404319738014204059342948654484327345076262447749183601484829364961284357138915169677824970499929910250863600628020695499339429460582043749157388491974857653117383870697969484055736615418772926629863791009723532824734420889495329628388670113142967187094472861852867408421698615626155119131569803354552056670144218296109550630355881837698029694321087059457790493946141605789834434720419897230530847528352820654653085682766927258373370655014369920203298509347340776147598808552863625180905929842555381486292881520828010765751471423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18630978401415767611287737316268915368267320129366942200221141971887870049652073906752447839179545537472234342142163663636397892339151950232454707620825514721471653626577859038503199746566230223631601964320081008793980733978379418570907797549961216996875402972886622220758615481659386725660587070014371809094577677737574285154643750035926084466192504189995509325166059113676541463504345098937928470924963613724878984359069130807969435407361859061927741116102182592052566409447017045951636791737691375656481498727394230014548547666375487983717271557239053478288400959380519757682700799656196915511674883575716213396717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25713116602956137967498534584829140157578206489183070046874673107269911739051534394207916034421864103266334048186525183899341576152217191541698531877221045035715477606296336322120943974044746135057714598097327568414026229248112912991086488431775944853735943871518207974532031024102634059656221221372299251054836761797815682202909234524295411428097100086726841664155294356072382765582659099516375471667079984297707456916987325647107589414582329796548488717417790986110273874053164496822491994591186986606895711056217291408430013014554898169396177384109206766117605209477982009563434825193526366507983300096740845082393", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "28992057390153411573253596154945457973259476703830968845582084523320225759940995866135911363102095436477166787026821892118618245286375120857890865261838004671580809655737481600938878979630382694600240521203623421679251615334291079047764432002331081861636462373264678169216953602778273539102542592078030288942551048658981480544629938940867613044221848332827533577989694530334877826098610211355421540583374973195334122391532425375058663475577661614372607335438912049625868257327043201573322220778112294343862943365958210140431241682490458773335012108099086682172695823971568994989074954889112816031057367208211976398779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20590013605587110958038299674484513087731894029299129673208943227268543631270122275806545923578859853296568487203223186699350734929060493600337709779537724647539295839890165100879227074228944559882117358463035473420242416462554174889620679358210095816288298863055408428248336004329021616383495722849196590262950872799934531454547741269608285859330749365684854430050385691727768250377432173270071106345529634860991748551717998275224752759748867425134652064827069979959736055102852565735410519701087360985187944300208124270906366437033133175767160201220735675997563628527503368965276604798330830680530700327939320003599", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21886612575655363355699365436585384880275102059575805165793396999691476936951039288049280788225611369854382007679834077773755754334224328597843322071069674812204539154319085872351132601338631336517788263561049172032633883092848967739533035978996642596304426311649424284853371510544404080132532611840735222339331820870877460971035456779889424822061852163943912103223862500968594589510932275312801817920065147509600404181295403085098670151815705339775341719694467292080860997044378918700459623093558629219114203753053991404253773983105910176781061731752313651406528800478634115710426717136282491369912855817645063947563", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22066344840823045774130057536595375364564790348009049400259948178436378040447263885370100032466356104752618818096378908220415871867212652557990228620084626880925505509243542983975904630129906540323683498662265663008371057906391419311548188239494803152039086209152306160148103608529531614961447596271632081118475265569980132509439025706339958846539719687577336194986644506365840101393806539914517170977636521138811233361059769589114858462157573203521208191501673128289505671509984805442041597830036822221275407741576450210632516420371552162423215571014668385907718876612995727751949340031511989649128884632870453866791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20812474918647653178147282758043604500788319732068392247506738640508101419325616871346319708325781101138293082935035976973679906624119751190236398191182894194579290457019797776394762971504575064764406489485581604152046490480627978605744654240593073649094712205425253126494546811871661790824333059406456603570769301214305187866251616540434806842703935395911272274527868797147191593617221059650577233334668311657339638075478455851312621896907539571672192898479666150267134576859189255857953014396643672807870120774329196519179362774925401995190968626219239355535984516898633402147248676822173290347507145474804712870099", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22611028205938139833469786560213138085663675672836227704845213815251810108182684917781166229096345137348889661448798206835904107904137386185414469993492618649427897177234362469419611516295557576795194447478718825803369452545435527520650630942588703628953223053694195074340907382449805136090022175598275858953566328199239121870193203091181166540135900075599861688560848355229144153832340613531785094430193065502435361529450306951108076962943320100841036654894825223843965121549287725505363908789852287977997710414345343448980634765369639697496213791209579917114553234406498714120036620235996189491845177685773753964859", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23344406129101084932905328714868787071111098926179092620048360785689519307657243978378584373072310274258065953865954938540785697005388685209066994894293071032691934861365102191458212445762490139367737634571392961032529902598373786035145040682772910633210003796989828859897669839179114038666392402630472727682253289419938633041963847727932668375813176575423796741004514518555473871430797152087612018997762887285067664754550377502974757899693549878757723926005803519558864330057177813208916741370726532551089256088639468546042652100940541006298351239372954381804395222588308160717158676256574551754149372699093523618029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "27838465288704508262653958055321872799606525625040363871181624061604653931575907914361019451702645043536472961113711040689201246546173843924404566082812842572387373780666177418599984168888237517209739090516091107117081518994146593738117356132936924306248040751259165752131426142051593908853088996778366274125981071917558864228004529093500672343527104987316392074031452916724012662225342702812500197198018861306827332029713493024131632496996809253268364503900172632867498055291559944369187235725674289064626583284267205013798362355373000914093564504666149157629927894073068493180725534528567940756715687026780881281717", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22000641271313593700047032390868518523779706717697766296244399457111126895570103041126723781038962796460293047528368244124610396476799027970283993305820273134276948194612866568610108621458297741101369591622062139191133629600116890239247560948603442640941178639379697693458603113478147769776821662034533770721793208891469627336338397783019653821313707358519054499857347041047969134873496117770205849295872726862775330337351832525627372009180289086587248349216108372258061092689034317350067619016534888078453613743976720123295830278267729910699715679382013256474419319911649874648577462756074006344566854205982410659449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29307028080979828909458947780040500522666771925008647115848674099540708841990326240422235249893023853311213916356610299267413627916846462579393510530694254344661336710403955220342738276381747314013059525086766439237547688963338982045874580291868625865685859175692028355317575861936980635054986351293795700239222216419902159013580588293871156490254030848869489988960259731699565927630648831736586610281822095410347275386025608266142039572971623947983490051812162260383643309145147870801810375364316940120324208969200576026785985872669584044743580476676750922331865378647429190240932920026200233104173997268448854685223", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24292625187119086125535501509357930098427889517658210745648162033689515225116122408401683685080831970685216030853869653840304978241202505951381257585245654882916865261267562284071566437004622629970206044548834126120824630555015097440409419448003786726438027086780949388642747018811238184892977956931820238809716444774270152050896023152852818666148129747353889285301610396344979666634944423251769618579830997804760584797022365713448186786924748234542361800067369655966489573519396167826708401806019149049091457715424470244196859352077276429367115280864556244075420437631119542815089604791352678827532748912900638159029", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26468795938384547799365460463497839851815426419237809789177665131932468478659854004726265216665140645823941459190459390885424895342810078711443690353001630026629228553615182449608505959425666473373969561957241620201823452251851812789333936140269492339485328646783577436395413375345015301731934221429282061197626608728138861745379099941096730907548614048391964589641684941201484552124357994966235768691508989783514176778312514253683095951252386146990697849877323746623872935721945089906074866864033592412617149943864718406965829656937244837989340886855795049394172781001483394280300308906154417286700083128520114546273", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25311683508281253401125106102336974356801239000910579655048724278223587033294172499917564225711195746397645413626793829754438873582903821148193123462022834719728628136749194146691409920006672465000974004723856348208537050192340178116051778951657602276075473652451279620065332769874822260765141976382309642736994902139771153616115620990622190374941337138722094692392998260834767366439119469490838586136286588790867080335324084797981118387594536971110584732053323556172972418036794589383617044505965001179947521404344085185704768880314933359541407084586301055666531655987099517044432850137031691483115869482684458571731", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29844222019255484524852271872717495080439232598625177747256458232758239537536634975453171303607362567391816069801245529932573539240834163590421781429765716372457387516721741000511849656019540688619103727782657748605507580098622982795657712667849246427154912151528459006315365129304110346790414528302539665098086352469188349757144108109511189123300091204117272670462177437679367359115772457149180835851468133862287820050715467697764451644114139212529421793032451579795740292512470730676556410287044664526215484949054790793949467535055772548236751940865340433095637930929668856078757830408289400022791941476423553864887", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20104172686747052705414443417968981042546058080412878071476813257715170147492527580493834146563213567260724879119259136232071140914996580565849049499274638977666621720632781335713861996264769290077189741412963015491041956116637818242870513162630072522560955959752649528574877776065051963124845927679739602436151708581289523982639854054028772124064423525596481121098512775665433112894015518597504904210992916812775739448617735590050688917364881030733226366173712904751256695095507026832467685683691946808411853321566590744284995490714153859937690130497548029077955156210952888538297340546772211978447867713132068888813", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26583997208844642860951076195055364125928374521574633594952182876167633699815131832773392658912557332377401091848123006060157513863089117979832599609435252926056894785235893324189414582007114207931038976343848202596024574049299938002434849474317520245961917781487019094527979135069660827790449754510610751568362570360519734876228489108772175250375683509297573474990753861229319880928488507847406432263226146325535189016243089980631463274825343751254095093434174721426164053205930290543561718689153649711089831832173165396588660269210777977559307885859156627400157528328738868101630383516968706049454011359048354666347", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "22429754630710099806484566848762765519482337456098968562563743083231308316108918860296501898602700965744272924598148985863638165560195926864318232553179702580005769235696203879456049552111557578681365236422315324163497954338146741528545840648239038241805343127593734771464814423577302607920546508841525560127614397572922649356376766480405555967323121487962162277543490847176207340961541021626711433424884552699558634830358645388366835183554371303732786024973893554454414312591580096033098118549879676201756213615411174921798560641472334716041606872984776980124687977302913261800326815363102739106448492717976709068019", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26592494195843025708426263299821273398804580152628949164150640670198107804655115121183068704955873426939249076238593806575565787238575345588656834739380739804934239368046480656037801010510343707877951470256842616150134991634040446663631639712103174254302981093971840679948155000367495639213898794278453389572219683585103912268500474683990790820305402197966932712053784220037720408202640205648362417339288453355716621593976150059506824663008272041047219213129135660704860354645988066287524232504613890582330496445925645023829084073169166376917319254431545230947702365954531719104537748452986649904862449485578313547179", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23311754042769568480881120996941800530411316050065353657981693003613644940193870985845479751037319529559055391552536183749861889157513597455084720462514762293189779683647261941002040110438638231069505311454544675460046868889819164127134051224795025655616078796641128622892576027712845812974624901333437109077415546210887201244508125292237213616734544153367368439305281024484055981003895815724335457356319743399937030591592291188758926349406024286989026525787606076579065169860268123288518310966808892499733136583841230587649967594239172884088822716912106378980940398326735402667889935948713178701470874612484144426023", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20768394551179985989333607398470791435242215341877348220143079350099087310415437561298364982385474973253007723938319989932625622616831942144696497301471679182790991339014437042862055552469489456462177388582821863644740394345638345100575421464198569176474512191278020330747462847352125330723635954257430250487671876688958317957645461812926705564453147728292768497829519410755788214649311766709626175468885312146025738403603112250962467543512236482981435859644840341333771027680581493866994672690902931384824661905261079997938477569911077617423311516334977152499370037340104868149442291320895633105077850401645540371547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23078695935402905899199170098094432409976619861001210584045655743500607753997159517216312240680467220746239752939063612215024501256736328087772723225542084562880613506519818463344753205996842426211773449895750452917719818110953273825610574785472821182361110220027945709138115019590396098836068576147669798549241770049846812652418973160786104952777659145915898451534541493335864781528200807616025520682948046505776503777328778441415927680624150977182551996419637758121919314115595303086539422023829260671665052188160350820818659269439819039376806375393208731088501991575210402082402249389359844922337287832990600309847", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16287304091958848954404898727480064904792799710777526082631227232494806114909160567853410372061107951945450143231177157742820107059063346350950820250761683559356142903463772871094922718625431411792822393056484441650073417496984410270212044675882555783012789771834768294989958301902352514666051514563132970637680563797745703550021006324456203618323743355176859731625815296761722769041508470227499151508775301892585213543328597488932054727649560826805213486313072053697584553771411770041427794604996938902263310089818814470540876400108422863239272094574208317515312477276822679201801131664113382966786254934141366574221", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "29797597126143473884167768994290384087771111685890547452871210085108179908398533894784034209968975437734104134577844776489021194907393729923923636063647104095910592918751097955813685306441420820406117914324589762570275724535712141167625848127474276810369328421354463538441137188486864671995751828395370130571787030816046055136435408649635629689651835111051652286496016592754341363164003561615793383435134390988006310844687793553105458964742165896337107300259052393090349403753724821386244193518877370565589069238634685412501654448875423413860471988869762711783506581492345989978931377929475439688344923561158201799173", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16272264341561718424783608546466137899540067893221373797891298704487051962698071244982785406088755481472644334982272678753272263210254089529817398678426043002380224667574854581353731631031545219625522583296075290052932604549764188068095924030616382100474669537666600270562597522708842529194832209552088325471462044940726531116472405460246399458588319970946166267514143191334843498034808559845081421966529136271314046600124260718128356667611241069752503106685779623647157222294140870628370192372089282793174445386067435739393901834734879557732953692230452396163979355352760357211790130307502139928421628742052569611181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "20582363913454026792285499360821492917549950197933464978054068346491961437153325344393899572317737080158616231709543756396462372182469287730219529221327373139363796418336932831076952681911639311772947013845188264598425793308376713127417112822994185711144673426640547912732031967276218301151535873946565927982388730739529709630325053031333264105597434051151408203709977056291905584912617656042142062878514878384069634203556454082582857603713014404924109082501263272113700853983179250630428635001430145192872370105394443599854143808615973104164870986471851017571696163156891033811260834853281957106525880927674571876509", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18570498395484070229336586706365518081390195383589332812458887249734561692588141831109927574452138201342524868243508009496070817409800757781131000121777685722887739005009622600422472125473921453863167045509967313919634975147284440280837798719670110214039595105256949662274772041451305339032661285164956889690470271739440491398850817650864702686998583941399546384963374460233284248804770426742599622627929665245421837650707488474217896490507173173300676698472437497578440445557022677304789426161438113697251729824289401139110230704733246747970927491708099045235073717502583056443578687663136610119212097531133732791593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16294750633926575968224364712088011506515684553286489601870259149473521246796217105103162443683442555280225759929073017185824516715219139491369857890393897618304790109721194957020901705513096354829536432663822368892311891868370194039955818503816267106732146559539882588989387537495317384691145756887582023284650090605526420415716687286923085071884939291361976971388822765957654081332836539746368001974750665536889279949470190641028403699009412019750376428676941431513483452505606929839099358874020936767623538144609151899618267153714584312924849892560454019195410214345330407252079159220358462757371945402362151602243", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21409479640993097082628169449981406832274091480973844813373210959478705835177201041318129245667064851365011924845565032760533872663599611300160259821729778422151649721171575144507211150974074364042770289998697090763955014479401748330147003080426948436583209251463345708983399510738963809327188054409427128016285440607757840821923360329980609588660034954877028658551887598059919993938301130488388414116242710281236201913195205242303763492723207204173294992815664329737899191969695492015738728423296570809461431692014029034069937600173146947975828707442316231094460393933375676024326353392076972513893492125545028153771", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25512928776812835006699082455337984697890205642947855106382078937221304339500426927963952609451972373779043427767380220025932156893296587969623563771432106216885635245064398048852302662172894745732899885872746539598213003580833507519706544383242450450980876829664291941840643565634026241414746691531817620252651784266480110381604937211731821183288729552310501893024196676248474741628590721618013600997325859290908504625590549157114793951222928479773176217664535565719832856295382713390638136420965930973448960830391063061061952091662444169176818425665693366294896858776579176079675737735276249086685097373300453895791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "21546780336895040819174150855614147769066201956066208341892123956592173437250807079520060920474844018974437553929274286577203355032314736347979137407408833000217502317966833495653716876161301545067263743157748644673303465415776579757444418424343060168926968313047584304721007909763507126093104154586065043793535521805206982381931528172837482625543375822797908897184383381569974428382311002283090792919040789846727129514470323449583521890371075749051635152998306188260330737415721040701259308542283632887580443183975292520763188624770950055330788773248387055921421432625026740543620921329497029622514281544113547966841", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18263341605885502744619457228731051802242123993145219633234586743583504037972373828232127712914296676775154368668464520210311300128810205966312537081388229541033340688627812822686248296778738926074402564240919878822580762837346127446582353722701883972225283779010868394516107731997636276896294970034491915441871809107239198523581339027223906657428451367331225952705778985745459472842750024333688683802379829266567089758215589016941981855615060370694547327438137601972052914076939077175865535008585513312399920382654274751485213209319011882523523161502110693141227604113525318176575243192676724868439053311571116510333", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26558401709224952154113435761727022622374876775071909381420265473778909346161312834557420546559689839462942362334176517318939692797183229723011652036256121583368639134752440653048919422522517241100934645168622596874987556920185730788756591004084716272262007805633102074088459195354256797001264721588946064437434733501135063202825295093466523428177727332190797590258219010924192399817481963034126799184293887128869022005343280429270705605757567651089521237408501434513510336978026419253108820030678765250757158530414306624749577477892698427014012326098931042575243006422846998474246325492770915045469545450189818216011", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16376095220919196574935325601764835470681967156990901822872421788353571301804027052472194941598855329097674533641611854121393976573966131657999958212105928539987743502715837527637559352738952143970681499510473042308127806423183980772436607326248019595323630728583187707734566464961313881337423093050439575354349312838495291488039597446278465560730621985278480667282379261168413932891845826709149025613773359240709198458122816270650533679221381045777702582784298910093802889539618940038160230592126181066079566028988109440086635864758127890719942806890967740830923318177929592542583628127285525175004921985083496179883", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17136207982420536848749952017212202454831491421941343222290388946313143925936712468154089355552188875119415924493903994206104578712424704778545164270823416027523214759426251815452636843015729443305072472540547089418426102822093344054875512987513406065309223247893853663498132536276317423966313490709309539785807133488212056839270545237302916551180782229132765285402592700325784968620031034519517956485238520942660327559194557557140291643312452662932640508441206023195921065294268853517008954301956992831649290707968817290985491935309716806818044964918617375112580995644989857874126235429998991389676530392661886604159", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18512643352556512269555287620281140103905825104989201606273423113827261980380898201330918526888279166803001062910684309183702715092235722315112285061674248800482842461917508971187474004012828476539367852483310700060160019380789576250937995332166604053765247683778943826070768857169954934081006503087287325479906751262987644031794228614947473668218490480311533817977356238781464761765492860189226150985383259232627596208684093503638303336148940720972206498437737706861106586523908372623196336527950081546608724291845928396191836912461718045065310436201065791082975951345751391478531719449100223323337172361625879130097", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "17284632034367149547514382334891453738599558338277533142281872705474877585578025094386648911952109319190210834751407718339947061531199936033601486074596679798779257907182347460126233442408347319854762541265367729603412655043979976647285714091694750699572139385673668045374072473132675341249363463844922311925491381165523587591221981101509875562461382568357767768320674085040288926971708489000904629163255398223848528075148818273472738731470997450539379185265161617010458928660467303974454987913825935722142389293504987962511030802924935311690552093018966806835531396397761257085523943378006200543920484243314560148513", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "16306229833185601278409476289200622813256372559508446666389614091966246449787649213010780968803675242094580505567136956421084754441379725780818189194163517981949842127332334843857400965449995326481649201932340763799398686524290752908530176383855299323785598540936812965872466972251791891464813686794378959805199200971582384808004463751748724630015493340406668277796887024828785602356336513253824968814670151844320683423312525611777152675029070170206540591645722519872118639221016104109540824092568766536018014859057034077000442264857706979175143608931600147524951778111739107297825759379349306811595546838621999997013", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18085125693341135371925682792463565665194004358047944249991529569030585003410445731945760399500499583790952028244911138228586601888980138377663432000153878382955458076952353489926966319925351480931547975829154418646757095737477766111638784519263598055709456972195243605119983708378293014135064942715455817687069771106286922094336967471635953021138555717948880252332805387701851745304786203085467801926609689346724425676586667362979201878226578766413145225813376246378629412073147944416855373020266132046235630552205371070242797658403309275959217970003040443771275592388493257266142693948687827283747049154862657567449", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26238930340743458354116100631049461786792120556196495924274631539112962697746498758068334753151700321085461893417608988130895781866120203837136771644556978085818809820264590697893155248660140204984148570295235079401387157994015999226350296180209352226676085741908496929480738533954055050606050882994571712568206597240813913392829281465637937401801856129849816560672133519879116601167628838630528856613209246510740361291751591769602030355584150062428256086600482975927412963201529751893665998781409199323446637472812442137767451798713476701776616989940398552440842835262907497908864960726916888508582053177540828803387", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "25553716147230880428262210158533444252447098663536189571674997081058210076581378275065481472216817002722670815104035086549054612904665686141992199748622493589055566279918035388171013984635467069780225131248697229094734402127965661291939203624106812194481611794837192604129810128849262973754143788650350619749580258897986384863308678441527888925136471573853055984477605207927521162379332258163133919027191740332103733886618502148398886014786060863542295317917289940638645183093925500537958282630936453558887297479650486563159806815820227966178269713053607406045177807779054142409720400019654168484137300289154810066651", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "18585578788080461814765363842306061885436812325424194709592922031517475936009489867386501302504579446096845884518616375392594044909650201812950788794721830331532681865369430084895957716228882227882609795611188729422311064717984711938641714485192565105066440599070879097561543438516027509297283885689896961474295007709886161771955372386228645547513952207240331098109567692587821691309728567684869380729216425234150642423874541266640526327779215763039536299201462327737903436838526039466593126873773493935240136439752670749406650615718686464005575145284758792899674802398576889721317550527315487960514869398700791239697", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "26709456421512768039630855609771908791536857762066217304750765217147886090761823997519866591707315578293645475183656864548142488211354206652380640450594822482534795571925093116042756503502157570828721291039900974710409880099214141149973997686442218547981584178966939909405591365602256785845329079796659248218428372930775079879835276375948049089798344764710433582811591911197336434348201788614358159375683479149710000926941354887070694292640189807221514105160379804745087196295009518689225568902915568863775787865834395291563290819438061853794740712182067164674491367169740128346246789846008082019329798823494966506079", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "23533520689914523035633783858384438020135489246282575291819033845533554135306205006067946240840061704546874877799702985149624263290183080752760461946942467210924341205297770803191681467662800649841845894403964464516023553968406524161131639893624390158087064756140973590492432702882409525079315762846908573145018826055245636735181136767912672040847694524297530725256309513677527354905855483524512896692859484979458748594520945880081966489323297678340912377457777751187538724029072663111971549160094566128190936726092555259195634017764997063067638337850281752247738686657258889168217363092572462300945120405906504536327", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = CN, O = Chinese Government, OU = Ministry of Foreign Affairs, OU = China Passport CA, CN = China Passport Country Signing Certificate", + "modulus": "24272693789938881567180165584119618388931551061589399265736121522698188153408052819401631499761638699791275279068074203429608592421197013063023809689651538407942343734005891596615137939189218547979705818003022565851295749708147346405712725093152021821780089718142190177680453019288706341527897180100197781121178982559985284097365222654773344770884188749438899442765499123826698049122267104711895690613797263790025751111545798474401658108163533455455662921744641189914380566055132545220750112726133946620403580799589980398355455213485678904225556716312779151428879055784253139107313530491438570445853059060678232693597", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = MN, O = General Authority for State Registration, CN = Mongolia CSCA", + "modulus": "28467177578009071061811840979748421796738630729395922381546061117900931338079969568434873708927073571236108945192556213894905194138491250251168119318955532586938854314995005473074435851081240676308239111222674428777647710190865066357225404955400216009444649980542598627134166875957445276811707082477336606836579264114286576157371938361291530199059123223415348118707998687943954004636457279157914976902917059823756268060660093376000798106557262414568798908751798772967770555883236427899022802170734559274810381957221409101453263115130522015701695760942105344527085930266464663500892054378086841387000161149900508117779", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23527813059314266060196569382433195075188934071466039185901754055724908092321175995122897156195239081785316113472981989296003172890623274766341025824766286366276222485497759849378807540731563174548692135177379768575476381276742572737316353309108322983496193990822911059735867173235113723556988528744417086170520423350954004974226114360861915617436071071193540609057431081882180624849662713805974446313976914206968062136922483828465895615575105955138898185835826201494405794413133497495716182704501838186864755940116765747167463603547345213008463133213920307128909353763501646187271556162714405358951663927552034600423", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26235372116434337264362108470439900009768633959143048316477423275616865391178123286216803676409653471402759762676484700831777262945643044054186760927598874735093809238735730730607573357257054872037916641404354664039210131549244251773014280802773689999110380647823824159247325995145944807971900372848910586555225602531787491789359168705589553346292158648605458733194917004097061188337648915379028934634293403096959219317690713568796356925823545763327706160258045119876821050602522205679565768475847491482780161707861618831619829536818556961817541234768266389941004041102127974972062372481988135070371375993170926885163", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "21104646474309074152058876300364758426278578524244305193388471815750600458444218664188156090687642427349978785543159890554425142925695457691952383551797471280733097811853607894930155993061671688095766363555464987646106992693005926659857026577315683693471430694657994733292719891743713547635722878207226105165452754054665659478979746343274329144591941886275892224950014413037926440604134213711372262731629770526412099052123795252509603330335395669162698744405180019961467265973449864399273273482131088568812396287920165341122807067934881296498933428528629432104109696562872185364238904320267793668395903592338496259181", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25189115531545098654176523737071106123432812860972421413928217192598639454599838987166675906956651187524492945472919020030938658386972879719465020382418611652055286391066978922876906543740295415600510327022246125495539901739743890696795957087049358090369442002518269332780527044217351251453182545736286073949229180844477599049489026309577214476572492625147028865266896120982307097293828935777459941308303323300896885401561502813456124236884974564464930815636002930477460820427031562131054879323578042528990218175143317059365018114243873383360637001877674928671846116946842135577752494787328750886900183628445223660427", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "21426523169568203245325459683647151", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "C = NZ, O = Government of New Zealand, OU = Identity and Passport Services, CN = Passport CSCA", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23883429022135432852507351240502010", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4334133883515902919622460338950775806444558039217612403364736497448034994234176506302501916644424794054701878521376767528249328243479601664128758161338682689092245376498658399272078225762509067372219568296194670443184319751465496268581187457115532756593402771454018229494164658012807664969463708423837005268808864817806102734436115710724003896659266560180848378631328086167392993134647412840774527765203899465171064177268165249816830129032022036300956651669419906670874333628597795112044833218665986081204592937019897058758595979289855412732506841364222416837925178899489688993250076656500427036769256808240320185712397313494800149521707152691800176469541617356591995640481974920717954965881302857146567064915630946097708278192532763418081586275387476055187853605278845337303668794246721522750217686693697559999867238120014333305678018010409799510653944958614458141498310707889398869479255241671899850259859582086417750343749", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "3700614243284305539812783392824270247936829284338952556481738984267719020234085860079941438281112456070722417396676776992343521870954986828518566534123774229568719650986359759713847508420879139788238845662851896357034125930274817923682364085517261940301897998690169269259361552423556876416941565732614807675250914345293795231740691877972123685414130293350582982527415521470838498009966893425578141615137831970573361176927004496041299044847239495511134750916632502764299352606343895713530309434738217149896578611420836784288165425403863726763668087333564009519217368684780550458382731124384419875702098281078755343870167450941534891975690655908610477766744733681736038925924155458948595926097316630070395771780786597150062110287058191160325407605158284242055998132436494580925126041574795539905754870134049760976752075719491042390121694784141621729700122549339856501341308490558915156203053252258154967944304303216052079347371", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5263726317706627499888202849061996949281884376543386777257277882589115960729337532116292139716909812806595944455770661928745748780264370250595329089457355179462108129606926750770922187634203105551208004392245003543603490296792560153206508326424615819915422242373785137117844645304137332459695406123085231541272693627203610393036280996005078161182173435285821705323935320534330329138706338889937026901962382028098515445327673740081778724507458276005868885656454393119809480351712427978260312638721500990088833548012033942623278419640647179833251063846913745572950624014232340981929619536833903633169913995736111366140683638528289458365084425768499597238962134557562480586545151237034669548317135790206304250733231490844882242172175172580110099676354775046336913648920346346219669400726182703801174426783410849548187244017727323868067369544113346403576915881251845836435798785922160922879509517322563803087848891125103144527481", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4833035690021847210259112288260691962737235348524861694410034007997761900981934635984253351123223816822252650305303820358659507629703981507939748034087441107361064387821666827800141357962359239470505795069723987301826546766267018735768811114119864236430567783353773165695196692530135763362504505726378572565074575872825018794332293137662440568621559483863043542890577133859676769561054807937510276980750897077391519493629078256537770657958141604134072927683912145289750767843682455046477087180610812208896717299544079529727886711414627493085995072713989164765330628878091722755289053915971594608236975717286432444260711647256874431737260473442430222512159245975305402302017116564841480490912327662978942398732871034160239731076452855732655597061346055736309897532260226374546678733669744013934605945337317607104573778641376734518652053392789551796986372906981069687541318022597948638776497565073844709380579145696349606698647", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5054404750594425520723220048845770519367318835856554529284869588569683744154684831323395491677252240804397988238256483030950872218047372494425844664190359311077205563206806391063974173714008182319290203501415419344538463217084524713162045720767336992097929101486644685232045396654261608320537596620276620891389359386873695461207932824923374236038912523297775048415796662301540462775832805964625669986859416514550738560788348527564909362098351534147069566507204337980638933413940370694926832658533848255965501972712101805990334681167838752777431547583933324405771161390407648211610707403521090143743593941719279720991493457535273188317656533580141328556585734386669725994045053585950999703523417632177831753941879670996345256268799278602173173910918962486042784330536404841655164012787216338055405227261289213484363375005447421077552050172255097354055573363214014577705568342658679429903887477277530997755637715818889255396409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4613778421895455776185695372238280273488309527052597060494555365202201449234579958815086037853460133426184674376597261445692272210354271157278392762453561367339349922458303588440347575668881084157647828001355514479149943097717817585539631095816429172813138681297614708671387676040828090535385317539472118248709479818182290773414453970491532234531421260081543530156194483366407303727864125089315859082385408248680560629702873161202430063675076095332179535730836849096425612645714279534268423898000531310224466620904684641110646347502596285473504257534817188656242878252747947798090314425644951991358395630970531231045403239390187805804589868737024186926379118181130629125641534785855863268012280123403680678997253876317160452762613708315978563130429735347627782768745254635954161550107448013363029865323319603951939368497956715531781342045357680366486335596967918824502131319888668931352443930739311000359317844245908758323941", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4999667565518318210878521054130520556741810497049775993381455993518644313063142448299691838655222792325070361052247748878302927106469023198884572445894362951950631305190247548201122387862112285213513155555291000040547218119107994070810336837771551705719086878379985015006757448778481158620041319965362627324356950771782180584767292643429298074957439733602631141121027432368305741721416417010183262091367042473001319836312501611841451605995362531491199306661541074912139822686162409287753673206296236233976205330764614894214686488877977352499825424164397121855843847780019937929339019821419688530147677909046175450420854103284376613505652886586139197746405375253508526999514688454995673002589328390102758119579923504120160468210039372224794703973192331253040912882620644522646919473126917426973971872077311442080178862748747819292971326246415728670478288897734780150722283820440675209739185813441083031575544019595946768331833", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4986925825571166931358571103745825351439951203108756758208509352075751122868813863506716464679207105068034671695549952582447357364563514873565287377478321887119370868988154090170331953336848626250007573779415605550193025850373741972086266497757773508005657087957037586461233392165744569841787837308927081588466527431877738435519942502408630939098124262160658527880479225121478280646040607491305485081754366454269055868052329923723970352450445934498993227419160253305733414985442280698619851224713049961621855054101893260881940800505108144774604107464063846510294375180983910262193988731157157915358571723875014166373797949011972545804373403109370100235519336060794684003862953638619772579002085969791261886636301563040196081535811652726367426726273383460950005301472205783337245856070019317490611003097963756278124091748550008690618568541400991944628178018218856749471503434429991183067521066831243646388551790184471500602741", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5255319807717400328928271426607379332131685487432635093834059720728199993180673159837513708878070229331621687456213719699620359477542336634543051116024771625683640821577275630700888869071885796757755238104128544267112160708107013970723150007140496285862664227778135419673415862800298485365080550026404604615770685508804861073469185516726358088698107202839699424396826077562088102319002996019574987111041161431043895270580962669291300466097971671563864272126838252910055140458201319876929428796893959101119409746079885452731274322098591267069404544211459268498950122924375842454115756515385331892684508504296972640975336042565958556673601402887842323172062618848501698306372889231302854581430093274158449987617133867562414975986980282348570673613427382298675458018417059011463250006232019367685875558441796393590250068781193580392935290793669831329758710909947327213665403233847812665986163907644945788692506419515895545691053", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4078979821351120414621428028657082056347638143538311475095647193627710905923446809798620320276076861458720460545280834729048241402315100577059789457498913915944124915689297158639782807369897373121337878278938225035481942454521520273929319887097744787234030313030677615163798066814294019191576499714237877760812044708193727217547289564070229622394849957314703938159598269965220604520922909076229691612735203635139367648903524129355336584183397170852846521191211300464153001783620756095164542411617806858948992981154269222572211436315974148456505593916997809439810522646542368741610163264951918307925817504421152043175589843558072447481957302507947012586059993841646287768580979536751795474217931768817662173942127909292547469327390129093825207855736131902705689928594665707247974879484370482945517539815030782489732110258715022331194556978490938356700689642042375513765533981673342651493333836912876662727640035564964101224829", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "5311373444863460108109426087914159534465701707188821547017598826102113388560630482320854112829429943773454308486562395805356131642629032632879899676748438055675574434452696188906356651746616341755928337109806794771637758487669180122921994348384760723759391621504372130323147888890196898799975332425527768763663281762611290751259074151022834322164426710151258505035704927408831779277287032467560151071358789347706217434710945156952956570931002386639180524555019738537036928218748730626391068244025697972829617762771209318913370573939722237437707473116211623731249292482697668745887317920310803525738931468581334644664692592150640849513758109776658369233544135956244424191309834515413509900757884956296979901723368169846232134500359633638052152265080954198667420055573886345909219556148610340278926389050796168173075349148547994735457783361941770700913722246747048693698909283368017822018671211613523925893266855964357000342411", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = CA, O = gc, OU = pptc, CN = csca-canada", + "modulus": "4491070725067137131576453490189534682821938627071912927330549303041811713278000903671290835093947353275440187462527285702878307862074205071755144343373909515641081116493139931976822653930984116405660977688269401286802270517252879648607783220820786348230419539075343737188899663260551207712678063978844248609967302250578595533269983425742824820188753820278676115822988125202668370246662216824483199265530174826003131367892841772816538457632904203870900732793603913517211883041394503002507124220752417549916809800552599138956414972997504626424854476812858330591508564108430961273016975136795764055395327277707020809348491399079206208917987604792547496210423682299333107371782741914124940658530910396924733100752981742795940077152903191486636535571405176201520600045717835745711636248806110858940055864809520161547413610538812820327421516289744537651044783610225460360870677988479940800996633589440658987884339735023777960206957", + "exponent": "65537" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA256", + "issuer": "CN = CSCA HUNGARY, OU = Ministry of Interior, O = GOV, C = HU", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "22831381103037488986719934761562688", + "fieldType": "prime-field", + "prime": "5192296857325901809197342131224576", + "a": "5192296857325901809197342131224576", + "b": "471326900516826909689933204200790150", + "generator": "22941292485458317228552949927863204", + "order": "5192296857325901809197342131224575", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23979630889123032970713246767038502", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "20988866479220033263078923331975025", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "ecdsa-with-SHA384", + "issuer": "C = CH, O = Admin, OU = Services, OU = Certification Authorities, CN = csca-switzerland-2", + "publicKeyAlgorithm": "id-ecPublicKey", + "publicKeyBit": "256", + "pub": "23612352317496695160822608307834643", + "fieldType": "prime-field", + "prime": "3447640682523525162558685084425603", + "a": "650863273749248863828999739875097343", + "b": "201776733434489749965868135301764988", + "generator": "23605134358178844768668281706904705", + "order": "3447640682523525162558685084425603", + "cofactor": "1" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "18740328132066451973123038580501414514314357987110014529770241187709221821298540563384941108037620771236789861589065619608660107976498885756515671017910089183679137118068250810867985435951383574266442368239020255524421649307034484037021249392276218063203170291056757957359302461301438250336838712548429987889887736461794775325096268207253808165466258375048679021497095012989742719693626603927888971582844430938211001425671753132024900088391349615334002278438933309895932631607902808616079432240094980408750805716676826254513305705453148265993397440943780402326833737540023308243726277105055416870213197785553427999877", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "22983683131162324059798199676620533433655481297399784043539602680740469657041961258888478378198930225265988058871831621000358374060967939872678032841836250986888330199749555203592022567158612707389971065200775834611446751625392542167788811670985802420527632740527700994634640977371421978060142051815416140228893431512299269379215893924236694354348145676070464651119954216565995787555182859546810692694951104903136961200659406120597085202673223498682096849125094775556522931178015301642699896422809010611422034565343127997460673300092184592172169855666497072310297768452074625007224828609484712146411304253254686093233", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "23467284876609409143122139042994821907725788330328880980646978508001623882655996874474181671631278502260467976993706057700749395389789557269333037254142546780837991123940660526953620788799989724434584120926136304534933160237995740705073322832820010532865735383020771160253955655226385941496816347793561503738004389821478711735156003324990350693477125142077735447977014048294715559344916140624077005604671070863074964551607344962678381813231782489203885002270689212075734573730357790322104605136735613684896151274721421364007728822395195028479910290681311398131423927830912136802806544113656187126417682606200328614273", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "21210094242956990506656888630400488088799495666068299899099464282767578005930130284711253260057127356230848598168431514543914189367526081255101972534157050249415933097962553820769878585911352142821524843386421535361174212271564958188677100742671835620506460589971530623461622785548051552966216770842905668399314554225257483282494918813525795447457449627074727132231997816959823893562273502443637330584206949984208492013097303725331784629970121007200664991685617098571579946440389051672530299370702946066377706207829955779597846461477590240989304935871716926467778976705843710465377564510243348445541047907416389075279", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24969009869878236108487192884834933476898210029063978553633249332262429350033260714612794590051701720784207067746586991977794687951319860150945486910026862257737888803307547123965126765656683165913141473444401181868815239733408851207134876598366027687635122712977575259168016789316791933483712624627833086531309100355786392094321302765624401223342636001376775021287030047915004548626683387053746596861516314807654100857219054586800289221823651164983210453602525259373795598019487115395752698663860129446249971899984682288734932028572687172272337200971817315781989419775637944497913934808528224107961362338092039650607", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "28951446705926872816175623354026232102617290160583733591928087853961760434830549472329361858141228078439576778052093850816124453834319101047201865568660958606556173022714589446664733113933637860316677407420135152908070895370948566011235072164207232696559441685151044557787081023938018175942800310998137218614510790918592699268168238987049414466730497843454850502378233025650565805559724677580909119786916098398878331593089148772565504846070959252310633805682296291619593685919861777439578880831606987017808317332180434584567409897700169676869057676205422921109479515815038312400346414469806658490787928695391403856297", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24882843456349048174440072807478694059329982135699735616442986694779357777097068566826675166886232889487726828900685788962494886013523316516613664626563003830487841712085588696123536080694197935606123097174835092226280490475834421291553785584939798855893713478908527879384958034612011272223356735000617871362315183810746519220738784038569249100100669587522578855955142432237225154974709591244298736796712907824789653776570272258850546230710067694384859853963282692361106007795118682529636712545497678229121791604028191471973725727103722062279236235341527467585292904757672982659580780210876628804605580210932264612343", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24017888096123756841321203165413006827455997171633269907184219832852281503518752819652079257725017352406388183296943376111840138146993425191613188775420859584517707888835728169331366238795749763350145938244670527983608228651161459290520970258085417331612404868817047603564867703608366459124855527525293844558252047984528108664379429338397357189960491598568444360749216209628334132710393477835923635518364778341470312286085521347226876768307000152739544795129633309116012460369109764017775892831612894121594217892830804225652655595065344523069794515540228177806058593081962491239000279393397203426301380225950112720601", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "26830021432622639742554218894328744102469470332519120856596057300828305078618481748420972084499001880297386274914232837322265741652218130460460581530366948216645655741241944491004149853600460558688362843191773771455457709588152943355581885214612206013640134790394063857273288318497647863318553801380430186104287384080677941168588668329941620762728150085560519103710616434461975361547742155700152573855319364885702234091509183162861298978598449512798362860711054615603502676640226113399194755350692591147997081835869316715113155068412876761889726000862160998389143046217265776943124890338439581938399561014603159902993", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = IE, O = Department of Foreign Affairs, OU = Passport Office, CN = CSCA Ireland", + "modulus": "24969009869878236108487192884834933476898210029063978553633249332262429350033260714612794590051701720784207067746586991977794687951319860150945486910026862257737888803307547123965126765656683165913141473444401181868815239733408851207134876598366027687635122712977575259168016789316791933483712624627833086531309100355786392094321302765624401223342636001376775021287030047915004548626683387053746596861516314807654100857219054586800289221823651164983210453602525259373795598019487115395752698663860129446249971899984682288734932028572687172272337200971817315781989419775637944497913934808528224107961362338092039650607", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27243638285104391479792799937424691527223900320054597632671651776703645377335262250366480468303030723233605655178666542370594795570180872563240329922142957538652527012299814468880474366110363252764155652073139395487237460062953620797016660186998508926623968388732019166874299606137879707821036792414508188681571656333472923410034148403398240006609861851469022808693352400051848961905422651574405439703107156065474866700399680662250566107034092609618807870133635408213160049826875563828484578240729799821639696135148250206791050657011982718184413235798958936410935441036604616670255773441079649494482784665467513938593", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25961761408246972091559631614366854260892596938768189970601948354909179572889029828393865322541982595970127132444589828629313061482516957312808434286227950840785181273169746536869530698422825327754774581134049737787541729901212794042473942159567301777740572918286305874471283730883228386091422309654578459996255615168056066681363474402925303105141924914273279014573123686427139868363229760678314344366147456187167962835508550724795052520579791550127038171561052243475281273739231897048405835489197340562424293916725125530426260961053905570174926982092733941056782321070294830711698549372747714452710844398211796721909", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25327677220759595206196232380114392437191784276920639596500097821187146123212366185692347657748058666554868117160281116196427004460890227648598561701795524563751566907444396030387775350600192536002883471320201279107366690641594833816439014816795539180082081166395672164447683296135336329134342932181118432991414237890847113742824887746042283539025904921412798929857797627484977990823885502366663630184754906040721698069743399962601273730030033851236621407176715231996634782008650023278791614782587718807527665261049387735289302337870570726718589364735793944922018288802485547274870811796521072381695142732327360769201", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21738818013393351059311964332085258842034305756174648680354973801609443829396358291601436032138484319547435152673570643076406327287437739803511488295059777554202138922570993243497750580841830840270816352611818612354495785805864416946551747396146392387769856234736427952228651519511914764612621915335031619941585375507805594436202229661821363892061959490629670433398659592035780829420530033471419223363112739703930460986134746087071938414954937596589856524820837258814949318030186078757628985285233400977484770366441100962648519507579820555878643635346526486488931888441239668311369744344832546734685603059225021941979", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22827234795892806449298638118921224775976588121835664409410833013873037053704050135136128825613941078377254297560637424307090202685994072083533389780686666619157846559878621606422936323115602667146582160297525161182114676169965249931531041017064393587297710713194719645310464180373112131960203176037608905483302814608164294430453819939368442634729671690070918731148851357636177289890432609541861233017618834734733857690378479382347103567152683922185109100545925308555080991332908203695923643824659496549415381701588023257206874764777377605778535395567177006305263124900828614622539274797019217247353540066698412837383", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27497145790083830765980330874079297855831840513595151399581562106718557002588347771356896973948634570209491667866813364515565502082002090115511480242996597408193244690671429377778271581960183940988456822438378280411300728097770334092350398876007651859316981461095472600432921923093774006683121903520336367577998072329940416156866995870956121503084120543640695840444228531580671579181943437590405072574898949713709587261433607556749624392237911190276332434521969465444271112304565282755007162751575812404361486781222449629264204444990848574103056332639304935006885657393805182691389149779504566560304228365264992171777", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "30674496151280948546428147145982506292409892859787450669019616692108529321724816380133211447443122269089383732425605321443427244866121136364764363318299536407228663437446969676117044687006250911897704947511131504578344333525081935338182552925007988531136602810872193255847591096926689380342069158198405741941785454645436433281579184657549579254497125708836829154790876439541213627450939377070279075272615385715271527129311538314741550200840392410385663028810355121166018079159384255653057751293067561467355809072203797306436589881887378662256977887206442322046858534052993845578802561419351982393082832389122039738149", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25777157644538099512288546049567890690419342220100225243037822260108673089441488766221705602912604479454541931203275736537892624425266744566472299623432324567835607225527326012900239203258590574266571921886349001019934314392801585177205202180413310840795714113635292294352758233276085414661039729660710035771405539686625068868756747012739982292993457171471398653209151176687918163727807365735262622135674833102109618584383645627555743105492049212448101800373512060863910214458755777669510469255575460364609720147701266907045527010973221300124150549396437952799328146967653580246366564089107549671189956197238773145743", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29805788430707537410942154209492630417350683722880035830621858358618312509293921872485182027137225316152279612311529403100707391142909672696062869546218795715751680437517431187954240028803367204247127063439480235730195093216604784698622531681122294493736069934210052423097979113039590286679876893154430607075017430476181667573026150091428443140328241435011493132562040379714698343663567792696381569237279672161814143037869734313203319219741454838452235140180371379488542180182903451129854597224025537412596202938157984709690454038566587617534086776199145584151124539286370665307473271109138375775250757532383701863891", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23804632169831248101370949734051696183644969498070054370679581958895317045453033907163069124830214312168575770829170790902831465380567486741565457087006749917009913542437512918392036839796939496998349459639986418912987374273818041050519894723175649037426179413984970363787004108036425053513712770818174650576275728257930277975561010997499339154178056150750844336048760767979353948614901267050815015697816025626181081708479312926811666640372925128091887431978885957499542992158985530062990804069355779316889449898545791562102022617740069550625954776640533422844300125882688365845439341254713912855592281568694829713141", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23224168418957790737380628446887577355805676326838108255708524206957214716790631411718672683460605387860131059645519140307303113592204439934227118434088542779542905911731761552898273207359858528877928998055054737145031621395697635087279166628216500274179153426386643460591500291743941490197364589760253732512500705170073300173762425018379996946147937139466761601611825510379953358283608525761140529411284946237447372426612206463144749232835589433052338619781322150933918275539907939343443134923104056223865247164223573710713505429540841402539622345564191303086578482479249408976995883083256560392711515406205433043873", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "29472059601153580391914847640718252362306485051522504374851918549839551795516556706207348396395388338611553978654282961133547089113074073303923116358701292099867117494653495677794637149051713845597517720012144246646624964184204295653860878413002976771232833952529922073661692736021840155428128579270808754999087986235297454002844450599411517585939812423991020077515213427977237049099363429624625818489155331407648886062479999822606284869478852993393013924885869778147996635266660919988704137498522817393584580180098927740830550373084314955517597068987157784328130312944410801543705951154353855350944645992582626980401", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24024560889816672289617573770103563687596519314670883515485428787367714150880342621469404836877666739935006029466894771683852203588637952149447675096690460138438699753590752331092751881971058415695790413959354322764922979650494704176288979672779088964550167634044503986207376123212587060889837274012602700511948243862086009445029541916018600139786902260801487620789409817190363570045232467179718657620715292393477717836346672911622835865232538503745317106805292729267979384010934895886687416722814887136720384569518040189334510313771208109369688614860232227712596719936299218233680260183246488548382952324367126273471", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26040459017685674002151778187054223101820541885309360483117831465082398782519436783688044533866419853896242519895461266869145634157392982175302365967461326328998858318750619324812399830761999833751953967949773684824696185120242077269808452534850668428770884051598474056876556940179933448357879499021131767246754217267809556022144122735696157967258034403307794516530414574144299384191654764352835232837540633605210860190745100671983831183689577248695466852427280595796910485635986525509616347339846256074229990287020582880518183700165560474491107845010942095742036544112279933561234405278352762342900319042325709781409", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22870815026252946410512677337152840756900281591449812100606200595097958210290095764135254425367791054915809663923198493311010592195093314399651342114276553511803606867407012545515179396250819137192123668386266199890890285340248345461786932069245188328990514406139592460617279662991217263445307871418138740461027830798059052761164393084379754271560857171559490563107312151752479788651263658251110348687952191188826699740386377353887465461165747257000862348744381236116034181288538217736783990341719198428667314012743996262639751322118922412126596604068602129915091600984693136161084714955662615753497386811913116168213", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "19830310132193684561104926868671850820205538488779462628041795673306437619777491207245281095150720736798235495465624716882062701985742163474670422728603260612147092862893792989890908346185166315227275855496585557552050995298047928911111179782970509107138640470804870949296459952379410532184344320739965340942824959241178806976485772740956567539519769196534139178057204550231151259136618188044587508075324874214363603162692839686536785744201382762415686108433344326837366097957139431525720460119584786249619087252792906286058464846171398117447912826280338550681272818240995779919473942153932291035158978274744167589487", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "21805723537277725434421558615692054492506102283142136729302223189435343537987617819657094363585979705063738645772084037526641719835592851189694468128375566282247495598627831424373335556219997268017620238869567658419471648950372840682804723794487568454493993784818725506279782856947246272054472889508619321051047441217054990994783070142655523704401524588782453546007216808474442190990984856170504586316789115088065914632313831939521896968757586094007610275083827623342572846322201156502642047472143485264814984186952458254768200000526093118649846626574114416226697065916792277529340614200300859275967384966824946711269", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23167561989049085959035905047208128711220260080177288465575787863133256020330235038140743395142482749451816681418157348202525582050867043751400005475008625022953817866169003950480970564946495273829698196944867297605855342718892867088743489472701109128018375838998919458634509413890921057320674680746304911411118912137753131641791187622079661411999786007394523671091667491002963687606642999106730234533506846652741523914219273156946066298264012476972766825397709611843770088352442011750677191723963208533886563404029158844498038430628019332058426082878941877106617844783085852344306954474337104497568347851877464198477", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23222170242357010000900347576412482683441677164138191333465083285943519789198741073604575874483557800270616394018438869550562996589071940725123090124453884638082097844080326059886132591007307757295516357480582785901071681455471760455274350871708203138155619026507003663453114706623930489149862312663171498217641473514293371693857926840814191811166702802566718296157666922199569546337792882076040630119918347069718610473852876265915799069176226204205006528416361987785661027982964534105603138669472764850978650723650415800712182177574152832825117107010776684536427146884576917809895731781316576296288922422789056989177", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26588243038090248379575861892533132308700831012252052425017752402464280216625185425938282332841876009394354843877925821935058507078247452876478774062744890713127201004895909029925568869486080864844714489983570146953674307959030226332372913759897542316676377073530007376505460210771553204766012401546378076138216631213847801729456868074048455980370823043339955496342670335945943841606009830181159754383527271262359140160565751469825879322211873489331404512500359039006612708675402352802808835767354982569492259621227060889032396864423662950916409288073396579177033151970311717826092571763877000423867008721568205288673", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24392230884972508217994217576001964075113516866857631810046476620099001386646664379055702811313308548917669635348822486683424901535616786708263392210700287568977600773544141041810948108801615910694409647204881998860270631889309989418789920478283924225519197048374641099159905779749977596721724463449760585097195103750143785625537228695052222183323332328575973285233430190054793519571600891771736867533225654203709077021223943383301628163824685823087778097325673155287488036956972051056247120280152797635336390578284395317034404732067045609669335412743662727400847029220638956967170139558787575157527567077524542898791", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27637039691454279814465192796618682039875737181789201649747791356160693894626527953687502485816888765122203446652491671331331682379782788036352546131494975490564680448699436021580638674745849083941837753572855015958910239168349314380129765650999322138646719305843804722223710274055399948059378357071893396875277538042298499328753178226412414006174331506316211967115380454386817799306137923211994337923849202941170817951154528243654418359701092539493323161488744720092586606142357490393682754299748691145238917870403596978600562111603179093908815005188959329763593591096685226573900570200634224430975532019618308957739", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26813913675652443299820871825799009334471110126234625804739200890624795860093788564918268609288997321035986965393810181040775533428568688815258341969000853684021483291014046182080386541863817153818502523412887374286087396342389660344726405956399905432376125477913154161844948597899754232628791678940428579975837154030573148454007598947200719738727805407834863923099409827777305371615239127607506489063648117225385782148440059657637981260919543690384537415571221467944537180512062624338044845944624728214579801196244127223356161463050647782678595151015862130855087909681632989039389997500823315554340448189570439418603", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "26355283656893509638485045648899040799735867690096799453065702560060211768804417494083645261282015106255644798422816929152049631287809008468525023008620203469392195446162797527567709684063766939579915983078848403086006178470519370527257008006006243609393988884578835629730419287700889789259392310732596027022511489111107445544338387380786409655914892386050764711721235535640196646367763563865021799917767339659233607844176032372281723244199978664019989329142908888149632101959009738466583169365572831761244653238082666493810531551206936410671818320992848820238629709733617546110636297906822240293532872569804847620143", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "27648772989846177616349472433243807585383669216074253176637826828251045432395870038032082673069468585012683152129722914791319933455036394928348954895054290442579252339782096661467160732024707717645091456885483678179705561760833387866038988946603577454020800557701551526946418234301725966569542063474096822180291790343044236674850496274630187246554599691267125048994206313025464083300664857073322220285942207061811539153708590047063959523096316016605394901689997709074403535091232438952654643397562927313991332350360014021382892815702520904536405547615397744702352796265733022302398158232780291861112634544488733406167", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "23139993982258540737470595129909852953887109900141494854181401914114891809581062434344220589452533217328037863311027741861305878140854763370975940860075988665256191329711043236289378923829024740514454041379669054106878381486289398298008959744099861433947831932190478076535820418185594383639267695328646975479118901888341652479626867591610209719435533284416180473263706381087020386405204846479005500825142761183642418970625442999978437864603936788042543081235455709198626612482710097923496204199360518787681971071085393760952043263927703291339542909857462788507796453238677192884221476191197446286937595156453540607789", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "25143805078750355445949977206259841500140491409912556418022257892721116282994509433075636284127231081843662956209903689465349287941938023975934526746259370031642304483252052468526501059982135980561856119804594014785328287448036505391298096511299719545712718758297039245578937513068817346518883383727524515242499582275962329967353294478896008150900528041551455701987609820901897789720958942067081176389453725728542718652487290115019707267123317233768057421371208730095156912954838461505596388241645060328644653680203478680288071442982296852302084802015702906297979801808473202177823444622975722042576079697140066138049", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22750631907431040182590687907964348927640521016394589523881554567541193098130789434753849526136041473644618826510257333932982891936662981644964143539095612228729936217480577214247710021704211289305451194081318711410234650708530981557180393059655047030214799960076472048973562051373527503987677501396030811198161058042594017031500672710885385191037195204341580108019669843907706841151465149508729891951652889681961285599860955588945992153234255830372360793705892348676319449528970557340185137288199001921548193730332366047625657694638847872085868036789423956988219939152249359605709352145306866160118850948260449674997", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22060206898342329545320557523805987337772380720247875997331650343263873432764737987840747940140557374684955501674663405170394226045254077786747431245071548467769185975068425317429639478027833040890896531611248108058940739530103557270215768422653324128620194263142502092903252055165362796308059837224103375093381317971866368855947814482616531674244972705043822718700088299298195554131034225376500108138202260282952478903589452263985961557456359073670316056025340618171234528987233026898802265303989180797325234455013458765298899800937594662200714495305404363851157110157993203011365972584109113785534816742481915613171", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "18491898386472805743407665717899602850751974642670113610584354374694224547580917400760201113584259495331890790998872393774357574987805922801865542819516549504789438656118716752728218954900606034425845206856815739112856300972013466896589940516209527871833813840526949943875227513286953688507160563716795838544195247439728806621609782546517461221972941829885177239810286382720477921319572598444642054285293349486963682811796653480193680819845067090738486707082548653345513129877987039111536257129152688941141315232724820828546106748394234801376097338427633089443639719840830085787044581389985432259560311328302264598967", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "22908142384264640956932887920222932375744154175184725602291222093420308359824635062886920210622820222894495914753106112597047057075241209568079274860633871485978205318924910025417958902639624926385246508485004976855167148845084612356684017992060893199173352949683557118522214161378703842362445358372754021656307703302092495591492736466114146211769559200267413892232203062612640396388467179112156594316329256707583861752279185628536091710061760069954357136659332857258861306469280044970089305017684959779293430759372310628118356290892580835978587370741800154639557300701538760604003402507274312123981951821588927775727", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = FR, O = Gouv, CN = CSCA-FRANCE", + "modulus": "24417858612196241470030673390911521946515983673532764169750092743199032230866619186310309842605875443473507050769120975433788135133534581180537260732296687159184485513384336983872207430199579934923332438347190875551533716556955156987203562813137227632782510147483933190744444753052361436279909247474584783801542856093358212914891291237240166774284434071860475645514153330594456923756969241280753728789614776719693564150131311518943808204643262675120225763122777845692018206996917854116847960419619576568891439561401131493358599293543081435622231209662128407526061436334791391002793759541788335991194369578675905443547", + "exponent": "65537" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "22370925304839086448358486713791070609236350803699352600894308937061315335004305547191132908511672366212548043152532681036651813206832535669211381631807367931210248338350149459091194447517077928610127244430821545913399800613763562820732795606504599321385298585414527432826729205116266670941431209719916087228457251400941028323662043055396964396471826388916278406686159147084196048160849683795294269541535479629676482415080118521602391057324707122361149171125675579539769078624818495120263745276029925653203633342900297632211816517491387717713824524773276097268596136287268628606857822941512040047710064232366000775083", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26687050915043095085970218570890221327213715015873128838222973787073465754422132789034630329979219024035410376865173367537513148220511174041025158947449696166164119923522057346517806028153715466118062047977757194336032054470096080661485251131840780297901084700551555487854968229739328848247700979538488147378834953268409813738140520447321602665322263728824801288491848700603816053830919150426281809236462321012847573031141112780449261128775036584930069863803070441313241465635491292351389831356333288204257170954113718568966621518755157518548485084281407259147219005224219286320521890424684528582778497590348397883973", + "exponent": "3" + }, + { + "signatureAlgorithm": "rsassaPss", + "issuer": "C = KR, O = Government, OU = MOFA, CN = CSCA-KOREA", + "modulus": "26359950414157466268069517110219345825492415417281642181274626283472157980562333849482501292616373628599856945855717799793860725364252251649761896940334968716549498218525268838473234095096496414800629285000959818031202883080631569540387305250383598890913517857732843487200732338404996781240679221459270318987855671646501382217865059462622071564325928077095070817303977386372610560811204975792246515768404833004044239386057919571995222717316513058696495392879270709792355052759453246802478627045050694163420003417721116837956017755002367052898241114557131767388916942097919319523769026634085479843788183336763296693067", + "exponent": "3" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "23679835387272399435991749932774997001892056192420902255641861787314091478722836979692379573502046490455719645689065744942396446669894976418443009487640942078474223804523707273078446988371047046780767890025971067914736666959601090902439102877370036558185870950004333592337477672417780643623968237298145785575185092443381545086116065977314920217861941789934823571923389889391542544483483439606687449908693542030575764556261058163680926584472933510036462334797779723287746863987018925201601159668011542992410415340588161717394626609282147402225922204588283079193290001421661950264298459489684339076605341743760574883359", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "25124547412469398930373932991601318418322422696705743296477802879101853873891309894490694872195561464145132017920401533722942888174460082161390177813747527030711199684620803073307524291354845023348047132855923344062093978741673388858840922193755130697507097854929091140294672756529111931985584261278770703322538952389840756323330951607219927612736230647186593754301011552603325175522698427468275972978573450572865443245354344539018078858522181265162337802270672264921450249165512581844788127291140363631664043095057989557672183129703830929295001042022324497893379537080052439579866655215210949642454899403545744736903", + "exponent": "65537" + }, + { + "signatureAlgorithm": "sha256WithRSAEncryption", + "issuer": "C = US, O = U.S. Government, OU = Department of State, OU = MRTD, OU = Certification Authorities, OU = U.S. Department of State MRTD CA", + "modulus": "26075202642742085960835150264042832906406507578996481691056234550893775417424114382956833826716816764635905151667713072894133260608864689009759281626372622450820247921187597525531552951376353667087277295883334664895766442386961155897590104946017340379342738239230588453208447208477464021948880336523005366016711835331818395555408134891919074232384597774686356376055884875366088368669135296967965410314122012509256146608276511014571242819541742296574014585400865209499507602579597347955932480097653423677156450720564069988594007031449368702634788427881665407673018404341727425691639568680815070700700779548202914942501", + "exponent": "65537" + } +] \ No newline at end of file diff --git a/common/src/constants/constants.ts b/common/src/constants/constants.ts index 0bec20f4a..7d5bb3ee4 100644 --- a/common/src/constants/constants.ts +++ b/common/src/constants/constants.ts @@ -1,5 +1,20 @@ export const AWS_ENDPOINT = "https://0pw5u65m3a.execute-api.eu-north-1.amazonaws.com/api-stage/mint" +export const TREE_DEPTH = 16 + +export enum SignatureAlgorithm { + sha256WithRSAEncryption_65537 = 1, + sha256WithRSAEncryption_3 = 2, + sha1WithRSAEncryption_65537 = 3, + rsassaPss_65537 = 4, + rsassaPss_3 = 5, + ecdsa_with_SHA384 = 6, + ecdsa_with_SHA1 = 7, + ecdsa_with_SHA256 = 8, + ecdsa_with_SHA512 = 9, + sha512WithRSAEncryption_65537 = 10 +} + export const attributeToPosition = { issuing_state: [2, 4], name: [5, 43], diff --git a/common/src/utils/passportData.ts b/common/src/utils/passportData.ts index 2a2b2a752..50b8c1115 100644 --- a/common/src/utils/passportData.ts +++ b/common/src/utils/passportData.ts @@ -35,10 +35,12 @@ const sampleTimeOfSig = [49, 15, 23, 13, 49, 57, 49, 50, 49, 54, 49, 55, 50, 50, export function genSampleData(): PassportData { const mrzHash = hash(formatMrz(sampleMRZ)); - sampleDataHashes.unshift([1, mrzHash]); + // deep copy to avoid interactions between tests + const sampleDataHashesCopy = sampleDataHashes.slice(); + sampleDataHashesCopy.unshift([1, mrzHash]); const concatenatedDataHashes = formatAndConcatenateDataHashes( mrzHash, - sampleDataHashes as DataHash[], + sampleDataHashesCopy as DataHash[], ); const eContent = assembleEContent( hash(concatenatedDataHashes), @@ -66,11 +68,12 @@ export function genSampleData(): PassportData { return { mrz: sampleMRZ, - signatureAlgorithm: 'SHA256withRSA', // sha256WithRSAEncryption + signatureAlgorithm: 'sha256WithRSAEncryption', pubKey: { modulus: hexToDecimal(modulus), + exponent: '65537', }, - dataGroupHashes: sampleDataHashes as DataHash[], + dataGroupHashes: sampleDataHashesCopy as DataHash[], eContent: eContent, encryptedDigest: signatureBytes, } diff --git a/common/src/utils/pubkeyTree.ts b/common/src/utils/pubkeyTree.ts new file mode 100644 index 000000000..cb4246147 --- /dev/null +++ b/common/src/utils/pubkeyTree.ts @@ -0,0 +1,57 @@ +import { poseidon12, poseidon2, poseidon8 } from "poseidon-lite" +import { SignatureAlgorithm, TREE_DEPTH } from "../constants/constants"; +import { IMT } from '@zk-kit/imt' +import { bigIntToChunkedBytes, formatSigAlg } from "./utils"; + +export function buildPubkeyTree(pubkeys: any[]) { + const tree = new IMT(poseidon2, TREE_DEPTH, 0) // 0 as zerovalue + + for(let i = 0; i < pubkeys.length; i++) { + const pubkey = pubkeys[i] + const sigAlgFormatted = formatSigAlg(pubkey.signatureAlgorithm, pubkey.exponent) + + let leaf: bigint | undefined; + + if (i % 3000 === 0 && i !== 0) { + console.log('Processing pubkey number', i, "over", pubkeys.length); + } + + if ( + sigAlgFormatted === "sha256WithRSAEncryption_65537" + || sigAlgFormatted === "sha256WithRSAEncryption_3" + || sigAlgFormatted === "sha1WithRSAEncryption_65537" + || sigAlgFormatted === "rsassaPss_65537" + || sigAlgFormatted === "rsassaPss_3" + || sigAlgFormatted === "sha512WithRSAEncryption_65537" + ) { + // Converting pubkey.modulus into 11 chunks of 192 bits, assuming it is originally 2048 bits. + // This is because Poseidon circuit only supports an array of 16 elements, and field size is 254. + const pubkeyChunked = bigIntToChunkedBytes(BigInt(pubkey.modulus), 192, 11); + // console.log('pubkeyChunked', pubkeyChunked.length, pubkeyChunked) + try { + // leaf is poseidon(signatureAlgorithm, ...pubkey) + leaf = poseidon12([SignatureAlgorithm[sigAlgFormatted], ...pubkeyChunked]) + } catch(err) { + console.log('err', err, i, sigAlgFormatted, pubkey) + } + } else if ( + sigAlgFormatted === "ecdsa_with_SHA1" + || sigAlgFormatted === "ecdsa_with_SHA384" + || sigAlgFormatted === "ecdsa_with_SHA256" + || sigAlgFormatted === "ecdsa_with_SHA512" + ) { + try { + leaf = poseidon8([SignatureAlgorithm[sigAlgFormatted], pubkey.pub, pubkey.prime, pubkey.a, pubkey.b, pubkey.generator, pubkey.order, pubkey.cofactor]) + } catch(err) { + console.log('err', err, i, sigAlgFormatted, pubkey) + } + + } else { + console.log('no leaf for this weird signature:', i, sigAlgFormatted) + continue + } + + tree.insert(leaf) + } + return tree +} \ No newline at end of file diff --git a/common/src/utils/types.ts b/common/src/utils/types.ts index 7fb011bf3..ad454012e 100644 --- a/common/src/utils/types.ts +++ b/common/src/utils/types.ts @@ -3,7 +3,7 @@ export type DataHash = [number, number[]]; export type PassportData = { mrz: string; signatureAlgorithm: string; - pubKey: {modulus?: string, curveName?: string, publicKeyQ?: string}; + pubKey: {modulus?: string, exponent?: string, curveName?: string, publicKeyQ?: string}; dataGroupHashes: DataHash[]; eContent: number[]; encryptedDigest: number[]; diff --git a/common/src/utils/utils.ts b/common/src/utils/utils.ts index b71eb7b19..39943d4eb 100644 --- a/common/src/utils/utils.ts +++ b/common/src/utils/utils.ts @@ -177,3 +177,23 @@ export function hexToSignedBytes(hexString: string): number[] { export function toUnsignedByte(signedByte: number) { return signedByte < 0 ? signedByte + 256 : signedByte; } + +export function formatSigAlg(sigAlg: string, exponent: string | undefined) { + sigAlg = sigAlg.replace(/-/g, '_') + return exponent ? `${sigAlg}_${exponent}` : sigAlg +} + +export function bigIntToChunkedBytes(num: BigInt | bigint, bytesPerChunk: number, numChunks: number) { + const res: string[] = []; + const bigintNum: bigint = typeof num == "bigint" ? num : num.valueOf(); + const msk = (1n << BigInt(bytesPerChunk)) - 1n; + for (let i = 0; i < numChunks; ++i) { + res.push(((bigintNum >> BigInt(i * bytesPerChunk)) & msk).toString()); + } + return res; +} + +export function formatRoot(root: string): string { + let rootHex = BigInt(root).toString(16); + return rootHex.length % 2 === 0 ? "0x" + rootHex : "0x0" + rootHex; +} diff --git a/common/tsconfig.json b/common/tsconfig.json index a05d480d5..a4502b006 100644 --- a/common/tsconfig.json +++ b/common/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "resolveJsonModule": true, "esModuleInterop": true, - "target": "ES2015", + "target": "ES2020", "moduleResolution": "node" } } \ No newline at end of file diff --git a/common/yarn.lock b/common/yarn.lock index 64ca82b09..ec7a90b4d 100644 --- a/common/yarn.lock +++ b/common/yarn.lock @@ -23,6 +23,11 @@ dependencies: undici-types "~5.26.4" +"@zk-kit/imt@^2.0.0-beta": + version "2.0.0-beta" + resolved "https://registry.yarnpkg.com/@zk-kit/imt/-/imt-2.0.0-beta.tgz#7bafd6c2d211dd6f153f97378c2993b2248c76a9" + integrity sha512-Nu0eomkc+EkjSouna/b80B2wlvq1Ng+ydfFZUjJZ7swJdwV3bmq/katrSYA4cOohtornl1CDQMhZwAH7yo5U+Q== + js-sha256@^0.10.1: version "0.10.1" resolved "https://registry.npmjs.org/js-sha256/-/js-sha256-0.10.1.tgz" @@ -33,6 +38,11 @@ node-forge@^1.3.1: resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== +poseidon-lite@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/poseidon-lite/-/poseidon-lite-0.2.0.tgz#dbc242ebd9c10c32d507a533fa497231d168fd72" + integrity sha512-vivDZnGmz8W4G/GzVA72PXkfYStjilu83rjjUfpL4PueKcC8nfX6hCPh2XhoC5FBgC6y0TA3YuUeUo5YCcNoig== + regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" diff --git a/contracts/contracts/libraries/Formatter.sol b/contracts/contracts/Formatter.sol similarity index 100% rename from contracts/contracts/libraries/Formatter.sol rename to contracts/contracts/Formatter.sol diff --git a/contracts/contracts/ProofOfPassport.sol b/contracts/contracts/ProofOfPassport.sol index 3766c8b53..77e0fead9 100644 --- a/contracts/contracts/ProofOfPassport.sol +++ b/contracts/contracts/ProofOfPassport.sol @@ -6,7 +6,8 @@ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {Groth16Verifier} from "./Verifier.sol"; import {Base64} from "./libraries/Base64.sol"; -import {Formatter} from "./libraries/Formatter.sol"; +import {Formatter} from "./Formatter.sol"; +import {Registry} from "./Registry.sol"; import "hardhat/console.sol"; contract ProofOfPassport is ERC721Enumerable, Ownable { @@ -15,7 +16,7 @@ contract ProofOfPassport is ERC721Enumerable, Ownable { Groth16Verifier public immutable verifier; Formatter public formatter; - address public cscaPubkey = 0x0000000000000000000000000000000000000000; + Registry public registry; mapping(uint256 => bool) public nullifiers; @@ -34,9 +35,10 @@ contract ProofOfPassport is ERC721Enumerable, Ownable { mapping(uint256 => Attributes) private tokenAttributes; - constructor(Groth16Verifier v, Formatter f) ERC721("ProofOfPassport", "ProofOfPassport") { + constructor(Groth16Verifier v, Formatter f, Registry r) ERC721("ProofOfPassport", "ProofOfPassport") { verifier = v; formatter = f; + registry = r; setupAttributes(); transferOwnership(msg.sender); } @@ -51,30 +53,16 @@ contract ProofOfPassport is ERC721Enumerable, Ownable { attributePositions.push(AttributePosition("expiry_date", 65, 70, 6)); } - function setCSCApubKey(address _CSCApubKey) public onlyOwner { - cscaPubkey = _CSCApubKey; - } - function mint( uint256[2] memory a, uint256[2][2] memory b, uint256[2] memory c, - uint256[16] memory inputs + uint256[6] memory inputs ) public { // check that the nullifier has not been used before require(!nullifiers[inputs[3]], "Signature already nullified"); - - - // Verify that the public key for RSA matches the hardcoded one - // for (uint256 i = body_len; i < msg_len - 1; i++) { - // require(mailServer.isVerified(domain, i - body_len, inputs[i]), "Invalid: RSA modulus not matched"); - // } - // inputs[4] - - // Verify that the public key for RSA matches the hardcoded one - // commented out for now, since hard to keep up with all - // require(cscaPubkey == inputs[], "Invalid pubkey in inputs"); + require(registry.checkRoot(bytes32(inputs[4])), "Invalid merkle root"); require(verifier.verifyProof(a, b, c, inputs), "Invalid Proof"); @@ -120,7 +108,7 @@ contract ProofOfPassport is ERC721Enumerable, Ownable { return bytesArray; } - function sliceFirstThree(uint256[16] memory input) public pure returns (uint256[3] memory) { + function sliceFirstThree(uint256[6] memory input) public pure returns (uint256[3] memory) { uint256[3] memory sliced; for (uint256 i = 0; i < 3; i++) { diff --git a/contracts/contracts/Registry.sol b/contracts/contracts/Registry.sol new file mode 100644 index 000000000..39f61a252 --- /dev/null +++ b/contracts/contracts/Registry.sol @@ -0,0 +1,23 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.18; + +import "hardhat/console.sol"; +import "@openzeppelin/contracts/access/Ownable.sol"; + +contract Registry is Ownable { + + bytes32 public merkleRoot; + + constructor(bytes32 _merkleRoot) { + merkleRoot = _merkleRoot; + transferOwnership(msg.sender); + } + + function update(bytes32 _merkleRoot) public onlyOwner { + merkleRoot = _merkleRoot; + } + + function checkRoot(bytes32 _merkleRoot) public view returns (bool) { + return merkleRoot == _merkleRoot; + } +} \ No newline at end of file diff --git a/contracts/contracts/Verifier.sol b/contracts/contracts/Verifier.sol index c03a22c5f..9f033c3f1 100644 --- a/contracts/contracts/Verifier.sol +++ b/contracts/contracts/Verifier.sol @@ -37,62 +37,32 @@ contract Groth16Verifier { uint256 constant gammax2 = 10857046999023057135944570762232829481370756359578518086990519993285655852781; uint256 constant gammay1 = 4082367875863433681332203403145435568316851327593401208105741076214120093531; uint256 constant gammay2 = 8495653923123431417604973247489272438418190587263600148770280649306958101930; - uint256 constant deltax1 = 5158657673473810045925629964893931934396421913559601447267267658396071743665; - uint256 constant deltax2 = 8286629771124207111815437373369130047259708345487751914706319082298992258648; - uint256 constant deltay1 = 14545436190214639873248337492095744803903195053244079026886824280836378774783; - uint256 constant deltay2 = 14499178695372120851688441035289532294041310913789284405303366635503099586282; + uint256 constant deltax1 = 4994052217770189922315956828284623868079430977795292381190259337648030093473; + uint256 constant deltax2 = 12306176354698259425064648960815337624822476107590545937365724174803327164788; + uint256 constant deltay1 = 17473038789955098342758897115150266444380018746931737640197063494346463456066; + uint256 constant deltay2 = 3499932847121067932842867609460137220998577057911051317150032976572275257667; - uint256 constant IC0x = 4897812530436581420070048815704719785256466787655503857610889333796081821201; - uint256 constant IC0y = 21324217308758963004039464033551222626995062428505595457846546072979649950535; + uint256 constant IC0x = 19152426468256042144901527232721720451261638123796427011296842869285588551383; + uint256 constant IC0y = 19345925322997135331161522212737007517444712467072236615098780298774955782049; - uint256 constant IC1x = 3402067829842345916430895428185245090645621522198317090797379965574771542636; - uint256 constant IC1y = 15689341079133962080137763365487039194375030636040098473539254350433970371666; + uint256 constant IC1x = 6305391732675224554173069884418603376991370337859828337260263548999531116791; + uint256 constant IC1y = 20885556260527263416589345577297827164112165882140904590525369264050994951692; - uint256 constant IC2x = 17395362500217368985868893090734905039167826866091632900857231867723495577602; - uint256 constant IC2y = 7930260148586132748363663695528567251481992615924576457603406418853534765181; + uint256 constant IC2x = 15284617842584680545981764085552686833941899668996815575060558936814589120971; + uint256 constant IC2y = 14439675833186049874831709445704103887245406923261442494451948964902806415075; - uint256 constant IC3x = 585494952178863414068208567603839798093905284375122061973360892129986520320; - uint256 constant IC3y = 9052106461455604192832593945466435172808609013430707922648579604917214395471; + uint256 constant IC3x = 13384451716351393364926830722594343470395206607373339931467371059400367518112; + uint256 constant IC3y = 13569013227664131439273027875470120981240461828215861501641882796988504350098; - uint256 constant IC4x = 7009544555987721721525965879762930953012066717281509356647068054408609863246; - uint256 constant IC4y = 9820829334259318510794834811753840115411696228971683399345859623869811549881; + uint256 constant IC4x = 16066544202693872918775527348544634589005089579819643240294825105038781730568; + uint256 constant IC4y = 18375460208649158639605381669570011497877636182176798042318450980295895259246; - uint256 constant IC5x = 14238418207024939545815829157744718461870627038741425938816007286311574134474; - uint256 constant IC5y = 281828200475697177916593309667507636329345262293367509851063337891478088781; + uint256 constant IC5x = 17496190736538887378494399502667467040783213499950680334125177792363749093356; + uint256 constant IC5y = 13203650037326393811799763558448457654732772126628111607837874058094056028951; - uint256 constant IC6x = 2588875801176981985506740691573068253787601389179711941209167172577223524972; - uint256 constant IC6y = 15518320710469760878810555468816349074382837865578096899468878146062509663814; - - uint256 constant IC7x = 17316533695265131380437649603796400699657451230738779001098608159520582988369; - uint256 constant IC7y = 8192809588256960378913803069056080395056022087843425771582496472786713726350; - - uint256 constant IC8x = 7407001681033909392094003743482787694603426004447721439357204522366208646546; - uint256 constant IC8y = 14678011064151490372018354732758508739891026527348606433971585164806457243690; - - uint256 constant IC9x = 14324550585252189304511012915310919737099760521255841560510202883547241215550; - uint256 constant IC9y = 17843516173433864891394764190574725294294272661192260445890002683170043518436; - - uint256 constant IC10x = 7539891259658208616633326740578026995822087197681333710337145994575633967330; - uint256 constant IC10y = 11252528180616460725708054390959401682257312545535188972038868508936671228701; - - uint256 constant IC11x = 13300379642556942794398405666278194834327040509717856013516915921151482858342; - uint256 constant IC11y = 3765685546823952453740511654773017065896884149593650080085427606727523849353; - - uint256 constant IC12x = 9268919849281685133024784239234560640021437913056581963083327429501365255031; - uint256 constant IC12y = 11222912618976361984001818562665888490194957370177999142904578411305511279126; - - uint256 constant IC13x = 2597478889552428352737130179687206531821645186216868965539289093449836402726; - uint256 constant IC13y = 757968852987628828382971340903318389342984851650872494795704692702408158904; - - uint256 constant IC14x = 16147563600769233454259564579865458680953713847620754688678964339139397943562; - uint256 constant IC14y = 3229058257062194976564868360849873757615447419031013710509312378420932332089; - - uint256 constant IC15x = 11276405747528923910383092138862864843497716277810279291090775583122182049041; - uint256 constant IC15y = 17478497004985764197329627914040721906294759410027200889688899456335265284727; - - uint256 constant IC16x = 7537276704716430448981792598508402432998887447285614055846784939499149706536; - uint256 constant IC16y = 13397681836333574838145763582606233729786782316119672353292568940401561429759; + uint256 constant IC6x = 2128562424638928151532449321982336068123103831788159177653530516847988225480; + uint256 constant IC6y = 11019682940650239010889439710055791194472421916551742790026288741531694590381; // Memory data @@ -101,7 +71,7 @@ contract Groth16Verifier { uint16 constant pLastMem = 896; - function verifyProof(uint[2] calldata _pA, uint[2][2] calldata _pB, uint[2] calldata _pC, uint[16] calldata _pubSignals) public view returns (bool) { + function verifyProof(uint[2] calldata _pA, uint[2][2] calldata _pB, uint[2] calldata _pC, uint[6] calldata _pubSignals) public view returns (bool) { assembly { function checkField(v) { if iszero(lt(v, q)) { @@ -157,26 +127,6 @@ contract Groth16Verifier { g1_mulAccC(_pVk, IC6x, IC6y, calldataload(add(pubSignals, 160))) - g1_mulAccC(_pVk, IC7x, IC7y, calldataload(add(pubSignals, 192))) - - g1_mulAccC(_pVk, IC8x, IC8y, calldataload(add(pubSignals, 224))) - - g1_mulAccC(_pVk, IC9x, IC9y, calldataload(add(pubSignals, 256))) - - g1_mulAccC(_pVk, IC10x, IC10y, calldataload(add(pubSignals, 288))) - - g1_mulAccC(_pVk, IC11x, IC11y, calldataload(add(pubSignals, 320))) - - g1_mulAccC(_pVk, IC12x, IC12y, calldataload(add(pubSignals, 352))) - - g1_mulAccC(_pVk, IC13x, IC13y, calldataload(add(pubSignals, 384))) - - g1_mulAccC(_pVk, IC14x, IC14y, calldataload(add(pubSignals, 416))) - - g1_mulAccC(_pVk, IC15x, IC15y, calldataload(add(pubSignals, 448))) - - g1_mulAccC(_pVk, IC16x, IC16y, calldataload(add(pubSignals, 480))) - // -A mstore(_pPairing, calldataload(pA)) @@ -244,26 +194,6 @@ contract Groth16Verifier { checkField(calldataload(add(_pubSignals, 192))) - checkField(calldataload(add(_pubSignals, 224))) - - checkField(calldataload(add(_pubSignals, 256))) - - checkField(calldataload(add(_pubSignals, 288))) - - checkField(calldataload(add(_pubSignals, 320))) - - checkField(calldataload(add(_pubSignals, 352))) - - checkField(calldataload(add(_pubSignals, 384))) - - checkField(calldataload(add(_pubSignals, 416))) - - checkField(calldataload(add(_pubSignals, 448))) - - checkField(calldataload(add(_pubSignals, 480))) - - checkField(calldataload(add(_pubSignals, 512))) - // Validate all evaluations let isValid := checkPairing(_pA, _pB, _pC, _pubSignals, pMem) diff --git a/contracts/package-lock.json b/contracts/package-lock.json index 90daa5e56..98651a124 100644 --- a/contracts/package-lock.json +++ b/contracts/package-lock.json @@ -7,10 +7,12 @@ "name": "hardhat-project", "dependencies": { "@openzeppelin/contracts": "^4.9.2", + "@zk-kit/imt": "^2.0.0-beta", "axios": "^1.6.2", "dotenv": "^16.3.1", "hardhat-contract-sizer": "^2.10.0", - "snarkjs": "^0.7.2" + "poseidon-lite": "^0.2.0", + "snarkjs": "^0.7.1" }, "devDependencies": { "@nomicfoundation/hardhat-toolbox": "^3.0.0", @@ -1808,6 +1810,11 @@ "integrity": "sha512-t/fYLdqUDM7W/XP+CKh4kvo9SS2ejtqHJz/2LQf/UsrrCsDYRjQ85DQFdvIJ6FvJjUvtEEPpTSCPk9gDDjcBWQ==", "dev": true }, + "node_modules/@zk-kit/imt": { + "version": "2.0.0-beta", + "resolved": "https://registry.npmjs.org/@zk-kit/imt/-/imt-2.0.0-beta.tgz", + "integrity": "sha512-Nu0eomkc+EkjSouna/b80B2wlvq1Ng+ydfFZUjJZ7swJdwV3bmq/katrSYA4cOohtornl1CDQMhZwAH7yo5U+Q==" + }, "node_modules/abbrev": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", @@ -6751,6 +6758,11 @@ "node": ">=6" } }, + "node_modules/poseidon-lite": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/poseidon-lite/-/poseidon-lite-0.2.0.tgz", + "integrity": "sha512-vivDZnGmz8W4G/GzVA72PXkfYStjilu83rjjUfpL4PueKcC8nfX6hCPh2XhoC5FBgC6y0TA3YuUeUo5YCcNoig==" + }, "node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", @@ -7568,9 +7580,9 @@ } }, "node_modules/snarkjs": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/snarkjs/-/snarkjs-0.7.2.tgz", - "integrity": "sha512-A8yPFm9pRnZ7XYXfPSjSFnugEV1rsHGjb8W7c0Qk7nzXl5h3WANTkpVC5FYxakmw/GKWekz7wjjHaOFtPp823Q==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/snarkjs/-/snarkjs-0.7.1.tgz", + "integrity": "sha512-Qs1oxssa135WZkzfARgEp5SuKHKvKNtcspeJbE5je6MurUpBylD1rzcAzQSTGWA/EH/BV/TmUyTaTD64xScvbA==", "dependencies": { "@iden3/binfileutils": "0.0.11", "bfj": "^7.0.2", @@ -7578,7 +7590,7 @@ "circom_runtime": "0.1.24", "ejs": "^3.1.6", "fastfile": "0.0.20", - "ffjavascript": "0.2.62", + "ffjavascript": "0.2.60", "js-sha3": "^0.8.0", "logplease": "^1.2.15", "r1csfile": "0.0.47" @@ -7587,6 +7599,16 @@ "snarkjs": "build/cli.cjs" } }, + "node_modules/snarkjs/node_modules/ffjavascript": { + "version": "0.2.60", + "resolved": "https://registry.npmjs.org/ffjavascript/-/ffjavascript-0.2.60.tgz", + "integrity": "sha512-T/9bnEL5xAZRDbQoEMf+pM9nrhK+C3JyZNmqiWub26EQorW7Jt+jR54gpqDhceA4Nj0YctPQwYnl8xa52/A26A==", + "dependencies": { + "wasmbuilder": "0.0.16", + "wasmcurves": "0.2.2", + "web-worker": "^1.2.0" + } + }, "node_modules/solc": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/solc/-/solc-0.7.3.tgz", @@ -10801,6 +10823,11 @@ "integrity": "sha512-t/fYLdqUDM7W/XP+CKh4kvo9SS2ejtqHJz/2LQf/UsrrCsDYRjQ85DQFdvIJ6FvJjUvtEEPpTSCPk9gDDjcBWQ==", "dev": true }, + "@zk-kit/imt": { + "version": "2.0.0-beta", + "resolved": "https://registry.npmjs.org/@zk-kit/imt/-/imt-2.0.0-beta.tgz", + "integrity": "sha512-Nu0eomkc+EkjSouna/b80B2wlvq1Ng+ydfFZUjJZ7swJdwV3bmq/katrSYA4cOohtornl1CDQMhZwAH7yo5U+Q==" + }, "abbrev": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", @@ -14593,6 +14620,11 @@ "dev": true, "peer": true }, + "poseidon-lite": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/poseidon-lite/-/poseidon-lite-0.2.0.tgz", + "integrity": "sha512-vivDZnGmz8W4G/GzVA72PXkfYStjilu83rjjUfpL4PueKcC8nfX6hCPh2XhoC5FBgC6y0TA3YuUeUo5YCcNoig==" + }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", @@ -15201,9 +15233,9 @@ } }, "snarkjs": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/snarkjs/-/snarkjs-0.7.2.tgz", - "integrity": "sha512-A8yPFm9pRnZ7XYXfPSjSFnugEV1rsHGjb8W7c0Qk7nzXl5h3WANTkpVC5FYxakmw/GKWekz7wjjHaOFtPp823Q==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/snarkjs/-/snarkjs-0.7.1.tgz", + "integrity": "sha512-Qs1oxssa135WZkzfARgEp5SuKHKvKNtcspeJbE5je6MurUpBylD1rzcAzQSTGWA/EH/BV/TmUyTaTD64xScvbA==", "requires": { "@iden3/binfileutils": "0.0.11", "bfj": "^7.0.2", @@ -15211,10 +15243,22 @@ "circom_runtime": "0.1.24", "ejs": "^3.1.6", "fastfile": "0.0.20", - "ffjavascript": "0.2.62", + "ffjavascript": "0.2.60", "js-sha3": "^0.8.0", "logplease": "^1.2.15", "r1csfile": "0.0.47" + }, + "dependencies": { + "ffjavascript": { + "version": "0.2.60", + "resolved": "https://registry.npmjs.org/ffjavascript/-/ffjavascript-0.2.60.tgz", + "integrity": "sha512-T/9bnEL5xAZRDbQoEMf+pM9nrhK+C3JyZNmqiWub26EQorW7Jt+jR54gpqDhceA4Nj0YctPQwYnl8xa52/A26A==", + "requires": { + "wasmbuilder": "0.0.16", + "wasmcurves": "0.2.2", + "web-worker": "^1.2.0" + } + } } }, "solc": { diff --git a/contracts/package.json b/contracts/package.json index 3d5a69db4..99bd6f277 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -9,9 +9,11 @@ }, "dependencies": { "@openzeppelin/contracts": "^4.9.2", + "@zk-kit/imt": "^2.0.0-beta", "axios": "^1.6.2", "dotenv": "^16.3.1", "hardhat-contract-sizer": "^2.10.0", - "snarkjs": "^0.7.2" + "poseidon-lite": "^0.2.0", + "snarkjs": "^0.7.1" } } diff --git a/contracts/test/ProofOfPassport.ts b/contracts/test/ProofOfPassport.ts index c996c6d79..60830263d 100644 --- a/contracts/test/ProofOfPassport.ts +++ b/contracts/test/ProofOfPassport.ts @@ -2,23 +2,40 @@ import { loadFixture } from "@nomicfoundation/hardhat-network-helpers"; import { expect, assert } from "chai"; import { ethers } from "hardhat"; import { DataHash } from "../../common/src/utils/types"; -import { getPassportData } from "../../common/src/utils/passportData"; -import { attributeToPosition } from "../../common/src/constants/constants"; -import { formatMrz, splitToWords, formatAndConcatenateDataHashes, toUnsignedByte, hash, bytesToBigDecimal } from "../../common/src/utils/utils"; +import { genSampleData } from "../../common/src/utils/passportData"; +import { buildPubkeyTree } from "../../common/src/utils/pubkeyTree"; +import { attributeToPosition, SignatureAlgorithm } from "../../common/src/constants/constants"; +import { formatMrz, splitToWords, formatAndConcatenateDataHashes, toUnsignedByte, hash, bytesToBigDecimal, formatSigAlg, bigIntToChunkedBytes, formatRoot } from "../../common/src/utils/utils"; import { groth16 } from 'snarkjs' import { countryCodes } from "../../common/src/constants/constants"; import { time } from "@nomicfoundation/hardhat-toolbox/network-helpers"; +import { poseidon12 } from "poseidon-lite" + import axios from 'axios'; +import { DataHexString } from "ethers/lib.commonjs/utils/data"; const fs = require('fs'); + describe("Proof of Passport", function () { this.timeout(0); - let passportData, inputs, proof, publicSignals, revealChars, callData: any; + let passportData, pubkeys, proof, tree, inputs, publicSignals, revealChars, root: DataHexString, callData: any; before(async function generateProof() { - passportData = getPassportData(); - + pubkeys = JSON.parse(fs.readFileSync("../common/pubkeys/publicKeysParsed.json") as unknown as string) + passportData = genSampleData(); + + // for testing purposes + pubkeys = pubkeys.slice(0, 100); + pubkeys.push({ + signatureAlgorithm: passportData.signatureAlgorithm, + issuer: 'C = TS, O = Government of Syldavia, OU = Ministry of tests, CN = CSCA-TEST', + modulus: passportData.pubKey.modulus, + exponent: passportData.pubKey.exponent + }) + + tree = buildPubkeyTree(pubkeys); + const formattedMrz = formatMrz(passportData.mrz); const mrzHash = hash(formatMrz(passportData.mrz)); const concatenatedDataHashes = formatAndConcatenateDataHashes( @@ -36,7 +53,15 @@ describe("Proof of Passport", function () { expiry_date: true, } - const bitmap = Array(88).fill('0'); + const bitmap = Array(88).fill('1'); + + const sigAlgFormatted = formatSigAlg(passportData.signatureAlgorithm, passportData.pubKey.exponent) + const pubkeyChunked = bigIntToChunkedBytes(BigInt(passportData.pubKey.modulus as string), 192, 11); + const leaf = poseidon12([SignatureAlgorithm[sigAlgFormatted as keyof typeof SignatureAlgorithm], ...pubkeyChunked]) + + const index = tree.indexOf(leaf) + const mkProof = tree.createProof(index) + root = tree.root Object.entries(attributeToReveal).forEach(([attribute, reveal]) => { if (reveal) { @@ -60,6 +85,10 @@ describe("Proof of Passport", function () { BigInt(64), BigInt(32) ), + signatureAlgorithm: SignatureAlgorithm[sigAlgFormatted as keyof typeof SignatureAlgorithm], + pathIndices: mkProof.pathIndices, + siblings: mkProof.siblings.flat(), + root: root, address: "0x70997970c51812dc3a010c7d01b50e0d17dc79c8", // hardhat account 1 } @@ -74,14 +103,14 @@ describe("Proof of Passport", function () { revealChars = publicSignals.slice(0, 88).map((byte: string) => String.fromCharCode(parseInt(byte, 10))).join(''); - const vKey = JSON.parse(fs.readFileSync("../circuits/build/verification_key.json")); + const vKey = JSON.parse(fs.readFileSync("../circuits/build/proof_of_passport_vkey.json")); const verified = await groth16.verify( vKey, publicSignals, proof ) - assert(verified == true, 'Should verifiable') + assert(verified == true, 'Should verify') const cd = await groth16.exportSolidityCallData(proof, publicSignals); callData = JSON.parse(`[${cd}]`); @@ -105,8 +134,14 @@ describe("Proof of Passport", function () { console.log(`Formatter deployed to ${formatter.target}`); + const Registry = await ethers.getContractFactory("Registry"); + const registry = await Registry.deploy(formatRoot(root)); + await registry.waitForDeployment(); + + console.log(`Registry deployed to ${registry.target}`); + const ProofOfPassport = await ethers.getContractFactory("ProofOfPassport"); - const proofOfPassport = await ProofOfPassport.deploy(verifier.target, formatter.target); + const proofOfPassport = await ProofOfPassport.deploy(verifier.target, formatter.target, registry.target); await proofOfPassport.waitForDeployment(); console.log(`ProofOfPassport NFT deployed to ${proofOfPassport.target}`); @@ -225,7 +260,7 @@ describe("Proof of Passport", function () { }); describe("Minting on mumbai", function () { - it.only("Should allow minting using a proof generated by ark-circom", async function () { + it.skip("Should allow minting using a proof generated by ark-circom", async function () { const newCallDataFromArkCircom = [["0x089e5850e432d76f949cedc26527a7fb093194dd4026d5efb07c8ce6093fa977", "0x0154b01b5698e6249638be776d3641392cf89a5ad687beb2932c0ccf33f271d4"], [["0x2692dbce207361b048e6eff874fdc5d50433baa546fa754348a87373710044c0", "0x1db8ddab0dc204d41728efc05d2dae690bebb782b6088d92dda23a87b6bed0a2"], ["0x106be642690f0fe3562d139ed09498d979c8b35ecfb04e5a49422015cafa2705", "0x0b133e53cd0b4944ce2d34652488a16d1a020905dc1972ccc883d364dd3bb4ee"]], ["0x09eda5d551b150364ecb3efb432e4568b2be8f83c2db1dd1e1285c45a428b32b", "0x008ee9e870e5416849b3c94b8b9e4759580659f5a6535652d0a6634df23db2f5"], ["0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x000000000000000000000000000000006df9dd0914f215fafa1513e51ac9f1e2", "0x00000000000000000000000000000000000000000000093e703cd030e286890e", "0x0000000000000000000000000000000000000000000004770a914f3ae4e1288b", "0x000000000000000000000000000000000000000000000bf7e8ecb4e9609a489d", "0x00000000000000000000000000000000000000000000035762de41038bc2dcf1", "0x00000000000000000000000000000000000000000000050442c4055d62e9c4af", "0x0000000000000000000000000000000000000000000004db2bdc79a477a0fce0", "0x000000000000000000000000000000000000000000000acdbf649c76ec3df9ad", "0x000000000000000000000000000000000000000000000aaa0e6798ee3694f5ca", "0x000000000000000000000000000000000000000000000a1eaac37f80dd5e2879", "0x00000000000000000000000000000000000000000000033e063fba83c27efbce", "0x00000000000000000000000000000000000000000000045b9b05cab95025b000", "0x000000000000000000000000e6e4b6a802f2e0aee5676f6010e0af5c9cdd0a50"]]; // const callDataFromArkCircomGeneratedInTest = [ [ '0x07a378ec2b5bafc15a21fb9c549ba2554a4ef22cfca3d835f44d270f547d0913', '0x089bb81fb68200ef64652ada5edf71a98dcc8a931a54162b03b61647acbae1fe' ], [ [ '0x2127ae75494aed0c384567cc890639d7609040373d0a549e665a26a39b264449', '0x2f0ea6c99648171b7e166086108131c9402f9c5ac4a3759705a9c9217852e328' ], [ '0x04efcb825be258573ffe8c9149dd2b040ea3b8a9fa3dfa1c57a87b11c20c21ec', '0x2b500aece0e5a5a64a5c7262ec379efc1a23f4e46d968aebd42337642ea2bd3e' ] ], [ '0x1964dc2231bcd1e0de363c3d2a790346b7e634b5878498ce6e8db0ac972b8125', '0x0d94cd74a89b0ed777bb309ce960191acd23d5e9c5f418722d03f80944c5e3ed' ], [ '0x000000000000000000544e45524f4c4600000000000000000000000000000000', '0x0000000000000000000000000000000000000000000000000000000000000000', '0x0000000000000000000000000000000000000000000000000000000000000000', '0x000000000000000000000000000000000df267467de87516584863641a75504b', '0x00000000000000000000000000000000000000000000084c754a8650038f4c82', '0x000000000000000000000000000000000000000000000d38447935bb72a5193c', '0x000000000000000000000000000000000000000000000cac133b01f78ab24970', '0x0000000000000000000000000000000000000000000006064295cda88310ce6e', '0x000000000000000000000000000000000000000000001026cd8776cbd52df4b0', '0x000000000000000000000000000000000000000000000d4748d254334ce92b36', '0x0000000000000000000000000000000000000000000005c1b0ba7159834b0bf1', '0x00000000000000000000000000000000000000000000029d91f03395b916792a', '0x000000000000000000000000000000000000000000000bcfbb30f8ea70a224df', '0x00000000000000000000000000000000000000000000003dcd943c93e565aa3e', '0x0000000000000000000000000000000000000000000009e8ce7916ab0fb0b000', '0x000000000000000000000000ede0fa5a7b196f512204f286666e5ec03e1005d2' ] ];